diff --git a/BossMod/BossModReborn.csproj b/BossMod/BossModReborn.csproj
index 6ef20f4a04..ebea96ffee 100644
--- a/BossMod/BossModReborn.csproj
+++ b/BossMod/BossModReborn.csproj
@@ -103,7 +103,6 @@
PreserveNewest
-
diff --git a/BossMod/BossModule/SimpleBossModule.cs b/BossMod/BossModule/SimpleBossModule.cs
index 7c10e08700..22b643f460 100644
--- a/BossMod/BossModule/SimpleBossModule.cs
+++ b/BossMod/BossModule/SimpleBossModule.cs
@@ -2,13 +2,13 @@
// base class for simple boss modules (hunts, fates, dungeons, etc.)
// these always center map around PC
-public abstract class SimpleBossModule(WorldState ws, Actor primary) : BossModule(ws, primary, primary.Position, new ArenaBoundsCircle(30))
+public abstract class SimpleBossModule(WorldState ws, Actor primary) : BossModule(ws, primary, primary.Position, new ArenaBoundsCircle(30f))
{
private WPos _prevFramePathfindCenter;
public override bool CheckReset() => !PrimaryActor.InCombat;
- protected override bool CheckPull() => base.CheckPull() && (Center - Raid.Player()!.Position).LengthSq() < 900;
+ protected override bool CheckPull() => base.CheckPull() && (PrimaryActor.Position - Raid.Player()!.Position).LengthSq() < 900f;
protected override void UpdateModule()
{
diff --git a/BossMod/Modules/Dawntrail/Alliance/A14ShadowLord/GigaSlash.cs b/BossMod/Modules/Dawntrail/Alliance/A14ShadowLord/GigaSlash.cs
index 5d98c2215a..ea6663870d 100644
--- a/BossMod/Modules/Dawntrail/Alliance/A14ShadowLord/GigaSlash.cs
+++ b/BossMod/Modules/Dawntrail/Alliance/A14ShadowLord/GigaSlash.cs
@@ -12,12 +12,14 @@ public override IEnumerable ActiveAOEs(int slot, Actor actor)
public override void AddAIHints(int slot, Actor actor, PartyRolesConfig.Assignment assignment, AIHints hints)
{
- if (AOEs.Count == 0)
+ var count = AOEs.Count;
+ if (count == 0)
return;
base.AddAIHints(slot, actor, assignment, hints);
+ var aoe = AOEs[0];
// stay close to the middle if there is next imminent aoe from same origin
- if (Module.FindComponent()?.Casters.Count == 0 && AOEs.Count > 1 && AOEs[0].Origin == AOEs[1].Origin)
- hints.AddForbiddenZone(ShapeDistance.InvertedCircle(AOEs[0].Origin, 3), AOEs[0].Activation);
+ if (Module.FindComponent()?.Casters.Count == 0 && count > 1 && aoe.Origin == AOEs[1].Origin)
+ hints.AddForbiddenZone(ShapeDistance.InvertedCircle(aoe.Origin, 3f), aoe.Activation);
}
public override void OnCastStarted(Actor caster, ActorCastInfo spell)
diff --git a/BossMod/Modules/Dawntrail/Dungeon/D05Origenics/D050OrigenicsAerostat.cs b/BossMod/Modules/Dawntrail/Dungeon/D05Origenics/D050OrigenicsAerostat.cs
index 7458843841..879c4f9815 100644
--- a/BossMod/Modules/Dawntrail/Dungeon/D05Origenics/D050OrigenicsAerostat.cs
+++ b/BossMod/Modules/Dawntrail/Dungeon/D05Origenics/D050OrigenicsAerostat.cs
@@ -20,8 +20,8 @@ public enum AID : uint
GrenadoShot = 35428, // OrigenicsSentryG10->location, 3.0s cast, range 5 circle
}
-class IncendiaryCircle(BossModule module) : Components.SimpleAOEs(module, ActionID.MakeSpell(AID.IncendiaryCircle), new AOEShapeDonut(3, 12));
-class GrenadoShot(BossModule module) : Components.SimpleAOEs(module, ActionID.MakeSpell(AID.GrenadoShot), 5);
+class IncendiaryCircle(BossModule module) : Components.SimpleAOEs(module, ActionID.MakeSpell(AID.IncendiaryCircle), new AOEShapeDonut(3f, 12f));
+class GrenadoShot(BossModule module) : Components.SimpleAOEs(module, ActionID.MakeSpell(AID.GrenadoShot), 5f);
class D050OrigenicsAerostatStates : StateMachineBuilder
{
@@ -47,8 +47,11 @@ public D050OrigenicsAerostatStates(D050OrigenicsAerostat module) : base(module)
[ModuleInfo(BossModuleInfo.Maturity.Verified, Contributors = "The Combat Reborn Team (Malediktus)", GroupType = BossModuleInfo.GroupType.CFC, GroupID = 825, NameID = 12895, SortOrder = 2)]
public class D050OrigenicsAerostat(WorldState ws, Actor primary) : BossModule(ws, primary, arena.Center, arena)
{
- private static readonly ArenaBoundsComplex arena = new([new Polygon(new(-116, -80), 14.5f, 6, 30.Degrees()), new Rectangle(new(-88, -80), 20, 5.5f),
- new Polygon(new(-60, -80), 14.5f, 6, 30.Degrees()), new Rectangle(new(-144, -80), 20, 5.5f)]);
+ private static readonly Angle a30 = 30f.Degrees();
+ private static readonly WPos node1Center = new(-60f, -80f), node2Center = new(-116f, -80f), node3Center = new(-172f, -80f);
+ private static readonly ArenaBoundsComplex arena = new([new Polygon(node1Center, 16f, 6, a30), new Rectangle(new(-88f, -80f), 20f, 6f),
+ new Polygon(node2Center, 16f, 6, a30), new Polygon(node3Center, 16f, 6, a30), new Rectangle(new(-144f, -80f), 20f, 6f),
+ new Rectangle(node3Center, 39f, 6f), new Rectangle(node3Center, 6f, 19.6f), new Rectangle(node2Center, 6f, 19.6f), new Rectangle(node1Center, 6f, 19.6f)]);
public static readonly uint[] Trash = [(uint)OID.Boss, (uint)OID.Aerostat2, (uint)OID.OrigenicsSentryS9, (uint)OID.OrigenicsSentryS92, (uint)OID.OrigenicsSentryG10];
protected override void DrawEnemies(int pcSlot, Actor pc)
diff --git a/BossMod/Modules/Dawntrail/Dungeon/D05Origenics/D051Herpekaris.cs b/BossMod/Modules/Dawntrail/Dungeon/D05Origenics/D051Herpekaris.cs
index 588762be5f..f313107622 100644
--- a/BossMod/Modules/Dawntrail/Dungeon/D05Origenics/D051Herpekaris.cs
+++ b/BossMod/Modules/Dawntrail/Dungeon/D05Origenics/D051Herpekaris.cs
@@ -43,7 +43,26 @@ class CollectiveAgony(BossModule module) : Components.LineStack(module, ActionID
class StridentShriek(BossModule module) : Components.RaidwideCast(module, ActionID.MakeSpell(AID.StridentShriek));
class ConvulsiveCrush(BossModule module) : Components.SingleTargetDelayableCast(module, ActionID.MakeSpell(AID.ConvulsiveCrush));
class PoisonHeartSpread(BossModule module) : Components.SpreadFromCastTargets(module, ActionID.MakeSpell(AID.PoisonHeartSpread), 5f);
-class PoisonHeartVoidzone(BossModule module) : Components.PersistentVoidzoneAtCastTarget(module, 2f, ActionID.MakeSpell(AID.PoisonHeartVoidzone), m => m.Enemies(OID.PoisonVoidzone).Where(z => z.EventState != 7), 0.9f);
+class PoisonHeartVoidzone(BossModule module) : Components.PersistentVoidzoneAtCastTarget(module, 2f, ActionID.MakeSpell(AID.PoisonHeartVoidzone), GetVoidzones, 0.9f)
+{
+ private static Actor[] GetVoidzones(BossModule module)
+ {
+ var enemies = module.Enemies((uint)OID.PoisonVoidzone);
+ var count = enemies.Count;
+ if (count == 0)
+ return [];
+
+ var voidzones = new Actor[count];
+ var index = 0;
+ for (var i = 0; i < count; ++i)
+ {
+ var z = enemies[i];
+ if (z.EventState != 7)
+ voidzones[index++] = z;
+ }
+ return voidzones[..index];
+ }
+}
abstract class PodBurst(BossModule module, AID aid) : Components.SimpleAOEs(module, ActionID.MakeSpell(aid), 6f);
class PodBurst1(BossModule module) : PodBurst(module, AID.PodBurst1);
@@ -77,7 +96,7 @@ public override IEnumerable ActiveAOEs(int slot, Actor actor)
public override void OnCastStarted(Actor caster, ActorCastInfo spell)
{
- void AddAOE(AOEShape shape) => _aoes.Add(new(shape, spell.LocXZ, spell.Rotation, WorldState.FutureTime(9.2d + _aoes.Count * 2d)));
+ void AddAOE(AOEShape shape) => _aoes.Add(new(shape, spell.LocXZ, spell.Rotation, WorldState.FutureTime(7.3d - _aoes.Count * 1d)));
switch (spell.Action.ID)
{
case (uint)AID.RightSweepTelegraph:
@@ -102,6 +121,17 @@ public override void OnEventCast(Actor caster, ActorCastEvent spell)
break;
}
}
+
+ public override void AddAIHints(int slot, Actor actor, PartyRolesConfig.Assignment assignment, AIHints hints)
+ {
+ base.AddAIHints(slot, actor, assignment, hints);
+ // stay close to the middle if there is next imminent aoe
+ if (_aoes.Count > 1)
+ {
+ var aoe = _aoes[0];
+ hints.AddForbiddenZone(ShapeDistance.InvertedCircle(aoe.Origin, 3f), aoe.Activation);
+ }
+ }
}
class D051HerpekarisStates : StateMachineBuilder
diff --git a/BossMod/Modules/Dawntrail/Dungeon/D05Origenics/D052Deceiver.cs b/BossMod/Modules/Dawntrail/Dungeon/D05Origenics/D052Deceiver.cs
index 0f593657be..0aa7718161 100644
--- a/BossMod/Modules/Dawntrail/Dungeon/D05Origenics/D052Deceiver.cs
+++ b/BossMod/Modules/Dawntrail/Dungeon/D05Origenics/D052Deceiver.cs
@@ -124,18 +124,18 @@ class Surge(BossModule module) : Components.Knockback(module)
private static readonly SafeWall[] walls2B1C = [new(new(XWest, ZRow4), new(XWest, ZRow5)), new(new(XWest, ZRow2), new(XWest, ZRow3)),
new(new(XEast, ZRow3), new(XEast, ZRow4)), new(new(XEast, ZRow1), new(XEast, ZRow2))];
private static readonly AOEShapeCone _shape = new(60f, 90f.Degrees());
- private Func? distance;
public override IEnumerable Sources(int slot, Actor actor) => SourcesList;
public override void OnCastStarted(Actor caster, ActorCastInfo spell)
{
+ void AddSource(Angle offset, SafeWall[] safeWalls)
+ => SourcesList.Add(new(caster.Position, 30f, Module.CastFinishAt(spell), _shape, spell.Rotation + offset, Kind.DirForward, default, safeWalls));
if (spell.Action.ID == (uint)AID.Surge)
{
- var activation = Module.CastFinishAt(spell);
var safewalls = GetActiveSafeWalls();
- SourcesList.Add(new(caster.Position, 30f, activation, _shape, spell.Rotation + Angle.AnglesCardinals[3], Kind.DirForward, default, safewalls));
- SourcesList.Add(new(caster.Position, 30f, activation, _shape, spell.Rotation + Angle.AnglesCardinals[0], Kind.DirForward, default, safewalls));
+ AddSource(90.Degrees(), safewalls);
+ AddSource(-90.Degrees(), safewalls);
}
}
@@ -161,43 +161,23 @@ public SafeWall[] GetActiveSafeWalls()
public override void OnCastFinished(Actor caster, ActorCastInfo spell)
{
if (spell.Action.ID == (uint)AID.Surge)
- {
SourcesList.Clear();
- distance = null;
- ++NumCasts;
- }
}
public override void AddAIHints(int slot, Actor actor, PartyRolesConfig.Assignment assignment, AIHints hints)
{
if (SourcesList.Count != 0)
{
- if (distance == null)
- {
- var safewalls = GetActiveSafeWalls();
- var forbidden = new List>(4);
+ var safewalls = GetActiveSafeWalls();
+ var forbidden = new List>(4);
- var centerX = Arena.Center.X;
- for (var i = 0; i < 4; ++i)
- {
- var safeWall = safewalls[i];
- forbidden.Add(ShapeDistance.InvertedRect(new(centerX, safeWall.Vertex1.Z - 5), safeWall.Vertex1.X == XWest ? -offset : offset, 10, default, 20));
- }
- distance = p =>
- {
- var maxDistance = float.MinValue;
- for (var i = 0; i < 4; ++i)
- {
- var distance = forbidden[i](p);
- if (distance > maxDistance)
- {
- maxDistance = distance;
- }
- }
- return maxDistance;
- };
+ var centerX = Arena.Center.X;
+ for (var i = 0; i < 4; ++i)
+ {
+ var safeWall = safewalls[i];
+ forbidden.Add(ShapeDistance.InvertedRect(new(centerX, safeWall.Vertex1.Z - 5f), safeWall.Vertex1.X == XWest ? -offset : offset, 10f, default, 20f));
}
- hints.AddForbiddenZone(distance, SourcesList[0].Activation);
+ hints.AddForbiddenZone(ShapeDistance.Intersection(forbidden), SourcesList[0].Activation);
}
}
}
@@ -220,7 +200,7 @@ public override void OnCastStarted(Actor caster, ActorCastInfo spell)
for (var i = 0; i < 4; ++i)
{
var safewall = activeSafeWalls[i].Vertex1;
- _hints.Add(new(rect, new(centerX, safewall.Z - 5f), safewall.X == -187.5f ? Angle.AnglesCardinals[0] : Angle.AnglesCardinals[3], default, Colors.SafeFromAOE, false));
+ _hints.Add(new(rect, new(centerX, safewall.Z - 5f), safewall.X == -187.5f ? -90.Degrees() : 90.Degrees(), default, Colors.SafeFromAOE, false));
}
}
}
@@ -233,25 +213,19 @@ public override void OnCastFinished(Actor caster, ActorCastInfo spell)
public override void AddHints(int slot, Actor actor, TextHints hints)
{
- AOEInstance[] activeSafespot = [.. ActiveAOEs(slot, actor)];
- var len = activeSafespot.Length;
- if (len != 0)
+ var count = _hints.Count;
+ if (count != 0)
{
var isPositionSafe = false;
- for (var i = 0; i < len; ++i)
+ for (var i = 0; i < count; ++i)
{
- if (activeSafespot[i].Check(actor.Position))
+ if (_hints[i].Check(actor.Position))
{
isPositionSafe = true;
break;
}
}
- if (!isPositionSafe)
- {
- hints.Add(Hint);
- }
- else
- hints.Add(Hint, false);
+ hints.Add(Hint, !isPositionSafe);
}
}
}
@@ -279,7 +253,6 @@ public class D052Deceiver(WorldState ws, Actor primary) : BossModule(ws, primary
protected override void DrawEnemies(int pcSlot, Actor pc)
{
Arena.Actor(PrimaryActor);
- Arena.Actors(Enemies(OID.OrigenicsSentryG92));
- Arena.Actors(Enemies(OID.OrigenicsSentryG91));
+ Arena.Actors(Enemies([(uint)OID.OrigenicsSentryG92, (uint)OID.OrigenicsSentryG91]));
}
}
diff --git a/BossMod/Modules/Dawntrail/Dungeon/D05Origenics/D053Ambrose.cs b/BossMod/Modules/Dawntrail/Dungeon/D05Origenics/D053Ambrose.cs
index 02d4d8d94b..f8b9fa53a4 100644
--- a/BossMod/Modules/Dawntrail/Dungeon/D05Origenics/D053Ambrose.cs
+++ b/BossMod/Modules/Dawntrail/Dungeon/D05Origenics/D053Ambrose.cs
@@ -70,85 +70,52 @@ class PsychicWave(BossModule module) : Components.RaidwideCast(module, ActionID.
class ExtrasensoryExpulsion(BossModule module) : Components.Knockback(module, maxCasts: 1)
{
- private const float QuarterWidth = 7.5f;
- private const float QuarterHeight = 9.75f;
- private const float HalfHeight = 19.5f;
- public readonly List<(WPos, Angle)> Data = new(2);
- public DateTime Activation;
- private readonly List _sources = new(4);
- private static readonly AOEShapeRect rectNS = new(HalfHeight, QuarterWidth);
- private static readonly AOEShapeRect rectEW = new(15, QuarterHeight);
- private static readonly Angle[] angles = [-0.003f.Degrees(), -180f.Degrees(), -89.982f.Degrees(), 89.977f.Degrees()];
- private Func? distance;
+ public readonly List Sourcez = new(4);
+ public static readonly AOEShapeRect RectNS = new(20f, 7.5f);
+ public static readonly AOEShapeRect RectEW = new(15f, 10f);
- public override IEnumerable Sources(int slot, Actor actor) => _sources;
+ public override IEnumerable Sources(int slot, Actor actor) => Sourcez;
- public override bool DestinationUnsafe(int slot, Actor actor, WPos pos) => (Module.FindComponent()?.ActiveAOEs(slot, actor).Any(z => z.Shape.Check(pos, z.Origin, z.Rotation)) ?? false) || !Module.InBounds(pos);
-
- public override void OnCastStarted(Actor caster, ActorCastInfo spell)
+ public override bool DestinationUnsafe(int slot, Actor actor, WPos pos)
{
- if (spell.Action.ID == (uint)AID.ExtrasensoryExpulsionNorthSouth)
+ var aoe = Module.FindComponent();
+ if (aoe != null && aoe.AOE != null)
{
- Activation = Module.CastFinishAt(spell, 0.8f);
- HandleCastStarted(caster.Position);
+ var activeAOE = aoe.AOE.Value;
+ if (activeAOE.Check(pos))
+ return true;
}
+ return !Module.InBounds(pos);
}
- private void HandleCastStarted(WPos position)
- {
- if (position.AlmostEqual(new(182.7f, 8.75f), 0.1f))
- {
- AddSourceAndData(new(QuarterWidth, -HalfHeight), rectNS, angles[0]);
- AddSourceAndData(new(-QuarterWidth, HalfHeight), rectNS, angles[1]);
- AddSource(new(default, -QuarterHeight), rectEW, angles[2]);
- AddSource(new(default, QuarterHeight), rectEW, angles[3]);
- }
- else if (position.AlmostEqual(new(182.5f, -8.75f), 0.1f))
- {
- AddSourceAndData(new(-QuarterWidth, -HalfHeight), rectNS, angles[0]);
- AddSourceAndData(new(QuarterWidth, HalfHeight), rectNS, angles[1]);
- AddSource(new(default, -QuarterHeight), rectEW, angles[3]);
- AddSource(new(default, QuarterHeight), rectEW, angles[2]);
- }
- }
-
- private void AddSource(WDir direction, AOEShapeRect shape, Angle angle)
- {
- _sources.Add(new(Arena.Center + direction, 20f, Activation, shape, angle, Kind.DirForward));
- }
-
- private void AddSourceAndData(WDir direction, AOEShapeRect shape, Angle angle)
+ public override void OnCastStarted(Actor caster, ActorCastInfo spell)
{
- AddSource(direction, shape, angle);
- Data.Add((_sources.Last().Origin, angle));
+ void AddSource(AOEShape shape) => Sourcez.Add(new(spell.LocXZ, 20f, Module.CastFinishAt(spell), shape, spell.Rotation, Kind.DirForward));
+ if (spell.Action.ID == (uint)AID.ExtrasensoryExpulsionNorthSouth)
+ AddSource(RectNS);
+ else if (spell.Action.ID == (uint)AID.ExtrasensoryExpulsionWestEast)
+ AddSource(RectEW);
}
- public override void Update()
+ public override void OnCastFinished(Actor caster, ActorCastInfo spell)
{
- if (Data.Count != 0 && WorldState.CurrentTime > Activation)
- {
- _sources.Clear();
- Data.Clear();
- ++NumCasts;
- distance = null;
- }
+ if (Sourcez.Count != 0 && spell.Action.ID is (uint)AID.ExtrasensoryExpulsionNorthSouth or (uint)AID.ExtrasensoryExpulsionWestEast)
+ Sourcez.Clear();
}
public override void AddAIHints(int slot, Actor actor, PartyRolesConfig.Assignment assignment, AIHints hints)
{
- if (_sources.Count != 0)
+ var count = Sourcez.Count;
+ if (Sourcez.Count != 0)
{
- if (distance == null)
+ var forbidden = new List>(2);
+ for (var i = 0; i < count; ++i)
{
- var forbidden = new List>(2);
-
- for (var i = 0; i < 2; ++i)
- {
- var w = Data[i];
- forbidden.Add(ShapeDistance.InvertedRect(w.Item1, w.Item2, HalfHeight - 0.5f, default, QuarterWidth));
- }
- hints.AddForbiddenZone(ShapeDistance.Intersection(forbidden), _sources[0].Activation);
+ var recti = Sourcez[i];
+ if (recti.Shape is AOEShapeRect rect && rect == RectNS)
+ forbidden.Add(ShapeDistance.InvertedRect(recti.Origin, recti.Direction, 19f, default, 9f));
}
+ hints.AddForbiddenZone(ShapeDistance.Intersection(forbidden), Sourcez[0].Activation);
}
}
}
@@ -157,49 +124,72 @@ class VoltaicSlash(BossModule module) : Components.SingleTargetCast(module, Acti
class OverwhelmingCharge(BossModule module) : Components.GenericAOEs(module)
{
- private const string Risk2Hint = "Walk into safespot for knockback!";
- private const string StayHint = "Wait inside safespot for knockback!";
+ private readonly ExtrasensoryExpulsion _kb = module.FindComponent()!;
+ private const string Hint = "Wait inside safespot for knockback!";
private static readonly AOEShapeCone cone = new(26f, 90f.Degrees());
- private static readonly AOEShapeRect rect = new(19f, 7.5f);
- private AOEInstance _aoe;
+ private static readonly AOEShapeRect rectAdj = new(19f, 7f); // the knockback rectangles are placed poorly with significant error for from visuals plus half height of the arena is smaller than 20 knockback distance
+
+ public AOEInstance? AOE;
private static readonly Angle a180 = 180f.Degrees();
public override IEnumerable ActiveAOEs(int slot, Actor actor)
{
- var component = Module.FindComponent()!;
- var componentActive = component.Sources(slot, actor).Any() || component.Activation > WorldState.CurrentTime;
- if (_aoe != default)
+ var componentActive = _kb.Sourcez.Count != 0 || actor.PendingKnockbacks.Count != 0;
+ var aoes = new List();
+ if (AOE is AOEInstance aoe)
{
- yield return _aoe with { Risky = !componentActive };
if (componentActive)
{
- var safezone = component.Data.FirstOrDefault(x => _aoe.Rotation.AlmostEqual(x.Item2 + a180, Angle.DegToRad));
- yield return new(rect, safezone.Item1, safezone.Item2, component.Activation, Colors.SafeFromAOE, false);
+ Components.Knockback.Source? safezone = null;
+
+ var count = _kb.Sourcez.Count;
+ for (var i = 0; i < count; ++i)
+ {
+ var source = _kb.Sourcez[i];
+ if (aoe.Rotation.AlmostEqual(source.Direction + a180, Angle.DegToRad))
+ {
+ safezone = source;
+ break;
+ }
+ }
+ if (safezone is Components.Knockback.Source sz)
+ aoes.Add(new(rectAdj, sz.Origin, sz.Direction, sz.Activation, Colors.SafeFromAOE, false));
}
+ else
+ aoes.Add(aoe);
}
else if (componentActive)
- foreach (var c in component.Data)
- yield return new(rect, c.Item1, c.Item2, component.Activation, Colors.SafeFromAOE, false);
+ {
+ var count = _kb.Sourcez.Count;
+ for (var i = 0; i < count; ++i)
+ {
+ var recti = _kb.Sourcez[i];
+ if (recti.Shape is AOEShapeRect rect && rect == ExtrasensoryExpulsion.RectNS)
+ aoes.Add(new(rectAdj, recti.Origin, recti.Direction, recti.Activation, Colors.SafeFromAOE, false));
+ }
+ }
+ return aoes;
}
public override void OnCastStarted(Actor caster, ActorCastInfo spell)
{
if (spell.Action.ID is (uint)AID.OverwhelmingCharge1 or (uint)AID.OverwhelmingCharge2)
- _aoe = new(cone, caster.Position, spell.Rotation, Module.CastFinishAt(spell));
+ AOE = new(cone, spell.LocXZ, spell.Rotation, Module.CastFinishAt(spell));
}
public override void OnCastFinished(Actor caster, ActorCastInfo spell)
{
if (spell.Action.ID is (uint)AID.OverwhelmingCharge1 or (uint)AID.OverwhelmingCharge2)
- _aoe = default;
+ AOE = default;
}
public override void AddAIHints(int slot, Actor actor, PartyRolesConfig.Assignment assignment, AIHints hints)
{
- var component = Module.FindComponent()!.Sources(slot, actor).Any() || Module.FindComponent()!.Activation > WorldState.CurrentTime;
- var aoe = ActiveAOEs(slot, actor).FirstOrDefault();
- if (component && ActiveAOEs(slot, actor).Any())
+ var component = _kb.Sourcez.Count != 0;
+ if (component && AOE is AOEInstance aoe)
+ {
hints.AddForbiddenZone(aoe.Shape, aoe.Origin, aoe.Rotation + a180, aoe.Activation);
+ }
else
base.AddAIHints(slot, actor, assignment, hints);
}
@@ -207,13 +197,28 @@ public override void AddAIHints(int slot, Actor actor, PartyRolesConfig.Assignme
public override void AddHints(int slot, Actor actor, TextHints hints)
{
base.AddHints(slot, actor, hints);
- var activeSafespot = ActiveAOEs(slot, actor).Where(c => c.Shape == rect).ToList();
- if (activeSafespot.Count != 0)
+
+ List activeSafespots = new(2);
+ foreach (var aoe in ActiveAOEs(slot, actor))
{
- if (!activeSafespot.Any(c => c.Check(actor.Position)))
- hints.Add(Risk2Hint);
- else if (activeSafespot.Any(c => c.Check(actor.Position)))
- hints.Add(StayHint, false);
+ if (aoe.Shape == rectAdj)
+ {
+ activeSafespots.Add(aoe);
+ }
+ }
+ var count = activeSafespots.Count;
+ if (count != 0)
+ {
+ var actorInSafespot = false;
+ for (var i = 0; i < count; ++i)
+ {
+ if (activeSafespots[i].Check(actor.Position))
+ {
+ actorInSafespot = true;
+ break;
+ }
+ }
+ hints.Add(Hint, !actorInSafespot);
}
}
}
@@ -250,7 +255,7 @@ public override void OnCastStarted(Actor caster, ActorCastInfo spell)
if (_aoes.Count < 7)
_aoes.Add(new(new AOEShapeRect(dir.Length(), 5f), caster.Position, Angle.FromDirection(dir), activation));
else
- _aoes.Add(new(rect, new(190f, 19.5f), -180.Degrees(), activation));
+ _aoes.Add(new(rect, new(190f, 19.5f), -180f.Degrees(), activation));
}
}
@@ -268,9 +273,9 @@ public D053AmbroseStates(BossModule module) : base(module)
TrivialPhase()
.ActivateOnEnter()
.ActivateOnEnter()
- .ActivateOnEnter()
.ActivateOnEnter()
.ActivateOnEnter()
+ .ActivateOnEnter()
.ActivateOnEnter()
.ActivateOnEnter()
.ActivateOnEnter()
@@ -288,7 +293,6 @@ public class D053Ambrose(WorldState ws, Actor primary) : BossModule(ws, primary,
protected override void DrawEnemies(int pcSlot, Actor pc)
{
Arena.Actor(PrimaryActor);
- Arena.Actors(Enemies(OID.Superfluity));
- Arena.Actors(Enemies(OID.OrigenicsEyeborg));
+ Arena.Actors(Enemies([(uint)OID.Superfluity, (uint)OID.OrigenicsEyeborg]));
}
}
diff --git a/BossMod/Modules/Global/DeepDungeon/AutoClear.cs b/BossMod/Modules/Global/DeepDungeon/AutoClear.cs
index 8f8f3b8dd7..d3e2376f89 100644
--- a/BossMod/Modules/Global/DeepDungeon/AutoClear.cs
+++ b/BossMod/Modules/Global/DeepDungeon/AutoClear.cs
@@ -2,7 +2,7 @@
using ImGuiNET;
using System.IO;
using System.Reflection;
-using System.Text.Json;
+
using static FFXIVClientStructs.FFXIV.Client.Game.InstanceContent.InstanceContentDeepDungeon;
namespace BossMod.Global.DeepDungeon;
@@ -75,7 +75,6 @@ public record class Gaze(Actor Source, AOEShape Shape);
private bool _lastChestMagicite;
private bool _trapsHidden = true;
- private readonly Dictionary> LoadedFloors;
private readonly List<(Wall Wall, bool Rotated)> Walls = [];
private readonly List RoomCenters = [];
private readonly List ProblematicTrapLocations = [];
@@ -128,11 +127,9 @@ protected AutoClear(WorldState ws, int LevelCap) : base(ws)
})
);
- _trapsCurrentZone = DDTrapsData.GetTrapLocationsForZone(ws.CurrentZone);
-
- LoadedFloors = JsonSerializer.Deserialize>>(GetEmbeddedResource("Walls.json"))!;
- ProblematicTrapLocations = JsonSerializer.Deserialize>(GetEmbeddedResource("BadTraps.json"))!;
+ _trapsCurrentZone = GeneratedTrapData.Traps.TryGetValue(ws.CurrentZone, out var locations) ? locations : [];
+ ProblematicTrapLocations.AddRange(ProblematicTrapLocations);
IgnoreTraps.AddRange(ProblematicTrapLocations);
}
@@ -759,7 +756,7 @@ private void LoadWalls()
Walls.Clear();
var floorset = Palace.Floor / 10;
var key = $"{(int)Palace.DungeonId}.{floorset + 1}";
- if (!LoadedFloors.TryGetValue(key, out var floor))
+ if (!LoadedFloors.Walls.TryGetValue(key, out var floor))
{
Service.Log($"unable to load floorset {key}");
return;
@@ -780,8 +777,10 @@ private void LoadWalls()
Service.Log($"unrecognized tileset number {Palace.Progress.Tileset}");
return;
}
- foreach (var (room, i) in Palace.Rooms.Select((m, i) => (m, i)))
+ var len = Palace.Rooms.Length;
+ for (var i = 0; i < len; ++i)
{
+ ref var room = ref Palace.Rooms[i];
if (room > 0)
{
var roomdata = tileset[i];
@@ -843,7 +842,7 @@ private static bool IsBlocked(Bitmap map, Vector2 point, Vector2 origin, float m
var vx = dir.X;
var vy = dir.Y;
- for (var i = 0; i < (int)dist; i++)
+ for (var i = 0; i < (int)dist; ++i)
{
if (map[(int)ox, (int)oy])
return true;
@@ -853,14 +852,4 @@ private static bool IsBlocked(Bitmap map, Vector2 point, Vector2 origin, float m
return false;
}
-
- private Stream GetEmbeddedResource(string name) => Assembly.GetExecutingAssembly().GetManifestResourceStream($"BossModReborn.Modules.Global.DeepDungeon.{name}")!;
}
-
-public static class DDTrapsData
-{
- public static WPos[] GetTrapLocationsForZone(uint zone)
- {
- return GeneratedTrapData.Traps.TryGetValue(zone, out var locations) ? locations : [];
- }
-}
\ No newline at end of file
diff --git a/BossMod/Modules/Global/DeepDungeon/BadTraps.cs b/BossMod/Modules/Global/DeepDungeon/BadTraps.cs
new file mode 100644
index 0000000000..c8c8533391
--- /dev/null
+++ b/BossMod/Modules/Global/DeepDungeon/BadTraps.cs
@@ -0,0 +1,9 @@
+namespace BossMod.Global.DeepDungeon;
+
+public static class BadTraps
+{
+ // TODO: Bad traps should probably contain more information such as which deep dungeon and the level bracket, otherwise collisions with other traps on other floors seem likely...
+ // or maybe a whole different approach to traps considering that it would take forever to identify all "bad" traps with over 28000 known trap locations
+ // and combat AOEs complicate this matter further, often stepping into a potential trap location is preferable to other dangers
+ public static readonly WPos[] BadTrapsArray = [new(-374.9f, 302.2f), new(258.5f, -229.3f), new(364.1f, -358.5f), new(-221.5f, 259.7f), new(383.9f, -341.9f), new(-366.5f, 316.1f)];
+}
diff --git a/BossMod/Modules/Global/DeepDungeon/BadTraps.json b/BossMod/Modules/Global/DeepDungeon/BadTraps.json
deleted file mode 100644
index fb32a45ead..0000000000
--- a/BossMod/Modules/Global/DeepDungeon/BadTraps.json
+++ /dev/null
@@ -1 +0,0 @@
-[{"X":-374.9,"Z":302.2},{"X":258.5,"Z":-229.3},{"X":364.1,"Z":-358.5},{"X":-221.5,"Z":259.7},{"X":383.9,"Z":-341.9},{"X":-366.5,"Z":316.1}]
\ No newline at end of file
diff --git a/BossMod/Modules/Global/DeepDungeon/LevelData.cs b/BossMod/Modules/Global/DeepDungeon/LevelData.cs
index bb09ac920b..64e6263c18 100644
--- a/BossMod/Modules/Global/DeepDungeon/LevelData.cs
+++ b/BossMod/Modules/Global/DeepDungeon/LevelData.cs
@@ -1,37 +1,46 @@
namespace BossMod.Global.DeepDungeon;
-[Serializable]
-public record class Floor(
- uint DungeonId,
- uint Floorset,
- Tileset RoomsA,
- Tileset RoomsB
-)
+public record class Floor(uint DungeonId, uint Floorset, Tileset RoomsA, Tileset RoomsB)
{
public Floor Map(Func Mapping) => new(DungeonId, Floorset, RoomsA.Map(Mapping), RoomsB.Map(Mapping));
}
-[Serializable]
-public record class Tileset(List> Rooms)
+public record class Tileset(RoomData[] Rooms)
{
- public Tileset Map(Func Mapping) => new([.. Rooms.Select(m => m.Map(Mapping))]);
+ public Tileset Map(Func Mapping)
+ {
+ var len = Rooms.Length;
+ var mappedRooms = new RoomData[len];
+ for (var i = 0; i < len; ++i)
+ {
+ mappedRooms[i] = Rooms[i].Map(Mapping);
+ }
+ return new Tileset(mappedRooms);
+ }
public RoomData this[int index] => Rooms[index];
- public override string ToString() => $"Tileset {{ Rooms = [{string.Join(", ", Rooms)}] }}";
+ public override string ToString()
+ {
+ var sb = new StringBuilder();
+ sb.Append("Tileset { Rooms = [");
+ var len = Rooms.Length;
+ for (var i = 0; i < len; ++i)
+ {
+ if (i > 0)
+ {
+ sb.Append(", ");
+ }
+ sb.Append(Rooms[i].ToString());
+ }
+ sb.Append("] }");
+ return sb.ToString();
+ }
}
-[Serializable]
-public record class RoomData(
- T Center,
- T North,
- T South,
- T West,
- T East
-)
+public record class RoomData(T Center, T North, T South, T West, T East)
{
public RoomData Map(Func F) => new(F(Center), F(North), F(South), F(West), F(East));
}
-[Serializable]
public record struct Wall(WPos Position, float Depth);
diff --git a/BossMod/Modules/Global/DeepDungeon/LoadedFloors.cs b/BossMod/Modules/Global/DeepDungeon/LoadedFloors.cs
new file mode 100644
index 0000000000..ff17948d4e
--- /dev/null
+++ b/BossMod/Modules/Global/DeepDungeon/LoadedFloors.cs
@@ -0,0 +1,2408 @@
+namespace BossMod.Global.DeepDungeon;
+
+public static class LoadedFloors
+{
+ public static readonly Dictionary> Walls = new()
+ {
+ ["1.1"] = new(
+ 1,
+ 0,
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-375.8824f, 184.9715f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-288.434f, 180.2622f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-222.976f, 195.8077f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-401.8241f, 241.3869f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-355.0005f, 241.1624f), 0.25f), new(new(-356.53876f, 226.13847f), 0.3858328f), new(new(0f, 0f), 0f), new(new(-372.8506f, 245.54715f), 0.3858328f), new(new(-337.13577f, 242.4569f), 0.3858328f)),
+ new(new(new(-300.0496f, 242.1748f), 0.25f), new(new(-301.53903f, 226.13828f), 0.3858328f), new(new(-298.44888f, 261.85312f), 0.3858328f), new(new(-317.85098f, 245.54695f), 0.3858328f), new(new(-282.13617f, 242.45679f), 0.3858328f)),
+ new(new(new(-234.7516f, 239.0849f), 0.25f), new(new(-236.53926f, 238.13808f), 0.3858328f), new(new(0f, 0f), 0f), new(new(-252.85179f, 257.54675f), 0.3858328f), new(new(-217.13625f, 254.45659f), 0.3858328f)),
+ new(new(new(-181.684f, 253.6359f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-419.2709f, 297.2304f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-367.1707f, 297.5115f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(-384.85016f, 301.54504f), 0.3858328f), new(new(-349.13535f, 298.4549f), 0.3858328f)),
+ new(new(new(-299.7132f, 308.2558f), 0.25f), new(new(-301.53876f, 278.1331f), 0.3858328f), new(new(-298.44522f, 321.84763f), 0.3858328f), new(new(-317.85068f, 301.54144f), 0.3858328f), new(new(-282.13577f, 300.4513f), 0.3858328f)),
+ new(new(new(-235.3281f, 312.0525f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(-252.8532f, 315.54443f), 0.3858328f), new(new(-217.13835f, 312.45428f), 0.3858328f)),
+ new(new(new(-182.6375f, 311.8546f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-406.3417f, 354.5897f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-354.9269f, 341.2996f), 0.25f), new(new(0f, 0f), 0f), new(new(-353.4456f, 375.85043f), 0.3858328f), new(new(-372.84778f, 359.54425f), 0.3858328f), new(new(-337.13354f, 356.45438f), 0.3858328f)),
+ new(new(new(-299.7132f, 343.1996f), 0.25f), new(new(-301.53604f, 340.13577f), 0.3858328f), new(new(-298.44592f, 375.85062f), 0.3858328f), new(new(-317.84857f, 359.54465f), 0.3858328f), new(new(-282.13385f, 356.4545f), 0.3858328f)),
+ new(new(new(-234.4194f, 366.988f), 0.25f), new(new(0f, 0f), 0f), new(new(-233.44943f, 387.85004f), 0.3858328f), new(new(-252.85168f, 371.54395f), 0.3858328f), new(new(-217.13655f, 368.4537f), 0.3858328f)),
+ new(new(new(-181.9648f, 367.6225f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-366.3537f, 410.4308f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-319.4517f, 412.8329f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-222.3592f, 422.2233f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ]),
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(242.2688f, -407.3709f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(292.2455f, -419.7115f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(388.2386f, -406.8889f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(198.5498f, -349.3167f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(254.3103f, -362.9244f), 0.25f), new(new(252.45094f, -363.85202f), 0.3858328f), new(new(255.54108f, -328.1371f), 0.3858328f), new(new(236.13911f, -344.44327f), 0.3858328f), new(new(0f, 0f), 0f)),
+ new(new(new(312.5266f, -372.1913f), 0.25f), new(new(310.44974f, -375.85223f), 0.3858328f), new(new(313.5399f, -340.13748f), 0.3858328f), new(new(0f, 0f), 0f), new(new(329.85275f, -359.5338f), 0.3858328f)),
+ new(new(new(368.1f, -349.5093f), 0.25f), new(new(366.44904f, -363.85202f), 0.3858328f), new(new(369.5392f, -328.13718f), 0.3858328f), new(new(350.13724f, -344.44336f), 0.3858328f), new(new(385.85205f, -347.5335f), 0.3858328f)),
+ new(new(new(426.6133f, -361.1192f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(184.1457f, -302.9055f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(241.7038f, -290.2035f), 0.25f), new(new(240.45103f, -305.85303f), 0.3858328f), new(new(243.54118f, -270.13818f), 0.3858328f), new(new(224.1392f, -286.44437f), 0.3858328f), new(new(0f, 0f), 0f)),
+ new(new(new(300.4155f, -302.2205f), 0.25f), new(new(298.44983f, -317.85294f), 0.3858328f), new(new(301.54f, -282.1381f), 0.3858328f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(367.718f, -302.5081f), 0.25f), new(new(366.44922f, -317.8528f), 0.3858328f), new(new(367.5394f, -282.13797f), 0.3858328f), new(new(0f, 0f), 0f), new(new(389.85193f, -301.5343f), 0.3858328f)),
+ new(new(new(429.744f, -314.3755f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(184.4104f, -233.1253f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(242.0357f, -258.69592f), 0.25f), new(new(240.45084f, -259.85373f), 0.3858328f), new(new(243.54097f, -224.13889f), 0.3858328f), new(new(224.139f, -240.44505f), 0.3858328f), new(new(259.85385f, -243.53522f), 0.3858328f)),
+ new(new(new(300.4155f, -244.9101f), 0.25f), new(new(298.45f, -259.85364f), 0.3858328f), new(new(301.5402f, -224.13878f), 0.3858328f), new(new(282.1382f, -240.44495f), 0.3858328f), new(new(0f, 0f), 0f)),
+ new(new(new(366.0983f, -268.3832f), 0.25f), new(new(364.44962f, -271.85352f), 0.3858328f), new(new(367.5398f, -236.13867f), 0.3858328f), new(new(0f, 0f), 0f), new(new(383.85263f, -255.535f), 0.3858328f)),
+ new(new(new(420.3033f, -256.66272f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(242.5427f, -187.026f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(319.9643f, -187.5298f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(378.353f, -198.3665f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ])
+ ),
+ ["1.2"] = new(
+ 1,
+ 1,
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-374.7566f, 183.0325f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-287.8989f, 178.1563f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-223.1265f, 193.6945f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-402.5998f, 240.809f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-355.0793f, 240.4289f), 0.25f), new(new(-354.42322f, 227.95f), 1.214027f), new(new(-355.56418f, 260.04163f), 1.214027f), new(new(-371.03973f, 243.43088f), 1.214027f), new(new(0f, 0f), 0f)),
+ new(new(new(-300.4581f, 241.4994f), 0.25f), new(new(-299.4235f, 227.9498f), 1.214027f), new(new(-300.56445f, 260.0414f), 1.214027f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-226.2764f, 262.0164f), 0.25f), new(new(-234.42361f, 239.9496f), 1.214027f), new(new(-235.56454f, 272.04123f), 1.214027f), new(new(0f, 0f), 0f), new(new(-218.94849f, 256.5714f), 1.214027f)),
+ new(new(new(-175.5846f, 252.934f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-420.2265f, 296.8055f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-367.1488f, 296.9664f), 0.25f), new(new(-366.4228f, 283.94818f), 1.214027f), new(new(-367.56357f, 316.0398f), 1.214027f), new(new(-383.0393f, 299.42905f), 1.214027f), new(new(-350.94766f, 300.57f), 1.214027f)),
+ new(new(new(-299.914f, 305.8483f), 0.25f), new(new(-299.4233f, 279.9447f), 1.214027f), new(new(-300.56076f, 320.036f), 1.214027f), new(new(-316.0398f, 299.42535f), 1.214027f), new(new(-283.94818f, 302.5663f), 1.214027f)),
+ new(new(new(-234.9083f, 310.8708f), 0.25f), new(new(-234.42572f, 297.9474f), 1.214027f), new(new(-235.56668f, 330.039f), 1.214027f), new(new(-251.0422f, 313.42825f), 1.214027f), new(new(-218.95059f, 314.5692f), 1.214027f)),
+ new(new(new(-180.6718f, 311.2285f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-409.0223f, 355.6356f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-346.5887f, 345.5487f), 0.25f), new(new(-354.42032f, 341.9474f), 1.214027f), new(new(-355.56128f, 374.039f), 1.214027f), new(new(-371.037f, 357.42825f), 1.214027f), new(new(0f, 0f), 0f)),
+ new(new(new(-309.1746f, 347.1084f), 0.25f), new(new(-299.4206f, 341.94748f), 1.214027f), new(new(-300.56155f, 374.0391f), 1.214027f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-235.6806f, 365.491f), 0.25f), new(new(-234.42392f, 353.9468f), 1.214027f), new(new(-235.56488f, 386.03842f), 1.214027f), new(new(0f, 0f), 0f), new(new(-218.94879f, 370.56863f), 1.214027f)),
+ new(new(new(-177.7759f, 366.8867f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-366.6518f, 411.5221f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-320.0814f, 414.084f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-224.6033f, 424.7421f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ]),
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(241.9075f, -409.8611f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(292.1822f, -420.3809f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(388.0965f, -406.534f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(195.7815f, -348.4681f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(263.1833f, -358.7175f), 0.25f), new(new(254.56648f, -362.0403f), 1.214027f), new(new(0f, 0f), 0f), new(new(237.95f, -346.55945f), 1.214027f), new(new(270.04163f, -345.4185f), 1.214027f)),
+ new(new(new(318.7134f, -366.8361f), 0.25f), new(new(312.5653f, -374.04062f), 1.214027f), new(new(311.42435f, -341.949f), 1.214027f), new(new(295.9488f, -358.55975f), 1.214027f), new(new(328.04044f, -357.4188f), 1.214027f)),
+ new(new(new(367.6212f, -349.1082f), 0.25f), new(new(368.5646f, -362.0404f), 1.214027f), new(new(367.42365f, -329.9488f), 1.214027f), new(new(351.94812f, -346.55954f), 1.214027f), new(new(384.03973f, -345.41858f), 1.214027f)),
+ new(new(new(427.2377f, -361.0651f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(181.5783f, -303.7495f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(241.7273f, -290.1868f), 0.25f), new(new(0f, 0f), 0f), new(new(241.42564f, -271.9498f), 1.214027f), new(new(225.95009f, -288.56055f), 1.214027f), new(new(0f, 0f), 0f)),
+ new(new(new(300.0593f, -302.7772f), 0.25f), new(new(300.5654f, -316.04132f), 1.214027f), new(new(299.42444f, -283.9497f), 1.214027f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(367.7514f, -303.0645f), 0.25f), new(new(368.5648f, -316.0412f), 1.214027f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(388.0396f, -299.41937f), 1.214027f)),
+ new(new(new(432.9172f, -314.7849f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(181.8928f, -233.2985f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(232.3754f, -235.6684f), 0.25f), new(new(242.56638f, -258.0421f), 1.214027f), new(new(241.42542f, -225.9505f), 1.214027f), new(new(225.94989f, -242.56123f), 1.214027f), new(new(258.0415f, -241.4203f), 1.214027f)),
+ new(new(new(299.6617f, -244.7433f), 0.25f), new(new(300.56558f, -258.04202f), 1.214027f), new(new(299.42462f, -225.9504f), 1.214027f), new(new(283.9491f, -242.56113f), 1.214027f), new(new(316.0407f, -241.4202f), 1.214027f)),
+ new(new(new(373.7408f, -264.3062f), 0.25f), new(new(0f, 0f), 0f), new(new(365.42422f, -237.95029f), 1.214027f), new(new(349.94867f, -254.56102f), 1.214027f), new(new(382.0403f, -253.42009f), 1.214027f)),
+ new(new(new(421.5632f, -256.98212f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(242.1803f, -186.2036f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(320.0034f, -184.6789f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(378.3103f, -195.2241f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ])
+ ),
+ ["1.3"] = new(
+ 1,
+ 2,
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-375.8824f, 184.9715f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-288.434f, 180.2622f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-222.976f, 195.8077f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-401.8241f, 241.3869f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-355.0005f, 241.1624f), 0.25f), new(new(-354.4232f, 227.95001f), 1.214f), new(new(-355.5642f, 260.0416f), 1.214f), new(new(-371.0397f, 243.43085f), 1.214f), new(new(0f, 0f), 0f)),
+ new(new(new(-300.0496f, 242.1748f), 0.25f), new(new(-299.42346f, 227.94981f), 1.214f), new(new(-300.56448f, 260.0414f), 1.214f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-234.7516f, 241.6998f), 0.25f), new(new(-234.42357f, 239.94962f), 1.214f), new(new(-235.56459f, 272.0412f), 1.214f), new(new(0f, 0f), 0f), new(new(-218.94849f, 256.57144f), 1.214f)),
+ new(new(new(-181.684f, 253.6359f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-419.2709f, 297.2304f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-367.1707f, 297.5115f), 0.25f), new(new(-366.42276f, 283.94818f), 1.214f), new(new(-367.5636f, 316.0398f), 1.214f), new(new(-383.03928f, 299.42902f), 1.214f), new(new(-350.9477f, 300.57004f), 1.214f)),
+ new(new(new(-299.7132f, 308.2558f), 0.25f), new(new(-299.42328f, 279.9447f), 1.214f), new(new(-300.5608f, 320.036f), 1.214f), new(new(-316.0398f, 299.42532f), 1.214f), new(new(-283.9482f, 302.56635f), 1.214f)),
+ new(new(new(-235.3281f, 312.0525f), 0.25f), new(new(-234.42567f, 297.9474f), 1.214f), new(new(-235.56671f, 330.039f), 1.214f), new(new(-251.04219f, 313.42822f), 1.214f), new(new(-218.95059f, 314.56924f), 1.214f)),
+ new(new(new(-182.6375f, 311.8546f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-406.3417f, 354.5897f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-354.9269f, 343.8251f), 0.25f), new(new(-354.4203f, 341.9474f), 1.214f), new(new(-355.5613f, 374.039f), 1.214f), new(new(-371.037f, 357.42822f), 1.214f), new(new(0f, 0f), 0f)),
+ new(new(new(-299.7132f, 344.343f), 0.25f), new(new(-299.42056f, 341.94748f), 1.214f), new(new(-300.56158f, 374.0391f), 1.214f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-234.4194f, 366.988f), 0.25f), new(new(-234.42387f, 353.9468f), 1.214f), new(new(-235.56491f, 386.03842f), 1.214f), new(new(0f, 0f), 0f), new(new(-218.94879f, 370.56866f), 1.214f)),
+ new(new(new(-181.9648f, 367.6225f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-366.3537f, 410.4308f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-319.4517f, 412.8329f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-222.3592f, 422.2233f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ]),
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(242.2688f, -407.3709f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(292.2455f, -419.7115f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(388.2386f, -406.8889f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(198.5498f, -349.3167f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(254.3103f, -360.2792f), 0.25f), new(new(254.56653f, -362.0403f), 1.214f), new(new(253.42549f, -329.9487f), 1.214f), new(new(237.95001f, -346.55948f), 1.214f), new(new(270.0416f, -345.41846f), 1.214f)),
+ new(new(new(312.5266f, -372.1913f), 0.25f), new(new(312.56534f, -374.04062f), 1.214f), new(new(311.42432f, -341.949f), 1.214f), new(new(295.94882f, -358.55978f), 1.214f), new(new(328.0404f, -357.41876f), 1.214f)),
+ new(new(new(368.1f, -349.5093f), 0.25f), new(new(368.56464f, -362.0404f), 1.214f), new(new(0f, 0f), 0f), new(new(351.94812f, -346.55957f), 1.214f), new(new(384.0397f, -345.41855f), 1.214f)),
+ new(new(new(426.6133f, -361.1192f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(184.1457f, -302.9055f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(241.7038f, -290.2035f), 0.25f), new(new(242.56662f, -304.0414f), 1.214f), new(new(0f, 0f), 0f), new(new(225.9501f, -288.56058f), 1.214f), new(new(0f, 0f), 0f)),
+ new(new(new(300.4155f, -302.2205f), 0.25f), new(new(300.56543f, -316.04132f), 1.214f), new(new(299.4244f, -283.9497f), 1.214f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(367.718f, -302.5081f), 0.25f), new(new(0f, 0f), 0f), new(new(365.4238f, -283.9496f), 1.214f), new(new(0f, 0f), 0f), new(new(388.03958f, -299.41934f), 1.214f)),
+ new(new(new(429.744f, -314.3755f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(184.4104f, -233.1253f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(242.0357f, -256.29388f), 0.25f), new(new(0f, 0f), 0f), new(new(241.42538f, -225.9505f), 1.214f), new(new(225.9499f, -242.56126f), 1.214f), new(new(258.0415f, -241.42027f), 1.214f)),
+ new(new(new(300.4155f, -244.9101f), 0.25f), new(new(300.5656f, -258.042f), 1.214f), new(new(299.4246f, -225.95041f), 1.214f), new(new(283.9491f, -242.56116f), 1.214f), new(new(316.04068f, -241.42017f), 1.214f)),
+ new(new(new(366.0983f, -267.7899f), 0.25f), new(new(366.56522f, -270.0419f), 1.214f), new(new(365.4242f, -237.95029f), 1.214f), new(new(349.9487f, -254.56105f), 1.214f), new(new(382.04028f, -253.42006f), 1.214f)),
+ new(new(new(420.3033f, -256.66272f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(242.5427f, -187.026f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(319.9643f, -187.5298f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(378.353f, -198.3665f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ])
+ ),
+ ["1.4"] = new(
+ 1,
+ 3,
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-375.1498f, 185.3075f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-287.8494f, 175.8575f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-223.3866f, 197.1989f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-410.8553f, 241.1827f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-355.2747f, 241.0947f), 0.25f), new(new(-354.99368f, 226.691f), 1.140426f), new(new(0f, 0f), 0f), new(new(-372.29852f, 244.00179f), 1.140426f), new(new(-337.6889f, 244.00179f), 1.140426f)),
+ new(new(new(-300.0493f, 240.961f), 0.25f), new(new(-299.99396f, 226.6908f), 1.140426f), new(new(-299.994f, 261.3004f), 1.140426f), new(new(-317.29892f, 244.00159f), 1.140426f), new(new(-282.6893f, 244.00159f), 1.140426f)),
+ new(new(new(-243.7047f, 243.4734f), 0.25f), new(new(-234.99408f, 238.6906f), 1.140426f), new(new(0f, 0f), 0f), new(new(-252.2996f, 256.00146f), 1.140426f), new(new(-217.68929f, 256.00137f), 1.140426f)),
+ new(new(new(-177.7028f, 253.1477f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-419.0171f, 297.3047f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-366.8425f, 296.9368f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(-384.2981f, 299.99997f), 1.140426f), new(new(-349.68848f, 299.99997f), 1.140426f)),
+ new(new(new(-308.6841f, 304.1f), 0.25f), new(new(-299.99377f, 278.6857f), 1.140426f), new(new(-299.9903f, 321.295f), 1.140426f), new(new(-317.2986f, 299.99628f), 1.140426f), new(new(-282.689f, 301.99628f), 1.140426f)),
+ new(new(new(-235.169f, 311.2792f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(-252.30101f, 313.99918f), 1.140426f), new(new(-217.69139f, 313.99918f), 1.140426f)),
+ new(new(new(-180.7976f, 311.3758f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-417.566f, 354.636f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-364.2147f, 345.0069f), 0.25f), new(new(0f, 0f), 0f), new(new(-354.9908f, 375.298f), 1.140426f), new(new(-372.2958f, 357.99918f), 1.140426f), new(new(-337.6868f, 357.99927f), 1.140426f)),
+ new(new(new(-308.562f, 362.7122f), 0.25f), new(new(-299.99106f, 340.68848f), 1.140426f), new(new(-299.9911f, 375.2981f), 1.140426f), new(new(-317.2966f, 357.9994f), 1.140426f), new(new(-282.6871f, 357.9994f), 1.140426f)),
+ new(new(new(-234.8412f, 367.0198f), 0.25f), new(new(0f, 0f), 0f), new(new(-234.99442f, 387.29742f), 1.140426f), new(new(-252.2996f, 369.9987f), 1.140426f), new(new(-217.68959f, 369.9986f), 1.140426f)),
+ new(new(new(-180.7421f, 367.1945f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-366.9833f, 412.5256f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-319.8491f, 412.5222f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-222.8512f, 422.8012f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ]),
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(241.6549f, -415.1002f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(291.4778f, -422.5872f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(388.0814f, -416.5132f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(196.7861f, -349.2682f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(244.551f, -358.8237f), 0.25f), new(new(253.99602f, -363.29932f), 1.140426f), new(new(253.99599f, -328.6897f), 1.140426f), new(new(236.6912f, -345.98853f), 1.140426f), new(new(271.3008f, -345.98853f), 1.140426f)),
+ new(new(new(303.4736f, -353.1604f), 0.25f), new(new(311.99484f, -375.29962f), 1.140426f), new(new(311.9948f, -340.69f), 1.140426f), new(new(294.69f, -357.98883f), 1.140426f), new(new(0f, 0f), 0f)),
+ new(new(new(368.026f, -348.8077f), 0.25f), new(new(367.99414f, -363.2994f), 1.140426f), new(new(367.9941f, -328.6898f), 1.140426f), new(new(0f, 0f), 0f), new(new(385.29892f, -345.98862f), 1.140426f)),
+ new(new(new(432.1373f, -361.4377f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(179.0099f, -303.0655f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(242.1531f, -290.8822f), 0.25f), new(new(241.99611f, -305.3004f), 1.140426f), new(new(241.99611f, -270.6908f), 1.140426f), new(new(224.69128f, -287.98962f), 1.140426f), new(new(0f, 0f), 0f)),
+ new(new(new(300.0091f, -302.6707f), 0.25f), new(new(299.99493f, -317.30032f), 1.140426f), new(new(299.9949f, -282.6907f), 1.140426f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(367.9897f, -302.8293f), 0.25f), new(new(367.99432f, -317.3002f), 1.140426f), new(new(365.9943f, -282.69058f), 1.140426f), new(new(0f, 0f), 0f), new(new(389.2988f, -299.9894f), 1.140426f)),
+ new(new(new(439.2119f, -314.6513f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(179.8093f, -233.0277f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(232.0079f, -254.6378f), 0.25f), new(new(241.99591f, -259.30112f), 1.140426f), new(new(241.99588f, -224.6915f), 1.140426f), new(new(224.69109f, -241.99033f), 1.140426f), new(new(0f, 0f), 0f)),
+ new(new(new(293.3234f, -250.8034f), 0.25f), new(new(299.99512f, -259.301f), 1.140426f), new(new(299.9951f, -224.69139f), 1.140426f), new(new(0f, 0f), 0f), new(new(317.2999f, -241.99022f), 1.140426f)),
+ new(new(new(357.5139f, -249.6363f), 0.25f), new(new(365.99472f, -271.3009f), 1.140426f), new(new(365.9947f, -236.69128f), 1.140426f), new(new(348.68988f, -253.99011f), 1.140426f), new(new(383.2995f, -253.99011f), 1.140426f)),
+ new(new(new(419.6602f, -257.0983f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(241.9875f, -181.5087f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(320.2658f, -186.8763f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(378.2152f, -195.408f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ])
+ ),
+ ["1.5"] = new(
+ 1,
+ 4,
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(241.6549f, -415.1002f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(291.4778f, -422.5872f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(388.0814f, -416.5132f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(196.7861f, -349.2682f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(244.551f, -358.8237f), 0.25f), new(new(253.99602f, -363.29932f), 1.140426f), new(new(253.99599f, -328.6897f), 1.140426f), new(new(236.6912f, -345.98853f), 1.140426f), new(new(271.3008f, -345.98853f), 1.140426f)),
+ new(new(new(303.4736f, -353.1604f), 0.25f), new(new(311.99484f, -375.29962f), 1.140426f), new(new(311.9948f, -340.69f), 1.140426f), new(new(294.69f, -357.98883f), 1.140426f), new(new(0f, 0f), 0f)),
+ new(new(new(368.026f, -348.8077f), 0.25f), new(new(367.99414f, -363.2994f), 1.140426f), new(new(367.9941f, -328.6898f), 1.140426f), new(new(0f, 0f), 0f), new(new(385.29892f, -345.98862f), 1.140426f)),
+ new(new(new(432.1373f, -361.4377f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(179.0099f, -303.0655f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(242.1531f, -290.8822f), 0.25f), new(new(241.99611f, -305.3004f), 1.140426f), new(new(241.99611f, -270.6908f), 1.140426f), new(new(224.69128f, -287.98962f), 1.140426f), new(new(0f, 0f), 0f)),
+ new(new(new(300.0091f, -302.6707f), 0.25f), new(new(299.99493f, -317.30032f), 1.140426f), new(new(299.9949f, -282.6907f), 1.140426f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(367.9897f, -302.8293f), 0.25f), new(new(367.99432f, -317.3002f), 1.140426f), new(new(365.9943f, -282.69058f), 1.140426f), new(new(0f, 0f), 0f), new(new(389.2988f, -299.9894f), 1.140426f)),
+ new(new(new(439.2119f, -314.6513f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(179.8093f, -233.0277f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(232.0079f, -254.6378f), 0.25f), new(new(241.99591f, -259.30112f), 1.140426f), new(new(241.99588f, -224.6915f), 1.140426f), new(new(224.69109f, -241.99033f), 1.140426f), new(new(0f, 0f), 0f)),
+ new(new(new(293.3234f, -250.8034f), 0.25f), new(new(299.99512f, -259.301f), 1.140426f), new(new(299.9951f, -224.69139f), 1.140426f), new(new(0f, 0f), 0f), new(new(317.2999f, -241.99022f), 1.140426f)),
+ new(new(new(357.5139f, -249.6363f), 0.25f), new(new(365.99472f, -271.3009f), 1.140426f), new(new(365.9947f, -236.69128f), 1.140426f), new(new(348.68988f, -253.99011f), 1.140426f), new(new(383.2995f, -253.99011f), 1.140426f)),
+ new(new(new(419.6602f, -257.0983f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(241.9875f, -181.5087f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(320.2658f, -186.8763f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(378.2152f, -195.408f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ]),
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-375.1498f, 185.3075f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-287.8494f, 175.8575f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-223.3866f, 197.1989f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-410.8553f, 241.1827f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-355.2747f, 241.0947f), 0.25f), new(new(-354.99368f, 226.691f), 1.140426f), new(new(0f, 0f), 0f), new(new(-372.29852f, 244.00179f), 1.140426f), new(new(-337.6889f, 244.00179f), 1.140426f)),
+ new(new(new(-300.0493f, 240.961f), 0.25f), new(new(-299.99396f, 226.6908f), 1.140426f), new(new(-299.994f, 261.3004f), 1.140426f), new(new(-317.29892f, 244.00159f), 1.140426f), new(new(-282.6893f, 244.00159f), 1.140426f)),
+ new(new(new(-243.7047f, 243.4734f), 0.25f), new(new(-234.99408f, 238.6906f), 1.140426f), new(new(0f, 0f), 0f), new(new(-252.2996f, 256.00146f), 1.140426f), new(new(-217.68929f, 256.00137f), 1.140426f)),
+ new(new(new(-177.7028f, 253.1477f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-419.0171f, 297.3047f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-366.8425f, 296.9368f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(-384.2981f, 299.99997f), 1.140426f), new(new(-349.68848f, 299.99997f), 1.140426f)),
+ new(new(new(-308.6841f, 304.1f), 0.25f), new(new(-299.99377f, 278.6857f), 1.140426f), new(new(-299.9903f, 321.295f), 1.140426f), new(new(-317.2986f, 299.99628f), 1.140426f), new(new(-282.689f, 301.99628f), 1.140426f)),
+ new(new(new(-235.169f, 311.2792f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(-252.30101f, 313.99918f), 1.140426f), new(new(-217.69139f, 313.99918f), 1.140426f)),
+ new(new(new(-180.7976f, 311.3758f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-417.566f, 354.636f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-364.2147f, 345.0069f), 0.25f), new(new(0f, 0f), 0f), new(new(-354.9908f, 375.298f), 1.140426f), new(new(-372.2958f, 357.99918f), 1.140426f), new(new(-337.6868f, 357.99927f), 1.140426f)),
+ new(new(new(-308.562f, 362.7122f), 0.25f), new(new(-299.99106f, 340.68848f), 1.140426f), new(new(-299.9911f, 375.2981f), 1.140426f), new(new(-317.2966f, 357.9994f), 1.140426f), new(new(-282.6871f, 357.9994f), 1.140426f)),
+ new(new(new(-234.8412f, 367.0198f), 0.25f), new(new(0f, 0f), 0f), new(new(-234.99442f, 387.29742f), 1.140426f), new(new(-252.2996f, 369.9987f), 1.140426f), new(new(-217.68959f, 369.9986f), 1.140426f)),
+ new(new(new(-180.7421f, 367.1945f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-366.9833f, 412.5256f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-319.8491f, 412.5222f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-222.8512f, 422.8012f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ])
+ ),
+ ["1.6"] = new(
+ 1,
+ 5,
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-372.0326f, 184.973f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-300f, 181.0293f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-224.0507f, 197f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-404.0083f, 241.1312f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-344.6464f, 248.3687f), 0.25f), new(new(-352f, 225.25f), 1.2f), new(new(-352f, 262.75f), 1.2f), new(new(-370.75f, 244.00647f), 1.2f), new(new(0f, 0f), 0f)),
+ new(new(new(-299.9166f, 240.9613f), 0.25f), new(new(-300f, 225.25f), 1.2f), new(new(-300f, 262.75f), 1.2f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-228.7655f, 260.4214f), 0.25f), new(new(-236f, 237.25f), 1.2f), new(new(-236f, 274.75f), 1.2f), new(new(0f, 0f), 0f), new(new(-217.25f, 256.00647f), 1.2f)),
+ new(new(new(-180f, 253f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-416f, 297f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-371.5812f, 304.5652f), 0.25f), new(new(-364f, 281.25f), 1.2f), new(new(-364f, 318.75f), 1.2f), new(new(-382.75f, 300.00647f), 1.2f), new(new(-345.25f, 300.00647f), 1.2f)),
+ new(new(new(-300f, 297f), 0.25f), new(new(-300f, 277.25f), 1.2f), new(new(-300f, 322.75f), 1.2f), new(new(-318.75f, 300.00647f), 1.2f), new(new(-281.25f, 300.00647f), 1.2f)),
+ new(new(new(-228.834f, 316.2514f), 0.25f), new(new(-236f, 293.25f), 1.2f), new(new(-236f, 330.75f), 1.2f), new(new(-254.75f, 312.00647f), 1.2f), new(new(-217.25f, 312.00647f), 1.2f)),
+ new(new(new(-183.9744f, 309.017f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-407.4052f, 353.0297f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-352.0754f, 352.9926f), 0.25f), new(new(-352f, 337.25f), 1.2f), new(new(-352f, 374.75f), 1.2f), new(new(-370.75f, 356.00647f), 1.2f), new(new(0f, 0f), 0f)),
+ new(new(new(-300f, 353f), 0.25f), new(new(-300f, 337.25f), 1.2f), new(new(-300f, 374.75f), 1.2f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-236f, 365f), 0.25f), new(new(-236f, 345.25f), 1.2f), new(new(-236f, 390.75f), 1.2f), new(new(0f, 0f), 0f), new(new(-217.25f, 368.00647f), 1.2f)),
+ new(new(new(-183.9406f, 365.1953f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-363.9096f, 407.6941f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-280f, 408.9842f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-223.9719f, 425.0208f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ]),
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(243.9585f, -410.9901f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(304.038f, -414.9721f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(380f, -411f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(204f, -346.982f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(255.9754f, -346.9631f), 0.25f), new(new(256f, -362.75f), 1.2f), new(new(0f, 0f), 0f), new(new(237.25f, -343.99353f), 1.2f), new(new(274.75f, -343.99353f), 1.2f)),
+ new(new(new(311.9414f, -358.9607f), 0.25f), new(new(312f, -374.75f), 1.2f), new(new(312f, -337.25f), 1.2f), new(new(293.25f, -355.99353f), 1.2f), new(new(330.75f, -355.99353f), 1.2f)),
+ new(new(new(375.1467f, -354.1331f), 0.25f), new(new(368f, -362.75f), 1.2f), new(new(0f, 0f), 0f), new(new(349.25f, -343.99353f), 1.2f), new(new(386.75f, -343.99353f), 1.2f)),
+ new(new(new(424f, -359f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(188f, -303f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(251.2701f, -283.7987f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(225.25f, -287.99353f), 1.2f), new(new(262.75f, -287.99353f), 1.2f)),
+ new(new(new(300f, -303f), 0.25f), new(new(300f, -318.75f), 1.2f), new(new(300f, -281.25f), 1.2f), new(new(281.25f, -299.99353f), 1.2f), new(new(318.75f, -299.99353f), 1.2f)),
+ new(new(new(355.9931f, -291.013f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(337.25f, -287.99353f), 1.2f), new(new(374.75f, -287.99353f), 1.2f)),
+ new(new(new(424.1349f, -291.0209f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(192f, -222.8349f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(243.9885f, -234.9678f), 0.25f), new(new(0f, 0f), 0f), new(new(244f, -209.25f), 1.2f), new(new(225.25f, -231.99353f), 1.2f), new(new(262.75f, -231.99353f), 1.2f)),
+ new(new(new(307.4888f, -254.5737f), 0.25f), new(new(300f, -262.75f), 1.2f), new(new(300f, -225.25f), 1.2f), new(new(281.25f, -243.99353f), 1.2f), new(new(318.75f, -243.99353f), 1.2f)),
+ new(new(new(356f, -235f), 0.25f), new(new(0f, 0f), 0f), new(new(356f, -209.25f), 1.2f), new(new(337.25f, -231.99353f), 1.2f), new(new(374.75f, -231.99353f), 1.2f)),
+ new(new(new(408.0466f, -235.0723f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(232.0002f, -170.9579f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(320f, -191f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(368.0591f, -175.0106f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ])
+ ),
+ ["1.7"] = new(
+ 1,
+ 6,
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(243.9585f, -410.9901f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(304.038f, -414.9721f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(380f, -411f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(204f, -346.982f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(255.9754f, -346.9631f), 0.25f), new(new(256f, -362.75f), 1.2f), new(new(0f, 0f), 0f), new(new(237.25f, -343.99353f), 1.2f), new(new(274.75f, -343.99353f), 1.2f)),
+ new(new(new(311.9414f, -358.9607f), 0.25f), new(new(312f, -374.75f), 1.2f), new(new(312f, -337.25f), 1.2f), new(new(293.25f, -355.99353f), 1.2f), new(new(330.75f, -355.99353f), 1.2f)),
+ new(new(new(375.1467f, -354.1331f), 0.25f), new(new(368f, -362.75f), 1.2f), new(new(0f, 0f), 0f), new(new(349.25f, -343.99353f), 1.2f), new(new(386.75f, -343.99353f), 1.2f)),
+ new(new(new(424f, -359f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(188f, -303f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(251.2701f, -283.7987f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(225.25f, -287.99353f), 1.2f), new(new(262.75f, -287.99353f), 1.2f)),
+ new(new(new(300f, -303f), 0.25f), new(new(300f, -318.75f), 1.2f), new(new(300f, -281.25f), 1.2f), new(new(281.25f, -299.99353f), 1.2f), new(new(318.75f, -299.99353f), 1.2f)),
+ new(new(new(355.9931f, -291.013f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(337.25f, -287.99353f), 1.2f), new(new(374.75f, -287.99353f), 1.2f)),
+ new(new(new(424.1349f, -291.0209f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(192f, -222.8349f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(243.9885f, -234.9678f), 0.25f), new(new(0f, 0f), 0f), new(new(244f, -209.25f), 1.2f), new(new(225.25f, -231.99353f), 1.2f), new(new(262.75f, -231.99353f), 1.2f)),
+ new(new(new(307.4888f, -254.5737f), 0.25f), new(new(300f, -262.75f), 1.2f), new(new(300f, -225.25f), 1.2f), new(new(281.25f, -243.99353f), 1.2f), new(new(318.75f, -243.99353f), 1.2f)),
+ new(new(new(356f, -235f), 0.25f), new(new(0f, 0f), 0f), new(new(356f, -209.25f), 1.2f), new(new(337.25f, -231.99353f), 1.2f), new(new(374.75f, -231.99353f), 1.2f)),
+ new(new(new(408.0466f, -235.0723f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(232.0002f, -170.9579f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(320f, -191f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(368.0591f, -175.0106f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ]),
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-372.0326f, 184.973f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-300f, 181.0293f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-224.0507f, 197f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-404.0083f, 241.1312f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-344.6464f, 248.3687f), 0.25f), new(new(-352f, 225.25f), 1.2f), new(new(-352f, 262.75f), 1.2f), new(new(-370.75f, 244.00647f), 1.2f), new(new(0f, 0f), 0f)),
+ new(new(new(-299.9166f, 240.9613f), 0.25f), new(new(-300f, 225.25f), 1.2f), new(new(-300f, 262.75f), 1.2f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-228.7655f, 260.4214f), 0.25f), new(new(-236f, 237.25f), 1.2f), new(new(-236f, 274.75f), 1.2f), new(new(0f, 0f), 0f), new(new(-217.25f, 256.00647f), 1.2f)),
+ new(new(new(-180f, 253f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-416f, 297f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-371.5812f, 304.5652f), 0.25f), new(new(-364f, 281.25f), 1.2f), new(new(-364f, 318.75f), 1.2f), new(new(-382.75f, 300.00647f), 1.2f), new(new(-345.25f, 300.00647f), 1.2f)),
+ new(new(new(-300f, 297f), 0.25f), new(new(-300f, 277.25f), 1.2f), new(new(-300f, 322.75f), 1.2f), new(new(-318.75f, 300.00647f), 1.2f), new(new(-281.25f, 300.00647f), 1.2f)),
+ new(new(new(-228.834f, 316.2514f), 0.25f), new(new(-236f, 293.25f), 1.2f), new(new(-236f, 330.75f), 1.2f), new(new(-254.75f, 312.00647f), 1.2f), new(new(-217.25f, 312.00647f), 1.2f)),
+ new(new(new(-183.9744f, 309.017f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-407.4052f, 353.0297f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-352.0754f, 352.9926f), 0.25f), new(new(-352f, 337.25f), 1.2f), new(new(-352f, 374.75f), 1.2f), new(new(-370.75f, 356.00647f), 1.2f), new(new(0f, 0f), 0f)),
+ new(new(new(-300f, 353f), 0.25f), new(new(-300f, 337.25f), 1.2f), new(new(-300f, 374.75f), 1.2f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-236f, 365f), 0.25f), new(new(-236f, 345.25f), 1.2f), new(new(-236f, 390.75f), 1.2f), new(new(0f, 0f), 0f), new(new(-217.25f, 368.00647f), 1.2f)),
+ new(new(new(-183.9406f, 365.1953f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-363.9096f, 407.6941f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-280f, 408.9842f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-223.9719f, 425.0208f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ])
+ ),
+ ["1.8"] = new(
+ 1,
+ 7,
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-372.0326f, 184.973f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-300f, 181.0293f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-224.0507f, 197f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-404.0083f, 241.1312f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-344.6464f, 248.3687f), 0.25f), new(new(-352f, 225.25f), 1.2f), new(new(-352f, 262.75f), 1.2f), new(new(-370.75f, 244.00647f), 1.2f), new(new(0f, 0f), 0f)),
+ new(new(new(-299.9166f, 240.9613f), 0.25f), new(new(-300f, 225.25f), 1.2f), new(new(-300f, 262.75f), 1.2f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-228.7655f, 260.4214f), 0.25f), new(new(-236f, 237.25f), 1.2f), new(new(-236f, 274.75f), 1.2f), new(new(0f, 0f), 0f), new(new(-217.25f, 256.00647f), 1.2f)),
+ new(new(new(-180f, 253f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-416f, 297f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-371.5812f, 304.5652f), 0.25f), new(new(-364f, 281.25f), 1.2f), new(new(-364f, 318.75f), 1.2f), new(new(-382.75f, 300.00647f), 1.2f), new(new(-345.25f, 300.00647f), 1.2f)),
+ new(new(new(-300f, 297f), 0.25f), new(new(-300f, 277.25f), 1.2f), new(new(-300f, 322.75f), 1.2f), new(new(-318.75f, 300.00647f), 1.2f), new(new(-281.25f, 300.00647f), 1.2f)),
+ new(new(new(-228.834f, 316.2514f), 0.25f), new(new(-236f, 293.25f), 1.2f), new(new(-236f, 330.75f), 1.2f), new(new(-254.75f, 312.00647f), 1.2f), new(new(-217.25f, 312.00647f), 1.2f)),
+ new(new(new(-183.9744f, 309.017f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-407.4052f, 353.0297f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-352.0754f, 352.9926f), 0.25f), new(new(-352f, 337.25f), 1.2f), new(new(-352f, 374.75f), 1.2f), new(new(-370.75f, 356.00647f), 1.2f), new(new(0f, 0f), 0f)),
+ new(new(new(-300f, 353f), 0.25f), new(new(-300f, 337.25f), 1.2f), new(new(-300f, 374.75f), 1.2f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-236f, 365f), 0.25f), new(new(-236f, 345.25f), 1.2f), new(new(-236f, 390.75f), 1.2f), new(new(0f, 0f), 0f), new(new(-217.25f, 368.00647f), 1.2f)),
+ new(new(new(-183.9406f, 365.1953f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-363.9096f, 407.6941f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-280f, 408.9842f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-223.9719f, 425.0208f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ]),
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(243.9585f, -410.9901f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(304.038f, -414.9721f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(380f, -411f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(204f, -346.982f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(255.9754f, -346.9631f), 0.25f), new(new(256f, -362.75f), 1.2f), new(new(0f, 0f), 0f), new(new(237.25f, -343.99353f), 1.2f), new(new(274.75f, -343.99353f), 1.2f)),
+ new(new(new(311.9414f, -358.9607f), 0.25f), new(new(312f, -374.75f), 1.2f), new(new(312f, -337.25f), 1.2f), new(new(293.25f, -355.99353f), 1.2f), new(new(330.75f, -355.99353f), 1.2f)),
+ new(new(new(375.1467f, -354.1331f), 0.25f), new(new(368f, -362.75f), 1.2f), new(new(0f, 0f), 0f), new(new(349.25f, -343.99353f), 1.2f), new(new(386.75f, -343.99353f), 1.2f)),
+ new(new(new(424f, -359f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(188f, -303f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(251.2701f, -283.7987f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(225.25f, -287.99353f), 1.2f), new(new(262.75f, -287.99353f), 1.2f)),
+ new(new(new(300f, -303f), 0.25f), new(new(300f, -318.75f), 1.2f), new(new(300f, -281.25f), 1.2f), new(new(281.25f, -299.99353f), 1.2f), new(new(318.75f, -299.99353f), 1.2f)),
+ new(new(new(355.9931f, -291.013f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(337.25f, -287.99353f), 1.2f), new(new(374.75f, -287.99353f), 1.2f)),
+ new(new(new(424.1349f, -291.0209f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(192f, -222.8349f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(243.9885f, -234.9678f), 0.25f), new(new(0f, 0f), 0f), new(new(244f, -209.25f), 1.2f), new(new(225.25f, -231.99353f), 1.2f), new(new(262.75f, -231.99353f), 1.2f)),
+ new(new(new(307.4888f, -254.5737f), 0.25f), new(new(300f, -262.75f), 1.2f), new(new(300f, -225.25f), 1.2f), new(new(281.25f, -243.99353f), 1.2f), new(new(318.75f, -243.99353f), 1.2f)),
+ new(new(new(356f, -235f), 0.25f), new(new(0f, 0f), 0f), new(new(356f, -209.25f), 1.2f), new(new(337.25f, -231.99353f), 1.2f), new(new(374.75f, -231.99353f), 1.2f)),
+ new(new(new(408.0466f, -235.0723f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(232.0002f, -170.9579f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(320f, -191f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(368.0591f, -175.0106f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ])
+ ),
+ ["1.9"] = new(
+ 1,
+ 8,
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-380.1721f, 179.5666f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-287.9569f, 190.2903f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-221.3966f, 190.5355f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-405.3693f, 239.1194f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-357.8347f, 228.6303f), 0.25f), new(new(-358f, 223.05867f), 2.737763f), new(new(-357.9869f, 260.9413f), 2.737763f), new(new(-376.9413f, 241.99345f), 2.737763f), new(new(0f, 0f), 0f)),
+ new(new(new(-299.7426f, 240.7839f), 0.25f), new(new(-300f, 225.05867f), 2.737763f), new(new(-300f, 262.9413f), 2.737763f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-233.9421f, 236.5104f), 0.25f), new(new(-234f, 233.05867f), 2.737763f), new(new(-234.01308f, 270.9413f), 2.737763f), new(new(0f, 0f), 0f), new(new(-215.05867f, 251.99345f), 2.737763f)),
+ new(new(new(-178.793f, 248.8454f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-424.9064f, 297.1447f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-369.6908f, 284.4935f), 0.25f), new(new(-370f, 281.05865f), 2.737763f), new(new(-370.0131f, 318.9413f), 2.737763f), new(new(-388.9413f, 299.9783f), 2.737763f), new(new(-351.0587f, 299.99347f), 2.737763f)),
+ new(new(new(-299.6884f, 297.1234f), 0.25f), new(new(-300f, 281.05865f), 2.737763f), new(new(-300.0131f, 318.9413f), 2.737763f), new(new(-318.9413f, 299.9783f), 2.737763f), new(new(-281.0587f, 299.99347f), 2.737763f)),
+ new(new(new(-234.7379f, 308.734f), 0.25f), new(new(-234f, 293.05865f), 2.737763f), new(new(-234.01308f, 330.9413f), 2.737763f), new(new(-252.94131f, 311.9783f), 2.737763f), new(new(-215.05867f, 311.99347f), 2.737763f)),
+ new(new(new(-180.6718f, 309.7213f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-413.7624f, 355.4533f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-358.1566f, 363.1845f), 0.25f), new(new(-358f, 339.05865f), 2.737763f), new(new(-357.9869f, 376.9413f), 2.737763f), new(new(-376.9413f, 357.99347f), 2.737763f), new(new(0f, 0f), 0f)),
+ new(new(new(-298.6445f, 353.4265f), 0.25f), new(new(-300f, 337.05865f), 2.737763f), new(new(-300f, 374.9413f), 2.737763f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-233.3256f, 354.8542f), 0.25f), new(new(-234f, 349.05865f), 2.737763f), new(new(-234.01308f, 386.9413f), 2.737763f), new(new(0f, 0f), 0f), new(new(-215.05867f, 367.99347f), 2.737763f)),
+ new(new(new(-179.4589f, 354.7743f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-370.5751f, 413.3585f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-320.1774f, 413.0759f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-221.1949f, 415.2851f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ]),
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(242.1796f, -407.2313f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(290.1965f, -420.2906f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(392.2032f, -408.64f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(197.9624f, -347.5001f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(254.2531f, -359.6218f), 0.25f), new(new(254f, -364.94135f), 2.737763f), new(new(0f, 0f), 0f), new(new(235.05867f, -346.00653f), 2.737763f), new(new(272.9413f, -346.00653f), 2.737763f)),
+ new(new(new(312.0063f, -371.433f), 0.25f), new(new(312f, -376.94135f), 2.737763f), new(new(312.0131f, -339.0587f), 2.737763f), new(new(293.05865f, -358.00653f), 2.737763f), new(new(330.9413f, -358.00653f), 2.737763f)),
+ new(new(new(370.1484f, -349.1985f), 0.25f), new(new(370f, -364.94135f), 2.737763f), new(new(0f, 0f), 0f), new(new(351.05865f, -346.00653f), 2.737763f), new(new(388.9413f, -346.00653f), 2.737763f)),
+ new(new(new(427.0493f, -361.4105f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(183.9281f, -303.2903f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(241.7273f, -291.0918f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(223.05867f, -288.00653f), 2.737763f), new(new(260.9413f, -288.00653f), 2.737763f)),
+ new(new(new(300.7613f, -302.1629f), 0.25f), new(new(300f, -318.94135f), 2.737763f), new(new(300.0131f, -281.0587f), 2.737763f), new(new(281.0587f, -300.00653f), 2.737763f), new(new(318.9413f, -300.0217f), 2.737763f)),
+ new(new(new(369.3706f, -303.0645f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(351.05865f, -300.00653f), 2.737763f), new(new(388.9413f, -300.00653f), 2.737763f)),
+ new(new(new(428.522f, -314.7849f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(182.0426f, -231.1508f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(240.2729f, -233.5267f), 0.25f), new(new(0f, 0f), 0f), new(new(240.01308f, -221.05867f), 2.737763f), new(new(221.05867f, -240.00655f), 2.737763f), new(new(258.9413f, -240.02168f), 2.737763f)),
+ new(new(new(300.0534f, -243.3069f), 0.25f), new(new(300f, -258.94135f), 2.737763f), new(new(300.0131f, -221.05867f), 2.737763f), new(new(281.0587f, -240.00655f), 2.737763f), new(new(318.9413f, -240.02168f), 2.737763f)),
+ new(new(new(368.136f, -264.6359f), 0.25f), new(new(0f, 0f), 0f), new(new(368.0131f, -233.05867f), 2.737763f), new(new(349.0587f, -252.00655f), 2.737763f), new(new(386.9413f, -252.02168f), 2.737763f)),
+ new(new(new(424.8528f, -254.8204f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(240.0285f, -186.7159f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(322.1534f, -183.239f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(380.2201f, -206.9923f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ])
+ ),
+ ["1.10"] = new(
+ 1,
+ 9,
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(242.1796f, -407.2313f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(290.1965f, -420.2906f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(392.2032f, -408.64f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(197.9624f, -347.5001f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(254.2531f, -359.6218f), 0.25f), new(new(254f, -364.94135f), 2.737763f), new(new(0f, 0f), 0f), new(new(235.05867f, -346.00653f), 2.737763f), new(new(272.9413f, -346.00653f), 2.737763f)),
+ new(new(new(312.0063f, -371.433f), 0.25f), new(new(312f, -376.94135f), 2.737763f), new(new(312.0131f, -339.0587f), 2.737763f), new(new(293.05865f, -358.00653f), 2.737763f), new(new(330.9413f, -358.00653f), 2.737763f)),
+ new(new(new(370.1484f, -349.1985f), 0.25f), new(new(370f, -364.94135f), 2.737763f), new(new(0f, 0f), 0f), new(new(351.05865f, -346.00653f), 2.737763f), new(new(388.9413f, -346.00653f), 2.737763f)),
+ new(new(new(427.0493f, -361.4105f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(183.9281f, -303.2903f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(241.7273f, -291.0918f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(223.05867f, -288.00653f), 2.737763f), new(new(260.9413f, -288.00653f), 2.737763f)),
+ new(new(new(300.7613f, -302.1629f), 0.25f), new(new(300f, -318.94135f), 2.737763f), new(new(300.0131f, -281.0587f), 2.737763f), new(new(281.0587f, -300.00653f), 2.737763f), new(new(318.9413f, -300.0217f), 2.737763f)),
+ new(new(new(369.3706f, -303.0645f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(351.05865f, -300.00653f), 2.737763f), new(new(388.9413f, -300.00653f), 2.737763f)),
+ new(new(new(428.522f, -314.7849f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(182.0426f, -231.1508f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(240.2729f, -233.5267f), 0.25f), new(new(0f, 0f), 0f), new(new(240.01308f, -221.05867f), 2.737763f), new(new(221.05867f, -240.00655f), 2.737763f), new(new(258.9413f, -240.02168f), 2.737763f)),
+ new(new(new(300.0534f, -243.3069f), 0.25f), new(new(300f, -258.94135f), 2.737763f), new(new(300.0131f, -221.05867f), 2.737763f), new(new(281.0587f, -240.00655f), 2.737763f), new(new(318.9413f, -240.02168f), 2.737763f)),
+ new(new(new(368.136f, -264.6359f), 0.25f), new(new(0f, 0f), 0f), new(new(368.0131f, -233.05867f), 2.737763f), new(new(349.0587f, -252.00655f), 2.737763f), new(new(386.9413f, -252.02168f), 2.737763f)),
+ new(new(new(424.8528f, -254.8204f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(240.0285f, -186.7159f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(322.1534f, -183.239f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(380.2201f, -206.9923f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ]),
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-380.1721f, 179.5666f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-287.9569f, 190.2903f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-221.3966f, 190.5355f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-405.3693f, 239.1194f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-357.8347f, 228.6303f), 0.25f), new(new(-358f, 223.05867f), 2.737763f), new(new(-357.9869f, 260.9413f), 2.737763f), new(new(-376.9413f, 241.99345f), 2.737763f), new(new(0f, 0f), 0f)),
+ new(new(new(-299.7426f, 240.7839f), 0.25f), new(new(-300f, 225.05867f), 2.737763f), new(new(-300f, 262.9413f), 2.737763f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-233.9421f, 236.5104f), 0.25f), new(new(-234f, 233.05867f), 2.737763f), new(new(-234.01308f, 270.9413f), 2.737763f), new(new(0f, 0f), 0f), new(new(-215.05867f, 251.99345f), 2.737763f)),
+ new(new(new(-178.793f, 248.8454f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-424.9064f, 297.1447f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-369.6908f, 284.4935f), 0.25f), new(new(-370f, 281.05865f), 2.737763f), new(new(-370.0131f, 318.9413f), 2.737763f), new(new(-388.9413f, 299.9783f), 2.737763f), new(new(-351.0587f, 299.99347f), 2.737763f)),
+ new(new(new(-299.6884f, 297.1234f), 0.25f), new(new(-300f, 281.05865f), 2.737763f), new(new(-300.0131f, 318.9413f), 2.737763f), new(new(-318.9413f, 299.9783f), 2.737763f), new(new(-281.0587f, 299.99347f), 2.737763f)),
+ new(new(new(-234.7379f, 308.734f), 0.25f), new(new(-234f, 293.05865f), 2.737763f), new(new(-234.01308f, 330.9413f), 2.737763f), new(new(-252.94131f, 311.9783f), 2.737763f), new(new(-215.05867f, 311.99347f), 2.737763f)),
+ new(new(new(-180.6718f, 309.7213f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-413.7624f, 355.4533f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-358.1566f, 363.1845f), 0.25f), new(new(-358f, 339.05865f), 2.737763f), new(new(-357.9869f, 376.9413f), 2.737763f), new(new(-376.9413f, 357.99347f), 2.737763f), new(new(0f, 0f), 0f)),
+ new(new(new(-298.6445f, 353.4265f), 0.25f), new(new(-300f, 337.05865f), 2.737763f), new(new(-300f, 374.9413f), 2.737763f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-233.3256f, 354.8542f), 0.25f), new(new(-234f, 349.05865f), 2.737763f), new(new(-234.01308f, 386.9413f), 2.737763f), new(new(0f, 0f), 0f), new(new(-215.05867f, 367.99347f), 2.737763f)),
+ new(new(new(-179.4589f, 354.7743f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-370.5751f, 413.3585f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-320.1774f, 413.0759f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-221.1949f, 415.2851f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ])
+ ),
+ ["1.11"] = new(
+ 1,
+ 10,
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-380.1721f, 179.5666f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-287.9569f, 190.2903f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-221.3966f, 190.5355f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-405.3693f, 239.1194f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-357.8347f, 228.6303f), 0.25f), new(new(-358f, 223.05867f), 2.737763f), new(new(-357.9869f, 260.9413f), 2.737763f), new(new(-376.9413f, 241.99345f), 2.737763f), new(new(0f, 0f), 0f)),
+ new(new(new(-299.7426f, 240.7839f), 0.25f), new(new(-300f, 225.05867f), 2.737763f), new(new(-300f, 262.9413f), 2.737763f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-233.9421f, 236.5104f), 0.25f), new(new(-234f, 233.05867f), 2.737763f), new(new(-234.01308f, 270.9413f), 2.737763f), new(new(0f, 0f), 0f), new(new(-215.05867f, 251.99345f), 2.737763f)),
+ new(new(new(-178.793f, 248.8454f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-424.9064f, 297.1447f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-369.6908f, 284.4935f), 0.25f), new(new(-370f, 281.05865f), 2.737763f), new(new(-370.0131f, 318.9413f), 2.737763f), new(new(-388.9413f, 299.9783f), 2.737763f), new(new(-351.0587f, 299.99347f), 2.737763f)),
+ new(new(new(-299.6884f, 297.1234f), 0.25f), new(new(-300f, 281.05865f), 2.737763f), new(new(-300.0131f, 318.9413f), 2.737763f), new(new(-318.9413f, 299.9783f), 2.737763f), new(new(-281.0587f, 299.99347f), 2.737763f)),
+ new(new(new(-234.7379f, 308.734f), 0.25f), new(new(-234f, 293.05865f), 2.737763f), new(new(-234.01308f, 330.9413f), 2.737763f), new(new(-252.94131f, 311.9783f), 2.737763f), new(new(-215.05867f, 311.99347f), 2.737763f)),
+ new(new(new(-180.6718f, 309.7213f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-413.7624f, 355.4533f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-358.1566f, 363.1845f), 0.25f), new(new(-358f, 339.05865f), 2.737763f), new(new(-357.9869f, 376.9413f), 2.737763f), new(new(-376.9413f, 357.99347f), 2.737763f), new(new(0f, 0f), 0f)),
+ new(new(new(-298.6445f, 353.4265f), 0.25f), new(new(-300f, 337.05865f), 2.737763f), new(new(-300f, 374.9413f), 2.737763f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-233.3256f, 354.8542f), 0.25f), new(new(-234f, 349.05865f), 2.737763f), new(new(-234.01308f, 386.9413f), 2.737763f), new(new(0f, 0f), 0f), new(new(-215.05867f, 367.99347f), 2.737763f)),
+ new(new(new(-179.4589f, 354.7743f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-370.5751f, 413.3585f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-320.1774f, 413.0759f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-221.1949f, 415.2851f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ]),
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(242.1796f, -407.2313f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(290.1965f, -420.2906f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(392.2032f, -408.64f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(197.9624f, -347.5001f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(254.2531f, -359.6218f), 0.25f), new(new(254f, -364.94135f), 2.737763f), new(new(0f, 0f), 0f), new(new(235.05867f, -346.00653f), 2.737763f), new(new(272.9413f, -346.00653f), 2.737763f)),
+ new(new(new(312.0063f, -371.433f), 0.25f), new(new(312f, -376.94135f), 2.737763f), new(new(312.0131f, -339.0587f), 2.737763f), new(new(293.05865f, -358.00653f), 2.737763f), new(new(330.9413f, -358.00653f), 2.737763f)),
+ new(new(new(370.1484f, -349.1985f), 0.25f), new(new(370f, -364.94135f), 2.737763f), new(new(0f, 0f), 0f), new(new(351.05865f, -346.00653f), 2.737763f), new(new(388.9413f, -346.00653f), 2.737763f)),
+ new(new(new(427.0493f, -361.4105f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(183.9281f, -303.2903f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(241.7273f, -291.0918f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(223.05867f, -288.00653f), 2.737763f), new(new(260.9413f, -288.00653f), 2.737763f)),
+ new(new(new(300.7613f, -302.1629f), 0.25f), new(new(300f, -318.94135f), 2.737763f), new(new(300.0131f, -281.0587f), 2.737763f), new(new(281.0587f, -300.00653f), 2.737763f), new(new(318.9413f, -300.0217f), 2.737763f)),
+ new(new(new(369.3706f, -303.0645f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(351.05865f, -300.00653f), 2.737763f), new(new(388.9413f, -300.00653f), 2.737763f)),
+ new(new(new(428.522f, -314.7849f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(182.0426f, -231.1508f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(240.2729f, -233.5267f), 0.25f), new(new(0f, 0f), 0f), new(new(240.01308f, -221.05867f), 2.737763f), new(new(221.05867f, -240.00655f), 2.737763f), new(new(258.9413f, -240.02168f), 2.737763f)),
+ new(new(new(300.0534f, -243.3069f), 0.25f), new(new(300f, -258.94135f), 2.737763f), new(new(300.0131f, -221.05867f), 2.737763f), new(new(281.0587f, -240.00655f), 2.737763f), new(new(318.9413f, -240.02168f), 2.737763f)),
+ new(new(new(368.136f, -264.6359f), 0.25f), new(new(0f, 0f), 0f), new(new(368.0131f, -233.05867f), 2.737763f), new(new(349.0587f, -252.00655f), 2.737763f), new(new(386.9413f, -252.02168f), 2.737763f)),
+ new(new(new(424.8528f, -254.8204f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(240.0285f, -186.7159f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(322.1534f, -183.239f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(380.2201f, -206.9923f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ])
+ ),
+ ["1.12"] = new(
+ 1,
+ 11,
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-374.7566f, 188.0224f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-288.0777f, 181.5698f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-222.712f, 195.839f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-399.1688f, 241.1314f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-355.0793f, 240.4289f), 0.25f), new(new(-354.42322f, 227.95f), 1.214027f), new(new(-355.56418f, 260.04163f), 1.214027f), new(new(-371.03973f, 243.43088f), 1.214027f), new(new(0f, 0f), 0f)),
+ new(new(new(-300.4581f, 241.4994f), 0.25f), new(new(-299.4235f, 227.9498f), 1.214027f), new(new(-300.56445f, 260.0414f), 1.214027f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-225.5323f, 262.2167f), 0.25f), new(new(-234.42361f, 239.9496f), 1.214027f), new(new(-235.56454f, 272.04123f), 1.214027f), new(new(0f, 0f), 0f), new(new(-218.94849f, 256.5714f), 1.214027f)),
+ new(new(new(-179.2163f, 252.5446f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-418.4556f, 296.9088f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-367.1488f, 296.9664f), 0.25f), new(new(-366.4228f, 283.94818f), 1.214027f), new(new(-367.56357f, 316.0398f), 1.214027f), new(new(-383.0393f, 299.42905f), 1.214027f), new(new(-350.94766f, 300.57f), 1.214027f)),
+ new(new(new(-299.914f, 305.8483f), 0.25f), new(new(-299.4233f, 279.9447f), 1.214027f), new(new(-300.56076f, 320.036f), 1.214027f), new(new(-316.0398f, 299.42535f), 1.214027f), new(new(-283.94818f, 302.5663f), 1.214027f)),
+ new(new(new(-234.9083f, 310.8708f), 0.25f), new(new(-234.42572f, 297.9474f), 1.214027f), new(new(-235.56668f, 330.039f), 1.214027f), new(new(-251.0422f, 313.42825f), 1.214027f), new(new(-218.95059f, 314.5692f), 1.214027f)),
+ new(new(new(-181.8017f, 311.4088f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-407.0093f, 354.9687f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-346.5887f, 345.5487f), 0.25f), new(new(-354.42032f, 341.9474f), 1.214027f), new(new(-355.56128f, 374.039f), 1.214027f), new(new(-371.037f, 357.42825f), 1.214027f), new(new(0f, 0f), 0f)),
+ new(new(new(-309.1746f, 347.1084f), 0.25f), new(new(-299.4206f, 341.94748f), 1.214027f), new(new(-300.56155f, 374.0391f), 1.214027f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-235.6806f, 365.491f), 0.25f), new(new(-234.42392f, 353.9468f), 1.214027f), new(new(-235.56488f, 386.03842f), 1.214027f), new(new(0f, 0f), 0f), new(new(-218.94879f, 370.56863f), 1.214027f)),
+ new(new(new(-177.7759f, 366.8867f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-366.6061f, 410.7907f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-319.7406f, 411.4097f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-225.0612f, 423.6227f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ]),
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(242.9974f, -408.4487f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(292.1822f, -420.3809f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(388.0965f, -409.0779f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(200.6562f, -347.6816f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(263.1833f, -358.7175f), 0.25f), new(new(254.5665f, -362.0403f), 1.214027f), new(new(0f, 0f), 0f), new(new(237.95f, -346.55945f), 1.214027f), new(new(270.04163f, -345.4185f), 1.214027f)),
+ new(new(new(319.989f, -365.5338f), 0.25f), new(new(312.5653f, -374.04062f), 1.214027f), new(new(311.42435f, -341.949f), 1.214027f), new(new(295.9488f, -358.55975f), 1.214027f), new(new(328.04044f, -357.4188f), 1.214027f)),
+ new(new(new(367.6212f, -349.1082f), 0.25f), new(new(368.5646f, -362.0404f), 1.214027f), new(new(367.42365f, -329.9488f), 1.214027f), new(new(351.94812f, -346.55954f), 1.214027f), new(new(384.03973f, -345.41858f), 1.214027f)),
+ new(new(new(425.14f, -361.5403f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(184.3622f, -303.1238f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(241.7273f, -290.1868f), 0.25f), new(new(0f, 0f), 0f), new(new(241.42564f, -271.9498f), 1.214027f), new(new(225.95009f, -288.56055f), 1.214027f), new(new(0f, 0f), 0f)),
+ new(new(new(300.0593f, -302.7772f), 0.25f), new(new(300.5654f, -316.04132f), 1.214027f), new(new(299.42444f, -283.9497f), 1.214027f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(367.7514f, -303.0645f), 0.25f), new(new(368.5648f, -316.0412f), 1.214027f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(388.0396f, -299.41937f), 1.214027f)),
+ new(new(new(429.6829f, -315.536f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(183.896f, -233.7539f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(232.3754f, -235.6684f), 0.25f), new(new(242.56638f, -258.0421f), 1.214027f), new(new(241.42542f, -225.9505f), 1.214027f), new(new(225.94989f, -242.56123f), 1.214027f), new(new(258.0415f, -241.4203f), 1.214027f)),
+ new(new(new(299.6617f, -244.7433f), 0.25f), new(new(300.56558f, -258.04202f), 1.214027f), new(new(299.42462f, -225.9504f), 1.214027f), new(new(283.9491f, -242.56113f), 1.214027f), new(new(316.0407f, -241.4202f), 1.214027f)),
+ new(new(new(374.12f, -262.6634f), 0.25f), new(new(0f, 0f), 0f), new(new(365.42422f, -237.95029f), 1.214027f), new(new(349.94867f, -254.56102f), 1.214027f), new(new(382.0403f, -253.42009f), 1.214027f)),
+ new(new(new(418.3748f, -256.62408f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(241.7893f, -188.6278f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(319.9409f, -186.821f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(376.3458f, -198.0885f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ])
+ ),
+ ["1.13"] = new(
+ 1,
+ 12,
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(242.9974f, -408.4487f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(292.1822f, -420.3809f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(388.0965f, -409.0779f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(200.6562f, -347.6816f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(263.1833f, -358.7175f), 0.25f), new(new(254.5665f, -362.0403f), 1.214027f), new(new(0f, 0f), 0f), new(new(237.95f, -346.55945f), 1.214027f), new(new(270.04163f, -345.4185f), 1.214027f)),
+ new(new(new(319.989f, -365.5338f), 0.25f), new(new(312.5653f, -374.04062f), 1.214027f), new(new(311.42435f, -341.949f), 1.214027f), new(new(295.9488f, -358.55975f), 1.214027f), new(new(328.04044f, -357.4188f), 1.214027f)),
+ new(new(new(367.6212f, -349.1082f), 0.25f), new(new(368.5646f, -362.0404f), 1.214027f), new(new(367.42365f, -329.9488f), 1.214027f), new(new(351.94812f, -346.55954f), 1.214027f), new(new(384.03973f, -345.41858f), 1.214027f)),
+ new(new(new(425.14f, -361.5403f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(184.3622f, -303.1238f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(241.7273f, -290.1868f), 0.25f), new(new(0f, 0f), 0f), new(new(241.42564f, -271.9498f), 1.214027f), new(new(225.95009f, -288.56055f), 1.214027f), new(new(0f, 0f), 0f)),
+ new(new(new(300.0593f, -302.7772f), 0.25f), new(new(300.5654f, -316.04132f), 1.214027f), new(new(299.42444f, -283.9497f), 1.214027f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(367.7514f, -303.0645f), 0.25f), new(new(368.5648f, -316.0412f), 1.214027f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(388.0396f, -299.41937f), 1.214027f)),
+ new(new(new(429.6829f, -315.536f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(183.896f, -233.7539f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(232.3754f, -235.6684f), 0.25f), new(new(242.56638f, -258.0421f), 1.214027f), new(new(241.42542f, -225.9505f), 1.214027f), new(new(225.94989f, -242.56123f), 1.214027f), new(new(258.0415f, -241.4203f), 1.214027f)),
+ new(new(new(299.6617f, -244.7433f), 0.25f), new(new(300.56558f, -258.04202f), 1.214027f), new(new(299.42462f, -225.9504f), 1.214027f), new(new(283.9491f, -242.56113f), 1.214027f), new(new(316.0407f, -241.4202f), 1.214027f)),
+ new(new(new(374.12f, -262.6634f), 0.25f), new(new(0f, 0f), 0f), new(new(365.42422f, -237.95029f), 1.214027f), new(new(349.94867f, -254.56102f), 1.214027f), new(new(382.0403f, -253.42009f), 1.214027f)),
+ new(new(new(418.3748f, -256.62408f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(241.7893f, -188.6278f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(319.9409f, -186.821f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(376.3458f, -198.0885f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ]),
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-374.7566f, 188.0224f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-288.0777f, 181.5698f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-222.712f, 195.839f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-399.1688f, 241.1314f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-355.0793f, 240.4289f), 0.25f), new(new(-354.42322f, 227.95f), 1.214027f), new(new(-355.56418f, 260.04163f), 1.214027f), new(new(-371.03973f, 243.43088f), 1.214027f), new(new(0f, 0f), 0f)),
+ new(new(new(-300.4581f, 241.4994f), 0.25f), new(new(-299.4235f, 227.9498f), 1.214027f), new(new(-300.56445f, 260.0414f), 1.214027f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-225.5323f, 262.2167f), 0.25f), new(new(-234.42361f, 239.9496f), 1.214027f), new(new(-235.56454f, 272.04123f), 1.214027f), new(new(0f, 0f), 0f), new(new(-218.94849f, 256.5714f), 1.214027f)),
+ new(new(new(-179.2163f, 252.5446f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-418.4556f, 296.9088f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-367.1488f, 296.9664f), 0.25f), new(new(-366.4228f, 283.94818f), 1.214027f), new(new(-367.56357f, 316.0398f), 1.214027f), new(new(-383.0393f, 299.42905f), 1.214027f), new(new(-350.94766f, 300.57f), 1.214027f)),
+ new(new(new(-299.914f, 305.8483f), 0.25f), new(new(-299.4233f, 279.9447f), 1.214027f), new(new(-300.56076f, 320.036f), 1.214027f), new(new(-316.0398f, 299.42535f), 1.214027f), new(new(-283.94818f, 302.5663f), 1.214027f)),
+ new(new(new(-234.9083f, 310.8708f), 0.25f), new(new(-234.42572f, 297.9474f), 1.214027f), new(new(-235.56668f, 330.039f), 1.214027f), new(new(-251.0422f, 313.42825f), 1.214027f), new(new(-218.95059f, 314.5692f), 1.214027f)),
+ new(new(new(-181.8017f, 311.4088f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-407.0093f, 354.9687f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-346.5887f, 345.5487f), 0.25f), new(new(-354.42032f, 341.9474f), 1.214027f), new(new(-355.56128f, 374.039f), 1.214027f), new(new(-371.037f, 357.42825f), 1.214027f), new(new(0f, 0f), 0f)),
+ new(new(new(-309.1746f, 347.1084f), 0.25f), new(new(-299.4206f, 341.94748f), 1.214027f), new(new(-300.56155f, 374.0391f), 1.214027f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-235.6806f, 365.491f), 0.25f), new(new(-234.42392f, 353.9468f), 1.214027f), new(new(-235.56488f, 386.03842f), 1.214027f), new(new(0f, 0f), 0f), new(new(-218.94879f, 370.56863f), 1.214027f)),
+ new(new(new(-177.7759f, 366.8867f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-366.6061f, 410.7907f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-319.7406f, 411.4097f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-225.0612f, 423.6227f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ])
+ ),
+ ["1.14"] = new(
+ 1,
+ 13,
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-374.7566f, 183.0325f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-287.8989f, 178.1563f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-223.1265f, 193.6945f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-402.5998f, 240.809f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-355.0793f, 240.4289f), 0.25f), new(new(-354.4232f, 227.95001f), 1.214f), new(new(-355.5642f, 260.0416f), 1.214f), new(new(-371.0397f, 243.43085f), 1.214f), new(new(0f, 0f), 0f)),
+ new(new(new(-300.4581f, 241.4994f), 0.25f), new(new(-299.42346f, 227.94981f), 1.214f), new(new(-300.56448f, 260.0414f), 1.214f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-225.0836f, 262.5056f), 0.25f), new(new(-234.42357f, 239.94962f), 1.214f), new(new(-235.56459f, 272.0412f), 1.214f), new(new(0f, 0f), 0f), new(new(-218.94849f, 256.57144f), 1.214f)),
+ new(new(new(-175.5846f, 252.934f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-420.2265f, 296.8055f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-367.1488f, 296.9664f), 0.25f), new(new(-366.42276f, 283.94818f), 1.214f), new(new(-367.5636f, 316.0398f), 1.214f), new(new(-383.03928f, 299.42902f), 1.214f), new(new(-350.9477f, 300.57004f), 1.214f)),
+ new(new(new(-299.914f, 305.8483f), 0.25f), new(new(-299.42328f, 279.9447f), 1.214f), new(new(-300.5608f, 320.036f), 1.214f), new(new(-316.0398f, 299.42532f), 1.214f), new(new(-283.9482f, 302.56635f), 1.214f)),
+ new(new(new(-234.9083f, 310.8708f), 0.25f), new(new(-234.42567f, 297.9474f), 1.214f), new(new(-235.56671f, 330.039f), 1.214f), new(new(-251.04219f, 313.42822f), 1.214f), new(new(-218.95059f, 314.56924f), 1.214f)),
+ new(new(new(-180.6718f, 311.2285f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-409.0223f, 355.6356f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-345.9205f, 345.0418f), 0.25f), new(new(-354.4203f, 341.9474f), 1.214f), new(new(-355.5613f, 374.039f), 1.214f), new(new(-371.037f, 357.42822f), 1.214f), new(new(0f, 0f), 0f)),
+ new(new(new(-308.5666f, 347.784f), 0.25f), new(new(-299.42056f, 341.94748f), 1.214f), new(new(-300.56158f, 374.0391f), 1.214f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-235.6806f, 365.491f), 0.25f), new(new(-234.42387f, 353.9468f), 1.214f), new(new(-235.56491f, 386.03842f), 1.214f), new(new(0f, 0f), 0f), new(new(-218.94879f, 370.56866f), 1.214f)),
+ new(new(new(-177.7759f, 366.8867f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-366.6518f, 411.5221f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-320.0814f, 414.084f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-223.3746f, 423.8857f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ]),
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(241.9075f, -409.0655f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(292.1822f, -420.3809f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(389.8699f, -406.534f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(203.6679f, -348.4681f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(263.6731f, -339.1262f), 0.25f), new(new(254.56653f, -362.0403f), 1.214f), new(new(253.42549f, -329.9487f), 1.214f), new(new(237.95001f, -346.55948f), 1.214f), new(new(270.0416f, -345.41846f), 1.214f)),
+ new(new(new(319.6569f, -367.4182f), 0.25f), new(new(312.56534f, -374.04062f), 1.214f), new(new(311.42432f, -341.949f), 1.214f), new(new(295.94882f, -358.55978f), 1.214f), new(new(328.0404f, -357.41876f), 1.214f)),
+ new(new(new(367.6212f, -349.1082f), 0.25f), new(new(368.56464f, -362.0404f), 1.214f), new(new(0f, 0f), 0f), new(new(351.94812f, -346.55957f), 1.214f), new(new(384.0397f, -345.41855f), 1.214f)),
+ new(new(new(425.4471f, -362.718f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(182.6972f, -303.7495f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(241.7273f, -290.1868f), 0.25f), new(new(242.56662f, -304.0414f), 1.214f), new(new(0f, 0f), 0f), new(new(225.9501f, -288.56058f), 1.214f), new(new(0f, 0f), 0f)),
+ new(new(new(300.0593f, -302.7772f), 0.25f), new(new(300.56543f, -316.04132f), 1.214f), new(new(299.4244f, -283.9497f), 1.214f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(367.7514f, -303.0645f), 0.25f), new(new(0f, 0f), 0f), new(new(365.4238f, -283.9496f), 1.214f), new(new(0f, 0f), 0f), new(new(388.03958f, -299.41934f), 1.214f)),
+ new(new(new(428.6863f, -316.8421f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(183.6819f, -233.2985f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(252.214f, -252.4091f), 0.25f), new(new(0f, 0f), 0f), new(new(241.42538f, -225.9505f), 1.214f), new(new(225.9499f, -242.56126f), 1.214f), new(new(258.0415f, -241.42027f), 1.214f)),
+ new(new(new(299.6617f, -244.7433f), 0.25f), new(new(300.5656f, -258.042f), 1.214f), new(new(299.4246f, -225.95041f), 1.214f), new(new(283.9491f, -242.56116f), 1.214f), new(new(316.04068f, -241.42017f), 1.214f)),
+ new(new(new(375.3223f, -264.5527f), 0.25f), new(new(366.56522f, -270.0419f), 1.214f), new(new(365.4242f, -237.95029f), 1.214f), new(new(349.9487f, -254.56105f), 1.214f), new(new(382.04028f, -253.42006f), 1.214f)),
+ new(new(new(418.4793f, -256.98212f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(242.1803f, -190.2645f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(320.0034f, -184.6789f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(379.041f, -196.5027f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ])
+ ),
+ ["1.15"] = new(
+ 1,
+ 14,
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(241.9075f, -409.0655f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(292.1822f, -420.3809f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(389.8699f, -406.534f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(203.6679f, -348.4681f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(263.6731f, -339.1262f), 0.25f), new(new(254.56653f, -362.0403f), 1.214f), new(new(253.42549f, -329.9487f), 1.214f), new(new(237.95001f, -346.55948f), 1.214f), new(new(270.0416f, -345.41846f), 1.214f)),
+ new(new(new(319.6569f, -367.4182f), 0.25f), new(new(312.56534f, -374.04062f), 1.214f), new(new(311.42432f, -341.949f), 1.214f), new(new(295.94882f, -358.55978f), 1.214f), new(new(328.0404f, -357.41876f), 1.214f)),
+ new(new(new(367.6212f, -349.1082f), 0.25f), new(new(368.56464f, -362.0404f), 1.214f), new(new(0f, 0f), 0f), new(new(351.94812f, -346.55957f), 1.214f), new(new(384.0397f, -345.41855f), 1.214f)),
+ new(new(new(425.4471f, -362.718f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(182.6972f, -303.7495f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(241.7273f, -290.1868f), 0.25f), new(new(242.56662f, -304.0414f), 1.214f), new(new(0f, 0f), 0f), new(new(225.9501f, -288.56058f), 1.214f), new(new(0f, 0f), 0f)),
+ new(new(new(300.0593f, -302.7772f), 0.25f), new(new(300.56543f, -316.04132f), 1.214f), new(new(299.4244f, -283.9497f), 1.214f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(367.7514f, -303.0645f), 0.25f), new(new(0f, 0f), 0f), new(new(365.4238f, -283.9496f), 1.214f), new(new(0f, 0f), 0f), new(new(388.03958f, -299.41934f), 1.214f)),
+ new(new(new(428.6863f, -316.8421f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(183.6819f, -233.2985f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(252.214f, -252.4091f), 0.25f), new(new(0f, 0f), 0f), new(new(241.42538f, -225.9505f), 1.214f), new(new(225.9499f, -242.56126f), 1.214f), new(new(258.0415f, -241.42027f), 1.214f)),
+ new(new(new(299.6617f, -244.7433f), 0.25f), new(new(300.5656f, -258.042f), 1.214f), new(new(299.4246f, -225.95041f), 1.214f), new(new(283.9491f, -242.56116f), 1.214f), new(new(316.04068f, -241.42017f), 1.214f)),
+ new(new(new(375.3223f, -264.5527f), 0.25f), new(new(366.56522f, -270.0419f), 1.214f), new(new(365.4242f, -237.95029f), 1.214f), new(new(349.9487f, -254.56105f), 1.214f), new(new(382.04028f, -253.42006f), 1.214f)),
+ new(new(new(418.4793f, -256.98212f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(242.1803f, -190.2645f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(320.0034f, -184.6789f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(379.041f, -196.5027f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ]),
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-374.7566f, 183.0325f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-287.8989f, 178.1563f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-223.1265f, 193.6945f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-402.5998f, 240.809f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-355.0793f, 240.4289f), 0.25f), new(new(-354.4232f, 227.95001f), 1.214f), new(new(-355.5642f, 260.0416f), 1.214f), new(new(-371.0397f, 243.43085f), 1.214f), new(new(0f, 0f), 0f)),
+ new(new(new(-300.4581f, 241.4994f), 0.25f), new(new(-299.42346f, 227.94981f), 1.214f), new(new(-300.56448f, 260.0414f), 1.214f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-225.0836f, 262.5056f), 0.25f), new(new(-234.42357f, 239.94962f), 1.214f), new(new(-235.56459f, 272.0412f), 1.214f), new(new(0f, 0f), 0f), new(new(-218.94849f, 256.57144f), 1.214f)),
+ new(new(new(-175.5846f, 252.934f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-420.2265f, 296.8055f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-367.1488f, 296.9664f), 0.25f), new(new(-366.42276f, 283.94818f), 1.214f), new(new(-367.5636f, 316.0398f), 1.214f), new(new(-383.03928f, 299.42902f), 1.214f), new(new(-350.9477f, 300.57004f), 1.214f)),
+ new(new(new(-299.914f, 305.8483f), 0.25f), new(new(-299.42328f, 279.9447f), 1.214f), new(new(-300.5608f, 320.036f), 1.214f), new(new(-316.0398f, 299.42532f), 1.214f), new(new(-283.9482f, 302.56635f), 1.214f)),
+ new(new(new(-234.9083f, 310.8708f), 0.25f), new(new(-234.42567f, 297.9474f), 1.214f), new(new(-235.56671f, 330.039f), 1.214f), new(new(-251.04219f, 313.42822f), 1.214f), new(new(-218.95059f, 314.56924f), 1.214f)),
+ new(new(new(-180.6718f, 311.2285f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-409.0223f, 355.6356f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-345.9205f, 345.0418f), 0.25f), new(new(-354.4203f, 341.9474f), 1.214f), new(new(-355.5613f, 374.039f), 1.214f), new(new(-371.037f, 357.42822f), 1.214f), new(new(0f, 0f), 0f)),
+ new(new(new(-308.5666f, 347.784f), 0.25f), new(new(-299.42056f, 341.94748f), 1.214f), new(new(-300.56158f, 374.0391f), 1.214f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-235.6806f, 365.491f), 0.25f), new(new(-234.42387f, 353.9468f), 1.214f), new(new(-235.56491f, 386.03842f), 1.214f), new(new(0f, 0f), 0f), new(new(-218.94879f, 370.56866f), 1.214f)),
+ new(new(new(-177.7759f, 366.8867f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-366.6518f, 411.5221f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-320.0814f, 414.084f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-223.3746f, 423.8857f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ])
+ ),
+ ["1.16"] = new(
+ 1,
+ 15,
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-375.8101f, 184.0421f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-287.8989f, 190.2825f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-219.2287f, 197.0434f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-417.0273f, 240.809f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-364.8857f, 240.4289f), 0.25f), new(new(-364f, 226.2f), 2f), new(new(-364f, 261.8f), 2f), new(new(-381.8f, 243.99385f), 2f), new(new(0f, 0f), 0f)),
+ new(new(new(-299.8871f, 244.1161f), 0.25f), new(new(-300f, 228.2f), 2f), new(new(-300f, 263.8f), 2f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-232.3339f, 253.2937f), 0.25f), new(new(-232f, 238.2f), 2f), new(new(-232f, 273.8f), 2f), new(new(0f, 0f), 0f), new(new(-214.2f, 256f), 2f)),
+ new(new(new(-180.1405f, 252.934f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-406.5778f, 297.4088f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-351.621f, 296.9664f), 0.25f), new(new(-352f, 282.2f), 2f), new(new(-352f, 317.8f), 2f), new(new(-369.8f, 299.99387f), 2f), new(new(-334.2f, 299.99387f), 2f)),
+ new(new(new(-299.914f, 297.3557f), 0.25f), new(new(-300f, 282.2f), 2f), new(new(-300f, 317.8f), 2f), new(new(-317.8f, 299.99387f), 2f), new(new(-282.2f, 299.99387f), 2f)),
+ new(new(new(-244.3859f, 297.4952f), 0.25f), new(new(-244f, 294.2f), 2f), new(new(-244f, 329.8f), 2f), new(new(-261.8f, 311.99387f), 2f), new(new(-226.2f, 311.99387f), 2f)),
+ new(new(new(-190.7164f, 308.6962f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-403.6229f, 348.9707f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-351.8816f, 348.9453f), 0.25f), new(new(-352f, 334.2f), 2f), new(new(-352f, 369.8f), 2f), new(new(-369.8f, 351.99387f), 2f), new(new(0f, 0f), 0f)),
+ new(new(new(-311.6316f, 353.3328f), 0.25f), new(new(-312f, 338.2f), 2f), new(new(-312f, 373.8f), 2f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-244.4898f, 359.8373f), 0.25f), new(new(-244f, 346.2f), 2f), new(new(-244f, 381.8f), 2f), new(new(0f, 0f), 0f), new(new(-226.2f, 363.99387f), 2f)),
+ new(new(new(-192.1444f, 360.8743f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-363.3706f, 407.0828f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-299.9716f, 408.9295f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-230.1441f, 419.8333f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ]),
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(243.5614f, -404.8383f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(292.1822f, -414.2727f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(388.0965f, -403.584f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(204.5525f, -346.565f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(255.7953f, -345.8169f), 0.25f), new(new(256f, -361.8f), 2f), new(new(0f, 0f), 0f), new(new(238.2f, -344.00613f), 2f), new(new(273.8f, -344.00613f), 2f)),
+ new(new(new(312.0199f, -359.8006f), 0.25f), new(new(312f, -373.8f), 2f), new(new(312.00613f, -338.2f), 2f), new(new(294.2f, -356.00613f), 2f), new(new(329.8f, -356.00613f), 2f)),
+ new(new(new(367.9919f, -346.235f), 0.25f), new(new(368f, -361.8f), 2f), new(new(0f, 0f), 0f), new(new(350.2f, -344.00613f), 2f), new(new(385.8f, -344f), 2f)),
+ new(new(new(423.9744f, -358.9135f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(187.9247f, -303.1526f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(243.8179f, -290.1868f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(226.2f, -288f), 2f), new(new(261.8f, -288.00613f), 2f)),
+ new(new(new(300.0593f, -302.7772f), 0.25f), new(new(300f, -317.8f), 2f), new(new(300.00613f, -282.2f), 2f), new(new(282.2f, -300.00613f), 2f), new(new(317.8f, -300.00613f), 2f)),
+ new(new(new(352.1592f, -303.0645f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(334.2f, -300.00613f), 2f), new(new(369.8f, -300f), 2f)),
+ new(new(new(407.5428f, -314.7849f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(191.4722f, -238.0882f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(248.2417f, -250.4833f), 0.25f), new(new(0f, 0f), 0f), new(new(248f, -230.2f), 2f), new(new(230.2f, -248f), 2f), new(new(265.8f, -248f), 2f)),
+ new(new(new(299.6617f, -250.8317f), 0.25f), new(new(300f, -265.8f), 2f), new(new(300.00613f, -230.2f), 2f), new(new(282.2f, -248.00615f), 2f), new(new(317.8f, -248.00615f), 2f)),
+ new(new(new(355.2953f, -262.2832f), 0.25f), new(new(0f, 0f), 0f), new(new(356.00613f, -242.2f), 2f), new(new(338.2f, -260.00613f), 2f), new(new(373.8f, -260.00613f), 2f)),
+ new(new(new(408.1609f, -262.6852f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(248.2532f, -195.6302f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(320.0034f, -195.9265f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(368.0628f, -206.9281f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ])
+ ),
+ ["1.17"] = new(
+ 1,
+ 16,
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(243.5614f, -404.8383f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(292.1822f, -414.2727f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(388.0965f, -403.584f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(204.5525f, -346.565f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(255.7953f, -345.8169f), 0.25f), new(new(256f, -361.8f), 2f), new(new(0f, 0f), 0f), new(new(238.2f, -344.00613f), 2f), new(new(273.8f, -344.00613f), 2f)),
+ new(new(new(312.0199f, -359.8006f), 0.25f), new(new(312f, -373.8f), 2f), new(new(312.00613f, -338.2f), 2f), new(new(294.2f, -356.00613f), 2f), new(new(329.8f, -356.00613f), 2f)),
+ new(new(new(367.9919f, -346.235f), 0.25f), new(new(368f, -361.8f), 2f), new(new(0f, 0f), 0f), new(new(350.2f, -344.00613f), 2f), new(new(385.8f, -344f), 2f)),
+ new(new(new(423.9744f, -358.9135f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(187.9247f, -303.1526f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(243.8179f, -290.1868f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(226.2f, -288f), 2f), new(new(261.8f, -288.00613f), 2f)),
+ new(new(new(300.0593f, -302.7772f), 0.25f), new(new(300f, -317.8f), 2f), new(new(300.00613f, -282.2f), 2f), new(new(282.2f, -300.00613f), 2f), new(new(317.8f, -300.00613f), 2f)),
+ new(new(new(352.1592f, -303.0645f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(334.2f, -300.00613f), 2f), new(new(369.8f, -300f), 2f)),
+ new(new(new(407.5428f, -314.7849f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(191.4722f, -238.0882f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(248.2417f, -250.4833f), 0.25f), new(new(0f, 0f), 0f), new(new(248f, -230.2f), 2f), new(new(230.2f, -248f), 2f), new(new(265.8f, -248f), 2f)),
+ new(new(new(299.6617f, -250.8317f), 0.25f), new(new(300f, -265.8f), 2f), new(new(300.00613f, -230.2f), 2f), new(new(282.2f, -248.00615f), 2f), new(new(317.8f, -248.00615f), 2f)),
+ new(new(new(355.2953f, -262.2832f), 0.25f), new(new(0f, 0f), 0f), new(new(356.00613f, -242.2f), 2f), new(new(338.2f, -260.00613f), 2f), new(new(373.8f, -260.00613f), 2f)),
+ new(new(new(408.1609f, -262.6852f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(248.2532f, -195.6302f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(320.0034f, -195.9265f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(368.0628f, -206.9281f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ]),
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-375.8101f, 184.0421f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-287.8989f, 190.2825f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-219.2287f, 197.0434f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-417.0273f, 240.809f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-364.8857f, 240.4289f), 0.25f), new(new(-364f, 226.2f), 2f), new(new(-364f, 261.8f), 2f), new(new(-381.8f, 243.99385f), 2f), new(new(0f, 0f), 0f)),
+ new(new(new(-299.8871f, 244.1161f), 0.25f), new(new(-300f, 228.2f), 2f), new(new(-300f, 263.8f), 2f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-232.3339f, 253.2937f), 0.25f), new(new(-232f, 238.2f), 2f), new(new(-232f, 273.8f), 2f), new(new(0f, 0f), 0f), new(new(-214.2f, 256f), 2f)),
+ new(new(new(-180.1405f, 252.934f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-406.5778f, 297.4088f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-351.621f, 296.9664f), 0.25f), new(new(-352f, 282.2f), 2f), new(new(-352f, 317.8f), 2f), new(new(-369.8f, 299.99387f), 2f), new(new(-334.2f, 299.99387f), 2f)),
+ new(new(new(-299.914f, 297.3557f), 0.25f), new(new(-300f, 282.2f), 2f), new(new(-300f, 317.8f), 2f), new(new(-317.8f, 299.99387f), 2f), new(new(-282.2f, 299.99387f), 2f)),
+ new(new(new(-244.3859f, 297.4952f), 0.25f), new(new(-244f, 294.2f), 2f), new(new(-244f, 329.8f), 2f), new(new(-261.8f, 311.99387f), 2f), new(new(-226.2f, 311.99387f), 2f)),
+ new(new(new(-190.7164f, 308.6962f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-403.6229f, 348.9707f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-351.8816f, 348.9453f), 0.25f), new(new(-352f, 334.2f), 2f), new(new(-352f, 369.8f), 2f), new(new(-369.8f, 351.99387f), 2f), new(new(0f, 0f), 0f)),
+ new(new(new(-311.6316f, 353.3328f), 0.25f), new(new(-312f, 338.2f), 2f), new(new(-312f, 373.8f), 2f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-244.4898f, 359.8373f), 0.25f), new(new(-244f, 346.2f), 2f), new(new(-244f, 381.8f), 2f), new(new(0f, 0f), 0f), new(new(-226.2f, 363.99387f), 2f)),
+ new(new(new(-192.1444f, 360.8743f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-363.3706f, 407.0828f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-299.9716f, 408.9295f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-230.1441f, 419.8333f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ])
+ ),
+ ["1.18"] = new(
+ 1,
+ 17,
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-375.8101f, 184.0421f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-287.8989f, 190.2825f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-219.2287f, 197.0434f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-417.0273f, 240.809f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-364.8857f, 240.4289f), 0.25f), new(new(-364f, 226.2f), 2f), new(new(-364f, 261.8f), 2f), new(new(-381.8f, 243.99385f), 2f), new(new(0f, 0f), 0f)),
+ new(new(new(-299.8871f, 244.1161f), 0.25f), new(new(-300f, 228.2f), 2f), new(new(-300f, 263.8f), 2f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-232.3339f, 253.2937f), 0.25f), new(new(-232f, 238.2f), 2f), new(new(-232f, 273.8f), 2f), new(new(0f, 0f), 0f), new(new(-214.2f, 256f), 2f)),
+ new(new(new(-180.1405f, 252.934f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-406.5778f, 297.4088f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-351.621f, 296.9664f), 0.25f), new(new(-352f, 282.2f), 2f), new(new(-352f, 317.8f), 2f), new(new(-369.8f, 299.99387f), 2f), new(new(-334.2f, 299.99387f), 2f)),
+ new(new(new(-299.914f, 297.3557f), 0.25f), new(new(-300f, 282.2f), 2f), new(new(-300f, 317.8f), 2f), new(new(-317.8f, 299.99387f), 2f), new(new(-282.2f, 299.99387f), 2f)),
+ new(new(new(-244.3859f, 297.4952f), 0.25f), new(new(-244f, 294.2f), 2f), new(new(-244f, 329.8f), 2f), new(new(-261.8f, 311.99387f), 2f), new(new(-226.2f, 311.99387f), 2f)),
+ new(new(new(-190.7164f, 308.6962f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-403.6229f, 348.9707f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-351.8816f, 348.9453f), 0.25f), new(new(-352f, 334.2f), 2f), new(new(-352f, 369.8f), 2f), new(new(-369.8f, 351.99387f), 2f), new(new(0f, 0f), 0f)),
+ new(new(new(-311.6316f, 353.3328f), 0.25f), new(new(-312f, 338.2f), 2f), new(new(-312f, 373.8f), 2f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-244.4898f, 359.8373f), 0.25f), new(new(-244f, 346.2f), 2f), new(new(-244f, 381.8f), 2f), new(new(0f, 0f), 0f), new(new(-226.2f, 363.99387f), 2f)),
+ new(new(new(-192.1444f, 360.8743f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-363.3706f, 407.0828f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-299.9716f, 408.9295f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-230.1441f, 419.8333f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ]),
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(243.5614f, -404.8383f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(292.1822f, -414.2727f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(388.0965f, -403.584f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(204.5525f, -346.565f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(255.7953f, -345.8169f), 0.25f), new(new(256f, -361.8f), 2f), new(new(0f, 0f), 0f), new(new(238.2f, -344.00613f), 2f), new(new(273.8f, -344.00613f), 2f)),
+ new(new(new(312.0199f, -359.8006f), 0.25f), new(new(312f, -373.8f), 2f), new(new(312.00613f, -338.2f), 2f), new(new(294.2f, -356.00613f), 2f), new(new(329.8f, -356.00613f), 2f)),
+ new(new(new(367.9919f, -346.235f), 0.25f), new(new(368f, -361.8f), 2f), new(new(0f, 0f), 0f), new(new(350.2f, -344.00613f), 2f), new(new(385.8f, -344f), 2f)),
+ new(new(new(423.9744f, -358.9135f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(187.9247f, -303.1526f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(243.8179f, -290.1868f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(226.2f, -288f), 2f), new(new(261.8f, -288.00613f), 2f)),
+ new(new(new(300.0593f, -302.7772f), 0.25f), new(new(300f, -317.8f), 2f), new(new(300.00613f, -282.2f), 2f), new(new(282.2f, -300.00613f), 2f), new(new(317.8f, -300.00613f), 2f)),
+ new(new(new(352.1592f, -303.0645f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(334.2f, -300.00613f), 2f), new(new(369.8f, -300f), 2f)),
+ new(new(new(407.5428f, -314.7849f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(191.4722f, -238.0882f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(248.2417f, -250.4833f), 0.25f), new(new(0f, 0f), 0f), new(new(248f, -230.2f), 2f), new(new(230.2f, -248f), 2f), new(new(265.8f, -248f), 2f)),
+ new(new(new(299.6617f, -250.8317f), 0.25f), new(new(300f, -265.8f), 2f), new(new(300.00613f, -230.2f), 2f), new(new(282.2f, -248.00615f), 2f), new(new(317.8f, -248.00615f), 2f)),
+ new(new(new(355.2953f, -262.2832f), 0.25f), new(new(0f, 0f), 0f), new(new(356.00613f, -242.2f), 2f), new(new(338.2f, -260.00613f), 2f), new(new(373.8f, -260.00613f), 2f)),
+ new(new(new(408.1609f, -262.6852f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(248.2532f, -195.6302f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(320.0034f, -195.9265f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(368.0628f, -206.9281f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ])
+ ),
+ ["1.19"] = new(
+ 1,
+ 18,
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(243.5614f, -404.8383f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(292.1822f, -414.2727f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(388.0965f, -403.584f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(204.5525f, -346.565f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(255.7953f, -345.8169f), 0.25f), new(new(256f, -361.8f), 2f), new(new(0f, 0f), 0f), new(new(238.2f, -344.00613f), 2f), new(new(273.8f, -344.00613f), 2f)),
+ new(new(new(312.0199f, -359.8006f), 0.25f), new(new(312f, -373.8f), 2f), new(new(312.00613f, -338.2f), 2f), new(new(294.2f, -356.00613f), 2f), new(new(329.8f, -356.00613f), 2f)),
+ new(new(new(367.9919f, -346.235f), 0.25f), new(new(368f, -361.8f), 2f), new(new(0f, 0f), 0f), new(new(350.2f, -344.00613f), 2f), new(new(385.8f, -344f), 2f)),
+ new(new(new(423.9744f, -358.9135f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(187.9247f, -303.1526f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(243.8179f, -290.1868f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(226.2f, -288f), 2f), new(new(261.8f, -288.00613f), 2f)),
+ new(new(new(300.0593f, -302.7772f), 0.25f), new(new(300f, -317.8f), 2f), new(new(300.00613f, -282.2f), 2f), new(new(282.2f, -300.00613f), 2f), new(new(317.8f, -300.00613f), 2f)),
+ new(new(new(352.1592f, -303.0645f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(334.2f, -300.00613f), 2f), new(new(369.8f, -300f), 2f)),
+ new(new(new(407.5428f, -314.7849f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(191.4722f, -238.0882f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(248.2417f, -250.4833f), 0.25f), new(new(0f, 0f), 0f), new(new(248f, -230.2f), 2f), new(new(230.2f, -248f), 2f), new(new(265.8f, -248f), 2f)),
+ new(new(new(299.6617f, -250.8317f), 0.25f), new(new(300f, -265.8f), 2f), new(new(300.00613f, -230.2f), 2f), new(new(282.2f, -248.00615f), 2f), new(new(317.8f, -248.00615f), 2f)),
+ new(new(new(355.2953f, -262.2832f), 0.25f), new(new(0f, 0f), 0f), new(new(356.00613f, -242.2f), 2f), new(new(338.2f, -260.00613f), 2f), new(new(373.8f, -260.00613f), 2f)),
+ new(new(new(408.1609f, -262.6852f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(248.2532f, -195.6302f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(320.0034f, -195.9265f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(368.0628f, -206.9281f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ]),
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-375.8101f, 184.0421f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-287.8989f, 190.2825f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-219.2287f, 197.0434f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-417.0273f, 240.809f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-364.8857f, 240.4289f), 0.25f), new(new(-364f, 226.2f), 2f), new(new(-364f, 261.8f), 2f), new(new(-381.8f, 243.99385f), 2f), new(new(0f, 0f), 0f)),
+ new(new(new(-299.8871f, 244.1161f), 0.25f), new(new(-300f, 228.2f), 2f), new(new(-300f, 263.8f), 2f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-232.3339f, 253.2937f), 0.25f), new(new(-232f, 238.2f), 2f), new(new(-232f, 273.8f), 2f), new(new(0f, 0f), 0f), new(new(-214.2f, 256f), 2f)),
+ new(new(new(-180.1405f, 252.934f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-406.5778f, 297.4088f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-351.621f, 296.9664f), 0.25f), new(new(-352f, 282.2f), 2f), new(new(-352f, 317.8f), 2f), new(new(-369.8f, 299.99387f), 2f), new(new(-334.2f, 299.99387f), 2f)),
+ new(new(new(-299.914f, 297.3557f), 0.25f), new(new(-300f, 282.2f), 2f), new(new(-300f, 317.8f), 2f), new(new(-317.8f, 299.99387f), 2f), new(new(-282.2f, 299.99387f), 2f)),
+ new(new(new(-244.3859f, 297.4952f), 0.25f), new(new(-244f, 294.2f), 2f), new(new(-244f, 329.8f), 2f), new(new(-261.8f, 311.99387f), 2f), new(new(-226.2f, 311.99387f), 2f)),
+ new(new(new(-190.7164f, 308.6962f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-403.6229f, 348.9707f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-351.8816f, 348.9453f), 0.25f), new(new(-352f, 334.2f), 2f), new(new(-352f, 369.8f), 2f), new(new(-369.8f, 351.99387f), 2f), new(new(0f, 0f), 0f)),
+ new(new(new(-311.6316f, 353.3328f), 0.25f), new(new(-312f, 338.2f), 2f), new(new(-312f, 373.8f), 2f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-244.4898f, 359.8373f), 0.25f), new(new(-244f, 346.2f), 2f), new(new(-244f, 381.8f), 2f), new(new(0f, 0f), 0f), new(new(-226.2f, 363.99387f), 2f)),
+ new(new(new(-192.1444f, 360.8743f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-363.3706f, 407.0828f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-299.9716f, 408.9295f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-230.1441f, 419.8333f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ])
+ ),
+ ["1.20"] = new(
+ 1,
+ 19,
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-375.8101f, 184.0421f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-287.8989f, 190.2825f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-219.2287f, 197.0434f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-417.0273f, 240.809f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-364.8857f, 240.4289f), 0.25f), new(new(-364f, 226.2f), 2f), new(new(-364f, 261.8f), 2f), new(new(-381.8f, 243.99385f), 2f), new(new(0f, 0f), 0f)),
+ new(new(new(-299.8871f, 244.1161f), 0.25f), new(new(-300f, 228.2f), 2f), new(new(-300f, 263.8f), 2f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-232.3339f, 253.2937f), 0.25f), new(new(-232f, 238.2f), 2f), new(new(-232f, 273.8f), 2f), new(new(0f, 0f), 0f), new(new(-214.2f, 256f), 2f)),
+ new(new(new(-180.1405f, 252.934f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-406.5778f, 297.4088f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-351.621f, 296.9664f), 0.25f), new(new(-352f, 282.2f), 2f), new(new(-352f, 317.8f), 2f), new(new(-369.8f, 299.99387f), 2f), new(new(-334.2f, 299.99387f), 2f)),
+ new(new(new(-299.914f, 297.3557f), 0.25f), new(new(-300f, 282.2f), 2f), new(new(-300f, 317.8f), 2f), new(new(-317.8f, 299.99387f), 2f), new(new(-282.2f, 299.99387f), 2f)),
+ new(new(new(-244.3859f, 297.4952f), 0.25f), new(new(-244f, 294.2f), 2f), new(new(-244f, 329.8f), 2f), new(new(-261.8f, 311.99387f), 2f), new(new(-226.2f, 311.99387f), 2f)),
+ new(new(new(-190.7164f, 308.6962f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-403.6229f, 348.9707f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-351.8816f, 348.9453f), 0.25f), new(new(-352f, 334.2f), 2f), new(new(-352f, 369.8f), 2f), new(new(-369.8f, 351.99387f), 2f), new(new(0f, 0f), 0f)),
+ new(new(new(-311.6316f, 353.3328f), 0.25f), new(new(-312f, 338.2f), 2f), new(new(-312f, 373.8f), 2f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-244.4898f, 359.8373f), 0.25f), new(new(-244f, 346.2f), 2f), new(new(-244f, 381.8f), 2f), new(new(0f, 0f), 0f), new(new(-226.2f, 363.99387f), 2f)),
+ new(new(new(-192.1444f, 360.8743f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-363.3706f, 407.0828f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-299.9716f, 408.9295f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-230.1441f, 419.8333f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ]),
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(243.5614f, -404.8383f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(292.1822f, -414.2727f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(388.0965f, -403.584f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(204.5525f, -346.565f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(255.7953f, -345.8169f), 0.25f), new(new(256f, -361.8f), 2f), new(new(0f, 0f), 0f), new(new(238.2f, -344.00613f), 2f), new(new(273.8f, -344.00613f), 2f)),
+ new(new(new(312.0199f, -359.8006f), 0.25f), new(new(312f, -373.8f), 2f), new(new(312.00613f, -338.2f), 2f), new(new(294.2f, -356.00613f), 2f), new(new(329.8f, -356.00613f), 2f)),
+ new(new(new(367.9919f, -346.235f), 0.25f), new(new(368f, -361.8f), 2f), new(new(0f, 0f), 0f), new(new(350.2f, -344.00613f), 2f), new(new(385.8f, -344f), 2f)),
+ new(new(new(423.9744f, -358.9135f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(187.9247f, -303.1526f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(243.8179f, -290.1868f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(226.2f, -288f), 2f), new(new(261.8f, -288.00613f), 2f)),
+ new(new(new(300.0593f, -302.7772f), 0.25f), new(new(300f, -317.8f), 2f), new(new(300.00613f, -282.2f), 2f), new(new(282.2f, -300.00613f), 2f), new(new(317.8f, -300.00613f), 2f)),
+ new(new(new(352.1592f, -303.0645f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(334.2f, -300.00613f), 2f), new(new(369.8f, -300f), 2f)),
+ new(new(new(407.5428f, -314.7849f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(191.4722f, -238.0882f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(248.2417f, -250.4833f), 0.25f), new(new(0f, 0f), 0f), new(new(248f, -230.2f), 2f), new(new(230.2f, -248f), 2f), new(new(265.8f, -248f), 2f)),
+ new(new(new(299.6617f, -250.8317f), 0.25f), new(new(300f, -265.8f), 2f), new(new(300.00613f, -230.2f), 2f), new(new(282.2f, -248.00615f), 2f), new(new(317.8f, -248.00615f), 2f)),
+ new(new(new(355.2953f, -262.2832f), 0.25f), new(new(0f, 0f), 0f), new(new(356.00613f, -242.2f), 2f), new(new(338.2f, -260.00613f), 2f), new(new(373.8f, -260.00613f), 2f)),
+ new(new(new(408.1609f, -262.6852f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(248.2532f, -195.6302f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(320.0034f, -195.9265f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(368.0628f, -206.9281f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ])
+ ),
+ ["2.1"] = new(
+ 2,
+ 0,
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-372f, 185f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-288f, 184f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-224f, 196f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-404f, 241f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-352f, 241f), 0.25f), new(new(-352f, 225.52298f), 1f), new(new(-352f, 262.47702f), 1f), new(new(-370.47702f, 244f), 1f), new(new(0f, 0f), 0f)),
+ new(new(new(-300.5f, 241f), 0.25f), new(new(-300f, 225.52298f), 1f), new(new(-300f, 262.47702f), 1f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-236f, 252f), 0.25f), new(new(-236f, 236.52298f), 1f), new(new(-236f, 273.47702f), 1f), new(new(0f, 0f), 0f), new(new(-217.52298f, 255f), 1f)),
+ new(new(new(-192f, 251.5f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-418f, 297f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-364f, 297f), 0.25f), new(new(-364f, 281.52298f), 1f), new(new(-364f, 318.47702f), 1f), new(new(-382.47702f, 300f), 1f), new(new(-345.52298f, 300f), 1f)),
+ new(new(new(-300f, 297f), 0.25f), new(new(-300f, 279.2241f), 1f), new(new(-300f, 320.48972f), 1f), new(new(-316.96402f, 299.99362f), 1f), new(new(-283.0333f, 299.99362f), 1f)),
+ new(new(new(-236f, 309.5f), 0.25f), new(new(-236f, 293.52298f), 1f), new(new(-236f, 330.47702f), 1f), new(new(-254.47702f, 311.99362f), 1f), new(new(-217.52298f, 312f), 1f)),
+ new(new(new(-180.5f, 309f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-404f, 353f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-352f, 353f), 0.25f), new(new(-352f, 337.52298f), 1f), new(new(-352f, 374.47702f), 1f), new(new(-370.47702f, 356f), 1f), new(new(0f, 0f), 0f)),
+ new(new(new(-300f, 353f), 0.25f), new(new(-300f, 337.52298f), 1f), new(new(-300f, 374.47702f), 1f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-236f, 365f), 0.25f), new(new(-236f, 347.1641f), 1f), new(new(-236f, 388.4797f), 1f), new(new(0f, 0f), 0f), new(new(-219.14818f, 367.99362f), 1f)),
+ new(new(new(-184.5f, 365f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-364f, 407f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-280f, 409f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-224f, 423f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ]),
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(244f, -414f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(292f, -414.5f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(380f, -414f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(202f, -348f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(256f, -348f), 0.25f), new(new(256f, -363.47702f), 1f), new(new(0f, 0f), 0f), new(new(237.52298f, -345f), 1f), new(new(274.47702f, -345f), 1f)),
+ new(new(new(312f, -360f), 0.25f), new(new(312f, -375.47702f), 1f), new(new(312f, -338.52298f), 1f), new(new(293.52298f, -357.00638f), 1f), new(new(330.47702f, -357f), 1f)),
+ new(new(new(368f, -348f), 0.25f), new(new(368f, -363.47702f), 1f), new(new(0f, 0f), 0f), new(new(349.52298f, -345f), 1f), new(new(386.47702f, -345f), 1f)),
+ new(new(new(432.5f, -360f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(188f, -304f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(244f, -291.5f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(225.52298f, -289f), 1f), new(new(262.47702f, -289f), 1f)),
+ new(new(new(300f, -304f), 0.25f), new(new(300f, -319.47702f), 1f), new(new(300f, -282.52298f), 1f), new(new(281.52298f, -301f), 1f), new(new(318.47702f, -301f), 1f)),
+ new(new(new(356f, -292f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(337.52298f, -289f), 1f), new(new(374.47702f, -289f), 1f)),
+ new(new(new(409.5f, -292.5f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(195.5f, -234f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(246f, -234f), 0.25f), new(new(0f, 0f), 0f), new(new(246f, -210.41537f), 1f), new(new(228.99098f, -231f), 1f), new(new(262.74982f, -231f), 1f)),
+ new(new(new(300f, -246f), 0.25f), new(new(300f, -261.47702f), 1f), new(new(300f, -224.52298f), 1f), new(new(281.52298f, -243f), 1f), new(new(318.47702f, -243f), 1f)),
+ new(new(new(354.5f, -234f), 0.25f), new(new(0f, 0f), 0f), new(new(354.4832f, -210.23747f), 1f), new(new(337.5438f, -231.00638f), 1f), new(new(371.3586f, -231.00638f), 1f)),
+ new(new(new(405f, -234f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(234f, -174.5f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(320.5f, -190f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(366.5f, -176f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ])
+ ),
+ ["2.2"] = new(
+ 2,
+ 1,
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-372f, 185f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-288f, 184f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-224f, 196f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-404f, 241f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-352f, 241f), 0.25f), new(new(-351.9999f, 225.52298f), 1f), new(new(-351.9999f, 262.47702f), 1f), new(new(-370.47693f, 243.99362f), 1f), new(new(0f, 0f), 0f)),
+ new(new(new(-300.5f, 241f), 0.25f), new(new(-299.9999f, 225.52298f), 1f), new(new(-299.9999f, 262.47702f), 1f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-236f, 252f), 0.25f), new(new(-235.9999f, 236.52298f), 1f), new(new(-236f, 273.47702f), 1f), new(new(0f, 0f), 0f), new(new(-217.52287f, 254.99362f), 1f)),
+ new(new(new(-192f, 251.5f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-418f, 297f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-364f, 297f), 0.25f), new(new(-364f, 281.5229f), 1f), new(new(-364f, 318.47693f), 1f), new(new(-382.47702f, 299.99353f), 1f), new(new(-345.52298f, 299.99353f), 1f)),
+ new(new(new(-300f, 297f), 0.25f), new(new(-300f, 279.22397f), 1f), new(new(-300f, 320.48962f), 1f), new(new(-316.96402f, 299.99353f), 1f), new(new(-283.0333f, 299.99353f), 1f)),
+ new(new(new(-236f, 309.5f), 0.25f), new(new(-236f, 293.52298f), 1f), new(new(-236f, 330.47702f), 1f), new(new(-254.47702f, 311.99362f), 1f), new(new(-217.52298f, 311.99362f), 1f)),
+ new(new(new(-180.5f, 309f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-404f, 353f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-352f, 353f), 0.25f), new(new(-352f, 337.5229f), 1f), new(new(-352f, 374.47693f), 1f), new(new(-370.47702f, 355.99353f), 1f), new(new(0f, 0f), 0f)),
+ new(new(new(-300f, 353f), 0.25f), new(new(-300f, 337.5229f), 1f), new(new(-300f, 374.47693f), 1f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-236f, 365f), 0.25f), new(new(-236f, 347.1641f), 1f), new(new(-236f, 388.4797f), 1f), new(new(0f, 0f), 0f), new(new(-219.14818f, 367.99362f), 1f)),
+ new(new(new(-184.5f, 365f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-364f, 407f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-280f, 409f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-224f, 423f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ]),
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(244f, -414f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(292f, -414.5f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(380f, -414f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(202f, -348f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(256f, -348f), 0.25f), new(new(255.99991f, -363.47693f), 1f), new(new(0f, 0f), 0f), new(new(237.52287f, -345.0063f), 1f), new(new(274.47702f, -345.0063f), 1f)),
+ new(new(new(312f, -360f), 0.25f), new(new(311.9999f, -375.47693f), 1f), new(new(311.9999f, -338.5229f), 1f), new(new(293.5229f, -357.0063f), 1f), new(new(330.47693f, -357.0063f), 1f)),
+ new(new(new(368f, -348f), 0.25f), new(new(368f, -363.47693f), 1f), new(new(0f, 0f), 0f), new(new(349.52298f, -345.0063f), 1f), new(new(386.47702f, -345.0063f), 1f)),
+ new(new(new(432.5f, -360f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(188f, -304f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(244f, -291.5f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(225.52298f, -289.00616f), 1f), new(new(262.47702f, -289.00616f), 1f)),
+ new(new(new(300f, -304f), 0.25f), new(new(300f, -319.47693f), 1f), new(new(300f, -282.5229f), 1f), new(new(281.52298f, -301.0063f), 1f), new(new(318.47702f, -301.0063f), 1f)),
+ new(new(new(356f, -292f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(337.52298f, -289.0063f), 1f), new(new(374.47702f, -289.0063f), 1f)),
+ new(new(new(409.5f, -292.5f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(195.5f, -234f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(246f, -234f), 0.25f), new(new(0f, 0f), 0f), new(new(245.99998f, -210.41537f), 1f), new(new(228.99098f, -231.00638f), 1f), new(new(262.79282f, -231.00638f), 1f)),
+ new(new(new(300f, -246f), 0.25f), new(new(300f, -261.47702f), 1f), new(new(300f, -224.52298f), 1f), new(new(281.52298f, -243.00638f), 1f), new(new(318.47702f, -243.00638f), 1f)),
+ new(new(new(354.5f, -234f), 0.25f), new(new(0f, 0f), 0f), new(new(354.4832f, -210.23747f), 1f), new(new(337.5438f, -231.00638f), 1f), new(new(371.3586f, -231.00638f), 1f)),
+ new(new(new(405f, -234f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(234f, -174.5f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(320.5f, -190f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(366.5f, -176f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ])
+ ),
+ ["2.3"] = new(
+ 2,
+ 2,
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-372f, 185f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-288f, 181f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-224f, 197f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-404f, 241f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-352f, 241f), 0.25f), new(new(-352f, 225.3f), 1f), new(new(-352f, 262.7f), 1f), new(new(-370.7f, 243.99355f), 1f), new(new(0f, 0f), 0f)),
+ new(new(new(-300f, 241f), 0.25f), new(new(-300f, 225.3f), 1f), new(new(-300f, 262.7f), 1f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-236f, 253f), 0.25f), new(new(-236f, 237.3f), 1f), new(new(-236.01291f, 274.7f), 1f), new(new(0f, 0f), 0f), new(new(-217.3f, 255.99355f), 1f)),
+ new(new(new(-180f, 253f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-416f, 297f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-364f, 297f), 0.25f), new(new(-364f, 281.3f), 1f), new(new(-363.9871f, 318.7f), 1f), new(new(-382.7f, 299.99353f), 1f), new(new(-345.30002f, 299.97858f), 1f)),
+ new(new(new(-300f, 297f), 0.25f), new(new(-300f, 277.3f), 1f), new(new(-299.9871f, 322.7f), 1f), new(new(-318.7f, 299.99353f), 1f), new(new(-281.30002f, 299.97858f), 1f)),
+ new(new(new(-236f, 309f), 0.25f), new(new(-236f, 293.3f), 1f), new(new(-235.98709f, 330.7f), 1f), new(new(-254.7f, 311.99353f), 1f), new(new(-217.3f, 311.99353f), 1f)),
+ new(new(new(-184f, 309f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-404f, 353f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-352f, 353f), 0.25f), new(new(-352f, 337.3f), 1f), new(new(-351.9871f, 374.7f), 1f), new(new(-370.7f, 355.99353f), 1f), new(new(0f, 0f), 0f)),
+ new(new(new(-300f, 353f), 0.25f), new(new(-300f, 337.2999f), 1f), new(new(-300f, 374.69992f), 1f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-236f, 365f), 0.25f), new(new(-236f, 345.3f), 1f), new(new(-236.01291f, 390.7f), 1f), new(new(0f, 0f), 0f), new(new(-217.3f, 367.99353f), 1f)),
+ new(new(new(-184f, 365f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-364f, 409f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-280f, 408.8071f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-224f, 425f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ]),
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(244f, -411f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(292f, -415f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(380f, -411f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(204f, -347f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(256f, -347f), 0.25f), new(new(256f, -362.7f), 1f), new(new(0f, 0f), 0f), new(new(237.3f, -344.00647f), 1f), new(new(274.7f, -344.00647f), 1f)),
+ new(new(new(312f, -359f), 0.25f), new(new(312f, -374.7f), 1f), new(new(311.9871f, -337.3f), 1f), new(new(293.3f, -356f), 1f), new(new(330.7f, -356.00647f), 1f)),
+ new(new(new(368f, -347f), 0.25f), new(new(368f, -362.7f), 1f), new(new(0f, 0f), 0f), new(new(349.3f, -344.00647f), 1f), new(new(386.7f, -344.00647f), 1f)),
+ new(new(new(424f, -359f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(188f, -303f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(244f, -291f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(225.3f, -288f), 1f), new(new(262.7f, -288.00647f), 1f)),
+ new(new(new(300f, -303f), 0.25f), new(new(300.01495f, -318.69998f), 1f), new(new(299.9871f, -281.3f), 1f), new(new(281.30002f, -300.02142f), 1f), new(new(318.7f, -300.01117f), 1f)),
+ new(new(new(356f, -291f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(337.3f, -288.01117f), 1f), new(new(374.7f, -288.01117f), 1f)),
+ new(new(new(420f, -291f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(192f, -235f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(244f, -235f), 0.25f), new(new(0f, 0f), 0f), new(new(243.98709f, -209.3f), 1f), new(new(225.3f, -232.00645f), 1f), new(new(262.7f, -232.00645f), 1f)),
+ new(new(new(300f, -247f), 0.25f), new(new(299.99527f, -262.7f), 1f), new(new(300f, -225.3f), 1f), new(new(281.3f, -244f), 1f), new(new(318.7f, -244.01118f), 1f)),
+ new(new(new(356f, -235f), 0.25f), new(new(0f, 0f), 0f), new(new(355.98236f, -209.3f), 1f), new(new(337.3f, -232.01118f), 1f), new(new(374.7f, -232.01118f), 1f)),
+ new(new(new(408f, -235f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(232f, -171f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(320f, -191f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(368f, -175f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ])
+ ),
+ ["2.4"] = new(
+ 2,
+ 3,
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-372f, 185f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-288f, 181f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-224f, 197f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-404f, 241f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-352f, 241f), 0.25f), new(new(-352f, 225.3f), 1f), new(new(-352f, 262.7f), 1f), new(new(-370.7f, 243.99355f), 1f), new(new(0f, 0f), 0f)),
+ new(new(new(-300f, 241f), 0.25f), new(new(-300f, 225.3f), 1f), new(new(-300f, 262.7f), 1f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-236f, 253f), 0.25f), new(new(-236f, 237.3f), 1f), new(new(-236.01291f, 274.7f), 1f), new(new(0f, 0f), 0f), new(new(-217.3f, 255.99355f), 1f)),
+ new(new(new(-180f, 253f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-416f, 297f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-364f, 297f), 0.25f), new(new(-364f, 281.3f), 1f), new(new(-363.9871f, 318.7f), 1f), new(new(-382.7f, 299.99353f), 1f), new(new(-345.30002f, 299.97858f), 1f)),
+ new(new(new(-300f, 297f), 0.25f), new(new(-300f, 277.3f), 1f), new(new(-299.9871f, 322.7f), 1f), new(new(-318.7f, 299.99353f), 1f), new(new(-281.30002f, 299.97858f), 1f)),
+ new(new(new(-236f, 309f), 0.25f), new(new(-236f, 293.3f), 1f), new(new(-235.98709f, 330.7f), 1f), new(new(-254.7f, 311.99353f), 1f), new(new(-217.3f, 311.99353f), 1f)),
+ new(new(new(-184f, 309f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-404f, 353f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-352f, 353f), 0.25f), new(new(-352f, 337.3f), 1f), new(new(-351.9871f, 374.7f), 1f), new(new(-370.7f, 355.99353f), 1f), new(new(0f, 0f), 0f)),
+ new(new(new(-300f, 353f), 0.25f), new(new(-300f, 337.2999f), 1f), new(new(-300f, 374.69992f), 1f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-236f, 365f), 0.25f), new(new(-236f, 345.3f), 1f), new(new(-236.01291f, 390.7f), 1f), new(new(0f, 0f), 0f), new(new(-217.3f, 367.99353f), 1f)),
+ new(new(new(-184f, 365f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-364f, 409f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-280f, 408.8071f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-224f, 425f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ]),
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(244f, -411f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(292f, -415f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(380f, -411f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(204f, -347f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(256f, -347f), 0.25f), new(new(256f, -362.7f), 1f), new(new(0f, 0f), 0f), new(new(237.3f, -344.00647f), 1f), new(new(274.7f, -344.00647f), 1f)),
+ new(new(new(312f, -359f), 0.25f), new(new(312f, -374.7f), 1f), new(new(311.9871f, -337.3f), 1f), new(new(293.3f, -356f), 1f), new(new(330.7f, -356.00647f), 1f)),
+ new(new(new(368f, -347f), 0.25f), new(new(368f, -362.7f), 1f), new(new(0f, 0f), 0f), new(new(349.3f, -344.00647f), 1f), new(new(386.7f, -344.00647f), 1f)),
+ new(new(new(424f, -359f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(188f, -303f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(244f, -291f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(225.3f, -288f), 1f), new(new(262.7f, -288.00647f), 1f)),
+ new(new(new(300f, -303f), 0.25f), new(new(300.01495f, -318.69998f), 1f), new(new(299.9871f, -281.3f), 1f), new(new(281.30002f, -300.02142f), 1f), new(new(318.7f, -300.01117f), 1f)),
+ new(new(new(356f, -291f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(337.3f, -288.01117f), 1f), new(new(374.7f, -288.01117f), 1f)),
+ new(new(new(420f, -291f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(192f, -235f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(244f, -235f), 0.25f), new(new(0f, 0f), 0f), new(new(243.98709f, -209.3f), 1f), new(new(225.3f, -232.00645f), 1f), new(new(262.7f, -232.00645f), 1f)),
+ new(new(new(300f, -247f), 0.25f), new(new(299.99527f, -262.7f), 1f), new(new(300f, -225.3f), 1f), new(new(281.3f, -244f), 1f), new(new(318.7f, -244.01118f), 1f)),
+ new(new(new(356f, -235f), 0.25f), new(new(0f, 0f), 0f), new(new(355.98236f, -209.3f), 1f), new(new(337.3f, -232.01118f), 1f), new(new(374.7f, -232.01118f), 1f)),
+ new(new(new(408f, -235f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(232f, -171f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(320f, -191f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(368f, -175f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ])
+ ),
+ ["2.5"] = new(
+ 2,
+ 4,
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-355.8573f, 185.2251f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-288.002f, 177.2258f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-231.9923f, 188.9541f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-391.9843f, 241.0407f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-343.7905f, 241.2819f), 0.25f), new(new(-344f, 228f), 1f), new(new(-344f, 260f), 1f), new(new(-360f, 243.99448f), 1f), new(new(0f, 0f), 0f)),
+ new(new(new(-300.005f, 236.9362f), 0.25f), new(new(-300f, 220f), 1f), new(new(-300f, 260f), 1f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-243.5821f, 248.9216f), 0.25f), new(new(-244f, 232f), 1f), new(new(-244f, 272f), 1f), new(new(0f, 0f), 0f), new(new(-228f, 251.99448f), 1f)),
+ new(new(new(-193.1936f, 249.1052f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-411.0981f, 297.3896f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-356.1487f, 297.2281f), 0.25f), new(new(-356f, 284f), 1f), new(new(-356f, 316f), 1f), new(new(-372f, 299.99448f), 1f), new(new(-340f, 299.99448f), 1f)),
+ new(new(new(-299.9097f, 296.9191f), 0.25f), new(new(-300f, 284f), 1f), new(new(-300f, 316f), 1f), new(new(-316f, 299.99448f), 1f), new(new(-284f, 299.99448f), 1f)),
+ new(new(new(-243.9999f, 308.964f), 0.25f), new(new(-244f, 296f), 1f), new(new(-244f, 328f), 1f), new(new(-260f, 311.99448f), 1f), new(new(-228f, 311.99448f), 1f)),
+ new(new(new(-187.9608f, 309.0062f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-391.6383f, 353.528f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-343.9681f, 353.0758f), 0.25f), new(new(-344f, 340f), 1f), new(new(-344f, 372f), 1f), new(new(-360f, 355.99448f), 1f), new(new(0f, 0f), 0f)),
+ new(new(new(-300.0071f, 352.9742f), 0.25f), new(new(-300f, 340f), 1f), new(new(-300f, 372f), 1f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-243.77f, 365.2054f), 0.25f), new(new(-244f, 352f), 1f), new(new(-244f, 384f), 1f), new(new(0f, 0f), 0f), new(new(-228f, 367.99448f), 1f)),
+ new(new(new(-188.0415f, 365.2347f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-356.0089f, 408.9963f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-299.7785f, 397.8955f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-232.0506f, 424.0166f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ]),
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(244.0835f, -402.6324f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(300.0078f, -414.5347f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(368.0554f, -402.7043f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(199.9552f, -347.0208f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(256.002f, -346.9934f), 0.25f), new(new(256f, -360f), 1f), new(new(0f, 0f), 0f), new(new(240f, -344.00552f), 1f), new(new(272f, -344.00552f), 1f)),
+ new(new(new(312.1647f, -359.0013f), 0.25f), new(new(312f, -372f), 1f), new(new(312f, -340f), 1f), new(new(296f, -356.00552f), 1f), new(new(328f, -356.00552f), 1f)),
+ new(new(new(368.0155f, -347.03f), 0.25f), new(new(368f, -360f), 1f), new(new(0f, 0f), 0f), new(new(352f, -344.00552f), 1f), new(new(384f, -344.00552f), 1f)),
+ new(new(new(424.0288f, -358.9697f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(180.0593f, -302.804f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(239.8805f, -290.9948f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(220f, -288.00552f), 1f), new(new(260f, -288.00552f), 1f)),
+ new(new(new(300.0002f, -302.9918f), 0.25f), new(new(300f, -316f), 1f), new(new(300f, -284f), 1f), new(new(284f, -300.00552f), 1f), new(new(316f, -300.00552f), 1f)),
+ new(new(new(372.0275f, -302.9599f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(356f, -300.00552f), 1f), new(new(388f, -300.00552f), 1f)),
+ new(new(new(420.0985f, -302.9042f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(195.9618f, -235.0082f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(244.017f, -235.0078f), 0.25f), new(new(0f, 0f), 0f), new(new(244f, -216f), 1f), new(new(228f, -232.00552f), 1f), new(new(260f, -232.00552f), 1f)),
+ new(new(new(299.9469f, -246.9704f), 0.25f), new(new(300f, -260f), 1f), new(new(300f, -228f), 1f), new(new(284f, -244.00552f), 1f), new(new(316f, -244.00552f), 1f)),
+ new(new(new(355.9551f, -234.8956f), 0.25f), new(new(0f, 0f), 0f), new(new(356f, -216f), 1f), new(new(340f, -232.00552f), 1f), new(new(372f, -232.00552f), 1f)),
+ new(new(new(404.0493f, -235.0011f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(244.0783f, -179.0651f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(299.9961f, -198.9497f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(368.3321f, -178.8076f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ])
+ ),
+ ["2.6"] = new(
+ 2,
+ 5,
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-355.8573f, 185.2251f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-288.002f, 177.2258f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-231.9923f, 188.9541f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-391.9843f, 241.0407f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-343.7905f, 241.2819f), 0.25f), new(new(-344f, 228f), 1f), new(new(-344f, 260f), 1f), new(new(-360f, 243.99448f), 1f), new(new(0f, 0f), 0f)),
+ new(new(new(-300.005f, 236.9362f), 0.25f), new(new(-300f, 220f), 1f), new(new(-300f, 260f), 1f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-243.5821f, 248.9216f), 0.25f), new(new(-244f, 232f), 1f), new(new(-244f, 272f), 1f), new(new(0f, 0f), 0f), new(new(-228f, 251.99448f), 1f)),
+ new(new(new(-193.1936f, 249.1052f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-411.0981f, 297.3896f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-356.1487f, 297.2281f), 0.25f), new(new(-356f, 284f), 1f), new(new(-356f, 316f), 1f), new(new(-372f, 299.99448f), 1f), new(new(-340f, 299.99448f), 1f)),
+ new(new(new(-299.9097f, 296.9191f), 0.25f), new(new(-300f, 284f), 1f), new(new(-300f, 316f), 1f), new(new(-316f, 299.99448f), 1f), new(new(-284f, 299.99448f), 1f)),
+ new(new(new(-243.9999f, 308.964f), 0.25f), new(new(-244f, 296f), 1f), new(new(-244f, 328f), 1f), new(new(-260f, 311.99448f), 1f), new(new(-228f, 311.99448f), 1f)),
+ new(new(new(-187.9608f, 309.0062f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-391.6383f, 353.528f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-343.9681f, 353.0758f), 0.25f), new(new(-344f, 340f), 1f), new(new(-344f, 372f), 1f), new(new(-360f, 355.99448f), 1f), new(new(0f, 0f), 0f)),
+ new(new(new(-300.0071f, 352.9742f), 0.25f), new(new(-300f, 340f), 1f), new(new(-300f, 372f), 1f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-243.77f, 365.2054f), 0.25f), new(new(-244f, 352f), 1f), new(new(-244f, 384f), 1f), new(new(0f, 0f), 0f), new(new(-228f, 367.99448f), 1f)),
+ new(new(new(-188.0415f, 365.2347f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-356.0089f, 408.9963f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-299.7785f, 397.8955f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-232.0506f, 424.0166f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ]),
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(244.0835f, -402.6324f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(300.0078f, -414.5347f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(368.0554f, -402.7043f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(199.9552f, -347.0208f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(256.002f, -346.9934f), 0.25f), new(new(256f, -360f), 1f), new(new(0f, 0f), 0f), new(new(240f, -344.00552f), 1f), new(new(272f, -344.00552f), 1f)),
+ new(new(new(312.1647f, -359.0013f), 0.25f), new(new(312f, -372f), 1f), new(new(312f, -340f), 1f), new(new(296f, -356.00552f), 1f), new(new(328f, -356.00552f), 1f)),
+ new(new(new(368.0155f, -347.03f), 0.25f), new(new(368f, -360f), 1f), new(new(0f, 0f), 0f), new(new(352f, -344.00552f), 1f), new(new(384f, -344.00552f), 1f)),
+ new(new(new(424.0288f, -358.9697f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(180.0593f, -302.804f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(239.8805f, -290.9948f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(220f, -288.00552f), 1f), new(new(260f, -288.00552f), 1f)),
+ new(new(new(300.0002f, -302.9918f), 0.25f), new(new(300f, -316f), 1f), new(new(300f, -284f), 1f), new(new(284f, -300.00552f), 1f), new(new(316f, -300.00552f), 1f)),
+ new(new(new(372.0275f, -302.9599f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(356f, -300.00552f), 1f), new(new(388f, -300.00552f), 1f)),
+ new(new(new(420.0985f, -302.9042f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(195.9618f, -235.0082f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(244.017f, -235.0078f), 0.25f), new(new(0f, 0f), 0f), new(new(244f, -216f), 1f), new(new(228f, -232.00552f), 1f), new(new(260f, -232.00552f), 1f)),
+ new(new(new(299.9469f, -246.9704f), 0.25f), new(new(300f, -260f), 1f), new(new(300f, -228f), 1f), new(new(284f, -244.00552f), 1f), new(new(316f, -244.00552f), 1f)),
+ new(new(new(355.9551f, -234.8956f), 0.25f), new(new(0f, 0f), 0f), new(new(356f, -216f), 1f), new(new(340f, -232.00552f), 1f), new(new(372f, -232.00552f), 1f)),
+ new(new(new(404.0493f, -235.0011f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(244.0783f, -179.0651f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(299.9961f, -198.9497f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(368.3321f, -178.8076f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ])
+ ),
+ ["2.7"] = new(
+ 2,
+ 6,
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-355.9903f, 184.9528f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-287.7069f, 177.0204f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-231.9882f, 188.954f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-391.9807f, 241.6089f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-343.976f, 241.0261f), 0.25f), new(new(-344f, 228f), 1f), new(new(-344f, 260f), 1f), new(new(-360f, 243.99448f), 1f), new(new(0f, 0f), 0f)),
+ new(new(new(-299.6812f, 237.0281f), 0.25f), new(new(-300f, 220f), 1f), new(new(-300f, 260f), 1f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-243.6569f, 249.5105f), 0.25f), new(new(-244f, 232f), 1f), new(new(-244f, 272f), 1f), new(new(0f, 0f), 0f), new(new(-228f, 251.99448f), 1f)),
+ new(new(new(-192.8683f, 249.3833f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-411.8799f, 297.3343f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-356.0202f, 297.0269f), 0.25f), new(new(-356f, 284f), 1f), new(new(-356f, 316f), 1f), new(new(-372f, 299.99448f), 1f), new(new(-340f, 299.99448f), 1f)),
+ new(new(new(-299.9097f, 296.9191f), 0.25f), new(new(-300f, 284f), 1f), new(new(-300f, 316f), 1f), new(new(-316f, 299.99448f), 1f), new(new(-284f, 299.99448f), 1f)),
+ new(new(new(-244.0003f, 308.9668f), 0.25f), new(new(-244f, 296f), 1f), new(new(-244f, 328f), 1f), new(new(-260f, 311.99448f), 1f), new(new(-228f, 311.99448f), 1f)),
+ new(new(new(-187.9535f, 309.0191f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-392.0402f, 353.3066f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-344.0538f, 353.0163f), 0.25f), new(new(-344f, 340f), 1f), new(new(-344f, 372f), 1f), new(new(-360f, 355.99448f), 1f), new(new(0f, 0f), 0f)),
+ new(new(new(-300.0071f, 352.9742f), 0.25f), new(new(-300f, 340f), 1f), new(new(-300f, 372f), 1f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-244.8699f, 365.0421f), 0.25f), new(new(-244f, 352f), 1f), new(new(-244f, 384f), 1f), new(new(0f, 0f), 0f), new(new(-228f, 367.99448f), 1f)),
+ new(new(new(-188.0518f, 365.1992f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-356.0719f, 408.938f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-299.9741f, 399.7471f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-231.8569f, 424.064f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ]),
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(244.1633f, -402.7779f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(300.227f, -414.929f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(368.0675f, -402.6661f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(199.967f, -347.0057f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(255.966f, -347.0057f), 0.25f), new(new(256f, -360f), 1f), new(new(0f, 0f), 0f), new(new(240f, -344.00552f), 1f), new(new(272f, -344.00552f), 1f)),
+ new(new(new(312.0288f, -359.0013f), 0.25f), new(new(312f, -372f), 1f), new(new(312f, -340f), 1f), new(new(296f, -356.00552f), 1f), new(new(328f, -356.00552f), 1f)),
+ new(new(new(367.9984f, -347.0274f), 0.25f), new(new(368f, -360f), 1f), new(new(0f, 0f), 0f), new(new(352f, -344.00552f), 1f), new(new(384f, -344.00552f), 1f)),
+ new(new(new(424.0184f, -358.9778f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(180.0706f, -302.8362f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(240.9419f, -290.8453f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(220f, -288.00552f), 1f), new(new(260f, -288.00552f), 1f)),
+ new(new(new(299.9521f, -302.9824f), 0.25f), new(new(300f, -316f), 1f), new(new(300f, -284f), 1f), new(new(284f, -300.00552f), 1f), new(new(316f, -300.00552f), 1f)),
+ new(new(new(372.4629f, -303.0116f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(356f, -300.00552f), 1f), new(new(388f, -300.00552f), 1f)),
+ new(new(new(420.1107f, -303.1127f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(195.9561f, -235.003f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(244.017f, -235.0004f), 0.25f), new(new(0f, 0f), 0f), new(new(244f, -216f), 1f), new(new(228f, -232.00552f), 1f), new(new(260f, -232.00552f), 1f)),
+ new(new(new(299.9469f, -246.9704f), 0.25f), new(new(300f, -260f), 1f), new(new(300f, -228f), 1f), new(new(284f, -244.00552f), 1f), new(new(316f, -244.00552f), 1f)),
+ new(new(new(355.9822f, -234.8807f), 0.25f), new(new(0f, 0f), 0f), new(new(356f, -216f), 1f), new(new(340f, -232.00552f), 1f), new(new(372f, -232.00552f), 1f)),
+ new(new(new(404.0312f, -234.9912f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(244.178f, -178.6043f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(299.9914f, -198.9501f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(367.8135f, -179.2898f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ])
+ ),
+ ["2.8"] = new(
+ 2,
+ 7,
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-355.9903f, 184.9528f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-287.7069f, 177.0204f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-231.9882f, 188.954f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-391.9807f, 241.6089f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-343.976f, 241.0261f), 0.25f), new(new(-344f, 228f), 1f), new(new(-344f, 260f), 1f), new(new(-360f, 243.99448f), 1f), new(new(0f, 0f), 0f)),
+ new(new(new(-299.6812f, 237.0281f), 0.25f), new(new(-300f, 220f), 1f), new(new(-300f, 260f), 1f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-243.6569f, 249.5105f), 0.25f), new(new(-244f, 232f), 1f), new(new(-244f, 272f), 1f), new(new(0f, 0f), 0f), new(new(-228f, 251.99448f), 1f)),
+ new(new(new(-192.8683f, 249.3833f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-411.8799f, 297.3343f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-356.0202f, 297.0269f), 0.25f), new(new(-356f, 284f), 1f), new(new(-356f, 316f), 1f), new(new(-372f, 299.99448f), 1f), new(new(-340f, 299.99448f), 1f)),
+ new(new(new(-299.9097f, 296.9191f), 0.25f), new(new(-300f, 284f), 1f), new(new(-300f, 316f), 1f), new(new(-316f, 299.99448f), 1f), new(new(-284f, 299.99448f), 1f)),
+ new(new(new(-244.0003f, 308.9668f), 0.25f), new(new(-244f, 296f), 1f), new(new(-244f, 328f), 1f), new(new(-260f, 311.99448f), 1f), new(new(-228f, 311.99448f), 1f)),
+ new(new(new(-187.9535f, 309.0191f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-392.0402f, 353.3066f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-344.0538f, 353.0163f), 0.25f), new(new(-344f, 340f), 1f), new(new(-344f, 372f), 1f), new(new(-360f, 355.99448f), 1f), new(new(0f, 0f), 0f)),
+ new(new(new(-300.0071f, 352.9742f), 0.25f), new(new(-300f, 340f), 1f), new(new(-300f, 372f), 1f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-244.8699f, 365.0421f), 0.25f), new(new(-244f, 352f), 1f), new(new(-244f, 384f), 1f), new(new(0f, 0f), 0f), new(new(-228f, 367.99448f), 1f)),
+ new(new(new(-188.0518f, 365.1992f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-356.0719f, 408.938f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-299.9741f, 399.7471f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-231.8569f, 424.064f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ]),
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(244.1633f, -402.7779f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(300.227f, -414.929f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(368.0675f, -402.6661f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(199.967f, -347.0057f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(255.966f, -347.0057f), 0.25f), new(new(256f, -360f), 1f), new(new(0f, 0f), 0f), new(new(240f, -344.00552f), 1f), new(new(272f, -344.00552f), 1f)),
+ new(new(new(312.0288f, -359.0013f), 0.25f), new(new(312f, -372f), 1f), new(new(312f, -340f), 1f), new(new(296f, -356.00552f), 1f), new(new(328f, -356.00552f), 1f)),
+ new(new(new(367.9984f, -347.0274f), 0.25f), new(new(368f, -360f), 1f), new(new(0f, 0f), 0f), new(new(352f, -344.00552f), 1f), new(new(384f, -344.00552f), 1f)),
+ new(new(new(424.0184f, -358.9778f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(180.0706f, -302.8362f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(240.9419f, -290.8453f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(220f, -288.00552f), 1f), new(new(260f, -288.00552f), 1f)),
+ new(new(new(299.9521f, -302.9824f), 0.25f), new(new(300f, -316f), 1f), new(new(300f, -284f), 1f), new(new(284f, -300.00552f), 1f), new(new(316f, -300.00552f), 1f)),
+ new(new(new(372.4629f, -303.0116f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(356f, -300.00552f), 1f), new(new(388f, -300.00552f), 1f)),
+ new(new(new(420.1107f, -303.1127f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(195.9561f, -235.003f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(244.017f, -235.0004f), 0.25f), new(new(0f, 0f), 0f), new(new(244f, -216f), 1f), new(new(228f, -232.00552f), 1f), new(new(260f, -232.00552f), 1f)),
+ new(new(new(299.9469f, -246.9704f), 0.25f), new(new(300f, -260f), 1f), new(new(300f, -228f), 1f), new(new(284f, -244.00552f), 1f), new(new(316f, -244.00552f), 1f)),
+ new(new(new(355.9822f, -234.8807f), 0.25f), new(new(0f, 0f), 0f), new(new(356f, -216f), 1f), new(new(340f, -232.00552f), 1f), new(new(372f, -232.00552f), 1f)),
+ new(new(new(404.0312f, -234.9912f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(244.178f, -178.6043f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(299.9914f, -198.9501f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(367.8135f, -179.2898f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ])
+ ),
+ ["2.9"] = new(
+ 2,
+ 8,
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-371.6291f, 185.2251f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-287.6111f, 180.5311f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-224.0065f, 196.9706f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-403.7956f, 240.9815f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-351.6601f, 240.9567f), 0.25f), new(new(-352f, 227.72562f), 0.5f), new(new(-352f, 260.27438f), 0.5f), new(new(-368.27438f, 243.99438f), 0.5f), new(new(0f, 0f), 0f)),
+ new(new(new(-300.005f, 240.9776f), 0.25f), new(new(-300f, 227.72562f), 0.5f), new(new(-300f, 260.27438f), 0.5f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-235.9118f, 252.9965f), 0.25f), new(new(-236f, 239.72562f), 0.5f), new(new(-236f, 272.27438f), 0.5f), new(new(0f, 0f), 0f), new(new(-219.72562f, 256f), 0.5f)),
+ new(new(new(-179.563f, 252.97f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-415.7187f, 297.1642f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-363.8582f, 297.051f), 0.25f), new(new(-364f, 283.72562f), 0.5f), new(new(-364f, 316.27438f), 0.5f), new(new(-380.27438f, 299.9944f), 0.5f), new(new(-347.72562f, 300f), 0.5f)),
+ new(new(new(-299.9097f, 296.9191f), 0.25f), new(new(-300f, 279.72562f), 0.5f), new(new(-300f, 320.27438f), 0.5f), new(new(-316.27438f, 300f), 0.5f), new(new(-283.72562f, 299.9944f), 0.5f)),
+ new(new(new(-235.8968f, 308.996f), 0.25f), new(new(-236f, 295.72562f), 0.5f), new(new(-236f, 328.27438f), 0.5f), new(new(-252.27438f, 312f), 0.5f), new(new(-219.72562f, 312f), 0.5f)),
+ new(new(new(-183.9918f, 309.0591f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-404.0349f, 353.0772f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-351.9062f, 352.9164f), 0.25f), new(new(-352f, 339.72562f), 0.5f), new(new(-352f, 372.27438f), 0.5f), new(new(-368.27438f, 355.9944f), 0.5f), new(new(0f, 0f), 0f)),
+ new(new(new(-300.0071f, 352.9742f), 0.25f), new(new(-300f, 339.72562f), 0.5f), new(new(-300f, 372.27438f), 0.5f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-235.9642f, 364.9238f), 0.25f), new(new(-236f, 347.72562f), 0.5f), new(new(-236f, 388.27438f), 0.5f), new(new(0f, 0f), 0f), new(new(-219.72562f, 368f), 0.5f)),
+ new(new(new(-183.9746f, 365.0327f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-364.0523f, 409.0281f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-279.9631f, 408.9591f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-224.0631f, 424.9411f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ]),
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(244.0486f, -410.9757f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(292.126f, -414.9825f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(380.1461f, -411.1056f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(204.1231f, -347.036f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(256.1278f, -346.9888f), 0.25f), new(new(256f, -360.27438f), 0.5f), new(new(0f, 0f), 0f), new(new(239.72562f, -344f), 0.5f), new(new(272.27438f, -344f), 0.5f)),
+ new(new(new(312.0288f, -359.0013f), 0.25f), new(new(312.0002f, -372.27438f), 0.5f), new(new(312.0002f, -339.72562f), 0.5f), new(new(295.72583f, -356f), 0.5f), new(new(328.2746f, -356f), 0.5f)),
+ new(new(new(368.2337f, -346.8454f), 0.25f), new(new(368f, -360.27438f), 0.5f), new(new(0f, 0f), 0f), new(new(351.72562f, -344f), 0.5f), new(new(384.27438f, -344f), 0.5f)),
+ new(new(new(424.0288f, -358.5581f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(188.1206f, -303.116f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(244.0374f, -290.9948f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(227.72562f, -288f), 0.5f), new(new(260.27438f, -288f), 0.5f)),
+ new(new(new(300.1458f, -302.9695f), 0.25f), new(new(300f, -316.27448f), 0.5f), new(new(300f, -283.7257f), 0.5f), new(new(283.72562f, -300.0001f), 0.5f), new(new(316.27438f, -300.0001f), 0.5f)),
+ new(new(new(356.1721f, -290.9276f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(339.72562f, -288f), 0.5f), new(new(372.27438f, -288f), 0.5f)),
+ new(new(new(420.5025f, -291.028f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(191.8176f, -234.9829f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(244.017f, -235.0924f), 0.25f), new(new(0f, 0f), 0f), new(new(244f, -211.72562f), 0.5f), new(new(227.72562f, -232f), 0.5f), new(new(260.27438f, -232f), 0.5f)),
+ new(new(new(299.9469f, -246.9704f), 0.25f), new(new(300f, -260.27438f), 0.5f), new(new(300f, -227.72562f), 0.5f), new(new(283.72562f, -244f), 0.5f), new(new(316.27438f, -244f), 0.5f)),
+ new(new(new(355.9232f, -234.9595f), 0.25f), new(new(0f, 0f), 0f), new(new(356f, -211.72562f), 0.5f), new(new(339.72562f, -232f), 0.5f), new(new(372.27438f, -232f), 0.5f)),
+ new(new(new(408.1072f, -234.7271f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(232.1101f, -175.0513f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(319.8692f, -190.9974f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(368.3321f, -174.9503f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ])
+ ),
+ ["2.10"] = new(
+ 2,
+ 9,
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-371.6291f, 185.2251f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-287.6111f, 180.5311f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-224.0065f, 196.9706f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-403.7956f, 240.9815f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-351.6601f, 240.9567f), 0.25f), new(new(-352f, 227.72562f), 0.5f), new(new(-352f, 260.27438f), 0.5f), new(new(-368.27438f, 243.99438f), 0.5f), new(new(0f, 0f), 0f)),
+ new(new(new(-300.005f, 240.9776f), 0.25f), new(new(-300f, 227.72562f), 0.5f), new(new(-300f, 260.27438f), 0.5f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-235.9118f, 252.9965f), 0.25f), new(new(-236f, 239.72562f), 0.5f), new(new(-236f, 272.27438f), 0.5f), new(new(0f, 0f), 0f), new(new(-219.72562f, 256f), 0.5f)),
+ new(new(new(-179.563f, 252.97f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-415.7187f, 297.1642f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-363.8582f, 297.051f), 0.25f), new(new(-364f, 283.72562f), 0.5f), new(new(-364f, 316.27438f), 0.5f), new(new(-380.27438f, 299.9944f), 0.5f), new(new(-347.72562f, 300f), 0.5f)),
+ new(new(new(-299.9097f, 296.9191f), 0.25f), new(new(-300f, 279.72562f), 0.5f), new(new(-300f, 320.27438f), 0.5f), new(new(-316.27438f, 300f), 0.5f), new(new(-283.72562f, 299.9944f), 0.5f)),
+ new(new(new(-235.8968f, 308.996f), 0.25f), new(new(-236f, 295.72562f), 0.5f), new(new(-236f, 328.27438f), 0.5f), new(new(-252.27438f, 312f), 0.5f), new(new(-219.72562f, 312f), 0.5f)),
+ new(new(new(-183.9918f, 309.0591f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-404.0349f, 353.0772f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-351.9062f, 352.9164f), 0.25f), new(new(-352f, 339.72562f), 0.5f), new(new(-352f, 372.27438f), 0.5f), new(new(-368.27438f, 355.9944f), 0.5f), new(new(0f, 0f), 0f)),
+ new(new(new(-300.0071f, 352.9742f), 0.25f), new(new(-300f, 339.72562f), 0.5f), new(new(-300f, 372.27438f), 0.5f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-235.9642f, 364.9238f), 0.25f), new(new(-236f, 347.72562f), 0.5f), new(new(-236f, 388.27438f), 0.5f), new(new(0f, 0f), 0f), new(new(-219.72562f, 368f), 0.5f)),
+ new(new(new(-183.9746f, 365.0327f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-364.0523f, 409.0281f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-279.9631f, 408.9591f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-224.0631f, 424.9411f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ]),
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(244.0486f, -410.9757f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(292.126f, -414.9825f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(380.1461f, -411.1056f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(204.1231f, -347.036f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(256.1278f, -346.9888f), 0.25f), new(new(256f, -360.27438f), 0.5f), new(new(0f, 0f), 0f), new(new(239.72562f, -344f), 0.5f), new(new(272.27438f, -344f), 0.5f)),
+ new(new(new(312.0288f, -359.0013f), 0.25f), new(new(312.0002f, -372.27438f), 0.5f), new(new(312.0002f, -339.72562f), 0.5f), new(new(295.72583f, -356f), 0.5f), new(new(328.2746f, -356f), 0.5f)),
+ new(new(new(368.2337f, -346.8454f), 0.25f), new(new(368f, -360.27438f), 0.5f), new(new(0f, 0f), 0f), new(new(351.72562f, -344f), 0.5f), new(new(384.27438f, -344f), 0.5f)),
+ new(new(new(424.0288f, -358.5581f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(188.1206f, -303.116f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(244.0374f, -290.9948f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(227.72562f, -288f), 0.5f), new(new(260.27438f, -288f), 0.5f)),
+ new(new(new(300.1458f, -302.9695f), 0.25f), new(new(300f, -316.27448f), 0.5f), new(new(300f, -283.7257f), 0.5f), new(new(283.72562f, -300.0001f), 0.5f), new(new(316.27438f, -300.0001f), 0.5f)),
+ new(new(new(356.1721f, -290.9276f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(339.72562f, -288f), 0.5f), new(new(372.27438f, -288f), 0.5f)),
+ new(new(new(420.5025f, -291.028f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(191.8176f, -234.9829f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(244.017f, -235.0924f), 0.25f), new(new(0f, 0f), 0f), new(new(244f, -211.72562f), 0.5f), new(new(227.72562f, -232f), 0.5f), new(new(260.27438f, -232f), 0.5f)),
+ new(new(new(299.9469f, -246.9704f), 0.25f), new(new(300f, -260.27438f), 0.5f), new(new(300f, -227.72562f), 0.5f), new(new(283.72562f, -244f), 0.5f), new(new(316.27438f, -244f), 0.5f)),
+ new(new(new(355.9232f, -234.9595f), 0.25f), new(new(0f, 0f), 0f), new(new(356f, -211.72562f), 0.5f), new(new(339.72562f, -232f), 0.5f), new(new(372.27438f, -232f), 0.5f)),
+ new(new(new(408.1072f, -234.7271f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(232.1101f, -175.0513f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(319.8692f, -190.9974f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(368.3321f, -174.9503f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ])
+ ),
+ ["3.1"] = new(
+ 3,
+ 0,
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-387.9985f, 153.0004f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-299.9993f, 170f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-237.9994f, 171.0005f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-434.9991f, 217f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-363.9992f, 217.0008f), 0.25f), new(new(-364f, 204f), 1f), new(new(-364f, 236f), 1f), new(new(-380f, 219.99965f), 1f), new(new(0f, 0f), 0f)),
+ new(new(new(-300f, 241f), 0.25f), new(new(-300f, 228f), 1f), new(new(-300f, 260f), 1f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-237.9995f, 227.0005f), 0.25f), new(new(-238f, 214.0001f), 1f), new(new(-238f, 246f), 1f), new(new(0f, 0f), 0f), new(new(-222f, 229.99965f), 1f)),
+ new(new(new(-182.0001f, 227f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-435.9983f, 297f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-364f, 273f), 0.25f), new(new(-364f, 260f), 1f), new(new(-364f, 292f), 1f), new(new(-380f, 275.99966f), 1f), new(new(-348f, 275.99966f), 1f)),
+ new(new(new(-299.9994f, 297.0006f), 0.25f), new(new(-300f, 284f), 1f), new(new(-300f, 316f), 1f), new(new(-316f, 299.99966f), 1f), new(new(-284f, 299.99966f), 1f)),
+ new(new(new(-237.9998f, 297f), 0.25f), new(new(-238f, 278f), 1f), new(new(-238f, 322f), 1f), new(new(-260f, 299.99966f), 1f), new(new(-216f, 299.99966f), 1f)),
+ new(new(new(-160.9998f, 297f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-440.9991f, 343f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-363.9993f, 343f), 0.25f), new(new(-364f, 324.0001f), 1f), new(new(-364f, 368f), 1f), new(new(-386f, 345.99966f), 1f), new(new(0f, 0f), 0f)),
+ new(new(new(-300f, 361.0005f), 0.25f), new(new(-300f, 348f), 1f), new(new(-300f, 380f), 1f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-213.9995f, 367.0004f), 0.25f), new(new(-214f, 354f), 1f), new(new(-214f, 386f), 1f), new(new(0f, 0f), 0f), new(new(-198f, 369.99966f), 1f)),
+ new(new(new(-142.9998f, 367f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-363.9993f, 405f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-300f, 432f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-237.9998f, 439f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ]),
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(230f, -420.9988f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(300f, -442f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(370f, -460f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(159f, -365f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(230f, -364.9988f), 0.25f), new(new(230f, -378f), 1f), new(new(0f, 0f), 0f), new(new(214f, -362.00034f), 1f), new(new(246f, -362.00034f), 1f)),
+ new(new(new(300f, -364.999f), 0.25f), new(new(300f, -384f), 1f), new(new(300f, -340f), 1f), new(new(278f, -362.00034f), 1f), new(new(322f, -362.00034f), 1f)),
+ new(new(new(370f, -389f), 0.25f), new(new(370f, -402f), 1f), new(new(0f, 0f), 0f), new(new(354f, -386.00034f), 1f), new(new(386f, -386.00034f), 1f)),
+ new(new(new(443f, -365f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(173f, -303f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(244f, -302.9989f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(228f, -300.00034f), 1f), new(new(260f, -300.00034f), 1f)),
+ new(new(new(300f, -302.999f), 0.25f), new(new(300f, -316f), 1f), new(new(300f, -284f), 1f), new(new(284f, -300.00034f), 1f), new(new(316f, -300.00034f), 1f)),
+ new(new(new(364f, -303f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(348f, -300.00034f), 1f), new(new(380f, -300.00034f), 1f)),
+ new(new(new(435f, -303f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(146f, -214.9994f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(220f, -239f), 0.25f), new(new(0f, 0f), 0f), new(new(220f, -220f), 1f), new(new(204f, -236.00035f), 1f), new(new(236f, -236.00035f), 1f)),
+ new(new(new(276f, -238.9991f), 0.25f), new(new(276f, -252f), 1f), new(new(276f, -220f), 1f), new(new(260f, -236.00035f), 1f), new(new(292f, -236.00035f), 1f)),
+ new(new(new(346f, -238.9996f), 0.25f), new(new(0f, 0f), 0f), new(new(346f, -214f), 1f), new(new(324f, -236.00035f), 1f), new(new(368f, -236.00035f), 1f)),
+ new(new(new(408f, -239f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(220f, -167.9995f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(300f, -166.9995f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(346f, -161.9996f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ])
+ ),
+ ["3.2"] = new(
+ 3,
+ 1,
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-387.9985f, 152.9999f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-300f, 169.9995f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-237.9999f, 171f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-434.9998f, 216.9999f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-363.9998f, 217f), 0.25f), new(new(-364f, 204f), 1f), new(new(-364f, 236f), 1f), new(new(-380f, 219.99965f), 1f), new(new(0f, 0f), 0f)),
+ new(new(new(-300f, 240.9994f), 0.25f), new(new(-300f, 228f), 1f), new(new(-300f, 260f), 1f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-237.9994f, 227f), 0.25f), new(new(-238f, 214.0001f), 1f), new(new(-238f, 246f), 1f), new(new(0f, 0f), 0f), new(new(-222f, 229.99965f), 1f)),
+ new(new(new(-181.9995f, 226.9999f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-435.9997f, 296.9998f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-363.9999f, 272.9998f), 0.25f), new(new(-364f, 260f), 1f), new(new(-364f, 292f), 1f), new(new(-380f, 275.99966f), 1f), new(new(-348f, 275.99966f), 1f)),
+ new(new(new(-299.9999f, 297f), 0.25f), new(new(-300f, 284f), 1f), new(new(-300f, 316f), 1f), new(new(-316f, 299.99966f), 1f), new(new(-284f, 299.99966f), 1f)),
+ new(new(new(-237.9999f, 296.999f), 0.25f), new(new(-238f, 278f), 1f), new(new(-238f, 322f), 1f), new(new(-260f, 299.99966f), 1f), new(new(-216f, 299.99966f), 1f)),
+ new(new(new(-161.0001f, 296.9999f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-440.9998f, 342.9998f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-363.9999f, 342.9998f), 0.25f), new(new(-364f, 324.0001f), 1f), new(new(-364f, 368f), 1f), new(new(-386f, 345.99966f), 1f), new(new(0f, 0f), 0f)),
+ new(new(new(-299.9999f, 361f), 0.25f), new(new(-300f, 348f), 1f), new(new(-300f, 380f), 1f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-214f, 366.9991f), 0.25f), new(new(-214f, 354f), 1f), new(new(-214f, 386f), 1f), new(new(0f, 0f), 0f), new(new(-198f, 369.99966f), 1f)),
+ new(new(new(-143.0001f, 366.9999f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-363.9999f, 404.9998f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-299.9999f, 432f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-238f, 438.9999f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ]),
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(229.9989f, -420.9988f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(300f, -442f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(370f, -459.9995f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(159f, -365f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(230f, -364.9988f), 0.25f), new(new(230f, -378f), 1f), new(new(0f, 0f), 0f), new(new(214f, -362.00034f), 1f), new(new(246f, -362.00034f), 1f)),
+ new(new(new(300f, -364.999f), 0.25f), new(new(300f, -384f), 1f), new(new(300f, -340f), 1f), new(new(278f, -362.00034f), 1f), new(new(322f, -362.00034f), 1f)),
+ new(new(new(369.9995f, -388.9995f), 0.25f), new(new(370f, -402f), 1f), new(new(0f, 0f), 0f), new(new(354f, -386.00034f), 1f), new(new(386f, -386.00034f), 1f)),
+ new(new(new(442.9995f, -365f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(173f, -303f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(243.9996f, -302.9989f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(228f, -300.00034f), 1f), new(new(260f, -300.00034f), 1f)),
+ new(new(new(299.9993f, -302.999f), 0.25f), new(new(300f, -316f), 1f), new(new(300f, -284f), 1f), new(new(284f, -300.00034f), 1f), new(new(316f, -300.00034f), 1f)),
+ new(new(new(363.9995f, -303f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(348f, -300.00034f), 1f), new(new(380f, -300.00034f), 1f)),
+ new(new(new(434.9992f, -303f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(146f, -214.9994f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(219.9991f, -239f), 0.25f), new(new(0f, 0f), 0f), new(new(220f, -220f), 1f), new(new(204f, -236.00035f), 1f), new(new(236f, -236.00035f), 1f)),
+ new(new(new(275.9994f, -238.9991f), 0.25f), new(new(276f, -252f), 1f), new(new(276f, -220f), 1f), new(new(260f, -236.00035f), 1f), new(new(292f, -236.00035f), 1f)),
+ new(new(new(345.9995f, -238.9996f), 0.25f), new(new(0f, 0f), 0f), new(new(346f, -214f), 1f), new(new(324f, -236.00035f), 1f), new(new(368f, -236.00035f), 1f)),
+ new(new(new(407.9997f, -239f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(219.9996f, -167.9999f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(299.9994f, -166.9998f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(345.9996f, -161.9998f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ])
+ ),
+ ["3.3"] = new(
+ 3,
+ 2,
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-363.9031f, 170.0488f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-299.9993f, 168.9998f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-235.9883f, 169.0004f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-427.9748f, 232.9641f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-364f, 233.4559f), 0.25f), new(new(-364f, 217f), 1.8f), new(new(-364f, 255f), 1.8f), new(new(-383f, 235.99344f), 1.8f), new(new(0f, 0f), 0f)),
+ new(new(new(-300f, 232.9428f), 0.25f), new(new(-300f, 217f), 1.8f), new(new(-300f, 255f), 1.8f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-235.9996f, 233.0003f), 0.25f), new(new(-236f, 217.0001f), 1.8f), new(new(-236f, 255f), 1.8f), new(new(0f, 0f), 0f), new(new(-217f, 235.99344f), 1.8f)),
+ new(new(new(-171.9998f, 233f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-428.2621f, 297f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-363.9991f, 296.9561f), 0.25f), new(new(-364f, 281f), 1.8f), new(new(-364f, 319f), 1.8f), new(new(-383f, 299.99344f), 1.8f), new(new(-345f, 299.99344f), 1.8f)),
+ new(new(new(-300f, 297.0007f), 0.25f), new(new(-300f, 281f), 1.8f), new(new(-300f, 319f), 1.8f), new(new(-319f, 299.99344f), 1.8f), new(new(-281f, 299.99344f), 1.8f)),
+ new(new(new(-236f, 296.9999f), 0.25f), new(new(-236f, 281f), 1.8f), new(new(-236f, 319f), 1.8f), new(new(-255f, 299.99344f), 1.8f), new(new(-217f, 299.99344f), 1.8f)),
+ new(new(new(-172.0004f, 297f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-428.1913f, 361.1322f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-364f, 361.5755f), 0.25f), new(new(-364f, 345.0001f), 1.8f), new(new(-364f, 383f), 1.8f), new(new(-383f, 363.99344f), 1.8f), new(new(0f, 0f), 0f)),
+ new(new(new(-300f, 361f), 0.25f), new(new(-300f, 345f), 1.8f), new(new(-300f, 383f), 1.8f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-235.9994f, 360.9999f), 0.25f), new(new(-236f, 345f), 1.8f), new(new(-236f, 383f), 1.8f), new(new(0f, 0f), 0f), new(new(-217f, 363.99344f), 1.8f)),
+ new(new(new(-172.0001f, 360.9999f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-364f, 424.8436f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-300f, 425f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-235.9997f, 424.9999f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ]),
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(236f, -424.9982f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(300f, -424.9984f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(364f, -425f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(172f, -361f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(236f, -360.9982f), 0.25f), new(new(236f, -383f), 1.8f), new(new(0f, 0f), 0f), new(new(217f, -364.00656f), 1.8f), new(new(254.9999f, -364.00656f), 1.8f)),
+ new(new(new(300f, -360.9985f), 0.25f), new(new(300f, -383f), 1.8f), new(new(300f, -345f), 1.8f), new(new(281f, -364.00656f), 1.8f), new(new(319f, -364.00656f), 1.8f)),
+ new(new(new(364f, -361f), 0.25f), new(new(364f, -383f), 1.8f), new(new(0f, 0f), 0f), new(new(345f, -364.00656f), 1.8f), new(new(383f, -364.00656f), 1.8f)),
+ new(new(new(428f, -361f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(172f, -297f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(236f, -296.9983f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(217f, -300.00656f), 1.8f), new(new(255f, -300.00656f), 1.8f)),
+ new(new(new(300f, -296.9987f), 0.25f), new(new(300f, -319f), 1.8f), new(new(300f, -281f), 1.8f), new(new(281f, -300f), 1.8f), new(new(319f, -300f), 1.8f)),
+ new(new(new(364f, -297f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(345f, -300.00656f), 1.8f), new(new(383f, -300.00656f), 1.8f)),
+ new(new(new(428f, -297f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(172f, -232.9992f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(236f, -233.0002f), 0.25f), new(new(0f, 0f), 0f), new(new(236f, -217f), 1.8f), new(new(217f, -236.00656f), 1.8f), new(new(255f, -236.00656f), 1.8f)),
+ new(new(new(300f, -232.9992f), 0.25f), new(new(300f, -255f), 1.8f), new(new(300f, -217f), 1.8f), new(new(281f, -236.00656f), 1.8f), new(new(319f, -236.00656f), 1.8f)),
+ new(new(new(364f, -232.9994f), 0.25f), new(new(0f, 0f), 0f), new(new(364f, -217f), 1.8f), new(new(345f, -236.00656f), 1.8f), new(new(382.9999f, -236.00656f), 1.8f)),
+ new(new(new(428f, -232.9994f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(236f, -168.9994f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(300f, -168.9994f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(364f, -168.9994f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ])
+ ),
+ ["3.4"] = new(
+ 3,
+ 3,
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-363.9031f, 170.0488f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-299.9993f, 168.9998f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-235.9883f, 169.0004f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-427.9748f, 232.9641f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-364f, 233.4559f), 0.25f), new(new(-364f, 217f), 1.8f), new(new(-364f, 255f), 1.8f), new(new(-383f, 235.99344f), 1.8f), new(new(0f, 0f), 0f)),
+ new(new(new(-300f, 232.9428f), 0.25f), new(new(-300f, 217f), 1.8f), new(new(-300f, 255f), 1.8f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-235.9996f, 233.0003f), 0.25f), new(new(-236f, 217.0001f), 1.8f), new(new(-236f, 255f), 1.8f), new(new(0f, 0f), 0f), new(new(-217f, 235.99344f), 1.8f)),
+ new(new(new(-171.9998f, 233f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-428.2621f, 297f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-363.9991f, 296.9561f), 0.25f), new(new(-364f, 281f), 1.8f), new(new(-364f, 319f), 1.8f), new(new(-383f, 299.99344f), 1.8f), new(new(-345f, 299.99344f), 1.8f)),
+ new(new(new(-300f, 297.0007f), 0.25f), new(new(-300f, 281f), 1.8f), new(new(-300f, 319f), 1.8f), new(new(-319f, 299.99344f), 1.8f), new(new(-281f, 299.99344f), 1.8f)),
+ new(new(new(-236f, 296.9999f), 0.25f), new(new(-236f, 281f), 1.8f), new(new(-236f, 319f), 1.8f), new(new(-255f, 299.99344f), 1.8f), new(new(-217f, 299.99344f), 1.8f)),
+ new(new(new(-172.0004f, 297f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-428.1913f, 361.1322f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-364f, 361.5755f), 0.25f), new(new(-364f, 345.0001f), 1.8f), new(new(-364f, 383f), 1.8f), new(new(-383f, 363.99344f), 1.8f), new(new(0f, 0f), 0f)),
+ new(new(new(-300f, 361f), 0.25f), new(new(-300f, 345f), 1.8f), new(new(-300f, 383f), 1.8f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-235.9994f, 360.9999f), 0.25f), new(new(-236f, 345f), 1.8f), new(new(-236f, 383f), 1.8f), new(new(0f, 0f), 0f), new(new(-217f, 363.99344f), 1.8f)),
+ new(new(new(-172.0001f, 360.9999f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-364f, 424.8436f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-300f, 425f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-235.9997f, 424.9999f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ]),
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(236f, -424.9982f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(300f, -424.9984f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(364f, -425f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(172f, -361f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(236f, -360.9982f), 0.25f), new(new(236f, -383f), 1.8f), new(new(0f, 0f), 0f), new(new(217f, -364.00656f), 1.8f), new(new(254.9999f, -364.00656f), 1.8f)),
+ new(new(new(300f, -360.9985f), 0.25f), new(new(300f, -383f), 1.8f), new(new(300f, -345f), 1.8f), new(new(281f, -364.00656f), 1.8f), new(new(319f, -364.00656f), 1.8f)),
+ new(new(new(364f, -361f), 0.25f), new(new(364f, -383f), 1.8f), new(new(0f, 0f), 0f), new(new(345f, -364.00656f), 1.8f), new(new(383f, -364.00656f), 1.8f)),
+ new(new(new(428f, -361f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(172f, -297f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(236f, -296.9983f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(217f, -300.00656f), 1.8f), new(new(255f, -300.00656f), 1.8f)),
+ new(new(new(300f, -296.9987f), 0.25f), new(new(300f, -319f), 1.8f), new(new(300f, -281f), 1.8f), new(new(281f, -300f), 1.8f), new(new(319f, -300f), 1.8f)),
+ new(new(new(364f, -297f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(345f, -300.00656f), 1.8f), new(new(383f, -300.00656f), 1.8f)),
+ new(new(new(428f, -297f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(172f, -232.9992f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(236f, -233.0002f), 0.25f), new(new(0f, 0f), 0f), new(new(236f, -217f), 1.8f), new(new(217f, -236.00656f), 1.8f), new(new(255f, -236.00656f), 1.8f)),
+ new(new(new(300f, -232.9992f), 0.25f), new(new(300f, -255f), 1.8f), new(new(300f, -217f), 1.8f), new(new(281f, -236.00656f), 1.8f), new(new(319f, -236.00656f), 1.8f)),
+ new(new(new(364f, -232.9994f), 0.25f), new(new(0f, 0f), 0f), new(new(364f, -217f), 1.8f), new(new(345f, -236.00656f), 1.8f), new(new(382.9999f, -236.00656f), 1.8f)),
+ new(new(new(428f, -232.9994f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(236f, -168.9994f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(300f, -168.9994f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(364f, -168.9994f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ])
+ ),
+ ["3.5"] = new(
+ 3,
+ 4,
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-374.7566f, 183.0325f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-287.8989f, 178.1563f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-223.1265f, 193.6945f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-402.5998f, 240.809f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-355.0793f, 240.4289f), 0.25f), new(new(-354.99368f, 226.9958f), 2.2f), new(new(-354.9937f, 260.9958f), 2.2f), new(new(-371.9937f, 244.00168f), 2.2f), new(new(0f, 0f), 0f)),
+ new(new(new(-300.4581f, 241.4994f), 0.25f), new(new(-299.99396f, 226.9956f), 2.2f), new(new(-299.994f, 260.9956f), 2.2f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-225.0836f, 262.5056f), 0.25f), new(new(-234.99408f, 238.9954f), 2.2f), new(new(-234.99408f, 272.99542f), 2.2f), new(new(0f, 0f), 0f), new(new(-217.9941f, 256.00128f), 2.2f)),
+ new(new(new(-175.5846f, 252.934f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-420.2265f, 296.8055f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-367.1488f, 296.9664f), 0.25f), new(new(-366.99326f, 282.994f), 2.2f), new(new(-366.9931f, 316.994f), 2.2f), new(new(-383.9933f, 299.99985f), 2.2f), new(new(-349.9933f, 299.99985f), 2.2f)),
+ new(new(new(-299.914f, 305.8483f), 0.25f), new(new(-299.99377f, 278.9905f), 2.2f), new(new(-299.9903f, 320.9902f), 2.2f), new(new(-316.9938f, 299.99615f), 2.2f), new(new(-282.9938f, 301.99615f), 2.2f)),
+ new(new(new(-234.9083f, 310.8708f), 0.25f), new(new(-234.99619f, 296.9932f), 2.2f), new(new(-234.99622f, 330.9932f), 2.2f), new(new(-251.9962f, 313.99905f), 2.2f), new(new(-217.9962f, 313.99905f), 2.2f)),
+ new(new(new(-180.6718f, 311.2285f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-409.0223f, 355.6356f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-345.9205f, 345.0418f), 0.25f), new(new(-354.99078f, 340.9932f), 2.2f), new(new(-354.9908f, 374.9932f), 2.2f), new(new(-371.991f, 357.99905f), 2.2f), new(new(0f, 0f), 0f)),
+ new(new(new(-308.5666f, 347.784f), 0.25f), new(new(-299.99106f, 340.9933f), 2.2f), new(new(-299.9911f, 374.9933f), 2.2f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-235.6806f, 365.491f), 0.25f), new(new(-234.99438f, 352.9926f), 2.2f), new(new(-234.99442f, 386.9926f), 2.2f), new(new(0f, 0f), 0f), new(new(-217.9944f, 369.99847f), 2.2f)),
+ new(new(new(-177.7759f, 366.8867f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-366.6518f, 411.5221f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-320.0814f, 414.084f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-223.3746f, 423.8857f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ]),
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(241.9075f, -409.0655f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(292.1822f, -420.3809f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(389.8699f, -406.534f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(203.6679f, -348.4681f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(263.6731f, -339.1262f), 0.25f), new(new(253.99602f, -362.9945f), 2.2f), new(new(0f, 0f), 0f), new(new(236.996f, -345.98865f), 2.2f), new(new(270.996f, -345.98865f), 2.2f)),
+ new(new(new(319.6569f, -367.4182f), 0.25f), new(new(311.99484f, -374.9948f), 2.2f), new(new(311.9948f, -340.9948f), 2.2f), new(new(294.9948f, -357.98895f), 2.2f), new(new(328.9948f, -357.98895f), 2.2f)),
+ new(new(new(367.6212f, -349.1082f), 0.25f), new(new(367.99414f, -362.9946f), 2.2f), new(new(0f, 0f), 0f), new(new(350.9941f, -345.98874f), 2.2f), new(new(384.9941f, -345.98874f), 2.2f)),
+ new(new(new(425.4471f, -362.718f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(182.6972f, -303.7495f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(241.7273f, -290.1868f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(224.9961f, -287.98975f), 2.2f), new(new(258.9961f, -287.98975f), 2.2f)),
+ new(new(new(300.0593f, -302.7772f), 0.25f), new(new(299.99493f, -316.9955f), 2.2f), new(new(299.9949f, -282.9955f), 2.2f), new(new(282.9949f, -299.98965f), 2.2f), new(new(316.9949f, -299.98965f), 2.2f)),
+ new(new(new(367.7514f, -303.0645f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(346.9943f, -299.98953f), 2.2f), new(new(388.994f, -299.98953f), 2.2f)),
+ new(new(new(428.6863f, -316.8421f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(183.6819f, -233.2985f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(252.214f, -252.4091f), 0.25f), new(new(0f, 0f), 0f), new(new(241.99588f, -224.9963f), 2.2f), new(new(224.9959f, -241.99043f), 2.2f), new(new(258.99588f, -241.99043f), 2.2f)),
+ new(new(new(299.6617f, -244.7433f), 0.25f), new(new(299.99512f, -258.9962f), 2.2f), new(new(299.9951f, -224.9962f), 2.2f), new(new(282.9951f, -241.99033f), 2.2f), new(new(316.9951f, -241.99033f), 2.2f)),
+ new(new(new(375.3223f, -264.5527f), 0.25f), new(new(0f, 0f), 0f), new(new(365.9947f, -236.9961f), 2.2f), new(new(348.9947f, -253.99022f), 2.2f), new(new(382.9947f, -253.99022f), 2.2f)),
+ new(new(new(418.4793f, -256.98212f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(242.1803f, -190.2645f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(320.0034f, -184.6789f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(379.041f, -196.5027f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ])
+ ),
+ ["3.6"] = new(
+ 3,
+ 5,
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-374.7566f, 183.0325f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-287.8989f, 178.1563f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-223.1265f, 193.6945f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-402.5998f, 240.809f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-355.0793f, 240.4289f), 0.25f), new(new(-354.99368f, 226.9958f), 2.2f), new(new(-354.9937f, 260.9958f), 2.2f), new(new(-371.9937f, 244.00168f), 2.2f), new(new(0f, 0f), 0f)),
+ new(new(new(-300.4581f, 241.4994f), 0.25f), new(new(-299.99396f, 226.9956f), 2.2f), new(new(-299.994f, 260.9956f), 2.2f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-225.0836f, 262.5056f), 0.25f), new(new(-234.99408f, 238.9954f), 2.2f), new(new(-234.99408f, 272.99542f), 2.2f), new(new(0f, 0f), 0f), new(new(-217.9941f, 256.00128f), 2.2f)),
+ new(new(new(-175.5846f, 252.934f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-420.2265f, 296.8055f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-367.1488f, 296.9664f), 0.25f), new(new(-366.99326f, 282.994f), 2.2f), new(new(-366.9931f, 316.994f), 2.2f), new(new(-383.9933f, 299.99985f), 2.2f), new(new(-349.9933f, 299.99985f), 2.2f)),
+ new(new(new(-299.914f, 305.8483f), 0.25f), new(new(-299.99377f, 278.9905f), 2.2f), new(new(-299.9903f, 320.9902f), 2.2f), new(new(-316.9938f, 299.99615f), 2.2f), new(new(-282.9938f, 301.99615f), 2.2f)),
+ new(new(new(-234.9083f, 310.8708f), 0.25f), new(new(-234.99619f, 296.9932f), 2.2f), new(new(-234.99622f, 330.9932f), 2.2f), new(new(-251.9962f, 313.99905f), 2.2f), new(new(-217.9962f, 313.99905f), 2.2f)),
+ new(new(new(-180.6718f, 311.2285f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-409.0223f, 355.6356f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-345.9205f, 345.0418f), 0.25f), new(new(-354.99078f, 340.9932f), 2.2f), new(new(-354.9908f, 374.9932f), 2.2f), new(new(-371.991f, 357.99905f), 2.2f), new(new(0f, 0f), 0f)),
+ new(new(new(-308.5666f, 347.784f), 0.25f), new(new(-299.99106f, 340.9933f), 2.2f), new(new(-299.9911f, 374.9933f), 2.2f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-235.6806f, 365.491f), 0.25f), new(new(-234.99438f, 352.9926f), 2.2f), new(new(-234.99442f, 386.9926f), 2.2f), new(new(0f, 0f), 0f), new(new(-217.9944f, 369.99847f), 2.2f)),
+ new(new(new(-177.7759f, 366.8867f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-366.6518f, 411.5221f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-320.0814f, 414.084f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-223.3746f, 423.8857f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ]),
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(241.9075f, -409.0655f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(292.1822f, -420.3809f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(389.8699f, -406.534f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(203.6679f, -348.4681f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(263.6731f, -339.1262f), 0.25f), new(new(253.99602f, -362.9945f), 2.2f), new(new(0f, 0f), 0f), new(new(236.996f, -345.98865f), 2.2f), new(new(270.996f, -345.98865f), 2.2f)),
+ new(new(new(319.6569f, -367.4182f), 0.25f), new(new(311.99484f, -374.9948f), 2.2f), new(new(311.9948f, -340.9948f), 2.2f), new(new(294.9948f, -357.98895f), 2.2f), new(new(328.9948f, -357.98895f), 2.2f)),
+ new(new(new(367.6212f, -349.1082f), 0.25f), new(new(367.99414f, -362.9946f), 2.2f), new(new(0f, 0f), 0f), new(new(350.9941f, -345.98874f), 2.2f), new(new(384.9941f, -345.98874f), 2.2f)),
+ new(new(new(425.4471f, -362.718f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(182.6972f, -303.7495f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(241.7273f, -290.1868f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(224.9961f, -287.98975f), 2.2f), new(new(258.9961f, -287.98975f), 2.2f)),
+ new(new(new(300.0593f, -302.7772f), 0.25f), new(new(299.99493f, -316.9955f), 2.2f), new(new(299.9949f, -282.9955f), 2.2f), new(new(282.9949f, -299.98965f), 2.2f), new(new(316.9949f, -299.98965f), 2.2f)),
+ new(new(new(367.7514f, -303.0645f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(346.9943f, -299.98953f), 2.2f), new(new(388.994f, -299.98953f), 2.2f)),
+ new(new(new(428.6863f, -316.8421f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(183.6819f, -233.2985f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(252.214f, -252.4091f), 0.25f), new(new(0f, 0f), 0f), new(new(241.99588f, -224.9963f), 2.2f), new(new(224.9959f, -241.99043f), 2.2f), new(new(258.99588f, -241.99043f), 2.2f)),
+ new(new(new(299.6617f, -244.7433f), 0.25f), new(new(299.99512f, -258.9962f), 2.2f), new(new(299.9951f, -224.9962f), 2.2f), new(new(282.9951f, -241.99033f), 2.2f), new(new(316.9951f, -241.99033f), 2.2f)),
+ new(new(new(375.3223f, -264.5527f), 0.25f), new(new(0f, 0f), 0f), new(new(365.9947f, -236.9961f), 2.2f), new(new(348.9947f, -253.99022f), 2.2f), new(new(382.9947f, -253.99022f), 2.2f)),
+ new(new(new(418.4793f, -256.98212f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(242.1803f, -190.2645f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(320.0034f, -184.6789f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(379.041f, -196.5027f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ])
+ ),
+ ["3.7"] = new(
+ 3,
+ 6,
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-374.7566f, 183.0325f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-287.8989f, 178.1563f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-223.1265f, 193.6945f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-402.5998f, 240.809f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-355.0793f, 240.4289f), 0.25f), new(new(-354.99368f, 226.9958f), 2.2f), new(new(-354.9937f, 260.9958f), 2.2f), new(new(-371.9937f, 244.00168f), 2.2f), new(new(0f, 0f), 0f)),
+ new(new(new(-300.4581f, 241.4994f), 0.25f), new(new(-299.99396f, 226.9956f), 2.2f), new(new(-299.994f, 260.9956f), 2.2f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-225.0836f, 262.5056f), 0.25f), new(new(-234.99408f, 238.9954f), 2.2f), new(new(-234.99408f, 272.99542f), 2.2f), new(new(0f, 0f), 0f), new(new(-217.9941f, 256.00128f), 2.2f)),
+ new(new(new(-175.5846f, 252.934f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-420.2265f, 296.8055f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-367.1488f, 296.9664f), 0.25f), new(new(-366.99326f, 282.994f), 2.2f), new(new(-366.9931f, 316.994f), 2.2f), new(new(-383.9933f, 299.99985f), 2.2f), new(new(-349.9933f, 299.99985f), 2.2f)),
+ new(new(new(-299.914f, 305.8483f), 0.25f), new(new(-299.99377f, 278.9905f), 2.2f), new(new(-299.9903f, 320.9902f), 2.2f), new(new(-316.9938f, 299.99615f), 2.2f), new(new(-282.9938f, 301.99615f), 2.2f)),
+ new(new(new(-234.9083f, 310.8708f), 0.25f), new(new(-234.99619f, 296.9932f), 2.2f), new(new(-234.99622f, 330.9932f), 2.2f), new(new(-251.9962f, 313.99905f), 2.2f), new(new(-217.9962f, 313.99905f), 2.2f)),
+ new(new(new(-180.6718f, 311.2285f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-409.0223f, 355.6356f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-345.9205f, 345.0418f), 0.25f), new(new(-354.99078f, 340.9932f), 2.2f), new(new(-354.9908f, 374.9932f), 2.2f), new(new(-371.991f, 357.99905f), 2.2f), new(new(0f, 0f), 0f)),
+ new(new(new(-308.5666f, 355.7528f), 0.25f), new(new(-299.99106f, 340.9933f), 2.2f), new(new(-299.9911f, 374.9933f), 2.2f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-235.6806f, 365.491f), 0.25f), new(new(-234.99438f, 352.9926f), 2.2f), new(new(-234.99442f, 386.9926f), 2.2f), new(new(0f, 0f), 0f), new(new(-217.9944f, 369.99847f), 2.2f)),
+ new(new(new(-177.7759f, 366.8867f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-366.6518f, 411.5221f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-320.0814f, 414.084f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-223.3746f, 423.8857f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ]),
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(241.9075f, -409.0655f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(292.1822f, -420.3809f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(389.8699f, -406.534f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(203.6679f, -348.4681f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(262.4874f, -339.986f), 0.25f), new(new(253.99602f, -362.9945f), 2.2f), new(new(0f, 0f), 0f), new(new(236.996f, -345.98865f), 2.2f), new(new(270.996f, -345.98865f), 2.2f)),
+ new(new(new(319.6569f, -367.4182f), 0.25f), new(new(311.99484f, -374.9948f), 2.2f), new(new(311.9948f, -340.9948f), 2.2f), new(new(294.9948f, -357.98895f), 2.2f), new(new(328.9948f, -357.98895f), 2.2f)),
+ new(new(new(367.6212f, -349.1082f), 0.25f), new(new(367.99414f, -362.9946f), 2.2f), new(new(0f, 0f), 0f), new(new(350.9941f, -345.98874f), 2.2f), new(new(384.9941f, -345.98874f), 2.2f)),
+ new(new(new(425.4471f, -362.7187f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(182.6972f, -303.7495f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(241.7273f, -290.1868f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(224.9961f, -287.98975f), 2.2f), new(new(258.9961f, -287.98975f), 2.2f)),
+ new(new(new(300.0593f, -302.7772f), 0.25f), new(new(299.99493f, -316.9955f), 2.2f), new(new(299.9949f, -282.9955f), 2.2f), new(new(282.9949f, -299.98965f), 2.2f), new(new(316.9949f, -299.98965f), 2.2f)),
+ new(new(new(367.7514f, -303.0653f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(346.9943f, -299.98953f), 2.2f), new(new(388.994f, -299.98953f), 2.2f)),
+ new(new(new(428.6863f, -316.8428f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(183.6813f, -233.2991f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(252.214f, -252.4102f), 0.25f), new(new(0f, 0f), 0f), new(new(241.99588f, -224.9963f), 2.2f), new(new(224.9959f, -241.99043f), 2.2f), new(new(258.99588f, -241.99043f), 2.2f)),
+ new(new(new(299.6617f, -244.7438f), 0.25f), new(new(299.99512f, -258.9962f), 2.2f), new(new(299.9951f, -224.9962f), 2.2f), new(new(282.9951f, -241.99033f), 2.2f), new(new(316.9951f, -241.99033f), 2.2f)),
+ new(new(new(375.3223f, -264.5527f), 0.25f), new(new(0f, 0f), 0f), new(new(365.9947f, -236.9961f), 2.2f), new(new(348.9947f, -253.99022f), 2.2f), new(new(382.9947f, -253.99022f), 2.2f)),
+ new(new(new(418.4793f, -256.98242f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(242.1803f, -190.2656f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(320.0034f, -184.6794f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(379.041f, -196.5031f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ])
+ ),
+ ["3.8"] = new(
+ 3,
+ 7,
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-374.7566f, 183.0325f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-287.8989f, 178.1563f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-223.1265f, 193.6945f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-402.5998f, 240.809f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-355.0793f, 240.4289f), 0.25f), new(new(-354.99368f, 226.9958f), 2.2f), new(new(-354.9937f, 260.9958f), 2.2f), new(new(-371.9937f, 244.00168f), 2.2f), new(new(0f, 0f), 0f)),
+ new(new(new(-300.4581f, 241.4994f), 0.25f), new(new(-299.99396f, 226.9956f), 2.2f), new(new(-299.994f, 260.9956f), 2.2f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-225.0836f, 262.5056f), 0.25f), new(new(-234.99408f, 238.9954f), 2.2f), new(new(-234.99408f, 272.99542f), 2.2f), new(new(0f, 0f), 0f), new(new(-217.9941f, 256.00128f), 2.2f)),
+ new(new(new(-175.5846f, 252.934f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-420.2265f, 296.8055f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-367.1488f, 296.9664f), 0.25f), new(new(-366.99326f, 282.994f), 2.2f), new(new(-366.9931f, 316.994f), 2.2f), new(new(-383.9933f, 299.99985f), 2.2f), new(new(-349.9933f, 299.99985f), 2.2f)),
+ new(new(new(-299.914f, 305.8483f), 0.25f), new(new(-299.99377f, 278.9905f), 2.2f), new(new(-299.9903f, 320.9902f), 2.2f), new(new(-316.9938f, 299.99615f), 2.2f), new(new(-282.9938f, 301.99615f), 2.2f)),
+ new(new(new(-234.9083f, 310.8708f), 0.25f), new(new(-234.99619f, 296.9932f), 2.2f), new(new(-234.99622f, 330.9932f), 2.2f), new(new(-251.9962f, 313.99905f), 2.2f), new(new(-217.9962f, 313.99905f), 2.2f)),
+ new(new(new(-180.6718f, 311.2285f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-409.0223f, 355.6356f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-345.9205f, 345.0418f), 0.25f), new(new(-354.99078f, 340.9932f), 2.2f), new(new(-354.9908f, 374.9932f), 2.2f), new(new(-371.991f, 357.99905f), 2.2f), new(new(0f, 0f), 0f)),
+ new(new(new(-308.5666f, 355.7528f), 0.25f), new(new(-299.99106f, 340.9933f), 2.2f), new(new(-299.9911f, 374.9933f), 2.2f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-235.6806f, 365.491f), 0.25f), new(new(-234.99438f, 352.9926f), 2.2f), new(new(-234.99442f, 386.9926f), 2.2f), new(new(0f, 0f), 0f), new(new(-217.9944f, 369.99847f), 2.2f)),
+ new(new(new(-177.7759f, 366.8867f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-366.6518f, 411.5221f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-320.0814f, 414.084f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-223.3746f, 423.8857f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ]),
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(241.9075f, -409.0655f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(292.1822f, -420.3809f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(389.8699f, -406.534f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(203.6679f, -348.4681f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(262.4874f, -339.986f), 0.25f), new(new(253.99602f, -362.9945f), 2.2f), new(new(0f, 0f), 0f), new(new(236.996f, -345.98865f), 2.2f), new(new(270.996f, -345.98865f), 2.2f)),
+ new(new(new(319.6569f, -367.4182f), 0.25f), new(new(311.99484f, -374.9948f), 2.2f), new(new(311.9948f, -340.9948f), 2.2f), new(new(294.9948f, -357.98895f), 2.2f), new(new(328.9948f, -357.98895f), 2.2f)),
+ new(new(new(367.6212f, -349.1082f), 0.25f), new(new(367.99414f, -362.9946f), 2.2f), new(new(0f, 0f), 0f), new(new(350.9941f, -345.98874f), 2.2f), new(new(384.9941f, -345.98874f), 2.2f)),
+ new(new(new(425.4471f, -362.7187f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(182.6972f, -303.7495f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(241.7273f, -290.1868f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(224.9961f, -287.98975f), 2.2f), new(new(258.9961f, -287.98975f), 2.2f)),
+ new(new(new(300.0593f, -302.7772f), 0.25f), new(new(299.99493f, -316.9955f), 2.2f), new(new(299.9949f, -282.9955f), 2.2f), new(new(282.9949f, -299.98965f), 2.2f), new(new(316.9949f, -299.98965f), 2.2f)),
+ new(new(new(367.7514f, -303.0653f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(346.9943f, -299.98953f), 2.2f), new(new(388.994f, -299.98953f), 2.2f)),
+ new(new(new(428.6863f, -316.8428f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(183.6813f, -233.2991f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(252.214f, -252.4102f), 0.25f), new(new(0f, 0f), 0f), new(new(241.99588f, -224.9963f), 2.2f), new(new(224.9959f, -241.99043f), 2.2f), new(new(258.99588f, -241.99043f), 2.2f)),
+ new(new(new(299.6617f, -244.7438f), 0.25f), new(new(299.99512f, -258.9962f), 2.2f), new(new(299.9951f, -224.9962f), 2.2f), new(new(282.9951f, -241.99033f), 2.2f), new(new(316.9951f, -241.99033f), 2.2f)),
+ new(new(new(375.3223f, -264.5527f), 0.25f), new(new(0f, 0f), 0f), new(new(365.9947f, -236.9961f), 2.2f), new(new(348.9947f, -253.99022f), 2.2f), new(new(382.9947f, -253.99022f), 2.2f)),
+ new(new(new(418.4793f, -256.98242f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(242.1803f, -190.2656f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(320.0034f, -184.6794f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(379.041f, -196.5031f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ])
+ ),
+ ["3.9"] = new(
+ 3,
+ 8,
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-377.4217f, 131.9129f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-297.3352f, 132.3478f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-217.3902f, 131.9444f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-464.5493f, 214.0658f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-380.4141f, 218.7522f), 0.25f), new(new(-380f, 199.63799f), 1f), new(new(-380f, 240.36201f), 1f), new(new(-400.362f, 219.99297f), 1f), new(new(0f, 0f), 0f)),
+ new(new(new(-300f, 217.2716f), 0.25f), new(new(-300f, 199.63799f), 1f), new(new(-300f, 240.36201f), 1f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-220.7222f, 218.8539f), 0.25f), new(new(-220f, 199.63809f), 1f), new(new(-220f, 240.36201f), 1f), new(new(0f, 0f), 0f), new(new(-199.638f, 219.99297f), 1f)),
+ new(new(new(-135.7887f, 219.8152f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-464.5605f, 294.4485f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-380f, 297f), 0.25f), new(new(-380f, 279.638f), 1f), new(new(-380f, 320.362f), 1f), new(new(-400.362f, 299.99298f), 1f), new(new(-359.638f, 299.99298f), 1f)),
+ new(new(new(-300f, 297f), 0.25f), new(new(-300f, 279.638f), 1f), new(new(-300f, 320.362f), 1f), new(new(-320.362f, 299.99298f), 1f), new(new(-279.638f, 299.99298f), 1f)),
+ new(new(new(-220.0636f, 297f), 0.25f), new(new(-220f, 279.638f), 1f), new(new(-220f, 320.362f), 1f), new(new(-240.362f, 299.99298f), 1f), new(new(-199.638f, 299.99298f), 1f)),
+ new(new(new(-135.2843f, 299.6435f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-464.6832f, 374.2941f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-379.9251f, 377.1001f), 0.25f), new(new(-380f, 359.6381f), 1f), new(new(-380f, 400.362f), 1f), new(new(-400.362f, 379.99298f), 1f), new(new(0f, 0f), 0f)),
+ new(new(new(-299.8572f, 376.6748f), 0.25f), new(new(-300f, 359.638f), 1f), new(new(-300f, 400.362f), 1f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-218.6692f, 374.0952f), 0.25f), new(new(-220f, 359.638f), 1f), new(new(-220f, 400.362f), 1f), new(new(0f, 0f), 0f), new(new(-199.638f, 379.99298f), 1f)),
+ new(new(new(-135.5744f, 379.7612f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-382.7403f, 462.8701f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-302.7381f, 461.5305f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-222.6702f, 462.3714f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ]),
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(222.6735f, -467.4394f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(302.731f, -467.8465f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(382.6952f, -467.4534f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(135.6577f, -385.729f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(219.6897f, -382.7401f), 0.25f), new(new(220f, -400.362f), 1f), new(new(0f, 0f), 0f), new(new(199.638f, -380.00702f), 1f), new(new(240.36191f, -380f), 1f)),
+ new(new(new(298.7249f, -385.0645f), 0.25f), new(new(300f, -400.362f), 1f), new(new(300f, -359.638f), 1f), new(new(279.638f, -380.00702f), 1f), new(new(320.362f, -380.00702f), 1f)),
+ new(new(new(380.159f, -383.0681f), 0.25f), new(new(380f, -400.362f), 1f), new(new(0f, 0f), 0f), new(new(359.638f, -380.00702f), 1f), new(new(400.362f, -380f), 1f)),
+ new(new(new(464.779f, -380.3957f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(135.4983f, -305.7232f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(220.1101f, -303.047f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(199.638f, -300f), 1f), new(new(240.362f, -300.00702f), 1f)),
+ new(new(new(300f, -303f), 0.25f), new(new(300f, -320.362f), 1f), new(new(300f, -279.638f), 1f), new(new(279.638f, -300f), 1f), new(new(320.362f, -300f), 1f)),
+ new(new(new(379.9307f, -303f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(359.638f, -300f), 1f), new(new(400.362f, -300f), 1f)),
+ new(new(new(464.7761f, -300.4514f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(135.4372f, -225.5491f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(219.282f, -224.4913f), 0.25f), new(new(0f, 0f), 0f), new(new(220f, -199.63799f), 1f), new(new(199.638f, -220f), 1f), new(new(240.362f, -220.00703f), 1f)),
+ new(new(new(300f, -222.9034f), 0.25f), new(new(300f, -240.36201f), 1f), new(new(300f, -199.63799f), 1f), new(new(279.638f, -220f), 1f), new(new(320.362f, -220f), 1f)),
+ new(new(new(380.0489f, -222.9002f), 0.25f), new(new(0f, 0f), 0f), new(new(380f, -199.63799f), 1f), new(new(359.638f, -220f), 1f), new(new(400.3619f, -220f), 1f)),
+ new(new(new(464.9267f, -220.3926f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(217.3246f, -138.528f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(297.381f, -138.3245f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(377.3699f, -138.6309f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ])
+ ),
+ ["3.10"] = new(
+ 3,
+ 9,
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-377.4217f, 131.9129f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-297.3352f, 132.3478f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-217.3902f, 131.9444f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-464.5493f, 214.0658f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-380.4141f, 218.7522f), 0.25f), new(new(-380f, 199.63799f), 1f), new(new(-380f, 240.36201f), 1f), new(new(-400.362f, 219.99297f), 1f), new(new(0f, 0f), 0f)),
+ new(new(new(-300f, 217.2716f), 0.25f), new(new(-300f, 199.63799f), 1f), new(new(-300f, 240.36201f), 1f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-220.7222f, 218.8539f), 0.25f), new(new(-220f, 199.63809f), 1f), new(new(-220f, 240.36201f), 1f), new(new(0f, 0f), 0f), new(new(-199.638f, 219.99297f), 1f)),
+ new(new(new(-135.7887f, 219.8152f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-464.5605f, 294.4485f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-380f, 297f), 0.25f), new(new(-380f, 279.638f), 1f), new(new(-380f, 320.362f), 1f), new(new(-400.362f, 299.99298f), 1f), new(new(-359.638f, 299.99298f), 1f)),
+ new(new(new(-300f, 297f), 0.25f), new(new(-300f, 279.638f), 1f), new(new(-300f, 320.362f), 1f), new(new(-320.362f, 299.99298f), 1f), new(new(-279.638f, 299.99298f), 1f)),
+ new(new(new(-220.0636f, 297f), 0.25f), new(new(-220f, 279.638f), 1f), new(new(-220f, 320.362f), 1f), new(new(-240.362f, 299.99298f), 1f), new(new(-199.638f, 299.99298f), 1f)),
+ new(new(new(-135.2843f, 299.6435f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-464.6832f, 374.2941f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-379.9251f, 377.1001f), 0.25f), new(new(-380f, 359.6381f), 1f), new(new(-380f, 400.362f), 1f), new(new(-400.362f, 379.99298f), 1f), new(new(0f, 0f), 0f)),
+ new(new(new(-299.8572f, 376.6748f), 0.25f), new(new(-300f, 359.638f), 1f), new(new(-300f, 400.362f), 1f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-218.6692f, 374.0952f), 0.25f), new(new(-220f, 359.638f), 1f), new(new(-220f, 400.362f), 1f), new(new(0f, 0f), 0f), new(new(-199.638f, 379.99298f), 1f)),
+ new(new(new(-135.5744f, 379.7612f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-382.7403f, 462.8701f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-302.7381f, 461.5305f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(-222.6702f, 462.3714f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ]),
+ new Tileset(
+ [
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(222.6735f, -467.4394f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(302.731f, -467.8465f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(382.6952f, -467.4534f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(135.6577f, -385.729f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(219.6897f, -382.7401f), 0.25f), new(new(220f, -400.362f), 1f), new(new(0f, 0f), 0f), new(new(199.638f, -380.00702f), 1f), new(new(240.36191f, -380f), 1f)),
+ new(new(new(298.7249f, -385.0645f), 0.25f), new(new(300f, -400.362f), 1f), new(new(300f, -359.638f), 1f), new(new(279.638f, -380.00702f), 1f), new(new(320.362f, -380.00702f), 1f)),
+ new(new(new(380.159f, -383.0681f), 0.25f), new(new(380f, -400.362f), 1f), new(new(0f, 0f), 0f), new(new(359.638f, -380.00702f), 1f), new(new(400.362f, -380f), 1f)),
+ new(new(new(464.779f, -380.3957f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(135.4983f, -305.7232f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(220.1101f, -303.047f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(199.638f, -300f), 1f), new(new(240.362f, -300.00702f), 1f)),
+ new(new(new(300f, -303f), 0.25f), new(new(300f, -320.362f), 1f), new(new(300f, -279.638f), 1f), new(new(279.638f, -300f), 1f), new(new(320.362f, -300f), 1f)),
+ new(new(new(379.9307f, -303f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(359.638f, -300f), 1f), new(new(400.362f, -300f), 1f)),
+ new(new(new(464.7761f, -300.4514f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(135.4372f, -225.5491f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(219.282f, -224.4913f), 0.25f), new(new(0f, 0f), 0f), new(new(220f, -199.63799f), 1f), new(new(199.638f, -220f), 1f), new(new(240.362f, -220.00703f), 1f)),
+ new(new(new(300f, -222.9034f), 0.25f), new(new(300f, -240.36201f), 1f), new(new(300f, -199.63799f), 1f), new(new(279.638f, -220f), 1f), new(new(320.362f, -220f), 1f)),
+ new(new(new(380.0489f, -222.9002f), 0.25f), new(new(0f, 0f), 0f), new(new(380f, -199.63799f), 1f), new(new(359.638f, -220f), 1f), new(new(400.3619f, -220f), 1f)),
+ new(new(new(464.9267f, -220.3926f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(217.3246f, -138.528f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(297.381f, -138.3245f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(377.3699f, -138.6309f), 0.25f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ new(new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f), new(new(0f, 0f), 0f)),
+ ])
+ ),
+ };
+}
diff --git a/BossMod/Modules/Global/DeepDungeon/TrapData.cs b/BossMod/Modules/Global/DeepDungeon/TrapData.cs
index c731cd142f..dc3e541cca 100644
--- a/BossMod/Modules/Global/DeepDungeon/TrapData.cs
+++ b/BossMod/Modules/Global/DeepDungeon/TrapData.cs
@@ -1,1321 +1,2933 @@
namespace BossMod.Global.DeepDungeon;
-public static class GeneratedTrapData // TODO: get trap data for missing floors
+public static class GeneratedTrapData // taken from PalacePal plugin and converted to dictionary for optimal performance
{
public static readonly Dictionary Traps = new()
{
{ 1099, [
-new(157.77351f, -211.3055f), new(281.509f, -229.9349f), new(374.7175f, -380.50882f), new(284.522f, -231.8759f), new(-428.3871f, 302.7599f),
-new(-155.1551f, 374.7788f), new(309.9101f, -355.9902f), new(-359.27188f, 345.7818f), new(-303.3797f, 304.8926f), new(-155.4071f, 365.3948f),
-new(370.84888f, -440.1121f), new(-356.5669f, 351.5208f), new(194.84131f, -296.4344f), new(191.48131f, -296.4184f), new(431.53f, -358.525f),
-new(298.0221f, -352.39618f), new(306.5041f, -354.7682f), new(-299.17572f, 303.5916f), new(-295.8491f, 420.7614f), new(-356.2836f, 226.1767f),
-new(-238.3208f, 174.65309f), new(231.2881f, -415.8667f), new(365.3891f, -299.79602f), new(-420.2139f, 349.8965f), new(177.2267f, -359.9328f),
-new(-365.24188f, 352.4408f), new(-364.9188f, 279.99982f), new(345.7826f, -176.65091f), new(247.60359f, -300.0177f), new(-301.0084f, 249.7386f),
-new(228.9617f, -358.80432f), new(-359.3136f, 219.75171f), new(-301.8667f, 305.26062f), new(-418.18292f, 224.4895f), new(369.5831f, -293.77002f),
-new(-385.4296f, 158.4933f), new(-235.52109f, 436.40112f), new(306.005f, -170.23021f), new(-302.4594f, 249.5536f), new(-297.3281f, 416.5194f),
-new(-178.8334f, 231.56401f), new(187.0473f, -298.2464f), new(-362.5968f, 272.0718f), new(-361.6006f, 224.4057f), new(-365.9976f, 227.2067f),
-new(219.2797f, -180.92279f), new(289.16208f, -370.6872f), new(284.759f, -240.0009f), new(344.7466f, -177.33891f), new(-211.0745f, 374.1915f),
-new(-234.99661f, 305.9155f), new(-421.9599f, 347.74753f), new(349.4476f, -173.4649f), new(-390.18057f, 163.7923f), new(232.2157f, -362.4223f),
-new(303.44128f, -300.12518f), new(369.9329f, -436.9941f), new(-295.0741f, 363.5011f), new(-233.71469f, 228.9495f), new(-367.368f, 412.5515f),
-new(299.47803f, -171.3072f), new(305.2153f, -295.8982f), new(-218.7415f, 366.78552f), new(-301.0781f, 419.9354f), new(225.21071f, -365.1333f),
-new(282.815f, -233.5609f), new(405.1207f, -235.4369f), new(-425.6601f, 300.99487f), new(-387.4496f, 162.1363f), new(-295.8247f, 299.4706f),
-new(-233.6931f, 432.7431f), new(298.82428f, -295.1322f), new(371.3635f, -396.0148f), new(282.728f, -236.5599f), new(175.14769f, -361.9538f),
-new(-368.2226f, 229.7807f), new(-358.0448f, 280.56482f), new(-179.09839f, 304.5835f), new(274.197f, -228.1379f), new(247.71559f, -297.7597f),
-new(413.44928f, -295.7845f), new(-214.91249f, 376.60852f), new(300.8777f, -422.89938f), new(-295.6759f, 193.15349f), new(220.65001f, -233.2801f),
-new(306.6521f, -358.21118f), new(-242.80461f, 308.4305f), new(-301.9799f, 193.7945f), new(-297.5257f, 300.4176f), new(366.1011f, -297.604f),
-new(228.30571f, -360.0443f), new(-162.1681f, 375.4958f), new(284.267f, -229.9759f), new(-294.3009f, 186.9005f), new(406.2107f, -234.7829f),
-new(-420.43692f, 341.6205f), new(-231.34709f, 437.7181f), new(-363.049f, 410.93152f), new(232.3177f, -360.82132f), new(419.80728f, -294.73248f),
-new(-176.35039f, 300.50848f), new(-238.86809f, 438.5151f), new(-366.34778f, 279.8008f), new(-236.9467f, 232.33049f), new(-412.3569f, 225.4125f),
-new(-239.1837f, 234.1465f), new(-372.77588f, 351.1068f), new(188.7433f, -296.0794f), new(180.1077f, -357.8668f), new(218.863f, -233.03311f),
-new(-297.6429f, 188.97249f), new(415.59927f, -298.4495f), new(304.51028f, -304.1392f), new(-362.7938f, 275.8558f), new(176.2757f, -361.0598f),
-new(235.1261f, -412.6337f), new(-237.4608f, 170.8221f), new(-175.9664f, 234.362f), new(347.7606f, -176.06891f), new(-182.4984f, 234.304f),
-new(-361.3589f, 349.9808f), new(161.49951f, -208.2235f), new(-392.7956f, 162.5703f), new(-295.5577f, 304.59262f), new(343.8786f, -174.38591f),
-new(303.6963f, -298.4812f), new(249.6166f, -295.7377f), new(220.8427f, -181.6828f), new(-230.61261f, 304.1095f), new(-300.2021f, 417.6784f),
-new(221.213f, -234.77211f), new(433.482f, -360.862f), new(344.6373f, -227.55179f), new(-298.6534f, 247.02661f), new(-239.4138f, 177.5061f),
-new(377.7785f, -379.90582f), new(-157.1351f, 372.3418f), new(174.23369f, -358.8438f), new(-426.66208f, 303.48688f), new(356.7053f, -228.08679f),
-new(-187.2744f, 225.13f), new(-293.8201f, 368.4221f), new(156.6725f, -212.2015f), new(360.6281f, -293.56f), new(246.2166f, -295.4497f),
-new(-179.44339f, 229.942f), new(-365.984f, 412.8295f), new(-422.7761f, 302.0109f), new(-231.9346f, 299.99252f), new(-157.34311f, 370.1268f),
-new(414.44028f, -299.1555f), new(305.26028f, -297.1862f), new(231.1597f, -359.05432f), new(304.2587f, -419.8764f), new(224.7217f, -178.2728f),
-new(-177.1554f, 302.4285f), new(217.34201f, -235.0751f), new(368.3205f, -378.93582f), new(375.8069f, -436.0251f), new(-229.3966f, 294.90652f),
-new(-228.24461f, 307.81952f), new(-235.7227f, 229.8125f), new(192.68831f, -298.5764f), new(-359.674f, 412.16052f), new(309.8441f, -353.6082f),
-new(243.16359f, -295.0787f), new(-363.2418f, 277.32382f), new(306.15707f, -361.4512f), new(229.25209f, -413.6097f), new(-359.80002f, 411.10052f),
-new(-383.27557f, 163.0633f), new(155.7825f, -209.17351f), new(-238.3908f, 173.9991f), new(304.71002f, -178.6952f), new(-297.8789f, 191.23749f),
-new(347.7393f, -227.5228f), new(-293.81342f, 249.8006f), new(-305.0087f, 297.8966f), new(435.28f, -358.822f), new(296.60168f, -429.22238f),
-new(432.422f, -361.55698f), new(375.2675f, -383.7698f), new(-240.56369f, 233.8615f), new(374.8285f, -386.1818f), new(219.7637f, -182.3598f),
-new(-206.2375f, 375.6895f), new(302.54202f, -171.9432f), new(-217.4885f, 367.6575f), new(-241.9281f, 431.9331f), new(-297.7994f, 244.9226f),
-new(-426.39792f, 350.5285f), new(-295.2431f, 366.4161f), new(-422.1429f, 345.79352f), new(294.3323f, -303.44418f), new(-299.2529f, 193.5205f),
-new(220.794f, -235.88011f), new(371.8949f, -439.5311f), new(351.5513f, -236.17679f), new(299.9697f, -423.4114f), new(233.6907f, -359.28632f),
-new(299.1767f, -420.7154f), new(-235.4606f, 307.9245f), new(373.39288f, -445.3491f), new(-232.87779f, 178.5381f), new(223.185f, -232.9491f),
-new(-208.9435f, 369.9505f), new(-361.642f, 407.9865f), new(229.8441f, -416.4377f), new(-367.4828f, 273.7608f), new(309.8441f, -353.6082f),
-new(413.88528f, -298.9205f), new(-301.3381f, 369.7391f), new(303.1253f, -296.14618f), new(351.88928f, -229.1028f), new(437.248f, -357.57898f),
-new(241.10959f, -297.3507f), new(-300.2591f, 417.1294f), new(-180.30339f, 298.0965f), new(-240.0746f, 309.0725f), new(-417.20892f, 222.07649f),
-new(-294.2604f, 248.3806f), new(-393.6446f, 157.8083f), new(410.1857f, -231.2629f), new(-217.37149f, 375.8185f), new(-417.2719f, 221.3665f),
-new(289.25308f, -367.85318f), new(404.00272f, -235.1029f), new(230.16609f, -416.7207f), new(-367.75058f, 226.9967f), new(218.8477f, -179.24379f),
-new(300.496f, -174.77121f), new(-246.0756f, 295.1975f), new(301.64203f, -174.1642f), new(157.17151f, -208.1605f), new(-366.6449f, 352.31082f),
-new(267.162f, -241.8199f), new(-301.6881f, 355.0971f), new(-233.1447f, 233.8515f), new(-420.67108f, 304.43588f), new(-172.9524f, 304.6665f),
-new(-425.7251f, 300.27487f), new(404.1857f, -232.2549f), new(372.80087f, -437.6271f), new(352.3793f, -233.0988f), new(192.4093f, -300.5114f),
-new(-426.5151f, 299.68088f), new(364.6771f, -294.73f), new(-419.8829f, 223.7485f), new(157.84651f, -209.5025f), new(296.9813f, -293.7552f),
-new(-240.6698f, 177.4131f), new(-360.7558f, 277.6358f), new(221.3757f, -179.71579f), new(361.8475f, -390.9708f), new(-417.6129f, 221.1725f),
-new(-370.3849f, 341.80682f), new(365.8121f, -294.63202f), new(336.4593f, -242.1778f), new(-296.53812f, 368.8251f), new(301.70767f, -421.2864f),
-new(-298.1807f, 304.0866f), new(-296.8547f, 302.59662f), new(-241.9837f, 227.5595f)
+ new(157.77351f, -211.3055f), new(281.509f, -229.9349f), new(374.7175f, -380.50882f), new(284.522f, -231.8759f), new(-428.3871f, 302.7599f),
+ new(-155.1551f, 374.7788f), new(309.9101f, -355.9902f), new(-359.27188f, 345.7818f), new(-303.3797f, 304.8926f), new(-155.4071f, 365.3948f),
+ new(370.84888f, -440.1121f), new(-356.5669f, 351.5208f), new(194.84131f, -296.4344f), new(191.48131f, -296.4184f), new(431.53f, -358.525f),
+ new(298.0221f, -352.39618f), new(306.5041f, -354.7682f), new(-299.17572f, 303.5916f), new(-295.8491f, 420.7614f), new(-356.2836f, 226.1767f),
+ new(-238.3208f, 174.65309f), new(231.2881f, -415.8667f), new(365.3891f, -299.79602f), new(-420.2139f, 349.8965f), new(177.2267f, -359.9328f),
+ new(-365.24188f, 352.4408f), new(-364.9188f, 279.99982f), new(345.7826f, -176.65091f), new(247.60359f, -300.0177f), new(-301.0084f, 249.7386f),
+ new(228.9617f, -358.80432f), new(-359.3136f, 219.75171f), new(-301.8667f, 305.26062f), new(-418.18292f, 224.4895f), new(369.5831f, -293.77002f),
+ new(-385.4296f, 158.4933f), new(-235.52109f, 436.40112f), new(306.005f, -170.23021f), new(-302.4594f, 249.5536f), new(-297.3281f, 416.5194f),
+ new(-178.8334f, 231.56401f), new(187.0473f, -298.2464f), new(-362.5968f, 272.0718f), new(-361.6006f, 224.4057f), new(-365.9976f, 227.2067f),
+ new(219.2797f, -180.92279f), new(289.16208f, -370.6872f), new(284.759f, -240.0009f), new(344.7466f, -177.33891f), new(-211.0745f, 374.1915f),
+ new(-234.99661f, 305.9155f), new(-421.9599f, 347.74753f), new(349.4476f, -173.4649f), new(-390.18057f, 163.7923f), new(232.2157f, -362.4223f),
+ new(303.44128f, -300.12518f), new(369.9329f, -436.9941f), new(-295.0741f, 363.5011f), new(-233.71469f, 228.9495f), new(-367.368f, 412.5515f),
+ new(299.47803f, -171.3072f), new(305.2153f, -295.8982f), new(-218.7415f, 366.78552f), new(-301.0781f, 419.9354f), new(225.21071f, -365.1333f),
+ new(282.815f, -233.5609f), new(405.1207f, -235.4369f), new(-425.6601f, 300.99487f), new(-387.4496f, 162.1363f), new(-295.8247f, 299.4706f),
+ new(-233.6931f, 432.7431f), new(298.82428f, -295.1322f), new(371.3635f, -396.0148f), new(282.728f, -236.5599f), new(175.14769f, -361.9538f),
+ new(-368.2226f, 229.7807f), new(-358.0448f, 280.56482f), new(-179.09839f, 304.5835f), new(274.197f, -228.1379f), new(247.71559f, -297.7597f),
+ new(413.44928f, -295.7845f), new(-214.91249f, 376.60852f), new(300.8777f, -422.89938f), new(-295.6759f, 193.15349f), new(220.65001f, -233.2801f),
+ new(306.6521f, -358.21118f), new(-242.80461f, 308.4305f), new(-301.9799f, 193.7945f), new(-297.5257f, 300.4176f), new(366.1011f, -297.604f),
+ new(228.30571f, -360.0443f), new(-162.1681f, 375.4958f), new(284.267f, -229.9759f), new(-294.3009f, 186.9005f), new(406.2107f, -234.7829f),
+ new(-420.43692f, 341.6205f), new(-231.34709f, 437.7181f), new(-363.049f, 410.93152f), new(232.3177f, -360.82132f), new(419.80728f, -294.73248f),
+ new(-176.35039f, 300.50848f), new(-238.86809f, 438.5151f), new(-366.34778f, 279.8008f), new(-236.9467f, 232.33049f), new(-412.3569f, 225.4125f),
+ new(-239.1837f, 234.1465f), new(-372.77588f, 351.1068f), new(188.7433f, -296.0794f), new(180.1077f, -357.8668f), new(218.863f, -233.03311f),
+ new(-297.6429f, 188.97249f), new(415.59927f, -298.4495f), new(304.51028f, -304.1392f), new(-362.7938f, 275.8558f), new(176.2757f, -361.0598f),
+ new(235.1261f, -412.6337f), new(-237.4608f, 170.8221f), new(-175.9664f, 234.362f), new(347.7606f, -176.06891f), new(-182.4984f, 234.304f),
+ new(-361.3589f, 349.9808f), new(161.49951f, -208.2235f), new(-392.7956f, 162.5703f), new(-295.5577f, 304.59262f), new(343.8786f, -174.38591f),
+ new(303.6963f, -298.4812f), new(249.6166f, -295.7377f), new(220.8427f, -181.6828f), new(-230.61261f, 304.1095f), new(-300.2021f, 417.6784f),
+ new(221.213f, -234.77211f), new(433.482f, -360.862f), new(344.6373f, -227.55179f), new(-298.6534f, 247.02661f), new(-239.4138f, 177.5061f),
+ new(377.7785f, -379.90582f), new(-157.1351f, 372.3418f), new(174.23369f, -358.8438f), new(-426.66208f, 303.48688f), new(356.7053f, -228.08679f),
+ new(-187.2744f, 225.13f), new(-293.8201f, 368.4221f), new(156.6725f, -212.2015f), new(360.6281f, -293.56f), new(246.2166f, -295.4497f),
+ new(-179.44339f, 229.942f), new(-365.984f, 412.8295f), new(-422.7761f, 302.0109f), new(-231.9346f, 299.99252f), new(-157.34311f, 370.1268f),
+ new(414.44028f, -299.1555f), new(305.26028f, -297.1862f), new(231.1597f, -359.05432f), new(304.2587f, -419.8764f), new(224.7217f, -178.2728f),
+ new(-177.1554f, 302.4285f), new(217.34201f, -235.0751f), new(368.3205f, -378.93582f), new(375.8069f, -436.0251f), new(-229.3966f, 294.90652f),
+ new(-228.24461f, 307.81952f), new(-235.7227f, 229.8125f), new(192.68831f, -298.5764f), new(-359.674f, 412.16052f), new(309.8441f, -353.6082f),
+ new(243.16359f, -295.0787f), new(-363.2418f, 277.32382f), new(306.15707f, -361.4512f), new(229.25209f, -413.6097f), new(-359.80002f, 411.10052f),
+ new(-383.27557f, 163.0633f), new(155.7825f, -209.17351f), new(-238.3908f, 173.9991f), new(304.71002f, -178.6952f), new(-297.8789f, 191.23749f),
+ new(347.7393f, -227.5228f), new(-293.81342f, 249.8006f), new(-305.0087f, 297.8966f), new(435.28f, -358.822f), new(296.60168f, -429.22238f),
+ new(432.422f, -361.55698f), new(375.2675f, -383.7698f), new(-240.56369f, 233.8615f), new(374.8285f, -386.1818f), new(219.7637f, -182.3598f),
+ new(-206.2375f, 375.6895f), new(302.54202f, -171.9432f), new(-217.4885f, 367.6575f), new(-241.9281f, 431.9331f), new(-297.7994f, 244.9226f),
+ new(-426.39792f, 350.5285f), new(-295.2431f, 366.4161f), new(-422.1429f, 345.79352f), new(294.3323f, -303.44418f), new(-299.2529f, 193.5205f),
+ new(220.794f, -235.88011f), new(371.8949f, -439.5311f), new(351.5513f, -236.17679f), new(299.9697f, -423.4114f), new(233.6907f, -359.28632f),
+ new(299.1767f, -420.7154f), new(-235.4606f, 307.9245f), new(373.39288f, -445.3491f), new(-232.87779f, 178.5381f), new(223.185f, -232.9491f),
+ new(-208.9435f, 369.9505f), new(-361.642f, 407.9865f), new(229.8441f, -416.4377f), new(-367.4828f, 273.7608f), new(309.8441f, -353.6082f),
+ new(413.88528f, -298.9205f), new(-301.3381f, 369.7391f), new(303.1253f, -296.14618f), new(351.88928f, -229.1028f), new(437.248f, -357.57898f),
+ new(241.10959f, -297.3507f), new(-300.2591f, 417.1294f), new(-180.30339f, 298.0965f), new(-240.0746f, 309.0725f), new(-417.20892f, 222.07649f),
+ new(-294.2604f, 248.3806f), new(-393.6446f, 157.8083f), new(410.1857f, -231.2629f), new(-217.37149f, 375.8185f), new(-417.2719f, 221.3665f),
+ new(289.25308f, -367.85318f), new(404.00272f, -235.1029f), new(230.16609f, -416.7207f), new(-367.75058f, 226.9967f), new(218.8477f, -179.24379f),
+ new(300.496f, -174.77121f), new(-246.0756f, 295.1975f), new(301.64203f, -174.1642f), new(157.17151f, -208.1605f), new(-366.6449f, 352.31082f),
+ new(267.162f, -241.8199f), new(-301.6881f, 355.0971f), new(-233.1447f, 233.8515f), new(-420.67108f, 304.43588f), new(-172.9524f, 304.6665f),
+ new(-425.7251f, 300.27487f), new(404.1857f, -232.2549f), new(372.80087f, -437.6271f), new(352.3793f, -233.0988f), new(192.4093f, -300.5114f),
+ new(-426.5151f, 299.68088f), new(364.6771f, -294.73f), new(365.8121f, -294.63202f), new(-419.8829f, 223.7485f), new(157.84651f, -209.5025f),
+ new(296.9813f, -293.7552f), new(-296.53812f, 368.8251f), new(-240.6698f, 177.4131f), new(336.4593f, -242.1778f), new(301.70767f, -421.2864f),
+ new(-360.7558f, 277.6358f), new(221.3757f, -179.71579f), new(361.8475f, -390.9708f), new(-417.6129f, 221.1725f), new(-370.3849f, 341.80682f)
+ ]},
+ { 561, [
+ new(-345.14362f, 366.3735f), new(369.8602f, -343.2119f), new(240.4568f, -193.012f), new(294.2139f, -412.0245f), new(234.2605f, -399.64648f),
+ new(187.1271f, -299.0545f), new(-225.37401f, 249.28009f), new(319.49667f, -350.801f), new(-219.0539f, 205.6571f), new(380.2036f, -192.8831f),
+ new(357.571f, -295.5889f), new(-282.8508f, 187.4292f), new(-368.8186f, 365.2259f), new(359.72522f, -342.7889f), new(-354.9482f, 245.8213f),
+ new(300.2586f, -297.7271f), new(-182.95511f, 256.0929f), new(376.091f, -294.0819f), new(241.21889f, -340.8682f), new(325.888f, -180.5272f),
+ new(204.62961f, -341.6487f), new(302.79968f, -353.47598f), new(368.926f, -297.4299f), new(190.02771f, -226.06929f), new(-287.5678f, 183.8492f),
+ new(-373.7287f, 189.4269f), new(250.5583f, -233.4358f), new(250.8817f, -247.9567f), new(-243.2471f, 247.7088f), new(-343.9676f, 367.2775f),
+ new(-242.0571f, 248.5938f), new(-376.13773f, 192.7599f), new(-361.876f, 416.74588f), new(419.81998f, -254.1602f), new(368.327f, -299.53592f),
+ new(425.37f, -250.2632f), new(249.6857f, -248.7957f), new(251.46289f, -334.00018f), new(-242.7994f, 264.94f), new(302.6606f, -239.7914f),
+ new(304.98868f, -364.47998f), new(-368.354f, 300.04422f), new(-320.01147f, 414.9421f), new(-234.4074f, 371.64822f), new(319.94598f, -184.7012f),
+ new(-230.4529f, 204.7491f), new(-231.6734f, 365.8082f), new(-416.3314f, 301.422f), new(303.1366f, -295.3951f), new(436.8196f, -317.71613f),
+ new(264.34988f, -337.4562f), new(315.9227f, -349.682f), new(185.0231f, -300.8385f), new(-223.8019f, 202.0871f), new(292.0089f, -413.86353f),
+ new(298.6246f, -242.7704f), new(-407.38168f, 358.0495f), new(363.5102f, -344.59692f), new(-326.66647f, 417.6111f), new(-218.0725f, 429.4145f),
+ new(310.99667f, -349.189f), new(416.19098f, -257.9682f), new(-302.4967f, 303.7877f), new(-241.6084f, 265.823f), new(-186.0719f, 366.7348f),
+ new(373.2152f, -341.69193f), new(-287.6118f, 183.97119f), new(247.1708f, -183.25299f), new(-300.2269f, 245.5101f), new(241.3358f, -187.345f),
+ new(184.32771f, -230.0683f), new(367.4802f, -246.0938f), new(184.60771f, -230.3653f), new(369.6746f, -192.44211f), new(-235.4747f, 309.0038f),
+ new(-355.5692f, 248.6073f), new(-402.1249f, 247.8809f), new(-295.4659f, 248.9671f), new(-373.52402f, 416.5679f), new(394.8365f, -398.18622f),
+ new(-289.7979f, 355.9738f), new(241.4779f, -288.5978f), new(-225.6291f, 265.2122f), new(-222.8165f, 425.9015f), new(250.2517f, -248.3687f),
+ new(293.4276f, -300.99512f), new(-366.891f, 414.01288f), new(299.9636f, -240.1644f), new(237.7469f, -288.26382f), new(235.8031f, -233.2037f),
+ new(-398.8229f, 242.9479f), new(367.5602f, -345.6629f), new(-294.2448f, 186.52719f), new(-230.8197f, 319.3988f), new(-178.2069f, 373.0948f),
+ new(285.3839f, -411.43552f), new(246.14291f, -284.83582f), new(201.9576f, -343.23972f), new(-363.049f, 303.45923f), new(-304.5147f, 304.0867f),
+ new(428.0928f, -353.97772f), new(-229.6434f, 375.0932f), new(-235.57071f, 315.8998f), new(-302.09293f, 367.3208f), new(-356.13422f, 243.6663f),
+ new(-296.9949f, 243.1881f), new(432.00662f, -308.3251f), new(-367.77002f, 304.97122f), new(241.01149f, -402.4675f), new(-291.1759f, 365.7038f),
+ new(-306.85992f, 248.0651f), new(-363.462f, 349.47308f), new(-375.51572f, 189.9739f), new(-300.17792f, 245.3721f), new(199.8456f, -345.0047f),
+ new(292.0606f, -239.3694f), new(249.9223f, -233.8338f), new(383.4636f, -191.32011f), new(243.4259f, -286.33582f), new(240.88649f, -402.07748f),
+ new(-406.8377f, 363.0045f), new(306.4546f, -293.38312f), new(296.7939f, -410.5085f), new(-244.4574f, 265.59702f), new(289.69992f, -418.4345f),
+ new(-302.5519f, 367.1608f), new(365.876f, -300.0129f), new(322.335f, -182.0812f), new(-242.2187f, 318.4898f), new(-182.971f, 314.4598f),
+ new(431.6768f, -352.1647f), new(-365.361f, 301.6372f), new(-178.207f, 317.9058f), new(189.8081f, -297.4825f), new(235.1691f, -233.6067f),
+ new(234.6071f, -234.04271f), new(389.0785f, -402.23022f), new(256.7929f, -334.0462f), new(425.2468f, -356.6767f), new(-182.97789f, 369.6318f),
+ new(-178.2071f, 259.5989f), new(-179.21211f, 254.58191f), new(-369.4076f, 364.7689f), new(-376.70673f, 187.8069f), new(-404.42868f, 359.67148f),
+ new(-297.2669f, 245.7991f), new(422.202f, -251.7012f), new(-419.2884f, 299.788f), new(-300.2629f, 368.2498f), new(242.9345f, -400.18448f),
+ new(-302.0927f, 303.9357f), new(-226.8211f, 264.3312f), new(416.33978f, -353.4137f), new(429.3966f, -310.8351f), new(242.79791f, -287.5228f),
+ new(371.411f, -296.0549f), new(-399.69592f, 244.8249f), new(-401.4869f, 245.3739f), new(321.05768f, -351.129f), new(421.1866f, -307.82712f),
+ new(300.4006f, -298.31412f), new(-241.0424f, 374.1842f), new(262.0289f, -336.5032f), new(-226.563f, 248.3931f), new(306.1886f, -238.22139f),
+ new(-216.8235f, 420.8845f), new(364.39322f, -246.1398f), new(241.1315f, -401.8035f), new(245.6705f, -398.7205f), new(372.0042f, -247.3968f),
+ new(-189.60611f, 258.6899f), new(-229.4715f, 428.5055f), new(193.2196f, -342.5737f), new(-340.33572f, 352.1459f), new(-418.1184f, 301.97f),
+ new(265.99988f, -341.8292f), new(366.4782f, -346.0869f), new(232.19539f, -248.254f), new(-311.27692f, 363.2068f), new(-291.1757f, 302.3187f),
+ new(-309.9737f, 296.06668f), new(178.3981f, -298.4075f), new(241.3589f, -288.1928f), new(-298.1299f, 240.5271f), new(-340.9407f, 351.51892f),
+ new(234.5344f, -248.682f), new(311.714f, -181.6792f), new(199.3476f, -342.2757f), new(-175.9931f, 254.2139f), new(186.77971f, -227.8353f),
+ new(249.3623f, -234.27481f), new(391.4335f, -399.75623f), new(233.8514f, -248.86101f), new(233.2548f, -184.384f), new(412.12997f, -251.3412f),
+ new(356.9722f, -250.6608f), new(381.1005f, -399.30322f), new(-315.27048f, 418.52112f), new(244.0348f, -185.125f), new(-370.24258f, 365.1139f),
+ new(-305.3239f, 245.7121f), new(-362.875f, 349.9271f), new(-406.2157f, 360.21948f), new(176.43471f, -227.1723f), new(367.68622f, -345.9429f),
+ new(-353.1612f, 245.27429f), new(-366.844f, 413.8829f), new(377.68262f, -195.3771f), new(234.73291f, -285.7618f), new(300.2656f, -242.3814f),
+ new(-311.2777f, 299.8217f), new(-228.4781f, 264.9862f), new(234.3374f, -248.529f), new(204.62961f, -341.6487f), new(-290.92392f, 360.4658f),
+ new(291.6786f, -294.5831f), new(435.3226f, -306.67712f), new(-340.9887f, 350.73892f), new(-320.0315f, 415.07312f), new(-226.2179f, 202.1041f),
+ new(-220.0269f, 201.0671f), new(373.8622f, -248.4288f), new(-234.3984f, 371.60123f), new(-189.606f, 316.9968f), new(-345.1576f, 366.4135f),
+ new(-400.64792f, 244.69191f), new(370.9562f, -263.3458f), new(-226.565f, 248.4191f), new(-231.8467f, 314.3398f), new(-362.2352f, 245.8083f),
+ new(386.22852f, -400.18723f), new(368.512f, -299.9819f), new(-289.8237f, 292.4617f), new(-283.6628f, 182.46019f), new(-367.148f, 302.1852f),
+ new(244.8009f, -287.90482f), new(-310.02292f, 359.4578f), new(-223.81789f, 202.2001f), new(-418.74042f, 304.756f), new(-189.6059f, 372.1858f),
+ new(-230.7834f, 369.9222f), new(247.89531f, -233.5328f), new(250.6297f, -250.47769f), new(-401.05792f, 244.7959f), new(320.086f, -184.9752f),
+ new(232.9511f, -233.4357f), new(-353.5882f, 242.0203f), new(-187.344f, 313.0648f), new(183.2111f, -298.07852f), new(199.9676f, -345.3797f),
+ new(300.4016f, -242.66339f), new(434.49078f, -360.89072f), new(-364.29898f, 349.8151f), new(429.5466f, -311.19012f), new(-346.8156f, 367.0525f),
+ new(-365.849f, 298.41522f), new(249.0557f, -248.9857f), new(-226.1519f, 203.7191f), new(-323.4245f, 415.49612f), new(-363.113f, 410.9469f),
+ new(-290.9497f, 297.0767f), new(-404.8117f, 356.4575f), new(379.1066f, -204.0361f), new(425.4118f, -357.07172f), new(377.8326f, -195.74211f),
+ new(318.41f, -182.2482f), new(-175.9931f, 254.2139f), new(-302.47592f, 347.9708f), new(303.4087f, -356.79898f)
+ ]},
+ { 770, [
+ new(-291.1146f, 200.7771f), new(377.7265f, -354.3191f), new(237.2585f, 235.02719f), new(237.17589f, 317.8386f), new(-192.30501f, 307.9035f),
+ new(-351.2784f, 231.64009f), new(-350.69357f, 303.3081f), new(-291.211f, 307.13843f), new(-305.2336f, 286.70673f), new(376.81012f, -396.29062f),
+ new(216.28929f, -349.8005f), new(-238.9177f, 266.1083f), new(299.3652f, -355.2921f), new(281.4883f, -400.4282f), new(366.0061f, -297.47012f),
+ new(249.6568f, -416.6276f), new(342.5864f, -228.8256f), new(-289.15778f, 421.9942f), new(-395.4678f, 236.1741f), new(-304.2545f, 370.9649f),
+ new(-289.90662f, 356.29852f), new(365.1257f, -229.0258f), new(302.99432f, -403.0829f), new(-221.471f, 315.88718f), new(316.7648f, -368.5081f),
+ new(-289.9058f, 423.2892f), new(345.6424f, -233.4376f), new(-374.331f, 202.8964f), new(332.2665f, -188.5294f), new(246.59999f, -214.66391f),
+ new(-364.69983f, 242.64691f), new(-391.3463f, 243.4013f), new(-236.8373f, 299.65192f), new(-227.0902f, 360.4305f), new(220.23149f, -163.0653f),
+ new(314.9108f, -371.1961f), new(-222.6982f, 353.8405f), new(301.7941f, -250.7052f), new(252.0282f, -239.9451f), new(346.03192f, -299.0353f),
+ new(-303.9266f, 284.6817f), new(207.9701f, -230.04329f), new(290.6817f, 371.0484f), new(255.0645f, 356.4028f), new(376.6873f, -163.9477f),
+ new(-408.4097f, 235.24419f), new(226.944f, -184.5865f), new(243.92609f, -423.1749f), new(-405.1293f, 296.587f), new(-348.51758f, 293.01462f),
+ new(280.6213f, -401.5852f), new(397.9753f, 266.25488f), new(299.0932f, -232.6747f), new(-405.74008f, 346.9721f), new(403.4914f, 286.2028f),
+ new(295.4348f, -285.8792f), new(-302.491f, 311.45642f), new(375.2853f, -165.3407f), new(-188.522f, 379.3078f), new(-411.8502f, 356.633f),
+ new(195.7382f, -239.7084f), new(309.19308f, 260.562f), new(422.4993f, -347.3219f), new(-352.65158f, 306.1171f), new(308.2966f, -294.21982f),
+ new(405.398f, -221.24399f), new(421.6243f, -349.8549f), new(-288.92688f, 240.511f), new(262.389f, -353.7101f), new(-288.6043f, 403.3447f),
+ new(353.7874f, -344.37302f), new(368.724f, -419.47427f), new(387.0933f, -421.0432f), new(-300.5546f, 346.4943f), new(-290.6924f, 242.5561f),
+ new(313.97958f, -300.4645f), new(215.79329f, -348.1175f), new(422.2061f, -373.0983f), new(-398.95142f, 367.96f), new(-269.48352f, 421.7346f),
+ new(391.7845f, 362.3505f), new(-394.7988f, 234.3001f), new(-372.4026f, 402.2915f), new(367.0744f, -163.5683f), new(-346.28882f, 254.3924f),
+ new(391.26468f, 308.4435f), new(229.4314f, -409.5606f), new(223.8078f, 338.0764f), new(-399.2204f, 367.237f), new(-233.47571f, 326.9404f),
+ new(211.1362f, -337.35608f), new(414.8509f, -231.02629f), new(-348.5186f, 299.9171f), new(-343.99408f, 364.1384f), new(414.4955f, -222.3177f),
+ new(197.2214f, 251.4295f), new(219.8431f, 374.3908f), new(256.08112f, 282.5866f), new(-249.8196f, 262.1651f), new(248.6639f, 300.99652f),
+ new(379.52667f, -420.52002f), new(312.7736f, -299.1495f), new(-290.55463f, 356.9995f), new(251.7649f, -282.60898f), new(-248.8656f, 260.50812f),
+ new(-391.1803f, 244.7623f), new(402.5601f, -280.6905f), new(350.344f, 345.1653f), new(-348.51382f, 256.65738f), new(247.9455f, -153.2079f),
+ new(-405.4781f, 347.6951f), new(-165.47119f, 325.1228f), new(-421.9181f, 308.09378f), new(-239.2861f, 381.9999f), new(315.3048f, -366.9141f),
+ new(230.5283f, -284.9145f), new(303.24622f, -233.9057f), new(251.40579f, -402.0976f), new(-357.5401f, 415.5084f), new(251.312f, -333.67712f),
+ new(369.137f, -415.64227f), new(310.31668f, 337.30518f), new(299.4822f, -228.2247f), new(361.25702f, 354.35028f), new(298.96808f, -257.0262f),
+ new(303.9772f, -229.6587f), new(-341.7021f, 357.66342f), new(-349.3608f, 259.01038f), new(-301.5912f, 168.9244f), new(368.1827f, -233.64081f),
+ new(-215.5708f, 420.4988f), new(-221.28589f, 209.78401f), new(-286.80188f, 239.086f), new(299.9332f, -230.9737f), new(-373.7306f, 195.8423f),
+ new(247.7455f, -152.3929f), new(283.8163f, -404.6182f), new(330.7779f, 373.1893f), new(196.7399f, -308.9013f), new(380.4839f, 330.7512f),
+ new(219.5321f, 334.5681f), new(312.3916f, -302.6765f), new(349.5063f, 241.4282f), new(279.91132f, -398.7432f), new(-352.72342f, 233.70709f),
+ new(-309.66098f, 306.03842f), new(299.3371f, -252.5542f), new(-274.15417f, 181.0347f), new(249.951f, 255.7474f), new(-240.96109f, 383.80392f),
+ new(-270.23352f, 423.0336f), new(-247.5556f, 258.76712f), new(-298.96262f, 344.7743f), new(-389.9801f, 358.3342f), new(376.6177f, 313.3555f),
+ new(-201.4317f, 263.9413f), new(-338.2416f, 352.1503f), new(343.8234f, -230.1786f), new(315.7496f, -303.6415f), new(441.1493f, -359.719f),
+ new(-228.58769f, 262.1563f), new(363.612f, 290.1169f), new(-363.45782f, 241.3049f), new(-418.2147f, 291.759f), new(-301.55118f, 168.69139f),
+ new(-212.09781f, 415.2888f), new(-355.6571f, 409.9824f), new(-298.8326f, 343.79428f), new(378.18512f, -397.7936f), new(376.3251f, -400.15662f),
+ new(401.7559f, 374.2101f), new(402.1206f, 225.5562f), new(195.8056f, -222.754f), new(398.73618f, 235.2048f), new(257.145f, -244.4182f),
+ new(388.8963f, -418.6952f), new(200.90921f, -333.18307f), new(-406.1933f, 299.302f), new(-280.0766f, 402.3281f), new(327.7372f, -182.45401f),
+ new(443.8534f, -368.4998f), new(-394.4718f, 235.1051f), new(259.6996f, 307.137f), new(235.0495f, -244.4242f), new(-228.5067f, 247.50531f),
+ new(-288.0669f, 241.062f), new(-363.24182f, 240.5849f), new(-412.68817f, 357.533f), new(268.37543f, -343.6314f), new(305.0022f, 241.3848f),
+ new(347.0897f, -279.0603f), new(-289.18378f, 422.5112f), new(300.6672f, -356.6831f), new(257.813f, -243.5082f), new(230.0213f, -282.9875f),
+ new(405.1675f, -240.1498f), new(317.8782f, -178.673f), new(-193.455f, 360.9869f), new(203.52231f, 371.853f), new(234.5045f, -242.2182f),
+ new(-409.0037f, 235.8812f), new(295.1718f, -289.4012f), new(-412.12018f, 355.914f), new(244.3711f, -422.4659f), new(380.23068f, -419.61902f),
+ new(195.3616f, -221.217f), new(-166.1792f, 326.38882f), new(305.0139f, 315.9504f), new(223.2121f, 282.7685f), new(-242.4392f, 357.2f),
+ new(-302.6625f, 369.2439f), new(255.2002f, -222.3061f), new(-365.8661f, 418.73138f), new(297.6976f, -290.1708f), new(-226.71269f, 252.6013f),
+ new(364.071f, 266.25488f), new(342.07138f, -232.1816f), new(345.7027f, -280.5433f), new(-289.85162f, 355.8965f), new(262.661f, -337.8591f),
+ new(-417.8357f, 290.699f), new(312.2617f, -177.4775f), new(241.8139f, -278.916f), new(402.7151f, -277.9065f), new(254.2646f, -419.22083f),
+ new(196.09819f, -239.0734f), new(298.97632f, -420.5039f), new(350.344f, 374.2963f), new(367.32498f, 241.6105f), new(269.6144f, -344.9534f),
+ new(249.4249f, -297.238f), new(414.3249f, -231.9413f), new(358.56772f, -181.0699f), new(349.8764f, -296.31f), new(229.9184f, -411.2166f),
+ new(-239.2251f, 380.8439f), new(245.2821f, -181.2224f), new(211.7074f, 284.45493f), new(241.0277f, 279.1199f), new(-351.1843f, 343.729f),
+ new(363.68982f, -329.8505f), new(370.491f, -417.12128f), new(-307.0736f, 283.37073f), new(245.6261f, -180.7654f), new(-230.7657f, 322.8734f),
+ new(-350.9846f, 297.41562f), new(-302.1754f, 253.82011f), new(178.4319f, -307.47638f), new(-373.271f, 199.96039f), new(402.2955f, 251.4143f),
+ new(-302.5155f, 368.2689f), new(295.0535f, 358.6997f), new(250.43991f, 241.8409f), new(301.0062f, -229.8867f), new(-248.9066f, 261.18112f),
+ new(364.6188f, -330.86652f), new(347.3149f, -297.5263f), new(356.76172f, -182.9179f), new(207.1971f, -231.44829f), new(-175.426f, 364.7978f),
+ new(-240.60019f, 354.06302f), new(-201.4007f, 264.6393f), new(343.04532f, 284.3684f), new(245.57199f, -213.5679f), new(-301.55472f, 177.5932f),
+ new(296.6398f, -287.1932f), new(198.7899f, -293.9643f), new(-288.86f, 297.8474f), new(-352.65158f, 299.2156f), new(353.3374f, -346.875f),
+ new(357.0173f, -173.69499f), new(268.98642f, -345.9304f), new(-292.7644f, 236.94011f), new(-219.3859f, 206.389f), new(196.1686f, -222.083f),
+ new(197.0719f, 293.9854f), new(366.61438f, -164.9253f), new(-288.56232f, 402.7147f), new(289.909f, 284.6358f), new(415.0155f, -221.40869f),
+ new(226.20401f, -181.5585f), new(295.5703f, 316.0712f), new(-240.6682f, 355.293f), new(-234.6823f, 296.75092f), new(361.9024f, 322.2832f),
+ new(375.7473f, -162.91869f), new(-354.1121f, 367.9964f), new(248.1925f, -152.8699f), new(-351.4814f, 232.36609f), new(418.39423f, -302.01648f),
+ new(363.0134f, -283.001f), new(362.6455f, -355.15408f), new(340.4943f, 270.8269f), new(232.5653f, -286.8155f), new(340.2194f, -230.1156f),
+ new(-166.65701f, 298.8298f), new(269.8808f, 314.7059f), new(349.8417f, 256.1499f), new(-350.9846f, 304.3181f), new(-426.5856f, 303.8788f),
+ new(364.49442f, 319.5962f), new(-404.7633f, 297.77f), new(302.59018f, -360.1431f), new(-238.3393f, 302.2369f), new(220.4765f, -162.7203f),
+ new(187.0128f, -231.2012f), new(393.85822f, 319.5962f), new(-202.31369f, 265.6243f), new(-389.6191f, 359.3262f), new(293.1316f, 339.5821f),
+ new(354.7164f, -345.39f), new(227.84401f, -183.3125f), new(-166.1982f, 326.04382f), new(-214.1318f, 418.0158f), new(-192.31999f, 359.7629f),
+ new(238.2819f, 261.5142f), new(-422.1001f, 307.6208f), new(-231.4842f, 191.3868f), new(-192.33801f, 306.52252f), new(364.4287f, -232.1838f),
+ new(-366.2196f, 192.91531f), new(367.0515f, -334.9941f), new(321.3753f, 334.3307f), new(-302.2576f, 282.24072f), new(255.55061f, 372.112f),
+ new(260.0031f, 344.6025f), new(-166.19101f, 297.9358f), new(366.6834f, 370.02722f), new(243.4811f, -421.5159f), new(404.92603f, -220.72499f),
+ new(378.12152f, -339.0091f), new(334.0295f, -186.3844f), new(298.40982f, -290.3702f), new(-352.4683f, 345.115f), new(232.7881f, 231.404f),
+ new(403.6351f, -278.91748f), new(291.3373f, -398.4199f), new(251.5829f, -296.555f), new(-426.4046f, 304.3548f), new(-194.12361f, 265.8946f),
+ new(-214.1708f, 418.99078f), new(-232.3827f, 325.76343f), new(-269.5115f, 422.25558f), new(-221.5f, 316.6192f), new(-288.94562f, 354.5855f),
+ new(330.5202f, 285.9797f), new(261.3016f, 371.846f), new(-221.21489f, 208.84001f), new(-192.3548f, 316.5765f), new(-236.8653f, 300.6499f),
+ new(-232.83621f, 193.70781f), new(-372.1756f, 401.5015f), new(179.63991f, -308.7704f), new(418.8662f, -302.53348f), new(-278.6526f, 400.1891f),
+ new(228.19049f, 227.97119f), new(343.6259f, 321.2989f), new(-372.773f, 201.22539f), new(-286.9409f, 239.844f), new(-338.11862f, 351.6703f),
+ new(-291.12f, 291.14142f), new(-349.0392f, 415.1106f), new(202.2033f, 312.9767f), new(287.8219f, 266.5569f), new(-417.66272f, 291.16602f),
+ new(366.3637f, -230.3818f), new(-350.9933f, 343.036f), new(-408.5547f, 234.7462f), new(246.08499f, -215.4629f), new(-292.6994f, 250.25911f),
+ new(-236.8051f, 377.5689f), new(269.1257f, 227.2677f), new(423.2601f, -370.1433f), new(357.97427f, -172.736f), new(303.1011f, -258.2362f),
+ new(-232.35071f, 325.0264f), new(-366.35962f, 183.43631f), new(-231.5522f, 192.3238f), new(-350.6886f, 296.3976f), new(-339.12262f, 353.1013f),
+ new(404.6365f, -241.0648f), new(316.7898f, -369.9471f), new(-184.27861f, 262.2236f), new(-222.593f, 317.79617f), new(250.69989f, 300.72052f),
+ new(235.7115f, -243.5082f), new(-301.5917f, 177.8292f), new(204.6813f, 236.0486f), new(-279.5026f, 401.7071f), new(311.5159f, 289.8667f),
+ new(340.5058f, 329.5372f), new(-225.3192f, 358.5245f), new(259.358f, -354.9811f), new(403.549f, 313.6695f), new(308.3336f, -309.2348f),
+ new(318.9118f, -372.3581f), new(-304.0336f, 285.4107f), new(-166.17801f, 298.3138f), new(-192.3058f, 317.9665f), new(-353.3986f, 297.9636f),
+ new(314.7512f, -197.45601f), new(207.1658f, 264.03918f), new(364.71512f, -298.97812f), new(203.3688f, 261.15018f), new(290.2794f, 232.1308f),
+ new(210.1382f, -350.8681f), new(300.86108f, -254.21721f), new(379.7067f, -419.04602f), new(-290.8676f, 199.8651f), new(-349.2692f, 416.0026f),
+ new(243.13719f, -217.5741f), new(418.4352f, -303.5275f), new(-222.5699f, 211.16801f), new(340.6804f, 230.6778f), new(224.0532f, 377.1997f),
+ new(-182.6616f, 252.5796f), new(443.2003f, -355.45898f), new(310.4967f, -179.60649f), new(-177.417f, 375.24078f), new(216.6843f, -349.0715f),
+ new(444.29538f, -367.2828f), new(-192.356f, 358.9229f), new(187.37181f, -230.5352f), new(207.4071f, 341.4351f), new(421.3353f, -346.0459f),
+ new(424.2113f, -350.38287f), new(-225.2822f, 357.31653f), new(231.0493f, -284.0845f), new(179.09491f, -309.7554f), new(230.3224f, -410.51462f),
+ new(-279.44458f, 401.34708f), new(295.8276f, -311.1138f), new(387.5423f, -417.2162f), new(-348.12082f, 257.6804f), new(299.9452f, -357.64612f),
+ new(363.2558f, -332.3445f), new(-189.686f, 303.2175f), new(188.3839f, -290.0003f), new(288.9386f, -298.1348f), new(271.4414f, -348.2464f),
+ new(-349.2823f, 340.336f), new(335.0204f, 231.3598f), new(-194.0778f, 319.8775f), new(-200.05069f, 262.2243f), new(241.18579f, -398.2616f),
+ new(249.3295f, 356.4588f), new(358.36902f, 266.58688f), new(392.30032f, 266.60788f), new(264.945f, -341.8911f), new(-392.8863f, 246.5963f),
+ new(-274.0662f, 180.7047f), new(-301.9497f, 178.2152f), new(200.6593f, 232.3706f), new(205.9964f, 279.83392f), new(-285.2749f, 236.87f),
+ new(365.07712f, -296.4541f), new(-219.883f, 313.7292f), new(256.606f, -242.2182f), new(366.4544f, -162.8883f), new(366.8047f, -231.3108f),
+ new(378.0673f, -166.42169f), new(361.05f, 292.7919f), new(356.0824f, -347.835f), new(404.823f, -222.153f), new(-194.07701f, 309.8145f),
+ new(303.5053f, -420.01788f), new(348.5147f, 256.3219f), new(414.3789f, -230.5073f), new(297.0502f, -359.2501f), new(-248.6066f, 260.8291f),
+ new(198.8209f, -308.7153f), new(-350.8922f, 417.75458f), new(186.57481f, -229.6812f), new(253.8616f, -419.93683f), new(-227.3557f, 260.6363f),
+ new(-373.8146f, 403.81552f), new(-361.6188f, 238.02391f), new(311.0137f, -176.1135f), new(334.7999f, 320.3849f), new(196.0433f, 365.956f),
+ new(-336.9356f, 349.8223f), new(195.7719f, 292.9504f), new(-300.3045f, 365.0379f), new(-274.7392f, 181.6667f), new(-390.7741f, 360.5672f),
+ new(-343.93808f, 349.8214f), new(-352.5416f, 304.9651f), new(-355.08908f, 347.3344f), new(357.3297f, -179.7159f), new(443.73837f, -366.6728f),
+ new(-296.6056f, 340.5683f), new(-166.6582f, 326.90482f), new(391.3172f, 322.2852f), new(-422.4801f, 308.69778f), new(302.1879f, 288.8617f),
+ new(-292.7166f, 202.5071f), new(314.0947f, -180.7665f), new(195.2912f, -238.2084f), new(414.54352f, -220.8907f), new(369.4215f, -357.28308f),
+ new(421.9151f, -368.6683f), new(-397.71442f, 365.74f), new(346.38593f, -296.51028f), new(353.7944f, -279.45102f), new(215.3802f, 371.2997f),
+ new(206.2551f, -228.2063f), new(332.78152f, -185.0204f), new(-288.84198f, 302.43143f), new(-238.0472f, 350.61002f), new(-349.64142f, 229.08609f),
+ new(357.33328f, -172.03299f), new(-406.31607f, 348.5951f), new(259.595f, -246.7162f)
+ ]},
+ { 771, [
+ new(414.86533f, -231.0143f), new(-222.7188f, 211.85701f), new(-288.57532f, 403.3678f), new(-301.2146f, 342.1267f), new(360.8454f, 372.4422f),
+ new(-302.0568f, 177.1832f), new(250.5311f, 283.3926f), new(229.32921f, -409.0868f), new(347.11868f, -279.0364f), new(224.0672f, 377.1998f),
+ new(346.7574f, -291.1149f), new(368.4469f, -417.8944f), new(-393.5434f, 241.84439f), new(363.59082f, -329.3916f), new(403.6639f, -278.8946f),
+ new(317.8282f, -178.44409f), new(211.72139f, 284.46692f), new(-232.3476f, 325.7927f), new(-346.5867f, 302.37833f), new(402.2409f, -279.45657f),
+ new(-417.64502f, 291.1815f), new(308.3104f, -294.2069f), new(444.3123f, -367.2688f), new(-249.9247f, 262.65222f), new(-354.1641f, 368.23358f),
+ new(262.67072f, -337.8511f), new(402.2955f, 251.4143f), new(-422.7323f, 307.18192f), new(230.3502f, -410.4918f), new(-351.4416f, 232.39929f),
+ new(198.8038f, -293.95148f), new(-363.41782f, 241.338f), new(-302.07318f, 168.2984f), new(303.02032f, -403.06088f), new(-351.0783f, 418.616f),
+ new(-375.1489f, 198.9265f), new(-409.3009f, 234.3354f), new(312.0494f, -301.4556f), new(295.0534f, 358.6996f), new(-304.8895f, 366.5611f),
+ new(-375.3136f, 181.0144f), new(298.6681f, -357.4671f), new(357.9943f, -172.719f), new(361.308f, 354.3924f), new(363.68f, 290.1729f),
+ new(-305.3713f, 287.3439f), new(-215.73169f, 421.24512f), new(-238.9881f, 298.251f), new(395.375f, 235.0159f), new(242.30971f, -345.50412f),
+ new(254.2925f, -419.1978f), new(366.7684f, 370.0972f), new(-426.3866f, 304.3698f), new(-405.4513f, 347.7175f), new(343.862f, -230.1468f),
+ new(375.1821f, -164.7267f), new(-274.1352f, 181.0507f), new(216.7122f, -349.0486f), new(370.5339f, -417.0864f), new(316.81058f, -368.4711f),
+ new(194.9852f, -350.4573f), new(345.91562f, -298.0501f), new(284.9564f, 233.8569f), new(415.03052f, -221.3969f), new(356.9393f, -173.321f),
+ new(215.5612f, 377.1998f), new(225.2218f, -185.4046f), new(180.2168f, -301.7245f), new(-353.11258f, 230.1393f), new(261.36362f, 371.896f),
+ new(244.93599f, -215.551f), new(215.2442f, -349.83362f), new(414.1173f, -231.3413f), new(278.31f, 264.5931f), new(211.1622f, -337.3343f),
+ new(354.7453f, -345.3659f), new(-290.6298f, 357.34592f), new(195.3723f, 372.2162f), new(-194.16049f, 266.0676f), new(235.31279f, -415.23468f),
+ new(335.4718f, 321.4777f), new(369.6167f, -231.8039f), new(-192.18489f, 358.4989f), new(226.0128f, -180.6746f), new(-408.3909f, 235.2604f),
+ new(233.837f, -232.3201f), new(307.4883f, -413.0589f), new(-302.61148f, 369.2861f), new(359.1488f, 267.65887f), new(-193.586f, 361.592f),
+ new(219.97841f, -162.00331f), new(248.9649f, 242.45891f), new(237.2587f, 317.9057f), new(418.1252f, -302.8715f), new(243.052f, -217.1841f),
+ new(-221.465f, 316.6482f), new(403.549f, 313.6695f), new(287.845f, 266.5761f), new(299.17108f, -251.7883f), new(-351.41132f, 413.103f),
+ new(402.1206f, 225.5562f), new(-239.2321f, 382.0442f), new(-227.296f, 361.3846f), new(-228.053f, 355.9956f), new(-231.5111f, 192.3578f),
+ new(310.3886f, 337.3652f), new(311.53882f, 289.8866f), new(202.2034f, 312.9765f), new(349.4089f, 346.64832f), new(-373.7806f, 196.0704f),
+ new(300.7091f, -356.6491f), new(349.8565f, 256.1619f), new(249.951f, 255.7473f), new(304.8701f, -255.96829f), new(246.633f, -214.637f),
+ new(378.228f, -397.75778f), new(-192.283f, 359.793f), new(-166.8929f, 297.579f), new(291.2413f, -397.9779f), new(-288.992f, 298.1394f),
+ new(-223.007f, 314.7442f), new(285.5835f, 372.8114f), new(-214.1257f, 419.0281f), new(241.7777f, -278.7519f), new(348.4215f, 256.10892f),
+ new(187.3977f, -230.5144f), new(200.8112f, -332.7313f), new(-166.16391f, 326.4011f), new(-289.7883f, 401.7948f), new(201.3868f, 265.73932f),
+ new(376.7161f, -163.92369f), new(-303.9953f, 285.4429f), new(-352.6163f, 345.797f), new(-291.194f, 307.1524f), new(403.4913f, 286.2028f),
+ new(243.3779f, -421.0379f), new(-411.8235f, 356.6552f), new(-290.9008f, 355.35892f), new(301.0539f, -229.84781f), new(-238.5101f, 303.02798f),
+ new(305.0138f, 315.9504f), new(238.35199f, 261.5723f), new(-412.7865f, 357.9872f), new(300.41937f, -289.7569f), new(-292.6885f, 250.2691f),
+ new(370.3238f, 309.4255f), new(248.41989f, 300.62552f), new(203.54431f, 371.8712f), new(279.10522f, -401.308f), new(-280.2306f, 400.6493f),
+ new(247.49341f, -153.16699f), new(255.223f, -222.2861f), new(334.8893f, 283.87943f), new(342.452f, -228.2078f), new(393.92612f, 319.65228f),
+ new(364.6478f, -330.8426f), new(267.6063f, -346.0396f), new(-353.5097f, 301.8373f), new(-364.84183f, 243.306f), new(255.12561f, 356.4528f),
+ new(219.8431f, 374.3906f), new(233.8695f, -244.2153f), new(-225.262f, 358.57062f), new(386.7523f, -419.7102f), new(-217.8948f, 208.287f),
+ new(358.60632f, -181.0389f), new(227.8968f, -183.2696f), new(300.9091f, -254.1783f), new(-222.719f, 318.3812f), new(332.0511f, -187.97429f),
+ new(418.88022f, -302.52148f), new(229.9032f, -282.4386f), new(314.5066f, -369.4491f), new(-418.479f, 290.30148f), new(-246.49469f, 260.1142f),
+ new(-223.26381f, 207.94101f), new(-166.7959f, 325.5171f), new(-270.54422f, 421.07022f), new(343.6478f, 321.31668f), new(-221.902f, 315.6622f),
+ new(-346.59958f, 295.4749f), new(-280.14258f, 402.6303f), new(281.5382f, -400.38602f), new(228.56369f, 317.1567f), new(-218.61299f, 315.3422f),
+ new(378.12808f, -339.0039f), new(305.0139f, -231.64081f), new(305.0021f, 241.3848f), new(-293.5368f, 198.3783f), new(353.26532f, -346.02692f),
+ new(299.7689f, -231.17581f), new(-300.8663f, 284.0159f), new(364.5931f, -298.0202f), new(309.25708f, 260.61288f), new(364.5197f, -231.04889f),
+ new(-352.8427f, 307.00632f), new(-193.833f, 357.75f), new(259.6995f, 307.1369f), new(-302.551f, 311.73242f), new(364.9927f, -228.4099f),
+ new(364.1348f, 266.3069f), new(366.0764f, -164.1123f), new(186.0827f, -231.22841f), new(179.67891f, -308.7387f), new(-232.9701f, 298.934f),
+ new(369.0503f, 362.4226f), new(215.3592f, -346.1283f), new(-348.0807f, 257.7124f), new(-390.91028f, 361.1934f), new(252.81949f, -420.01382f),
+ new(-188.5529f, 379.4489f), new(402.61792f, -277.4556f), new(235.7505f, -243.4763f), new(232.63899f, 263.31128f), new(359.2864f, 321.1023f),
+ new(353.7454f, -279.22888f), new(-413.1165f, 355.37122f), new(317.1474f, -301.85458f), new(196.19449f, -222.0612f), new(-177.40889f, 375.24792f),
+ new(380.2476f, -419.6051f), new(289.47638f, -302.90588f), new(304.4701f, 262.1179f), new(-389.5823f, 359.3574f), new(401.7559f, 374.2101f),
+ new(234.5957f, -292.7549f), new(327.7512f, -182.4421f), new(-395.91788f, 233.4974f), new(207.2358f, 264.09732f), new(-225.2367f, 253.36331f),
+ new(251.4178f, -402.08768f), new(330.7778f, 373.1893f), new(204.75911f, 236.11261f), new(299.94308f, -251.2883f), new(330.5201f, 285.9797f),
+ new(304.1171f, -358.18912f), new(-305.11798f, 289.4274f), new(251.27571f, -333.5101f), new(-287.551f, 297.5374f), new(347.9149f, 345.1073f),
+ new(348.443f, 374.9333f), new(-393.08438f, 247.5134f), new(269.6533f, -344.92062f), new(251.7747f, -282.6009f), new(391.28677f, 308.46252f),
+ new(312.3f, -177.44469f), new(-303.0683f, 286.6479f), new(205.89139f, 285.0679f), new(340.5207f, 329.5491f), new(282.5516f, 337.6993f),
+ new(-339.2247f, 353.5716f), new(-302.2155f, 254.00311f), new(398.771f, 235.2339f), new(194.9545f, -222.5242f), new(241.0277f, 279.1198f),
+ new(-338.2127f, 352.17358f), new(245.454f, -213.019f), new(414.31052f, -221.6679f), new(356.5993f, -182.6179f), new(310.1202f, -189.2541f),
+ new(388.9393f, -418.6602f), new(-398.9246f, 367.9824f), new(-288.1958f, 241.6613f), new(368.4471f, -298.5362f), new(-352.8656f, 234.3653f),
+ new(268.2323f, -342.9696f), new(214.8407f, 338.3135f), new(207.42899f, 341.4529f), new(336.2754f, 232.4818f), new(-365.2018f, 239.221f),
+ new(-353.5156f, 294.9479f), new(-241.15309f, 384.6962f), new(363.0274f, -282.9889f), new(196.50311f, 235.36061f), new(-241.3671f, 378.8682f),
+ new(303.45782f, 290.66162f), new(357.566f, 355.7194f), new(-236.8171f, 300.689f), new(-184.2685f, 262.2326f), new(294.72882f, -288.10422f),
+ new(367.0944f, -163.5523f), new(194.8162f, -239.66629f), new(-356.29507f, 348.1716f), new(-349.21732f, 416.046f), new(-192.24779f, 307.9497f),
+ new(-352.9023f, 341.462f), new(250.4599f, 241.85791f), new(-292.90182f, 203.36229f), new(257.1026f, 373.656f), new(-305.7373f, 283.4239f),
+ new(-243.1391f, 352.2922f), new(250.6906f, 358.0988f), new(350.369f, 374.3173f), new(245.646f, -180.74849f), new(297.6454f, -289.9349f),
+ new(250.7229f, 300.7405f), new(298.5241f, -255.1553f), new(-404.7173f, 297.8073f), new(420.7702f, -347.9422f), new(220.4904f, -162.7083f),
+ new(269.9067f, 314.72787f), new(290.3454f, 232.1849f), new(347.3436f, -297.5021f), new(215.69121f, -347.6466f), new(-202.4185f, 266.1123f),
+ new(-374.51288f, 203.7435f), new(305.3956f, 339.44717f), new(376.662f, -395.60678f), new(219.7894f, -162.9913f), new(231.0822f, -284.0576f),
+ new(404.6455f, -239.4008f), new(-427.25162f, 303.5028f), new(343.0683f, 284.38742f), new(296.67682f, -287.1622f), new(379.4286f, -419.9381f),
+ new(197.09691f, 294.0054f), new(197.2213f, 251.4295f), new(-304.87732f, 284.7359f), new(269.1257f, 227.2676f), new(-289.1607f, 422.5306f),
+ new(-406.5323f, 295.0843f), new(-298.9116f, 344.8167f), new(-201.3715f, 264.6633f), new(223.8197f, 338.08652f), new(299.3169f, -227.4588f),
+ new(-374.1646f, 399.6647f), new(320.6056f, -370.1881f), new(229.38919f, -284.9496f), new(257.852f, -243.4761f), new(248.2064f, -152.85799f),
+ new(289.92798f, 284.65192f), new(-288.6698f, 238.2213f), new(-351.1433f, 343.763f), new(398.0393f, 266.3069f), new(219.5321f, 334.568f),
+ new(-350.9317f, 304.3623f), new(208.0261f, -229.99829f), new(-406.7133f, 346.3755f), new(-215.9847f, 416.4501f), new(223.2731f, 282.81747f),
+ new(-279.48358f, 401.7223f), new(380.4839f, 330.7512f), new(-194.6548f, 314.8136f), new(-421.9003f, 308.10892f), new(404.42252f, -240.4998f),
+ new(-409.0739f, 236.2044f), new(312.6444f, -298.54858f), new(358.30008f, -347.36792f), new(-301.5802f, 168.9334f), new(341.914f, -230.9688f),
+ new(-240.6121f, 355.3392f), new(-166.1629f, 298.32602f), new(-343.9801f, 364.1506f), new(443.203f, -355.4569f), new(-221.2448f, 209.81801f),
+ new(272.8953f, -346.3926f), new(267.9367f, 315.41788f), new(226.00049f, 232.5642f), new(334.06808f, -186.3523f), new(405.18152f, -240.1378f),
+ new(353.68732f, -343.91092f), new(299.2141f, -354.5931f), new(-339.5497f, 350.7836f), new(293.1706f, 339.6143f), new(188.3308f, -289.7555f),
+ new(423.30322f, -370.1082f), new(-391.38928f, 357.6394f), new(-357.5269f, 415.5209f), new(-210.4717f, 417.35712f), new(315.81058f, -369.49512f),
+ new(-372.7229f, 201.2665f), new(-174.42189f, 365.86792f), new(363.1188f, -331.7276f), new(391.8153f, 362.37762f), new(-194.8478f, 305.0077f),
+ new(-202.7595f, 263.23032f), new(364.7459f, 242.5835f), new(-301.9898f, 178.4042f), new(237.2845f, 235.0492f), new(-233.94159f, 323.9607f),
+ new(-394.43988f, 235.1324f), new(-197.2195f, 247.2626f), new(282.4233f, -413.0299f), new(375.977f, -398.9528f), new(-349.98367f, 255.79239f),
+ new(345.5917f, -279.8944f), new(-242.6441f, 358.1482f), new(-372.3576f, 402.32867f), new(256.14612f, 282.6386f), new(196.12419f, -239.0513f),
+ new(321.3752f, 334.3307f), new(364.5624f, 319.65228f), new(-233.6026f, 327.5257f), new(405.4115f, -221.232f), new(314.01642f, -300.4336f),
+ new(255.85298f, -244.5921f), new(-233.1901f, 189.9678f), new(-366.2056f, 192.9274f), new(340.5091f, 270.839f), new(443.4113f, -367.9828f),
+ new(-250.19469f, 259.6552f), new(-238.9737f, 266.3633f), new(295.3038f, -285.2762f), new(349.5062f, 241.4282f), new(340.7444f, 230.7298f),
+ new(244.3989f, -422.4429f), new(260.0031f, 344.6024f), new(438.661f, -357.3399f), new(339.4367f, 329.91208f), new(-418.27902f, 292.0585f),
+ new(-391.1254f, 244.80739f), new(310.314f, -178.3257f), new(-242.0087f, 246.32431f), new(-350.93158f, 297.4599f), new(392.51932f, 267.07687f),
+ new(198.075f, 339.42493f), new(404.64648f, -221.82599f), new(-275.04617f, 180.1777f), new(311.6904f, -303.1879f), new(-371.6366f, 405.66968f),
+ new(-192.2498f, 318.0126f), new(-286.9048f, 239.8743f), new(-353.1996f, 296.4139f), new(177.7039f, -310.2817f), new(-289.8858f, 356.31592f),
+ new(339.3501f, 271.169f), new(-248.8777f, 261.2052f), new(205.1841f, -231.6073f), new(242.9809f, -423.0539f), new(350.3689f, 345.1863f),
+ new(422.5352f, -347.2922f), new(232.7881f, 231.4039f), new(-291.0628f, 200.81929f), new(195.1719f, 294.6684f), new(367.3609f, 241.6405f),
+ new(315.14658f, -366.1821f), new(366.0351f, -297.4462f), new(220.8411f, 286.52548f), new(-369.4249f, 403.5159f), new(298.6449f, -230.8778f),
+ new(295.5701f, 316.071f), new(290.7505f, 371.1054f), new(282.565f, 284.9349f), new(-301.5808f, 177.8382f), new(-352.8436f, 300.10492f),
+ new(218.6041f, 284.52048f), new(302.1401f, -356.7991f), new(366.4027f, -230.3499f), new(-269.48822f, 422.2752f), new(-228.5727f, 262.1683f),
+ new(-303.9445f, 235.2001f), new(182.8399f, -310.1647f), new(-395.5839f, 236.7144f), new(357.1953f, -179.0949f), new(-349.50568f, 259.68338f),
+ new(279.7282f, -397.89502f), new(-355.7347f, 305.64032f), new(299.8088f, -288.5822f), new(367.02808f, -334.8909f), new(244.928f, -179.76149f),
+ new(-289.8465f, 242.22711f), new(418.3442f, -301.7845f), new(228.9152f, -411.1468f), new(-229.49559f, 324.4917f), new(265.83072f, -347.40112f),
+ new(421.2102f, -345.4682f), new(404.8755f, -220.493f), new(244.64f, -181.20149f), new(-406.3603f, 300.0733f), new(-289.9887f, 423.6736f),
+ new(380.9711f, -348.2889f), new(-300.7366f, 347.3407f), new(241.1418f, -398.06168f), new(195.1982f, -237.7793f), new(216.2032f, -349.5776f),
+ new(421.1672f, -371.0482f), new(379.6496f, -418.7841f), new(195.2685f, -220.7862f), new(-290.0657f, 421.1476f), new(364.9771f, -295.9902f),
+ new(359.06497f, 292.12793f), new(259.539f, -232.5801f), new(-166.7119f, 299.08603f), new(-294.7596f, 342.9237f), new(233.9317f, 322.9717f),
+ new(310.879f, -175.49069f), new(-304.4365f, 371.8091f), new(247.284f, -181.4895f), new(388.9321f, 321.3513f), new(254.6307f, -290.9989f),
+ new(-166.7129f, 327.1591f), new(178.2919f, -306.8287f), new(285.66522f, -402.252f), new(414.3283f, -230.2773f), new(233.7702f, -285.2776f),
+ new(218.2837f, 340.5975f), new(332.64508f, -184.39229f), new(234.3645f, -241.5703f), new(-231.3336f, 326.33768f), new(-233.1536f, 325.1457f),
+ new(443.67828f, -366.3948f), new(256.46698f, -241.57611f), new(-340.7591f, 355.5376f), new(-270.3172f, 423.4202f), new(-365.9159f, 418.9639f),
+ new(-400.04858f, 366.45038f), new(-228.1611f, 190.8258f), new(-194.2808f, 320.8186f), new(-232.9831f, 194.39081f), new(366.0089f, 243.70149f)
+ ]},
+ { 772, [
+ new(376.71408f, -163.9247f), new(348.1979f, 345.5573f), new(-374.6376f, 400.4427f), new(289.92798f, 284.65192f), new(345.3408f, -298.5015f),
+ new(-269.513f, 424.5067f), new(265.6963f, -345.53763f), new(402.2955f, 251.4143f), new(300.70612f, -356.6511f), new(-289.8858f, 356.31592f),
+ new(259.6995f, 307.1369f), new(-197.0683f, 306.1307f), new(357.2303f, -171.55899f), new(393.398f, 318.8063f), new(-241.9361f, 379.7902f),
+ new(-301.9898f, 178.4032f), new(-307.0104f, 316.565f), new(-194.86919f, 371.8657f), new(-236.4902f, 189.61119f), new(403.4913f, 286.2028f),
+ new(401.7559f, 374.2101f), new(-233.6006f, 327.5207f), new(-241.1521f, 384.6872f), new(179.67891f, -308.7387f), new(-346.5827f, 302.4053f),
+ new(-364.8265f, 244.6553f), new(344.2087f, -232.4424f), new(417.41022f, -302.66248f), new(-391.1254f, 244.8064f), new(248.6749f, 301.05252f),
+ new(376.78458f, 371.8697f), new(-374.7598f, 203.49141f), new(231.67181f, -225.1458f), new(335.2478f, 321.17468f), new(-168.9556f, 321.4709f),
+ new(251.47049f, -419.5588f), new(317.5967f, -368.9579f), new(264.28308f, 261.27832f), new(-371.6487f, 299.1657f), new(-301.5808f, 177.8382f),
+ new(305.0021f, 241.3848f), new(348.28998f, 374.78928f), new(317.8042f, -178.33409f), new(-354.7089f, 408.4559f), new(-234.3622f, 190.9722f),
+ new(-198.72401f, 261.7587f), new(295.6318f, -288.7602f), new(399.0676f, -239.8332f), new(340.74338f, 230.7298f), new(358.60632f, -181.0389f),
+ new(342.5868f, -298.4415f), new(177.1913f, -296.34268f), new(-350.93158f, 297.4599f), new(-188.2754f, 268.79572f), new(177.08049f, -239.4171f),
+ new(178.4085f, -238.1801f), new(-245.4137f, 249.67331f), new(238.3026f, 278.0772f), new(-223.3463f, 265.0763f), new(-352.8636f, 234.3573f),
+ new(229.28221f, -408.8728f), new(269.8277f, -334.5409f), new(-305.3693f, 287.33688f), new(369.6076f, -225.6595f), new(-353.67657f, 295.4919f),
+ new(202.63051f, -235.1841f), new(-239.2611f, 299.092f), new(271.0617f, -338.2319f), new(227.6412f, -410.5308f), new(215.64421f, -347.4266f),
+ new(413.50098f, -364.55472f), new(-372.9738f, 201.0284f), new(-187.38249f, 249.09772f), new(321.3752f, 334.3307f), new(-383.81158f, 181.1703f),
+ new(-220.0313f, 261.9123f), new(-170.68901f, 294.0579f), new(-422.54532f, 308.9989f), new(-365.4345f, 241.1323f), new(403.549f, 313.6695f),
+ new(-177.2355f, 373.6434f), new(195.3116f, -345.6733f), new(401.0799f, -278.6056f), new(241.382f, -340.3038f), new(403.64932f, 240.10599f),
+ new(249.319f, -215.618f), new(-234.5814f, 435.6396f), new(428.2641f, -271.9331f), new(-308.848f, 291.9464f), new(-270.71f, 423.7137f),
+ new(-310.267f, 294.7434f), new(306.38058f, 339.9122f), new(-313.9427f, 254.3079f), new(-335.9127f, 351.1376f), new(243.35799f, -215.11699f),
+ new(-292.6885f, 250.2691f), new(350.3689f, 345.1863f), new(368.13562f, -223.42151f), new(203.54431f, 371.8712f), new(253.2245f, -417.57483f),
+ new(-290.9568f, 355.56992f), new(240.90181f, -216.7218f), new(312.30692f, -340.3842f), new(-354.1631f, 368.2306f), new(269.65128f, -344.9236f),
+ new(-220.297f, 315.3902f), new(316.0309f, -341.58618f), new(278.89713f, -411.0506f), new(179.3625f, -239.6321f), new(-391.8349f, 233.9584f),
+ new(350.2567f, -216.1649f), new(-189.4104f, 270.6727f), new(-242.6401f, 358.1322f), new(-371.33987f, 405.85492f), new(339.4175f, 269.301f),
+ new(-372.9567f, 302.8427f), new(-351.3335f, 256.224f), new(-168.40761f, 320.7139f), new(387.993f, 320.13733f), new(-381.8866f, 178.0253f),
+ new(-187.5024f, 270.74072f), new(402.1206f, 225.5562f), new(312.42142f, -250.5462f), new(-169.2006f, 320.2139f), new(-227.293f, 361.37262f),
+ new(289.98438f, -254.2891f), new(438.92688f, -362.4001f), new(298.1842f, -288.9316f), new(227.8294f, -285.30338f), new(-218.611f, 315.3592f),
+ new(411.90298f, -362.1257f), new(299.23788f, -227.0948f), new(365.34192f, 242.8805f), new(-213.5108f, 438.1338f), new(201.9884f, 236.0397f),
+ new(350.369f, 374.3173f), new(-223.6897f, 214.64041f), new(-348.2006f, 230.9363f), new(237.2845f, 235.0492f), new(-352.6143f, 345.79f),
+ new(345.60382f, -286.5957f), new(362.72382f, -281.93472f), new(254.2905f, -419.19882f), new(289.13013f, -399.6196f), new(-171.237f, 294.81488f),
+ new(310.0872f, -185.1001f), new(311.7329f, -406.3619f), new(-305.98032f, 284.1079f), new(372.1322f, 307.5765f), new(245.39899f, -212.765f),
+ new(305.9083f, -176.2831f), new(238.065f, -248.4584f), new(197.2213f, 251.4295f), new(-372.3576f, 402.32867f), new(312.0657f, -364.9319f),
+ new(-238.5081f, 303.019f), new(-421.9003f, 308.10892f), new(279.35242f, -402.1463f), new(380.4839f, 330.7512f), new(186.0859f, -217.7677f),
+ new(-400.31558f, 367.1244f), new(-422.8273f, 307.4339f), new(-196.04721f, 356.122f), new(249.951f, 255.7473f), new(-250.37169f, 260.0622f),
+ new(216.1839f, -338.9899f), new(-238.97269f, 266.3603f), new(-212.63f, 209.1689f), new(249.32391f, 242.6159f), new(-172.4345f, 262.41672f),
+ new(406.6163f, 239.583f), new(361.2575f, 318.7718f), new(-353.69272f, 302.58432f), new(403.3666f, 351.44232f), new(-232.9671f, 298.955f),
+ new(196.2843f, -292.0167f), new(305.0138f, 315.9504f), new(314.9854f, -248.9642f), new(240.081f, -246.5664f), new(-406.3583f, 300.0663f),
+ new(184.7139f, -219.0607f), new(312.5804f, -298.2536f), new(295.5701f, 316.071f), new(-377.1097f, 304.0777f), new(-279.06522f, 400.81348f),
+ new(206.4043f, 264.74982f), new(-351.8203f, 413.813f), new(-352.8396f, 300.0899f), new(402.56992f, -277.2346f), new(-286.9048f, 239.8743f),
+ new(-393.8414f, 242.3904f), new(219.2244f, -162.5733f), new(345.5095f, -276.6721f), new(341.4232f, 331.1079f), new(311.53882f, 289.88562f),
+ new(-301.5802f, 168.9334f), new(375.38452f, -338.3946f), new(217.2939f, -340.82388f), new(-197.1642f, 371.6997f), new(-290.42422f, 404.0608f),
+ new(197.09691f, 294.0054f), new(316.0374f, -252.7052f), new(394.9545f, -226.4618f), new(-194.4853f, 307.8307f), new(361.73282f, -331.1886f),
+ new(234.2811f, -287.4474f), new(-408.3909f, 235.2604f), new(380.78018f, -418.5864f), new(305.5419f, 262.27838f), new(-221.466f, 316.6482f),
+ new(366.78052f, 317.5388f), new(217.6542f, 378.3698f), new(226.6846f, 318.3006f), new(260.0031f, 344.6024f), new(-416.80212f, 288.1401f),
+ new(-352.8407f, 306.9953f), new(282.216f, 284.45792f), new(-228.199f, 356.7846f), new(310.1734f, -301.0836f), new(250.7601f, -282.0224f),
+ new(331.31882f, -195.0549f), new(-417.5751f, 287.1691f), new(296.6748f, -287.1642f), new(-293.7178f, 199.09729f), new(-366.2066f, 192.9274f),
+ new(-233.9966f, 326.7637f), new(317.0369f, -344.9022f), new(344.2368f, -296.8235f), new(310.5404f, -247.45221f), new(-351.0763f, 418.60498f),
+ new(292.4874f, -251.9531f), new(317.14542f, -301.5766f), new(-190.4055f, 362.1254f), new(299.1461f, -354.2771f), new(367.48462f, -412.8184f),
+ new(-290.62878f, 357.3399f), new(-222.2177f, 212.6094f), new(226.0148f, -179.6351f), new(340.7025f, 269.098f), new(223.2792f, 376.9958f),
+ new(-376.09772f, 305.48572f), new(227.8968f, -182.22011f), new(-349.2775f, 257.44f), new(231.1044f, -284.8414f), new(250.1486f, 357.6308f),
+ new(-393.0814f, 247.49939f), new(-290.8622f, 401.5938f), new(353.6393f, -343.6889f), new(207.42899f, 341.4529f), new(-212.3758f, 441.1358f),
+ new(234.82289f, 259.7143f), new(333.3478f, -194.0309f), new(308.8722f, -293.3176f), new(356.59232f, -182.0629f), new(-353.2503f, 342.186f),
+ new(-236.8181f, 300.689f), new(381.68118f, -417.7264f), new(256.1451f, 282.6386f), new(416.8687f, -346.21658f), new(261.552f, -336.9208f),
+ new(250.4599f, 241.85791f), new(-228.5727f, 262.1683f), new(255.12561f, 356.4528f), new(-185.88751f, 377.0914f), new(438.1319f, -361.7681f),
+ new(-373.9736f, 404.5547f), new(-312.54468f, 251.9989f), new(-375.2347f, 301.2907f), new(304.73383f, 291.5936f), new(-312.2657f, 254.7969f),
+ new(-383.3686f, 179.9023f), new(-304.1484f, 314.871f), new(357.9933f, -172.72f), new(372.99622f, -393.5563f), new(246.44011f, -152.9419f),
+ new(342.58148f, -277.0731f), new(299.80582f, -288.3042f), new(-248.8777f, 261.2052f), new(-306.55142f, 319.516f), new(415.48572f, -344.1136f),
+ new(-198.257f, 264.1167f), new(-360.1625f, 241.2343f), new(399.0946f, 354.5093f), new(438.29388f, -360.9711f), new(-405.4513f, 347.7175f),
+ new(-286.8808f, 198.9373f), new(416.991f, -365.8287f), new(257.9516f, 374.03598f), new(359.2825f, -341.78662f), new(-287.539f, 297.6054f),
+ new(366.0076f, -225.4685f), new(419.8887f, -347.3206f), new(177.70891f, -309.7057f), new(413.46973f, -346.0506f), new(363.5408f, -329.1616f),
+ new(370.5828f, 360.6607f), new(-243.43811f, 352.8602f), new(241.8871f, -278.2584f), new(330.7778f, 373.1893f), new(305.9909f, -400.8839f),
+ new(296.4859f, -229.85481f), new(-223.2f, 315.0922f), new(200.1243f, 265.93982f), new(-353.4296f, 230.68129f), new(225.2018f, -183.6101f),
+ new(397.2776f, 265.4078f), new(382.30518f, -418.6744f), new(367.3599f, 241.6405f), new(287.845f, 266.5761f), new(305.0099f, -231.29681f),
+ new(274.75742f, -401.83832f), new(-222.717f, 318.3712f), new(-309.4374f, 319.268f), new(-409.37692f, 234.6734f), new(233.4648f, -411.5427f),
+ new(374.60822f, -396.0103f), new(373.73108f, -164.4157f), new(-357.5269f, 415.9999f), new(372.82062f, -226.8345f), new(307.95892f, -404.1389f),
+ new(-236.3234f, 438.5186f), new(-404.7183f, 297.8073f), new(-386.6674f, 242.7934f), new(230.3482f, -410.4928f), new(292.8808f, -287.63022f),
+ new(250.72389f, 300.7405f), new(-221.4573f, 265.14432f), new(268.1663f, -342.6636f), new(312.35718f, -301.51062f), new(252.3378f, -220.9828f),
+ new(-339.67072f, 351.1796f), new(397.4695f, -225.2008f), new(-233.4764f, 438.6416f), new(277.4634f, -399.2723f), new(-197.21101f, 262.6727f),
+ new(365.3396f, -415.4644f), new(-209.77899f, 209.11789f), new(-214.1267f, 419.0281f), new(300.9511f, -404.9076f), new(269.9067f, 314.72787f),
+ new(327.7502f, -182.4421f), new(315.65942f, -301.0536f), new(-301.9892f, 169.4974f), new(194.8253f, 371.4492f), new(252.74611f, 284.9366f),
+ new(290.3454f, 232.1849f), new(366.0021f, 265.4078f), new(313.9249f, -343.0452f), new(-301.54462f, 343.03372f), new(267.7541f, 262.9323f),
+ new(-225.2257f, 253.41931f), new(-222.2113f, 263.1993f), new(-395.5829f, 236.7074f), new(-338.2137f, 352.17358f), new(-196.2723f, 310.2957f),
+ new(298.9428f, -285.8482f), new(375.59708f, -162.22469f), new(250.142f, -332.50482f), new(-240.6121f, 355.3392f), new(194.70241f, 237.1217f),
+ new(343.6478f, 321.31668f), new(-412.7855f, 357.9822f), new(257.9891f, -287.6301f), new(-171.48201f, 293.5829f), new(232.7881f, 231.4039f),
+ new(-351.1433f, 343.763f), new(394.5612f, 308.46252f), new(-292.8998f, 203.3523f), new(218.0151f, 284.04147f), new(-373.7796f, 196.0674f),
+ new(295.0534f, 358.6996f), new(202.27701f, -303.5203f), new(-396.0829f, 233.9454f), new(211.72139f, 284.46692f), new(247.7921f, -152.9289f),
+ new(-234.8561f, 380.06918f), new(-302.16718f, 168.5004f), new(308.0903f, -174.1731f), new(-351.4416f, 232.39929f), new(219.5321f, 334.568f),
+ new(284.7134f, 233.62491f), new(-234.1586f, 324.5847f), new(360.8071f, 266.53882f), new(309.4107f, -367.5939f), new(330.5201f, 285.9797f),
+ new(369.2596f, -415.7064f), new(260.4491f, -289.0801f), new(310.5689f, 260.9644f), new(-215.25279f, 441.0138f), new(309.57428f, -176.4301f),
+ new(-303.9953f, 285.4419f), new(226.8515f, 234.64719f), new(-308.5014f, 319.027f), new(-249.92369f, 262.6462f), new(-211.033f, 206.5279f),
+ new(289.6532f, -296.9126f), new(228.82889f, 261.2233f), new(216.7102f, -349.04962f), new(204.6855f, -238.3121f), new(272.89328f, -346.1036f),
+ new(223.2731f, 282.81747f), new(298.26138f, -256.1601f), new(266.5497f, -333.92288f), new(-194.1862f, 357.526f), new(-291.194f, 307.1524f),
+ new(201.627f, -306.33328f), new(359.6593f, -173.32599f), new(-413.2125f, 355.84622f), new(370.4252f, -396.3163f), new(349.5062f, 241.4282f),
+ new(229.8734f, -282.96738f), new(348.5465f, 256.33292f), new(-305.15448f, 367.0711f), new(255.5628f, -229.8498f), new(304.1131f, -357.8971f),
+ new(217.8069f, -338.7579f), new(-225.263f, 358.57062f), new(296.9951f, -356.2681f), new(-279.72223f, 401.71848f), new(219.8431f, 374.3906f),
+ new(-239.2321f, 382.0442f), new(-302.1728f, 177.4702f), new(213.86621f, -349.47662f), new(301.2709f, -226.1168f), new(-349.21732f, 416f),
+ new(223.8197f, 338.08652f), new(206.6494f, 285.63092f), new(364.6458f, -330.8436f), new(-406.6203f, 346.2385f), new(366.4865f, -334.7666f),
+ new(343.06732f, 284.38742f), new(290.7505f, 371.1044f), new(310.0504f, -252.9532f), new(353.4198f, -278.0647f), new(426.8461f, -273.1361f),
+ new(220.4894f, -162.7093f), new(-224.3457f, 211.3054f), new(-229.49359f, 324.50668f), new(409.51498f, -364.4877f), new(421.23438f, -218.416f),
+ new(261.36362f, 371.896f), new(-359.2631f, 350.3606f), new(-298.9116f, 344.8167f), new(251.4178f, -402.08768f), new(-300.7356f, 347.33173f),
+ new(349.8565f, 256.1619f), new(331.92682f, -192.0789f), new(219.9544f, -161.89531f), new(395.5476f, -239.7872f), new(241.527f, -248.7664f),
+ new(-300.86432f, 284.0329f), new(234.5066f, 317.3936f), new(-302.2145f, 254.00111f), new(247.2581f, -152.11589f), new(-289.4142f, 402.6688f),
+ new(-346.59958f, 295.50092f), new(337.1993f, 286.0744f), new(178.2939f, -306.8367f), new(354.74332f, -345.3669f), new(-235.9871f, 353.2512f),
+ new(355.98828f, -172.94f), new(322.9535f, 316.8518f), new(-279.97223f, 399.9875f), new(342.7377f, -230.2064f), new(268.4607f, 315.67288f),
+ new(-378.0206f, 183.2214f), new(-399.8866f, 369.3094f), new(301.0509f, -229.8508f), new(-398.9256f, 367.9824f), new(198.78299f, 341.1509f),
+ new(394.6928f, 362.70972f), new(-417.43613f, 289.0161f), new(195.6739f, 294.9284f), new(-288.1938f, 241.6513f), new(418.1984f, -218.283f),
+ new(-195.75119f, 369.3657f), new(268.0957f, -336.4829f), new(-339.22272f, 353.56558f), new(-394.43988f, 235.13141f), new(393.9636f, 267.66382f),
+ new(-411.8235f, 356.6552f), new(308.1859f, 264.6024f), new(187.0529f, -219.23871f), new(-288.7638f, 238.5873f), new(403.6619f, -278.8956f),
+ new(-407.0253f, 295.8703f), new(-350.9317f, 304.3623f), new(340.4577f, -232.54741f), new(-218.8647f, 211.10141f), new(202.07959f, -334.3883f),
+ new(295.2408f, -284.9812f), new(202.2034f, 312.9765f), new(314.0144f, -300.4356f), new(241.1418f, -398.0637f), new(-343.9801f, 364.1506f),
+ new(313.8027f, -367.5719f), new(199.26451f, -238.92711f), new(418.8792f, -302.5225f), new(-350.7005f, 259.404f), new(-347.7903f, 342.252f),
+ new(-406.4133f, 349.0465f), new(347.42172f, -233.6154f), new(-409.0729f, 236.2014f), new(294.3014f, -254.71309f), new(309.70892f, -401.1209f),
+ new(362.24158f, 355.79422f), new(364.9936f, 353.97122f), new(-216.4477f, 417.5751f), new(337.5254f, 233.0108f), new(293.1706f, 339.6143f),
+ new(-307.4325f, 237.8491f), new(348.22772f, -212.8309f), new(352.86472f, -214.1799f), new(214.2597f, 337.50052f), new(202.58899f, 344.1859f),
+ new(-396.7346f, 366.9964f), new(-302.61148f, 369.2861f), new(269.1257f, 227.2676f), new(-215.73169f, 421.2431f), new(367.5871f, 290.1719f),
+ new(-304.4335f, 371.7951f), new(310.3886f, 337.3642f), new(-363.4045f, 242.6953f), new(397.6626f, -237.6972f), new(283.1496f, 339.1293f),
+ new(259.2351f, -285.8391f), new(256.7071f, -285.5081f), new(344.40448f, -274.9911f), new(211.0526f, -338.1713f), new(-291.0638f, 200.81929f),
+ new(-375.5458f, 199.19841f), new(340.2092f, 331.3559f), new(246.62999f, -214.63899f), new(-302.551f, 311.7304f), new(418.3192f, -301.6695f),
+ new(-232.3486f, 325.7927f), new(351.97632f, -345.3449f), new(372.77762f, -416.99338f), new(357.19733f, -179.10289f), new(395.7075f, -222.7798f),
+ new(378.2455f, -345.2166f), new(-287.11322f, 401.6318f), new(264.825f, -345.6668f), new(349.2945f, 257.0189f), new(364.1091f, 292.58792f),
+ new(233.79341f, -285.8204f), new(185.7883f, -287.7097f), new(-226.6707f, 258.8433f), new(419.9994f, -216.539f), new(-304.6983f, 284.9739f),
+ new(-194.826f, 261.6007f), new(-346.0355f, 255.982f), new(196.1169f, 295.4874f), new(231.64081f, -229.4038f), new(-353.81558f, 293.52292f),
+ new(347.75278f, -299.3825f), new(324.4175f, 317.2488f), new(354.15472f, -218.4929f), new(-420.42932f, 307.44592f), new(231.1776f, 322.4716f),
+ new(268.9017f, 316.2489f), new(-267.62698f, 423.6567f), new(-365.9159f, 418.9609f), new(241.7686f, 314.7646f), new(284.9965f, 372.24942f),
+ new(266.71628f, -343.01862f), new(-344.9803f, 416f), new(294.2872f, -309.0776f), new(312.8153f, -177.6131f), new(-300.6478f, 177.4182f),
+ new(-270.341f, 425.6487f), new(-244.5121f, 349.96918f), new(221.4004f, -163.1363f), new(313.0819f, -343.8892f), new(-220.637f, 356.4906f),
+ new(208.0094f, 286.41193f), new(-415.3601f, 287.4801f), new(367.0578f, -331.7216f), new(297.0039f, -229.2418f), new(299.3771f, -358.95612f),
+ new(200.121f, -303.84628f), new(285.535f, 287.0309f), new(425.7131f, -271.27512f), new(-235.8342f, 193.0022f), new(249.8289f, 302.10452f),
+ new(252.8076f, 359.9918f), new(379.8036f, 371.5497f), new(-398.3766f, 365.5184f), new(-309.85968f, 250.4089f), new(-221.52899f, 315.50717f),
+ new(-231.0092f, 189.4632f), new(-340.7511f, 355.5806f), new(-365.21252f, 242.3103f), new(317.0387f, -367.98288f), new(340.1405f, 269.956f),
+ new(-182.32649f, 266.24872f), new(-283.9678f, 238.55031f), new(287.6814f, 236.2529f), new(-400.9783f, 296.1203f), new(406.0459f, -279.76758f),
+ new(278.774f, 265.8511f), new(-195.4862f, 359.318f), new(-238.1081f, 381.8762f), new(220.8401f, 286.5325f), new(-398.9256f, 367.9824f),
+ new(349.4089f, 346.6513f)
+ ]},
+ { 782, [
+ new(178.4085f, -238.1801f), new(-170.68901f, 294.0579f), new(360.8071f, 266.53882f), new(316.0309f, -341.58618f), new(372.99622f, -393.5563f),
+ new(-287.539f, 297.6054f), new(366.0021f, 265.4078f), new(353.6393f, -343.6889f), new(-228.199f, 356.7846f), new(223.2731f, 282.81747f),
+ new(416.8687f, -346.21658f), new(-213.5108f, 438.1338f), new(-234.1586f, 324.5847f), new(369.6076f, -225.6595f), new(261.36362f, 371.896f),
+ new(278.774f, 265.8511f), new(-308.5014f, 319.027f), new(310.5689f, 260.9644f), new(310.1734f, -301.0836f), new(-422.8273f, 307.4339f),
+ new(438.29388f, -360.9711f), new(-240.6121f, 355.3392f), new(292.8808f, -287.63022f), new(402.1206f, 225.5562f), new(366.4865f, -334.7666f),
+ new(-232.9671f, 298.955f), new(201.9884f, 236.0397f), new(308.0903f, -174.1731f), new(413.46973f, -346.0506f), new(330.5201f, 285.9797f),
+ new(-351.1433f, 343.763f), new(-246.49269f, 260.13022f), new(-304.4335f, 371.7951f), new(214.2776f, -345.7703f), new(237.2845f, 235.0492f),
+ new(-243.43811f, 352.8602f), new(-241.9361f, 379.7902f), new(186.0859f, -217.7677f), new(290.3454f, 232.1849f), new(-238.97269f, 266.3603f),
+ new(-171.237f, 294.81488f), new(-301.54462f, 343.03372f), new(406.6163f, 239.583f), new(380.78018f, -418.5864f), new(349.5062f, 241.4282f),
+ new(195.3116f, -345.6733f), new(292.4874f, -251.9531f), new(340.4577f, -232.54741f), new(-350.93158f, 297.4599f), new(-286.9048f, 239.8743f),
+ new(317.8042f, -178.33409f), new(-182.32649f, 266.24872f), new(374.60822f, -396.0103f), new(-359.2631f, 350.3606f), new(289.98438f, -254.2891f),
+ new(401.0799f, -278.6056f), new(-270.71f, 423.7137f), new(217.8069f, -338.7579f), new(314.0144f, -300.4356f), new(375.38452f, -338.3946f),
+ new(-216.4477f, 417.5751f), new(345.5095f, -276.6721f), new(403.6619f, -278.8956f), new(-289.4142f, 402.6688f), new(241.8871f, -278.2584f),
+ new(344.2368f, -296.8235f), new(355.98828f, -172.94f), new(299.1461f, -354.2771f), new(361.8203f, -182.4949f), new(-292.6885f, 250.2691f),
+ new(311.53882f, 289.88562f), new(301.2709f, -226.1168f), new(-225.263f, 358.57062f), new(185.7883f, -287.7097f), new(403.4913f, 286.2028f),
+ new(297.6174f, -254.1731f), new(-300.86432f, 284.0329f), new(257.9891f, -287.6301f), new(343.06732f, 284.38742f), new(-366.2066f, 192.9274f),
+ new(207.42899f, 341.4529f), new(-349.21732f, 416f), new(312.35718f, -301.51062f), new(241.382f, -340.3038f), new(268.1663f, -342.6636f),
+ new(264.28308f, 261.27832f), new(382.30518f, -418.6744f), new(-222.2113f, 263.1993f), new(-223.3463f, 265.0763f), new(-293.7178f, 199.09729f),
+ new(202.07959f, -334.3883f), new(394.9545f, -226.4618f), new(-312.2657f, 254.7969f), new(265.6963f, -345.53763f), new(-194.86919f, 371.8657f),
+ new(305.9909f, -400.8839f), new(246.62999f, -214.63899f), new(-364.8265f, 244.6553f), new(250.72389f, 300.7405f), new(393.9636f, 267.66382f),
+ new(240.90181f, -216.7218f), new(345.3408f, -298.5015f), new(-372.3576f, 402.32867f), new(395.5476f, -239.7872f), new(-218.611f, 315.3592f),
+ new(-386.6674f, 242.7934f), new(-226.6707f, 258.8433f), new(-229.49359f, 324.50668f), new(199.26451f, -238.92711f), new(-222.717f, 318.3712f),
+ new(-312.54468f, 251.9989f), new(426.8461f, -273.1361f), new(220.4894f, -162.7093f), new(342.5868f, -298.4415f), new(-416.80212f, 288.1401f),
+ new(301.0509f, -229.8508f), new(267.7541f, 262.9323f), new(179.67891f, -308.7387f), new(-303.9953f, 285.4419f), new(269.9067f, 314.72787f),
+ new(359.2825f, -341.78662f), new(230.3482f, -410.4928f), new(361.73282f, -331.1886f), new(250.4599f, 241.85791f), new(-227.293f, 361.37262f),
+ new(-375.2347f, 301.2907f), new(-360.1625f, 241.2343f), new(187.0529f, -219.23871f), new(226.8515f, 234.64719f), new(376.78458f, 371.8697f),
+ new(229.28221f, -408.8728f), new(232.7881f, 231.4039f), new(316.0374f, -252.7052f), new(-212.3758f, 441.1358f), new(219.8431f, 374.3906f),
+ new(367.5871f, 290.1719f), new(343.6478f, 321.31668f), new(394.5612f, 308.46252f), new(-301.9898f, 178.4032f), new(-223.2f, 315.0922f),
+ new(342.7377f, -230.2064f), new(394.6928f, 362.70972f), new(357.9933f, -172.72f), new(206.4043f, 264.74982f), new(-406.6203f, 346.2385f),
+ new(307.95892f, -404.1389f), new(341.4232f, 331.1079f), new(197.2213f, 251.4295f), new(-310.267f, 294.7434f), new(428.2641f, -271.9331f),
+ new(-288.7638f, 238.5873f), new(203.54431f, 371.8712f), new(-339.22272f, 353.56558f), new(352.86472f, -214.1799f), new(227.6412f, -410.5308f),
+ new(313.8027f, -367.5719f), new(269.1257f, 227.2676f), new(308.8722f, -293.3176f), new(246.44011f, -152.9419f), new(295.6318f, -288.7602f),
+ new(367.3599f, 241.6405f), new(-222.2177f, 212.6094f), new(-224.3457f, 211.3054f), new(238.065f, -248.4584f), new(231.1044f, -284.8414f),
+ new(282.216f, 284.45792f), new(312.5804f, -298.2536f), new(256.1451f, 282.6386f), new(234.2811f, -287.4474f), new(-353.67657f, 295.4919f),
+ new(225.2018f, -183.6101f), new(-187.5024f, 270.74072f), new(253.2245f, -417.57483f), new(-307.4325f, 237.8491f), new(-197.0683f, 306.1307f),
+ new(393.398f, 318.8063f), new(295.5701f, 316.071f), new(364.9936f, 353.97122f), new(-177.2355f, 373.6434f), new(296.9951f, -356.2681f),
+ new(-194.4853f, 307.8307f), new(289.13013f, -399.6196f), new(296.6748f, -287.1642f), new(305.0099f, -231.29681f), new(337.5254f, 233.0108f),
+ new(418.8792f, -302.5225f), new(274.75742f, -401.83832f), new(-223.6897f, 214.64041f), new(348.5465f, 256.33292f), new(200.121f, -303.84628f),
+ new(272.89328f, -346.1036f), new(350.369f, 374.3173f), new(-196.04721f, 356.122f), new(312.42142f, -250.5462f), new(-353.69272f, 302.58432f),
+ new(-305.15448f, 367.0711f), new(-357.5269f, 415.9999f), new(-302.16718f, 168.5004f), new(373.73108f, -164.4157f), new(304.73383f, 291.5936f),
+ new(402.2955f, 251.4143f), new(416.991f, -365.8287f), new(-372.9738f, 201.0284f), new(223.2792f, 376.9958f), new(290.7505f, 371.1044f),
+ new(-234.5814f, 435.6396f), new(397.4695f, -225.2008f), new(-407.0253f, 295.8703f), new(-291.0638f, 200.81929f), new(309.57428f, -176.4301f),
+ new(363.5408f, -329.1616f), new(-394.43988f, 235.13141f), new(269.8277f, -334.5409f), new(-242.6401f, 358.1322f), new(376.71408f, -163.9247f),
+ new(322.9535f, 316.8518f), new(251.47049f, -419.5588f), new(370.4252f, -396.3163f), new(268.4607f, 315.67288f), new(-395.5829f, 236.7074f),
+ new(-409.37692f, 234.6734f), new(351.97632f, -345.3449f), new(310.5404f, -247.45221f), new(317.0369f, -344.9022f), new(213.86621f, -349.47662f),
+ new(194.70241f, 237.1217f), new(401.7559f, 374.2101f), new(-290.9568f, 355.56992f), new(234.82289f, 259.7143f), new(418.1984f, -218.283f),
+ new(356.59232f, -182.0629f), new(350.3689f, 345.1863f), new(-290.8622f, 401.5938f), new(335.2478f, 321.17468f), new(-209.77899f, 209.11789f),
+ new(-279.97223f, 399.9875f), new(-228.5727f, 262.1683f), new(-305.3693f, 287.33688f), new(240.081f, -246.5664f), new(-393.8414f, 242.3904f),
+ new(331.31882f, -195.0549f), new(-300.7356f, 347.33173f), new(368.13562f, -223.42151f), new(-417.5751f, 287.1691f), new(260.0031f, 344.6024f),
+ new(233.4648f, -411.5427f), new(310.3886f, 337.3642f), new(438.92688f, -362.4001f), new(238.3026f, 278.0772f), new(-352.8636f, 234.3573f),
+ new(-374.6376f, 400.4427f), new(254.2905f, -419.19882f), new(365.3396f, -415.4644f), new(-193.0412f, 367.7647f), new(223.8197f, 338.08652f),
+ new(309.70892f, -401.1209f), new(309.4107f, -367.5939f), new(252.3378f, -220.9828f), new(369.2596f, -415.7064f), new(294.3014f, -254.71309f),
+ new(197.09691f, 294.0054f), new(310.0872f, -185.1001f), new(-351.8203f, 413.813f), new(-378.0206f, 183.2214f), new(266.5497f, -333.92288f),
+ new(-302.1728f, 177.4702f), new(-307.0104f, 316.565f), new(-195.75119f, 369.3657f), new(-396.0829f, 233.9454f), new(-169.2006f, 320.2139f),
+ new(268.0957f, -336.4829f), new(-298.45648f, 367.4111f), new(-291.194f, 307.1524f), new(-408.3909f, 235.2604f), new(-190.4055f, 362.1254f),
+ new(-248.8777f, 261.2052f), new(417.41022f, -302.66248f), new(-234.3622f, 190.9722f), new(317.14542f, -301.5766f), new(403.3666f, 351.44232f),
+ new(255.5628f, -229.8498f), new(215.64421f, -347.4266f), new(259.6995f, 307.1369f), new(295.0534f, 358.6996f), new(-232.3486f, 325.7927f),
+ new(-350.9317f, 304.3623f), new(226.6846f, 318.3006f), new(293.1706f, 339.6143f), new(-383.81158f, 181.1703f), new(-339.67072f, 351.1796f),
+ new(247.7921f, -152.9289f), new(-351.4416f, 232.39929f), new(-349.2775f, 257.44f), new(298.1842f, -288.9316f), new(330.7778f, 373.1893f),
+ new(344.2087f, -232.4424f), new(295.2408f, -284.9812f), new(251.4178f, -402.08768f), new(-197.21101f, 262.6727f), new(-354.1631f, 368.2306f),
+ new(324.4175f, 317.2488f), new(300.70612f, -356.6511f), new(327.7502f, -182.4421f), new(261.552f, -336.9208f), new(-211.033f, 206.5279f),
+ new(-399.8866f, 369.3094f), new(-172.4345f, 262.41672f), new(-415.3601f, 287.4801f), new(333.3478f, -194.0309f), new(331.0382f, -190.0701f),
+ new(364.6458f, -330.8436f), new(-421.9003f, 308.10892f), new(-302.2145f, 254.00111f), new(397.2776f, 265.4078f), new(-241.1521f, 384.6872f),
+ new(-298.9116f, 344.8167f), new(305.9083f, -176.2831f), new(-400.31558f, 367.1244f), new(-391.1254f, 244.8064f), new(-236.4902f, 189.61119f),
+ new(339.4175f, 269.301f), new(-269.513f, 424.5067f), new(-350.7005f, 259.404f), new(-351.3335f, 256.224f), new(-279.06522f, 400.81348f),
+ new(-188.2754f, 268.79572f), new(-238.5081f, 303.019f), new(349.8565f, 256.1619f), new(-305.98032f, 284.1079f), new(321.3752f, 334.3307f),
+ new(177.08049f, -239.4171f), new(366.0076f, -225.4685f), new(-381.8866f, 178.0253f), new(-377.1097f, 304.0777f), new(255.12561f, 356.4528f),
+ new(247.2581f, -152.11589f), new(-352.8407f, 306.9953f), new(-197.1642f, 371.6997f), new(-406.3583f, 300.0663f), new(229.8734f, -282.96738f),
+ new(438.1319f, -361.7681f), new(354.74332f, -345.3669f), new(227.8968f, -182.22011f), new(-353.4296f, 230.68129f), new(245.39899f, -212.765f),
+ new(241.527f, -248.7664f), new(-239.2611f, 299.092f), new(249.951f, 255.7473f), new(-220.0313f, 261.9123f), new(348.1979f, 345.5573f),
+ new(-383.3686f, 179.9023f), new(287.845f, 266.5761f), new(-215.25279f, 441.0138f), new(403.549f, 313.6695f), new(-250.37169f, 260.0622f),
+ new(-289.8858f, 356.31592f), new(358.60632f, -181.0389f), new(-353.2503f, 342.186f), new(-417.43613f, 289.0161f), new(-376.09772f, 305.48572f),
+ new(-420.42932f, 307.44592f), new(-405.4513f, 347.7175f), new(-413.2125f, 355.84622f), new(-352.8396f, 300.0899f), new(-302.61148f, 369.2861f),
+ new(231.67181f, -225.1458f), new(-363.4045f, 242.6953f), new(-168.40761f, 320.7139f), new(413.50098f, -364.55472f), new(219.2244f, -162.5733f),
+ new(-371.33987f, 405.85492f), new(299.80582f, -288.3042f), new(372.82062f, -226.8345f), new(289.6532f, -296.9126f), new(298.26138f, -256.1601f),
+ new(-249.92369f, 262.6462f), new(204.6855f, -238.3121f), new(-371.6487f, 299.1657f), new(279.35242f, -402.1463f), new(202.63051f, -235.1841f),
+ new(-214.1267f, 419.0281f), new(217.2939f, -340.82388f), new(-187.38249f, 249.09772f), new(-301.5802f, 168.9334f), new(-340.7511f, 355.5806f),
+ new(-352.6143f, 345.79f), new(196.2843f, -292.0167f), new(201.627f, -306.33328f), new(-233.6006f, 327.5207f), new(202.27701f, -303.5203f),
+ new(306.38058f, 339.9122f), new(314.9854f, -248.9642f), new(-221.4573f, 265.14432f), new(179.3625f, -239.6321f), new(-239.2321f, 382.0442f),
+ new(348.22772f, -212.8309f), new(-352.6877f, 299.6353f), new(289.92798f, 284.65192f), new(367.48462f, -412.8184f), new(-279.72223f, 401.71848f),
+ new(-288.1938f, 241.6513f), new(340.7025f, 269.098f), new(409.51498f, -364.4877f), new(-198.72401f, 261.7587f), new(-346.59958f, 295.50092f),
+ new(-422.54532f, 308.9989f), new(250.7601f, -282.0224f), new(269.65128f, -344.9236f), new(312.30692f, -340.3842f), new(-346.5827f, 302.4053f),
+ new(206.6494f, 285.63092f), new(-221.466f, 316.6482f), new(218.0151f, 284.04147f), new(312.0657f, -364.9319f), new(-236.79509f, 299.546f),
+ new(243.35799f, -215.11699f), new(211.0526f, -338.1713f), new(-302.551f, 311.7304f), new(350.2567f, -216.1649f), new(284.7134f, 233.62491f),
+ new(-353.81558f, 293.52292f), new(219.5321f, 334.568f), new(227.8294f, -285.30338f), new(277.4634f, -399.2723f), new(202.2034f, 312.9765f),
+ new(399.0676f, -239.8332f), new(365.34192f, 242.8805f), new(216.7102f, -349.04962f), new(234.5066f, 317.3936f), new(211.72139f, 284.46692f),
+ new(177.1913f, -296.34268f), new(184.7139f, -219.0607f), new(-195.4862f, 359.318f), new(-194.1862f, 357.526f), new(300.9511f, -404.9076f),
+ new(-375.5458f, 199.19841f), new(-338.2137f, 352.17358f), new(362.72382f, -281.93472f), new(-411.8235f, 356.6552f), new(331.92682f, -192.0789f),
+ new(296.4859f, -229.85481f), new(-233.4764f, 438.6416f), new(305.0138f, 315.9504f), new(-351.0763f, 418.60498f), new(-304.1484f, 314.871f),
+ new(342.58148f, -277.0731f), new(257.9516f, 374.03598f), new(340.74338f, 230.7298f), new(177.70891f, -309.7057f), new(366.78052f, 317.5388f),
+ new(345.60382f, -286.5957f), new(-306.55142f, 319.516f), new(278.89713f, -411.0506f), new(-236.8181f, 300.689f), new(226.0148f, -179.6351f),
+ new(380.4839f, 330.7512f), new(-398.9256f, 367.9824f), new(259.2351f, -285.8391f), new(-404.7183f, 297.8073f), new(299.23788f, -227.0948f),
+ new(-301.5808f, 177.8382f), new(216.1839f, -338.9899f), new(305.0021f, 241.3848f), new(284.9965f, 372.24942f), new(-343.9801f, 364.1506f),
+ new(250.142f, -332.50482f), new(313.9249f, -343.0452f), new(219.9544f, -161.89531f), new(-365.4345f, 241.1323f), new(395.7075f, -222.7798f),
+ new(421.23438f, -218.416f), new(-245.4137f, 249.67331f), new(-171.48201f, 293.5829f), new(-301.9892f, 169.4974f), new(403.64932f, 240.10599f),
+ new(394.9066f, 268.9968f), new(195.6739f, 294.9284f), new(347.92148f, -277.55008f), new(364.1091f, 292.58792f), new(199.7063f, -300.0637f),
+ new(-189.4104f, 270.6727f), new(-235.9871f, 353.2512f), new(387.993f, 320.13733f), new(419.8887f, -347.3206f), new(-373.9736f, 404.5547f),
+ new(370.5828f, 360.6607f), new(317.5967f, -368.9579f), new(-236.3234f, 438.5186f), new(361.2575f, 318.7718f), new(402.56992f, -277.2346f),
+ new(-365.9159f, 418.9609f), new(348.28998f, 374.78928f), new(357.19733f, -179.10289f), new(-235.8342f, 193.0022f), new(-374.7598f, 203.49141f),
+ new(378.2455f, -345.2166f), new(-368.9018f, 199.1944f), new(372.1322f, 307.5765f), new(367.1236f, -224.0395f), new(-346.0355f, 255.982f),
+ new(299.3771f, -358.95612f), new(317.0387f, -367.98288f), new(231.1776f, 322.4716f), new(-168.9556f, 321.4709f), new(-406.4133f, 349.0465f),
+ new(178.2939f, -306.8367f), new(-292.8998f, 203.3523f), new(-196.2723f, 310.2957f), new(-373.7796f, 196.0674f), new(256.7071f, -285.5081f),
+ new(249.32391f, 242.6159f), new(252.74611f, 284.9366f), new(397.6626f, -237.6972f), new(196.1169f, 295.4874f), new(208.0094f, 286.41193f),
+ new(305.5419f, 262.27838f), new(304.1131f, -357.8971f), new(283.1496f, 339.1293f), new(-233.9966f, 326.7637f), new(-309.4374f, 319.268f),
+ new(344.40448f, -274.9911f), new(228.82889f, 261.2233f), new(248.6749f, 301.05252f), new(249.319f, -215.618f), new(-393.0814f, 247.49939f),
+ new(354.15472f, -218.4929f), new(250.1486f, 357.6308f), new(340.2092f, 331.3559f), new(-290.62878f, 357.3399f), new(353.4198f, -278.0647f),
+ new(241.1418f, -398.0637f), new(260.4491f, -289.0801f), new(-313.9427f, 254.3079f), new(194.8253f, 371.4492f), new(310.0504f, -252.9532f),
+ new(-409.0729f, 236.2014f), new(379.8036f, 371.5497f), new(-169.5625f, 254.11671f), new(-185.88751f, 377.0914f), new(-283.9678f, 238.55031f),
+ new(-239.00409f, 300.837f), new(375.59708f, -162.22469f), new(-220.637f, 356.4906f), new(-169.43901f, 293.49588f)
+ ]},
+ { 773, [
+ new(176.2702f, -303.6013f), new(244.2415f, -226.6668f), new(363.05542f, -395.8068f), new(306.8281f, -199.7965f), new(257.75558f, 357.51648f),
+ new(-293.29788f, 185.5789f), new(348.8282f, 311.45718f), new(290.1052f, -295.22412f), new(376.7104f, 341.092f), new(318.037f, 256.9742f),
+ new(383.4561f, -297.4392f), new(-233.6757f, 362.8712f), new(291.8962f, -300.88412f), new(-355.0964f, 292.53708f), new(-185.3224f, 314.2289f),
+ new(297.91888f, -409.4278f), new(276.4217f, 313.7618f), new(304.45392f, -350.395f), new(310.49597f, -244.7375f), new(-301.55603f, 305.3076f),
+ new(-350.0838f, 414.5488f), new(318.0848f, 341.7884f), new(245.3761f, -174.942f), new(-237.86679f, 201.65361f), new(-290.811f, 303.1916f),
+ new(222.8822f, 340.9068f), new(-187.95079f, 247.6312f), new(405.2994f, 238.91379f), new(-253.58661f, 312.1113f), new(281.8258f, 281.5206f),
+ new(297.2719f, -415.7858f), new(312.515f, 277.015f), new(-233.8876f, 306.4993f), new(282.2644f, 317.9234f), new(-346.7259f, 249.1182f),
+ new(376.7545f, -171.7426f), new(341.9455f, 254.32639f), new(233.2142f, 359.3226f), new(357.3428f, -226.2132f), new(371.6932f, 299.9014f),
+ new(-301.0992f, 249.9063f), new(287.8323f, 246.377f), new(-244.58f, 242.2898f), new(273.8824f, 229.7464f), new(314.05182f, 246.45331f),
+ new(-180.4484f, 363.9769f), new(-230.1297f, 193.13869f), new(-237.8772f, 257.2851f), new(311.0129f, -349.88898f), new(188.2262f, -304.0163f),
+ new(425.934f, -354.669f), new(-347.06403f, 300.42282f), new(-232.87149f, 253.6192f), new(323.84592f, -355.568f), new(303.8699f, -417.3858f),
+ new(360.79318f, 321.10318f), new(-296.2283f, 403.5453f), new(258.0925f, 237.603f), new(301.7784f, -404.5028f), new(-340.1619f, 247.4452f),
+ new(-248.468f, 243.2718f), new(354.366f, 355.1756f), new(205.1291f, -341.6885f), new(-409.2182f, 301.7339f), new(-245.22661f, 317.8913f),
+ new(-233.3951f, 429.2131f), new(-339.118f, 359.9504f), new(354.2841f, 245.2263f), new(-352.33987f, 249.8242f), new(205.27861f, 268.3854f),
+ new(-349.911f, 362.1404f), new(-232.9397f, 372.9192f), new(-228.3131f, 427.9171f), new(342.1374f, 338.3881f), new(212.1251f, -345.91953f),
+ new(-203.0708f, 255.1982f), new(301.6791f, -194.69649f), new(-298.6689f, 235.62871f), new(263.0926f, 362.31348f), new(381.8298f, 231.1506f),
+ new(251.25348f, -349.8093f), new(312.2958f, 314.27182f), new(-232.5737f, 195.33469f), new(363.9993f, -174.0972f), new(-359.53342f, 293.1431f),
+ new(247.89f, -289.0786f), new(299.7471f, -194.7255f), new(291.702f, -238.0495f), new(-253.30971f, 368.3852f), new(-236.9615f, 254.2872f),
+ new(224.5845f, 240.4983f), new(355.02982f, -227.9212f), new(383.6969f, 319.1734f), new(374.499f, -341.0597f), new(-299.37518f, 244.74329f),
+ new(-244.8177f, 374.0642f), new(286.9927f, 321.9458f), new(-401.4302f, 296.14987f), new(354.1721f, 317.9104f), new(-334.591f, 350.9944f),
+ new(248.7805f, -227.4498f), new(246.3003f, 318.362f), new(-407.0922f, 301.76187f), new(364.1148f, -236.4482f), new(-343.56802f, 297.6458f),
+ new(312.2369f, 355.4488f), new(255.8505f, -338.6393f), new(203.673f, -236.38411f), new(400.2291f, -230.03621f), new(-387.93332f, 245.5693f),
+ new(-188.85739f, 372.42392f), new(-305.66602f, 305.4756f), new(-358.88568f, 310.19028f), new(-364.9998f, 302.4715f), new(-304.0809f, 237.0707f),
+ new(-348.2098f, 413.6188f), new(-295.3499f, 231.0297f), new(362.0213f, -174.1252f), new(246.6898f, -397.4636f), new(-301.07f, 304.9676f),
+ new(198.1736f, 251.9587f), new(367.7464f, -398.2378f), new(306.4808f, 240.0083f), new(251.4745f, 287.7886f), new(-360.8328f, 416.6898f),
+ new(-304.4433f, 362.5469f), new(-307.42932f, 363.4219f), new(-344.98f, 361.4444f), new(202.0645f, 239.2088f), new(-349.372f, 300.7908f),
+ new(373.31f, -339.7197f), new(229.4271f, -289.07742f), new(-300.725f, 395.44418f), new(282.5829f, 341.8852f), new(393.7743f, 278.8683f),
+ new(376.2421f, -293.31522f), new(304.2535f, 303.4896f), new(-388.223f, 359.1819f), new(-356.68f, 192.8632f), new(-289.2893f, 350.5069f),
+ new(-336.216f, 356.6054f), new(-196.96379f, 255.55719f), new(404.945f, 367.80652f), new(-250.0122f, 263.8211f), new(-233.6006f, 307.0713f),
+ new(394.14288f, 327.76538f), new(326.8156f, 370.5029f), new(419.59702f, -352.651f), new(376.2421f, -296.04422f), new(309.34122f, -306.86212f),
+ new(-283.8649f, 183.8799f), new(217.6195f, 368.0992f), new(298.0004f, -402.7958f), new(-292.31003f, 303.4806f), new(322.3449f, -361.279f),
+ new(-355.8988f, 415.9998f), new(289.2781f, 359.3496f), new(206.9571f, -341.04352f), new(-224.3841f, 420.1611f), new(217.2743f, 232.1803f),
+ new(371.62842f, -399.53378f), new(341.0241f, 241.5943f), new(251.746f, -289.1543f), new(297.1762f, -294.38712f), new(359.4848f, -228.9572f),
+ new(-335.09488f, 237.4182f), new(183.9162f, -296.9263f), new(203.0881f, -344.5685f), new(-180.9324f, 308.15793f), new(294.6895f, 295.51758f),
+ new(-355.3367f, 309.69427f), new(-193.01979f, 254.8352f), new(-239.3841f, 424.5201f), new(360.708f, -338.06567f), new(298.38397f, -236.4965f),
+ new(422.30872f, -298.4533f), new(233.7545f, 247.0383f), new(254.8925f, -235.9168f), new(246.1051f, 245.6816f), new(-231.5317f, 191.2267f),
+ new(370.03342f, -398.2078f), new(292.57397f, -243.78151f), new(286.6681f, 285.30368f), new(215.54361f, 276.7724f), new(202.2294f, 367.6789f),
+ new(-413.37518f, 303.96988f), new(353.0215f, 288.6033f), new(243.2041f, -174.973f), new(-297.47f, 392.2262f), new(-238.858f, 238.1918f),
+ new(-345.5938f, 405.6648f), new(-297.0523f, 402.2553f), new(-352.01398f, 191.67621f), new(431.346f, -360.027f), new(-293.5173f, 361.5229f),
+ new(245.54181f, -401.29858f), new(378.25f, -349.4857f), new(357.8553f, -172.1092f), new(-194.3264f, 371.3879f), new(-348.412f, 184.5462f),
+ new(198.303f, -231.3181f), new(-304.99902f, 396.05917f), new(-301.4613f, 363.81488f), new(305.1431f, -198.34749f), new(403.512f, 299.9015f),
+ new(-305.644f, 300.1826f), new(262.6265f, -339.8243f), new(-252.3377f, 372.0462f), new(227.8621f, -289.0964f), new(318.0849f, 317.9103f),
+ new(256.4015f, -229.8588f), new(429.5557f, -298.88632f), new(281.6307f, 257.962f), new(248.977f, -287.5633f), new(263.6025f, 242.229f),
+ new(-361.04178f, 301.1025f), new(-184.11539f, 371.21292f), new(257.2769f, 344.9494f), new(353.6497f, 281.8578f), new(296.029f, -251.74951f),
+ new(-279.9969f, 176.2279f), new(267.9885f, -349.9533f), new(239.54851f, 278.10962f), new(-301.13492f, 236.0567f), new(359.7265f, 287.8573f),
+ new(335.6651f, 236.8103f), new(-353.4747f, 309.4983f), new(259.4075f, -351.0803f), new(350.0888f, -227.2392f), new(306.158f, -238.7575f),
+ new(251.4545f, 321.19208f), new(294.7252f, -308.70612f), new(235.789f, -281.53162f), new(-188.58139f, 314.7969f), new(-288.8729f, 185.1559f),
+ new(295.5991f, -192.98549f), new(-238.5337f, 372.46118f), new(322.859f, 285.754f), new(300.1489f, -411.4858f), new(-396.214f, 360.40088f),
+ new(317.4059f, -351.512f), new(306.1859f, -355.68f), new(249.6689f, 338.94238f), new(376.12943f, -404.24377f), new(242.2728f, -401.3996f),
+ new(-394.0133f, 247.7373f), new(222.5889f, 258.7549f), new(-252.7276f, 316.0943f), new(246.068f, 282.1087f), new(398.43842f, 230.5248f),
+ new(382.0361f, -305.0412f), new(-233.4646f, 317.4483f), new(374.49393f, 359.7861f), new(349.7865f, 260.1424f), new(415.3577f, -296.1333f),
+ new(343.1203f, 362.1457f), new(239.1245f, 312.4391f), new(196.4953f, 300.2193f), new(235.1485f, -231.3008f), new(249.3599f, 255.42989f),
+ new(393.6391f, -227.87021f), new(207.5721f, -347.56552f), new(366.916f, -338.0937f), new(-301.946f, 395.43118f), new(374.9115f, -170.0406f),
+ new(-295.78302f, 303.6206f), new(-245.24721f, 264.1991f), new(325.9916f, 229.8121f), new(-297.7843f, 404.94128f), new(224.8681f, -287.31842f),
+ new(-291.70102f, 295.5446f), new(-345.834f, 300.29282f), new(-238.8316f, 316.26028f), new(238.6881f, -172.895f), new(280.1713f, 240.411f),
+ new(252.5778f, -403.0166f), new(376.9794f, 258.8948f), new(228.0898f, 299.955f), new(-384.994f, 352.7929f), new(375.3698f, 246.53079f),
+ new(244.6078f, -398.1966f), new(-362.6828f, 301.2735f), new(-193.79239f, 314.5519f), new(300.9582f, -310.1221f), new(246.86449f, -351.2153f),
+ new(245.9138f, 354.3023f), new(-295.6242f, 242.1113f), new(304.2902f, -296.2561f), new(366.4558f, 238.8908f), new(257.1809f, 261.3509f),
+ new(215.3685f, 330.9885f), new(-392.404f, 360.24588f), new(371.0321f, -294.9692f), new(-241.5862f, 263.3881f), new(251.1621f, -180.673f),
+ new(311.61697f, -243.3905f), new(374.2785f, -175.2656f), new(423.903f, -354.698f), new(-356.6334f, 292.6991f), new(398.187f, 359.5875f),
+ new(253.20401f, -289.1363f), new(-340.9319f, 249.2662f), new(-239.50009f, 427.5401f), new(199.0521f, 349.0938f), new(-251.7877f, 364.4282f),
+ new(-390.0003f, 245.54231f), new(-291.9169f, 182.3459f), new(401.1567f, 349.6286f), new(379.8325f, -176.6196f), new(317.3819f, -363.362f),
+ new(310.13898f, -249.44351f), new(273.5093f, 370.8387f), new(179.4832f, -296.35928f), new(244.52f, -282.4136f), new(-382.4273f, 240.1123f),
+ new(-243.018f, 242.3048f), new(309.8202f, -306.1571f), new(240.158f, -281.30463f), new(-234.0315f, 253.60721f), new(428.3267f, -304.41132f),
+ new(365.0751f, -293.85422f), new(-298.1972f, 248.04129f), new(383.1173f, 270.9063f), new(-360.96298f, 193.00821f), new(398.09808f, -230.06621f),
+ new(196.404f, -231.9871f), new(-233.7428f, 200.83261f), new(323.0368f, 322.1998f), new(318.0848f, 281.6293f), new(381.7549f, 367.8664f),
+ new(347.7305f, 277.92432f), new(365.2578f, -230.0962f), new(304.7229f, 348.96478f), new(303.5834f, -404.4768f), new(-198.07379f, 244.4272f),
+ new(238.1355f, -225.5818f), new(-232.0998f, 200.84961f), new(400.4554f, 251.3282f), new(349.9274f, 344.2481f), new(276.2861f, 277.0457f),
+ new(310.9332f, -300.9171f), new(420.0507f, -298.4843f), new(194.215f, -234.8831f), new(298.0234f, -411.6908f), new(-238.1176f, 317.7693f),
+ new(195.0625f, 230.0748f), new(-333.788f, 360.0394f), new(235.6638f, -401.3826f), new(-352.2634f, 289.2291f), new(281.5101f, 353.3846f),
+ new(204.9585f, 322.82352f), new(-302.75f, 294.73358f), new(379.66f, -341.9957f), new(-358.0188f, 297.5635f), new(244.7475f, 321.94608f),
+ new(-350.0397f, 305.48828f), new(377.34442f, -398.3628f), new(418.3007f, -299.0813f), new(-404.2682f, 298.2739f), new(-288.2713f, 360.32388f),
+ new(-334.10388f, 247.26419f), new(-291.75177f, 181.83435f), new(400.2614f, 242.23079f), new(405.90808f, -235.6582f), new(-229.7805f, 250.5632f),
+ new(308.3934f, -409.24078f), new(224.0032f, 352.29858f), new(340.1593f, 362.20572f), new(233.59511f, -293.2094f), new(308.7629f, -362.78098f),
+ new(-293.61832f, 399.3913f), new(241.1811f, -185.383f), new(176.7292f, -307.7753f), new(396.83008f, -231.40121f)
+ ]},
+ { 783, [
+ new(398.187f, 359.5875f), new(-184.11539f, 371.21292f), new(248.7805f, -227.4498f), new(-388.223f, 359.1819f), new(248.977f, -287.5633f),
+ new(291.702f, -238.0495f), new(252.5778f, -403.0166f), new(239.54851f, 278.10962f), new(297.1762f, -294.38712f), new(262.6265f, -339.8243f),
+ new(-362.6828f, 301.2735f), new(-407.0922f, 301.76187f), new(-352.2634f, 289.2291f), new(-230.1297f, 193.13869f), new(428.3267f, -304.41132f),
+ new(-250.0122f, 263.8211f), new(-203.0708f, 255.1982f), new(-305.66602f, 305.4756f), new(-396.214f, 360.40088f), new(-188.58139f, 314.7969f),
+ new(-252.7276f, 316.0943f), new(310.49597f, -244.7375f), new(276.4217f, 313.7618f), new(301.6791f, -194.69649f), new(357.8553f, -172.1092f),
+ new(251.25348f, -349.8093f), new(263.0926f, 362.31348f), new(-335.09488f, 237.4182f), new(246.86449f, -351.2153f), new(-392.404f, 360.24588f),
+ new(306.158f, -238.7575f), new(-334.10388f, 247.26419f), new(-305.644f, 300.1826f), new(363.05542f, -395.8068f), new(423.96802f, -355.743f),
+ new(350.0888f, -227.2392f), new(212.1251f, -345.91953f), new(379.66f, -341.9957f), new(-180.9324f, 308.15793f), new(188.2262f, -304.0163f),
+ new(-238.8316f, 316.26028f), new(-384.15298f, 358.1949f), new(300.1489f, -411.4858f), new(-356.6334f, 292.6991f), new(-298.6689f, 235.62871f),
+ new(205.1291f, -341.6885f), new(376.2421f, -293.31522f), new(202.0645f, 239.2088f), new(335.6651f, 236.8103f), new(240.158f, -281.30463f),
+ new(401.1567f, 349.6286f), new(-350.0838f, 414.5488f), new(-233.6006f, 307.0713f), new(282.5829f, 341.8852f), new(-241.5862f, 263.3881f),
+ new(362.0213f, -174.1252f), new(257.2769f, 344.9494f), new(281.8258f, 281.5206f), new(354.2841f, 245.2263f), new(-233.6757f, 362.8712f),
+ new(-224.3841f, 420.1611f), new(-348.412f, 184.5462f), new(-226.0277f, 186.61969f), new(263.6025f, 242.229f), new(203.673f, -236.38411f),
+ new(-353.4747f, 309.4983f), new(349.7865f, 260.1424f), new(325.9916f, 229.8121f), new(355.02982f, -227.9212f), new(-245.22661f, 317.8913f),
+ new(244.6078f, -398.1966f), new(-336.216f, 356.6054f), new(298.38397f, -236.4965f), new(303.5834f, -404.4768f), new(374.2785f, -175.2656f),
+ new(-345.834f, 300.29282f), new(204.9585f, 322.82352f), new(-359.53342f, 293.1431f), new(-293.5173f, 361.5229f), new(246.6898f, -397.4636f),
+ new(-349.372f, 300.7908f), new(207.5721f, -347.56552f), new(405.2994f, 238.91379f), new(-251.7877f, 364.4282f), new(-301.946f, 395.43118f),
+ new(-289.2893f, 350.5069f), new(-301.13492f, 236.0567f), new(253.20401f, -289.1363f), new(326.8156f, 370.5029f), new(337.8253f, 357.3237f),
+ new(322.859f, 285.754f), new(393.6391f, -227.87021f), new(246.3003f, 318.362f), new(222.8822f, 340.9068f), new(251.1621f, -180.673f),
+ new(-340.1619f, 247.4452f), new(322.3449f, -361.279f), new(-345.5938f, 405.6648f), new(341.9455f, 254.32639f), new(376.12943f, -404.24377f),
+ new(311.0129f, -349.88898f), new(393.7743f, 278.8683f), new(312.2369f, 355.4488f), new(374.499f, -341.0597f), new(301.7784f, -404.5028f),
+ new(-340.9319f, 249.2662f), new(-238.858f, 238.1918f), new(179.4832f, -296.35928f), new(-188.85739f, 372.42392f), new(400.4554f, 251.3282f),
+ new(314.05182f, 246.45331f), new(310.9332f, -300.9171f), new(256.4015f, -229.8588f), new(254.8925f, -235.9168f), new(306.8281f, -199.7965f),
+ new(-290.811f, 303.1916f), new(289.2781f, 359.3496f), new(194.215f, -234.8831f), new(183.9162f, -296.9263f), new(354.1721f, 317.9104f),
+ new(382.0361f, -305.0412f), new(311.61697f, -243.3905f), new(235.789f, -281.53162f), new(425.934f, -354.669f), new(400.2291f, -230.03621f),
+ new(323.0368f, 322.1998f), new(-233.3951f, 429.2131f), new(-296.2283f, 403.5453f), new(-233.7428f, 200.83261f), new(-248.468f, 243.2718f),
+ new(376.9794f, 258.8948f), new(-384.994f, 352.7929f), new(373.31f, -339.7197f), new(309.34122f, -306.86212f), new(-297.0523f, 402.2553f),
+ new(-344.98f, 361.4444f), new(-253.30971f, 368.3852f), new(-364.9998f, 302.4715f), new(-232.9397f, 372.9192f), new(-288.8729f, 185.1559f),
+ new(-252.3377f, 372.0462f), new(-307.42932f, 363.4219f), new(-301.4613f, 363.81488f), new(249.6689f, 338.94238f), new(-298.1972f, 248.04129f),
+ new(357.3428f, -226.2132f), new(381.8298f, 231.1506f), new(306.4808f, 240.0083f), new(-180.4484f, 363.9769f), new(-232.0998f, 200.84961f),
+ new(224.8681f, -287.31842f), new(-304.0809f, 237.0707f), new(-245.24721f, 264.1991f), new(370.03342f, -398.2078f), new(308.3934f, -409.24078f),
+ new(238.1355f, -225.5818f), new(-349.911f, 362.1404f), new(-236.9615f, 254.2872f), new(318.0848f, 281.6293f), new(300.9582f, -310.1221f),
+ new(-239.50009f, 427.5401f), new(415.3577f, -296.1333f), new(203.0881f, -344.5685f), new(-394.0133f, 247.7373f), new(292.57397f, -243.78151f),
+ new(297.91888f, -409.4278f), new(243.2041f, -174.973f), new(-352.33987f, 249.8242f), new(-384.2413f, 243.74031f), new(-356.68f, 192.8632f),
+ new(376.7104f, 341.092f), new(215.54361f, 276.7724f), new(242.2728f, -401.3996f), new(286.6681f, 285.30368f), new(287.8323f, 246.377f),
+ new(312.515f, 277.015f), new(-297.7843f, 404.94128f), new(-360.8328f, 416.6898f), new(-198.07379f, 244.4272f), new(-350.0397f, 305.48828f),
+ new(196.4953f, 300.2193f), new(244.2415f, -226.6668f), new(273.8824f, 229.7464f), new(251.4745f, 287.7886f), new(-334.591f, 350.9944f),
+ new(282.2644f, 317.9234f), new(-355.0964f, 292.53708f), new(245.3761f, -174.942f), new(363.9993f, -174.0972f), new(251.4545f, 321.19208f),
+ new(295.5991f, -192.98549f), new(-299.37518f, 244.74329f), new(-404.2682f, 298.2739f), new(299.7471f, -194.7255f), new(403.512f, 299.9015f),
+ new(-191.91539f, 307.0639f), new(195.0625f, 230.0748f), new(-237.86679f, 201.65361f), new(343.1203f, 362.1457f), new(381.7549f, 367.8664f),
+ new(318.0849f, 317.9103f), new(304.45392f, -350.395f), new(-185.3224f, 314.2289f), new(-347.455f, 190.4712f), new(420.0507f, -298.4843f),
+ new(202.2294f, 367.6789f), new(199.0521f, 349.0938f), new(304.2902f, -296.2561f), new(376.7545f, -171.7426f), new(206.9571f, -341.04352f),
+ new(398.09808f, -230.06621f), new(286.9927f, 321.9458f), new(291.8962f, -300.88412f), new(-382.4273f, 240.1123f), new(-300.725f, 395.44418f),
+ new(-233.8876f, 306.4993f), new(-279.9969f, 176.2279f), new(217.2743f, 232.1803f), new(196.404f, -231.9871f), new(-358.88568f, 310.19028f),
+ new(-193.79239f, 314.5519f), new(-233.4646f, 317.4483f), new(365.0751f, -293.85422f), new(422.30872f, -298.4533f), new(228.0898f, 299.955f),
+ new(-301.55603f, 305.3076f), new(-401.4302f, 296.14987f), new(341.0241f, 241.5943f), new(-361.04178f, 301.1025f), new(-387.68597f, 351.0809f),
+ new(238.6881f, -172.895f), new(-231.5317f, 191.2267f), new(-293.29788f, 185.5789f), new(233.7545f, 247.0383f), new(-196.96379f, 255.55719f),
+ new(364.1148f, -236.4482f), new(-352.01398f, 191.67621f), new(-238.5337f, 372.46118f), new(-295.78302f, 303.6206f), new(378.25f, -349.4857f),
+ new(423.903f, -354.698f), new(-355.3367f, 309.69427f), new(-232.5737f, 195.33469f), new(405.90808f, -235.6582f), new(-228.3131f, 427.9171f),
+ new(376.2421f, -296.04422f), new(233.2142f, 359.3226f), new(-413.37518f, 303.96988f), new(360.79318f, 321.10318f), new(377.34442f, -398.3628f),
+ new(318.0848f, 341.7884f), new(215.3685f, 330.9885f), new(294.6895f, 295.51758f), new(359.4848f, -228.9572f), new(-343.56802f, 297.6458f),
+ new(-234.0315f, 253.60721f), new(246.1051f, 245.6816f), new(-347.06403f, 300.42282f), new(353.6497f, 281.8578f), new(419.59702f, -352.651f),
+ new(217.6195f, 368.0992f), new(323.84592f, -355.568f), new(235.1485f, -231.3008f), new(371.6932f, 299.9014f), new(280.1713f, 240.411f),
+ new(276.2861f, 277.0457f), new(273.5093f, 370.8387f), new(255.8505f, -338.6393f), new(241.1811f, -185.383f), new(318.037f, 256.9742f),
+ new(-244.8177f, 374.0642f), new(305.1431f, -198.34749f), new(257.1809f, 261.3509f), new(375.3698f, 246.53079f), new(317.4059f, -351.512f),
+ new(-295.3499f, 231.0297f), new(267.9885f, -349.9533f), new(-244.58f, 242.2898f), new(367.7464f, -398.2378f), new(281.6307f, 257.962f),
+ new(229.4271f, -289.07742f), new(-355.8988f, 415.9998f), new(360.708f, -338.06567f), new(249.3599f, 255.42989f), new(-283.8649f, 183.8799f),
+ new(431.346f, -360.027f), new(251.746f, -289.1543f), new(317.3819f, -363.362f), new(-243.018f, 242.3048f), new(310.13898f, -249.44351f),
+ new(244.52f, -282.4136f), new(-390.0003f, 245.54231f), new(306.1859f, -355.68f), new(-346.7259f, 249.1182f), new(-360.96298f, 193.00821f),
+ new(-353.72998f, 181.8492f), new(297.2719f, -415.7858f), new(198.303f, -231.3181f), new(-304.4433f, 362.5469f), new(176.2702f, -303.6013f),
+ new(222.5889f, 258.7549f), new(359.7265f, 287.8573f), new(-295.6242f, 242.1113f), new(304.2535f, 303.4896f), new(239.1245f, 312.4391f),
+ new(-291.70102f, 295.5446f), new(349.9274f, 344.2481f), new(-301.0992f, 249.9063f), new(195.977f, -239.6681f), new(418.3007f, -299.0813f),
+ new(-339.118f, 359.9504f), new(383.1173f, 270.9063f), new(374.49393f, 359.7861f), new(-194.3264f, 371.3879f), new(394.14288f, 327.76538f),
+ new(354.366f, 355.1756f), new(-387.93332f, 245.5693f), new(-232.87149f, 253.6192f), new(245.9138f, 354.3023f), new(366.916f, -338.0937f),
+ new(-193.01979f, 254.8352f), new(258.0925f, 237.603f), new(227.8621f, -289.0964f), new(-301.07f, 304.9676f), new(-187.95079f, 247.6312f),
+ new(298.0004f, -402.7958f), new(198.1736f, 251.9587f), new(371.0321f, -294.9692f), new(404.945f, 367.80652f), new(-304.99902f, 396.05917f),
+ new(290.1052f, -295.22412f), new(246.068f, 282.1087f), new(-409.2182f, 301.7339f), new(383.6969f, 319.1734f), new(176.7292f, -307.7753f),
+ new(312.2958f, 314.27182f), new(379.8325f, -176.6196f), new(369.2703f, -179.3152f), new(-227.7218f, 196.5206f), new(224.5845f, 240.4983f),
+ new(-180.41339f, 372.6839f), new(281.5101f, 353.3846f), new(398.43842f, 230.5248f), new(235.6638f, -401.3826f), new(209.8145f, 331.1075f),
+ new(-229.7805f, 250.5632f), new(365.50092f, 352.5881f), new(296.029f, -251.74951f), new(304.7229f, 348.96478f), new(370.5568f, 246.6308f),
+ new(-288.2713f, 360.32388f), new(257.75558f, 357.51648f), new(-308.04633f, 356.3959f), new(374.9115f, -170.0406f), new(253.1069f, 261.43988f),
+ new(303.8699f, -417.3858f), new(-292.31003f, 303.4806f), new(-298.95203f, 390.99118f), new(-412.8112f, 300.30588f), new(-302.75f, 294.73358f),
+ new(-246.54561f, 306.85428f), new(352.36282f, -231.8862f), new(354.0872f, 321.8502f), new(432.437f, -355.16302f), new(366.4558f, 238.8908f),
+ new(342.1374f, 338.3881f), new(365.2578f, -230.0962f), new(-348.2098f, 413.6188f), new(-294.842f, 301.2306f), new(-243.32901f, 242.4938f),
+ new(-189.14339f, 373.4789f), new(195.47641f, 359.29788f), new(260.6405f, 242.292f), new(294.7252f, -308.70612f), new(-400.3112f, 301.9889f),
+ new(205.27861f, 268.3854f), new(224.0032f, 352.29858f), new(247.89f, -289.0786f), new(348.8282f, 311.45718f), new(-253.58661f, 312.1113f),
+ new(347.7305f, 277.92432f), new(244.76851f, 288.53662f), new(259.4075f, -351.0803f), new(-291.9169f, 182.3459f), new(233.59511f, -293.2094f),
+ new(362.08328f, -174.5682f), new(-333.788f, 360.0394f)
+ ]},
+ { 774, [
+ new(-232.62799f, 313.9578f), new(428.2693f, -303.9336f), new(364.47513f, -226.6221f), new(273.5094f, 370.8387f), new(-393.0041f, 351.19598f),
+ new(-387.1001f, 356.59198f), new(231.68611f, -288.7912f), new(-233.979f, 306.4878f), new(-298.6325f, 248.72421f), new(-189.4494f, 255.2781f),
+ new(354.366f, 355.1755f), new(-236.7123f, 196.1607f), new(220.57921f, 360.5556f), new(241.0888f, -281.99f), new(-342.1141f, 363.0151f),
+ new(293.7836f, -195.72621f), new(318.0849f, 317.9103f), new(-192.18309f, 371.0611f), new(-298.44812f, 394.3978f), new(-344.2351f, 352.88562f),
+ new(323.0348f, 322.19882f), new(424.95853f, -354.4863f), new(405.3297f, -235.3344f), new(246.3003f, 318.3619f), new(334.9303f, 362.0447f),
+ new(-299.548f, 305.6746f), new(-185.01741f, 246.8511f), new(-333.5161f, 353.1646f), new(263.74728f, -341.4163f), new(248.572f, -396.8607f),
+ new(343.1193f, 362.1447f), new(310.7141f, -249.3718f), new(220.9385f, 247.9613f), new(349.91412f, -236.9171f), new(400.7937f, -229.2984f),
+ new(199.0521f, 349.0937f), new(-236.1599f, 429.0978f), new(257.48727f, -340.4533f), new(374.3238f, -296.31058f), new(215.3665f, 330.9855f),
+ new(-301.1151f, 396.35278f), new(-307.2466f, 363.0576f), new(397.5487f, -229.3554f), new(225.2431f, -288.24222f), new(303.3092f, -350.9451f),
+ new(364.4341f, -236.2061f), new(-254.0357f, 365.16312f), new(250.8512f, -287.40198f), new(-245.34659f, 262.6687f), new(326.8156f, 370.5029f),
+ new(-290.31003f, 300.53958f), new(-250.72311f, 241.7003f), new(-297.2027f, 240.39131f), new(363.00662f, -396.9726f), new(-298.0151f, 390.3638f),
+ new(-301.30762f, 362.6656f), new(245.59981f, -282.684f), new(-345.9816f, 406.69092f), new(196.9918f, -342.052f), new(252.1636f, -182.85631f),
+ new(-238.938f, 315.9168f), new(360.6884f, -340.60922f), new(422.5025f, -362.1483f), new(-344.9811f, 365.36508f), new(-387.1838f, 247.8537f),
+ new(233.7525f, 247.0363f), new(308.9478f, 322.1478f), new(-359.983f, 189.9592f), new(302.212f, -295.35202f), new(-349.24512f, 356.8806f),
+ new(-245.193f, 316.8818f), new(341.0231f, 241.59329f), new(-357.25058f, 417.13492f), new(255.3415f, 241.99501f), new(252.68051f, -234.55861f),
+ new(305.0455f, -407.592f), new(-289.1716f, 350.3266f), new(404.598f, 238.129f), new(-300.35852f, 250.1372f), new(281.6307f, 257.962f),
+ new(290.93552f, 302.9496f), new(243.1665f, -227.2516f), new(196.65291f, -229.9866f), new(403.9564f, 367.535f), new(373.8704f, -341.6242f),
+ new(291.14102f, -295.13202f), new(349.92538f, 344.2471f), new(289.2761f, 359.3486f), new(-244.35611f, 240.8613f), new(263.6015f, 242.228f),
+ new(-192.516f, 312.1573f), new(-246.4001f, 253.5998f), new(-415.38058f, 296.2012f), new(375.3678f, 246.5288f), new(202.4115f, 362.4906f),
+ new(-195.0394f, 256.1411f), new(363.1264f, -341.2792f), new(179.6197f, -299.96558f), new(392.5047f, -228.2624f), new(-337.0101f, 355.3321f),
+ new(-350.9656f, 416.1629f), new(286.9907f, 321.94382f), new(367.88217f, -176.7622f), new(257.89627f, -357.3143f), new(344.74918f, 321.4942f),
+ new(303.9746f, -196.9602f), new(-341.27448f, 250.8624f), new(374.4919f, 359.7841f), new(371.6932f, 299.9014f), new(355.37613f, -228.5071f),
+ new(-187.549f, 307.4423f), new(286.66608f, 285.3017f), new(-293.5686f, 360.96957f), new(375.7652f, -182.7162f), new(349.7845f, 260.1414f),
+ new(403.3314f, 362.339f), new(247.5086f, -175.4843f), new(376.7105f, 341.092f), new(-295.781f, 303.6226f), new(198.1736f, 251.9586f),
+ new(371.0782f, -176.6432f), new(-242.6541f, 252.4908f), new(191.7939f, -228.5756f), new(368.2296f, -399.7536f), new(-238.6831f, 252.16379f),
+ new(238.705f, -395.81268f), new(247.1345f, -227.1696f), new(314.0498f, 246.4523f), new(311.5932f, -350.9601f), new(-407.2686f, 303.4432f),
+ new(-335.1641f, 347.54062f), new(-237.65471f, 372.5421f), new(-382.4611f, 350.681f), new(-412.1616f, 304.4582f), new(243.733f, -396.1157f),
+ new(304.25153f, 303.4886f), new(353.6497f, 281.8578f), new(-249.5866f, 264.1837f), new(257.2749f, 344.9484f), new(362.61517f, -175.78621f),
+ new(306.42212f, -238.5398f), new(204.5999f, -236.08861f), new(203.0005f, 367.4016f), new(400.4554f, 251.3281f), new(228.69511f, -288.0002f),
+ new(376.9794f, 258.8948f), new(367.4968f, -301.73257f), new(254.6492f, -288.238f), new(-293.7351f, 391.61978f), new(-353.34348f, 253.1034f),
+ new(251.4525f, 321.1901f), new(-403.3656f, 296.3612f), new(-300.3227f, 240.3323f), new(-351.079f, 188.7992f), new(-244.0777f, 373.5331f),
+ new(403.512f, 299.9014f), new(321.63022f, -361.14212f), new(-363.0506f, 418.3529f), new(308.51202f, 285.54f), new(-225.3053f, 188.8047f),
+ new(312.2349f, 355.44778f), new(273.8824f, 229.7463f), new(-289.10712f, 183.90201f), new(237.2266f, -174.4443f), new(228.0897f, 299.9549f),
+ new(359.72452f, 287.85532f), new(310.27002f, -305.849f), new(201.7538f, -343.517f), new(381.7549f, 367.8664f), new(308.4765f, -412.207f),
+ new(322.857f, 285.752f), new(-390.4571f, 356.875f), new(338.9784f, 344.6351f), new(378.8354f, -351.0432f), new(-348.94247f, 251.9194f),
+ new(235.5695f, 322.06207f), new(268.71228f, -350.8513f), new(209.59581f, -349.538f), new(298.4301f, -236.7088f), new(394.1409f, 327.7624f),
+ new(-298.6325f, 248.72421f), new(300.6625f, -405.56702f), new(-304.55103f, 300.9606f), new(236.09851f, -235.3476f), new(295.6925f, -404.961f),
+ new(361.9548f, 246.2108f), new(417.04053f, -353.3363f), new(246.068f, 282.1087f), new(393.7723f, 278.8653f), new(310.819f, -294.635f),
+ new(291.03812f, -237.9518f), new(-419.0326f, 301.4292f), new(263.09158f, 362.3125f), new(299.4876f, -196.5812f), new(187.4037f, -304.5446f),
+ new(-348.0183f, 296.18597f), new(-235.426f, 309.3408f), new(413.5973f, -295.8766f), new(290.482f, -298.737f), new(246.1051f, 245.6815f),
+ new(379.6654f, -340.9132f), new(272.2121f, 284.9297f), new(342.96152f, 286.99332f), new(419.2843f, -295.6096f), new(282.2644f, 317.9233f),
+ new(-384.6918f, 241.2397f), new(245.9138f, 354.3022f), new(222.5888f, 258.7547f), new(354.1721f, 317.9104f), new(-230.72029f, 193.94371f),
+ new(243.0456f, -175.1083f), new(217.619f, 368.0991f), new(257.1789f, 261.34988f), new(305.056f, -296.014f), new(-336.2825f, 241.3744f),
+ new(-347.5695f, 251.8354f), new(368.1678f, -295.9886f), new(-296.2276f, 363.56857f), new(298.54102f, -295.013f), new(201.93849f, 233.6869f),
+ new(-298.8275f, 247.19621f), new(424.2943f, -296.3886f), new(252.41f, -404.1537f), new(-341.8981f, 353.9276f), new(276.5323f, 246.414f),
+ new(282.5829f, 341.8851f), new(-356.1493f, 302.978f), new(-200.30841f, 256.9811f), new(381.8298f, 231.1504f), new(-300.95203f, 304.4226f),
+ new(236.3618f, -281.78f), new(-353.4573f, 302.257f), new(244.8165f, 288.31763f), new(237.48651f, -225.4266f), new(202.5595f, 238.7699f),
+ new(422.3055f, -354.9463f), new(-334.6705f, 247.4734f), new(287.8303f, 246.37599f), new(-246.6296f, 262.0947f), new(205.0238f, -343.449f),
+ new(325.9916f, 229.8118f), new(304.4865f, -405.889f), new(-187.17609f, 366.3151f), new(208.78981f, -347.638f), new(222.8821f, 340.9067f),
+ new(360.7912f, 321.1012f), new(367.6134f, -340.6502f), new(359.81012f, -228.87909f), new(-284.1831f, 183.14f), new(196.4953f, 300.2192f),
+ new(-198.04909f, 373.0021f), new(251.01228f, -340.0093f), new(-223.15689f, 420.5328f), new(-291.68103f, 295.82858f), new(-395.9058f, 240.0167f),
+ new(-293.48212f, 185.00801f), new(383.7328f, -304.30658f), new(273.2047f, 322.6408f), new(199.9669f, -229.9176f), new(-247.5231f, 241.3493f),
+ new(281.8259f, 281.5206f), new(-250.0637f, 374.5951f), new(302.8032f, -354.3591f), new(-305.604f, 305.5076f), new(378.9288f, -296.6966f),
+ new(401.1567f, 349.6286f), new(-356.2303f, 301.78598f), new(370.26862f, -398.8566f), new(354.2841f, 245.2263f), new(318.0849f, 281.6292f),
+ new(-358.04102f, 193.0442f), new(316.6662f, -351.7221f), new(-356.191f, 193.4272f), new(-297.23312f, 394.9408f), new(-342.3951f, 360.4951f),
+ new(-232.6003f, 193.1037f), new(233.2122f, 359.3206f), new(-251.22699f, 317.7138f), new(349.4671f, -228.1541f), new(-197.937f, 314.2073f),
+ new(181.62471f, -299.06458f), new(-231.55789f, 425.4868f), new(-304.1327f, 242.4713f), new(308.6556f, -204.37221f), new(318.037f, 256.9742f),
+ new(-392.4628f, 248.94969f), new(310.41022f, -350.7491f), new(234.81151f, 287.42862f), new(-232.5637f, 362.8591f), new(215.54161f, 276.7694f),
+ new(318.0848f, 341.7883f), new(-346.6143f, 300.813f), new(251.4725f, 287.78662f), new(-194.241f, 311.3873f), new(317.088f, 286.213f),
+ new(278.3411f, 359.7866f), new(217.2743f, 232.1803f), new(174.70871f, -297.1846f), new(295.8541f, -235.6418f), new(-360.6243f, 304.749f),
+ new(-229.3929f, 426.4528f), new(-193.9211f, 370.2831f), new(200.00049f, 331.2465f), new(378.6449f, 327.25638f), new(379.0153f, 279.6923f),
+ new(322.07822f, -350.2961f), new(365.8146f, -399.8006f), new(180.02971f, -305.4936f), new(332.8281f, 241.4563f), new(-295.2407f, 239.4583f),
+ new(376.13962f, -404.4156f), new(200.7666f, 277.52942f), new(-241.8441f, 236.0893f), new(-194.9431f, 370.0551f), new(338.86148f, 260.6284f),
+ new(244.7905f, 321.74808f), new(283.7983f, 246.28099f), new(-344.2491f, 352.1886f), new(-280.2791f, 175.71701f), new(311.5011f, -238.8088f),
+ new(246.4419f, 262.24887f), new(246.10289f, 345.2674f), new(-404.7016f, 299.6662f), new(420.3783f, -308.7876f), new(403.92798f, 232.734f),
+ new(-357.0183f, 300.46f), new(-292.84268f, 234.5823f), new(301.0519f, 355.7158f), new(430.10852f, -360.2663f), new(209.8685f, 330.8575f),
+ new(253.5462f, -288.291f), new(354.12918f, 321.6562f), new(-382.9718f, 240.21269f), new(-229.8593f, 186.8567f), new(383.8358f, -294.4626f),
+ new(-360.55258f, 415.0159f), new(254.91458f, 362.2855f), new(300.1216f, -193.7342f), new(-340.1841f, 360.3021f), new(249.17781f, -289.48297f),
+ new(306.4732f, -358.9471f), new(353.0685f, 288.3843f), new(302.88882f, 246.8213f), new(-249.96399f, 312.7718f), new(-287.50162f, 356.18958f),
+ new(199.4439f, -237.7916f), new(-251.007f, 307.5598f), new(290.1571f, -242.0608f), new(-305.643f, 296.7876f), new(253.49951f, -226.55661f)
+ ]},
+ { 562, [
+ new(-395.82712f, 250.71259f), new(362.5129f, -345.98508f), new(248.5309f, -291.2108f), new(-360.45172f, 415.2208f), new(-292.6238f, 246.7737f),
+ new(-309.043f, 360.32098f), new(-185.80789f, 368.5795f), new(-301.3464f, 191.5672f), new(202.3385f, -341.9409f), new(255.4765f, -240.733f),
+ new(381.2483f, -199.3496f), new(362.39178f, -308.29172f), new(422.2583f, -306.9419f), new(291.13498f, -403.99948f), new(-187.5679f, 372.5585f),
+ new(-350.1345f, 247.5547f), new(-244.0662f, 316.2754f), new(235.0069f, -285.3358f), new(-182.0188f, 260.7548f), new(-182.7264f, 315.1012f),
+ new(-362.9164f, 348.447f), new(255.4005f, -239.228f), new(194.6574f, -233.8225f), new(-230.5862f, 318.5444f), new(-341.5077f, 354.804f),
+ new(-397.5921f, 245.52559f), new(392.1154f, -404.0384f), new(412.6341f, -253.2196f), new(230.6558f, -178.9543f), new(299.317f, -416.0005f),
+ new(-363.7024f, 345.495f), new(318.9836f, -180.0239f), new(427.1993f, -315.8869f), new(246.7583f, -255.2619f), new(245.1173f, -252.94589f),
+ new(234.6779f, -288.2028f), new(-227.1486f, 427.2381f), new(230.7986f, -247.1955f), new(309.77438f, -347.8402f), new(189.5233f, -291.28787f),
+ new(373.1415f, -248.021f), new(293.706f, -415.96448f), new(-216.8858f, 206.0059f), new(-373.2768f, 304.9261f), new(-376.9047f, 412.87982f),
+ new(-304.6168f, 239.2527f), new(-415.444f, 305.7395f), new(-241.58751f, 364.948f), new(-188.1648f, 263.57278f), new(-232.9846f, 422.4041f),
+ new(-237.1732f, 315.4274f), new(-409.381f, 303.3375f), new(237.9511f, -227.97429f), new(-360.56848f, 237.1517f), new(-191.84079f, 252.1828f),
+ new(-421.368f, 301.6415f), new(230.8776f, -248.6835f), new(418.2651f, -248.86661f), new(425.6526f, -354.8003f), new(-303.3884f, 305.9559f),
+ new(-343.8147f, 352.455f), new(193.6874f, -228.8455f), new(239.5181f, -228.79529f), new(-405.7586f, 359.9452f), new(194.50539f, -226.8085f),
+ new(240.4211f, -338.46628f), new(-361.4024f, 347.852f), new(304.9965f, -237.33879f), new(-369.6062f, 190.1678f), new(-363.6125f, 245.6067f),
+ new(-375.0158f, 302.4151f), new(-327.76242f, 407.68918f), new(-343.4889f, 365.1257f), new(183.89029f, -295.6539f), new(-356.9505f, 250.2327f),
+ new(-244.4185f, 373.24f), new(-302.274f, 366.702f), new(229.2316f, -246.3745f), new(360.41452f, -262.439f), new(-329.9024f, 414.8412f),
+ new(371.7988f, -302.9657f), new(-310.5174f, 289.8819f), new(-187.8009f, 374.8855f), new(375.0393f, -189.5566f), new(236.5421f, -229.0663f),
+ new(-232.4592f, 318.4304f), new(324.2106f, -188.83789f), new(-389.7731f, 248.3496f), new(-194.8834f, 309.82022f), new(-194.0008f, 258.7388f),
+ new(296.65802f, -307.12442f), new(-303.4104f, 306.9519f), new(-223.8018f, 209.18289f), new(-379.19318f, 181.2228f), new(-363.03482f, 304.1471f),
+ new(239.5891f, -230.3073f), new(243.70929f, -254.0379f), new(-190.2334f, 323.8232f), new(293.1175f, -237.1138f), new(-375.6662f, 192.5518f),
+ new(298.7485f, -232.7468f), new(-240.1177f, 269.8371f), new(-368.5483f, 361.3941f), new(357.5078f, -295.84872f), new(284.094f, -409.4575f),
+ new(-197.5294f, 317.77722f), new(-394.98062f, 361.6352f), new(-241.1327f, 267.24112f), new(-229.44151f, 375.75998f), new(296.9785f, -237.62979f),
+ new(364.8669f, -341.4971f), new(245.8528f, -185.3293f), new(424.8756f, -363.50528f), new(305.84802f, -302.3174f), new(423.9361f, -259.0696f),
+ new(296.7075f, -246.9408f), new(241.6371f, -337.6313f), new(-239.3592f, 318.3424f), new(248.39589f, -284.1218f), new(-293.3294f, 300.0059f),
+ new(380.4864f, -398.35538f), new(195.7923f, -294.57288f), new(241.3439f, -280.4238f), new(-355.48148f, 242.1827f), new(187.4534f, -223.1125f),
+ new(200.5305f, -344.38687f), new(-306.0848f, 244.8607f), new(-230.8126f, 415.80112f), new(304.8134f, -366.4812f), new(-322.60742f, 420.89517f),
+ new(239.77371f, -393.3817f), new(253.8335f, -238.408f), new(314.0566f, -183.8459f), new(299.05502f, -291.19843f), new(244.9407f, -395.7577f),
+ new(195.90529f, -300.8349f), new(-365.44882f, 304.8771f), new(417.8186f, -350.67828f), new(370.86288f, -351.50708f), new(359.2359f, -345.86508f),
+ new(372.3838f, -294.50272f), new(-312.33838f, 299.42688f), new(-292.051f, 357.401f), new(227.8226f, -247.4665f), new(252.4245f, -239.49901f),
+ new(324.4696f, -182.9029f), new(373.9375f, -258.451f), new(417.3313f, -310.7509f), new(-236.4552f, 314.4804f), new(-181.9649f, 379.7225f),
+ new(-291.5194f, 195.0302f), new(-401.7481f, 246.62659f), new(193.2925f, -343.6009f), new(237.69681f, -173.4963f), new(246.1707f, -402.8627f),
+ new(-237.1235f, 379.281f), new(-230.3668f, 203.7339f), new(364.5458f, -290.3897f), new(292.72f, -296.11142f), new(356.5535f, -250.444f),
+ new(-308.8594f, 302.6349f), new(358.3345f, -257.714f), new(-299.4154f, 184.5322f), new(-367.2218f, 305.6831f), new(246.04271f, -396.6677f),
+ new(301.90738f, -354.3782f), new(-284.8944f, 193.9062f), new(-235.3975f, 371.19998f), new(-375.18872f, 406.3568f), new(369.4083f, -193.9236f),
+ new(246.6843f, -253.76689f), new(-240.29771f, 269.2861f), new(-396.23712f, 236.96759f), new(-345.78088f, 362.7597f), new(371.1369f, -344.7881f),
+ new(304.8105f, -242.6068f), new(-292.5384f, 303.04288f), new(-238.58171f, 269.1311f), new(307.491f, -299.1264f), new(197.7495f, -339.9149f),
+ new(363.72052f, -244.431f), new(-402.42862f, 352.3602f), new(-182.5514f, 320.2992f), new(-241.4782f, 308.7854f), new(-400.57562f, 363.5312f),
+ new(243.2411f, -339.9953f), new(200.25749f, -342.6439f), new(363.0589f, -355.7711f), new(243.2041f, -338.4523f), new(321.27438f, -358.6122f),
+ new(-372.0468f, 294.6001f), new(-395.2766f, 361.45618f), new(298.995f, -408.11148f), new(-241.26271f, 267.5011f), new(-241.5767f, 268.6261f),
+ new(427.7423f, -309.8099f), new(-293.2104f, 197.1162f), new(392.3874f, -397.2794f), new(319.9144f, -351.8612f), new(-381.5872f, 188.4378f),
+ new(410.7796f, -356.1183f), new(-237.5002f, 321.7134f), new(-299.3648f, 244.2527f), new(381.3093f, -192.8456f), new(-369.0938f, 306.5261f),
+ new(-293.786f, 363.58798f), new(-368.7687f, 418.43582f), new(321.05438f, -362.3732f), new(305.0185f, -236.03679f), new(306.108f, -294.8994f),
+ new(-367.8023f, 364.3671f), new(245.5328f, -177.60231f), new(242.2991f, -338.0733f), new(-366.2883f, 363.7721f), new(-228.47481f, 197.3309f),
+ new(-307.44f, 352.991f), new(386.1174f, -393.9884f), new(-299.4278f, 249.4017f), new(-345.00388f, 365.7207f), new(-417.349f, 292.8915f),
+ new(360.6048f, -292.1077f), new(-314.9234f, 417.36517f), new(-221.00261f, 424.4201f), new(-175.8179f, 376.9025f), new(424.52512f, -252.1526f),
+ new(-343.0217f, 355.399f), new(234.1407f, -397.74872f), new(416.5476f, -355.0983f), new(377.4273f, -200.0456f), new(303.0664f, -352.0872f),
+ new(181.1164f, -228.0235f), new(241.8648f, -185.41231f), new(-358.24872f, 405.5768f), new(314.9036f, -183.56389f), new(418.85532f, -311.1449f),
+ new(-226.63881f, 195.0689f), new(-359.1305f, 246.32469f), new(-239.1255f, 375.57498f), new(372.29388f, -351.6701f), new(-233.7412f, 311.6834f),
+ new(-346.4839f, 364.69272f)
+ ]},
+ { 563, [
+ new(-346.9606f, 363.33267f), new(239.5462f, -279.8539f), new(-228.60019f, 249.20041f), new(-182.3862f, 364.2908f), new(263.2592f, -341.3747f),
+ new(-400.5678f, 362.9282f), new(300.5683f, -417.27377f), new(188.8148f, -226.57129f), new(-293.3876f, 292.57562f), new(242.48819f, -291.4989f),
+ new(-343.6766f, 353.14148f), new(-365.769f, 406.2395f), new(-239.6077f, 265.08337f), new(-366.77792f, 296.0344f), new(428.9427f, -356.9566f),
+ new(371.31232f, -340.0483f), new(314.9917f, -366.3895f), new(-312.36258f, 297.65012f), new(-179.64821f, 373.1738f), new(308.5565f, -344.13858f),
+ new(-320.0749f, 403.4081f), new(306.9575f, -346.80157f), new(363.2069f, -347.54172f), new(239.26149f, -181.2001f), new(-288.49918f, 303.80322f),
+ new(-305.98572f, 369.16928f), new(-401.2287f, 248.51929f), new(-303.535f, 246.31439f), new(-289.48502f, 192.5905f), new(-363.4219f, 303.6204f),
+ new(-178.7852f, 317.9058f), new(312.09268f, -363.92947f), new(424.5419f, -303.67322f), new(325.1521f, -353.42493f), new(353.54172f, -251.7343f),
+ new(355.52872f, -252.4883f), new(178.1419f, -299.6426f), new(372.21f, -297.91318f), new(-183.33609f, 260.8328f), new(-350.2983f, 248.6246f),
+ new(-292.6518f, 361.8723f), new(-365.7375f, 362.6066f), new(368.01132f, -262.36182f), new(-361.8109f, 304.5434f), new(-313.9636f, 295.34012f),
+ new(426.1159f, -313.2282f), new(-322.77188f, 416.90112f), new(-304.2047f, 371.8683f), new(365.1661f, -240.3865f), new(386.11078f, -396.372f),
+ new(-411.7778f, 362.0662f), new(181.4349f, -300.8936f), new(252.3138f, -236.6064f), new(-225.4059f, 209.52141f), new(-177.6582f, 374.3188f),
+ new(-230.1162f, 318.1062f), new(-408.5388f, 367.2382f), new(-231.4755f, 377.5682f), new(-364.33472f, 349.95462f), new(190.6959f, -294.6098f),
+ new(-295.846f, 315.6586f), new(-402.4918f, 361.8252f), new(295.26633f, -405.40277f), new(-233.84549f, 367.0042f), new(-184.9102f, 323.3808f),
+ new(-313.72607f, 358.9876f), new(251.2298f, -234.9614f), new(322.8889f, -183.46541f), new(-227.4702f, 315.1442f), new(-311.8011f, 307.2914f),
+ new(-286.8008f, 364.5083f), new(301.2286f, -243.7875f), new(-220.3469f, 204.9964f), new(-357.6953f, 252.6246f), new(247.16539f, -407.6998f),
+ new(-230.9365f, 374.43222f), new(188.94191f, -296.5888f), new(-299.333f, 242.5564f), new(-224.52881f, 420.7004f), new(430.6367f, -355.9826f),
+ new(362.34192f, -347.05472f), new(423.6167f, -352.1446f), new(-364.2477f, 351.7876f), new(376.24332f, -342.74432f), new(-365.3995f, 360.2496f),
+ new(231.52469f, -245.6505f), new(198.26491f, -337.7307f), new(263.0582f, -338.51172f), new(-241.6544f, 248.3131f), new(-177.46109f, 257.6638f),
+ new(377.6699f, -193.0945f), new(-226.103f, 262.62228f), new(-181.4942f, 309.1858f), new(379.6734f, -252.871f), new(-297.1259f, 283.3334f),
+ new(-294.9819f, 287.4934f), new(-240.62541f, 247.4821f), new(307.25262f, -239.1015f), new(-344.0696f, 355.4285f), new(236.41829f, -233.2105f),
+ new(231.4757f, -244.7715f), new(-415.49808f, 299.9569f), new(298.2233f, -363.0422f), new(-291.3822f, 301.0422f), new(-287.8006f, 294.86862f),
+ new(374.4749f, -198.49551f), new(-297.99402f, 243.3214f), new(371.1733f, -264.0898f), new(-315.4809f, 412.7691f), new(-225.712f, 260.55328f),
+ new(-373.7225f, 191.6303f), new(373.3819f, -195.5765f), new(303.01318f, -301.23248f), new(-286.72302f, 178.64551f), new(-239.9307f, 266.8134f),
+ new(-178.87909f, 256.8478f), new(-359.17792f, 301.5044f), new(431.20792f, -307.3232f), new(373.34f, -240.3865f), new(392.7958f, -400.025f),
+ new(-228.13321f, 319.24017f), new(-176.80319f, 318.7658f), new(321.5331f, -352.04892f), new(245.3162f, -285.06992f), new(429.6129f, -308.25522f),
+ new(-185.9012f, 378.7648f), new(184.4278f, -220.1093f), new(374.27032f, -344.62732f), new(250.4262f, -356.0087f), new(305.9252f, -297.59747f),
+ new(236.7963f, -232.7435f), new(-298.2869f, 289.2784f), new(-362.92792f, 306.03738f), new(304.64462f, -241.6675f), new(-360.275f, 417.1335f),
+ new(249.0044f, -401.7848f), new(204.9499f, -341.3877f), new(244.3355f, -185.7891f), new(175.7709f, -303.7866f), new(324.0859f, -181.5364f),
+ new(-301.9507f, 371.0163f), new(375.16092f, -192.1425f), new(-298.34f, 352.0914f), new(287.7616f, -416.147f), new(369.333f, -300.86218f),
+ new(-406.3408f, 352.8132f), new(369.934f, -242.0695f), new(-228.0622f, 249.1434f), new(297.60318f, -293.04147f), new(-371.9595f, 191.4873f),
+ new(301.95062f, -244.9315f), new(364.65198f, -293.7812f), new(191.1138f, -223.7683f), new(-228.94319f, 247.48041f), new(246.6904f, -404.5748f),
+ new(428.63593f, -310.0452f), new(-226.96649f, 373.01422f), new(421.8492f, -251.5412f), new(371.353f, -239.63051f), new(370.4103f, -264.5288f),
+ new(-413.9741f, 300.82993f), new(-345.8046f, 365.41568f), new(245.80049f, -184.8611f), new(370.387f, -298.96118f), new(-302.893f, 312.6106f),
+ new(-218.7349f, 205.9174f), new(-418.52808f, 292.8369f), new(377.6864f, -252.115f), new(-238.9617f, 266.29037f), new(-180.8701f, 250.48979f),
+ new(-234.2352f, 321.6712f), new(363.1791f, -239.63051f), new(289.52832f, -415.3638f), new(-224.944f, 261.99628f), new(-362.383f, 415.9305f),
+ new(249.01239f, -248.625f), new(303.1503f, -408.2328f), new(361.7651f, -242.0795f), new(-223.20589f, 197.59041f), new(-219.36081f, 430.2854f),
+ new(299.8173f, -360.3672f), new(-230.8712f, 322.01718f), new(-229.7965f, 375.4862f), new(377.5029f, -203.0955f), new(247.1492f, -284.01392f),
+ new(-368.4829f, 308.1524f), new(-239.1957f, 266.1564f), new(365.9829f, -348.43872f), new(-233.7272f, 308.9532f), new(-289.16418f, 304.1722f),
+ new(314.5807f, -367.54648f), new(-298.692f, 316.66458f), new(243.6505f, -187.8221f), new(242.31839f, -398.1258f), new(-236.34221f, 323.6752f),
+ new(379.40192f, -201.1885f), new(423.46323f, -250.6152f), new(-308.3141f, 361.2446f), new(202.5599f, -344.1137f), new(247.3924f, -402.7138f),
+ new(303.91818f, -298.75247f), new(249.64139f, -249.07101f), new(-342.8476f, 354.77148f), new(185.81891f, -291.9408f), new(427.9147f, -358.6876f),
+ new(-241.17041f, 246.08209f), new(294.31158f, -419.733f), new(-355.83432f, 239.1826f), new(292.04758f, -422.62f), new(300.5676f, -235.4475f),
+ new(359.7449f, -351.5647f), new(-420.28308f, 304.2399f), new(-348.7773f, 245.65761f), new(-368.996f, 421.8425f), new(-294.888f, 350.2264f),
+ new(-309.37408f, 310.8584f), new(-396.2677f, 245.83629f), new(420.8572f, -253.3202f), new(390.1558f, -402.57f), new(391.1828f, -400.952f),
+ new(-377.1405f, 183.5713f), new(244.48419f, -287.1569f), new(235.7213f, -232.1545f), new(-397.4657f, 245.1503f), new(315.9217f, -365.8545f),
+ new(318.9241f, -356.4729f), new(302.0263f, -361.20718f), new(189.5018f, -224.6973f), new(-286.37518f, 303.1162f), new(294.40918f, -296.31348f),
+ new(203.3379f, -342.3157f), new(-299.78198f, 317.1486f), new(-235.99649f, 378.95822f), new(-297.114f, 345.8894f), new(309.0805f, -344.4346f),
+ new(-365.3617f, 353.8866f), new(-310.33658f, 296.8841f), new(318.1059f, -185.5984f), new(325.9979f, -180.4384f), new(262.0232f, -338.42972f),
+ new(-281.68802f, 188.3795f), new(252.9078f, -235.8794f), new(387.7258f, -404.281f), new(369.9623f, -265.31882f), new(250.13339f, -248.477f),
+ new(305.63962f, -240.0285f), new(-290.0798f, 365.7383f), new(351.99973f, -254.4433f), new(-347.75162f, 366.4687f), new(-352.08432f, 247.60161f),
+ new(416.7782f, -246.9592f), new(-301.61002f, 236.3394f), new(-362.0249f, 304.1194f), new(-290.9086f, 296.04462f), new(-306.2971f, 309.6934f),
+ new(260.4022f, -353.6947f), new(-399.9007f, 239.52829f), new(-227.02881f, 434.4284f), new(251.3042f, -333.8837f), new(-364.5175f, 361.9476f),
+ new(310.7655f, -344.97858f), new(318.0789f, -176.1094f), new(376.2734f, -254.588f), new(-379.1365f, 196.4763f), new(308.3226f, -242.3495f),
+ new(231.1487f, -243.4895f), new(-302.152f, 237.80139f), new(-414.8201f, 302.0609f), new(-295.72202f, 349.7504f), new(302.6443f, -362.2492f),
+ new(311.80368f, -364.8845f), new(378.1584f, -252.381f), new(-221.2128f, 429.2264f), new(199.81491f, -345.5527f), new(-182.9882f, 314.0508f),
+ new(-365.922f, 409.9575f), new(178.9239f, -300.08258f), new(360.1559f, -350.27472f), new(243.4334f, -407.7098f), new(299.1132f, -305.0865f),
+ new(300.3413f, -360.6632f), new(322.3931f, -352.5339f), new(375.04532f, -343.4323f), new(-311.3231f, 362.3846f), new(189.2178f, -228.4003f),
+ new(-295.7799f, 287.0364f), new(-283.573f, 187.3045f), new(-183.96721f, 367.3118f), new(-420.4621f, 300.3409f), new(354.0137f, -251.9993f),
+ new(234.7215f, -185.4001f), new(368.957f, -305.2122f), new(366.32f, -304.56418f), new(-229.1182f, 309.46518f), new(-343.1616f, 354.5925f)
+ ]},
+ { 564, [
+ new(294.0841f, -407.2102f), new(301.7568f, -301.86398f), new(372.6749f, -305.3671f), new(-301.69672f, 316.6765f), new(308.5903f, -239.5633f),
+ new(-297.94418f, 256.51f), new(-244.4492f, 269.1998f), new(240.6394f, -176.5459f), new(-351.10013f, 245.2772f), new(209.7983f, -342.1639f),
+ new(379.2326f, -198.268f), new(212.6913f, -339.7919f), new(432.2195f, -306.22952f), new(-223.75931f, 213.56189f), new(-317.4976f, 405.8053f),
+ new(-229.206f, 299.0448f), new(-174.7196f, 375.0355f), new(-312.862f, 417.342f), new(-366.1932f, 293.24707f), new(369.1787f, -288.61728f),
+ new(-293.1759f, 249.8074f), new(-341.3194f, 357.91818f), new(386.0707f, -293.79648f), new(303.7716f, -228.7064f), new(247.3484f, -275.5921f),
+ new(187.477f, -300.52582f), new(-295.0772f, 239.4571f), new(432.258f, -362.40887f), new(-235.0527f, 363.4374f), new(238.2624f, -249.57521f),
+ new(-293.4392f, 254.80501f), new(184.69739f, -226.2584f), new(300.1365f, -354.6909f), new(371.1317f, -358.5755f), new(-353.97913f, 247.4512f),
+ new(256.6304f, -288.3944f), new(185.5614f, -232.35341f), new(-184.5951f, 325.1616f), new(388.01282f, -197.9776f), new(-181.9368f, 263.6879f),
+ new(202.4301f, -342.1123f), new(369.8386f, -338.7967f), new(-216.9924f, 196.9315f), new(359.71152f, -347.1878f), new(-285.7062f, 183.71759f),
+ new(-395.269f, 244.57219f), new(-370.3526f, 302.1309f), new(188.253f, -305.7098f), new(414.0514f, -251.74161f), new(357.297f, -249.0125f),
+ new(-225.7044f, 375.1609f), new(296.8471f, -403.4062f), new(-303.8208f, 285.22818f), new(251.5753f, -405.63452f), new(388.2027f, -394.23172f),
+ new(-222.3778f, 423.9128f), new(-380.36462f, 296.2089f), new(370.2947f, -354.30652f), new(-232.5004f, 321.0904f), new(-315.2538f, 295.258f),
+ new(325.0271f, -183.3172f), new(-348.7481f, 245.4752f), new(-186.0318f, 373.3478f), new(-309.9913f, 361.93112f), new(-221.60161f, 310.1719f),
+ new(-347.5881f, 249.1132f), new(247.70781f, -228.5653f), new(-193.3353f, 313.3149f), new(416.5527f, -248.1683f), new(352.261f, -247.0525f),
+ new(-361.78992f, 297.6232f), new(-217.8494f, 204.0765f), new(422.3135f, -350.0328f), new(419.7135f, -354.00882f), new(249.6844f, -281.1654f),
+ new(-174.85881f, 260.91788f), new(-238.69519f, 370.04922f), new(-223.5294f, 374.37888f), new(308.0468f, -304.319f), new(249.1293f, -355.2232f),
+ new(355.22452f, -342.9768f), new(-402.92502f, 360.6893f), new(234.2777f, -280.2842f), new(191.7768f, -221.20941f), new(181.539f, -298.2048f),
+ new(291.1509f, -294.1907f), new(311.41238f, -300.7325f), new(-322.693f, 421.187f), new(-395.249f, 248.4942f), new(-291.4108f, 203.6253f),
+ new(-314.2386f, 404.4313f), new(-361.90958f, 415.3465f), new(-242.54121f, 270.7578f), new(-299.3608f, 293.7322f), new(-416.5013f, 300.1585f),
+ new(431.21597f, -356.13788f), new(424.6027f, -251.3053f), new(-310.7738f, 303.729f), new(232.7407f, -279.3772f), new(-352.9801f, 247.7702f),
+ new(317.9262f, -361.917f), new(-303.1513f, 353.7141f), new(369.5718f, -265.9601f), new(-414.70752f, 302.9353f), new(296.45392f, -300.7727f),
+ new(376.40698f, -344.9291f), new(-182.58461f, 378.11252f), new(-354.078f, 371.21292f), new(296.3752f, -243.4779f), new(-229.855f, 304.8238f),
+ new(-368.59958f, 358.46558f), new(383.40372f, -297.5005f), new(252.3445f, -292.2144f), new(192.7736f, -298.8144f), new(-287.4549f, 247.6354f),
+ new(-229.4196f, 320.0679f), new(364.2346f, -333.0857f), new(-375.36f, 191.0908f), new(-236.146f, 307.28378f), new(-310.8482f, 250.59529f),
+ new(-304.43082f, 301.322f), new(-233.5204f, 377.8441f), new(-298.9609f, 354.6521f), new(289.6149f, -293.28268f), new(-174.09961f, 367.5025f),
+ new(240.4559f, -388.0717f), new(-229.2673f, 212.14189f), new(229.7771f, -231.8655f), new(250.67981f, -230.41931f), new(368.0523f, -240.1683f),
+ new(-285.98822f, 309.3028f), new(-314.79318f, 243.3783f), new(299.0036f, -227.0704f), new(232.0271f, -232.4205f), new(231.0501f, -233.6255f),
+ new(294.1792f, -240.57251f), new(-304.91522f, 234.1801f), new(-283.15622f, 186.3106f), new(295.9049f, -295.7377f), new(-296.87122f, 303.4198f),
+ new(311.71323f, -359.633f), new(370.2057f, -293.8523f), new(-308.48428f, 361.03113f), new(306.2275f, -361.2909f), new(249.5215f, -294.6374f),
+ new(363.9148f, -260.41312f), new(-236.34671f, 364.2094f), new(323.98077f, -192.6212f), new(-242.90721f, 269.6138f), new(-293.7032f, 367.1249f),
+ new(-355.785f, 372.5249f), new(251.1992f, -248.5734f), new(-342.4374f, 358.82318f), new(-292.1952f, 366.2279f), new(-174.2558f, 254.2069f),
+ new(-359.4855f, 309.75528f), new(251.80121f, -247.8174f), new(-369.49698f, 188.8748f), new(-295.0552f, 255.42f), new(-220.8854f, 376.3999f),
+ new(-368.6466f, 359.9036f), new(241.1683f, -347.5112f), new(326.7068f, -188.7652f), new(293.3146f, -413.61172f), new(390.7367f, -390.8207f),
+ new(379.0501f, -256.0001f), new(-226.0813f, 210.7939f), new(316.41592f, -345.4747f), new(308.5978f, -309.389f), new(357.94f, -252.2895f),
+ new(378.2601f, -251.2111f), new(435.97052f, -312.4035f), new(373.4949f, -309.3901f), new(296.0771f, -285.2444f), new(-367.21158f, 417.3555f),
+ new(302.0322f, -250.2919f), new(-190.57921f, 255.4793f), new(379.7137f, -291.6185f), new(313.17023f, -360.495f), new(184.32921f, -299.0769f),
+ new(-298.952f, 369.9362f), new(-297.2689f, 242.2574f), new(-404.017f, 361.1716f), new(263.6643f, -338.28418f), new(-360.73358f, 419.0345f),
+ new(361.2017f, -285.5113f), new(-400.35202f, 358.74033f), new(-297.14172f, 314.95248f), new(-239.0892f, 375.2842f), new(372.758f, -339.0991f),
+ new(379.2078f, -189.2336f), new(-309.2658f, 302.883f), new(421.2298f, -317.105f), new(239.0307f, -281.8312f), new(-175.9441f, 321.7766f),
+ new(290.4901f, -401.2262f), new(365.5083f, -243.7093f), new(245.98149f, -290.0094f), new(360.2989f, -296.471f), new(316.5621f, -174.21019f),
+ new(-243.40721f, 269.7738f), new(190.6026f, -295.94342f), new(421.6398f, -303.066f), new(306.10052f, -357.0159f), new(-292.3322f, 311.7108f),
+ new(-233.1454f, 326.9054f), new(302.3671f, -287.6994f), new(288.7332f, -234.68651f), new(-311.9896f, 407.2243f), new(177.6142f, -291.6079f),
+ new(-352.5642f, 345.72488f), new(301.4262f, -245.12091f), new(-287.5202f, 364.7059f), new(-320.295f, 419.76102f), new(-286.9022f, 358.8479f),
+ new(301.7316f, -231.5874f), new(307.7684f, -294.7265f), new(-225.7144f, 207.1525f), new(-294.3959f, 352.0001f), new(-419.4483f, 302.53052f),
+ new(-222.1866f, 317.2359f), new(415.9555f, -347.84982f), new(-394.67102f, 245.1922f), new(294.74222f, -242.51291f), new(368.9896f, -334.6327f),
+ new(183.5522f, -293.92792f), new(354.0099f, -294.022f), new(390.8967f, -399.16382f), new(243.2849f, -391.8337f), new(248.0074f, -280.4031f),
+ new(194.5796f, -297.3204f), new(-405.98752f, 307.87732f), new(251.1228f, -229.75131f), new(294.14462f, -419.3247f), new(-187.8253f, 314.72592f),
+ new(293.7462f, -236.6425f), new(-295.706f, 368.5452f), new(-192.9342f, 256.0003f), new(314.0553f, -245.3703f), new(-296.1307f, 318.1165f),
+ new(-368.197f, 192.9508f), new(368.9508f, -262.3761f), new(-245.1609f, 317.5516f), new(195.2558f, -225.8224f), new(-230.6057f, 356.97842f),
+ new(-397.42f, 362.11932f), new(310.4519f, -343.14868f), new(398.4877f, -406.22882f), new(-217.8993f, 428.3944f), new(237.35341f, -250.89821f),
+ new(361.1259f, -300.529f), new(318.2272f, -366.709f), new(-414.9423f, 300.82852f), new(250.4623f, -332.03818f), new(-190.5223f, 312.2589f),
+ new(363.1487f, -286.65527f), new(429.00378f, -305.936f), new(320.3498f, -186.5842f), new(438.5775f, -308.4125f), new(-362.37152f, 306.6843f),
+ new(238.36441f, -249.64221f), new(-373.77222f, 288.73108f), new(-293.539f, 371.3302f), new(250.4342f, -249.6904f), new(312.9154f, -298.4235f),
+ new(-288.6632f, 184.8866f), new(245.62491f, -389.8627f), new(-215.5548f, 415.4498f), new(-231.03871f, 362.1314f), new(-311.873f, 408.085f),
+ new(-372.00598f, 188.5018f), new(-244.3972f, 377.3622f), new(-186.85681f, 368.2578f), new(-302.8513f, 359.2571f), new(235.4323f, -399.59f),
+ new(241.24931f, -191.0729f), new(-239.6519f, 318.9656f), new(-351.933f, 373.52792f), new(-233.9194f, 383.0481f), new(239.6847f, -286.5152f),
+ new(238.4174f, -175.23691f), new(314.5281f, -186.0502f), new(256.7794f, -283.76642f), new(-413.9443f, 303.96652f), new(-216.0858f, 421.4508f),
+ new(-354.1859f, 302.0612f), new(-408.597f, 362.90863f), new(241.05841f, -273.1391f), new(371.8101f, -248.69711f), new(-368.59958f, 360.88458f),
+ new(-300.29492f, 355.1581f), new(-187.42621f, 257.7403f), new(-298.77072f, 315.5365f), new(-244.5542f, 270.2378f), new(244.8493f, -197.0419f),
+ new(-293.7669f, 347.3551f), new(314.1254f, -296.9065f), new(317.96042f, -348.2773f), new(-221.2613f, 425.77942f), new(-339.9444f, 359.7042f),
+ new(-299.4382f, 240.8651f), new(-402.359f, 249.5992f), new(-184.18181f, 370.7708f), new(262.3673f, -338.3282f), new(364.0057f, -351.8565f),
+ new(-376.24762f, 304.3669f), new(313.6033f, -241.51929f), new(177.7984f, -223.56241f), new(266.4553f, -345.3472f), new(-290.1458f, 202.9163f),
+ new(-295.1268f, 196.2903f), new(285.4516f, -410.54572f), new(301.5945f, -355.5489f), new(-300.79822f, 241.6281f), new(-244.8822f, 268.8178f),
+ new(376.5546f, -202.00299f), new(-355.1912f, 346.7219f), new(240.78029f, -405.11002f), new(-364.02557f, 414.90848f), new(422.46698f, -352.72787f),
+ new(203.2111f, -347.7813f), new(196.1391f, -339.6533f), new(359.1875f, -344.5208f), new(263.8683f, -336.7082f), new(-292.4382f, 257.935f),
+ new(-305.35718f, 248.5103f), new(248.4724f, -185.4339f), new(-286.0848f, 201.6053f), new(317.02792f, -349.9037f), new(250.88231f, -400.79352f),
+ new(206.3283f, -337.58792f), new(425.5607f, -256.80832f), new(-293.01782f, 291.3252f), new(387.0708f, -191.9996f), new(-242.5999f, 316.5946f),
+ new(-411.0755f, 309.8073f), new(323.9884f, -350.3443f), new(-175.2691f, 313.4416f), new(379.115f, -341.2761f), new(247.60631f, -193.2529f),
+ new(247.5054f, -178.7809f), new(234.3654f, -246.9772f), new(416.6654f, -247.7356f), new(250.0168f, -230.7693f), new(429.8878f, -311.01102f),
+ new(-411.852f, 356.6976f), new(295.63712f, -404.9232f), new(384.7767f, -388.77972f), new(198.1398f, -223.4144f), new(321.42142f, -353.9583f),
+ new(-353.5872f, 345.4819f), new(397.5797f, -401.7668f), new(366.3859f, -302.9181f), new(410.3074f, -245.5516f), new(362.0023f, -238.0953f),
+ new(-189.6918f, 369.3608f), new(324.3551f, -177.25119f), new(196.9218f, -224.9254f), new(240.25629f, -401.47202f), new(-358.6559f, 303.7562f),
+ new(302.9441f, -292.6704f), new(-224.0003f, 426.8154f), new(-407.509f, 362.2986f), new(367.9199f, -303.8211f), new(-290.8232f, 310.8638f),
+ new(-239.2274f, 385.1251f), new(362.7006f, -332.18268f), new(245.36531f, -398.6375f), new(325.49777f, -190.28221f), new(-291.8159f, 249.0434f),
+ new(-294.523f, 368.2512f), new(-370.6632f, 294.94208f), new(372.8756f, -196.089f), new(355.5449f, -294.92502f), new(-297.8528f, 292.8862f),
+ new(-220.8438f, 422.9988f), new(-185.1848f, 367.6418f), new(-364.65552f, 308.4093f), new(-398.42f, 358.9873f), new(251.22139f, -282.0714f),
+ new(-219.0173f, 424.9024f), new(423.4358f, -304.125f), new(-309.54318f, 249.8623f), new(365.1428f, -261.1381f), new(-354.04813f, 243.3472f)
+ ]},
+ { 565, [
+ new(241.05841f, -273.1391f), new(362.7006f, -332.18268f), new(-414.9423f, 300.82852f), new(354.0099f, -294.022f), new(-352.9801f, 247.7702f),
+ new(320.3498f, -186.5842f), new(234.3654f, -246.9772f), new(-289.6598f, 198.1053f), new(359.71152f, -347.1878f), new(368.0523f, -240.1683f),
+ new(362.0023f, -238.0953f), new(-217.8494f, 204.0765f), new(-294.523f, 368.2512f), new(293.7462f, -236.6425f), new(288.7332f, -234.68651f),
+ new(262.3673f, -338.3282f), new(-188.4292f, 254.6133f), new(-229.2673f, 212.14189f), new(251.80121f, -247.8174f), new(-232.5004f, 321.0904f),
+ new(370.2947f, -354.30652f), new(-364.65552f, 308.4093f), new(-364.02557f, 414.90848f), new(263.6643f, -338.28418f), new(383.40372f, -297.5005f),
+ new(-185.1848f, 367.6418f), new(-367.21158f, 417.3555f), new(-353.97913f, 247.4512f), new(325.0271f, -183.3172f), new(-300.79822f, 241.6281f),
+ new(-242.54121f, 270.7578f), new(-181.9368f, 263.6879f), new(177.6142f, -291.6079f), new(-192.9342f, 256.0003f), new(-375.36f, 191.0908f),
+ new(242.5954f, -274.0451f), new(397.5797f, -401.7668f), new(-347.5881f, 249.1132f), new(232.7407f, -279.3772f), new(415.4564f, -249.2536f),
+ new(-221.2613f, 425.77942f), new(353.49f, -247.7745f), new(326.7068f, -188.7652f), new(-231.03871f, 362.1314f), new(321.42142f, -353.9583f),
+ new(187.477f, -300.52582f), new(-286.0848f, 201.6053f), new(-174.09961f, 367.5025f), new(398.4877f, -406.22882f), new(251.22139f, -282.0714f),
+ new(-416.5013f, 300.1585f), new(361.1259f, -300.529f), new(373.4949f, -309.3901f), new(-361.78992f, 297.6232f), new(240.4559f, -388.0717f),
+ new(-215.5548f, 415.4498f), new(-287.4549f, 247.6354f), new(302.9441f, -292.6704f), new(363.9148f, -260.41312f), new(231.0501f, -233.6255f),
+ new(-298.952f, 369.9362f), new(-295.0552f, 255.42f), new(415.9555f, -347.84982f), new(410.3074f, -245.5516f), new(-216.0858f, 421.4508f),
+ new(295.9049f, -295.7377f), new(388.01282f, -197.9776f), new(372.6749f, -305.3671f), new(-309.2658f, 302.883f), new(-193.3353f, 313.3149f),
+ new(-353.5872f, 345.4819f), new(249.6844f, -281.1654f), new(237.35341f, -250.89821f), new(-370.6632f, 294.94208f), new(248.0074f, -280.4031f),
+ new(-292.4382f, 257.935f), new(248.4724f, -185.4339f), new(378.2601f, -251.2111f), new(245.62491f, -389.8627f), new(192.7736f, -298.8144f),
+ new(256.6304f, -288.3944f), new(194.5796f, -297.3204f), new(206.3283f, -337.58792f), new(369.5718f, -265.9601f), new(-305.35718f, 248.5103f),
+ new(-354.04813f, 243.3472f), new(-341.3194f, 357.91818f), new(-348.7481f, 245.4752f), new(431.21597f, -356.13788f), new(-404.017f, 361.1716f),
+ new(429.00378f, -305.936f), new(209.7983f, -342.1639f), new(317.9262f, -361.917f), new(368.9896f, -334.6327f), new(-285.7062f, 183.71759f),
+ new(392.5267f, -400.1238f), new(-244.4492f, 269.1998f), new(-293.7669f, 347.3551f), new(-419.4483f, 302.53052f), new(-226.0813f, 210.7939f),
+ new(-229.4196f, 320.0679f), new(195.2558f, -225.8224f), new(-299.4382f, 240.8651f), new(390.7367f, -390.8207f), new(258.9323f, -356.4322f),
+ new(373.3821f, -249.6251f), new(-311.9896f, 407.2243f), new(-366.1932f, 293.24707f), new(251.5753f, -405.63452f), new(323.9884f, -350.3443f),
+ new(-294.3959f, 352.0001f), new(360.2989f, -296.471f), new(-314.79318f, 243.3783f), new(-238.69519f, 370.04922f), new(-297.2689f, 242.2574f),
+ new(244.8493f, -197.0419f), new(-293.539f, 371.3302f), new(-187.8253f, 314.72592f), new(-243.18321f, 269.7858f), new(-186.85681f, 368.2578f),
+ new(239.0307f, -281.8312f), new(294.14462f, -419.3247f), new(241.1683f, -347.5112f), new(-296.87122f, 303.4198f), new(-395.249f, 248.4942f),
+ new(-368.6466f, 359.9036f), new(-370.3526f, 302.1309f), new(-309.9913f, 361.93112f), new(-285.98822f, 309.3028f), new(250.88231f, -400.79352f),
+ new(438.5775f, -308.4125f), new(-402.359f, 249.5992f), new(-221.60161f, 310.1719f), new(290.4901f, -401.2262f), new(314.1254f, -296.9065f),
+ new(-342.4374f, 358.82318f), new(365.5083f, -243.7093f), new(245.98149f, -290.0094f), new(384.7767f, -388.77972f), new(-220.8854f, 376.3999f),
+ new(-190.5223f, 312.2589f), new(-398.42f, 358.9873f), new(299.0036f, -227.0704f), new(-352.5642f, 345.72488f), new(313.6033f, -241.51929f),
+ new(364.0057f, -351.8565f), new(301.4262f, -245.12091f), new(184.32921f, -299.0769f), new(418.3757f, -249.30931f), new(-293.4392f, 254.80501f),
+ new(196.1391f, -339.6533f), new(296.8471f, -403.4062f), new(294.0841f, -407.2102f), new(-339.9444f, 359.7042f), new(-407.509f, 362.2986f),
+ new(425.5607f, -256.80832f), new(-216.9924f, 196.9315f), new(-296.1307f, 318.1165f), new(250.4623f, -332.03818f), new(-243.40721f, 269.7738f),
+ new(239.6847f, -286.5152f), new(-175.2691f, 313.4416f), new(-174.85881f, 260.91788f), new(301.7316f, -231.5874f), new(419.7135f, -354.00882f),
+ new(432.2195f, -306.22952f), new(-408.597f, 362.90863f), new(238.4174f, -175.23691f), new(-312.862f, 417.342f), new(202.4301f, -342.1123f),
+ new(-351.933f, 373.52792f), new(-225.7044f, 375.1609f), new(-354.1859f, 302.0612f), new(-360.73358f, 419.0345f), new(293.3146f, -413.61172f),
+ new(247.5054f, -178.7809f), new(416.6654f, -247.7356f), new(-245.03021f, 271.02582f), new(294.74222f, -242.51291f), new(306.10052f, -357.0159f),
+ new(-298.9609f, 354.6521f), new(308.0468f, -304.319f), new(390.8967f, -399.16382f), new(386.0707f, -293.79648f), new(-284.15723f, 183.1806f),
+ new(-229.206f, 299.0448f), new(191.7768f, -221.20941f), new(-286.9022f, 358.8479f), new(-288.6632f, 184.8866f), new(432.258f, -362.40887f),
+ new(-225.7144f, 207.1525f), new(-359.4855f, 309.75528f), new(-322.693f, 421.187f), new(229.7771f, -231.8655f), new(-239.0892f, 375.2842f),
+ new(-175.9441f, 321.7766f), new(376.40698f, -344.9291f), new(-223.5294f, 374.37888f), new(388.2027f, -394.23172f), new(-217.8993f, 428.3944f),
+ new(379.2078f, -189.2336f), new(301.7568f, -301.86398f), new(317.96042f, -348.2773f), new(240.25629f, -401.47202f), new(-297.5252f, 241.0861f),
+ new(378.0226f, -199.784f), new(-354.078f, 371.21292f), new(296.45392f, -300.7727f), new(322.8414f, -351.7833f), new(379.0501f, -256.0001f),
+ new(308.5903f, -239.5633f), new(188.253f, -305.7098f), new(183.5522f, -293.92792f), new(-292.1952f, 366.2279f), new(-290.1458f, 202.9163f),
+ new(-244.5542f, 270.2378f), new(241.24931f, -191.0729f), new(243.2849f, -391.8337f), new(-368.197f, 192.9508f), new(379.2326f, -198.268f),
+ new(-244.3972f, 377.3622f), new(-293.1759f, 249.8074f), new(-369.49698f, 188.8748f), new(249.5542f, -247.5204f), new(-358.6559f, 303.7562f),
+ new(212.6913f, -339.7919f), new(387.0708f, -191.9996f), new(-233.5204f, 377.8441f), new(-380.36462f, 296.2089f), new(-291.4108f, 203.6253f),
+ new(181.539f, -298.2048f), new(-302.8513f, 359.2571f), new(-292.3322f, 311.7108f), new(-239.6519f, 318.9656f), new(323.98077f, -192.6212f),
+ new(296.0771f, -285.2444f), new(294.1792f, -240.57251f), new(311.41238f, -300.7325f), new(314.0553f, -245.3703f), new(-397.42f, 362.11932f),
+ new(308.5978f, -309.389f), new(-303.8208f, 285.22818f), new(435.97052f, -312.4035f), new(-400.35202f, 358.74033f), new(422.46698f, -352.72787f),
+ new(-224.0003f, 426.8154f), new(357.297f, -249.0125f), new(352.261f, -247.0525f), new(252.3445f, -292.2144f), new(196.9218f, -224.9254f),
+ new(-311.873f, 408.085f), new(-414.70752f, 302.9353f), new(-293.7032f, 367.1249f), new(318.2272f, -366.709f), new(-223.75931f, 213.56189f),
+ new(232.0271f, -232.4205f), new(-295.1268f, 196.2903f), new(-405.98752f, 307.87732f), new(422.3135f, -350.0328f), new(198.1398f, -223.4144f),
+ new(376.5546f, -202.00299f), new(-373.77222f, 288.73108f), new(-182.58461f, 378.11252f), new(-361.90958f, 415.3465f), new(182.983f, -299.06482f),
+ new(-411.0755f, 309.8073f), new(250.4342f, -249.6904f), new(-242.90721f, 269.6138f), new(371.8101f, -248.69711f), new(371.1317f, -358.5755f),
+ new(-245.1609f, 317.5516f), new(370.2057f, -293.8523f), new(-293.01782f, 291.3252f), new(-362.37152f, 306.6843f), new(245.36531f, -398.6375f),
+ new(-283.15622f, 186.3106f), new(306.2275f, -361.2909f), new(251.1228f, -229.75131f), new(-295.0772f, 239.4571f), new(310.4519f, -343.14868f),
+ new(361.2017f, -285.5113f), new(250.0168f, -230.7693f), new(285.4516f, -410.54572f), new(-236.146f, 307.28378f), new(372.8756f, -196.089f),
+ new(-184.18181f, 370.7708f), new(316.5621f, -174.21019f), new(-368.59958f, 358.46558f), new(-317.4976f, 405.8053f), new(421.6398f, -303.066f),
+ new(256.7794f, -283.76642f), new(-395.269f, 244.57219f), new(302.3671f, -287.6994f), new(-299.3608f, 293.7322f), new(369.8386f, -338.7967f),
+ new(-315.2538f, 295.258f), new(-189.6918f, 369.3608f), new(300.1365f, -354.6909f), new(303.7716f, -228.7064f), new(-310.7738f, 303.729f),
+ new(249.5215f, -294.6374f), new(-287.5202f, 364.7059f), new(-304.91522f, 234.1801f), new(317.02792f, -349.9037f), new(-244.8822f, 268.8178f),
+ new(359.1875f, -344.5208f), new(238.36441f, -249.64221f), new(311.71323f, -359.633f), new(421.1045f, -351.5508f), new(416.5527f, -248.1683f),
+ new(316.41592f, -345.4747f), new(-320.295f, 419.76102f), new(366.3859f, -302.9181f), new(177.7984f, -223.56241f), new(-297.94418f, 256.51f),
+ new(-174.7196f, 375.0355f), new(379.115f, -341.2761f), new(-301.69672f, 316.6765f), new(203.2111f, -347.7813f), new(249.1293f, -355.2232f),
+ new(379.7137f, -291.6185f), new(-297.14172f, 314.95248f), new(-242.5999f, 316.5946f), new(-402.92502f, 360.6893f), new(-222.1866f, 317.2359f),
+ new(-411.852f, 356.6976f), new(-230.6057f, 356.97842f), new(-394.67102f, 245.1922f), new(240.78029f, -405.11002f), new(369.1787f, -288.61728f),
+ new(247.60631f, -193.2529f), new(190.6026f, -295.94342f), new(-310.8482f, 250.59529f), new(-314.2386f, 404.4313f), new(-381.59198f, 181.05981f),
+ new(429.8878f, -311.01102f), new(-295.706f, 368.5452f), new(-304.43082f, 301.322f), new(-355.1912f, 346.7219f), new(263.8683f, -336.7082f),
+ new(247.3484f, -275.5921f), new(184.69739f, -226.2584f), new(-355.785f, 372.5249f), new(372.758f, -339.0991f), new(266.4553f, -345.3472f),
+ new(-184.5951f, 325.1616f), new(368.9508f, -262.3761f), new(424.6027f, -251.3053f), new(-351.10013f, 245.2772f), new(247.70781f, -228.5653f),
+ new(-368.59958f, 360.88458f), new(-413.9443f, 303.96652f), new(-187.42621f, 257.7403f), new(-298.77072f, 315.5365f), new(-372.00598f, 188.5018f),
+ new(302.0322f, -250.2919f), new(-233.1454f, 326.9054f), new(185.5614f, -232.35341f), new(-239.4364f, 329.3654f), new(-233.9194f, 383.0481f),
+ new(-303.1513f, 353.7141f), new(357.94f, -252.2895f), new(414.0514f, -251.74161f), new(-229.855f, 304.8238f), new(324.3551f, -177.25119f),
+ new(-174.2558f, 254.2069f), new(-190.57921f, 255.4793f), new(-300.29492f, 355.1581f), new(-220.8438f, 422.9988f), new(381.12482f, -190.3646f),
+ new(311.9099f, -344.0077f), new(-290.54617f, 362.8629f), new(289.6149f, -293.28268f), new(-188.8283f, 311.59692f), new(-312.9906f, 404.0923f),
+ new(-239.2274f, 385.1251f), new(-308.48428f, 361.03113f), new(-301.424f, 373.38718f), new(307.7684f, -294.7265f), new(-222.3778f, 423.9128f),
+ new(-312.6886f, 404.2183f), new(365.1428f, -261.1381f), new(365.5397f, -352.75952f), new(363.1487f, -286.65527f), new(-291.8159f, 249.0434f),
+ new(-297.8528f, 292.8862f), new(296.3752f, -243.4779f), new(309.8153f, -240.28629f), new(235.4323f, -399.59f), new(366.9003f, -241.61131f),
+ new(251.1265f, -293.7254f), new(325.49777f, -190.28221f), new(-376.24762f, 304.3669f), new(423.4358f, -304.125f), new(318.4661f, -175.3342f),
+ new(424.59998f, -353.98587f), new(-223.7964f, 206.0125f), new(301.5945f, -355.5489f), new(-290.8232f, 310.8638f), new(287.37363f, -411.6787f),
+ new(355.22452f, -342.9768f), new(-365.70657f, 408.55148f), new(302.8646f, -229.8434f), new(-405.284f, 356.42563f), new(-236.34671f, 364.2094f),
+ new(-286.59222f, 179.3006f)
]},
{ 593, [
-new(-293.8379f, 250.743f), new(314.374f, -348.1099f), new(-349.7554f, 368.74118f), new(349.5346f, -236.1412f), new(-355.67178f, 412.91177f),
-new(-372.7447f, 193.2063f), new(-351.1489f, 358.122f), new(-222.79019f, 256.16418f), new(405.112f, -231.1328f), new(-194.0805f, 373.2784f),
-new(-183.8134f, 261.28452f), new(317.9099f, -189.725f), new(288.1054f, -399.06372f), new(-235.62059f, 327.0389f), new(-298.64902f, 235.69919f),
-new(-296.1743f, 353.1413f), new(231.2133f, -236.748f), new(250.3125f, -234.8311f), new(363.6882f, -234.9807f), new(207.778f, -339.56952f),
-new(313.6799f, -189.394f), new(-188.9061f, 316.1302f), new(284.4304f, -401.7547f), new(-230.5785f, 363.1827f), new(-299.64102f, 235.5392f),
-new(-236.137f, 269.5703f), new(-377.62473f, 299.3992f), new(-293.7479f, 257.855f), new(356.5558f, -281.4643f), new(-405.83713f, 249.5261f),
-new(-178.0345f, 372.22162f), new(320.7055f, -354.1385f), new(299.182f, -398.96738f), new(201.81529f, -304.3766f), new(-361.39313f, 289.04453f),
-new(300.2568f, -258.30228f), new(-394.8565f, 355.01562f), new(197.3991f, -240.8047f), new(-219.7776f, 314.13742f), new(243.93071f, -300.9786f),
-new(-223.5436f, 310.88843f), new(-236.6093f, 298.2107f), new(259.1256f, -285.6842f), new(-357.8659f, 349.699f), new(-364.16312f, 287.0515f),
-new(360.881f, -288.1972f), new(-298.853f, 233.75119f), new(243.85591f, -407.2897f), new(231.2776f, -172.52579f), new(202.1203f, -296.93958f),
-new(244.9686f, -397.1926f), new(-379.18872f, 298.3022f), new(-414.796f, 300.4447f), new(369.504f, -354.6829f), new(427.365f, -349.62372f),
-new(378.5058f, -399.8509f), new(-236.4733f, 301.0717f), new(-303.4678f, 298.3609f), new(-364.62112f, 289.47052f), new(-233.59529f, 300.8097f),
-new(280.6264f, -404.2347f), new(-299.7369f, 257.25f), new(285.5173f, -304.4071f), new(-223.3736f, 314.46442f), new(-398.3797f, 240.3993f),
-new(363.7926f, -329.5972f), new(-296.1733f, 353.54932f), new(231.0235f, -285.516f), new(-291.5063f, 356.6113f), new(-305.19f, 366.04498f),
-new(-297.24478f, 300.02002f), new(-352.2648f, 232.068f), new(-356.6549f, 354.522f), new(-307.0598f, 300.3629f), new(379.917f, -407.57028f),
-new(258.4166f, -347.85678f), new(181.9278f, -303.4002f), new(-356.4819f, 354.146f), new(292.9696f, -235.3535f), new(311.905f, -244.41031f),
-new(359.5662f, -233.2597f), new(-297.5678f, 295.457f), new(366.2512f, -227.4837f), new(228.3815f, -287.475f), new(-291.3622f, 177.02591f),
-new(185.86209f, -219.71309f), new(-350.1389f, 259.1452f), new(314.712f, -244.7133f), new(-339.80368f, 244.4402f), new(253.08759f, -355.17477f),
-new(258.2346f, -353.0818f), new(-186.6031f, 315.0972f), new(291.1583f, -302.2771f), new(-340.5337f, 243.44319f), new(244.12259f, -393.64758f),
-new(427.1114f, -283.81342f), new(233.6965f, -283.558f), new(-353.04388f, 256.6152f), new(-183.4415f, 368.8066f), new(294.86758f, -233.9925f),
-new(193.72409f, -243.4967f), new(-188.8905f, 372.82642f), new(350.5086f, -235.37021f), new(-354.4244f, 365.2722f), new(325.5545f, -349.2455f),
-new(252.41359f, -337.7461f), new(307.69f, -353.8869f), new(-223.2804f, 212.5687f), new(-220.82469f, 421.70963f), new(-288.7373f, 198.7486f),
-new(246.61171f, -299.2226f), new(-352.0491f, 299.2041f), new(-186.8574f, 256.3515f), new(247.4203f, -237.864f), new(-190.8315f, 369.6704f),
-new(203.09999f, -342.99152f), new(303.99002f, -399.4734f), new(410.047f, -358.86072f), new(373.706f, -409.6883f), new(-275.167f, 179.4714f),
-new(369.1306f, -172.5507f), new(295.213f, -403.9694f), new(263.77658f, -347.49078f), new(-352.96188f, 259.5152f), new(-352.8678f, 235.209f),
-new(370.264f, -283.2272f), new(231.9915f, -163.7782f), new(356.80762f, -228.8062f), new(-297.5378f, 302.366f), new(354.4292f, -231.3647f),
-new(-398.17172f, 242.01431f), new(282.0488f, -416.5939f), new(254.49849f, -232.2411f), new(-336.3837f, 247.0582f), new(216.2538f, -342.1988f),
-new(-304.10602f, 364.50598f), new(365.76202f, -287.76822f), new(-225.32669f, 417.16663f), new(257.4246f, -334.0741f), new(419.348f, -355.50272f),
-new(-364.7131f, 286.15253f), new(-300.6648f, 299.77393f), new(421.2234f, -289.7524f), new(380.7241f, -341.6036f), new(226.12851f, -167.6512f),
-new(252.2296f, -339.3171f), new(-406.0943f, 299.7636f), new(310.196f, -248.0813f), new(366.9996f, -329.9372f), new(398.363f, -232.9368f),
-new(254.35149f, -233.4991f), new(-400.19012f, 248.78609f), new(-188.2391f, 312.5942f), new(316.0725f, -355.9265f), new(-236.26529f, 243.2906f),
-new(322.5315f, -356.3805f), new(367.7896f, -172.9507f), new(-371.4335f, 415.4531f), new(-371.8873f, 198.9369f), new(304.36798f, -356.4089f),
-new(350.1318f, -280.7273f), new(-298.66f, 235.27519f), new(-235.8163f, 300.2277f), new(-296.3543f, 351.7193f), new(185.63809f, -221.6241f),
-new(185.7211f, -222.9291f), new(-237.1326f, 324.4869f), new(380.5871f, -344.8326f), new(366.297f, -354.3429f), new(-246.5467f, 314.12958f),
-new(-171.9293f, 260.4787f), new(-237.25479f, 369.9296f), new(-236.107f, 269.8193f), new(-307.3588f, 293.99792f), new(-352.9848f, 231.068f),
-new(286.05582f, -417.0159f), new(357.5815f, -340.269f), new(-241.87079f, 367.1076f), new(-354.60342f, 363.84918f), new(-233.6223f, 245.0146f),
-new(405.9918f, -284.1061f), new(-415.811f, 305.51068f), new(-279.9346f, 411.86108f), new(-354.3994f, 365.6472f), new(-366.4545f, 419.79208f),
-new(414.6844f, -289.8234f), new(-236.37059f, 327.9719f), new(238.5269f, -411.0957f), new(-177.3233f, 257.0507f), new(-390.69952f, 359.2076f),
-new(-238.864f, 267.91733f), new(-364.8601f, 244.6388f), new(-370.5395f, 416.7391f), new(-249.31671f, 311.3346f), new(302.788f, -356.6139f),
-new(249.7246f, -394.1956f), new(366.03f, -286.9942f), new(301.596f, -303.2207f), new(-364.8001f, 244.5018f), new(-304.5268f, 296.7799f),
-new(359.8252f, -226.7427f), new(-389.48352f, 355.4356f), new(-394.8085f, 356.48962f), new(-280.1516f, 410.1321f), new(-340.4167f, 247.58519f),
-new(259.6495f, -233.5951f), new(304.447f, -301.4767f), new(-180.4561f, 317.4922f), new(-219.6964f, 213.61069f), new(-274.2656f, 416.07208f),
-new(-223.99951f, 369.82272f), new(291.3663f, -300.4941f), new(243.8756f, -399.2516f), new(-249.19771f, 312.4166f), new(351.8025f, -343.266f),
-new(-366.2917f, 192.3603f), new(-404.9301f, 245.0801f), new(-356.6909f, 352.532f), new(-295.4112f, 177.62791f), new(-249.48871f, 256.65408f),
-new(378.74078f, -394.1909f), new(-279.8646f, 412.3831f), new(-376.2063f, 198.1599f), new(373.6776f, -167.0117f), new(-366.59158f, 312.4159f),
-new(351.6568f, -290.6413f), new(298.8978f, -259.0363f), new(-371.2965f, 420.4351f), new(-230.2895f, 365.7437f), new(-220.1232f, 258.14618f),
-new(412.01578f, -284.8051f), new(225.6696f, -179.7858f), new(-392.8377f, 245.9893f), new(-348.72913f, 302.0961f), new(422.21298f, -356.77872f),
-new(-222.5426f, 313.4034f), new(258.5075f, -229.3051f), new(367.9986f, -171.17671f), new(255.9495f, -235.4451f), new(295.0196f, -230.35449f),
-new(365.92203f, -286.4122f), new(384.3538f, -394.7949f), new(198.02899f, -345.7185f), new(385.262f, -403.65228f), new(-285.2796f, 405.2761f),
-new(-372.0113f, 199.2149f), new(-249.61871f, 255.5871f), new(202.8829f, -232.2434f), new(-299.596f, 365.53897f), new(-224.212f, 201.19829f),
-new(-236.52159f, 324.7919f), new(287.9039f, -244.2408f), new(-222.7682f, 256.4252f), new(325.2439f, -183.48f), new(298.6276f, -230.7425f),
-new(404.902f, -232.90979f), new(-218.947f, 204.67929f), new(302.7638f, -256.1363f), new(-224.487f, 199.0873f), new(-364.87912f, 243.8968f),
-new(311.78802f, -247.2413f), new(-299.8709f, 250.859f), new(-233.47f, 271.5513f), new(316.2985f, -353.9735f), new(-280.142f, 170.5854f),
-new(421.43237f, -287.9754f), new(213.3098f, -338.6838f), new(218.1008f, -339.10278f), new(284.5179f, -244.44681f), new(-296.9938f, 302.643f),
-new(361.41562f, -173.59871f), new(-362.80112f, 245.9928f), new(383.9311f, -341.9436f), new(-405.93732f, 300.9746f), new(202.93f, -344.4635f),
-new(-249.2137f, 312.14758f), new(247.4446f, -341.3831f), new(364.056f, -358.4639f), new(319.8999f, -187.399f), new(-225.15869f, 418.48462f),
-new(341.6456f, -236.7812f), new(258.43158f, -351.4058f), new(193.2998f, -295.25623f), new(381.2338f, -397.6679f), new(-177.2633f, 256.50967f),
-new(213.08679f, -343.4358f), new(207.4839f, -228.2714f), new(361.5526f, -333.6722f), new(-221.2573f, 429.4111f), new(-177.4693f, 254.88768f),
-new(288.01492f, -243.3018f), new(300.3578f, -255.87628f), new(-406.0513f, 301.24258f), new(309.878f, -296.7817f), new(286.4033f, -304.6671f),
-new(309.058f, -302.44772f), new(-192.1714f, 254.0635f), new(410.79102f, -226.9708f), new(291.0209f, -241.0968f), new(-183.3685f, 368.2526f),
-new(187.6198f, -299.4162f), new(295.04858f, -233.12349f), new(354.90952f, -342.228f), new(-236.24f, 268.75632f), new(409.24377f, -291.9761f),
-new(-280.126f, 179.7854f), new(-371.7317f, 188.1473f), new(-188.1241f, 311.7862f), new(-398.3037f, 242.3533f), new(379.72f, -409.24127f),
-new(-188.4211f, 309.4562f), new(-191.7984f, 261.9805f), new(203.0779f, -227.8204f), new(-283.7413f, 202.0356f), new(298.976f, -403.80438f),
-new(239.27429f, -234.02701f), new(257.08762f, -287.2662f), new(-362.3118f, 408.5008f), new(187.4118f, -301.1972f), new(-362.59677f, 405.9238f),
-new(-224.282f, 200.7163f), new(-377.6097f, 300.39618f), new(349.7936f, -233.9512f), new(239.56729f, -231.51001f), new(-241.51979f, 374.6366f),
-new(-351.4861f, 300.09708f), new(293.3213f, -305.0151f), new(375.4418f, -401.8049f), new(278.76282f, -420.7829f), new(247.39241f, -272.5541f),
-new(320.8775f, -352.6705f), new(238.09059f, -173.24179f), new(354.8105f, -343.063f), new(-248.2987f, 309.7606f), new(349.8708f, -287.23828f),
-new(-348.8348f, 234.683f), new(419.05298f, -358.00772f), new(-246.84871f, 258.38208f), new(-236.28929f, 243.03261f), new(-355.36142f, 367.6872f),
-new(-298.1928f, 305.497f), new(-233.1736f, 327.6799f), new(-377.5197f, 300.2052f), new(319.7019f, -189.069f), new(-233.9328f, 373.96762f),
-new(-293.6519f, 256.291f), new(189.0661f, -220.04109f), new(-293.65802f, 238.9932f), new(-183.5745f, 366.6306f), new(320.3965f, -358.0665f),
-new(-366.4886f, 316.1499f), new(-218.4093f, 433.25812f), new(284.2954f, -402.9077f), new(197.17929f, -299.5666f), new(247.5863f, -225.64f),
-new(-365.96158f, 313.42392f), new(256.72662f, -285.45822f), new(-351.47888f, 257.1142f), new(-362.8576f, 315.66992f), new(-395.7615f, 358.1386f),
-new(-409.358f, 304.66568f), new(-249.5157f, 256.4011f), new(-225.2137f, 418.92963f), new(237.67151f, -159.6192f), new(249.2009f, -403.3747f),
-new(405.74878f, -290.2211f), new(-290.3198f, 307.008f), new(244.19441f, -272.2521f), new(297.0463f, -296.3351f), new(190.0311f, -246.0357f),
-new(-367.8873f, 201.9189f), new(-372.04428f, 197.7269f), new(244.6784f, -274.6661f), new(-415.997f, 298.8827f), new(-236.00029f, 297.8187f),
-new(-295.2392f, 169.91891f), new(-362.3408f, 407.95578f), new(306.32098f, -358.4329f), new(298.5128f, -258.00027f), new(-406.00012f, 243.7251f),
-new(378.47607f, -345.70462f), new(-394.69952f, 356.22662f), new(243.4107f, -298.9076f), new(-296.9878f, 302.05002f), new(-401.93732f, 303.9556f),
-new(363.6566f, -332.8262f), new(-351.95712f, 302.5231f), new(307.95898f, -347.4209f), new(202.7779f, -230.4644f), new(197.3143f, -296.4496f),
-new(-305.454f, 360.48398f), new(-230.3345f, 365.11472f), new(-352.5259f, 257.3052f), new(197.10129f, -301.27158f), new(-288.7433f, 198.3176f),
-new(-225.0933f, 427.4801f), new(304.665f, -296.21973f), new(-347.76312f, 300.4741f), new(-224.49239f, 214.04869f), new(-374.8537f, 302.19318f),
-new(-194.3235f, 368.13342f), new(-224.80031f, 433.8281f), new(-306.25882f, 294.70792f), new(-224.7184f, 209.27869f), new(-173.9383f, 256.7977f),
-new(-353.1534f, 368.0552f), new(352.2288f, -286.5463f), new(-226.9205f, 360.8837f), new(-401.4973f, 298.0256f), new(230.9876f, -179.37779f),
-new(372.55762f, -173.77571f), new(-188.9861f, 302.3742f), new(-193.7965f, 371.8334f), new(256.6176f, -287.85022f), new(309.946f, -248.11731f),
-new(412.11902f, -229.3118f), new(312.762f, -354.1999f), new(-239.4878f, 371.8496f), new(308.233f, -302.41772f), new(243.6589f, -408.9657f),
-new(-366.44913f, 287.2305f), new(360.2702f, -236.3027f), new(-372.9307f, 186.5773f), new(297.0463f, -296.3351f), new(193.5891f, -244.64871f),
-new(-304.39902f, 365.46698f)
+ new(-293.8379f, 250.743f), new(314.374f, -348.1099f), new(-349.7554f, 368.74118f), new(349.5346f, -236.1412f), new(-355.67178f, 412.91177f),
+ new(-372.7447f, 193.2063f), new(-351.1489f, 358.122f), new(-222.79019f, 256.16418f), new(405.112f, -231.1328f), new(-194.0805f, 373.2784f),
+ new(-183.8134f, 261.28452f), new(317.9099f, -189.725f), new(288.1054f, -399.06372f), new(-235.62059f, 327.0389f), new(-298.64902f, 235.69919f),
+ new(-296.1743f, 353.1413f), new(231.2133f, -236.748f), new(250.3125f, -234.8311f), new(363.6882f, -234.9807f), new(207.778f, -339.56952f),
+ new(313.6799f, -189.394f), new(-188.9061f, 316.1302f), new(284.4304f, -401.7547f), new(-230.5785f, 363.1827f), new(-299.64102f, 235.5392f),
+ new(-236.137f, 269.5703f), new(-377.62473f, 299.3992f), new(-293.7479f, 257.855f), new(356.5558f, -281.4643f), new(-405.83713f, 249.5261f),
+ new(-178.0345f, 372.22162f), new(320.7055f, -354.1385f), new(299.182f, -398.96738f), new(201.81529f, -304.3766f), new(-361.39313f, 289.04453f),
+ new(300.2568f, -258.30228f), new(-394.8565f, 355.01562f), new(197.3991f, -240.8047f), new(-219.7776f, 314.13742f), new(243.93071f, -300.9786f),
+ new(-223.5436f, 310.88843f), new(-236.6093f, 298.2107f), new(259.1256f, -285.6842f), new(-357.8659f, 349.699f), new(-364.16312f, 287.0515f),
+ new(360.881f, -288.1972f), new(-298.853f, 233.75119f), new(243.85591f, -407.2897f), new(231.2776f, -172.52579f), new(202.1203f, -296.93958f),
+ new(244.9686f, -397.1926f), new(-379.18872f, 298.3022f), new(-414.796f, 300.4447f), new(369.504f, -354.6829f), new(427.365f, -349.62372f),
+ new(-236.4733f, 301.0717f), new(-303.4678f, 298.3609f), new(-364.62112f, 289.47052f), new(-233.59529f, 300.8097f), new(280.6264f, -404.2347f),
+ new(-299.7369f, 257.25f), new(285.5173f, -304.4071f), new(-223.3736f, 314.46442f), new(363.7926f, -329.5972f), new(-296.1733f, 353.54932f),
+ new(231.0235f, -285.516f), new(-291.5063f, 356.6113f), new(-305.19f, 366.04498f), new(-297.24478f, 300.02002f), new(-352.2648f, 232.068f),
+ new(-356.6549f, 354.522f), new(-307.0598f, 300.3629f), new(379.917f, -407.57028f), new(181.9278f, -303.4002f), new(-356.4819f, 354.146f),
+ new(292.9696f, -235.3535f), new(311.905f, -244.41031f), new(359.5662f, -233.2597f), new(366.2512f, -227.4837f), new(228.3815f, -287.475f),
+ new(-291.3622f, 177.02591f), new(185.86209f, -219.71309f), new(-350.1389f, 259.1452f), new(314.712f, -244.7133f), new(-339.80368f, 244.4402f),
+ new(253.08759f, -355.17477f), new(258.2346f, -353.0818f), new(-186.6031f, 315.0972f), new(291.1583f, -302.2771f), new(244.12259f, -393.64758f),
+ new(427.1114f, -283.81342f), new(233.6965f, -283.558f), new(-353.04388f, 256.6152f), new(-183.4415f, 368.8066f), new(294.86758f, -233.9925f),
+ new(193.72409f, -243.4967f), new(-188.8905f, 372.82642f), new(350.5086f, -235.37021f), new(-354.4244f, 365.2722f), new(325.5545f, -349.2455f),
+ new(252.41359f, -337.7461f), new(307.69f, -353.8869f), new(-223.2804f, 212.5687f), new(-220.82469f, 421.70963f), new(-288.7373f, 198.7486f),
+ new(246.61171f, -299.2226f), new(-352.0491f, 299.2041f), new(-186.8574f, 256.3515f), new(247.4203f, -237.864f), new(-190.8315f, 369.6704f),
+ new(203.09999f, -342.99152f), new(303.99002f, -399.4734f), new(410.047f, -358.86072f), new(373.706f, -409.6883f), new(-275.167f, 179.4714f),
+ new(369.1306f, -172.5507f), new(295.213f, -403.9694f), new(263.77658f, -347.49078f), new(-352.96188f, 259.5152f), new(-352.8678f, 235.209f),
+ new(370.264f, -283.2272f), new(231.9915f, -163.7782f), new(356.80762f, -228.8062f), new(-297.5378f, 302.366f), new(354.4292f, -231.3647f),
+ new(-398.17172f, 242.01431f), new(282.0488f, -416.5939f), new(254.49849f, -232.2411f), new(-336.3837f, 247.0582f), new(216.2538f, -342.1988f),
+ new(-304.10602f, 364.50598f), new(365.76202f, -287.76822f), new(-225.32669f, 417.16663f), new(257.4246f, -334.0741f), new(419.348f, -355.50272f),
+ new(-364.7131f, 286.15253f), new(-300.6648f, 299.77393f), new(421.2234f, -289.7524f), new(380.7241f, -341.6036f), new(226.12851f, -167.6512f),
+ new(252.2296f, -339.3171f), new(-406.0943f, 299.7636f), new(310.196f, -248.0813f), new(366.9996f, -329.9372f), new(398.363f, -232.9368f),
+ new(254.35149f, -233.4991f), new(-400.19012f, 248.78609f), new(-188.2391f, 312.5942f), new(316.0725f, -355.9265f), new(-236.26529f, 243.2906f),
+ new(367.7896f, -172.9507f), new(-371.4335f, 415.4531f), new(-371.8873f, 198.9369f), new(304.36798f, -356.4089f), new(350.1318f, -280.7273f),
+ new(-298.66f, 235.27519f), new(-235.8163f, 300.2277f), new(-296.3543f, 351.7193f), new(185.63809f, -221.6241f), new(185.7211f, -222.9291f),
+ new(-237.1326f, 324.4869f), new(380.5871f, -344.8326f), new(366.297f, -354.3429f), new(-246.5467f, 314.12958f), new(-171.9293f, 260.4787f),
+ new(-237.25479f, 369.9296f), new(-236.107f, 269.8193f), new(-307.3588f, 293.99792f), new(-352.9848f, 231.068f), new(286.05582f, -417.0159f),
+ new(357.5815f, -340.269f), new(-241.87079f, 367.1076f), new(-354.60342f, 363.84918f), new(-233.6223f, 245.0146f), new(405.9918f, -284.1061f),
+ new(-415.811f, 305.51068f), new(-279.9346f, 411.86108f), new(-354.3994f, 365.6472f), new(-366.4545f, 419.79208f), new(414.6844f, -289.8234f),
+ new(-236.37059f, 327.9719f), new(238.5269f, -411.0957f), new(-177.3233f, 257.0507f), new(-390.69952f, 359.2076f), new(-238.864f, 267.91733f),
+ new(-364.8601f, 244.6388f), new(-370.5395f, 416.7391f), new(-249.31671f, 311.3346f), new(302.788f, -356.6139f), new(249.7246f, -394.1956f),
+ new(366.03f, -286.9942f), new(301.596f, -303.2207f), new(-364.8001f, 244.5018f), new(-304.5268f, 296.7799f), new(359.8252f, -226.7427f),
+ new(-389.48352f, 355.4356f), new(-394.8085f, 356.48962f), new(-280.1516f, 410.1321f), new(-340.4167f, 247.58519f), new(259.6495f, -233.5951f),
+ new(304.447f, -301.4767f), new(-180.4561f, 317.4922f), new(-219.6964f, 213.61069f), new(-274.2656f, 416.07208f), new(-223.99951f, 369.82272f),
+ new(291.3663f, -300.4941f), new(243.8756f, -399.2516f), new(-249.19771f, 312.4166f), new(351.8025f, -343.266f), new(-366.2917f, 192.3603f),
+ new(-404.9301f, 245.0801f), new(-356.6909f, 352.532f), new(-295.4112f, 177.62791f), new(-249.48871f, 256.65408f), new(378.74078f, -394.1909f),
+ new(-279.8646f, 412.3831f), new(373.6776f, -167.0117f), new(-366.59158f, 312.4159f), new(351.6568f, -290.6413f), new(298.8978f, -259.0363f),
+ new(-371.2965f, 420.4351f), new(-230.2895f, 365.7437f), new(-220.1232f, 258.14618f), new(412.01578f, -284.8051f), new(225.6696f, -179.7858f),
+ new(-392.8377f, 245.9893f), new(-348.72913f, 302.0961f), new(422.21298f, -356.77872f), new(-222.5426f, 313.4034f), new(258.5075f, -229.3051f),
+ new(367.9986f, -171.17671f), new(295.0196f, -230.35449f), new(365.92203f, -286.4122f), new(384.3538f, -394.7949f), new(198.02899f, -345.7185f),
+ new(385.262f, -403.65228f), new(-285.2796f, 405.2761f), new(-372.0113f, 199.2149f), new(-249.61871f, 255.5871f), new(202.8829f, -232.2434f),
+ new(-299.596f, 365.53897f), new(-224.212f, 201.19829f), new(-236.52159f, 324.7919f), new(287.9039f, -244.2408f), new(-222.7682f, 256.4252f),
+ new(325.2439f, -183.48f), new(298.6276f, -230.7425f), new(404.902f, -232.90979f), new(-218.947f, 204.67929f), new(302.7638f, -256.1363f),
+ new(-364.87912f, 243.8968f), new(311.78802f, -247.2413f), new(-299.8709f, 250.859f), new(-233.47f, 271.5513f), new(316.2985f, -353.9735f),
+ new(-280.142f, 170.5854f), new(421.43237f, -287.9754f), new(213.3098f, -338.6838f), new(218.1008f, -339.10278f), new(284.5179f, -244.44681f),
+ new(-296.9938f, 302.643f), new(361.41562f, -173.59871f), new(-362.80112f, 245.9928f), new(383.9311f, -341.9436f), new(-405.93732f, 300.9746f),
+ new(-249.2137f, 312.14758f), new(247.4446f, -341.3831f), new(364.056f, -358.4639f), new(319.8999f, -187.399f), new(-225.15869f, 418.48462f),
+ new(341.6456f, -236.7812f), new(258.43158f, -351.4058f), new(193.2998f, -295.25623f), new(381.2338f, -397.6679f), new(-177.2633f, 256.50967f),
+ new(213.08679f, -343.4358f), new(207.4839f, -228.2714f), new(361.5526f, -333.6722f), new(-221.2573f, 429.4111f), new(-177.4693f, 254.88768f),
+ new(288.01492f, -243.3018f), new(300.3578f, -255.87628f), new(-406.0513f, 301.24258f), new(309.878f, -296.7817f), new(286.4033f, -304.6671f),
+ new(309.058f, -302.44772f), new(-192.1714f, 254.0635f), new(410.79102f, -226.9708f), new(291.0209f, -241.0968f), new(-183.3685f, 368.2526f),
+ new(187.6198f, -299.4162f), new(295.04858f, -233.12349f), new(354.90952f, -342.228f), new(-236.24f, 268.75632f), new(409.24377f, -291.9761f),
+ new(-280.126f, 179.7854f), new(-371.7317f, 188.1473f), new(-188.1241f, 311.7862f), new(-398.3037f, 242.3533f), new(379.72f, -409.24127f),
+ new(-188.4211f, 309.4562f), new(-191.7984f, 261.9805f), new(203.0779f, -227.8204f), new(-283.7413f, 202.0356f), new(298.976f, -403.80438f),
+ new(239.27429f, -234.02701f), new(257.08762f, -287.2662f), new(-362.3118f, 408.5008f), new(187.4118f, -301.1972f), new(-362.59677f, 405.9238f),
+ new(-224.282f, 200.7163f), new(-377.6097f, 300.39618f), new(349.7936f, -233.9512f), new(239.56729f, -231.51001f), new(-241.51979f, 374.6366f),
+ new(-351.4861f, 300.09708f), new(375.4418f, -401.8049f), new(278.76282f, -420.7829f), new(247.39241f, -272.5541f), new(320.8775f, -352.6705f),
+ new(238.09059f, -173.24179f), new(354.8105f, -343.063f), new(-248.2987f, 309.7606f), new(349.8708f, -287.23828f), new(-348.8348f, 234.683f),
+ new(419.05298f, -358.00772f), new(-246.84871f, 258.38208f), new(-236.28929f, 243.03261f), new(-355.36142f, 367.6872f), new(-298.1928f, 305.497f),
+ new(-233.1736f, 327.6799f), new(-377.5197f, 300.2052f), new(319.7019f, -189.069f), new(-233.9328f, 373.96762f), new(-293.6519f, 256.291f),
+ new(189.0661f, -220.04109f), new(-293.65802f, 238.9932f), new(-183.5745f, 366.6306f), new(-366.4886f, 316.1499f), new(-218.4093f, 433.25812f),
+ new(284.2954f, -402.9077f), new(197.17929f, -299.5666f), new(247.5863f, -225.64f), new(-365.96158f, 313.42392f), new(256.72662f, -285.45822f),
+ new(-351.47888f, 257.1142f), new(-362.8576f, 315.66992f), new(-395.7615f, 358.1386f), new(-409.358f, 304.66568f), new(-249.5157f, 256.4011f),
+ new(-225.2137f, 418.92963f), new(237.67151f, -159.6192f), new(249.2009f, -403.3747f), new(405.74878f, -290.2211f), new(-290.3198f, 307.008f),
+ new(244.19441f, -272.2521f), new(297.0463f, -296.3351f), new(190.0311f, -246.0357f), new(-367.8873f, 201.9189f), new(-372.04428f, 197.7269f),
+ new(244.6784f, -274.6661f), new(-295.2392f, 169.91891f), new(-362.3408f, 407.95578f), new(298.5128f, -258.00027f), new(-406.00012f, 243.7251f),
+ new(378.47607f, -345.70462f), new(-394.69952f, 356.22662f), new(243.4107f, -298.9076f), new(-296.9878f, 302.05002f), new(-401.93732f, 303.9556f),
+ new(363.6566f, -332.8262f), new(-351.95712f, 302.5231f), new(307.95898f, -347.4209f), new(202.7779f, -230.4644f), new(197.3143f, -296.4496f),
+ new(-305.454f, 360.48398f), new(-230.3345f, 365.11472f), new(-352.5259f, 257.3052f), new(197.10129f, -301.27158f), new(-225.0933f, 427.4801f),
+ new(304.665f, -296.21973f), new(-347.76312f, 300.4741f), new(-224.49239f, 214.04869f), new(-374.8537f, 302.19318f), new(-194.3235f, 368.13342f),
+ new(-224.80031f, 433.8281f), new(-306.25882f, 294.70792f), new(-173.9383f, 256.7977f), new(-226.9205f, 360.8837f), new(-401.4973f, 298.0256f),
+ new(378.5058f, -399.8509f), new(-398.3797f, 240.3993f), new(258.4166f, -347.85678f), new(-297.5678f, 295.457f), new(-340.5337f, 243.44319f),
+ new(322.5315f, -356.3805f), new(230.9876f, -179.37779f), new(-376.2063f, 198.1599f), new(255.9495f, -235.4451f), new(-224.487f, 199.0873f),
+ new(202.93f, -344.4635f), new(293.3213f, -305.0151f), new(312.762f, -354.1999f), new(-239.4878f, 371.8496f), new(320.3965f, -358.0665f),
+ new(-415.997f, 298.8827f), new(-236.00029f, 297.8187f), new(306.32098f, -358.4329f), new(-288.7433f, 198.3176f), new(-224.7184f, 209.27869f),
+ new(-353.1534f, 368.0552f), new(-193.7965f, 371.8334f), new(256.6176f, -287.85022f), new(412.11902f, -229.3118f), new(308.233f, -302.41772f),
+ new(-366.44913f, 287.2305f), new(360.2702f, -236.3027f), new(-372.9307f, 186.5773f), new(352.2288f, -286.5463f), new(-188.9861f, 302.3742f),
+ new(297.0463f, -296.3351f), new(193.5891f, -244.64871f), new(-304.39902f, 365.46698f)
]},
{ 594, [
-new(-349.7554f, 368.74118f), new(314.712f, -244.7133f), new(-279.9346f, 411.86108f), new(298.6276f, -230.7425f), new(259.1256f, -285.6842f),
-new(-296.1733f, 353.54932f), new(-274.2656f, 416.07208f), new(-236.4733f, 301.0717f), new(-296.3543f, 351.7193f), new(314.374f, -348.1099f),
-new(244.12259f, -393.64758f), new(-223.2804f, 212.5687f), new(-299.7369f, 257.25f), new(-226.9205f, 360.8837f), new(410.79102f, -226.9708f),
-new(-186.8574f, 256.3515f), new(-178.0345f, 372.22162f), new(-246.84871f, 258.38208f), new(-356.6549f, 354.522f), new(301.596f, -303.2207f),
-new(291.3663f, -300.4941f), new(356.80762f, -228.8062f), new(319.8999f, -187.399f), new(197.3991f, -240.8047f), new(294.86758f, -233.9925f),
-new(-296.1743f, 353.1413f), new(284.5179f, -244.44681f), new(-357.8659f, 349.699f), new(-249.48871f, 256.65408f), new(-233.1736f, 327.6799f),
-new(-190.8315f, 369.6704f), new(-233.47f, 271.5513f), new(302.7638f, -256.1363f), new(-186.6031f, 315.0972f), new(316.0725f, -355.9265f),
-new(197.17929f, -299.5666f), new(-230.2895f, 365.7437f), new(207.4839f, -228.2714f), new(-298.1928f, 305.497f), new(351.6568f, -290.6413f),
-new(307.95898f, -347.4209f), new(366.9996f, -329.9372f), new(-246.5467f, 314.12958f), new(-364.8601f, 244.6388f), new(-336.3837f, 247.0582f),
-new(-225.2137f, 418.92963f), new(310.196f, -248.0813f), new(-222.5426f, 313.4034f), new(207.778f, -339.56952f), new(-249.2137f, 312.14758f),
-new(-371.8873f, 198.9369f), new(-352.9848f, 231.068f), new(-305.19f, 366.04498f), new(-180.4561f, 317.4922f), new(-183.3685f, 368.2526f),
-new(-406.0513f, 301.24258f), new(-390.69952f, 359.2076f), new(244.6784f, -274.6661f), new(-293.6519f, 256.291f), new(263.77658f, -347.49078f),
-new(-188.8905f, 372.82642f), new(385.262f, -403.65228f), new(363.6882f, -234.9807f), new(225.6696f, -179.7858f), new(-224.49239f, 214.04869f),
-new(246.61171f, -299.2226f), new(249.7246f, -394.1956f), new(-362.80112f, 245.9928f), new(-366.2917f, 192.3603f), new(247.39241f, -272.5541f),
-new(197.10129f, -301.27158f), new(-415.811f, 305.51068f), new(213.3098f, -338.6838f), new(-219.7776f, 314.13742f), new(218.1008f, -339.10278f),
-new(-183.8134f, 261.28452f), new(-299.596f, 365.53897f), new(-404.9301f, 245.0801f), new(-237.25479f, 369.9296f), new(325.5545f, -349.2455f),
-new(243.93071f, -300.9786f), new(-220.1232f, 258.14618f), new(-224.212f, 201.19829f), new(-352.5259f, 257.3052f), new(-296.9878f, 302.05002f),
-new(-290.3198f, 307.008f), new(316.2985f, -353.9735f), new(-235.8163f, 300.2277f), new(360.881f, -288.1972f), new(-364.16312f, 287.0515f),
-new(398.363f, -232.9368f), new(-409.358f, 304.66568f), new(250.3125f, -234.8311f), new(-241.51979f, 374.6366f), new(239.56729f, -231.51001f),
-new(252.2296f, -339.3171f), new(365.76202f, -287.76822f), new(233.6965f, -283.558f), new(-235.62059f, 327.0389f), new(257.4246f, -334.0741f),
-new(366.2512f, -227.4837f), new(-351.4861f, 300.09708f), new(370.264f, -283.2272f), new(-280.142f, 170.5854f), new(-241.87079f, 367.1076f),
-new(412.01578f, -284.8051f), new(-275.167f, 179.4714f), new(-350.1389f, 259.1452f), new(303.99002f, -399.4734f), new(311.905f, -244.41031f),
-new(-296.9938f, 302.643f), new(198.02899f, -345.7185f), new(291.0209f, -241.0968f), new(300.3578f, -255.87628f), new(-236.107f, 269.8193f),
-new(-307.3588f, 293.99792f), new(320.8775f, -352.6705f), new(-377.6097f, 300.39618f), new(-293.65802f, 238.9932f), new(356.5558f, -281.4643f),
-new(-355.67178f, 412.91177f), new(244.9686f, -397.1926f), new(357.5815f, -340.269f), new(187.6198f, -299.4162f), new(304.665f, -296.21973f),
-new(422.21298f, -356.77872f), new(-398.17172f, 242.01431f), new(-219.6964f, 213.61069f), new(361.41562f, -173.59871f), new(-365.96158f, 313.42392f),
-new(-352.0491f, 299.2041f), new(-372.9307f, 186.5773f), new(257.08762f, -287.2662f), new(-283.7413f, 202.0356f), new(288.1054f, -399.06372f),
-new(-354.4244f, 365.2722f), new(304.36798f, -356.4089f), new(228.3815f, -287.475f), new(319.7019f, -189.069f), new(-362.8576f, 315.66992f),
-new(-374.8537f, 302.19318f), new(-221.2573f, 429.4111f), new(383.9311f, -341.9436f), new(295.213f, -403.9694f), new(-233.6223f, 245.0146f),
-new(325.2439f, -183.48f), new(373.6776f, -167.0117f), new(243.85591f, -407.2897f), new(291.1583f, -302.2771f), new(258.2346f, -353.0818f),
-new(419.05298f, -358.00772f), new(410.047f, -358.86072f), new(367.9986f, -171.17671f), new(295.04858f, -233.12349f), new(-223.99951f, 369.82272f),
-new(307.69f, -353.8869f), new(-236.26529f, 243.2906f), new(405.112f, -231.1328f), new(364.056f, -358.4639f), new(-361.39313f, 289.04453f),
-new(375.4418f, -401.8049f), new(361.5526f, -333.6722f), new(419.348f, -355.50272f), new(378.47607f, -345.70462f), new(384.3538f, -394.7949f),
-new(202.1203f, -296.93958f), new(-414.796f, 300.4447f), new(341.6456f, -236.7812f), new(-297.24478f, 300.02002f), new(193.2998f, -295.25623f),
-new(-188.2391f, 312.5942f), new(405.9918f, -284.1061f), new(-362.3408f, 407.95578f), new(252.41359f, -337.7461f), new(189.0661f, -220.04109f),
-new(-177.3233f, 257.0507f), new(226.12851f, -167.6512f), new(-367.8873f, 201.9189f), new(-236.37059f, 327.9719f), new(311.78802f, -247.2413f),
-new(197.3143f, -296.4496f), new(373.706f, -409.6883f), new(302.788f, -356.6139f), new(-288.7433f, 198.3176f), new(-220.82469f, 421.70963f),
-new(284.4304f, -401.7547f), new(349.5346f, -236.1412f), new(-177.2633f, 256.50967f), new(216.2538f, -342.1988f), new(285.5173f, -304.4071f),
-new(-354.3994f, 365.6472f), new(-171.9293f, 260.4787f), new(-280.126f, 179.7854f), new(-351.1489f, 358.122f), new(351.8025f, -343.266f),
-new(-392.8377f, 245.9893f), new(-233.59529f, 300.8097f), new(-394.8085f, 356.48962f), new(-239.4878f, 371.8496f), new(-377.5197f, 300.2052f),
-new(297.0463f, -296.3351f), new(409.24377f, -291.9761f), new(-298.64902f, 235.69919f), new(367.7896f, -172.9507f), new(292.9696f, -235.3535f),
-new(-366.4886f, 316.1499f), new(181.9278f, -303.4002f), new(202.8829f, -232.2434f), new(193.5891f, -244.64871f), new(-354.60342f, 363.84918f),
-new(313.6799f, -189.394f), new(247.4446f, -341.3831f), new(-218.4093f, 433.25812f), new(-285.2796f, 405.2761f), new(-366.59158f, 312.4159f),
-new(-376.2063f, 198.1599f), new(-364.7131f, 286.15253f), new(309.878f, -296.7817f), new(-293.8379f, 250.743f), new(-236.24f, 268.75632f),
-new(231.9915f, -163.7782f), new(254.35149f, -233.4991f), new(309.058f, -302.44772f), new(190.0311f, -246.0357f), new(-362.59677f, 405.9238f),
-new(256.72662f, -285.45822f), new(354.90952f, -342.228f), new(-192.1714f, 254.0635f), new(-303.4678f, 298.3609f), new(-339.80368f, 244.4402f),
-new(-304.5268f, 296.7799f), new(-304.10602f, 364.50598f), new(359.8252f, -226.7427f), new(369.504f, -354.6829f), new(249.2009f, -403.3747f),
-new(-405.83713f, 249.5261f), new(-371.7317f, 188.1473f), new(238.5269f, -411.0957f), new(-370.5395f, 416.7391f), new(-394.69952f, 356.22662f),
-new(244.19441f, -272.2521f), new(-348.8348f, 234.683f), new(-194.0805f, 373.2784f), new(202.93f, -344.4635f), new(-224.80031f, 433.8281f),
-new(-295.4112f, 177.62791f), new(-249.19771f, 312.4166f), new(-398.3037f, 242.3533f), new(-291.3622f, 177.02591f), new(254.49849f, -232.2411f),
-new(237.67151f, -159.6192f), new(284.2954f, -402.9077f), new(-183.5745f, 366.6306f), new(-236.137f, 269.5703f), new(258.5075f, -229.3051f),
-new(300.2568f, -258.30228f), new(-307.0598f, 300.3629f), new(-236.28929f, 243.03261f), new(-372.0113f, 199.2149f), new(-188.1241f, 311.7862f),
-new(-352.2648f, 232.068f), new(299.182f, -398.96738f), new(231.0235f, -285.516f), new(-401.93732f, 303.9556f), new(-362.3118f, 408.5008f),
-new(-188.4211f, 309.4562f), new(-351.95712f, 302.5231f), new(363.7926f, -329.5972f), new(185.86209f, -219.71309f), new(288.01492f, -243.3018f),
-new(-230.5785f, 363.1827f), new(365.92203f, -286.4122f), new(412.11902f, -229.3118f), new(-366.4545f, 419.79208f), new(379.917f, -407.57028f),
-new(247.5863f, -225.64f), new(-348.72913f, 302.0961f), new(-249.31671f, 311.3346f), new(404.902f, -232.90979f), new(427.1114f, -283.81342f),
-new(286.05582f, -417.0159f), new(-298.853f, 233.75119f), new(-400.19012f, 248.78609f), new(256.6176f, -287.85022f), new(244.0484f, -275.4421f),
-new(349.7936f, -233.9512f), new(-279.8646f, 412.3831f), new(304.447f, -301.4767f), new(-223.5436f, 310.88843f), new(-389.48352f, 355.4356f),
-new(-340.4167f, 247.58519f), new(203.0779f, -227.8204f), new(-236.6093f, 298.2107f), new(293.3213f, -305.0151f), new(-291.5063f, 356.6113f),
-new(278.76282f, -420.7829f), new(308.233f, -302.41772f), new(238.09059f, -173.24179f), new(-305.454f, 360.48398f), new(378.5058f, -399.8509f),
-new(231.2133f, -236.748f), new(-233.9328f, 373.96762f), new(-364.62112f, 289.47052f), new(282.0488f, -416.5939f), new(-394.8565f, 355.01562f),
-new(258.43158f, -351.4058f), new(-236.52159f, 324.7919f), new(298.8978f, -259.0363f), new(-222.4417f, 419.8026f), new(-224.487f, 199.0873f),
-new(-398.3797f, 240.3993f), new(-222.79019f, 256.16418f), new(-194.3235f, 368.13342f), new(349.8708f, -287.23828f), new(-183.4415f, 368.8066f),
-new(-225.15869f, 418.48462f), new(239.27429f, -234.02701f), new(-300.6648f, 299.77393f), new(378.74078f, -394.1909f), new(-297.5378f, 302.366f),
-new(-288.7373f, 198.7486f), new(414.6844f, -289.8234f), new(350.1318f, -280.7273f), new(-224.282f, 200.7163f), new(243.4107f, -298.9076f),
-new(280.6264f, -404.2347f), new(427.365f, -349.62372f), new(202.7779f, -230.4644f), new(-371.2965f, 420.4351f), new(-352.96188f, 259.5152f),
-new(-218.947f, 204.67929f), new(320.7055f, -354.1385f), new(-295.2392f, 169.91891f), new(421.43237f, -287.9754f), new(243.6589f, -408.9657f),
-new(405.74878f, -290.2211f), new(366.03f, -286.9942f), new(-356.4819f, 354.146f), new(-299.8709f, 250.859f), new(366.297f, -354.3429f),
-new(-372.7447f, 193.2063f), new(185.63809f, -221.6241f), new(295.0196f, -230.35449f), new(253.08759f, -355.17477f), new(380.7241f, -341.6036f),
-new(-191.7984f, 261.9805f), new(231.2776f, -172.52579f), new(-249.5157f, 256.4011f), new(-222.7682f, 256.4252f), new(-352.8678f, 235.209f),
-new(-230.3345f, 365.11472f), new(-371.4335f, 415.4531f), new(-405.93732f, 300.9746f), new(-377.62473f, 299.3992f), new(203.09999f, -342.99152f),
-new(-364.8001f, 244.5018f), new(-415.997f, 298.8827f), new(359.5662f, -233.2597f), new(213.08679f, -343.4358f), new(-298.66f, 235.27519f),
-new(-223.3736f, 314.46442f), new(-223.6834f, 215.4527f), new(286.4033f, -304.6671f), new(317.9099f, -189.725f)
+ new(-349.7554f, 368.74118f), new(314.712f, -244.7133f), new(-279.9346f, 411.86108f), new(298.6276f, -230.7425f), new(259.1256f, -285.6842f),
+ new(-296.1733f, 353.54932f), new(-274.2656f, 416.07208f), new(-236.4733f, 301.0717f), new(-296.3543f, 351.7193f), new(314.374f, -348.1099f),
+ new(244.12259f, -393.64758f), new(-223.2804f, 212.5687f), new(-299.7369f, 257.25f), new(-226.9205f, 360.8837f), new(410.79102f, -226.9708f),
+ new(-186.8574f, 256.3515f), new(-178.0345f, 372.22162f), new(-246.84871f, 258.38208f), new(-356.6549f, 354.522f), new(301.596f, -303.2207f),
+ new(291.3663f, -300.4941f), new(356.80762f, -228.8062f), new(319.8999f, -187.399f), new(197.3991f, -240.8047f), new(294.86758f, -233.9925f),
+ new(-296.1743f, 353.1413f), new(284.5179f, -244.44681f), new(-357.8659f, 349.699f), new(-249.48871f, 256.65408f), new(-233.1736f, 327.6799f),
+ new(-190.8315f, 369.6704f), new(-233.47f, 271.5513f), new(302.7638f, -256.1363f), new(-186.6031f, 315.0972f), new(316.0725f, -355.9265f),
+ new(197.17929f, -299.5666f), new(-230.2895f, 365.7437f), new(207.4839f, -228.2714f), new(-298.1928f, 305.497f), new(351.6568f, -290.6413f),
+ new(307.95898f, -347.4209f), new(366.9996f, -329.9372f), new(-246.5467f, 314.12958f), new(-364.8601f, 244.6388f), new(-336.3837f, 247.0582f),
+ new(-225.2137f, 418.92963f), new(310.196f, -248.0813f), new(-222.5426f, 313.4034f), new(207.778f, -339.56952f), new(-249.2137f, 312.14758f),
+ new(-371.8873f, 198.9369f), new(-352.9848f, 231.068f), new(-305.19f, 366.04498f), new(-180.4561f, 317.4922f), new(-183.3685f, 368.2526f),
+ new(-406.0513f, 301.24258f), new(-390.69952f, 359.2076f), new(244.6784f, -274.6661f), new(-293.6519f, 256.291f), new(263.77658f, -347.49078f),
+ new(-188.8905f, 372.82642f), new(385.262f, -403.65228f), new(363.6882f, -234.9807f), new(225.6696f, -179.7858f), new(-224.49239f, 214.04869f),
+ new(246.61171f, -299.2226f), new(249.7246f, -394.1956f), new(-362.80112f, 245.9928f), new(-366.2917f, 192.3603f), new(247.39241f, -272.5541f),
+ new(-415.811f, 305.51068f), new(213.3098f, -338.6838f), new(-219.7776f, 314.13742f), new(218.1008f, -339.10278f), new(-183.8134f, 261.28452f),
+ new(-299.596f, 365.53897f), new(-404.9301f, 245.0801f), new(-237.25479f, 369.9296f), new(325.5545f, -349.2455f), new(243.93071f, -300.9786f),
+ new(-220.1232f, 258.14618f), new(-224.212f, 201.19829f), new(-352.5259f, 257.3052f), new(-296.9878f, 302.05002f), new(-290.3198f, 307.008f),
+ new(316.2985f, -353.9735f), new(-235.8163f, 300.2277f), new(360.881f, -288.1972f), new(-364.16312f, 287.0515f), new(398.363f, -232.9368f),
+ new(-409.358f, 304.66568f), new(250.3125f, -234.8311f), new(-241.51979f, 374.6366f), new(239.56729f, -231.51001f), new(252.2296f, -339.3171f),
+ new(365.76202f, -287.76822f), new(233.6965f, -283.558f), new(-235.62059f, 327.0389f), new(257.4246f, -334.0741f), new(366.2512f, -227.4837f),
+ new(-351.4861f, 300.09708f), new(370.264f, -283.2272f), new(-280.142f, 170.5854f), new(-241.87079f, 367.1076f), new(412.01578f, -284.8051f),
+ new(-275.167f, 179.4714f), new(-350.1389f, 259.1452f), new(303.99002f, -399.4734f), new(311.905f, -244.41031f), new(-296.9938f, 302.643f),
+ new(198.02899f, -345.7185f), new(291.0209f, -241.0968f), new(300.3578f, -255.87628f), new(-236.107f, 269.8193f), new(-307.3588f, 293.99792f),
+ new(320.8775f, -352.6705f), new(-377.6097f, 300.39618f), new(-293.65802f, 238.9932f), new(356.5558f, -281.4643f), new(-355.67178f, 412.91177f),
+ new(244.9686f, -397.1926f), new(357.5815f, -340.269f), new(187.6198f, -299.4162f), new(304.665f, -296.21973f), new(-398.17172f, 242.01431f),
+ new(-219.6964f, 213.61069f), new(361.41562f, -173.59871f), new(-365.96158f, 313.42392f), new(-352.0491f, 299.2041f), new(-372.9307f, 186.5773f),
+ new(257.08762f, -287.2662f), new(-283.7413f, 202.0356f), new(288.1054f, -399.06372f), new(-354.4244f, 365.2722f), new(304.36798f, -356.4089f),
+ new(228.3815f, -287.475f), new(319.7019f, -189.069f), new(-362.8576f, 315.66992f), new(-374.8537f, 302.19318f), new(-221.2573f, 429.4111f),
+ new(383.9311f, -341.9436f), new(295.213f, -403.9694f), new(-233.6223f, 245.0146f), new(325.2439f, -183.48f), new(373.6776f, -167.0117f),
+ new(243.85591f, -407.2897f), new(291.1583f, -302.2771f), new(258.2346f, -353.0818f), new(419.05298f, -358.00772f), new(410.047f, -358.86072f),
+ new(367.9986f, -171.17671f), new(295.04858f, -233.12349f), new(-223.99951f, 369.82272f), new(307.69f, -353.8869f), new(-236.26529f, 243.2906f),
+ new(405.112f, -231.1328f), new(364.056f, -358.4639f), new(-361.39313f, 289.04453f), new(375.4418f, -401.8049f), new(361.5526f, -333.6722f),
+ new(419.348f, -355.50272f), new(378.47607f, -345.70462f), new(384.3538f, -394.7949f), new(202.1203f, -296.93958f), new(-414.796f, 300.4447f),
+ new(341.6456f, -236.7812f), new(-297.24478f, 300.02002f), new(193.2998f, -295.25623f), new(-188.2391f, 312.5942f), new(405.9918f, -284.1061f),
+ new(-362.3408f, 407.95578f), new(252.41359f, -337.7461f), new(189.0661f, -220.04109f), new(-177.3233f, 257.0507f), new(226.12851f, -167.6512f),
+ new(-367.8873f, 201.9189f), new(-236.37059f, 327.9719f), new(197.3143f, -296.4496f), new(373.706f, -409.6883f), new(302.788f, -356.6139f),
+ new(-288.7433f, 198.3176f), new(-220.82469f, 421.70963f), new(284.4304f, -401.7547f), new(349.5346f, -236.1412f), new(-177.2633f, 256.50967f),
+ new(216.2538f, -342.1988f), new(285.5173f, -304.4071f), new(-354.3994f, 365.6472f), new(-171.9293f, 260.4787f), new(-280.126f, 179.7854f),
+ new(-351.1489f, 358.122f), new(351.8025f, -343.266f), new(-392.8377f, 245.9893f), new(-233.59529f, 300.8097f), new(-394.8085f, 356.48962f),
+ new(-377.5197f, 300.2052f), new(297.0463f, -296.3351f), new(409.24377f, -291.9761f), new(-298.64902f, 235.69919f), new(367.7896f, -172.9507f),
+ new(292.9696f, -235.3535f), new(-366.4886f, 316.1499f), new(181.9278f, -303.4002f), new(202.8829f, -232.2434f), new(193.5891f, -244.64871f),
+ new(-354.60342f, 363.84918f), new(313.6799f, -189.394f), new(247.4446f, -341.3831f), new(-218.4093f, 433.25812f), new(-366.59158f, 312.4159f),
+ new(-376.2063f, 198.1599f), new(-364.7131f, 286.15253f), new(309.878f, -296.7817f), new(-293.8379f, 250.743f), new(-236.24f, 268.75632f),
+ new(231.9915f, -163.7782f), new(254.35149f, -233.4991f), new(309.058f, -302.44772f), new(190.0311f, -246.0357f), new(-362.59677f, 405.9238f),
+ new(256.72662f, -285.45822f), new(354.90952f, -342.228f), new(-192.1714f, 254.0635f), new(-303.4678f, 298.3609f), new(-339.80368f, 244.4402f),
+ new(-304.5268f, 296.7799f), new(-304.10602f, 364.50598f), new(359.8252f, -226.7427f), new(369.504f, -354.6829f), new(249.2009f, -403.3747f),
+ new(-405.83713f, 249.5261f), new(-371.7317f, 188.1473f), new(238.5269f, -411.0957f), new(-370.5395f, 416.7391f), new(-394.69952f, 356.22662f),
+ new(244.19441f, -272.2521f), new(-348.8348f, 234.683f), new(-194.0805f, 373.2784f), new(-224.80031f, 433.8281f), new(-249.19771f, 312.4166f),
+ new(-398.3037f, 242.3533f), new(-291.3622f, 177.02591f), new(254.49849f, -232.2411f), new(237.67151f, -159.6192f), new(284.2954f, -402.9077f),
+ new(-183.5745f, 366.6306f), new(-236.137f, 269.5703f), new(258.5075f, -229.3051f), new(-307.0598f, 300.3629f), new(-236.28929f, 243.03261f),
+ new(-372.0113f, 199.2149f), new(-188.1241f, 311.7862f), new(-352.2648f, 232.068f), new(299.182f, -398.96738f), new(-401.93732f, 303.9556f),
+ new(-362.3118f, 408.5008f), new(-188.4211f, 309.4562f), new(-351.95712f, 302.5231f), new(363.7926f, -329.5972f), new(185.86209f, -219.71309f),
+ new(288.01492f, -243.3018f), new(-230.5785f, 363.1827f), new(365.92203f, -286.4122f), new(412.11902f, -229.3118f), new(-366.4545f, 419.79208f),
+ new(379.917f, -407.57028f), new(247.5863f, -225.64f), new(-348.72913f, 302.0961f), new(404.902f, -232.90979f), new(427.1114f, -283.81342f),
+ new(286.05582f, -417.0159f), new(-298.853f, 233.75119f), new(-400.19012f, 248.78609f), new(349.7936f, -233.9512f), new(-279.8646f, 412.3831f),
+ new(304.447f, -301.4767f), new(-223.5436f, 310.88843f), new(-389.48352f, 355.4356f), new(-340.4167f, 247.58519f), new(203.0779f, -227.8204f),
+ new(-291.5063f, 356.6113f), new(278.76282f, -420.7829f), new(308.233f, -302.41772f), new(238.09059f, -173.24179f), new(378.5058f, -399.8509f),
+ new(231.2133f, -236.748f), new(-233.9328f, 373.96762f), new(-364.62112f, 289.47052f), new(282.0488f, -416.5939f), new(-394.8565f, 355.01562f),
+ new(258.43158f, -351.4058f), new(-236.52159f, 324.7919f), new(298.8978f, -259.0363f), new(-398.3797f, 240.3993f), new(-222.79019f, 256.16418f),
+ new(-194.3235f, 368.13342f), new(-183.4415f, 368.8066f), new(-225.15869f, 418.48462f), new(239.27429f, -234.02701f), new(-300.6648f, 299.77393f),
+ new(378.74078f, -394.1909f), new(-297.5378f, 302.366f), new(-288.7373f, 198.7486f), new(414.6844f, -289.8234f), new(350.1318f, -280.7273f),
+ new(-224.282f, 200.7163f), new(243.4107f, -298.9076f), new(280.6264f, -404.2347f), new(427.365f, -349.62372f), new(202.7779f, -230.4644f),
+ new(-352.96188f, 259.5152f), new(-218.947f, 204.67929f), new(320.7055f, -354.1385f), new(-295.2392f, 169.91891f), new(421.43237f, -287.9754f),
+ new(243.6589f, -408.9657f), new(366.03f, -286.9942f), new(-356.4819f, 354.146f), new(-299.8709f, 250.859f), new(366.297f, -354.3429f),
+ new(-372.7447f, 193.2063f), new(185.63809f, -221.6241f), new(295.0196f, -230.35449f), new(253.08759f, -355.17477f), new(380.7241f, -341.6036f),
+ new(-191.7984f, 261.9805f), new(231.2776f, -172.52579f), new(-249.5157f, 256.4011f), new(-222.7682f, 256.4252f), new(-352.8678f, 235.209f),
+ new(-230.3345f, 365.11472f), new(-371.4335f, 415.4531f), new(-405.93732f, 300.9746f), new(-377.62473f, 299.3992f), new(203.09999f, -342.99152f),
+ new(-364.8001f, 244.5018f), new(-415.997f, 298.8827f), new(359.5662f, -233.2597f), new(213.08679f, -343.4358f), new(-298.66f, 235.27519f),
+ new(-223.3736f, 314.46442f), new(-223.6834f, 215.4527f), new(286.4033f, -304.6671f), new(317.9099f, -189.725f), new(-371.2965f, 420.4351f),
+ new(-280.1516f, 410.1321f), new(197.10129f, -301.27158f), new(422.21298f, -356.77872f), new(352.2288f, -286.5463f), new(255.9495f, -235.4451f),
+ new(-249.5697f, 313.6026f), new(311.78802f, -247.2413f), new(-239.4878f, 371.8496f), new(-285.2796f, 405.2761f), new(-299.64102f, 235.5392f),
+ new(381.2338f, -397.6679f), new(202.93f, -344.4635f), new(-295.4112f, 177.62791f), new(300.2568f, -258.30228f), new(231.0235f, -285.516f),
+ new(-249.31671f, 311.3346f), new(256.6176f, -287.85022f), new(258.4166f, -347.85678f), new(244.0484f, -275.4421f), new(-356.6909f, 352.532f),
+ new(-236.6093f, 298.2107f), new(-248.2987f, 309.7606f), new(293.3213f, -305.0151f), new(-305.454f, 360.48398f), new(-222.4417f, 419.8026f),
+ new(-224.487f, 199.0873f), new(349.8708f, -287.23828f), new(-188.9061f, 316.1302f), new(405.74878f, -290.2211f), new(259.6495f, -233.5951f),
+ new(-224.7184f, 209.27869f), new(322.5315f, -356.3805f), new(369.1306f, -172.5507f), new(-280.7976f, 414.9321f), new(-352.4898f, 231.604f),
+ new(380.5871f, -344.8326f), new(366.16f, -357.5719f), new(185.7211f, -222.9291f), new(-177.4693f, 254.88768f), new(-300.6648f, 299.77393f),
+ new(350.5086f, -235.37021f), new(-355.67178f, 412.91177f), new(187.4118f, -301.1972f)
]},
{ 595, [
-new(-223.6834f, 215.4527f), new(-365.96158f, 313.42392f), new(-249.48871f, 256.65408f), new(258.43158f, -351.4058f), new(-249.19771f, 312.4166f),
-new(-340.4167f, 247.58519f), new(366.297f, -354.3429f), new(-249.5157f, 256.4011f), new(308.233f, -302.41772f), new(304.665f, -296.21973f),
-new(325.2439f, -183.48f), new(-307.0598f, 300.3629f), new(244.9686f, -397.1926f), new(373.706f, -409.6883f), new(-405.93732f, 300.9746f),
-new(-296.1743f, 353.1413f), new(202.7779f, -230.4644f), new(-190.8315f, 369.6704f), new(-406.0513f, 301.24258f), new(-246.84871f, 258.38208f),
-new(-362.8576f, 315.66992f), new(-366.4886f, 316.1499f), new(385.262f, -403.65228f), new(257.08762f, -287.2662f), new(-356.6549f, 354.522f),
-new(243.8756f, -399.2516f), new(310.196f, -248.0813f), new(-392.8377f, 245.9893f), new(-235.8163f, 300.2277f), new(-221.2573f, 429.4111f),
-new(361.5526f, -333.6722f), new(-233.59529f, 300.8097f), new(288.1054f, -399.06372f), new(-223.99951f, 369.82272f), new(-364.62112f, 289.47052f),
-new(299.182f, -398.96738f), new(254.35149f, -233.4991f), new(-285.2796f, 405.2761f), new(-409.358f, 304.66568f), new(373.6776f, -167.0117f),
-new(254.49849f, -232.2411f), new(-231.13051f, 368.57172f), new(325.5545f, -349.2455f), new(202.1203f, -296.93958f), new(-405.83713f, 249.5261f),
-new(-367.8873f, 201.9189f), new(-177.2633f, 256.50967f), new(-371.7317f, 188.1473f), new(351.8025f, -343.266f), new(-354.3994f, 365.6472f),
-new(-275.167f, 179.4714f), new(231.2133f, -236.748f), new(421.43237f, -287.9754f), new(286.05582f, -417.0159f), new(298.6276f, -230.7425f),
-new(243.4107f, -298.9076f), new(-348.8348f, 234.683f), new(-236.24f, 268.75632f), new(-218.947f, 204.67929f), new(-288.7373f, 198.7486f),
-new(198.02899f, -345.7185f), new(-178.0345f, 372.22162f), new(369.504f, -354.6829f), new(-351.1489f, 358.122f), new(360.881f, -288.1972f),
-new(349.7936f, -233.9512f), new(307.69f, -353.8869f), new(298.8978f, -259.0363f), new(-355.67178f, 412.91177f), new(367.7896f, -172.9507f),
-new(-296.1733f, 353.54932f), new(207.4839f, -228.2714f), new(181.9278f, -303.4002f), new(319.8999f, -187.399f), new(375.4418f, -401.8049f),
-new(364.056f, -358.4639f), new(-374.8537f, 302.19318f), new(366.9996f, -329.9372f), new(414.6844f, -289.8234f), new(-362.80112f, 245.9928f),
-new(-224.80031f, 433.8281f), new(-371.2965f, 420.4351f), new(216.2538f, -342.1988f), new(-366.2917f, 192.3603f), new(361.41562f, -173.59871f),
-new(-280.142f, 170.5854f), new(-290.3198f, 307.008f), new(-356.4819f, 354.146f), new(239.27429f, -234.02701f), new(295.213f, -403.9694f),
-new(350.5086f, -235.37021f), new(-283.7413f, 202.0356f), new(-404.9301f, 245.0801f), new(-233.6223f, 245.0146f), new(-350.1389f, 259.1452f),
-new(349.5346f, -236.1412f), new(-236.4733f, 301.0717f), new(-238.864f, 267.91733f), new(-224.49239f, 214.04869f), new(379.917f, -407.57028f),
-new(378.74078f, -394.1909f), new(356.5558f, -281.4643f), new(-303.4678f, 298.3609f), new(301.596f, -303.2207f), new(250.3125f, -234.8311f),
-new(187.6198f, -299.4162f), new(-371.8873f, 198.9369f), new(370.264f, -283.2272f), new(-236.28929f, 243.03261f), new(-225.2137f, 418.92963f),
-new(-188.8905f, 372.82642f), new(285.5173f, -304.4071f), new(-235.62059f, 327.0389f), new(-219.7776f, 314.13742f), new(-304.10602f, 364.50598f),
-new(-230.2895f, 365.7437f), new(-191.7984f, 261.9805f), new(314.374f, -348.1099f), new(307.95898f, -347.4209f), new(239.56729f, -231.51001f),
-new(-372.7447f, 193.2063f), new(203.09999f, -342.99152f), new(193.2998f, -295.25623f), new(287.9039f, -244.2408f), new(-236.37059f, 327.9719f),
-new(-293.65802f, 238.9932f), new(378.47607f, -345.70462f), new(-249.31671f, 311.3346f), new(-352.2648f, 232.068f), new(190.0311f, -246.0357f),
-new(288.01492f, -243.3018f), new(243.85591f, -407.2897f), new(247.39241f, -272.5541f), new(-188.1241f, 311.7862f), new(357.5815f, -340.269f),
-new(-236.26529f, 243.2906f), new(-364.16312f, 287.0515f), new(-293.6519f, 256.291f), new(365.92203f, -286.4122f), new(316.2985f, -353.9735f),
-new(-354.4244f, 365.2722f), new(-291.3622f, 177.02591f), new(-233.9328f, 373.96762f), new(286.4033f, -304.6671f), new(-233.47f, 271.5513f),
-new(427.1114f, -283.81342f), new(197.10129f, -301.27158f), new(-279.8646f, 412.3831f), new(-299.596f, 365.53897f), new(-288.7433f, 198.3176f),
-new(-377.6097f, 300.39618f), new(303.99002f, -399.4734f), new(-233.1736f, 327.6799f), new(284.5179f, -244.44681f), new(203.0779f, -227.8204f),
-new(-280.1516f, 410.1321f), new(-224.7184f, 209.27869f), new(363.6882f, -234.9807f), new(243.93071f, -300.9786f), new(-352.5259f, 257.3052f),
-new(238.09059f, -173.24179f), new(189.0661f, -220.04109f), new(263.77658f, -347.49078f), new(258.4166f, -347.85678f), new(384.3538f, -394.7949f),
-new(-354.60342f, 363.84918f), new(314.712f, -244.7133f), new(-297.5378f, 302.366f), new(-361.39313f, 289.04453f), new(228.3815f, -287.475f),
-new(-236.6093f, 298.2107f), new(278.76282f, -420.7829f), new(-366.4545f, 419.79208f), new(-280.126f, 179.7854f), new(366.03f, -286.9942f),
-new(259.1256f, -285.6842f), new(-394.8085f, 356.48962f), new(-220.1232f, 258.14618f), new(280.6264f, -404.2347f), new(-274.2656f, 416.07208f),
-new(-394.8565f, 355.01562f), new(-372.04428f, 197.7269f), new(398.363f, -232.9368f), new(-224.212f, 201.19829f), new(-356.6909f, 352.532f),
-new(-362.3118f, 408.5008f), new(-223.3736f, 314.46442f), new(225.6696f, -179.7858f), new(419.348f, -355.50272f), new(-415.997f, 298.8827f),
-new(282.0488f, -416.5939f), new(-293.8379f, 250.743f), new(309.878f, -296.7817f), new(359.8252f, -226.7427f), new(247.4446f, -341.3831f),
-new(365.76202f, -287.76822f), new(-220.82469f, 421.70963f), new(-222.8932f, 255.3512f), new(-237.1326f, 324.4869f), new(258.5075f, -229.3051f),
-new(366.16f, -357.5719f), new(-296.9878f, 302.05002f), new(244.12259f, -393.64758f), new(-300.6648f, 299.77393f), new(-222.5426f, 313.4034f),
-new(247.5863f, -225.64f), new(-364.8601f, 244.6388f), new(-398.3037f, 242.3533f), new(-400.19012f, 248.78609f), new(-223.2804f, 212.5687f),
-new(233.6965f, -283.558f), new(380.5871f, -344.8326f), new(427.365f, -349.62372f), new(226.12851f, -167.6512f), new(-390.69952f, 359.2076f),
-new(237.67151f, -159.6192f), new(380.7241f, -341.6036f), new(291.3663f, -300.4941f), new(-398.17172f, 242.01431f), new(313.6799f, -189.394f),
-new(-414.796f, 300.4447f), new(-299.8709f, 250.859f), new(-188.2391f, 312.5942f), new(-415.811f, 305.51068f), new(-223.4476f, 310.2694f),
-new(197.17929f, -299.5666f), new(291.0209f, -241.0968f), new(-401.93732f, 303.9556f), new(-236.52159f, 324.7919f), new(-295.2392f, 169.91891f),
-new(-222.7682f, 256.4252f), new(-171.9293f, 260.4787f), new(-362.3408f, 407.95578f), new(405.9918f, -284.1061f), new(-236.3923f, 242.2196f),
-new(297.0463f, -296.3351f), new(383.9311f, -341.9436f), new(231.9915f, -163.7782f), new(253.08759f, -355.17477f), new(316.0725f, -355.9265f),
-new(359.5662f, -233.2597f), new(410.79102f, -226.9708f), new(-298.1928f, 305.497f), new(-336.3837f, 247.0582f), new(351.6568f, -290.6413f),
-new(-194.0805f, 373.2784f), new(-225.15869f, 418.48462f), new(-298.66f, 235.27519f), new(-366.59158f, 312.4159f), new(366.2512f, -227.4837f),
-new(-230.3345f, 365.11472f), new(319.7019f, -189.069f), new(-236.137f, 269.5703f), new(309.058f, -302.44772f), new(354.90952f, -342.228f),
-new(349.8708f, -287.23828f), new(-351.4861f, 300.09708f), new(-291.5063f, 356.6113f), new(-348.72913f, 302.0961f), new(238.5269f, -411.0957f),
-new(-241.87079f, 367.1076f), new(320.8775f, -352.6705f), new(246.61171f, -299.2226f), new(409.24377f, -291.9761f), new(213.08679f, -343.4358f),
-new(304.447f, -301.4767f), new(185.63809f, -221.6241f), new(257.4246f, -334.0741f), new(-188.4211f, 309.4562f), new(231.0235f, -285.516f),
-new(-394.69952f, 356.22662f), new(-296.9938f, 302.643f), new(218.1008f, -339.10278f), new(422.21298f, -356.77872f), new(-219.6964f, 213.61069f),
-new(302.7638f, -256.1363f), new(185.86209f, -219.71309f), new(-305.454f, 360.48398f), new(-299.64102f, 235.5392f), new(304.36798f, -356.4089f),
-new(-183.8134f, 261.28452f), new(252.2296f, -339.3171f), new(-192.1714f, 254.0635f), new(-186.6031f, 315.0972f), new(197.3991f, -240.8047f),
-new(-298.64902f, 235.69919f), new(-352.96188f, 259.5152f), new(-406.7231f, 251.0671f), new(-183.4415f, 368.8066f), new(292.9696f, -235.3535f),
-new(291.1583f, -302.2771f), new(258.2346f, -353.0818f), new(284.4304f, -401.7547f), new(293.3213f, -305.0151f), new(-180.4561f, 317.4922f),
-new(-364.8001f, 244.5018f), new(367.9986f, -171.17671f), new(-249.2137f, 312.14758f), new(-372.0113f, 199.2149f), new(214.3848f, -341.0878f),
-new(412.01578f, -284.8051f), new(244.19441f, -272.2521f), new(231.2776f, -172.52579f), new(-295.4112f, 177.62791f), new(-279.9346f, 411.86108f),
-new(320.7055f, -354.1385f), new(-377.62473f, 299.3992f), new(363.7926f, -329.5972f), new(-349.7554f, 368.74118f), new(-223.5436f, 310.88843f),
-new(-241.51979f, 374.6366f), new(-183.3685f, 368.2526f), new(256.72662f, -285.45822f), new(300.3578f, -255.87628f), new(-304.5268f, 296.7799f),
-new(-361.9826f, 315.3399f), new(378.5058f, -399.8509f), new(-218.4093f, 433.25812f), new(350.1318f, -280.7273f), new(213.3098f, -338.6838f),
-new(-377.5197f, 300.2052f), new(207.778f, -339.56952f), new(-352.9848f, 231.068f), new(410.047f, -358.86072f), new(295.04858f, -233.12349f),
-new(197.3143f, -296.4496f), new(-297.5678f, 295.457f), new(-236.107f, 269.8193f), new(-339.80368f, 244.4402f), new(-389.48352f, 355.4356f),
-new(-352.8678f, 235.209f), new(-186.8574f, 256.3515f), new(412.11902f, -229.3118f), new(405.112f, -231.1328f), new(-222.79019f, 256.16418f),
-new(-305.19f, 366.04498f), new(-224.282f, 200.7163f), new(404.902f, -232.90979f), new(341.6456f, -236.7812f), new(249.7246f, -394.1956f),
-new(302.788f, -356.6139f), new(-237.25479f, 369.9296f), new(-298.853f, 233.75119f), new(356.80762f, -228.8062f), new(-299.7369f, 257.25f),
-new(-406.0943f, 299.7636f), new(249.2009f, -403.3747f), new(-246.5467f, 314.12958f), new(244.6784f, -274.6661f), new(-351.95712f, 302.5231f),
-new(-224.487f, 199.0873f), new(317.9099f, -189.725f), new(252.41359f, -337.7461f), new(-297.24478f, 300.02002f), new(-370.5395f, 416.7391f),
-new(369.1306f, -172.5507f), new(295.0196f, -230.35449f), new(-239.4878f, 371.8496f), new(-230.5785f, 363.1827f), new(-177.3233f, 257.0507f),
-new(311.905f, -244.41031f), new(419.05298f, -358.00772f), new(360.2702f, -236.3027f), new(-307.3588f, 293.99792f), new(294.86758f, -233.9925f)
+ new(-365.96158f, 313.42392f), new(-249.48871f, 256.65408f), new(258.43158f, -351.4058f), new(-249.19771f, 312.4166f), new(-340.4167f, 247.58519f),
+ new(366.297f, -354.3429f), new(-249.5157f, 256.4011f), new(308.233f, -302.41772f), new(304.665f, -296.21973f), new(325.2439f, -183.48f),
+ new(-307.0598f, 300.3629f), new(244.9686f, -397.1926f), new(373.706f, -409.6883f), new(-405.93732f, 300.9746f), new(-296.1743f, 353.1413f),
+ new(202.7779f, -230.4644f), new(-190.8315f, 369.6704f), new(-406.0513f, 301.24258f), new(-246.84871f, 258.38208f), new(-362.8576f, 315.66992f),
+ new(-366.4886f, 316.1499f), new(385.262f, -403.65228f), new(257.08762f, -287.2662f), new(-356.6549f, 354.522f), new(243.8756f, -399.2516f),
+ new(310.196f, -248.0813f), new(-392.8377f, 245.9893f), new(-235.8163f, 300.2277f), new(-221.2573f, 429.4111f), new(361.5526f, -333.6722f),
+ new(-233.59529f, 300.8097f), new(288.1054f, -399.06372f), new(-223.99951f, 369.82272f), new(-364.62112f, 289.47052f), new(299.182f, -398.96738f),
+ new(-285.2796f, 405.2761f), new(-409.358f, 304.66568f), new(373.6776f, -167.0117f), new(254.49849f, -232.2411f), new(325.5545f, -349.2455f),
+ new(202.1203f, -296.93958f), new(-405.83713f, 249.5261f), new(-367.8873f, 201.9189f), new(-177.2633f, 256.50967f), new(-371.7317f, 188.1473f),
+ new(351.8025f, -343.266f), new(-354.3994f, 365.6472f), new(-275.167f, 179.4714f), new(231.2133f, -236.748f), new(421.43237f, -287.9754f),
+ new(286.05582f, -417.0159f), new(298.6276f, -230.7425f), new(243.4107f, -298.9076f), new(-348.8348f, 234.683f), new(-236.24f, 268.75632f),
+ new(-218.947f, 204.67929f), new(-288.7373f, 198.7486f), new(198.02899f, -345.7185f), new(-178.0345f, 372.22162f), new(369.504f, -354.6829f),
+ new(-351.1489f, 358.122f), new(360.881f, -288.1972f), new(349.7936f, -233.9512f), new(307.69f, -353.8869f), new(298.8978f, -259.0363f),
+ new(-355.67178f, 412.91177f), new(367.7896f, -172.9507f), new(-296.1733f, 353.54932f), new(207.4839f, -228.2714f), new(181.9278f, -303.4002f),
+ new(319.8999f, -187.399f), new(375.4418f, -401.8049f), new(364.056f, -358.4639f), new(-374.8537f, 302.19318f), new(366.9996f, -329.9372f),
+ new(414.6844f, -289.8234f), new(-362.80112f, 245.9928f), new(-224.80031f, 433.8281f), new(-371.2965f, 420.4351f), new(216.2538f, -342.1988f),
+ new(-366.2917f, 192.3603f), new(361.41562f, -173.59871f), new(-280.142f, 170.5854f), new(-290.3198f, 307.008f), new(-356.4819f, 354.146f),
+ new(239.27429f, -234.02701f), new(295.213f, -403.9694f), new(350.5086f, -235.37021f), new(-283.7413f, 202.0356f), new(-404.9301f, 245.0801f),
+ new(-233.6223f, 245.0146f), new(-350.1389f, 259.1452f), new(349.5346f, -236.1412f), new(-236.4733f, 301.0717f), new(-224.49239f, 214.04869f),
+ new(379.917f, -407.57028f), new(378.74078f, -394.1909f), new(356.5558f, -281.4643f), new(-303.4678f, 298.3609f), new(301.596f, -303.2207f),
+ new(250.3125f, -234.8311f), new(187.6198f, -299.4162f), new(-371.8873f, 198.9369f), new(370.264f, -283.2272f), new(-236.28929f, 243.03261f),
+ new(-225.2137f, 418.92963f), new(-188.8905f, 372.82642f), new(285.5173f, -304.4071f), new(-235.62059f, 327.0389f), new(-219.7776f, 314.13742f),
+ new(-304.10602f, 364.50598f), new(-230.2895f, 365.7437f), new(-191.7984f, 261.9805f), new(314.374f, -348.1099f), new(307.95898f, -347.4209f),
+ new(239.56729f, -231.51001f), new(-372.7447f, 193.2063f), new(203.09999f, -342.99152f), new(193.2998f, -295.25623f), new(287.9039f, -244.2408f),
+ new(-236.37059f, 327.9719f), new(-293.65802f, 238.9932f), new(378.47607f, -345.70462f), new(-249.31671f, 311.3346f), new(-352.2648f, 232.068f),
+ new(190.0311f, -246.0357f), new(288.01492f, -243.3018f), new(243.85591f, -407.2897f), new(247.39241f, -272.5541f), new(-188.1241f, 311.7862f),
+ new(357.5815f, -340.269f), new(-236.26529f, 243.2906f), new(-364.16312f, 287.0515f), new(-293.6519f, 256.291f), new(365.92203f, -286.4122f),
+ new(316.2985f, -353.9735f), new(-354.4244f, 365.2722f), new(-291.3622f, 177.02591f), new(-233.9328f, 373.96762f), new(286.4033f, -304.6671f),
+ new(-233.47f, 271.5513f), new(427.1114f, -283.81342f), new(197.10129f, -301.27158f), new(-279.8646f, 412.3831f), new(-299.596f, 365.53897f),
+ new(-288.7433f, 198.3176f), new(-377.6097f, 300.39618f), new(303.99002f, -399.4734f), new(-233.1736f, 327.6799f), new(284.5179f, -244.44681f),
+ new(203.0779f, -227.8204f), new(-224.7184f, 209.27869f), new(363.6882f, -234.9807f), new(243.93071f, -300.9786f), new(-352.5259f, 257.3052f),
+ new(238.09059f, -173.24179f), new(189.0661f, -220.04109f), new(263.77658f, -347.49078f), new(258.4166f, -347.85678f), new(384.3538f, -394.7949f),
+ new(-354.60342f, 363.84918f), new(314.712f, -244.7133f), new(-297.5378f, 302.366f), new(-361.39313f, 289.04453f), new(228.3815f, -287.475f),
+ new(-236.6093f, 298.2107f), new(278.76282f, -420.7829f), new(-366.4545f, 419.79208f), new(-280.126f, 179.7854f), new(259.1256f, -285.6842f),
+ new(-394.8085f, 356.48962f), new(-220.1232f, 258.14618f), new(280.6264f, -404.2347f), new(-274.2656f, 416.07208f), new(-394.8565f, 355.01562f),
+ new(398.363f, -232.9368f), new(-224.212f, 201.19829f), new(-356.6909f, 352.532f), new(-362.3118f, 408.5008f), new(-223.3736f, 314.46442f),
+ new(225.6696f, -179.7858f), new(419.348f, -355.50272f), new(282.0488f, -416.5939f), new(-293.8379f, 250.743f), new(309.878f, -296.7817f),
+ new(359.8252f, -226.7427f), new(247.4446f, -341.3831f), new(-220.82469f, 421.70963f), new(-222.8932f, 255.3512f), new(-237.1326f, 324.4869f),
+ new(258.5075f, -229.3051f), new(-296.9878f, 302.05002f), new(244.12259f, -393.64758f), new(-300.6648f, 299.77393f), new(-222.5426f, 313.4034f),
+ new(247.5863f, -225.64f), new(-364.8601f, 244.6388f), new(-398.3037f, 242.3533f), new(-400.19012f, 248.78609f), new(-223.2804f, 212.5687f),
+ new(233.6965f, -283.558f), new(380.5871f, -344.8326f), new(427.365f, -349.62372f), new(226.12851f, -167.6512f), new(-390.69952f, 359.2076f),
+ new(237.67151f, -159.6192f), new(380.7241f, -341.6036f), new(291.3663f, -300.4941f), new(-398.17172f, 242.01431f), new(313.6799f, -189.394f),
+ new(-414.796f, 300.4447f), new(-299.8709f, 250.859f), new(-188.2391f, 312.5942f), new(-415.811f, 305.51068f), new(197.17929f, -299.5666f),
+ new(291.0209f, -241.0968f), new(-401.93732f, 303.9556f), new(-236.52159f, 324.7919f), new(-295.2392f, 169.91891f), new(-222.7682f, 256.4252f),
+ new(-171.9293f, 260.4787f), new(-362.3408f, 407.95578f), new(405.9918f, -284.1061f), new(-236.3923f, 242.2196f), new(297.0463f, -296.3351f),
+ new(383.9311f, -341.9436f), new(231.9915f, -163.7782f), new(253.08759f, -355.17477f), new(316.0725f, -355.9265f), new(359.5662f, -233.2597f),
+ new(410.79102f, -226.9708f), new(-298.1928f, 305.497f), new(-336.3837f, 247.0582f), new(351.6568f, -290.6413f), new(-194.0805f, 373.2784f),
+ new(-225.15869f, 418.48462f), new(-298.66f, 235.27519f), new(-366.59158f, 312.4159f), new(366.2512f, -227.4837f), new(-230.3345f, 365.11472f),
+ new(319.7019f, -189.069f), new(-236.137f, 269.5703f), new(309.058f, -302.44772f), new(354.90952f, -342.228f), new(349.8708f, -287.23828f),
+ new(-351.4861f, 300.09708f), new(-291.5063f, 356.6113f), new(-348.72913f, 302.0961f), new(238.5269f, -411.0957f), new(-241.87079f, 367.1076f),
+ new(320.8775f, -352.6705f), new(246.61171f, -299.2226f), new(409.24377f, -291.9761f), new(213.08679f, -343.4358f), new(304.447f, -301.4767f),
+ new(185.63809f, -221.6241f), new(257.4246f, -334.0741f), new(-188.4211f, 309.4562f), new(231.0235f, -285.516f), new(-394.69952f, 356.22662f),
+ new(-296.9938f, 302.643f), new(218.1008f, -339.10278f), new(422.21298f, -356.77872f), new(-219.6964f, 213.61069f), new(302.7638f, -256.1363f),
+ new(185.86209f, -219.71309f), new(-305.454f, 360.48398f), new(-299.64102f, 235.5392f), new(304.36798f, -356.4089f), new(-183.8134f, 261.28452f),
+ new(252.2296f, -339.3171f), new(-192.1714f, 254.0635f), new(-186.6031f, 315.0972f), new(197.3991f, -240.8047f), new(-298.64902f, 235.69919f),
+ new(-352.96188f, 259.5152f), new(-406.7231f, 251.0671f), new(-183.4415f, 368.8066f), new(292.9696f, -235.3535f), new(291.1583f, -302.2771f),
+ new(258.2346f, -353.0818f), new(284.4304f, -401.7547f), new(-180.4561f, 317.4922f), new(-364.8001f, 244.5018f), new(367.9986f, -171.17671f),
+ new(-249.2137f, 312.14758f), new(-372.0113f, 199.2149f), new(214.3848f, -341.0878f), new(412.01578f, -284.8051f), new(231.2776f, -172.52579f),
+ new(-295.4112f, 177.62791f), new(-279.9346f, 411.86108f), new(320.7055f, -354.1385f), new(363.7926f, -329.5972f), new(-349.7554f, 368.74118f),
+ new(-223.5436f, 310.88843f), new(-241.51979f, 374.6366f), new(-183.3685f, 368.2526f), new(256.72662f, -285.45822f), new(300.3578f, -255.87628f),
+ new(-304.5268f, 296.7799f), new(-361.9826f, 315.3399f), new(-218.4093f, 433.25812f), new(350.1318f, -280.7273f), new(213.3098f, -338.6838f),
+ new(-377.5197f, 300.2052f), new(207.778f, -339.56952f), new(-352.9848f, 231.068f), new(410.047f, -358.86072f), new(295.04858f, -233.12349f),
+ new(197.3143f, -296.4496f), new(-297.5678f, 295.457f), new(-236.107f, 269.8193f), new(-339.80368f, 244.4402f), new(-389.48352f, 355.4356f),
+ new(-352.8678f, 235.209f), new(-186.8574f, 256.3515f), new(412.11902f, -229.3118f), new(405.112f, -231.1328f), new(-222.79019f, 256.16418f),
+ new(-305.19f, 366.04498f), new(-224.282f, 200.7163f), new(404.902f, -232.90979f), new(341.6456f, -236.7812f), new(249.7246f, -394.1956f),
+ new(302.788f, -356.6139f), new(-237.25479f, 369.9296f), new(356.80762f, -228.8062f), new(-299.7369f, 257.25f), new(-406.0943f, 299.7636f),
+ new(249.2009f, -403.3747f), new(-246.5467f, 314.12958f), new(244.6784f, -274.6661f), new(-351.95712f, 302.5231f), new(252.41359f, -337.7461f),
+ new(-297.24478f, 300.02002f), new(-370.5395f, 416.7391f), new(369.1306f, -172.5507f), new(295.0196f, -230.35449f), new(-230.5785f, 363.1827f),
+ new(-177.3233f, 257.0507f), new(311.905f, -244.41031f), new(419.05298f, -358.00772f), new(-307.3588f, 293.99792f), new(294.86758f, -233.9925f),
+ new(-415.997f, 298.8827f), new(365.76202f, -287.76822f), new(-223.6834f, 215.4527f), new(254.35149f, -233.4991f), new(-231.13051f, 368.57172f),
+ new(-362.59677f, 405.9238f), new(-238.864f, 267.91733f), new(-228.2583f, 422.7101f), new(-352.0491f, 299.2041f), new(425.83197f, -359.0997f),
+ new(-280.1516f, 410.1321f), new(322.5315f, -356.3805f), new(311.78802f, -247.2413f), new(366.03f, -286.9942f), new(-372.04428f, 197.7269f),
+ new(193.5891f, -244.64871f), new(366.16f, -357.5719f), new(-223.4476f, 310.2694f), new(312.762f, -354.1999f), new(293.3213f, -305.0151f),
+ new(244.19441f, -272.2521f), new(-377.62473f, 299.3992f), new(378.5058f, -399.8509f), new(300.2568f, -258.30228f), new(-298.853f, 233.75119f),
+ new(-224.487f, 199.0873f), new(317.9099f, -189.725f), new(-239.4878f, 371.8496f), new(360.2702f, -236.3027f), new(320.3965f, -358.0665f),
+ new(-296.3543f, 351.7193f), new(-340.5337f, 243.44319f), new(-225.32669f, 417.16663f), new(187.4118f, -301.1972f), new(-306.25882f, 294.70792f),
+ new(306.32098f, -358.4329f), new(-357.8659f, 349.699f), new(-226.9205f, 360.8837f), new(-181.7925f, 369.6776f), new(231.78351f, -165.5612f),
+ new(-364.7131f, 286.15253f), new(-183.5745f, 366.6306f), new(193.72409f, -243.4967f), new(247.4203f, -237.864f), new(352.2288f, -286.5463f),
+ new(-372.9307f, 186.5773f)
]},
{ 596, [
-new(-375.8267f, 287.19608f), new(427.7098f, -308.28122f), new(296.4772f, -410.4588f), new(-243.1386f, 367.92142f), new(-180.2807f, 309.10532f),
-new(-349.7475f, 351.51752f), new(-365.01782f, 289.4269f), new(-221.6848f, 247.2182f), new(-299.8817f, 241.614f), new(-404.9523f, 240.9053f),
-new(250.3552f, -242.83829f), new(-245.36879f, 256.589f), new(248.6534f, -350.4357f), new(301.64542f, -297.0861f), new(-381.76932f, 303.3935f),
-new(367.9966f, -345.1768f), new(-364.2273f, 311.9096f), new(373.3357f, -299.6824f), new(202.7644f, -338.7428f), new(307.26392f, -348.33978f),
-new(-238.9009f, 241.5375f), new(375.92368f, -293.7234f), new(-418.5883f, 305.05652f), new(305.5426f, -235.6109f), new(364.6615f, -245.5054f),
-new(-218.0427f, 190.9747f), new(-367.67938f, 410.6508f), new(-381.7493f, 304.4105f), new(-369.13138f, 408.7348f), new(191.535f, -295.7391f),
-new(299.8616f, -241.0159f), new(378.2439f, -181.9453f), new(241.9967f, -285.195f), new(249.3412f, -243.1333f), new(368.7667f, -296.2844f),
-new(-226.5768f, 415.9318f), new(-221.4747f, 259.6637f), new(-224.0849f, 376.1697f), new(-363.8658f, 288.1609f), new(-174.6207f, 256.4829f),
-new(-317.3244f, 410.3939f), new(235.3032f, -247.3529f), new(-363.56738f, 421.8748f), new(-293.41672f, 247.91699f), new(-364.08148f, 350.9287f),
-new(-177.0977f, 317.6513f), new(295.9056f, -236.0919f), new(300.04062f, -240.2799f), new(311.0739f, -348.39578f), new(246.18669f, -177.07019f),
-new(397.7746f, -399.6557f), new(-303.7987f, 237.43199f), new(-235.1533f, 379.9365f), new(241.2047f, -178.5282f), new(373.7216f, -343.1258f),
-new(432.53378f, -352.9289f), new(-319.25043f, 414.4329f), new(247.1994f, -339.1117f), new(234.89821f, -247.5799f), new(-296.95172f, 238.65799f),
-new(291.5162f, -411.93582f), new(374.4119f, -181.4383f), new(294.75043f, -298.1641f), new(-240.3219f, 240.9395f), new(-235.0799f, 314.8427f),
-new(375.84747f, -238.8681f), new(425.9308f, -359.6249f), new(-424.27228f, 302.6705f), new(389.2533f, -188.2421f), new(-369.1658f, 244.16551f),
-new(186.913f, -300.4261f), new(357.8489f, -254.86292f), new(-295.4191f, 349.1402f), new(289.87518f, -417.1558f), new(-231.84389f, 309.1347f),
-new(-183.7797f, 311.1543f), new(198.54541f, -340.7218f), new(250.24539f, -350.0037f), new(392.04962f, -401.7067f), new(-221.5838f, 367.208f),
-new(378.52048f, -240.0451f), new(-364.2128f, 287.5879f), new(-221.41069f, 193.0987f), new(301.0126f, -236.5779f), new(425.3768f, -355.4909f),
-new(357.1509f, -255.69492f), new(360.87653f, -244.33841f), new(246.6967f, -283.897f), new(-375.4836f, 188.2063f), new(243.4477f, -290.28302f),
-new(-222.1557f, 257.8017f), new(289.3202f, -413.01282f), new(-302.99292f, 292.1077f), new(-301.0351f, 363.77222f), new(-179.7739f, 379.5818f),
-new(248.9232f, -243.34929f), new(236.3302f, -247.0689f), new(-379.9523f, 305.1645f), new(299.81763f, -237.6609f), new(-228.6859f, 317.5297f),
-new(424.1023f, -248.4004f), new(377.7846f, -253.2614f), new(186.525f, -297.5291f), new(-350.5128f, 363.8914f), new(239.0297f, -179.62419f),
-new(327.1954f, -176.242f), new(-349.3458f, 367.0634f), new(-184.3947f, 366.6792f), new(373.9225f, -238.9921f), new(-365.10748f, 353.1047f),
-new(240.2547f, -286.199f), new(-240.2286f, 367.5364f), new(-226.5139f, 374.2437f), new(-363.2774f, 363.57812f), new(323.2474f, -177.099f),
-new(-313.9014f, 419.72888f), new(-381.23062f, 182.6033f), new(-349.7285f, 243.2063f), new(-380.8783f, 302.6345f), new(306.53592f, -352.6148f),
-new(-424.3353f, 299.45352f), new(298.8846f, -244.4339f), new(-216.7278f, 422.2168f), new(247.4832f, -231.2089f), new(-222.4118f, 419.8278f),
-new(-220.2638f, 247.81621f), new(257.3819f, -335.6107f), new(-238.7249f, 314.4837f), new(-183.49269f, 314.9653f), new(-368.6988f, 241.65251f),
-new(374.3089f, -198.0055f), new(425.4943f, -247.2514f), new(369.1726f, -344.0818f), new(198.4264f, -342.9558f), new(-351.5738f, 364.8914f),
-new(-302.00992f, 307.3517f), new(-276.5876f, 196.0524f), new(182.1309f, -225.3216f), new(249.83319f, -230.3699f), new(265.46408f, -351.42288f),
-new(-181.5139f, 374.92178f), new(-371.4694f, 414.1708f), new(-169.9342f, 366.7675f), new(431.5178f, -307.45322f), new(-219.5878f, 414.57678f),
-new(392.4926f, -405.0117f), new(305.1087f, -355.9471f), new(-348.59952f, 354.76352f), new(429.82828f, -246.2924f), new(259.95688f, -334.69168f),
-new(245.0444f, -339.88168f), new(298.5664f, -296.4341f), new(-414.8303f, 360.058f), new(-402.0813f, 238.4703f), new(241.26201f, -401.66058f),
-new(-292.21692f, 306.0357f), new(231.0019f, -233.7089f), new(-292.6491f, 361.82822f), new(-373.7287f, 289.02408f), new(283.6572f, -408.4468f),
-new(424.5463f, -251.6494f), new(368.4396f, -348.48178f), new(371.6499f, -198.55849f), new(-180.3047f, 254.0939f), new(-375.7687f, 289.2941f),
-new(188.5729f, -223.01959f), new(361.63388f, -255.99991f), new(241.66501f, -404.1146f), new(-222.8957f, 259.0657f), new(242.707f, -400.75858f),
-new(-310.1859f, 294.7597f), new(-299.8127f, 245.236f), new(368.1916f, -347.8038f), new(-214.9447f, 199.4007f), new(370.3707f, -294.9174f),
-new(187.819f, -296.7651f), new(303.5844f, -296.0821f), new(-242.7146f, 365.72842f), new(-173.2532f, 364.2295f), new(-300.7459f, 291.80872f),
-new(427.20578f, -361.7999f), new(-378.4486f, 180.15831f), new(-224.0158f, 365.288f), new(-308.2731f, 356.2482f), new(248.07939f, -350.8447f),
-new(-399.2053f, 246.5083f), new(245.5944f, -339.5477f), new(-421.4083f, 297.08252f), new(302.0394f, -299.8371f), new(248.1622f, -230.8479f),
-new(392.5123f, -185.8541f), new(263.8631f, -351.8789f), new(-235.08289f, 305.0007f), new(322.57343f, -180.929f), new(-351.1355f, 246.16829f),
-new(236.3837f, -173.9802f), new(-289.33652f, 192.2491f), new(307.45468f, -356.7891f), new(-381.1676f, 185.82031f), new(-411.9483f, 355.87302f),
-new(-347.3438f, 236.2593f), new(-285.0775f, 196.4021f), new(-365.8008f, 243.7225f), new(-362.47928f, 313.1716f), new(248.24039f, -351.9997f),
-new(232.4339f, -233.19789f), new(322.1864f, -178.036f), new(373.0866f, -251.8124f), new(372.3996f, -252.7824f), new(-287.3915f, 190.31711f),
-new(360.1965f, -245.1624f), new(231.1129f, -234.5369f), new(-295.7199f, 291.3557f), new(-364.15482f, 289.6859f), new(-404.88928f, 244.1213f),
-new(-246.0768f, 257.873f), new(-414.4383f, 360.781f), new(317.9259f, -364.4284f), new(-362.9595f, 354.0057f), new(-281.2356f, 196.6664f),
-new(308.0874f, -294.7861f), new(-237.90189f, 319.4187f), new(-365.1305f, 351.9997f), new(426.5078f, -309.2452f), new(239.5847f, -183.7672f),
-new(240.7537f, -289.924f), new(257.58188f, -337.0997f), new(299.79742f, -307.2701f), new(302.6657f, -355.9781f), new(302.1444f, -300.8131f),
-new(-235.15189f, 311.2277f), new(-351.1685f, 244.4913f), new(303.3867f, -363.8321f), new(235.0092f, -248.4079f), new(-350.62152f, 353.91553f),
-new(426.9578f, -354.1079f), new(-409.4643f, 362.86902f), new(-289.2905f, 194.6351f), new(-364.6134f, 359.94012f), new(393.2066f, -400.5997f),
-new(-350.2448f, 234.1913f), new(258.08588f, -335.2167f), new(-350.7088f, 236.7023f), new(183.8139f, -224.35359f), new(-237.71631f, 378.8595f),
-new(263.2521f, -352.2129f), new(367.7806f, -347.5098f), new(-239.57889f, 239.6805f), new(317.5009f, -365.3414f), new(-369.2618f, 240.68651f),
-new(-302.0091f, 349.2572f), new(426.8958f, -312.1402f), new(231.4109f, -233.4859f), new(-187.6817f, 364.0612f), new(369.32068f, -300.4194f),
-new(-348.1725f, 247.4123f), new(316.7589f, -369.6224f), new(429.9258f, -307.75922f), new(370.9099f, -199.22249f), new(-414.49332f, 357.966f),
-new(321.2969f, -365.4024f), new(-303.8359f, 309.2777f), new(-321.0054f, 416.7409f), new(-364.57727f, 311.3436f), new(374.9819f, -184.33029f),
-new(300.26062f, -240.9669f), new(-180.36769f, 250.8799f), new(-224.49379f, 367.59f), new(-236.42531f, 376.5625f), new(-221.3387f, 196.71269f),
-new(299.2687f, -357.4961f), new(-183.2509f, 378.1208f), new(-280.5546f, 193.1604f), new(-224.57779f, 364.599f), new(182.6299f, -229.0456f),
-new(-290.9079f, 303.6687f), new(-375.4777f, 287.7681f), new(392.3516f, -404.0357f), new(199.0224f, -345.5398f), new(307.7029f, -347.42178f),
-new(-371.3834f, 418.5968f), new(186.021f, -300.0371f), new(-222.4748f, 416.6138f), new(-364.5193f, 313.44162f), new(246.988f, -399.6136f),
-new(-351.54977f, 366.1384f), new(-184.9567f, 306.3543f), new(-220.9728f, 245.93921f), new(-362.1148f, 289.4159f), new(-302.4781f, 364.4932f),
-new(-177.49669f, 248.8219f), new(-244.65579f, 258.47098f), new(388.6803f, -185.34709f), new(-281.3686f, 191.88539f), new(321.62042f, -181.107f),
-new(197.36241f, -343.2158f), new(-365.8544f, 362.4971f), new(-226.99489f, 376.5517f), new(-321.08542f, 412.7259f), new(-404.8643f, 242.20631f),
-new(241.705f, -404.97058f)
+ new(-276.5876f, 196.0524f), new(-402.0813f, 238.4703f), new(-179.7739f, 379.5818f), new(-240.2286f, 367.5364f), new(323.2474f, -177.099f),
+ new(-369.1658f, 244.16551f), new(-219.5878f, 414.57678f), new(367.7806f, -347.5098f), new(250.24539f, -350.0037f), new(305.5426f, -235.6109f),
+ new(-381.23062f, 182.6033f), new(-375.8267f, 287.19608f), new(-321.0054f, 416.7409f), new(-296.95172f, 238.65799f), new(-418.5883f, 305.05652f),
+ new(-177.0977f, 317.6513f), new(-364.08148f, 350.9287f), new(-228.6859f, 317.5297f), new(-214.9447f, 199.4007f), new(-349.7475f, 351.51752f),
+ new(241.9967f, -285.195f), new(301.64542f, -297.0861f), new(-220.2638f, 247.81621f), new(368.4396f, -348.48178f), new(-365.8008f, 243.7225f),
+ new(-362.47928f, 313.1716f), new(-399.2053f, 246.5083f), new(-242.7146f, 365.72842f), new(-292.6491f, 361.82822f), new(397.7746f, -399.6557f),
+ new(289.3202f, -413.01282f), new(367.9966f, -345.1768f), new(-348.59952f, 354.76352f), new(-177.49669f, 248.8219f), new(369.1726f, -344.0818f),
+ new(-173.2532f, 364.2295f), new(-224.49379f, 367.59f), new(-221.41069f, 193.0987f), new(-380.8783f, 302.6345f), new(183.8139f, -224.35359f),
+ new(-180.2807f, 309.10532f), new(-293.41672f, 247.91699f), new(-350.5128f, 363.8914f), new(299.79742f, -307.2701f), new(392.5123f, -185.8541f),
+ new(375.92368f, -293.7234f), new(-303.8359f, 309.2777f), new(-404.88928f, 244.1213f), new(425.3768f, -355.4909f), new(373.0866f, -251.8124f),
+ new(241.2047f, -178.5282f), new(295.9056f, -236.0919f), new(-364.6134f, 359.94012f), new(-375.4777f, 287.7681f), new(259.95688f, -334.69168f),
+ new(245.5944f, -339.5477f), new(-362.1148f, 289.4159f), new(370.3707f, -294.9174f), new(374.3089f, -198.0055f), new(305.1087f, -355.9471f),
+ new(241.66501f, -404.1146f), new(-226.5139f, 374.2437f), new(-174.6207f, 256.4829f), new(-351.5738f, 364.8914f), new(-347.3438f, 236.2593f),
+ new(306.53592f, -352.6148f), new(-371.3834f, 418.5968f), new(-302.00992f, 307.3517f), new(299.2687f, -357.4961f), new(-349.7285f, 243.2063f),
+ new(296.4772f, -410.4588f), new(-224.0849f, 376.1697f), new(-281.2356f, 196.6664f), new(357.1509f, -255.69492f), new(188.5729f, -223.01959f),
+ new(317.9259f, -364.4284f), new(424.1023f, -248.4004f), new(-295.7199f, 291.3557f), new(247.1994f, -339.1117f), new(327.1954f, -176.242f),
+ new(303.5844f, -296.0821f), new(291.5162f, -411.93582f), new(-226.99489f, 376.5517f), new(-295.4191f, 349.1402f), new(191.535f, -295.7391f),
+ new(-222.1557f, 257.8017f), new(-310.1859f, 294.7597f), new(240.7537f, -289.924f), new(187.819f, -296.7651f), new(-238.7249f, 314.4837f),
+ new(-369.13138f, 408.7348f), new(431.5178f, -307.45322f), new(-365.01782f, 289.4269f), new(-317.3244f, 410.3939f), new(-226.5768f, 415.9318f),
+ new(373.3357f, -299.6824f), new(392.04962f, -401.7067f), new(243.4477f, -290.28302f), new(-300.7459f, 291.80872f), new(-364.2273f, 311.9096f),
+ new(392.4926f, -405.0117f), new(263.8631f, -351.8789f), new(364.6615f, -245.5054f), new(265.46408f, -351.42288f), new(322.1864f, -178.036f),
+ new(258.08588f, -335.2167f), new(241.26201f, -401.66058f), new(307.45468f, -356.7891f), new(-368.6988f, 241.65251f), new(427.7098f, -308.28122f),
+ new(307.7029f, -347.42178f), new(-235.0799f, 314.8427f), new(393.2066f, -400.5997f), new(-348.1725f, 247.4123f), new(426.5078f, -309.2452f),
+ new(378.52048f, -240.0451f), new(321.2969f, -365.4024f), new(198.54541f, -340.7218f), new(-287.3915f, 190.31711f), new(198.4264f, -342.9558f),
+ new(-299.8127f, 245.236f), new(182.1309f, -225.3216f), new(429.82828f, -246.2924f), new(388.6803f, -185.34709f), new(248.1622f, -230.8479f),
+ new(389.2533f, -188.2421f), new(-379.9523f, 305.1645f), new(426.9578f, -354.1079f), new(-290.9079f, 303.6687f), new(-183.49269f, 314.9653f),
+ new(302.1444f, -300.8131f), new(-365.10748f, 353.1047f), new(424.5463f, -251.6494f), new(-221.6848f, 247.2182f), new(-184.3947f, 366.6792f),
+ new(-224.0158f, 365.288f), new(-363.2774f, 363.57812f), new(299.81763f, -237.6609f), new(-302.0091f, 349.2572f), new(294.75043f, -298.1641f),
+ new(303.3867f, -363.8321f), new(-221.5838f, 367.208f), new(-238.9009f, 241.5375f), new(-364.57727f, 311.3436f), new(378.2439f, -181.9453f),
+ new(-236.42531f, 376.5625f), new(425.4943f, -247.2514f), new(-424.27228f, 302.6705f), new(432.53378f, -352.9289f), new(368.1916f, -347.8038f),
+ new(231.0019f, -233.7089f), new(360.87653f, -244.33841f), new(246.18669f, -177.07019f), new(-365.1305f, 351.9997f), new(-367.67938f, 410.6508f),
+ new(300.04062f, -240.2799f), new(298.8846f, -244.4339f), new(298.5664f, -296.4341f), new(-181.5139f, 374.92178f), new(-351.54977f, 366.1384f),
+ new(377.7846f, -253.2614f), new(246.988f, -399.6136f), new(372.3996f, -252.7824f), new(373.9225f, -238.9921f), new(311.0739f, -348.39578f),
+ new(-216.7278f, 422.2168f), new(249.3412f, -243.1333f), new(-237.90189f, 319.4187f), new(248.9232f, -243.34929f), new(240.2547f, -286.199f),
+ new(-364.15482f, 289.6859f), new(371.6499f, -198.55849f), new(-375.4836f, 188.2063f), new(-378.4486f, 180.15831f), new(-313.9014f, 419.72888f),
+ new(-183.2509f, 378.1208f), new(-244.65579f, 258.47098f), new(241.705f, -404.97058f), new(186.021f, -300.0371f), new(-231.84389f, 309.1347f),
+ new(-351.1685f, 244.4913f), new(186.525f, -297.5291f), new(232.4339f, -233.19789f), new(-303.7987f, 237.43199f), new(-421.4083f, 297.08252f),
+ new(316.7589f, -369.6224f), new(-220.9728f, 245.93921f), new(197.36241f, -343.2158f), new(-184.9567f, 306.3543f), new(239.5847f, -183.7672f),
+ new(-409.4643f, 362.86902f), new(235.3032f, -247.3529f), new(202.7644f, -338.7428f), new(-321.08542f, 412.7259f), new(-183.7797f, 311.1543f),
+ new(-308.2731f, 356.2482f), new(-414.8303f, 360.058f), new(-235.15189f, 311.2277f), new(392.3516f, -404.0357f), new(369.32068f, -300.4194f),
+ new(289.87518f, -417.1558f), new(317.5009f, -365.3414f), new(301.0126f, -236.5779f), new(186.913f, -300.4261f), new(-362.9595f, 354.0057f),
+ new(-222.4118f, 419.8278f), new(300.26062f, -240.9669f), new(308.0874f, -294.7861f), new(-281.3686f, 191.88539f), new(374.4119f, -181.4383f),
+ new(-218.0427f, 190.9747f), new(-373.7287f, 289.02408f), new(-221.4747f, 259.6637f), new(-414.49332f, 357.966f), new(-404.9523f, 240.9053f),
+ new(307.26392f, -348.33978f), new(-363.8658f, 288.1609f), new(-365.8544f, 362.4971f), new(-221.3387f, 196.71269f), new(-363.56738f, 421.8748f),
+ new(-289.2905f, 194.6351f), new(-364.5193f, 313.44162f), new(250.3552f, -242.83829f), new(-292.21692f, 306.0357f), new(242.707f, -400.75858f),
+ new(302.0394f, -299.8371f), new(231.4109f, -233.4859f), new(-302.99292f, 292.1077f), new(199.0224f, -345.5398f), new(-180.36769f, 250.8799f),
+ new(299.8616f, -241.0159f), new(-381.7493f, 304.4105f), new(-424.3353f, 299.45352f), new(246.6967f, -283.897f), new(-235.1533f, 379.9365f),
+ new(-375.7687f, 289.2941f), new(-302.4781f, 364.4932f), new(302.6657f, -355.9781f), new(248.6534f, -350.4357f), new(-404.8643f, 242.20631f),
+ new(-350.2448f, 234.1913f), new(-245.36879f, 256.589f), new(-180.3047f, 254.0939f), new(-414.4383f, 360.781f), new(257.3819f, -335.6107f),
+ new(370.9099f, -199.22249f), new(368.7667f, -296.2844f), new(236.3302f, -247.0689f), new(-371.4694f, 414.1708f), new(357.8489f, -254.86292f),
+ new(-350.62152f, 353.91553f), new(426.8958f, -312.1402f), new(182.6299f, -229.0456f), new(-299.8817f, 241.614f), new(-240.3219f, 240.9395f),
+ new(-235.08289f, 305.0007f), new(-301.0351f, 363.77222f), new(249.83319f, -230.3699f), new(-285.0775f, 196.4021f), new(-411.9483f, 355.87302f),
+ new(375.84747f, -238.8681f), new(-239.57889f, 239.6805f), new(425.9308f, -359.6249f), new(-351.1355f, 246.16829f), new(-369.2618f, 240.68651f),
+ new(-381.76932f, 303.3935f), new(248.07939f, -350.8447f), new(-222.4748f, 416.6138f), new(-280.5546f, 193.1604f), new(373.7216f, -343.1258f),
+ new(-222.8957f, 259.0657f), new(-243.1386f, 367.92142f), new(247.4832f, -231.2089f), new(-237.71631f, 378.8595f), new(322.57343f, -180.929f),
+ new(-169.9342f, 366.7675f), new(-246.0768f, 257.873f), new(-381.1676f, 185.82031f), new(-364.2128f, 287.5879f), new(427.20578f, -361.7999f),
+ new(-350.7088f, 236.7023f), new(234.89821f, -247.5799f), new(263.2521f, -352.2129f), new(239.0297f, -179.62419f), new(361.63388f, -255.99991f),
+ new(-349.3458f, 367.0634f), new(374.9819f, -184.33029f), new(-187.6817f, 364.0612f), new(360.1965f, -245.1624f), new(-224.57779f, 364.599f),
+ new(-319.25043f, 414.4329f), new(180.7599f, -228.1986f), new(-220.3667f, 194.7837f), new(-188.3427f, 367.19818f), new(245.0444f, -339.88168f),
+ new(283.6572f, -408.4468f), new(236.3837f, -173.9802f), new(-289.33652f, 192.2491f), new(248.24039f, -351.9997f), new(231.1129f, -234.5369f),
+ new(257.58188f, -337.0997f), new(235.0092f, -248.4079f), new(322.3734f, -180.33f), new(429.9258f, -307.75922f), new(-302.2217f, 250.22f),
+ new(321.62042f, -181.107f), new(426.69827f, -245.2664f), new(426.6938f, -311.48022f), new(-229.45589f, 314.9827f), new(-221.7928f, 247.4562f),
+ new(-365.88242f, 361.03912f), new(-227.07889f, 373.5607f), new(-350.6445f, 352.7695f), new(-222.9117f, 258.2627f), new(-237.7453f, 377.4105f),
+ new(-184.3687f, 251.8629f), new(240.6287f, -289.038f), new(-424.2743f, 302.5985f), new(-350.8048f, 233.2433f)
]},
{ 597, [
-new(-365.01782f, 289.4269f), new(308.0874f, -294.7861f), new(231.4109f, -233.4859f), new(-224.49379f, 367.59f), new(-350.2448f, 234.1913f),
-new(425.4943f, -247.2514f), new(182.1309f, -225.3216f), new(374.3089f, -198.0055f), new(246.6967f, -283.897f), new(-364.08148f, 350.9287f),
-new(-289.2905f, 194.6351f), new(-365.8008f, 243.7225f), new(239.0297f, -179.62419f), new(317.5009f, -365.3414f), new(-348.59952f, 354.76352f),
-new(-173.9192f, 367.37448f), new(199.0224f, -345.5398f), new(-223.9447f, 201.3717f), new(-381.1676f, 185.82031f), new(374.4119f, -181.4383f),
-new(-245.36879f, 256.589f), new(-350.5128f, 363.8914f), new(-240.3219f, 240.9395f), new(-363.2774f, 363.57812f), new(389.2533f, -188.2421f),
-new(-180.3047f, 254.0939f), new(-179.7739f, 379.5818f), new(243.4477f, -290.28302f), new(-180.2807f, 309.10532f), new(248.1622f, -230.8479f),
-new(-418.5883f, 305.05652f), new(432.53378f, -352.9289f), new(-295.4191f, 349.1402f), new(-367.67938f, 410.6508f), new(305.5426f, -235.6109f),
-new(388.5713f, -189.2901f), new(-364.2128f, 287.5879f), new(-296.95172f, 238.65799f), new(298.8846f, -244.4339f), new(372.3996f, -252.7824f),
-new(202.7644f, -338.7428f), new(-244.65579f, 258.47098f), new(-246.0768f, 257.873f), new(368.7667f, -296.2844f), new(-362.1148f, 289.4159f),
-new(307.7029f, -347.42178f), new(-362.47928f, 313.1716f), new(-369.13138f, 408.7348f), new(-348.1725f, 247.4123f), new(-371.3834f, 418.5968f),
-new(234.89821f, -247.5799f), new(375.92368f, -293.7234f), new(393.2066f, -400.5997f), new(-184.3947f, 366.6792f), new(-414.49332f, 357.966f),
-new(378.2439f, -181.9453f), new(241.2047f, -178.5282f), new(378.52048f, -240.0451f), new(-313.9014f, 419.72888f), new(242.707f, -400.75858f),
-new(-364.2273f, 311.9096f), new(-220.9728f, 245.93921f), new(257.3819f, -335.6107f), new(-421.4083f, 297.08252f), new(299.81763f, -237.6609f),
-new(-228.6859f, 317.5297f), new(-302.99292f, 292.1077f), new(245.2114f, -341.1277f), new(-222.4748f, 416.6138f), new(-237.90189f, 319.4187f),
-new(426.9578f, -354.1079f), new(306.53592f, -352.6148f), new(-375.4777f, 287.7681f), new(301.64542f, -297.0861f), new(424.1023f, -248.4004f),
-new(299.2687f, -357.4961f), new(259.95688f, -334.69168f), new(-292.21692f, 306.0357f), new(296.4772f, -410.4588f), new(-188.3427f, 367.19818f),
-new(241.9967f, -285.195f), new(-379.9523f, 305.1645f), new(-375.4836f, 188.2063f), new(186.913f, -300.4261f), new(-349.7475f, 351.51752f),
-new(-177.0977f, 317.6513f), new(-321.08542f, 412.7259f), new(361.63388f, -255.99991f), new(301.0126f, -236.5779f), new(317.9259f, -364.4284f),
-new(426.5078f, -309.2452f), new(307.45468f, -356.7891f), new(-375.7687f, 289.2941f), new(-301.0351f, 363.77222f), new(322.1864f, -178.036f),
-new(364.6615f, -245.5054f), new(427.20578f, -361.7999f), new(-424.27228f, 302.6705f), new(-380.8783f, 302.6345f), new(-302.0091f, 349.2572f),
-new(-222.1557f, 257.8017f), new(360.87653f, -244.33841f), new(-303.7987f, 237.43199f), new(305.1087f, -355.9471f), new(-299.8127f, 245.236f),
-new(392.04962f, -401.7067f), new(-404.88928f, 244.1213f), new(-347.3438f, 236.2593f), new(-280.5546f, 193.1604f), new(-402.0813f, 238.4703f),
-new(-350.8048f, 233.2433f), new(-399.2053f, 246.5083f), new(249.3412f, -243.1333f), new(-411.9483f, 355.87302f), new(-404.8643f, 242.20631f),
-new(246.988f, -399.6136f), new(-240.2286f, 367.5364f), new(-409.4643f, 362.86902f), new(425.3768f, -355.4909f), new(303.5844f, -296.0821f),
-new(-378.9486f, 186.1643f), new(426.8958f, -312.1402f), new(-308.2731f, 356.2482f), new(-183.49269f, 314.9653f), new(241.66501f, -404.1146f),
-new(240.2547f, -286.199f), new(-221.4747f, 259.6637f), new(377.7846f, -253.2614f), new(-287.3915f, 190.31711f), new(397.7746f, -399.6557f),
-new(-351.1355f, 246.16829f), new(-238.7249f, 314.4837f), new(321.62042f, -181.107f), new(-368.6988f, 241.65251f), new(-174.6207f, 256.4829f),
-new(-414.4383f, 360.781f), new(187.819f, -296.7651f), new(236.3302f, -247.0689f), new(258.08588f, -335.2167f), new(-310.1859f, 294.7597f),
-new(-242.7146f, 365.72842f), new(198.54541f, -340.7218f), new(245.0444f, -339.88168f), new(-317.3244f, 410.3939f), new(359.41553f, -250.4114f),
-new(-295.7199f, 291.3557f), new(302.6657f, -355.9781f), new(-226.5139f, 374.2437f), new(265.46408f, -351.42288f), new(327.1954f, -176.242f),
-new(-243.1386f, 367.92142f), new(300.04062f, -240.2799f), new(373.0866f, -251.8124f), new(370.3707f, -294.9174f), new(-221.3387f, 196.71269f),
-new(-363.56738f, 421.8748f), new(197.36241f, -343.2158f), new(-183.7797f, 311.1543f), new(245.5944f, -339.5477f), new(289.3202f, -413.01282f),
-new(431.5178f, -307.45322f), new(-363.8658f, 288.1609f), new(180.7599f, -228.1986f), new(263.2521f, -352.2129f), new(299.8616f, -241.0159f),
-new(427.7098f, -308.28122f), new(-351.54977f, 366.1384f), new(323.2474f, -177.099f), new(-236.42531f, 376.5625f), new(-285.0775f, 196.4021f),
-new(-350.6445f, 352.7695f), new(-281.2356f, 196.6664f), new(373.7216f, -343.1258f), new(-237.71631f, 378.8595f), new(375.84747f, -238.8681f),
-new(248.6534f, -350.4357f), new(-235.0799f, 314.8427f), new(191.535f, -295.7391f), new(248.9232f, -243.34929f), new(291.5162f, -411.93582f),
-new(246.18669f, -177.07019f), new(249.83319f, -230.3699f), new(-218.0427f, 190.9747f), new(-321.0054f, 416.7409f), new(-221.70079f, 246.4152f),
-new(247.4832f, -231.2089f), new(231.0019f, -233.7089f), new(-349.3458f, 367.0634f), new(235.3032f, -247.3529f), new(-381.76932f, 303.3935f),
-new(-224.0158f, 365.288f), new(367.9966f, -345.1768f), new(-290.9079f, 303.6687f), new(307.26392f, -348.33978f), new(-369.1658f, 244.16551f),
-new(357.8489f, -254.86292f), new(-378.4486f, 180.15831f), new(-235.15189f, 311.2277f), new(294.75043f, -298.1641f), new(241.26201f, -401.66058f),
-new(-362.9595f, 354.0057f), new(302.0394f, -299.8371f), new(311.0739f, -348.39578f), new(-173.2532f, 364.2295f), new(299.79742f, -307.2701f),
-new(388.6803f, -185.34709f), new(-364.15482f, 289.6859f), new(-235.1533f, 379.9365f), new(-365.8544f, 362.4971f), new(-349.7285f, 243.2063f),
-new(263.8631f, -351.8789f), new(321.2969f, -365.4024f), new(392.4926f, -405.0117f), new(-222.4368f, 410.6938f), new(369.32068f, -300.4194f),
-new(373.3357f, -299.6824f), new(-214.9447f, 199.4007f), new(-293.41672f, 247.91699f), new(-365.10748f, 353.1047f), new(-216.7278f, 422.2168f),
-new(-302.00992f, 307.3517f), new(-292.6491f, 361.82822f), new(316.1899f, -369.01343f), new(-414.8303f, 360.058f), new(-226.5768f, 415.9318f),
-new(429.82828f, -246.2924f), new(188.5729f, -223.01959f), new(247.1994f, -339.1117f), new(-221.5838f, 367.208f), new(-364.57727f, 311.3436f),
-new(232.4339f, -233.19789f), new(370.9099f, -199.22249f), new(250.3552f, -242.83829f), new(-381.23062f, 182.6033f), new(-303.8359f, 309.2777f),
-new(186.525f, -297.5291f), new(-231.84389f, 309.1347f), new(-238.9009f, 241.5375f), new(-180.36769f, 250.8799f), new(-300.7459f, 291.80872f),
-new(-371.4694f, 414.1708f), new(-364.5193f, 313.44162f), new(-219.5878f, 414.57678f), new(322.57343f, -180.929f), new(241.705f, -404.97058f),
-new(-302.4781f, 364.4932f), new(302.1444f, -300.8131f), new(248.24039f, -351.9997f), new(248.07939f, -350.8447f), new(-222.8957f, 259.0657f),
-new(183.8139f, -224.35359f), new(425.9308f, -359.6249f), new(-181.5139f, 374.92178f), new(-184.9567f, 306.3543f), new(-183.2509f, 378.1208f),
-new(-351.1685f, 244.4913f), new(300.26062f, -240.9669f), new(371.6499f, -198.55849f), new(-375.8267f, 287.19608f), new(283.6572f, -408.4468f),
-new(-221.6848f, 247.2182f), new(-226.99489f, 376.5517f), new(198.4264f, -342.9558f), new(-222.4118f, 419.8278f), new(-373.7287f, 289.02408f),
-new(239.5847f, -183.7672f), new(-220.2638f, 247.81621f), new(360.1965f, -245.1624f), new(-276.5876f, 196.0524f), new(-169.9342f, 366.7675f),
-new(-380.3873f, 303.80652f), new(-187.6817f, 364.0612f), new(-424.3353f, 299.45352f), new(392.5123f, -185.8541f), new(367.7806f, -347.5098f),
-new(-381.7493f, 304.4105f), new(371.1729f, -201.1855f), new(374.9819f, -184.33029f), new(250.24539f, -350.0037f), new(-350.7088f, 236.7023f),
-new(-423.8943f, 300.1015f), new(369.1726f, -344.0818f), new(322.3734f, -180.33f), new(-235.08289f, 305.0007f), new(-364.6134f, 359.94012f),
-new(-424.2743f, 302.5985f), new(392.3516f, -404.0357f), new(-224.0849f, 376.1697f), new(-319.25043f, 414.4329f), new(316.7589f, -369.6224f),
-new(392.2536f, -404.3307f), new(-229.45589f, 314.9827f), new(240.7537f, -289.924f), new(373.9225f, -238.9921f), new(263.4231f, -353.49188f),
-new(186.021f, -300.0371f), new(-221.41069f, 193.0987f), new(303.3867f, -363.8321f), new(-299.8817f, 241.614f), new(295.9056f, -236.0919f),
-new(374.6425f, -246.9951f), new(-365.36627f, 312.45462f), new(182.6299f, -229.0456f), new(368.4396f, -348.48178f), new(-177.49669f, 248.8219f),
-new(357.1509f, -255.69492f), new(369.0377f, -299.5174f), new(-404.9523f, 240.9053f), new(289.87518f, -417.1558f), new(424.5463f, -251.6494f),
-new(-350.62152f, 353.91553f), new(-239.57889f, 239.6805f)
+ new(-365.01782f, 289.4269f), new(308.0874f, -294.7861f), new(231.4109f, -233.4859f), new(-224.49379f, 367.59f), new(-350.2448f, 234.1913f),
+ new(425.4943f, -247.2514f), new(182.1309f, -225.3216f), new(374.3089f, -198.0055f), new(246.6967f, -283.897f), new(-364.08148f, 350.9287f),
+ new(-289.2905f, 194.6351f), new(-365.8008f, 243.7225f), new(239.0297f, -179.62419f), new(317.5009f, -365.3414f), new(-348.59952f, 354.76352f),
+ new(-173.9192f, 367.37448f), new(199.0224f, -345.5398f), new(-223.9447f, 201.3717f), new(-381.1676f, 185.82031f), new(374.4119f, -181.4383f),
+ new(-245.36879f, 256.589f), new(-350.5128f, 363.8914f), new(-240.3219f, 240.9395f), new(-363.2774f, 363.57812f), new(389.2533f, -188.2421f),
+ new(-180.3047f, 254.0939f), new(-179.7739f, 379.5818f), new(243.4477f, -290.28302f), new(-180.2807f, 309.10532f), new(248.1622f, -230.8479f),
+ new(-418.5883f, 305.05652f), new(432.53378f, -352.9289f), new(-295.4191f, 349.1402f), new(-367.67938f, 410.6508f), new(305.5426f, -235.6109f),
+ new(388.5713f, -189.2901f), new(-364.2128f, 287.5879f), new(-296.95172f, 238.65799f), new(298.8846f, -244.4339f), new(372.3996f, -252.7824f),
+ new(202.7644f, -338.7428f), new(-244.65579f, 258.47098f), new(-246.0768f, 257.873f), new(368.7667f, -296.2844f), new(-362.1148f, 289.4159f),
+ new(307.7029f, -347.42178f), new(-362.47928f, 313.1716f), new(-369.13138f, 408.7348f), new(-348.1725f, 247.4123f), new(-371.3834f, 418.5968f),
+ new(234.89821f, -247.5799f), new(375.92368f, -293.7234f), new(393.2066f, -400.5997f), new(-184.3947f, 366.6792f), new(-414.49332f, 357.966f),
+ new(378.2439f, -181.9453f), new(241.2047f, -178.5282f), new(378.52048f, -240.0451f), new(-313.9014f, 419.72888f), new(242.707f, -400.75858f),
+ new(-364.2273f, 311.9096f), new(-220.9728f, 245.93921f), new(257.3819f, -335.6107f), new(-421.4083f, 297.08252f), new(299.81763f, -237.6609f),
+ new(-228.6859f, 317.5297f), new(-302.99292f, 292.1077f), new(245.2114f, -341.1277f), new(-222.4748f, 416.6138f), new(-237.90189f, 319.4187f),
+ new(426.9578f, -354.1079f), new(306.53592f, -352.6148f), new(-375.4777f, 287.7681f), new(301.64542f, -297.0861f), new(424.1023f, -248.4004f),
+ new(299.2687f, -357.4961f), new(259.95688f, -334.69168f), new(-292.21692f, 306.0357f), new(296.4772f, -410.4588f), new(-188.3427f, 367.19818f),
+ new(241.9967f, -285.195f), new(-379.9523f, 305.1645f), new(-375.4836f, 188.2063f), new(186.913f, -300.4261f), new(-349.7475f, 351.51752f),
+ new(-177.0977f, 317.6513f), new(-321.08542f, 412.7259f), new(361.63388f, -255.99991f), new(301.0126f, -236.5779f), new(317.9259f, -364.4284f),
+ new(426.5078f, -309.2452f), new(307.45468f, -356.7891f), new(-375.7687f, 289.2941f), new(-301.0351f, 363.77222f), new(322.1864f, -178.036f),
+ new(364.6615f, -245.5054f), new(427.20578f, -361.7999f), new(-424.27228f, 302.6705f), new(-380.8783f, 302.6345f), new(-302.0091f, 349.2572f),
+ new(-222.1557f, 257.8017f), new(360.87653f, -244.33841f), new(-303.7987f, 237.43199f), new(305.1087f, -355.9471f), new(-299.8127f, 245.236f),
+ new(392.04962f, -401.7067f), new(-404.88928f, 244.1213f), new(-347.3438f, 236.2593f), new(-280.5546f, 193.1604f), new(-402.0813f, 238.4703f),
+ new(-350.8048f, 233.2433f), new(-399.2053f, 246.5083f), new(249.3412f, -243.1333f), new(-411.9483f, 355.87302f), new(246.988f, -399.6136f),
+ new(-240.2286f, 367.5364f), new(-409.4643f, 362.86902f), new(425.3768f, -355.4909f), new(303.5844f, -296.0821f), new(-378.9486f, 186.1643f),
+ new(426.8958f, -312.1402f), new(-308.2731f, 356.2482f), new(-183.49269f, 314.9653f), new(241.66501f, -404.1146f), new(240.2547f, -286.199f),
+ new(-221.4747f, 259.6637f), new(377.7846f, -253.2614f), new(-287.3915f, 190.31711f), new(397.7746f, -399.6557f), new(-351.1355f, 246.16829f),
+ new(-238.7249f, 314.4837f), new(321.62042f, -181.107f), new(-368.6988f, 241.65251f), new(-174.6207f, 256.4829f), new(-414.4383f, 360.781f),
+ new(187.819f, -296.7651f), new(236.3302f, -247.0689f), new(258.08588f, -335.2167f), new(-310.1859f, 294.7597f), new(-242.7146f, 365.72842f),
+ new(198.54541f, -340.7218f), new(245.0444f, -339.88168f), new(-317.3244f, 410.3939f), new(359.41553f, -250.4114f), new(-295.7199f, 291.3557f),
+ new(302.6657f, -355.9781f), new(-226.5139f, 374.2437f), new(265.46408f, -351.42288f), new(327.1954f, -176.242f), new(-243.1386f, 367.92142f),
+ new(300.04062f, -240.2799f), new(373.0866f, -251.8124f), new(370.3707f, -294.9174f), new(-221.3387f, 196.71269f), new(-363.56738f, 421.8748f),
+ new(-183.7797f, 311.1543f), new(245.5944f, -339.5477f), new(289.3202f, -413.01282f), new(431.5178f, -307.45322f), new(-363.8658f, 288.1609f),
+ new(180.7599f, -228.1986f), new(263.2521f, -352.2129f), new(299.8616f, -241.0159f), new(427.7098f, -308.28122f), new(-351.54977f, 366.1384f),
+ new(323.2474f, -177.099f), new(-236.42531f, 376.5625f), new(-285.0775f, 196.4021f), new(-281.2356f, 196.6664f), new(373.7216f, -343.1258f),
+ new(-237.71631f, 378.8595f), new(375.84747f, -238.8681f), new(248.6534f, -350.4357f), new(-235.0799f, 314.8427f), new(191.535f, -295.7391f),
+ new(248.9232f, -243.34929f), new(291.5162f, -411.93582f), new(246.18669f, -177.07019f), new(249.83319f, -230.3699f), new(-218.0427f, 190.9747f),
+ new(-321.0054f, 416.7409f), new(247.4832f, -231.2089f), new(231.0019f, -233.7089f), new(-349.3458f, 367.0634f), new(235.3032f, -247.3529f),
+ new(-381.76932f, 303.3935f), new(-224.0158f, 365.288f), new(367.9966f, -345.1768f), new(307.26392f, -348.33978f), new(-369.1658f, 244.16551f),
+ new(357.8489f, -254.86292f), new(-378.4486f, 180.15831f), new(-235.15189f, 311.2277f), new(294.75043f, -298.1641f), new(241.26201f, -401.66058f),
+ new(-362.9595f, 354.0057f), new(302.0394f, -299.8371f), new(311.0739f, -348.39578f), new(-173.2532f, 364.2295f), new(299.79742f, -307.2701f),
+ new(388.6803f, -185.34709f), new(-364.15482f, 289.6859f), new(-235.1533f, 379.9365f), new(-365.8544f, 362.4971f), new(-349.7285f, 243.2063f),
+ new(263.8631f, -351.8789f), new(321.2969f, -365.4024f), new(392.4926f, -405.0117f), new(-222.4368f, 410.6938f), new(369.32068f, -300.4194f),
+ new(373.3357f, -299.6824f), new(-214.9447f, 199.4007f), new(-293.41672f, 247.91699f), new(-365.10748f, 353.1047f), new(-216.7278f, 422.2168f),
+ new(-302.00992f, 307.3517f), new(-292.6491f, 361.82822f), new(316.1899f, -369.01343f), new(-226.5768f, 415.9318f), new(429.82828f, -246.2924f),
+ new(188.5729f, -223.01959f), new(247.1994f, -339.1117f), new(-221.5838f, 367.208f), new(-364.57727f, 311.3436f), new(232.4339f, -233.19789f),
+ new(370.9099f, -199.22249f), new(250.3552f, -242.83829f), new(-381.23062f, 182.6033f), new(-303.8359f, 309.2777f), new(186.525f, -297.5291f),
+ new(-231.84389f, 309.1347f), new(-238.9009f, 241.5375f), new(-180.36769f, 250.8799f), new(-300.7459f, 291.80872f), new(-371.4694f, 414.1708f),
+ new(-364.5193f, 313.44162f), new(-219.5878f, 414.57678f), new(322.57343f, -180.929f), new(241.705f, -404.97058f), new(-302.4781f, 364.4932f),
+ new(302.1444f, -300.8131f), new(248.07939f, -350.8447f), new(-222.8957f, 259.0657f), new(183.8139f, -224.35359f), new(425.9308f, -359.6249f),
+ new(-181.5139f, 374.92178f), new(-184.9567f, 306.3543f), new(-183.2509f, 378.1208f), new(-351.1685f, 244.4913f), new(300.26062f, -240.9669f),
+ new(371.6499f, -198.55849f), new(-375.8267f, 287.19608f), new(283.6572f, -408.4468f), new(-221.6848f, 247.2182f), new(-226.99489f, 376.5517f),
+ new(198.4264f, -342.9558f), new(-222.4118f, 419.8278f), new(-373.7287f, 289.02408f), new(239.5847f, -183.7672f), new(-220.2638f, 247.81621f),
+ new(360.1965f, -245.1624f), new(-276.5876f, 196.0524f), new(-169.9342f, 366.7675f), new(-380.3873f, 303.80652f), new(-187.6817f, 364.0612f),
+ new(-424.3353f, 299.45352f), new(392.5123f, -185.8541f), new(367.7806f, -347.5098f), new(-381.7493f, 304.4105f), new(374.9819f, -184.33029f),
+ new(250.24539f, -350.0037f), new(-350.7088f, 236.7023f), new(-423.8943f, 300.1015f), new(369.1726f, -344.0818f), new(322.3734f, -180.33f),
+ new(-235.08289f, 305.0007f), new(-364.6134f, 359.94012f), new(-424.2743f, 302.5985f), new(392.3516f, -404.0357f), new(-224.0849f, 376.1697f),
+ new(316.7589f, -369.6224f), new(240.7537f, -289.924f), new(-221.41069f, 193.0987f), new(303.3867f, -363.8321f), new(-299.8817f, 241.614f),
+ new(295.9056f, -236.0919f), new(374.6425f, -246.9951f), new(-365.36627f, 312.45462f), new(182.6299f, -229.0456f), new(368.4396f, -348.48178f),
+ new(-177.49669f, 248.8219f), new(357.1509f, -255.69492f), new(-404.9523f, 240.9053f), new(289.87518f, -417.1558f), new(424.5463f, -251.6494f),
+ new(-350.62152f, 353.91553f), new(-239.57889f, 239.6805f), new(-350.6445f, 352.7695f), new(391.1776f, -408.2847f), new(257.58188f, -337.0997f),
+ new(-404.8643f, 242.20631f), new(197.36241f, -343.2158f), new(249.0342f, -244.17729f), new(-369.2618f, 240.68651f), new(298.5664f, -296.4341f),
+ new(-221.70079f, 246.4152f), new(-290.9079f, 303.6687f), new(-414.8303f, 360.058f), new(-289.33652f, 192.2491f), new(-186.6247f, 319.4493f),
+ new(-184.3687f, 251.8629f), new(248.24039f, -351.9997f), new(-172.2382f, 363.1885f), new(371.1729f, -201.1855f), new(368.1916f, -347.8038f),
+ new(-319.25043f, 414.4329f), new(392.2536f, -404.3307f), new(-229.45589f, 314.9827f), new(373.9225f, -238.9921f), new(263.4231f, -353.49188f),
+ new(186.021f, -300.0371f), new(369.0377f, -299.5174f), new(371.2736f, -259.35138f), new(-302.2217f, 250.22f), new(305.56192f, -351.1378f),
+ new(-299.8561f, 348.8532f), new(-179.7739f, 379.5818f), new(-220.3667f, 194.7837f), new(426.69827f, -245.2664f), new(429.9258f, -307.75922f)
+ ]},
+ { 598, [
+ new(-399.2053f, 246.5083f), new(-371.4694f, 414.1708f), new(-363.56738f, 421.8748f), new(368.7667f, -296.2844f), new(243.4477f, -290.28302f),
+ new(372.3996f, -252.7824f), new(-317.3244f, 410.3939f), new(374.9819f, -184.33029f), new(-242.7146f, 365.72842f), new(-411.9483f, 355.87302f),
+ new(-292.6491f, 361.82822f), new(-348.59952f, 354.76352f), new(-221.41069f, 193.0987f), new(-371.3834f, 418.5968f), new(392.4926f, -405.0117f),
+ new(202.7644f, -338.7428f), new(-364.5193f, 313.44162f), new(234.89821f, -247.5799f), new(258.08588f, -335.2167f), new(375.92368f, -293.7234f),
+ new(-238.9009f, 241.5375f), new(426.5078f, -309.2452f), new(-177.0977f, 317.6513f), new(-362.47928f, 313.1716f), new(-302.00992f, 307.3517f),
+ new(302.1444f, -300.8131f), new(296.4772f, -410.4588f), new(247.4832f, -231.2089f), new(300.26062f, -240.9669f), new(-404.9523f, 240.9053f),
+ new(-369.1658f, 244.16551f), new(374.3089f, -198.0055f), new(-350.2448f, 234.1913f), new(-350.62152f, 353.91553f), new(431.5178f, -307.45322f),
+ new(-293.41672f, 247.91699f), new(-367.67938f, 410.6508f), new(182.6299f, -229.0456f), new(378.2439f, -181.9453f), new(-365.8008f, 243.7225f),
+ new(245.5944f, -339.5477f), new(-299.8127f, 245.236f), new(-364.2128f, 287.5879f), new(429.82828f, -246.2924f), new(-321.08542f, 412.7259f),
+ new(-349.7285f, 243.2063f), new(-180.2807f, 309.10532f), new(425.9308f, -359.6249f), new(299.81763f, -237.6609f), new(-246.0768f, 257.873f),
+ new(-402.0813f, 238.4703f), new(-404.8643f, 242.20631f), new(241.2047f, -178.5282f), new(-414.8303f, 360.058f), new(-224.57779f, 364.599f),
+ new(322.1864f, -178.036f), new(242.707f, -400.75858f), new(-276.5876f, 196.0524f), new(-348.1725f, 247.4123f), new(-224.0158f, 365.288f),
+ new(392.3516f, -404.0357f), new(259.95688f, -334.69168f), new(-289.2905f, 194.6351f), new(-224.0849f, 376.1697f), new(307.45468f, -356.7891f),
+ new(397.7746f, -399.6557f), new(316.7589f, -369.6224f), new(-235.15189f, 311.2277f), new(-240.2286f, 367.5364f), new(-409.4643f, 362.86902f),
+ new(231.4109f, -233.4859f), new(-183.7797f, 311.1543f), new(-285.0775f, 196.4021f), new(-235.1533f, 379.9365f), new(327.1954f, -176.242f),
+ new(-380.8783f, 302.6345f), new(321.2969f, -365.4024f), new(197.36241f, -343.2158f), new(368.4396f, -348.48178f), new(-281.3686f, 191.88539f),
+ new(373.7216f, -343.1258f), new(388.6803f, -185.34709f), new(374.4119f, -181.4383f), new(-381.1676f, 185.82031f), new(-308.2731f, 356.2482f),
+ new(389.2533f, -188.2421f), new(425.4943f, -247.2514f), new(-313.9014f, 419.72888f), new(317.5009f, -365.3414f), new(367.9966f, -345.1768f),
+ new(187.819f, -296.7651f), new(263.8631f, -351.8789f), new(246.988f, -399.6136f), new(-183.2509f, 378.1208f), new(-221.5838f, 367.208f),
+ new(-302.0091f, 349.2572f), new(199.0224f, -345.5398f), new(-292.21692f, 306.0357f), new(378.52048f, -240.0451f), new(-177.49669f, 248.8219f),
+ new(295.9056f, -236.0919f), new(-378.4486f, 180.15831f), new(305.1087f, -355.9471f), new(370.3707f, -294.9174f), new(-362.1148f, 289.4159f),
+ new(373.3357f, -299.6824f), new(-368.6988f, 241.65251f), new(300.04062f, -240.2799f), new(-364.15482f, 289.6859f), new(-179.7739f, 379.5818f),
+ new(231.0019f, -233.7089f), new(-244.65579f, 258.47098f), new(236.3837f, -173.9802f), new(298.8846f, -244.4339f), new(-364.57727f, 311.3436f),
+ new(367.7806f, -347.5098f), new(241.26201f, -401.66058f), new(-169.9342f, 366.7675f), new(-363.2774f, 363.57812f), new(-349.3458f, 367.0634f),
+ new(-228.6859f, 317.5297f), new(241.705f, -404.97058f), new(426.8958f, -312.1402f), new(-300.7459f, 291.80872f), new(-375.4836f, 188.2063f),
+ new(369.1726f, -344.0818f), new(-216.7278f, 422.2168f), new(-381.23062f, 182.6033f), new(-237.71631f, 378.8595f), new(321.62042f, -181.107f),
+ new(311.0739f, -348.39578f), new(-214.9447f, 199.4007f), new(246.6967f, -283.897f), new(-381.76932f, 303.3935f), new(369.32068f, -300.4194f),
+ new(-222.4118f, 419.8278f), new(-421.4083f, 297.08252f), new(-302.99292f, 292.1077f), new(-321.0054f, 416.7409f), new(239.45569f, -182.7092f),
+ new(249.3412f, -243.1333f), new(-238.7249f, 314.4837f), new(-235.0799f, 314.8427f), new(-379.9523f, 305.1645f), new(-219.5878f, 414.57678f),
+ new(-220.9728f, 245.93921f), new(248.07939f, -350.8447f), new(236.3302f, -247.0689f), new(-414.4383f, 360.781f), new(373.9225f, -238.9921f),
+ new(-310.1859f, 294.7597f), new(-180.3047f, 254.0939f), new(323.2474f, -177.099f), new(301.0126f, -236.5779f), new(-404.88928f, 244.1213f),
+ new(180.7599f, -228.1986f), new(191.535f, -295.7391f), new(-351.5738f, 364.8914f), new(-365.10748f, 353.1047f), new(-418.5883f, 305.05652f),
+ new(308.0874f, -294.7861f), new(249.83319f, -230.3699f), new(364.6615f, -245.5054f), new(426.69827f, -245.2664f), new(235.3032f, -247.3529f),
+ new(-373.7287f, 289.02408f), new(-173.2532f, 364.2295f), new(-242.925f, 322.7468f), new(-174.6207f, 256.4829f), new(-221.4747f, 259.6637f),
+ new(305.5426f, -235.6109f), new(-187.6817f, 364.0612f), new(-218.0427f, 190.9747f), new(-301.0351f, 363.77222f), new(291.5162f, -411.93582f),
+ new(-375.4777f, 287.7681f), new(246.18669f, -177.07019f), new(-237.90189f, 319.4187f), new(-363.8658f, 288.1609f), new(289.3202f, -413.01282f),
+ new(-375.7687f, 289.2941f), new(-222.8957f, 259.0657f), new(-224.49379f, 367.59f), new(-349.7475f, 351.51752f), new(-226.5139f, 374.2437f),
+ new(426.9578f, -354.1079f), new(302.0394f, -299.8371f), new(-183.49269f, 314.9653f), new(371.6499f, -198.55849f), new(-381.7493f, 304.4105f),
+ new(241.9967f, -285.195f), new(240.7537f, -289.924f), new(265.46408f, -351.42288f), new(-184.3687f, 251.8629f), new(299.8616f, -241.0159f),
+ new(424.5463f, -251.6494f), new(424.4208f, -363.2889f), new(-362.9595f, 354.0057f), new(-364.2273f, 311.9096f), new(247.1994f, -339.1117f),
+ new(393.2066f, -400.5997f), new(-222.4748f, 416.6138f), new(-236.42531f, 376.5625f), new(303.3867f, -363.8321f), new(361.63388f, -255.99991f),
+ new(-364.08148f, 350.9287f), new(-222.1557f, 257.8017f), new(307.26392f, -348.33978f), new(-235.08289f, 305.0007f), new(248.1622f, -230.8479f),
+ new(-296.95172f, 238.65799f), new(-350.5128f, 363.8914f), new(-303.7987f, 237.43199f), new(303.5844f, -296.0821f), new(316.1899f, -369.01343f),
+ new(309.975f, -312.5029f), new(377.7846f, -253.2614f), new(-243.1386f, 367.92142f), new(198.4264f, -342.9558f), new(-347.3438f, 236.2593f),
+ new(392.04962f, -401.7067f), new(-295.4191f, 349.1402f), new(360.1965f, -245.1624f), new(198.54541f, -340.7218f), new(-424.3353f, 299.45352f),
+ new(294.75043f, -298.1641f), new(188.5729f, -223.01959f), new(-229.35385f, 241.17198f), new(283.6572f, -408.4468f), new(427.7098f, -308.28122f),
+ new(-180.36769f, 250.8799f), new(357.1509f, -255.69492f), new(239.5847f, -183.7672f), new(360.87653f, -244.33841f), new(-365.8544f, 362.4971f),
+ new(301.64542f, -297.0861f), new(240.2547f, -286.199f), new(307.7029f, -347.42178f), new(248.6534f, -350.4357f), new(302.6657f, -355.9781f),
+ new(373.0866f, -251.8124f), new(-280.5546f, 193.1604f), new(241.66501f, -404.1146f), new(-303.8359f, 309.2777f), new(-231.84389f, 309.1347f),
+ new(250.3552f, -242.83829f), new(232.4339f, -233.19789f), new(429.9258f, -307.75922f), new(323.15918f, -349.80978f), new(375.84747f, -238.8681f),
+ new(186.913f, -300.4261f), new(-351.54977f, 366.1384f), new(290.3419f, -293.3572f), new(-350.7088f, 236.7023f), new(245.0444f, -339.88168f),
+ new(183.8139f, -224.35359f), new(250.24539f, -350.0037f), new(-221.6848f, 247.2182f), new(306.53592f, -352.6148f), new(-245.36879f, 256.589f),
+ new(322.57343f, -180.929f), new(392.5123f, -185.8541f), new(-302.2217f, 250.22f), new(289.87518f, -417.1558f), new(-188.3427f, 367.19818f),
+ new(-281.2356f, 196.6664f), new(-424.27228f, 302.6705f), new(-220.2638f, 247.81621f), new(-221.3387f, 196.71269f), new(257.3819f, -335.6107f),
+ new(-295.7199f, 291.3557f), new(-184.9567f, 306.3543f), new(432.53378f, -352.9289f), new(-229.45589f, 314.9827f), new(263.2521f, -352.2129f),
+ new(-184.3947f, 366.6792f), new(-364.6134f, 359.94012f), new(380.0382f, -288.7975f), new(-351.1355f, 246.16829f), new(-297.57935f, 313.02066f),
+ new(-414.49332f, 357.966f), new(186.525f, -297.5291f), new(370.9099f, -199.22249f), new(425.3768f, -355.4909f), new(-299.8817f, 241.614f),
+ new(299.2687f, -357.4961f), new(299.79742f, -307.2701f), new(-239.57889f, 239.6805f), new(383.3902f, -354.5299f), new(-240.3219f, 240.9395f),
+ new(-287.3915f, 190.31711f), new(317.9259f, -364.4284f), new(424.1023f, -248.4004f), new(182.1309f, -225.3216f), new(-181.5139f, 374.92178f),
+ new(-289.33652f, 192.2491f), new(239.0297f, -179.62419f), new(-378.9486f, 186.1643f), new(300.1206f, -240.1889f), new(-227.07889f, 373.5607f),
+ new(304.3584f, -298.4241f), new(426.6938f, -311.48022f), new(371.2736f, -259.35138f), new(-302.4781f, 364.4932f), new(247.6662f, -232.5679f),
+ new(248.9232f, -243.34929f), new(-369.2618f, 240.68651f), new(-221.70079f, 246.4152f), new(-226.5768f, 415.9318f), new(357.8489f, -254.86292f),
+ new(-290.9079f, 303.6687f), new(-323.9974f, 421.8849f), new(-246.09279f, 257.06998f), new(-319.25043f, 414.4329f), new(298.5664f, -296.4341f),
+ new(-237.7453f, 377.4105f), new(-226.99489f, 376.5517f), new(359.41553f, -250.4114f), new(-365.01782f, 289.4269f), new(-173.9192f, 367.37448f),
+ new(-424.2743f, 302.5985f), new(240.6287f, -289.038f), new(-222.9117f, 258.2627f), new(368.1916f, -347.8038f)
+ ]},
+ { 599, [
+ new(374.7767f, -205.0661f), new(181.47519f, -297.0505f), new(-218.4655f, 213.04521f), new(294.41418f, -416.2078f), new(300.22983f, -357.7019f),
+ new(423.27048f, -253.98221f), new(-359.3564f, 371.0228f), new(-235.8668f, 370.6512f), new(267.8656f, -345.28268f), new(410.1052f, -251.27739f),
+ new(-356.7121f, 305.96228f), new(-283.35397f, 189.3143f), new(-307.58798f, 245.23271f), new(362.2959f, -301.9722f), new(-358.0624f, 371.30582f),
+ new(300.6344f, -302.1348f), new(-324.7075f, 413.4181f), new(385.6363f, -396.28262f), new(-311.3375f, 359.5791f), new(197.1347f, -341.54492f),
+ new(306.6254f, -295.9678f), new(-292.9656f, 312.017f), new(-367.45078f, 359.2392f), new(-233.9487f, 311.9527f), new(-225.7105f, 416.3436f),
+ new(-234.40529f, 244.5275f), new(370.25558f, -336.9458f), new(289.6262f, -404.4686f), new(-369.8815f, 201.2844f), new(-182.2302f, 370.8039f),
+ new(-221.62349f, 420.3986f), new(365.01758f, -339.0528f), new(-396.68478f, 361.24182f), new(-310.5052f, 248.5362f), new(-342.7901f, 360.39178f),
+ new(-236.5828f, 376.38422f), new(-370.3672f, 190.3496f), new(-409.3192f, 299.2515f), new(-397.74008f, 247.0238f), new(-300.6346f, 311.631f),
+ new(315.3874f, -345.7157f), new(-310.7835f, 359.2841f), new(380.7443f, -353.31558f), new(365.06152f, -243.5383f), new(229.5188f, -243.0422f),
+ new(306.0762f, -242.2478f), new(-189.5619f, 258.2653f), new(-235.3837f, 316.26868f), new(363.13287f, -297.3662f), new(-235.6588f, 371.8752f),
+ new(-379.5332f, 184.26259f), new(-308.68948f, 359.8321f), new(374.26514f, -348.58017f), new(298.9032f, -414.4008f), new(241.9199f, -254.6752f),
+ new(243.8154f, -397.8035f), new(298.6345f, -242.4678f), new(-184.4144f, 376.3551f), new(-225.2865f, 419.4386f), new(303.8715f, -240.3588f),
+ new(-297.7853f, 287.0515f), new(415.4112f, -250.8224f), new(240.8224f, -399.0085f), new(182.80771f, -234.238f), new(238.9246f, -229.63591f),
+ new(266.5036f, -346.6327f), new(292.6929f, -252.0078f), new(-405.2447f, 360.17572f), new(-239.8844f, 268.9054f), new(300.4095f, -248.1808f),
+ new(310.7758f, -366.2001f), new(253.9702f, -278.9104f), new(300.8364f, -301.7118f), new(250.85791f, -332.5678f), new(241.7096f, -179.84981f),
+ new(241.7699f, -253.47319f), new(393.31232f, -402.9078f), new(-293.94498f, 182.0833f), new(-357.8531f, 243.6768f), new(256.2609f, -357.39438f),
+ new(307.1302f, -243.55681f), new(266.3536f, -345.4307f), new(-302.4113f, 284.0645f), new(239.6636f, -228.7279f), new(242.8061f, -391.2446f),
+ new(243.2819f, -253.3252f), new(242.9953f, -285.263f), new(-314.4235f, 413.63312f), new(-228.6517f, 202.0308f), new(296.4492f, -403.8856f),
+ new(-185.57791f, 259.3093f), new(-247.5183f, 257.176f), new(-290.6533f, 356.8008f), new(181.2042f, -295.7445f), new(313.1434f, -346.61972f),
+ new(247.32059f, -177.5898f), new(-225.2197f, 200.4788f), new(423.0835f, -252.7542f), new(-360.261f, 346.9286f), new(-293.89722f, 242.9809f),
+ new(-301.18872f, 348.6686f), new(-220.3717f, 202.5018f), new(385.1353f, -392.3116f), new(-177.9058f, 321.21692f), new(-373.0053f, 195.97852f),
+ new(366.19788f, -292.0712f), new(-365.93878f, 359.38422f), new(-310.3793f, 302.247f), new(390.0623f, -391.89062f), new(241.0064f, -400.0275f),
+ new(-415.85168f, 303.2385f), new(191.299f, -299.13992f), new(247.34311f, -390.80258f), new(-228.9527f, 316.8837f), new(378.244f, -196.15779f),
+ new(-178.3174f, 254.9166f), new(240.2518f, -193.08719f), new(-234.6857f, 311.7197f), new(-288.33972f, 197.0644f), new(-368.2444f, 413.5209f),
+ new(-308.99f, 240.6867f), new(-409.8092f, 303.1735f), new(-297.4656f, 310.197f), new(-320.5545f, 407.55112f), new(254.0206f, -239.2693f),
+ new(-291.7246f, 297.3128f), new(417.10492f, -359.4792f), new(193.84799f, -297.54092f), new(-293.5882f, 247.0059f), new(356.9247f, -244.2888f),
+ new(-386.7643f, 247.5676f), new(208.7526f, -345.6746f), new(426.8255f, -251.2492f), new(-190.4949f, 258.8393f), new(298.9885f, -244.2768f),
+ new(311.8972f, -238.82681f), new(-287.2963f, 358.2008f), new(365.1853f, -350.4998f), new(-190.0204f, 318.85278f), new(367.8745f, -241.3213f),
+ new(240.81381f, -197.5942f), new(231.2798f, -295.8318f), new(230.18979f, -242.6052f), new(-292.26797f, 188.8073f), new(-397.40778f, 361.5808f),
+ new(-188.6634f, 318.0758f), new(-230.5407f, 196.1728f), new(-361.4734f, 414.9989f), new(423.7199f, -355.4972f), new(-223.0045f, 212.6132f),
+ new(-321.23248f, 412.9841f), new(-188.6714f, 375.24112f), new(249.80031f, -284.59598f), new(-369.2514f, 414.19492f), new(-302.4703f, 366.22818f),
+ new(319.59018f, -194.4451f), new(382.523f, -192.8978f), new(-223.8438f, 424.1973f), new(-407.6197f, 361.25272f), new(425.6652f, -308.4932f),
+ new(190.73799f, -294.6319f), new(-220.5658f, 426.6573f), new(354.7872f, -251.284f), new(-294.46222f, 247.5039f), new(300.4468f, -356.4229f),
+ new(229.36879f, -241.8402f), new(324.35718f, -189.71411f), new(355.0572f, -249.543f), new(-302.2206f, 306.026f), new(243.66931f, -290.66998f),
+ new(250.0179f, -333.7398f), new(-307.3533f, 302.535f), new(-396.9938f, 358.2618f), new(313.2834f, -347.3847f), new(188.3677f, -228.214f),
+ new(290.31918f, -409.9676f), new(417.6559f, -356.01718f), new(409.6142f, -254.2894f), new(296.7654f, -296.95682f), new(324.9022f, -191.5831f),
+ new(-299.6853f, 285.8305f), new(-422.8087f, 298.1915f), new(-169.2406f, 379.00662f), new(238.3016f, -230.07791f), new(-419.3567f, 301.7725f),
+ new(-401.8887f, 361.5777f), new(-182.31581f, 317.9859f), new(-367.24777f, 359.0952f), new(369.73428f, -350.1118f), new(-185.53781f, 320.7929f),
+ new(-226.16249f, 419.9646f), new(-366.6153f, 294.64893f), new(-288.9566f, 299.7658f), new(-374.20248f, 200.3634f), new(-368.78308f, 297.6103f),
+ new(-352.26608f, 248.3718f), new(-234.5607f, 312.2277f), new(242.8121f, -344.03168f), new(197.1887f, -342.7229f), new(-235.2648f, 375.53122f),
+ new(194.4167f, -227.62401f), new(-222.5525f, 208.9902f), new(196.40799f, -294.0779f), new(294.7002f, -417.7428f), new(429.8483f, -312.4065f),
+ new(-362.3763f, 295.5819f), new(364.72528f, -353.0028f), new(-394.0121f, 248.5848f), new(294.9685f, -240.8528f), new(267.1566f, -346.1767f),
+ new(242.1431f, -344.9727f), new(-235.5663f, 244.2225f), new(248.9679f, -332.7518f), new(315.8628f, -365.91708f), new(-178.3794f, 256.3426f),
+ new(-182.29419f, 371.88788f), new(-358.0561f, 242.6278f), new(-182.3958f, 319.4169f), new(367.7589f, -262.0258f), new(-408.9372f, 302.7785f),
+ new(358.0882f, -249.283f), new(-229.3958f, 377.07022f), new(-367.19632f, 289.9529f), new(231.8159f, -252.2292f), new(191.7187f, -231.35901f),
+ new(-189.33301f, 248.0737f), new(254.17061f, -240.47131f), new(420.8982f, -313.22318f), new(-288.7882f, 248.0479f), new(302.59518f, -240.8248f),
+ new(-309.73727f, 301.911f), new(-246.0053f, 257.32f), new(-183.2124f, 319.5028f), new(319.05118f, -190.1671f), new(384.6483f, -395.04962f),
+ new(379.0084f, -251.07631f), new(-408.7457f, 356.9627f), new(242.0233f, -288.735f), new(245.3111f, -393.5936f), new(237.7826f, -178.11981f),
+ new(-288.3996f, 298.9428f), new(368.5043f, -348.6098f), new(-374.8422f, 188.47859f), new(-390.9243f, 247.1686f), new(245.92181f, -192.5322f),
+ new(248.40134f, -193.25769f), new(-247.1713f, 257.014f), new(-288.57397f, 187.1313f), new(230.8808f, -241.6922f), new(420.3592f, -308.94818f),
+ new(-367.2933f, 295.1079f), new(206.2556f, -343.33762f), new(-237.9527f, 319.5217f), new(365.64728f, -354.1658f), new(-298.8953f, 369.3312f),
+ new(365.3146f, -340.80478f), new(419.8832f, -311.98718f), new(-221.34639f, 258.64423f), new(300.67783f, -358.2559f), new(-366.6603f, 291.91592f),
+ new(-286.34662f, 300.8558f), new(-178.9262f, 373.2389f), new(-234.1837f, 315.5127f), new(-367.30078f, 358.0332f), new(364.7659f, -263.2288f),
+ new(-366.45932f, 291.5729f), new(324.9902f, -355.24808f), new(-387.34982f, 182.0316f), new(-359.5744f, 371.1608f), new(300.1814f, -296.5178f),
+ new(318.5222f, -193.1071f), new(432.8413f, -311.20248f), new(-298.2047f, 349.9136f), new(322.1932f, -357.4821f), new(375.1767f, -202.4471f),
+ new(-223.9328f, 425.3053f), new(302.72083f, -356.2279f), new(312.86978f, -367.1231f), new(389.41632f, -405.9318f), new(288.97018f, -408.2966f),
+ new(-222.02551f, 212.11221f), new(-235.91829f, 244.3835f), new(-366.8033f, 291.1899f), new(306.5912f, -239.2808f), new(254.8356f, -240.0283f),
+ new(-366.9001f, 305.3833f), new(-365.1051f, 298.2133f), new(-301.219f, 245.5957f), new(-404.8922f, 303.6445f), new(376.19238f, -253.2913f),
+ new(-234.7437f, 311.13968f), new(-235.4478f, 371.9562f), new(-401.4241f, 243.24179f), new(311.5724f, -345.9277f), new(255.5489f, -358.2854f),
+ new(-288.8667f, 201.2854f), new(378.034f, -194.70279f), new(188.96771f, -233.02301f), new(246.63731f, -288.64697f), new(-341.2781f, 360.5368f),
+ new(-295.5393f, 370.7332f), new(-189.71039f, 375.8501f), new(-393.2478f, 361.97882f), new(-375.1775f, 200.7784f), new(319.9032f, -355.5311f),
+ new(-360.033f, 346.7946f), new(-310.07828f, 299.832f), new(-283.57172f, 201.7934f), new(-290.8056f, 300.6018f), new(321.9972f, -356.4531f),
+ new(-352.5181f, 249.2928f), new(210.7926f, -342.8946f), new(363.9799f, -304.0882f), new(301.2584f, -297.3328f), new(-222.5224f, 258.3362f),
+ new(-357.5351f, 247.2458f), new(379.7247f, -202.0571f), new(-304.51672f, 346.0986f), new(-173.8894f, 258.14362f), new(-368.6254f, 407.9039f),
+ new(-319.7415f, 412.2391f), new(389.1973f, -404.5638f), new(-294.4033f, 353.93582f), new(418.2709f, -360.9022f), new(-362.6781f, 303.4673f),
+ new(430.0013f, -313.39148f), new(184.94519f, -294.23648f), new(243.3188f, -195.94519f), new(238.1516f, -228.8759f), new(242.0486f, -181.7558f),
+ new(-288.03372f, 200.82741f), new(-222.85939f, 258.5002f), new(376.01538f, -252.2803f), new(-390.2283f, 246.8216f), new(-304.948f, 244.03871f),
+ new(299.55038f, -300.1108f), new(-358.69708f, 247.7568f), new(242.5819f, -254.2282f), new(-358.749f, 347.0736f), new(-300.0233f, 286.11652f),
+ new(200.8777f, -340.0459f), new(364.9089f, -264.20178f), new(255.53261f, -239.1213f), new(-227.02449f, 303.9136f), new(-238.4204f, 269.2894f),
+ new(-342.6401f, 359.1858f), new(361.35458f, -337.4368f), new(371.4719f, -296.6552f), new(313.0628f, -368.14908f), new(-342.57712f, 360.2518f),
+ new(-371.13953f, 311.3465f), new(-306.75f, 243.9767f), new(-225.7168f, 421.6963f), new(-235.76729f, 243.1765f), new(254.77791f, -357.5654f),
+ new(196.127f, -299.8169f), new(291.2732f, -414.8238f), new(-368.3974f, 409.1199f), new(-421.83768f, 302.8985f), new(241.3001f, -344.17868f),
+ new(-184.65019f, 372.9209f), new(386.3183f, -403.29382f), new(200.8777f, -340.0459f), new(-364.0791f, 307.0503f), new(307.3822f, -239.9718f),
+ new(-360.111f, 345.7226f), new(427.7543f, -311.4835f), new(-240.3114f, 269.1094f), new(-312.28128f, 300.707f), new(364.8815f, -242.5253f),
+ new(373.9214f, -251.3573f), new(362.3696f, -342.44678f), new(-301.6073f, 286.8335f), new(364.5979f, -298.5202f), new(-190.0059f, 254.9163f),
+ new(-189.3434f, 313.4208f), new(362.6719f, -262.3068f)
+ ]},
+ { 600, [
+ new(313.2834f, -347.3847f), new(-362.3763f, 295.5819f), new(-218.4655f, 213.04521f), new(-301.6073f, 286.8335f), new(294.9685f, -240.8528f),
+ new(300.1814f, -296.5178f), new(-230.5407f, 196.1728f), new(-288.57397f, 187.1313f), new(365.06152f, -243.5383f), new(241.3001f, -344.17868f),
+ new(324.35718f, -189.71411f), new(255.53261f, -239.1213f), new(-188.6714f, 375.24112f), new(206.2556f, -343.33762f), new(-182.29419f, 371.88788f),
+ new(-308.70352f, 421.698f), new(238.9246f, -229.63591f), new(-319.7415f, 412.2391f), new(181.2042f, -295.7445f), new(365.64728f, -354.1658f),
+ new(-297.7853f, 287.0515f), new(-235.3837f, 316.26868f), new(365.1853f, -350.4998f), new(-332.1019f, 409.2703f), new(-409.8092f, 303.1735f),
+ new(-366.9001f, 305.3833f), new(364.7659f, -263.2288f), new(-182.2302f, 370.8039f), new(-239.8844f, 268.9054f), new(-375.1775f, 200.7784f),
+ new(319.59018f, -194.4451f), new(254.0206f, -239.2693f), new(-366.45932f, 291.5729f), new(364.9089f, -264.20178f), new(429.8483f, -312.4065f),
+ new(-291.7246f, 297.3128f), new(382.523f, -192.8978f), new(-177.9058f, 321.21692f), new(303.8715f, -240.3588f), new(-308.99f, 240.6867f),
+ new(362.2959f, -301.9722f), new(296.4492f, -403.8856f), new(-234.6857f, 311.7197f), new(230.8808f, -241.6922f), new(242.8121f, -344.03168f),
+ new(-370.3672f, 190.3496f), new(367.8745f, -241.3213f), new(358.1329f, -353.46918f), new(242.5819f, -254.2282f), new(426.8255f, -251.2492f),
+ new(-181.52141f, 257.7206f), new(229.5188f, -243.0422f), new(197.1347f, -341.54492f), new(-346.86148f, 345.31003f), new(-234.7437f, 311.13968f),
+ new(313.0628f, -368.14908f), new(243.2819f, -253.3252f), new(210.7926f, -342.8946f), new(-302.4113f, 284.0645f), new(250.85791f, -332.5678f),
+ new(-341.2781f, 360.5368f), new(419.8832f, -311.98718f), new(-293.94498f, 182.0833f), new(-289.58438f, 368.48282f), new(418.2709f, -360.9022f),
+ new(-235.5663f, 244.2225f), new(-173.8894f, 258.14362f), new(-359.5744f, 371.1608f), new(-358.749f, 347.0736f), new(-390.9243f, 247.1686f),
+ new(376.19238f, -253.2913f), new(-235.4478f, 371.9562f), new(-221.34639f, 258.64423f), new(-352.26608f, 248.3718f), new(-183.2124f, 319.5028f),
+ new(-365.1051f, 298.2133f), new(249.80031f, -284.59598f), new(364.72528f, -353.0028f), new(-320.5545f, 407.55112f), new(-228.6517f, 202.0308f),
+ new(256.2609f, -357.39438f), new(194.4167f, -227.62401f), new(-226.2908f, 426.33728f), new(-292.26797f, 188.8073f), new(200.8777f, -340.0459f),
+ new(298.9885f, -244.2768f), new(-222.5224f, 258.3362f), new(-397.40778f, 361.5808f), new(-302.2206f, 306.026f), new(-390.2283f, 246.8216f),
+ new(-310.07828f, 299.832f), new(266.3536f, -345.4307f), new(178.5862f, -294.5895f), new(-396.68478f, 361.24182f), new(-309.73727f, 301.911f),
+ new(188.3677f, -228.214f), new(425.6652f, -308.4932f), new(-235.91829f, 244.3835f), new(300.22983f, -357.7019f), new(229.36879f, -241.8402f),
+ new(306.5912f, -239.2808f), new(-408.7457f, 356.9627f), new(378.034f, -194.70279f), new(318.5222f, -193.1071f), new(-366.6153f, 294.64893f),
+ new(-358.0624f, 371.30582f), new(-369.8815f, 201.2844f), new(-188.6634f, 318.0758f), new(-236.5828f, 376.38422f), new(-369.2514f, 414.19492f),
+ new(197.1887f, -342.7229f), new(-235.8668f, 370.6512f), new(-235.2648f, 375.53122f), new(311.5724f, -345.9277f), new(315.8628f, -365.91708f),
+ new(-311.3375f, 359.5791f), new(-368.6254f, 407.9039f), new(417.6559f, -356.01718f), new(-368.78308f, 297.6103f), new(-283.35397f, 189.3143f),
+ new(-185.53781f, 320.7929f), new(-190.0204f, 318.85278f), new(245.3111f, -393.5936f), new(-358.0561f, 242.6278f), new(-185.57791f, 259.3093f),
+ new(-292.9656f, 312.017f), new(240.2518f, -193.08719f), new(294.7002f, -417.7428f), new(302.59518f, -240.8248f), new(-293.5882f, 247.0059f),
+ new(-404.8922f, 303.6445f), new(-240.1234f, 267.6004f), new(-310.7835f, 359.2841f), new(378.244f, -196.15779f), new(306.0762f, -242.2478f),
+ new(-225.2197f, 200.4788f), new(393.31232f, -402.9078f), new(-304.948f, 244.03871f), new(188.96771f, -233.02301f), new(-223.9328f, 425.3053f),
+ new(-287.2963f, 358.2008f), new(-342.57712f, 360.2518f), new(254.8356f, -240.0283f), new(-229.3958f, 377.07022f), new(-283.57172f, 201.7934f),
+ new(415.4112f, -250.8224f), new(-298.2047f, 349.9136f), new(-221.62349f, 420.3986f), new(-367.2933f, 295.1079f), new(-182.3958f, 319.4169f),
+ new(-288.9566f, 299.7658f), new(371.4719f, -296.6552f), new(-189.5619f, 258.2653f), new(368.5043f, -348.6098f), new(232.6154f, -229.5897f),
+ new(-178.3174f, 254.9166f), new(-401.8887f, 361.5777f), new(241.7699f, -253.47319f), new(267.8656f, -345.28268f), new(-357.5351f, 247.2458f),
+ new(-324.7075f, 413.4181f), new(-234.1837f, 315.5127f), new(184.94519f, -294.23648f), new(243.3188f, -195.94519f), new(296.5365f, -246.5598f),
+ new(-374.8422f, 188.47859f), new(354.7872f, -251.284f), new(-358.69708f, 247.7568f), new(-365.93878f, 359.38422f), new(-178.3794f, 256.3426f),
+ new(250.0179f, -333.7398f), new(254.77791f, -357.5654f), new(255.5489f, -358.2854f), new(296.7654f, -296.95682f), new(193.84799f, -297.54092f),
+ new(423.27048f, -253.98221f), new(312.86978f, -367.1231f), new(243.66931f, -290.66998f), new(-223.0045f, 212.6132f), new(365.3146f, -340.80478f),
+ new(389.1973f, -404.5638f), new(-421.83768f, 302.8985f), new(-300.6346f, 311.631f), new(430.0013f, -313.39148f), new(319.05118f, -190.1671f),
+ new(-405.2447f, 360.17572f), new(-368.2444f, 413.5209f), new(364.8815f, -242.5253f), new(-189.71039f, 375.8501f), new(196.40799f, -294.0779f),
+ new(-197.65578f, 316.19235f), new(-225.2865f, 419.4386f), new(361.35458f, -337.4368f), new(240.81381f, -197.5942f), new(190.73799f, -294.6319f),
+ new(379.7247f, -202.0571f), new(315.3874f, -345.7157f), new(294.41418f, -416.2078f), new(311.3444f, -348.6377f), new(311.8972f, -238.82681f),
+ new(299.55038f, -300.1108f), new(-246.0053f, 257.32f), new(-228.9527f, 316.8837f), new(-352.5181f, 249.2928f), new(-364.0791f, 307.0503f),
+ new(249.1549f, -334.2548f), new(389.41632f, -405.9318f), new(-356.7121f, 305.96228f), new(-247.1713f, 257.014f), new(-288.03372f, 200.82741f),
+ new(384.6483f, -395.04962f), new(181.47519f, -297.0505f), new(-226.16249f, 419.9646f), new(-419.3567f, 301.7725f), new(-361.4734f, 414.9989f),
+ new(-240.3114f, 269.1094f), new(375.1767f, -202.4471f), new(363.13287f, -297.3662f), new(208.7526f, -345.6746f), new(-310.3793f, 302.247f),
+ new(300.4468f, -356.4229f), new(241.7096f, -179.84981f), new(246.63731f, -288.64697f), new(310.7758f, -366.2001f), new(420.8982f, -313.22318f),
+ new(240.8224f, -399.0085f), new(-393.2478f, 361.97882f), new(248.9679f, -332.7518f), new(-312.28128f, 300.707f), new(409.6142f, -254.2894f),
+ new(-302.4703f, 366.22818f), new(-184.4144f, 376.3551f), new(-304.51672f, 346.0986f), new(360.73883f, -339.81195f), new(-407.6197f, 361.25272f),
+ new(-300.0233f, 286.11652f), new(-234.40529f, 244.5275f), new(191.7187f, -231.35901f), new(245.92181f, -192.5322f), new(369.73428f, -350.1118f),
+ new(-295.5393f, 370.7332f), new(-298.8953f, 369.3312f), new(-367.24777f, 359.0952f), new(390.0623f, -391.89062f), new(241.0064f, -400.0275f),
+ new(-360.261f, 346.9286f), new(-178.9262f, 373.2389f), new(374.7767f, -205.0661f), new(366.19788f, -292.0712f), new(-294.4033f, 353.93582f),
+ new(242.8061f, -391.2446f), new(-233.9487f, 311.9527f), new(379.0084f, -251.07631f), new(324.9022f, -191.5831f), new(-422.8087f, 298.1915f),
+ new(-222.85939f, 258.5002f), new(-234.5607f, 312.2277f), new(-182.31581f, 317.9859f), new(-222.02551f, 212.11221f), new(319.9032f, -355.5311f),
+ new(331.3562f, -173.1349f), new(-321.23248f, 412.9841f), new(-408.9372f, 302.7785f), new(385.1353f, -392.3116f), new(419.64893f, -360.20718f),
+ new(-288.8667f, 201.2854f), new(-394.0121f, 248.5848f), new(242.9953f, -285.263f), new(410.1052f, -251.27739f), new(247.32059f, -177.5898f),
+ new(288.97018f, -408.2966f), new(-314.4235f, 413.63312f), new(420.3592f, -308.94818f), new(-187.6225f, 326.43433f), new(302.72083f, -356.2279f),
+ new(-342.7901f, 360.39178f), new(-223.8438f, 424.1973f), new(243.2561f, -394.8516f), new(365.01758f, -339.0528f), new(-190.4949f, 258.8393f),
+ new(417.10492f, -359.4792f), new(-362.6781f, 303.4673f), new(306.6254f, -295.9678f), new(-359.3564f, 371.0228f), new(230.18979f, -242.6052f),
+ new(238.1516f, -228.8759f), new(-374.20248f, 200.3634f), new(-297.4656f, 310.197f), new(300.4095f, -248.1808f), new(-307.3533f, 302.535f),
+ new(-222.5525f, 208.9902f), new(-386.7643f, 247.5676f), new(-235.76729f, 243.1765f), new(420.4665f, -251.6012f), new(-301.219f, 245.5957f),
+ new(-360.033f, 346.7946f), new(423.0835f, -252.7542f), new(-220.5658f, 426.6573f), new(370.25558f, -336.9458f), new(243.8154f, -397.8035f),
+ new(267.1566f, -346.1767f), new(-379.5332f, 184.26259f), new(-415.85168f, 303.2385f), new(-293.89722f, 242.9809f), new(-401.4241f, 243.24179f),
+ new(-367.45078f, 359.2392f), new(-220.3717f, 202.5018f), new(242.0486f, -181.7558f), new(367.7589f, -262.0258f), new(322.1932f, -357.4821f),
+ new(-397.74008f, 247.0238f), new(242.0233f, -288.735f), new(239.6636f, -228.7279f), new(321.9972f, -356.4531f), new(-286.34662f, 300.8558f),
+ new(-301.18872f, 348.6686f), new(355.0572f, -249.543f), new(-366.8033f, 291.1899f), new(-294.46222f, 247.5039f), new(376.01538f, -252.2803f),
+ new(-288.7882f, 248.0479f), new(242.1431f, -344.9727f), new(313.1434f, -346.61972f), new(301.2584f, -297.3328f), new(358.0882f, -249.283f),
+ new(298.6345f, -242.4678f), new(363.9799f, -304.0882f), new(307.1302f, -243.55681f), new(247.34311f, -390.80258f), new(423.7199f, -355.4972f),
+ new(300.8364f, -301.7118f), new(-237.9527f, 319.5217f), new(324.9902f, -355.24808f), new(-308.68948f, 359.8321f), new(289.6262f, -404.4686f),
+ new(-276.62698f, 199.19029f), new(-400.3801f, 248.2228f), new(432.8413f, -311.20248f), new(-290.8056f, 300.6018f), new(366.1206f, -338.62277f),
+ new(298.9032f, -414.4008f), new(300.67783f, -358.2559f), new(-238.4204f, 269.2894f), new(-409.3192f, 299.2515f), new(-307.58798f, 245.23271f),
+ new(238.3016f, -230.07791f), new(-390.5103f, 243.8516f), new(-357.8531f, 243.6768f), new(-247.5183f, 257.176f), new(266.5036f, -346.6327f),
+ new(291.2732f, -414.8238f), new(290.31918f, -409.9676f), new(-225.7105f, 416.3436f), new(-189.3434f, 313.4208f), new(-378.0082f, 189.91559f),
+ new(238.7284f, -398.0855f), new(-367.30078f, 358.0332f), new(-190.0059f, 254.9163f), new(182.80771f, -234.238f), new(241.9199f, -254.6752f),
+ new(-288.33972f, 197.0644f), new(355.3642f, -251.98601f), new(289.7772f, -418.3958f), new(-290.6533f, 356.8008f), new(-366.6603f, 291.91592f),
+ new(300.6344f, -302.1348f), new(-235.6588f, 371.8752f), new(386.3183f, -403.29382f), new(-374.6495f, 196.5544f), new(-222.70839f, 257.2932f),
+ new(206.7056f, -346.9436f), new(-189.1834f, 371.62512f), new(385.6363f, -396.28262f), new(307.3822f, -239.9718f), new(254.17061f, -240.47131f),
+ new(-370.8164f, 407.8999f), new(-184.65019f, 372.9209f), new(254.89891f, -358.7444f), new(-288.3996f, 298.9428f)
+ ]},
+ { 784, [
+ new(201.7538f, -343.517f), new(-356.2303f, 301.78598f), new(295.6925f, -404.961f), new(404.598f, 238.129f), new(-354.87302f, 187.7132f),
+ new(-289.1716f, 350.3266f), new(-353.4573f, 302.257f), new(-197.937f, 314.2073f), new(317.2618f, 322.6778f), new(231.68611f, -288.7912f),
+ new(-395.9058f, 240.0167f), new(-304.55103f, 300.9606f), new(215.54161f, 276.7694f), new(-236.1599f, 429.0978f), new(-347.5695f, 251.8354f),
+ new(-238.6831f, 252.16379f), new(272.2121f, 284.9297f), new(233.2122f, 359.3206f), new(-244.0777f, 373.5331f), new(403.92798f, 232.734f),
+ new(225.2431f, -288.24222f), new(-194.241f, 311.3873f), new(257.48727f, -340.4533f), new(243.1665f, -227.2516f), new(238.705f, -395.81268f),
+ new(246.1051f, 245.6815f), new(-344.2491f, 352.1886f), new(198.1736f, 251.9586f), new(344.74918f, 321.4942f), new(251.4525f, 321.1901f),
+ new(273.5094f, 370.8387f), new(-392.4628f, 248.94969f), new(217.2743f, 232.1803f), new(-237.65471f, 372.5421f), new(376.7105f, 341.092f),
+ new(379.0153f, 279.6923f), new(325.9916f, 229.8118f), new(322.857f, 285.752f), new(233.7525f, 247.0363f), new(200.00049f, 331.2465f),
+ new(-404.7016f, 299.6662f), new(187.4037f, -304.5446f), new(205.0238f, -343.449f), new(-250.0637f, 374.5951f), new(424.2943f, -296.3886f),
+ new(-344.2351f, 352.88562f), new(-232.6003f, 193.1037f), new(281.6307f, 257.962f), new(381.7549f, 367.8664f), new(-231.55789f, 425.4868f),
+ new(179.6197f, -299.96558f), new(235.5695f, 322.06207f), new(394.1409f, 327.7624f), new(220.9385f, 247.9613f), new(253.5462f, -288.291f),
+ new(308.2029f, 355.3538f), new(-189.4494f, 255.2781f), new(368.2296f, -399.7536f), new(-232.5637f, 362.8591f), new(353.6497f, 281.8578f),
+ new(196.9918f, -342.052f), new(263.6015f, 242.228f), new(-356.191f, 193.4272f), new(417.04053f, -353.3363f), new(-297.23312f, 394.9408f),
+ new(-249.96399f, 312.7718f), new(-200.30841f, 256.9811f), new(419.2843f, -295.6096f), new(181.62471f, -299.06458f), new(305.056f, -296.014f),
+ new(251.01228f, -340.0093f), new(310.41022f, -350.7491f), new(-187.549f, 307.4423f), new(273.8824f, 229.7463f), new(257.6832f, -291.113f),
+ new(401.1567f, 349.6286f), new(-299.548f, 305.6746f), new(-348.94247f, 251.9194f), new(252.68051f, -234.55861f), new(289.2761f, 359.3486f),
+ new(355.37613f, -228.5071f), new(378.8354f, -351.0432f), new(349.92538f, 344.2471f), new(308.4765f, -412.207f), new(361.9548f, 246.2108f),
+ new(-238.938f, 315.9168f), new(-342.1141f, 363.0151f), new(248.572f, -396.8607f), new(282.5829f, 341.8851f), new(298.4301f, -236.7088f),
+ new(374.3238f, -296.31058f), new(430.10852f, -360.2663f), new(428.2693f, -303.9336f), new(243.0456f, -175.1083f), new(360.6884f, -340.60922f),
+ new(299.4876f, -196.5812f), new(-350.9656f, 416.1629f), new(286.66608f, 285.3017f), new(304.25153f, 303.4886f), new(373.8704f, -341.6242f),
+ new(-249.2627f, 369.3641f), new(295.8541f, -235.6418f), new(-360.6243f, 304.749f), new(-229.3929f, 426.4528f), new(360.7912f, 321.1012f),
+ new(403.512f, 299.9014f), new(-239.3999f, 419.2658f), new(244.7905f, 321.74808f), new(191.7939f, -228.5756f), new(302.8032f, -354.3591f),
+ new(-230.9707f, 369.4421f), new(263.74728f, -341.4163f), new(-192.516f, 312.1573f), new(338.9784f, 344.6351f), new(268.71228f, -350.8513f),
+ new(201.93849f, 233.6869f), new(204.5999f, -236.08861f), new(245.59981f, -282.684f), new(-353.34348f, 253.1034f), new(-193.9211f, 370.2831f),
+ new(273.2047f, 322.6408f), new(-344.9811f, 365.36508f), new(-356.1493f, 302.978f), new(400.4554f, 251.3281f), new(397.5487f, -229.3554f),
+ new(241.0888f, -281.99f), new(290.1571f, -242.0608f), new(-393.0041f, 351.19598f), new(363.00662f, -396.9726f), new(-337.0101f, 355.3321f),
+ new(-293.7351f, 391.61978f), new(305.0455f, -407.592f), new(306.42212f, -238.5398f), new(399.1724f, 370.391f), new(354.1721f, 317.9104f),
+ new(-341.8981f, 353.9276f), new(220.57921f, 360.5556f), new(354.12918f, 321.6562f), new(276.5323f, 246.414f), new(202.5595f, 238.7699f),
+ new(247.5086f, -175.4843f), new(-236.7123f, 196.1607f), new(-251.22699f, 317.7138f), new(-388.2461f, 347.711f), new(311.5011f, -238.8088f),
+ new(318.0848f, 341.7883f), new(310.7141f, -249.3718f), new(-341.27448f, 250.8624f), new(367.88217f, -176.7622f), new(199.0521f, 349.0937f),
+ new(-412.1616f, 304.4582f), new(222.5888f, 258.7547f), new(-295.781f, 303.6226f), new(228.0897f, 299.9549f), new(251.4725f, 287.78662f),
+ new(370.60278f, 246.4148f), new(-292.84268f, 234.5823f), new(-342.3951f, 360.4951f), new(-307.2466f, 363.0576f), new(245.9138f, 354.3022f),
+ new(300.6625f, -405.56702f), new(338.86148f, 260.6284f), new(243.1665f, -227.2516f), new(413.5973f, -295.8766f), new(300.1216f, -193.7342f),
+ new(-387.1838f, 247.8537f), new(-235.426f, 309.3408f), new(400.7937f, -229.2984f), new(323.0348f, 322.19882f), new(252.1636f, -182.85631f),
+ new(-246.6296f, 262.0947f), new(-245.34659f, 262.6687f), new(281.8259f, 281.5206f), new(298.54102f, -295.013f), new(318.0849f, 281.6292f),
+ new(246.10289f, 345.2674f), new(-229.8593f, 186.8567f), new(367.6134f, -340.6502f), new(304.4865f, -405.889f), new(-387.1001f, 356.59198f),
+ new(-232.62799f, 313.9578f), new(314.0498f, 246.4523f), new(-300.3227f, 240.3323f), new(-301.1151f, 396.35278f), new(-187.17609f, 366.3151f),
+ new(247.1345f, -227.1696f), new(295.8541f, -235.6418f), new(-290.31003f, 300.53958f), new(191.7939f, -228.5756f), new(228.69511f, -288.0002f),
+ new(282.2644f, 317.9233f), new(359.81012f, -228.87909f), new(-298.44812f, 394.3978f), new(321.63022f, -361.14212f), new(349.91412f, -236.9171f),
+ new(383.7328f, -304.30658f), new(368.1678f, -295.9886f), new(236.3618f, -281.78f), new(222.8821f, 340.9067f), new(312.2349f, 355.44778f),
+ new(278.3411f, 359.7866f), new(269.6663f, -342.0913f), new(-289.10712f, 183.90201f), new(-233.979f, 306.4878f), new(-244.35611f, 240.8613f),
+ new(-254.0357f, 365.16312f), new(174.70871f, -297.1846f), new(354.2841f, 245.2263f), new(-415.38058f, 296.2012f), new(-363.0506f, 418.3529f),
+ new(-198.04909f, 373.0021f), new(255.3415f, 241.99501f), new(-304.1327f, 242.4713f), new(376.9794f, 258.8948f), new(-351.079f, 188.7992f),
+ new(362.61517f, -175.78621f), new(257.2749f, 344.9484f), new(-359.5403f, 298.09f), new(322.07822f, -350.2961f), new(293.7836f, -195.72621f),
+ new(364.4341f, -236.2061f), new(-194.756f, 304.1433f), new(-242.6541f, 252.4908f), new(365.8146f, -399.8006f), new(287.8303f, 246.37599f),
+ new(257.1789f, 261.34988f), new(365.9152f, -183.8302f), new(-390.4571f, 356.875f), new(371.0782f, -176.6432f), new(254.6492f, -288.238f),
+ new(342.96152f, 286.99332f), new(378.6449f, 327.25638f), new(374.4919f, 359.7841f), new(-305.604f, 305.5076f), new(257.89627f, -357.3143f),
+ new(371.6932f, 299.9014f), new(353.0685f, 288.3843f), new(290.93552f, 302.9496f), new(354.366f, 355.1755f), new(180.02971f, -305.4936f),
+ new(349.4671f, -228.1541f), new(-407.2686f, 303.4432f), new(326.8156f, 370.5029f), new(-225.3053f, 188.8047f), new(363.1264f, -341.2792f),
+ new(263.09158f, 362.3125f), new(-185.01741f, 246.8511f), new(370.26862f, -398.8566f), new(424.95853f, -354.4863f), new(-247.5231f, 241.3493f),
+ new(-296.2276f, 363.56857f), new(310.819f, -294.635f), new(308.9478f, 322.1478f), new(-301.30762f, 362.6656f), new(246.9266f, -175.9583f),
+ new(-382.4611f, 350.681f), new(367.4968f, -301.73257f), new(196.4953f, 300.2192f), new(-359.983f, 189.9592f), new(343.1193f, 362.1447f),
+ new(254.91458f, 362.2855f), new(-345.9816f, 406.69092f), new(375.3678f, 246.5288f), new(209.59581f, -349.538f), new(-293.5686f, 360.96957f),
+ new(290.482f, -298.737f), new(200.7666f, 277.52942f), new(237.48651f, -225.4266f), new(-346.6143f, 300.813f), new(250.8512f, -287.40198f),
+ new(316.6662f, -351.7221f), new(-195.0394f, 256.1411f), new(-241.8441f, 236.0893f), new(-230.72029f, 193.94371f), new(-403.3656f, 296.3612f),
+ new(-298.6325f, 248.72421f), new(341.0231f, 241.59329f), new(359.72452f, 287.85532f), new(303.3092f, -350.9451f), new(-357.0183f, 300.46f),
+ new(302.212f, -295.35202f), new(393.7723f, 278.8653f), new(236.09851f, -235.3476f), new(-192.18309f, 371.0611f), new(376.13962f, -404.4156f),
+ new(364.47513f, -226.6221f), new(-382.9718f, 240.21269f), new(317.088f, 286.213f), new(375.7652f, -182.7162f), new(-358.04102f, 193.0442f),
+ new(332.8281f, 241.4563f), new(310.27002f, -305.849f), new(-296.04602f, 307.60858f), new(246.4419f, 262.24887f), new(-280.2791f, 175.71701f),
+ new(-246.4001f, 253.5998f), new(246.3003f, 318.3619f), new(308.51202f, 285.54f), new(403.9564f, 367.535f), new(-357.25058f, 417.13492f),
+ new(311.5932f, -350.9601f), new(202.4115f, 362.4906f), new(392.5047f, -228.2624f), new(-349.24512f, 356.8806f), new(-186.33409f, 371.7811f),
+ new(252.41f, -404.1537f), new(381.8298f, 231.1504f), new(-348.0183f, 296.18597f), new(403.3314f, 362.339f), new(243.733f, -396.1157f),
+ new(-336.2825f, 241.3744f), new(-284.1831f, 183.14f), new(-298.8275f, 247.19621f), new(-250.72311f, 241.7003f), new(286.9907f, 321.94382f),
+ new(318.037f, 256.9742f), new(318.0849f, 317.9103f), new(422.3055f, -354.9463f), new(-300.35852f, 250.1372f), new(301.0519f, 355.7158f),
+ new(228.9825f, 246.9493f), new(405.3297f, -235.3344f), new(-293.48212f, 185.00801f), new(-229.3929f, 426.4528f), new(-300.95203f, 304.4226f),
+ new(378.9288f, -296.6966f), new(-291.68103f, 295.82858f), new(303.9746f, -196.9602f), new(308.6556f, -204.37221f), new(291.14102f, -295.13202f),
+ new(349.7845f, 260.1414f), new(199.9669f, -229.9176f), new(196.65291f, -229.9866f), new(237.2266f, -174.4443f), new(244.8165f, 288.31763f),
+ new(293.2381f, -247.8448f), new(246.068f, 282.1087f), new(215.3665f, 330.9855f), new(302.88882f, 246.8213f), new(-223.15689f, 420.5328f),
+ new(334.9303f, 362.0447f), new(361.6719f, 360.3851f), new(291.03812f, -237.9518f), new(203.0005f, 367.4016f), new(-249.5866f, 264.1837f),
+ new(-297.2027f, 240.39131f), new(234.81151f, 287.42862f), new(-245.193f, 316.8818f), new(217.619f, 368.0991f), new(420.3783f, -308.7876f),
+ new(253.49951f, -226.55661f), new(-240.9176f, 262.8277f), new(345.7485f, 260.06638f), new(-334.6705f, 247.4734f), new(249.17781f, -289.48297f),
+ new(-335.1641f, 347.54062f), new(-298.0151f, 390.3638f), new(-197.89641f, 243.13809f), new(241.227f, -408.13968f), new(-245.2276f, 263.2147f),
+ new(422.5025f, -362.1483f), new(379.6654f, -340.9132f), new(-305.643f, 296.7876f), new(369.72192f, 359.6951f), new(199.4439f, -237.7916f),
+ new(-360.55258f, 415.0159f), new(-234.5431f, 245.5958f), new(-351.2505f, 247.4944f), new(208.78981f, -347.638f), new(-295.56152f, 244.1002f)
+ ]},
+ { 775, [
+ new(-404.08212f, 364.2363f), new(-216.93341f, 418.798f), new(-230.22069f, 309.495f), new(222.8821f, 340.9067f), new(359.678f, -347.1498f),
+ new(210.14929f, -344.8595f), new(193.0177f, -295.3774f), new(194.5937f, -308.1654f), new(-346.7694f, 359.7248f), new(312.3989f, 355.5828f),
+ new(373.89f, -170.9755f), new(198.1736f, 251.9586f), new(362.88602f, -173.8575f), new(286.8361f, 285.44168f), new(-304.516f, 360.1877f),
+ new(-358.5723f, 310.3878f), new(-218.5084f, 431.587f), new(263.21057f, 362.4105f), new(261.70282f, -346.9646f), new(323.027f, 285.892f),
+ new(-190.9805f, 318.7062f), new(354.1721f, 317.9104f), new(-289.9421f, 185.6702f), new(-300.982f, 365.4647f), new(255.2348f, -289.39862f),
+ new(-353.5652f, 252.24669f), new(325.9916f, 229.8118f), new(-186.24649f, 314.6562f), new(-357.48352f, 409.1578f), new(317.543f, -351.4f),
+ new(262.9496f, 359.07248f), new(375.5618f, 246.6888f), new(241.415f, -221.5954f), new(239.3439f, -182.8627f), new(407.7898f, -228.82181f),
+ new(363.9663f, -241.6193f), new(318.0849f, 317.9103f), new(-394.4231f, 236.71599f), new(-234.7499f, 247.9202f), new(417.5939f, -277.4755f),
+ new(358.98172f, -288.66553f), new(323.034f, 279.63f), new(360.98718f, 321.26218f), new(328.8619f, -198.1118f), new(-238.1539f, 378.7474f),
+ new(281.8259f, 281.5206f), new(-409.6821f, 298.41528f), new(-343.5374f, 352.70477f), new(261.9078f, -339.9866f), new(375.3058f, 241.5078f),
+ new(373.311f, -413.77982f), new(354.366f, 355.1755f), new(374.54102f, -344.3138f), new(319.12302f, -364.18597f), new(-292.04303f, 290.2616f),
+ new(-184.0145f, 305.1532f), new(353.9593f, -221.94029f), new(214.1505f, 323.9085f), new(250.7264f, -411.71152f), new(323.2048f, 322.3378f),
+ new(247.8211f, -284.62738f), new(282.2644f, 317.9233f), new(358.4737f, -286.2265f), new(-189.4562f, 374.42438f), new(326.8156f, 370.5029f),
+ new(287.7073f, 242.01f), new(-410.3881f, 303.7623f), new(400.4554f, 251.3281f), new(249.2814f, -399.9905f), new(238.5754f, -290.9004f),
+ new(-358.35352f, 415.0048f), new(359.9205f, 288.0163f), new(-183.6832f, 372.30838f), new(251.6685f, 287.9486f), new(-357.246f, 288.7085f),
+ new(297.9954f, -414.0339f), new(-356.7155f, 401.6808f), new(310.329f, -346.71997f), new(273.8824f, 229.7463f), new(354.2027f, -282.57953f),
+ new(-372.1489f, 307.8151f), new(362.57928f, -231.9883f), new(-173.7449f, 254.08998f), new(-358.35352f, 415.0048f), new(312.1789f, 351.1258f),
+ new(240.07399f, -229.7104f), new(202.81529f, -334.8545f), new(-225.7224f, 436.263f), new(273.5094f, 370.8387f), new(-366.75922f, 188.8242f),
+ new(-182.3712f, 361.6524f), new(427.2759f, -288.5695f), new(368.359f, -168.8815f), new(403.512f, 299.9014f), new(354.2841f, 245.2263f),
+ new(279.8541f, 290.5957f), new(-284.508f, 190.88919f), new(421.1042f, -345.2269f), new(222.5888f, 258.7547f), new(-369.6749f, 303.6311f),
+ new(233.9465f, 247.1963f), new(374.6859f, 359.9441f), new(343.23828f, 362.2427f), new(-346.0024f, 354.61578f), new(210.8723f, -350.8635f),
+ new(287.6324f, -405.0909f), new(-359.539f, 296.3595f), new(-395.7321f, 247.375f), new(426.0119f, -282.9375f), new(303.39798f, -243.93651f),
+ new(381.7549f, 367.8664f), new(394.3649f, 327.9474f), new(-365.86752f, 419.8718f), new(348.813f, -285.5065f), new(250.3515f, 279.1636f),
+ new(324.27582f, 317.4298f), new(402.5808f, -224.3588f), new(-225.29181f, 208.5282f), new(252.1339f, 265.9469f), new(-374.0812f, 198.3842f),
+ new(-292.562f, 348.7267f), new(376.9794f, 258.8948f), new(196.4953f, 300.2192f), new(248.259f, -232.8854f), new(429.5222f, -350.6889f),
+ new(393.9963f, 279.0493f), new(281.6307f, 257.962f), new(378.06702f, -396.3548f), new(401.1567f, 349.6286f), new(375.34003f, -182.6945f),
+ new(209.4283f, -339.14148f), new(290.1431f, 355.8886f), new(259.8029f, 251.03288f), new(257.1549f, 340.6304f), new(305.392f, -355.123f),
+ new(-294.27902f, 305.6096f), new(-366.0292f, 182.3752f), new(-363.043f, 299.8765f), new(-353.7271f, 301.93262f), new(361.4813f, -227.50829f),
+ new(252.7445f, 316.13107f), new(318.037f, 256.9742f), new(349.0263f, -231.86229f), new(325.2129f, -186.2778f), new(233.4062f, 359.4806f),
+ new(359.9345f, 280.83032f), new(248.2911f, -289.5424f), new(-395.0881f, 242.54599f), new(371.6932f, 299.9014f), new(-294.07f, 360.9837f),
+ new(215.76561f, 276.9544f), new(-345.51218f, 236.2397f), new(318.7649f, -181.50479f), new(313.9288f, 242.1103f), new(-217.7904f, 425.24802f),
+ new(364.5212f, -285.0383f), new(-283.3991f, 176.7142f), new(-296.73828f, 245.0476f), new(229.8199f, -163.9437f), new(286.7501f, 279.0387f),
+ new(374.89f, -175.4725f), new(-230.9267f, 315.912f), new(318.0849f, 281.6292f), new(240.32741f, -293.76138f), new(-237.8127f, 301.43298f),
+ new(-346.18817f, 242.78369f), new(201.0921f, -240.088f), new(-229.7379f, 373.2914f), new(-417.0001f, 308.0463f), new(-360.342f, 293.3145f),
+ new(214.3036f, 269.63342f), new(248.043f, -227.2684f), new(-172.9139f, 261.96f), new(-358.37628f, 309.0218f), new(326.1179f, -190.25279f),
+ new(242.6684f, -395.7015f), new(-304.1383f, 248.5896f), new(245.9138f, 354.3022f), new(367.3602f, -287.46127f), new(-233.36789f, 246.2462f),
+ new(386.484f, -401.8138f), new(-241.83989f, 357.2314f), new(350.0894f, 344.3821f), new(-224.1598f, 256.835f), new(-233.7869f, 245.1452f),
+ new(-360.62128f, 312.4578f), new(193.5617f, -302.06442f), new(-224.6818f, 255.43901f), new(-189.6952f, 376.20438f), new(200.05211f, -234.025f),
+ new(-185.9715f, 310.81918f), new(238.3289f, -176.02669f), new(261.1978f, -340.8706f), new(298.3266f, -292.0932f), new(427.8559f, -297.8535f),
+ new(295.4016f, -299.1992f), new(350.3253f, -241.2773f), new(287.1607f, 322.0838f), new(280.1737f, 327.25882f), new(349.9485f, 260.2764f),
+ new(-233.8279f, 259.4687f), new(395.0213f, 274.2863f), new(254.3138f, -286.60663f), new(398.4098f, -229.7788f), new(254.67882f, -337.8436f),
+ new(287.9943f, 246.51099f), new(217.2743f, 232.1803f), new(-408.94708f, 292.0373f), new(234.05121f, 355.71558f), new(289.4401f, 359.4836f),
+ new(304.2525f, 297.6416f), new(199.0521f, 349.0937f), new(185.80371f, -290.7004f), new(-346.9532f, 247.9637f), new(-397.4241f, 355.5783f),
+ new(257.8959f, 258.2729f), new(299.09738f, -421.3519f), new(431.3672f, -365.6049f), new(263.4115f, 238.976f), new(-353.3814f, 364.00778f),
+ new(-306.638f, 304.1286f), new(-293.453f, 355.2007f), new(307.658f, -246.5365f), new(408.3018f, -232.1328f), new(-273.4085f, 407.25488f),
+ new(-294.3863f, 238.6736f), new(-295.49002f, 307.7656f), new(341.1421f, 241.6913f), new(-296.8403f, 249.1296f), new(301.2786f, -308.8892f),
+ new(237.6359f, -169.0107f), new(348.232f, -288.42352f), new(340.8861f, 238.4053f), new(-272.5415f, 400.40088f), new(239.3094f, -285.4064f),
+ new(255.6958f, -288.28162f), new(303.7156f, -296.6112f), new(-346.7694f, 359.7248f), new(-232.23041f, 419.94f), new(304.4085f, 303.61758f),
+ new(282.5829f, 341.8851f), new(-398.0711f, 360.3423f), new(-222.5898f, 252.65701f), new(304.931f, -249.96451f), new(316.045f, 291.044f),
+ new(314.2138f, 246.5873f), new(234.6085f, 243.3703f), new(310.118f, -346.80798f), new(217.619f, 368.0991f), new(-274.11652f, 413.1909f),
+ new(-369.6919f, 305.3411f), new(234.6014f, -282.3614f), new(350.63748f, 256.7644f), new(318.712f, -355.995f), new(288.8404f, -400.9769f),
+ new(-219.38281f, 204.15921f), new(-377.69522f, 180.9132f), new(302.91898f, -241.4125f), new(242.4111f, -281.1194f), new(199.5161f, -227.3f),
+ new(246.1051f, 245.6815f), new(374.91202f, -352.6218f), new(-217.4338f, 193.0702f), new(-401.7431f, 251.269f), new(215.5905f, 331.1705f),
+ new(-183.2521f, 249.1918f), new(381.8298f, 231.1504f), new(-347.8172f, 237.2867f), new(-184.5641f, 259.8488f), new(-233.53389f, 256.0677f),
+ new(367.276f, -166.6835f), new(263.7205f, 242.326f), new(-183.03621f, 367.0444f), new(-283.9311f, 181.7752f), new(387.885f, -406.99182f),
+ new(430.7992f, -356.4599f), new(-351.0201f, 296.7156f), new(-352.09113f, 300.2896f), new(246.068f, 282.1087f), new(327.3439f, -198.3728f),
+ new(297.2574f, -406.4339f), new(-238.1397f, 320.58798f), new(-302.294f, 310.6376f), new(-345.3284f, 347.9998f), new(227.7905f, 252.4693f),
+ new(373.333f, -339.83582f), new(-281.3295f, 417.8639f), new(298.658f, -237.7625f), new(-284.072f, 197.2742f), new(376.7105f, 341.092f),
+ new(362.27917f, 315.81018f), new(-237.79669f, 318.218f), new(388.32602f, -416.7318f), new(366.73822f, -290.3873f), new(192.30211f, -222.622f),
+ new(-190.57611f, 263.7458f), new(304.3166f, -299.7572f), new(345.974f, -283.0845f), new(228.0897f, 299.9549f), new(262.64282f, -352.5916f),
+ new(251.6485f, 321.35107f), new(-218.9788f, 199.42221f), new(-352.46512f, 298.8736f), new(-227.9009f, 358.3714f), new(-367.4692f, 194.1002f),
+ new(350.8354f, 340.9171f), new(250.9314f, -401.44852f), new(306.1916f, -307.04318f), new(353.6497f, 281.8578f), new(-238.1259f, 262.6467f),
+ new(366.11902f, -335.1558f), new(251.16899f, -240.5724f), new(317.7f, -364.41898f), new(257.3429f, 261.4849f), new(-183.9711f, 254.5338f),
+ new(296.08398f, -243.58951f), new(251.85081f, -340.6196f), new(318.0848f, 341.7883f), new(-293.87802f, 305.1836f), new(375.56192f, 355.8811f),
+ new(249.7934f, -406.0495f), new(-302.0473f, 253.5836f), new(393.7819f, 321.6334f), new(-246.9697f, 310.065f), new(-396.76212f, 349.68228f),
+ new(-228.92189f, 365.7594f), new(254.58481f, -336.5816f), new(-229.35269f, 303.123f), new(298.5306f, -292.1482f), new(342.9943f, 358.6877f),
+ new(-241.4887f, 315.839f), new(-293.12402f, 298.1876f), new(-225.8868f, 258.928f), new(257.4389f, 345.0834f), new(246.3003f, 318.3619f),
+ new(-290.08f, 201.15619f), new(227.2502f, 364.7536f), new(307.1939f, 360.0258f), new(-280.30652f, 413.6879f), new(241.573f, -223.2554f),
+ new(208.66861f, 283.0094f), new(-309.50803f, 304.3136f), new(350.145f, -291.2135f), new(387.2669f, 334.0094f), new(-232.41089f, 251.4037f),
+ new(301.748f, -242.14351f), new(239.12f, -227.1404f), new(285.1164f, -406.3519f), new(-406.6691f, 238.208f), new(249.0041f, -294.21738f),
+ new(288.2347f, 317.1368f), new(-297.686f, 364.4277f), new(-192.9475f, 314.4812f), new(-182.4572f, 363.8224f), new(-296.5923f, 249.4806f),
+ new(418.9532f, -348.7259f), new(410.2498f, -239.2738f), new(-179.82489f, 266.42798f), new(-183.8625f, 309.7192f), new(-301.682f, 307.0066f),
+ new(361.13202f, -343.93982f), new(298.57498f, -238.0655f), new(302.1306f, -297.65518f), new(199.44029f, -339.6005f), new(360.4847f, -294.7785f),
+ new(351.8645f, 293.9623f), new(368.5299f, 365.2201f), new(-230.34769f, 317.09998f)
+ ]},
+ { 601, [
+ new(423.3171f, -250.4103f), new(-226.9117f, 246.88509f), new(310.8649f, -345.99582f), new(-236.3443f, 312.3143f), new(-177.82399f, 253.7036f),
+ new(-305.2005f, 345.94067f), new(249.11931f, -356.86227f), new(323.17798f, -351.2615f), new(-172.37599f, 259.1066f), new(-303.0985f, 348.85468f),
+ new(-363.15192f, 348.446f), new(265.4144f, -350.2934f), new(247.5963f, -356.95828f), new(202.0663f, -342.79648f), new(-180.9719f, 367.9751f),
+ new(378.2364f, -246.4191f), new(247.6891f, -253.224f), new(362.16278f, -262.5431f), new(242.9717f, -337.5279f), new(247.6341f, -254.51399f),
+ new(299.72928f, -408.3648f), new(-376.8673f, 186.434f), new(425.9468f, -309.5352f), new(-290.83868f, 289.2854f), new(300.8251f, -299.0655f),
+ new(320.9204f, -179.07199f), new(-293.9628f, 247.2154f), new(260.1673f, -333.7892f), new(298.5646f, -244.084f), new(394.93082f, -404.1725f),
+ new(-278.7388f, 188.1391f), new(-367.43042f, 304.0252f), new(-181.605f, 248.3726f), new(-219.9421f, 428.5313f), new(-360.2165f, 419.5023f),
+ new(-188.8378f, 307.95932f), new(301.8107f, -365.70612f), new(-308.2032f, 295.5827f), new(230.1218f, -248.17639f), new(-292.4207f, 288.28043f),
+ new(-391.8156f, 248.347f), new(378.2229f, -197.36139f), new(374.2124f, -259.6957f), new(371.8563f, -348.0289f), new(193.3872f, -294.8541f),
+ new(-343.75238f, 366.36542f), new(231.5908f, -249.3944f), new(306.7021f, -294.4175f), new(184.1422f, -229.6091f), new(417.2281f, -250.80429f),
+ new(-361.6329f, 348.56003f), new(299.8491f, -294.8505f), new(-228.01541f, 375.7195f), new(-216.27081f, 206.505f), new(-237.4803f, 307.3483f),
+ new(374.4893f, -347.2949f), new(253.0181f, -235.92569f), new(-175.5239f, 373.37808f), new(-230.2153f, 318.3923f), new(247.6751f, -181.8245f),
+ new(-309.1464f, 364.12408f), new(-409.558f, 304.51648f), new(307.0466f, -240.364f), new(-303.8818f, 234.67339f), new(242.2041f, -284.00378f),
+ new(238.483f, -230.0022f), new(431.2748f, -309.1902f), new(-308.1274f, 364.87408f), new(248.5992f, -398.8089f), new(-368.38342f, 293.27222f),
+ new(-245.8001f, 250.2074f), new(-310.5352f, 295.40668f), new(258.6623f, -332.7672f), new(-345.9224f, 363.5674f), new(-226.01909f, 428.0783f),
+ new(-223.10681f, 205.989f), new(-177.1378f, 321.30832f), new(-371.6994f, 302.39722f), new(-227.51671f, 244.1881f), new(-372.1193f, 191.143f),
+ new(430.8338f, -316.0962f), new(-239.4424f, 362.2585f), new(-183.9478f, 314.55533f), new(-240.63339f, 267.5758f), new(-419.936f, 294.37048f),
+ new(-225.3927f, 247.00009f), new(306.4201f, -299.8965f), new(-307.84317f, 309.7544f), new(-355.9814f, 247.7838f), new(429.65918f, -354.9086f),
+ new(-300.3208f, 236.1984f), new(260.1853f, -332.6702f), new(375.8164f, -259.1897f), new(-242.15239f, 267.4618f), new(193.2872f, -299.20407f),
+ new(355.2405f, -246.5771f), new(-293.1367f, 288.4504f), new(383.1959f, -199.7834f), new(254.5411f, -235.8297f), new(-365.82098f, 364.11472f),
+ new(-343.432f, 351.4535f), new(240.8671f, -188.58049f), new(-178.45299f, 258.6536f), new(-184.8399f, 362.68008f), new(248.9901f, -283.6398f),
+ new(298.54462f, -237.00499f), new(319.32098f, -351.2955f), new(-402.0696f, 238.125f), new(190.2692f, -223.5291f), new(-397.8906f, 247.885f),
+ new(244.3457f, -338.8069f), new(-184.7348f, 320.74432f), new(-355.27542f, 242.2238f), new(249.06131f, -358.1203f), new(-341.273f, 354.2495f),
+ new(187.2962f, -295.24408f), new(-289.9125f, 353.2863f), new(-400.36218f, 363.1286f), new(304.38162f, -241.458f), new(-300.0918f, 241.13739f),
+ new(248.7381f, -289.4058f), new(-367.4745f, 418.95828f), new(247.4041f, -188.3525f), new(376.4904f, -247.0991f), new(-288.8965f, 354.04428f),
+ new(-310.2942f, 293.5097f), new(-360.8674f, 236.9168f), new(-369.9404f, 293.2622f), new(-304.6615f, 348.7367f), new(364.79028f, -346.6799f),
+ new(317.6524f, -366.13718f), new(301.6807f, -361.63013f), new(366.5748f, -294.62372f), new(320.0004f, -366.5102f), new(238.54001f, -228.7282f),
+ new(-289.4949f, 309.10532f), new(-235.61241f, 375.1545f), new(377.5799f, -192.3534f), new(422.7641f, -258.4043f), new(307.0079f, -346.02982f),
+ new(-311.3582f, 291.23868f), new(300.5741f, -300.4965f), new(-300.7998f, 246.7024f), new(-306.25018f, 310.8524f), new(206.56529f, -345.7905f),
+ new(366.0003f, -343.4159f), new(-324.6282f, 403.80118f), new(367.3808f, -300.8977f), new(429.0092f, -364.8166f), new(372.0913f, -343.0309f),
+ new(-345.2714f, 366.2514f), new(299.4053f, -414.37482f), new(395.17682f, -399.2705f), new(-237.0533f, 317.8833f), new(373.8908f, -300.3507f),
+ new(-377.4143f, 190.741f), new(-412.568f, 297.4205f), new(-366.7004f, 294.6592f), new(376.6374f, -246.9271f), new(-381.2343f, 182.34601f),
+ new(304.63562f, -236.61899f), new(-223.8026f, 259.5493f), new(362.02078f, -264.8291f), new(304.1107f, -362.21112f), new(355.0685f, -246.7541f),
+ new(-415.007f, 299.1135f), new(187.9402f, -300.2581f), new(383.6689f, -192.0004f), new(-221.7136f, 262.3703f), new(-366.8004f, 299.07922f),
+ new(-294.7447f, 289.06842f), new(-370.6365f, 406.1533f), new(-308.5532f, 309.9544f), new(-292.2699f, 309.4743f), new(244.4947f, -337.43088f),
+ new(426.5088f, -313.9172f), new(356.8145f, -246.0751f), new(-314.2402f, 417.9192f), new(420.6842f, -355.7176f), new(-225.5688f, 193.785f),
+ new(304.4817f, -364.0401f), new(-242.73439f, 264.75778f), new(320.757f, -350.8885f), new(-349.14642f, 248.3028f), new(366.6453f, -348.4349f),
+ new(190.1812f, -228.5301f), new(326.25043f, -178.736f), new(322.589f, -351.3985f), new(-367.956f, 361.3067f), new(-293.9259f, 309.0573f),
+ new(-409.4062f, 354.2276f), new(-238.0684f, 375.58752f), new(246.16609f, -253.31999f), new(-405.6782f, 362.72562f), new(-363.8259f, 345.769f),
+ new(-237.66829f, 319.5963f), new(-240.5493f, 306.2963f), new(231.6448f, -248.0804f), new(422.0482f, -355.40262f), new(374.18878f, -294.1427f),
+ new(292.1153f, -408.8468f), new(266.9374f, -350.1974f), new(-289.2788f, 174.89911f), new(-292.37842f, 368.3979f), new(-229.2151f, 417.8153f),
+ new(373.9779f, -192.80739f), new(-285.2178f, 181.71411f), new(-247.31909f, 250.09239f), new(-321.8352f, 417.3462f), new(-352.92642f, 242.4578f),
+ new(321.4844f, -183.465f), new(310.2849f, -346.1418f), new(242.86209f, -289.71878f), new(-361.35342f, 304.4822f), new(-247.9121f, 247.3924f),
+ new(-290.29388f, 308.9613f), new(248.51419f, -403.2219f), new(206.6343f, -342.5045f), new(-181.6019f, 372.9261f), new(308.4439f, -345.6228f),
+ new(-290.4395f, 353.4423f), new(266.8804f, -351.4634f), new(237.017f, -228.82419f), new(242.5082f, -399.1969f), new(240.06009f, -182.3035f),
+ new(254.4861f, -237.1277f), new(360.39178f, -262.65808f), new(299.1896f, -242.023f), new(-405.12918f, 358.4006f), new(326.03842f, -183.054f),
+ new(318.1634f, -366.0312f), new(-415.634f, 304.05548f), new(299.7466f, -240.35399f), new(-234.82541f, 368.96652f), new(389.08582f, -399.6545f),
+ new(183.41719f, -223.9661f), new(-293.3984f, 367.6519f), new(-285.9658f, 187.5971f), new(-366.7225f, 413.0503f), new(426.5188f, -308.8982f),
+ new(-367.34f, 364.0007f), new(-247.1621f, 248.8564f), new(318.0034f, -370.25818f), new(374.0704f, -259.8697f), new(389.7308f, -404.6745f),
+ new(365.2008f, -297.2437f), new(-185.49179f, 309.1563f), new(-293.61078f, 245.1014f), new(249.0521f, -189.69049f), new(202.7963f, -345.6215f),
+ new(264.3964f, -351.6524f), new(309.4291f, -298.7355f), new(-293.92142f, 367.7959f), new(-309.6704f, 364.2721f), new(243.15219f, -404.2129f),
+ new(-223.23259f, 262.2563f), new(-222.39981f, 200.42801f), new(292.9213f, -415.1198f), new(-367.83942f, 302.7832f), new(417.8701f, -255.8133f),
+ new(-225.39009f, 423.12833f), new(-229.3181f, 426.10233f), new(188.7852f, -298.91208f), new(-285.5398f, 176.5081f), new(316.2154f, -366.54617f),
+ new(-321.0492f, 411.16718f), new(422.8512f, -361.6626f), new(202.5493f, -346.5565f), new(326.25043f, -178.736f), new(-342.79202f, 354.1355f)
+ ]},
+ { 602, [
+ new(-361.6329f, 348.56003f), new(-397.1176f, 243.991f), new(371.8563f, -348.0289f), new(-240.63339f, 267.5758f), new(-310.2942f, 293.5097f),
+ new(-184.8399f, 362.68008f), new(-245.8001f, 250.2074f), new(319.93597f, -354.8225f), new(-355.0534f, 243.4518f), new(238.54001f, -228.7282f),
+ new(-290.83868f, 289.2854f), new(-175.5239f, 373.37808f), new(-236.3443f, 312.3143f), new(-367.43042f, 304.0252f), new(-355.9814f, 247.7838f),
+ new(-345.9224f, 363.5674f), new(-412.568f, 297.4205f), new(254.5411f, -235.8297f), new(-177.82399f, 253.7036f), new(362.16278f, -262.5431f),
+ new(-400.36218f, 363.1286f), new(-239.4424f, 362.2585f), new(202.7963f, -345.6215f), new(190.2692f, -223.5291f), new(-290.4395f, 353.4423f),
+ new(-363.8259f, 345.769f), new(-181.6019f, 372.9261f), new(304.4817f, -364.0401f), new(230.1218f, -248.17639f), new(-225.39009f, 423.12833f),
+ new(-237.66829f, 319.5963f), new(-310.5352f, 295.40668f), new(383.1959f, -199.7834f), new(243.1327f, -338.7819f), new(-223.10681f, 205.989f),
+ new(422.0482f, -355.40262f), new(-341.273f, 354.2495f), new(317.6524f, -366.13718f), new(326.25043f, -178.736f), new(304.38162f, -241.458f),
+ new(-293.9259f, 309.0573f), new(-314.2402f, 417.9192f), new(-181.605f, 248.3726f), new(376.6374f, -246.9271f), new(-309.6704f, 364.2721f),
+ new(389.08582f, -399.6545f), new(429.65918f, -354.9086f), new(248.9901f, -283.6398f), new(-365.82098f, 364.11472f), new(242.9717f, -337.5279f),
+ new(-402.0696f, 238.125f), new(-227.51671f, 244.1881f), new(249.11931f, -356.86227f), new(242.86209f, -289.71878f), new(294.23428f, -412.74182f),
+ new(374.2124f, -259.6957f), new(184.1422f, -229.6091f), new(365.2008f, -297.2437f), new(299.7466f, -240.35399f), new(-307.84317f, 309.7544f),
+ new(-290.29388f, 308.9613f), new(-381.2343f, 182.34601f), new(231.6448f, -248.0804f), new(431.2748f, -309.1902f), new(190.1812f, -228.5301f),
+ new(-289.2788f, 174.89911f), new(-292.37842f, 368.3979f), new(193.3872f, -294.8541f), new(206.6343f, -342.5045f), new(377.5799f, -192.3534f),
+ new(320.16742f, -180.16399f), new(-303.0985f, 348.85468f), new(306.7021f, -294.4175f), new(202.5493f, -346.5565f), new(298.5646f, -244.084f),
+ new(-419.936f, 294.37048f), new(-247.9121f, 247.3924f), new(316.2154f, -366.54617f), new(-372.1193f, 191.143f), new(-374.4303f, 187.40201f),
+ new(-219.9421f, 428.5313f), new(378.2364f, -246.4191f), new(-367.956f, 361.3067f), new(-391.8156f, 248.347f), new(248.51419f, -403.2219f),
+ new(372.0913f, -343.0309f), new(-409.558f, 304.51648f), new(-342.79202f, 354.1355f), new(-178.45299f, 258.6536f), new(244.4947f, -337.43088f),
+ new(300.8251f, -299.0655f), new(-289.9125f, 353.2863f), new(292.9213f, -415.1198f), new(-308.1274f, 364.87408f), new(-292.4207f, 288.28043f),
+ new(364.79028f, -346.6799f), new(-306.25018f, 310.8524f), new(389.7308f, -404.6745f), new(251.6611f, -286.99878f), new(248.7381f, -289.4058f),
+ new(-225.3927f, 247.00009f), new(-237.0533f, 317.8833f), new(-288.8965f, 354.04428f), new(-216.27081f, 206.505f), new(-188.8378f, 307.95932f),
+ new(326.03842f, -183.054f), new(240.06009f, -182.3035f), new(266.9374f, -350.1974f), new(250.65819f, -401.34488f), new(-303.8818f, 234.67339f),
+ new(-343.432f, 351.4535f), new(-361.35342f, 304.4822f), new(-177.1378f, 321.30832f), new(244.3457f, -338.8069f), new(320.757f, -350.8885f),
+ new(374.18878f, -294.1427f), new(356.8145f, -246.0751f), new(-321.0492f, 411.16718f), new(-221.7136f, 262.3703f), new(299.4053f, -414.37482f),
+ new(374.4893f, -347.2949f), new(394.93082f, -404.1725f), new(-371.6994f, 302.39722f), new(383.6689f, -192.0004f), new(206.56529f, -345.7905f),
+ new(320.9204f, -179.07199f), new(418.3381f, -247.5783f), new(-185.49179f, 309.1563f), new(-324.6282f, 403.80118f), new(-289.4949f, 309.10532f),
+ new(-369.9404f, 293.2622f), new(247.6891f, -253.224f), new(362.02078f, -264.8291f), new(426.5088f, -313.9172f), new(323.17798f, -351.2615f),
+ new(320.0004f, -366.5102f), new(248.5992f, -398.8089f), new(-349.14642f, 248.3028f), new(260.1673f, -333.7892f), new(366.6453f, -348.4349f),
+ new(310.2849f, -346.1418f), new(-293.3984f, 367.6519f), new(-397.2636f, 242.944f), new(375.8164f, -259.1897f), new(-305.2005f, 345.94067f),
+ new(-370.6365f, 406.1533f), new(-321.8352f, 417.3462f), new(292.1153f, -408.8468f), new(366.5748f, -294.62372f), new(254.4861f, -237.1277f),
+ new(353.8525f, -246.24211f), new(-307.8802f, 309.5624f), new(300.5741f, -300.4965f), new(187.2962f, -295.24408f), new(298.54462f, -237.00499f),
+ new(-366.8004f, 299.07922f), new(-172.37599f, 259.1066f), new(318.0034f, -370.25818f), new(-293.92142f, 367.7959f), new(-247.31909f, 250.09239f),
+ new(-240.5493f, 306.2963f), new(-183.9478f, 314.55533f), new(-300.7998f, 246.7024f), new(318.1634f, -366.0312f), new(-415.634f, 304.05548f),
+ new(306.4201f, -299.8965f), new(-242.15239f, 267.4618f), new(-237.4803f, 307.3483f), new(374.0704f, -259.8697f), new(-228.01541f, 375.7195f),
+ new(260.1853f, -332.6702f), new(321.4844f, -183.465f), new(242.5082f, -399.1969f), new(247.6751f, -181.8245f), new(-309.1464f, 364.12408f),
+ new(-363.15192f, 348.446f), new(355.2405f, -246.5771f), new(-308.2032f, 295.5827f), new(304.63562f, -236.61899f), new(193.2872f, -299.20407f),
+ new(-181.635f, 255.1626f), new(-277.1988f, 183.5961f), new(360.39178f, -262.65808f), new(322.589f, -351.3985f), new(308.4439f, -345.6228f),
+ new(-293.9628f, 247.2154f), new(422.7641f, -258.4043f), new(-367.4745f, 418.95828f), new(-229.3181f, 426.10233f), new(237.017f, -228.82419f),
+ new(-311.3582f, 291.23868f), new(247.4041f, -188.3525f), new(-226.9117f, 246.88509f), new(-184.7348f, 320.74432f), new(309.4291f, -298.7355f),
+ new(-367.34f, 364.0007f), new(417.2281f, -250.80429f), new(240.7392f, -400.5019f), new(188.7852f, -298.91208f), new(265.4144f, -350.2934f),
+ new(307.0079f, -346.02982f), new(-409.4062f, 354.2276f), new(-352.92642f, 242.4578f), new(-225.5688f, 193.785f), new(-226.01909f, 428.0783f),
+ new(366.0003f, -343.4159f), new(-304.4995f, 347.4647f), new(378.2229f, -197.36139f), new(-368.38342f, 293.27222f), new(-310.1562f, 310.6354f),
+ new(-222.39981f, 200.42801f), new(-174.3389f, 371.8201f), new(249.06131f, -358.1203f), new(395.17682f, -399.2705f), new(-376.8673f, 186.434f),
+ new(266.8804f, -351.4634f), new(-237.52629f, 308.1103f), new(-229.2151f, 417.8153f), new(249.0521f, -189.69049f), new(-234.82541f, 368.96652f),
+ new(-230.2153f, 318.3923f), new(-345.2714f, 366.2514f), new(-180.9719f, 367.9751f), new(187.9402f, -300.2581f), new(183.41719f, -223.9661f),
+ new(-285.9658f, 187.5971f), new(423.3171f, -250.4103f), new(378.5359f, -188.88939f), new(-405.12918f, 358.4006f), new(202.0663f, -342.79648f),
+ new(299.72928f, -408.3648f), new(253.0181f, -235.92569f), new(373.9779f, -192.80739f), new(-360.8674f, 236.9168f), new(238.483f, -230.0022f),
+ new(-178.902f, 249.2966f), new(180.9812f, -227.1111f), new(310.8649f, -345.99582f), new(301.6807f, -361.63013f), new(-235.61241f, 375.1545f),
+ new(307.0466f, -240.364f), new(242.2041f, -284.00378f), new(319.32098f, -351.2955f), new(-294.7447f, 289.06842f), new(-223.23259f, 262.2563f),
+ new(-415.007f, 299.1135f), new(299.1896f, -242.023f), new(-293.1367f, 288.4504f), new(-242.73439f, 264.75778f), new(373.8908f, -300.3507f),
+ new(-308.5532f, 309.9544f), new(429.0092f, -364.8166f), new(-377.4143f, 190.741f), new(247.5963f, -356.95828f), new(-359.7244f, 238.71579f),
+ new(417.8701f, -255.8133f), new(299.8491f, -294.8505f), new(-343.75238f, 366.36542f), new(240.8671f, -188.58049f), new(422.8512f, -361.6626f),
+ new(231.5908f, -249.3944f), new(355.0685f, -246.7541f), new(-300.0918f, 241.13739f), new(430.8338f, -316.0962f), new(-405.6782f, 362.72562f),
+ new(-223.8026f, 259.5493f), new(247.6341f, -254.51399f), new(243.15219f, -404.2129f), new(301.8107f, -365.70612f), new(304.1107f, -362.21112f),
+ new(-238.0684f, 375.58752f), new(253.17911f, -237.1807f), new(418.4961f, -247.3843f), new(-360.2165f, 419.5023f), new(-366.7225f, 413.0503f),
+ new(-292.2699f, 309.4743f), new(-278.7388f, 188.1391f), new(367.3808f, -300.8977f), new(425.9468f, -309.5352f), new(246.16609f, -253.31999f),
+ new(-366.7004f, 294.6592f), new(258.6623f, -332.7672f), new(-355.27542f, 242.2238f), new(296.1836f, -234.12599f), new(-304.6615f, 348.7367f),
+ new(376.4904f, -247.0991f), new(-236.0004f, 363.44052f), new(-285.2178f, 181.71411f), new(-293.61078f, 245.1014f), new(-292.8917f, 288.31042f),
+ new(375.2154f, -246.5521f), new(-397.8906f, 247.885f), new(302.7243f, -412.93082f), new(-223.4766f, 260.6833f), new(-321.7002f, 405.6212f),
+ new(-309.6192f, 293.9017f), new(-222.15181f, 201.623f), new(258.8233f, -334.0212f), new(-367.18298f, 362.7637f), new(-362.9949f, 347.209f),
+ new(-174.31279f, 316.7043f), new(-404.3502f, 356.7426f), new(359.1808f, -263.4791f), new(426.5188f, -308.8982f), new(-320.3802f, 412.00418f),
+ new(427.2898f, -306.4672f), new(240.57109f, -292.3938f), new(-290.68988f, 308.9363f), new(-300.3208f, 236.1984f), new(299.8291f, -302.9775f),
+ new(265.5754f, -351.5484f), new(-237.9843f, 317.5313f), new(420.6842f, -355.7176f), new(372.8544f, -259.3567f)
+ ]},
+ { 603, [
+ new(260.2039f, -347.074f), new(291.85373f, -412.3091f), new(257.2054f, -240.349f), new(-189.7554f, 369.65018f), new(-364.5689f, 406.9494f),
+ new(-307.2818f, 239.0918f), new(401.99838f, -263.44598f), new(-234.1478f, 262.47458f), new(-364.5061f, 242.8918f), new(243.8629f, -399.17572f),
+ new(-376.80948f, 188.2507f), new(-292.1148f, 253.21179f), new(313.1083f, -353.9382f), new(241.7369f, -248.2327f), new(-240.91179f, 249.60258f),
+ new(242.2517f, -284.6017f), new(-313.5198f, 356.5551f), new(201.4921f, -229.7139f), new(-402.8814f, 350.754f), new(386.7265f, -394.2866f),
+ new(-377.4675f, 193.46669f), new(-240.1679f, 299.6684f), new(302.7724f, -298.7726f), new(-346.5827f, 357.7818f), new(193.5261f, -231.2239f),
+ new(241.7579f, -245.1137f), new(249.4857f, -283.2347f), new(422.7864f, -351.65408f), new(352.7762f, -302.3564f), new(-360.7587f, 344.0578f),
+ new(260.1662f, -250.1742f), new(414.8241f, -305.9519f), new(-257.2306f, 305.76138f), new(298.81738f, -300.1586f), new(-255.3826f, 309.30038f),
+ new(322.8745f, -193.6553f), new(-192.6369f, 316.34888f), new(-344.8328f, 357.13422f), new(-300.68628f, 296.9765f), new(-299.8404f, 404.5553f),
+ new(-345.9718f, 354.91522f), new(368.0021f, -201.0746f), new(-306.4498f, 363.8041f), new(361.0828f, -261.7485f), new(-365.21512f, 248.51279f),
+ new(248.5459f, -400.5727f), new(-421.4856f, 237.8419f), new(-354.60632f, 295.9615f), new(298.9514f, -301.6196f), new(327.4605f, -188.1923f),
+ new(-356.14133f, 295.0955f), new(-184.31369f, 257.0882f), new(298.7624f, -296.1806f), new(-213.3316f, 207.17401f), new(367.219f, -342.9997f),
+ new(430.2054f, -350.2561f), new(-292.5774f, 412.0023f), new(247.2002f, -190.0004f), new(-357.5031f, 250.0718f), new(291.05972f, -406.10312f),
+ new(-239.959f, 319.39972f), new(-289.048f, 204.742f), new(-226.81259f, 194.292f), new(-178.83769f, 263.6702f), new(-304.12482f, 256.4618f),
+ new(320.9183f, -359.2052f), new(-357.2029f, 414.6194f), new(257.2374f, -237.729f), new(414.6714f, -260.32f), new(-185.2369f, 317.8419f),
+ new(248.3014f, -252.4469f), new(-361.70798f, 347.96222f), new(-398.8034f, 355.073f), new(255.1079f, -352.302f), new(254.0512f, -189.1174f),
+ new(307.18442f, -248.7014f), new(-201.4704f, 353.68118f), new(373.313f, -338.2117f), new(-300.7233f, 310.54352f), new(373.9371f, -199.9566f),
+ new(-301.5413f, 303.4935f), new(300.3604f, -249.3644f), new(260.59872f, -336.6059f), new(-351.66733f, 299.21048f), new(-236.0219f, 303.5524f),
+ new(299.75443f, -251.03639f), new(297.3844f, -247.2904f), new(247.3362f, -196.0074f), new(354.6408f, -262.1695f), new(-308.7013f, 290.37552f),
+ new(361.3568f, -255.2785f), new(210.15869f, -338.88922f), new(352.12622f, -296.96042f), new(-186.0717f, 250.7312f), new(-235.8127f, 374.2045f),
+ new(-416.72562f, 248.8329f), new(414.49908f, -313.4519f), new(361.5118f, -267.8545f), new(204.0421f, -232.2429f), new(365.517f, -339.6847f),
+ new(-247.2065f, 323.5275f), new(372.983f, -344.59372f), new(373.7051f, -205.1626f), new(-343.35278f, 357.43323f), new(-236.492f, 322.4507f),
+ new(-406.7731f, 295.6485f), new(-408.2044f, 345.01602f), new(414.9644f, -253.88899f), new(-186.5707f, 262.1112f), new(-339.08157f, 353.86493f),
+ new(290.3627f, -405.3471f), new(254.5749f, -348.14102f), new(313.8813f, -359.9772f), new(251.9787f, -286.0117f), new(414.9644f, -253.88899f),
+ new(-191.9539f, 310.9539f), new(-238.35f, 321.8927f), new(-249.0315f, 321.65552f), new(203.28969f, -340.20023f), new(-403.4944f, 355.613f),
+ new(-299.74182f, 245.3918f), new(-250.0685f, 319.7035f), new(210.08069f, -344.09222f), new(-214.73059f, 205.945f), new(-382.5665f, 182.13269f),
+ new(313.1923f, -361.9772f), new(-365.31693f, 412.8804f), new(321.2693f, -352.3982f), new(359.21722f, -301.66843f), new(-233.35379f, 256.1806f),
+ new(310.8603f, -354.9082f), new(248.2674f, -254.89389f), new(299.1017f, -411.47412f), new(-300.5764f, 410.3883f), new(-231.5125f, 417.5426f),
+ new(260.19717f, -246.8222f), new(297.5794f, -297.2626f), new(394.5015f, -399.37158f), new(-282.061f, 206.156f), new(-416.09262f, 243.8179f),
+ new(-363.188f, 347.6632f), new(203.0087f, -340.6462f), new(-252.1996f, 312.67938f), new(-220.2146f, 200.117f), new(248.6639f, -396.2367f),
+ new(255.8942f, -247.6362f), new(-409.84262f, 250.2269f), new(-301.00528f, 300.7625f), new(253.96591f, -336.14542f), new(319.9995f, -196.2003f),
+ new(299.1504f, -299.2126f), new(299.4457f, -404.52112f), new(248.9297f, -294.5467f), new(387.4975f, -400.31558f), new(-288.271f, 200.125f),
+ new(-249.30449f, 323.0195f), new(253.8939f, -339.4794f), new(-238.276f, 322.61572f), new(253.98619f, -194.9374f), new(190.26129f, -296.7904f),
+ new(-300.51382f, 251.51779f), new(-226.47049f, 422.7126f), new(237.8899f, -245.84569f), new(-341.6316f, 351.29892f), new(189.0763f, -298.48343f),
+ new(-403.23712f, 303.71548f), new(366.255f, -345.4527f), new(302.8594f, -295.4066f), new(249.86491f, -340.35242f), new(260.5877f, -337.78592f),
+ new(260.1059f, -351.247f), new(266.7735f, -344.93808f), new(-288.406f, 199.651f), new(-371.3139f, 400.4824f), new(307.5144f, -242.0244f),
+ new(376.455f, -342.7927f), new(197.2943f, -295.4584f), new(-320.6128f, 350.7901f), new(249.43591f, -337.00342f), new(-364.27512f, 239.99979f),
+ new(-197.3454f, 361.8672f), new(-352.0003f, 303.0565f), new(-255.7186f, 311.9484f), new(-321.4178f, 360.17712f), new(-244.4547f, 372.4635f),
+ new(-224.9198f, 259.9816f), new(-398.1671f, 304.7425f), new(-419.50262f, 239.53691f), new(-350.03232f, 297.25348f), new(368.5651f, -205.4696f),
+ new(429.9364f, -356.8071f), new(-189.5517f, 248.8732f), new(-405.20212f, 296.94348f), new(-346.8763f, 304.1225f), new(327.1075f, -194.6973f),
+ new(353.9378f, -256.6755f), new(319.40952f, -189.7133f), new(-243.65671f, 366.16052f), new(-314.2348f, 362.23212f), new(-234.4625f, 412.1756f),
+ new(262.7615f, -342.5141f), new(304.4464f, -297.5296f), new(-364.266f, 345.40622f), new(242.9377f, -289.7997f), new(242.4317f, -290.47272f),
+ new(203.9397f, -345.26822f), new(-195.5399f, 303.7129f), new(433.2324f, -354.9131f), new(-288.724f, 199.075f), new(-354.6157f, 356.15778f),
+ new(-402.77112f, 300.0205f), new(408.11838f, -260.912f), new(394.8745f, -392.7476f), new(364.3828f, -259.6975f), new(362.5132f, -299.8024f),
+ new(353.1332f, -300.46042f), new(196.23709f, -233.6129f), new(-371.0051f, 236.8288f), new(-197.1434f, 363.1782f), new(-248.1907f, 357.7705f),
+ new(-238.32889f, 303.0864f), new(-292.6243f, 305.2435f), new(197.2043f, -300.82343f), new(359.54523f, -295.55942f), new(-351.96732f, 301.8895f),
+ new(406.3761f, -307.5429f), new(-220.91159f, 205.644f), new(-294.234f, 194.142f), new(-300.5383f, 298.6245f), new(-306.1673f, 292.06952f),
+ new(-225.5148f, 264.2176f), new(324.3503f, -356.2462f), new(299.61142f, -243.5164f), new(249.4597f, -289.0297f), new(259.11472f, -336.88593f),
+ new(-238.1169f, 301.4044f), new(-306.8364f, 412.0043f), new(-396.8244f, 356.965f), new(194.28009f, -237.1129f), new(414.94608f, -317.0509f),
+ new(-307.1684f, 398.6853f), new(-368.72913f, 238.0808f), new(-185.85669f, 256.4732f), new(-198.1164f, 367.9632f), new(242.7289f, -397.3617f),
+ new(-415.7376f, 251.4689f), new(407.1781f, -313.7969f), new(-246.6987f, 367.0385f), new(-400.2531f, 304.8485f), new(245.1384f, -253.04489f),
+ new(-232.02449f, 421.5936f), new(-232.02449f, 421.5936f), new(190.92729f, -301.99042f), new(-233.5215f, 417.1576f), new(-370.3075f, 194.9187f),
+ new(407.4014f, -255.314f), new(-340.56158f, 353.56592f), new(253.82541f, -238.37401f), new(266.7945f, -341.7521f), new(-238.9988f, 251.61159f),
+ new(-233.35379f, 256.1806f), new(201.3441f, -235.4919f), new(243.2909f, -401.74872f), new(-305.0108f, 240.80879f), new(-369.4789f, 402.1924f),
+ new(-189.6319f, 311.8849f), new(-353.87772f, 350.3028f), new(310.56442f, -245.9934f), new(-238.24901f, 320.6487f), new(432.1624f, -356.8751f),
+ new(423.4894f, -357.1471f), new(-255.9996f, 308.1904f), new(-313.4378f, 357.78912f), new(298.7624f, -296.1806f), new(254.1494f, -240.897f),
+ new(-292.5774f, 412.0023f), new(414.9644f, -253.88899f), new(-243.7477f, 359.8305f), new(-364.59293f, 408.2354f), new(330.6545f, -192.6703f),
+ new(353.7098f, -265.2925f), new(302.8594f, -295.4066f), new(-380.4445f, 183.8187f), new(256.3022f, -250.8182f), new(297.8454f, -293.0436f),
+ new(297.86243f, -237.5464f), new(389.25452f, -397.5816f), new(-363.052f, 346.5852f), new(-249.05249f, 320.7835f), new(319.40952f, -189.7133f),
+ new(-304.9384f, 400.2463f), new(-318.5588f, 352.4171f), new(-292.1148f, 253.21179f), new(370.9701f, -211.2686f), new(242.00119f, -195.0754f),
+ new(-233.40779f, 256.9246f), new(254.0512f, -189.1174f), new(-370.90347f, 190.9337f), new(-192.2499f, 305.4859f)
+ ]},
+ { 604, [
+ new(-201.4704f, 353.68118f), new(257.2374f, -237.729f), new(-357.2029f, 414.6194f), new(414.8241f, -305.9519f), new(-409.84262f, 250.2269f),
+ new(361.0828f, -261.7485f), new(-371.0051f, 236.8288f), new(353.1332f, -300.46042f), new(-308.7013f, 290.37552f), new(-408.2044f, 345.01602f),
+ new(307.5144f, -242.0244f), new(-289.048f, 204.742f), new(-307.1684f, 398.6853f), new(248.5459f, -400.5727f), new(-249.30449f, 323.0195f),
+ new(373.7051f, -205.1626f), new(-398.8034f, 355.073f), new(248.9297f, -294.5467f), new(299.1504f, -299.2126f), new(-357.5031f, 250.0718f),
+ new(253.98619f, -194.9374f), new(-294.234f, 194.142f), new(212.2437f, -340.8262f), new(248.2674f, -254.89389f), new(304.4464f, -297.5296f),
+ new(-398.1671f, 304.7425f), new(-178.83769f, 263.6702f), new(-243.7477f, 359.8305f), new(-226.81259f, 194.292f), new(430.2054f, -350.2561f),
+ new(302.7724f, -298.7726f), new(414.6714f, -260.32f), new(387.4975f, -400.31558f), new(-292.1148f, 253.21179f), new(-400.2531f, 304.8485f),
+ new(-238.32889f, 303.0864f), new(-370.3075f, 194.9187f), new(298.7624f, -296.1806f), new(190.26129f, -296.7904f), new(-192.6369f, 316.34888f),
+ new(189.0763f, -298.48343f), new(300.3604f, -249.3644f), new(-195.5399f, 303.7129f), new(201.4921f, -229.7139f), new(-361.70798f, 347.96222f),
+ new(241.7579f, -245.1137f), new(210.08069f, -344.09222f), new(353.9378f, -256.6755f), new(-346.8763f, 304.1225f), new(-321.4178f, 360.17712f),
+ new(-403.23712f, 303.71548f), new(-360.7587f, 344.0578f), new(-313.5198f, 356.5551f), new(-343.35278f, 357.43323f), new(259.11472f, -336.88593f),
+ new(-292.5774f, 412.0023f), new(-301.5413f, 303.4935f), new(260.59872f, -336.6059f), new(260.19717f, -246.8222f), new(254.0512f, -189.1174f),
+ new(201.3441f, -235.4919f), new(373.313f, -338.2117f), new(-339.08157f, 353.86493f), new(-236.492f, 322.4507f), new(372.983f, -344.59372f),
+ new(-239.959f, 319.39972f), new(321.2693f, -352.3982f), new(260.5877f, -337.78592f), new(-300.51382f, 251.51779f), new(-364.59293f, 408.2354f),
+ new(242.9377f, -289.7997f), new(-292.6243f, 305.2435f), new(352.12622f, -296.96042f), new(255.8942f, -247.6362f), new(-185.2369f, 317.8419f),
+ new(-247.2065f, 323.5275f), new(-236.0219f, 303.5524f), new(-249.0315f, 321.65552f), new(366.255f, -345.4527f), new(260.2039f, -347.074f),
+ new(266.7735f, -344.93808f), new(302.8594f, -295.4066f), new(-364.266f, 345.40622f), new(-234.1478f, 262.47458f), new(313.8813f, -359.9772f),
+ new(-382.5665f, 182.13269f), new(324.3503f, -356.2462f), new(266.7945f, -341.7521f), new(203.28969f, -340.20023f), new(429.9364f, -356.8071f),
+ new(422.7864f, -351.65408f), new(-421.4856f, 237.8419f), new(394.5015f, -399.37158f), new(-282.061f, 206.156f), new(243.2909f, -401.74872f),
+ new(-320.6128f, 350.7901f), new(-406.7731f, 295.6485f), new(260.1059f, -351.247f), new(253.96591f, -336.14542f), new(-220.91159f, 205.644f),
+ new(354.6408f, -262.1695f), new(364.3828f, -259.6975f), new(299.61142f, -243.5164f), new(-341.6316f, 351.29892f), new(368.5651f, -205.4696f),
+ new(414.49908f, -313.4519f), new(-220.2146f, 200.117f), new(365.517f, -339.6847f), new(352.7762f, -302.3564f), new(394.8745f, -392.7476f),
+ new(257.2054f, -240.349f), new(373.9371f, -199.9566f), new(-191.9539f, 310.9539f), new(-252.1996f, 312.67938f), new(248.3014f, -252.4469f),
+ new(-246.6987f, 367.0385f), new(359.21722f, -301.66843f), new(299.4457f, -404.52112f), new(406.3761f, -307.5429f), new(297.5794f, -297.2626f),
+ new(-213.3316f, 207.17401f), new(-350.03232f, 297.25348f), new(-248.1907f, 357.7705f), new(-189.5517f, 248.8732f), new(407.4014f, -255.314f),
+ new(-233.35379f, 256.1806f), new(-225.5148f, 264.2176f), new(-365.31693f, 412.8804f), new(-351.66733f, 299.21048f), new(297.3844f, -247.2904f),
+ new(-255.7186f, 311.9484f), new(313.1083f, -353.9382f), new(253.82541f, -238.37401f), new(-234.4625f, 412.1756f), new(-197.3454f, 361.8672f),
+ new(-307.2818f, 239.0918f), new(414.9644f, -253.88899f), new(361.3568f, -255.2785f), new(-224.9198f, 259.9816f), new(-415.7376f, 251.4689f),
+ new(320.9183f, -359.2052f), new(-235.8127f, 374.2045f), new(-354.6157f, 356.15778f), new(-356.14133f, 295.0955f), new(249.4857f, -283.2347f),
+ new(-314.2348f, 362.23212f), new(307.18442f, -248.7014f), new(242.2517f, -284.6017f), new(367.219f, -342.9997f), new(249.4597f, -289.0297f),
+ new(-233.35379f, 256.1806f), new(-250.0685f, 319.7035f), new(291.85373f, -412.3091f), new(-300.7233f, 310.54352f), new(386.7265f, -394.2866f),
+ new(361.5118f, -267.8545f), new(-189.7554f, 369.65018f), new(359.54523f, -295.55942f), new(-402.8814f, 350.754f), new(-232.02449f, 421.5936f),
+ new(-255.3826f, 309.30038f), new(197.2943f, -295.4584f), new(-240.1679f, 299.6684f), new(291.05972f, -406.10312f), new(-352.0003f, 303.0565f),
+ new(-300.68628f, 296.9765f), new(190.92729f, -301.99042f), new(-344.8328f, 357.13422f), new(210.15869f, -338.88922f), new(327.4605f, -188.1923f),
+ new(247.2002f, -190.0004f), new(327.1075f, -194.6973f), new(-197.3454f, 361.8672f), new(408.11838f, -260.912f), new(414.9644f, -253.88899f),
+ new(-226.47049f, 422.7126f), new(-243.65671f, 366.16052f), new(248.6639f, -396.2367f), new(-345.9718f, 354.91522f), new(319.40952f, -189.7133f),
+ new(197.2043f, -300.82343f), new(-306.4498f, 363.8041f), new(-403.4944f, 355.613f), new(249.43591f, -337.00342f), new(-371.3139f, 400.4824f),
+ new(298.81738f, -300.1586f), new(-416.72562f, 248.8329f), new(-396.8244f, 356.965f), new(-300.5764f, 410.3883f), new(-364.5689f, 406.9494f),
+ new(-346.5827f, 357.7818f), new(370.9701f, -211.2686f), new(-198.1164f, 367.9632f), new(299.1017f, -411.47412f), new(310.8603f, -354.9082f),
+ new(-288.271f, 200.125f), new(-416.09262f, 243.8179f), new(-304.12482f, 256.4618f), new(299.75443f, -251.03639f), new(-238.35f, 321.8927f),
+ new(-244.4547f, 372.4635f), new(-299.8404f, 404.5553f), new(260.1662f, -250.1742f), new(-300.5383f, 298.6245f), new(-376.80948f, 188.2507f),
+ new(-365.21512f, 248.51279f), new(423.4894f, -357.1471f), new(-257.2306f, 305.76138f), new(241.7369f, -248.2327f), new(254.5749f, -348.14102f),
+ new(262.7615f, -342.5141f), new(407.1781f, -313.7969f), new(-240.91179f, 249.60258f), new(245.1384f, -253.04489f), new(-184.31369f, 257.0882f),
+ new(-377.4675f, 193.46669f), new(-364.5061f, 242.8918f), new(242.7289f, -397.3617f), new(319.9995f, -196.2003f), new(-231.5125f, 417.5426f),
+ new(-354.60632f, 295.9615f), new(-299.74182f, 245.3918f), new(368.0021f, -201.0746f), new(203.9397f, -345.26822f), new(253.8939f, -339.4794f),
+ new(203.0087f, -340.6462f), new(247.3362f, -196.0074f), new(-288.406f, 199.651f), new(194.28009f, -237.1129f), new(193.5261f, -231.2239f),
+ new(-402.77112f, 300.0205f), new(310.56442f, -245.9934f), new(322.8745f, -193.6553f), new(-185.85669f, 256.4732f), new(-186.5707f, 262.1112f),
+ new(-364.27512f, 239.99979f), new(-238.1169f, 301.4044f), new(-306.1673f, 292.06952f), new(313.1923f, -361.9772f), new(-304.9384f, 400.2463f),
+ new(297.8454f, -293.0436f), new(-370.90347f, 190.9337f), new(237.8899f, -245.84569f), new(-197.1434f, 363.1782f), new(389.25452f, -397.5816f),
+ new(-214.73059f, 205.945f), new(-233.5215f, 417.1576f), new(-238.276f, 322.61572f), new(-409.84262f, 250.2269f), new(-368.72913f, 238.0808f),
+ new(-232.02449f, 421.5936f), new(-305.0108f, 240.80879f), new(-231.6335f, 413.47058f), new(-306.8364f, 412.0043f), new(245.4384f, -255.3839f),
+ new(-189.6319f, 311.8849f), new(210.15869f, -338.88922f), new(311.3503f, -347.9402f), new(243.8629f, -399.17572f), new(-405.20212f, 296.94348f),
+ new(432.1624f, -356.8751f), new(242.00119f, -195.0754f), new(290.3627f, -405.3471f), new(-238.9988f, 251.61159f), new(-363.188f, 347.6632f),
+ new(196.23709f, -233.6129f), new(-370.3075f, 194.9187f), new(-299.56882f, 247.0928f), new(-340.56158f, 353.56592f)
+ ]},
+ { 605, [
+ new(-292.6243f, 305.2435f), new(359.54523f, -295.55942f), new(-234.4625f, 412.1756f), new(414.9644f, -253.88899f), new(-364.5689f, 406.9494f),
+ new(367.219f, -342.9997f), new(352.12622f, -296.96042f), new(-403.23712f, 303.71548f), new(-344.6968f, 356.0562f), new(247.3362f, -196.0074f),
+ new(266.7945f, -341.7521f), new(373.313f, -338.2117f), new(260.19717f, -246.8222f), new(-300.51382f, 251.51779f), new(414.9644f, -253.88899f),
+ new(297.86243f, -237.5464f), new(-382.5665f, 182.13269f), new(-306.1673f, 292.06952f), new(394.8745f, -392.7476f), new(248.3014f, -252.4469f),
+ new(201.4921f, -229.7139f), new(-197.3454f, 361.8672f), new(407.1781f, -313.7969f), new(364.3828f, -259.6975f), new(203.0087f, -340.6462f),
+ new(310.8603f, -354.9082f), new(-409.84262f, 250.2269f), new(194.28009f, -237.1129f), new(313.8813f, -359.9772f), new(422.7864f, -351.65408f),
+ new(-364.59293f, 408.2354f), new(248.5459f, -400.5727f), new(197.2043f, -300.82343f), new(-255.7186f, 311.9484f), new(-370.90347f, 190.9337f),
+ new(-233.35379f, 256.1806f), new(-238.9988f, 251.61159f), new(-351.66733f, 299.21048f), new(429.9364f, -356.8071f), new(-301.5413f, 303.4935f),
+ new(-220.2146f, 200.117f), new(255.8942f, -247.6362f), new(-201.4704f, 353.68118f), new(-345.9718f, 354.91522f), new(-396.8244f, 356.965f),
+ new(368.0021f, -201.0746f), new(-350.03232f, 297.25348f), new(394.5015f, -399.37158f), new(-354.60632f, 295.9615f), new(260.1662f, -250.1742f),
+ new(327.4605f, -188.1923f), new(313.1083f, -353.9382f), new(-249.0315f, 321.65552f), new(-398.1671f, 304.7425f), new(353.7098f, -265.2925f),
+ new(-235.8127f, 374.2045f), new(307.5144f, -242.0244f), new(-371.3139f, 400.4824f), new(-233.5215f, 417.1576f), new(307.18442f, -248.7014f),
+ new(373.9371f, -199.9566f), new(298.81738f, -300.1586f), new(-301.00528f, 300.7625f), new(-357.2029f, 414.6194f), new(359.21722f, -301.66843f),
+ new(-288.271f, 200.125f), new(-189.7554f, 369.65018f), new(298.7624f, -296.1806f), new(-249.05249f, 320.7835f), new(-361.70798f, 347.96222f),
+ new(320.9183f, -359.2052f), new(-243.65671f, 366.16052f), new(-357.5031f, 250.0718f), new(257.2374f, -237.729f), new(-240.91179f, 249.60258f),
+ new(-185.85669f, 256.4732f), new(-300.7233f, 310.54352f), new(-185.2369f, 317.8419f), new(-250.0685f, 319.7035f), new(-364.266f, 345.40622f),
+ new(254.0512f, -189.1174f), new(-282.061f, 206.156f), new(-225.5148f, 264.2176f), new(-307.2818f, 239.0918f), new(-192.6369f, 316.34888f),
+ new(353.9378f, -256.6755f), new(-300.68628f, 296.9765f), new(-339.08157f, 353.86493f), new(376.3741f, -203.5856f), new(-416.09262f, 243.8179f),
+ new(-376.80948f, 188.2507f), new(-238.35f, 321.8927f), new(-304.9384f, 400.2463f), new(253.82541f, -238.37401f), new(-356.14133f, 295.0955f),
+ new(-299.74182f, 245.3918f), new(-415.7376f, 251.4689f), new(245.1384f, -253.04489f), new(190.92729f, -301.99042f), new(249.4597f, -289.0297f),
+ new(249.43591f, -337.00342f), new(387.4975f, -400.31558f), new(210.08069f, -344.09222f), new(-365.31693f, 412.8804f), new(361.3568f, -255.2785f),
+ new(354.6408f, -262.1695f), new(302.7724f, -298.7726f), new(-314.2348f, 362.23212f), new(241.7369f, -248.2327f), new(291.05972f, -406.10312f),
+ new(-408.2044f, 345.01602f), new(-178.83769f, 263.6702f), new(408.11838f, -260.912f), new(-198.1164f, 367.9632f), new(-248.1907f, 357.7705f),
+ new(-240.1679f, 299.6684f), new(-370.3075f, 194.9187f), new(-368.72913f, 238.0808f), new(266.7735f, -344.93808f), new(-313.5198f, 356.5551f),
+ new(-360.7587f, 344.0578f), new(210.15869f, -338.88922f), new(414.6714f, -260.32f), new(-300.5764f, 410.3883f), new(-294.234f, 194.142f),
+ new(-402.77112f, 300.0205f), new(321.2693f, -352.3982f), new(242.7289f, -397.3617f), new(-406.7731f, 295.6485f), new(248.6639f, -396.2367f),
+ new(-321.4178f, 360.17712f), new(-343.35278f, 357.43323f), new(-351.96732f, 301.8895f), new(-232.02449f, 421.5936f), new(201.3441f, -235.4919f),
+ new(-402.8814f, 350.754f), new(-341.6316f, 351.29892f), new(-246.6987f, 367.0385f), new(366.255f, -345.4527f), new(-244.4547f, 372.4635f),
+ new(-308.7013f, 290.37552f), new(299.75443f, -251.03639f), new(-197.3454f, 361.8672f), new(-236.492f, 322.4507f), new(-249.30449f, 323.0195f),
+ new(406.3761f, -307.5429f), new(-288.406f, 199.651f), new(-224.9198f, 259.9816f), new(299.1017f, -411.47412f), new(297.5794f, -297.2626f),
+ new(241.7579f, -245.1137f), new(299.1504f, -299.2126f), new(248.2674f, -254.89389f), new(290.3627f, -405.3471f), new(430.2054f, -350.2561f),
+ new(193.5261f, -231.2239f), new(389.25452f, -397.5816f), new(-371.0051f, 236.8288f), new(299.61142f, -243.5164f), new(-307.1684f, 398.6853f),
+ new(386.7265f, -394.2866f), new(-344.8328f, 357.13422f), new(-232.02449f, 421.5936f), new(-400.2531f, 304.8485f), new(-189.5517f, 248.8732f),
+ new(-419.50262f, 239.53691f), new(257.2054f, -240.349f), new(-247.2065f, 323.5275f), new(324.3503f, -356.2462f), new(-346.8763f, 304.1225f),
+ new(-352.0003f, 303.0565f), new(190.26129f, -296.7904f), new(-403.4944f, 355.613f), new(247.2002f, -190.0004f), new(-365.21512f, 248.51279f),
+ new(376.455f, -342.7927f), new(-421.4856f, 237.8419f), new(255.1079f, -352.302f), new(-363.188f, 347.6632f), new(-346.5827f, 357.7818f),
+ new(-257.2306f, 305.76138f), new(-189.6319f, 311.8849f), new(260.59872f, -336.6059f), new(-306.8364f, 412.0043f), new(253.98619f, -194.9374f),
+ new(-340.56158f, 353.56592f), new(407.4014f, -255.314f), new(189.0763f, -298.48343f), new(-320.6128f, 350.7901f), new(253.8939f, -339.4794f),
+ new(-226.47049f, 422.7126f), new(-304.12482f, 256.4618f), new(304.4464f, -297.5296f), new(327.1075f, -194.6973f), new(310.56442f, -245.9934f),
+ new(299.4457f, -404.52112f), new(-195.5399f, 303.7129f), new(-292.5774f, 412.0023f), new(361.0828f, -261.7485f), new(-252.1996f, 312.67938f),
+ new(423.4894f, -357.1471f), new(372.983f, -344.59372f), new(254.5749f, -348.14102f), new(249.4857f, -283.2347f), new(197.2943f, -295.4584f),
+ new(-299.8404f, 404.5553f), new(401.99838f, -263.44598f), new(-233.40779f, 256.9246f), new(260.2039f, -347.074f), new(242.2517f, -284.6017f),
+ new(300.3604f, -249.3644f), new(253.96591f, -336.14542f), new(302.8594f, -295.4066f), new(-238.24901f, 320.6487f), new(-234.1478f, 262.47458f),
+ new(-364.5061f, 242.8918f), new(352.7762f, -302.3564f), new(414.8241f, -305.9519f), new(-306.4498f, 363.8041f), new(-398.8034f, 355.073f),
+ new(-239.959f, 319.39972f), new(-238.1169f, 301.4044f), new(353.1332f, -300.46042f), new(-226.81259f, 194.292f), new(-213.3316f, 207.17401f),
+ new(262.7615f, -342.5141f), new(-354.6157f, 356.15778f), new(365.517f, -339.6847f), new(361.5118f, -267.8545f), new(242.9377f, -289.7997f),
+ new(-236.0219f, 303.5524f), new(-220.91159f, 205.644f), new(-318.5588f, 352.4171f), new(260.1059f, -351.247f), new(-214.73059f, 205.945f),
+ new(-416.72562f, 248.8329f), new(291.85373f, -412.3091f), new(-191.9539f, 310.9539f), new(-377.4675f, 193.46669f), new(297.3844f, -247.2904f),
+ new(203.9397f, -345.26822f), new(-292.1148f, 253.21179f), new(-289.048f, 204.742f), new(248.9297f, -294.5467f), new(-184.31369f, 257.0882f),
+ new(-186.5707f, 262.1112f), new(362.5132f, -299.8024f), new(313.1923f, -361.9772f), new(414.49908f, -313.4519f), new(243.2909f, -401.74872f),
+ new(203.28969f, -340.20023f), new(-300.5383f, 298.6245f), new(-364.27512f, 239.99979f), new(260.5877f, -337.78592f), new(373.7051f, -205.1626f),
+ new(-233.35379f, 256.1806f), new(319.40952f, -189.7133f), new(-238.32889f, 303.0864f), new(-231.5125f, 417.5426f), new(311.3503f, -347.9402f),
+ new(370.9701f, -211.2686f), new(259.11472f, -336.88593f), new(-405.20212f, 296.94348f), new(319.9995f, -196.2003f), new(-243.7477f, 359.8305f),
+ new(-357.2029f, 414.6194f), new(-245.9847f, 357.1285f), new(-406.3294f, 346.678f), new(298.9514f, -301.6196f), new(263.1445f, -345.4971f),
+ new(322.8745f, -193.6553f), new(-340.4256f, 352.4879f), new(-255.3826f, 309.30038f), new(330.6545f, -192.6703f), new(-231.6335f, 413.47058f),
+ new(-357.5031f, 250.0718f), new(297.8454f, -293.0436f), new(-403.48538f, 348.89902f), new(-363.052f, 346.5852f), new(-197.7744f, 355.70718f),
+ new(251.9787f, -286.0117f), new(414.94608f, -317.0509f), new(-305.0108f, 240.80879f), new(238.2569f, -248.70569f), new(-380.4445f, 183.8187f),
+ new(368.5651f, -205.4696f), new(-197.1434f, 363.1782f), new(248.5459f, -400.5727f), new(237.8899f, -245.84569f), new(-402.7804f, 352.301f)
+ ]},
+ { 606, [
+ new(-292.5774f, 412.0023f), new(406.3761f, -307.5429f), new(398.0795f, -397.1536f), new(407.4014f, -255.314f), new(-255.7186f, 311.9484f),
+ new(299.1504f, -299.2126f), new(241.7579f, -245.1137f), new(-186.5707f, 262.1112f), new(-364.5061f, 242.8918f), new(389.25452f, -397.5816f),
+ new(-357.2029f, 414.6194f), new(297.3844f, -247.2904f), new(386.7265f, -394.2866f), new(-344.8328f, 357.13422f), new(-364.266f, 345.40622f),
+ new(361.5118f, -267.8545f), new(-255.3826f, 309.30038f), new(313.1923f, -361.9772f), new(300.3604f, -249.3644f), new(-299.74182f, 245.3918f),
+ new(-343.35278f, 357.43323f), new(-250.0685f, 319.7035f), new(-248.1907f, 357.7705f), new(255.8942f, -247.6362f), new(247.3362f, -196.0074f),
+ new(-300.51382f, 251.51779f), new(353.9378f, -256.6755f), new(190.92729f, -301.99042f), new(-369.4789f, 402.1924f), new(253.8939f, -339.4794f),
+ new(193.5261f, -231.2239f), new(-201.4704f, 353.68118f), new(-257.2306f, 305.76138f), new(-197.3454f, 361.8672f), new(-213.3316f, 207.17401f),
+ new(260.5877f, -337.78592f), new(-236.0219f, 303.5524f), new(-376.80948f, 188.2507f), new(-371.0051f, 236.8288f), new(-364.5689f, 406.9494f),
+ new(210.08069f, -344.09222f), new(197.2043f, -300.82343f), new(-346.5827f, 357.7818f), new(-226.47049f, 422.7126f), new(366.255f, -345.4527f),
+ new(368.0021f, -201.0746f), new(253.82541f, -238.37401f), new(247.2002f, -190.0004f), new(354.6408f, -262.1695f), new(-363.188f, 347.6632f),
+ new(-306.4498f, 363.8041f), new(299.61142f, -243.5164f), new(408.11838f, -260.912f), new(190.26129f, -296.7904f), new(372.983f, -344.59372f),
+ new(313.8813f, -359.9772f), new(299.75443f, -251.03639f), new(-345.9718f, 354.91522f), new(-400.2531f, 304.8485f), new(-236.492f, 322.4507f),
+ new(307.18442f, -248.7014f), new(194.28009f, -237.1129f), new(-314.2348f, 362.23212f), new(-360.7587f, 344.0578f), new(302.7724f, -298.7726f),
+ new(-307.2818f, 239.0918f), new(-304.12482f, 256.4618f), new(-306.1673f, 292.06952f), new(-185.85669f, 256.4732f), new(266.7735f, -344.93808f),
+ new(-403.4944f, 355.613f), new(-416.72562f, 248.8329f), new(-244.4547f, 372.4635f), new(-346.8763f, 304.1225f), new(248.3014f, -252.4469f),
+ new(249.43591f, -337.00342f), new(387.4975f, -400.31558f), new(320.9183f, -359.2052f), new(-193.89189f, 303.4509f), new(-299.8404f, 404.5553f),
+ new(253.96591f, -336.14542f), new(297.8454f, -293.0436f), new(201.4921f, -229.7139f), new(-192.2499f, 305.4859f), new(242.9377f, -289.7997f),
+ new(254.0512f, -189.1174f), new(-288.271f, 200.125f), new(-352.0003f, 303.0565f), new(299.1017f, -411.47412f), new(-308.7013f, 290.37552f),
+ new(-233.35379f, 256.1806f), new(373.313f, -338.2117f), new(-321.4178f, 360.17712f), new(-320.6128f, 350.7901f), new(242.7289f, -397.3617f),
+ new(-318.5588f, 352.4171f), new(-377.4675f, 193.46669f), new(249.4857f, -283.2347f), new(249.4597f, -289.0297f), new(365.517f, -339.6847f),
+ new(-370.3075f, 194.9187f), new(260.2039f, -347.074f), new(394.5015f, -399.37158f), new(-239.959f, 319.39972f), new(-185.2369f, 317.8419f),
+ new(-300.68628f, 296.9765f), new(-416.09262f, 243.8179f), new(313.1083f, -353.9382f), new(310.8603f, -354.9082f), new(401.99838f, -263.44598f),
+ new(-240.1679f, 299.6684f), new(376.455f, -342.7927f), new(-195.5399f, 303.7129f), new(-232.02449f, 421.5936f), new(414.8241f, -305.9519f),
+ new(242.2517f, -284.6017f), new(319.9995f, -196.2003f), new(-339.08157f, 353.86493f), new(260.1662f, -250.1742f), new(248.5459f, -400.5727f),
+ new(414.49908f, -313.4519f), new(407.1781f, -313.7969f), new(394.8745f, -392.7476f), new(373.9371f, -199.9566f), new(-243.65671f, 366.16052f),
+ new(-361.70798f, 347.96222f), new(-289.048f, 204.742f), new(352.7762f, -302.3564f), new(-402.77112f, 300.0205f), new(210.15869f, -338.88922f),
+ new(-252.1996f, 312.67938f), new(422.7864f, -351.65408f), new(-396.8244f, 356.965f), new(-247.2065f, 323.5275f), new(237.8899f, -245.84569f),
+ new(242.00119f, -195.0754f), new(259.2557f, -337.98392f), new(257.2374f, -237.729f), new(245.1384f, -253.04489f), new(-189.5517f, 248.8732f),
+ new(-220.2146f, 200.117f), new(359.21722f, -301.66843f), new(-238.9988f, 251.61159f), new(-354.60632f, 295.9615f), new(-288.406f, 199.651f),
+ new(-235.8127f, 374.2045f), new(-313.5198f, 356.5551f), new(353.1332f, -300.46042f), new(295.9614f, -296.8906f), new(-382.5665f, 182.13269f),
+ new(266.7945f, -341.7521f), new(-351.66733f, 299.21048f), new(260.1059f, -351.247f), new(-408.2044f, 345.01602f), new(248.9297f, -294.5467f),
+ new(299.4457f, -404.52112f), new(-189.7554f, 369.65018f), new(-198.1164f, 367.9632f), new(-300.5383f, 298.6245f), new(-307.1684f, 398.6853f),
+ new(-178.83769f, 263.6702f), new(-294.234f, 194.142f), new(-292.1148f, 253.21179f), new(-357.5031f, 250.0718f), new(-313.4378f, 357.78912f),
+ new(259.11472f, -336.88593f), new(-220.91159f, 205.644f), new(291.85373f, -412.3091f), new(-371.3139f, 400.4824f), new(-238.35f, 321.8927f),
+ new(-301.5413f, 303.4935f), new(359.54523f, -295.55942f), new(-398.1671f, 304.7425f), new(290.3627f, -405.3471f), new(-398.8034f, 355.073f),
+ new(414.6714f, -260.32f), new(298.7624f, -296.1806f), new(262.7615f, -342.5141f), new(361.0828f, -261.7485f), new(304.4464f, -297.5296f),
+ new(260.59872f, -336.6059f), new(-365.21512f, 248.51279f), new(-292.6243f, 305.2435f), new(430.2054f, -350.2561f), new(373.7051f, -205.1626f),
+ new(367.219f, -342.9997f), new(-305.0108f, 240.80879f), new(291.05972f, -406.10312f), new(352.12622f, -296.96042f), new(298.81738f, -300.1586f),
+ new(423.4894f, -357.1471f), new(-189.6319f, 311.8849f), new(361.3568f, -255.2785f), new(302.8594f, -295.4066f), new(-249.30449f, 323.0195f),
+ new(-234.4625f, 412.1756f), new(310.56442f, -245.9934f), new(-402.8814f, 350.754f), new(-231.5125f, 417.5426f), new(257.2054f, -240.349f),
+ new(241.7369f, -248.2327f), new(-224.9198f, 259.9816f), new(-192.6369f, 316.34888f), new(414.9644f, -253.88899f), new(254.5749f, -348.14102f),
+ new(-238.32889f, 303.0864f), new(197.2943f, -295.4584f), new(-406.7731f, 295.6485f), new(-356.14133f, 295.0955f), new(-282.061f, 206.156f),
+ new(-301.00528f, 300.7625f), new(-341.6316f, 351.29892f), new(-233.35379f, 256.1806f), new(327.1075f, -194.6973f), new(-246.6987f, 367.0385f),
+ new(-238.24901f, 320.6487f), new(414.9644f, -253.88899f), new(-300.7233f, 310.54352f), new(260.19717f, -246.8222f), new(203.28969f, -340.20023f),
+ new(-350.03232f, 297.25348f), new(319.40952f, -189.7133f), new(324.3503f, -356.2462f), new(429.9364f, -356.8071f), new(-225.5148f, 264.2176f),
+ new(368.5651f, -205.4696f), new(-403.23712f, 303.71548f), new(196.23709f, -233.6129f), new(327.4605f, -188.1923f), new(-365.31693f, 412.8804f),
+ new(248.6639f, -396.2367f), new(321.2693f, -352.3982f), new(297.5794f, -297.2626f), new(-300.5764f, 410.3883f), new(-234.1478f, 262.47458f),
+ new(253.98619f, -194.9374f), new(-226.81259f, 194.292f), new(-191.9539f, 310.9539f), new(-240.91179f, 249.60258f), new(248.2674f, -254.89389f),
+ new(-409.84262f, 250.2269f), new(-421.4856f, 237.8419f), new(201.3441f, -235.4919f), new(307.5144f, -242.0244f), new(-354.6157f, 356.15778f),
+ new(-364.27512f, 239.99979f), new(-368.72913f, 238.0808f), new(255.1079f, -352.302f), new(362.5132f, -299.8024f), new(-351.96732f, 301.8895f),
+ new(302.6257f, -408.6061f), new(203.0087f, -340.6462f), new(-306.8364f, 412.0043f), new(322.8745f, -193.6553f), new(256.3022f, -250.8182f),
+ new(-232.02449f, 421.5936f), new(-233.5215f, 417.1576f), new(249.86491f, -340.35242f), new(-415.7376f, 251.4689f), new(-197.1434f, 363.1782f),
+ new(-406.3294f, 346.678f), new(243.2909f, -401.74872f), new(-370.90347f, 190.9337f), new(-340.56158f, 353.56592f), new(-364.6911f, 242.9668f),
+ new(432.1624f, -356.8751f), new(-249.0315f, 321.65552f), new(-364.59293f, 408.2354f), new(-243.7477f, 359.8305f), new(370.9701f, -211.2686f),
+ new(203.9397f, -345.26822f), new(-249.05249f, 320.7835f), new(330.6545f, -192.6703f), new(189.0763f, -298.48343f), new(-184.31369f, 257.0882f),
+ new(414.94608f, -317.0509f), new(254.1494f, -240.897f), new(-238.1169f, 301.4044f)
+ ]},
+ { 607, [
+ new(401.99838f, -263.44598f), new(295.27942f, -244.6184f), new(-288.406f, 199.651f), new(422.7864f, -351.65408f), new(373.313f, -338.2117f),
+ new(366.255f, -345.4527f), new(-248.1907f, 357.7705f), new(307.18442f, -248.7014f), new(-416.09262f, 243.8179f), new(-360.7587f, 344.0578f),
+ new(-300.68628f, 296.9765f), new(253.8939f, -339.4794f), new(249.86491f, -340.35242f), new(-352.0003f, 303.0565f), new(210.08069f, -344.09222f),
+ new(248.2674f, -254.89389f), new(310.56442f, -245.9934f), new(-364.6911f, 242.9668f), new(414.9644f, -253.88899f), new(-306.1673f, 292.06952f),
+ new(-356.14133f, 295.0955f), new(373.7051f, -205.1626f), new(-252.1996f, 312.67938f), new(-232.02449f, 421.5936f), new(-299.74182f, 245.3918f),
+ new(406.3761f, -307.5429f), new(-255.3826f, 309.30038f), new(-240.1679f, 299.6684f), new(-403.23712f, 303.71548f), new(319.9995f, -196.2003f),
+ new(372.983f, -344.59372f), new(320.9183f, -359.2052f), new(-239.959f, 319.39972f), new(354.6408f, -262.1695f), new(408.11838f, -260.912f),
+ new(-307.1684f, 398.6853f), new(-361.70798f, 347.96222f), new(414.9644f, -253.88899f), new(-292.5774f, 412.0023f), new(-398.8034f, 355.073f),
+ new(-213.3316f, 207.17401f), new(242.00119f, -195.0754f), new(321.2693f, -352.3982f), new(-364.5061f, 242.8918f), new(253.96591f, -336.14542f),
+ new(-294.234f, 194.142f), new(-198.1164f, 367.9632f), new(242.2517f, -284.6017f), new(-421.4856f, 237.8419f), new(-225.5148f, 264.2176f),
+ new(407.1781f, -313.7969f), new(352.7762f, -302.3564f), new(-415.7376f, 251.4689f), new(-346.5827f, 357.7818f), new(-197.1434f, 363.1782f),
+ new(-341.6316f, 351.29892f), new(-304.12482f, 256.4618f), new(-240.91179f, 249.60258f), new(-409.84262f, 250.2269f), new(-257.2306f, 305.76138f),
+ new(-364.266f, 345.40622f), new(196.23709f, -233.6129f), new(266.7945f, -341.7521f), new(-238.32889f, 303.0864f), new(-300.51382f, 251.51779f),
+ new(359.21722f, -301.66843f), new(-344.8328f, 357.13422f), new(-405.20212f, 296.94348f), new(361.5118f, -267.8545f), new(302.7724f, -298.7726f),
+ new(429.9364f, -356.8071f), new(-345.9718f, 354.91522f), new(-377.42648f, 186.39569f), new(-363.188f, 347.6632f), new(-238.24901f, 320.6487f),
+ new(201.4921f, -229.7139f), new(-249.30449f, 323.0195f), new(-357.2029f, 414.6194f), new(248.9297f, -294.5467f), new(197.2043f, -300.82343f),
+ new(-402.8814f, 350.754f), new(299.4457f, -404.52112f), new(-238.9988f, 251.61159f), new(361.3568f, -255.2785f), new(-235.8127f, 374.2045f),
+ new(324.3503f, -356.2462f), new(-185.2369f, 317.8419f), new(-234.1478f, 262.47458f), new(327.4605f, -188.1923f), new(249.43591f, -337.00342f),
+ new(-377.4675f, 193.46669f), new(-365.21512f, 248.51279f), new(253.82541f, -238.37401f), new(-313.5198f, 356.5551f), new(313.1923f, -361.9772f),
+ new(-236.0219f, 303.5524f), new(262.7615f, -342.5141f), new(-214.73059f, 205.945f), new(-314.2348f, 362.23212f), new(241.7369f, -248.2327f),
+ new(-416.72562f, 248.8329f), new(193.5261f, -231.2239f), new(242.9377f, -289.7997f), new(-351.66733f, 299.21048f), new(194.28009f, -237.1129f),
+ new(260.1662f, -250.1742f), new(-189.7554f, 369.65018f), new(243.8629f, -399.17572f), new(245.4384f, -255.3839f), new(319.40952f, -189.7133f),
+ new(414.49908f, -313.4519f), new(255.8942f, -247.6362f), new(-184.31369f, 257.0882f), new(-231.5125f, 417.5426f), new(-382.5665f, 182.13269f),
+ new(-231.6335f, 413.47058f), new(-308.7013f, 290.37552f), new(-238.35f, 321.8927f), new(394.5015f, -399.37158f), new(-361.70798f, 347.96222f),
+ new(-201.4704f, 353.68118f), new(-370.90347f, 190.9337f), new(-299.8404f, 404.5553f), new(242.7289f, -397.3617f), new(365.517f, -339.6847f),
+ new(-406.7731f, 295.6485f), new(291.05972f, -406.10312f), new(190.92729f, -301.99042f), new(327.1075f, -194.6973f), new(-186.5707f, 262.1112f),
+ new(368.5651f, -205.4696f), new(367.219f, -342.9997f), new(260.19717f, -246.8222f), new(-340.56158f, 353.56592f), new(-192.6369f, 316.34888f),
+ new(-226.47049f, 422.7126f), new(247.2002f, -190.0004f), new(-408.2044f, 345.01602f), new(-350.03232f, 297.25348f), new(-232.02449f, 421.5936f),
+ new(259.2557f, -337.98392f), new(-243.7477f, 359.8305f), new(-195.5399f, 303.7129f), new(373.9371f, -199.9566f), new(353.1332f, -300.46042f),
+ new(-250.0685f, 319.7035f), new(300.3604f, -249.3644f), new(-364.27512f, 239.99979f), new(-421.4856f, 237.8419f), new(260.59872f, -336.6059f),
+ new(-197.3454f, 361.8672f), new(297.8454f, -293.0436f), new(-299.3013f, 298.76752f), new(423.4894f, -357.1471f), new(352.12622f, -296.96042f),
+ new(-396.8244f, 356.965f), new(-354.6157f, 356.15778f), new(313.1083f, -353.9382f), new(-365.31693f, 412.8804f), new(190.26129f, -296.7904f),
+ new(253.98619f, -194.9374f), new(387.4975f, -400.31558f), new(249.4597f, -289.0297f), new(249.4857f, -283.2347f), new(-354.60632f, 295.9615f),
+ new(-320.6128f, 350.7901f), new(203.28969f, -340.20023f), new(-376.80948f, 188.2507f), new(-233.5215f, 417.1576f), new(-189.6319f, 311.8849f),
+ new(-282.061f, 206.156f), new(-371.0051f, 236.8288f), new(-371.3139f, 400.4824f), new(-364.5689f, 406.9494f), new(414.6714f, -260.32f),
+ new(-224.9198f, 259.9816f), new(257.2054f, -240.349f), new(-403.4944f, 355.613f), new(291.85373f, -412.3091f), new(254.0512f, -189.1174f),
+ new(237.8899f, -245.84569f), new(203.9397f, -345.26822f), new(299.61142f, -243.5164f), new(359.54523f, -295.55942f), new(-191.9539f, 310.9539f),
+ new(386.7265f, -394.2866f), new(-236.492f, 322.4507f), new(-300.5383f, 298.6245f), new(-300.7233f, 310.54352f), new(-377.4675f, 193.46669f),
+ new(376.455f, -342.7927f), new(322.8745f, -193.6553f), new(254.5749f, -348.14102f), new(-307.2818f, 239.0918f), new(-220.91159f, 205.644f),
+ new(-243.65671f, 366.16052f), new(-321.4178f, 360.17712f), new(353.9378f, -256.6755f), new(-178.83769f, 263.6702f), new(298.7624f, -296.1806f),
+ new(-368.72913f, 238.0808f), new(-371.3139f, 400.4824f), new(-292.1148f, 253.21179f), new(245.1384f, -253.04489f), new(-255.7186f, 311.9484f),
+ new(-234.4625f, 412.1756f), new(299.75443f, -251.03639f), new(364.3828f, -259.6975f), new(203.0087f, -340.6462f), new(299.1017f, -411.47412f),
+ new(241.7579f, -245.1137f), new(-189.5517f, 248.8732f), new(257.2374f, -237.729f), new(-301.5413f, 303.4935f), new(260.5877f, -337.78592f),
+ new(251.9787f, -286.0117f), new(260.1059f, -351.247f), new(394.8745f, -392.7476f), new(-226.81259f, 194.292f), new(197.2943f, -295.4584f),
+ new(-398.1671f, 304.7425f), new(-400.2531f, 304.8485f), new(414.8241f, -305.9519f), new(298.81738f, -300.1586f), new(-300.5764f, 410.3883f),
+ new(307.5144f, -242.0244f), new(266.7735f, -344.93808f), new(260.2039f, -347.074f), new(368.0021f, -201.0746f), new(-343.35278f, 357.43323f),
+ new(-306.4498f, 363.8041f), new(297.5794f, -297.2626f), new(-357.5031f, 250.0718f), new(-346.8763f, 304.1225f), new(-238.1169f, 301.4044f),
+ new(297.3844f, -247.2904f), new(-233.35379f, 256.1806f), new(-396.8244f, 356.965f), new(-306.8364f, 412.0043f), new(-318.5588f, 352.4171f),
+ new(-289.048f, 204.742f), new(297.14142f, -252.8444f), new(-292.6243f, 305.2435f), new(310.8603f, -354.9082f), new(-249.0315f, 321.65552f),
+ new(248.5459f, -400.5727f), new(-313.4378f, 357.78912f), new(-304.9384f, 400.2463f), new(-220.2146f, 200.117f), new(302.8594f, -295.4066f),
+ new(-233.35379f, 256.1806f), new(-370.3075f, 194.9187f), new(-289.69128f, 303.86652f), new(201.3441f, -235.4919f), new(299.1504f, -299.2126f),
+ new(304.4464f, -297.5296f), new(248.6639f, -396.2367f), new(-246.6987f, 367.0385f), new(-249.05249f, 320.7835f), new(-247.2065f, 323.5275f),
+ new(210.15869f, -338.88922f), new(-351.96732f, 301.8895f), new(-185.85669f, 256.4732f), new(361.0828f, -261.7485f), new(248.3014f, -252.4469f),
+ new(430.2054f, -350.2561f), new(-244.4547f, 372.4635f), new(243.2909f, -401.74872f), new(-402.77112f, 300.0205f), new(247.3362f, -196.0074f),
+ new(313.8813f, -359.9772f), new(-339.08157f, 353.86493f), new(407.4014f, -255.314f), new(290.3627f, -405.3471f), new(-371.0051f, 236.8288f),
+ new(-288.271f, 200.125f), new(-245.9847f, 357.1285f), new(302.6257f, -408.6061f), new(259.11472f, -336.88593f), new(414.94608f, -317.0509f),
+ new(-351.66733f, 299.21048f), new(-346.5827f, 357.7818f), new(189.0763f, -298.48343f), new(-363.052f, 346.5852f), new(-305.0108f, 240.80879f),
+ new(-243.65671f, 366.16052f), new(-300.0208f, 248.8868f), new(-340.4256f, 352.4879f), new(-250.0685f, 319.7035f), new(-380.4445f, 183.8187f),
+ new(-238.276f, 322.61572f), new(-364.59293f, 408.2354f), new(-382.5665f, 182.13269f), new(-301.00528f, 300.7625f), new(-360.7587f, 344.0578f),
+ new(389.25452f, -397.5816f), new(365.766f, -346.6417f), new(253.98619f, -194.9374f), new(-237.2329f, 303.56638f), new(330.6545f, -192.6703f),
+ new(363.86298f, -334.0317f), new(370.9701f, -211.2686f), new(295.9614f, -296.8906f), new(-299.56882f, 247.0928f), new(212.2437f, -340.8262f),
+ new(432.1624f, -356.8751f), new(297.86243f, -237.5464f), new(254.1494f, -240.897f), new(298.9514f, -301.6196f)
]},
{ 1100, [
-new(283.8634f, -240.1208f), new(428.8771f, -352.37747f), new(-422.50992f, 300.96f), new(-419.312f, 229.98239f), new(-300.4452f, 305.5574f),
-new(-387.3419f, 158.2125f), new(355.3526f, -239.8328f), new(158.58679f, -202.8869f), new(-298.31018f, 297.12338f), new(230.0489f, -417.94888f),
-new(220.39049f, -231.6474f), new(365.56818f, -301.0513f), new(-292.2752f, 298.5184f), new(300.101f, -422.3656f), new(-374.6629f, 355.4208f),
-new(273.89243f, -238.0938f), new(432.9231f, -360.4235f), new(244.142f, -300.69092f), new(431.00012f, -362.51147f), new(-176.9023f, 225.48221f),
-new(-298.559f, 354.9741f), new(214.99449f, -235.8604f), new(-159.78171f, 366.5818f), new(368.7869f, -430.97922f), new(-216.14171f, 382.6205f),
-new(213.3217f, -187.9021f), new(343.3203f, -178.2596f), new(367.8266f, -377.17508f), new(-301.91678f, 416.5422f), new(-388.8889f, 156.61249f),
-new(188.5498f, -290.8415f), new(223.1049f, -361.7824f), new(404.7319f, -233.9907f), new(-211.1887f, 364.5755f), new(-426.99f, 353.44608f),
-new(293.3699f, -355.1239f), new(223.2979f, -366.8534f), new(424.2421f, -367.8795f), new(-237.6234f, 225.55681f), new(212.3935f, -234.8974f),
-new(232.01291f, -359.6484f), new(-290.721f, 241.53511f), new(296.0469f, -354.7089f), new(251.311f, -304.6429f), new(294.0554f, -300.2923f),
-new(-297.7925f, 193.29749f), new(302.1632f, -176.2576f), new(364.57318f, -309.54428f), new(-157.1597f, 373.2228f), new(-298.88303f, 241.55211f),
-new(-183.9213f, 238.6772f), new(-364.7029f, 280.4936f), new(176.01541f, -360.5008f), new(351.0653f, -179.8376f), new(372.7332f, -305.0163f),
-new(-298.024f, 357.69308f), new(264.44342f, -236.0858f), new(-187.2603f, 230.9032f), new(270.9764f, -235.0998f), new(269.1614f, -235.6638f),
-new(237.929f, -300.8189f), new(-360.2229f, 223.4302f), new(301.5254f, -304.20728f), new(222.09349f, -234.0184f), new(240.099f, -292.65692f),
-new(174.2864f, -362.24982f), new(381.2796f, -391.5871f), new(-302.05698f, 372.6041f), new(-307.48398f, 364.0481f), new(-238.696f, 172.9862f),
-new(-303.1922f, 300.9794f), new(403.15588f, -234.54271f), new(339.9516f, -230.7818f), new(-421.982f, 348.5231f), new(-303.2858f, 425.0592f),
-new(226.97249f, -237.9344f), new(220.0945f, -237.8204f), new(-414.257f, 218.94939f), new(-349.7599f, 342.2088f), new(296.95102f, -415.9996f),
-new(187.2388f, -298.3455f), new(-296.2962f, 303.1934f), new(-409.319f, 219.2674f), new(408.2359f, -234.3497f), new(-207.84271f, 374.45352f),
-new(308.77838f, -302.4683f), new(370.4016f, -389.3751f), new(360.2116f, -239.8738f), new(-224.0879f, 296.426f), new(225.1487f, -183.52809f),
-new(-179.1568f, 308.7748f), new(361.5222f, -293.0073f), new(298.4934f, -291.56528f), new(440.0881f, -364.38748f), new(-390.57788f, 164.64749f),
-new(-418.035f, 343.94708f), new(341.5003f, -169.5916f), new(-290.577f, 360.4611f), new(236.0359f, -364.3154f), new(277.0804f, -243.6408f),
-new(-231.9419f, 432.3376f), new(308.9352f, -179.53261f), new(-367.24487f, 230.33821f), new(-240.877f, 183.8002f), new(-230.5414f, 226.3898f),
-new(-240.7654f, 237.2808f), new(404.9989f, -227.9127f), new(378.8769f, -441.78122f), new(193.8928f, -296.7945f), new(-362.64758f, 405.0187f),
-new(301.4469f, -366.5359f), new(-301.34378f, 416.4472f), new(-420.94092f, 303.008f), new(217.92249f, -228.2914f), new(-244.93439f, 233.8558f),
-new(160.4368f, -211.6189f), new(-299.9668f, 418.4522f), new(170.07141f, -361.2528f), new(-354.7969f, 273.4936f), new(172.3754f, -353.2648f),
-new(162.12979f, -209.9299f), new(-227.9659f, 431.2906f), new(301.76822f, -175.57361f), new(418.9141f, -300.1147f), new(-300.47202f, 249.2651f),
-new(351.8676f, -231.8198f), new(370.6869f, -440.01822f), new(305.9799f, -355.3129f), new(-173.73529f, 227.8262f), new(313.5249f, -364.0619f),
-new(-201.30971f, 366.85452f), new(-239.3759f, 443.41858f), new(-424.6509f, 310.391f), new(-305.2022f, 305.2494f), new(-179.1473f, 232.3002f),
-new(296.4079f, -345.9019f), new(236.68199f, -297.51392f), new(271.5314f, -226.9108f), new(-152.68471f, 368.0328f), new(-415.70502f, 222.8044f),
-new(-360.80588f, 339.7988f), new(237.3269f, -419.5669f), new(-171.79181f, 298.3998f), new(-302.8975f, 198.3125f), new(337.5896f, -233.0188f),
-new(347.5676f, -241.1328f), new(-162.8387f, 378.8048f), new(228.3579f, -409.9669f), new(-241.2019f, 314.618f), new(-164.3257f, 372.9428f),
-new(-239.8239f, 309.618f), new(296.7084f, -297.13428f), new(168.4068f, -213.3999f), new(-370.3319f, 281.4416f), new(372.42688f, -438.2182f),
-new(406.6889f, -236.0067f), new(-296.816f, 246.44211f), new(343.1706f, -221.74379f), new(-240.28139f, 225.6338f), new(226.9079f, -354.6304f),
-new(-424.293f, 342.6681f), new(299.8342f, -177.5636f), new(-302.031f, 253.6101f), new(-366.8739f, 360.39282f), new(298.484f, -423.5296f),
-new(229.6729f, -365.5424f), new(305.1824f, -298.45828f), new(417.2721f, -301.4087f), new(413.9679f, -237.5207f), new(-362.7339f, 215.2532f),
-new(-293.76752f, 188.6335f), new(-231.6269f, 305.194f), new(-373.13788f, 226.85521f), new(-363.30792f, 274.2146f), new(-232.9919f, 437.1356f),
-new(-360.9886f, 410.2307f), new(289.3249f, -359.75888f), new(372.6806f, -386.8281f), new(231.5939f, -416.3989f), new(-364.1469f, 274.7216f),
-new(-362.94388f, 356.9908f), new(365.2416f, -386.7241f), new(-300.9965f, 187.2515f), new(237.635f, -300.2569f), new(-176.7068f, 298.71082f),
-new(-238.6109f, 440.0456f), new(-414.3739f, 299.37f), new(216.9597f, -181.8331f), new(-235.5979f, 429.54257f), new(158.8788f, -218.9749f),
-new(424.64908f, -303.2787f), new(-169.5168f, 298.5018f), new(-162.8387f, 378.8048f), new(-365.4566f, 414.62772f), new(305.681f, -425.44962f),
-new(-301.2742f, 297.1844f), new(295.10822f, -177.1736f), new(297.7232f, -167.5296f), new(-365.14587f, 226.7872f), new(-357.5369f, 224.70421f),
-new(304.4044f, -297.0863f), new(298.612f, -423.94162f), new(-294.09277f, 415.1962f), new(-354.69388f, 217.0032f), new(372.8119f, -437.7882f),
-new(373.8806f, -395.4261f), new(-361.4259f, 277.9326f), new(-181.2923f, 227.9102f), new(363.66818f, -303.1843f), new(275.9814f, -235.7588f),
-new(-295.8382f, 295.5734f), new(-357.2999f, 350.9718f), new(-421.82892f, 299.268f), new(242.101f, -302.41492f), new(-387.0009f, 158.5945f),
-new(-234.2309f, 291.385f), new(176.5224f, -365.9118f), new(191.0838f, -302.77048f), new(182.46541f, -364.0658f), new(-228.545f, 170.56921f),
-new(198.7858f, -301.7255f), new(332.7056f, -234.1958f), new(-235.4519f, 293.821f), new(-212.8417f, 361.2755f), new(415.68008f, -293.6887f),
-new(-182.2298f, 301.4588f), new(-235.5454f, 231.22781f), new(413.79108f, -299.4827f), new(-381.6089f, 155.04549f), new(-222.07071f, 377.5755f),
-new(173.51741f, -361.3758f), new(-294.86f, 366.9491f), new(-417.215f, 220.79239f), new(-301.4032f, 308.2194f), new(-174.7138f, 302.6758f),
-new(156.2648f, -210.77791f), new(344.95132f, -176.4546f), new(405.6979f, -241.6407f), new(-239.62239f, 233.76881f), new(225.9459f, -360.1294f),
-new(-307f, 248.4501f), new(-236.424f, 174.93721f), new(-238.27f, 172.2592f), new(291.9084f, -298.97128f), new(-214.84671f, 378.31152f),
-new(-364.2519f, 355.56082f), new(-366.05792f, 285.5466f), new(218.6997f, -179.9601f), new(-365.55292f, 276.1006f), new(-247.9569f, 308.72f),
-new(-364.3166f, 412.3767f), new(-364.60358f, 414.3467f), new(-357.47058f, 406.14072f), new(-307.5105f, 188.6305f), new(-428.301f, 348.2771f),
-new(295.4824f, -296.82428f), new(212.9787f, -180.2271f), new(-297.7925f, 193.29749f)
+ new(283.8634f, -240.1208f), new(428.8771f, -352.37747f), new(-422.50992f, 300.96f), new(-419.312f, 229.98239f), new(-300.4452f, 305.5574f),
+ new(-387.3419f, 158.2125f), new(355.3526f, -239.8328f), new(158.58679f, -202.8869f), new(-298.31018f, 297.12338f), new(230.0489f, -417.94888f),
+ new(220.39049f, -231.6474f), new(365.56818f, -301.0513f), new(-292.2752f, 298.5184f), new(300.101f, -422.3656f), new(-374.6629f, 355.4208f),
+ new(273.89243f, -238.0938f), new(432.9231f, -360.4235f), new(244.142f, -300.69092f), new(431.00012f, -362.51147f), new(-176.9023f, 225.48221f),
+ new(-298.559f, 354.9741f), new(-159.78171f, 366.5818f), new(368.7869f, -430.97922f), new(-216.14171f, 382.6205f), new(213.3217f, -187.9021f),
+ new(343.3203f, -178.2596f), new(367.8266f, -377.17508f), new(-301.91678f, 416.5422f), new(-388.8889f, 156.61249f), new(188.5498f, -290.8415f),
+ new(223.1049f, -361.7824f), new(404.7319f, -233.9907f), new(-211.1887f, 364.5755f), new(-426.99f, 353.44608f), new(293.3699f, -355.1239f),
+ new(223.2979f, -366.8534f), new(424.2421f, -367.8795f), new(-237.6234f, 225.55681f), new(232.01291f, -359.6484f), new(-290.721f, 241.53511f),
+ new(296.0469f, -354.7089f), new(251.311f, -304.6429f), new(294.0554f, -300.2923f), new(-297.7925f, 193.29749f), new(302.1632f, -176.2576f),
+ new(364.57318f, -309.54428f), new(-157.1597f, 373.2228f), new(-298.88303f, 241.55211f), new(-183.9213f, 238.6772f), new(-364.7029f, 280.4936f),
+ new(176.01541f, -360.5008f), new(351.0653f, -179.8376f), new(372.7332f, -305.0163f), new(-298.024f, 357.69308f), new(264.44342f, -236.0858f),
+ new(-187.2603f, 230.9032f), new(270.9764f, -235.0998f), new(269.1614f, -235.6638f), new(237.929f, -300.8189f), new(-360.2229f, 223.4302f),
+ new(301.5254f, -304.20728f), new(222.09349f, -234.0184f), new(240.099f, -292.65692f), new(174.2864f, -362.24982f), new(381.2796f, -391.5871f),
+ new(-302.05698f, 372.6041f), new(-238.696f, 172.9862f), new(403.15588f, -234.54271f), new(-421.982f, 348.5231f), new(-303.2858f, 425.0592f),
+ new(226.97249f, -237.9344f), new(220.0945f, -237.8204f), new(-414.257f, 218.94939f), new(-349.7599f, 342.2088f), new(296.95102f, -415.9996f),
+ new(187.2388f, -298.3455f), new(-296.2962f, 303.1934f), new(-409.319f, 219.2674f), new(408.2359f, -234.3497f), new(-207.84271f, 374.45352f),
+ new(308.77838f, -302.4683f), new(370.4016f, -389.3751f), new(360.2116f, -239.8738f), new(-224.0879f, 296.426f), new(225.1487f, -183.52809f),
+ new(-179.1568f, 308.7748f), new(361.5222f, -293.0073f), new(298.4934f, -291.56528f), new(440.0881f, -364.38748f), new(-390.57788f, 164.64749f),
+ new(-418.035f, 343.94708f), new(341.5003f, -169.5916f), new(-290.577f, 360.4611f), new(236.0359f, -364.3154f), new(277.0804f, -243.6408f),
+ new(-231.9419f, 432.3376f), new(308.9352f, -179.53261f), new(-367.24487f, 230.33821f), new(-240.877f, 183.8002f), new(-230.5414f, 226.3898f),
+ new(-240.7654f, 237.2808f), new(404.9989f, -227.9127f), new(378.8769f, -441.78122f), new(193.8928f, -296.7945f), new(-362.64758f, 405.0187f),
+ new(301.4469f, -366.5359f), new(-301.34378f, 416.4472f), new(-420.94092f, 303.008f), new(217.92249f, -228.2914f), new(-244.93439f, 233.8558f),
+ new(160.4368f, -211.6189f), new(-299.9668f, 418.4522f), new(170.07141f, -361.2528f), new(-354.7969f, 273.4936f), new(172.3754f, -353.2648f),
+ new(162.12979f, -209.9299f), new(-227.9659f, 431.2906f), new(301.76822f, -175.57361f), new(418.9141f, -300.1147f), new(-300.47202f, 249.2651f),
+ new(351.8676f, -231.8198f), new(370.6869f, -440.01822f), new(305.9799f, -355.3129f), new(-173.73529f, 227.8262f), new(313.5249f, -364.0619f),
+ new(-201.30971f, 366.85452f), new(-239.3759f, 443.41858f), new(-424.6509f, 310.391f), new(-305.2022f, 305.2494f), new(-179.1473f, 232.3002f),
+ new(296.4079f, -345.9019f), new(236.68199f, -297.51392f), new(271.5314f, -226.9108f), new(-152.68471f, 368.0328f), new(-415.70502f, 222.8044f),
+ new(-360.80588f, 339.7988f), new(237.3269f, -419.5669f), new(-171.79181f, 298.3998f), new(-302.8975f, 198.3125f), new(337.5896f, -233.0188f),
+ new(347.5676f, -241.1328f), new(-162.8387f, 378.8048f), new(228.3579f, -409.9669f), new(-241.2019f, 314.618f), new(-164.3257f, 372.9428f),
+ new(-239.8239f, 309.618f), new(296.7084f, -297.13428f), new(168.4068f, -213.3999f), new(-370.3319f, 281.4416f), new(372.42688f, -438.2182f),
+ new(406.6889f, -236.0067f), new(-296.816f, 246.44211f), new(343.1706f, -221.74379f), new(-240.28139f, 225.6338f), new(226.9079f, -354.6304f),
+ new(-424.293f, 342.6681f), new(299.8342f, -177.5636f), new(-302.031f, 253.6101f), new(-366.8739f, 360.39282f), new(298.484f, -423.5296f),
+ new(229.6729f, -365.5424f), new(305.1824f, -298.45828f), new(417.2721f, -301.4087f), new(413.9679f, -237.5207f), new(-362.7339f, 215.2532f),
+ new(-293.76752f, 188.6335f), new(-231.6269f, 305.194f), new(-373.13788f, 226.85521f), new(-363.30792f, 274.2146f), new(-232.9919f, 437.1356f),
+ new(-360.9886f, 410.2307f), new(289.3249f, -359.75888f), new(372.6806f, -386.8281f), new(231.5939f, -416.3989f), new(-364.1469f, 274.7216f),
+ new(-362.94388f, 356.9908f), new(365.2416f, -386.7241f), new(-300.9965f, 187.2515f), new(237.635f, -300.2569f), new(-176.7068f, 298.71082f),
+ new(-414.3739f, 299.37f), new(216.9597f, -181.8331f), new(-235.5979f, 429.54257f), new(158.8788f, -218.9749f), new(424.64908f, -303.2787f),
+ new(-169.5168f, 298.5018f), new(-162.8387f, 378.8048f), new(-365.4566f, 414.62772f), new(305.681f, -425.44962f), new(-301.2742f, 297.1844f),
+ new(295.10822f, -177.1736f), new(297.7232f, -167.5296f), new(-365.14587f, 226.7872f), new(-357.5369f, 224.70421f), new(304.4044f, -297.0863f),
+ new(298.612f, -423.94162f), new(-294.09277f, 415.1962f), new(-354.69388f, 217.0032f), new(372.8119f, -437.7882f), new(373.8806f, -395.4261f),
+ new(-361.4259f, 277.9326f), new(-181.2923f, 227.9102f), new(363.66818f, -303.1843f), new(275.9814f, -235.7588f), new(-357.2999f, 350.9718f),
+ new(-421.82892f, 299.268f), new(242.101f, -302.41492f), new(-387.0009f, 158.5945f), new(-234.2309f, 291.385f), new(176.5224f, -365.9118f),
+ new(191.0838f, -302.77048f), new(182.46541f, -364.0658f), new(-228.545f, 170.56921f), new(198.7858f, -301.7255f), new(-235.4519f, 293.821f),
+ new(-212.8417f, 361.2755f), new(415.68008f, -293.6887f), new(-235.5454f, 231.22781f), new(413.79108f, -299.4827f), new(-381.6089f, 155.04549f),
+ new(-222.07071f, 377.5755f), new(173.51741f, -361.3758f), new(-294.86f, 366.9491f), new(-417.215f, 220.79239f), new(-301.4032f, 308.2194f),
+ new(-174.7138f, 302.6758f), new(344.95132f, -176.4546f), new(-239.62239f, 233.76881f), new(-307f, 248.4501f), new(-236.424f, 174.93721f),
+ new(-238.27f, 172.2592f), new(-214.84671f, 378.31152f), new(-364.2519f, 355.56082f), new(-366.05792f, 285.5466f), new(218.6997f, -179.9601f),
+ new(-365.55292f, 276.1006f), new(-247.9569f, 308.72f), new(-357.47058f, 406.14072f), new(-307.5105f, 188.6305f), new(-428.301f, 348.2771f),
+ new(212.9787f, -180.2271f), new(-297.7925f, 193.29749f), new(214.99449f, -235.8604f), new(212.3935f, -234.8974f), new(346.86932f, -181.0366f),
+ new(-307.48398f, 364.0481f), new(-303.1922f, 300.9794f), new(339.9516f, -230.7818f), new(209.4687f, -180.26709f), new(226.0589f, -424.2109f),
+ new(-238.6109f, 440.0456f), new(-244.2109f, 300.98f), new(-295.8382f, 295.5734f), new(420.4801f, -306.51367f), new(332.7056f, -234.1958f),
+ new(-182.2298f, 301.4588f), new(156.2648f, -210.77791f), new(405.6979f, -241.6407f), new(225.9459f, -360.1294f), new(291.9084f, -298.97128f),
+ new(-364.3166f, 412.3767f), new(-364.60358f, 414.3467f), new(295.4824f, -296.82428f)
]},
{ 1101, [
-new(-182.0706f, 229.9148f), new(168.74991f, -245.1357f), new(-353.5036f, 239.8528f), new(-419.6744f, 306.91388f), new(231.6985f, -366.507f),
-new(-358.259f, 169.7151f), new(174.83751f, -362.041f), new(-301.26172f, 305.68008f), new(359.7145f, -233.2673f), new(-231.4406f, 426.1733f),
-new(428.157f, -300.5233f), new(-298.59808f, 170.87221f), new(361.85608f, -416.9f), new(233.4223f, -224.5511f), new(370.6005f, -237.22931f),
-new(-354.6656f, 232.6688f), new(239.4476f, -302.01608f), new(298.90442f, -423.1013f), new(-182.3006f, 358.0424f), new(-355.9976f, 243.07579f),
-new(-169.7849f, 298.78732f), new(235.5013f, -165.67479f), new(-426.35013f, 234.7226f), new(368.9965f, -231.9263f), new(368.1615f, -238.2023f),
-new(431.1715f, -365.2672f), new(367.91458f, -361.3743f), new(-161.4246f, 362.89938f), new(359.1696f, -366.1383f), new(-374.11768f, 422.07687f),
-new(361.8376f, -362.9153f), new(-291.5889f, 370.94278f), new(245.12329f, -239.9441f), new(226.3435f, -433.66492f), new(-233.2361f, 237.3336f),
-new(-426.10013f, 237.21361f), new(-302.3829f, 375.6218f), new(425.97f, -294.57028f), new(296.21768f, -162.8779f), new(-232.3629f, 366.4537f),
-new(236.9745f, -364.426f), new(-366.9319f, 359.11072f), new(-359.55148f, 300.8837f), new(302.1004f, -426.2753f), new(-232.3747f, 175.8961f),
-new(429.1145f, -364.68723f), new(-305.68872f, 297.2971f), new(-368.038f, 169.8601f), new(-296.0217f, 298.64108f), new(-366.79358f, 247.7658f),
-new(-369.6605f, 294.6167f), new(-438.1964f, 294.2049f), new(239.6266f, -296.37808f), new(307.4021f, -365.0162f), new(372.7381f, -433.77298f),
-new(231.7703f, -173.4468f), new(354.1431f, -434.317f), new(-301.1173f, 241.6853f), new(364.1436f, -362.5003f), new(368.6475f, -234.3363f),
-new(233.5406f, -292.81308f), new(366.2639f, -170.72159f), new(-374.5016f, 235.5118f), new(-310.8924f, 421.3034f), new(172.7232f, -300.4979f),
-new(-306.36508f, 168.4142f), new(-425.0286f, 367.077f), new(-237.3349f, 371.3957f), new(-293.9957f, 301.8151f), new(298.94388f, -231.1085f),
-new(-362.99088f, 357.9917f), new(-305.7403f, 231.7723f), new(-297.7847f, 295.5051f), new(234.05551f, -416.2489f), new(-231.50409f, 305.39832f),
-new(301.5751f, -355.0862f), new(302.78888f, -234.4155f), new(-243.86409f, 295.24432f), new(174.98991f, -233.8177f), new(427.1365f, -359.3342f),
-new(364.4066f, -360.3153f), new(436.6838f, -241.16609f), new(305.6561f, -359.7532f), new(-358.727f, 175.7801f), new(363.7769f, -168.2416f),
-new(295.17242f, -430.8703f), new(362.4535f, -227.65431f), new(-371.039f, 167.4311f), new(-162.8876f, 360.0644f), new(-233.7677f, 172.3531f),
-new(-370.4549f, 359.54572f), new(244.2163f, -229.22911f), new(-429.4986f, 369.98798f), new(303.64008f, -373.5852f), new(372.6501f, -421.581f),
-new(-240.65909f, 232.7346f), new(-299.7497f, 295.4061f), new(225.2476f, -301.7841f), new(235.0155f, -359.6f), new(172.1035f, -362.259f),
-new(-230.4431f, 304.3753f), new(363.1996f, -363.7683f), new(237.8565f, -362.422f), new(-161.1606f, 235.8368f), new(167.9095f, -366.637f),
-new(-362.603f, 165.75511f), new(-296.79608f, 169.9952f), new(368.4411f, -417.71597f), new(-361.21448f, 297.11868f), new(-296.2193f, 234.1433f),
-new(-237.7461f, 308.6563f), new(165.7539f, -239.9437f), new(310.6257f, -174.2379f), new(-358.8419f, 361.6587f), new(361.1146f, -357.3723f),
-new(357.3734f, -292.4766f), new(-360.04547f, 303.7227f), new(308.5687f, -177.4629f), new(-429.27112f, 240.39061f), new(354.09442f, -306.0896f),
-new(-355.5977f, 434.78888f), new(-296.2933f, 238.11229f), new(174.39021f, -300.60287f), new(356.62048f, -240.3033f), new(-361.0865f, 300.3317f),
-new(-234.09769f, 169.79611f), new(305.47308f, -366.3772f), new(417.8138f, -242.1991f), new(170.72891f, -229.5837f), new(-228.68909f, 304.6593f),
-new(-289.1849f, 363.8578f), new(429.43002f, -298.0113f), new(-234.0399f, 368.58768f), new(-289.31738f, 424.45142f), new(225.7103f, -241.96611f),
-new(-234.4981f, 236.8066f), new(-228.6791f, 299.6043f), new(-416.9634f, 303.75888f), new(292.2341f, -368.8832f), new(-174.35959f, 247.3328f),
-new(228.6926f, -304.3031f), new(293.1879f, -238.8485f), new(-363.7487f, 417.5019f), new(-354.16467f, 424.6869f), new(297.58868f, -160.74991f),
-new(-359.26288f, 367.1357f), new(425.5278f, -224.7851f), new(-367.2277f, 440.0569f), new(-162.8786f, 231.4178f), new(374.81342f, -302.2906f),
-new(-430.4704f, 311.60388f), new(306.62558f, -300.4632f), new(-366.39368f, 439.47787f), new(-357.32648f, 300.09567f), new(-234.7721f, 234.7536f),
-new(306.55908f, -362.0842f), new(298.0286f, -299.4372f), new(361.8074f, -288.6736f), new(-418.35742f, 296.44388f), new(170.2982f, -299.74088f),
-new(-296.40372f, 302.7761f), new(244.8495f, -420.9269f), new(-287.82938f, 431.65442f), new(-233.8589f, 362.7657f), new(-306.82788f, 372.3628f),
-new(303.7984f, -432.6833f), new(-301.39108f, 178.7862f), new(-427.9601f, 233.11261f), new(298.99658f, -295.3922f), new(304.3646f, -296.8892f),
-new(-243.1379f, 359.30368f), new(245.95529f, -232.68611f), new(-241.46869f, 167.2621f), new(-174.5886f, 375.4574f), new(-363.32147f, 293.8757f),
-new(302.14188f, -234.2905f), new(-160.8976f, 362.0764f), new(238.6983f, -168.85379f), new(-237.3711f, 239.6346f), new(168.24321f, -302.2479f),
-new(-424.8396f, 362.83298f), new(-298.8511f, 173.0352f), new(303.11688f, -236.8735f), new(-173.3459f, 305.37732f), new(298.3541f, -355.4762f),
-new(365.4149f, -172.8376f), new(-423.56058f, 363.80798f), new(241.2796f, -296.00208f), new(360.8749f, -174.2916f), new(295.2139f, -238.8845f),
-new(421.932f, -302.9813f), new(171.64151f, -358.865f), new(-298.3427f, 306.39008f), new(-365.426f, 179.72511f), new(-241.8926f, 424.4943f),
-new(301.8386f, -298.2192f), new(372.6014f, -293.3536f), new(-235.8611f, 291.0303f), new(304.86588f, -232.8675f), new(-237.32469f, 175.9131f),
-new(430.2475f, -362.4292f), new(-427.4421f, 232.47461f), new(300.7996f, -300.3012f), new(302.7046f, -300.4222f), new(-308.25232f, 239.31529f),
-new(-310.0939f, 358.2028f), new(-174.0239f, 301.02933f), new(173.67891f, -236.85269f), new(-365.3519f, 370.7217f), new(303.05542f, -428.4313f),
-new(-417.08542f, 299.2049f), new(-374.5186f, 230.36479f), new(237.5143f, -171.1538f), new(-230.73209f, 297.2853f), new(-426.92142f, 289.7169f),
-new(436.3218f, -229.4651f), new(-297.1261f, 174.5342f), new(-362.5366f, 225.9908f), new(-234.93509f, 240.9096f), new(289.8757f, -178.1669f),
-new(-365.2765f, 303.89767f), new(-296.68338f, 440.45142f), new(-356.86288f, 365.7047f), new(423.5045f, -366.8992f), new(247.1133f, -237.9321f),
-new(173.6322f, -298.6749f), new(-231.4021f, 236.8506f), new(-422.6926f, 363.32898f), new(241.0586f, -301.1031f), new(418.79202f, -301.25528f),
-new(-231.2276f, 431.7513f), new(-228.04709f, 302.5133f), new(238.7025f, -364.497f), new(229.3075f, -367.37f), new(-432.96512f, 232.6776f),
-new(-302.5734f, 440.0434f), new(-163.5656f, 242.6538f), new(300.9929f, -236.6995f), new(372.7514f, -305.4366f), new(173.8625f, -364.339f),
-new(-363.8535f, 294.5247f), new(-181.9996f, 237.7518f), new(-290.8519f, 359.82178f), new(-237.0306f, 435.15332f), new(-299.7923f, 231.1093f),
-new(-168.1819f, 299.9843f), new(307.8321f, -359.1872f), new(175.7695f, -363.847f), new(228.39151f, -437.2479f), new(-236.2831f, 233.0756f),
-new(246.58629f, -237.1091f), new(171.1452f, -296.20187f), new(301.0884f, -428.4863f), new(-433.49957f, 361.22098f), new(245.6355f, -431.93192f),
-new(-169.2399f, 302.3533f), new(-163.7946f, 370.7794f), new(230.59329f, -177.1818f), new(301.99588f, -235.3685f), new(-229.4649f, 365.7507f),
-new(295.6796f, -302.30222f), new(-229.4596f, 429.40732f), new(308.3827f, -165.43091f), new(-295.60672f, 302.4781f), new(-299.2364f, 416.40842f),
-new(421.9935f, -367.47623f), new(365.4379f, -171.1346f), new(301.0276f, -299.3902f), new(-230.8959f, 363.43268f), new(422.9858f, -247.8841f),
-new(-177.2849f, 296.9353f), new(430.48203f, -301.1283f), new(-300.5237f, 305.41708f), new(176.30191f, -236.8307f), new(-234.4981f, 236.8066f)
+ new(-182.0706f, 229.9148f), new(168.74991f, -245.1357f), new(-353.5036f, 239.8528f), new(-419.6744f, 306.91388f), new(231.6985f, -366.507f),
+ new(-358.259f, 169.7151f), new(174.83751f, -362.041f), new(-301.26172f, 305.68008f), new(359.7145f, -233.2673f), new(-231.4406f, 426.1733f),
+ new(428.157f, -300.5233f), new(-298.59808f, 170.87221f), new(361.85608f, -416.9f), new(233.4223f, -224.5511f), new(370.6005f, -237.22931f),
+ new(-354.6656f, 232.6688f), new(239.4476f, -302.01608f), new(298.90442f, -423.1013f), new(-182.3006f, 358.0424f), new(-355.9976f, 243.07579f),
+ new(-169.7849f, 298.78732f), new(235.5013f, -165.67479f), new(-426.35013f, 234.7226f), new(368.9965f, -231.9263f), new(368.1615f, -238.2023f),
+ new(431.1715f, -365.2672f), new(367.91458f, -361.3743f), new(359.1696f, -366.1383f), new(-374.11768f, 422.07687f), new(361.8376f, -362.9153f),
+ new(-291.5889f, 370.94278f), new(245.12329f, -239.9441f), new(226.3435f, -433.66492f), new(-233.2361f, 237.3336f), new(-426.10013f, 237.21361f),
+ new(-302.3829f, 375.6218f), new(425.97f, -294.57028f), new(296.21768f, -162.8779f), new(-232.3629f, 366.4537f), new(236.9745f, -364.426f),
+ new(-366.9319f, 359.11072f), new(-359.55148f, 300.8837f), new(302.1004f, -426.2753f), new(-232.3747f, 175.8961f), new(429.1145f, -364.68723f),
+ new(-305.68872f, 297.2971f), new(-368.038f, 169.8601f), new(-296.0217f, 298.64108f), new(-366.79358f, 247.7658f), new(-369.6605f, 294.6167f),
+ new(-438.1964f, 294.2049f), new(239.6266f, -296.37808f), new(307.4021f, -365.0162f), new(372.7381f, -433.77298f), new(231.7703f, -173.4468f),
+ new(354.1431f, -434.317f), new(-301.1173f, 241.6853f), new(364.1436f, -362.5003f), new(368.6475f, -234.3363f), new(233.5406f, -292.81308f),
+ new(366.2639f, -170.72159f), new(-374.5016f, 235.5118f), new(-310.8924f, 421.3034f), new(172.7232f, -300.4979f), new(-306.36508f, 168.4142f),
+ new(-425.0286f, 367.077f), new(-237.3349f, 371.3957f), new(-293.9957f, 301.8151f), new(298.94388f, -231.1085f), new(-362.99088f, 357.9917f),
+ new(-305.7403f, 231.7723f), new(-297.7847f, 295.5051f), new(234.05551f, -416.2489f), new(-231.50409f, 305.39832f), new(301.5751f, -355.0862f),
+ new(302.78888f, -234.4155f), new(-243.86409f, 295.24432f), new(174.98991f, -233.8177f), new(427.1365f, -359.3342f), new(364.4066f, -360.3153f),
+ new(436.6838f, -241.16609f), new(305.6561f, -359.7532f), new(-358.727f, 175.7801f), new(363.7769f, -168.2416f), new(295.17242f, -430.8703f),
+ new(362.4535f, -227.65431f), new(-371.039f, 167.4311f), new(-162.8876f, 360.0644f), new(-233.7677f, 172.3531f), new(-370.4549f, 359.54572f),
+ new(244.2163f, -229.22911f), new(-429.4986f, 369.98798f), new(303.64008f, -373.5852f), new(372.6501f, -421.581f), new(-240.65909f, 232.7346f),
+ new(-299.7497f, 295.4061f), new(225.2476f, -301.7841f), new(235.0155f, -359.6f), new(172.1035f, -362.259f), new(-230.4431f, 304.3753f),
+ new(363.1996f, -363.7683f), new(237.8565f, -362.422f), new(-161.1606f, 235.8368f), new(167.9095f, -366.637f), new(-362.603f, 165.75511f),
+ new(-296.79608f, 169.9952f), new(368.4411f, -417.71597f), new(-361.21448f, 297.11868f), new(-296.2193f, 234.1433f), new(-237.7461f, 308.6563f),
+ new(165.7539f, -239.9437f), new(310.6257f, -174.2379f), new(-358.8419f, 361.6587f), new(361.1146f, -357.3723f), new(357.3734f, -292.4766f),
+ new(-360.04547f, 303.7227f), new(308.5687f, -177.4629f), new(-429.27112f, 240.39061f), new(354.09442f, -306.0896f), new(-355.5977f, 434.78888f),
+ new(-296.2933f, 238.11229f), new(174.39021f, -300.60287f), new(356.62048f, -240.3033f), new(-361.0865f, 300.3317f), new(-234.09769f, 169.79611f),
+ new(305.47308f, -366.3772f), new(417.8138f, -242.1991f), new(170.72891f, -229.5837f), new(-228.68909f, 304.6593f), new(-289.1849f, 363.8578f),
+ new(429.43002f, -298.0113f), new(-234.0399f, 368.58768f), new(-289.31738f, 424.45142f), new(225.7103f, -241.96611f), new(-234.4981f, 236.8066f),
+ new(-228.6791f, 299.6043f), new(292.2341f, -368.8832f), new(-174.35959f, 247.3328f), new(228.6926f, -304.3031f), new(293.1879f, -238.8485f),
+ new(-363.7487f, 417.5019f), new(-354.16467f, 424.6869f), new(297.58868f, -160.74991f), new(-359.26288f, 367.1357f), new(425.5278f, -224.7851f),
+ new(-367.2277f, 440.0569f), new(-162.8786f, 231.4178f), new(374.81342f, -302.2906f), new(-430.4704f, 311.60388f), new(-366.39368f, 439.47787f),
+ new(-357.32648f, 300.09567f), new(-234.7721f, 234.7536f), new(306.55908f, -362.0842f), new(298.0286f, -299.4372f), new(361.8074f, -288.6736f),
+ new(-418.35742f, 296.44388f), new(170.2982f, -299.74088f), new(-296.40372f, 302.7761f), new(244.8495f, -420.9269f), new(-287.82938f, 431.65442f),
+ new(-233.8589f, 362.7657f), new(-306.82788f, 372.3628f), new(303.7984f, -432.6833f), new(-301.39108f, 178.7862f), new(-427.9601f, 233.11261f),
+ new(298.99658f, -295.3922f), new(304.3646f, -296.8892f), new(-243.1379f, 359.30368f), new(245.95529f, -232.68611f), new(-241.46869f, 167.2621f),
+ new(-174.5886f, 375.4574f), new(302.14188f, -234.2905f), new(-160.8976f, 362.0764f), new(238.6983f, -168.85379f), new(-237.3711f, 239.6346f),
+ new(168.24321f, -302.2479f), new(-424.8396f, 362.83298f), new(-298.8511f, 173.0352f), new(303.11688f, -236.8735f), new(-173.3459f, 305.37732f),
+ new(298.3541f, -355.4762f), new(365.4149f, -172.8376f), new(-423.56058f, 363.80798f), new(241.2796f, -296.00208f), new(360.8749f, -174.2916f),
+ new(295.2139f, -238.8845f), new(421.932f, -302.9813f), new(171.64151f, -358.865f), new(-298.3427f, 306.39008f), new(-365.426f, 179.72511f),
+ new(-241.8926f, 424.4943f), new(301.8386f, -298.2192f), new(372.6014f, -293.3536f), new(304.86588f, -232.8675f), new(-237.32469f, 175.9131f),
+ new(430.2475f, -362.4292f), new(-427.4421f, 232.47461f), new(300.7996f, -300.3012f), new(302.7046f, -300.4222f), new(-308.25232f, 239.31529f),
+ new(-310.0939f, 358.2028f), new(-174.0239f, 301.02933f), new(173.67891f, -236.85269f), new(-365.3519f, 370.7217f), new(303.05542f, -428.4313f),
+ new(-417.08542f, 299.2049f), new(-374.5186f, 230.36479f), new(237.5143f, -171.1538f), new(-230.73209f, 297.2853f), new(436.3218f, -229.4651f),
+ new(-297.1261f, 174.5342f), new(-362.5366f, 225.9908f), new(-234.93509f, 240.9096f), new(289.8757f, -178.1669f), new(-365.2765f, 303.89767f),
+ new(-296.68338f, 440.45142f), new(-356.86288f, 365.7047f), new(423.5045f, -366.8992f), new(247.1133f, -237.9321f), new(173.6322f, -298.6749f),
+ new(-231.4021f, 236.8506f), new(-422.6926f, 363.32898f), new(241.0586f, -301.1031f), new(418.79202f, -301.25528f), new(-231.2276f, 431.7513f),
+ new(-228.04709f, 302.5133f), new(238.7025f, -364.497f), new(229.3075f, -367.37f), new(-432.96512f, 232.6776f), new(-302.5734f, 440.0434f),
+ new(-163.5656f, 242.6538f), new(300.9929f, -236.6995f), new(372.7514f, -305.4366f), new(173.8625f, -364.339f), new(-363.8535f, 294.5247f),
+ new(-181.9996f, 237.7518f), new(-290.8519f, 359.82178f), new(-237.0306f, 435.15332f), new(-299.7923f, 231.1093f), new(-168.1819f, 299.9843f),
+ new(307.8321f, -359.1872f), new(175.7695f, -363.847f), new(228.39151f, -437.2479f), new(-236.2831f, 233.0756f), new(246.58629f, -237.1091f),
+ new(171.1452f, -296.20187f), new(301.0884f, -428.4863f), new(-433.49957f, 361.22098f), new(245.6355f, -431.93192f), new(-169.2399f, 302.3533f),
+ new(-163.7946f, 370.7794f), new(230.59329f, -177.1818f), new(301.99588f, -235.3685f), new(295.6796f, -302.30222f), new(-229.4596f, 429.40732f),
+ new(308.3827f, -165.43091f), new(-295.60672f, 302.4781f), new(-299.2364f, 416.40842f), new(421.9935f, -367.47623f), new(365.4379f, -171.1346f),
+ new(301.0276f, -299.3902f), new(-230.8959f, 363.43268f), new(422.9858f, -247.8841f), new(-177.2849f, 296.9353f), new(-161.4246f, 362.89938f),
+ new(430.48203f, -301.1283f), new(-300.5237f, 305.41708f), new(-416.9634f, 303.75888f), new(306.62558f, -300.4632f), new(-363.32147f, 293.8757f),
+ new(-235.8611f, 291.0303f), new(-426.92142f, 289.7169f), new(-229.4649f, 365.7507f), new(176.30191f, -236.8307f), new(-234.4981f, 236.8066f)
+ ]},
+ { 785, [
+ new(359.9345f, 280.83032f), new(305.392f, -355.123f), new(-369.6749f, 303.6311f), new(366.73822f, -290.3873f), new(281.6307f, 257.962f),
+ new(298.3266f, -292.0932f), new(-273.4085f, 407.25488f), new(297.2574f, -406.4339f), new(193.0177f, -295.3774f), new(335.2313f, 363.7757f),
+ new(247.8211f, -284.62738f), new(-367.4692f, 194.1002f), new(323.2048f, 322.3378f), new(374.91202f, -352.6218f), new(287.9943f, 246.51099f),
+ new(402.5808f, -224.3588f), new(358.98172f, -288.66553f), new(-398.0711f, 360.3423f), new(-358.5723f, 310.3878f), new(250.9314f, -401.44852f),
+ new(363.6532f, 306.1482f), new(388.32602f, -416.7318f), new(-233.36789f, 246.2462f), new(340.8861f, 238.4053f), new(325.9916f, 229.8118f),
+ new(-366.0292f, 182.3752f), new(262.64282f, -352.5916f), new(257.8959f, 258.2729f), new(407.7898f, -228.82181f), new(-294.27902f, 305.6096f),
+ new(249.7934f, -406.0495f), new(386.484f, -401.8138f), new(-353.3814f, 364.00778f), new(-173.7449f, 254.08998f), new(-377.69522f, 180.9132f),
+ new(228.0897f, 299.9549f), new(200.05211f, -234.025f), new(-274.11652f, 413.1909f), new(-410.3881f, 303.7623f), new(-352.46512f, 298.8736f),
+ new(-229.7379f, 373.2914f), new(-396.76212f, 349.68228f), new(222.8821f, 340.9067f), new(-406.6691f, 238.208f), new(398.4098f, -229.7788f),
+ new(-241.83989f, 357.2314f), new(413.60892f, -281.7775f), new(-357.48352f, 409.1578f), new(202.81529f, -334.8545f), new(374.89f, -175.4725f),
+ new(263.4115f, 238.976f), new(427.8559f, -297.8535f), new(238.3289f, -176.02669f), new(-357.2214f, 358.22778f), new(316.147f, -352f),
+ new(298.57498f, -238.0655f), new(286.7501f, 279.0387f), new(251.16899f, -240.5724f), new(-237.8127f, 301.43298f), new(222.5888f, 258.7547f),
+ new(304.931f, -249.96451f), new(-232.1129f, 242.9032f), new(208.4935f, 337.2265f), new(-345.51218f, 236.2397f), new(354.1721f, 317.9104f),
+ new(298.658f, -237.7625f), new(-185.9715f, 310.81918f), new(246.3003f, 318.3619f), new(304.2525f, 297.6416f), new(381.7549f, 367.8664f),
+ new(-417.0001f, 308.0463f), new(252.1339f, 265.9469f), new(-301.682f, 307.0066f), new(310.118f, -346.80798f), new(318.0849f, 281.6292f),
+ new(360.98718f, 321.26218f), new(369.4108f, 251.93979f), new(279.8541f, 290.5957f), new(-360.342f, 293.3145f), new(-229.35269f, 303.123f),
+ new(393.7819f, 321.6334f), new(411.95892f, -286.7965f), new(234.6014f, -282.3614f), new(350.0894f, 344.3821f), new(-281.3295f, 417.8639f),
+ new(307.1939f, 360.0258f), new(243.61351f, 293.89062f), new(352.92618f, 327.2332f), new(219.0956f, 262.68842f), new(-233.7869f, 245.1452f),
+ new(263.21057f, 362.4105f), new(-183.9711f, 254.5338f), new(-290.08f, 201.15619f), new(215.5905f, 331.1705f), new(-294.3863f, 238.6736f),
+ new(-233.53389f, 256.0677f), new(374.54102f, -344.3138f), new(285.1164f, -406.3519f), new(-289.9421f, 185.6702f), new(350.3253f, -241.2773f),
+ new(-358.35352f, 415.0048f), new(301.2786f, -308.8892f), new(-227.9009f, 358.3714f), new(262.9496f, 359.07248f), new(281.8259f, 281.5206f),
+ new(376.7105f, 341.092f), new(373.333f, -339.83582f), new(-219.38281f, 204.15921f), new(257.3429f, 261.4849f), new(-424.42508f, 296.2613f),
+ new(229.8199f, -163.9437f), new(326.8156f, 370.5029f), new(257.1549f, 340.6304f), new(-232.23041f, 419.94f), new(-182.3712f, 361.6524f),
+ new(190.9677f, -293.8464f), new(252.7445f, 316.13107f), new(-358.37628f, 309.0218f), new(323.034f, 279.63f), new(-284.072f, 197.2742f),
+ new(318.037f, 256.9742f), new(-369.6919f, 305.3411f), new(-346.7694f, 359.7248f), new(-225.29181f, 208.5282f), new(-346.0024f, 354.61578f),
+ new(-190.57611f, 263.7458f), new(248.2911f, -289.5424f), new(248.043f, -227.2684f), new(-296.5923f, 249.4806f), new(375.3058f, 241.5078f),
+ new(326.1179f, -190.25279f), new(-224.6818f, 255.43901f), new(354.2027f, -282.57953f), new(348.813f, -285.5065f), new(349.0263f, -231.86229f),
+ new(-345.3284f, 347.9998f), new(257.4389f, 345.0834f), new(318.7649f, -181.50479f), new(387.885f, -406.99182f), new(-225.7224f, 436.263f),
+ new(328.8619f, -198.1118f), new(348.232f, -288.42352f), new(353.9593f, -221.94029f), new(-224.1598f, 256.835f), new(-366.75922f, 188.8242f),
+ new(239.12f, -227.1404f), new(378.4528f, 234.32779f), new(-296.73828f, 245.0476f), new(316.2178f, 327.51382f), new(251.6685f, 287.9486f),
+ new(429.5222f, -350.6889f), new(291.9021f, 349.0336f), new(364.5212f, -285.0383f), new(-293.12402f, 298.1876f), new(344.7395f, 264.7414f),
+ new(-292.562f, 348.7267f), new(-216.93341f, 418.798f), new(-189.6952f, 376.20438f), new(307.658f, -246.5365f), new(351.8645f, 293.9623f),
+ new(350.63748f, 256.7644f), new(-357.3542f, 246.61069f), new(-234.7499f, 247.9202f), new(344.8804f, 348.8461f), new(-302.294f, 310.6376f),
+ new(255.2348f, -289.39862f), new(-182.4572f, 363.8224f), new(252.23389f, 349.5274f), new(-230.22069f, 309.495f), new(387.2669f, 334.0094f),
+ new(198.1736f, 251.9586f), new(-274.11652f, 413.1909f), new(361.13202f, -343.93982f), new(-306.638f, 304.1286f), new(341.1421f, 241.6913f),
+ new(350.145f, -291.2135f), new(-283.3991f, 176.7142f), new(-184.0145f, 305.1532f), new(-292.04303f, 290.2616f), new(354.366f, 355.1755f),
+ new(-232.41089f, 251.4037f), new(297.9635f, 308.37558f), new(297.9954f, -414.0339f), new(367.276f, -166.6835f), new(-346.18817f, 242.78369f),
+ new(194.5937f, -308.1654f), new(287.7073f, 242.01f), new(361.4813f, -227.50829f), new(368.69122f, -293.16827f), new(325.321f, 272.782f),
+ new(375.5618f, 246.6888f), new(-355.9905f, 403.8858f), new(-395.0881f, 242.54599f), new(312.3989f, 355.5828f), new(381.8298f, 231.1504f),
+ new(427.2759f, -288.5695f), new(261.70282f, -346.9646f), new(234.6085f, 243.3703f), new(-190.9805f, 318.7062f), new(248.259f, -232.8854f),
+ new(-304.1383f, 248.5896f), new(-365.86752f, 419.8718f), new(296.08398f, -243.58951f), new(374.6859f, 359.9441f), new(288.8404f, -400.9769f),
+ new(254.58481f, -336.5816f), new(286.8361f, 285.44168f), new(363.9663f, -241.6193f), new(209.4283f, -339.14148f), new(282.2644f, 317.9233f),
+ new(358.4737f, -286.2265f), new(-347.8172f, 237.2867f), new(327.3439f, -198.3728f), new(251.85081f, -340.6196f), new(217.2743f, 232.1803f),
+ new(-343.5374f, 352.70477f), new(218.9215f, 316.9045f), new(214.1505f, 323.9085f), new(-295.49002f, 307.7656f), new(-353.5652f, 252.24669f),
+ new(371.6932f, 299.9014f), new(-404.24112f, 347.5713f), new(185.80371f, -290.7004f), new(318.0848f, 341.7883f), new(-401.7431f, 251.269f),
+ new(250.3515f, 279.1636f), new(-217.7904f, 425.24802f), new(-346.9532f, 247.9637f), new(282.5829f, 341.8851f), new(-184.5641f, 259.8488f),
+ new(-309.50803f, 304.3136f), new(-228.1208f, 203.3882f), new(-222.5898f, 252.65701f), new(261.9078f, -339.9866f), new(304.4085f, 303.61758f),
+ new(-368.0789f, 299.9831f), new(-272.5415f, 400.40088f), new(-294.07f, 360.9837f), new(193.5617f, -302.06442f), new(192.30211f, -222.622f),
+ new(314.2138f, 246.5873f), new(313.9288f, 242.1103f), new(362.57928f, -231.9883f), new(233.9465f, 247.1963f), new(325.5168f, 309.2388f),
+ new(401.1567f, 349.6286f), new(345.974f, -283.0845f), new(397.7009f, 313.68338f), new(312.1789f, 351.1258f), new(299.09738f, -421.3519f),
+ new(290.1431f, 355.8886f), new(337.35712f, 244.9243f), new(290.4423f, 236.05199f), new(426.0119f, -282.9375f), new(302.1306f, -297.65518f),
+ new(-409.6821f, 298.41528f), new(-233.8279f, 259.4687f), new(-374.0812f, 198.3842f), new(417.5939f, -277.4755f), new(386.8923f, 285.1373f),
+ new(214.3036f, 269.63342f), new(310.329f, -346.71997f), new(-416.2951f, 304.26428f), new(-404.08212f, 364.2363f), new(-300.982f, 365.4647f),
+ new(288.2347f, 317.1368f), new(230.9989f, -167.49869f), new(-238.1259f, 262.6467f), new(238.5754f, -290.9004f), new(251.6485f, 321.35107f),
+ new(-238.1397f, 320.58798f), new(359.9205f, 288.0163f), new(373.89f, -170.9755f), new(361.07892f, 353.52908f), new(362.5675f, 272.8883f),
+ new(368.5299f, 365.2201f), new(254.3138f, -286.60663f), new(234.05121f, 355.71558f), new(-183.8625f, 309.7192f), new(210.8723f, -350.8635f),
+ new(239.3094f, -285.4064f), new(255.6958f, -288.28162f), new(240.07399f, -229.7104f), new(242.6684f, -395.7015f), new(-218.9788f, 199.42221f),
+ new(214.0496f, 270.4034f), new(199.5161f, -227.3f), new(410.2498f, -239.2738f), new(339.4523f, 365.4777f), new(-394.4231f, 236.71599f),
+ new(431.3672f, -365.6049f), new(306.1916f, -307.04318f), new(-397.4241f, 355.5783f), new(-302.0473f, 253.5836f), new(-357.246f, 288.7085f),
+ new(-395.7321f, 247.375f), new(324.27582f, 317.4298f), new(350.8354f, 340.9171f), new(325.2129f, -186.2778f), new(-408.94708f, 292.0373f),
+ new(421.1042f, -345.2269f), new(-292.014f, 200.34619f), new(349.9485f, 260.2764f), new(408.3018f, -232.1328f), new(-241.4887f, 315.839f),
+ new(239.8874f, -399.7995f), new(326.34702f, 284.241f), new(210.14929f, -344.8595f), new(303.7156f, -296.6112f), new(-301.2353f, 249.4416f),
+ new(304.3166f, -299.7572f), new(378.06702f, -396.3548f), new(-297.686f, 364.4277f), new(-172.9139f, 261.96f), new(395.0213f, 274.2863f),
+ new(-359.539f, 296.3595f), new(-296.8403f, 249.1296f), new(430.7992f, -356.4599f), new(246.1051f, 245.6815f), new(-218.5084f, 431.587f),
+ new(289.4401f, 359.4836f), new(375.34003f, -182.6945f), new(196.4953f, 300.2192f), new(-372.1489f, 307.8151f), new(-356.7155f, 401.6808f),
+ new(323.027f, 285.892f), new(-363.043f, 299.8765f), new(359.678f, -347.1498f), new(376.9794f, 258.8948f), new(217.619f, 368.0991f),
+ new(400.4554f, 251.3281f), new(249.2814f, -399.9905f), new(-183.6832f, 372.30838f), new(-229.1614f, 431.375f), new(208.66861f, 283.0094f),
+ new(318.0849f, 317.9103f), new(394.3649f, 327.9474f), new(-186.24649f, 314.6562f), new(-183.03621f, 367.0444f), new(317.543f, -351.4f),
+ new(-294.07f, 360.9837f), new(-228.92189f, 365.7594f), new(366.11902f, -335.1558f), new(273.8824f, 229.7463f), new(303.39798f, -243.93651f),
+ new(298.5306f, -292.1482f), new(287.6324f, -405.0909f), new(375.56192f, 355.8811f), new(362.27917f, 315.81018f), new(403.512f, 299.9014f),
+ new(-352.09113f, 300.2896f), new(367.3602f, -287.46127f), new(353.6497f, 281.8578f), new(282.7893f, 250.95499f), new(-284.508f, 190.88919f),
+ new(284.2311f, 363.9486f), new(-225.8868f, 258.928f), new(256.9508f, -291.6246f), new(233.4062f, 359.4806f), new(317.7f, -364.41898f),
+ new(287.1607f, 322.0838f), new(-282.772f, 186.60919f), new(199.0521f, 349.0937f), new(-230.9267f, 315.912f), new(-293.87802f, 305.1836f),
+ new(-217.4338f, 193.0702f), new(418.9532f, -348.7259f), new(246.068f, 282.1087f), new(201.0921f, -240.088f), new(280.1737f, 327.25882f),
+ new(-237.79669f, 318.218f), new(343.23828f, 362.2427f), new(316.045f, 291.044f), new(-280.30652f, 413.6879f), new(393.9963f, 279.0493f),
+ new(-353.7271f, 301.93262f), new(-179.82489f, 266.42798f), new(-357.2233f, 305.9268f), new(250.7264f, -411.71152f), new(215.76561f, 276.9544f),
+ new(309.00882f, 251.0323f), new(259.4256f, 365.6435f), new(342.9943f, 358.6877f), new(265.4995f, 234.71901f), new(-227.9009f, 358.3714f),
+ new(245.9138f, 354.3022f), new(239.3439f, -182.8627f), new(237.6359f, -169.0107f), new(254.3135f, 306.2341f), new(-225.59981f, 204.0442f),
+ new(263.7205f, 242.326f), new(-351.0201f, 296.7156f), new(242.4111f, -281.1194f), new(302.91898f, -241.4125f), new(319.12302f, -364.18597f),
+ new(227.2502f, 364.7536f), new(243.5875f, 327.3191f), new(373.311f, -413.77982f), new(295.4016f, -299.1992f), new(273.5094f, 370.8387f),
+ new(-360.62128f, 312.4578f), new(261.1978f, -340.8706f), new(354.2841f, 245.2263f), new(241.415f, -221.5954f), new(318.712f, -355.995f),
+ new(227.7905f, 252.4693f), new(-238.1539f, 378.7474f), new(259.93552f, 245.56f), new(-293.453f, 355.2007f), new(-283.9311f, 181.7752f)
]},
{ 1102, [
-new(246.58629f, -237.1091f), new(175.7695f, -363.847f), new(421.932f, -302.9813f), new(-424.8396f, 362.83298f), new(298.0286f, -299.4372f),
-new(-366.39368f, 439.47787f), new(-418.35742f, 296.44388f), new(-355.06558f, 242.4368f), new(-162.8786f, 231.4178f), new(303.64008f, -373.5852f),
-new(-355.5977f, 434.78888f), new(-237.0306f, 435.15332f), new(173.8625f, -364.339f), new(-162.8876f, 360.0644f), new(297.58868f, -160.74991f),
-new(165.7539f, -239.9437f), new(225.2476f, -301.7841f), new(-354.16467f, 424.6869f), new(-181.9996f, 237.7518f), new(-430.4704f, 311.60388f),
-new(-291.5889f, 370.94278f), new(245.12329f, -239.9441f), new(-228.68909f, 304.6593f), new(-302.5734f, 440.0434f), new(-232.3629f, 366.4537f),
-new(244.8495f, -420.9269f), new(295.6796f, -302.30222f), new(292.2341f, -368.8832f), new(-169.7849f, 298.78732f), new(235.5013f, -165.67479f),
-new(366.2639f, -170.72159f), new(-374.5186f, 230.36479f), new(-429.27112f, 240.39061f), new(301.0884f, -428.4863f), new(-297.1261f, 174.5342f),
-new(425.5278f, -224.7851f), new(303.11688f, -236.8735f), new(-366.9319f, 359.11072f), new(226.3435f, -433.66492f), new(172.7232f, -300.4979f),
-new(-365.426f, 179.72511f), new(361.85608f, -416.9f), new(-228.6791f, 299.6043f), new(-361.0865f, 300.3317f), new(429.1145f, -364.68723f),
-new(295.17242f, -430.8703f), new(-301.26172f, 305.68008f), new(-308.25232f, 239.31529f), new(237.8565f, -362.422f), new(-426.35013f, 234.7226f),
-new(307.4021f, -365.0162f), new(-231.4406f, 426.1733f), new(-234.4981f, 236.8066f), new(-365.3519f, 370.7217f), new(374.81342f, -302.2906f),
-new(168.24321f, -302.2479f), new(-299.7923f, 231.1093f), new(-163.7946f, 370.7794f), new(-360.04547f, 303.7227f), new(364.4066f, -360.3153f),
-new(300.9929f, -236.6995f), new(-358.8419f, 361.6587f), new(235.0155f, -359.6f), new(364.1436f, -362.5003f), new(-169.2399f, 302.3533f),
-new(231.6985f, -366.507f), new(238.6983f, -168.85379f), new(-417.08542f, 299.2049f), new(-289.31738f, 424.45142f), new(-234.0399f, 368.58768f),
-new(298.3541f, -355.4762f), new(-234.7721f, 234.7536f), new(-236.2831f, 233.0756f), new(289.8757f, -178.1669f), new(354.1431f, -434.317f),
-new(239.4476f, -302.01608f), new(173.67891f, -236.85269f), new(296.21768f, -162.8779f), new(417.8138f, -242.1991f), new(238.3965f, -363.173f),
-new(245.6355f, -431.93192f), new(-366.79358f, 247.7658f), new(238.7025f, -364.497f), new(-230.4431f, 304.3753f), new(-355.9976f, 243.07579f),
-new(361.1146f, -357.3723f), new(-233.7677f, 172.3531f), new(301.0276f, -299.3902f), new(-173.3459f, 305.37732f), new(-310.0939f, 358.2028f),
-new(-427.4421f, 232.47461f), new(225.7103f, -241.96611f), new(-301.1173f, 241.6853f), new(-237.3711f, 239.6346f), new(305.47308f, -366.3772f),
-new(302.78888f, -234.4155f), new(-365.2765f, 303.89767f), new(-296.2933f, 238.11229f), new(295.2139f, -238.8845f), new(301.8386f, -298.2192f),
-new(-370.4549f, 359.54572f), new(-233.8589f, 362.7657f), new(-310.8924f, 421.3034f), new(-425.0286f, 367.077f), new(-231.4021f, 236.8506f),
-new(173.6322f, -298.6749f), new(357.3734f, -292.4766f), new(302.7046f, -300.4222f), new(298.90442f, -423.1013f), new(-361.0865f, 300.3317f),
-new(305.6561f, -359.7532f), new(-293.9957f, 301.8151f), new(363.7769f, -168.2416f), new(308.5687f, -177.4629f), new(362.4535f, -227.65431f),
-new(361.8074f, -288.6736f), new(-301.39108f, 178.7862f), new(436.3218f, -229.4651f), new(172.1035f, -362.259f), new(-301.26172f, 305.68008f),
-new(236.9745f, -364.426f), new(-160.8976f, 362.0764f), new(-182.0706f, 229.9148f), new(300.7996f, -300.3012f), new(-231.2276f, 431.7513f),
-new(168.74991f, -245.1357f), new(372.7514f, -305.4366f), new(-438.1964f, 294.2049f), new(237.5143f, -171.1538f), new(354.09442f, -306.0896f),
-new(-298.59808f, 170.87221f), new(-237.32469f, 175.9131f), new(234.05551f, -416.2489f), new(-369.6605f, 294.6167f), new(365.4149f, -172.8376f),
-new(298.94388f, -231.1085f), new(231.7703f, -173.4468f), new(-296.2193f, 234.1433f), new(-243.86409f, 295.24432f), new(-359.26288f, 367.1357f),
-new(-429.4986f, 369.98798f), new(303.7984f, -432.6833f), new(-374.5016f, 235.5118f), new(302.14188f, -234.2905f), new(430.2475f, -362.4292f),
-new(-234.09769f, 169.79611f), new(-237.7461f, 308.6563f), new(-426.10013f, 237.21361f), new(-363.8535f, 294.5247f), new(368.9965f, -231.9263f),
-new(233.5406f, -292.81308f), new(-174.0239f, 301.02933f), new(-228.04709f, 302.5133f), new(298.99658f, -295.3922f), new(-237.3349f, 371.3957f),
-new(174.98991f, -233.8177f), new(427.1365f, -359.3342f), new(-296.40372f, 302.7761f), new(-433.49957f, 361.22098f), new(-295.60672f, 302.4781f),
-new(171.64151f, -358.865f), new(241.0586f, -301.1031f), new(309.7527f, -168.9969f), new(-298.8511f, 173.0352f), new(372.7381f, -433.77298f),
-new(-241.8926f, 424.4943f), new(367.91458f, -361.3743f), new(-163.5656f, 242.6538f), new(-174.35959f, 247.3328f), new(171.1452f, -296.20187f),
-new(-305.7403f, 231.7723f), new(-368.038f, 169.8601f), new(370.6005f, -237.22931f), new(-306.82788f, 372.3628f), new(429.43002f, -298.0113f),
-new(-358.727f, 175.7801f), new(360.8749f, -174.2916f), new(-234.93509f, 240.9096f), new(-357.32648f, 300.09567f), new(436.6838f, -241.16609f),
-new(359.1696f, -366.1383f), new(-305.68872f, 297.2971f), new(-290.8519f, 359.82178f), new(-306.36508f, 168.4142f), new(-174.5886f, 375.4574f),
-new(-358.259f, 169.7151f), new(356.62048f, -240.3033f), new(368.1615f, -238.2023f), new(372.6014f, -293.3536f), new(304.86588f, -232.8675f),
-new(-241.46869f, 167.2621f), new(-432.96512f, 232.6776f), new(-177.2849f, 296.9353f), new(-302.3829f, 375.6218f), new(306.55908f, -362.0842f),
-new(-419.6744f, 306.91388f), new(-231.50409f, 305.39832f), new(302.1004f, -426.2753f), new(239.6266f, -296.37808f), new(-296.0217f, 298.64108f),
-new(310.6257f, -174.2379f), new(-243.1379f, 359.30368f), new(233.4223f, -224.5511f), new(-354.6656f, 232.6688f), new(368.4411f, -417.71597f),
-new(-299.7497f, 295.4061f), new(228.39151f, -437.2479f), new(167.9095f, -366.637f), new(-298.3427f, 306.39008f), new(425.97f, -294.57028f),
-new(170.72891f, -229.5837f), new(428.157f, -300.5233f), new(-230.73209f, 297.2853f), new(308.3827f, -165.43091f), new(-353.5036f, 239.8528f),
-new(423.5045f, -366.8992f), new(244.2163f, -229.22911f), new(229.3075f, -367.37f), new(372.6501f, -421.581f), new(365.4379f, -171.1346f),
-new(174.83751f, -362.041f), new(-374.11768f, 422.07687f), new(-361.21448f, 297.11868f), new(-362.99088f, 357.9917f), new(-299.2364f, 416.40842f),
-new(-231.2276f, 431.7513f), new(-367.2277f, 440.0569f), new(-240.65909f, 232.7346f), new(-371.039f, 167.4311f), new(230.59329f, -177.1818f),
-new(421.9935f, -367.47623f), new(359.7145f, -233.2673f), new(304.3646f, -296.8892f), new(-296.2193f, 234.1433f), new(418.79202f, -301.25528f),
-new(-362.5366f, 225.9908f), new(170.2982f, -299.74088f), new(-296.68338f, 440.45142f), new(228.6926f, -304.3031f), new(361.8376f, -362.9153f),
-new(-182.3006f, 358.0424f), new(301.99588f, -235.3685f), new(247.1133f, -237.9321f), new(-230.8959f, 363.43268f)
+ new(246.58629f, -237.1091f), new(175.7695f, -363.847f), new(421.932f, -302.9813f), new(-424.8396f, 362.83298f), new(298.0286f, -299.4372f),
+ new(-366.39368f, 439.47787f), new(-418.35742f, 296.44388f), new(-355.06558f, 242.4368f), new(-162.8786f, 231.4178f), new(303.64008f, -373.5852f),
+ new(-355.5977f, 434.78888f), new(-237.0306f, 435.15332f), new(173.8625f, -364.339f), new(-162.8876f, 360.0644f), new(297.58868f, -160.74991f),
+ new(165.7539f, -239.9437f), new(225.2476f, -301.7841f), new(-354.16467f, 424.6869f), new(-181.9996f, 237.7518f), new(-430.4704f, 311.60388f),
+ new(-291.5889f, 370.94278f), new(245.12329f, -239.9441f), new(-228.68909f, 304.6593f), new(-302.5734f, 440.0434f), new(-232.3629f, 366.4537f),
+ new(244.8495f, -420.9269f), new(295.6796f, -302.30222f), new(292.2341f, -368.8832f), new(-169.7849f, 298.78732f), new(235.5013f, -165.67479f),
+ new(366.2639f, -170.72159f), new(-374.5186f, 230.36479f), new(-429.27112f, 240.39061f), new(301.0884f, -428.4863f), new(-297.1261f, 174.5342f),
+ new(425.5278f, -224.7851f), new(303.11688f, -236.8735f), new(-366.9319f, 359.11072f), new(226.3435f, -433.66492f), new(172.7232f, -300.4979f),
+ new(-365.426f, 179.72511f), new(361.85608f, -416.9f), new(-228.6791f, 299.6043f), new(-361.0865f, 300.3317f), new(429.1145f, -364.68723f),
+ new(295.17242f, -430.8703f), new(-301.26172f, 305.68008f), new(-308.25232f, 239.31529f), new(237.8565f, -362.422f), new(-426.35013f, 234.7226f),
+ new(307.4021f, -365.0162f), new(-231.4406f, 426.1733f), new(-234.4981f, 236.8066f), new(-365.3519f, 370.7217f), new(374.81342f, -302.2906f),
+ new(168.24321f, -302.2479f), new(-299.7923f, 231.1093f), new(-163.7946f, 370.7794f), new(-360.04547f, 303.7227f), new(364.4066f, -360.3153f),
+ new(300.9929f, -236.6995f), new(-358.8419f, 361.6587f), new(235.0155f, -359.6f), new(364.1436f, -362.5003f), new(-169.2399f, 302.3533f),
+ new(231.6985f, -366.507f), new(238.6983f, -168.85379f), new(-417.08542f, 299.2049f), new(-289.31738f, 424.45142f), new(-234.0399f, 368.58768f),
+ new(298.3541f, -355.4762f), new(-234.7721f, 234.7536f), new(-236.2831f, 233.0756f), new(289.8757f, -178.1669f), new(354.1431f, -434.317f),
+ new(239.4476f, -302.01608f), new(173.67891f, -236.85269f), new(296.21768f, -162.8779f), new(417.8138f, -242.1991f), new(238.3965f, -363.173f),
+ new(245.6355f, -431.93192f), new(-366.79358f, 247.7658f), new(238.7025f, -364.497f), new(-230.4431f, 304.3753f), new(-355.9976f, 243.07579f),
+ new(361.1146f, -357.3723f), new(-233.7677f, 172.3531f), new(301.0276f, -299.3902f), new(-173.3459f, 305.37732f), new(-310.0939f, 358.2028f),
+ new(-427.4421f, 232.47461f), new(225.7103f, -241.96611f), new(-301.1173f, 241.6853f), new(-237.3711f, 239.6346f), new(305.47308f, -366.3772f),
+ new(302.78888f, -234.4155f), new(-365.2765f, 303.89767f), new(-296.2933f, 238.11229f), new(295.2139f, -238.8845f), new(301.8386f, -298.2192f),
+ new(-370.4549f, 359.54572f), new(-233.8589f, 362.7657f), new(-310.8924f, 421.3034f), new(-425.0286f, 367.077f), new(-231.4021f, 236.8506f),
+ new(173.6322f, -298.6749f), new(357.3734f, -292.4766f), new(302.7046f, -300.4222f), new(298.90442f, -423.1013f), new(-361.0865f, 300.3317f),
+ new(305.6561f, -359.7532f), new(-293.9957f, 301.8151f), new(363.7769f, -168.2416f), new(308.5687f, -177.4629f), new(362.4535f, -227.65431f),
+ new(361.8074f, -288.6736f), new(-301.39108f, 178.7862f), new(436.3218f, -229.4651f), new(172.1035f, -362.259f), new(-301.26172f, 305.68008f),
+ new(236.9745f, -364.426f), new(-160.8976f, 362.0764f), new(-182.0706f, 229.9148f), new(300.7996f, -300.3012f), new(-231.2276f, 431.7513f),
+ new(168.74991f, -245.1357f), new(372.7514f, -305.4366f), new(-438.1964f, 294.2049f), new(237.5143f, -171.1538f), new(354.09442f, -306.0896f),
+ new(-298.59808f, 170.87221f), new(-237.32469f, 175.9131f), new(234.05551f, -416.2489f), new(-369.6605f, 294.6167f), new(365.4149f, -172.8376f),
+ new(298.94388f, -231.1085f), new(-230.8959f, 363.43268f), new(231.7703f, -173.4468f), new(-296.2193f, 234.1433f), new(-243.86409f, 295.24432f),
+ new(-359.26288f, 367.1357f), new(-429.4986f, 369.98798f), new(303.7984f, -432.6833f), new(-374.5016f, 235.5118f), new(302.14188f, -234.2905f),
+ new(430.2475f, -362.4292f), new(-234.09769f, 169.79611f), new(-237.7461f, 308.6563f), new(-426.10013f, 237.21361f), new(-363.8535f, 294.5247f),
+ new(368.9965f, -231.9263f), new(233.5406f, -292.81308f), new(-174.0239f, 301.02933f), new(-228.04709f, 302.5133f), new(298.99658f, -295.3922f),
+ new(-237.3349f, 371.3957f), new(174.98991f, -233.8177f), new(427.1365f, -359.3342f), new(-296.40372f, 302.7761f), new(-433.49957f, 361.22098f),
+ new(-295.60672f, 302.4781f), new(171.64151f, -358.865f), new(241.0586f, -301.1031f), new(309.7527f, -168.9969f), new(-298.8511f, 173.0352f),
+ new(372.7381f, -433.77298f), new(-241.8926f, 424.4943f), new(367.91458f, -361.3743f), new(-163.5656f, 242.6538f), new(-174.35959f, 247.3328f),
+ new(171.1452f, -296.20187f), new(-305.7403f, 231.7723f), new(-368.038f, 169.8601f), new(370.6005f, -237.22931f), new(-306.82788f, 372.3628f),
+ new(429.43002f, -298.0113f), new(-358.727f, 175.7801f), new(360.8749f, -174.2916f), new(-234.93509f, 240.9096f), new(-357.32648f, 300.09567f),
+ new(436.6838f, -241.16609f), new(359.1696f, -366.1383f), new(-305.68872f, 297.2971f), new(-290.8519f, 359.82178f), new(-306.36508f, 168.4142f),
+ new(-174.5886f, 375.4574f), new(-358.259f, 169.7151f), new(356.62048f, -240.3033f), new(368.1615f, -238.2023f), new(372.6014f, -293.3536f),
+ new(304.86588f, -232.8675f), new(-241.46869f, 167.2621f), new(-432.96512f, 232.6776f), new(-177.2849f, 296.9353f), new(-302.3829f, 375.6218f),
+ new(306.55908f, -362.0842f), new(-419.6744f, 306.91388f), new(-231.50409f, 305.39832f), new(302.1004f, -426.2753f), new(239.6266f, -296.37808f),
+ new(-296.0217f, 298.64108f), new(310.6257f, -174.2379f), new(-243.1379f, 359.30368f), new(233.4223f, -224.5511f), new(-354.6656f, 232.6688f),
+ new(368.4411f, -417.71597f), new(-299.7497f, 295.4061f), new(228.39151f, -437.2479f), new(167.9095f, -366.637f), new(-298.3427f, 306.39008f),
+ new(425.97f, -294.57028f), new(170.72891f, -229.5837f), new(428.157f, -300.5233f), new(-230.73209f, 297.2853f), new(308.3827f, -165.43091f),
+ new(-353.5036f, 239.8528f), new(423.5045f, -366.8992f), new(244.2163f, -229.22911f), new(229.3075f, -367.37f), new(372.6501f, -421.581f),
+ new(365.4379f, -171.1346f), new(174.83751f, -362.041f), new(-374.11768f, 422.07687f), new(-361.21448f, 297.11868f), new(-362.99088f, 357.9917f),
+ new(-299.2364f, 416.40842f), new(-231.2276f, 431.7513f), new(-367.2277f, 440.0569f), new(-240.65909f, 232.7346f), new(-371.039f, 167.4311f),
+ new(230.59329f, -177.1818f), new(421.9935f, -367.47623f), new(359.7145f, -233.2673f), new(304.3646f, -296.8892f), new(-296.2193f, 234.1433f),
+ new(418.79202f, -301.25528f), new(-362.5366f, 225.9908f), new(170.2982f, -299.74088f), new(-296.68338f, 440.45142f), new(228.6926f, -304.3031f),
+ new(361.8376f, -362.9153f), new(-182.3006f, 358.0424f), new(301.99588f, -235.3685f), new(247.1133f, -237.9321f)
]},
{ 1103, [
-new(-226.4738f, 428.6302f), new(-220.6009f, 203.3279f), new(-231.0528f, 425.17218f), new(-223.8519f, 207.3049f), new(-396.4323f, 244.171f),
-new(320.01163f, -189.5584f), new(-226.62779f, 417.9842f), new(-242.756f, 265.41852f), new(-293.66217f, 186.2858f), new(-399.3213f, 247.703f),
-new(205.4178f, -344.6206f), new(-231.2175f, 374.8487f), new(-353.1233f, 250.0328f), new(-242.784f, 263.42352f), new(389.411f, -402.9225f),
-new(246.1567f, -231.0318f), new(242.1763f, -407.9508f), new(203.2358f, -341.90762f), new(-288.18817f, 176.2678f), new(387.966f, -407.2805f),
-new(300.8741f, -365.7083f), new(301.7161f, -365.3253f), new(188.2144f, -297.9707f), new(-357.5453f, 250.4258f), new(-374.1469f, 190.6612f),
-new(302.9921f, -362.0703f), new(415.6246f, -258.096f), new(-242.4643f, 315.23322f), new(-366.5765f, 300.3522f), new(322.6816f, -183.3404f),
-new(-311.5685f, 292.6856f), new(292.5837f, -419.9803f), new(295.5107f, -413.5113f), new(-357.7133f, 238.4498f), new(302.5783f, -298.3386f),
-new(300.8033f, -297.6226f), new(185.7454f, -303.0817f), new(-416.865f, 293.6555f), new(356.2034f, -258.5063f), new(-412.94202f, 301.6925f),
-new(302.74078f, -246.78369f), new(291.7617f, -422.5103f), new(-364.73752f, 301.65723f), new(-234.0233f, 315.2142f), new(-180.1728f, 259.9967f),
-new(301.28232f, -301.4156f), new(-326.80078f, 409.031f), new(183.6643f, -232.4421f), new(-237.2753f, 319.1972f), new(-366.294f, 358.9231f),
-new(-420.351f, 300.4275f), new(299.3073f, -294.2806f), new(240.2282f, -182.7286f), new(242.7502f, -185.9006f), new(-305.6675f, 244.5186f),
-new(305.7928f, -239.6767f), new(-231.0155f, 377.0827f), new(244.0132f, -340.6647f), new(-184.9818f, 320.6539f), new(-240.5665f, 374.9167f),
-new(-415.982f, 294.5845f), new(241.7883f, -399.18182f), new(185.3054f, -294.3527f), new(365.6584f, -352.9604f), new(-310.7035f, 296.1866f),
-new(356.22043f, -256.3183f), new(-180.54361f, 375.7457f), new(-362.7433f, 245.7768f), new(-243.618f, 264.6235f), new(-300.6665f, 237.5116f),
-new(-372.2345f, 301.0952f), new(-363.7595f, 304.7442f), new(-300.52872f, 350.3526f), new(425.7728f, -308.50418f), new(-356.7243f, 245.1458f),
-new(291.9417f, -409.1043f), new(183.1923f, -222.6331f), new(415.7506f, -248.723f), new(-415.831f, 305.22348f), new(302.9368f, -244.8317f),
-new(-367.8395f, 292.8772f), new(300.48932f, -299.9716f), new(302.88577f, -236.0697f), new(-311.8015f, 293.2516f), new(203.5818f, -348.46262f),
-new(244.6973f, -402.8008f), new(365.7764f, -351.0274f), new(-409.5573f, 357.70853f), new(243.5132f, -342.1337f), new(-416.247f, 293.0535f),
-new(-319.3518f, 409.81003f), new(-311.7555f, 296.5766f), new(-302.44772f, 350.1436f), new(421.36328f, -364.6177f), new(-322.24078f, 413.34402f),
-new(238.8862f, -282.16818f), new(-376.3139f, 193.3092f), new(-367.12698f, 360.0911f), new(244.2772f, -340.35672f), new(292.4557f, -407.4613f),
-new(301.2473f, -299.6336f), new(390.88f, -402.0925f), new(-185.1758f, 307.3459f), new(-241.5553f, 307.7882f), new(420.8483f, -367.0627f),
-new(-297.2485f, 245.5096f), new(-181.3678f, 316.2279f), new(428.3158f, -311.65918f), new(-177.6526f, 372.2047f), new(-366.9015f, 301.0732f),
-new(304.64877f, -241.77269f), new(418.3316f, -251.964f), new(-367.6275f, 305.1932f), new(-177.2818f, 256.45572f), new(-366.171f, 358.5831f),
-new(-405.6103f, 361.8745f), new(320.1386f, -180.1834f), new(-310.3525f, 293.91962f), new(377.7379f, -207.3427f), new(246.0157f, -230.4138f),
-new(203.1258f, -349.9516f), new(-186.9298f, 316.1839f), new(-223.5828f, 425.0902f), new(241.6433f, -409.9088f), new(356.37943f, -258.19128f),
-new(-364.25848f, 413.39642f), new(-231.9465f, 373.8927f), new(-313.1875f, 295.2076f), new(304.5918f, -240.8467f), new(-223.51079f, 423.9192f),
-new(378.1709f, -205.3987f), new(300.8241f, -365.4863f), new(387.973f, -398.4855f), new(240.0792f, -192.1196f), new(356.94742f, -257.2203f),
-new(-301.30972f, 348.5246f), new(238.72319f, -294.2332f), new(380.7889f, -200.2357f), new(239.6162f, -291.95718f), new(-237.4493f, 307.2202f),
-new(-242.567f, 263.0855f), new(-243.66501f, 263.79453f), new(246.1887f, -231.2878f), new(246.0277f, -231.5118f), new(-284.77118f, 186.7048f),
-new(186.4653f, -226.7041f), new(368.7104f, -345.8534f), new(-288.20618f, 190.9108f), new(379.49792f, -201.3657f), new(-315.3248f, 407.655f),
-new(-299.81873f, 349.2446f), new(302.33612f, -361.7933f), new(-223.99991f, 195.3299f), new(299.3883f, -304.1526f), new(-185.1306f, 372.4007f),
-new(-235.02449f, 365.9657f), new(-229.0369f, 202.4969f), new(356.6664f, -257.4143f), new(424.6623f, -358.17972f), new(-300.4985f, 249.4856f),
-new(184.0263f, -228.6771f), new(376.03992f, -196.9297f), new(-365.724f, 360.25607f), new(240.8962f, -287.5832f), new(304.1468f, -240.7907f),
-new(377.72592f, -196.4747f), new(364.9491f, -296.7678f), new(-405.7433f, 352.56552f), new(303.0791f, -362.5383f), new(300.93732f, -296.5366f),
-new(-367.8885f, 404.9064f), new(-379.6899f, 189.7632f), new(246.3797f, -230.8638f), new(-184.7948f, 256.5867f), new(-288.3862f, 178.25081f),
-new(367.4921f, -299.92477f), new(365.80338f, -342.2454f), new(-310.8525f, 295.4726f), new(203.9048f, -346.77762f), new(-365.1405f, 415.52142f),
-new(-366.266f, 360.9181f), new(320.1646f, -187.8384f), new(-297.6675f, 239.1746f), new(-242.214f, 264.7565f), new(240.6732f, -190.3576f),
-new(-190.7368f, 316.43192f), new(301.65112f, -361.23032f), new(-230.39279f, 418.6212f), new(321.42462f, -184.7694f), new(-365.645f, 360.6681f),
-new(243.6412f, -341.64072f), new(425.9888f, -316.15518f), new(422.6598f, -311.31918f), new(243.54921f, -339.45172f), new(356.1834f, -258.9963f),
-new(242.1592f, -286.23618f), new(-233.9003f, 317.13022f), new(-229.8719f, 200.8039f), new(364.6131f, -303.46878f), new(244.6212f, -340.9977f),
-new(364.8211f, -306.1428f), new(364.26938f, -349.6174f), new(245.9977f, -231.75279f), new(-181.7856f, 373.3467f), new(-283.6952f, 188.2868f),
-new(-301.27173f, 351.2616f), new(-301.18973f, 348.0586f), new(-367.7095f, 417.61942f), new(-357.6833f, 236.54381f), new(-411.1243f, 356.66052f),
-new(185.47841f, -299.7287f), new(245.6673f, -406.9758f), new(-354.29428f, 246.7998f), new(300.8971f, -361.0323f), new(-365.794f, 359.20007f),
-new(243.26219f, -282.68118f), new(-376.4269f, 185.3312f), new(-367.7775f, 294.54822f), new(-380.5359f, 186.3882f), new(-403.08328f, 358.78552f),
-new(415.9486f, -256.363f), new(-180.69861f, 365.0987f), new(-403.8493f, 242.873f), new(-234.83049f, 379.27267f), new(417.1856f, -252.863f),
-new(-299.9305f, 235.4726f), new(185.15941f, -305.0787f), new(389.651f, -403.2215f), new(425.6468f, -317.8772f), new(421.0283f, -353.6737f),
-new(-373.2035f, 412.93542f), new(237.9702f, -182.0036f), new(246.2307f, -231.0078f), new(413.7616f, -250.54701f), new(-402.6013f, 237.987f),
-new(-235.40529f, 314.3782f), new(367.4784f, -346.9944f), new(299.14432f, -306.3336f), new(183.0283f, -234.7011f), new(-399.4723f, 237.063f),
-new(321.64062f, -184.3684f), new(-181.5678f, 255.3697f), new(387.828f, -409.1995f), new(299.14432f, -306.3336f), new(-322.39078f, 402.70102f),
-new(294.1597f, -415.1083f), new(-239.6465f, 366.6937f), new(421.2233f, -353.27072f), new(385.359f, -405.0625f), new(364.9071f, -304.43878f),
-new(-180.3278f, 249.3497f)
+ new(-226.4738f, 428.6302f), new(-220.6009f, 203.3279f), new(-231.0528f, 425.17218f), new(-223.8519f, 207.3049f), new(-396.4323f, 244.171f),
+ new(320.01163f, -189.5584f), new(-226.62779f, 417.9842f), new(-242.756f, 265.41852f), new(-293.66217f, 186.2858f), new(-399.3213f, 247.703f),
+ new(205.4178f, -344.6206f), new(-231.2175f, 374.8487f), new(-353.1233f, 250.0328f), new(-242.784f, 263.42352f), new(389.411f, -402.9225f),
+ new(246.1567f, -231.0318f), new(242.1763f, -407.9508f), new(203.2358f, -341.90762f), new(-288.18817f, 176.2678f), new(387.966f, -407.2805f),
+ new(300.8741f, -365.7083f), new(301.7161f, -365.3253f), new(188.2144f, -297.9707f), new(-357.5453f, 250.4258f), new(-374.1469f, 190.6612f),
+ new(302.9921f, -362.0703f), new(415.6246f, -258.096f), new(-242.4643f, 315.23322f), new(-366.5765f, 300.3522f), new(322.6816f, -183.3404f),
+ new(-311.5685f, 292.6856f), new(292.5837f, -419.9803f), new(295.5107f, -413.5113f), new(-357.7133f, 238.4498f), new(302.5783f, -298.3386f),
+ new(300.8033f, -297.6226f), new(185.7454f, -303.0817f), new(-416.865f, 293.6555f), new(356.2034f, -258.5063f), new(-412.94202f, 301.6925f),
+ new(302.74078f, -246.78369f), new(291.7617f, -422.5103f), new(-364.73752f, 301.65723f), new(-234.0233f, 315.2142f), new(-180.1728f, 259.9967f),
+ new(301.28232f, -301.4156f), new(-326.80078f, 409.031f), new(183.6643f, -232.4421f), new(-237.2753f, 319.1972f), new(-366.294f, 358.9231f),
+ new(-420.351f, 300.4275f), new(299.3073f, -294.2806f), new(240.2282f, -182.7286f), new(242.7502f, -185.9006f), new(-305.6675f, 244.5186f),
+ new(305.7928f, -239.6767f), new(-231.0155f, 377.0827f), new(244.0132f, -340.6647f), new(-184.9818f, 320.6539f), new(-240.5665f, 374.9167f),
+ new(-415.982f, 294.5845f), new(241.7883f, -399.18182f), new(185.3054f, -294.3527f), new(365.6584f, -352.9604f), new(-310.7035f, 296.1866f),
+ new(356.22043f, -256.3183f), new(-180.54361f, 375.7457f), new(-362.7433f, 245.7768f), new(-243.618f, 264.6235f), new(-300.6665f, 237.5116f),
+ new(-372.2345f, 301.0952f), new(-363.7595f, 304.7442f), new(-300.52872f, 350.3526f), new(425.7728f, -308.50418f), new(-356.7243f, 245.1458f),
+ new(291.9417f, -409.1043f), new(183.1923f, -222.6331f), new(415.7506f, -248.723f), new(-415.831f, 305.22348f), new(302.9368f, -244.8317f),
+ new(-367.8395f, 292.8772f), new(300.48932f, -299.9716f), new(302.88577f, -236.0697f), new(-311.8015f, 293.2516f), new(203.5818f, -348.46262f),
+ new(244.6973f, -402.8008f), new(365.7764f, -351.0274f), new(-409.5573f, 357.70853f), new(243.5132f, -342.1337f), new(-416.247f, 293.0535f),
+ new(-319.3518f, 409.81003f), new(-311.7555f, 296.5766f), new(-302.44772f, 350.1436f), new(421.36328f, -364.6177f), new(-322.24078f, 413.34402f),
+ new(238.8862f, -282.16818f), new(-376.3139f, 193.3092f), new(-367.12698f, 360.0911f), new(244.2772f, -340.35672f), new(292.4557f, -407.4613f),
+ new(301.2473f, -299.6336f), new(390.88f, -402.0925f), new(-185.1758f, 307.3459f), new(-241.5553f, 307.7882f), new(420.8483f, -367.0627f),
+ new(-297.2485f, 245.5096f), new(-181.3678f, 316.2279f), new(428.3158f, -311.65918f), new(-177.6526f, 372.2047f), new(-366.9015f, 301.0732f),
+ new(304.64877f, -241.77269f), new(418.3316f, -251.964f), new(-367.6275f, 305.1932f), new(-177.2818f, 256.45572f), new(-366.171f, 358.5831f),
+ new(-405.6103f, 361.8745f), new(320.1386f, -180.1834f), new(-310.3525f, 293.91962f), new(377.7379f, -207.3427f), new(246.0157f, -230.4138f),
+ new(203.1258f, -349.9516f), new(-186.9298f, 316.1839f), new(-223.5828f, 425.0902f), new(241.6433f, -409.9088f), new(356.37943f, -258.19128f),
+ new(-364.25848f, 413.39642f), new(-231.9465f, 373.8927f), new(-313.1875f, 295.2076f), new(304.5918f, -240.8467f), new(-223.51079f, 423.9192f),
+ new(378.1709f, -205.3987f), new(300.8241f, -365.4863f), new(387.973f, -398.4855f), new(240.0792f, -192.1196f), new(356.94742f, -257.2203f),
+ new(-301.30972f, 348.5246f), new(238.72319f, -294.2332f), new(380.7889f, -200.2357f), new(239.6162f, -291.95718f), new(-237.4493f, 307.2202f),
+ new(-242.567f, 263.0855f), new(-243.66501f, 263.79453f), new(246.1887f, -231.2878f), new(246.0277f, -231.5118f), new(-284.77118f, 186.7048f),
+ new(186.4653f, -226.7041f), new(368.7104f, -345.8534f), new(-288.20618f, 190.9108f), new(379.49792f, -201.3657f), new(-315.3248f, 407.655f),
+ new(-299.81873f, 349.2446f), new(302.33612f, -361.7933f), new(-223.99991f, 195.3299f), new(299.3883f, -304.1526f), new(-185.1306f, 372.4007f),
+ new(-235.02449f, 365.9657f), new(-229.0369f, 202.4969f), new(356.6664f, -257.4143f), new(424.6623f, -358.17972f), new(-300.4985f, 249.4856f),
+ new(184.0263f, -228.6771f), new(376.03992f, -196.9297f), new(-365.724f, 360.25607f), new(240.8962f, -287.5832f), new(304.1468f, -240.7907f),
+ new(377.72592f, -196.4747f), new(364.9491f, -296.7678f), new(-405.7433f, 352.56552f), new(303.0791f, -362.5383f), new(300.93732f, -296.5366f),
+ new(-367.8885f, 404.9064f), new(-379.6899f, 189.7632f), new(246.3797f, -230.8638f), new(-184.7948f, 256.5867f), new(-288.3862f, 178.25081f),
+ new(367.4921f, -299.92477f), new(365.80338f, -342.2454f), new(-310.8525f, 295.4726f), new(203.9048f, -346.77762f), new(-365.1405f, 415.52142f),
+ new(-366.266f, 360.9181f), new(320.1646f, -187.8384f), new(-297.6675f, 239.1746f), new(-242.214f, 264.7565f), new(240.6732f, -190.3576f),
+ new(-190.7368f, 316.43192f), new(301.65112f, -361.23032f), new(-230.39279f, 418.6212f), new(321.42462f, -184.7694f), new(-365.645f, 360.6681f),
+ new(243.6412f, -341.64072f), new(425.9888f, -316.15518f), new(422.6598f, -311.31918f), new(243.54921f, -339.45172f), new(356.1834f, -258.9963f),
+ new(242.1592f, -286.23618f), new(-233.9003f, 317.13022f), new(-229.8719f, 200.8039f), new(364.6131f, -303.46878f), new(244.6212f, -340.9977f),
+ new(364.8211f, -306.1428f), new(364.26938f, -349.6174f), new(245.9977f, -231.75279f), new(-181.7856f, 373.3467f), new(-283.6952f, 188.2868f),
+ new(-301.27173f, 351.2616f), new(-301.18973f, 348.0586f), new(-367.7095f, 417.61942f), new(-357.6833f, 236.54381f), new(-411.1243f, 356.66052f),
+ new(185.47841f, -299.7287f), new(245.6673f, -406.9758f), new(-354.29428f, 246.7998f), new(300.8971f, -361.0323f), new(-365.794f, 359.20007f),
+ new(243.26219f, -282.68118f), new(-376.4269f, 185.3312f), new(-367.7775f, 294.54822f), new(-380.5359f, 186.3882f), new(-403.08328f, 358.78552f),
+ new(415.9486f, -256.363f), new(-180.69861f, 365.0987f), new(-403.8493f, 242.873f), new(-234.83049f, 379.27267f), new(417.1856f, -252.863f),
+ new(-299.9305f, 235.4726f), new(185.15941f, -305.0787f), new(389.651f, -403.2215f), new(425.6468f, -317.8772f), new(421.0283f, -353.6737f),
+ new(-373.2035f, 412.93542f), new(237.9702f, -182.0036f), new(246.2307f, -231.0078f), new(413.7616f, -250.54701f), new(-402.6013f, 237.987f),
+ new(-235.40529f, 314.3782f), new(367.4784f, -346.9944f), new(299.14432f, -306.3336f), new(183.0283f, -234.7011f), new(-399.4723f, 237.063f),
+ new(321.64062f, -184.3684f), new(-181.5678f, 255.3697f), new(387.828f, -409.1995f), new(299.14432f, -306.3336f), new(-322.39078f, 402.70102f),
+ new(294.1597f, -415.1083f), new(-239.6465f, 366.6937f), new(421.2233f, -353.27072f), new(385.359f, -405.0625f), new(364.9071f, -304.43878f),
+ new(-180.3278f, 249.3497f), new(304.3408f, -238.0137f)
]},
{ 1104, [
-new(-177.6526f, 372.2047f), new(390.88f, -402.0925f), new(364.8211f, -306.1428f), new(368.7104f, -345.8534f), new(-180.54361f, 375.7457f),
-new(-181.7856f, 373.3467f), new(-367.7095f, 417.61942f), new(-241.5553f, 307.7882f), new(-234.0233f, 315.2142f), new(-399.4723f, 237.063f),
-new(-242.214f, 264.7565f), new(242.1592f, -286.23618f), new(246.0157f, -230.4138f), new(-399.3213f, 247.703f), new(387.828f, -409.1995f),
-new(356.22043f, -256.3183f), new(243.5132f, -342.1337f), new(-354.29428f, 246.7998f), new(-288.18817f, 176.2678f), new(-185.1758f, 307.3459f),
-new(320.1386f, -180.1834f), new(-223.8519f, 207.3049f), new(300.8971f, -361.0323f), new(238.8862f, -282.16818f), new(-284.77118f, 186.7048f),
-new(241.7883f, -399.18182f), new(245.9977f, -231.75279f), new(-315.3248f, 407.655f), new(-288.20618f, 190.9108f), new(246.3797f, -230.8638f),
-new(303.0791f, -362.5383f), new(188.2144f, -297.9707f), new(356.2034f, -258.5063f), new(-367.6275f, 305.1932f), new(291.7617f, -422.5103f),
-new(-376.3139f, 193.3092f), new(-301.27173f, 351.2616f), new(-409.5573f, 357.70853f), new(-366.9015f, 301.0732f), new(425.9888f, -316.15518f),
-new(365.6584f, -352.9604f), new(-177.2818f, 256.45572f), new(-374.1469f, 190.6612f), new(302.2121f, -361.4753f), new(243.54921f, -339.45172f),
-new(-366.266f, 360.9181f), new(377.72592f, -196.4747f), new(205.4178f, -344.6206f), new(-365.724f, 360.25607f), new(-365.1405f, 415.52142f),
-new(-357.7133f, 238.4498f), new(-288.3862f, 178.25081f), new(-322.24078f, 413.34402f), new(-313.1875f, 295.2076f), new(-403.8493f, 242.873f),
-new(-299.9305f, 235.4726f), new(184.0263f, -228.6771f), new(-242.567f, 263.0855f), new(-319.3518f, 409.81003f), new(322.6816f, -183.3404f),
-new(240.0792f, -192.1196f), new(-311.8015f, 293.2516f), new(186.4653f, -226.7041f), new(295.5107f, -413.5113f), new(-231.2175f, 374.8487f),
-new(378.1709f, -205.3987f), new(302.33612f, -361.7933f), new(-300.6665f, 237.5116f), new(356.1834f, -258.9963f), new(299.14432f, -306.3336f),
-new(-231.0528f, 425.17218f), new(237.9702f, -182.0036f), new(364.9491f, -296.7678f), new(-416.247f, 293.0535f), new(321.64062f, -184.3684f),
-new(-366.171f, 358.5831f), new(-184.7948f, 256.5867f), new(380.7889f, -200.2357f), new(-415.982f, 294.5845f), new(185.3054f, -294.3527f),
-new(356.37943f, -258.19128f), new(-402.6013f, 237.987f), new(-234.83049f, 379.27267f), new(420.8483f, -367.0627f), new(301.7161f, -365.3253f),
-new(244.0132f, -340.6647f), new(415.9486f, -256.363f), new(-357.6833f, 236.54381f), new(-372.2345f, 301.0952f), new(-365.794f, 359.20007f),
-new(-184.9818f, 320.6539f), new(425.7728f, -308.50418f), new(421.36328f, -364.6177f), new(304.1468f, -240.7907f), new(185.7454f, -303.0817f),
-new(-186.9298f, 316.1839f), new(415.7506f, -248.723f), new(421.0283f, -353.6737f), new(428.3158f, -311.65918f), new(245.6673f, -406.9758f),
-new(242.7502f, -185.9006f), new(189.8234f, -293.8717f), new(-396.4323f, 244.171f), new(240.6732f, -190.3576f), new(424.6623f, -358.17972f),
-new(418.3316f, -251.964f), new(-183.6018f, 249.5657f), new(364.9071f, -304.43878f), new(-362.7433f, 245.7768f), new(-300.52872f, 350.3526f),
-new(244.2772f, -340.35672f), new(292.4557f, -407.4613f), new(-235.40529f, 314.3782f), new(-223.99991f, 195.3299f), new(422.6598f, -311.31918f),
-new(-415.831f, 305.22348f), new(-305.6675f, 244.5186f), new(356.6664f, -257.4143f), new(-379.6899f, 189.7632f), new(-300.4985f, 249.4856f),
-new(427.2058f, -312.6532f), new(301.65112f, -361.23032f), new(203.1258f, -349.9516f), new(292.5837f, -419.9803f), new(-403.08328f, 358.78552f),
-new(-180.1728f, 259.9967f), new(-376.4269f, 185.3312f), new(304.3408f, -238.0137f), new(302.88577f, -236.0697f), new(367.4921f, -299.92477f),
-new(-180.69861f, 365.0987f), new(206.7638f, -341.3236f), new(305.7928f, -239.6767f), new(-364.25848f, 413.39642f), new(243.6412f, -341.64072f),
-new(203.9048f, -346.77762f), new(320.01163f, -189.5584f), new(367.4784f, -346.9944f), new(-185.1306f, 372.4007f), new(320.1646f, -187.8384f),
-new(376.03992f, -196.9297f), new(-420.351f, 300.4275f), new(-301.30972f, 348.5246f), new(241.6433f, -409.9088f), new(-190.7368f, 316.43192f),
-new(301.28232f, -301.4156f), new(-363.7595f, 304.7442f), new(300.48932f, -299.9716f), new(-310.3525f, 293.91962f), new(-357.5453f, 250.4258f),
-new(302.5783f, -298.3386f), new(244.6973f, -402.8008f), new(364.6131f, -303.46878f), new(415.6246f, -258.096f), new(-235.02449f, 365.9657f),
-new(239.6162f, -291.95718f), new(-302.44772f, 350.1436f), new(300.8741f, -365.7083f), new(242.1763f, -407.9508f), new(304.5918f, -240.8467f),
-new(302.9921f, -362.0703f), new(301.2473f, -299.6336f), new(-229.8719f, 200.8039f), new(365.7764f, -351.0274f), new(365.80338f, -342.2454f),
-new(300.8241f, -365.4863f), new(302.9368f, -244.8317f), new(183.1923f, -222.6331f), new(-181.3678f, 316.2279f), new(-310.8525f, 295.4726f),
-new(-189.3438f, 307.6909f), new(-240.5665f, 374.9167f), new(-367.12698f, 360.0911f), new(-297.6675f, 239.1746f), new(-233.9003f, 317.13022f),
-new(-299.81873f, 349.2446f), new(-297.2485f, 245.5096f), new(425.6468f, -317.8772f), new(-322.39078f, 402.70102f), new(-220.6009f, 203.3279f),
-new(-242.756f, 265.41852f), new(304.64877f, -241.77269f), new(185.15941f, -305.0787f), new(-237.2753f, 319.1972f), new(-367.8885f, 404.9064f),
-new(321.42462f, -184.7694f), new(-311.4065f, 295.2186f), new(-293.66217f, 186.2858f), new(-226.62779f, 417.9842f), new(-405.7433f, 352.56552f),
-new(387.966f, -407.2805f), new(204.6508f, -345.56662f), new(-180.3278f, 249.3497f), new(-243.618f, 264.6235f), new(-380.5359f, 186.3882f),
-new(356.94742f, -257.2203f), new(-243.66501f, 263.79453f), new(-326.80078f, 409.031f), new(244.6212f, -340.9977f), new(203.5818f, -348.46262f),
-new(240.8962f, -287.5832f), new(-416.865f, 293.6555f), new(-399.8243f, 235.558f), new(-373.2035f, 412.93542f), new(387.973f, -398.4855f),
-new(413.7616f, -250.54701f), new(-367.7775f, 294.54822f), new(-411.1243f, 356.66052f), new(-237.4493f, 307.2202f), new(246.0277f, -231.5118f),
-new(-242.4643f, 315.23322f), new(244.6702f, -339.3457f), new(299.3883f, -304.1526f), new(246.1887f, -231.2878f), new(-229.0369f, 202.4969f),
-new(-311.7555f, 296.5766f), new(-406.2063f, 351.2695f), new(187.18741f, -299.2447f), new(-311.5685f, 292.6856f), new(-405.6103f, 361.8745f),
-new(421.2233f, -353.27072f), new(-239.6465f, 366.6937f), new(-412.94202f, 301.6925f), new(294.1597f, -415.1083f), new(240.2282f, -182.7286f),
-new(366.4121f, -300.9328f), new(238.72319f, -294.2332f), new(-366.294f, 358.9231f), new(203.2358f, -341.90762f), new(-223.51079f, 423.9192f),
-new(299.3073f, -294.2806f), new(243.26219f, -282.68118f), new(-364.73752f, 301.65723f), new(302.74078f, -246.78369f), new(-310.7035f, 296.1866f),
-new(183.6643f, -232.4421f), new(185.47841f, -299.7287f), new(291.9417f, -409.1043f), new(-181.5678f, 255.3697f), new(246.2307f, -231.0078f),
-new(-242.784f, 263.42352f), new(356.5914f, -257.4093f), new(-242.071f, 265.2695f), new(-223.5828f, 425.0902f), new(-226.4738f, 428.6302f),
-new(364.26938f, -349.6174f), new(300.93732f, -296.5366f), new(-367.8395f, 292.8772f), new(385.359f, -405.0625f), new(-356.7243f, 245.1458f),
-new(183.0283f, -234.7011f), new(377.7379f, -207.3427f), new(246.1957f, -230.6718f), new(-231.9465f, 373.8927f)
+ new(-177.6526f, 372.2047f), new(390.88f, -402.0925f), new(364.8211f, -306.1428f), new(368.7104f, -345.8534f), new(-180.54361f, 375.7457f),
+ new(-181.7856f, 373.3467f), new(-367.7095f, 417.61942f), new(-241.5553f, 307.7882f), new(-234.0233f, 315.2142f), new(-399.4723f, 237.063f),
+ new(-242.214f, 264.7565f), new(242.1592f, -286.23618f), new(246.0157f, -230.4138f), new(-399.3213f, 247.703f), new(387.828f, -409.1995f),
+ new(356.22043f, -256.3183f), new(243.5132f, -342.1337f), new(-354.29428f, 246.7998f), new(-288.18817f, 176.2678f), new(-185.1758f, 307.3459f),
+ new(320.1386f, -180.1834f), new(-223.8519f, 207.3049f), new(300.8971f, -361.0323f), new(238.8862f, -282.16818f), new(-284.77118f, 186.7048f),
+ new(241.7883f, -399.18182f), new(245.9977f, -231.75279f), new(-315.3248f, 407.655f), new(-288.20618f, 190.9108f), new(246.3797f, -230.8638f),
+ new(303.0791f, -362.5383f), new(188.2144f, -297.9707f), new(356.2034f, -258.5063f), new(-367.6275f, 305.1932f), new(291.7617f, -422.5103f),
+ new(-376.3139f, 193.3092f), new(-301.27173f, 351.2616f), new(-409.5573f, 357.70853f), new(-366.9015f, 301.0732f), new(425.9888f, -316.15518f),
+ new(365.6584f, -352.9604f), new(-177.2818f, 256.45572f), new(-374.1469f, 190.6612f), new(302.2121f, -361.4753f), new(243.54921f, -339.45172f),
+ new(-366.266f, 360.9181f), new(377.72592f, -196.4747f), new(205.4178f, -344.6206f), new(-365.724f, 360.25607f), new(-365.1405f, 415.52142f),
+ new(-357.7133f, 238.4498f), new(-288.3862f, 178.25081f), new(-322.24078f, 413.34402f), new(-313.1875f, 295.2076f), new(-403.8493f, 242.873f),
+ new(-299.9305f, 235.4726f), new(184.0263f, -228.6771f), new(-242.567f, 263.0855f), new(-319.3518f, 409.81003f), new(322.6816f, -183.3404f),
+ new(240.0792f, -192.1196f), new(-311.8015f, 293.2516f), new(186.4653f, -226.7041f), new(295.5107f, -413.5113f), new(-231.2175f, 374.8487f),
+ new(378.1709f, -205.3987f), new(302.33612f, -361.7933f), new(-300.6665f, 237.5116f), new(356.1834f, -258.9963f), new(299.14432f, -306.3336f),
+ new(-231.0528f, 425.17218f), new(237.9702f, -182.0036f), new(364.9491f, -296.7678f), new(-416.247f, 293.0535f), new(321.64062f, -184.3684f),
+ new(-366.171f, 358.5831f), new(-184.7948f, 256.5867f), new(380.7889f, -200.2357f), new(-415.982f, 294.5845f), new(185.3054f, -294.3527f),
+ new(356.37943f, -258.19128f), new(-402.6013f, 237.987f), new(-234.83049f, 379.27267f), new(420.8483f, -367.0627f), new(301.7161f, -365.3253f),
+ new(244.0132f, -340.6647f), new(415.9486f, -256.363f), new(-357.6833f, 236.54381f), new(-372.2345f, 301.0952f), new(-365.794f, 359.20007f),
+ new(-184.9818f, 320.6539f), new(425.7728f, -308.50418f), new(421.36328f, -364.6177f), new(304.1468f, -240.7907f), new(185.7454f, -303.0817f),
+ new(-186.9298f, 316.1839f), new(415.7506f, -248.723f), new(421.0283f, -353.6737f), new(428.3158f, -311.65918f), new(245.6673f, -406.9758f),
+ new(242.7502f, -185.9006f), new(189.8234f, -293.8717f), new(-396.4323f, 244.171f), new(240.6732f, -190.3576f), new(424.6623f, -358.17972f),
+ new(418.3316f, -251.964f), new(-183.6018f, 249.5657f), new(364.9071f, -304.43878f), new(-362.7433f, 245.7768f), new(-300.52872f, 350.3526f),
+ new(244.2772f, -340.35672f), new(292.4557f, -407.4613f), new(-235.40529f, 314.3782f), new(-223.99991f, 195.3299f), new(422.6598f, -311.31918f),
+ new(-415.831f, 305.22348f), new(-305.6675f, 244.5186f), new(356.6664f, -257.4143f), new(-379.6899f, 189.7632f), new(-300.4985f, 249.4856f),
+ new(427.2058f, -312.6532f), new(301.65112f, -361.23032f), new(203.1258f, -349.9516f), new(292.5837f, -419.9803f), new(-403.08328f, 358.78552f),
+ new(-180.1728f, 259.9967f), new(-376.4269f, 185.3312f), new(304.3408f, -238.0137f), new(302.88577f, -236.0697f), new(367.4921f, -299.92477f),
+ new(-180.69861f, 365.0987f), new(206.7638f, -341.3236f), new(305.7928f, -239.6767f), new(-364.25848f, 413.39642f), new(243.6412f, -341.64072f),
+ new(203.9048f, -346.77762f), new(320.01163f, -189.5584f), new(367.4784f, -346.9944f), new(-185.1306f, 372.4007f), new(320.1646f, -187.8384f),
+ new(376.03992f, -196.9297f), new(-420.351f, 300.4275f), new(-301.30972f, 348.5246f), new(241.6433f, -409.9088f), new(-190.7368f, 316.43192f),
+ new(301.28232f, -301.4156f), new(-363.7595f, 304.7442f), new(300.48932f, -299.9716f), new(-310.3525f, 293.91962f), new(-357.5453f, 250.4258f),
+ new(302.5783f, -298.3386f), new(244.6973f, -402.8008f), new(364.6131f, -303.46878f), new(415.6246f, -258.096f), new(-235.02449f, 365.9657f),
+ new(239.6162f, -291.95718f), new(-302.44772f, 350.1436f), new(300.8741f, -365.7083f), new(242.1763f, -407.9508f), new(304.5918f, -240.8467f),
+ new(302.9921f, -362.0703f), new(301.2473f, -299.6336f), new(-229.8719f, 200.8039f), new(365.7764f, -351.0274f), new(365.80338f, -342.2454f),
+ new(300.8241f, -365.4863f), new(302.9368f, -244.8317f), new(183.1923f, -222.6331f), new(-181.3678f, 316.2279f), new(-310.8525f, 295.4726f),
+ new(-189.3438f, 307.6909f), new(-240.5665f, 374.9167f), new(-367.12698f, 360.0911f), new(-297.6675f, 239.1746f), new(-233.9003f, 317.13022f),
+ new(-299.81873f, 349.2446f), new(-297.2485f, 245.5096f), new(425.6468f, -317.8772f), new(-322.39078f, 402.70102f), new(-220.6009f, 203.3279f),
+ new(-242.756f, 265.41852f), new(304.64877f, -241.77269f), new(185.15941f, -305.0787f), new(-237.2753f, 319.1972f), new(-367.8885f, 404.9064f),
+ new(321.42462f, -184.7694f), new(-311.4065f, 295.2186f), new(-293.66217f, 186.2858f), new(-226.62779f, 417.9842f), new(-405.7433f, 352.56552f),
+ new(387.966f, -407.2805f), new(204.6508f, -345.56662f), new(-180.3278f, 249.3497f), new(-243.618f, 264.6235f), new(-380.5359f, 186.3882f),
+ new(356.94742f, -257.2203f), new(-243.66501f, 263.79453f), new(-326.80078f, 409.031f), new(244.6212f, -340.9977f), new(203.5818f, -348.46262f),
+ new(240.8962f, -287.5832f), new(-416.865f, 293.6555f), new(-399.8243f, 235.558f), new(-373.2035f, 412.93542f), new(387.973f, -398.4855f),
+ new(413.7616f, -250.54701f), new(-367.7775f, 294.54822f), new(-411.1243f, 356.66052f), new(-237.4493f, 307.2202f), new(246.0277f, -231.5118f),
+ new(-242.4643f, 315.23322f), new(244.6702f, -339.3457f), new(299.3883f, -304.1526f), new(246.1887f, -231.2878f), new(-229.0369f, 202.4969f),
+ new(-311.7555f, 296.5766f), new(-406.2063f, 351.2695f), new(187.18741f, -299.2447f), new(-311.5685f, 292.6856f), new(-405.6103f, 361.8745f),
+ new(421.2233f, -353.27072f), new(-239.6465f, 366.6937f), new(-412.94202f, 301.6925f), new(294.1597f, -415.1083f), new(240.2282f, -182.7286f),
+ new(366.4121f, -300.9328f), new(238.72319f, -294.2332f), new(-366.294f, 358.9231f), new(203.2358f, -341.90762f), new(-223.51079f, 423.9192f),
+ new(299.3073f, -294.2806f), new(243.26219f, -282.68118f), new(-364.73752f, 301.65723f), new(302.74078f, -246.78369f), new(-310.7035f, 296.1866f),
+ new(183.6643f, -232.4421f), new(185.47841f, -299.7287f), new(291.9417f, -409.1043f), new(-181.5678f, 255.3697f), new(246.2307f, -231.0078f),
+ new(-242.784f, 263.42352f), new(356.5914f, -257.4093f), new(-242.071f, 265.2695f), new(-223.5828f, 425.0902f), new(-226.4738f, 428.6302f),
+ new(364.26938f, -349.6174f), new(300.93732f, -296.5366f), new(-367.8395f, 292.8772f), new(385.359f, -405.0625f), new(-356.7243f, 245.1458f),
+ new(183.0283f, -234.7011f), new(377.7379f, -207.3427f), new(246.1957f, -230.6718f), new(-231.9465f, 373.8927f), new(-231.0155f, 377.0827f)
]},
{ 1105, [
-new(419.867f, -252.66751f), new(187.3873f, -293.93808f), new(297.86392f, -306.3776f), new(-289.4155f, 191.7633f), new(-243.1953f, 263.0373f),
-new(370.56238f, -341.1275f), new(-176.35129f, 255.8134f), new(-226.3561f, 418.6003f), new(-231.16591f, 368.50058f), new(-222.65701f, 208.7085f),
-new(421.0405f, -351.573f), new(238.4857f, -229.2439f), new(183.16481f, -222.5006f), new(417.303f, -249.3925f), new(-185.1549f, 308.89542f),
-new(324.9378f, -180.39949f), new(-365.9968f, 409.586f), new(-232.4479f, 371.3696f), new(243.5946f, -340.78528f), new(-185.0069f, 322.3284f),
-new(-237.2984f, 319.3093f), new(302.7807f, -236.92639f), new(372.3201f, -291.7999f), new(-365.8285f, 300.5881f), new(305.7277f, -240.0434f),
-new(298.1419f, -294.1656f), new(-181.0644f, 371.3534f), new(-364.1912f, 364.3609f), new(-394.2014f, 244.08481f), new(-235.4694f, 314.6163f),
-new(429.8188f, -307.4942f), new(300.0127f, -360.6713f), new(-242.7403f, 262.2113f), new(302.1107f, -361.7233f), new(365.52838f, -352.96652f),
-new(186.4608f, -226.7086f), new(-286.8895f, 184.60231f), new(391.7919f, -402.0965f), new(393.9139f, -397.5255f), new(-389.73038f, 242.52881f),
-new(304.3447f, -235.2354f), new(190.3173f, -297.68008f), new(-310.5463f, 296.2431f), new(366.2941f, -292.99487f), new(-406.6067f, 363.4989f),
-new(-416.39f, 298.0605f), new(388.8609f, -398.3515f), new(-367.78052f, 294.5481f), new(-412.94f, 301.69348f), new(299.1107f, -246.97739f),
-new(243.733f, -185.29529f), new(-374.1506f, 190.85829f), new(-404.9687f, 359.9689f), new(-300.4668f, 240.9918f), new(-416f, 294.58548f),
-new(-355.076f, 244.2476f), new(-243.19029f, 264.4343f), new(-183.2179f, 315.3764f), new(242.2833f, -396.57928f), new(206.3127f, -340.9465f),
-new(324.53882f, -186.70549f), new(355.8291f, -256.6985f), new(241.666f, -184.0033f), new(-309.5093f, 295.7811f), new(293.7167f, -411.89682f),
-new(238.7467f, -228.0009f), new(203.1037f, -341.8175f), new(301.5937f, -239.5544f), new(-235.9394f, 314.8963f), new(-416f, 305.3545f),
-new(245.467f, -182.7313f), new(-309.9393f, 296.7031f), new(246.6673f, -395.4993f), new(-179.0033f, 249.5944f), new(-363.6202f, 365.69388f),
-new(244.595f, -187.7423f), new(-236.0964f, 312.8443f), new(243.2976f, -342.07028f), new(-182.6699f, 317.6064f), new(-367.6545f, 305.3231f),
-new(-285.9455f, 187.4073f), new(-302.8448f, 247.76779f), new(-226.23709f, 429.3463f), new(-310.6003f, 293.9241f), new(-375.1686f, 191.1073f),
-new(300.85892f, -295.5586f), new(-224.7901f, 423.7773f), new(-298.158f, 349.91882f), new(294.85373f, -405.66382f), new(188.05681f, -221.25461f),
-new(356.68112f, -257.78748f), new(428.3128f, -311.6622f), new(237.7537f, -228.3089f), new(-177.64029f, 254.1274f), new(-365.0628f, 412.401f),
-new(-178.89929f, 258.9974f), new(-220.543f, 202.6375f), new(302.2887f, -239.8684f), new(425.7488f, -308.3862f), new(-233.0109f, 368.3636f),
-new(-182.2834f, 376.6444f), new(427.8005f, -351.61798f), new(-234.02141f, 315.2163f), new(421.7175f, -366.494f), new(-357.19f, 250.36661f),
-new(-181.3149f, 318.0664f), new(303.7149f, -293.13358f), new(-364.2412f, 365.9449f), new(357.2101f, -256.6725f), new(-395.01938f, 241.8608f),
-new(-374.69562f, 189.17229f), new(242.74109f, -285.7804f), new(382.9651f, -195.038f), new(423.5308f, -308.68118f), new(-234.2179f, 365.5496f),
-new(191.7003f, -292.80408f), new(-235.6984f, 313.0903f), new(-179.42041f, 372.9104f), new(182.8838f, -234.7066f), new(-368.5478f, 416.77502f),
-new(-223.3251f, 425.7073f), new(365.7754f, -342.11252f), new(-397.2504f, 236.9768f), new(319.6698f, -192.11049f), new(-242.7963f, 263.2953f),
-new(-310.5863f, 292.87708f), new(-242.6433f, 263.74728f), new(-226.8651f, 421.0103f), new(-363.69522f, 365.2839f), new(299.9397f, -365.35327f),
-new(-182.40141f, 365.9014f), new(301.2797f, -360.69427f), new(-321.8307f, 402.2315f), new(202.9167f, -349.9555f), new(378.5271f, -201.992f),
-new(243.3606f, -339.35828f), new(-302.9878f, 235.6478f), new(372.11438f, -345.7965f), new(-309.6343f, 295.09808f), new(-306.02078f, 239.7658f),
-new(322.3368f, -184.4075f), new(421.40298f, -248.5245f), new(205.7977f, -345.8775f), new(-404.0527f, 360.2929f), new(-355.771f, 245.2526f),
-new(381.0081f, -199.679f), new(-357.316f, 239.5906f), new(-234.0849f, 377.63858f), new(-364.7355f, 301.65808f), new(-186.9379f, 315.3064f),
-new(-299.5618f, 243.6468f), new(-354.271f, 246.7996f), new(243.8741f, -280.1614f), new(-357.54898f, 243.1186f), new(368.7064f, -345.8575f),
-new(244.0926f, -340.29327f), new(-376.15662f, 193.37729f), new(233.96709f, -284.37842f), new(319.9168f, -181.2565f), new(326.3378f, -185.3705f),
-new(237.6907f, -231.02089f), new(-298.54898f, 348.71683f), new(-243.2143f, 262.4143f), new(-311.7343f, 294.60208f), new(-367.99152f, 298.0531f),
-new(187.1373f, -304.7881f), new(239.4451f, -281.57343f), new(239.3307f, -229.4419f), new(-299.617f, 351.75082f), new(-237.4324f, 307.2203f),
-new(-408.687f, 297.1815f), new(355.7571f, -259.8555f), new(-234.56241f, 310.0653f), new(301.04492f, -302.34158f), new(245.2133f, -400.3213f),
-new(236.5197f, -229.4919f), new(-318.7837f, 409.34048f), new(-376.2436f, 185.97029f), new(-368.6998f, 403.91f), new(289.74072f, -420.7828f),
-new(366.3364f, -347.5365f), new(298.29773f, -413.2258f), new(302.6237f, -362.02628f), new(367.5631f, -299.5019f), new(365.9851f, -306.5629f),
-new(-219.738f, 205.0435f), new(-397.1194f, 247.7458f), new(244.3876f, -339.0553f), new(369.9571f, -297.6749f), new(-365.5525f, 299.2031f),
-new(301.5127f, -360.65527f), new(299.3577f, -236.12239f), new(-230.8079f, 373.5456f), new(244.0833f, -404.7823f), new(205.3007f, -344.6235f),
-new(425.5308f, -317.8822f), new(357.6881f, -257.8065f), new(-292.37347f, 180.11931f), new(-313.6677f, 404.2615f), new(-404.7367f, 358.1479f),
-new(301.4389f, -298.37857f), new(-297.841f, 351.1968f), new(-179.4813f, 253.4064f), new(-295.41f, 349.0758f), new(-406.7167f, 354.0709f),
-new(-363.6965f, 304.86908f), new(290.05573f, -407.22482f), new(300.7199f, -297.93057f), new(239.16309f, -293.7774f), new(322.8478f, -185.0015f),
-new(-289.56747f, 178.95131f), new(-365.7695f, 306.2951f), new(-321.7017f, 413.0045f), new(-364.1982f, 365.00888f), new(-413.769f, 299.4675f),
-new(186.5818f, -231.6476f), new(412.182f, -251.2975f), new(377.82907f, -206.788f), new(242.0333f, -407.4293f), new(-185.35541f, 374.6284f),
-new(241.414f, -194.8503f), new(-368.5678f, 404.38602f), new(356.0111f, -258.64548f), new(301.5917f, -361.3173f), new(417.085f, -258.8875f),
-new(378.0781f, -195.935f), new(425.6905f, -357.607f), new(190.3103f, -299.9691f), new(374.1851f, -297.52188f), new(422.0285f, -352.92798f),
-new(301.0247f, -243.29439f), new(-309.8893f, 294.36008f), new(388.6139f, -409.2055f), new(-319.5767f, 406.9355f), new(-222.78401f, 197.9345f),
-new(-217.77701f, 198.4995f), new(-364.1672f, 366.3809f), new(297.9967f, -363.3443f), new(244.9626f, -340.5453f), new(305.31592f, -298.65158f),
-new(-299.681f, 346.3638f), new(302.8307f, -362.6233f)
+ new(419.867f, -252.66751f), new(187.3873f, -293.93808f), new(297.86392f, -306.3776f), new(-289.4155f, 191.7633f), new(-243.1953f, 263.0373f),
+ new(370.56238f, -341.1275f), new(-176.35129f, 255.8134f), new(-226.3561f, 418.6003f), new(-231.16591f, 368.50058f), new(-222.65701f, 208.7085f),
+ new(421.0405f, -351.573f), new(238.4857f, -229.2439f), new(183.16481f, -222.5006f), new(417.303f, -249.3925f), new(-185.1549f, 308.89542f),
+ new(324.9378f, -180.39949f), new(-365.9968f, 409.586f), new(-232.4479f, 371.3696f), new(243.5946f, -340.78528f), new(-185.0069f, 322.3284f),
+ new(-237.2984f, 319.3093f), new(302.7807f, -236.92639f), new(372.3201f, -291.7999f), new(-365.8285f, 300.5881f), new(305.7277f, -240.0434f),
+ new(298.1419f, -294.1656f), new(-181.0644f, 371.3534f), new(-364.1912f, 364.3609f), new(-394.2014f, 244.08481f), new(-235.4694f, 314.6163f),
+ new(429.8188f, -307.4942f), new(300.0127f, -360.6713f), new(-242.7403f, 262.2113f), new(302.1107f, -361.7233f), new(365.52838f, -352.96652f),
+ new(186.4608f, -226.7086f), new(-286.8895f, 184.60231f), new(391.7919f, -402.0965f), new(393.9139f, -397.5255f), new(-389.73038f, 242.52881f),
+ new(304.3447f, -235.2354f), new(190.3173f, -297.68008f), new(-310.5463f, 296.2431f), new(366.2941f, -292.99487f), new(-406.6067f, 363.4989f),
+ new(-416.39f, 298.0605f), new(388.8609f, -398.3515f), new(-367.78052f, 294.5481f), new(-412.94f, 301.69348f), new(299.1107f, -246.97739f),
+ new(243.733f, -185.29529f), new(-374.1506f, 190.85829f), new(-404.9687f, 359.9689f), new(-300.4668f, 240.9918f), new(-416f, 294.58548f),
+ new(-355.076f, 244.2476f), new(-243.19029f, 264.4343f), new(-183.2179f, 315.3764f), new(242.2833f, -396.57928f), new(206.3127f, -340.9465f),
+ new(324.53882f, -186.70549f), new(355.8291f, -256.6985f), new(241.666f, -184.0033f), new(-309.5093f, 295.7811f), new(293.7167f, -411.89682f),
+ new(238.7467f, -228.0009f), new(203.1037f, -341.8175f), new(301.5937f, -239.5544f), new(-235.9394f, 314.8963f), new(-416f, 305.3545f),
+ new(245.467f, -182.7313f), new(-309.9393f, 296.7031f), new(246.6673f, -395.4993f), new(-179.0033f, 249.5944f), new(-363.6202f, 365.69388f),
+ new(244.595f, -187.7423f), new(-236.0964f, 312.8443f), new(243.2976f, -342.07028f), new(-182.6699f, 317.6064f), new(-367.6545f, 305.3231f),
+ new(-285.9455f, 187.4073f), new(-302.8448f, 247.76779f), new(-226.23709f, 429.3463f), new(-310.6003f, 293.9241f), new(-375.1686f, 191.1073f),
+ new(300.85892f, -295.5586f), new(-224.7901f, 423.7773f), new(-298.158f, 349.91882f), new(294.85373f, -405.66382f), new(188.05681f, -221.25461f),
+ new(356.68112f, -257.78748f), new(428.3128f, -311.6622f), new(237.7537f, -228.3089f), new(-177.64029f, 254.1274f), new(-365.0628f, 412.401f),
+ new(-178.89929f, 258.9974f), new(-220.543f, 202.6375f), new(302.2887f, -239.8684f), new(425.7488f, -308.3862f), new(-233.0109f, 368.3636f),
+ new(-182.2834f, 376.6444f), new(427.8005f, -351.61798f), new(-234.02141f, 315.2163f), new(421.7175f, -366.494f), new(-357.19f, 250.36661f),
+ new(-181.3149f, 318.0664f), new(303.7149f, -293.13358f), new(-364.2412f, 365.9449f), new(357.2101f, -256.6725f), new(-395.01938f, 241.8608f),
+ new(-374.69562f, 189.17229f), new(242.74109f, -285.7804f), new(382.9651f, -195.038f), new(423.5308f, -308.68118f), new(-234.2179f, 365.5496f),
+ new(191.7003f, -292.80408f), new(-235.6984f, 313.0903f), new(-179.42041f, 372.9104f), new(182.8838f, -234.7066f), new(-368.5478f, 416.77502f),
+ new(-223.3251f, 425.7073f), new(365.7754f, -342.11252f), new(-397.2504f, 236.9768f), new(319.6698f, -192.11049f), new(-242.7963f, 263.2953f),
+ new(-310.5863f, 292.87708f), new(-242.6433f, 263.74728f), new(-226.8651f, 421.0103f), new(-363.69522f, 365.2839f), new(299.9397f, -365.35327f),
+ new(-182.40141f, 365.9014f), new(301.2797f, -360.69427f), new(-321.8307f, 402.2315f), new(202.9167f, -349.9555f), new(378.5271f, -201.992f),
+ new(243.3606f, -339.35828f), new(-302.9878f, 235.6478f), new(372.11438f, -345.7965f), new(-309.6343f, 295.09808f), new(-306.02078f, 239.7658f),
+ new(322.3368f, -184.4075f), new(421.40298f, -248.5245f), new(205.7977f, -345.8775f), new(-404.0527f, 360.2929f), new(-355.771f, 245.2526f),
+ new(381.0081f, -199.679f), new(-357.316f, 239.5906f), new(-234.0849f, 377.63858f), new(-364.7355f, 301.65808f), new(-186.9379f, 315.3064f),
+ new(-299.5618f, 243.6468f), new(-354.271f, 246.7996f), new(243.8741f, -280.1614f), new(-357.54898f, 243.1186f), new(368.7064f, -345.8575f),
+ new(244.0926f, -340.29327f), new(-376.15662f, 193.37729f), new(233.96709f, -284.37842f), new(319.9168f, -181.2565f), new(326.3378f, -185.3705f),
+ new(237.6907f, -231.02089f), new(-298.54898f, 348.71683f), new(-243.2143f, 262.4143f), new(-311.7343f, 294.60208f), new(-367.99152f, 298.0531f),
+ new(187.1373f, -304.7881f), new(239.4451f, -281.57343f), new(239.3307f, -229.4419f), new(-299.617f, 351.75082f), new(-237.4324f, 307.2203f),
+ new(-408.687f, 297.1815f), new(355.7571f, -259.8555f), new(-234.56241f, 310.0653f), new(301.04492f, -302.34158f), new(245.2133f, -400.3213f),
+ new(236.5197f, -229.4919f), new(-318.7837f, 409.34048f), new(-376.2436f, 185.97029f), new(-368.6998f, 403.91f), new(289.74072f, -420.7828f),
+ new(366.3364f, -347.5365f), new(298.29773f, -413.2258f), new(302.6237f, -362.02628f), new(367.5631f, -299.5019f), new(365.9851f, -306.5629f),
+ new(-219.738f, 205.0435f), new(-397.1194f, 247.7458f), new(244.3876f, -339.0553f), new(369.9571f, -297.6749f), new(-365.5525f, 299.2031f),
+ new(301.5127f, -360.65527f), new(299.3577f, -236.12239f), new(-230.8079f, 373.5456f), new(244.0833f, -404.7823f), new(205.3007f, -344.6235f),
+ new(425.5308f, -317.8822f), new(357.6881f, -257.8065f), new(-292.37347f, 180.11931f), new(-313.6677f, 404.2615f), new(-404.7367f, 358.1479f),
+ new(301.4389f, -298.37857f), new(-297.841f, 351.1968f), new(-179.4813f, 253.4064f), new(-295.41f, 349.0758f), new(-406.7167f, 354.0709f),
+ new(-363.6965f, 304.86908f), new(290.05573f, -407.22482f), new(300.7199f, -297.93057f), new(239.16309f, -293.7774f), new(322.8478f, -185.0015f),
+ new(-289.56747f, 178.95131f), new(-365.7695f, 306.2951f), new(-321.7017f, 413.0045f), new(-364.1982f, 365.00888f), new(-413.769f, 299.4675f),
+ new(186.5818f, -231.6476f), new(412.182f, -251.2975f), new(377.82907f, -206.788f), new(242.0333f, -407.4293f), new(-185.35541f, 374.6284f),
+ new(241.414f, -194.8503f), new(-368.5678f, 404.38602f), new(356.0111f, -258.64548f), new(301.5917f, -361.3173f), new(417.085f, -258.8875f),
+ new(378.0781f, -195.935f), new(425.6905f, -357.607f), new(190.3103f, -299.9691f), new(374.1851f, -297.52188f), new(422.0285f, -352.92798f),
+ new(301.0247f, -243.29439f), new(-309.8893f, 294.36008f), new(388.6139f, -409.2055f), new(-319.5767f, 406.9355f), new(-222.78401f, 197.9345f),
+ new(-217.77701f, 198.4995f), new(-364.1672f, 366.3809f), new(297.9967f, -363.3443f), new(244.9626f, -340.5453f), new(305.31592f, -298.65158f),
+ new(-299.681f, 346.3638f), new(302.8307f, -362.6233f), new(190.3698f, -228.3276f)
]},
{ 1106, [
-new(-364.1982f, 365.00888f), new(302.1107f, -361.7233f), new(301.5917f, -361.3173f), new(-309.8893f, 294.36008f), new(-223.3251f, 425.7073f),
-new(187.3873f, -293.93808f), new(381.0081f, -199.679f), new(-357.19f, 250.36661f), new(366.3364f, -347.5365f), new(299.1107f, -246.97739f),
-new(-299.0698f, 246.1348f), new(366.2941f, -292.99487f), new(294.85373f, -405.66382f), new(-295.41f, 349.0758f), new(236.5197f, -229.4919f),
-new(206.3127f, -340.9465f), new(-355.771f, 245.2526f), new(-303.0018f, 239.4098f), new(-185.0069f, 322.3284f), new(301.4389f, -298.37857f),
-new(301.04492f, -302.34158f), new(-220.543f, 202.6375f), new(-364.1912f, 364.3609f), new(368.7064f, -345.8575f), new(-237.4324f, 307.2203f),
-new(417.085f, -258.8875f), new(239.4451f, -281.57343f), new(245.467f, -182.7313f), new(-179.42041f, 372.9104f), new(-222.65701f, 208.7085f),
-new(-416f, 294.58548f), new(-367.99152f, 298.0531f), new(238.4857f, -229.2439f), new(-368.5678f, 404.38602f), new(-404.0527f, 360.2929f),
-new(319.9168f, -181.2565f), new(-181.3149f, 318.0664f), new(378.5271f, -201.992f), new(294.7207f, -242.35239f), new(-365.9968f, 409.586f),
-new(-242.7963f, 263.2953f), new(422.0285f, -352.92798f), new(203.1037f, -341.8175f), new(-186.9379f, 315.3064f), new(-181.8149f, 312.1604f),
-new(-374.1506f, 190.85829f), new(241.666f, -184.0033f), new(-176.35129f, 255.8134f), new(-357.54898f, 243.1186f), new(-365.8285f, 300.5881f),
-new(-230.8079f, 373.5456f), new(-242.7403f, 262.2113f), new(365.7754f, -342.11252f), new(-368.6548f, 407.85202f), new(-318.7837f, 409.34048f),
-new(-232.4479f, 371.3696f), new(372.3201f, -291.7999f), new(388.6139f, -409.2055f), new(369.9571f, -297.6749f), new(299.9397f, -365.35327f),
-new(-185.1549f, 308.89542f), new(302.2887f, -239.8684f), new(243.2976f, -342.07028f), new(-179.0033f, 249.5944f), new(-226.23709f, 429.3463f),
-new(-395.01938f, 241.8608f), new(-412.94f, 301.69348f), new(-224.7901f, 423.7773f), new(305.7277f, -240.0434f), new(-231.16591f, 368.50058f),
-new(186.4608f, -226.7086f), new(-302.8448f, 247.76779f), new(355.7571f, -259.8555f), new(-319.5767f, 406.9355f), new(-235.6984f, 313.0903f),
-new(-222.78401f, 197.9345f), new(384.44208f, -199.681f), new(-243.2143f, 262.4143f), new(419.867f, -252.66751f), new(243.5946f, -340.78528f),
-new(-178.89929f, 258.9974f), new(355.8291f, -256.6985f), new(-310.5463f, 296.2431f), new(-321.7017f, 413.0045f), new(-229.1654f, 313.2353f),
-new(417.303f, -249.3925f), new(393.9139f, -397.5255f), new(244.595f, -187.7423f), new(-354.271f, 246.7996f), new(-353.31f, 249.7856f),
-new(301.0247f, -243.29439f), new(242.74109f, -285.7804f), new(-397.1194f, 247.7458f), new(183.16481f, -222.5006f), new(-234.02141f, 315.2163f),
-new(297.86392f, -306.3776f), new(-368.5478f, 416.77502f), new(382.9651f, -195.038f), new(365.52838f, -352.96652f), new(300.7457f, -365.4993f),
-new(300.7199f, -297.93057f), new(324.9378f, -180.39949f), new(-237.2984f, 319.3093f), new(-416f, 305.3545f), new(-285.9455f, 187.4073f),
-new(322.8478f, -185.0015f), new(-235.9394f, 314.8963f), new(-226.3561f, 418.6003f), new(-299.681f, 346.3638f), new(-357.316f, 239.5906f),
-new(-219.738f, 205.0435f), new(-364.1672f, 366.3809f), new(298.29773f, -413.2258f), new(-321.6767f, 405.5135f), new(-236.0964f, 312.8443f),
-new(301.7937f, -237.3024f), new(300.3799f, -294.6456f), new(-289.4155f, 191.7633f), new(-243.19029f, 264.4343f), new(-355.076f, 244.2476f),
-new(237.7537f, -228.3089f), new(243.733f, -185.29529f), new(-406.7167f, 354.0709f), new(-298.54898f, 348.71683f), new(-299.5618f, 243.6468f),
-new(244.3876f, -339.0553f), new(-183.2179f, 315.3764f), new(301.5127f, -360.65527f), new(370.56238f, -341.1275f), new(-300.4668f, 240.9918f),
-new(-413.769f, 299.4675f), new(300.85892f, -295.5586f), new(428.3128f, -311.6622f), new(-376.2436f, 185.97029f), new(298.1419f, -294.1656f),
-new(-297.841f, 351.1968f), new(-365.0628f, 412.401f), new(290.05573f, -407.22482f), new(-298.158f, 349.91882f), new(357.2101f, -256.6725f),
-new(422.722f, -252.50351f), new(-367.78052f, 294.5481f), new(246.6673f, -395.4993f), new(-177.64029f, 254.1274f), new(297.91672f, -412.6058f),
-new(-389.73038f, 242.52881f), new(299.3577f, -236.12239f), new(182.8838f, -234.7066f), new(186.5818f, -231.6476f), new(-286.8895f, 184.60231f),
-new(431.1698f, -311.4372f), new(412.182f, -251.2975f), new(-394.2014f, 244.08481f), new(301.2797f, -360.69427f), new(-368.6998f, 403.91f),
-new(205.3007f, -344.6235f), new(356.68112f, -257.78748f), new(-182.40141f, 365.9014f), new(-185.35541f, 374.6284f), new(-367.6545f, 305.3231f),
-new(326.3378f, -185.3705f), new(242.2833f, -396.57928f), new(188.05681f, -221.25461f), new(-302.9878f, 235.6478f), new(245.2133f, -400.3213f),
-new(-310.5863f, 292.87708f), new(-217.77701f, 198.4995f), new(378.0781f, -195.935f), new(391.7919f, -402.0965f), new(372.11438f, -345.7965f),
-new(421.40298f, -248.5245f), new(-365.5525f, 299.2031f), new(244.9626f, -340.5453f), new(-233.0109f, 368.3636f), new(-179.4813f, 253.4064f),
-new(305.31592f, -298.65158f), new(302.8307f, -362.6233f), new(427.8005f, -351.61798f), new(-309.6343f, 295.09808f), new(374.1851f, -297.52188f),
-new(-313.6677f, 404.2615f), new(-366.5065f, 300.51608f), new(377.82907f, -206.788f), new(-364.7355f, 301.65808f), new(425.7488f, -308.3862f),
-new(-234.2179f, 365.5496f), new(-182.2834f, 376.6444f), new(-289.56747f, 178.95131f), new(243.8741f, -280.1614f), new(241.38109f, -286.3084f),
-new(-181.0644f, 371.3534f), new(243.3606f, -339.35828f), new(-321.8307f, 402.2315f), new(241.414f, -194.8503f), new(-364.2412f, 365.9449f),
-new(242.0333f, -407.4293f), new(301.5937f, -239.5544f), new(-397.6294f, 240.4258f), new(-299.617f, 351.75082f), new(-376.15662f, 193.37729f),
-new(-242.5163f, 264.2403f), new(-416.39f, 298.0605f), new(-309.9393f, 296.7031f), new(205.7977f, -345.8775f), new(-242.6433f, 263.74728f),
-new(423.5308f, -308.68118f), new(303.7149f, -293.13358f), new(356.0111f, -258.64548f), new(-363.6965f, 304.86908f), new(246.52309f, -286.6044f),
-new(302.6237f, -362.02628f), new(-311.7343f, 294.60208f), new(425.6905f, -357.607f), new(238.7467f, -228.0009f), new(-235.4694f, 314.6163f),
-new(-310.2503f, 294.5431f), new(-309.5093f, 295.7811f), new(-234.0849f, 377.63858f), new(293.7167f, -411.89682f), new(239.16309f, -293.7774f),
-new(-363.69522f, 365.2839f), new(-363.6202f, 365.69388f), new(239.3307f, -229.4419f), new(319.6698f, -192.11049f), new(-365.7695f, 306.2951f),
-new(-301.9548f, 241.5828f), new(244.0833f, -404.7823f), new(233.96709f, -284.37842f), new(243.6976f, -340.5513f), new(365.9851f, -306.5629f),
-new(-404.7367f, 358.1479f), new(-310.6003f, 293.9241f), new(187.1373f, -304.7881f), new(419.805f, -251.56151f), new(-397.2504f, 236.9768f),
-new(356.6091f, -257.49847f), new(-243.1953f, 263.0373f), new(324.53882f, -186.70549f), new(429.8188f, -307.4942f), new(289.74072f, -420.7828f),
-new(300.0127f, -360.6713f), new(-299.59198f, 347.99582f), new(191.7003f, -292.80408f), new(304.3447f, -235.2354f), new(-408.687f, 297.1815f),
-new(421.7175f, -366.494f), new(244.0926f, -340.29327f), new(-406.6067f, 363.4989f), new(392.7409f, -404.7645f), new(190.3103f, -299.9691f),
-new(388.8609f, -398.3515f), new(-292.37347f, 180.11931f), new(-374.69562f, 189.17229f), new(-375.1686f, 191.1073f), new(190.3173f, -297.68008f),
-new(367.5631f, -299.5019f), new(-234.56241f, 310.0653f), new(-404.9687f, 359.9689f), new(237.6907f, -231.02089f), new(-306.02078f, 239.7658f),
-new(421.0405f, -351.573f), new(357.6881f, -257.8065f), new(425.5308f, -317.8822f), new(202.9167f, -349.9555f)
+ new(-364.1982f, 365.00888f), new(302.1107f, -361.7233f), new(301.5917f, -361.3173f), new(-309.8893f, 294.36008f), new(-223.3251f, 425.7073f),
+ new(187.3873f, -293.93808f), new(381.0081f, -199.679f), new(-357.19f, 250.36661f), new(366.3364f, -347.5365f), new(299.1107f, -246.97739f),
+ new(-299.0698f, 246.1348f), new(366.2941f, -292.99487f), new(294.85373f, -405.66382f), new(-295.41f, 349.0758f), new(236.5197f, -229.4919f),
+ new(206.3127f, -340.9465f), new(-355.771f, 245.2526f), new(-303.0018f, 239.4098f), new(-185.0069f, 322.3284f), new(301.4389f, -298.37857f),
+ new(301.04492f, -302.34158f), new(-220.543f, 202.6375f), new(-364.1912f, 364.3609f), new(368.7064f, -345.8575f), new(-237.4324f, 307.2203f),
+ new(417.085f, -258.8875f), new(239.4451f, -281.57343f), new(245.467f, -182.7313f), new(-179.42041f, 372.9104f), new(-222.65701f, 208.7085f),
+ new(-416f, 294.58548f), new(-367.99152f, 298.0531f), new(238.4857f, -229.2439f), new(-368.5678f, 404.38602f), new(-404.0527f, 360.2929f),
+ new(319.9168f, -181.2565f), new(-181.3149f, 318.0664f), new(378.5271f, -201.992f), new(294.7207f, -242.35239f), new(-365.9968f, 409.586f),
+ new(-242.7963f, 263.2953f), new(422.0285f, -352.92798f), new(203.1037f, -341.8175f), new(-186.9379f, 315.3064f), new(-181.8149f, 312.1604f),
+ new(-374.1506f, 190.85829f), new(241.666f, -184.0033f), new(-176.35129f, 255.8134f), new(-357.54898f, 243.1186f), new(-365.8285f, 300.5881f),
+ new(-230.8079f, 373.5456f), new(-242.7403f, 262.2113f), new(365.7754f, -342.11252f), new(-368.6548f, 407.85202f), new(-318.7837f, 409.34048f),
+ new(-232.4479f, 371.3696f), new(372.3201f, -291.7999f), new(388.6139f, -409.2055f), new(369.9571f, -297.6749f), new(299.9397f, -365.35327f),
+ new(-185.1549f, 308.89542f), new(302.2887f, -239.8684f), new(243.2976f, -342.07028f), new(-179.0033f, 249.5944f), new(-226.23709f, 429.3463f),
+ new(-395.01938f, 241.8608f), new(-412.94f, 301.69348f), new(-224.7901f, 423.7773f), new(305.7277f, -240.0434f), new(-231.16591f, 368.50058f),
+ new(186.4608f, -226.7086f), new(-302.8448f, 247.76779f), new(355.7571f, -259.8555f), new(-319.5767f, 406.9355f), new(-235.6984f, 313.0903f),
+ new(-222.78401f, 197.9345f), new(384.44208f, -199.681f), new(-243.2143f, 262.4143f), new(419.867f, -252.66751f), new(243.5946f, -340.78528f),
+ new(-178.89929f, 258.9974f), new(355.8291f, -256.6985f), new(-310.5463f, 296.2431f), new(-321.7017f, 413.0045f), new(-229.1654f, 313.2353f),
+ new(417.303f, -249.3925f), new(393.9139f, -397.5255f), new(244.595f, -187.7423f), new(-354.271f, 246.7996f), new(-353.31f, 249.7856f),
+ new(301.0247f, -243.29439f), new(242.74109f, -285.7804f), new(-397.1194f, 247.7458f), new(183.16481f, -222.5006f), new(-234.02141f, 315.2163f),
+ new(297.86392f, -306.3776f), new(-368.5478f, 416.77502f), new(382.9651f, -195.038f), new(365.52838f, -352.96652f), new(300.7457f, -365.4993f),
+ new(300.7199f, -297.93057f), new(324.9378f, -180.39949f), new(-237.2984f, 319.3093f), new(-416f, 305.3545f), new(-285.9455f, 187.4073f),
+ new(322.8478f, -185.0015f), new(-235.9394f, 314.8963f), new(-226.3561f, 418.6003f), new(-299.681f, 346.3638f), new(-357.316f, 239.5906f),
+ new(-219.738f, 205.0435f), new(-364.1672f, 366.3809f), new(298.29773f, -413.2258f), new(-321.6767f, 405.5135f), new(-236.0964f, 312.8443f),
+ new(301.7937f, -237.3024f), new(300.3799f, -294.6456f), new(-289.4155f, 191.7633f), new(-243.19029f, 264.4343f), new(-355.076f, 244.2476f),
+ new(237.7537f, -228.3089f), new(243.733f, -185.29529f), new(-406.7167f, 354.0709f), new(-298.54898f, 348.71683f), new(-299.5618f, 243.6468f),
+ new(244.3876f, -339.0553f), new(-183.2179f, 315.3764f), new(301.5127f, -360.65527f), new(370.56238f, -341.1275f), new(-300.4668f, 240.9918f),
+ new(-413.769f, 299.4675f), new(300.85892f, -295.5586f), new(428.3128f, -311.6622f), new(-376.2436f, 185.97029f), new(298.1419f, -294.1656f),
+ new(-297.841f, 351.1968f), new(-365.0628f, 412.401f), new(290.05573f, -407.22482f), new(-298.158f, 349.91882f), new(357.2101f, -256.6725f),
+ new(422.722f, -252.50351f), new(-367.78052f, 294.5481f), new(246.6673f, -395.4993f), new(-177.64029f, 254.1274f), new(297.91672f, -412.6058f),
+ new(-389.73038f, 242.52881f), new(299.3577f, -236.12239f), new(182.8838f, -234.7066f), new(186.5818f, -231.6476f), new(-286.8895f, 184.60231f),
+ new(431.1698f, -311.4372f), new(412.182f, -251.2975f), new(-394.2014f, 244.08481f), new(301.2797f, -360.69427f), new(-368.6998f, 403.91f),
+ new(205.3007f, -344.6235f), new(356.68112f, -257.78748f), new(-182.40141f, 365.9014f), new(-185.35541f, 374.6284f), new(-367.6545f, 305.3231f),
+ new(326.3378f, -185.3705f), new(242.2833f, -396.57928f), new(188.05681f, -221.25461f), new(-302.9878f, 235.6478f), new(245.2133f, -400.3213f),
+ new(-310.5863f, 292.87708f), new(-217.77701f, 198.4995f), new(378.0781f, -195.935f), new(391.7919f, -402.0965f), new(372.11438f, -345.7965f),
+ new(421.40298f, -248.5245f), new(-365.5525f, 299.2031f), new(244.9626f, -340.5453f), new(-233.0109f, 368.3636f), new(-179.4813f, 253.4064f),
+ new(305.31592f, -298.65158f), new(302.8307f, -362.6233f), new(427.8005f, -351.61798f), new(-309.6343f, 295.09808f), new(374.1851f, -297.52188f),
+ new(-313.6677f, 404.2615f), new(-366.5065f, 300.51608f), new(377.82907f, -206.788f), new(-364.7355f, 301.65808f), new(425.7488f, -308.3862f),
+ new(-234.2179f, 365.5496f), new(-182.2834f, 376.6444f), new(-289.56747f, 178.95131f), new(243.8741f, -280.1614f), new(241.38109f, -286.3084f),
+ new(-181.0644f, 371.3534f), new(243.3606f, -339.35828f), new(-321.8307f, 402.2315f), new(241.414f, -194.8503f), new(-364.2412f, 365.9449f),
+ new(242.0333f, -407.4293f), new(301.5937f, -239.5544f), new(-397.6294f, 240.4258f), new(-299.617f, 351.75082f), new(-376.15662f, 193.37729f),
+ new(-242.5163f, 264.2403f), new(-416.39f, 298.0605f), new(-309.9393f, 296.7031f), new(205.7977f, -345.8775f), new(-242.6433f, 263.74728f),
+ new(423.5308f, -308.68118f), new(303.7149f, -293.13358f), new(356.0111f, -258.64548f), new(-363.6965f, 304.86908f), new(246.52309f, -286.6044f),
+ new(302.6237f, -362.02628f), new(-311.7343f, 294.60208f), new(425.6905f, -357.607f), new(238.7467f, -228.0009f), new(-235.4694f, 314.6163f),
+ new(-310.2503f, 294.5431f), new(-309.5093f, 295.7811f), new(-234.0849f, 377.63858f), new(293.7167f, -411.89682f), new(239.16309f, -293.7774f),
+ new(-363.69522f, 365.2839f), new(-363.6202f, 365.69388f), new(239.3307f, -229.4419f), new(319.6698f, -192.11049f), new(-365.7695f, 306.2951f),
+ new(-301.9548f, 241.5828f), new(244.0833f, -404.7823f), new(233.96709f, -284.37842f), new(243.6976f, -340.5513f), new(365.9851f, -306.5629f),
+ new(-404.7367f, 358.1479f), new(-310.6003f, 293.9241f), new(187.1373f, -304.7881f), new(419.805f, -251.56151f), new(-397.2504f, 236.9768f),
+ new(356.6091f, -257.49847f), new(-243.1953f, 263.0373f), new(324.53882f, -186.70549f), new(429.8188f, -307.4942f), new(289.74072f, -420.7828f),
+ new(300.0127f, -360.6713f), new(-299.59198f, 347.99582f), new(191.7003f, -292.80408f), new(304.3447f, -235.2354f), new(-408.687f, 297.1815f),
+ new(421.7175f, -366.494f), new(244.0926f, -340.29327f), new(-406.6067f, 363.4989f), new(392.7409f, -404.7645f), new(190.3103f, -299.9691f),
+ new(388.8609f, -398.3515f), new(-292.37347f, 180.11931f), new(-374.69562f, 189.17229f), new(-375.1686f, 191.1073f), new(190.3173f, -297.68008f),
+ new(367.5631f, -299.5019f), new(-234.56241f, 310.0653f), new(-404.9687f, 359.9689f), new(237.6907f, -231.02089f), new(-306.02078f, 239.7658f),
+ new(421.0405f, -351.573f), new(357.6881f, -257.8065f), new(425.5308f, -317.8822f), new(202.9167f, -349.9555f), new(429.7365f, -357.211f)
]},
{ 1107, [
-new(-462.7381f, 208.7912f), new(149.55641f, -220.6412f), new(-457.3061f, 311.8444f), new(379.4582f, -444.4225f), new(381.04977f, -462.9211f),
-new(295.4564f, -302.97418f), new(-294.63962f, 139.5428f), new(285.7697f, -455.8066f), new(299.8116f, -470.2655f), new(-379.8406f, 232.4565f),
-new(377.59653f, -382.321f), new(148.64171f, -379.8848f), new(-210.1366f, 458.1442f), new(308.7076f, -131.41391f), new(153.9884f, -217.7742f),
-new(-141.6894f, 215.3425f), new(-460.0433f, 234.98509f), new(-136.8874f, 216.5425f), new(138.2379f, -227.9014f), new(-296.0136f, 141.7218f),
-new(209.002f, -374.6745f), new(467.7594f, -205.57361f), new(-299.0907f, 299.786f), new(-385.9006f, 148.4571f), new(-228.8021f, 465.8927f),
-new(-292.847f, 387.7852f), new(-387.7146f, 154.7931f), new(-458.8262f, 215.4924f), new(387.5638f, -134.93509f), new(-218.0434f, 370.3288f),
-new(-380.97647f, 208.4069f), new(-298.41278f, 291.9219f), new(230.8689f, -378.43408f), new(143.6492f, -294.3407f), new(-230.19339f, 380.2547f),
-new(298.2388f, -301.1221f), new(370.60068f, -147.02211f), new(149.7776f, -206.43239f), new(138.76181f, -391.39352f), new(296.3699f, -227.024f),
-new(307.8688f, -377.8807f), new(-372.5246f, 221.70909f), new(302.591f, -133.3526f), new(221.8143f, -204.8826f), new(-298.5397f, 303.108f),
-new(-380.1699f, 395.24158f), new(-297.8934f, 232.4888f), new(371.1003f, -377.761f), new(287.29437f, -218.7995f), new(-223.8064f, 228.8101f),
-new(-378.2259f, 387.1326f), new(147.5462f, -301.4754f), new(-208.5834f, 144.7789f), new(227.9525f, -216.9613f), new(220.38431f, -377.7031f),
-new(-225.84259f, 220.71779f), new(-220.8061f, 214.5215f), new(-456.40143f, 296.233f), new(-289.1657f, 463.31992f), new(138.8842f, -286.7087f),
-new(-368.7659f, 298.9821f), new(211.9312f, -219.4076f), new(134.2629f, -221.51941f), new(390.3473f, -463.2913f), new(-470.73102f, 310.5929f),
-new(472.52118f, -218.4579f), new(-301.9891f, 464.9877f), new(209.3972f, -225.5736f), new(285.295f, -380.0697f), new(-375.2769f, 389.9126f),
-new(-206.92781f, 303.7466f), new(-297.0803f, 377.5535f), new(-300.32953f, 156.1024f), new(388.17877f, -455.9621f), new(216.97769f, -149.70439f),
-new(-220.0992f, 291.2944f), new(-381.8559f, 367.64978f), new(145.34561f, -209.2984f), new(137.4668f, -387.5245f), new(-461.9856f, 380.3426f),
-new(220.2653f, -207.4056f), new(462.8336f, -390.6266f), new(-219.8426f, 387.5382f), new(-218.7734f, 371.9068f), new(383.6385f, -147.0905f),
-new(-388.64862f, 143.084f), new(-461.0443f, 233.9381f), new(216.0163f, -370.7071f), new(-136.6289f, 307.07858f), new(376.5918f, -308.9321f),
-new(-210.5649f, 384.9789f), new(299.9096f, -373.4251f), new(-294.371f, 216.8387f), new(289.2304f, -302.3412f), new(454.1565f, -295.5369f),
-new(463.2549f, -367.3826f), new(140.5885f, -301.56277f), new(-469.8f, 307.4279f), new(-384.6726f, 136.696f), new(379.90738f, -230.6872f),
-new(-288.80292f, 301.9993f), new(-387.1496f, 297.95578f), new(-305.944f, 135.77701f), new(306.1402f, -215.7353f), new(-295.5868f, 294.8739f),
-new(382.9808f, -303.0841f), new(451.9735f, -217.8254f), new(384.6495f, -374.677f), new(-382.4523f, 463.313f), new(-306.0776f, 457.7127f),
-new(291.1047f, -455.8626f), new(383.1358f, -137.81909f), new(-384.1718f, 382.12073f), new(-285.59192f, 302.7513f), new(378.1595f, -204.2077f),
-new(-220.95439f, 228.1431f), new(459.76862f, -392.0256f), new(-447.41098f, 378.7582f), new(294.7666f, -378.3751f), new(306.3132f, -206.9633f),
-new(227.09799f, -302.8008f), new(-220.9844f, 309.59882f), new(-306.19052f, 221.5544f), new(-300.63638f, 229.9288f), new(224.063f, -307.2128f),
-new(-137.3728f, 372.01053f), new(304.4986f, -291.746f), new(309.0601f, -294.55328f), new(462.7374f, -210.6116f), new(140.4508f, -385.50952f),
-new(-387.5426f, 130.4f), new(-207.9756f, 460.8562f), new(230.26349f, -213.2653f), new(-216.42441f, 311.37582f), new(144.3076f, -212.6924f),
-new(-376.44058f, 308.4009f), new(469.2149f, -376.9376f), new(220.1358f, -151.0777f), new(220.146f, -460.402f), new(395.3862f, -218.14551f),
-new(-218.5934f, 230.8431f), new(-146.0923f, 226.4919f), new(-302.30408f, 211.6456f), new(-292.7767f, 462.47192f), new(-383.7986f, 150.5211f),
-new(384.6276f, -370.17358f), new(-387.3168f, 379.5227f), new(-382.77762f, 235.6575f), new(-307.9154f, 300.8725f), new(-219.08391f, 153.71669f),
-new(305.0322f, -463.8117f), new(-308.696f, 144.80319f), new(-142.9794f, 304.50308f), new(301.28778f, -375.47372f), new(451.7135f, -220.82939f),
-new(371.9213f, -297.2778f), new(-138.79199f, 389.68198f), new(298.7482f, -386.1652f), new(-391.38892f, 219.3659f), new(231.0846f, -297.9669f),
-new(-128.7351f, 300.54037f), new(-305.39142f, 303.4985f), new(295.9474f, -299.6362f), new(-451.2599f, 305.3512f), new(310.3316f, -137.4189f),
-new(-370.36288f, 305.5211f), new(-299.0951f, 212.4056f), new(234.2309f, -376.4531f), new(-139.978f, 386.57498f), new(-370.93613f, 458.93988f),
-new(-135.04399f, 392.29797f), new(-222.2356f, 219.92479f), new(221.4651f, -228.74901f), new(232.31659f, -295.86688f), new(223.327f, -390.1101f),
-new(-303.363f, 138.086f), new(-209.4599f, 376.1399f), new(368.6013f, -299.44382f), new(-299.70108f, 391.2124f), new(-444.79498f, 381.3132f),
-new(133.1924f, -295.81802f), new(-307.1324f, 381.1627f), new(-380.84558f, 313.2019f), new(-461.9684f, 305.175f), new(230.4625f, -461.5358f),
-new(-455.7591f, 313.39038f), new(-300.60107f, 393.1234f), new(-215.2523f, 467.69162f), new(-455.8692f, 221.8054f), new(-300.6065f, 144.4734f),
-new(203.659f, -376.9035f), new(-382.9669f, 372.4708f), new(220.0838f, -154.3307f), new(-306.572f, 137.325f), new(-143.3351f, 300.9424f),
-new(-378.1628f, 292.2953f), new(142.94531f, -369.4355f), new(-145.2818f, 231.578f), new(373.192f, -224.6374f), new(-390.8656f, 144.9611f),
-new(137.5392f, -300.3047f), new(221.68669f, -138.25539f), new(-133.8029f, 312.1226f), new(395.87958f, -297.7745f), new(375.66867f, -140.7041f),
-new(206.012f, -376.42752f), new(373.24298f, -220.7534f), new(-390.651f, 462.694f), new(-375.66568f, 128.088f), new(374.1633f, -376.35397f),
-new(381.8956f, -142.3562f), new(377.9855f, -152.38449f), new(228.99449f, -462.6178f), new(-137.4739f, 309.6326f), new(-218.2644f, 309.03882f),
-new(377.951f, -292.29962f), new(-366.4479f, 301.2551f), new(152.6737f, -379.0308f), new(304.6568f, -455.0058f), new(-223.0872f, 450.4788f),
-new(207.4516f, -298.8241f), new(455.94922f, -370.4044f), new(297.6879f, -205.1695f), new(390.3146f, -136.3722f), new(294.3142f, -143.5172f),
-new(297.5116f, -471.31052f), new(452.1666f, -379.0984f), new(-218.02211f, 210.0525f), new(392.18658f, -300.1625f), new(295.2062f, -383.0142f),
-new(217.69199f, -464.51498f), new(-387.77982f, 381.2557f), new(216.52669f, -129.9964f), new(-225.6324f, 382.0327f), new(-137.6164f, 220.0323f),
-new(304.40488f, -131.0891f), new(379.439f, -380.6071f), new(311.8862f, -213.1083f), new(229.4775f, -463.20978f), new(468.2369f, -297.1128f),
-new(209.1512f, -214.9556f), new(-461.7301f, 209.8342f), new(314.1636f, -135.67491f), new(-141.4701f, 285.8724f), new(450.7703f, -301.0444f),
-new(386.0116f, -377.9026f), new(-468.773f, 308.4579f), new(286.256f, -382.4357f), new(-216.1654f, 372.5218f), new(208.3302f, -222.87259f),
-new(-307.0325f, 223.5034f), new(-134.0231f, 383.2293f), new(-446.3639f, 300.01022f), new(-132.77411f, 297.8054f), new(390.9886f, -375.6146f),
-new(309.9451f, -299.2963f), new(-295.4567f, 307.467f), new(-215.8276f, 388.4692f), new(218.5891f, -226.901f), new(-211.6414f, 138.3729f),
-new(304.4158f, -379.43073f), new(-212.7548f, 219.28581f), new(221.4248f, -449.9772f), new(299.52292f, -230.953f), new(214.20479f, -137.4585f),
-new(-379.54147f, 209.8789f), new(468.8262f, -220.8339f), new(381.465f, -292.11862f), new(217.7437f, -306.6591f), new(301.8162f, -384.7812f),
-new(220.33899f, -391.8721f), new(458.8244f, -223.563f), new(219.5733f, -206.2036f), new(231.8209f, -380.1371f), new(382.54178f, -447.20212f),
-new(223.1958f, -149.6407f), new(-138.5641f, 293.2824f), new(463.0689f, -291.67178f), new(-389.9589f, 220.8399f), new(293.5592f, -135.1472f),
-new(-376.3508f, 293.9203f), new(225.9068f, -447.3322f), new(307.6351f, -300.05328f), new(227.99089f, -142.9475f), new(135.9239f, -234.1174f),
-new(377.301f, -218.1084f), new(-303.59628f, 375.01147f), new(-299.81772f, 296.902f), new(385.895f, -289.2416f), new(375.06567f, -457.84702f),
-new(-459.4052f, 228.0214f), new(216.411f, -462.608f), new(296.29062f, -382.2331f), new(304.9428f, -302.0871f), new(381.7345f, -209.9327f),
-new(385.9823f, -460.3743f), new(-461.01382f, 388.7028f), new(385.0034f, -222.4152f), new(220.91809f, -226.243f), new(-292.3116f, 142.5388f),
-new(-141.0216f, 385.1831f), new(-388.0476f, 306.77478f), new(-369.1442f, 144.81259f), new(384.86697f, -385.1911f), new(138.57231f, -362.4155f),
-new(214.7363f, -383.3591f), new(297.0188f, -462.4608f), new(-311.70502f, 144.0952f), new(-375.6052f, 372.63882f), new(370.9787f, -453.341f),
-new(-212.79181f, 301.4606f), new(-378.9024f, 476.04672f), new(-140.49141f, 211.6205f), new(-373.01318f, 378.9418f), new(-147.75241f, 301.2671f),
-new(-209.5408f, 300.7376f), new(296.92892f, -231.83101f), new(299.1909f, -133.3911f), new(-456.74078f, 387.9356f), new(-219.3266f, 223.25879f),
-new(-381.3014f, 474.0177f), new(-230.6801f, 462.9987f), new(146.9137f, -384.1588f), new(452.4354f, -229.411f), new(-219.7751f, 205.71251f),
-new(230.4486f, -296.9689f), new(-211.18759f, 460.1112f), new(455.2955f, -215.6644f), new(-459.9118f, 380.4466f), new(313.0081f, -297.88828f),
-new(-383.43262f, 302.3728f), new(-291.20602f, 223.1797f), new(-310.93903f, 142.30519f), new(-220.4532f, 453.8078f), new(151.5762f, -300.6114f),
-new(-463.5773f, 232.2051f), new(-299.3829f, 450.5818f), new(301.8218f, -380.30872f), new(462.60593f, -384.7916f), new(145.2868f, -384.4725f),
-new(228.47789f, -139.6545f), new(-377.0907f, 126.604f), new(-443.828f, 221.761f), new(299.9026f, -293.85202f), new(379.9425f, -149.4625f),
-new(301.6579f, -211.5275f), new(298.7008f, -445.4668f), new(-458.6961f, 316.59338f), new(-228.98221f, 144.9709f), new(209.39601f, -460.7067f),
-new(-218.7193f, 459.0226f), new(-465.27182f, 390.74777f), new(-446.76602f, 224.967f), new(-223.2932f, 290.53238f), new(-297.3921f, 393.8814f),
-new(-385.3299f, 365.0988f), new(296.4376f, -294.993f), new(292.27438f, -295.5292f), new(296.4422f, -386.9412f), new(146.1152f, -306.3754f),
-new(462.0912f, -290.9881f), new(-227.6514f, 379.6637f), new(-296.3565f, 149.7344f), new(-470.326f, 310.14288f), new(212.39601f, -453.81668f),
-new(-297.1737f, 305.98f), new(-222.40419f, 288.6174f), new(231.92189f, -138.0465f), new(135.4785f, -306.3598f), new(-231.6051f, 465.20068f),
-new(137.1143f, -211.5405f), new(380.655f, -387.1271f), new(-290.8059f, 300.71732f), new(370.38232f, -372.951f), new(-376.8853f, 454.372f),
-new(378.2158f, -295.4491f), new(218.90471f, -303.5941f), new(466.9532f, -224.07489f), new(-228.4404f, 381.3707f), new(-223.3386f, 222.3118f),
-new(380.91898f, -296.02362f), new(-221.9836f, 385.4152f), new(208.022f, -446.7927f), new(-224.5553f, 303.5852f), new(296.6459f, -216.6045f),
-new(208.18561f, -300.1871f), new(-307.7444f, 382.5937f), new(452.50122f, -371.9804f), new(286.7974f, -214.5255f), new(392.4342f, -220.0695f),
-new(455.5583f, -304.3584f), new(-460.39243f, 287.318f), new(-390.199f, 461.15598f), new(-210.43181f, 221.9608f), new(-298.29977f, 292.5619f),
-new(295.5109f, -125.3631f), new(-371.8171f, 461.27588f), new(-381.7084f, 475.3727f), new(-146.1916f, 381.8371f), new(-299.1988f, 294.0279f),
-new(381.16818f, -448.5455f), new(-295.189f, 381.5602f), new(305.3569f, -217.4105f), new(-376.8986f, 228.73509f), new(206.176f, -378.4495f),
-new(-228.52429f, 309.9382f), new(-135.2204f, 226.2763f), new(299.5808f, -308.2671f), new(-367.00412f, 462.4159f), new(-298.6369f, 448.6948f),
-new(-462.0013f, 237.1211f), new(-296.822f, 394.1672f), new(131.68831f, -217.7925f), new(368.6453f, -302.59583f), new(-301.45178f, 292.5859f),
-new(-228.17729f, 294.77823f), new(222.1097f, -296.0961f), new(-448.9249f, 297.38922f), new(-308.60242f, 302.7465f), new(288.8017f, -456.8876f),
-new(-375.6606f, 214.7051f), new(-300.2287f, 315.134f), new(452.5672f, -366.72638f), new(392.4122f, -222.9025f), new(384.00018f, -447.3215f),
-new(-149.10431f, 222.4629f), new(-137.19409f, 375.7403f), new(-207.7819f, 380.5109f), new(383.0198f, -141.9251f), new(-376.9892f, 385.3268f),
-new(-303.0215f, 224.45439f), new(376.9625f, -214.4007f), new(377.47897f, -388.1691f), new(-296.1729f, 451.3348f), new(459.1442f, -294.0091f),
-new(-217.11871f, 142.7703f), new(-305.5681f, 470.7387f), new(-301.5024f, 231.6268f), new(-384.3916f, 302.14392f), new(-394.3749f, 217.36389f),
-new(288f, -381.73572f), new(308.8662f, -462.0707f), new(-379.2868f, 297.1163f), new(-146.68141f, 297.9091f), new(-381.5526f, 230.7105f),
-new(223.0608f, -452.35922f), new(295.9386f, -367.0651f), new(-379.0606f, 305.8149f), new(224.00009f, -224.741f), new(-213.64081f, 221.2028f),
-new(-305.3374f, 383.16068f), new(-132.03711f, 294.97638f), new(295.5436f, -468.6665f), new(-229.1453f, 298.3862f), new(-376.65018f, 370.13882f),
-new(-147.02481f, 229.09601f), new(301.81018f, -217.1663f), new(448.3996f, -375.3884f), new(-372.0452f, 141.9706f), new(-295.185f, 229.5777f),
-new(298.0389f, -220.3355f), new(217.3387f, -288.4331f), new(-218.6416f, 385.1192f), new(-288.0999f, 300.1193f), new(368.7903f, -378.51898f),
-new(301.6972f, -459.4657f), new(-301.1273f, 376.61948f), new(-460.0126f, 372.18958f), new(-304.7681f, 459.2177f), new(-381.6498f, 289.7463f),
-new(127.7918f, -382.7208f), new(-300.0543f, 374.2285f), new(-219.2344f, 310.72083f), new(-150.0903f, 225.5219f), new(292.66937f, -216.6405f),
-new(-210.5388f, 302.8946f), new(300.5948f, -312.6571f), new(-221.4769f, 151.05269f), new(299.6752f, -141.0582f), new(-308.10062f, 455.3507f),
-new(301.116f, -149.38959f), new(-224.0002f, 452.8728f), new(133.5218f, -377.43082f), new(-374.5282f, 150.6856f), new(285.103f, -382.81772f),
-new(-301.6461f, 210.0846f), new(-380.03088f, 369.27377f), new(302.97592f, -229.403f), new(223.568f, -304.78482f), new(-449.19897f, 386.1112f),
-new(-381.9885f, 212.5469f), new(-224.96921f, 145.9129f), new(387.66528f, -464.5153f), new(378.47748f, -217.8607f), new(137.6924f, -291.31403f),
-new(454.0594f, -215.92801f), new(391.3826f, -302.9625f), new(211.6888f, -141.4865f), new(378.69452f, -365.145f), new(450.2975f, -297.1529f),
-new(136.9605f, -302.33478f), new(-221.8697f, 137.4343f), new(-387.444f, 463.465f), new(-445.38602f, 220.118f), new(308.20798f, -142.4166f),
-new(452.49332f, -305.7564f), new(289.60037f, -218.01851f), new(-459.8462f, 228.1944f), new(134.46739f, -292.00302f), new(299.47458f, -286.80002f),
-new(-461.51178f, 395.5986f), new(-228.00621f, 142.5569f), new(-457.0926f, 375.0116f), new(-140.6318f, 366.7185f), new(300.1748f, -294.4411f),
-new(-373.51288f, 295.69107f), new(457.8136f, -387.3136f), new(140.33931f, -376.2945f), new(-139.1954f, 232.6593f), new(148.5924f, -224.0002f),
-new(210.0666f, -297.28412f), new(452.1215f, -290.78088f), new(459.7082f, -287.1741f), new(-378.1127f, 130.757f), new(226.90149f, -215.2483f),
-new(132.68231f, -214.40651f), new(-310.6054f, 301.4645f), new(-291.9327f, 460.3409f), new(-221.80339f, 230.0881f), new(-147.6828f, 230.977f),
-new(292.1174f, -301.3872f), new(-147.3006f, 377.77908f), new(215.7197f, -145.01439f), new(221.267f, -393.44012f), new(-461.44882f, 383.79578f),
-new(-380.7543f, 445.485f), new(-220.8183f, 476.6286f), new(217.984f, -392.34113f), new(-222.2939f, 152.9607f), new(-392.4059f, 223.5079f),
-new(379.83838f, -225.7832f)
+ new(-462.7381f, 208.7912f), new(149.55641f, -220.6412f), new(-457.3061f, 311.8444f), new(379.4582f, -444.4225f), new(381.04977f, -462.9211f),
+ new(295.4564f, -302.97418f), new(-294.63962f, 139.5428f), new(285.7697f, -455.8066f), new(299.8116f, -470.2655f), new(-379.8406f, 232.4565f),
+ new(377.59653f, -382.321f), new(148.64171f, -379.8848f), new(-210.1366f, 458.1442f), new(308.7076f, -131.41391f), new(153.9884f, -217.7742f),
+ new(-141.6894f, 215.3425f), new(-460.0433f, 234.98509f), new(-136.8874f, 216.5425f), new(138.2379f, -227.9014f), new(-296.0136f, 141.7218f),
+ new(209.002f, -374.6745f), new(467.7594f, -205.57361f), new(-299.0907f, 299.786f), new(-385.9006f, 148.4571f), new(-228.8021f, 465.8927f),
+ new(-292.847f, 387.7852f), new(-387.7146f, 154.7931f), new(-458.8262f, 215.4924f), new(387.5638f, -134.93509f), new(-218.0434f, 370.3288f),
+ new(-380.97647f, 208.4069f), new(-298.41278f, 291.9219f), new(230.8689f, -378.43408f), new(143.6492f, -294.3407f), new(-230.19339f, 380.2547f),
+ new(298.2388f, -301.1221f), new(370.60068f, -147.02211f), new(149.7776f, -206.43239f), new(138.76181f, -391.39352f), new(296.3699f, -227.024f),
+ new(307.8688f, -377.8807f), new(-372.5246f, 221.70909f), new(302.591f, -133.3526f), new(221.8143f, -204.8826f), new(-298.5397f, 303.108f),
+ new(-380.1699f, 395.24158f), new(-297.8934f, 232.4888f), new(371.1003f, -377.761f), new(287.29437f, -218.7995f), new(-223.8064f, 228.8101f),
+ new(-378.2259f, 387.1326f), new(147.5462f, -301.4754f), new(-208.5834f, 144.7789f), new(227.9525f, -216.9613f), new(220.38431f, -377.7031f),
+ new(-225.84259f, 220.71779f), new(-220.8061f, 214.5215f), new(-456.40143f, 296.233f), new(-289.1657f, 463.31992f), new(138.8842f, -286.7087f),
+ new(-368.7659f, 298.9821f), new(211.9312f, -219.4076f), new(134.2629f, -221.51941f), new(390.3473f, -463.2913f), new(-470.73102f, 310.5929f),
+ new(472.52118f, -218.4579f), new(-301.9891f, 464.9877f), new(209.3972f, -225.5736f), new(285.295f, -380.0697f), new(-375.2769f, 389.9126f),
+ new(-206.92781f, 303.7466f), new(-297.0803f, 377.5535f), new(-300.32953f, 156.1024f), new(388.17877f, -455.9621f), new(216.97769f, -149.70439f),
+ new(-220.0992f, 291.2944f), new(-381.8559f, 367.64978f), new(145.34561f, -209.2984f), new(137.4668f, -387.5245f), new(-461.9856f, 380.3426f),
+ new(220.2653f, -207.4056f), new(462.8336f, -390.6266f), new(-219.8426f, 387.5382f), new(-218.7734f, 371.9068f), new(383.6385f, -147.0905f),
+ new(-388.64862f, 143.084f), new(-461.0443f, 233.9381f), new(216.0163f, -370.7071f), new(-136.6289f, 307.07858f), new(376.5918f, -308.9321f),
+ new(-210.5649f, 384.9789f), new(299.9096f, -373.4251f), new(-294.371f, 216.8387f), new(289.2304f, -302.3412f), new(454.1565f, -295.5369f),
+ new(463.2549f, -367.3826f), new(140.5885f, -301.56277f), new(-469.8f, 307.4279f), new(-384.6726f, 136.696f), new(379.90738f, -230.6872f),
+ new(-288.80292f, 301.9993f), new(-387.1496f, 297.95578f), new(-305.944f, 135.77701f), new(306.1402f, -215.7353f), new(-295.5868f, 294.8739f),
+ new(382.9808f, -303.0841f), new(451.9735f, -217.8254f), new(384.6495f, -374.677f), new(-382.4523f, 463.313f), new(-306.0776f, 457.7127f),
+ new(291.1047f, -455.8626f), new(383.1358f, -137.81909f), new(-384.1718f, 382.12073f), new(-285.59192f, 302.7513f), new(378.1595f, -204.2077f),
+ new(-220.95439f, 228.1431f), new(459.76862f, -392.0256f), new(-447.41098f, 378.7582f), new(294.7666f, -378.3751f), new(306.3132f, -206.9633f),
+ new(227.09799f, -302.8008f), new(-220.9844f, 309.59882f), new(-306.19052f, 221.5544f), new(-300.63638f, 229.9288f), new(224.063f, -307.2128f),
+ new(-137.3728f, 372.01053f), new(304.4986f, -291.746f), new(309.0601f, -294.55328f), new(462.7374f, -210.6116f), new(140.4508f, -385.50952f),
+ new(-387.5426f, 130.4f), new(-207.9756f, 460.8562f), new(230.26349f, -213.2653f), new(-216.42441f, 311.37582f), new(144.3076f, -212.6924f),
+ new(-376.44058f, 308.4009f), new(469.2149f, -376.9376f), new(220.1358f, -151.0777f), new(220.146f, -460.402f), new(395.3862f, -218.14551f),
+ new(-218.5934f, 230.8431f), new(-146.0923f, 226.4919f), new(-302.30408f, 211.6456f), new(-292.7767f, 462.47192f), new(-383.7986f, 150.5211f),
+ new(384.6276f, -370.17358f), new(-387.3168f, 379.5227f), new(-382.77762f, 235.6575f), new(-307.9154f, 300.8725f), new(-219.08391f, 153.71669f),
+ new(305.0322f, -463.8117f), new(-308.696f, 144.80319f), new(-142.9794f, 304.50308f), new(301.28778f, -375.47372f), new(451.7135f, -220.82939f),
+ new(371.9213f, -297.2778f), new(-138.79199f, 389.68198f), new(298.7482f, -386.1652f), new(-391.38892f, 219.3659f), new(231.0846f, -297.9669f),
+ new(-128.7351f, 300.54037f), new(-305.39142f, 303.4985f), new(295.9474f, -299.6362f), new(-451.2599f, 305.3512f), new(310.3316f, -137.4189f),
+ new(-370.36288f, 305.5211f), new(-299.0951f, 212.4056f), new(234.2309f, -376.4531f), new(-139.978f, 386.57498f), new(-370.93613f, 458.93988f),
+ new(-135.04399f, 392.29797f), new(-222.2356f, 219.92479f), new(221.4651f, -228.74901f), new(232.31659f, -295.86688f), new(223.327f, -390.1101f),
+ new(-303.363f, 138.086f), new(-209.4599f, 376.1399f), new(368.6013f, -299.44382f), new(-299.70108f, 391.2124f), new(-444.79498f, 381.3132f),
+ new(133.1924f, -295.81802f), new(-307.1324f, 381.1627f), new(-380.84558f, 313.2019f), new(-461.9684f, 305.175f), new(230.4625f, -461.5358f),
+ new(-455.7591f, 313.39038f), new(-300.60107f, 393.1234f), new(-215.2523f, 467.69162f), new(-455.8692f, 221.8054f), new(-300.6065f, 144.4734f),
+ new(203.659f, -376.9035f), new(-382.9669f, 372.4708f), new(220.0838f, -154.3307f), new(-306.572f, 137.325f), new(-143.3351f, 300.9424f),
+ new(-378.1628f, 292.2953f), new(142.94531f, -369.4355f), new(-145.2818f, 231.578f), new(373.192f, -224.6374f), new(-390.8656f, 144.9611f),
+ new(137.5392f, -300.3047f), new(221.68669f, -138.25539f), new(-133.8029f, 312.1226f), new(395.87958f, -297.7745f), new(375.66867f, -140.7041f),
+ new(206.012f, -376.42752f), new(373.24298f, -220.7534f), new(-390.651f, 462.694f), new(-375.66568f, 128.088f), new(374.1633f, -376.35397f),
+ new(381.8956f, -142.3562f), new(377.9855f, -152.38449f), new(228.99449f, -462.6178f), new(-137.4739f, 309.6326f), new(-218.2644f, 309.03882f),
+ new(377.951f, -292.29962f), new(-366.4479f, 301.2551f), new(152.6737f, -379.0308f), new(304.6568f, -455.0058f), new(-223.0872f, 450.4788f),
+ new(207.4516f, -298.8241f), new(455.94922f, -370.4044f), new(297.6879f, -205.1695f), new(390.3146f, -136.3722f), new(294.3142f, -143.5172f),
+ new(297.5116f, -471.31052f), new(452.1666f, -379.0984f), new(-218.02211f, 210.0525f), new(392.18658f, -300.1625f), new(295.2062f, -383.0142f),
+ new(217.69199f, -464.51498f), new(-387.77982f, 381.2557f), new(216.52669f, -129.9964f), new(-225.6324f, 382.0327f), new(-137.6164f, 220.0323f),
+ new(304.40488f, -131.0891f), new(379.439f, -380.6071f), new(311.8862f, -213.1083f), new(229.4775f, -463.20978f), new(468.2369f, -297.1128f),
+ new(209.1512f, -214.9556f), new(-461.7301f, 209.8342f), new(314.1636f, -135.67491f), new(-141.4701f, 285.8724f), new(450.7703f, -301.0444f),
+ new(386.0116f, -377.9026f), new(-468.773f, 308.4579f), new(286.256f, -382.4357f), new(-216.1654f, 372.5218f), new(208.3302f, -222.87259f),
+ new(-307.0325f, 223.5034f), new(-134.0231f, 383.2293f), new(-446.3639f, 300.01022f), new(-132.77411f, 297.8054f), new(390.9886f, -375.6146f),
+ new(309.9451f, -299.2963f), new(-295.4567f, 307.467f), new(-215.8276f, 388.4692f), new(218.5891f, -226.901f), new(-211.6414f, 138.3729f),
+ new(304.4158f, -379.43073f), new(-212.7548f, 219.28581f), new(221.4248f, -449.9772f), new(299.52292f, -230.953f), new(214.20479f, -137.4585f),
+ new(-379.54147f, 209.8789f), new(468.8262f, -220.8339f), new(381.465f, -292.11862f), new(217.7437f, -306.6591f), new(301.8162f, -384.7812f),
+ new(220.33899f, -391.8721f), new(458.8244f, -223.563f), new(219.5733f, -206.2036f), new(231.8209f, -380.1371f), new(382.54178f, -447.20212f),
+ new(223.1958f, -149.6407f), new(-138.5641f, 293.2824f), new(463.0689f, -291.67178f), new(-389.9589f, 220.8399f), new(293.5592f, -135.1472f),
+ new(-376.3508f, 293.9203f), new(225.9068f, -447.3322f), new(307.6351f, -300.05328f), new(227.99089f, -142.9475f), new(135.9239f, -234.1174f),
+ new(377.301f, -218.1084f), new(-303.59628f, 375.01147f), new(-299.81772f, 296.902f), new(385.895f, -289.2416f), new(375.06567f, -457.84702f),
+ new(-459.4052f, 228.0214f), new(216.411f, -462.608f), new(296.29062f, -382.2331f), new(304.9428f, -302.0871f), new(381.7345f, -209.9327f),
+ new(385.9823f, -460.3743f), new(-461.01382f, 388.7028f), new(385.0034f, -222.4152f), new(220.91809f, -226.243f), new(-292.3116f, 142.5388f),
+ new(-141.0216f, 385.1831f), new(-388.0476f, 306.77478f), new(-369.1442f, 144.81259f), new(384.86697f, -385.1911f), new(138.57231f, -362.4155f),
+ new(214.7363f, -383.3591f), new(297.0188f, -462.4608f), new(-311.70502f, 144.0952f), new(-375.6052f, 372.63882f), new(370.9787f, -453.341f),
+ new(-212.79181f, 301.4606f), new(-378.9024f, 476.04672f), new(-140.49141f, 211.6205f), new(-373.01318f, 378.9418f), new(-147.75241f, 301.2671f),
+ new(-209.5408f, 300.7376f), new(296.92892f, -231.83101f), new(299.1909f, -133.3911f), new(-456.74078f, 387.9356f), new(-219.3266f, 223.25879f),
+ new(-381.3014f, 474.0177f), new(-230.6801f, 462.9987f), new(146.9137f, -384.1588f), new(452.4354f, -229.411f), new(-219.7751f, 205.71251f),
+ new(230.4486f, -296.9689f), new(-211.18759f, 460.1112f), new(455.2955f, -215.6644f), new(-459.9118f, 380.4466f), new(313.0081f, -297.88828f),
+ new(-383.43262f, 302.3728f), new(-291.20602f, 223.1797f), new(-310.93903f, 142.30519f), new(-220.4532f, 453.8078f), new(151.5762f, -300.6114f),
+ new(-463.5773f, 232.2051f), new(-299.3829f, 450.5818f), new(301.8218f, -380.30872f), new(462.60593f, -384.7916f), new(145.2868f, -384.4725f),
+ new(228.47789f, -139.6545f), new(-377.0907f, 126.604f), new(-443.828f, 221.761f), new(299.9026f, -293.85202f), new(379.9425f, -149.4625f),
+ new(301.6579f, -211.5275f), new(298.7008f, -445.4668f), new(-458.6961f, 316.59338f), new(-228.98221f, 144.9709f), new(209.39601f, -460.7067f),
+ new(-218.7193f, 459.0226f), new(-465.27182f, 390.74777f), new(-446.76602f, 224.967f), new(-223.2932f, 290.53238f), new(-297.3921f, 393.8814f),
+ new(-385.3299f, 365.0988f), new(296.4376f, -294.993f), new(292.27438f, -295.5292f), new(296.4422f, -386.9412f), new(146.1152f, -306.3754f),
+ new(462.0912f, -290.9881f), new(-227.6514f, 379.6637f), new(-296.3565f, 149.7344f), new(-470.326f, 310.14288f), new(212.39601f, -453.81668f),
+ new(-297.1737f, 305.98f), new(-222.40419f, 288.6174f), new(231.92189f, -138.0465f), new(135.4785f, -306.3598f), new(-231.6051f, 465.20068f),
+ new(137.1143f, -211.5405f), new(380.655f, -387.1271f), new(-290.8059f, 300.71732f), new(370.38232f, -372.951f), new(-376.8853f, 454.372f),
+ new(378.2158f, -295.4491f), new(218.90471f, -303.5941f), new(466.9532f, -224.07489f), new(-228.4404f, 381.3707f), new(-223.3386f, 222.3118f),
+ new(380.91898f, -296.02362f), new(-221.9836f, 385.4152f), new(208.022f, -446.7927f), new(-224.5553f, 303.5852f), new(296.6459f, -216.6045f),
+ new(208.18561f, -300.1871f), new(-307.7444f, 382.5937f), new(452.50122f, -371.9804f), new(286.7974f, -214.5255f), new(392.4342f, -220.0695f),
+ new(455.5583f, -304.3584f), new(-460.39243f, 287.318f), new(-390.199f, 461.15598f), new(-210.43181f, 221.9608f), new(-298.29977f, 292.5619f),
+ new(295.5109f, -125.3631f), new(-371.8171f, 461.27588f), new(-381.7084f, 475.3727f), new(-146.1916f, 381.8371f), new(-299.1988f, 294.0279f),
+ new(381.16818f, -448.5455f), new(-295.189f, 381.5602f), new(305.3569f, -217.4105f), new(-376.8986f, 228.73509f), new(206.176f, -378.4495f),
+ new(-228.52429f, 309.9382f), new(-135.2204f, 226.2763f), new(299.5808f, -308.2671f), new(-367.00412f, 462.4159f), new(-298.6369f, 448.6948f),
+ new(-462.0013f, 237.1211f), new(-296.822f, 394.1672f), new(131.68831f, -217.7925f), new(368.6453f, -302.59583f), new(-301.45178f, 292.5859f),
+ new(-228.17729f, 294.77823f), new(222.1097f, -296.0961f), new(-448.9249f, 297.38922f), new(-308.60242f, 302.7465f), new(288.8017f, -456.8876f),
+ new(-375.6606f, 214.7051f), new(-300.2287f, 315.134f), new(452.5672f, -366.72638f), new(392.4122f, -222.9025f), new(384.00018f, -447.3215f),
+ new(-149.10431f, 222.4629f), new(-137.19409f, 375.7403f), new(-207.7819f, 380.5109f), new(383.0198f, -141.9251f), new(-376.9892f, 385.3268f),
+ new(-303.0215f, 224.45439f), new(376.9625f, -214.4007f), new(377.47897f, -388.1691f), new(-296.1729f, 451.3348f), new(459.1442f, -294.0091f),
+ new(-217.11871f, 142.7703f), new(-305.5681f, 470.7387f), new(-301.5024f, 231.6268f), new(-384.3916f, 302.14392f), new(-394.3749f, 217.36389f),
+ new(288f, -381.73572f), new(308.8662f, -462.0707f), new(-379.2868f, 297.1163f), new(-146.68141f, 297.9091f), new(-381.5526f, 230.7105f),
+ new(223.0608f, -452.35922f), new(295.9386f, -367.0651f), new(-379.0606f, 305.8149f), new(224.00009f, -224.741f), new(-213.64081f, 221.2028f),
+ new(-305.3374f, 383.16068f), new(-132.03711f, 294.97638f), new(295.5436f, -468.6665f), new(-229.1453f, 298.3862f), new(-376.65018f, 370.13882f),
+ new(-147.02481f, 229.09601f), new(301.81018f, -217.1663f), new(448.3996f, -375.3884f), new(-372.0452f, 141.9706f), new(-295.185f, 229.5777f),
+ new(298.0389f, -220.3355f), new(217.3387f, -288.4331f), new(-218.6416f, 385.1192f), new(-288.0999f, 300.1193f), new(368.7903f, -378.51898f),
+ new(301.6972f, -459.4657f), new(-301.1273f, 376.61948f), new(-460.0126f, 372.18958f), new(-304.7681f, 459.2177f), new(-381.6498f, 289.7463f),
+ new(127.7918f, -382.7208f), new(-300.0543f, 374.2285f), new(-219.2344f, 310.72083f), new(-150.0903f, 225.5219f), new(292.66937f, -216.6405f),
+ new(-210.5388f, 302.8946f), new(300.5948f, -312.6571f), new(-221.4769f, 151.05269f), new(299.6752f, -141.0582f), new(-308.10062f, 455.3507f),
+ new(301.116f, -149.38959f), new(-224.0002f, 452.8728f), new(133.5218f, -377.43082f), new(-374.5282f, 150.6856f), new(285.103f, -382.81772f),
+ new(-301.6461f, 210.0846f), new(-380.03088f, 369.27377f), new(302.97592f, -229.403f), new(223.568f, -304.78482f), new(-449.19897f, 386.1112f),
+ new(-381.9885f, 212.5469f), new(-224.96921f, 145.9129f), new(387.66528f, -464.5153f), new(378.47748f, -217.8607f), new(137.6924f, -291.31403f),
+ new(454.0594f, -215.92801f), new(391.3826f, -302.9625f), new(211.6888f, -141.4865f), new(378.69452f, -365.145f), new(450.2975f, -297.1529f),
+ new(136.9605f, -302.33478f), new(-221.8697f, 137.4343f), new(-387.444f, 463.465f), new(-445.38602f, 220.118f), new(308.20798f, -142.4166f),
+ new(452.49332f, -305.7564f), new(289.60037f, -218.01851f), new(-459.8462f, 228.1944f), new(134.46739f, -292.00302f), new(299.47458f, -286.80002f),
+ new(-461.51178f, 395.5986f), new(-228.00621f, 142.5569f), new(-457.0926f, 375.0116f), new(-140.6318f, 366.7185f), new(300.1748f, -294.4411f),
+ new(-373.51288f, 295.69107f), new(457.8136f, -387.3136f), new(140.33931f, -376.2945f), new(-139.1954f, 232.6593f), new(148.5924f, -224.0002f),
+ new(210.0666f, -297.28412f), new(452.1215f, -290.78088f), new(459.7082f, -287.1741f), new(-378.1127f, 130.757f), new(226.90149f, -215.2483f),
+ new(132.68231f, -214.40651f), new(-310.6054f, 301.4645f), new(-291.9327f, 460.3409f), new(-221.80339f, 230.0881f), new(-147.6828f, 230.977f),
+ new(292.1174f, -301.3872f), new(-147.3006f, 377.77908f), new(215.7197f, -145.01439f), new(221.267f, -393.44012f), new(-461.44882f, 383.79578f),
+ new(-380.7543f, 445.485f), new(-220.8183f, 476.6286f), new(217.984f, -392.34113f), new(-222.2939f, 152.9607f), new(-392.4059f, 223.5079f),
+ new(379.83838f, -225.7832f), new(-138.7941f, 390.8923f), new(291.10962f, -379.6511f)
]},
{ 1108, [
-new(-209.5408f, 300.7376f), new(459.7082f, -287.1741f), new(146.1152f, -306.3754f), new(295.5109f, -125.3631f), new(207.4516f, -298.8241f),
-new(-208.5834f, 144.7789f), new(-448.9249f, 297.38922f), new(459.9192f, -296.2731f), new(-135.2204f, 226.2763f), new(147.5462f, -301.4754f),
-new(-373.51288f, 295.69107f), new(223.327f, -390.1101f), new(309.9451f, -299.2963f), new(-461.01382f, 388.7028f), new(-301.5024f, 231.6268f),
-new(217.89081f, -450.6792f), new(-224.5553f, 303.5852f), new(-149.10431f, 222.4629f), new(-212.7548f, 219.28581f), new(-221.9836f, 385.4152f),
-new(138.76181f, -391.39352f), new(-211.6414f, 138.3729f), new(378.6398f, -313.6541f), new(227.9525f, -216.9613f), new(153.9884f, -217.7742f),
-new(308.8662f, -462.0707f), new(-376.3508f, 293.9203f), new(-461.7301f, 209.8342f), new(144.3076f, -212.6924f), new(-374.11362f, 220.19809f),
-new(-465.27182f, 390.74777f), new(294.7666f, -378.3751f), new(-229.1453f, 298.3862f), new(307.6351f, -300.05328f), new(-297.3921f, 393.8814f),
-new(-146.1916f, 381.8371f), new(301.6972f, -459.4657f), new(148.64171f, -379.8848f), new(-307.9154f, 300.8725f), new(220.1358f, -151.0777f),
-new(-294.371f, 216.8387f), new(385.0034f, -222.4152f), new(146.9137f, -384.1588f), new(455.94922f, -370.4044f), new(-296.822f, 394.1672f),
-new(373.192f, -224.6374f), new(-297.0803f, 377.5535f), new(137.1143f, -211.5405f), new(216.97769f, -149.70439f), new(379.83838f, -225.7832f),
-new(138.2379f, -227.9014f), new(-388.64862f, 143.084f), new(145.34561f, -209.2984f), new(-132.03711f, 294.97638f), new(-373.01318f, 378.9418f),
-new(448.72058f, -380.6774f), new(-457.0926f, 375.0116f), new(311.8862f, -213.1083f), new(-307.7444f, 382.5937f), new(-301.6461f, 210.0846f),
-new(227.99089f, -142.9475f), new(140.5885f, -301.56277f), new(379.439f, -380.6071f), new(382.54178f, -447.20212f), new(301.6579f, -211.5275f),
-new(209.002f, -374.6745f), new(448.3996f, -375.3884f), new(-140.49141f, 211.6205f), new(-305.5681f, 470.7387f), new(-296.0136f, 141.7218f),
-new(-461.9856f, 380.3426f), new(-209.4599f, 376.1399f), new(-309.2474f, 381.63568f), new(447.4415f, -298.2459f), new(-387.7326f, 296.1518f),
-new(-213.64081f, 221.2028f), new(300.5948f, -312.6571f), new(-384.0005f, 206.4029f), new(210.0666f, -297.28412f), new(-298.29977f, 292.5619f),
-new(395.87958f, -297.7745f), new(304.40488f, -131.0891f), new(295.7796f, -471.8875f), new(-456.74078f, 387.9356f), new(376.9625f, -214.4007f),
-new(314.1636f, -135.67491f), new(-139.978f, 386.57498f), new(-135.04399f, 392.29797f), new(379.4582f, -444.4225f), new(299.52292f, -230.953f),
-new(288.8017f, -456.8876f), new(379.21753f, -387.888f), new(-449.19897f, 386.1112f), new(-301.45178f, 292.5859f), new(-310.93903f, 142.30519f),
-new(203.659f, -376.9035f), new(-380.03088f, 369.27377f), new(-132.77411f, 297.8054f), new(217.7437f, -306.6591f), new(299.5808f, -308.2671f),
-new(-379.2868f, 297.1163f), new(137.5392f, -300.3047f), new(-299.0951f, 212.4056f), new(368.6453f, -302.59583f), new(-138.5641f, 293.2824f),
-new(-288.0999f, 300.1193f), new(-143.3351f, 300.9424f), new(294.3142f, -143.5172f), new(-220.8061f, 214.5215f), new(-382.77762f, 235.6575f),
-new(384.00018f, -447.3215f), new(297.0188f, -462.4608f), new(390.9886f, -375.6146f), new(464.43338f, -207.7126f), new(299.9096f, -373.4251f),
-new(-309.53952f, 221.9094f), new(392.4122f, -222.9025f), new(232.31659f, -295.86688f), new(-446.76602f, 224.967f), new(140.4508f, -385.50952f),
-new(285.7697f, -455.8066f), new(-228.52429f, 309.9382f), new(-383.4654f, 474.26572f), new(135.4785f, -306.3598f), new(127.7918f, -382.7208f),
-new(452.50122f, -371.9804f), new(-370.36288f, 305.5211f), new(206.176f, -378.4495f), new(-303.0215f, 224.45439f), new(-301.1273f, 376.61948f),
-new(138.8842f, -286.7087f), new(-459.5032f, 213.0014f), new(-147.75241f, 301.2671f), new(216.411f, -462.608f), new(-367.00412f, 462.4159f),
-new(-379.54147f, 209.8789f), new(-139.1954f, 232.6593f), new(-382.9669f, 372.4708f), new(306.3132f, -206.9633f), new(136.9605f, -302.33478f),
-new(388.17877f, -455.9621f), new(297.5116f, -471.31052f), new(-210.43181f, 221.9608f), new(299.6752f, -141.0582f), new(450.2975f, -297.1529f),
-new(-218.7193f, 459.0226f), new(301.81018f, -217.1663f), new(295.9386f, -367.0651f), new(-394.3749f, 217.36389f), new(229.4775f, -463.20978f),
-new(-288.4569f, 300.4813f), new(295.4564f, -302.97418f), new(301.8162f, -384.7812f), new(-223.8064f, 228.8101f), new(380.91898f, -296.02362f),
-new(-383.7986f, 150.5211f), new(-456.40143f, 296.233f), new(-389.9589f, 220.8399f), new(-444.79498f, 381.3132f), new(-224.12419f, 285.1774f),
-new(295.5436f, -468.6665f), new(392.4342f, -220.0695f), new(-147.6828f, 230.977f), new(-385.9006f, 148.4571f), new(228.47789f, -139.6545f),
-new(-381.6498f, 289.7463f), new(-212.79181f, 301.4606f), new(206.012f, -376.42752f), new(228.9766f, -297.2619f), new(-387.5426f, 130.4f),
-new(-372.5246f, 221.70909f), new(463.7799f, -390.1506f), new(307.8688f, -377.8807f), new(-306.19052f, 221.5544f), new(231.92189f, -138.0465f),
-new(223.1958f, -149.6407f), new(-387.77982f, 381.2557f), new(-384.3916f, 302.14392f), new(468.8262f, -220.8339f), new(-141.0216f, 385.1831f),
-new(-469.8f, 307.4279f), new(222.1097f, -296.0961f), new(457.8136f, -387.3136f), new(-369.2996f, 221.98909f), new(-140.6318f, 366.7185f),
-new(308.20798f, -142.4166f), new(218.5891f, -226.901f), new(292.1174f, -301.3872f), new(-206.92781f, 303.7466f), new(-305.39142f, 303.4985f),
-new(299.47458f, -286.80002f), new(-458.8262f, 215.4924f), new(216.0163f, -370.7071f), new(-145.2818f, 231.578f), new(310.3316f, -137.4189f),
-new(392.18658f, -300.1625f), new(208.3302f, -222.87259f), new(296.4422f, -386.9412f), new(-138.7941f, 390.8923f), new(-223.3386f, 222.3118f),
-new(370.85168f, -459.77402f), new(-294.63962f, 139.5428f), new(379.90738f, -230.6872f), new(-385.3299f, 365.0988f), new(-134.0231f, 383.2293f),
-new(-215.3428f, 298.9236f), new(220.2653f, -207.4056f), new(-378.1628f, 292.2953f), new(370.02f, -220.9104f), new(-220.9844f, 309.59882f),
-new(-140.69281f, 369.8445f), new(-210.3279f, 374.3489f), new(387.5638f, -134.93509f), new(214.20479f, -137.4585f), new(-224.96921f, 145.9129f),
-new(291.32138f, -216.6705f), new(-372.0452f, 141.9706f), new(462.7374f, -210.6116f), new(-388.0476f, 306.77478f), new(-370.93613f, 458.93988f),
-new(-382.4523f, 463.313f), new(211.15979f, -138.9595f), new(216.52669f, -129.9964f), new(295.2062f, -383.0142f), new(381.16818f, -448.5455f),
-new(-307.0325f, 223.5034f), new(-146.0923f, 226.4919f), new(-210.1366f, 458.1442f), new(285.295f, -380.0697f), new(463.2549f, -367.3826f),
-new(225.9068f, -447.3322f), new(148.5924f, -224.0002f), new(-137.4739f, 309.6326f), new(-301.9891f, 464.9877f), new(-289.1657f, 463.31992f),
-new(463.12592f, -299.5258f), new(-445.38602f, 220.118f), new(313.0081f, -297.88828f), new(220.91809f, -226.243f), new(133.5218f, -377.43082f),
-new(304.4158f, -379.43073f), new(-298.41278f, 291.9219f), new(-295.4567f, 307.467f), new(-381.9885f, 212.5469f), new(-299.1988f, 294.0279f),
-new(-218.6416f, 385.1192f), new(-455.7591f, 313.39038f), new(-381.5526f, 230.7105f), new(-223.0872f, 450.4788f), new(-378.9024f, 476.04672f),
-new(454.1565f, -295.5369f), new(134.46739f, -292.00302f), new(223.568f, -304.78482f), new(221.4651f, -228.74901f), new(301.116f, -149.38959f),
-new(-225.84259f, 220.71779f), new(374.1633f, -376.35397f), new(151.5762f, -300.6114f), new(-217.11871f, 142.7703f), new(-210.5649f, 384.9789f),
-new(220.146f, -460.402f), new(-306.0776f, 457.7127f), new(220.0838f, -154.3307f), new(-218.0434f, 370.3288f), new(306.1402f, -215.7353f),
-new(-291.9327f, 460.3409f), new(-147.3006f, 377.77908f), new(-215.6448f, 219.92781f), new(452.4354f, -229.411f), new(-300.32953f, 156.1024f),
-new(-392.4059f, 223.5079f), new(459.76862f, -392.0256f), new(-390.651f, 462.694f), new(-299.81772f, 296.902f), new(211.9312f, -219.4076f),
-new(220.38431f, -377.7031f), new(377.9855f, -152.38449f), new(302.591f, -133.3526f), new(291.1047f, -455.8626f), new(-218.7734f, 371.9068f),
-new(-136.8874f, 216.5425f), new(220.33899f, -391.8721f), new(292.27438f, -295.5292f), new(140.33931f, -376.2945f), new(472.52118f, -218.4579f),
-new(-459.8462f, 228.1944f), new(384.6495f, -374.677f), new(296.29062f, -382.2331f), new(-381.7084f, 475.3727f), new(-457.3061f, 311.8444f),
-new(-222.40419f, 288.6174f), new(-295.5868f, 294.8739f), new(-220.0992f, 291.2944f), new(-133.8029f, 312.1226f), new(149.7776f, -206.43239f),
-new(133.1924f, -295.81802f), new(452.5672f, -366.72638f), new(-443.828f, 221.761f), new(-207.7819f, 380.5109f), new(228.99449f, -462.6178f),
-new(-378.2259f, 387.1326f), new(221.267f, -393.44012f), new(449.9032f, -372.8394f), new(-136.6289f, 307.07858f), new(377.59653f, -382.321f),
-new(301.8218f, -380.30872f), new(-369.1442f, 144.81259f), new(224.00009f, -224.741f), new(217.3387f, -288.4331f), new(-379.8406f, 232.4565f),
-new(-292.7767f, 462.47192f), new(-215.8276f, 388.4692f), new(382.9808f, -303.0841f), new(-221.4769f, 151.05269f), new(462.0912f, -290.9881f),
-new(-311.70502f, 144.0952f), new(-228.00621f, 142.5569f), new(143.6492f, -294.3407f), new(-447.41098f, 378.7582f), new(390.3473f, -463.2913f),
-new(-219.8426f, 387.5382f), new(-380.7543f, 445.485f), new(-458.6961f, 316.59338f), new(-216.1654f, 372.5218f), new(-384.6726f, 136.696f),
-new(463.0689f, -291.67178f), new(305.0322f, -463.8117f), new(375.06567f, -457.84702f), new(217.69199f, -464.51498f), new(305.3569f, -217.4105f),
-new(391.3826f, -302.9625f), new(-142.9281f, 282.71942f), new(-291.20602f, 223.1797f), new(-227.6514f, 379.6637f), new(-137.19409f, 375.7403f),
-new(287.29437f, -218.7995f), new(395.3862f, -218.14551f), new(224.00049f, -215.7743f), new(219.5733f, -206.2036f), new(215.7197f, -145.01439f),
-new(-459.9118f, 380.4466f), new(292.66937f, -216.6405f), new(-296.1729f, 451.3348f), new(-461.4884f, 283.90698f), new(299.1909f, -133.3911f),
-new(230.8689f, -378.43408f), new(296.4376f, -294.993f), new(373.24298f, -220.7534f), new(-212.56041f, 151.1689f), new(217.984f, -392.34113f),
-new(-380.1699f, 395.24158f), new(-297.8934f, 232.4888f), new(-375.66568f, 128.088f), new(311.8751f, -295.40628f), new(-307.1324f, 381.1627f),
-new(381.7345f, -209.9327f), new(-384.1718f, 382.12073f), new(-306.572f, 137.325f), new(209.1512f, -214.9556f), new(-371.8171f, 461.27588f),
-new(-300.60107f, 393.1234f), new(-228.4404f, 381.3707f), new(-300.63638f, 229.9288f), new(-302.30408f, 211.6456f), new(-220.95439f, 228.1431f),
-new(212.39601f, -453.81668f), new(-219.2344f, 310.72083f), new(378.69452f, -365.145f), new(378.2158f, -295.4491f), new(216.4033f, -387.39212f),
-new(214.7363f, -383.3591f), new(-285.59192f, 302.7513f), new(-142.9794f, 304.50308f), new(-230.19339f, 380.2547f), new(226.90149f, -215.2483f),
-new(305.2748f, -378.0257f), new(-308.10062f, 455.3507f), new(-299.0907f, 299.786f), new(-220.4532f, 453.8078f), new(-218.5934f, 230.8431f),
-new(368.6013f, -299.44382f), new(-368.7659f, 298.9821f), new(285.103f, -382.81772f), new(-305.3374f, 383.16068f), new(-228.8021f, 465.8927f),
-new(-375.6606f, 214.7051f), new(-387.3168f, 379.5227f), new(376.5918f, -308.9321f), new(-451.2599f, 305.3512f), new(451.7135f, -220.82939f),
-new(149.55641f, -220.6412f), new(-305.944f, 135.77701f), new(211.6888f, -141.4865f), new(452.1666f, -379.0984f), new(-216.42441f, 311.37582f),
-new(-300.2287f, 315.134f), new(451.9735f, -217.8254f), new(-137.6164f, 220.0323f), new(-366.4479f, 301.2551f), new(131.68831f, -217.7925f),
-new(-380.97647f, 208.4069f), new(218.90471f, -303.5941f), new(-377.0907f, 126.604f), new(384.86697f, -385.1911f), new(227.09799f, -302.8008f),
-new(-223.2932f, 290.53238f), new(384.6276f, -370.17358f), new(296.92892f, -231.83101f), new(-387.7146f, 154.7931f), new(-462.0013f, 237.1211f),
-new(295.9474f, -299.6362f), new(231.0846f, -297.9669f), new(-222.2939f, 152.9607f), new(296.3699f, -227.024f), new(452.1215f, -290.78088f),
-new(-380.70688f, 369.87277f), new(-308.8856f, 457.0507f), new(138.57231f, -362.4155f), new(-146.68141f, 297.9091f), new(208.022f, -446.7927f),
-new(-376.8853f, 454.372f), new(224.063f, -307.2128f), new(-446.3639f, 300.01022f), new(-225.6324f, 382.0327f), new(383.1358f, -137.81909f),
-new(286.256f, -382.4357f), new(469.2149f, -376.9376f), new(-218.2644f, 309.03882f), new(-141.4701f, 285.8724f), new(370.9787f, -453.341f),
-new(-461.9684f, 305.175f), new(378.1595f, -204.2077f), new(304.4986f, -291.746f), new(-224.0002f, 452.8728f), new(299.9026f, -293.85202f),
-new(462.8336f, -390.6266f), new(-452.74298f, 375.05222f), new(466.9532f, -224.07489f), new(-228.17729f, 294.77823f), new(-222.2356f, 219.92479f),
-new(386.0116f, -377.9026f), new(450.7703f, -301.0444f), new(458.8244f, -223.563f), new(309.0601f, -294.55328f), new(-295.185f, 229.5777f),
-new(145.2868f, -384.4725f), new(-470.73102f, 310.5929f), new(385.89362f, -139.2932f), new(-376.8986f, 228.73509f), new(302.1462f, -464.7737f),
-new(390.3146f, -136.3722f), new(-296.48297f, 378.9822f), new(137.6924f, -291.31403f), new(371.9213f, -297.2778f), new(375.66867f, -140.7041f),
-new(-463.6881f, 211.9702f), new(-150.0903f, 225.5219f), new(-221.80339f, 230.0881f), new(-310.6054f, 301.4645f), new(-218.02211f, 210.0525f),
-new(-308.696f, 144.80319f), new(304.6706f, -290.06403f), new(-220.8183f, 476.6286f), new(381.8956f, -142.3562f), new(-299.70108f, 391.2124f),
-new(-387.1496f, 297.95578f), new(-462.7381f, 208.7912f), new(-137.3728f, 372.01053f), new(-378.1127f, 130.757f), new(455.5583f, -304.3584f),
-new(-298.6369f, 448.6948f), new(-375.6052f, 372.63882f), new(385.6463f, -465.1843f), new(293.5592f, -135.1472f), new(370.9007f, -133.06311f),
-new(-383.43262f, 302.3728f), new(-304.7681f, 459.2177f), new(385.895f, -289.2416f), new(-375.2769f, 389.9126f), new(286.7974f, -214.5255f),
-new(-367.89288f, 299.67908f), new(383.6385f, -147.0905f), new(-288.80292f, 301.9993f), new(230.4486f, -296.9689f), new(-461.0443f, 233.9381f),
-new(-387.444f, 463.465f), new(381.465f, -292.11862f), new(298.7008f, -445.4668f), new(-379.0606f, 305.8149f), new(454.0594f, -215.92801f),
-new(-207.9756f, 460.8562f), new(-292.847f, 387.7852f), new(298.7482f, -386.1652f), new(-472.307f, 305.6779f), new(-219.08391f, 153.71669f),
-new(-460.0126f, 372.18958f), new(455.2955f, -215.6644f), new(377.951f, -292.29962f), new(467.7594f, -205.57361f), new(302.97592f, -229.403f),
-new(-308.60242f, 302.7465f), new(300.1748f, -294.4411f), new(370.38232f, -372.951f), new(-381.8559f, 367.64978f), new(454.4834f, -234.133f),
-new(291.10962f, -379.6511f), new(-221.8697f, 137.4343f), new(221.4248f, -449.9772f), new(-461.44882f, 383.79578f), new(304.6568f, -455.0058f),
-new(-141.6894f, 215.3425f), new(462.60593f, -384.7916f), new(387.66528f, -464.5153f), new(-292.3116f, 142.5388f), new(-381.3014f, 474.0177f),
-new(-228.98221f, 144.9709f), new(289.2304f, -302.3412f), new(-376.9892f, 385.3268f), new(-147.02481f, 229.09601f), new(-460.39243f, 287.318f),
-new(370.60068f, -147.02211f), new(135.9239f, -234.1174f), new(-290.8059f, 300.71732f), new(-460.0433f, 234.98509f), new(-376.44058f, 308.4009f),
-new(142.94531f, -369.4355f), new(-392.659f, 461.429f), new(-138.79199f, 389.68198f), new(234.2309f, -376.4531f), new(304.9428f, -302.0871f),
-new(-215.2523f, 467.69162f), new(-303.363f, 138.086f), new(221.68669f, -138.25539f), new(-461.51178f, 395.5986f), new(209.39601f, -460.7067f),
-new(129.4768f, -378.29282f), new(141.8316f, -209.4874f), new(385.9823f, -460.3743f), new(-219.3266f, 223.25879f), new(381.04977f, -462.9211f),
-new(-296.3565f, 149.7344f), new(-219.7751f, 205.71251f), new(289.60037f, -218.01851f), new(375.7364f, -225.9812f), new(-211.18759f, 460.1112f),
-new(223.0608f, -452.35922f), new(-390.199f, 461.15598f), new(297.6879f, -205.1695f), new(-468.773f, 308.4579f), new(-295.189f, 381.5602f),
-new(383.0198f, -141.9251f), new(-225.3122f, 289.26138f), new(-230.6801f, 462.9987f), new(-210.5388f, 302.8946f), new(380.655f, -387.1271f),
-new(-303.59628f, 375.01147f), new(-380.84558f, 313.2019f), new(-299.3829f, 450.5818f), new(-300.0543f, 374.2285f), new(379.9425f, -149.4625f),
-new(296.6459f, -216.6045f), new(288f, -381.73572f), new(-151.5854f, 301.2121f), new(208.18561f, -300.1871f), new(132.68231f, -214.40651f),
-new(-142.327f, 389.498f), new(468.2369f, -297.1128f), new(-220.4004f, 370.87082f), new(230.4625f, -461.5358f), new(371.1003f, -377.761f),
-new(299.8116f, -470.2655f), new(-391.38892f, 219.3659f), new(301.28778f, -375.47372f), new(-231.6051f, 465.20068f), new(-455.8692f, 221.8054f),
-new(231.8209f, -380.1371f), new(221.8143f, -204.8826f), new(152.6737f, -379.0308f), new(459.1442f, -294.0091f), new(-128.7351f, 300.54037f),
-new(-300.6065f, 144.4734f), new(308.7076f, -131.41391f), new(377.301f, -218.1084f), new(298.0389f, -220.3355f), new(230.26349f, -213.2653f),
-new(452.49332f, -305.7564f)
- ]},
- { 772, [
-new(376.71408f, -163.9247f), new(348.1979f, 345.5573f), new(-374.6376f, 400.4427f), new(289.92798f, 284.65192f), new(345.3408f, -298.5015f),
-new(-269.513f, 424.5067f), new(265.6963f, -345.53763f), new(402.2955f, 251.4143f), new(300.70612f, -356.6511f), new(-289.8858f, 356.31592f),
-new(259.6995f, 307.1369f), new(-197.0683f, 306.1307f), new(357.2303f, -171.55899f), new(393.398f, 318.8063f), new(-241.9361f, 379.7902f),
-new(-301.9898f, 178.4032f), new(-307.0104f, 316.565f), new(-194.86919f, 371.8657f), new(-236.4902f, 189.61119f), new(403.4913f, 286.2028f),
-new(401.7559f, 374.2101f), new(-233.6006f, 327.5207f), new(-241.1521f, 384.6872f), new(179.67891f, -308.7387f), new(-346.5827f, 302.4053f),
-new(-364.8265f, 244.6553f), new(344.2087f, -232.4424f), new(417.41022f, -302.66248f), new(-391.1254f, 244.8064f), new(248.6749f, 301.05252f),
-new(395.7075f, -222.7798f), new(376.78458f, 371.8697f), new(-374.7598f, 203.49141f), new(231.67181f, -225.1458f), new(335.2478f, 321.17468f),
-new(-168.9556f, 321.4709f), new(251.47049f, -419.5588f), new(317.5967f, -368.9579f), new(264.28308f, 261.27832f), new(-371.6487f, 299.1657f),
-new(-301.5808f, 177.8382f), new(305.0021f, 241.3848f), new(348.28998f, 374.78928f), new(317.8042f, -178.33409f), new(-354.7089f, 408.4559f),
-new(-234.3622f, 190.9722f), new(-198.72401f, 261.7587f), new(295.6318f, -288.7602f), new(399.0676f, -239.8332f), new(340.74338f, 230.7298f),
-new(358.60632f, -181.0389f), new(342.5868f, -298.4415f), new(177.1913f, -296.34268f), new(-350.93158f, 297.4599f), new(-188.2754f, 268.79572f),
-new(177.08049f, -239.4171f), new(178.4085f, -238.1801f), new(-245.4137f, 249.67331f), new(238.3026f, 278.0772f), new(-223.3463f, 265.0763f),
-new(-352.8636f, 234.3573f), new(229.28221f, -408.8728f), new(269.8277f, -334.5409f), new(-305.3693f, 287.33688f), new(369.6076f, -225.6595f),
-new(-194.826f, 261.6007f), new(-346.0355f, 255.982f), new(-353.67657f, 295.4919f), new(202.63051f, -235.1841f), new(-239.2611f, 299.092f),
-new(196.1169f, 295.4874f), new(271.0617f, -338.2319f), new(227.6412f, -410.5308f), new(215.64421f, -347.4266f), new(413.50098f, -364.55472f),
-new(-372.9738f, 201.0284f), new(-187.38249f, 249.09772f), new(321.3752f, 334.3307f), new(-383.81158f, 181.1703f), new(-220.0313f, 261.9123f),
-new(-170.68901f, 294.0579f), new(-422.54532f, 308.9989f), new(-365.4345f, 241.1323f), new(403.549f, 313.6695f), new(-177.2355f, 373.6434f),
-new(195.3116f, -345.6733f), new(401.0799f, -278.6056f), new(241.382f, -340.3038f), new(403.64932f, 240.10599f), new(249.319f, -215.618f),
-new(-234.5814f, 435.6396f), new(428.2641f, -271.9331f), new(-308.848f, 291.9464f), new(-270.71f, 423.7137f), new(-310.267f, 294.7434f),
-new(306.38058f, 339.9122f), new(-313.9427f, 254.3079f), new(378.2455f, -345.2166f), new(-335.9127f, 351.1376f), new(243.35799f, -215.11699f),
-new(231.64081f, -229.4038f), new(-353.81558f, 293.52292f), new(-287.11322f, 401.6318f), new(-292.6885f, 250.2691f), new(350.3689f, 345.1863f),
-new(368.13562f, -223.42151f), new(203.54431f, 371.8712f), new(253.2245f, -417.57483f), new(-290.9568f, 355.56992f), new(240.90181f, -216.7218f),
-new(312.30692f, -340.3842f), new(-354.1631f, 368.2306f), new(-368.9018f, 199.1944f), new(269.65128f, -344.9236f), new(-220.297f, 315.3902f),
-new(347.75278f, -299.3825f), new(316.0309f, -341.58618f), new(324.4175f, 317.2488f), new(278.89713f, -411.0506f), new(179.3625f, -239.6321f),
-new(-391.8349f, 233.9584f), new(350.2567f, -216.1649f), new(-189.4104f, 270.6727f), new(-242.6401f, 358.1322f), new(-371.33987f, 405.85492f),
-new(339.4175f, 269.301f), new(-372.9567f, 302.8427f), new(-351.3335f, 256.224f), new(-168.40761f, 320.7139f), new(387.993f, 320.13733f),
-new(-381.8866f, 178.0253f), new(-187.5024f, 270.74072f), new(402.1206f, 225.5562f), new(312.42142f, -250.5462f), new(-169.2006f, 320.2139f),
-new(-227.293f, 361.37262f), new(289.98438f, -254.2891f), new(438.92688f, -362.4001f), new(298.1842f, -288.9316f), new(227.8294f, -285.30338f),
-new(-218.611f, 315.3592f), new(-352.6877f, 299.6353f), new(411.90298f, -362.1257f), new(299.23788f, -227.0948f), new(365.34192f, 242.8805f),
-new(-213.5108f, 438.1338f), new(201.9884f, 236.0397f), new(350.369f, 374.3173f), new(-223.6897f, 214.64041f), new(-348.2006f, 230.9363f),
-new(237.2845f, 235.0492f), new(-352.6143f, 345.79f), new(345.60382f, -286.5957f), new(362.72382f, -281.93472f), new(254.2905f, -419.19882f),
-new(289.13013f, -399.6196f), new(-171.237f, 294.81488f), new(310.0872f, -185.1001f), new(311.7329f, -406.3619f), new(354.15472f, -218.4929f),
-new(-305.98032f, 284.1079f), new(372.1322f, 307.5765f), new(245.39899f, -212.765f), new(305.9083f, -176.2831f), new(238.065f, -248.4584f),
-new(197.2213f, 251.4295f), new(-372.3576f, 402.32867f), new(-420.42932f, 307.44592f), new(312.0657f, -364.9319f), new(-238.5081f, 303.019f),
-new(-421.9003f, 308.10892f), new(279.35242f, -402.1463f), new(231.1776f, 322.4716f), new(380.4839f, 330.7512f), new(186.0859f, -217.7677f),
-new(-400.31558f, 367.1244f), new(-422.8273f, 307.4339f), new(-196.04721f, 356.122f), new(249.951f, 255.7473f), new(-250.37169f, 260.0622f),
-new(216.1839f, -338.9899f), new(-238.97269f, 266.3603f), new(-212.63f, 209.1689f), new(249.32391f, 242.6159f), new(-172.4345f, 262.41672f),
-new(406.6163f, 239.583f), new(361.2575f, 318.7718f), new(-353.69272f, 302.58432f), new(403.3666f, 351.44232f), new(268.9017f, 316.2489f),
-new(-232.9671f, 298.955f), new(196.2843f, -292.0167f), new(305.0138f, 315.9504f), new(314.9854f, -248.9642f), new(240.081f, -246.5664f),
-new(-406.3583f, 300.0663f), new(184.7139f, -219.0607f), new(312.5804f, -298.2536f), new(295.5701f, 316.071f), new(-377.1097f, 304.0777f),
-new(-279.06522f, 400.81348f), new(206.4043f, 264.74982f), new(-351.8203f, 413.813f), new(-352.8396f, 300.0899f), new(402.56992f, -277.2346f),
-new(-286.9048f, 239.8743f), new(-267.62698f, 423.6567f), new(-393.8414f, 242.3904f), new(219.2244f, -162.5733f), new(345.5095f, -276.6721f),
-new(341.4232f, 331.1079f), new(311.53882f, 289.88562f), new(-301.5802f, 168.9334f), new(375.38452f, -338.3946f), new(217.2939f, -340.82388f),
-new(-197.1642f, 371.6997f), new(-290.42422f, 404.0608f), new(197.09691f, 294.0054f), new(316.0374f, -252.7052f), new(394.9545f, -226.4618f),
-new(-194.4853f, 307.8307f), new(361.73282f, -331.1886f), new(234.2811f, -287.4474f), new(-408.3909f, 235.2604f), new(380.78018f, -418.5864f),
-new(305.5419f, 262.27838f), new(-221.466f, 316.6482f), new(366.78052f, 317.5388f), new(217.6542f, 378.3698f), new(226.6846f, 318.3006f),
-new(260.0031f, 344.6024f), new(-416.80212f, 288.1401f), new(-352.8407f, 306.9953f), new(282.216f, 284.45792f), new(-228.199f, 356.7846f),
-new(310.1734f, -301.0836f), new(250.7601f, -282.0224f), new(331.31882f, -195.0549f), new(-417.5751f, 287.1691f), new(296.6748f, -287.1642f),
-new(-293.7178f, 199.09729f), new(-366.2066f, 192.9274f), new(264.825f, -345.6668f), new(-233.9966f, 326.7637f), new(317.0369f, -344.9022f),
-new(344.2368f, -296.8235f), new(310.5404f, -247.45221f), new(-351.0763f, 418.60498f), new(292.4874f, -251.9531f), new(317.14542f, -301.5766f),
-new(-190.4055f, 362.1254f), new(299.1461f, -354.2771f), new(367.48462f, -412.8184f), new(-290.62878f, 357.3399f), new(-222.2177f, 212.6094f),
-new(226.0148f, -179.6351f), new(340.7025f, 269.098f), new(223.2792f, 376.9958f), new(-376.09772f, 305.48572f), new(227.8968f, -182.22011f),
-new(-349.2775f, 257.44f), new(231.1044f, -284.8414f), new(349.2945f, 257.0189f), new(-365.9159f, 418.9609f), new(241.7686f, 314.7646f),
-new(250.1486f, 357.6308f), new(-393.0814f, 247.49939f), new(-290.8622f, 401.5938f), new(353.6393f, -343.6889f), new(207.42899f, 341.4529f),
-new(-212.3758f, 441.1358f), new(234.82289f, 259.7143f), new(333.3478f, -194.0309f), new(308.8722f, -293.3176f), new(356.59232f, -182.0629f),
-new(-353.2503f, 342.186f), new(-236.8181f, 300.689f), new(381.68118f, -417.7264f), new(256.1451f, 282.6386f), new(284.9965f, 372.24942f),
-new(416.8687f, -346.21658f), new(261.552f, -336.9208f), new(250.4599f, 241.85791f), new(-228.5727f, 262.1683f), new(255.12561f, 356.4528f),
-new(-185.88751f, 377.0914f), new(438.1319f, -361.7681f), new(-373.9736f, 404.5547f), new(-312.54468f, 251.9989f), new(-375.2347f, 301.2907f),
-new(304.73383f, 291.5936f), new(-312.2657f, 254.7969f), new(-383.3686f, 179.9023f), new(-304.1484f, 314.871f), new(357.9933f, -172.72f),
-new(372.99622f, -393.5563f), new(246.44011f, -152.9419f), new(372.77762f, -416.99338f), new(342.58148f, -277.0731f), new(299.80582f, -288.3042f),
-new(-248.8777f, 261.2052f), new(-306.55142f, 319.516f), new(-398.9256f, 367.9824f), new(415.48572f, -344.1136f), new(-198.257f, 264.1167f),
-new(-360.1625f, 241.2343f), new(399.0946f, 354.5093f), new(438.29388f, -360.9711f), new(-405.4513f, 347.7175f), new(-286.8808f, 198.9373f),
-new(416.991f, -365.8287f), new(364.1091f, 292.58792f), new(257.9516f, 374.03598f), new(233.79341f, -285.8204f), new(359.2825f, -341.78662f),
-new(-287.539f, 297.6054f), new(366.0076f, -225.4685f), new(419.8887f, -347.3206f), new(177.70891f, -309.7057f), new(266.71628f, -343.01862f),
-new(413.46973f, -346.0506f), new(363.5408f, -329.1616f), new(370.5828f, 360.6607f), new(-243.43811f, 352.8602f), new(241.8871f, -278.2584f),
-new(330.7778f, 373.1893f), new(305.9909f, -400.8839f), new(296.4859f, -229.85481f), new(-223.2f, 315.0922f), new(200.1243f, 265.93982f),
-new(-353.4296f, 230.68129f), new(185.7883f, -287.7097f), new(225.2018f, -183.6101f), new(397.2776f, 265.4078f), new(-344.9803f, 416f),
-new(382.30518f, -418.6744f), new(367.3599f, 241.6405f), new(287.845f, 266.5761f), new(294.2872f, -309.0776f), new(305.0099f, -231.29681f),
-new(274.75742f, -401.83832f), new(-222.717f, 318.3712f), new(-309.4374f, 319.268f), new(-409.37692f, 234.6734f), new(233.4648f, -411.5427f),
-new(374.60822f, -396.0103f), new(373.73108f, -164.4157f), new(-357.5269f, 415.9999f), new(372.82062f, -226.8345f), new(307.95892f, -404.1389f),
-new(312.8153f, -177.6131f), new(-236.3234f, 438.5186f), new(-404.7183f, 297.8073f), new(-386.6674f, 242.7934f), new(230.3482f, -410.4928f),
-new(-300.6478f, 177.4182f), new(292.8808f, -287.63022f), new(-270.341f, 425.6487f), new(250.72389f, 300.7405f), new(-221.4573f, 265.14432f),
-new(268.1663f, -342.6636f), new(312.35718f, -301.51062f), new(252.3378f, -220.9828f), new(-339.67072f, 351.1796f), new(-244.5121f, 349.96918f),
-new(397.4695f, -225.2008f), new(-233.4764f, 438.6416f), new(277.4634f, -399.2723f), new(-197.21101f, 262.6727f), new(365.3396f, -415.4644f),
-new(-209.77899f, 209.11789f), new(221.4004f, -163.1363f), new(-214.1267f, 419.0281f), new(300.9511f, -404.9076f), new(269.9067f, 314.72787f),
-new(327.7502f, -182.4421f), new(315.65942f, -301.0536f), new(-301.9892f, 169.4974f), new(194.8253f, 371.4492f), new(252.74611f, 284.9366f),
-new(290.3454f, 232.1849f), new(366.0021f, 265.4078f), new(313.9249f, -343.0452f), new(-301.54462f, 343.03372f), new(313.0819f, -343.8892f),
-new(-220.637f, 356.4906f), new(267.7541f, 262.9323f), new(-225.2257f, 253.41931f), new(208.0094f, 286.41193f), new(-222.2113f, 263.1993f),
-new(-395.5829f, 236.7074f), new(-338.2137f, 352.17358f), new(-196.2723f, 310.2957f), new(298.9428f, -285.8482f), new(375.59708f, -162.22469f),
-new(250.142f, -332.50482f), new(-226.6707f, 258.8433f), new(-240.6121f, 355.3392f), new(194.70241f, 237.1217f), new(343.6478f, 321.31668f),
-new(-412.7855f, 357.9822f), new(257.9891f, -287.6301f), new(-415.3601f, 287.4801f), new(-403.2633f, 346.7165f), new(-171.48201f, 293.5829f),
-new(232.7881f, 231.4039f), new(-351.1433f, 343.763f), new(394.5612f, 308.46252f), new(-292.8998f, 203.3523f), new(218.0151f, 284.04147f),
-new(-373.7796f, 196.0674f), new(295.0534f, 358.6996f), new(202.27701f, -303.5203f), new(-396.0829f, 233.9454f), new(367.0578f, -331.7216f),
-new(211.72139f, 284.46692f), new(247.7921f, -152.9289f), new(-234.8561f, 380.06918f), new(-302.16718f, 168.5004f), new(308.0903f, -174.1731f),
-new(-351.4416f, 232.39929f), new(219.5321f, 334.568f), new(284.7134f, 233.62491f), new(-234.1586f, 324.5847f), new(360.8071f, 266.53882f),
-new(349.4089f, 346.6513f), new(309.4107f, -367.5939f), new(330.5201f, 285.9797f), new(369.2596f, -415.7064f), new(260.4491f, -289.0801f),
-new(310.5689f, 260.9644f), new(-215.25279f, 441.0138f), new(309.57428f, -176.4301f), new(-303.9953f, 285.4419f), new(226.8515f, 234.64719f),
-new(-308.5014f, 319.027f), new(-249.92369f, 262.6462f), new(297.0039f, -229.2418f), new(-211.033f, 206.5279f), new(289.6532f, -296.9126f),
-new(228.82889f, 261.2233f), new(216.7102f, -349.04962f), new(204.6855f, -238.3121f), new(272.89328f, -346.1036f), new(223.2731f, 282.81747f),
-new(299.3771f, -358.95612f), new(298.26138f, -256.1601f), new(266.5497f, -333.92288f), new(-194.1862f, 357.526f), new(-291.194f, 307.1524f),
-new(201.627f, -306.33328f), new(359.6593f, -173.32599f), new(-413.2125f, 355.84622f), new(370.4252f, -396.3163f), new(349.5062f, 241.4282f),
-new(229.8734f, -282.96738f), new(348.5465f, 256.33292f), new(-305.15448f, 367.0711f), new(255.5628f, -229.8498f), new(304.1131f, -357.8971f),
-new(217.8069f, -338.7579f), new(-225.263f, 358.57062f), new(296.9951f, -356.2681f), new(-279.72223f, 401.71848f), new(219.8431f, 374.3906f),
-new(-239.2321f, 382.0442f), new(-302.1728f, 177.4702f), new(213.86621f, -349.47662f), new(301.2709f, -226.1168f), new(-349.21732f, 416f),
-new(223.8197f, 338.08652f), new(206.6494f, 285.63092f), new(364.6458f, -330.8436f), new(-406.6203f, 346.2385f), new(366.4865f, -334.7666f),
-new(343.06732f, 284.38742f), new(200.121f, -303.84628f), new(290.7505f, 371.1044f), new(310.0504f, -252.9532f), new(353.4198f, -278.0647f),
-new(426.8461f, -273.1361f), new(220.4894f, -162.7093f), new(-224.3457f, 211.3054f), new(-229.49359f, 324.50668f), new(409.51498f, -364.4877f),
-new(421.23438f, -218.416f), new(261.36362f, 371.896f), new(-359.2631f, 350.3606f), new(-298.9116f, 344.8167f), new(251.4178f, -402.08768f),
-new(-300.7356f, 347.33173f), new(285.535f, 287.0309f), new(349.8565f, 256.1619f), new(331.92682f, -192.0789f), new(219.9544f, -161.89531f),
-new(395.5476f, -239.7872f), new(241.527f, -248.7664f), new(-300.86432f, 284.0329f), new(234.5066f, 317.3936f), new(419.9994f, -216.539f),
-new(-302.2145f, 254.00111f), new(247.2581f, -152.11589f), new(425.7131f, -271.27512f), new(-235.8342f, 193.0022f), new(-289.4142f, 402.6688f),
-new(-346.59958f, 295.50092f), new(337.1993f, 286.0744f), new(249.8289f, 302.10452f), new(252.8076f, 359.9918f), new(178.2939f, -306.8367f),
-new(354.74332f, -345.3669f), new(-235.9871f, 353.2512f), new(355.98828f, -172.94f), new(322.9535f, 316.8518f), new(-279.97223f, 399.9875f),
-new(342.7377f, -230.2064f), new(268.4607f, 315.67288f), new(-378.0206f, 183.2214f), new(-399.8866f, 369.3094f), new(301.0509f, -229.8508f),
-new(-398.9256f, 367.9824f), new(198.78299f, 341.1509f), new(394.6928f, 362.70972f), new(-417.43613f, 289.0161f), new(195.6739f, 294.9284f),
-new(-288.1938f, 241.6513f), new(418.1984f, -218.283f), new(-195.75119f, 369.3657f), new(268.0957f, -336.4829f), new(-339.22272f, 353.56558f),
-new(-394.43988f, 235.13141f), new(393.9636f, 267.66382f), new(-411.8235f, 356.6552f), new(308.1859f, 264.6024f), new(187.0529f, -219.23871f),
-new(-288.7638f, 238.5873f), new(403.6619f, -278.8956f), new(-407.0253f, 295.8703f), new(-350.9317f, 304.3623f), new(340.4577f, -232.54741f),
-new(379.8036f, 371.5497f), new(-218.8647f, 211.10141f), new(202.07959f, -334.3883f), new(295.2408f, -284.9812f), new(-398.3766f, 365.5184f),
-new(202.2034f, 312.9765f), new(314.0144f, -300.4356f), new(-309.85968f, 250.4089f), new(-221.52899f, 315.50717f), new(-231.0092f, 189.4632f),
-new(241.1418f, -398.0637f), new(-343.9801f, 364.1506f), new(-340.7511f, 355.5806f), new(313.8027f, -367.5719f), new(-365.21252f, 242.3103f),
-new(199.26451f, -238.92711f), new(418.8792f, -302.5225f), new(-350.7005f, 259.404f), new(-347.7903f, 342.252f), new(-406.4133f, 349.0465f),
-new(347.42172f, -233.6154f), new(-409.0729f, 236.2014f), new(294.3014f, -254.71309f), new(309.70892f, -401.1209f), new(362.24158f, 355.79422f),
-new(364.9936f, 353.97122f), new(-216.4477f, 417.5751f), new(337.5254f, 233.0108f), new(293.1706f, 339.6143f), new(-307.4325f, 237.8491f),
-new(348.22772f, -212.8309f), new(317.0387f, -367.98288f), new(352.86472f, -214.1799f), new(214.2597f, 337.50052f), new(-304.6983f, 284.9739f),
-new(202.58899f, 344.1859f), new(-396.7346f, 366.9964f), new(-302.61148f, 369.2861f), new(269.1257f, 227.2676f), new(340.1405f, 269.956f),
-new(-215.73169f, 421.2431f), new(367.5871f, 290.1719f), new(-304.4335f, 371.7951f), new(310.3886f, 337.3642f), new(-363.4045f, 242.6953f),
-new(-182.32649f, 266.24872f), new(397.6626f, -237.6972f), new(182.8379f, -310.1697f), new(283.1496f, 339.1293f), new(259.2351f, -285.8391f),
-new(256.7071f, -285.5081f), new(344.40448f, -274.9911f), new(-283.9678f, 238.55031f), new(287.6814f, 236.2529f), new(211.0526f, -338.1713f),
-new(-291.0638f, 200.81929f), new(357.19733f, -179.10289f), new(-375.5458f, 199.19841f), new(-400.9783f, 296.1203f), new(406.0459f, -279.76758f),
-new(340.2092f, 331.3559f), new(246.62999f, -214.63899f), new(278.774f, 265.8511f), new(-302.551f, 311.7304f), new(418.3192f, -301.6695f),
-new(-195.4862f, 359.318f), new(-232.3486f, 325.7927f), new(351.97632f, -345.3449f), new(-238.1081f, 381.8762f), new(220.8401f, 286.5325f)
- ]},
- { 770, [
-new(-354.1121f, 367.9964f), new(-351.2784f, 231.64009f), new(-405.1293f, 296.587f), new(-301.5912f, 168.9244f), new(-189.686f, 303.2175f),
-new(-289.85162f, 355.8965f), new(295.4348f, -285.8792f), new(-394.4718f, 235.1051f), new(-389.9801f, 358.3342f), new(260.0031f, 344.6025f),
-new(302.59018f, -360.1431f), new(251.40579f, -402.0976f), new(302.99432f, -403.0829f), new(-350.9846f, 304.3181f), new(255.2002f, -222.3061f),
-new(397.9753f, 266.25488f), new(303.24622f, -233.9057f), new(343.04532f, 284.3684f), new(361.9024f, 322.2832f), new(-239.2861f, 381.9999f),
-new(-289.15778f, 421.9942f), new(376.81012f, -396.29062f), new(295.0535f, 358.6997f), new(203.3688f, 261.15018f), new(402.2955f, 251.4143f),
-new(-238.9177f, 266.1083f), new(232.5653f, -286.8155f), new(207.4071f, 341.4351f), new(290.6817f, 371.0484f), new(-279.44458f, 401.34708f),
-new(358.56772f, -181.0699f), new(338.9954f, -229.9056f), new(299.3371f, -252.5542f), new(188.3839f, -290.0003f), new(288.9386f, -298.1348f),
-new(444.29538f, -367.2828f), new(-221.28589f, 209.78401f), new(271.4414f, -348.2464f), new(-291.12f, 291.14142f), new(-349.2823f, 340.336f),
-new(252.0282f, -239.9451f), new(335.0204f, 231.3598f), new(-302.1754f, 253.82011f), new(376.3251f, -400.15662f), new(-406.1933f, 299.302f),
-new(349.8764f, -296.31f), new(-351.4814f, 232.36609f), new(-219.3859f, 206.389f), new(262.661f, -337.8591f), new(393.85822f, 319.5962f),
-new(364.49442f, 319.5962f), new(-194.0778f, 319.8775f), new(364.4287f, -232.1838f), new(251.312f, -333.67712f), new(-350.69357f, 303.3081f),
-new(340.6804f, 230.6778f), new(-200.05069f, 262.2243f), new(-372.4026f, 402.2915f), new(-348.12082f, 257.6804f), new(-214.1318f, 418.0158f),
-new(241.18579f, -398.2616f), new(-225.2822f, 357.31653f), new(398.73618f, 235.2048f), new(-289.90662f, 356.29852f), new(-349.3608f, 259.01038f),
-new(299.3652f, -355.2921f), new(-231.5522f, 192.3238f), new(402.5601f, -280.6905f), new(356.76172f, -182.9179f), new(368.1827f, -233.64081f),
-new(349.5063f, 241.4282f), new(249.3295f, 356.4588f), new(-349.0392f, 415.1106f), new(314.7512f, -197.45601f), new(350.344f, 374.2963f),
-new(349.8417f, 256.1499f), new(-228.5067f, 247.50531f), new(366.6834f, 370.02722f), new(-177.417f, 375.24078f), new(250.43991f, 241.8409f),
-new(-357.5401f, 415.5084f), new(347.3149f, -297.5263f), new(327.8012f, -196.447f), new(-166.1792f, 326.38882f), new(-280.0766f, 402.3281f),
-new(187.0128f, -231.2012f), new(-222.5699f, 211.16801f), new(-278.6526f, 400.1891f), new(211.7074f, 284.45493f), new(-222.6982f, 353.8405f),
-new(-166.17801f, 298.3138f), new(347.0897f, -279.0603f), new(280.6213f, -401.5852f), new(-300.5546f, 346.4943f), new(358.36902f, 266.58688f),
-new(392.30032f, 266.60788f), new(238.2819f, 261.5142f), new(346.03192f, -299.0353f), new(-218.37581f, 416.4608f), new(207.1658f, 264.03918f),
-new(264.945f, -341.8911f), new(-201.4007f, 264.6393f), new(367.0515f, -334.9941f), new(243.13719f, -217.5741f), new(-288.94562f, 354.5855f),
-new(-392.8863f, 246.5963f), new(-345.0418f, 257.1644f), new(388.8963f, -418.6952f), new(401.7559f, 374.2101f), new(-166.19101f, 297.9358f),
-new(197.0719f, 293.9854f), new(-286.9409f, 239.844f), new(248.1925f, -152.8699f), new(300.6672f, -356.6831f), new(-350.9846f, 297.41562f),
-new(295.5703f, 316.0712f), new(369.137f, -415.64227f), new(415.0155f, -221.40869f), new(342.5864f, -228.8256f), new(196.7399f, -308.9013f),
-new(-274.0662f, 180.7047f), new(207.1971f, -231.44829f), new(-301.9497f, 178.2152f), new(418.8662f, -302.53348f), new(245.57199f, -213.5679f),
-new(-236.8051f, 377.5689f), new(179.09491f, -309.7554f), new(-426.4046f, 304.3548f), new(375.2853f, -165.3407f), new(327.7372f, -182.45401f),
-new(-298.8326f, 343.79428f), new(200.6593f, 232.3706f), new(237.2585f, 235.02719f), new(-193.455f, 360.9869f), new(248.6639f, 300.99652f),
-new(216.28929f, -349.8005f), new(366.61438f, -164.9253f), new(205.9964f, 279.83392f), new(353.7874f, -344.37302f), new(-285.2749f, 236.87f),
-new(283.8163f, -404.6182f), new(314.9108f, -371.1961f), new(310.31668f, 337.30518f), new(-302.2576f, 282.24072f), new(-409.0037f, 235.8812f),
-new(245.6261f, -180.7654f), new(365.1257f, -229.0258f), new(357.97427f, -172.736f), new(-279.5026f, 401.7071f), new(414.8509f, -231.02629f),
-new(203.52231f, 371.853f), new(363.0134f, -283.001f), new(-302.6625f, 369.2439f), new(-182.6616f, 252.5796f), new(-304.2545f, 370.9649f),
-new(246.59999f, -214.66391f), new(196.1686f, -222.083f), new(443.8534f, -368.4998f), new(321.3753f, 334.3307f), new(-352.65158f, 299.2156f),
-new(-351.1843f, 343.729f), new(234.5045f, -242.2182f), new(268.37543f, -343.6314f), new(227.84401f, -183.3125f), new(-338.2416f, 352.1503f),
-new(308.2966f, -294.21982f), new(-165.47119f, 325.1228f), new(-270.23352f, 423.0336f), new(379.52667f, -420.52002f), new(289.909f, 284.6358f),
-new(365.07712f, -296.4541f), new(424.2113f, -350.38287f), new(299.9332f, -230.9737f), new(219.8431f, 374.3908f), new(-175.426f, 364.7978f),
-new(261.3016f, 371.846f), new(366.0061f, -297.47012f), new(269.6144f, -344.9534f), new(-411.8502f, 356.633f), new(309.19308f, 260.562f),
-new(251.7649f, -282.60898f), new(-192.3058f, 317.9665f), new(262.389f, -353.7101f), new(387.0933f, -421.0432f), new(230.3224f, -410.51462f),
-new(310.4967f, -179.60649f), new(315.3048f, -366.9141f), new(-363.45782f, 241.3049f), new(-219.883f, 313.7292f), new(-366.2196f, 192.91531f),
-new(195.3616f, -221.217f), new(256.606f, -242.2182f), new(-269.5115f, 422.25558f), new(237.17589f, 317.8386f), new(-291.211f, 307.13843f),
-new(403.4914f, 286.2028f), new(376.6177f, 313.3555f), new(366.4544f, -162.8883f), new(366.8047f, -231.3108f), new(378.0673f, -166.42169f),
-new(332.2665f, -188.5294f), new(361.05f, 292.7919f), new(-394.7988f, 234.3001f), new(313.97958f, -300.4645f), new(342.07138f, -232.1816f),
-new(-288.56232f, 402.7147f), new(-417.66272f, 291.16602f), new(297.6976f, -290.1708f), new(334.0295f, -186.3844f), new(247.7455f, -152.3929f),
-new(-290.8676f, 199.8651f), new(-302.5155f, 368.2689f), new(422.2061f, -373.0983f), new(-184.4086f, 248.4266f), new(356.0824f, -347.835f),
-new(-398.95142f, 367.96f), new(230.5283f, -284.9145f), new(-231.4842f, 191.3868f), new(-412.12018f, 355.914f), new(298.96808f, -257.0262f),
-new(414.3249f, -231.9413f), new(305.0139f, 315.9504f), new(403.6351f, -278.91748f), new(-240.60019f, 354.06302f), new(178.4319f, -307.47638f),
-new(226.20401f, -181.5585f), new(353.3374f, -346.875f), new(308.3336f, -309.2348f), new(350.344f, 345.1653f), new(-339.12262f, 353.1013f),
-new(-291.1146f, 200.7771f), new(404.823f, -222.153f), new(249.951f, 255.7474f), new(198.7899f, -293.9643f), new(363.612f, 290.1169f),
-new(-372.773f, 201.22539f), new(-194.07701f, 309.8145f), new(230.0213f, -282.9875f), new(-221.5f, 316.6192f), new(291.3373f, -398.4199f),
-new(-188.522f, 379.3078f), new(303.5053f, -420.01788f), new(202.2033f, 312.9767f), new(348.5147f, 256.3219f), new(249.4249f, -297.238f),
-new(-421.9181f, 308.09378f), new(216.6843f, -349.0715f), new(303.7797f, 337.8202f), new(414.3789f, -230.5073f), new(223.8078f, 338.0764f),
-new(-288.0669f, 241.062f), new(-301.9492f, 169.3104f), new(-289.18378f, 422.5112f), new(-292.7644f, 236.94011f), new(-242.4392f, 357.2f),
-new(391.7845f, 362.3505f), new(-348.51758f, 293.01462f), new(318.9118f, -372.3581f), new(-248.8656f, 260.50812f), new(300.86108f, -254.21721f),
-new(402.7151f, -277.9065f), new(-363.24182f, 240.5849f), new(376.6873f, -163.9477f), new(-192.30501f, 307.9035f), new(-422.1001f, 307.6208f),
-new(443.2003f, -355.45898f), new(255.0645f, 356.4028f), new(370.491f, -417.12128f), new(297.0502f, -359.2501f), new(330.5202f, 285.9797f),
-new(422.4993f, -347.3219f), new(-248.6066f, 260.8291f), new(-366.35962f, 183.43631f), new(195.7382f, -239.7084f), new(-234.6823f, 296.75092f),
-new(-201.4317f, 263.9413f), new(179.63991f, -308.7704f), new(220.23149f, -163.0653f), new(315.7496f, -303.6415f), new(391.26468f, 308.4435f),
-new(281.4883f, -400.4282f), new(235.7115f, -243.5082f), new(-212.09781f, 415.2888f), new(198.8209f, -308.7153f), new(196.09819f, -239.0734f),
-new(223.2121f, 282.7685f), new(363.2558f, -332.3445f), new(402.1206f, 225.5562f), new(418.39423f, -302.01648f), new(414.4955f, -222.3177f),
-new(-352.4683f, 345.115f), new(219.5321f, 334.5681f), new(-350.8922f, 417.75458f), new(404.92603f, -220.72499f), new(186.57481f, -229.6812f),
-new(-374.331f, 202.8964f), new(235.0495f, -244.4242f), new(367.0744f, -163.5683f), new(231.0493f, -284.0845f), new(343.6259f, 321.2989f),
-new(-214.1708f, 418.99078f), new(253.8616f, -419.93683f), new(303.9772f, -229.6587f), new(378.18512f, -397.7936f), new(-227.3557f, 260.6363f),
-new(-222.593f, 317.79617f), new(259.358f, -354.9811f), new(366.3637f, -230.3818f), new(343.8234f, -230.1786f), new(-230.7657f, 322.8734f),
-new(-292.6994f, 250.25911f), new(215.79329f, -348.1175f), new(345.7027f, -280.5433f), new(296.6398f, -287.1932f), new(-373.8146f, 403.81552f),
-new(256.08112f, 282.5866f), new(-361.6188f, 238.02391f), new(268.98642f, -345.9304f), new(-298.96262f, 344.7743f), new(423.2601f, -370.1433f),
-new(243.4811f, -421.5159f), new(364.6188f, -330.86652f), new(-304.0336f, 285.4107f), new(-236.8653f, 300.6499f), new(311.0137f, -176.1135f),
-new(404.6365f, -241.0648f), new(334.7999f, 320.3849f), new(196.0433f, 365.956f), new(-202.31369f, 265.6243f), new(-391.1803f, 244.7623f),
-new(-301.5917f, 177.8292f), new(378.12152f, -339.0091f), new(-215.5708f, 420.4988f), new(-336.9356f, 349.8223f), new(364.71512f, -298.97812f),
-new(368.724f, -419.47427f), new(246.08499f, -215.4629f), new(-232.83621f, 193.70781f), new(244.3711f, -422.4659f), new(-233.47571f, 326.9404f),
-new(-408.4097f, 235.24419f), new(-232.35071f, 325.0264f), new(-166.1982f, 326.04382f), new(340.4943f, 270.8269f), new(418.4352f, -303.5275f),
-new(357.0173f, -173.69499f), new(-190.64f, 356.75992f), new(210.1382f, -350.8681f), new(364.071f, 266.25488f), new(312.2617f, -177.4775f),
-new(-302.491f, 311.45642f), new(-240.96109f, 383.80392f), new(317.8782f, -178.673f), new(-192.356f, 358.9229f), new(195.7719f, 292.9504f),
-new(-192.33801f, 306.52252f), new(269.8808f, 314.7059f), new(293.1316f, 339.5821f), new(-300.3045f, 365.0379f), new(-274.7392f, 181.6667f),
-new(330.7779f, 373.1893f), new(-390.7741f, 360.5672f), new(-343.93808f, 349.8214f), new(387.5423f, -417.2162f), new(-352.5416f, 304.9651f),
-new(-355.08908f, 347.3344f), new(-389.6191f, 359.3262f), new(301.0062f, -229.8867f), new(298.40982f, -290.3702f), new(-365.8661f, 418.73138f),
-new(316.7648f, -368.5081f), new(-350.9933f, 343.036f), new(-221.21489f, 208.84001f), new(-307.0736f, 283.37073f), new(-399.2204f, 367.237f),
-new(290.2794f, 232.1308f), new(245.2821f, -181.2224f), new(362.6455f, -355.15408f), new(340.2194f, -230.1156f), new(269.1257f, 227.2677f),
-new(-221.471f, 315.88718f), new(204.6813f, 236.0486f), new(357.3297f, -179.7159f), new(443.73837f, -366.6728f), new(-288.92688f, 240.511f),
-new(-296.6056f, 340.5683f), new(228.19049f, 227.97119f), new(-166.6582f, 326.90482f), new(391.3172f, 322.2852f), new(-422.4801f, 308.69778f),
-new(-391.3463f, 243.4013f), new(421.6243f, -349.8549f), new(-350.6886f, 296.3976f), new(-426.5856f, 303.8788f), new(302.1879f, 288.8617f),
-new(232.7881f, 231.404f), new(-228.58769f, 262.1563f), new(226.944f, -184.5865f), new(-236.8373f, 299.65192f), new(-364.69983f, 242.64691f),
-new(-286.80188f, 239.086f), new(-303.9266f, 284.6817f), new(224.0532f, 377.1997f), new(220.4765f, -162.7203f), new(305.0022f, 241.3848f),
-new(-301.55472f, 177.5932f), new(299.4822f, -228.2247f), new(-290.6924f, 242.5561f), new(-226.71269f, 252.6013f), new(250.69989f, 300.72052f),
-new(-395.4678f, 236.1741f), new(312.3916f, -302.6765f), new(-290.55463f, 356.9995f), new(247.9455f, -153.2079f), new(-292.7166f, 202.5071f),
-new(-288.86f, 297.8474f), new(-405.4781f, 347.6951f), new(314.0947f, -180.7665f), new(340.5058f, 329.5372f), new(-288.6043f, 403.3447f),
-new(-192.31999f, 359.7629f), new(-346.28882f, 254.3924f), new(-240.6682f, 355.293f), new(441.1493f, -359.719f), new(-357.3931f, 403.6414f),
-new(-269.48352f, 421.7346f), new(229.4314f, -409.5606f), new(405.398f, -221.24399f), new(195.2912f, -238.2084f), new(303.1011f, -258.2362f),
-new(-301.55118f, 168.69139f), new(-309.66098f, 306.03842f), new(414.54352f, -220.8907f), new(-373.7306f, 195.8423f), new(369.4215f, -357.28308f),
-new(-227.0902f, 360.4305f), new(-372.1756f, 401.5015f), new(-194.12361f, 265.8946f), new(249.6568f, -416.6276f), new(-408.5547f, 234.7462f),
-new(279.91132f, -398.7432f), new(259.6996f, 307.137f), new(-352.65158f, 306.1171f), new(-305.2336f, 286.70673f), new(299.0932f, -232.6747f),
-new(403.549f, 313.6695f), new(-225.3192f, 358.5245f), new(295.8276f, -311.1138f), new(421.9151f, -368.6683f), new(-232.3827f, 325.76343f),
-new(-274.15417f, 181.0347f), new(-239.2251f, 380.8439f), new(405.1675f, -240.1498f), new(254.2646f, -419.22083f), new(-412.68817f, 357.533f),
-new(375.7473f, -162.91869f), new(363.68982f, -329.8505f), new(-397.71442f, 365.74f), new(-418.2147f, 291.759f), new(-192.3548f, 316.5765f),
-new(-417.8357f, 290.699f), new(316.7898f, -369.9471f), new(380.23068f, -419.61902f), new(298.97632f, -420.5039f), new(-343.99408f, 364.1384f),
-new(241.0277f, 279.1199f), new(-352.72342f, 233.70709f), new(361.25702f, 354.35028f), new(345.6424f, -233.4376f), new(346.38593f, -296.51028f),
-new(353.7944f, -279.45102f), new(215.3802f, 371.2997f), new(206.2551f, -228.2063f), new(229.9184f, -411.2166f), new(298.7572f, -356.1011f),
-new(301.7941f, -250.7052f), new(-355.6571f, 409.9824f), new(-373.271f, 199.96039f), new(332.78152f, -185.0204f), new(299.9452f, -357.64612f),
-new(354.7164f, -345.39f), new(-348.5186f, 299.9171f), new(-353.3986f, 297.9636f), new(-247.5556f, 258.76712f), new(195.8056f, -222.754f),
-new(-288.84198f, 302.43143f), new(-238.0472f, 350.61002f), new(-349.64142f, 229.08609f), new(-348.51382f, 256.65738f), new(211.1362f, -337.35608f),
-new(251.5829f, -296.555f), new(241.8139f, -278.916f), new(377.7265f, -354.3191f), new(187.37181f, -230.5352f), new(357.33328f, -172.03299f),
-new(-166.65701f, 298.8298f), new(257.813f, -243.5082f), new(-406.31607f, 348.5951f), new(-289.9058f, 423.2892f), new(243.92609f, -423.1749f),
-new(-181.957f, 357.21878f), new(-184.27861f, 262.2236f), new(-405.74008f, 346.9721f), new(311.5159f, 289.8667f), new(-341.7021f, 357.66342f),
-new(380.4839f, 330.7512f), new(259.595f, -246.7162f), new(367.32498f, 241.6105f), new(-349.2692f, 416.0026f), new(-404.7633f, 297.77f),
-new(197.2214f, 251.4295f), new(200.90921f, -333.18307f), new(379.7067f, -419.04602f), new(-248.9066f, 261.18112f), new(-238.3393f, 302.2369f),
-new(255.55061f, 372.112f), new(312.7736f, -299.1495f), new(207.9701f, -230.04329f), new(295.6658f, -285.61322f), new(421.3353f, -346.0459f),
-new(287.8219f, 266.5569f), new(-249.8196f, 262.1651f), new(-338.11862f, 351.6703f), new(295.1718f, -289.4012f), new(257.145f, -244.4182f)
- ]},
- { 561, [
-new(-345.14362f, 366.3735f), new(369.8602f, -343.2119f), new(240.4568f, -193.012f), new(294.2139f, -412.0245f), new(234.2605f, -399.64648f),
-new(187.1271f, -299.0545f), new(-225.37401f, 249.28009f), new(319.49667f, -350.801f), new(-219.0539f, 205.6571f), new(380.2036f, -192.8831f),
-new(357.571f, -295.5889f), new(-282.8508f, 187.4292f), new(-368.8186f, 365.2259f), new(359.72522f, -342.7889f), new(-354.9482f, 245.8213f),
-new(-323.4245f, 415.49612f), new(300.2586f, -297.7271f), new(-182.95511f, 256.0929f), new(376.091f, -294.0819f), new(241.21889f, -340.8682f),
-new(325.888f, -180.5272f), new(204.62961f, -341.6487f), new(302.79968f, -353.47598f), new(368.926f, -297.4299f), new(190.02771f, -226.06929f),
-new(-287.5678f, 183.8492f), new(-373.7287f, 189.4269f), new(250.5583f, -233.4358f), new(250.8817f, -247.9567f), new(-243.2471f, 247.7088f),
-new(-343.9676f, 367.2775f), new(-242.0571f, 248.5938f), new(-376.13773f, 192.7599f), new(-361.876f, 416.74588f), new(419.81998f, -254.1602f),
-new(368.327f, -299.53592f), new(425.37f, -250.2632f), new(249.6857f, -248.7957f), new(251.46289f, -334.00018f), new(-242.7994f, 264.94f),
-new(302.6606f, -239.7914f), new(304.98868f, -364.47998f), new(-368.354f, 300.04422f), new(-320.01147f, 414.9421f), new(-234.4074f, 371.64822f),
-new(319.94598f, -184.7012f), new(-230.4529f, 204.7491f), new(-231.6734f, 365.8082f), new(250.6297f, -250.47769f), new(-416.3314f, 301.422f),
-new(425.4118f, -357.07172f), new(303.1366f, -295.3951f), new(436.8196f, -317.71613f), new(320.086f, -184.9752f), new(264.34988f, -337.4562f),
-new(315.9227f, -349.682f), new(185.0231f, -300.8385f), new(-223.8019f, 202.0871f), new(357.6072f, -253.7268f), new(292.0089f, -413.86353f),
-new(232.9511f, -233.4357f), new(298.6246f, -242.7704f), new(-230.7834f, 369.9222f), new(-407.38168f, 358.0495f), new(363.5102f, -344.59692f),
-new(-326.66647f, 417.6111f), new(-218.0725f, 429.4145f), new(310.99667f, -349.189f), new(416.19098f, -257.9682f), new(-302.4967f, 303.7877f),
-new(-241.6084f, 265.823f), new(-186.0719f, 366.7348f), new(373.2152f, -341.69193f), new(-287.6118f, 183.97119f), new(-401.05792f, 244.7959f),
-new(247.1708f, -183.25299f), new(-300.2269f, 245.5101f), new(241.3358f, -187.345f), new(184.32771f, -230.0683f), new(367.4802f, -246.0938f),
-new(184.60771f, -230.3653f), new(369.6746f, -192.44211f), new(-235.4747f, 309.0038f), new(-355.5692f, 248.6073f), new(-402.1249f, 247.8809f),
-new(-295.4659f, 248.9671f), new(-373.52402f, 416.5679f), new(394.8365f, -398.18622f), new(-289.7979f, 355.9738f), new(241.4779f, -288.5978f),
-new(-225.6291f, 265.2122f), new(-222.8165f, 425.9015f), new(250.2517f, -248.3687f), new(293.4276f, -300.99512f), new(-366.891f, 414.01288f),
-new(299.9636f, -240.1644f), new(237.7469f, -288.26382f), new(235.8031f, -233.2037f), new(-398.8229f, 242.9479f), new(367.5602f, -345.6629f),
-new(-294.2448f, 186.52719f), new(-230.8197f, 319.3988f), new(-178.2069f, 373.0948f), new(285.3839f, -411.43552f), new(246.14291f, -284.83582f),
-new(201.9576f, -343.23972f), new(-363.049f, 303.45923f), new(-304.5147f, 304.0867f), new(428.0928f, -353.97772f), new(-229.6434f, 375.0932f),
-new(-235.57071f, 315.8998f), new(-302.09293f, 367.3208f), new(-356.13422f, 243.6663f), new(-296.9949f, 243.1881f), new(432.00662f, -308.3251f),
-new(-367.77002f, 304.97122f), new(241.01149f, -402.4675f), new(-291.1759f, 365.7038f), new(-306.85992f, 248.0651f), new(-363.462f, 349.47308f),
-new(-375.51572f, 189.9739f), new(-300.17792f, 245.3721f), new(199.8456f, -345.0047f), new(292.0606f, -239.3694f), new(249.9223f, -233.8338f),
-new(383.4636f, -191.32011f), new(243.4259f, -286.33582f), new(240.88649f, -402.07748f), new(-406.8377f, 363.0045f), new(306.4546f, -293.38312f),
-new(296.7939f, -410.5085f), new(-244.4574f, 265.59702f), new(289.69992f, -418.4345f), new(-302.5519f, 367.1608f), new(365.876f, -300.0129f),
-new(322.335f, -182.0812f), new(-242.2187f, 318.4898f), new(-182.971f, 314.4598f), new(431.6768f, -352.1647f), new(-365.361f, 301.6372f),
-new(377.8326f, -195.74211f), new(-178.207f, 317.9058f), new(189.8081f, -297.4825f), new(235.1691f, -233.6067f), new(234.6071f, -234.04271f),
-new(389.0785f, -402.23022f), new(256.7929f, -334.0462f), new(318.41f, -182.2482f), new(425.2468f, -356.6767f), new(-353.5882f, 242.0203f),
-new(-182.97789f, 369.6318f), new(-178.2071f, 259.5989f), new(-179.21211f, 254.58191f), new(-175.9931f, 254.2139f), new(-369.4076f, 364.7689f),
-new(-376.70673f, 187.8069f), new(-404.42868f, 359.67148f), new(-297.2669f, 245.7991f), new(422.202f, -251.7012f), new(-419.2884f, 299.788f),
-new(-302.47592f, 347.9708f), new(-300.2629f, 368.2498f), new(242.9345f, -400.18448f), new(-302.0927f, 303.9357f), new(-226.8211f, 264.3312f),
-new(416.33978f, -353.4137f), new(429.3966f, -310.8351f), new(242.79791f, -287.5228f), new(371.411f, -296.0549f), new(-399.69592f, 244.8249f),
-new(-401.4869f, 245.3739f), new(321.05768f, -351.129f), new(-187.344f, 313.0648f), new(421.1866f, -307.82712f), new(300.4006f, -298.31412f),
-new(-241.0424f, 374.1842f), new(262.0289f, -336.5032f), new(-226.563f, 248.3931f), new(306.1886f, -238.22139f), new(-216.8235f, 420.8845f),
-new(364.39322f, -246.1398f), new(241.1315f, -401.8035f), new(245.6705f, -398.7205f), new(372.0042f, -247.3968f), new(-189.60611f, 258.6899f),
-new(-229.4715f, 428.5055f), new(193.2196f, -342.5737f), new(-340.33572f, 352.1459f), new(-418.1184f, 301.97f), new(265.99988f, -341.8292f),
-new(183.2111f, -298.07852f), new(199.9676f, -345.3797f), new(366.4782f, -346.0869f), new(232.19539f, -248.254f), new(-311.27692f, 363.2068f),
-new(-291.1757f, 302.3187f), new(300.4016f, -242.66339f), new(-309.9737f, 296.06668f), new(178.3981f, -298.4075f), new(241.3589f, -288.1928f),
-new(-298.1299f, 240.5271f), new(-340.9407f, 351.51892f), new(234.5344f, -248.682f), new(311.714f, -181.6792f), new(199.3476f, -342.2757f),
-new(434.49078f, -360.89072f), new(-175.9931f, 254.2139f), new(186.77971f, -227.8353f), new(249.3623f, -234.27481f), new(391.4335f, -399.75623f),
-new(233.8514f, -248.86101f), new(233.2548f, -184.384f), new(412.12997f, -251.3412f), new(247.89531f, -233.5328f), new(356.9722f, -250.6608f),
-new(381.1005f, -399.30322f), new(-315.27048f, 418.52112f), new(244.0348f, -185.125f), new(-370.24258f, 365.1139f), new(-305.3239f, 245.7121f),
-new(-364.29898f, 349.8151f), new(-362.875f, 349.9271f), new(-406.2157f, 360.21948f), new(176.43471f, -227.1723f), new(367.68622f, -345.9429f),
-new(-353.1612f, 245.27429f), new(429.5466f, -311.19012f), new(-346.8156f, 367.0525f), new(-366.844f, 413.8829f), new(377.68262f, -195.3771f),
-new(234.73291f, -285.7618f), new(300.2656f, -242.3814f), new(-363.113f, 410.9469f), new(-311.2777f, 299.8217f), new(-365.849f, 298.41522f),
-new(419.968f, -254.5462f), new(-290.9497f, 297.0767f), new(-228.4781f, 264.9862f), new(303.4087f, -356.79898f), new(234.3374f, -248.529f),
-new(204.62961f, -341.6487f), new(-290.92392f, 360.4658f), new(249.0557f, -248.9857f), new(291.6786f, -294.5831f), new(435.3226f, -306.67712f),
-new(-340.9887f, 350.73892f), new(-320.0315f, 415.07312f), new(-226.2179f, 202.1041f), new(-220.0269f, 201.0671f), new(373.8622f, -248.4288f),
-new(-234.3984f, 371.60123f), new(-189.606f, 316.9968f), new(-345.1576f, 366.4135f), new(-400.64792f, 244.69191f), new(370.9562f, -263.3458f),
-new(-226.565f, 248.4191f), new(-231.8467f, 314.3398f), new(-362.2352f, 245.8083f), new(386.22852f, -400.18723f), new(368.512f, -299.9819f),
-new(-289.8237f, 292.4617f), new(-283.6628f, 182.46019f), new(-367.148f, 302.1852f), new(-404.8117f, 356.4575f), new(244.8009f, -287.90482f),
-new(-310.02292f, 359.4578f), new(379.1066f, -204.0361f), new(-223.81789f, 202.2001f), new(-418.74042f, 304.756f), new(-189.6059f, 372.1858f),
-new(-226.1519f, 203.7191f)
+ new(-209.5408f, 300.7376f), new(459.7082f, -287.1741f), new(146.1152f, -306.3754f), new(295.5109f, -125.3631f), new(207.4516f, -298.8241f),
+ new(-208.5834f, 144.7789f), new(-448.9249f, 297.38922f), new(459.9192f, -296.2731f), new(-135.2204f, 226.2763f), new(147.5462f, -301.4754f),
+ new(-373.51288f, 295.69107f), new(223.327f, -390.1101f), new(309.9451f, -299.2963f), new(-461.01382f, 388.7028f), new(-301.5024f, 231.6268f),
+ new(217.89081f, -450.6792f), new(-224.5553f, 303.5852f), new(-149.10431f, 222.4629f), new(-212.7548f, 219.28581f), new(-221.9836f, 385.4152f),
+ new(138.76181f, -391.39352f), new(-211.6414f, 138.3729f), new(378.6398f, -313.6541f), new(227.9525f, -216.9613f), new(153.9884f, -217.7742f),
+ new(308.8662f, -462.0707f), new(-376.3508f, 293.9203f), new(-461.7301f, 209.8342f), new(144.3076f, -212.6924f), new(-374.11362f, 220.19809f),
+ new(-465.27182f, 390.74777f), new(294.7666f, -378.3751f), new(-229.1453f, 298.3862f), new(307.6351f, -300.05328f), new(-297.3921f, 393.8814f),
+ new(-146.1916f, 381.8371f), new(301.6972f, -459.4657f), new(148.64171f, -379.8848f), new(-307.9154f, 300.8725f), new(220.1358f, -151.0777f),
+ new(-294.371f, 216.8387f), new(385.0034f, -222.4152f), new(146.9137f, -384.1588f), new(455.94922f, -370.4044f), new(-296.822f, 394.1672f),
+ new(373.192f, -224.6374f), new(-297.0803f, 377.5535f), new(137.1143f, -211.5405f), new(216.97769f, -149.70439f), new(379.83838f, -225.7832f),
+ new(138.2379f, -227.9014f), new(-388.64862f, 143.084f), new(145.34561f, -209.2984f), new(-132.03711f, 294.97638f), new(-373.01318f, 378.9418f),
+ new(448.72058f, -380.6774f), new(-457.0926f, 375.0116f), new(311.8862f, -213.1083f), new(-307.7444f, 382.5937f), new(-301.6461f, 210.0846f),
+ new(227.99089f, -142.9475f), new(140.5885f, -301.56277f), new(379.439f, -380.6071f), new(382.54178f, -447.20212f), new(301.6579f, -211.5275f),
+ new(209.002f, -374.6745f), new(448.3996f, -375.3884f), new(-140.49141f, 211.6205f), new(-305.5681f, 470.7387f), new(-296.0136f, 141.7218f),
+ new(-461.9856f, 380.3426f), new(-209.4599f, 376.1399f), new(-309.2474f, 381.63568f), new(447.4415f, -298.2459f), new(-387.7326f, 296.1518f),
+ new(-213.64081f, 221.2028f), new(300.5948f, -312.6571f), new(-384.0005f, 206.4029f), new(210.0666f, -297.28412f), new(-298.29977f, 292.5619f),
+ new(395.87958f, -297.7745f), new(304.40488f, -131.0891f), new(295.7796f, -471.8875f), new(-456.74078f, 387.9356f), new(376.9625f, -214.4007f),
+ new(314.1636f, -135.67491f), new(-139.978f, 386.57498f), new(-135.04399f, 392.29797f), new(379.4582f, -444.4225f), new(299.52292f, -230.953f),
+ new(288.8017f, -456.8876f), new(379.21753f, -387.888f), new(-449.19897f, 386.1112f), new(-301.45178f, 292.5859f), new(-310.93903f, 142.30519f),
+ new(203.659f, -376.9035f), new(-380.03088f, 369.27377f), new(-132.77411f, 297.8054f), new(217.7437f, -306.6591f), new(299.5808f, -308.2671f),
+ new(-379.2868f, 297.1163f), new(137.5392f, -300.3047f), new(-299.0951f, 212.4056f), new(368.6453f, -302.59583f), new(-138.5641f, 293.2824f),
+ new(-288.0999f, 300.1193f), new(-143.3351f, 300.9424f), new(294.3142f, -143.5172f), new(-220.8061f, 214.5215f), new(-382.77762f, 235.6575f),
+ new(384.00018f, -447.3215f), new(297.0188f, -462.4608f), new(390.9886f, -375.6146f), new(464.43338f, -207.7126f), new(299.9096f, -373.4251f),
+ new(-309.53952f, 221.9094f), new(392.4122f, -222.9025f), new(232.31659f, -295.86688f), new(-446.76602f, 224.967f), new(140.4508f, -385.50952f),
+ new(285.7697f, -455.8066f), new(-228.52429f, 309.9382f), new(-383.4654f, 474.26572f), new(135.4785f, -306.3598f), new(127.7918f, -382.7208f),
+ new(452.50122f, -371.9804f), new(-370.36288f, 305.5211f), new(206.176f, -378.4495f), new(-303.0215f, 224.45439f), new(-301.1273f, 376.61948f),
+ new(138.8842f, -286.7087f), new(-459.5032f, 213.0014f), new(-147.75241f, 301.2671f), new(216.411f, -462.608f), new(-367.00412f, 462.4159f),
+ new(-379.54147f, 209.8789f), new(-139.1954f, 232.6593f), new(-382.9669f, 372.4708f), new(306.3132f, -206.9633f), new(136.9605f, -302.33478f),
+ new(388.17877f, -455.9621f), new(297.5116f, -471.31052f), new(-210.43181f, 221.9608f), new(299.6752f, -141.0582f), new(450.2975f, -297.1529f),
+ new(-218.7193f, 459.0226f), new(301.81018f, -217.1663f), new(295.9386f, -367.0651f), new(-394.3749f, 217.36389f), new(229.4775f, -463.20978f),
+ new(-288.4569f, 300.4813f), new(295.4564f, -302.97418f), new(301.8162f, -384.7812f), new(-223.8064f, 228.8101f), new(380.91898f, -296.02362f),
+ new(-383.7986f, 150.5211f), new(-456.40143f, 296.233f), new(-389.9589f, 220.8399f), new(-444.79498f, 381.3132f), new(-224.12419f, 285.1774f),
+ new(295.5436f, -468.6665f), new(392.4342f, -220.0695f), new(-147.6828f, 230.977f), new(-385.9006f, 148.4571f), new(228.47789f, -139.6545f),
+ new(-381.6498f, 289.7463f), new(-212.79181f, 301.4606f), new(206.012f, -376.42752f), new(228.9766f, -297.2619f), new(-387.5426f, 130.4f),
+ new(-372.5246f, 221.70909f), new(463.7799f, -390.1506f), new(307.8688f, -377.8807f), new(-306.19052f, 221.5544f), new(231.92189f, -138.0465f),
+ new(223.1958f, -149.6407f), new(-387.77982f, 381.2557f), new(-384.3916f, 302.14392f), new(468.8262f, -220.8339f), new(-141.0216f, 385.1831f),
+ new(-469.8f, 307.4279f), new(222.1097f, -296.0961f), new(457.8136f, -387.3136f), new(-369.2996f, 221.98909f), new(-140.6318f, 366.7185f),
+ new(308.20798f, -142.4166f), new(218.5891f, -226.901f), new(292.1174f, -301.3872f), new(-206.92781f, 303.7466f), new(-305.39142f, 303.4985f),
+ new(299.47458f, -286.80002f), new(-458.8262f, 215.4924f), new(216.0163f, -370.7071f), new(-145.2818f, 231.578f), new(310.3316f, -137.4189f),
+ new(392.18658f, -300.1625f), new(208.3302f, -222.87259f), new(296.4422f, -386.9412f), new(-138.7941f, 390.8923f), new(-223.3386f, 222.3118f),
+ new(370.85168f, -459.77402f), new(-294.63962f, 139.5428f), new(379.90738f, -230.6872f), new(-385.3299f, 365.0988f), new(-134.0231f, 383.2293f),
+ new(-215.3428f, 298.9236f), new(220.2653f, -207.4056f), new(-378.1628f, 292.2953f), new(370.02f, -220.9104f), new(-220.9844f, 309.59882f),
+ new(-140.69281f, 369.8445f), new(-210.3279f, 374.3489f), new(387.5638f, -134.93509f), new(214.20479f, -137.4585f), new(-224.96921f, 145.9129f),
+ new(291.32138f, -216.6705f), new(-372.0452f, 141.9706f), new(462.7374f, -210.6116f), new(-388.0476f, 306.77478f), new(-370.93613f, 458.93988f),
+ new(-382.4523f, 463.313f), new(211.15979f, -138.9595f), new(216.52669f, -129.9964f), new(295.2062f, -383.0142f), new(381.16818f, -448.5455f),
+ new(-307.0325f, 223.5034f), new(-146.0923f, 226.4919f), new(-210.1366f, 458.1442f), new(285.295f, -380.0697f), new(463.2549f, -367.3826f),
+ new(225.9068f, -447.3322f), new(148.5924f, -224.0002f), new(-137.4739f, 309.6326f), new(-301.9891f, 464.9877f), new(-289.1657f, 463.31992f),
+ new(463.12592f, -299.5258f), new(-445.38602f, 220.118f), new(313.0081f, -297.88828f), new(220.91809f, -226.243f), new(133.5218f, -377.43082f),
+ new(304.4158f, -379.43073f), new(-298.41278f, 291.9219f), new(-295.4567f, 307.467f), new(-381.9885f, 212.5469f), new(-299.1988f, 294.0279f),
+ new(-218.6416f, 385.1192f), new(-455.7591f, 313.39038f), new(-381.5526f, 230.7105f), new(-223.0872f, 450.4788f), new(-378.9024f, 476.04672f),
+ new(454.1565f, -295.5369f), new(134.46739f, -292.00302f), new(223.568f, -304.78482f), new(221.4651f, -228.74901f), new(301.116f, -149.38959f),
+ new(-225.84259f, 220.71779f), new(374.1633f, -376.35397f), new(151.5762f, -300.6114f), new(-217.11871f, 142.7703f), new(-210.5649f, 384.9789f),
+ new(220.146f, -460.402f), new(-306.0776f, 457.7127f), new(220.0838f, -154.3307f), new(-218.0434f, 370.3288f), new(306.1402f, -215.7353f),
+ new(-291.9327f, 460.3409f), new(-147.3006f, 377.77908f), new(-215.6448f, 219.92781f), new(452.4354f, -229.411f), new(-300.32953f, 156.1024f),
+ new(-392.4059f, 223.5079f), new(459.76862f, -392.0256f), new(-390.651f, 462.694f), new(-299.81772f, 296.902f), new(211.9312f, -219.4076f),
+ new(220.38431f, -377.7031f), new(377.9855f, -152.38449f), new(302.591f, -133.3526f), new(291.1047f, -455.8626f), new(-218.7734f, 371.9068f),
+ new(-136.8874f, 216.5425f), new(220.33899f, -391.8721f), new(292.27438f, -295.5292f), new(140.33931f, -376.2945f), new(472.52118f, -218.4579f),
+ new(-459.8462f, 228.1944f), new(384.6495f, -374.677f), new(296.29062f, -382.2331f), new(-381.7084f, 475.3727f), new(-457.3061f, 311.8444f),
+ new(-222.40419f, 288.6174f), new(-295.5868f, 294.8739f), new(-220.0992f, 291.2944f), new(-133.8029f, 312.1226f), new(149.7776f, -206.43239f),
+ new(133.1924f, -295.81802f), new(452.5672f, -366.72638f), new(-443.828f, 221.761f), new(-207.7819f, 380.5109f), new(228.99449f, -462.6178f),
+ new(-378.2259f, 387.1326f), new(221.267f, -393.44012f), new(449.9032f, -372.8394f), new(-136.6289f, 307.07858f), new(377.59653f, -382.321f),
+ new(301.8218f, -380.30872f), new(-369.1442f, 144.81259f), new(224.00009f, -224.741f), new(217.3387f, -288.4331f), new(-379.8406f, 232.4565f),
+ new(-292.7767f, 462.47192f), new(-215.8276f, 388.4692f), new(382.9808f, -303.0841f), new(-221.4769f, 151.05269f), new(462.0912f, -290.9881f),
+ new(-311.70502f, 144.0952f), new(-228.00621f, 142.5569f), new(143.6492f, -294.3407f), new(-447.41098f, 378.7582f), new(390.3473f, -463.2913f),
+ new(-219.8426f, 387.5382f), new(-380.7543f, 445.485f), new(-458.6961f, 316.59338f), new(-216.1654f, 372.5218f), new(-384.6726f, 136.696f),
+ new(463.0689f, -291.67178f), new(305.0322f, -463.8117f), new(375.06567f, -457.84702f), new(217.69199f, -464.51498f), new(305.3569f, -217.4105f),
+ new(391.3826f, -302.9625f), new(-142.9281f, 282.71942f), new(-291.20602f, 223.1797f), new(-227.6514f, 379.6637f), new(-137.19409f, 375.7403f),
+ new(287.29437f, -218.7995f), new(395.3862f, -218.14551f), new(224.00049f, -215.7743f), new(219.5733f, -206.2036f), new(215.7197f, -145.01439f),
+ new(-459.9118f, 380.4466f), new(292.66937f, -216.6405f), new(-296.1729f, 451.3348f), new(-461.4884f, 283.90698f), new(299.1909f, -133.3911f),
+ new(230.8689f, -378.43408f), new(296.4376f, -294.993f), new(373.24298f, -220.7534f), new(-212.56041f, 151.1689f), new(217.984f, -392.34113f),
+ new(-380.1699f, 395.24158f), new(-297.8934f, 232.4888f), new(-375.66568f, 128.088f), new(311.8751f, -295.40628f), new(-307.1324f, 381.1627f),
+ new(381.7345f, -209.9327f), new(-384.1718f, 382.12073f), new(-306.572f, 137.325f), new(209.1512f, -214.9556f), new(-371.8171f, 461.27588f),
+ new(-300.60107f, 393.1234f), new(-228.4404f, 381.3707f), new(-300.63638f, 229.9288f), new(-302.30408f, 211.6456f), new(-220.95439f, 228.1431f),
+ new(212.39601f, -453.81668f), new(-219.2344f, 310.72083f), new(378.69452f, -365.145f), new(378.2158f, -295.4491f), new(216.4033f, -387.39212f),
+ new(214.7363f, -383.3591f), new(-285.59192f, 302.7513f), new(-142.9794f, 304.50308f), new(-230.19339f, 380.2547f), new(226.90149f, -215.2483f),
+ new(305.2748f, -378.0257f), new(-308.10062f, 455.3507f), new(-299.0907f, 299.786f), new(-220.4532f, 453.8078f), new(-218.5934f, 230.8431f),
+ new(368.6013f, -299.44382f), new(-368.7659f, 298.9821f), new(285.103f, -382.81772f), new(-305.3374f, 383.16068f), new(-228.8021f, 465.8927f),
+ new(-375.6606f, 214.7051f), new(-387.3168f, 379.5227f), new(376.5918f, -308.9321f), new(-451.2599f, 305.3512f), new(451.7135f, -220.82939f),
+ new(149.55641f, -220.6412f), new(-305.944f, 135.77701f), new(211.6888f, -141.4865f), new(452.1666f, -379.0984f), new(-216.42441f, 311.37582f),
+ new(-300.2287f, 315.134f), new(451.9735f, -217.8254f), new(-137.6164f, 220.0323f), new(-366.4479f, 301.2551f), new(131.68831f, -217.7925f),
+ new(-380.97647f, 208.4069f), new(218.90471f, -303.5941f), new(-377.0907f, 126.604f), new(384.86697f, -385.1911f), new(227.09799f, -302.8008f),
+ new(-223.2932f, 290.53238f), new(384.6276f, -370.17358f), new(296.92892f, -231.83101f), new(-387.7146f, 154.7931f), new(-462.0013f, 237.1211f),
+ new(295.9474f, -299.6362f), new(231.0846f, -297.9669f), new(-222.2939f, 152.9607f), new(296.3699f, -227.024f), new(452.1215f, -290.78088f),
+ new(-380.70688f, 369.87277f), new(-308.8856f, 457.0507f), new(138.57231f, -362.4155f), new(-146.68141f, 297.9091f), new(208.022f, -446.7927f),
+ new(-376.8853f, 454.372f), new(224.063f, -307.2128f), new(-446.3639f, 300.01022f), new(-225.6324f, 382.0327f), new(383.1358f, -137.81909f),
+ new(286.256f, -382.4357f), new(469.2149f, -376.9376f), new(-218.2644f, 309.03882f), new(-141.4701f, 285.8724f), new(370.9787f, -453.341f),
+ new(-461.9684f, 305.175f), new(378.1595f, -204.2077f), new(304.4986f, -291.746f), new(-224.0002f, 452.8728f), new(299.9026f, -293.85202f),
+ new(462.8336f, -390.6266f), new(-452.74298f, 375.05222f), new(466.9532f, -224.07489f), new(-228.17729f, 294.77823f), new(-222.2356f, 219.92479f),
+ new(386.0116f, -377.9026f), new(450.7703f, -301.0444f), new(458.8244f, -223.563f), new(309.0601f, -294.55328f), new(-295.185f, 229.5777f),
+ new(145.2868f, -384.4725f), new(-470.73102f, 310.5929f), new(385.89362f, -139.2932f), new(-376.8986f, 228.73509f), new(302.1462f, -464.7737f),
+ new(390.3146f, -136.3722f), new(-296.48297f, 378.9822f), new(137.6924f, -291.31403f), new(371.9213f, -297.2778f), new(375.66867f, -140.7041f),
+ new(-463.6881f, 211.9702f), new(-150.0903f, 225.5219f), new(-221.80339f, 230.0881f), new(-310.6054f, 301.4645f), new(-218.02211f, 210.0525f),
+ new(-308.696f, 144.80319f), new(304.6706f, -290.06403f), new(-220.8183f, 476.6286f), new(381.8956f, -142.3562f), new(-299.70108f, 391.2124f),
+ new(-387.1496f, 297.95578f), new(-462.7381f, 208.7912f), new(-137.3728f, 372.01053f), new(-378.1127f, 130.757f), new(455.5583f, -304.3584f),
+ new(-298.6369f, 448.6948f), new(-375.6052f, 372.63882f), new(385.6463f, -465.1843f), new(293.5592f, -135.1472f), new(370.9007f, -133.06311f),
+ new(-383.43262f, 302.3728f), new(-304.7681f, 459.2177f), new(385.895f, -289.2416f), new(-375.2769f, 389.9126f), new(286.7974f, -214.5255f),
+ new(-367.89288f, 299.67908f), new(383.6385f, -147.0905f), new(-288.80292f, 301.9993f), new(230.4486f, -296.9689f), new(-461.0443f, 233.9381f),
+ new(-387.444f, 463.465f), new(381.465f, -292.11862f), new(298.7008f, -445.4668f), new(-379.0606f, 305.8149f), new(454.0594f, -215.92801f),
+ new(-207.9756f, 460.8562f), new(-292.847f, 387.7852f), new(298.7482f, -386.1652f), new(-472.307f, 305.6779f), new(-219.08391f, 153.71669f),
+ new(-460.0126f, 372.18958f), new(455.2955f, -215.6644f), new(377.951f, -292.29962f), new(467.7594f, -205.57361f), new(302.97592f, -229.403f),
+ new(-308.60242f, 302.7465f), new(300.1748f, -294.4411f), new(370.38232f, -372.951f), new(-381.8559f, 367.64978f), new(454.4834f, -234.133f),
+ new(291.10962f, -379.6511f), new(-221.8697f, 137.4343f), new(221.4248f, -449.9772f), new(-461.44882f, 383.79578f), new(304.6568f, -455.0058f),
+ new(-141.6894f, 215.3425f), new(462.60593f, -384.7916f), new(387.66528f, -464.5153f), new(-292.3116f, 142.5388f), new(-381.3014f, 474.0177f),
+ new(-228.98221f, 144.9709f), new(289.2304f, -302.3412f), new(-376.9892f, 385.3268f), new(-147.02481f, 229.09601f), new(-460.39243f, 287.318f),
+ new(370.60068f, -147.02211f), new(135.9239f, -234.1174f), new(-290.8059f, 300.71732f), new(-460.0433f, 234.98509f), new(-376.44058f, 308.4009f),
+ new(142.94531f, -369.4355f), new(-392.659f, 461.429f), new(-138.79199f, 389.68198f), new(234.2309f, -376.4531f), new(304.9428f, -302.0871f),
+ new(-215.2523f, 467.69162f), new(-303.363f, 138.086f), new(221.68669f, -138.25539f), new(-461.51178f, 395.5986f), new(209.39601f, -460.7067f),
+ new(129.4768f, -378.29282f), new(141.8316f, -209.4874f), new(385.9823f, -460.3743f), new(-219.3266f, 223.25879f), new(381.04977f, -462.9211f),
+ new(-296.3565f, 149.7344f), new(-219.7751f, 205.71251f), new(289.60037f, -218.01851f), new(375.7364f, -225.9812f), new(-211.18759f, 460.1112f),
+ new(223.0608f, -452.35922f), new(-390.199f, 461.15598f), new(297.6879f, -205.1695f), new(-468.773f, 308.4579f), new(-295.189f, 381.5602f),
+ new(383.0198f, -141.9251f), new(-225.3122f, 289.26138f), new(-230.6801f, 462.9987f), new(-210.5388f, 302.8946f), new(380.655f, -387.1271f),
+ new(-303.59628f, 375.01147f), new(-380.84558f, 313.2019f), new(-299.3829f, 450.5818f), new(-300.0543f, 374.2285f), new(379.9425f, -149.4625f),
+ new(296.6459f, -216.6045f), new(288f, -381.73572f), new(-151.5854f, 301.2121f), new(208.18561f, -300.1871f), new(132.68231f, -214.40651f),
+ new(-142.327f, 389.498f), new(468.2369f, -297.1128f), new(-220.4004f, 370.87082f), new(230.4625f, -461.5358f), new(371.1003f, -377.761f),
+ new(299.8116f, -470.2655f), new(-391.38892f, 219.3659f), new(301.28778f, -375.47372f), new(-231.6051f, 465.20068f), new(-455.8692f, 221.8054f),
+ new(231.8209f, -380.1371f), new(221.8143f, -204.8826f), new(152.6737f, -379.0308f), new(459.1442f, -294.0091f), new(-128.7351f, 300.54037f),
+ new(-300.6065f, 144.4734f), new(308.7076f, -131.41391f), new(377.301f, -218.1084f), new(298.0389f, -220.3355f), new(230.26349f, -213.2653f),
+ new(452.49332f, -305.7564f), new(-374.5282f, 150.6856f), new(390.0902f, -220.1835f)
]},
};
}
diff --git a/BossMod/Modules/Global/DeepDungeon/Walls.json b/BossMod/Modules/Global/DeepDungeon/Walls.json
deleted file mode 100644
index 9d2b81271b..0000000000
--- a/BossMod/Modules/Global/DeepDungeon/Walls.json
+++ /dev/null
@@ -1 +0,0 @@
-{"1.1":{"DungeonId":1,"Floorset":0,"RoomsA":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-375.8824,"Z":184.9715},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-288.434,"Z":180.2622},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-222.976,"Z":195.8077},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-401.8241,"Z":241.3869},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-355.0005,"Z":241.1624},"Depth":0.25},"North":{"Position":{"X":-356.53876,"Z":226.13847},"Depth":0.3858328},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":-372.8506,"Z":245.54715},"Depth":0.3858328},"East":{"Position":{"X":-337.13577,"Z":242.4569},"Depth":0.3858328}},{"Center":{"Position":{"X":-300.0496,"Z":242.1748},"Depth":0.25},"North":{"Position":{"X":-301.53903,"Z":226.13828},"Depth":0.3858328},"South":{"Position":{"X":-298.44888,"Z":261.85312},"Depth":0.3858328},"West":{"Position":{"X":-317.85098,"Z":245.54695},"Depth":0.3858328},"East":{"Position":{"X":-282.13617,"Z":242.45679},"Depth":0.3858328}},{"Center":{"Position":{"X":-234.7516,"Z":239.0849},"Depth":0.25},"North":{"Position":{"X":-236.53926,"Z":238.13808},"Depth":0.3858328},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":-252.85179,"Z":257.54675},"Depth":0.3858328},"East":{"Position":{"X":-217.13625,"Z":254.45659},"Depth":0.3858328}},{"Center":{"Position":{"X":-181.684,"Z":253.6359},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-419.2709,"Z":297.2304},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-367.1707,"Z":297.5115},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":-384.85016,"Z":301.54504},"Depth":0.3858328},"East":{"Position":{"X":-349.13535,"Z":298.4549},"Depth":0.3858328}},{"Center":{"Position":{"X":-299.7132,"Z":308.2558},"Depth":0.25},"North":{"Position":{"X":-301.53876,"Z":278.1331},"Depth":0.3858328},"South":{"Position":{"X":-298.44522,"Z":321.84763},"Depth":0.3858328},"West":{"Position":{"X":-317.85068,"Z":301.54144},"Depth":0.3858328},"East":{"Position":{"X":-282.13577,"Z":300.4513},"Depth":0.3858328}},{"Center":{"Position":{"X":-235.3281,"Z":312.0525},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":-252.8532,"Z":315.54443},"Depth":0.3858328},"East":{"Position":{"X":-217.13835,"Z":312.45428},"Depth":0.3858328}},{"Center":{"Position":{"X":-182.6375,"Z":311.8546},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-406.3417,"Z":354.5897},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-354.9269,"Z":341.2996},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":-353.4456,"Z":375.85043},"Depth":0.3858328},"West":{"Position":{"X":-372.84778,"Z":359.54425},"Depth":0.3858328},"East":{"Position":{"X":-337.13354,"Z":356.45438},"Depth":0.3858328}},{"Center":{"Position":{"X":-299.7132,"Z":343.1996},"Depth":0.25},"North":{"Position":{"X":-301.53604,"Z":340.13577},"Depth":0.3858328},"South":{"Position":{"X":-298.44592,"Z":375.85062},"Depth":0.3858328},"West":{"Position":{"X":-317.84857,"Z":359.54465},"Depth":0.3858328},"East":{"Position":{"X":-282.13385,"Z":356.4545},"Depth":0.3858328}},{"Center":{"Position":{"X":-234.4194,"Z":366.988},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":-233.44943,"Z":387.85004},"Depth":0.3858328},"West":{"Position":{"X":-252.85168,"Z":371.54395},"Depth":0.3858328},"East":{"Position":{"X":-217.13655,"Z":368.4537},"Depth":0.3858328}},{"Center":{"Position":{"X":-181.9648,"Z":367.6225},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-366.3537,"Z":410.4308},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-319.4517,"Z":412.8329},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-222.3592,"Z":422.2233},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]},"RoomsB":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":242.2688,"Z":-407.3709},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":292.2455,"Z":-419.7115},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":388.2386,"Z":-406.8889},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":198.5498,"Z":-349.3167},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":254.3103,"Z":-362.9244},"Depth":0.25},"North":{"Position":{"X":252.45094,"Z":-363.85202},"Depth":0.3858328},"South":{"Position":{"X":255.54108,"Z":-328.1371},"Depth":0.3858328},"West":{"Position":{"X":236.13911,"Z":-344.44327},"Depth":0.3858328},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":312.5266,"Z":-372.1913},"Depth":0.25},"North":{"Position":{"X":310.44974,"Z":-375.85223},"Depth":0.3858328},"South":{"Position":{"X":313.5399,"Z":-340.13748},"Depth":0.3858328},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":329.85275,"Z":-359.5338},"Depth":0.3858328}},{"Center":{"Position":{"X":368.1,"Z":-349.5093},"Depth":0.25},"North":{"Position":{"X":366.44904,"Z":-363.85202},"Depth":0.3858328},"South":{"Position":{"X":369.5392,"Z":-328.13718},"Depth":0.3858328},"West":{"Position":{"X":350.13724,"Z":-344.44336},"Depth":0.3858328},"East":{"Position":{"X":385.85205,"Z":-347.5335},"Depth":0.3858328}},{"Center":{"Position":{"X":426.6133,"Z":-361.1192},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":184.1457,"Z":-302.9055},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":241.7038,"Z":-290.2035},"Depth":0.25},"North":{"Position":{"X":240.45103,"Z":-305.85303},"Depth":0.3858328},"South":{"Position":{"X":243.54118,"Z":-270.13818},"Depth":0.3858328},"West":{"Position":{"X":224.1392,"Z":-286.44437},"Depth":0.3858328},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":300.4155,"Z":-302.2205},"Depth":0.25},"North":{"Position":{"X":298.44983,"Z":-317.85294},"Depth":0.3858328},"South":{"Position":{"X":301.54,"Z":-282.1381},"Depth":0.3858328},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":367.718,"Z":-302.5081},"Depth":0.25},"North":{"Position":{"X":366.44922,"Z":-317.8528},"Depth":0.3858328},"South":{"Position":{"X":367.5394,"Z":-282.13797},"Depth":0.3858328},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":389.85193,"Z":-301.5343},"Depth":0.3858328}},{"Center":{"Position":{"X":429.744,"Z":-314.3755},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":184.4104,"Z":-233.1253},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":242.0357,"Z":-258.69592},"Depth":0.25},"North":{"Position":{"X":240.45084,"Z":-259.85373},"Depth":0.3858328},"South":{"Position":{"X":243.54097,"Z":-224.13889},"Depth":0.3858328},"West":{"Position":{"X":224.139,"Z":-240.44505},"Depth":0.3858328},"East":{"Position":{"X":259.85385,"Z":-243.53522},"Depth":0.3858328}},{"Center":{"Position":{"X":300.4155,"Z":-244.9101},"Depth":0.25},"North":{"Position":{"X":298.45,"Z":-259.85364},"Depth":0.3858328},"South":{"Position":{"X":301.5402,"Z":-224.13878},"Depth":0.3858328},"West":{"Position":{"X":282.1382,"Z":-240.44495},"Depth":0.3858328},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":366.0983,"Z":-268.3832},"Depth":0.25},"North":{"Position":{"X":364.44962,"Z":-271.85352},"Depth":0.3858328},"South":{"Position":{"X":367.5398,"Z":-236.13867},"Depth":0.3858328},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":383.85263,"Z":-255.535},"Depth":0.3858328}},{"Center":{"Position":{"X":420.3033,"Z":-256.66272},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":242.5427,"Z":-187.026},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":319.9643,"Z":-187.5298},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":378.353,"Z":-198.3665},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]}},"1.2":{"DungeonId":1,"Floorset":1,"RoomsA":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-374.7566,"Z":183.0325},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-287.8989,"Z":178.1563},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-223.1265,"Z":193.6945},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-402.5998,"Z":240.809},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-355.0793,"Z":240.4289},"Depth":0.25},"North":{"Position":{"X":-354.42322,"Z":227.95},"Depth":1.214027},"South":{"Position":{"X":-355.56418,"Z":260.04163},"Depth":1.214027},"West":{"Position":{"X":-371.03973,"Z":243.43088},"Depth":1.214027},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-300.4581,"Z":241.4994},"Depth":0.25},"North":{"Position":{"X":-299.4235,"Z":227.9498},"Depth":1.214027},"South":{"Position":{"X":-300.56445,"Z":260.0414},"Depth":1.214027},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-226.2764,"Z":262.0164},"Depth":0.25},"North":{"Position":{"X":-234.42361,"Z":239.9496},"Depth":1.214027},"South":{"Position":{"X":-235.56454,"Z":272.04123},"Depth":1.214027},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":-218.94849,"Z":256.5714},"Depth":1.214027}},{"Center":{"Position":{"X":-175.5846,"Z":252.934},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-420.2265,"Z":296.8055},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-367.1488,"Z":296.9664},"Depth":0.25},"North":{"Position":{"X":-366.4228,"Z":283.94818},"Depth":1.214027},"South":{"Position":{"X":-367.56357,"Z":316.0398},"Depth":1.214027},"West":{"Position":{"X":-383.0393,"Z":299.42905},"Depth":1.214027},"East":{"Position":{"X":-350.94766,"Z":300.57},"Depth":1.214027}},{"Center":{"Position":{"X":-299.914,"Z":305.8483},"Depth":0.25},"North":{"Position":{"X":-299.4233,"Z":279.9447},"Depth":1.214027},"South":{"Position":{"X":-300.56076,"Z":320.036},"Depth":1.214027},"West":{"Position":{"X":-316.0398,"Z":299.42535},"Depth":1.214027},"East":{"Position":{"X":-283.94818,"Z":302.5663},"Depth":1.214027}},{"Center":{"Position":{"X":-234.9083,"Z":310.8708},"Depth":0.25},"North":{"Position":{"X":-234.42572,"Z":297.9474},"Depth":1.214027},"South":{"Position":{"X":-235.56668,"Z":330.039},"Depth":1.214027},"West":{"Position":{"X":-251.0422,"Z":313.42825},"Depth":1.214027},"East":{"Position":{"X":-218.95059,"Z":314.5692},"Depth":1.214027}},{"Center":{"Position":{"X":-180.6718,"Z":311.2285},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-409.0223,"Z":355.6356},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-346.5887,"Z":345.5487},"Depth":0.25},"North":{"Position":{"X":-354.42032,"Z":341.9474},"Depth":1.214027},"South":{"Position":{"X":-355.56128,"Z":374.039},"Depth":1.214027},"West":{"Position":{"X":-371.037,"Z":357.42825},"Depth":1.214027},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-309.1746,"Z":347.1084},"Depth":0.25},"North":{"Position":{"X":-299.4206,"Z":341.94748},"Depth":1.214027},"South":{"Position":{"X":-300.56155,"Z":374.0391},"Depth":1.214027},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-235.6806,"Z":365.491},"Depth":0.25},"North":{"Position":{"X":-234.42392,"Z":353.9468},"Depth":1.214027},"South":{"Position":{"X":-235.56488,"Z":386.03842},"Depth":1.214027},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":-218.94879,"Z":370.56863},"Depth":1.214027}},{"Center":{"Position":{"X":-177.7759,"Z":366.8867},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-366.6518,"Z":411.5221},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-320.0814,"Z":414.084},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-224.6033,"Z":424.7421},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]},"RoomsB":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":241.9075,"Z":-409.8611},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":292.1822,"Z":-420.3809},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":388.0965,"Z":-406.534},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":195.7815,"Z":-348.4681},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":263.1833,"Z":-358.7175},"Depth":0.25},"North":{"Position":{"X":254.56648,"Z":-362.0403},"Depth":1.214027},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":237.95,"Z":-346.55945},"Depth":1.214027},"East":{"Position":{"X":270.04163,"Z":-345.4185},"Depth":1.214027}},{"Center":{"Position":{"X":318.7134,"Z":-366.8361},"Depth":0.25},"North":{"Position":{"X":312.5653,"Z":-374.04062},"Depth":1.214027},"South":{"Position":{"X":311.42435,"Z":-341.949},"Depth":1.214027},"West":{"Position":{"X":295.9488,"Z":-358.55975},"Depth":1.214027},"East":{"Position":{"X":328.04044,"Z":-357.4188},"Depth":1.214027}},{"Center":{"Position":{"X":367.6212,"Z":-349.1082},"Depth":0.25},"North":{"Position":{"X":368.5646,"Z":-362.0404},"Depth":1.214027},"South":{"Position":{"X":367.42365,"Z":-329.9488},"Depth":1.214027},"West":{"Position":{"X":351.94812,"Z":-346.55954},"Depth":1.214027},"East":{"Position":{"X":384.03973,"Z":-345.41858},"Depth":1.214027}},{"Center":{"Position":{"X":427.2377,"Z":-361.0651},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":181.5783,"Z":-303.7495},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":241.7273,"Z":-290.1868},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":241.42564,"Z":-271.9498},"Depth":1.214027},"West":{"Position":{"X":225.95009,"Z":-288.56055},"Depth":1.214027},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":300.0593,"Z":-302.7772},"Depth":0.25},"North":{"Position":{"X":300.5654,"Z":-316.04132},"Depth":1.214027},"South":{"Position":{"X":299.42444,"Z":-283.9497},"Depth":1.214027},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":367.7514,"Z":-303.0645},"Depth":0.25},"North":{"Position":{"X":368.5648,"Z":-316.0412},"Depth":1.214027},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":388.0396,"Z":-299.41937},"Depth":1.214027}},{"Center":{"Position":{"X":432.9172,"Z":-314.7849},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":181.8928,"Z":-233.2985},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":232.3754,"Z":-235.6684},"Depth":0.25},"North":{"Position":{"X":242.56638,"Z":-258.0421},"Depth":1.214027},"South":{"Position":{"X":241.42542,"Z":-225.9505},"Depth":1.214027},"West":{"Position":{"X":225.94989,"Z":-242.56123},"Depth":1.214027},"East":{"Position":{"X":258.0415,"Z":-241.4203},"Depth":1.214027}},{"Center":{"Position":{"X":299.6617,"Z":-244.7433},"Depth":0.25},"North":{"Position":{"X":300.56558,"Z":-258.04202},"Depth":1.214027},"South":{"Position":{"X":299.42462,"Z":-225.9504},"Depth":1.214027},"West":{"Position":{"X":283.9491,"Z":-242.56113},"Depth":1.214027},"East":{"Position":{"X":316.0407,"Z":-241.4202},"Depth":1.214027}},{"Center":{"Position":{"X":373.7408,"Z":-264.3062},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":365.42422,"Z":-237.95029},"Depth":1.214027},"West":{"Position":{"X":349.94867,"Z":-254.56102},"Depth":1.214027},"East":{"Position":{"X":382.0403,"Z":-253.42009},"Depth":1.214027}},{"Center":{"Position":{"X":421.5632,"Z":-256.98212},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":242.1803,"Z":-186.2036},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":320.0034,"Z":-184.6789},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":378.3103,"Z":-195.2241},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]}},"1.3":{"DungeonId":1,"Floorset":2,"RoomsA":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-375.8824,"Z":184.9715},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-288.434,"Z":180.2622},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-222.976,"Z":195.8077},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-401.8241,"Z":241.3869},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-355.0005,"Z":241.1624},"Depth":0.25},"North":{"Position":{"X":-354.4232,"Z":227.95001},"Depth":1.214},"South":{"Position":{"X":-355.5642,"Z":260.0416},"Depth":1.214},"West":{"Position":{"X":-371.0397,"Z":243.43085},"Depth":1.214},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-300.0496,"Z":242.1748},"Depth":0.25},"North":{"Position":{"X":-299.42346,"Z":227.94981},"Depth":1.214},"South":{"Position":{"X":-300.56448,"Z":260.0414},"Depth":1.214},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-234.7516,"Z":241.6998},"Depth":0.25},"North":{"Position":{"X":-234.42357,"Z":239.94962},"Depth":1.214},"South":{"Position":{"X":-235.56459,"Z":272.0412},"Depth":1.214},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":-218.94849,"Z":256.57144},"Depth":1.214}},{"Center":{"Position":{"X":-181.684,"Z":253.6359},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-419.2709,"Z":297.2304},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-367.1707,"Z":297.5115},"Depth":0.25},"North":{"Position":{"X":-366.42276,"Z":283.94818},"Depth":1.214},"South":{"Position":{"X":-367.5636,"Z":316.0398},"Depth":1.214},"West":{"Position":{"X":-383.03928,"Z":299.42902},"Depth":1.214},"East":{"Position":{"X":-350.9477,"Z":300.57004},"Depth":1.214}},{"Center":{"Position":{"X":-299.7132,"Z":308.2558},"Depth":0.25},"North":{"Position":{"X":-299.42328,"Z":279.9447},"Depth":1.214},"South":{"Position":{"X":-300.5608,"Z":320.036},"Depth":1.214},"West":{"Position":{"X":-316.0398,"Z":299.42532},"Depth":1.214},"East":{"Position":{"X":-283.9482,"Z":302.56635},"Depth":1.214}},{"Center":{"Position":{"X":-235.3281,"Z":312.0525},"Depth":0.25},"North":{"Position":{"X":-234.42567,"Z":297.9474},"Depth":1.214},"South":{"Position":{"X":-235.56671,"Z":330.039},"Depth":1.214},"West":{"Position":{"X":-251.04219,"Z":313.42822},"Depth":1.214},"East":{"Position":{"X":-218.95059,"Z":314.56924},"Depth":1.214}},{"Center":{"Position":{"X":-182.6375,"Z":311.8546},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-406.3417,"Z":354.5897},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-354.9269,"Z":343.8251},"Depth":0.25},"North":{"Position":{"X":-354.4203,"Z":341.9474},"Depth":1.214},"South":{"Position":{"X":-355.5613,"Z":374.039},"Depth":1.214},"West":{"Position":{"X":-371.037,"Z":357.42822},"Depth":1.214},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-299.7132,"Z":344.343},"Depth":0.25},"North":{"Position":{"X":-299.42056,"Z":341.94748},"Depth":1.214},"South":{"Position":{"X":-300.56158,"Z":374.0391},"Depth":1.214},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-234.4194,"Z":366.988},"Depth":0.25},"North":{"Position":{"X":-234.42387,"Z":353.9468},"Depth":1.214},"South":{"Position":{"X":-235.56491,"Z":386.03842},"Depth":1.214},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":-218.94879,"Z":370.56866},"Depth":1.214}},{"Center":{"Position":{"X":-181.9648,"Z":367.6225},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-366.3537,"Z":410.4308},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-319.4517,"Z":412.8329},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-222.3592,"Z":422.2233},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]},"RoomsB":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":242.2688,"Z":-407.3709},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":292.2455,"Z":-419.7115},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":388.2386,"Z":-406.8889},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":198.5498,"Z":-349.3167},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":254.3103,"Z":-360.2792},"Depth":0.25},"North":{"Position":{"X":254.56653,"Z":-362.0403},"Depth":1.214},"South":{"Position":{"X":253.42549,"Z":-329.9487},"Depth":1.214},"West":{"Position":{"X":237.95001,"Z":-346.55948},"Depth":1.214},"East":{"Position":{"X":270.0416,"Z":-345.41846},"Depth":1.214}},{"Center":{"Position":{"X":312.5266,"Z":-372.1913},"Depth":0.25},"North":{"Position":{"X":312.56534,"Z":-374.04062},"Depth":1.214},"South":{"Position":{"X":311.42432,"Z":-341.949},"Depth":1.214},"West":{"Position":{"X":295.94882,"Z":-358.55978},"Depth":1.214},"East":{"Position":{"X":328.0404,"Z":-357.41876},"Depth":1.214}},{"Center":{"Position":{"X":368.1,"Z":-349.5093},"Depth":0.25},"North":{"Position":{"X":368.56464,"Z":-362.0404},"Depth":1.214},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":351.94812,"Z":-346.55957},"Depth":1.214},"East":{"Position":{"X":384.0397,"Z":-345.41855},"Depth":1.214}},{"Center":{"Position":{"X":426.6133,"Z":-361.1192},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":184.1457,"Z":-302.9055},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":241.7038,"Z":-290.2035},"Depth":0.25},"North":{"Position":{"X":242.56662,"Z":-304.0414},"Depth":1.214},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":225.9501,"Z":-288.56058},"Depth":1.214},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":300.4155,"Z":-302.2205},"Depth":0.25},"North":{"Position":{"X":300.56543,"Z":-316.04132},"Depth":1.214},"South":{"Position":{"X":299.4244,"Z":-283.9497},"Depth":1.214},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":367.718,"Z":-302.5081},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":365.4238,"Z":-283.9496},"Depth":1.214},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":388.03958,"Z":-299.41934},"Depth":1.214}},{"Center":{"Position":{"X":429.744,"Z":-314.3755},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":184.4104,"Z":-233.1253},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":242.0357,"Z":-256.29388},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":241.42538,"Z":-225.9505},"Depth":1.214},"West":{"Position":{"X":225.9499,"Z":-242.56126},"Depth":1.214},"East":{"Position":{"X":258.0415,"Z":-241.42027},"Depth":1.214}},{"Center":{"Position":{"X":300.4155,"Z":-244.9101},"Depth":0.25},"North":{"Position":{"X":300.5656,"Z":-258.042},"Depth":1.214},"South":{"Position":{"X":299.4246,"Z":-225.95041},"Depth":1.214},"West":{"Position":{"X":283.9491,"Z":-242.56116},"Depth":1.214},"East":{"Position":{"X":316.04068,"Z":-241.42017},"Depth":1.214}},{"Center":{"Position":{"X":366.0983,"Z":-267.7899},"Depth":0.25},"North":{"Position":{"X":366.56522,"Z":-270.0419},"Depth":1.214},"South":{"Position":{"X":365.4242,"Z":-237.95029},"Depth":1.214},"West":{"Position":{"X":349.9487,"Z":-254.56105},"Depth":1.214},"East":{"Position":{"X":382.04028,"Z":-253.42006},"Depth":1.214}},{"Center":{"Position":{"X":420.3033,"Z":-256.66272},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":242.5427,"Z":-187.026},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":319.9643,"Z":-187.5298},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":378.353,"Z":-198.3665},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]}},"1.4":{"DungeonId":1,"Floorset":3,"RoomsA":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-375.1498,"Z":185.3075},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-287.8494,"Z":175.8575},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-223.3866,"Z":197.1989},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-410.8553,"Z":241.1827},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-355.2747,"Z":241.0947},"Depth":0.25},"North":{"Position":{"X":-354.99368,"Z":226.691},"Depth":1.140426},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":-372.29852,"Z":244.00179},"Depth":1.140426},"East":{"Position":{"X":-337.6889,"Z":244.00179},"Depth":1.140426}},{"Center":{"Position":{"X":-300.0493,"Z":240.961},"Depth":0.25},"North":{"Position":{"X":-299.99396,"Z":226.6908},"Depth":1.140426},"South":{"Position":{"X":-299.994,"Z":261.3004},"Depth":1.140426},"West":{"Position":{"X":-317.29892,"Z":244.00159},"Depth":1.140426},"East":{"Position":{"X":-282.6893,"Z":244.00159},"Depth":1.140426}},{"Center":{"Position":{"X":-243.7047,"Z":243.4734},"Depth":0.25},"North":{"Position":{"X":-234.99408,"Z":238.6906},"Depth":1.140426},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":-252.2996,"Z":256.00146},"Depth":1.140426},"East":{"Position":{"X":-217.68929,"Z":256.00137},"Depth":1.140426}},{"Center":{"Position":{"X":-177.7028,"Z":253.1477},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-419.0171,"Z":297.3047},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-366.8425,"Z":296.9368},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":-384.2981,"Z":299.99997},"Depth":1.140426},"East":{"Position":{"X":-349.68848,"Z":299.99997},"Depth":1.140426}},{"Center":{"Position":{"X":-308.6841,"Z":304.1},"Depth":0.25},"North":{"Position":{"X":-299.99377,"Z":278.6857},"Depth":1.140426},"South":{"Position":{"X":-299.9903,"Z":321.295},"Depth":1.140426},"West":{"Position":{"X":-317.2986,"Z":299.99628},"Depth":1.140426},"East":{"Position":{"X":-282.689,"Z":301.99628},"Depth":1.140426}},{"Center":{"Position":{"X":-235.169,"Z":311.2792},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":-252.30101,"Z":313.99918},"Depth":1.140426},"East":{"Position":{"X":-217.69139,"Z":313.99918},"Depth":1.140426}},{"Center":{"Position":{"X":-180.7976,"Z":311.3758},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-417.566,"Z":354.636},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-364.2147,"Z":345.0069},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":-354.9908,"Z":375.298},"Depth":1.140426},"West":{"Position":{"X":-372.2958,"Z":357.99918},"Depth":1.140426},"East":{"Position":{"X":-337.6868,"Z":357.99927},"Depth":1.140426}},{"Center":{"Position":{"X":-308.562,"Z":362.7122},"Depth":0.25},"North":{"Position":{"X":-299.99106,"Z":340.68848},"Depth":1.140426},"South":{"Position":{"X":-299.9911,"Z":375.2981},"Depth":1.140426},"West":{"Position":{"X":-317.2966,"Z":357.9994},"Depth":1.140426},"East":{"Position":{"X":-282.6871,"Z":357.9994},"Depth":1.140426}},{"Center":{"Position":{"X":-234.8412,"Z":367.0198},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":-234.99442,"Z":387.29742},"Depth":1.140426},"West":{"Position":{"X":-252.2996,"Z":369.9987},"Depth":1.140426},"East":{"Position":{"X":-217.68959,"Z":369.9986},"Depth":1.140426}},{"Center":{"Position":{"X":-180.7421,"Z":367.1945},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-366.9833,"Z":412.5256},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-319.8491,"Z":412.5222},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-222.8512,"Z":422.8012},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]},"RoomsB":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":241.6549,"Z":-415.1002},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":291.4778,"Z":-422.5872},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":388.0814,"Z":-416.5132},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":196.7861,"Z":-349.2682},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":244.551,"Z":-358.8237},"Depth":0.25},"North":{"Position":{"X":253.99602,"Z":-363.29932},"Depth":1.140426},"South":{"Position":{"X":253.99599,"Z":-328.6897},"Depth":1.140426},"West":{"Position":{"X":236.6912,"Z":-345.98853},"Depth":1.140426},"East":{"Position":{"X":271.3008,"Z":-345.98853},"Depth":1.140426}},{"Center":{"Position":{"X":303.4736,"Z":-353.1604},"Depth":0.25},"North":{"Position":{"X":311.99484,"Z":-375.29962},"Depth":1.140426},"South":{"Position":{"X":311.9948,"Z":-340.69},"Depth":1.140426},"West":{"Position":{"X":294.69,"Z":-357.98883},"Depth":1.140426},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":368.026,"Z":-348.8077},"Depth":0.25},"North":{"Position":{"X":367.99414,"Z":-363.2994},"Depth":1.140426},"South":{"Position":{"X":367.9941,"Z":-328.6898},"Depth":1.140426},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":385.29892,"Z":-345.98862},"Depth":1.140426}},{"Center":{"Position":{"X":432.1373,"Z":-361.4377},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":179.0099,"Z":-303.0655},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":242.1531,"Z":-290.8822},"Depth":0.25},"North":{"Position":{"X":241.99611,"Z":-305.3004},"Depth":1.140426},"South":{"Position":{"X":241.99611,"Z":-270.6908},"Depth":1.140426},"West":{"Position":{"X":224.69128,"Z":-287.98962},"Depth":1.140426},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":300.0091,"Z":-302.6707},"Depth":0.25},"North":{"Position":{"X":299.99493,"Z":-317.30032},"Depth":1.140426},"South":{"Position":{"X":299.9949,"Z":-282.6907},"Depth":1.140426},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":367.9897,"Z":-302.8293},"Depth":0.25},"North":{"Position":{"X":367.99432,"Z":-317.3002},"Depth":1.140426},"South":{"Position":{"X":365.9943,"Z":-282.69058},"Depth":1.140426},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":389.2988,"Z":-299.9894},"Depth":1.140426}},{"Center":{"Position":{"X":439.2119,"Z":-314.6513},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":179.8093,"Z":-233.0277},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":232.0079,"Z":-254.6378},"Depth":0.25},"North":{"Position":{"X":241.99591,"Z":-259.30112},"Depth":1.140426},"South":{"Position":{"X":241.99588,"Z":-224.6915},"Depth":1.140426},"West":{"Position":{"X":224.69109,"Z":-241.99033},"Depth":1.140426},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":293.3234,"Z":-250.8034},"Depth":0.25},"North":{"Position":{"X":299.99512,"Z":-259.301},"Depth":1.140426},"South":{"Position":{"X":299.9951,"Z":-224.69139},"Depth":1.140426},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":317.2999,"Z":-241.99022},"Depth":1.140426}},{"Center":{"Position":{"X":357.5139,"Z":-249.6363},"Depth":0.25},"North":{"Position":{"X":365.99472,"Z":-271.3009},"Depth":1.140426},"South":{"Position":{"X":365.9947,"Z":-236.69128},"Depth":1.140426},"West":{"Position":{"X":348.68988,"Z":-253.99011},"Depth":1.140426},"East":{"Position":{"X":383.2995,"Z":-253.99011},"Depth":1.140426}},{"Center":{"Position":{"X":419.6602,"Z":-257.0983},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":241.9875,"Z":-181.5087},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":320.2658,"Z":-186.8763},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":378.2152,"Z":-195.408},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]}},"1.5":{"DungeonId":1,"Floorset":4,"RoomsA":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":241.6549,"Z":-415.1002},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":291.4778,"Z":-422.5872},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":388.0814,"Z":-416.5132},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":196.7861,"Z":-349.2682},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":244.551,"Z":-358.8237},"Depth":0.25},"North":{"Position":{"X":253.99602,"Z":-363.29932},"Depth":1.140426},"South":{"Position":{"X":253.99599,"Z":-328.6897},"Depth":1.140426},"West":{"Position":{"X":236.6912,"Z":-345.98853},"Depth":1.140426},"East":{"Position":{"X":271.3008,"Z":-345.98853},"Depth":1.140426}},{"Center":{"Position":{"X":303.4736,"Z":-353.1604},"Depth":0.25},"North":{"Position":{"X":311.99484,"Z":-375.29962},"Depth":1.140426},"South":{"Position":{"X":311.9948,"Z":-340.69},"Depth":1.140426},"West":{"Position":{"X":294.69,"Z":-357.98883},"Depth":1.140426},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":368.026,"Z":-348.8077},"Depth":0.25},"North":{"Position":{"X":367.99414,"Z":-363.2994},"Depth":1.140426},"South":{"Position":{"X":367.9941,"Z":-328.6898},"Depth":1.140426},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":385.29892,"Z":-345.98862},"Depth":1.140426}},{"Center":{"Position":{"X":432.1373,"Z":-361.4377},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":179.0099,"Z":-303.0655},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":242.1531,"Z":-290.8822},"Depth":0.25},"North":{"Position":{"X":241.99611,"Z":-305.3004},"Depth":1.140426},"South":{"Position":{"X":241.99611,"Z":-270.6908},"Depth":1.140426},"West":{"Position":{"X":224.69128,"Z":-287.98962},"Depth":1.140426},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":300.0091,"Z":-302.6707},"Depth":0.25},"North":{"Position":{"X":299.99493,"Z":-317.30032},"Depth":1.140426},"South":{"Position":{"X":299.9949,"Z":-282.6907},"Depth":1.140426},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":367.9897,"Z":-302.8293},"Depth":0.25},"North":{"Position":{"X":367.99432,"Z":-317.3002},"Depth":1.140426},"South":{"Position":{"X":365.9943,"Z":-282.69058},"Depth":1.140426},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":389.2988,"Z":-299.9894},"Depth":1.140426}},{"Center":{"Position":{"X":439.2119,"Z":-314.6513},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":179.8093,"Z":-233.0277},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":232.0079,"Z":-254.6378},"Depth":0.25},"North":{"Position":{"X":241.99591,"Z":-259.30112},"Depth":1.140426},"South":{"Position":{"X":241.99588,"Z":-224.6915},"Depth":1.140426},"West":{"Position":{"X":224.69109,"Z":-241.99033},"Depth":1.140426},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":293.3234,"Z":-250.8034},"Depth":0.25},"North":{"Position":{"X":299.99512,"Z":-259.301},"Depth":1.140426},"South":{"Position":{"X":299.9951,"Z":-224.69139},"Depth":1.140426},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":317.2999,"Z":-241.99022},"Depth":1.140426}},{"Center":{"Position":{"X":357.5139,"Z":-249.6363},"Depth":0.25},"North":{"Position":{"X":365.99472,"Z":-271.3009},"Depth":1.140426},"South":{"Position":{"X":365.9947,"Z":-236.69128},"Depth":1.140426},"West":{"Position":{"X":348.68988,"Z":-253.99011},"Depth":1.140426},"East":{"Position":{"X":383.2995,"Z":-253.99011},"Depth":1.140426}},{"Center":{"Position":{"X":419.6602,"Z":-257.0983},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":241.9875,"Z":-181.5087},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":320.2658,"Z":-186.8763},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":378.2152,"Z":-195.408},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]},"RoomsB":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-375.1498,"Z":185.3075},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-287.8494,"Z":175.8575},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-223.3866,"Z":197.1989},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-410.8553,"Z":241.1827},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-355.2747,"Z":241.0947},"Depth":0.25},"North":{"Position":{"X":-354.99368,"Z":226.691},"Depth":1.140426},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":-372.29852,"Z":244.00179},"Depth":1.140426},"East":{"Position":{"X":-337.6889,"Z":244.00179},"Depth":1.140426}},{"Center":{"Position":{"X":-300.0493,"Z":240.961},"Depth":0.25},"North":{"Position":{"X":-299.99396,"Z":226.6908},"Depth":1.140426},"South":{"Position":{"X":-299.994,"Z":261.3004},"Depth":1.140426},"West":{"Position":{"X":-317.29892,"Z":244.00159},"Depth":1.140426},"East":{"Position":{"X":-282.6893,"Z":244.00159},"Depth":1.140426}},{"Center":{"Position":{"X":-243.7047,"Z":243.4734},"Depth":0.25},"North":{"Position":{"X":-234.99408,"Z":238.6906},"Depth":1.140426},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":-252.2996,"Z":256.00146},"Depth":1.140426},"East":{"Position":{"X":-217.68929,"Z":256.00137},"Depth":1.140426}},{"Center":{"Position":{"X":-177.7028,"Z":253.1477},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-419.0171,"Z":297.3047},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-366.8425,"Z":296.9368},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":-384.2981,"Z":299.99997},"Depth":1.140426},"East":{"Position":{"X":-349.68848,"Z":299.99997},"Depth":1.140426}},{"Center":{"Position":{"X":-308.6841,"Z":304.1},"Depth":0.25},"North":{"Position":{"X":-299.99377,"Z":278.6857},"Depth":1.140426},"South":{"Position":{"X":-299.9903,"Z":321.295},"Depth":1.140426},"West":{"Position":{"X":-317.2986,"Z":299.99628},"Depth":1.140426},"East":{"Position":{"X":-282.689,"Z":301.99628},"Depth":1.140426}},{"Center":{"Position":{"X":-235.169,"Z":311.2792},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":-252.30101,"Z":313.99918},"Depth":1.140426},"East":{"Position":{"X":-217.69139,"Z":313.99918},"Depth":1.140426}},{"Center":{"Position":{"X":-180.7976,"Z":311.3758},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-417.566,"Z":354.636},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-364.2147,"Z":345.0069},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":-354.9908,"Z":375.298},"Depth":1.140426},"West":{"Position":{"X":-372.2958,"Z":357.99918},"Depth":1.140426},"East":{"Position":{"X":-337.6868,"Z":357.99927},"Depth":1.140426}},{"Center":{"Position":{"X":-308.562,"Z":362.7122},"Depth":0.25},"North":{"Position":{"X":-299.99106,"Z":340.68848},"Depth":1.140426},"South":{"Position":{"X":-299.9911,"Z":375.2981},"Depth":1.140426},"West":{"Position":{"X":-317.2966,"Z":357.9994},"Depth":1.140426},"East":{"Position":{"X":-282.6871,"Z":357.9994},"Depth":1.140426}},{"Center":{"Position":{"X":-234.8412,"Z":367.0198},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":-234.99442,"Z":387.29742},"Depth":1.140426},"West":{"Position":{"X":-252.2996,"Z":369.9987},"Depth":1.140426},"East":{"Position":{"X":-217.68959,"Z":369.9986},"Depth":1.140426}},{"Center":{"Position":{"X":-180.7421,"Z":367.1945},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-366.9833,"Z":412.5256},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-319.8491,"Z":412.5222},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-222.8512,"Z":422.8012},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]}},"1.6":{"DungeonId":1,"Floorset":5,"RoomsA":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-372.0326,"Z":184.973},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-300,"Z":181.0293},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-224.0507,"Z":197},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-404.0083,"Z":241.1312},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-344.6464,"Z":248.3687},"Depth":0.25},"North":{"Position":{"X":-352,"Z":225.25},"Depth":1.2},"South":{"Position":{"X":-352,"Z":262.75},"Depth":1.2},"West":{"Position":{"X":-370.75,"Z":244.00647},"Depth":1.2},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-299.9166,"Z":240.9613},"Depth":0.25},"North":{"Position":{"X":-300,"Z":225.25},"Depth":1.2},"South":{"Position":{"X":-300,"Z":262.75},"Depth":1.2},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-228.7655,"Z":260.4214},"Depth":0.25},"North":{"Position":{"X":-236,"Z":237.25},"Depth":1.2},"South":{"Position":{"X":-236,"Z":274.75},"Depth":1.2},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":-217.25,"Z":256.00647},"Depth":1.2}},{"Center":{"Position":{"X":-180,"Z":253},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-416,"Z":297},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-371.5812,"Z":304.5652},"Depth":0.25},"North":{"Position":{"X":-364,"Z":281.25},"Depth":1.2},"South":{"Position":{"X":-364,"Z":318.75},"Depth":1.2},"West":{"Position":{"X":-382.75,"Z":300.00647},"Depth":1.2},"East":{"Position":{"X":-345.25,"Z":300.00647},"Depth":1.2}},{"Center":{"Position":{"X":-300,"Z":297},"Depth":0.25},"North":{"Position":{"X":-300,"Z":277.25},"Depth":1.2},"South":{"Position":{"X":-300,"Z":322.75},"Depth":1.2},"West":{"Position":{"X":-318.75,"Z":300.00647},"Depth":1.2},"East":{"Position":{"X":-281.25,"Z":300.00647},"Depth":1.2}},{"Center":{"Position":{"X":-228.834,"Z":316.2514},"Depth":0.25},"North":{"Position":{"X":-236,"Z":293.25},"Depth":1.2},"South":{"Position":{"X":-236,"Z":330.75},"Depth":1.2},"West":{"Position":{"X":-254.75,"Z":312.00647},"Depth":1.2},"East":{"Position":{"X":-217.25,"Z":312.00647},"Depth":1.2}},{"Center":{"Position":{"X":-183.9744,"Z":309.017},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-407.4052,"Z":353.0297},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-352.0754,"Z":352.9926},"Depth":0.25},"North":{"Position":{"X":-352,"Z":337.25},"Depth":1.2},"South":{"Position":{"X":-352,"Z":374.75},"Depth":1.2},"West":{"Position":{"X":-370.75,"Z":356.00647},"Depth":1.2},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-300,"Z":353},"Depth":0.25},"North":{"Position":{"X":-300,"Z":337.25},"Depth":1.2},"South":{"Position":{"X":-300,"Z":374.75},"Depth":1.2},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-236,"Z":365},"Depth":0.25},"North":{"Position":{"X":-236,"Z":345.25},"Depth":1.2},"South":{"Position":{"X":-236,"Z":390.75},"Depth":1.2},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":-217.25,"Z":368.00647},"Depth":1.2}},{"Center":{"Position":{"X":-183.9406,"Z":365.1953},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-363.9096,"Z":407.6941},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-280,"Z":408.9842},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-223.9719,"Z":425.0208},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]},"RoomsB":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":243.9585,"Z":-410.9901},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":304.038,"Z":-414.9721},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":380,"Z":-411},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":204,"Z":-346.982},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":255.9754,"Z":-346.9631},"Depth":0.25},"North":{"Position":{"X":256,"Z":-362.75},"Depth":1.2},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":237.25,"Z":-343.99353},"Depth":1.2},"East":{"Position":{"X":274.75,"Z":-343.99353},"Depth":1.2}},{"Center":{"Position":{"X":311.9414,"Z":-358.9607},"Depth":0.25},"North":{"Position":{"X":312,"Z":-374.75},"Depth":1.2},"South":{"Position":{"X":312,"Z":-337.25},"Depth":1.2},"West":{"Position":{"X":293.25,"Z":-355.99353},"Depth":1.2},"East":{"Position":{"X":330.75,"Z":-355.99353},"Depth":1.2}},{"Center":{"Position":{"X":375.1467,"Z":-354.1331},"Depth":0.25},"North":{"Position":{"X":368,"Z":-362.75},"Depth":1.2},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":349.25,"Z":-343.99353},"Depth":1.2},"East":{"Position":{"X":386.75,"Z":-343.99353},"Depth":1.2}},{"Center":{"Position":{"X":424,"Z":-359},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":188,"Z":-303},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":251.2701,"Z":-283.7987},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":225.25,"Z":-287.99353},"Depth":1.2},"East":{"Position":{"X":262.75,"Z":-287.99353},"Depth":1.2}},{"Center":{"Position":{"X":300,"Z":-303},"Depth":0.25},"North":{"Position":{"X":300,"Z":-318.75},"Depth":1.2},"South":{"Position":{"X":300,"Z":-281.25},"Depth":1.2},"West":{"Position":{"X":281.25,"Z":-299.99353},"Depth":1.2},"East":{"Position":{"X":318.75,"Z":-299.99353},"Depth":1.2}},{"Center":{"Position":{"X":355.9931,"Z":-291.013},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":337.25,"Z":-287.99353},"Depth":1.2},"East":{"Position":{"X":374.75,"Z":-287.99353},"Depth":1.2}},{"Center":{"Position":{"X":424.1349,"Z":-291.0209},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":192,"Z":-222.8349},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":243.9885,"Z":-234.9678},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":244,"Z":-209.25},"Depth":1.2},"West":{"Position":{"X":225.25,"Z":-231.99353},"Depth":1.2},"East":{"Position":{"X":262.75,"Z":-231.99353},"Depth":1.2}},{"Center":{"Position":{"X":307.4888,"Z":-254.5737},"Depth":0.25},"North":{"Position":{"X":300,"Z":-262.75},"Depth":1.2},"South":{"Position":{"X":300,"Z":-225.25},"Depth":1.2},"West":{"Position":{"X":281.25,"Z":-243.99353},"Depth":1.2},"East":{"Position":{"X":318.75,"Z":-243.99353},"Depth":1.2}},{"Center":{"Position":{"X":356,"Z":-235},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":356,"Z":-209.25},"Depth":1.2},"West":{"Position":{"X":337.25,"Z":-231.99353},"Depth":1.2},"East":{"Position":{"X":374.75,"Z":-231.99353},"Depth":1.2}},{"Center":{"Position":{"X":408.0466,"Z":-235.0723},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":232.0002,"Z":-170.9579},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":320,"Z":-191},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":368.0591,"Z":-175.0106},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]}},"1.7":{"DungeonId":1,"Floorset":6,"RoomsA":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":243.9585,"Z":-410.9901},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":304.038,"Z":-414.9721},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":380,"Z":-411},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":204,"Z":-346.982},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":255.9754,"Z":-346.9631},"Depth":0.25},"North":{"Position":{"X":256,"Z":-362.75},"Depth":1.2},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":237.25,"Z":-343.99353},"Depth":1.2},"East":{"Position":{"X":274.75,"Z":-343.99353},"Depth":1.2}},{"Center":{"Position":{"X":311.9414,"Z":-358.9607},"Depth":0.25},"North":{"Position":{"X":312,"Z":-374.75},"Depth":1.2},"South":{"Position":{"X":312,"Z":-337.25},"Depth":1.2},"West":{"Position":{"X":293.25,"Z":-355.99353},"Depth":1.2},"East":{"Position":{"X":330.75,"Z":-355.99353},"Depth":1.2}},{"Center":{"Position":{"X":375.1467,"Z":-354.1331},"Depth":0.25},"North":{"Position":{"X":368,"Z":-362.75},"Depth":1.2},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":349.25,"Z":-343.99353},"Depth":1.2},"East":{"Position":{"X":386.75,"Z":-343.99353},"Depth":1.2}},{"Center":{"Position":{"X":424,"Z":-359},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":188,"Z":-303},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":251.2701,"Z":-283.7987},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":225.25,"Z":-287.99353},"Depth":1.2},"East":{"Position":{"X":262.75,"Z":-287.99353},"Depth":1.2}},{"Center":{"Position":{"X":300,"Z":-303},"Depth":0.25},"North":{"Position":{"X":300,"Z":-318.75},"Depth":1.2},"South":{"Position":{"X":300,"Z":-281.25},"Depth":1.2},"West":{"Position":{"X":281.25,"Z":-299.99353},"Depth":1.2},"East":{"Position":{"X":318.75,"Z":-299.99353},"Depth":1.2}},{"Center":{"Position":{"X":355.9931,"Z":-291.013},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":337.25,"Z":-287.99353},"Depth":1.2},"East":{"Position":{"X":374.75,"Z":-287.99353},"Depth":1.2}},{"Center":{"Position":{"X":424.1349,"Z":-291.0209},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":192,"Z":-222.8349},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":243.9885,"Z":-234.9678},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":244,"Z":-209.25},"Depth":1.2},"West":{"Position":{"X":225.25,"Z":-231.99353},"Depth":1.2},"East":{"Position":{"X":262.75,"Z":-231.99353},"Depth":1.2}},{"Center":{"Position":{"X":307.4888,"Z":-254.5737},"Depth":0.25},"North":{"Position":{"X":300,"Z":-262.75},"Depth":1.2},"South":{"Position":{"X":300,"Z":-225.25},"Depth":1.2},"West":{"Position":{"X":281.25,"Z":-243.99353},"Depth":1.2},"East":{"Position":{"X":318.75,"Z":-243.99353},"Depth":1.2}},{"Center":{"Position":{"X":356,"Z":-235},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":356,"Z":-209.25},"Depth":1.2},"West":{"Position":{"X":337.25,"Z":-231.99353},"Depth":1.2},"East":{"Position":{"X":374.75,"Z":-231.99353},"Depth":1.2}},{"Center":{"Position":{"X":408.0466,"Z":-235.0723},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":232.0002,"Z":-170.9579},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":320,"Z":-191},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":368.0591,"Z":-175.0106},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]},"RoomsB":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-372.0326,"Z":184.973},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-300,"Z":181.0293},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-224.0507,"Z":197},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-404.0083,"Z":241.1312},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-344.6464,"Z":248.3687},"Depth":0.25},"North":{"Position":{"X":-352,"Z":225.25},"Depth":1.2},"South":{"Position":{"X":-352,"Z":262.75},"Depth":1.2},"West":{"Position":{"X":-370.75,"Z":244.00647},"Depth":1.2},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-299.9166,"Z":240.9613},"Depth":0.25},"North":{"Position":{"X":-300,"Z":225.25},"Depth":1.2},"South":{"Position":{"X":-300,"Z":262.75},"Depth":1.2},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-228.7655,"Z":260.4214},"Depth":0.25},"North":{"Position":{"X":-236,"Z":237.25},"Depth":1.2},"South":{"Position":{"X":-236,"Z":274.75},"Depth":1.2},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":-217.25,"Z":256.00647},"Depth":1.2}},{"Center":{"Position":{"X":-180,"Z":253},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-416,"Z":297},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-371.5812,"Z":304.5652},"Depth":0.25},"North":{"Position":{"X":-364,"Z":281.25},"Depth":1.2},"South":{"Position":{"X":-364,"Z":318.75},"Depth":1.2},"West":{"Position":{"X":-382.75,"Z":300.00647},"Depth":1.2},"East":{"Position":{"X":-345.25,"Z":300.00647},"Depth":1.2}},{"Center":{"Position":{"X":-300,"Z":297},"Depth":0.25},"North":{"Position":{"X":-300,"Z":277.25},"Depth":1.2},"South":{"Position":{"X":-300,"Z":322.75},"Depth":1.2},"West":{"Position":{"X":-318.75,"Z":300.00647},"Depth":1.2},"East":{"Position":{"X":-281.25,"Z":300.00647},"Depth":1.2}},{"Center":{"Position":{"X":-228.834,"Z":316.2514},"Depth":0.25},"North":{"Position":{"X":-236,"Z":293.25},"Depth":1.2},"South":{"Position":{"X":-236,"Z":330.75},"Depth":1.2},"West":{"Position":{"X":-254.75,"Z":312.00647},"Depth":1.2},"East":{"Position":{"X":-217.25,"Z":312.00647},"Depth":1.2}},{"Center":{"Position":{"X":-183.9744,"Z":309.017},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-407.4052,"Z":353.0297},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-352.0754,"Z":352.9926},"Depth":0.25},"North":{"Position":{"X":-352,"Z":337.25},"Depth":1.2},"South":{"Position":{"X":-352,"Z":374.75},"Depth":1.2},"West":{"Position":{"X":-370.75,"Z":356.00647},"Depth":1.2},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-300,"Z":353},"Depth":0.25},"North":{"Position":{"X":-300,"Z":337.25},"Depth":1.2},"South":{"Position":{"X":-300,"Z":374.75},"Depth":1.2},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-236,"Z":365},"Depth":0.25},"North":{"Position":{"X":-236,"Z":345.25},"Depth":1.2},"South":{"Position":{"X":-236,"Z":390.75},"Depth":1.2},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":-217.25,"Z":368.00647},"Depth":1.2}},{"Center":{"Position":{"X":-183.9406,"Z":365.1953},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-363.9096,"Z":407.6941},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-280,"Z":408.9842},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-223.9719,"Z":425.0208},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]}},"1.8":{"DungeonId":1,"Floorset":7,"RoomsA":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-372.0326,"Z":184.973},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-300,"Z":181.0293},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-224.0507,"Z":197},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-404.0083,"Z":241.1312},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-344.6464,"Z":248.3687},"Depth":0.25},"North":{"Position":{"X":-352,"Z":225.25},"Depth":1.2},"South":{"Position":{"X":-352,"Z":262.75},"Depth":1.2},"West":{"Position":{"X":-370.75,"Z":244.00647},"Depth":1.2},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-299.9166,"Z":240.9613},"Depth":0.25},"North":{"Position":{"X":-300,"Z":225.25},"Depth":1.2},"South":{"Position":{"X":-300,"Z":262.75},"Depth":1.2},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-228.7655,"Z":260.4214},"Depth":0.25},"North":{"Position":{"X":-236,"Z":237.25},"Depth":1.2},"South":{"Position":{"X":-236,"Z":274.75},"Depth":1.2},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":-217.25,"Z":256.00647},"Depth":1.2}},{"Center":{"Position":{"X":-180,"Z":253},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-416,"Z":297},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-371.5812,"Z":304.5652},"Depth":0.25},"North":{"Position":{"X":-364,"Z":281.25},"Depth":1.2},"South":{"Position":{"X":-364,"Z":318.75},"Depth":1.2},"West":{"Position":{"X":-382.75,"Z":300.00647},"Depth":1.2},"East":{"Position":{"X":-345.25,"Z":300.00647},"Depth":1.2}},{"Center":{"Position":{"X":-300,"Z":297},"Depth":0.25},"North":{"Position":{"X":-300,"Z":277.25},"Depth":1.2},"South":{"Position":{"X":-300,"Z":322.75},"Depth":1.2},"West":{"Position":{"X":-318.75,"Z":300.00647},"Depth":1.2},"East":{"Position":{"X":-281.25,"Z":300.00647},"Depth":1.2}},{"Center":{"Position":{"X":-228.834,"Z":316.2514},"Depth":0.25},"North":{"Position":{"X":-236,"Z":293.25},"Depth":1.2},"South":{"Position":{"X":-236,"Z":330.75},"Depth":1.2},"West":{"Position":{"X":-254.75,"Z":312.00647},"Depth":1.2},"East":{"Position":{"X":-217.25,"Z":312.00647},"Depth":1.2}},{"Center":{"Position":{"X":-183.9744,"Z":309.017},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-407.4052,"Z":353.0297},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-352.0754,"Z":352.9926},"Depth":0.25},"North":{"Position":{"X":-352,"Z":337.25},"Depth":1.2},"South":{"Position":{"X":-352,"Z":374.75},"Depth":1.2},"West":{"Position":{"X":-370.75,"Z":356.00647},"Depth":1.2},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-300,"Z":353},"Depth":0.25},"North":{"Position":{"X":-300,"Z":337.25},"Depth":1.2},"South":{"Position":{"X":-300,"Z":374.75},"Depth":1.2},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-236,"Z":365},"Depth":0.25},"North":{"Position":{"X":-236,"Z":345.25},"Depth":1.2},"South":{"Position":{"X":-236,"Z":390.75},"Depth":1.2},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":-217.25,"Z":368.00647},"Depth":1.2}},{"Center":{"Position":{"X":-183.9406,"Z":365.1953},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-363.9096,"Z":407.6941},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-280,"Z":408.9842},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-223.9719,"Z":425.0208},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]},"RoomsB":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":243.9585,"Z":-410.9901},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":304.038,"Z":-414.9721},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":380,"Z":-411},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":204,"Z":-346.982},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":255.9754,"Z":-346.9631},"Depth":0.25},"North":{"Position":{"X":256,"Z":-362.75},"Depth":1.2},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":237.25,"Z":-343.99353},"Depth":1.2},"East":{"Position":{"X":274.75,"Z":-343.99353},"Depth":1.2}},{"Center":{"Position":{"X":311.9414,"Z":-358.9607},"Depth":0.25},"North":{"Position":{"X":312,"Z":-374.75},"Depth":1.2},"South":{"Position":{"X":312,"Z":-337.25},"Depth":1.2},"West":{"Position":{"X":293.25,"Z":-355.99353},"Depth":1.2},"East":{"Position":{"X":330.75,"Z":-355.99353},"Depth":1.2}},{"Center":{"Position":{"X":375.1467,"Z":-354.1331},"Depth":0.25},"North":{"Position":{"X":368,"Z":-362.75},"Depth":1.2},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":349.25,"Z":-343.99353},"Depth":1.2},"East":{"Position":{"X":386.75,"Z":-343.99353},"Depth":1.2}},{"Center":{"Position":{"X":424,"Z":-359},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":188,"Z":-303},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":251.2701,"Z":-283.7987},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":225.25,"Z":-287.99353},"Depth":1.2},"East":{"Position":{"X":262.75,"Z":-287.99353},"Depth":1.2}},{"Center":{"Position":{"X":300,"Z":-303},"Depth":0.25},"North":{"Position":{"X":300,"Z":-318.75},"Depth":1.2},"South":{"Position":{"X":300,"Z":-281.25},"Depth":1.2},"West":{"Position":{"X":281.25,"Z":-299.99353},"Depth":1.2},"East":{"Position":{"X":318.75,"Z":-299.99353},"Depth":1.2}},{"Center":{"Position":{"X":355.9931,"Z":-291.013},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":337.25,"Z":-287.99353},"Depth":1.2},"East":{"Position":{"X":374.75,"Z":-287.99353},"Depth":1.2}},{"Center":{"Position":{"X":424.1349,"Z":-291.0209},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":192,"Z":-222.8349},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":243.9885,"Z":-234.9678},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":244,"Z":-209.25},"Depth":1.2},"West":{"Position":{"X":225.25,"Z":-231.99353},"Depth":1.2},"East":{"Position":{"X":262.75,"Z":-231.99353},"Depth":1.2}},{"Center":{"Position":{"X":307.4888,"Z":-254.5737},"Depth":0.25},"North":{"Position":{"X":300,"Z":-262.75},"Depth":1.2},"South":{"Position":{"X":300,"Z":-225.25},"Depth":1.2},"West":{"Position":{"X":281.25,"Z":-243.99353},"Depth":1.2},"East":{"Position":{"X":318.75,"Z":-243.99353},"Depth":1.2}},{"Center":{"Position":{"X":356,"Z":-235},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":356,"Z":-209.25},"Depth":1.2},"West":{"Position":{"X":337.25,"Z":-231.99353},"Depth":1.2},"East":{"Position":{"X":374.75,"Z":-231.99353},"Depth":1.2}},{"Center":{"Position":{"X":408.0466,"Z":-235.0723},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":232.0002,"Z":-170.9579},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":320,"Z":-191},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":368.0591,"Z":-175.0106},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]}},"1.9":{"DungeonId":1,"Floorset":8,"RoomsA":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-380.1721,"Z":179.5666},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-287.9569,"Z":190.2903},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-221.3966,"Z":190.5355},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-405.3693,"Z":239.1194},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-357.8347,"Z":228.6303},"Depth":0.25},"North":{"Position":{"X":-358,"Z":223.05867},"Depth":2.737763},"South":{"Position":{"X":-357.9869,"Z":260.9413},"Depth":2.737763},"West":{"Position":{"X":-376.9413,"Z":241.99345},"Depth":2.737763},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-299.7426,"Z":240.7839},"Depth":0.25},"North":{"Position":{"X":-300,"Z":225.05867},"Depth":2.737763},"South":{"Position":{"X":-300,"Z":262.9413},"Depth":2.737763},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-233.9421,"Z":236.5104},"Depth":0.25},"North":{"Position":{"X":-234,"Z":233.05867},"Depth":2.737763},"South":{"Position":{"X":-234.01308,"Z":270.9413},"Depth":2.737763},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":-215.05867,"Z":251.99345},"Depth":2.737763}},{"Center":{"Position":{"X":-178.793,"Z":248.8454},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-424.9064,"Z":297.1447},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-369.6908,"Z":284.4935},"Depth":0.25},"North":{"Position":{"X":-370,"Z":281.05865},"Depth":2.737763},"South":{"Position":{"X":-370.0131,"Z":318.9413},"Depth":2.737763},"West":{"Position":{"X":-388.9413,"Z":299.9783},"Depth":2.737763},"East":{"Position":{"X":-351.0587,"Z":299.99347},"Depth":2.737763}},{"Center":{"Position":{"X":-299.6884,"Z":297.1234},"Depth":0.25},"North":{"Position":{"X":-300,"Z":281.05865},"Depth":2.737763},"South":{"Position":{"X":-300.0131,"Z":318.9413},"Depth":2.737763},"West":{"Position":{"X":-318.9413,"Z":299.9783},"Depth":2.737763},"East":{"Position":{"X":-281.0587,"Z":299.99347},"Depth":2.737763}},{"Center":{"Position":{"X":-234.7379,"Z":308.734},"Depth":0.25},"North":{"Position":{"X":-234,"Z":293.05865},"Depth":2.737763},"South":{"Position":{"X":-234.01308,"Z":330.9413},"Depth":2.737763},"West":{"Position":{"X":-252.94131,"Z":311.9783},"Depth":2.737763},"East":{"Position":{"X":-215.05867,"Z":311.99347},"Depth":2.737763}},{"Center":{"Position":{"X":-180.6718,"Z":309.7213},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-413.7624,"Z":355.4533},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-358.1566,"Z":363.1845},"Depth":0.25},"North":{"Position":{"X":-358,"Z":339.05865},"Depth":2.737763},"South":{"Position":{"X":-357.9869,"Z":376.9413},"Depth":2.737763},"West":{"Position":{"X":-376.9413,"Z":357.99347},"Depth":2.737763},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-298.6445,"Z":353.4265},"Depth":0.25},"North":{"Position":{"X":-300,"Z":337.05865},"Depth":2.737763},"South":{"Position":{"X":-300,"Z":374.9413},"Depth":2.737763},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-233.3256,"Z":354.8542},"Depth":0.25},"North":{"Position":{"X":-234,"Z":349.05865},"Depth":2.737763},"South":{"Position":{"X":-234.01308,"Z":386.9413},"Depth":2.737763},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":-215.05867,"Z":367.99347},"Depth":2.737763}},{"Center":{"Position":{"X":-179.4589,"Z":354.7743},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-370.5751,"Z":413.3585},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-320.1774,"Z":413.0759},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-221.1949,"Z":415.2851},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]},"RoomsB":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":242.1796,"Z":-407.2313},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":290.1965,"Z":-420.2906},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":392.2032,"Z":-408.64},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":197.9624,"Z":-347.5001},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":254.2531,"Z":-359.6218},"Depth":0.25},"North":{"Position":{"X":254,"Z":-364.94135},"Depth":2.737763},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":235.05867,"Z":-346.00653},"Depth":2.737763},"East":{"Position":{"X":272.9413,"Z":-346.00653},"Depth":2.737763}},{"Center":{"Position":{"X":312.0063,"Z":-371.433},"Depth":0.25},"North":{"Position":{"X":312,"Z":-376.94135},"Depth":2.737763},"South":{"Position":{"X":312.0131,"Z":-339.0587},"Depth":2.737763},"West":{"Position":{"X":293.05865,"Z":-358.00653},"Depth":2.737763},"East":{"Position":{"X":330.9413,"Z":-358.00653},"Depth":2.737763}},{"Center":{"Position":{"X":370.1484,"Z":-349.1985},"Depth":0.25},"North":{"Position":{"X":370,"Z":-364.94135},"Depth":2.737763},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":351.05865,"Z":-346.00653},"Depth":2.737763},"East":{"Position":{"X":388.9413,"Z":-346.00653},"Depth":2.737763}},{"Center":{"Position":{"X":427.0493,"Z":-361.4105},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":183.9281,"Z":-303.2903},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":241.7273,"Z":-291.0918},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":223.05867,"Z":-288.00653},"Depth":2.737763},"East":{"Position":{"X":260.9413,"Z":-288.00653},"Depth":2.737763}},{"Center":{"Position":{"X":300.7613,"Z":-302.1629},"Depth":0.25},"North":{"Position":{"X":300,"Z":-318.94135},"Depth":2.737763},"South":{"Position":{"X":300.0131,"Z":-281.0587},"Depth":2.737763},"West":{"Position":{"X":281.0587,"Z":-300.00653},"Depth":2.737763},"East":{"Position":{"X":318.9413,"Z":-300.0217},"Depth":2.737763}},{"Center":{"Position":{"X":369.3706,"Z":-303.0645},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":351.05865,"Z":-300.00653},"Depth":2.737763},"East":{"Position":{"X":388.9413,"Z":-300.00653},"Depth":2.737763}},{"Center":{"Position":{"X":428.522,"Z":-314.7849},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":182.0426,"Z":-231.1508},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":240.2729,"Z":-233.5267},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":240.01308,"Z":-221.05867},"Depth":2.737763},"West":{"Position":{"X":221.05867,"Z":-240.00655},"Depth":2.737763},"East":{"Position":{"X":258.9413,"Z":-240.02168},"Depth":2.737763}},{"Center":{"Position":{"X":300.0534,"Z":-243.3069},"Depth":0.25},"North":{"Position":{"X":300,"Z":-258.94135},"Depth":2.737763},"South":{"Position":{"X":300.0131,"Z":-221.05867},"Depth":2.737763},"West":{"Position":{"X":281.0587,"Z":-240.00655},"Depth":2.737763},"East":{"Position":{"X":318.9413,"Z":-240.02168},"Depth":2.737763}},{"Center":{"Position":{"X":368.136,"Z":-264.6359},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":368.0131,"Z":-233.05867},"Depth":2.737763},"West":{"Position":{"X":349.0587,"Z":-252.00655},"Depth":2.737763},"East":{"Position":{"X":386.9413,"Z":-252.02168},"Depth":2.737763}},{"Center":{"Position":{"X":424.8528,"Z":-254.8204},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":240.0285,"Z":-186.7159},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":322.1534,"Z":-183.239},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":380.2201,"Z":-206.9923},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]}},"1.10":{"DungeonId":1,"Floorset":9,"RoomsA":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":242.1796,"Z":-407.2313},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":290.1965,"Z":-420.2906},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":392.2032,"Z":-408.64},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":197.9624,"Z":-347.5001},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":254.2531,"Z":-359.6218},"Depth":0.25},"North":{"Position":{"X":254,"Z":-364.94135},"Depth":2.737763},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":235.05867,"Z":-346.00653},"Depth":2.737763},"East":{"Position":{"X":272.9413,"Z":-346.00653},"Depth":2.737763}},{"Center":{"Position":{"X":312.0063,"Z":-371.433},"Depth":0.25},"North":{"Position":{"X":312,"Z":-376.94135},"Depth":2.737763},"South":{"Position":{"X":312.0131,"Z":-339.0587},"Depth":2.737763},"West":{"Position":{"X":293.05865,"Z":-358.00653},"Depth":2.737763},"East":{"Position":{"X":330.9413,"Z":-358.00653},"Depth":2.737763}},{"Center":{"Position":{"X":370.1484,"Z":-349.1985},"Depth":0.25},"North":{"Position":{"X":370,"Z":-364.94135},"Depth":2.737763},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":351.05865,"Z":-346.00653},"Depth":2.737763},"East":{"Position":{"X":388.9413,"Z":-346.00653},"Depth":2.737763}},{"Center":{"Position":{"X":427.0493,"Z":-361.4105},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":183.9281,"Z":-303.2903},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":241.7273,"Z":-291.0918},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":223.05867,"Z":-288.00653},"Depth":2.737763},"East":{"Position":{"X":260.9413,"Z":-288.00653},"Depth":2.737763}},{"Center":{"Position":{"X":300.7613,"Z":-302.1629},"Depth":0.25},"North":{"Position":{"X":300,"Z":-318.94135},"Depth":2.737763},"South":{"Position":{"X":300.0131,"Z":-281.0587},"Depth":2.737763},"West":{"Position":{"X":281.0587,"Z":-300.00653},"Depth":2.737763},"East":{"Position":{"X":318.9413,"Z":-300.0217},"Depth":2.737763}},{"Center":{"Position":{"X":369.3706,"Z":-303.0645},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":351.05865,"Z":-300.00653},"Depth":2.737763},"East":{"Position":{"X":388.9413,"Z":-300.00653},"Depth":2.737763}},{"Center":{"Position":{"X":428.522,"Z":-314.7849},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":182.0426,"Z":-231.1508},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":240.2729,"Z":-233.5267},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":240.01308,"Z":-221.05867},"Depth":2.737763},"West":{"Position":{"X":221.05867,"Z":-240.00655},"Depth":2.737763},"East":{"Position":{"X":258.9413,"Z":-240.02168},"Depth":2.737763}},{"Center":{"Position":{"X":300.0534,"Z":-243.3069},"Depth":0.25},"North":{"Position":{"X":300,"Z":-258.94135},"Depth":2.737763},"South":{"Position":{"X":300.0131,"Z":-221.05867},"Depth":2.737763},"West":{"Position":{"X":281.0587,"Z":-240.00655},"Depth":2.737763},"East":{"Position":{"X":318.9413,"Z":-240.02168},"Depth":2.737763}},{"Center":{"Position":{"X":368.136,"Z":-264.6359},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":368.0131,"Z":-233.05867},"Depth":2.737763},"West":{"Position":{"X":349.0587,"Z":-252.00655},"Depth":2.737763},"East":{"Position":{"X":386.9413,"Z":-252.02168},"Depth":2.737763}},{"Center":{"Position":{"X":424.8528,"Z":-254.8204},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":240.0285,"Z":-186.7159},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":322.1534,"Z":-183.239},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":380.2201,"Z":-206.9923},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]},"RoomsB":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-380.1721,"Z":179.5666},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-287.9569,"Z":190.2903},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-221.3966,"Z":190.5355},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-405.3693,"Z":239.1194},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-357.8347,"Z":228.6303},"Depth":0.25},"North":{"Position":{"X":-358,"Z":223.05867},"Depth":2.737763},"South":{"Position":{"X":-357.9869,"Z":260.9413},"Depth":2.737763},"West":{"Position":{"X":-376.9413,"Z":241.99345},"Depth":2.737763},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-299.7426,"Z":240.7839},"Depth":0.25},"North":{"Position":{"X":-300,"Z":225.05867},"Depth":2.737763},"South":{"Position":{"X":-300,"Z":262.9413},"Depth":2.737763},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-233.9421,"Z":236.5104},"Depth":0.25},"North":{"Position":{"X":-234,"Z":233.05867},"Depth":2.737763},"South":{"Position":{"X":-234.01308,"Z":270.9413},"Depth":2.737763},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":-215.05867,"Z":251.99345},"Depth":2.737763}},{"Center":{"Position":{"X":-178.793,"Z":248.8454},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-424.9064,"Z":297.1447},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-369.6908,"Z":284.4935},"Depth":0.25},"North":{"Position":{"X":-370,"Z":281.05865},"Depth":2.737763},"South":{"Position":{"X":-370.0131,"Z":318.9413},"Depth":2.737763},"West":{"Position":{"X":-388.9413,"Z":299.9783},"Depth":2.737763},"East":{"Position":{"X":-351.0587,"Z":299.99347},"Depth":2.737763}},{"Center":{"Position":{"X":-299.6884,"Z":297.1234},"Depth":0.25},"North":{"Position":{"X":-300,"Z":281.05865},"Depth":2.737763},"South":{"Position":{"X":-300.0131,"Z":318.9413},"Depth":2.737763},"West":{"Position":{"X":-318.9413,"Z":299.9783},"Depth":2.737763},"East":{"Position":{"X":-281.0587,"Z":299.99347},"Depth":2.737763}},{"Center":{"Position":{"X":-234.7379,"Z":308.734},"Depth":0.25},"North":{"Position":{"X":-234,"Z":293.05865},"Depth":2.737763},"South":{"Position":{"X":-234.01308,"Z":330.9413},"Depth":2.737763},"West":{"Position":{"X":-252.94131,"Z":311.9783},"Depth":2.737763},"East":{"Position":{"X":-215.05867,"Z":311.99347},"Depth":2.737763}},{"Center":{"Position":{"X":-180.6718,"Z":309.7213},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-413.7624,"Z":355.4533},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-358.1566,"Z":363.1845},"Depth":0.25},"North":{"Position":{"X":-358,"Z":339.05865},"Depth":2.737763},"South":{"Position":{"X":-357.9869,"Z":376.9413},"Depth":2.737763},"West":{"Position":{"X":-376.9413,"Z":357.99347},"Depth":2.737763},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-298.6445,"Z":353.4265},"Depth":0.25},"North":{"Position":{"X":-300,"Z":337.05865},"Depth":2.737763},"South":{"Position":{"X":-300,"Z":374.9413},"Depth":2.737763},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-233.3256,"Z":354.8542},"Depth":0.25},"North":{"Position":{"X":-234,"Z":349.05865},"Depth":2.737763},"South":{"Position":{"X":-234.01308,"Z":386.9413},"Depth":2.737763},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":-215.05867,"Z":367.99347},"Depth":2.737763}},{"Center":{"Position":{"X":-179.4589,"Z":354.7743},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-370.5751,"Z":413.3585},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-320.1774,"Z":413.0759},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-221.1949,"Z":415.2851},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]}},"1.11":{"DungeonId":1,"Floorset":10,"RoomsA":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-380.1721,"Z":179.5666},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-287.9569,"Z":190.2903},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-221.3966,"Z":190.5355},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-405.3693,"Z":239.1194},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-357.8347,"Z":228.6303},"Depth":0.25},"North":{"Position":{"X":-358,"Z":223.05867},"Depth":2.737763},"South":{"Position":{"X":-357.9869,"Z":260.9413},"Depth":2.737763},"West":{"Position":{"X":-376.9413,"Z":241.99345},"Depth":2.737763},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-299.7426,"Z":240.7839},"Depth":0.25},"North":{"Position":{"X":-300,"Z":225.05867},"Depth":2.737763},"South":{"Position":{"X":-300,"Z":262.9413},"Depth":2.737763},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-233.9421,"Z":236.5104},"Depth":0.25},"North":{"Position":{"X":-234,"Z":233.05867},"Depth":2.737763},"South":{"Position":{"X":-234.01308,"Z":270.9413},"Depth":2.737763},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":-215.05867,"Z":251.99345},"Depth":2.737763}},{"Center":{"Position":{"X":-178.793,"Z":248.8454},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-424.9064,"Z":297.1447},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-369.6908,"Z":284.4935},"Depth":0.25},"North":{"Position":{"X":-370,"Z":281.05865},"Depth":2.737763},"South":{"Position":{"X":-370.0131,"Z":318.9413},"Depth":2.737763},"West":{"Position":{"X":-388.9413,"Z":299.9783},"Depth":2.737763},"East":{"Position":{"X":-351.0587,"Z":299.99347},"Depth":2.737763}},{"Center":{"Position":{"X":-299.6884,"Z":297.1234},"Depth":0.25},"North":{"Position":{"X":-300,"Z":281.05865},"Depth":2.737763},"South":{"Position":{"X":-300.0131,"Z":318.9413},"Depth":2.737763},"West":{"Position":{"X":-318.9413,"Z":299.9783},"Depth":2.737763},"East":{"Position":{"X":-281.0587,"Z":299.99347},"Depth":2.737763}},{"Center":{"Position":{"X":-234.7379,"Z":308.734},"Depth":0.25},"North":{"Position":{"X":-234,"Z":293.05865},"Depth":2.737763},"South":{"Position":{"X":-234.01308,"Z":330.9413},"Depth":2.737763},"West":{"Position":{"X":-252.94131,"Z":311.9783},"Depth":2.737763},"East":{"Position":{"X":-215.05867,"Z":311.99347},"Depth":2.737763}},{"Center":{"Position":{"X":-180.6718,"Z":309.7213},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-413.7624,"Z":355.4533},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-358.1566,"Z":363.1845},"Depth":0.25},"North":{"Position":{"X":-358,"Z":339.05865},"Depth":2.737763},"South":{"Position":{"X":-357.9869,"Z":376.9413},"Depth":2.737763},"West":{"Position":{"X":-376.9413,"Z":357.99347},"Depth":2.737763},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-298.6445,"Z":353.4265},"Depth":0.25},"North":{"Position":{"X":-300,"Z":337.05865},"Depth":2.737763},"South":{"Position":{"X":-300,"Z":374.9413},"Depth":2.737763},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-233.3256,"Z":354.8542},"Depth":0.25},"North":{"Position":{"X":-234,"Z":349.05865},"Depth":2.737763},"South":{"Position":{"X":-234.01308,"Z":386.9413},"Depth":2.737763},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":-215.05867,"Z":367.99347},"Depth":2.737763}},{"Center":{"Position":{"X":-179.4589,"Z":354.7743},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-370.5751,"Z":413.3585},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-320.1774,"Z":413.0759},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-221.1949,"Z":415.2851},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]},"RoomsB":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":242.1796,"Z":-407.2313},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":290.1965,"Z":-420.2906},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":392.2032,"Z":-408.64},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":197.9624,"Z":-347.5001},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":254.2531,"Z":-359.6218},"Depth":0.25},"North":{"Position":{"X":254,"Z":-364.94135},"Depth":2.737763},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":235.05867,"Z":-346.00653},"Depth":2.737763},"East":{"Position":{"X":272.9413,"Z":-346.00653},"Depth":2.737763}},{"Center":{"Position":{"X":312.0063,"Z":-371.433},"Depth":0.25},"North":{"Position":{"X":312,"Z":-376.94135},"Depth":2.737763},"South":{"Position":{"X":312.0131,"Z":-339.0587},"Depth":2.737763},"West":{"Position":{"X":293.05865,"Z":-358.00653},"Depth":2.737763},"East":{"Position":{"X":330.9413,"Z":-358.00653},"Depth":2.737763}},{"Center":{"Position":{"X":370.1484,"Z":-349.1985},"Depth":0.25},"North":{"Position":{"X":370,"Z":-364.94135},"Depth":2.737763},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":351.05865,"Z":-346.00653},"Depth":2.737763},"East":{"Position":{"X":388.9413,"Z":-346.00653},"Depth":2.737763}},{"Center":{"Position":{"X":427.0493,"Z":-361.4105},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":183.9281,"Z":-303.2903},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":241.7273,"Z":-291.0918},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":223.05867,"Z":-288.00653},"Depth":2.737763},"East":{"Position":{"X":260.9413,"Z":-288.00653},"Depth":2.737763}},{"Center":{"Position":{"X":300.7613,"Z":-302.1629},"Depth":0.25},"North":{"Position":{"X":300,"Z":-318.94135},"Depth":2.737763},"South":{"Position":{"X":300.0131,"Z":-281.0587},"Depth":2.737763},"West":{"Position":{"X":281.0587,"Z":-300.00653},"Depth":2.737763},"East":{"Position":{"X":318.9413,"Z":-300.0217},"Depth":2.737763}},{"Center":{"Position":{"X":369.3706,"Z":-303.0645},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":351.05865,"Z":-300.00653},"Depth":2.737763},"East":{"Position":{"X":388.9413,"Z":-300.00653},"Depth":2.737763}},{"Center":{"Position":{"X":428.522,"Z":-314.7849},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":182.0426,"Z":-231.1508},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":240.2729,"Z":-233.5267},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":240.01308,"Z":-221.05867},"Depth":2.737763},"West":{"Position":{"X":221.05867,"Z":-240.00655},"Depth":2.737763},"East":{"Position":{"X":258.9413,"Z":-240.02168},"Depth":2.737763}},{"Center":{"Position":{"X":300.0534,"Z":-243.3069},"Depth":0.25},"North":{"Position":{"X":300,"Z":-258.94135},"Depth":2.737763},"South":{"Position":{"X":300.0131,"Z":-221.05867},"Depth":2.737763},"West":{"Position":{"X":281.0587,"Z":-240.00655},"Depth":2.737763},"East":{"Position":{"X":318.9413,"Z":-240.02168},"Depth":2.737763}},{"Center":{"Position":{"X":368.136,"Z":-264.6359},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":368.0131,"Z":-233.05867},"Depth":2.737763},"West":{"Position":{"X":349.0587,"Z":-252.00655},"Depth":2.737763},"East":{"Position":{"X":386.9413,"Z":-252.02168},"Depth":2.737763}},{"Center":{"Position":{"X":424.8528,"Z":-254.8204},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":240.0285,"Z":-186.7159},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":322.1534,"Z":-183.239},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":380.2201,"Z":-206.9923},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]}},"1.12":{"DungeonId":1,"Floorset":11,"RoomsA":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-374.7566,"Z":188.0224},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-288.0777,"Z":181.5698},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-222.712,"Z":195.839},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-399.1688,"Z":241.1314},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-355.0793,"Z":240.4289},"Depth":0.25},"North":{"Position":{"X":-354.42322,"Z":227.95},"Depth":1.214027},"South":{"Position":{"X":-355.56418,"Z":260.04163},"Depth":1.214027},"West":{"Position":{"X":-371.03973,"Z":243.43088},"Depth":1.214027},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-300.4581,"Z":241.4994},"Depth":0.25},"North":{"Position":{"X":-299.4235,"Z":227.9498},"Depth":1.214027},"South":{"Position":{"X":-300.56445,"Z":260.0414},"Depth":1.214027},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-225.5323,"Z":262.2167},"Depth":0.25},"North":{"Position":{"X":-234.42361,"Z":239.9496},"Depth":1.214027},"South":{"Position":{"X":-235.56454,"Z":272.04123},"Depth":1.214027},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":-218.94849,"Z":256.5714},"Depth":1.214027}},{"Center":{"Position":{"X":-179.2163,"Z":252.5446},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-418.4556,"Z":296.9088},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-367.1488,"Z":296.9664},"Depth":0.25},"North":{"Position":{"X":-366.4228,"Z":283.94818},"Depth":1.214027},"South":{"Position":{"X":-367.56357,"Z":316.0398},"Depth":1.214027},"West":{"Position":{"X":-383.0393,"Z":299.42905},"Depth":1.214027},"East":{"Position":{"X":-350.94766,"Z":300.57},"Depth":1.214027}},{"Center":{"Position":{"X":-299.914,"Z":305.8483},"Depth":0.25},"North":{"Position":{"X":-299.4233,"Z":279.9447},"Depth":1.214027},"South":{"Position":{"X":-300.56076,"Z":320.036},"Depth":1.214027},"West":{"Position":{"X":-316.0398,"Z":299.42535},"Depth":1.214027},"East":{"Position":{"X":-283.94818,"Z":302.5663},"Depth":1.214027}},{"Center":{"Position":{"X":-234.9083,"Z":310.8708},"Depth":0.25},"North":{"Position":{"X":-234.42572,"Z":297.9474},"Depth":1.214027},"South":{"Position":{"X":-235.56668,"Z":330.039},"Depth":1.214027},"West":{"Position":{"X":-251.0422,"Z":313.42825},"Depth":1.214027},"East":{"Position":{"X":-218.95059,"Z":314.5692},"Depth":1.214027}},{"Center":{"Position":{"X":-181.8017,"Z":311.4088},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-407.0093,"Z":354.9687},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-346.5887,"Z":345.5487},"Depth":0.25},"North":{"Position":{"X":-354.42032,"Z":341.9474},"Depth":1.214027},"South":{"Position":{"X":-355.56128,"Z":374.039},"Depth":1.214027},"West":{"Position":{"X":-371.037,"Z":357.42825},"Depth":1.214027},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-309.1746,"Z":347.1084},"Depth":0.25},"North":{"Position":{"X":-299.4206,"Z":341.94748},"Depth":1.214027},"South":{"Position":{"X":-300.56155,"Z":374.0391},"Depth":1.214027},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-235.6806,"Z":365.491},"Depth":0.25},"North":{"Position":{"X":-234.42392,"Z":353.9468},"Depth":1.214027},"South":{"Position":{"X":-235.56488,"Z":386.03842},"Depth":1.214027},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":-218.94879,"Z":370.56863},"Depth":1.214027}},{"Center":{"Position":{"X":-177.7759,"Z":366.8867},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-366.6061,"Z":410.7907},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-319.7406,"Z":411.4097},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-225.0612,"Z":423.6227},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]},"RoomsB":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":242.9974,"Z":-408.4487},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":292.1822,"Z":-420.3809},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":388.0965,"Z":-409.0779},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":200.6562,"Z":-347.6816},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":263.1833,"Z":-358.7175},"Depth":0.25},"North":{"Position":{"X":254.5665,"Z":-362.0403},"Depth":1.214027},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":237.95,"Z":-346.55945},"Depth":1.214027},"East":{"Position":{"X":270.04163,"Z":-345.4185},"Depth":1.214027}},{"Center":{"Position":{"X":319.989,"Z":-365.5338},"Depth":0.25},"North":{"Position":{"X":312.5653,"Z":-374.04062},"Depth":1.214027},"South":{"Position":{"X":311.42435,"Z":-341.949},"Depth":1.214027},"West":{"Position":{"X":295.9488,"Z":-358.55975},"Depth":1.214027},"East":{"Position":{"X":328.04044,"Z":-357.4188},"Depth":1.214027}},{"Center":{"Position":{"X":367.6212,"Z":-349.1082},"Depth":0.25},"North":{"Position":{"X":368.5646,"Z":-362.0404},"Depth":1.214027},"South":{"Position":{"X":367.42365,"Z":-329.9488},"Depth":1.214027},"West":{"Position":{"X":351.94812,"Z":-346.55954},"Depth":1.214027},"East":{"Position":{"X":384.03973,"Z":-345.41858},"Depth":1.214027}},{"Center":{"Position":{"X":425.14,"Z":-361.5403},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":184.3622,"Z":-303.1238},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":241.7273,"Z":-290.1868},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":241.42564,"Z":-271.9498},"Depth":1.214027},"West":{"Position":{"X":225.95009,"Z":-288.56055},"Depth":1.214027},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":300.0593,"Z":-302.7772},"Depth":0.25},"North":{"Position":{"X":300.5654,"Z":-316.04132},"Depth":1.214027},"South":{"Position":{"X":299.42444,"Z":-283.9497},"Depth":1.214027},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":367.7514,"Z":-303.0645},"Depth":0.25},"North":{"Position":{"X":368.5648,"Z":-316.0412},"Depth":1.214027},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":388.0396,"Z":-299.41937},"Depth":1.214027}},{"Center":{"Position":{"X":429.6829,"Z":-315.536},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":183.896,"Z":-233.7539},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":232.3754,"Z":-235.6684},"Depth":0.25},"North":{"Position":{"X":242.56638,"Z":-258.0421},"Depth":1.214027},"South":{"Position":{"X":241.42542,"Z":-225.9505},"Depth":1.214027},"West":{"Position":{"X":225.94989,"Z":-242.56123},"Depth":1.214027},"East":{"Position":{"X":258.0415,"Z":-241.4203},"Depth":1.214027}},{"Center":{"Position":{"X":299.6617,"Z":-244.7433},"Depth":0.25},"North":{"Position":{"X":300.56558,"Z":-258.04202},"Depth":1.214027},"South":{"Position":{"X":299.42462,"Z":-225.9504},"Depth":1.214027},"West":{"Position":{"X":283.9491,"Z":-242.56113},"Depth":1.214027},"East":{"Position":{"X":316.0407,"Z":-241.4202},"Depth":1.214027}},{"Center":{"Position":{"X":374.12,"Z":-262.6634},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":365.42422,"Z":-237.95029},"Depth":1.214027},"West":{"Position":{"X":349.94867,"Z":-254.56102},"Depth":1.214027},"East":{"Position":{"X":382.0403,"Z":-253.42009},"Depth":1.214027}},{"Center":{"Position":{"X":418.3748,"Z":-256.62408},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":241.7893,"Z":-188.6278},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":319.9409,"Z":-186.821},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":376.3458,"Z":-198.0885},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]}},"1.13":{"DungeonId":1,"Floorset":12,"RoomsA":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":242.9974,"Z":-408.4487},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":292.1822,"Z":-420.3809},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":388.0965,"Z":-409.0779},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":200.6562,"Z":-347.6816},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":263.1833,"Z":-358.7175},"Depth":0.25},"North":{"Position":{"X":254.5665,"Z":-362.0403},"Depth":1.214027},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":237.95,"Z":-346.55945},"Depth":1.214027},"East":{"Position":{"X":270.04163,"Z":-345.4185},"Depth":1.214027}},{"Center":{"Position":{"X":319.989,"Z":-365.5338},"Depth":0.25},"North":{"Position":{"X":312.5653,"Z":-374.04062},"Depth":1.214027},"South":{"Position":{"X":311.42435,"Z":-341.949},"Depth":1.214027},"West":{"Position":{"X":295.9488,"Z":-358.55975},"Depth":1.214027},"East":{"Position":{"X":328.04044,"Z":-357.4188},"Depth":1.214027}},{"Center":{"Position":{"X":367.6212,"Z":-349.1082},"Depth":0.25},"North":{"Position":{"X":368.5646,"Z":-362.0404},"Depth":1.214027},"South":{"Position":{"X":367.42365,"Z":-329.9488},"Depth":1.214027},"West":{"Position":{"X":351.94812,"Z":-346.55954},"Depth":1.214027},"East":{"Position":{"X":384.03973,"Z":-345.41858},"Depth":1.214027}},{"Center":{"Position":{"X":425.14,"Z":-361.5403},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":184.3622,"Z":-303.1238},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":241.7273,"Z":-290.1868},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":241.42564,"Z":-271.9498},"Depth":1.214027},"West":{"Position":{"X":225.95009,"Z":-288.56055},"Depth":1.214027},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":300.0593,"Z":-302.7772},"Depth":0.25},"North":{"Position":{"X":300.5654,"Z":-316.04132},"Depth":1.214027},"South":{"Position":{"X":299.42444,"Z":-283.9497},"Depth":1.214027},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":367.7514,"Z":-303.0645},"Depth":0.25},"North":{"Position":{"X":368.5648,"Z":-316.0412},"Depth":1.214027},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":388.0396,"Z":-299.41937},"Depth":1.214027}},{"Center":{"Position":{"X":429.6829,"Z":-315.536},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":183.896,"Z":-233.7539},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":232.3754,"Z":-235.6684},"Depth":0.25},"North":{"Position":{"X":242.56638,"Z":-258.0421},"Depth":1.214027},"South":{"Position":{"X":241.42542,"Z":-225.9505},"Depth":1.214027},"West":{"Position":{"X":225.94989,"Z":-242.56123},"Depth":1.214027},"East":{"Position":{"X":258.0415,"Z":-241.4203},"Depth":1.214027}},{"Center":{"Position":{"X":299.6617,"Z":-244.7433},"Depth":0.25},"North":{"Position":{"X":300.56558,"Z":-258.04202},"Depth":1.214027},"South":{"Position":{"X":299.42462,"Z":-225.9504},"Depth":1.214027},"West":{"Position":{"X":283.9491,"Z":-242.56113},"Depth":1.214027},"East":{"Position":{"X":316.0407,"Z":-241.4202},"Depth":1.214027}},{"Center":{"Position":{"X":374.12,"Z":-262.6634},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":365.42422,"Z":-237.95029},"Depth":1.214027},"West":{"Position":{"X":349.94867,"Z":-254.56102},"Depth":1.214027},"East":{"Position":{"X":382.0403,"Z":-253.42009},"Depth":1.214027}},{"Center":{"Position":{"X":418.3748,"Z":-256.62408},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":241.7893,"Z":-188.6278},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":319.9409,"Z":-186.821},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":376.3458,"Z":-198.0885},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]},"RoomsB":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-374.7566,"Z":188.0224},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-288.0777,"Z":181.5698},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-222.712,"Z":195.839},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-399.1688,"Z":241.1314},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-355.0793,"Z":240.4289},"Depth":0.25},"North":{"Position":{"X":-354.42322,"Z":227.95},"Depth":1.214027},"South":{"Position":{"X":-355.56418,"Z":260.04163},"Depth":1.214027},"West":{"Position":{"X":-371.03973,"Z":243.43088},"Depth":1.214027},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-300.4581,"Z":241.4994},"Depth":0.25},"North":{"Position":{"X":-299.4235,"Z":227.9498},"Depth":1.214027},"South":{"Position":{"X":-300.56445,"Z":260.0414},"Depth":1.214027},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-225.5323,"Z":262.2167},"Depth":0.25},"North":{"Position":{"X":-234.42361,"Z":239.9496},"Depth":1.214027},"South":{"Position":{"X":-235.56454,"Z":272.04123},"Depth":1.214027},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":-218.94849,"Z":256.5714},"Depth":1.214027}},{"Center":{"Position":{"X":-179.2163,"Z":252.5446},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-418.4556,"Z":296.9088},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-367.1488,"Z":296.9664},"Depth":0.25},"North":{"Position":{"X":-366.4228,"Z":283.94818},"Depth":1.214027},"South":{"Position":{"X":-367.56357,"Z":316.0398},"Depth":1.214027},"West":{"Position":{"X":-383.0393,"Z":299.42905},"Depth":1.214027},"East":{"Position":{"X":-350.94766,"Z":300.57},"Depth":1.214027}},{"Center":{"Position":{"X":-299.914,"Z":305.8483},"Depth":0.25},"North":{"Position":{"X":-299.4233,"Z":279.9447},"Depth":1.214027},"South":{"Position":{"X":-300.56076,"Z":320.036},"Depth":1.214027},"West":{"Position":{"X":-316.0398,"Z":299.42535},"Depth":1.214027},"East":{"Position":{"X":-283.94818,"Z":302.5663},"Depth":1.214027}},{"Center":{"Position":{"X":-234.9083,"Z":310.8708},"Depth":0.25},"North":{"Position":{"X":-234.42572,"Z":297.9474},"Depth":1.214027},"South":{"Position":{"X":-235.56668,"Z":330.039},"Depth":1.214027},"West":{"Position":{"X":-251.0422,"Z":313.42825},"Depth":1.214027},"East":{"Position":{"X":-218.95059,"Z":314.5692},"Depth":1.214027}},{"Center":{"Position":{"X":-181.8017,"Z":311.4088},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-407.0093,"Z":354.9687},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-346.5887,"Z":345.5487},"Depth":0.25},"North":{"Position":{"X":-354.42032,"Z":341.9474},"Depth":1.214027},"South":{"Position":{"X":-355.56128,"Z":374.039},"Depth":1.214027},"West":{"Position":{"X":-371.037,"Z":357.42825},"Depth":1.214027},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-309.1746,"Z":347.1084},"Depth":0.25},"North":{"Position":{"X":-299.4206,"Z":341.94748},"Depth":1.214027},"South":{"Position":{"X":-300.56155,"Z":374.0391},"Depth":1.214027},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-235.6806,"Z":365.491},"Depth":0.25},"North":{"Position":{"X":-234.42392,"Z":353.9468},"Depth":1.214027},"South":{"Position":{"X":-235.56488,"Z":386.03842},"Depth":1.214027},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":-218.94879,"Z":370.56863},"Depth":1.214027}},{"Center":{"Position":{"X":-177.7759,"Z":366.8867},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-366.6061,"Z":410.7907},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-319.7406,"Z":411.4097},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-225.0612,"Z":423.6227},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]}},"1.14":{"DungeonId":1,"Floorset":13,"RoomsA":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-374.7566,"Z":183.0325},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-287.8989,"Z":178.1563},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-223.1265,"Z":193.6945},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-402.5998,"Z":240.809},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-355.0793,"Z":240.4289},"Depth":0.25},"North":{"Position":{"X":-354.4232,"Z":227.95001},"Depth":1.214},"South":{"Position":{"X":-355.5642,"Z":260.0416},"Depth":1.214},"West":{"Position":{"X":-371.0397,"Z":243.43085},"Depth":1.214},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-300.4581,"Z":241.4994},"Depth":0.25},"North":{"Position":{"X":-299.42346,"Z":227.94981},"Depth":1.214},"South":{"Position":{"X":-300.56448,"Z":260.0414},"Depth":1.214},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-225.0836,"Z":262.5056},"Depth":0.25},"North":{"Position":{"X":-234.42357,"Z":239.94962},"Depth":1.214},"South":{"Position":{"X":-235.56459,"Z":272.0412},"Depth":1.214},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":-218.94849,"Z":256.57144},"Depth":1.214}},{"Center":{"Position":{"X":-175.5846,"Z":252.934},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-420.2265,"Z":296.8055},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-367.1488,"Z":296.9664},"Depth":0.25},"North":{"Position":{"X":-366.42276,"Z":283.94818},"Depth":1.214},"South":{"Position":{"X":-367.5636,"Z":316.0398},"Depth":1.214},"West":{"Position":{"X":-383.03928,"Z":299.42902},"Depth":1.214},"East":{"Position":{"X":-350.9477,"Z":300.57004},"Depth":1.214}},{"Center":{"Position":{"X":-299.914,"Z":305.8483},"Depth":0.25},"North":{"Position":{"X":-299.42328,"Z":279.9447},"Depth":1.214},"South":{"Position":{"X":-300.5608,"Z":320.036},"Depth":1.214},"West":{"Position":{"X":-316.0398,"Z":299.42532},"Depth":1.214},"East":{"Position":{"X":-283.9482,"Z":302.56635},"Depth":1.214}},{"Center":{"Position":{"X":-234.9083,"Z":310.8708},"Depth":0.25},"North":{"Position":{"X":-234.42567,"Z":297.9474},"Depth":1.214},"South":{"Position":{"X":-235.56671,"Z":330.039},"Depth":1.214},"West":{"Position":{"X":-251.04219,"Z":313.42822},"Depth":1.214},"East":{"Position":{"X":-218.95059,"Z":314.56924},"Depth":1.214}},{"Center":{"Position":{"X":-180.6718,"Z":311.2285},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-409.0223,"Z":355.6356},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-345.9205,"Z":345.0418},"Depth":0.25},"North":{"Position":{"X":-354.4203,"Z":341.9474},"Depth":1.214},"South":{"Position":{"X":-355.5613,"Z":374.039},"Depth":1.214},"West":{"Position":{"X":-371.037,"Z":357.42822},"Depth":1.214},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-308.5666,"Z":347.784},"Depth":0.25},"North":{"Position":{"X":-299.42056,"Z":341.94748},"Depth":1.214},"South":{"Position":{"X":-300.56158,"Z":374.0391},"Depth":1.214},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-235.6806,"Z":365.491},"Depth":0.25},"North":{"Position":{"X":-234.42387,"Z":353.9468},"Depth":1.214},"South":{"Position":{"X":-235.56491,"Z":386.03842},"Depth":1.214},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":-218.94879,"Z":370.56866},"Depth":1.214}},{"Center":{"Position":{"X":-177.7759,"Z":366.8867},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-366.6518,"Z":411.5221},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-320.0814,"Z":414.084},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-223.3746,"Z":423.8857},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]},"RoomsB":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":241.9075,"Z":-409.0655},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":292.1822,"Z":-420.3809},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":389.8699,"Z":-406.534},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":203.6679,"Z":-348.4681},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":263.6731,"Z":-339.1262},"Depth":0.25},"North":{"Position":{"X":254.56653,"Z":-362.0403},"Depth":1.214},"South":{"Position":{"X":253.42549,"Z":-329.9487},"Depth":1.214},"West":{"Position":{"X":237.95001,"Z":-346.55948},"Depth":1.214},"East":{"Position":{"X":270.0416,"Z":-345.41846},"Depth":1.214}},{"Center":{"Position":{"X":319.6569,"Z":-367.4182},"Depth":0.25},"North":{"Position":{"X":312.56534,"Z":-374.04062},"Depth":1.214},"South":{"Position":{"X":311.42432,"Z":-341.949},"Depth":1.214},"West":{"Position":{"X":295.94882,"Z":-358.55978},"Depth":1.214},"East":{"Position":{"X":328.0404,"Z":-357.41876},"Depth":1.214}},{"Center":{"Position":{"X":367.6212,"Z":-349.1082},"Depth":0.25},"North":{"Position":{"X":368.56464,"Z":-362.0404},"Depth":1.214},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":351.94812,"Z":-346.55957},"Depth":1.214},"East":{"Position":{"X":384.0397,"Z":-345.41855},"Depth":1.214}},{"Center":{"Position":{"X":425.4471,"Z":-362.718},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":182.6972,"Z":-303.7495},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":241.7273,"Z":-290.1868},"Depth":0.25},"North":{"Position":{"X":242.56662,"Z":-304.0414},"Depth":1.214},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":225.9501,"Z":-288.56058},"Depth":1.214},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":300.0593,"Z":-302.7772},"Depth":0.25},"North":{"Position":{"X":300.56543,"Z":-316.04132},"Depth":1.214},"South":{"Position":{"X":299.4244,"Z":-283.9497},"Depth":1.214},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":367.7514,"Z":-303.0645},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":365.4238,"Z":-283.9496},"Depth":1.214},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":388.03958,"Z":-299.41934},"Depth":1.214}},{"Center":{"Position":{"X":428.6863,"Z":-316.8421},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":183.6819,"Z":-233.2985},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":252.214,"Z":-252.4091},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":241.42538,"Z":-225.9505},"Depth":1.214},"West":{"Position":{"X":225.9499,"Z":-242.56126},"Depth":1.214},"East":{"Position":{"X":258.0415,"Z":-241.42027},"Depth":1.214}},{"Center":{"Position":{"X":299.6617,"Z":-244.7433},"Depth":0.25},"North":{"Position":{"X":300.5656,"Z":-258.042},"Depth":1.214},"South":{"Position":{"X":299.4246,"Z":-225.95041},"Depth":1.214},"West":{"Position":{"X":283.9491,"Z":-242.56116},"Depth":1.214},"East":{"Position":{"X":316.04068,"Z":-241.42017},"Depth":1.214}},{"Center":{"Position":{"X":375.3223,"Z":-264.5527},"Depth":0.25},"North":{"Position":{"X":366.56522,"Z":-270.0419},"Depth":1.214},"South":{"Position":{"X":365.4242,"Z":-237.95029},"Depth":1.214},"West":{"Position":{"X":349.9487,"Z":-254.56105},"Depth":1.214},"East":{"Position":{"X":382.04028,"Z":-253.42006},"Depth":1.214}},{"Center":{"Position":{"X":418.4793,"Z":-256.98212},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":242.1803,"Z":-190.2645},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":320.0034,"Z":-184.6789},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":379.041,"Z":-196.5027},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]}},"1.15":{"DungeonId":1,"Floorset":14,"RoomsA":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":241.9075,"Z":-409.0655},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":292.1822,"Z":-420.3809},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":389.8699,"Z":-406.534},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":203.6679,"Z":-348.4681},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":263.6731,"Z":-339.1262},"Depth":0.25},"North":{"Position":{"X":254.56653,"Z":-362.0403},"Depth":1.214},"South":{"Position":{"X":253.42549,"Z":-329.9487},"Depth":1.214},"West":{"Position":{"X":237.95001,"Z":-346.55948},"Depth":1.214},"East":{"Position":{"X":270.0416,"Z":-345.41846},"Depth":1.214}},{"Center":{"Position":{"X":319.6569,"Z":-367.4182},"Depth":0.25},"North":{"Position":{"X":312.56534,"Z":-374.04062},"Depth":1.214},"South":{"Position":{"X":311.42432,"Z":-341.949},"Depth":1.214},"West":{"Position":{"X":295.94882,"Z":-358.55978},"Depth":1.214},"East":{"Position":{"X":328.0404,"Z":-357.41876},"Depth":1.214}},{"Center":{"Position":{"X":367.6212,"Z":-349.1082},"Depth":0.25},"North":{"Position":{"X":368.56464,"Z":-362.0404},"Depth":1.214},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":351.94812,"Z":-346.55957},"Depth":1.214},"East":{"Position":{"X":384.0397,"Z":-345.41855},"Depth":1.214}},{"Center":{"Position":{"X":425.4471,"Z":-362.718},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":182.6972,"Z":-303.7495},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":241.7273,"Z":-290.1868},"Depth":0.25},"North":{"Position":{"X":242.56662,"Z":-304.0414},"Depth":1.214},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":225.9501,"Z":-288.56058},"Depth":1.214},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":300.0593,"Z":-302.7772},"Depth":0.25},"North":{"Position":{"X":300.56543,"Z":-316.04132},"Depth":1.214},"South":{"Position":{"X":299.4244,"Z":-283.9497},"Depth":1.214},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":367.7514,"Z":-303.0645},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":365.4238,"Z":-283.9496},"Depth":1.214},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":388.03958,"Z":-299.41934},"Depth":1.214}},{"Center":{"Position":{"X":428.6863,"Z":-316.8421},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":183.6819,"Z":-233.2985},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":252.214,"Z":-252.4091},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":241.42538,"Z":-225.9505},"Depth":1.214},"West":{"Position":{"X":225.9499,"Z":-242.56126},"Depth":1.214},"East":{"Position":{"X":258.0415,"Z":-241.42027},"Depth":1.214}},{"Center":{"Position":{"X":299.6617,"Z":-244.7433},"Depth":0.25},"North":{"Position":{"X":300.5656,"Z":-258.042},"Depth":1.214},"South":{"Position":{"X":299.4246,"Z":-225.95041},"Depth":1.214},"West":{"Position":{"X":283.9491,"Z":-242.56116},"Depth":1.214},"East":{"Position":{"X":316.04068,"Z":-241.42017},"Depth":1.214}},{"Center":{"Position":{"X":375.3223,"Z":-264.5527},"Depth":0.25},"North":{"Position":{"X":366.56522,"Z":-270.0419},"Depth":1.214},"South":{"Position":{"X":365.4242,"Z":-237.95029},"Depth":1.214},"West":{"Position":{"X":349.9487,"Z":-254.56105},"Depth":1.214},"East":{"Position":{"X":382.04028,"Z":-253.42006},"Depth":1.214}},{"Center":{"Position":{"X":418.4793,"Z":-256.98212},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":242.1803,"Z":-190.2645},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":320.0034,"Z":-184.6789},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":379.041,"Z":-196.5027},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]},"RoomsB":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-374.7566,"Z":183.0325},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-287.8989,"Z":178.1563},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-223.1265,"Z":193.6945},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-402.5998,"Z":240.809},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-355.0793,"Z":240.4289},"Depth":0.25},"North":{"Position":{"X":-354.4232,"Z":227.95001},"Depth":1.214},"South":{"Position":{"X":-355.5642,"Z":260.0416},"Depth":1.214},"West":{"Position":{"X":-371.0397,"Z":243.43085},"Depth":1.214},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-300.4581,"Z":241.4994},"Depth":0.25},"North":{"Position":{"X":-299.42346,"Z":227.94981},"Depth":1.214},"South":{"Position":{"X":-300.56448,"Z":260.0414},"Depth":1.214},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-225.0836,"Z":262.5056},"Depth":0.25},"North":{"Position":{"X":-234.42357,"Z":239.94962},"Depth":1.214},"South":{"Position":{"X":-235.56459,"Z":272.0412},"Depth":1.214},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":-218.94849,"Z":256.57144},"Depth":1.214}},{"Center":{"Position":{"X":-175.5846,"Z":252.934},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-420.2265,"Z":296.8055},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-367.1488,"Z":296.9664},"Depth":0.25},"North":{"Position":{"X":-366.42276,"Z":283.94818},"Depth":1.214},"South":{"Position":{"X":-367.5636,"Z":316.0398},"Depth":1.214},"West":{"Position":{"X":-383.03928,"Z":299.42902},"Depth":1.214},"East":{"Position":{"X":-350.9477,"Z":300.57004},"Depth":1.214}},{"Center":{"Position":{"X":-299.914,"Z":305.8483},"Depth":0.25},"North":{"Position":{"X":-299.42328,"Z":279.9447},"Depth":1.214},"South":{"Position":{"X":-300.5608,"Z":320.036},"Depth":1.214},"West":{"Position":{"X":-316.0398,"Z":299.42532},"Depth":1.214},"East":{"Position":{"X":-283.9482,"Z":302.56635},"Depth":1.214}},{"Center":{"Position":{"X":-234.9083,"Z":310.8708},"Depth":0.25},"North":{"Position":{"X":-234.42567,"Z":297.9474},"Depth":1.214},"South":{"Position":{"X":-235.56671,"Z":330.039},"Depth":1.214},"West":{"Position":{"X":-251.04219,"Z":313.42822},"Depth":1.214},"East":{"Position":{"X":-218.95059,"Z":314.56924},"Depth":1.214}},{"Center":{"Position":{"X":-180.6718,"Z":311.2285},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-409.0223,"Z":355.6356},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-345.9205,"Z":345.0418},"Depth":0.25},"North":{"Position":{"X":-354.4203,"Z":341.9474},"Depth":1.214},"South":{"Position":{"X":-355.5613,"Z":374.039},"Depth":1.214},"West":{"Position":{"X":-371.037,"Z":357.42822},"Depth":1.214},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-308.5666,"Z":347.784},"Depth":0.25},"North":{"Position":{"X":-299.42056,"Z":341.94748},"Depth":1.214},"South":{"Position":{"X":-300.56158,"Z":374.0391},"Depth":1.214},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-235.6806,"Z":365.491},"Depth":0.25},"North":{"Position":{"X":-234.42387,"Z":353.9468},"Depth":1.214},"South":{"Position":{"X":-235.56491,"Z":386.03842},"Depth":1.214},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":-218.94879,"Z":370.56866},"Depth":1.214}},{"Center":{"Position":{"X":-177.7759,"Z":366.8867},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-366.6518,"Z":411.5221},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-320.0814,"Z":414.084},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-223.3746,"Z":423.8857},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]}},"1.16":{"DungeonId":1,"Floorset":15,"RoomsA":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-375.8101,"Z":184.0421},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-287.8989,"Z":190.2825},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-219.2287,"Z":197.0434},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-417.0273,"Z":240.809},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-364.8857,"Z":240.4289},"Depth":0.25},"North":{"Position":{"X":-364,"Z":226.2},"Depth":2},"South":{"Position":{"X":-364,"Z":261.8},"Depth":2},"West":{"Position":{"X":-381.8,"Z":243.99385},"Depth":2},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-299.8871,"Z":244.1161},"Depth":0.25},"North":{"Position":{"X":-300,"Z":228.2},"Depth":2},"South":{"Position":{"X":-300,"Z":263.8},"Depth":2},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-232.3339,"Z":253.2937},"Depth":0.25},"North":{"Position":{"X":-232,"Z":238.2},"Depth":2},"South":{"Position":{"X":-232,"Z":273.8},"Depth":2},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":-214.2,"Z":256},"Depth":2}},{"Center":{"Position":{"X":-180.1405,"Z":252.934},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-406.5778,"Z":297.4088},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-351.621,"Z":296.9664},"Depth":0.25},"North":{"Position":{"X":-352,"Z":282.2},"Depth":2},"South":{"Position":{"X":-352,"Z":317.8},"Depth":2},"West":{"Position":{"X":-369.8,"Z":299.99387},"Depth":2},"East":{"Position":{"X":-334.2,"Z":299.99387},"Depth":2}},{"Center":{"Position":{"X":-299.914,"Z":297.3557},"Depth":0.25},"North":{"Position":{"X":-300,"Z":282.2},"Depth":2},"South":{"Position":{"X":-300,"Z":317.8},"Depth":2},"West":{"Position":{"X":-317.8,"Z":299.99387},"Depth":2},"East":{"Position":{"X":-282.2,"Z":299.99387},"Depth":2}},{"Center":{"Position":{"X":-244.3859,"Z":297.4952},"Depth":0.25},"North":{"Position":{"X":-244,"Z":294.2},"Depth":2},"South":{"Position":{"X":-244,"Z":329.8},"Depth":2},"West":{"Position":{"X":-261.8,"Z":311.99387},"Depth":2},"East":{"Position":{"X":-226.2,"Z":311.99387},"Depth":2}},{"Center":{"Position":{"X":-190.7164,"Z":308.6962},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-403.6229,"Z":348.9707},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-351.8816,"Z":348.9453},"Depth":0.25},"North":{"Position":{"X":-352,"Z":334.2},"Depth":2},"South":{"Position":{"X":-352,"Z":369.8},"Depth":2},"West":{"Position":{"X":-369.8,"Z":351.99387},"Depth":2},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-311.6316,"Z":353.3328},"Depth":0.25},"North":{"Position":{"X":-312,"Z":338.2},"Depth":2},"South":{"Position":{"X":-312,"Z":373.8},"Depth":2},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-244.4898,"Z":359.8373},"Depth":0.25},"North":{"Position":{"X":-244,"Z":346.2},"Depth":2},"South":{"Position":{"X":-244,"Z":381.8},"Depth":2},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":-226.2,"Z":363.99387},"Depth":2}},{"Center":{"Position":{"X":-192.1444,"Z":360.8743},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-363.3706,"Z":407.0828},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-299.9716,"Z":408.9295},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-230.1441,"Z":419.8333},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]},"RoomsB":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":243.5614,"Z":-404.8383},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":292.1822,"Z":-414.2727},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":388.0965,"Z":-403.584},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":204.5525,"Z":-346.565},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":255.7953,"Z":-345.8169},"Depth":0.25},"North":{"Position":{"X":256,"Z":-361.8},"Depth":2},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":238.2,"Z":-344.00613},"Depth":2},"East":{"Position":{"X":273.8,"Z":-344.00613},"Depth":2}},{"Center":{"Position":{"X":312.0199,"Z":-359.8006},"Depth":0.25},"North":{"Position":{"X":312,"Z":-373.8},"Depth":2},"South":{"Position":{"X":312.00613,"Z":-338.2},"Depth":2},"West":{"Position":{"X":294.2,"Z":-356.00613},"Depth":2},"East":{"Position":{"X":329.8,"Z":-356.00613},"Depth":2}},{"Center":{"Position":{"X":367.9919,"Z":-346.235},"Depth":0.25},"North":{"Position":{"X":368,"Z":-361.8},"Depth":2},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":350.2,"Z":-344.00613},"Depth":2},"East":{"Position":{"X":385.8,"Z":-344},"Depth":2}},{"Center":{"Position":{"X":423.9744,"Z":-358.9135},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":187.9247,"Z":-303.1526},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":243.8179,"Z":-290.1868},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":226.2,"Z":-288},"Depth":2},"East":{"Position":{"X":261.8,"Z":-288.00613},"Depth":2}},{"Center":{"Position":{"X":300.0593,"Z":-302.7772},"Depth":0.25},"North":{"Position":{"X":300,"Z":-317.8},"Depth":2},"South":{"Position":{"X":300.00613,"Z":-282.2},"Depth":2},"West":{"Position":{"X":282.2,"Z":-300.00613},"Depth":2},"East":{"Position":{"X":317.8,"Z":-300.00613},"Depth":2}},{"Center":{"Position":{"X":352.1592,"Z":-303.0645},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":334.2,"Z":-300.00613},"Depth":2},"East":{"Position":{"X":369.8,"Z":-300},"Depth":2}},{"Center":{"Position":{"X":407.5428,"Z":-314.7849},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":191.4722,"Z":-238.0882},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":248.2417,"Z":-250.4833},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":248,"Z":-230.2},"Depth":2},"West":{"Position":{"X":230.2,"Z":-248},"Depth":2},"East":{"Position":{"X":265.8,"Z":-248},"Depth":2}},{"Center":{"Position":{"X":299.6617,"Z":-250.8317},"Depth":0.25},"North":{"Position":{"X":300,"Z":-265.8},"Depth":2},"South":{"Position":{"X":300.00613,"Z":-230.2},"Depth":2},"West":{"Position":{"X":282.2,"Z":-248.00615},"Depth":2},"East":{"Position":{"X":317.8,"Z":-248.00615},"Depth":2}},{"Center":{"Position":{"X":355.2953,"Z":-262.2832},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":356.00613,"Z":-242.2},"Depth":2},"West":{"Position":{"X":338.2,"Z":-260.00613},"Depth":2},"East":{"Position":{"X":373.8,"Z":-260.00613},"Depth":2}},{"Center":{"Position":{"X":408.1609,"Z":-262.6852},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":248.2532,"Z":-195.6302},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":320.0034,"Z":-195.9265},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":368.0628,"Z":-206.9281},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]}},"1.17":{"DungeonId":1,"Floorset":16,"RoomsA":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":243.5614,"Z":-404.8383},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":292.1822,"Z":-414.2727},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":388.0965,"Z":-403.584},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":204.5525,"Z":-346.565},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":255.7953,"Z":-345.8169},"Depth":0.25},"North":{"Position":{"X":256,"Z":-361.8},"Depth":2},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":238.2,"Z":-344.00613},"Depth":2},"East":{"Position":{"X":273.8,"Z":-344.00613},"Depth":2}},{"Center":{"Position":{"X":312.0199,"Z":-359.8006},"Depth":0.25},"North":{"Position":{"X":312,"Z":-373.8},"Depth":2},"South":{"Position":{"X":312.00613,"Z":-338.2},"Depth":2},"West":{"Position":{"X":294.2,"Z":-356.00613},"Depth":2},"East":{"Position":{"X":329.8,"Z":-356.00613},"Depth":2}},{"Center":{"Position":{"X":367.9919,"Z":-346.235},"Depth":0.25},"North":{"Position":{"X":368,"Z":-361.8},"Depth":2},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":350.2,"Z":-344.00613},"Depth":2},"East":{"Position":{"X":385.8,"Z":-344},"Depth":2}},{"Center":{"Position":{"X":423.9744,"Z":-358.9135},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":187.9247,"Z":-303.1526},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":243.8179,"Z":-290.1868},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":226.2,"Z":-288},"Depth":2},"East":{"Position":{"X":261.8,"Z":-288.00613},"Depth":2}},{"Center":{"Position":{"X":300.0593,"Z":-302.7772},"Depth":0.25},"North":{"Position":{"X":300,"Z":-317.8},"Depth":2},"South":{"Position":{"X":300.00613,"Z":-282.2},"Depth":2},"West":{"Position":{"X":282.2,"Z":-300.00613},"Depth":2},"East":{"Position":{"X":317.8,"Z":-300.00613},"Depth":2}},{"Center":{"Position":{"X":352.1592,"Z":-303.0645},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":334.2,"Z":-300.00613},"Depth":2},"East":{"Position":{"X":369.8,"Z":-300},"Depth":2}},{"Center":{"Position":{"X":407.5428,"Z":-314.7849},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":191.4722,"Z":-238.0882},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":248.2417,"Z":-250.4833},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":248,"Z":-230.2},"Depth":2},"West":{"Position":{"X":230.2,"Z":-248},"Depth":2},"East":{"Position":{"X":265.8,"Z":-248},"Depth":2}},{"Center":{"Position":{"X":299.6617,"Z":-250.8317},"Depth":0.25},"North":{"Position":{"X":300,"Z":-265.8},"Depth":2},"South":{"Position":{"X":300.00613,"Z":-230.2},"Depth":2},"West":{"Position":{"X":282.2,"Z":-248.00615},"Depth":2},"East":{"Position":{"X":317.8,"Z":-248.00615},"Depth":2}},{"Center":{"Position":{"X":355.2953,"Z":-262.2832},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":356.00613,"Z":-242.2},"Depth":2},"West":{"Position":{"X":338.2,"Z":-260.00613},"Depth":2},"East":{"Position":{"X":373.8,"Z":-260.00613},"Depth":2}},{"Center":{"Position":{"X":408.1609,"Z":-262.6852},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":248.2532,"Z":-195.6302},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":320.0034,"Z":-195.9265},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":368.0628,"Z":-206.9281},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]},"RoomsB":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-375.8101,"Z":184.0421},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-287.8989,"Z":190.2825},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-219.2287,"Z":197.0434},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-417.0273,"Z":240.809},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-364.8857,"Z":240.4289},"Depth":0.25},"North":{"Position":{"X":-364,"Z":226.2},"Depth":2},"South":{"Position":{"X":-364,"Z":261.8},"Depth":2},"West":{"Position":{"X":-381.8,"Z":243.99385},"Depth":2},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-299.8871,"Z":244.1161},"Depth":0.25},"North":{"Position":{"X":-300,"Z":228.2},"Depth":2},"South":{"Position":{"X":-300,"Z":263.8},"Depth":2},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-232.3339,"Z":253.2937},"Depth":0.25},"North":{"Position":{"X":-232,"Z":238.2},"Depth":2},"South":{"Position":{"X":-232,"Z":273.8},"Depth":2},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":-214.2,"Z":256},"Depth":2}},{"Center":{"Position":{"X":-180.1405,"Z":252.934},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-406.5778,"Z":297.4088},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-351.621,"Z":296.9664},"Depth":0.25},"North":{"Position":{"X":-352,"Z":282.2},"Depth":2},"South":{"Position":{"X":-352,"Z":317.8},"Depth":2},"West":{"Position":{"X":-369.8,"Z":299.99387},"Depth":2},"East":{"Position":{"X":-334.2,"Z":299.99387},"Depth":2}},{"Center":{"Position":{"X":-299.914,"Z":297.3557},"Depth":0.25},"North":{"Position":{"X":-300,"Z":282.2},"Depth":2},"South":{"Position":{"X":-300,"Z":317.8},"Depth":2},"West":{"Position":{"X":-317.8,"Z":299.99387},"Depth":2},"East":{"Position":{"X":-282.2,"Z":299.99387},"Depth":2}},{"Center":{"Position":{"X":-244.3859,"Z":297.4952},"Depth":0.25},"North":{"Position":{"X":-244,"Z":294.2},"Depth":2},"South":{"Position":{"X":-244,"Z":329.8},"Depth":2},"West":{"Position":{"X":-261.8,"Z":311.99387},"Depth":2},"East":{"Position":{"X":-226.2,"Z":311.99387},"Depth":2}},{"Center":{"Position":{"X":-190.7164,"Z":308.6962},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-403.6229,"Z":348.9707},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-351.8816,"Z":348.9453},"Depth":0.25},"North":{"Position":{"X":-352,"Z":334.2},"Depth":2},"South":{"Position":{"X":-352,"Z":369.8},"Depth":2},"West":{"Position":{"X":-369.8,"Z":351.99387},"Depth":2},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-311.6316,"Z":353.3328},"Depth":0.25},"North":{"Position":{"X":-312,"Z":338.2},"Depth":2},"South":{"Position":{"X":-312,"Z":373.8},"Depth":2},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-244.4898,"Z":359.8373},"Depth":0.25},"North":{"Position":{"X":-244,"Z":346.2},"Depth":2},"South":{"Position":{"X":-244,"Z":381.8},"Depth":2},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":-226.2,"Z":363.99387},"Depth":2}},{"Center":{"Position":{"X":-192.1444,"Z":360.8743},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-363.3706,"Z":407.0828},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-299.9716,"Z":408.9295},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-230.1441,"Z":419.8333},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]}},"1.18":{"DungeonId":1,"Floorset":17,"RoomsA":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-375.8101,"Z":184.0421},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-287.8989,"Z":190.2825},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-219.2287,"Z":197.0434},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-417.0273,"Z":240.809},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-364.8857,"Z":240.4289},"Depth":0.25},"North":{"Position":{"X":-364,"Z":226.2},"Depth":2},"South":{"Position":{"X":-364,"Z":261.8},"Depth":2},"West":{"Position":{"X":-381.8,"Z":243.99385},"Depth":2},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-299.8871,"Z":244.1161},"Depth":0.25},"North":{"Position":{"X":-300,"Z":228.2},"Depth":2},"South":{"Position":{"X":-300,"Z":263.8},"Depth":2},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-232.3339,"Z":253.2937},"Depth":0.25},"North":{"Position":{"X":-232,"Z":238.2},"Depth":2},"South":{"Position":{"X":-232,"Z":273.8},"Depth":2},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":-214.2,"Z":256},"Depth":2}},{"Center":{"Position":{"X":-180.1405,"Z":252.934},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-406.5778,"Z":297.4088},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-351.621,"Z":296.9664},"Depth":0.25},"North":{"Position":{"X":-352,"Z":282.2},"Depth":2},"South":{"Position":{"X":-352,"Z":317.8},"Depth":2},"West":{"Position":{"X":-369.8,"Z":299.99387},"Depth":2},"East":{"Position":{"X":-334.2,"Z":299.99387},"Depth":2}},{"Center":{"Position":{"X":-299.914,"Z":297.3557},"Depth":0.25},"North":{"Position":{"X":-300,"Z":282.2},"Depth":2},"South":{"Position":{"X":-300,"Z":317.8},"Depth":2},"West":{"Position":{"X":-317.8,"Z":299.99387},"Depth":2},"East":{"Position":{"X":-282.2,"Z":299.99387},"Depth":2}},{"Center":{"Position":{"X":-244.3859,"Z":297.4952},"Depth":0.25},"North":{"Position":{"X":-244,"Z":294.2},"Depth":2},"South":{"Position":{"X":-244,"Z":329.8},"Depth":2},"West":{"Position":{"X":-261.8,"Z":311.99387},"Depth":2},"East":{"Position":{"X":-226.2,"Z":311.99387},"Depth":2}},{"Center":{"Position":{"X":-190.7164,"Z":308.6962},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-403.6229,"Z":348.9707},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-351.8816,"Z":348.9453},"Depth":0.25},"North":{"Position":{"X":-352,"Z":334.2},"Depth":2},"South":{"Position":{"X":-352,"Z":369.8},"Depth":2},"West":{"Position":{"X":-369.8,"Z":351.99387},"Depth":2},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-311.6316,"Z":353.3328},"Depth":0.25},"North":{"Position":{"X":-312,"Z":338.2},"Depth":2},"South":{"Position":{"X":-312,"Z":373.8},"Depth":2},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-244.4898,"Z":359.8373},"Depth":0.25},"North":{"Position":{"X":-244,"Z":346.2},"Depth":2},"South":{"Position":{"X":-244,"Z":381.8},"Depth":2},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":-226.2,"Z":363.99387},"Depth":2}},{"Center":{"Position":{"X":-192.1444,"Z":360.8743},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-363.3706,"Z":407.0828},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-299.9716,"Z":408.9295},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-230.1441,"Z":419.8333},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]},"RoomsB":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":243.5614,"Z":-404.8383},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":292.1822,"Z":-414.2727},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":388.0965,"Z":-403.584},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":204.5525,"Z":-346.565},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":255.7953,"Z":-345.8169},"Depth":0.25},"North":{"Position":{"X":256,"Z":-361.8},"Depth":2},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":238.2,"Z":-344.00613},"Depth":2},"East":{"Position":{"X":273.8,"Z":-344.00613},"Depth":2}},{"Center":{"Position":{"X":312.0199,"Z":-359.8006},"Depth":0.25},"North":{"Position":{"X":312,"Z":-373.8},"Depth":2},"South":{"Position":{"X":312.00613,"Z":-338.2},"Depth":2},"West":{"Position":{"X":294.2,"Z":-356.00613},"Depth":2},"East":{"Position":{"X":329.8,"Z":-356.00613},"Depth":2}},{"Center":{"Position":{"X":367.9919,"Z":-346.235},"Depth":0.25},"North":{"Position":{"X":368,"Z":-361.8},"Depth":2},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":350.2,"Z":-344.00613},"Depth":2},"East":{"Position":{"X":385.8,"Z":-344},"Depth":2}},{"Center":{"Position":{"X":423.9744,"Z":-358.9135},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":187.9247,"Z":-303.1526},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":243.8179,"Z":-290.1868},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":226.2,"Z":-288},"Depth":2},"East":{"Position":{"X":261.8,"Z":-288.00613},"Depth":2}},{"Center":{"Position":{"X":300.0593,"Z":-302.7772},"Depth":0.25},"North":{"Position":{"X":300,"Z":-317.8},"Depth":2},"South":{"Position":{"X":300.00613,"Z":-282.2},"Depth":2},"West":{"Position":{"X":282.2,"Z":-300.00613},"Depth":2},"East":{"Position":{"X":317.8,"Z":-300.00613},"Depth":2}},{"Center":{"Position":{"X":352.1592,"Z":-303.0645},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":334.2,"Z":-300.00613},"Depth":2},"East":{"Position":{"X":369.8,"Z":-300},"Depth":2}},{"Center":{"Position":{"X":407.5428,"Z":-314.7849},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":191.4722,"Z":-238.0882},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":248.2417,"Z":-250.4833},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":248,"Z":-230.2},"Depth":2},"West":{"Position":{"X":230.2,"Z":-248},"Depth":2},"East":{"Position":{"X":265.8,"Z":-248},"Depth":2}},{"Center":{"Position":{"X":299.6617,"Z":-250.8317},"Depth":0.25},"North":{"Position":{"X":300,"Z":-265.8},"Depth":2},"South":{"Position":{"X":300.00613,"Z":-230.2},"Depth":2},"West":{"Position":{"X":282.2,"Z":-248.00615},"Depth":2},"East":{"Position":{"X":317.8,"Z":-248.00615},"Depth":2}},{"Center":{"Position":{"X":355.2953,"Z":-262.2832},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":356.00613,"Z":-242.2},"Depth":2},"West":{"Position":{"X":338.2,"Z":-260.00613},"Depth":2},"East":{"Position":{"X":373.8,"Z":-260.00613},"Depth":2}},{"Center":{"Position":{"X":408.1609,"Z":-262.6852},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":248.2532,"Z":-195.6302},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":320.0034,"Z":-195.9265},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":368.0628,"Z":-206.9281},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]}},"1.19":{"DungeonId":1,"Floorset":18,"RoomsA":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":243.5614,"Z":-404.8383},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":292.1822,"Z":-414.2727},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":388.0965,"Z":-403.584},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":204.5525,"Z":-346.565},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":255.7953,"Z":-345.8169},"Depth":0.25},"North":{"Position":{"X":256,"Z":-361.8},"Depth":2},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":238.2,"Z":-344.00613},"Depth":2},"East":{"Position":{"X":273.8,"Z":-344.00613},"Depth":2}},{"Center":{"Position":{"X":312.0199,"Z":-359.8006},"Depth":0.25},"North":{"Position":{"X":312,"Z":-373.8},"Depth":2},"South":{"Position":{"X":312.00613,"Z":-338.2},"Depth":2},"West":{"Position":{"X":294.2,"Z":-356.00613},"Depth":2},"East":{"Position":{"X":329.8,"Z":-356.00613},"Depth":2}},{"Center":{"Position":{"X":367.9919,"Z":-346.235},"Depth":0.25},"North":{"Position":{"X":368,"Z":-361.8},"Depth":2},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":350.2,"Z":-344.00613},"Depth":2},"East":{"Position":{"X":385.8,"Z":-344},"Depth":2}},{"Center":{"Position":{"X":423.9744,"Z":-358.9135},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":187.9247,"Z":-303.1526},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":243.8179,"Z":-290.1868},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":226.2,"Z":-288},"Depth":2},"East":{"Position":{"X":261.8,"Z":-288.00613},"Depth":2}},{"Center":{"Position":{"X":300.0593,"Z":-302.7772},"Depth":0.25},"North":{"Position":{"X":300,"Z":-317.8},"Depth":2},"South":{"Position":{"X":300.00613,"Z":-282.2},"Depth":2},"West":{"Position":{"X":282.2,"Z":-300.00613},"Depth":2},"East":{"Position":{"X":317.8,"Z":-300.00613},"Depth":2}},{"Center":{"Position":{"X":352.1592,"Z":-303.0645},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":334.2,"Z":-300.00613},"Depth":2},"East":{"Position":{"X":369.8,"Z":-300},"Depth":2}},{"Center":{"Position":{"X":407.5428,"Z":-314.7849},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":191.4722,"Z":-238.0882},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":248.2417,"Z":-250.4833},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":248,"Z":-230.2},"Depth":2},"West":{"Position":{"X":230.2,"Z":-248},"Depth":2},"East":{"Position":{"X":265.8,"Z":-248},"Depth":2}},{"Center":{"Position":{"X":299.6617,"Z":-250.8317},"Depth":0.25},"North":{"Position":{"X":300,"Z":-265.8},"Depth":2},"South":{"Position":{"X":300.00613,"Z":-230.2},"Depth":2},"West":{"Position":{"X":282.2,"Z":-248.00615},"Depth":2},"East":{"Position":{"X":317.8,"Z":-248.00615},"Depth":2}},{"Center":{"Position":{"X":355.2953,"Z":-262.2832},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":356.00613,"Z":-242.2},"Depth":2},"West":{"Position":{"X":338.2,"Z":-260.00613},"Depth":2},"East":{"Position":{"X":373.8,"Z":-260.00613},"Depth":2}},{"Center":{"Position":{"X":408.1609,"Z":-262.6852},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":248.2532,"Z":-195.6302},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":320.0034,"Z":-195.9265},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":368.0628,"Z":-206.9281},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]},"RoomsB":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-375.8101,"Z":184.0421},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-287.8989,"Z":190.2825},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-219.2287,"Z":197.0434},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-417.0273,"Z":240.809},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-364.8857,"Z":240.4289},"Depth":0.25},"North":{"Position":{"X":-364,"Z":226.2},"Depth":2},"South":{"Position":{"X":-364,"Z":261.8},"Depth":2},"West":{"Position":{"X":-381.8,"Z":243.99385},"Depth":2},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-299.8871,"Z":244.1161},"Depth":0.25},"North":{"Position":{"X":-300,"Z":228.2},"Depth":2},"South":{"Position":{"X":-300,"Z":263.8},"Depth":2},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-232.3339,"Z":253.2937},"Depth":0.25},"North":{"Position":{"X":-232,"Z":238.2},"Depth":2},"South":{"Position":{"X":-232,"Z":273.8},"Depth":2},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":-214.2,"Z":256},"Depth":2}},{"Center":{"Position":{"X":-180.1405,"Z":252.934},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-406.5778,"Z":297.4088},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-351.621,"Z":296.9664},"Depth":0.25},"North":{"Position":{"X":-352,"Z":282.2},"Depth":2},"South":{"Position":{"X":-352,"Z":317.8},"Depth":2},"West":{"Position":{"X":-369.8,"Z":299.99387},"Depth":2},"East":{"Position":{"X":-334.2,"Z":299.99387},"Depth":2}},{"Center":{"Position":{"X":-299.914,"Z":297.3557},"Depth":0.25},"North":{"Position":{"X":-300,"Z":282.2},"Depth":2},"South":{"Position":{"X":-300,"Z":317.8},"Depth":2},"West":{"Position":{"X":-317.8,"Z":299.99387},"Depth":2},"East":{"Position":{"X":-282.2,"Z":299.99387},"Depth":2}},{"Center":{"Position":{"X":-244.3859,"Z":297.4952},"Depth":0.25},"North":{"Position":{"X":-244,"Z":294.2},"Depth":2},"South":{"Position":{"X":-244,"Z":329.8},"Depth":2},"West":{"Position":{"X":-261.8,"Z":311.99387},"Depth":2},"East":{"Position":{"X":-226.2,"Z":311.99387},"Depth":2}},{"Center":{"Position":{"X":-190.7164,"Z":308.6962},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-403.6229,"Z":348.9707},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-351.8816,"Z":348.9453},"Depth":0.25},"North":{"Position":{"X":-352,"Z":334.2},"Depth":2},"South":{"Position":{"X":-352,"Z":369.8},"Depth":2},"West":{"Position":{"X":-369.8,"Z":351.99387},"Depth":2},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-311.6316,"Z":353.3328},"Depth":0.25},"North":{"Position":{"X":-312,"Z":338.2},"Depth":2},"South":{"Position":{"X":-312,"Z":373.8},"Depth":2},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-244.4898,"Z":359.8373},"Depth":0.25},"North":{"Position":{"X":-244,"Z":346.2},"Depth":2},"South":{"Position":{"X":-244,"Z":381.8},"Depth":2},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":-226.2,"Z":363.99387},"Depth":2}},{"Center":{"Position":{"X":-192.1444,"Z":360.8743},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-363.3706,"Z":407.0828},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-299.9716,"Z":408.9295},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-230.1441,"Z":419.8333},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]}},"1.20":{"DungeonId":1,"Floorset":19,"RoomsA":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-375.8101,"Z":184.0421},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-287.8989,"Z":190.2825},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-219.2287,"Z":197.0434},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-417.0273,"Z":240.809},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-364.8857,"Z":240.4289},"Depth":0.25},"North":{"Position":{"X":-364,"Z":226.2},"Depth":2},"South":{"Position":{"X":-364,"Z":261.8},"Depth":2},"West":{"Position":{"X":-381.8,"Z":243.99385},"Depth":2},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-299.8871,"Z":244.1161},"Depth":0.25},"North":{"Position":{"X":-300,"Z":228.2},"Depth":2},"South":{"Position":{"X":-300,"Z":263.8},"Depth":2},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-232.3339,"Z":253.2937},"Depth":0.25},"North":{"Position":{"X":-232,"Z":238.2},"Depth":2},"South":{"Position":{"X":-232,"Z":273.8},"Depth":2},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":-214.2,"Z":256},"Depth":2}},{"Center":{"Position":{"X":-180.1405,"Z":252.934},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-406.5778,"Z":297.4088},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-351.621,"Z":296.9664},"Depth":0.25},"North":{"Position":{"X":-352,"Z":282.2},"Depth":2},"South":{"Position":{"X":-352,"Z":317.8},"Depth":2},"West":{"Position":{"X":-369.8,"Z":299.99387},"Depth":2},"East":{"Position":{"X":-334.2,"Z":299.99387},"Depth":2}},{"Center":{"Position":{"X":-299.914,"Z":297.3557},"Depth":0.25},"North":{"Position":{"X":-300,"Z":282.2},"Depth":2},"South":{"Position":{"X":-300,"Z":317.8},"Depth":2},"West":{"Position":{"X":-317.8,"Z":299.99387},"Depth":2},"East":{"Position":{"X":-282.2,"Z":299.99387},"Depth":2}},{"Center":{"Position":{"X":-244.3859,"Z":297.4952},"Depth":0.25},"North":{"Position":{"X":-244,"Z":294.2},"Depth":2},"South":{"Position":{"X":-244,"Z":329.8},"Depth":2},"West":{"Position":{"X":-261.8,"Z":311.99387},"Depth":2},"East":{"Position":{"X":-226.2,"Z":311.99387},"Depth":2}},{"Center":{"Position":{"X":-190.7164,"Z":308.6962},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-403.6229,"Z":348.9707},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-351.8816,"Z":348.9453},"Depth":0.25},"North":{"Position":{"X":-352,"Z":334.2},"Depth":2},"South":{"Position":{"X":-352,"Z":369.8},"Depth":2},"West":{"Position":{"X":-369.8,"Z":351.99387},"Depth":2},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-311.6316,"Z":353.3328},"Depth":0.25},"North":{"Position":{"X":-312,"Z":338.2},"Depth":2},"South":{"Position":{"X":-312,"Z":373.8},"Depth":2},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-244.4898,"Z":359.8373},"Depth":0.25},"North":{"Position":{"X":-244,"Z":346.2},"Depth":2},"South":{"Position":{"X":-244,"Z":381.8},"Depth":2},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":-226.2,"Z":363.99387},"Depth":2}},{"Center":{"Position":{"X":-192.1444,"Z":360.8743},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-363.3706,"Z":407.0828},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-299.9716,"Z":408.9295},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-230.1441,"Z":419.8333},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]},"RoomsB":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":243.5614,"Z":-404.8383},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":292.1822,"Z":-414.2727},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":388.0965,"Z":-403.584},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":204.5525,"Z":-346.565},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":255.7953,"Z":-345.8169},"Depth":0.25},"North":{"Position":{"X":256,"Z":-361.8},"Depth":2},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":238.2,"Z":-344.00613},"Depth":2},"East":{"Position":{"X":273.8,"Z":-344.00613},"Depth":2}},{"Center":{"Position":{"X":312.0199,"Z":-359.8006},"Depth":0.25},"North":{"Position":{"X":312,"Z":-373.8},"Depth":2},"South":{"Position":{"X":312.00613,"Z":-338.2},"Depth":2},"West":{"Position":{"X":294.2,"Z":-356.00613},"Depth":2},"East":{"Position":{"X":329.8,"Z":-356.00613},"Depth":2}},{"Center":{"Position":{"X":367.9919,"Z":-346.235},"Depth":0.25},"North":{"Position":{"X":368,"Z":-361.8},"Depth":2},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":350.2,"Z":-344.00613},"Depth":2},"East":{"Position":{"X":385.8,"Z":-344},"Depth":2}},{"Center":{"Position":{"X":423.9744,"Z":-358.9135},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":187.9247,"Z":-303.1526},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":243.8179,"Z":-290.1868},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":226.2,"Z":-288},"Depth":2},"East":{"Position":{"X":261.8,"Z":-288.00613},"Depth":2}},{"Center":{"Position":{"X":300.0593,"Z":-302.7772},"Depth":0.25},"North":{"Position":{"X":300,"Z":-317.8},"Depth":2},"South":{"Position":{"X":300.00613,"Z":-282.2},"Depth":2},"West":{"Position":{"X":282.2,"Z":-300.00613},"Depth":2},"East":{"Position":{"X":317.8,"Z":-300.00613},"Depth":2}},{"Center":{"Position":{"X":352.1592,"Z":-303.0645},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":334.2,"Z":-300.00613},"Depth":2},"East":{"Position":{"X":369.8,"Z":-300},"Depth":2}},{"Center":{"Position":{"X":407.5428,"Z":-314.7849},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":191.4722,"Z":-238.0882},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":248.2417,"Z":-250.4833},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":248,"Z":-230.2},"Depth":2},"West":{"Position":{"X":230.2,"Z":-248},"Depth":2},"East":{"Position":{"X":265.8,"Z":-248},"Depth":2}},{"Center":{"Position":{"X":299.6617,"Z":-250.8317},"Depth":0.25},"North":{"Position":{"X":300,"Z":-265.8},"Depth":2},"South":{"Position":{"X":300.00613,"Z":-230.2},"Depth":2},"West":{"Position":{"X":282.2,"Z":-248.00615},"Depth":2},"East":{"Position":{"X":317.8,"Z":-248.00615},"Depth":2}},{"Center":{"Position":{"X":355.2953,"Z":-262.2832},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":356.00613,"Z":-242.2},"Depth":2},"West":{"Position":{"X":338.2,"Z":-260.00613},"Depth":2},"East":{"Position":{"X":373.8,"Z":-260.00613},"Depth":2}},{"Center":{"Position":{"X":408.1609,"Z":-262.6852},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":248.2532,"Z":-195.6302},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":320.0034,"Z":-195.9265},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":368.0628,"Z":-206.9281},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]}},"2.1":{"DungeonId":2,"Floorset":0,"RoomsA":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-372,"Z":185},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-288,"Z":184},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-224,"Z":196},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-404,"Z":241},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-352,"Z":241},"Depth":0.25},"North":{"Position":{"X":-352,"Z":225.52298},"Depth":1},"South":{"Position":{"X":-352,"Z":262.47702},"Depth":1},"West":{"Position":{"X":-370.47702,"Z":244},"Depth":1},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-300.5,"Z":241},"Depth":0.25},"North":{"Position":{"X":-300,"Z":225.52298},"Depth":1},"South":{"Position":{"X":-300,"Z":262.47702},"Depth":1},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-236,"Z":252},"Depth":0.25},"North":{"Position":{"X":-236,"Z":236.52298},"Depth":1},"South":{"Position":{"X":-236,"Z":273.47702},"Depth":1},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":-217.52298,"Z":255},"Depth":1}},{"Center":{"Position":{"X":-192,"Z":251.5},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-418,"Z":297},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-364,"Z":297},"Depth":0.25},"North":{"Position":{"X":-364,"Z":281.52298},"Depth":1},"South":{"Position":{"X":-364,"Z":318.47702},"Depth":1},"West":{"Position":{"X":-382.47702,"Z":300},"Depth":1},"East":{"Position":{"X":-345.52298,"Z":300},"Depth":1}},{"Center":{"Position":{"X":-300,"Z":297},"Depth":0.25},"North":{"Position":{"X":-300,"Z":279.2241},"Depth":1},"South":{"Position":{"X":-300,"Z":320.48972},"Depth":1},"West":{"Position":{"X":-316.96402,"Z":299.99362},"Depth":1},"East":{"Position":{"X":-283.0333,"Z":299.99362},"Depth":1}},{"Center":{"Position":{"X":-236,"Z":309.5},"Depth":0.25},"North":{"Position":{"X":-236,"Z":293.52298},"Depth":1},"South":{"Position":{"X":-236,"Z":330.47702},"Depth":1},"West":{"Position":{"X":-254.47702,"Z":311.99362},"Depth":1},"East":{"Position":{"X":-217.52298,"Z":312},"Depth":1}},{"Center":{"Position":{"X":-180.5,"Z":309},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-404,"Z":353},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-352,"Z":353},"Depth":0.25},"North":{"Position":{"X":-352,"Z":337.52298},"Depth":1},"South":{"Position":{"X":-352,"Z":374.47702},"Depth":1},"West":{"Position":{"X":-370.47702,"Z":356},"Depth":1},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-300,"Z":353},"Depth":0.25},"North":{"Position":{"X":-300,"Z":337.52298},"Depth":1},"South":{"Position":{"X":-300,"Z":374.47702},"Depth":1},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-236,"Z":365},"Depth":0.25},"North":{"Position":{"X":-236,"Z":347.1641},"Depth":1},"South":{"Position":{"X":-236,"Z":388.4797},"Depth":1},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":-219.14818,"Z":367.99362},"Depth":1}},{"Center":{"Position":{"X":-184.5,"Z":365},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-364,"Z":407},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-280,"Z":409},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-224,"Z":423},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]},"RoomsB":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":244,"Z":-414},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":292,"Z":-414.5},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":380,"Z":-414},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":202,"Z":-348},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":256,"Z":-348},"Depth":0.25},"North":{"Position":{"X":256,"Z":-363.47702},"Depth":1},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":237.52298,"Z":-345},"Depth":1},"East":{"Position":{"X":274.47702,"Z":-345},"Depth":1}},{"Center":{"Position":{"X":312,"Z":-360},"Depth":0.25},"North":{"Position":{"X":312,"Z":-375.47702},"Depth":1},"South":{"Position":{"X":312,"Z":-338.52298},"Depth":1},"West":{"Position":{"X":293.52298,"Z":-357.00638},"Depth":1},"East":{"Position":{"X":330.47702,"Z":-357},"Depth":1}},{"Center":{"Position":{"X":368,"Z":-348},"Depth":0.25},"North":{"Position":{"X":368,"Z":-363.47702},"Depth":1},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":349.52298,"Z":-345},"Depth":1},"East":{"Position":{"X":386.47702,"Z":-345},"Depth":1}},{"Center":{"Position":{"X":432.5,"Z":-360},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":188,"Z":-304},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":244,"Z":-291.5},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":225.52298,"Z":-289},"Depth":1},"East":{"Position":{"X":262.47702,"Z":-289},"Depth":1}},{"Center":{"Position":{"X":300,"Z":-304},"Depth":0.25},"North":{"Position":{"X":300,"Z":-319.47702},"Depth":1},"South":{"Position":{"X":300,"Z":-282.52298},"Depth":1},"West":{"Position":{"X":281.52298,"Z":-301},"Depth":1},"East":{"Position":{"X":318.47702,"Z":-301},"Depth":1}},{"Center":{"Position":{"X":356,"Z":-292},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":337.52298,"Z":-289},"Depth":1},"East":{"Position":{"X":374.47702,"Z":-289},"Depth":1}},{"Center":{"Position":{"X":409.5,"Z":-292.5},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":195.5,"Z":-234},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":246,"Z":-234},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":246,"Z":-210.41537},"Depth":1},"West":{"Position":{"X":228.99098,"Z":-231},"Depth":1},"East":{"Position":{"X":262.74982,"Z":-231},"Depth":1}},{"Center":{"Position":{"X":300,"Z":-246},"Depth":0.25},"North":{"Position":{"X":300,"Z":-261.47702},"Depth":1},"South":{"Position":{"X":300,"Z":-224.52298},"Depth":1},"West":{"Position":{"X":281.52298,"Z":-243},"Depth":1},"East":{"Position":{"X":318.47702,"Z":-243},"Depth":1}},{"Center":{"Position":{"X":354.5,"Z":-234},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":354.4832,"Z":-210.23747},"Depth":1},"West":{"Position":{"X":337.5438,"Z":-231.00638},"Depth":1},"East":{"Position":{"X":371.3586,"Z":-231.00638},"Depth":1}},{"Center":{"Position":{"X":405,"Z":-234},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":234,"Z":-174.5},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":320.5,"Z":-190},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":366.5,"Z":-176},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]}},"2.2":{"DungeonId":2,"Floorset":1,"RoomsA":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-372,"Z":185},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-288,"Z":184},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-224,"Z":196},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-404,"Z":241},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-352,"Z":241},"Depth":0.25},"North":{"Position":{"X":-351.9999,"Z":225.52298},"Depth":1},"South":{"Position":{"X":-351.9999,"Z":262.47702},"Depth":1},"West":{"Position":{"X":-370.47693,"Z":243.99362},"Depth":1},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-300.5,"Z":241},"Depth":0.25},"North":{"Position":{"X":-299.9999,"Z":225.52298},"Depth":1},"South":{"Position":{"X":-299.9999,"Z":262.47702},"Depth":1},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-236,"Z":252},"Depth":0.25},"North":{"Position":{"X":-235.9999,"Z":236.52298},"Depth":1},"South":{"Position":{"X":-236,"Z":273.47702},"Depth":1},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":-217.52287,"Z":254.99362},"Depth":1}},{"Center":{"Position":{"X":-192,"Z":251.5},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-418,"Z":297},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-364,"Z":297},"Depth":0.25},"North":{"Position":{"X":-364,"Z":281.5229},"Depth":1},"South":{"Position":{"X":-364,"Z":318.47693},"Depth":1},"West":{"Position":{"X":-382.47702,"Z":299.99353},"Depth":1},"East":{"Position":{"X":-345.52298,"Z":299.99353},"Depth":1}},{"Center":{"Position":{"X":-300,"Z":297},"Depth":0.25},"North":{"Position":{"X":-300,"Z":279.22397},"Depth":1},"South":{"Position":{"X":-300,"Z":320.48962},"Depth":1},"West":{"Position":{"X":-316.96402,"Z":299.99353},"Depth":1},"East":{"Position":{"X":-283.0333,"Z":299.99353},"Depth":1}},{"Center":{"Position":{"X":-236,"Z":309.5},"Depth":0.25},"North":{"Position":{"X":-236,"Z":293.52298},"Depth":1},"South":{"Position":{"X":-236,"Z":330.47702},"Depth":1},"West":{"Position":{"X":-254.47702,"Z":311.99362},"Depth":1},"East":{"Position":{"X":-217.52298,"Z":311.99362},"Depth":1}},{"Center":{"Position":{"X":-180.5,"Z":309},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-404,"Z":353},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-352,"Z":353},"Depth":0.25},"North":{"Position":{"X":-352,"Z":337.5229},"Depth":1},"South":{"Position":{"X":-352,"Z":374.47693},"Depth":1},"West":{"Position":{"X":-370.47702,"Z":355.99353},"Depth":1},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-300,"Z":353},"Depth":0.25},"North":{"Position":{"X":-300,"Z":337.5229},"Depth":1},"South":{"Position":{"X":-300,"Z":374.47693},"Depth":1},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-236,"Z":365},"Depth":0.25},"North":{"Position":{"X":-236,"Z":347.1641},"Depth":1},"South":{"Position":{"X":-236,"Z":388.4797},"Depth":1},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":-219.14818,"Z":367.99362},"Depth":1}},{"Center":{"Position":{"X":-184.5,"Z":365},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-364,"Z":407},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-280,"Z":409},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-224,"Z":423},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]},"RoomsB":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":244,"Z":-414},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":292,"Z":-414.5},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":380,"Z":-414},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":202,"Z":-348},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":256,"Z":-348},"Depth":0.25},"North":{"Position":{"X":255.99991,"Z":-363.47693},"Depth":1},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":237.52287,"Z":-345.0063},"Depth":1},"East":{"Position":{"X":274.47702,"Z":-345.0063},"Depth":1}},{"Center":{"Position":{"X":312,"Z":-360},"Depth":0.25},"North":{"Position":{"X":311.9999,"Z":-375.47693},"Depth":1},"South":{"Position":{"X":311.9999,"Z":-338.5229},"Depth":1},"West":{"Position":{"X":293.5229,"Z":-357.0063},"Depth":1},"East":{"Position":{"X":330.47693,"Z":-357.0063},"Depth":1}},{"Center":{"Position":{"X":368,"Z":-348},"Depth":0.25},"North":{"Position":{"X":368,"Z":-363.47693},"Depth":1},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":349.52298,"Z":-345.0063},"Depth":1},"East":{"Position":{"X":386.47702,"Z":-345.0063},"Depth":1}},{"Center":{"Position":{"X":432.5,"Z":-360},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":188,"Z":-304},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":244,"Z":-291.5},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":225.52298,"Z":-289.00616},"Depth":1},"East":{"Position":{"X":262.47702,"Z":-289.00616},"Depth":1}},{"Center":{"Position":{"X":300,"Z":-304},"Depth":0.25},"North":{"Position":{"X":300,"Z":-319.47693},"Depth":1},"South":{"Position":{"X":300,"Z":-282.5229},"Depth":1},"West":{"Position":{"X":281.52298,"Z":-301.0063},"Depth":1},"East":{"Position":{"X":318.47702,"Z":-301.0063},"Depth":1}},{"Center":{"Position":{"X":356,"Z":-292},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":337.52298,"Z":-289.0063},"Depth":1},"East":{"Position":{"X":374.47702,"Z":-289.0063},"Depth":1}},{"Center":{"Position":{"X":409.5,"Z":-292.5},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":195.5,"Z":-234},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":246,"Z":-234},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":245.99998,"Z":-210.41537},"Depth":1},"West":{"Position":{"X":228.99098,"Z":-231.00638},"Depth":1},"East":{"Position":{"X":262.79282,"Z":-231.00638},"Depth":1}},{"Center":{"Position":{"X":300,"Z":-246},"Depth":0.25},"North":{"Position":{"X":300,"Z":-261.47702},"Depth":1},"South":{"Position":{"X":300,"Z":-224.52298},"Depth":1},"West":{"Position":{"X":281.52298,"Z":-243.00638},"Depth":1},"East":{"Position":{"X":318.47702,"Z":-243.00638},"Depth":1}},{"Center":{"Position":{"X":354.5,"Z":-234},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":354.4832,"Z":-210.23747},"Depth":1},"West":{"Position":{"X":337.5438,"Z":-231.00638},"Depth":1},"East":{"Position":{"X":371.3586,"Z":-231.00638},"Depth":1}},{"Center":{"Position":{"X":405,"Z":-234},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":234,"Z":-174.5},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":320.5,"Z":-190},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":366.5,"Z":-176},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]}},"2.3":{"DungeonId":2,"Floorset":2,"RoomsA":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-372,"Z":185},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-288,"Z":181},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-224,"Z":197},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-404,"Z":241},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-352,"Z":241},"Depth":0.25},"North":{"Position":{"X":-352,"Z":225.3},"Depth":1},"South":{"Position":{"X":-352,"Z":262.7},"Depth":1},"West":{"Position":{"X":-370.7,"Z":243.99355},"Depth":1},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-300,"Z":241},"Depth":0.25},"North":{"Position":{"X":-300,"Z":225.3},"Depth":1},"South":{"Position":{"X":-300,"Z":262.7},"Depth":1},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-236,"Z":253},"Depth":0.25},"North":{"Position":{"X":-236,"Z":237.3},"Depth":1},"South":{"Position":{"X":-236.01291,"Z":274.7},"Depth":1},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":-217.3,"Z":255.99355},"Depth":1}},{"Center":{"Position":{"X":-180,"Z":253},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-416,"Z":297},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-364,"Z":297},"Depth":0.25},"North":{"Position":{"X":-364,"Z":281.3},"Depth":1},"South":{"Position":{"X":-363.9871,"Z":318.7},"Depth":1},"West":{"Position":{"X":-382.7,"Z":299.99353},"Depth":1},"East":{"Position":{"X":-345.30002,"Z":299.97858},"Depth":1}},{"Center":{"Position":{"X":-300,"Z":297},"Depth":0.25},"North":{"Position":{"X":-300,"Z":277.3},"Depth":1},"South":{"Position":{"X":-299.9871,"Z":322.7},"Depth":1},"West":{"Position":{"X":-318.7,"Z":299.99353},"Depth":1},"East":{"Position":{"X":-281.30002,"Z":299.97858},"Depth":1}},{"Center":{"Position":{"X":-236,"Z":309},"Depth":0.25},"North":{"Position":{"X":-236,"Z":293.3},"Depth":1},"South":{"Position":{"X":-235.98709,"Z":330.7},"Depth":1},"West":{"Position":{"X":-254.7,"Z":311.99353},"Depth":1},"East":{"Position":{"X":-217.3,"Z":311.99353},"Depth":1}},{"Center":{"Position":{"X":-184,"Z":309},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-404,"Z":353},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-352,"Z":353},"Depth":0.25},"North":{"Position":{"X":-352,"Z":337.3},"Depth":1},"South":{"Position":{"X":-351.9871,"Z":374.7},"Depth":1},"West":{"Position":{"X":-370.7,"Z":355.99353},"Depth":1},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-300,"Z":353},"Depth":0.25},"North":{"Position":{"X":-300,"Z":337.2999},"Depth":1},"South":{"Position":{"X":-300,"Z":374.69992},"Depth":1},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-236,"Z":365},"Depth":0.25},"North":{"Position":{"X":-236,"Z":345.3},"Depth":1},"South":{"Position":{"X":-236.01291,"Z":390.7},"Depth":1},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":-217.3,"Z":367.99353},"Depth":1}},{"Center":{"Position":{"X":-184,"Z":365},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-364,"Z":409},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-280,"Z":408.8071},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-224,"Z":425},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]},"RoomsB":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":244,"Z":-411},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":292,"Z":-415},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":380,"Z":-411},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":204,"Z":-347},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":256,"Z":-347},"Depth":0.25},"North":{"Position":{"X":256,"Z":-362.7},"Depth":1},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":237.3,"Z":-344.00647},"Depth":1},"East":{"Position":{"X":274.7,"Z":-344.00647},"Depth":1}},{"Center":{"Position":{"X":312,"Z":-359},"Depth":0.25},"North":{"Position":{"X":312,"Z":-374.7},"Depth":1},"South":{"Position":{"X":311.9871,"Z":-337.3},"Depth":1},"West":{"Position":{"X":293.3,"Z":-356},"Depth":1},"East":{"Position":{"X":330.7,"Z":-356.00647},"Depth":1}},{"Center":{"Position":{"X":368,"Z":-347},"Depth":0.25},"North":{"Position":{"X":368,"Z":-362.7},"Depth":1},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":349.3,"Z":-344.00647},"Depth":1},"East":{"Position":{"X":386.7,"Z":-344.00647},"Depth":1}},{"Center":{"Position":{"X":424,"Z":-359},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":188,"Z":-303},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":244,"Z":-291},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":225.3,"Z":-288},"Depth":1},"East":{"Position":{"X":262.7,"Z":-288.00647},"Depth":1}},{"Center":{"Position":{"X":300,"Z":-303},"Depth":0.25},"North":{"Position":{"X":300.01495,"Z":-318.69998},"Depth":1},"South":{"Position":{"X":299.9871,"Z":-281.3},"Depth":1},"West":{"Position":{"X":281.30002,"Z":-300.02142},"Depth":1},"East":{"Position":{"X":318.7,"Z":-300.01117},"Depth":1}},{"Center":{"Position":{"X":356,"Z":-291},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":337.3,"Z":-288.01117},"Depth":1},"East":{"Position":{"X":374.7,"Z":-288.01117},"Depth":1}},{"Center":{"Position":{"X":420,"Z":-291},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":192,"Z":-235},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":244,"Z":-235},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":243.98709,"Z":-209.3},"Depth":1},"West":{"Position":{"X":225.3,"Z":-232.00645},"Depth":1},"East":{"Position":{"X":262.7,"Z":-232.00645},"Depth":1}},{"Center":{"Position":{"X":300,"Z":-247},"Depth":0.25},"North":{"Position":{"X":299.99527,"Z":-262.7},"Depth":1},"South":{"Position":{"X":300,"Z":-225.3},"Depth":1},"West":{"Position":{"X":281.3,"Z":-244},"Depth":1},"East":{"Position":{"X":318.7,"Z":-244.01118},"Depth":1}},{"Center":{"Position":{"X":356,"Z":-235},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":355.98236,"Z":-209.3},"Depth":1},"West":{"Position":{"X":337.3,"Z":-232.01118},"Depth":1},"East":{"Position":{"X":374.7,"Z":-232.01118},"Depth":1}},{"Center":{"Position":{"X":408,"Z":-235},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":232,"Z":-171},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":320,"Z":-191},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":368,"Z":-175},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]}},"2.4":{"DungeonId":2,"Floorset":3,"RoomsA":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-372,"Z":185},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-288,"Z":181},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-224,"Z":197},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-404,"Z":241},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-352,"Z":241},"Depth":0.25},"North":{"Position":{"X":-352,"Z":225.3},"Depth":1},"South":{"Position":{"X":-352,"Z":262.7},"Depth":1},"West":{"Position":{"X":-370.7,"Z":243.99355},"Depth":1},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-300,"Z":241},"Depth":0.25},"North":{"Position":{"X":-300,"Z":225.3},"Depth":1},"South":{"Position":{"X":-300,"Z":262.7},"Depth":1},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-236,"Z":253},"Depth":0.25},"North":{"Position":{"X":-236,"Z":237.3},"Depth":1},"South":{"Position":{"X":-236.01291,"Z":274.7},"Depth":1},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":-217.3,"Z":255.99355},"Depth":1}},{"Center":{"Position":{"X":-180,"Z":253},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-416,"Z":297},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-364,"Z":297},"Depth":0.25},"North":{"Position":{"X":-364,"Z":281.3},"Depth":1},"South":{"Position":{"X":-363.9871,"Z":318.7},"Depth":1},"West":{"Position":{"X":-382.7,"Z":299.99353},"Depth":1},"East":{"Position":{"X":-345.30002,"Z":299.97858},"Depth":1}},{"Center":{"Position":{"X":-300,"Z":297},"Depth":0.25},"North":{"Position":{"X":-300,"Z":277.3},"Depth":1},"South":{"Position":{"X":-299.9871,"Z":322.7},"Depth":1},"West":{"Position":{"X":-318.7,"Z":299.99353},"Depth":1},"East":{"Position":{"X":-281.30002,"Z":299.97858},"Depth":1}},{"Center":{"Position":{"X":-236,"Z":309},"Depth":0.25},"North":{"Position":{"X":-236,"Z":293.3},"Depth":1},"South":{"Position":{"X":-235.98709,"Z":330.7},"Depth":1},"West":{"Position":{"X":-254.7,"Z":311.99353},"Depth":1},"East":{"Position":{"X":-217.3,"Z":311.99353},"Depth":1}},{"Center":{"Position":{"X":-184,"Z":309},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-404,"Z":353},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-352,"Z":353},"Depth":0.25},"North":{"Position":{"X":-352,"Z":337.3},"Depth":1},"South":{"Position":{"X":-351.9871,"Z":374.7},"Depth":1},"West":{"Position":{"X":-370.7,"Z":355.99353},"Depth":1},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-300,"Z":353},"Depth":0.25},"North":{"Position":{"X":-300,"Z":337.2999},"Depth":1},"South":{"Position":{"X":-300,"Z":374.69992},"Depth":1},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-236,"Z":365},"Depth":0.25},"North":{"Position":{"X":-236,"Z":345.3},"Depth":1},"South":{"Position":{"X":-236.01291,"Z":390.7},"Depth":1},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":-217.3,"Z":367.99353},"Depth":1}},{"Center":{"Position":{"X":-184,"Z":365},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-364,"Z":409},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-280,"Z":408.8071},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-224,"Z":425},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]},"RoomsB":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":244,"Z":-411},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":292,"Z":-415},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":380,"Z":-411},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":204,"Z":-347},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":256,"Z":-347},"Depth":0.25},"North":{"Position":{"X":256,"Z":-362.7},"Depth":1},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":237.3,"Z":-344.00647},"Depth":1},"East":{"Position":{"X":274.7,"Z":-344.00647},"Depth":1}},{"Center":{"Position":{"X":312,"Z":-359},"Depth":0.25},"North":{"Position":{"X":312,"Z":-374.7},"Depth":1},"South":{"Position":{"X":311.9871,"Z":-337.3},"Depth":1},"West":{"Position":{"X":293.3,"Z":-356},"Depth":1},"East":{"Position":{"X":330.7,"Z":-356.00647},"Depth":1}},{"Center":{"Position":{"X":368,"Z":-347},"Depth":0.25},"North":{"Position":{"X":368,"Z":-362.7},"Depth":1},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":349.3,"Z":-344.00647},"Depth":1},"East":{"Position":{"X":386.7,"Z":-344.00647},"Depth":1}},{"Center":{"Position":{"X":424,"Z":-359},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":188,"Z":-303},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":244,"Z":-291},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":225.3,"Z":-288},"Depth":1},"East":{"Position":{"X":262.7,"Z":-288.00647},"Depth":1}},{"Center":{"Position":{"X":300,"Z":-303},"Depth":0.25},"North":{"Position":{"X":300.01495,"Z":-318.69998},"Depth":1},"South":{"Position":{"X":299.9871,"Z":-281.3},"Depth":1},"West":{"Position":{"X":281.30002,"Z":-300.02142},"Depth":1},"East":{"Position":{"X":318.7,"Z":-300.01117},"Depth":1}},{"Center":{"Position":{"X":356,"Z":-291},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":337.3,"Z":-288.01117},"Depth":1},"East":{"Position":{"X":374.7,"Z":-288.01117},"Depth":1}},{"Center":{"Position":{"X":420,"Z":-291},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":192,"Z":-235},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":244,"Z":-235},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":243.98709,"Z":-209.3},"Depth":1},"West":{"Position":{"X":225.3,"Z":-232.00645},"Depth":1},"East":{"Position":{"X":262.7,"Z":-232.00645},"Depth":1}},{"Center":{"Position":{"X":300,"Z":-247},"Depth":0.25},"North":{"Position":{"X":299.99527,"Z":-262.7},"Depth":1},"South":{"Position":{"X":300,"Z":-225.3},"Depth":1},"West":{"Position":{"X":281.3,"Z":-244},"Depth":1},"East":{"Position":{"X":318.7,"Z":-244.01118},"Depth":1}},{"Center":{"Position":{"X":356,"Z":-235},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":355.98236,"Z":-209.3},"Depth":1},"West":{"Position":{"X":337.3,"Z":-232.01118},"Depth":1},"East":{"Position":{"X":374.7,"Z":-232.01118},"Depth":1}},{"Center":{"Position":{"X":408,"Z":-235},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":232,"Z":-171},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":320,"Z":-191},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":368,"Z":-175},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]}},"2.5":{"DungeonId":2,"Floorset":4,"RoomsA":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-355.8573,"Z":185.2251},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-288.002,"Z":177.2258},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-231.9923,"Z":188.9541},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-391.9843,"Z":241.0407},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-343.7905,"Z":241.2819},"Depth":0.25},"North":{"Position":{"X":-344,"Z":228},"Depth":1},"South":{"Position":{"X":-344,"Z":260},"Depth":1},"West":{"Position":{"X":-360,"Z":243.99448},"Depth":1},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-300.005,"Z":236.9362},"Depth":0.25},"North":{"Position":{"X":-300,"Z":220},"Depth":1},"South":{"Position":{"X":-300,"Z":260},"Depth":1},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-243.5821,"Z":248.9216},"Depth":0.25},"North":{"Position":{"X":-244,"Z":232},"Depth":1},"South":{"Position":{"X":-244,"Z":272},"Depth":1},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":-228,"Z":251.99448},"Depth":1}},{"Center":{"Position":{"X":-193.1936,"Z":249.1052},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-411.0981,"Z":297.3896},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-356.1487,"Z":297.2281},"Depth":0.25},"North":{"Position":{"X":-356,"Z":284},"Depth":1},"South":{"Position":{"X":-356,"Z":316},"Depth":1},"West":{"Position":{"X":-372,"Z":299.99448},"Depth":1},"East":{"Position":{"X":-340,"Z":299.99448},"Depth":1}},{"Center":{"Position":{"X":-299.9097,"Z":296.9191},"Depth":0.25},"North":{"Position":{"X":-300,"Z":284},"Depth":1},"South":{"Position":{"X":-300,"Z":316},"Depth":1},"West":{"Position":{"X":-316,"Z":299.99448},"Depth":1},"East":{"Position":{"X":-284,"Z":299.99448},"Depth":1}},{"Center":{"Position":{"X":-243.9999,"Z":308.964},"Depth":0.25},"North":{"Position":{"X":-244,"Z":296},"Depth":1},"South":{"Position":{"X":-244,"Z":328},"Depth":1},"West":{"Position":{"X":-260,"Z":311.99448},"Depth":1},"East":{"Position":{"X":-228,"Z":311.99448},"Depth":1}},{"Center":{"Position":{"X":-187.9608,"Z":309.0062},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-391.6383,"Z":353.528},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-343.9681,"Z":353.0758},"Depth":0.25},"North":{"Position":{"X":-344,"Z":340},"Depth":1},"South":{"Position":{"X":-344,"Z":372},"Depth":1},"West":{"Position":{"X":-360,"Z":355.99448},"Depth":1},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-300.0071,"Z":352.9742},"Depth":0.25},"North":{"Position":{"X":-300,"Z":340},"Depth":1},"South":{"Position":{"X":-300,"Z":372},"Depth":1},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-243.77,"Z":365.2054},"Depth":0.25},"North":{"Position":{"X":-244,"Z":352},"Depth":1},"South":{"Position":{"X":-244,"Z":384},"Depth":1},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":-228,"Z":367.99448},"Depth":1}},{"Center":{"Position":{"X":-188.0415,"Z":365.2347},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-356.0089,"Z":408.9963},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-299.7785,"Z":397.8955},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-232.0506,"Z":424.0166},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]},"RoomsB":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":244.0835,"Z":-402.6324},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":300.0078,"Z":-414.5347},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":368.0554,"Z":-402.7043},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":199.9552,"Z":-347.0208},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":256.002,"Z":-346.9934},"Depth":0.25},"North":{"Position":{"X":256,"Z":-360},"Depth":1},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":240,"Z":-344.00552},"Depth":1},"East":{"Position":{"X":272,"Z":-344.00552},"Depth":1}},{"Center":{"Position":{"X":312.1647,"Z":-359.0013},"Depth":0.25},"North":{"Position":{"X":312,"Z":-372},"Depth":1},"South":{"Position":{"X":312,"Z":-340},"Depth":1},"West":{"Position":{"X":296,"Z":-356.00552},"Depth":1},"East":{"Position":{"X":328,"Z":-356.00552},"Depth":1}},{"Center":{"Position":{"X":368.0155,"Z":-347.03},"Depth":0.25},"North":{"Position":{"X":368,"Z":-360},"Depth":1},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":352,"Z":-344.00552},"Depth":1},"East":{"Position":{"X":384,"Z":-344.00552},"Depth":1}},{"Center":{"Position":{"X":424.0288,"Z":-358.9697},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":180.0593,"Z":-302.804},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":239.8805,"Z":-290.9948},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":220,"Z":-288.00552},"Depth":1},"East":{"Position":{"X":260,"Z":-288.00552},"Depth":1}},{"Center":{"Position":{"X":300.0002,"Z":-302.9918},"Depth":0.25},"North":{"Position":{"X":300,"Z":-316},"Depth":1},"South":{"Position":{"X":300,"Z":-284},"Depth":1},"West":{"Position":{"X":284,"Z":-300.00552},"Depth":1},"East":{"Position":{"X":316,"Z":-300.00552},"Depth":1}},{"Center":{"Position":{"X":372.0275,"Z":-302.9599},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":356,"Z":-300.00552},"Depth":1},"East":{"Position":{"X":388,"Z":-300.00552},"Depth":1}},{"Center":{"Position":{"X":420.0985,"Z":-302.9042},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":195.9618,"Z":-235.0082},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":244.017,"Z":-235.0078},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":244,"Z":-216},"Depth":1},"West":{"Position":{"X":228,"Z":-232.00552},"Depth":1},"East":{"Position":{"X":260,"Z":-232.00552},"Depth":1}},{"Center":{"Position":{"X":299.9469,"Z":-246.9704},"Depth":0.25},"North":{"Position":{"X":300,"Z":-260},"Depth":1},"South":{"Position":{"X":300,"Z":-228},"Depth":1},"West":{"Position":{"X":284,"Z":-244.00552},"Depth":1},"East":{"Position":{"X":316,"Z":-244.00552},"Depth":1}},{"Center":{"Position":{"X":355.9551,"Z":-234.8956},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":356,"Z":-216},"Depth":1},"West":{"Position":{"X":340,"Z":-232.00552},"Depth":1},"East":{"Position":{"X":372,"Z":-232.00552},"Depth":1}},{"Center":{"Position":{"X":404.0493,"Z":-235.0011},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":244.0783,"Z":-179.0651},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":299.9961,"Z":-198.9497},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":368.3321,"Z":-178.8076},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]}},"2.6":{"DungeonId":2,"Floorset":5,"RoomsA":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-355.8573,"Z":185.2251},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-288.002,"Z":177.2258},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-231.9923,"Z":188.9541},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-391.9843,"Z":241.0407},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-343.7905,"Z":241.2819},"Depth":0.25},"North":{"Position":{"X":-344,"Z":228},"Depth":1},"South":{"Position":{"X":-344,"Z":260},"Depth":1},"West":{"Position":{"X":-360,"Z":243.99448},"Depth":1},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-300.005,"Z":236.9362},"Depth":0.25},"North":{"Position":{"X":-300,"Z":220},"Depth":1},"South":{"Position":{"X":-300,"Z":260},"Depth":1},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-243.5821,"Z":248.9216},"Depth":0.25},"North":{"Position":{"X":-244,"Z":232},"Depth":1},"South":{"Position":{"X":-244,"Z":272},"Depth":1},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":-228,"Z":251.99448},"Depth":1}},{"Center":{"Position":{"X":-193.1936,"Z":249.1052},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-411.0981,"Z":297.3896},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-356.1487,"Z":297.2281},"Depth":0.25},"North":{"Position":{"X":-356,"Z":284},"Depth":1},"South":{"Position":{"X":-356,"Z":316},"Depth":1},"West":{"Position":{"X":-372,"Z":299.99448},"Depth":1},"East":{"Position":{"X":-340,"Z":299.99448},"Depth":1}},{"Center":{"Position":{"X":-299.9097,"Z":296.9191},"Depth":0.25},"North":{"Position":{"X":-300,"Z":284},"Depth":1},"South":{"Position":{"X":-300,"Z":316},"Depth":1},"West":{"Position":{"X":-316,"Z":299.99448},"Depth":1},"East":{"Position":{"X":-284,"Z":299.99448},"Depth":1}},{"Center":{"Position":{"X":-243.9999,"Z":308.964},"Depth":0.25},"North":{"Position":{"X":-244,"Z":296},"Depth":1},"South":{"Position":{"X":-244,"Z":328},"Depth":1},"West":{"Position":{"X":-260,"Z":311.99448},"Depth":1},"East":{"Position":{"X":-228,"Z":311.99448},"Depth":1}},{"Center":{"Position":{"X":-187.9608,"Z":309.0062},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-391.6383,"Z":353.528},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-343.9681,"Z":353.0758},"Depth":0.25},"North":{"Position":{"X":-344,"Z":340},"Depth":1},"South":{"Position":{"X":-344,"Z":372},"Depth":1},"West":{"Position":{"X":-360,"Z":355.99448},"Depth":1},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-300.0071,"Z":352.9742},"Depth":0.25},"North":{"Position":{"X":-300,"Z":340},"Depth":1},"South":{"Position":{"X":-300,"Z":372},"Depth":1},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-243.77,"Z":365.2054},"Depth":0.25},"North":{"Position":{"X":-244,"Z":352},"Depth":1},"South":{"Position":{"X":-244,"Z":384},"Depth":1},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":-228,"Z":367.99448},"Depth":1}},{"Center":{"Position":{"X":-188.0415,"Z":365.2347},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-356.0089,"Z":408.9963},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-299.7785,"Z":397.8955},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-232.0506,"Z":424.0166},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]},"RoomsB":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":244.0835,"Z":-402.6324},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":300.0078,"Z":-414.5347},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":368.0554,"Z":-402.7043},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":199.9552,"Z":-347.0208},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":256.002,"Z":-346.9934},"Depth":0.25},"North":{"Position":{"X":256,"Z":-360},"Depth":1},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":240,"Z":-344.00552},"Depth":1},"East":{"Position":{"X":272,"Z":-344.00552},"Depth":1}},{"Center":{"Position":{"X":312.1647,"Z":-359.0013},"Depth":0.25},"North":{"Position":{"X":312,"Z":-372},"Depth":1},"South":{"Position":{"X":312,"Z":-340},"Depth":1},"West":{"Position":{"X":296,"Z":-356.00552},"Depth":1},"East":{"Position":{"X":328,"Z":-356.00552},"Depth":1}},{"Center":{"Position":{"X":368.0155,"Z":-347.03},"Depth":0.25},"North":{"Position":{"X":368,"Z":-360},"Depth":1},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":352,"Z":-344.00552},"Depth":1},"East":{"Position":{"X":384,"Z":-344.00552},"Depth":1}},{"Center":{"Position":{"X":424.0288,"Z":-358.9697},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":180.0593,"Z":-302.804},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":239.8805,"Z":-290.9948},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":220,"Z":-288.00552},"Depth":1},"East":{"Position":{"X":260,"Z":-288.00552},"Depth":1}},{"Center":{"Position":{"X":300.0002,"Z":-302.9918},"Depth":0.25},"North":{"Position":{"X":300,"Z":-316},"Depth":1},"South":{"Position":{"X":300,"Z":-284},"Depth":1},"West":{"Position":{"X":284,"Z":-300.00552},"Depth":1},"East":{"Position":{"X":316,"Z":-300.00552},"Depth":1}},{"Center":{"Position":{"X":372.0275,"Z":-302.9599},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":356,"Z":-300.00552},"Depth":1},"East":{"Position":{"X":388,"Z":-300.00552},"Depth":1}},{"Center":{"Position":{"X":420.0985,"Z":-302.9042},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":195.9618,"Z":-235.0082},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":244.017,"Z":-235.0078},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":244,"Z":-216},"Depth":1},"West":{"Position":{"X":228,"Z":-232.00552},"Depth":1},"East":{"Position":{"X":260,"Z":-232.00552},"Depth":1}},{"Center":{"Position":{"X":299.9469,"Z":-246.9704},"Depth":0.25},"North":{"Position":{"X":300,"Z":-260},"Depth":1},"South":{"Position":{"X":300,"Z":-228},"Depth":1},"West":{"Position":{"X":284,"Z":-244.00552},"Depth":1},"East":{"Position":{"X":316,"Z":-244.00552},"Depth":1}},{"Center":{"Position":{"X":355.9551,"Z":-234.8956},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":356,"Z":-216},"Depth":1},"West":{"Position":{"X":340,"Z":-232.00552},"Depth":1},"East":{"Position":{"X":372,"Z":-232.00552},"Depth":1}},{"Center":{"Position":{"X":404.0493,"Z":-235.0011},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":244.0783,"Z":-179.0651},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":299.9961,"Z":-198.9497},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":368.3321,"Z":-178.8076},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]}},"2.7":{"DungeonId":2,"Floorset":6,"RoomsA":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-355.9903,"Z":184.9528},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-287.7069,"Z":177.0204},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-231.9882,"Z":188.954},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-391.9807,"Z":241.6089},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-343.976,"Z":241.0261},"Depth":0.25},"North":{"Position":{"X":-344,"Z":228},"Depth":1},"South":{"Position":{"X":-344,"Z":260},"Depth":1},"West":{"Position":{"X":-360,"Z":243.99448},"Depth":1},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-299.6812,"Z":237.0281},"Depth":0.25},"North":{"Position":{"X":-300,"Z":220},"Depth":1},"South":{"Position":{"X":-300,"Z":260},"Depth":1},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-243.6569,"Z":249.5105},"Depth":0.25},"North":{"Position":{"X":-244,"Z":232},"Depth":1},"South":{"Position":{"X":-244,"Z":272},"Depth":1},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":-228,"Z":251.99448},"Depth":1}},{"Center":{"Position":{"X":-192.8683,"Z":249.3833},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-411.8799,"Z":297.3343},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-356.0202,"Z":297.0269},"Depth":0.25},"North":{"Position":{"X":-356,"Z":284},"Depth":1},"South":{"Position":{"X":-356,"Z":316},"Depth":1},"West":{"Position":{"X":-372,"Z":299.99448},"Depth":1},"East":{"Position":{"X":-340,"Z":299.99448},"Depth":1}},{"Center":{"Position":{"X":-299.9097,"Z":296.9191},"Depth":0.25},"North":{"Position":{"X":-300,"Z":284},"Depth":1},"South":{"Position":{"X":-300,"Z":316},"Depth":1},"West":{"Position":{"X":-316,"Z":299.99448},"Depth":1},"East":{"Position":{"X":-284,"Z":299.99448},"Depth":1}},{"Center":{"Position":{"X":-244.0003,"Z":308.9668},"Depth":0.25},"North":{"Position":{"X":-244,"Z":296},"Depth":1},"South":{"Position":{"X":-244,"Z":328},"Depth":1},"West":{"Position":{"X":-260,"Z":311.99448},"Depth":1},"East":{"Position":{"X":-228,"Z":311.99448},"Depth":1}},{"Center":{"Position":{"X":-187.9535,"Z":309.0191},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-392.0402,"Z":353.3066},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-344.0538,"Z":353.0163},"Depth":0.25},"North":{"Position":{"X":-344,"Z":340},"Depth":1},"South":{"Position":{"X":-344,"Z":372},"Depth":1},"West":{"Position":{"X":-360,"Z":355.99448},"Depth":1},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-300.0071,"Z":352.9742},"Depth":0.25},"North":{"Position":{"X":-300,"Z":340},"Depth":1},"South":{"Position":{"X":-300,"Z":372},"Depth":1},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-244.8699,"Z":365.0421},"Depth":0.25},"North":{"Position":{"X":-244,"Z":352},"Depth":1},"South":{"Position":{"X":-244,"Z":384},"Depth":1},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":-228,"Z":367.99448},"Depth":1}},{"Center":{"Position":{"X":-188.0518,"Z":365.1992},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-356.0719,"Z":408.938},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-299.9741,"Z":399.7471},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-231.8569,"Z":424.064},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]},"RoomsB":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":244.1633,"Z":-402.7779},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":300.227,"Z":-414.929},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":368.0675,"Z":-402.6661},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":199.967,"Z":-347.0057},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":255.966,"Z":-347.0057},"Depth":0.25},"North":{"Position":{"X":256,"Z":-360},"Depth":1},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":240,"Z":-344.00552},"Depth":1},"East":{"Position":{"X":272,"Z":-344.00552},"Depth":1}},{"Center":{"Position":{"X":312.0288,"Z":-359.0013},"Depth":0.25},"North":{"Position":{"X":312,"Z":-372},"Depth":1},"South":{"Position":{"X":312,"Z":-340},"Depth":1},"West":{"Position":{"X":296,"Z":-356.00552},"Depth":1},"East":{"Position":{"X":328,"Z":-356.00552},"Depth":1}},{"Center":{"Position":{"X":367.9984,"Z":-347.0274},"Depth":0.25},"North":{"Position":{"X":368,"Z":-360},"Depth":1},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":352,"Z":-344.00552},"Depth":1},"East":{"Position":{"X":384,"Z":-344.00552},"Depth":1}},{"Center":{"Position":{"X":424.0184,"Z":-358.9778},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":180.0706,"Z":-302.8362},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":240.9419,"Z":-290.8453},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":220,"Z":-288.00552},"Depth":1},"East":{"Position":{"X":260,"Z":-288.00552},"Depth":1}},{"Center":{"Position":{"X":299.9521,"Z":-302.9824},"Depth":0.25},"North":{"Position":{"X":300,"Z":-316},"Depth":1},"South":{"Position":{"X":300,"Z":-284},"Depth":1},"West":{"Position":{"X":284,"Z":-300.00552},"Depth":1},"East":{"Position":{"X":316,"Z":-300.00552},"Depth":1}},{"Center":{"Position":{"X":372.4629,"Z":-303.0116},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":356,"Z":-300.00552},"Depth":1},"East":{"Position":{"X":388,"Z":-300.00552},"Depth":1}},{"Center":{"Position":{"X":420.1107,"Z":-303.1127},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":195.9561,"Z":-235.003},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":244.017,"Z":-235.0004},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":244,"Z":-216},"Depth":1},"West":{"Position":{"X":228,"Z":-232.00552},"Depth":1},"East":{"Position":{"X":260,"Z":-232.00552},"Depth":1}},{"Center":{"Position":{"X":299.9469,"Z":-246.9704},"Depth":0.25},"North":{"Position":{"X":300,"Z":-260},"Depth":1},"South":{"Position":{"X":300,"Z":-228},"Depth":1},"West":{"Position":{"X":284,"Z":-244.00552},"Depth":1},"East":{"Position":{"X":316,"Z":-244.00552},"Depth":1}},{"Center":{"Position":{"X":355.9822,"Z":-234.8807},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":356,"Z":-216},"Depth":1},"West":{"Position":{"X":340,"Z":-232.00552},"Depth":1},"East":{"Position":{"X":372,"Z":-232.00552},"Depth":1}},{"Center":{"Position":{"X":404.0312,"Z":-234.9912},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":244.178,"Z":-178.6043},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":299.9914,"Z":-198.9501},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":367.8135,"Z":-179.2898},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]}},"2.8":{"DungeonId":2,"Floorset":7,"RoomsA":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-355.9903,"Z":184.9528},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-287.7069,"Z":177.0204},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-231.9882,"Z":188.954},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-391.9807,"Z":241.6089},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-343.976,"Z":241.0261},"Depth":0.25},"North":{"Position":{"X":-344,"Z":228},"Depth":1},"South":{"Position":{"X":-344,"Z":260},"Depth":1},"West":{"Position":{"X":-360,"Z":243.99448},"Depth":1},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-299.6812,"Z":237.0281},"Depth":0.25},"North":{"Position":{"X":-300,"Z":220},"Depth":1},"South":{"Position":{"X":-300,"Z":260},"Depth":1},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-243.6569,"Z":249.5105},"Depth":0.25},"North":{"Position":{"X":-244,"Z":232},"Depth":1},"South":{"Position":{"X":-244,"Z":272},"Depth":1},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":-228,"Z":251.99448},"Depth":1}},{"Center":{"Position":{"X":-192.8683,"Z":249.3833},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-411.8799,"Z":297.3343},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-356.0202,"Z":297.0269},"Depth":0.25},"North":{"Position":{"X":-356,"Z":284},"Depth":1},"South":{"Position":{"X":-356,"Z":316},"Depth":1},"West":{"Position":{"X":-372,"Z":299.99448},"Depth":1},"East":{"Position":{"X":-340,"Z":299.99448},"Depth":1}},{"Center":{"Position":{"X":-299.9097,"Z":296.9191},"Depth":0.25},"North":{"Position":{"X":-300,"Z":284},"Depth":1},"South":{"Position":{"X":-300,"Z":316},"Depth":1},"West":{"Position":{"X":-316,"Z":299.99448},"Depth":1},"East":{"Position":{"X":-284,"Z":299.99448},"Depth":1}},{"Center":{"Position":{"X":-244.0003,"Z":308.9668},"Depth":0.25},"North":{"Position":{"X":-244,"Z":296},"Depth":1},"South":{"Position":{"X":-244,"Z":328},"Depth":1},"West":{"Position":{"X":-260,"Z":311.99448},"Depth":1},"East":{"Position":{"X":-228,"Z":311.99448},"Depth":1}},{"Center":{"Position":{"X":-187.9535,"Z":309.0191},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-392.0402,"Z":353.3066},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-344.0538,"Z":353.0163},"Depth":0.25},"North":{"Position":{"X":-344,"Z":340},"Depth":1},"South":{"Position":{"X":-344,"Z":372},"Depth":1},"West":{"Position":{"X":-360,"Z":355.99448},"Depth":1},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-300.0071,"Z":352.9742},"Depth":0.25},"North":{"Position":{"X":-300,"Z":340},"Depth":1},"South":{"Position":{"X":-300,"Z":372},"Depth":1},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-244.8699,"Z":365.0421},"Depth":0.25},"North":{"Position":{"X":-244,"Z":352},"Depth":1},"South":{"Position":{"X":-244,"Z":384},"Depth":1},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":-228,"Z":367.99448},"Depth":1}},{"Center":{"Position":{"X":-188.0518,"Z":365.1992},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-356.0719,"Z":408.938},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-299.9741,"Z":399.7471},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-231.8569,"Z":424.064},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]},"RoomsB":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":244.1633,"Z":-402.7779},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":300.227,"Z":-414.929},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":368.0675,"Z":-402.6661},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":199.967,"Z":-347.0057},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":255.966,"Z":-347.0057},"Depth":0.25},"North":{"Position":{"X":256,"Z":-360},"Depth":1},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":240,"Z":-344.00552},"Depth":1},"East":{"Position":{"X":272,"Z":-344.00552},"Depth":1}},{"Center":{"Position":{"X":312.0288,"Z":-359.0013},"Depth":0.25},"North":{"Position":{"X":312,"Z":-372},"Depth":1},"South":{"Position":{"X":312,"Z":-340},"Depth":1},"West":{"Position":{"X":296,"Z":-356.00552},"Depth":1},"East":{"Position":{"X":328,"Z":-356.00552},"Depth":1}},{"Center":{"Position":{"X":367.9984,"Z":-347.0274},"Depth":0.25},"North":{"Position":{"X":368,"Z":-360},"Depth":1},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":352,"Z":-344.00552},"Depth":1},"East":{"Position":{"X":384,"Z":-344.00552},"Depth":1}},{"Center":{"Position":{"X":424.0184,"Z":-358.9778},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":180.0706,"Z":-302.8362},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":240.9419,"Z":-290.8453},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":220,"Z":-288.00552},"Depth":1},"East":{"Position":{"X":260,"Z":-288.00552},"Depth":1}},{"Center":{"Position":{"X":299.9521,"Z":-302.9824},"Depth":0.25},"North":{"Position":{"X":300,"Z":-316},"Depth":1},"South":{"Position":{"X":300,"Z":-284},"Depth":1},"West":{"Position":{"X":284,"Z":-300.00552},"Depth":1},"East":{"Position":{"X":316,"Z":-300.00552},"Depth":1}},{"Center":{"Position":{"X":372.4629,"Z":-303.0116},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":356,"Z":-300.00552},"Depth":1},"East":{"Position":{"X":388,"Z":-300.00552},"Depth":1}},{"Center":{"Position":{"X":420.1107,"Z":-303.1127},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":195.9561,"Z":-235.003},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":244.017,"Z":-235.0004},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":244,"Z":-216},"Depth":1},"West":{"Position":{"X":228,"Z":-232.00552},"Depth":1},"East":{"Position":{"X":260,"Z":-232.00552},"Depth":1}},{"Center":{"Position":{"X":299.9469,"Z":-246.9704},"Depth":0.25},"North":{"Position":{"X":300,"Z":-260},"Depth":1},"South":{"Position":{"X":300,"Z":-228},"Depth":1},"West":{"Position":{"X":284,"Z":-244.00552},"Depth":1},"East":{"Position":{"X":316,"Z":-244.00552},"Depth":1}},{"Center":{"Position":{"X":355.9822,"Z":-234.8807},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":356,"Z":-216},"Depth":1},"West":{"Position":{"X":340,"Z":-232.00552},"Depth":1},"East":{"Position":{"X":372,"Z":-232.00552},"Depth":1}},{"Center":{"Position":{"X":404.0312,"Z":-234.9912},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":244.178,"Z":-178.6043},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":299.9914,"Z":-198.9501},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":367.8135,"Z":-179.2898},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]}},"2.9":{"DungeonId":2,"Floorset":8,"RoomsA":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-371.6291,"Z":185.2251},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-287.6111,"Z":180.5311},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-224.0065,"Z":196.9706},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-403.7956,"Z":240.9815},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-351.6601,"Z":240.9567},"Depth":0.25},"North":{"Position":{"X":-352,"Z":227.72562},"Depth":0.5},"South":{"Position":{"X":-352,"Z":260.27438},"Depth":0.5},"West":{"Position":{"X":-368.27438,"Z":243.99438},"Depth":0.5},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-300.005,"Z":240.9776},"Depth":0.25},"North":{"Position":{"X":-300,"Z":227.72562},"Depth":0.5},"South":{"Position":{"X":-300,"Z":260.27438},"Depth":0.5},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-235.9118,"Z":252.9965},"Depth":0.25},"North":{"Position":{"X":-236,"Z":239.72562},"Depth":0.5},"South":{"Position":{"X":-236,"Z":272.27438},"Depth":0.5},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":-219.72562,"Z":256},"Depth":0.5}},{"Center":{"Position":{"X":-179.563,"Z":252.97},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-415.7187,"Z":297.1642},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-363.8582,"Z":297.051},"Depth":0.25},"North":{"Position":{"X":-364,"Z":283.72562},"Depth":0.5},"South":{"Position":{"X":-364,"Z":316.27438},"Depth":0.5},"West":{"Position":{"X":-380.27438,"Z":299.9944},"Depth":0.5},"East":{"Position":{"X":-347.72562,"Z":300},"Depth":0.5}},{"Center":{"Position":{"X":-299.9097,"Z":296.9191},"Depth":0.25},"North":{"Position":{"X":-300,"Z":279.72562},"Depth":0.5},"South":{"Position":{"X":-300,"Z":320.27438},"Depth":0.5},"West":{"Position":{"X":-316.27438,"Z":300},"Depth":0.5},"East":{"Position":{"X":-283.72562,"Z":299.9944},"Depth":0.5}},{"Center":{"Position":{"X":-235.8968,"Z":308.996},"Depth":0.25},"North":{"Position":{"X":-236,"Z":295.72562},"Depth":0.5},"South":{"Position":{"X":-236,"Z":328.27438},"Depth":0.5},"West":{"Position":{"X":-252.27438,"Z":312},"Depth":0.5},"East":{"Position":{"X":-219.72562,"Z":312},"Depth":0.5}},{"Center":{"Position":{"X":-183.9918,"Z":309.0591},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-404.0349,"Z":353.0772},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-351.9062,"Z":352.9164},"Depth":0.25},"North":{"Position":{"X":-352,"Z":339.72562},"Depth":0.5},"South":{"Position":{"X":-352,"Z":372.27438},"Depth":0.5},"West":{"Position":{"X":-368.27438,"Z":355.9944},"Depth":0.5},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-300.0071,"Z":352.9742},"Depth":0.25},"North":{"Position":{"X":-300,"Z":339.72562},"Depth":0.5},"South":{"Position":{"X":-300,"Z":372.27438},"Depth":0.5},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-235.9642,"Z":364.9238},"Depth":0.25},"North":{"Position":{"X":-236,"Z":347.72562},"Depth":0.5},"South":{"Position":{"X":-236,"Z":388.27438},"Depth":0.5},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":-219.72562,"Z":368},"Depth":0.5}},{"Center":{"Position":{"X":-183.9746,"Z":365.0327},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-364.0523,"Z":409.0281},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-279.9631,"Z":408.9591},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-224.0631,"Z":424.9411},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]},"RoomsB":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":244.0486,"Z":-410.9757},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":292.126,"Z":-414.9825},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":380.1461,"Z":-411.1056},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":204.1231,"Z":-347.036},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":256.1278,"Z":-346.9888},"Depth":0.25},"North":{"Position":{"X":256,"Z":-360.27438},"Depth":0.5},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":239.72562,"Z":-344},"Depth":0.5},"East":{"Position":{"X":272.27438,"Z":-344},"Depth":0.5}},{"Center":{"Position":{"X":312.0288,"Z":-359.0013},"Depth":0.25},"North":{"Position":{"X":312.0002,"Z":-372.27438},"Depth":0.5},"South":{"Position":{"X":312.0002,"Z":-339.72562},"Depth":0.5},"West":{"Position":{"X":295.72583,"Z":-356},"Depth":0.5},"East":{"Position":{"X":328.2746,"Z":-356},"Depth":0.5}},{"Center":{"Position":{"X":368.2337,"Z":-346.8454},"Depth":0.25},"North":{"Position":{"X":368,"Z":-360.27438},"Depth":0.5},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":351.72562,"Z":-344},"Depth":0.5},"East":{"Position":{"X":384.27438,"Z":-344},"Depth":0.5}},{"Center":{"Position":{"X":424.0288,"Z":-358.5581},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":188.1206,"Z":-303.116},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":244.0374,"Z":-290.9948},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":227.72562,"Z":-288},"Depth":0.5},"East":{"Position":{"X":260.27438,"Z":-288},"Depth":0.5}},{"Center":{"Position":{"X":300.1458,"Z":-302.9695},"Depth":0.25},"North":{"Position":{"X":300,"Z":-316.27448},"Depth":0.5},"South":{"Position":{"X":300,"Z":-283.7257},"Depth":0.5},"West":{"Position":{"X":283.72562,"Z":-300.0001},"Depth":0.5},"East":{"Position":{"X":316.27438,"Z":-300.0001},"Depth":0.5}},{"Center":{"Position":{"X":356.1721,"Z":-290.9276},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":339.72562,"Z":-288},"Depth":0.5},"East":{"Position":{"X":372.27438,"Z":-288},"Depth":0.5}},{"Center":{"Position":{"X":420.5025,"Z":-291.028},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":191.8176,"Z":-234.9829},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":244.017,"Z":-235.0924},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":244,"Z":-211.72562},"Depth":0.5},"West":{"Position":{"X":227.72562,"Z":-232},"Depth":0.5},"East":{"Position":{"X":260.27438,"Z":-232},"Depth":0.5}},{"Center":{"Position":{"X":299.9469,"Z":-246.9704},"Depth":0.25},"North":{"Position":{"X":300,"Z":-260.27438},"Depth":0.5},"South":{"Position":{"X":300,"Z":-227.72562},"Depth":0.5},"West":{"Position":{"X":283.72562,"Z":-244},"Depth":0.5},"East":{"Position":{"X":316.27438,"Z":-244},"Depth":0.5}},{"Center":{"Position":{"X":355.9232,"Z":-234.9595},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":356,"Z":-211.72562},"Depth":0.5},"West":{"Position":{"X":339.72562,"Z":-232},"Depth":0.5},"East":{"Position":{"X":372.27438,"Z":-232},"Depth":0.5}},{"Center":{"Position":{"X":408.1072,"Z":-234.7271},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":232.1101,"Z":-175.0513},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":319.8692,"Z":-190.9974},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":368.3321,"Z":-174.9503},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]}},"2.10":{"DungeonId":2,"Floorset":9,"RoomsA":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-371.6291,"Z":185.2251},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-287.6111,"Z":180.5311},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-224.0065,"Z":196.9706},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-403.7956,"Z":240.9815},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-351.6601,"Z":240.9567},"Depth":0.25},"North":{"Position":{"X":-352,"Z":227.72562},"Depth":0.5},"South":{"Position":{"X":-352,"Z":260.27438},"Depth":0.5},"West":{"Position":{"X":-368.27438,"Z":243.99438},"Depth":0.5},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-300.005,"Z":240.9776},"Depth":0.25},"North":{"Position":{"X":-300,"Z":227.72562},"Depth":0.5},"South":{"Position":{"X":-300,"Z":260.27438},"Depth":0.5},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-235.9118,"Z":252.9965},"Depth":0.25},"North":{"Position":{"X":-236,"Z":239.72562},"Depth":0.5},"South":{"Position":{"X":-236,"Z":272.27438},"Depth":0.5},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":-219.72562,"Z":256},"Depth":0.5}},{"Center":{"Position":{"X":-179.563,"Z":252.97},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-415.7187,"Z":297.1642},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-363.8582,"Z":297.051},"Depth":0.25},"North":{"Position":{"X":-364,"Z":283.72562},"Depth":0.5},"South":{"Position":{"X":-364,"Z":316.27438},"Depth":0.5},"West":{"Position":{"X":-380.27438,"Z":299.9944},"Depth":0.5},"East":{"Position":{"X":-347.72562,"Z":300},"Depth":0.5}},{"Center":{"Position":{"X":-299.9097,"Z":296.9191},"Depth":0.25},"North":{"Position":{"X":-300,"Z":279.72562},"Depth":0.5},"South":{"Position":{"X":-300,"Z":320.27438},"Depth":0.5},"West":{"Position":{"X":-316.27438,"Z":300},"Depth":0.5},"East":{"Position":{"X":-283.72562,"Z":299.9944},"Depth":0.5}},{"Center":{"Position":{"X":-235.8968,"Z":308.996},"Depth":0.25},"North":{"Position":{"X":-236,"Z":295.72562},"Depth":0.5},"South":{"Position":{"X":-236,"Z":328.27438},"Depth":0.5},"West":{"Position":{"X":-252.27438,"Z":312},"Depth":0.5},"East":{"Position":{"X":-219.72562,"Z":312},"Depth":0.5}},{"Center":{"Position":{"X":-183.9918,"Z":309.0591},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-404.0349,"Z":353.0772},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-351.9062,"Z":352.9164},"Depth":0.25},"North":{"Position":{"X":-352,"Z":339.72562},"Depth":0.5},"South":{"Position":{"X":-352,"Z":372.27438},"Depth":0.5},"West":{"Position":{"X":-368.27438,"Z":355.9944},"Depth":0.5},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-300.0071,"Z":352.9742},"Depth":0.25},"North":{"Position":{"X":-300,"Z":339.72562},"Depth":0.5},"South":{"Position":{"X":-300,"Z":372.27438},"Depth":0.5},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-235.9642,"Z":364.9238},"Depth":0.25},"North":{"Position":{"X":-236,"Z":347.72562},"Depth":0.5},"South":{"Position":{"X":-236,"Z":388.27438},"Depth":0.5},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":-219.72562,"Z":368},"Depth":0.5}},{"Center":{"Position":{"X":-183.9746,"Z":365.0327},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-364.0523,"Z":409.0281},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-279.9631,"Z":408.9591},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-224.0631,"Z":424.9411},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]},"RoomsB":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":244.0486,"Z":-410.9757},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":292.126,"Z":-414.9825},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":380.1461,"Z":-411.1056},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":204.1231,"Z":-347.036},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":256.1278,"Z":-346.9888},"Depth":0.25},"North":{"Position":{"X":256,"Z":-360.27438},"Depth":0.5},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":239.72562,"Z":-344},"Depth":0.5},"East":{"Position":{"X":272.27438,"Z":-344},"Depth":0.5}},{"Center":{"Position":{"X":312.0288,"Z":-359.0013},"Depth":0.25},"North":{"Position":{"X":312.0002,"Z":-372.27438},"Depth":0.5},"South":{"Position":{"X":312.0002,"Z":-339.72562},"Depth":0.5},"West":{"Position":{"X":295.72583,"Z":-356},"Depth":0.5},"East":{"Position":{"X":328.2746,"Z":-356},"Depth":0.5}},{"Center":{"Position":{"X":368.2337,"Z":-346.8454},"Depth":0.25},"North":{"Position":{"X":368,"Z":-360.27438},"Depth":0.5},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":351.72562,"Z":-344},"Depth":0.5},"East":{"Position":{"X":384.27438,"Z":-344},"Depth":0.5}},{"Center":{"Position":{"X":424.0288,"Z":-358.5581},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":188.1206,"Z":-303.116},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":244.0374,"Z":-290.9948},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":227.72562,"Z":-288},"Depth":0.5},"East":{"Position":{"X":260.27438,"Z":-288},"Depth":0.5}},{"Center":{"Position":{"X":300.1458,"Z":-302.9695},"Depth":0.25},"North":{"Position":{"X":300,"Z":-316.27448},"Depth":0.5},"South":{"Position":{"X":300,"Z":-283.7257},"Depth":0.5},"West":{"Position":{"X":283.72562,"Z":-300.0001},"Depth":0.5},"East":{"Position":{"X":316.27438,"Z":-300.0001},"Depth":0.5}},{"Center":{"Position":{"X":356.1721,"Z":-290.9276},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":339.72562,"Z":-288},"Depth":0.5},"East":{"Position":{"X":372.27438,"Z":-288},"Depth":0.5}},{"Center":{"Position":{"X":420.5025,"Z":-291.028},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":191.8176,"Z":-234.9829},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":244.017,"Z":-235.0924},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":244,"Z":-211.72562},"Depth":0.5},"West":{"Position":{"X":227.72562,"Z":-232},"Depth":0.5},"East":{"Position":{"X":260.27438,"Z":-232},"Depth":0.5}},{"Center":{"Position":{"X":299.9469,"Z":-246.9704},"Depth":0.25},"North":{"Position":{"X":300,"Z":-260.27438},"Depth":0.5},"South":{"Position":{"X":300,"Z":-227.72562},"Depth":0.5},"West":{"Position":{"X":283.72562,"Z":-244},"Depth":0.5},"East":{"Position":{"X":316.27438,"Z":-244},"Depth":0.5}},{"Center":{"Position":{"X":355.9232,"Z":-234.9595},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":356,"Z":-211.72562},"Depth":0.5},"West":{"Position":{"X":339.72562,"Z":-232},"Depth":0.5},"East":{"Position":{"X":372.27438,"Z":-232},"Depth":0.5}},{"Center":{"Position":{"X":408.1072,"Z":-234.7271},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":232.1101,"Z":-175.0513},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":319.8692,"Z":-190.9974},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":368.3321,"Z":-174.9503},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]}},"3.1":{"DungeonId":3,"Floorset":0,"RoomsA":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-387.9985,"Z":153.0004},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-299.9993,"Z":170},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-237.9994,"Z":171.0005},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-434.9991,"Z":217},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-363.9992,"Z":217.0008},"Depth":0.25},"North":{"Position":{"X":-364,"Z":204},"Depth":1},"South":{"Position":{"X":-364,"Z":236},"Depth":1},"West":{"Position":{"X":-380,"Z":219.99965},"Depth":1},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-300,"Z":241},"Depth":0.25},"North":{"Position":{"X":-300,"Z":228},"Depth":1},"South":{"Position":{"X":-300,"Z":260},"Depth":1},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-237.9995,"Z":227.0005},"Depth":0.25},"North":{"Position":{"X":-238,"Z":214.0001},"Depth":1},"South":{"Position":{"X":-238,"Z":246},"Depth":1},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":-222,"Z":229.99965},"Depth":1}},{"Center":{"Position":{"X":-182.0001,"Z":227},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-435.9983,"Z":297},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-364,"Z":273},"Depth":0.25},"North":{"Position":{"X":-364,"Z":260},"Depth":1},"South":{"Position":{"X":-364,"Z":292},"Depth":1},"West":{"Position":{"X":-380,"Z":275.99966},"Depth":1},"East":{"Position":{"X":-348,"Z":275.99966},"Depth":1}},{"Center":{"Position":{"X":-299.9994,"Z":297.0006},"Depth":0.25},"North":{"Position":{"X":-300,"Z":284},"Depth":1},"South":{"Position":{"X":-300,"Z":316},"Depth":1},"West":{"Position":{"X":-316,"Z":299.99966},"Depth":1},"East":{"Position":{"X":-284,"Z":299.99966},"Depth":1}},{"Center":{"Position":{"X":-237.9998,"Z":297},"Depth":0.25},"North":{"Position":{"X":-238,"Z":278},"Depth":1},"South":{"Position":{"X":-238,"Z":322},"Depth":1},"West":{"Position":{"X":-260,"Z":299.99966},"Depth":1},"East":{"Position":{"X":-216,"Z":299.99966},"Depth":1}},{"Center":{"Position":{"X":-160.9998,"Z":297},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-440.9991,"Z":343},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-363.9993,"Z":343},"Depth":0.25},"North":{"Position":{"X":-364,"Z":324.0001},"Depth":1},"South":{"Position":{"X":-364,"Z":368},"Depth":1},"West":{"Position":{"X":-386,"Z":345.99966},"Depth":1},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-300,"Z":361.0005},"Depth":0.25},"North":{"Position":{"X":-300,"Z":348},"Depth":1},"South":{"Position":{"X":-300,"Z":380},"Depth":1},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-213.9995,"Z":367.0004},"Depth":0.25},"North":{"Position":{"X":-214,"Z":354},"Depth":1},"South":{"Position":{"X":-214,"Z":386},"Depth":1},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":-198,"Z":369.99966},"Depth":1}},{"Center":{"Position":{"X":-142.9998,"Z":367},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-363.9993,"Z":405},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-300,"Z":432},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-237.9998,"Z":439},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]},"RoomsB":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":230,"Z":-420.9988},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":300,"Z":-442},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":370,"Z":-460},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":159,"Z":-365},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":230,"Z":-364.9988},"Depth":0.25},"North":{"Position":{"X":230,"Z":-378},"Depth":1},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":214,"Z":-362.00034},"Depth":1},"East":{"Position":{"X":246,"Z":-362.00034},"Depth":1}},{"Center":{"Position":{"X":300,"Z":-364.999},"Depth":0.25},"North":{"Position":{"X":300,"Z":-384},"Depth":1},"South":{"Position":{"X":300,"Z":-340},"Depth":1},"West":{"Position":{"X":278,"Z":-362.00034},"Depth":1},"East":{"Position":{"X":322,"Z":-362.00034},"Depth":1}},{"Center":{"Position":{"X":370,"Z":-389},"Depth":0.25},"North":{"Position":{"X":370,"Z":-402},"Depth":1},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":354,"Z":-386.00034},"Depth":1},"East":{"Position":{"X":386,"Z":-386.00034},"Depth":1}},{"Center":{"Position":{"X":443,"Z":-365},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":173,"Z":-303},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":244,"Z":-302.9989},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":228,"Z":-300.00034},"Depth":1},"East":{"Position":{"X":260,"Z":-300.00034},"Depth":1}},{"Center":{"Position":{"X":300,"Z":-302.999},"Depth":0.25},"North":{"Position":{"X":300,"Z":-316},"Depth":1},"South":{"Position":{"X":300,"Z":-284},"Depth":1},"West":{"Position":{"X":284,"Z":-300.00034},"Depth":1},"East":{"Position":{"X":316,"Z":-300.00034},"Depth":1}},{"Center":{"Position":{"X":364,"Z":-303},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":348,"Z":-300.00034},"Depth":1},"East":{"Position":{"X":380,"Z":-300.00034},"Depth":1}},{"Center":{"Position":{"X":435,"Z":-303},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":146,"Z":-214.9994},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":220,"Z":-239},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":220,"Z":-220},"Depth":1},"West":{"Position":{"X":204,"Z":-236.00035},"Depth":1},"East":{"Position":{"X":236,"Z":-236.00035},"Depth":1}},{"Center":{"Position":{"X":276,"Z":-238.9991},"Depth":0.25},"North":{"Position":{"X":276,"Z":-252},"Depth":1},"South":{"Position":{"X":276,"Z":-220},"Depth":1},"West":{"Position":{"X":260,"Z":-236.00035},"Depth":1},"East":{"Position":{"X":292,"Z":-236.00035},"Depth":1}},{"Center":{"Position":{"X":346,"Z":-238.9996},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":346,"Z":-214},"Depth":1},"West":{"Position":{"X":324,"Z":-236.00035},"Depth":1},"East":{"Position":{"X":368,"Z":-236.00035},"Depth":1}},{"Center":{"Position":{"X":408,"Z":-239},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":220,"Z":-167.9995},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":300,"Z":-166.9995},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":346,"Z":-161.9996},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]}},"3.2":{"DungeonId":3,"Floorset":1,"RoomsA":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-387.9985,"Z":152.9999},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-300,"Z":169.9995},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-237.9999,"Z":171},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-434.9998,"Z":216.9999},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-363.9998,"Z":217},"Depth":0.25},"North":{"Position":{"X":-364,"Z":204},"Depth":1},"South":{"Position":{"X":-364,"Z":236},"Depth":1},"West":{"Position":{"X":-380,"Z":219.99965},"Depth":1},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-300,"Z":240.9994},"Depth":0.25},"North":{"Position":{"X":-300,"Z":228},"Depth":1},"South":{"Position":{"X":-300,"Z":260},"Depth":1},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-237.9994,"Z":227},"Depth":0.25},"North":{"Position":{"X":-238,"Z":214.0001},"Depth":1},"South":{"Position":{"X":-238,"Z":246},"Depth":1},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":-222,"Z":229.99965},"Depth":1}},{"Center":{"Position":{"X":-181.9995,"Z":226.9999},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-435.9997,"Z":296.9998},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-363.9999,"Z":272.9998},"Depth":0.25},"North":{"Position":{"X":-364,"Z":260},"Depth":1},"South":{"Position":{"X":-364,"Z":292},"Depth":1},"West":{"Position":{"X":-380,"Z":275.99966},"Depth":1},"East":{"Position":{"X":-348,"Z":275.99966},"Depth":1}},{"Center":{"Position":{"X":-299.9999,"Z":297},"Depth":0.25},"North":{"Position":{"X":-300,"Z":284},"Depth":1},"South":{"Position":{"X":-300,"Z":316},"Depth":1},"West":{"Position":{"X":-316,"Z":299.99966},"Depth":1},"East":{"Position":{"X":-284,"Z":299.99966},"Depth":1}},{"Center":{"Position":{"X":-237.9999,"Z":296.999},"Depth":0.25},"North":{"Position":{"X":-238,"Z":278},"Depth":1},"South":{"Position":{"X":-238,"Z":322},"Depth":1},"West":{"Position":{"X":-260,"Z":299.99966},"Depth":1},"East":{"Position":{"X":-216,"Z":299.99966},"Depth":1}},{"Center":{"Position":{"X":-161.0001,"Z":296.9999},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-440.9998,"Z":342.9998},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-363.9999,"Z":342.9998},"Depth":0.25},"North":{"Position":{"X":-364,"Z":324.0001},"Depth":1},"South":{"Position":{"X":-364,"Z":368},"Depth":1},"West":{"Position":{"X":-386,"Z":345.99966},"Depth":1},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-299.9999,"Z":361},"Depth":0.25},"North":{"Position":{"X":-300,"Z":348},"Depth":1},"South":{"Position":{"X":-300,"Z":380},"Depth":1},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-214,"Z":366.9991},"Depth":0.25},"North":{"Position":{"X":-214,"Z":354},"Depth":1},"South":{"Position":{"X":-214,"Z":386},"Depth":1},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":-198,"Z":369.99966},"Depth":1}},{"Center":{"Position":{"X":-143.0001,"Z":366.9999},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-363.9999,"Z":404.9998},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-299.9999,"Z":432},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-238,"Z":438.9999},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]},"RoomsB":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":229.9989,"Z":-420.9988},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":300,"Z":-442},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":370,"Z":-459.9995},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":159,"Z":-365},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":230,"Z":-364.9988},"Depth":0.25},"North":{"Position":{"X":230,"Z":-378},"Depth":1},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":214,"Z":-362.00034},"Depth":1},"East":{"Position":{"X":246,"Z":-362.00034},"Depth":1}},{"Center":{"Position":{"X":300,"Z":-364.999},"Depth":0.25},"North":{"Position":{"X":300,"Z":-384},"Depth":1},"South":{"Position":{"X":300,"Z":-340},"Depth":1},"West":{"Position":{"X":278,"Z":-362.00034},"Depth":1},"East":{"Position":{"X":322,"Z":-362.00034},"Depth":1}},{"Center":{"Position":{"X":369.9995,"Z":-388.9995},"Depth":0.25},"North":{"Position":{"X":370,"Z":-402},"Depth":1},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":354,"Z":-386.00034},"Depth":1},"East":{"Position":{"X":386,"Z":-386.00034},"Depth":1}},{"Center":{"Position":{"X":442.9995,"Z":-365},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":173,"Z":-303},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":243.9996,"Z":-302.9989},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":228,"Z":-300.00034},"Depth":1},"East":{"Position":{"X":260,"Z":-300.00034},"Depth":1}},{"Center":{"Position":{"X":299.9993,"Z":-302.999},"Depth":0.25},"North":{"Position":{"X":300,"Z":-316},"Depth":1},"South":{"Position":{"X":300,"Z":-284},"Depth":1},"West":{"Position":{"X":284,"Z":-300.00034},"Depth":1},"East":{"Position":{"X":316,"Z":-300.00034},"Depth":1}},{"Center":{"Position":{"X":363.9995,"Z":-303},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":348,"Z":-300.00034},"Depth":1},"East":{"Position":{"X":380,"Z":-300.00034},"Depth":1}},{"Center":{"Position":{"X":434.9992,"Z":-303},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":146,"Z":-214.9994},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":219.9991,"Z":-239},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":220,"Z":-220},"Depth":1},"West":{"Position":{"X":204,"Z":-236.00035},"Depth":1},"East":{"Position":{"X":236,"Z":-236.00035},"Depth":1}},{"Center":{"Position":{"X":275.9994,"Z":-238.9991},"Depth":0.25},"North":{"Position":{"X":276,"Z":-252},"Depth":1},"South":{"Position":{"X":276,"Z":-220},"Depth":1},"West":{"Position":{"X":260,"Z":-236.00035},"Depth":1},"East":{"Position":{"X":292,"Z":-236.00035},"Depth":1}},{"Center":{"Position":{"X":345.9995,"Z":-238.9996},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":346,"Z":-214},"Depth":1},"West":{"Position":{"X":324,"Z":-236.00035},"Depth":1},"East":{"Position":{"X":368,"Z":-236.00035},"Depth":1}},{"Center":{"Position":{"X":407.9997,"Z":-239},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":219.9996,"Z":-167.9999},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":299.9994,"Z":-166.9998},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":345.9996,"Z":-161.9998},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]}},"3.3":{"DungeonId":3,"Floorset":2,"RoomsA":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-363.9031,"Z":170.0488},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-299.9993,"Z":168.9998},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-235.9883,"Z":169.0004},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-427.9748,"Z":232.9641},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-364,"Z":233.4559},"Depth":0.25},"North":{"Position":{"X":-364,"Z":217},"Depth":1.8},"South":{"Position":{"X":-364,"Z":255},"Depth":1.8},"West":{"Position":{"X":-383,"Z":235.99344},"Depth":1.8},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-300,"Z":232.9428},"Depth":0.25},"North":{"Position":{"X":-300,"Z":217},"Depth":1.8},"South":{"Position":{"X":-300,"Z":255},"Depth":1.8},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-235.9996,"Z":233.0003},"Depth":0.25},"North":{"Position":{"X":-236,"Z":217.0001},"Depth":1.8},"South":{"Position":{"X":-236,"Z":255},"Depth":1.8},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":-217,"Z":235.99344},"Depth":1.8}},{"Center":{"Position":{"X":-171.9998,"Z":233},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-428.2621,"Z":297},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-363.9991,"Z":296.9561},"Depth":0.25},"North":{"Position":{"X":-364,"Z":281},"Depth":1.8},"South":{"Position":{"X":-364,"Z":319},"Depth":1.8},"West":{"Position":{"X":-383,"Z":299.99344},"Depth":1.8},"East":{"Position":{"X":-345,"Z":299.99344},"Depth":1.8}},{"Center":{"Position":{"X":-300,"Z":297.0007},"Depth":0.25},"North":{"Position":{"X":-300,"Z":281},"Depth":1.8},"South":{"Position":{"X":-300,"Z":319},"Depth":1.8},"West":{"Position":{"X":-319,"Z":299.99344},"Depth":1.8},"East":{"Position":{"X":-281,"Z":299.99344},"Depth":1.8}},{"Center":{"Position":{"X":-236,"Z":296.9999},"Depth":0.25},"North":{"Position":{"X":-236,"Z":281},"Depth":1.8},"South":{"Position":{"X":-236,"Z":319},"Depth":1.8},"West":{"Position":{"X":-255,"Z":299.99344},"Depth":1.8},"East":{"Position":{"X":-217,"Z":299.99344},"Depth":1.8}},{"Center":{"Position":{"X":-172.0004,"Z":297},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-428.1913,"Z":361.1322},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-364,"Z":361.5755},"Depth":0.25},"North":{"Position":{"X":-364,"Z":345.0001},"Depth":1.8},"South":{"Position":{"X":-364,"Z":383},"Depth":1.8},"West":{"Position":{"X":-383,"Z":363.99344},"Depth":1.8},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-300,"Z":361},"Depth":0.25},"North":{"Position":{"X":-300,"Z":345},"Depth":1.8},"South":{"Position":{"X":-300,"Z":383},"Depth":1.8},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-235.9994,"Z":360.9999},"Depth":0.25},"North":{"Position":{"X":-236,"Z":345},"Depth":1.8},"South":{"Position":{"X":-236,"Z":383},"Depth":1.8},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":-217,"Z":363.99344},"Depth":1.8}},{"Center":{"Position":{"X":-172.0001,"Z":360.9999},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-364,"Z":424.8436},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-300,"Z":425},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-235.9997,"Z":424.9999},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]},"RoomsB":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":236,"Z":-424.9982},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":300,"Z":-424.9984},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":364,"Z":-425},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":172,"Z":-361},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":236,"Z":-360.9982},"Depth":0.25},"North":{"Position":{"X":236,"Z":-383},"Depth":1.8},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":217,"Z":-364.00656},"Depth":1.8},"East":{"Position":{"X":254.9999,"Z":-364.00656},"Depth":1.8}},{"Center":{"Position":{"X":300,"Z":-360.9985},"Depth":0.25},"North":{"Position":{"X":300,"Z":-383},"Depth":1.8},"South":{"Position":{"X":300,"Z":-345},"Depth":1.8},"West":{"Position":{"X":281,"Z":-364.00656},"Depth":1.8},"East":{"Position":{"X":319,"Z":-364.00656},"Depth":1.8}},{"Center":{"Position":{"X":364,"Z":-361},"Depth":0.25},"North":{"Position":{"X":364,"Z":-383},"Depth":1.8},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":345,"Z":-364.00656},"Depth":1.8},"East":{"Position":{"X":383,"Z":-364.00656},"Depth":1.8}},{"Center":{"Position":{"X":428,"Z":-361},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":172,"Z":-297},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":236,"Z":-296.9983},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":217,"Z":-300.00656},"Depth":1.8},"East":{"Position":{"X":255,"Z":-300.00656},"Depth":1.8}},{"Center":{"Position":{"X":300,"Z":-296.9987},"Depth":0.25},"North":{"Position":{"X":300,"Z":-319},"Depth":1.8},"South":{"Position":{"X":300,"Z":-281},"Depth":1.8},"West":{"Position":{"X":281,"Z":-300},"Depth":1.8},"East":{"Position":{"X":319,"Z":-300},"Depth":1.8}},{"Center":{"Position":{"X":364,"Z":-297},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":345,"Z":-300.00656},"Depth":1.8},"East":{"Position":{"X":383,"Z":-300.00656},"Depth":1.8}},{"Center":{"Position":{"X":428,"Z":-297},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":172,"Z":-232.9992},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":236,"Z":-233.0002},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":236,"Z":-217},"Depth":1.8},"West":{"Position":{"X":217,"Z":-236.00656},"Depth":1.8},"East":{"Position":{"X":255,"Z":-236.00656},"Depth":1.8}},{"Center":{"Position":{"X":300,"Z":-232.9992},"Depth":0.25},"North":{"Position":{"X":300,"Z":-255},"Depth":1.8},"South":{"Position":{"X":300,"Z":-217},"Depth":1.8},"West":{"Position":{"X":281,"Z":-236.00656},"Depth":1.8},"East":{"Position":{"X":319,"Z":-236.00656},"Depth":1.8}},{"Center":{"Position":{"X":364,"Z":-232.9994},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":364,"Z":-217},"Depth":1.8},"West":{"Position":{"X":345,"Z":-236.00656},"Depth":1.8},"East":{"Position":{"X":382.9999,"Z":-236.00656},"Depth":1.8}},{"Center":{"Position":{"X":428,"Z":-232.9994},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":236,"Z":-168.9994},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":300,"Z":-168.9994},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":364,"Z":-168.9994},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]}},"3.4":{"DungeonId":3,"Floorset":3,"RoomsA":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-363.9031,"Z":170.0488},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-299.9993,"Z":168.9998},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-235.9883,"Z":169.0004},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-427.9748,"Z":232.9641},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-364,"Z":233.4559},"Depth":0.25},"North":{"Position":{"X":-364,"Z":217},"Depth":1.8},"South":{"Position":{"X":-364,"Z":255},"Depth":1.8},"West":{"Position":{"X":-383,"Z":235.99344},"Depth":1.8},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-300,"Z":232.9428},"Depth":0.25},"North":{"Position":{"X":-300,"Z":217},"Depth":1.8},"South":{"Position":{"X":-300,"Z":255},"Depth":1.8},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-235.9996,"Z":233.0003},"Depth":0.25},"North":{"Position":{"X":-236,"Z":217.0001},"Depth":1.8},"South":{"Position":{"X":-236,"Z":255},"Depth":1.8},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":-217,"Z":235.99344},"Depth":1.8}},{"Center":{"Position":{"X":-171.9998,"Z":233},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-428.2621,"Z":297},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-363.9991,"Z":296.9561},"Depth":0.25},"North":{"Position":{"X":-364,"Z":281},"Depth":1.8},"South":{"Position":{"X":-364,"Z":319},"Depth":1.8},"West":{"Position":{"X":-383,"Z":299.99344},"Depth":1.8},"East":{"Position":{"X":-345,"Z":299.99344},"Depth":1.8}},{"Center":{"Position":{"X":-300,"Z":297.0007},"Depth":0.25},"North":{"Position":{"X":-300,"Z":281},"Depth":1.8},"South":{"Position":{"X":-300,"Z":319},"Depth":1.8},"West":{"Position":{"X":-319,"Z":299.99344},"Depth":1.8},"East":{"Position":{"X":-281,"Z":299.99344},"Depth":1.8}},{"Center":{"Position":{"X":-236,"Z":296.9999},"Depth":0.25},"North":{"Position":{"X":-236,"Z":281},"Depth":1.8},"South":{"Position":{"X":-236,"Z":319},"Depth":1.8},"West":{"Position":{"X":-255,"Z":299.99344},"Depth":1.8},"East":{"Position":{"X":-217,"Z":299.99344},"Depth":1.8}},{"Center":{"Position":{"X":-172.0004,"Z":297},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-428.1913,"Z":361.1322},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-364,"Z":361.5755},"Depth":0.25},"North":{"Position":{"X":-364,"Z":345.0001},"Depth":1.8},"South":{"Position":{"X":-364,"Z":383},"Depth":1.8},"West":{"Position":{"X":-383,"Z":363.99344},"Depth":1.8},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-300,"Z":361},"Depth":0.25},"North":{"Position":{"X":-300,"Z":345},"Depth":1.8},"South":{"Position":{"X":-300,"Z":383},"Depth":1.8},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-235.9994,"Z":360.9999},"Depth":0.25},"North":{"Position":{"X":-236,"Z":345},"Depth":1.8},"South":{"Position":{"X":-236,"Z":383},"Depth":1.8},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":-217,"Z":363.99344},"Depth":1.8}},{"Center":{"Position":{"X":-172.0001,"Z":360.9999},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-364,"Z":424.8436},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-300,"Z":425},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-235.9997,"Z":424.9999},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]},"RoomsB":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":236,"Z":-424.9982},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":300,"Z":-424.9984},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":364,"Z":-425},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":172,"Z":-361},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":236,"Z":-360.9982},"Depth":0.25},"North":{"Position":{"X":236,"Z":-383},"Depth":1.8},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":217,"Z":-364.00656},"Depth":1.8},"East":{"Position":{"X":254.9999,"Z":-364.00656},"Depth":1.8}},{"Center":{"Position":{"X":300,"Z":-360.9985},"Depth":0.25},"North":{"Position":{"X":300,"Z":-383},"Depth":1.8},"South":{"Position":{"X":300,"Z":-345},"Depth":1.8},"West":{"Position":{"X":281,"Z":-364.00656},"Depth":1.8},"East":{"Position":{"X":319,"Z":-364.00656},"Depth":1.8}},{"Center":{"Position":{"X":364,"Z":-361},"Depth":0.25},"North":{"Position":{"X":364,"Z":-383},"Depth":1.8},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":345,"Z":-364.00656},"Depth":1.8},"East":{"Position":{"X":383,"Z":-364.00656},"Depth":1.8}},{"Center":{"Position":{"X":428,"Z":-361},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":172,"Z":-297},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":236,"Z":-296.9983},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":217,"Z":-300.00656},"Depth":1.8},"East":{"Position":{"X":255,"Z":-300.00656},"Depth":1.8}},{"Center":{"Position":{"X":300,"Z":-296.9987},"Depth":0.25},"North":{"Position":{"X":300,"Z":-319},"Depth":1.8},"South":{"Position":{"X":300,"Z":-281},"Depth":1.8},"West":{"Position":{"X":281,"Z":-300},"Depth":1.8},"East":{"Position":{"X":319,"Z":-300},"Depth":1.8}},{"Center":{"Position":{"X":364,"Z":-297},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":345,"Z":-300.00656},"Depth":1.8},"East":{"Position":{"X":383,"Z":-300.00656},"Depth":1.8}},{"Center":{"Position":{"X":428,"Z":-297},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":172,"Z":-232.9992},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":236,"Z":-233.0002},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":236,"Z":-217},"Depth":1.8},"West":{"Position":{"X":217,"Z":-236.00656},"Depth":1.8},"East":{"Position":{"X":255,"Z":-236.00656},"Depth":1.8}},{"Center":{"Position":{"X":300,"Z":-232.9992},"Depth":0.25},"North":{"Position":{"X":300,"Z":-255},"Depth":1.8},"South":{"Position":{"X":300,"Z":-217},"Depth":1.8},"West":{"Position":{"X":281,"Z":-236.00656},"Depth":1.8},"East":{"Position":{"X":319,"Z":-236.00656},"Depth":1.8}},{"Center":{"Position":{"X":364,"Z":-232.9994},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":364,"Z":-217},"Depth":1.8},"West":{"Position":{"X":345,"Z":-236.00656},"Depth":1.8},"East":{"Position":{"X":382.9999,"Z":-236.00656},"Depth":1.8}},{"Center":{"Position":{"X":428,"Z":-232.9994},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":236,"Z":-168.9994},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":300,"Z":-168.9994},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":364,"Z":-168.9994},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]}},"3.5":{"DungeonId":3,"Floorset":4,"RoomsA":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-374.7566,"Z":183.0325},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-287.8989,"Z":178.1563},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-223.1265,"Z":193.6945},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-402.5998,"Z":240.809},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-355.0793,"Z":240.4289},"Depth":0.25},"North":{"Position":{"X":-354.99368,"Z":226.9958},"Depth":2.2},"South":{"Position":{"X":-354.9937,"Z":260.9958},"Depth":2.2},"West":{"Position":{"X":-371.9937,"Z":244.00168},"Depth":2.2},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-300.4581,"Z":241.4994},"Depth":0.25},"North":{"Position":{"X":-299.99396,"Z":226.9956},"Depth":2.2},"South":{"Position":{"X":-299.994,"Z":260.9956},"Depth":2.2},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-225.0836,"Z":262.5056},"Depth":0.25},"North":{"Position":{"X":-234.99408,"Z":238.9954},"Depth":2.2},"South":{"Position":{"X":-234.99408,"Z":272.99542},"Depth":2.2},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":-217.9941,"Z":256.00128},"Depth":2.2}},{"Center":{"Position":{"X":-175.5846,"Z":252.934},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-420.2265,"Z":296.8055},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-367.1488,"Z":296.9664},"Depth":0.25},"North":{"Position":{"X":-366.99326,"Z":282.994},"Depth":2.2},"South":{"Position":{"X":-366.9931,"Z":316.994},"Depth":2.2},"West":{"Position":{"X":-383.9933,"Z":299.99985},"Depth":2.2},"East":{"Position":{"X":-349.9933,"Z":299.99985},"Depth":2.2}},{"Center":{"Position":{"X":-299.914,"Z":305.8483},"Depth":0.25},"North":{"Position":{"X":-299.99377,"Z":278.9905},"Depth":2.2},"South":{"Position":{"X":-299.9903,"Z":320.9902},"Depth":2.2},"West":{"Position":{"X":-316.9938,"Z":299.99615},"Depth":2.2},"East":{"Position":{"X":-282.9938,"Z":301.99615},"Depth":2.2}},{"Center":{"Position":{"X":-234.9083,"Z":310.8708},"Depth":0.25},"North":{"Position":{"X":-234.99619,"Z":296.9932},"Depth":2.2},"South":{"Position":{"X":-234.99622,"Z":330.9932},"Depth":2.2},"West":{"Position":{"X":-251.9962,"Z":313.99905},"Depth":2.2},"East":{"Position":{"X":-217.9962,"Z":313.99905},"Depth":2.2}},{"Center":{"Position":{"X":-180.6718,"Z":311.2285},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-409.0223,"Z":355.6356},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-345.9205,"Z":345.0418},"Depth":0.25},"North":{"Position":{"X":-354.99078,"Z":340.9932},"Depth":2.2},"South":{"Position":{"X":-354.9908,"Z":374.9932},"Depth":2.2},"West":{"Position":{"X":-371.991,"Z":357.99905},"Depth":2.2},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-308.5666,"Z":347.784},"Depth":0.25},"North":{"Position":{"X":-299.99106,"Z":340.9933},"Depth":2.2},"South":{"Position":{"X":-299.9911,"Z":374.9933},"Depth":2.2},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-235.6806,"Z":365.491},"Depth":0.25},"North":{"Position":{"X":-234.99438,"Z":352.9926},"Depth":2.2},"South":{"Position":{"X":-234.99442,"Z":386.9926},"Depth":2.2},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":-217.9944,"Z":369.99847},"Depth":2.2}},{"Center":{"Position":{"X":-177.7759,"Z":366.8867},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-366.6518,"Z":411.5221},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-320.0814,"Z":414.084},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-223.3746,"Z":423.8857},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]},"RoomsB":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":241.9075,"Z":-409.0655},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":292.1822,"Z":-420.3809},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":389.8699,"Z":-406.534},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":203.6679,"Z":-348.4681},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":263.6731,"Z":-339.1262},"Depth":0.25},"North":{"Position":{"X":253.99602,"Z":-362.9945},"Depth":2.2},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":236.996,"Z":-345.98865},"Depth":2.2},"East":{"Position":{"X":270.996,"Z":-345.98865},"Depth":2.2}},{"Center":{"Position":{"X":319.6569,"Z":-367.4182},"Depth":0.25},"North":{"Position":{"X":311.99484,"Z":-374.9948},"Depth":2.2},"South":{"Position":{"X":311.9948,"Z":-340.9948},"Depth":2.2},"West":{"Position":{"X":294.9948,"Z":-357.98895},"Depth":2.2},"East":{"Position":{"X":328.9948,"Z":-357.98895},"Depth":2.2}},{"Center":{"Position":{"X":367.6212,"Z":-349.1082},"Depth":0.25},"North":{"Position":{"X":367.99414,"Z":-362.9946},"Depth":2.2},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":350.9941,"Z":-345.98874},"Depth":2.2},"East":{"Position":{"X":384.9941,"Z":-345.98874},"Depth":2.2}},{"Center":{"Position":{"X":425.4471,"Z":-362.718},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":182.6972,"Z":-303.7495},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":241.7273,"Z":-290.1868},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":224.9961,"Z":-287.98975},"Depth":2.2},"East":{"Position":{"X":258.9961,"Z":-287.98975},"Depth":2.2}},{"Center":{"Position":{"X":300.0593,"Z":-302.7772},"Depth":0.25},"North":{"Position":{"X":299.99493,"Z":-316.9955},"Depth":2.2},"South":{"Position":{"X":299.9949,"Z":-282.9955},"Depth":2.2},"West":{"Position":{"X":282.9949,"Z":-299.98965},"Depth":2.2},"East":{"Position":{"X":316.9949,"Z":-299.98965},"Depth":2.2}},{"Center":{"Position":{"X":367.7514,"Z":-303.0645},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":346.9943,"Z":-299.98953},"Depth":2.2},"East":{"Position":{"X":388.994,"Z":-299.98953},"Depth":2.2}},{"Center":{"Position":{"X":428.6863,"Z":-316.8421},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":183.6819,"Z":-233.2985},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":252.214,"Z":-252.4091},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":241.99588,"Z":-224.9963},"Depth":2.2},"West":{"Position":{"X":224.9959,"Z":-241.99043},"Depth":2.2},"East":{"Position":{"X":258.99588,"Z":-241.99043},"Depth":2.2}},{"Center":{"Position":{"X":299.6617,"Z":-244.7433},"Depth":0.25},"North":{"Position":{"X":299.99512,"Z":-258.9962},"Depth":2.2},"South":{"Position":{"X":299.9951,"Z":-224.9962},"Depth":2.2},"West":{"Position":{"X":282.9951,"Z":-241.99033},"Depth":2.2},"East":{"Position":{"X":316.9951,"Z":-241.99033},"Depth":2.2}},{"Center":{"Position":{"X":375.3223,"Z":-264.5527},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":365.9947,"Z":-236.9961},"Depth":2.2},"West":{"Position":{"X":348.9947,"Z":-253.99022},"Depth":2.2},"East":{"Position":{"X":382.9947,"Z":-253.99022},"Depth":2.2}},{"Center":{"Position":{"X":418.4793,"Z":-256.98212},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":242.1803,"Z":-190.2645},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":320.0034,"Z":-184.6789},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":379.041,"Z":-196.5027},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]}},"3.6":{"DungeonId":3,"Floorset":5,"RoomsA":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-374.7566,"Z":183.0325},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-287.8989,"Z":178.1563},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-223.1265,"Z":193.6945},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-402.5998,"Z":240.809},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-355.0793,"Z":240.4289},"Depth":0.25},"North":{"Position":{"X":-354.99368,"Z":226.9958},"Depth":2.2},"South":{"Position":{"X":-354.9937,"Z":260.9958},"Depth":2.2},"West":{"Position":{"X":-371.9937,"Z":244.00168},"Depth":2.2},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-300.4581,"Z":241.4994},"Depth":0.25},"North":{"Position":{"X":-299.99396,"Z":226.9956},"Depth":2.2},"South":{"Position":{"X":-299.994,"Z":260.9956},"Depth":2.2},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-225.0836,"Z":262.5056},"Depth":0.25},"North":{"Position":{"X":-234.99408,"Z":238.9954},"Depth":2.2},"South":{"Position":{"X":-234.99408,"Z":272.99542},"Depth":2.2},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":-217.9941,"Z":256.00128},"Depth":2.2}},{"Center":{"Position":{"X":-175.5846,"Z":252.934},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-420.2265,"Z":296.8055},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-367.1488,"Z":296.9664},"Depth":0.25},"North":{"Position":{"X":-366.99326,"Z":282.994},"Depth":2.2},"South":{"Position":{"X":-366.9931,"Z":316.994},"Depth":2.2},"West":{"Position":{"X":-383.9933,"Z":299.99985},"Depth":2.2},"East":{"Position":{"X":-349.9933,"Z":299.99985},"Depth":2.2}},{"Center":{"Position":{"X":-299.914,"Z":305.8483},"Depth":0.25},"North":{"Position":{"X":-299.99377,"Z":278.9905},"Depth":2.2},"South":{"Position":{"X":-299.9903,"Z":320.9902},"Depth":2.2},"West":{"Position":{"X":-316.9938,"Z":299.99615},"Depth":2.2},"East":{"Position":{"X":-282.9938,"Z":301.99615},"Depth":2.2}},{"Center":{"Position":{"X":-234.9083,"Z":310.8708},"Depth":0.25},"North":{"Position":{"X":-234.99619,"Z":296.9932},"Depth":2.2},"South":{"Position":{"X":-234.99622,"Z":330.9932},"Depth":2.2},"West":{"Position":{"X":-251.9962,"Z":313.99905},"Depth":2.2},"East":{"Position":{"X":-217.9962,"Z":313.99905},"Depth":2.2}},{"Center":{"Position":{"X":-180.6718,"Z":311.2285},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-409.0223,"Z":355.6356},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-345.9205,"Z":345.0418},"Depth":0.25},"North":{"Position":{"X":-354.99078,"Z":340.9932},"Depth":2.2},"South":{"Position":{"X":-354.9908,"Z":374.9932},"Depth":2.2},"West":{"Position":{"X":-371.991,"Z":357.99905},"Depth":2.2},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-308.5666,"Z":347.784},"Depth":0.25},"North":{"Position":{"X":-299.99106,"Z":340.9933},"Depth":2.2},"South":{"Position":{"X":-299.9911,"Z":374.9933},"Depth":2.2},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-235.6806,"Z":365.491},"Depth":0.25},"North":{"Position":{"X":-234.99438,"Z":352.9926},"Depth":2.2},"South":{"Position":{"X":-234.99442,"Z":386.9926},"Depth":2.2},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":-217.9944,"Z":369.99847},"Depth":2.2}},{"Center":{"Position":{"X":-177.7759,"Z":366.8867},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-366.6518,"Z":411.5221},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-320.0814,"Z":414.084},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-223.3746,"Z":423.8857},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]},"RoomsB":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":241.9075,"Z":-409.0655},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":292.1822,"Z":-420.3809},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":389.8699,"Z":-406.534},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":203.6679,"Z":-348.4681},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":263.6731,"Z":-339.1262},"Depth":0.25},"North":{"Position":{"X":253.99602,"Z":-362.9945},"Depth":2.2},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":236.996,"Z":-345.98865},"Depth":2.2},"East":{"Position":{"X":270.996,"Z":-345.98865},"Depth":2.2}},{"Center":{"Position":{"X":319.6569,"Z":-367.4182},"Depth":0.25},"North":{"Position":{"X":311.99484,"Z":-374.9948},"Depth":2.2},"South":{"Position":{"X":311.9948,"Z":-340.9948},"Depth":2.2},"West":{"Position":{"X":294.9948,"Z":-357.98895},"Depth":2.2},"East":{"Position":{"X":328.9948,"Z":-357.98895},"Depth":2.2}},{"Center":{"Position":{"X":367.6212,"Z":-349.1082},"Depth":0.25},"North":{"Position":{"X":367.99414,"Z":-362.9946},"Depth":2.2},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":350.9941,"Z":-345.98874},"Depth":2.2},"East":{"Position":{"X":384.9941,"Z":-345.98874},"Depth":2.2}},{"Center":{"Position":{"X":425.4471,"Z":-362.718},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":182.6972,"Z":-303.7495},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":241.7273,"Z":-290.1868},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":224.9961,"Z":-287.98975},"Depth":2.2},"East":{"Position":{"X":258.9961,"Z":-287.98975},"Depth":2.2}},{"Center":{"Position":{"X":300.0593,"Z":-302.7772},"Depth":0.25},"North":{"Position":{"X":299.99493,"Z":-316.9955},"Depth":2.2},"South":{"Position":{"X":299.9949,"Z":-282.9955},"Depth":2.2},"West":{"Position":{"X":282.9949,"Z":-299.98965},"Depth":2.2},"East":{"Position":{"X":316.9949,"Z":-299.98965},"Depth":2.2}},{"Center":{"Position":{"X":367.7514,"Z":-303.0645},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":346.9943,"Z":-299.98953},"Depth":2.2},"East":{"Position":{"X":388.994,"Z":-299.98953},"Depth":2.2}},{"Center":{"Position":{"X":428.6863,"Z":-316.8421},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":183.6819,"Z":-233.2985},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":252.214,"Z":-252.4091},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":241.99588,"Z":-224.9963},"Depth":2.2},"West":{"Position":{"X":224.9959,"Z":-241.99043},"Depth":2.2},"East":{"Position":{"X":258.99588,"Z":-241.99043},"Depth":2.2}},{"Center":{"Position":{"X":299.6617,"Z":-244.7433},"Depth":0.25},"North":{"Position":{"X":299.99512,"Z":-258.9962},"Depth":2.2},"South":{"Position":{"X":299.9951,"Z":-224.9962},"Depth":2.2},"West":{"Position":{"X":282.9951,"Z":-241.99033},"Depth":2.2},"East":{"Position":{"X":316.9951,"Z":-241.99033},"Depth":2.2}},{"Center":{"Position":{"X":375.3223,"Z":-264.5527},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":365.9947,"Z":-236.9961},"Depth":2.2},"West":{"Position":{"X":348.9947,"Z":-253.99022},"Depth":2.2},"East":{"Position":{"X":382.9947,"Z":-253.99022},"Depth":2.2}},{"Center":{"Position":{"X":418.4793,"Z":-256.98212},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":242.1803,"Z":-190.2645},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":320.0034,"Z":-184.6789},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":379.041,"Z":-196.5027},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]}},"3.7":{"DungeonId":3,"Floorset":6,"RoomsA":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-374.7566,"Z":183.0325},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-287.8989,"Z":178.1563},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-223.1265,"Z":193.6945},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-402.5998,"Z":240.809},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-355.0793,"Z":240.4289},"Depth":0.25},"North":{"Position":{"X":-354.99368,"Z":226.9958},"Depth":2.2},"South":{"Position":{"X":-354.9937,"Z":260.9958},"Depth":2.2},"West":{"Position":{"X":-371.9937,"Z":244.00168},"Depth":2.2},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-300.4581,"Z":241.4994},"Depth":0.25},"North":{"Position":{"X":-299.99396,"Z":226.9956},"Depth":2.2},"South":{"Position":{"X":-299.994,"Z":260.9956},"Depth":2.2},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-225.0836,"Z":262.5056},"Depth":0.25},"North":{"Position":{"X":-234.99408,"Z":238.9954},"Depth":2.2},"South":{"Position":{"X":-234.99408,"Z":272.99542},"Depth":2.2},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":-217.9941,"Z":256.00128},"Depth":2.2}},{"Center":{"Position":{"X":-175.5846,"Z":252.934},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-420.2265,"Z":296.8055},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-367.1488,"Z":296.9664},"Depth":0.25},"North":{"Position":{"X":-366.99326,"Z":282.994},"Depth":2.2},"South":{"Position":{"X":-366.9931,"Z":316.994},"Depth":2.2},"West":{"Position":{"X":-383.9933,"Z":299.99985},"Depth":2.2},"East":{"Position":{"X":-349.9933,"Z":299.99985},"Depth":2.2}},{"Center":{"Position":{"X":-299.914,"Z":305.8483},"Depth":0.25},"North":{"Position":{"X":-299.99377,"Z":278.9905},"Depth":2.2},"South":{"Position":{"X":-299.9903,"Z":320.9902},"Depth":2.2},"West":{"Position":{"X":-316.9938,"Z":299.99615},"Depth":2.2},"East":{"Position":{"X":-282.9938,"Z":301.99615},"Depth":2.2}},{"Center":{"Position":{"X":-234.9083,"Z":310.8708},"Depth":0.25},"North":{"Position":{"X":-234.99619,"Z":296.9932},"Depth":2.2},"South":{"Position":{"X":-234.99622,"Z":330.9932},"Depth":2.2},"West":{"Position":{"X":-251.9962,"Z":313.99905},"Depth":2.2},"East":{"Position":{"X":-217.9962,"Z":313.99905},"Depth":2.2}},{"Center":{"Position":{"X":-180.6718,"Z":311.2285},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-409.0223,"Z":355.6356},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-345.9205,"Z":345.0418},"Depth":0.25},"North":{"Position":{"X":-354.99078,"Z":340.9932},"Depth":2.2},"South":{"Position":{"X":-354.9908,"Z":374.9932},"Depth":2.2},"West":{"Position":{"X":-371.991,"Z":357.99905},"Depth":2.2},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-308.5666,"Z":355.7528},"Depth":0.25},"North":{"Position":{"X":-299.99106,"Z":340.9933},"Depth":2.2},"South":{"Position":{"X":-299.9911,"Z":374.9933},"Depth":2.2},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-235.6806,"Z":365.491},"Depth":0.25},"North":{"Position":{"X":-234.99438,"Z":352.9926},"Depth":2.2},"South":{"Position":{"X":-234.99442,"Z":386.9926},"Depth":2.2},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":-217.9944,"Z":369.99847},"Depth":2.2}},{"Center":{"Position":{"X":-177.7759,"Z":366.8867},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-366.6518,"Z":411.5221},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-320.0814,"Z":414.084},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-223.3746,"Z":423.8857},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]},"RoomsB":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":241.9075,"Z":-409.0655},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":292.1822,"Z":-420.3809},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":389.8699,"Z":-406.534},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":203.6679,"Z":-348.4681},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":262.4874,"Z":-339.986},"Depth":0.25},"North":{"Position":{"X":253.99602,"Z":-362.9945},"Depth":2.2},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":236.996,"Z":-345.98865},"Depth":2.2},"East":{"Position":{"X":270.996,"Z":-345.98865},"Depth":2.2}},{"Center":{"Position":{"X":319.6569,"Z":-367.4182},"Depth":0.25},"North":{"Position":{"X":311.99484,"Z":-374.9948},"Depth":2.2},"South":{"Position":{"X":311.9948,"Z":-340.9948},"Depth":2.2},"West":{"Position":{"X":294.9948,"Z":-357.98895},"Depth":2.2},"East":{"Position":{"X":328.9948,"Z":-357.98895},"Depth":2.2}},{"Center":{"Position":{"X":367.6212,"Z":-349.1082},"Depth":0.25},"North":{"Position":{"X":367.99414,"Z":-362.9946},"Depth":2.2},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":350.9941,"Z":-345.98874},"Depth":2.2},"East":{"Position":{"X":384.9941,"Z":-345.98874},"Depth":2.2}},{"Center":{"Position":{"X":425.4471,"Z":-362.7187},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":182.6972,"Z":-303.7495},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":241.7273,"Z":-290.1868},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":224.9961,"Z":-287.98975},"Depth":2.2},"East":{"Position":{"X":258.9961,"Z":-287.98975},"Depth":2.2}},{"Center":{"Position":{"X":300.0593,"Z":-302.7772},"Depth":0.25},"North":{"Position":{"X":299.99493,"Z":-316.9955},"Depth":2.2},"South":{"Position":{"X":299.9949,"Z":-282.9955},"Depth":2.2},"West":{"Position":{"X":282.9949,"Z":-299.98965},"Depth":2.2},"East":{"Position":{"X":316.9949,"Z":-299.98965},"Depth":2.2}},{"Center":{"Position":{"X":367.7514,"Z":-303.0653},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":346.9943,"Z":-299.98953},"Depth":2.2},"East":{"Position":{"X":388.994,"Z":-299.98953},"Depth":2.2}},{"Center":{"Position":{"X":428.6863,"Z":-316.8428},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":183.6813,"Z":-233.2991},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":252.214,"Z":-252.4102},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":241.99588,"Z":-224.9963},"Depth":2.2},"West":{"Position":{"X":224.9959,"Z":-241.99043},"Depth":2.2},"East":{"Position":{"X":258.99588,"Z":-241.99043},"Depth":2.2}},{"Center":{"Position":{"X":299.6617,"Z":-244.7438},"Depth":0.25},"North":{"Position":{"X":299.99512,"Z":-258.9962},"Depth":2.2},"South":{"Position":{"X":299.9951,"Z":-224.9962},"Depth":2.2},"West":{"Position":{"X":282.9951,"Z":-241.99033},"Depth":2.2},"East":{"Position":{"X":316.9951,"Z":-241.99033},"Depth":2.2}},{"Center":{"Position":{"X":375.3223,"Z":-264.5527},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":365.9947,"Z":-236.9961},"Depth":2.2},"West":{"Position":{"X":348.9947,"Z":-253.99022},"Depth":2.2},"East":{"Position":{"X":382.9947,"Z":-253.99022},"Depth":2.2}},{"Center":{"Position":{"X":418.4793,"Z":-256.98242},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":242.1803,"Z":-190.2656},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":320.0034,"Z":-184.6794},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":379.041,"Z":-196.5031},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]}},"3.8":{"DungeonId":3,"Floorset":7,"RoomsA":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-374.7566,"Z":183.0325},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-287.8989,"Z":178.1563},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-223.1265,"Z":193.6945},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-402.5998,"Z":240.809},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-355.0793,"Z":240.4289},"Depth":0.25},"North":{"Position":{"X":-354.99368,"Z":226.9958},"Depth":2.2},"South":{"Position":{"X":-354.9937,"Z":260.9958},"Depth":2.2},"West":{"Position":{"X":-371.9937,"Z":244.00168},"Depth":2.2},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-300.4581,"Z":241.4994},"Depth":0.25},"North":{"Position":{"X":-299.99396,"Z":226.9956},"Depth":2.2},"South":{"Position":{"X":-299.994,"Z":260.9956},"Depth":2.2},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-225.0836,"Z":262.5056},"Depth":0.25},"North":{"Position":{"X":-234.99408,"Z":238.9954},"Depth":2.2},"South":{"Position":{"X":-234.99408,"Z":272.99542},"Depth":2.2},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":-217.9941,"Z":256.00128},"Depth":2.2}},{"Center":{"Position":{"X":-175.5846,"Z":252.934},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-420.2265,"Z":296.8055},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-367.1488,"Z":296.9664},"Depth":0.25},"North":{"Position":{"X":-366.99326,"Z":282.994},"Depth":2.2},"South":{"Position":{"X":-366.9931,"Z":316.994},"Depth":2.2},"West":{"Position":{"X":-383.9933,"Z":299.99985},"Depth":2.2},"East":{"Position":{"X":-349.9933,"Z":299.99985},"Depth":2.2}},{"Center":{"Position":{"X":-299.914,"Z":305.8483},"Depth":0.25},"North":{"Position":{"X":-299.99377,"Z":278.9905},"Depth":2.2},"South":{"Position":{"X":-299.9903,"Z":320.9902},"Depth":2.2},"West":{"Position":{"X":-316.9938,"Z":299.99615},"Depth":2.2},"East":{"Position":{"X":-282.9938,"Z":301.99615},"Depth":2.2}},{"Center":{"Position":{"X":-234.9083,"Z":310.8708},"Depth":0.25},"North":{"Position":{"X":-234.99619,"Z":296.9932},"Depth":2.2},"South":{"Position":{"X":-234.99622,"Z":330.9932},"Depth":2.2},"West":{"Position":{"X":-251.9962,"Z":313.99905},"Depth":2.2},"East":{"Position":{"X":-217.9962,"Z":313.99905},"Depth":2.2}},{"Center":{"Position":{"X":-180.6718,"Z":311.2285},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-409.0223,"Z":355.6356},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-345.9205,"Z":345.0418},"Depth":0.25},"North":{"Position":{"X":-354.99078,"Z":340.9932},"Depth":2.2},"South":{"Position":{"X":-354.9908,"Z":374.9932},"Depth":2.2},"West":{"Position":{"X":-371.991,"Z":357.99905},"Depth":2.2},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-308.5666,"Z":355.7528},"Depth":0.25},"North":{"Position":{"X":-299.99106,"Z":340.9933},"Depth":2.2},"South":{"Position":{"X":-299.9911,"Z":374.9933},"Depth":2.2},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-235.6806,"Z":365.491},"Depth":0.25},"North":{"Position":{"X":-234.99438,"Z":352.9926},"Depth":2.2},"South":{"Position":{"X":-234.99442,"Z":386.9926},"Depth":2.2},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":-217.9944,"Z":369.99847},"Depth":2.2}},{"Center":{"Position":{"X":-177.7759,"Z":366.8867},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-366.6518,"Z":411.5221},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-320.0814,"Z":414.084},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-223.3746,"Z":423.8857},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]},"RoomsB":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":241.9075,"Z":-409.0655},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":292.1822,"Z":-420.3809},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":389.8699,"Z":-406.534},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":203.6679,"Z":-348.4681},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":262.4874,"Z":-339.986},"Depth":0.25},"North":{"Position":{"X":253.99602,"Z":-362.9945},"Depth":2.2},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":236.996,"Z":-345.98865},"Depth":2.2},"East":{"Position":{"X":270.996,"Z":-345.98865},"Depth":2.2}},{"Center":{"Position":{"X":319.6569,"Z":-367.4182},"Depth":0.25},"North":{"Position":{"X":311.99484,"Z":-374.9948},"Depth":2.2},"South":{"Position":{"X":311.9948,"Z":-340.9948},"Depth":2.2},"West":{"Position":{"X":294.9948,"Z":-357.98895},"Depth":2.2},"East":{"Position":{"X":328.9948,"Z":-357.98895},"Depth":2.2}},{"Center":{"Position":{"X":367.6212,"Z":-349.1082},"Depth":0.25},"North":{"Position":{"X":367.99414,"Z":-362.9946},"Depth":2.2},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":350.9941,"Z":-345.98874},"Depth":2.2},"East":{"Position":{"X":384.9941,"Z":-345.98874},"Depth":2.2}},{"Center":{"Position":{"X":425.4471,"Z":-362.7187},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":182.6972,"Z":-303.7495},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":241.7273,"Z":-290.1868},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":224.9961,"Z":-287.98975},"Depth":2.2},"East":{"Position":{"X":258.9961,"Z":-287.98975},"Depth":2.2}},{"Center":{"Position":{"X":300.0593,"Z":-302.7772},"Depth":0.25},"North":{"Position":{"X":299.99493,"Z":-316.9955},"Depth":2.2},"South":{"Position":{"X":299.9949,"Z":-282.9955},"Depth":2.2},"West":{"Position":{"X":282.9949,"Z":-299.98965},"Depth":2.2},"East":{"Position":{"X":316.9949,"Z":-299.98965},"Depth":2.2}},{"Center":{"Position":{"X":367.7514,"Z":-303.0653},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":346.9943,"Z":-299.98953},"Depth":2.2},"East":{"Position":{"X":388.994,"Z":-299.98953},"Depth":2.2}},{"Center":{"Position":{"X":428.6863,"Z":-316.8428},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":183.6813,"Z":-233.2991},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":252.214,"Z":-252.4102},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":241.99588,"Z":-224.9963},"Depth":2.2},"West":{"Position":{"X":224.9959,"Z":-241.99043},"Depth":2.2},"East":{"Position":{"X":258.99588,"Z":-241.99043},"Depth":2.2}},{"Center":{"Position":{"X":299.6617,"Z":-244.7438},"Depth":0.25},"North":{"Position":{"X":299.99512,"Z":-258.9962},"Depth":2.2},"South":{"Position":{"X":299.9951,"Z":-224.9962},"Depth":2.2},"West":{"Position":{"X":282.9951,"Z":-241.99033},"Depth":2.2},"East":{"Position":{"X":316.9951,"Z":-241.99033},"Depth":2.2}},{"Center":{"Position":{"X":375.3223,"Z":-264.5527},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":365.9947,"Z":-236.9961},"Depth":2.2},"West":{"Position":{"X":348.9947,"Z":-253.99022},"Depth":2.2},"East":{"Position":{"X":382.9947,"Z":-253.99022},"Depth":2.2}},{"Center":{"Position":{"X":418.4793,"Z":-256.98242},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":242.1803,"Z":-190.2656},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":320.0034,"Z":-184.6794},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":379.041,"Z":-196.5031},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]}},"3.9":{"DungeonId":3,"Floorset":8,"RoomsA":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-377.4217,"Z":131.9129},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-297.3352,"Z":132.3478},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-217.3902,"Z":131.9444},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-464.5493,"Z":214.0658},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-380.4141,"Z":218.7522},"Depth":0.25},"North":{"Position":{"X":-380,"Z":199.63799},"Depth":1},"South":{"Position":{"X":-380,"Z":240.36201},"Depth":1},"West":{"Position":{"X":-400.362,"Z":219.99297},"Depth":1},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-300,"Z":217.2716},"Depth":0.25},"North":{"Position":{"X":-300,"Z":199.63799},"Depth":1},"South":{"Position":{"X":-300,"Z":240.36201},"Depth":1},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-220.7222,"Z":218.8539},"Depth":0.25},"North":{"Position":{"X":-220,"Z":199.63809},"Depth":1},"South":{"Position":{"X":-220,"Z":240.36201},"Depth":1},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":-199.638,"Z":219.99297},"Depth":1}},{"Center":{"Position":{"X":-135.7887,"Z":219.8152},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-464.5605,"Z":294.4485},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-380,"Z":297},"Depth":0.25},"North":{"Position":{"X":-380,"Z":279.638},"Depth":1},"South":{"Position":{"X":-380,"Z":320.362},"Depth":1},"West":{"Position":{"X":-400.362,"Z":299.99298},"Depth":1},"East":{"Position":{"X":-359.638,"Z":299.99298},"Depth":1}},{"Center":{"Position":{"X":-300,"Z":297},"Depth":0.25},"North":{"Position":{"X":-300,"Z":279.638},"Depth":1},"South":{"Position":{"X":-300,"Z":320.362},"Depth":1},"West":{"Position":{"X":-320.362,"Z":299.99298},"Depth":1},"East":{"Position":{"X":-279.638,"Z":299.99298},"Depth":1}},{"Center":{"Position":{"X":-220.0636,"Z":297},"Depth":0.25},"North":{"Position":{"X":-220,"Z":279.638},"Depth":1},"South":{"Position":{"X":-220,"Z":320.362},"Depth":1},"West":{"Position":{"X":-240.362,"Z":299.99298},"Depth":1},"East":{"Position":{"X":-199.638,"Z":299.99298},"Depth":1}},{"Center":{"Position":{"X":-135.2843,"Z":299.6435},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-464.6832,"Z":374.2941},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-379.9251,"Z":377.1001},"Depth":0.25},"North":{"Position":{"X":-380,"Z":359.6381},"Depth":1},"South":{"Position":{"X":-380,"Z":400.362},"Depth":1},"West":{"Position":{"X":-400.362,"Z":379.99298},"Depth":1},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-299.8572,"Z":376.6748},"Depth":0.25},"North":{"Position":{"X":-300,"Z":359.638},"Depth":1},"South":{"Position":{"X":-300,"Z":400.362},"Depth":1},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-218.6692,"Z":374.0952},"Depth":0.25},"North":{"Position":{"X":-220,"Z":359.638},"Depth":1},"South":{"Position":{"X":-220,"Z":400.362},"Depth":1},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":-199.638,"Z":379.99298},"Depth":1}},{"Center":{"Position":{"X":-135.5744,"Z":379.7612},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-382.7403,"Z":462.8701},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-302.7381,"Z":461.5305},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-222.6702,"Z":462.3714},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]},"RoomsB":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":222.6735,"Z":-467.4394},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":302.731,"Z":-467.8465},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":382.6952,"Z":-467.4534},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":135.6577,"Z":-385.729},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":219.6897,"Z":-382.7401},"Depth":0.25},"North":{"Position":{"X":220,"Z":-400.362},"Depth":1},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":199.638,"Z":-380.00702},"Depth":1},"East":{"Position":{"X":240.36191,"Z":-380},"Depth":1}},{"Center":{"Position":{"X":298.7249,"Z":-385.0645},"Depth":0.25},"North":{"Position":{"X":300,"Z":-400.362},"Depth":1},"South":{"Position":{"X":300,"Z":-359.638},"Depth":1},"West":{"Position":{"X":279.638,"Z":-380.00702},"Depth":1},"East":{"Position":{"X":320.362,"Z":-380.00702},"Depth":1}},{"Center":{"Position":{"X":380.159,"Z":-383.0681},"Depth":0.25},"North":{"Position":{"X":380,"Z":-400.362},"Depth":1},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":359.638,"Z":-380.00702},"Depth":1},"East":{"Position":{"X":400.362,"Z":-380},"Depth":1}},{"Center":{"Position":{"X":464.779,"Z":-380.3957},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":135.4983,"Z":-305.7232},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":220.1101,"Z":-303.047},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":199.638,"Z":-300},"Depth":1},"East":{"Position":{"X":240.362,"Z":-300.00702},"Depth":1}},{"Center":{"Position":{"X":300,"Z":-303},"Depth":0.25},"North":{"Position":{"X":300,"Z":-320.362},"Depth":1},"South":{"Position":{"X":300,"Z":-279.638},"Depth":1},"West":{"Position":{"X":279.638,"Z":-300},"Depth":1},"East":{"Position":{"X":320.362,"Z":-300},"Depth":1}},{"Center":{"Position":{"X":379.9307,"Z":-303},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":359.638,"Z":-300},"Depth":1},"East":{"Position":{"X":400.362,"Z":-300},"Depth":1}},{"Center":{"Position":{"X":464.7761,"Z":-300.4514},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":135.4372,"Z":-225.5491},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":219.282,"Z":-224.4913},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":220,"Z":-199.63799},"Depth":1},"West":{"Position":{"X":199.638,"Z":-220},"Depth":1},"East":{"Position":{"X":240.362,"Z":-220.00703},"Depth":1}},{"Center":{"Position":{"X":300,"Z":-222.9034},"Depth":0.25},"North":{"Position":{"X":300,"Z":-240.36201},"Depth":1},"South":{"Position":{"X":300,"Z":-199.63799},"Depth":1},"West":{"Position":{"X":279.638,"Z":-220},"Depth":1},"East":{"Position":{"X":320.362,"Z":-220},"Depth":1}},{"Center":{"Position":{"X":380.0489,"Z":-222.9002},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":380,"Z":-199.63799},"Depth":1},"West":{"Position":{"X":359.638,"Z":-220},"Depth":1},"East":{"Position":{"X":400.3619,"Z":-220},"Depth":1}},{"Center":{"Position":{"X":464.9267,"Z":-220.3926},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":217.3246,"Z":-138.528},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":297.381,"Z":-138.3245},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":377.3699,"Z":-138.6309},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]}},"3.10":{"DungeonId":3,"Floorset":9,"RoomsA":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-377.4217,"Z":131.9129},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-297.3352,"Z":132.3478},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-217.3902,"Z":131.9444},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-464.5493,"Z":214.0658},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-380.4141,"Z":218.7522},"Depth":0.25},"North":{"Position":{"X":-380,"Z":199.63799},"Depth":1},"South":{"Position":{"X":-380,"Z":240.36201},"Depth":1},"West":{"Position":{"X":-400.362,"Z":219.99297},"Depth":1},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-300,"Z":217.2716},"Depth":0.25},"North":{"Position":{"X":-300,"Z":199.63799},"Depth":1},"South":{"Position":{"X":-300,"Z":240.36201},"Depth":1},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-220.7222,"Z":218.8539},"Depth":0.25},"North":{"Position":{"X":-220,"Z":199.63809},"Depth":1},"South":{"Position":{"X":-220,"Z":240.36201},"Depth":1},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":-199.638,"Z":219.99297},"Depth":1}},{"Center":{"Position":{"X":-135.7887,"Z":219.8152},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-464.5605,"Z":294.4485},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-380,"Z":297},"Depth":0.25},"North":{"Position":{"X":-380,"Z":279.638},"Depth":1},"South":{"Position":{"X":-380,"Z":320.362},"Depth":1},"West":{"Position":{"X":-400.362,"Z":299.99298},"Depth":1},"East":{"Position":{"X":-359.638,"Z":299.99298},"Depth":1}},{"Center":{"Position":{"X":-300,"Z":297},"Depth":0.25},"North":{"Position":{"X":-300,"Z":279.638},"Depth":1},"South":{"Position":{"X":-300,"Z":320.362},"Depth":1},"West":{"Position":{"X":-320.362,"Z":299.99298},"Depth":1},"East":{"Position":{"X":-279.638,"Z":299.99298},"Depth":1}},{"Center":{"Position":{"X":-220.0636,"Z":297},"Depth":0.25},"North":{"Position":{"X":-220,"Z":279.638},"Depth":1},"South":{"Position":{"X":-220,"Z":320.362},"Depth":1},"West":{"Position":{"X":-240.362,"Z":299.99298},"Depth":1},"East":{"Position":{"X":-199.638,"Z":299.99298},"Depth":1}},{"Center":{"Position":{"X":-135.2843,"Z":299.6435},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-464.6832,"Z":374.2941},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-379.9251,"Z":377.1001},"Depth":0.25},"North":{"Position":{"X":-380,"Z":359.6381},"Depth":1},"South":{"Position":{"X":-380,"Z":400.362},"Depth":1},"West":{"Position":{"X":-400.362,"Z":379.99298},"Depth":1},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-299.8572,"Z":376.6748},"Depth":0.25},"North":{"Position":{"X":-300,"Z":359.638},"Depth":1},"South":{"Position":{"X":-300,"Z":400.362},"Depth":1},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-218.6692,"Z":374.0952},"Depth":0.25},"North":{"Position":{"X":-220,"Z":359.638},"Depth":1},"South":{"Position":{"X":-220,"Z":400.362},"Depth":1},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":-199.638,"Z":379.99298},"Depth":1}},{"Center":{"Position":{"X":-135.5744,"Z":379.7612},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-382.7403,"Z":462.8701},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-302.7381,"Z":461.5305},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":-222.6702,"Z":462.3714},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]},"RoomsB":{"Rooms":[{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":222.6735,"Z":-467.4394},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":302.731,"Z":-467.8465},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":382.6952,"Z":-467.4534},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":135.6577,"Z":-385.729},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":219.6897,"Z":-382.7401},"Depth":0.25},"North":{"Position":{"X":220,"Z":-400.362},"Depth":1},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":199.638,"Z":-380.00702},"Depth":1},"East":{"Position":{"X":240.36191,"Z":-380},"Depth":1}},{"Center":{"Position":{"X":298.7249,"Z":-385.0645},"Depth":0.25},"North":{"Position":{"X":300,"Z":-400.362},"Depth":1},"South":{"Position":{"X":300,"Z":-359.638},"Depth":1},"West":{"Position":{"X":279.638,"Z":-380.00702},"Depth":1},"East":{"Position":{"X":320.362,"Z":-380.00702},"Depth":1}},{"Center":{"Position":{"X":380.159,"Z":-383.0681},"Depth":0.25},"North":{"Position":{"X":380,"Z":-400.362},"Depth":1},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":359.638,"Z":-380.00702},"Depth":1},"East":{"Position":{"X":400.362,"Z":-380},"Depth":1}},{"Center":{"Position":{"X":464.779,"Z":-380.3957},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":135.4983,"Z":-305.7232},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":220.1101,"Z":-303.047},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":199.638,"Z":-300},"Depth":1},"East":{"Position":{"X":240.362,"Z":-300.00702},"Depth":1}},{"Center":{"Position":{"X":300,"Z":-303},"Depth":0.25},"North":{"Position":{"X":300,"Z":-320.362},"Depth":1},"South":{"Position":{"X":300,"Z":-279.638},"Depth":1},"West":{"Position":{"X":279.638,"Z":-300},"Depth":1},"East":{"Position":{"X":320.362,"Z":-300},"Depth":1}},{"Center":{"Position":{"X":379.9307,"Z":-303},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":359.638,"Z":-300},"Depth":1},"East":{"Position":{"X":400.362,"Z":-300},"Depth":1}},{"Center":{"Position":{"X":464.7761,"Z":-300.4514},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":135.4372,"Z":-225.5491},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":219.282,"Z":-224.4913},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":220,"Z":-199.63799},"Depth":1},"West":{"Position":{"X":199.638,"Z":-220},"Depth":1},"East":{"Position":{"X":240.362,"Z":-220.00703},"Depth":1}},{"Center":{"Position":{"X":300,"Z":-222.9034},"Depth":0.25},"North":{"Position":{"X":300,"Z":-240.36201},"Depth":1},"South":{"Position":{"X":300,"Z":-199.63799},"Depth":1},"West":{"Position":{"X":279.638,"Z":-220},"Depth":1},"East":{"Position":{"X":320.362,"Z":-220},"Depth":1}},{"Center":{"Position":{"X":380.0489,"Z":-222.9002},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":380,"Z":-199.63799},"Depth":1},"West":{"Position":{"X":359.638,"Z":-220},"Depth":1},"East":{"Position":{"X":400.3619,"Z":-220},"Depth":1}},{"Center":{"Position":{"X":464.9267,"Z":-220.3926},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":217.3246,"Z":-138.528},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":297.381,"Z":-138.3245},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":377.3699,"Z":-138.6309},"Depth":0.25},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}},{"Center":{"Position":{"X":0,"Z":0},"Depth":0},"North":{"Position":{"X":0,"Z":0},"Depth":0},"South":{"Position":{"X":0,"Z":0},"Depth":0},"West":{"Position":{"X":0,"Z":0},"Depth":0},"East":{"Position":{"X":0,"Z":0},"Depth":0}}]}}}
diff --git a/BossMod/Util/WPosDir.cs b/BossMod/Util/WPosDir.cs
index 5694a9df24..b984b4c509 100644
--- a/BossMod/Util/WPosDir.cs
+++ b/BossMod/Util/WPosDir.cs
@@ -68,7 +68,6 @@ public readonly bool InCross(WDir direction, float length, float halfWidth)
}
// 2d vector that represents world-space position on XZ plane
-[Serializable]
public record struct WPos(float X, float Z)
{
public WPos(Vector2 v) : this(v.X, v.Y) { }