From a8e649889fdc5b5ba1ea9ce0a786eb4f762e130f Mon Sep 17 00:00:00 2001 From: xanunderscore <149614526+xanunderscore@users.noreply.github.com> Date: Tue, 28 Jan 2025 16:11:31 -0500 Subject: [PATCH 01/32] Auto-engage preset --- BossMod/Autorotation/MiscAI/AutoEngage.cs | 38 +++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 BossMod/Autorotation/MiscAI/AutoEngage.cs diff --git a/BossMod/Autorotation/MiscAI/AutoEngage.cs b/BossMod/Autorotation/MiscAI/AutoEngage.cs new file mode 100644 index 0000000000..9349f0abe9 --- /dev/null +++ b/BossMod/Autorotation/MiscAI/AutoEngage.cs @@ -0,0 +1,38 @@ +using BossMod.Autorotation.xan; + +namespace BossMod.Autorotation.MiscAI; +public sealed class AutoEngage(RotationModuleManager manager, Actor player) : RotationModule(manager, player) +{ + public enum Track { QuestBattle, DeepDungeon, EpicEcho } + + public static RotationModuleDefinition Definition() + { + var def = new RotationModuleDefinition("Misc AI: Auto-engage", "Automatically attack all nearby targets in certain circumstances", "Misc", "xan", RotationModuleQuality.Basic, new(~0ul), 1000); + + def.AbilityTrack(Track.QuestBattle, "Automatically attack solo duty bosses"); + def.AbilityTrack(Track.DeepDungeon, "Automatically attack deep dungeon bosses when solo"); + def.AbilityTrack(Track.EpicEcho, "Automatically attack all targets if the Epic Echo status is present (i.e. when unsynced)"); + + return def; + } + + public override void Execute(StrategyValues strategy, ref Actor? primaryTarget, float estimatedAnimLockDelay, bool isMoving) + { + if (Player.InCombat || primaryTarget != null || World.Client.CountdownRemaining > 0) + return; + + var enabled = false; + + if (strategy.Enabled(Track.QuestBattle)) + enabled |= Bossmods.ActiveModule?.Info?.Category == BossModuleInfo.Category.Quest; + + if (strategy.Enabled(Track.DeepDungeon)) + enabled |= Bossmods.ActiveModule?.Info?.Category == BossModuleInfo.Category.DeepDungeon && World.Party.WithoutSlot().Count() == 1; + + if (strategy.Enabled(Track.EpicEcho)) + enabled |= Player.Statuses.Any(s => s.ID == 2734); + + if (enabled) + primaryTarget = Hints.PotentialTargets.Where(t => t.Priority == AIHints.Enemy.PriorityUndesirable).MinBy(p => Player.DistanceToHitbox(p.Actor))?.Actor; + } +} From 5805fe76cede33ab9628fa14d8a48435f55d2a3b Mon Sep 17 00:00:00 2001 From: xanunderscore <149614526+xanunderscore@users.noreply.github.com> Date: Tue, 28 Jan 2025 19:03:20 -0500 Subject: [PATCH 02/32] deep dungeon modules --- BossMod/BossMod.csproj | 5 +- BossMod/BossModule/AIHints.cs | 12 +- BossMod/BossModule/ZoneModule.cs | 2 + BossMod/BossModule/ZoneModuleWindow.cs | 23 + BossMod/Data/Actor.cs | 2 + .../DeepDungeon/EurekaOrthos/D10Gancanagh.cs | 2 +- .../EurekaOrthos/D20CloningNode.cs | 4 +- .../EurekaOrthos/D30TiamatsClone.cs | 25 +- .../EurekaOrthos/D40TwintaniasClone.cs | 8 +- .../D50ServomechanicalChimera14X.cs | 153 + .../D60ServomechanicalMinotaur.cs | 25 +- .../DeepDungeon/EurekaOrthos/D70Aeturna.cs | 4 +- .../EurekaOrthos/D80ProtoKaliya.cs | 198 + .../EurekaOrthos/D90Administrator.cs | 61 +- .../DeepDungeon/EurekaOrthos/EOFloorModule.cs | 259 + .../Modules/Global/DeepDungeon/AutoClear.cs | 824 + .../Modules/Global/DeepDungeon/BadTraps.json | 1 + BossMod/Modules/Global/DeepDungeon/Config.cs | 45 + .../Global/DeepDungeon/FloorPathfind.cs | 61 + .../Modules/Global/DeepDungeon/LevelData.cs | 37 + BossMod/Modules/Global/DeepDungeon/Minimap.cs | 165 + BossMod/Modules/Global/DeepDungeon/Walls.json | 74482 ++++++++++++++++ .../PalaceOfTheDead/D100NybethObdilord.cs | 2 +- .../PalaceOfTheDead/D10PalaceDeathgaze.cs | 2 +- .../PalaceOfTheDead/D110Alicanto.cs | 2 +- .../PalaceOfTheDead/D120Kirtimukha.cs | 16 +- .../DeepDungeon/PalaceOfTheDead/D130Alfard.cs | 16 +- .../DeepDungeon/PalaceOfTheDead/D140AhPuch.cs | 2 +- .../PalaceOfTheDead/D150Tisiphone.cs | 28 +- .../PalaceOfTheDead/D160Todesritter.cs | 57 +- .../PalaceOfTheDead/D180Dendainsonne.cs | 56 +- .../PalaceOfTheDead/D190TheGodfather.cs | 11 +- .../DeepDungeon/PalaceOfTheDead/D20Spurge.cs | 16 +- .../PalaceOfTheDead/D30Ningishzida.cs | 16 +- .../DeepDungeon/PalaceOfTheDead/D40Ixtab.cs | 2 +- .../PalaceOfTheDead/D50EddaBlackbosom.cs | 2 +- .../PalaceOfTheDead/D60TheBlackRider.cs | 109 +- .../DeepDungeon/PalaceOfTheDead/D70Yaquaru.cs | 76 +- .../DeepDungeon/PalaceOfTheDead/D80Gudanna.cs | 59 +- .../PalaceOfTheDead/D90TheGodmother.cs | 11 +- .../PalaceOfTheDead/PalaceFloorModule.cs | 126 + .../Stormblood/DeepDungeon/D10Mojabune.cs | 2 +- .../Stormblood/DeepDungeon/D30Hiruko.cs | 30 +- .../Stormblood/DeepDungeon/D40Bhima.cs | 8 +- .../Modules/Stormblood/DeepDungeon/D50Gozu.cs | 4 +- .../Stormblood/DeepDungeon/D70Kenko.cs | 84 + .../Stormblood/DeepDungeon/HoHFloorModule.cs | 85 + BossMod/Pathfinding/NavigationDecision.cs | 2 +- BossMod/Replay/ReplayManagementConfig.cs | 10 + BossMod/Replay/ReplayManager.cs | 43 +- .../Visualization/ReplayDetailsWindow.cs | 3 +- BossMod/packages.lock.json | 2050 +- UIDev/OfflineTextureProvider.cs | 180 + UIDev/PathfindingTest.cs | 6 +- UIDev/UITest.cs | 29 +- 55 files changed, 78359 insertions(+), 1184 deletions(-) create mode 100644 BossMod/BossModule/ZoneModuleWindow.cs create mode 100644 BossMod/Modules/Endwalker/DeepDungeon/EurekaOrthos/D50ServomechanicalChimera14X.cs create mode 100644 BossMod/Modules/Endwalker/DeepDungeon/EurekaOrthos/D80ProtoKaliya.cs create mode 100644 BossMod/Modules/Endwalker/DeepDungeon/EurekaOrthos/EOFloorModule.cs create mode 100644 BossMod/Modules/Global/DeepDungeon/AutoClear.cs create mode 100644 BossMod/Modules/Global/DeepDungeon/BadTraps.json create mode 100644 BossMod/Modules/Global/DeepDungeon/Config.cs create mode 100644 BossMod/Modules/Global/DeepDungeon/FloorPathfind.cs create mode 100644 BossMod/Modules/Global/DeepDungeon/LevelData.cs create mode 100644 BossMod/Modules/Global/DeepDungeon/Minimap.cs create mode 100644 BossMod/Modules/Global/DeepDungeon/Walls.json create mode 100644 BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/PalaceFloorModule.cs create mode 100644 BossMod/Modules/Stormblood/DeepDungeon/D70Kenko.cs create mode 100644 BossMod/Modules/Stormblood/DeepDungeon/HoHFloorModule.cs create mode 100644 UIDev/OfflineTextureProvider.cs diff --git a/BossMod/BossMod.csproj b/BossMod/BossMod.csproj index 94632f22f3..5b5cd9cedc 100644 --- a/BossMod/BossMod.csproj +++ b/BossMod/BossMod.csproj @@ -18,6 +18,7 @@ false false true + true true @@ -48,7 +49,8 @@ - + + false Analyzer @@ -91,6 +93,7 @@ PreserveNewest + diff --git a/BossMod/BossModule/AIHints.cs b/BossMod/BossModule/AIHints.cs index e520f939c4..674903e111 100644 --- a/BossMod/BossModule/AIHints.cs +++ b/BossMod/BossModule/AIHints.cs @@ -60,7 +60,7 @@ public enum SpecialMode // positioning: list of shapes that are either forbidden to stand in now or will be in near future // AI will try to move in such a way to avoid standing in any forbidden zone after its activation or outside of some restricted zone after its activation, even at the cost of uptime - public List<(Func shapeDistance, DateTime activation)> ForbiddenZones = []; + public List<(Func shapeDistance, DateTime activation, ulong Source)> ForbiddenZones = []; // positioning: list of goal functions // AI will try to move to reach non-forbidden point with highest goal value (sum of values returned by all functions) @@ -147,11 +147,17 @@ public void PrioritizeAll() h.Priority = Math.Max(h.Priority, 0); } + public void SetPriority(Actor actor, int priority) + { + if (FindEnemy(actor) is { } enemy) + enemy.Priority = priority; + } + public void InteractWithOID(WorldState ws, uint oid) => InteractWithTarget = ws.Actors.FirstOrDefault(a => a.OID == oid && a.IsTargetable); public void InteractWithOID(WorldState ws, OID oid) where OID : Enum => InteractWithOID(ws, (uint)(object)oid); - public void AddForbiddenZone(Func shapeDistance, DateTime activation = new()) => ForbiddenZones.Add((shapeDistance, activation)); - public void AddForbiddenZone(AOEShape shape, WPos origin, Angle rot = new(), DateTime activation = new()) => ForbiddenZones.Add((shape.Distance(origin, rot), activation)); + public void AddForbiddenZone(Func shapeDistance, DateTime activation = new(), ulong source = 0) => ForbiddenZones.Add((shapeDistance, activation, source)); + public void AddForbiddenZone(AOEShape shape, WPos origin, Angle rot = new(), DateTime activation = new(), ulong source = 0) => ForbiddenZones.Add((shape.Distance(origin, rot), activation, source)); public void AddSpecialMode(SpecialMode mode, DateTime activation) { diff --git a/BossMod/BossModule/ZoneModule.cs b/BossMod/BossModule/ZoneModule.cs index 0c63d1939f..c69ac413d3 100644 --- a/BossMod/BossModule/ZoneModule.cs +++ b/BossMod/BossModule/ZoneModule.cs @@ -19,6 +19,8 @@ protected virtual void Dispose(bool disposing) public virtual void Update() { } public virtual bool WantToBeDrawn() => false; // return true if it wants to be drawn (higher priority than inactive boss modules, but lower priority than active) + public virtual bool DrawSeparately => false; // return true if the contents of DrawExtra should be shown in a separate window + public bool WantWindow => WantToBeDrawn() && DrawSeparately; public virtual List CalculateGlobalHints() => []; public virtual void CalculateAIHints(int playerSlot, Actor player, AIHints hints) { } // note: this is called after framework automatically fills auto-detected hints public virtual void DrawExtra() { } diff --git a/BossMod/BossModule/ZoneModuleWindow.cs b/BossMod/BossModule/ZoneModuleWindow.cs new file mode 100644 index 0000000000..b0586476b9 --- /dev/null +++ b/BossMod/BossModule/ZoneModuleWindow.cs @@ -0,0 +1,23 @@ +namespace BossMod; + +public class ZoneModuleWindow : UIWindow +{ + private readonly ZoneModuleManager _zmm; + + public ZoneModuleWindow(ZoneModuleManager zmm) : base("Zone module###Zone module", false, new(400, 400)) + { + _zmm = zmm; + RespectCloseHotkey = false; + } + + public override void PreOpenCheck() + { + IsOpen = _zmm.ActiveModule?.WantWindow ?? false; + } + + public override void Draw() + { + _zmm.ActiveModule?.DrawExtra(); + } +} + diff --git a/BossMod/Data/Actor.cs b/BossMod/Data/Actor.cs index 7872ad25d0..c01f99c11b 100644 --- a/BossMod/Data/Actor.cs +++ b/BossMod/Data/Actor.cs @@ -134,6 +134,8 @@ public sealed class Actor(ulong instanceID, uint oid, int spawnIndex, string nam public bool PredictedDead => PredictedHPRaw <= 1 && !IsStrikingDummy; public float PredictedHPRatio => (float)PredictedHPRaw / HPMP.MaxHP; + public bool IsTransformed => Statuses.Any(Autorotation.RotationModuleManager.IsTransformStatus); + // if expirationForPredicted is not null, search pending first, and return one if found; in that case only low byte of extra will be set public ActorStatus? FindStatus(uint sid, DateTime? expirationForPending = null) { diff --git a/BossMod/Modules/Endwalker/DeepDungeon/EurekaOrthos/D10Gancanagh.cs b/BossMod/Modules/Endwalker/DeepDungeon/EurekaOrthos/D10Gancanagh.cs index 9f62629508..b0640bbeef 100644 --- a/BossMod/Modules/Endwalker/DeepDungeon/EurekaOrthos/D10Gancanagh.cs +++ b/BossMod/Modules/Endwalker/DeepDungeon/EurekaOrthos/D10Gancanagh.cs @@ -31,4 +31,4 @@ public D10GancanaghStates(BossModule module) : base(module) } [ModuleInfo(BossModuleInfo.Maturity.Contributed, Contributors = "Puni.sh Team", GroupType = BossModuleInfo.GroupType.CFC, GroupID = 897, NameID = 12240)] -public class D10Gancanagh(WorldState ws, Actor primary) : BossModule(ws, primary, new(-300, -300), new ArenaBoundsSquare(20)); +public class D10Gancanagh(WorldState ws, Actor primary) : BossModule(ws, primary, new(-300, -300), new ArenaBoundsSquare(19.5f)); diff --git a/BossMod/Modules/Endwalker/DeepDungeon/EurekaOrthos/D20CloningNode.cs b/BossMod/Modules/Endwalker/DeepDungeon/EurekaOrthos/D20CloningNode.cs index 118bba5fb3..4c0e7257c0 100644 --- a/BossMod/Modules/Endwalker/DeepDungeon/EurekaOrthos/D20CloningNode.cs +++ b/BossMod/Modules/Endwalker/DeepDungeon/EurekaOrthos/D20CloningNode.cs @@ -60,7 +60,9 @@ private static WPos CalculatePosition(Actor caster) var isIntercardinal = IsCasterIntercardinal(caster); var distance = isIntercardinal ? intercardinalDistance : 22; var position = caster.Position + distance * caster.Rotation.ToDirection(); - return RoundPosition(position); + var pos = RoundPosition(position); + // the top left add is slightly off for some godforsaken reason + return pos == new WPos(-315f, -315f) ? new WPos(-315.5f, -315.5f) : pos; } private static bool IsCasterIntercardinal(Actor caster) diff --git a/BossMod/Modules/Endwalker/DeepDungeon/EurekaOrthos/D30TiamatsClone.cs b/BossMod/Modules/Endwalker/DeepDungeon/EurekaOrthos/D30TiamatsClone.cs index 339b6ac2bb..d499a863df 100644 --- a/BossMod/Modules/Endwalker/DeepDungeon/EurekaOrthos/D30TiamatsClone.cs +++ b/BossMod/Modules/Endwalker/DeepDungeon/EurekaOrthos/D30TiamatsClone.cs @@ -27,7 +27,16 @@ public enum IconID : uint ChasingAOE = 197, // player } -class WheiMorn(BossModule module) : Components.StandardChasingAOEs(module, new AOEShapeCircle(6), ActionID.MakeSpell(AID.WheiMornFirst), ActionID.MakeSpell(AID.WheiMornRest), 6, 2, 5); +class WheiMorn(BossModule module) : Components.StandardChasingAOEs(module, new AOEShapeCircle(6), ActionID.MakeSpell(AID.WheiMornFirst), ActionID.MakeSpell(AID.WheiMornRest), 6, 2, 5) +{ + public override void OnEventCast(Actor caster, ActorCastEvent spell) + { + base.OnEventCast(caster, spell); + + if (spell.Action == ActionRest && Chasers.Count == 0) + ExcludedTargets.Reset(); + } +} class DarkMegaflare(BossModule module) : Components.LocationTargetedAOEs(module, ActionID.MakeSpell(AID.DarkMegaflare2), 6); class DarkWyrmwing(BossModule module) : Components.SelfTargetedAOEs(module, ActionID.MakeSpell(AID.DarkWyrmwing2), new AOEShapeRect(40, 8)); class DarkWyrmtail(BossModule module) : Components.SelfTargetedAOEs(module, ActionID.MakeSpell(AID.DarkWyrmtail2), new AOEShapeRect(40, 8)); @@ -36,17 +45,25 @@ class CreatureOfDarkness(BossModule module) : Components.GenericAOEs(module) { private readonly List _heads = []; private static readonly AOEShapeRect rect = new(2, 2, 2); - private static readonly AOEShapeRect rect2 = new(6, 2); public override IEnumerable ActiveAOEs(int slot, Actor actor) { foreach (var c in _heads) { yield return new(rect, c.Position, c.Rotation, Color: ArenaColor.Danger); - yield return new(rect2, c.Position + 2 * c.Rotation.ToDirection(), c.Rotation); + yield return new(new AOEShapeRect(6, 2, 2), c.Position, c.Rotation, WorldState.FutureTime(1.5f)); } } + public override void AddAIHints(int slot, Actor actor, PartyRolesConfig.Assignment assignment, AIHints hints) + { + base.AddAIHints(slot, actor, assignment, hints); + + // encourage AI mode casters to preposition out of harm's way + foreach (var c in _heads) + hints.AddForbiddenZone(new AOEShapeRect(50, 2, 2), c.Position, c.Rotation, WorldState.FutureTime(10)); + } + public override void OnActorModelStateChange(Actor actor, byte modelState, byte animState1, byte animState2) { if ((OID)actor.OID == OID.DarkWanderer) @@ -73,4 +90,4 @@ public D30TiamatsCloneStates(BossModule module) : base(module) } [ModuleInfo(BossModuleInfo.Maturity.Contributed, Contributors = "Malediktus", GroupType = BossModuleInfo.GroupType.CFC, GroupID = 899, NameID = 12242)] -public class D30TiamatsClone(WorldState ws, Actor primary) : BossModule(ws, primary, new(-300, -300), new ArenaBoundsSquare(20)); +public class D30TiamatsClone(WorldState ws, Actor primary) : BossModule(ws, primary, new(-300, -300), new ArenaBoundsSquare(19.5f)); diff --git a/BossMod/Modules/Endwalker/DeepDungeon/EurekaOrthos/D40TwintaniasClone.cs b/BossMod/Modules/Endwalker/DeepDungeon/EurekaOrthos/D40TwintaniasClone.cs index 3ba00dfc81..e250a7c5b2 100644 --- a/BossMod/Modules/Endwalker/DeepDungeon/EurekaOrthos/D40TwintaniasClone.cs +++ b/BossMod/Modules/Endwalker/DeepDungeon/EurekaOrthos/D40TwintaniasClone.cs @@ -23,12 +23,13 @@ public enum AID : uint TwistingDive = 31471 // Boss->self, 5.0s cast, range 50 width 15 rect } -class Twister(BossModule module) : Components.CastTwister(module, 1, (uint)OID.Twister, ActionID.MakeSpell(AID.TwisterVisual), 0.4f, 0.25f); -class BitingWind(BossModule module) : Components.PersistentVoidzoneAtCastTarget(module, 5, ActionID.MakeSpell(AID.BitingWind), m => m.Enemies(OID.BitingWind).Where(z => z.EventState != 7), 0.9f); +class Twister(BossModule module) : Components.CastTwister(module, 1.5f, (uint)OID.Twister, ActionID.MakeSpell(AID.TwisterVisual), 0.4f, 0.25f); +class BitingWind(BossModule module) : Components.PersistentVoidzoneAtCastTarget(module, 5, ActionID.MakeSpell(AID.Gust), m => m.Enemies(OID.BitingWind).Where(z => z.EventState != 7), 0.9f); class MeracydianSquall(BossModule module) : Components.LocationTargetedAOEs(module, ActionID.MakeSpell(AID.MeracydianSquall), 5); class TwistersHint(BossModule module, AID aid) : Components.CastHint(module, ActionID.MakeSpell(aid), "Twisters spawning, keep moving!"); class Twisters1(BossModule module) : TwistersHint(module, AID.TwisterVisual); class Twisters2(BossModule module) : TwistersHint(module, AID.TwistingDive); +class DiveTwister(BossModule module) : Components.CastTwister(module, 1.5f, (uint)OID.Twister, ActionID.MakeSpell(AID.TwistingDive), 0.4f, 0.25f); class TwistingDive(BossModule module) : Components.GenericAOEs(module) { @@ -89,7 +90,8 @@ public D40TwintaniasCloneStates(BossModule module) : base(module) .ActivateOnEnter() .ActivateOnEnter() .ActivateOnEnter() - .ActivateOnEnter(); + .ActivateOnEnter() + .ActivateOnEnter(); } } diff --git a/BossMod/Modules/Endwalker/DeepDungeon/EurekaOrthos/D50ServomechanicalChimera14X.cs b/BossMod/Modules/Endwalker/DeepDungeon/EurekaOrthos/D50ServomechanicalChimera14X.cs new file mode 100644 index 0000000000..b21a09520e --- /dev/null +++ b/BossMod/Modules/Endwalker/DeepDungeon/EurekaOrthos/D50ServomechanicalChimera14X.cs @@ -0,0 +1,153 @@ +namespace BossMod.Endwalker.DeepDungeon.EurekaOrthos.D50ServomechanicalChimera14X; + +static class Shapes +{ + public static readonly AOEShape Dragon = new AOEShapeDonut(8, 40); + public static readonly AOEShape Ram = new AOEShapeCircle(9.1f); +} + +public enum OID : uint +{ + Boss = 0x3D9C, + Helper = 0x233C, + Cacophony = 0x3D9D, // R1.000, x0 (spawn during fight) +} + +public enum AID : uint +{ + SongsOfIceAndThunder = 31851, // Boss->self, 5.0s cast, range 9 circle + SongsOfThunderAndIce = 31852, // Boss->self, 5.0s cast, range ?-40 donut + TheDragonsVoiceSong = 31853, // Boss->self, no cast, range ?-40 donut + TheRamsVoiceSong = 31854, // Boss->self, no cast, range 9 circle + LeftbreathedThunder = 31861, // Boss->self, 5.0s cast, range 40 180-degree cone + RightbreathedCold = 31863, // Boss->self, 5.0s cast, range 40 180-degree cone + ColdThunder = 31855, // Boss->player, 5.0s cast, width 8 rect charge + ThunderousCold = 31856, // Boss->player, 5.0s cast, width 8 rect charge + TheDragonsVoice = 32806, // Boss->self, no cast, range ?-40 donut + TheRamsVoice = 32807, // Boss->self, no cast, range 9 circle +} + +class Cacophony(BossModule module) : Components.PersistentVoidzone(module, 6, m => m.Enemies(OID.Cacophony).Where(e => e.EventState != 7), 6); + +class RightbreathedCold(BossModule module) : Components.SelfTargetedAOEs(module, ActionID.MakeSpell(AID.RightbreathedCold), new AOEShapeCone(40, 90.Degrees())); +class LeftbreathedThunder(BossModule module) : Components.SelfTargetedAOEs(module, ActionID.MakeSpell(AID.LeftbreathedThunder), new AOEShapeCone(40, 90.Degrees())); + +abstract class StretchTether(BossModule module, AID action) : Components.BaitAwayChargeCast(module, ActionID.MakeSpell(action), 4) +{ + public override void AddAIHints(int slot, Actor actor, PartyRolesConfig.Assignment assignment, AIHints hints) + { + base.AddAIHints(slot, actor, assignment, hints); + + foreach (var bait in ActiveBaitsOn(actor)) + hints.AddForbiddenZone(new AOEShapeCircle(15), bait.Source.Position, activation: bait.Activation); + } + + public override void AddHints(int slot, Actor actor, TextHints hints) + { + base.AddHints(slot, actor, hints); + + foreach (var bait in ActiveBaitsOn(actor)) + if (actor.Position.InCircle(bait.Source.Position, 15)) + hints.Add("Stretch tether!"); + } +} + +class ThunderousColdTether(BossModule module) : StretchTether(module, AID.ThunderousCold); +class ColdThunderTether(BossModule module) : StretchTether(module, AID.ColdThunder); + +class Charge(BossModule module) : Components.GenericAOEs(module) +{ + private record class PredictedAOE(AOEShape Shape, Actor Caster, DateTime Activation, DateTime WaitUntil); + + private readonly List _aoes = []; + + private string hint = ""; + + public override IEnumerable ActiveAOEs(int slot, Actor actor) => _aoes.Where(a => a.WaitUntil < WorldState.CurrentTime).Take(1).Select(a => new AOEInstance(a.Shape, a.Caster.Position, default, a.Activation)); + + public override void OnEventCast(Actor caster, ActorCastEvent spell) + { + switch ((AID)spell.Action.ID) + { + case AID.ThunderousCold: + hint = "In -> Out"; + _aoes.Add(new(Shapes.Dragon, caster, WorldState.FutureTime(3.1f), WorldState.FutureTime(1))); + _aoes.Add(new(Shapes.Ram, caster, WorldState.FutureTime(6.2f), WorldState.FutureTime(1))); + break; + case AID.ColdThunder: + hint = "Out -> In"; + _aoes.Add(new(Shapes.Ram, caster, WorldState.FutureTime(3.1f), WorldState.FutureTime(1))); + _aoes.Add(new(Shapes.Dragon, caster, WorldState.FutureTime(6.2f), WorldState.FutureTime(1))); + break; + case AID.TheDragonsVoice: + case AID.TheRamsVoice: + if (_aoes.Count > 0) + _aoes.RemoveAt(0); + if (_aoes.Count == 0) + hint = ""; + break; + } + } + + public override void AddGlobalHints(GlobalHints hints) + { + if (hint != "") + hints.Add(hint); + } +} + +abstract class Song(BossModule module, AID First, AOEShape FirstShape, AID Second, AOEShape SecondShape, string hint, float delay = 3.05f) : Components.GenericAOEs(module) +{ + private readonly List _aoes = []; + public override IEnumerable ActiveAOEs(int slot, Actor actor) => _aoes.Take(1); + + public override void Update() + { + if (Module.PrimaryActor.LastFrameMovement != default) + for (var i = 0; i < _aoes.Count; i++) + _aoes.Ref(i).Origin = Module.PrimaryActor.Position; + } + + public override void OnCastStarted(Actor caster, ActorCastInfo spell) + { + if ((AID)spell.Action.ID == First) + { + _aoes.Add(new(FirstShape, caster.Position, Activation: Module.CastFinishAt(spell))); + _aoes.Add(new(SecondShape, caster.Position, Activation: Module.CastFinishAt(spell, delay))); + } + } + + public override void OnEventCast(Actor caster, ActorCastEvent spell) + { + if (spell.Action.ID == (uint)First || spell.Action.ID == (uint)Second) + _aoes.RemoveAt(0); + } + + public override void AddGlobalHints(GlobalHints hints) + { + if (_aoes.Count > 0) + hints.Add(hint); + } +} + +class SongsOfIceAndThunder(BossModule module) : Song(module, AID.SongsOfIceAndThunder, Shapes.Ram, AID.TheDragonsVoiceSong, Shapes.Dragon, "Out -> In"); +class SongsOfThunderAndIce(BossModule module) : Song(module, AID.SongsOfThunderAndIce, Shapes.Dragon, AID.TheRamsVoiceSong, Shapes.Ram, "In -> Out"); + +class ServomechanicalChimera14XStates : StateMachineBuilder +{ + public ServomechanicalChimera14XStates(BossModule module) : base(module) + { + TrivialPhase() + .ActivateOnEnter() + .ActivateOnEnter() + .ActivateOnEnter() + .ActivateOnEnter() + .ActivateOnEnter() + .ActivateOnEnter() + .ActivateOnEnter() + .ActivateOnEnter(); + } +} + +[ModuleInfo(BossModuleInfo.Maturity.Contributed, GroupType = BossModuleInfo.GroupType.CFC, GroupID = 901, NameID = 12265)] +public class ServomechanicalChimera14X(WorldState ws, Actor primary) : BossModule(ws, primary, new(-300, -300), new ArenaBoundsCircle(19.5f)); diff --git a/BossMod/Modules/Endwalker/DeepDungeon/EurekaOrthos/D60ServomechanicalMinotaur.cs b/BossMod/Modules/Endwalker/DeepDungeon/EurekaOrthos/D60ServomechanicalMinotaur.cs index 2bb8b3183c..21e57faf19 100644 --- a/BossMod/Modules/Endwalker/DeepDungeon/EurekaOrthos/D60ServomechanicalMinotaur.cs +++ b/BossMod/Modules/Endwalker/DeepDungeon/EurekaOrthos/D60ServomechanicalMinotaur.cs @@ -28,7 +28,30 @@ public enum AID : uint class BullishSwing(BossModule module) : Components.SelfTargetedAOEs(module, ActionID.MakeSpell(AID.BullishSwing), new AOEShapeCircle(13)); class BullishSwipeSingle(BossModule module) : Components.SelfTargetedAOEs(module, ActionID.MakeSpell(AID.BullishSwipeSingle), new AOEShapeCone(40, 45.Degrees())); class DisorientingGroan(BossModule module) : Components.KnockbackFromCastTarget(module, ActionID.MakeSpell(AID.DisorientingGroan), 15, true); -class Shock(BossModule module) : Components.PersistentVoidzone(module, 5, m => m.Enemies(OID.BallOfLevin)); +class Shock(BossModule module) : Components.GenericAOEs(module) +{ + private readonly Dictionary Casters = []; + + public override IEnumerable ActiveAOEs(int slot, Actor actor) => Casters.Select(c => new AOEInstance(new AOEShapeCircle(5), c.Key.Position, default, c.Value)); + + public override void OnActorCreated(Actor actor) + { + if ((OID)actor.OID == OID.BallOfLevin) + Casters[actor] = WorldState.FutureTime(12.9f); + } + + public override void OnCastStarted(Actor caster, ActorCastInfo spell) + { + if (Casters.ContainsKey(caster)) + Casters[caster] = Module.CastFinishAt(spell); + } + + public override void OnEventCast(Actor caster, ActorCastEvent spell) + { + if ((AID)spell.Action.ID == AID.Shock) + Casters.Remove(caster); + } +} class Thundercall(BossModule module) : Components.RaidwideCast(module, ActionID.MakeSpell(AID.Thundercall), "Raidwide + Summoning Orbs"); class OctupleSwipe(BossModule module) : Components.GenericAOEs(module) diff --git a/BossMod/Modules/Endwalker/DeepDungeon/EurekaOrthos/D70Aeturna.cs b/BossMod/Modules/Endwalker/DeepDungeon/EurekaOrthos/D70Aeturna.cs index 9b63a786ad..f016eb0d6d 100644 --- a/BossMod/Modules/Endwalker/DeepDungeon/EurekaOrthos/D70Aeturna.cs +++ b/BossMod/Modules/Endwalker/DeepDungeon/EurekaOrthos/D70Aeturna.cs @@ -109,7 +109,7 @@ public override void AddAIHints(int slot, Actor actor, PartyRolesConfig.Assignme { base.AddAIHints(slot, actor, assignment, hints); if (target == actor.InstanceID && CurrentBaits.Count > 0) - hints.AddForbiddenZone(ShapeDistance.Circle(Module.PrimaryActor.Position, 15)); + hints.AddForbiddenZone(ShapeDistance.Circle(Module.PrimaryActor.Position, 15), Module.CastFinishAt(Module.PrimaryActor.CastInfo)); } } @@ -181,4 +181,4 @@ public D70AeturnaStates(BossModule module) : base(module) } [ModuleInfo(BossModuleInfo.Maturity.Contributed, Contributors = "legendoficeman, Malediktus", GroupType = BossModuleInfo.GroupType.CFC, GroupID = 903, NameID = 12246)] -public class D70Aeturna(WorldState ws, Actor primary) : BossModule(ws, primary, new(-300, -300), new ArenaBoundsCircle(20)); +public class D70Aeturna(WorldState ws, Actor primary) : BossModule(ws, primary, new(-300, -300), new ArenaBoundsCircle(19.5f)); diff --git a/BossMod/Modules/Endwalker/DeepDungeon/EurekaOrthos/D80ProtoKaliya.cs b/BossMod/Modules/Endwalker/DeepDungeon/EurekaOrthos/D80ProtoKaliya.cs new file mode 100644 index 0000000000..20b8cb234c --- /dev/null +++ b/BossMod/Modules/Endwalker/DeepDungeon/EurekaOrthos/D80ProtoKaliya.cs @@ -0,0 +1,198 @@ +namespace BossMod.Endwalker.DeepDungeon.EurekaOrthos.D80ProtoKaliya; + +public enum OID : uint +{ + Boss = 0x3D18, + Helper = 0x233C, + WeaponsDrone = 0x3D19, // R2.000, x0 (spawn during fight) +} + +public enum AID : uint +{ + AetheromagnetismPull = 31430, // Helper->player, no cast, single-target + AetheromagnetismPush = 31431, // Helper->player, no cast, single-target + AutoCannons = 31432, // 3D19->self, 4.0s cast, range 41+R width 5 rect + Resonance = 31422, // Boss->player, 5.0s cast, range 12 ?-degree cone + Barofield = 31427, // Boss->self, 3.0s cast, single-target + NerveGasRing = 32930, // Helper->self, 7.2s cast, range ?-30 donut + CentralizedNerveGas = 32933, // Helper->self, 5.3s cast, range 25+R 120-degree cone + LeftwardNerveGas = 32934, // Helper->self, 5.3s cast, range 25+R 180-degree cone + RightwardNerveGas = 32935, // Helper->self, 5.3s cast, range 25+R 180-degree cone + NanosporeJet = 31429, // Boss->self, 5.0s cast, range 100 circle +} + +public enum TetherID : uint +{ + Magnet = 38, // _Gen_WeaponsDrone->player +} + +public enum SID : uint +{ + Barofield = 3420, // none->Boss, extra=0x0 + PositiveChargeDrone = 3416, // none->_Gen_WeaponsDrone, extra=0x0 + NegativeChargeDrone = 3417, // none->_Gen_WeaponsDrone, extra=0x0 + PositiveChargePlayer = 3418, // none->player, extra=0x0 + NegativeChargePlayer = 3419, // none->player, extra=0x0 +} + +class Aetheromagnetism(BossModule module) : Components.Knockback(module, ignoreImmunes: true) +{ + private enum Charge + { + None, + Neg, + Pos + } + + private readonly Source?[] _sources = new Source?[4]; + + public override IEnumerable Sources(int slot, Actor actor) => Utils.ZeroOrOne(_sources[slot]); + + private static (Charge Charge, DateTime Expire) GetCharge(Actor actor) + { + foreach (var st in actor.Statuses) + switch ((SID)st.ID) + { + case SID.NegativeChargeDrone: + case SID.NegativeChargePlayer: + return (Charge.Neg, st.ExpireAt + TimeSpan.FromSeconds(1.1)); + case SID.PositiveChargePlayer: + case SID.PositiveChargeDrone: + return (Charge.Pos, st.ExpireAt + TimeSpan.FromSeconds(1.1)); + } + + return (Charge.None, default); + } + + public override void OnTethered(Actor source, ActorTetherInfo tether) + { + if (tether.ID == (uint)TetherID.Magnet) + { + var slot = Raid.FindSlot(tether.Target); + if (slot < 0) + return; + + var target = Raid[slot]!; + + var (from, to) = (GetCharge(source), GetCharge(target)); + if (from.Charge == Charge.None || to.Charge == Charge.None) + return; + + _sources[slot] = new(source.Position, 10, to.Expire, Kind: from.Charge == to.Charge ? Kind.AwayFromOrigin : Kind.TowardsOrigin); + } + } + + public override void OnEventCast(Actor caster, ActorCastEvent spell) + { + if ((AID)spell.Action.ID is AID.AetheromagnetismPull or AID.AetheromagnetismPush) + { + var slot = Raid.FindSlot(spell.MainTargetID); + if (slot >= 0) + _sources[slot] = null; + } + } + + public override void AddAIHints(int slot, Actor actor, PartyRolesConfig.Assignment assignment, AIHints hints) + { + if (_sources[slot] is not { } source) + return; + + var attract = source.Kind == Kind.TowardsOrigin; + + var barofield = ShapeDistance.Circle(Module.PrimaryActor.Position, 5); + var arena = ShapeDistance.InvertedCircle(Module.PrimaryActor.Position, 8); + var cannons = Module.Enemies(OID.WeaponsDrone).Select(d => ShapeDistance.Rect(d.Position, d.Rotation, 50, 0, 2.5f)); + var all = ShapeDistance.Union([barofield, arena, .. cannons]); + + hints.AddForbiddenZone(p => + { + var dir = (p - source.Origin).Normalized(); + var kb = attract ? -dir : dir; + + // prevent KB through death zone in center + if (Intersect.RayCircle(p, kb, Module.PrimaryActor.Position, 5) < 1000) + return -1; + + return all(p + kb * 10); + }, source.Activation); + } +} + +class Barofield(BossModule module) : Components.GenericAOEs(module, ActionID.MakeSpell(AID.Barofield)) +{ + private DateTime activation = DateTime.MinValue; + + public override IEnumerable ActiveAOEs(int slot, Actor actor) + { + if (activation > DateTime.MinValue) + yield return new AOEInstance(new AOEShapeCircle(5), Module.PrimaryActor.Position, default, activation); + } + + public override void OnCastStarted(Actor caster, ActorCastInfo spell) + { + if ((AID)spell.Action.ID is AID.Barofield or AID.NanosporeJet) + activation = Module.CastFinishAt(spell); + } + + public override void OnStatusGain(Actor actor, ActorStatus status) + { + if (status.ID == (uint)SID.Barofield) + activation = WorldState.CurrentTime; + } + + public override void OnStatusLose(Actor actor, ActorStatus status) + { + if (status.ID == (uint)SID.Barofield) + activation = DateTime.MinValue; + } +} +class Resonance(BossModule module) : Components.BaitAwayCast(module, ActionID.MakeSpell(AID.Resonance), new AOEShapeCone(12, 45.Degrees())); +class RightwardNerveGas(BossModule module) : Components.SelfTargetedAOEs(module, ActionID.MakeSpell(AID.RightwardNerveGas), new AOEShapeCone(25, 90.Degrees())); +class LeftwardNerveGas(BossModule module) : Components.SelfTargetedAOEs(module, ActionID.MakeSpell(AID.LeftwardNerveGas), new AOEShapeCone(25, 90.Degrees())); +class CentralizedNerveGas(BossModule module) : Components.SelfTargetedAOEs(module, ActionID.MakeSpell(AID.CentralizedNerveGas), new AOEShapeCone(25, 60.Degrees())); +class AutoCannons(BossModule module) : Components.SelfTargetedAOEs(module, ActionID.MakeSpell(AID.AutoCannons), new AOEShapeRect(45, 2.5f)) +{ + private Aetheromagnetism? _knockback; + public override void AddAIHints(int slot, Actor actor, PartyRolesConfig.Assignment assignment, AIHints hints) + { + _knockback ??= Module.FindComponent(); + + foreach (var kb in _knockback?.Sources(slot, actor) ?? []) + if ((kb.Activation - WorldState.CurrentTime).TotalSeconds < 5) + return; + + base.AddAIHints(slot, actor, assignment, hints); + } +} +class NerveGasRing(BossModule module) : Components.SelfTargetedAOEs(module, ActionID.MakeSpell(AID.NerveGasRing), new AOEShapeDonut(8, 100)) +{ + private Aetheromagnetism? _knockback; + public override void AddAIHints(int slot, Actor actor, PartyRolesConfig.Assignment assignment, AIHints hints) + { + _knockback ??= Module.FindComponent(); + + foreach (var _ in _knockback?.Sources(slot, actor) ?? []) + return; + + base.AddAIHints(slot, actor, assignment, hints); + } +} + +class D80ProtoKaliyaStates : StateMachineBuilder +{ + public D80ProtoKaliyaStates(BossModule module) : base(module) + { + TrivialPhase() + .ActivateOnEnter() + .ActivateOnEnter() + .ActivateOnEnter() + .ActivateOnEnter() + .ActivateOnEnter() + .ActivateOnEnter() + .ActivateOnEnter() + .ActivateOnEnter(); + } +} + +[ModuleInfo(BossModuleInfo.Maturity.Contributed, GroupType = BossModuleInfo.GroupType.CFC, GroupID = 904, NameID = 12247)] +public class D80ProtoKaliya(WorldState ws, Actor primary) : BossModule(ws, primary, new(-600, -300), new ArenaBoundsCircle(20)); diff --git a/BossMod/Modules/Endwalker/DeepDungeon/EurekaOrthos/D90Administrator.cs b/BossMod/Modules/Endwalker/DeepDungeon/EurekaOrthos/D90Administrator.cs index 9e5517f99f..73efd37c90 100644 --- a/BossMod/Modules/Endwalker/DeepDungeon/EurekaOrthos/D90Administrator.cs +++ b/BossMod/Modules/Endwalker/DeepDungeon/EurekaOrthos/D90Administrator.cs @@ -40,43 +40,46 @@ public enum IconID : uint Icon3 = 392, } -class AetherochemicalLaserCombo(BossModule module) : Components.GenericAOEs(module) // Pulled from the fork team, Currently a visual clutter but for now, functions... *-decently-* +class AetheroChemicalLaserCombo(BossModule module) : Components.GenericAOEs(module) // Pulled from the fork team, Currently a visual clutter but for now, functions... *-decently-* { - private static readonly AOEShape[] Shapes = [new AOEShapeCone(50, 60.Degrees()), new AOEShapeDonut(8, 60), new AOEShapeRect(40, 2.5f), + private static readonly AOEShape[] _shapes = [new AOEShapeCone(50, 60.Degrees()), new AOEShapeDonut(8, 60), new AOEShapeRect(40, 2.5f), new AOEShapeCross(60, 5), new AOEShapeDonut(5, 60)]; private readonly Dictionary> _icons = new() { { (uint)IconID.Icon1, [] }, { (uint)IconID.Icon2, [] }, - { (uint)IconID.Icon3, [] }, + { (uint)IconID.Icon3, [] } }; private AOEInstance _boss; public override IEnumerable ActiveAOEs(int slot, Actor actor) { - foreach (var icon in _icons.Where(icon => icon.Value.Count > 0)) + foreach (var icon in _icons) { - foreach (var c in icon.Value) - yield return new(c.Shape, c.Origin, c.Rotation, c.Activation, ArenaColor.Danger); - var nextIcon = _icons.FirstOrDefault(x => x.Key == icon.Key + 1).Value; - if (nextIcon != null) - foreach (var c in nextIcon) - yield return new(c.Shape, c.Origin, c.Rotation, c.Activation, ArenaColor.AOE, false); - if (_boss != default) - yield return new(_boss.Shape, _boss.Origin, _boss.Rotation, _boss.Activation, ArenaColor.AOE, false); - yield break; + if (icon.Value != null && icon.Value.Count > 0) + { + foreach (var c in icon.Value) + yield return new(c.Shape, c.Origin, c.Rotation, c.Activation, ArenaColor.Danger); + var nextIcon = _icons.FirstOrDefault(x => x.Key == icon.Key + 1).Value; + if (nextIcon != null) + foreach (var c in nextIcon) + yield return new(c.Shape, c.Origin, c.Rotation, c.Activation, ArenaColor.AOE, false); + if (_boss != default) + yield return new(_boss.Shape, _boss.Origin, _boss.Rotation, _boss.Activation, ArenaColor.AOE, false); + yield break; + } } if (_boss != default) yield return new(_boss.Shape, _boss.Origin, _boss.Rotation, _boss.Activation, ArenaColor.Danger); } - public void OnEventIcon(Actor actor, uint iconID) + public override void OnEventIcon(Actor actor, uint iconID, ulong targetID) { var shapeIndex = (OID)actor.OID switch { OID.InterceptorCube => 2, OID.InterceptorOrb => 1, OID.InterceptorEgg => 0, - _ => default, + _ => default }; var activation = iconID switch @@ -84,19 +87,19 @@ public void OnEventIcon(Actor actor, uint iconID) (uint)IconID.Icon1 => WorldState.FutureTime(7), (uint)IconID.Icon2 => WorldState.FutureTime(10.5f), (uint)IconID.Icon3 => WorldState.FutureTime(14), - _ => default, + _ => default }; - _icons[iconID].Add(new(Shapes[shapeIndex], actor.Position, (OID)actor.OID == OID.InterceptorOrb ? default : actor.Rotation, activation)); + _icons[iconID].Add(new(_shapes[shapeIndex], actor.Position, (OID)actor.OID == OID.InterceptorOrb ? default : actor.Rotation, activation)); } public override void OnCastStarted(Actor caster, ActorCastInfo spell) { _boss = (AID)spell.Action.ID switch { - AID.PeripheralLasers => new(Shapes[4], caster.Position, default, Module.CastFinishAt(spell)), - AID.CrossLasers => new(Shapes[3], caster.Position, spell.Rotation, Module.CastFinishAt(spell)), - _ => _boss, + AID.PeripheralLasers => new(_shapes[4], caster.Position, default, Module.CastFinishAt(spell)), + AID.CrossLasers => new(_shapes[3], caster.Position, spell.Rotation, Module.CastFinishAt(spell)), + _ => _boss }; } @@ -104,11 +107,12 @@ public override void OnCastFinished(Actor caster, ActorCastInfo spell) { if ((AID)spell.Action.ID is AID.AetherochemicalLaserEgg1 or AID.AetherochemicalLaserCube1 or AID.AetherochemicalLaserOrb) { - foreach (var icon in _icons.Where(icon => icon.Value.Count > 0)) - { - icon.Value.RemoveAt(0); - break; - } + foreach (var icon in _icons) + if (icon.Value.Count > 0) + { + icon.Value.RemoveAt(0); + break; + } } if ((AID)spell.Action.ID is AID.PeripheralLasers or AID.CrossLasers) _boss = default; @@ -119,7 +123,7 @@ public override void OnCastFinished(Actor caster, ActorCastInfo spell) { public override IEnumerable ActiveAOEs(int slot, Actor actor) { - return !Module.FindComponent()!.ActiveAOEs(slot, actor).Any() + return !Module.FindComponent()!.ActiveAOEs(slot, actor).Any() ? ActiveCasters.Select(c => new AOEInstance(Shape, c.Position, c.CastInfo!.Rotation, Module.CastFinishAt(c.CastInfo), ArenaColor.Danger, Risky)).Take(2) .Concat(ActiveCasters.Select(c => new AOEInstance(Shape, c.Position, c.CastInfo!.Rotation, Module.CastFinishAt(c.CastInfo), ArenaColor.AOE, Risky)).Take(4).Skip(2)) : ([]); @@ -176,13 +180,14 @@ class D90AdministratorStates : StateMachineBuilder public D90AdministratorStates(BossModule module) : base(module) { TrivialPhase() - .ActivateOnEnter() + .ActivateOnEnter() .ActivateOnEnter() - .ActivateOnEnter() .ActivateOnEnter() + .ActivateOnEnter() .ActivateOnEnter(); } } [ModuleInfo(BossModuleInfo.Maturity.Contributed, Contributors = "LegendofIceman, Malediktus", GroupType = BossModuleInfo.GroupType.CFC, GroupID = 905, NameID = 12102)] public class D90Administrator(WorldState ws, Actor primary) : BossModule(ws, primary, new(-300, -300), new ArenaBoundsSquare(20)); + diff --git a/BossMod/Modules/Endwalker/DeepDungeon/EurekaOrthos/EOFloorModule.cs b/BossMod/Modules/Endwalker/DeepDungeon/EurekaOrthos/EOFloorModule.cs new file mode 100644 index 0000000000..e069ca33ff --- /dev/null +++ b/BossMod/Modules/Endwalker/DeepDungeon/EurekaOrthos/EOFloorModule.cs @@ -0,0 +1,259 @@ +using BossMod.Global.DeepDungeon; + +namespace BossMod.Endwalker.DeepDungeon.EurekaOrthos; + +public enum AID : uint +{ + BigBurst = 32381, // 3DCA->self, 3.5s cast, range 6 circle + TerrorTouch = 32389, // 3DD0->player, 4.0s cast, single-target + Diamondback = 32431, // 3DEC->self, 4.0s cast, single-target, permanent defense up to self + Tailwind = 33167, // 3DF6->enemy, 3.0s cast, single-target, damage up to ally + SelfDetonate = 32410, // 3DE0->self, 10.0s cast, range 40 circle, enrage + Electromagnetism = 32413, // 3DE1->self, 5.0s cast, range 15 circle + Headspin = 32412, // 3DE1->self, 0.0s cast, range 6 circle, instant after Electromagnetism + DoubleHexEye = 32437, // 3DF1->self, 4.0s cast, range 40 circle, instakill mechanic + Bombination = 32424, // 3DE9->self, 2.0s cast, range 25 circle + Bombination2 = 32461, // 3DFF->self, 2.0s cast, range 25 circle + TheDragonsVoice = 32444, // 3DF4->self, 4.0s cast, range ?-30 donut + Quake = 32470, // 3E02->self, 5.0s cast, range 30 circle, interruptible + Explosion = 32452, // 3DFA->self, 7.0s cast, range 60 circle + Infatuation = 32798, // 3E80->player, 3.0s cast, single-target + AbyssalCry = 32467, // 3E00->self, 6.0s cast, range 30 circle, instakill mechanic + SprigganHaste = 33175, // 3DFB->self, 1.5s cast + GelidCharge = 33180, // 3E13->self, 2.0s cast, single-target + SmolderingScales = 32952, // 3E3D->self, 2.5s cast, single-target + ElectricCachexia = 32979, // 3E45->self, 4.0s cast, range ?-44 donut + EyeOfTheFierce = 32667, // 3E53->self, 3.0s cast, range 40 circle + DemonEye1 = 32762, // 3E5E->self, 5.0s cast, range 33 circle + DemonEye2 = 32761, // 3E5E->self, 5.0s cast, range 33 circle + Hypnotize = 32737, // 3E58->self, 3.0s cast, range 20 circle + Catharsis = 32732, // 3E56->self, 10.0s cast, range 40 circle + ElectricWhorl = 33186, // 3E09->self, 4.0s cast, range 60 circle + HexEye = 32731, // 3E56->self, 3.0s cast, range 5 circle + EclipticMeteor = 33043, // 3DC9->self, 12.0s cast, range 50 circle + TheDragonsVoice2 = 32910, + AllaganFear = 32896, + HighVoltage = 32878, // 3E64->self, 7.5s cast, range 30 circle + AquaSpear = 32500, // 3E12->self, 5.5s cast, width 5 charge, must be LOSed + Sucker = 32477, // 3E08->self, 3.5s cast, range 25 circle, draw-in + WaterIII = 32478, // 3E08->self, 2.5s cast, range 8 circle, used after sucker + RipeBanana = 33195, // 3E52->self, 2s cast, single-target, damage buff + ChestThump = 32680, // 3E52->self, 2s cast, range 52 circle, used after banana + + KillingPaw = 33193, // 3E50->self, 3.0s cast, range 9 120-degree cone + SavageSwipe = 32654, // 3E50->self, instant cast, range 6 120-degree cone + + SewerWaterCastFront = 32491, // 3E0F->self, 3.0s cast, range 12 180-degree cone + SewerWaterCastBack = 32492, // 3E0F->self, 3.0s cast, range 12 180-degree cone + SewerWaterInstantFront = 32493, // 3E0F->self, instant cast, range 12 180-degree cone + SewerWaterInstantBack = 32494, // 3E0F->self, instant cast, range 12 180-degree cone + + GoobInhale = 33178, // 3E04->self, instant cast, range 40 90-degree cone + GoobSneeze = 32473, // 3E04->self, 1.0s cast, range 7 90-degree cone + + GourmInhale = 32748, // 3E5B->self, instant cast, range 40 90-degree cone + GourmSneeze = 32749, // 3E5B->self, 1.0s cast, range 6 90-degree cone +} + +public enum SID : uint +{ + BlazeSpikes = 197, + IceSpikes = 198, +} + +public abstract class EOFloorModule(WorldState ws, bool autoRaiseOnEnter = false) : AutoClear(ws, 90) +{ + protected override void OnCastStarted(Actor actor) + { + switch ((AID)actor.CastInfo!.Action.ID) + { + // stunnable actions, either self buffs or large point blank AOEs that prevent going into melee range + case AID.BigBurst: + case AID.Tailwind: + case AID.SprigganHaste: + Stuns.Add(actor); + break; + + // interruptible casts + case AID.TerrorTouch: + case AID.Diamondback: + Interrupts.Add(actor); + break; + case AID.Infatuation: + Interrupts.Add(actor); + if (Palace.Floor < 60) + Stuns.Add(actor); + break; + + // gazes + case AID.DoubleHexEye: + case AID.EyeOfTheFierce: + AddGaze(actor, 40); + break; + case AID.AllaganFear: + AddGaze(actor, 30); + break; + case AID.Hypnotize: + AddGaze(actor, 20); + HintDisabled.Add(actor); + break; + case AID.DemonEye1: + case AID.DemonEye2: + AddGaze(actor, 33); + break; + case AID.HexEye: + AddGaze(actor, 5); + break; + + // donut AOEs + case AID.TheDragonsVoice: + case AID.TheDragonsVoice2: + Donuts.Add((actor, 8, 30)); + HintDisabled.Add(actor); + break; + case AID.ElectricCachexia: + Donuts.Add((actor, 8, 44)); + HintDisabled.Add(actor); + break; + case AID.ElectricWhorl: + Donuts.Add((actor, 8, 60)); + HintDisabled.Add(actor); + break; + + // very large circle AOEs that trigger autohints' "this is a raidwide" check but are actually avoidable + case AID.Catharsis: + Circles.Add((actor, 40)); + break; + + // LOS attacks + case AID.Quake: + case AID.HighVoltage: + Interrupts.Add(actor); + AddLOS(actor, 30); + break; + case AID.EclipticMeteor: + case AID.AquaSpear: + AddLOS(actor, 50); + break; + case AID.Explosion: + AddLOS(actor, 60); + break; + case AID.AbyssalCry: + AddLOS(actor, 30); + break; + case AID.SelfDetonate: + AddLOS(actor, 40); + break; + + // knockbacks (can be ignored on kb penalty floors or if arms length is up) + case AID.Electromagnetism: + KnockbackZones.Add((actor, 15)); + HintDisabled.Add(actor); + break; + case AID.Sucker: + KnockbackZones.Add((actor, 25)); + HintDisabled.Add(actor); + break; + + // large out of combat AOEs that are fast and generally nonthreatening, we want to ignore these so we don't interfere with pathfinding + case AID.Bombination: + case AID.Bombination2: + HintDisabled.Add(actor); + break; + } + } + + protected override void OnCastFinished(Actor actor) + { + switch ((AID)actor.CastInfo!.Action.ID) + { + // setting target to forbidden when it gains the spikes status is too late + case AID.GelidCharge: + case AID.SmolderingScales: + ForbiddenTargets.Add((actor, World.FutureTime(10))); + break; + } + } + + protected override void OnEventCast(Actor actor, ActorCastEvent ev) + { + switch ((AID)ev.Action.ID) + { + case AID.GoobInhale: + Voidzones.Add((actor, new AOEShapeCone(7, 45.Degrees()))); + break; + case AID.GourmInhale: + Voidzones.Add((actor, new AOEShapeCone(6, 45.Degrees()))); + break; + case AID.KillingPaw: + Voidzones.Add((actor, new AOEShapeCone(6, 60.Degrees()))); + break; + case AID.SewerWaterCastFront: + Voidzones.Add((actor, new AOEShapeCone(12, 90.Degrees(), 180.Degrees()))); + break; + case AID.SewerWaterCastBack: + Voidzones.Add((actor, new AOEShapeCone(12, 90.Degrees()))); + break; + case AID.Electromagnetism: + Voidzones.Add((actor, new AOEShapeCircle(6))); + break; + case AID.RipeBanana: + Voidzones.Add((actor, new AOEShapeCircle(52))); + break; + + case AID.GoobSneeze: + case AID.GourmSneeze: + case AID.Headspin: + case AID.SavageSwipe: + case AID.SewerWaterInstantFront: + case AID.SewerWaterInstantBack: + case AID.ChestThump: + Voidzones.RemoveAll(v => v.Source == actor); + break; + } + } + + protected override void OnStatusLose(Actor actor, ActorStatus status) + { + switch (status.ID) + { + case (uint)SID.IceSpikes: + case (uint)SID.BlazeSpikes: + ForbiddenTargets.RemoveAll(t => t.Actor == actor); + break; + } + } + + public override void CalculateAIHints(int playerSlot, Actor player, AIHints hints) + { + base.CalculateAIHints(playerSlot, player, hints); + + if (autoRaiseOnEnter && Palace.Floor % 10 == 1) + { + var raising = Palace.GetPomanderState(PomanderID.ProtoRaising); + if (!raising.Active && raising.Count > 0) + hints.ActionsToExecute.Push(new ActionID(ActionType.Pomander, (uint)PomanderID.ProtoRaising), player, ActionQueue.Priority.VeryHigh); + } + } +} + +[ZoneModuleInfo(BossModuleInfo.Maturity.WIP, 897)] +public class EO10(WorldState ws) : EOFloorModule(ws); +[ZoneModuleInfo(BossModuleInfo.Maturity.WIP, 898)] +public class EO20(WorldState ws) : EOFloorModule(ws); +[ZoneModuleInfo(BossModuleInfo.Maturity.WIP, 899)] +public class EO30(WorldState ws) : EOFloorModule(ws); +[ZoneModuleInfo(BossModuleInfo.Maturity.WIP, 900)] +public class EO40(WorldState ws) : EOFloorModule(ws); +[ZoneModuleInfo(BossModuleInfo.Maturity.WIP, 901)] +public class EO50(WorldState ws) : EOFloorModule(ws); +[ZoneModuleInfo(BossModuleInfo.Maturity.WIP, 902)] +public class EO60(WorldState ws) : EOFloorModule(ws); +[ZoneModuleInfo(BossModuleInfo.Maturity.WIP, 903)] +public class EO70(WorldState ws) : EOFloorModule(ws); +[ZoneModuleInfo(BossModuleInfo.Maturity.WIP, 904)] +public class EO80(WorldState ws) : EOFloorModule(ws, true); +[ZoneModuleInfo(BossModuleInfo.Maturity.WIP, 905)] +public class EO90(WorldState ws) : EOFloorModule(ws, true); +[ZoneModuleInfo(BossModuleInfo.Maturity.WIP, 906)] +public class EO100(WorldState ws) : EOFloorModule(ws, true); diff --git a/BossMod/Modules/Global/DeepDungeon/AutoClear.cs b/BossMod/Modules/Global/DeepDungeon/AutoClear.cs new file mode 100644 index 0000000000..9cedb74211 --- /dev/null +++ b/BossMod/Modules/Global/DeepDungeon/AutoClear.cs @@ -0,0 +1,824 @@ +using BossMod.Pathfinding; +using ImGuiNET; +using System.Data.SQLite; +using System.IO; +using System.Reflection; +using System.Text.Json; +using static FFXIVClientStructs.FFXIV.Client.Game.InstanceContent.InstanceContentDeepDungeon; + +namespace BossMod.Global.DeepDungeon; + +enum OID : uint +{ + CairnPalace = 0x1EA094, + BeaconHoH = 0x1EA9A3, + PylonEO = 0x1EB867, + SilverCoffer = 0x1EA13D, + GoldCoffer = 0x1EA13E, + BandedCofferIndicator = 0x1EA1F6, + BandedCoffer = 0x1EA1F7, +} + +enum SID : uint +{ + Silence = 7, + Pacification = 620, + ItemPenalty = 1094, + + PhysicalDamageUp = 53, + DamageUp = 61, + DreadBeastAura = 2056, // unnamed status, displays red fog vfx on actor + EvasionUp = 2402, // applied by Peculiar Light from orthos diplocaulus + + StoneCurse = 437, // petrification (on enemies) + AutoHealPenalty = 1097, +} + +public abstract class AutoClear : ZoneModule +{ + public readonly int LevelCap; + + public static readonly HashSet BronzeChestIDs = [ + // PotD + 782, 783, 784, 785, 786, 787, 788, 789, 790, 802, 803, 804, 805, + // HoH + 1036, 1037, 1038, 1039, 1040, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, + // EO + 1541, 1542, 1543, 1544, 1545, 1546, 1547, 1548, 1549, 1550, 1551, 1552, 1553, 1554 + ]; + public static readonly HashSet RevealedTrapOIDs = [0x1EA08E, 0x1EA08F, 0x1EA090, 0x1EA091, 0x1EA092, 0x1EA9A0, 0x1EB864]; + + protected readonly List<(Actor Source, float Inner, float Outer)> Donuts = []; + protected readonly List<(Actor Source, float Radius)> Circles = []; + protected readonly List<(Actor Source, float Radius)> KnockbackZones = []; + protected readonly List<(Actor Source, AOEShape Zone)> Voidzones = []; + private readonly List Gazes = []; + protected readonly List Interrupts = []; + protected readonly List Stuns = []; + protected readonly List<(Actor Actor, DateTime Timeout)> ForbiddenTargets = []; + protected readonly List HintDisabled = []; + private readonly List LOS = []; + private readonly List IgnoreTraps = []; + + private readonly Dictionary _losCache = []; + + public record class Gaze(Actor Source, AOEShape Shape); + + protected readonly AutoDDConfig _config = Service.Config.Get(); + private readonly EventSubscriptions _subscriptions; + private readonly List _trapsCurrentZone = []; + + private readonly Dictionary _chestContentsGold = []; + private readonly Dictionary _chestContentsSilver = []; + private readonly HashSet _openedChests = []; + private readonly HashSet _fakeExits = []; + private PomanderID? _lastChestContentsGold; + 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 = []; + + private int Kills; + private int DesiredRoom; + private bool BetweenFloors; + + protected struct PlayerImmuneState + { + public DateTime RoleBuffExpire; // 0 if not active + public DateTime JobBuffExpire; // 0 if not active + public bool KnockbackPenalty; + + public readonly bool ImmuneAt(DateTime time) => KnockbackPenalty || RoleBuffExpire > time || JobBuffExpire > time; + } + + private readonly PlayerImmuneState[] _playerImmunes = new PlayerImmuneState[4]; + + private ObstacleMapManager _obstacles; + + protected DeepDungeonState Palace => World.DeepDungeon; + + protected AutoClear(WorldState ws, int LevelCap) : base(ws) + { + this.LevelCap = LevelCap; + _obstacles = new(ws); + + _subscriptions = new( + ws.SystemLogMessage.Subscribe(OnSystemLogMessage), + ws.Actors.CastStarted.Subscribe(OnCastStarted), + ws.Actors.CastFinished.Subscribe(OnCastFinished), + ws.Actors.CastEvent.Subscribe(OnEventCast), + ws.Actors.Added.Subscribe(OnActorCreated), + ws.Actors.InCombatChanged.Subscribe(OnActorCombatChanged), + ws.Actors.StatusGain.Subscribe(OnActorStatusGain), + ws.Actors.StatusLose.Subscribe(OnActorStatusLose), + ws.Actors.IsDeadChanged.Subscribe(op => + { + if (!op.IsAlly && op.IsDead) + Kills++; + }), + ws.Actors.EventOpenTreasure.Subscribe(OnOpenTreasure), + ws.Actors.EventObjectAnimation.Subscribe(OnEObjAnim), + ws.DeepDungeon.MapDataChanged.Subscribe(_ => + { + BetweenFloors = false; + if (Walls.Count == 0) + LoadWalls(); + }) + ); + + _trapsCurrentZone = PalacePalInterop.GetTrapLocationsForZone(ws.CurrentZone); + + LoadedFloors = JsonSerializer.Deserialize>>(GetEmbeddedResource("Walls.json"))!; + ProblematicTrapLocations = JsonSerializer.Deserialize>(GetEmbeddedResource("BadTraps.json"))!; + + IgnoreTraps.AddRange(ProblematicTrapLocations); + } + + protected override void Dispose(bool disposing) + { + _subscriptions.Dispose(); + _obstacles.Dispose(); + base.Dispose(disposing); + } + + protected virtual void OnCastStarted(Actor actor) { } + + protected virtual void OnCastFinished(Actor actor) { } + protected virtual void OnEventCast(Actor actor, ActorCastEvent ev) { } + + private void OnActorStatusGain(Actor actor, int index) + { + var status = actor.Statuses[index]; + + switch (status.ID) + { + case (uint)WHM.SID.Surecast: + case (uint)WAR.SID.ArmsLength: + var slot1 = World.Party.FindSlot(actor.InstanceID); + if (slot1 >= 0) + _playerImmunes[slot1].RoleBuffExpire = status.ExpireAt; + break; + case (uint)WAR.SID.InnerStrength: + var slot2 = World.Party.FindSlot(actor.InstanceID); + if (slot2 >= 0) + _playerImmunes[slot2].JobBuffExpire = status.ExpireAt; + break; + // Knockback Penalty floor effect + case 1096: + case 1512: + var slot3 = World.Party.FindSlot(actor.InstanceID); + if (slot3 >= 0) + _playerImmunes[slot3].KnockbackPenalty = true; + break; + } + + OnStatusGain(actor, status); + } + + protected virtual void OnStatusGain(Actor actor, ActorStatus status) { } + + private void OnActorStatusLose(Actor actor, int index) + { + var status = actor.Statuses[index]; + OnStatusLose(actor, status); + } + + protected virtual void OnStatusLose(Actor actor, ActorStatus status) { } + + protected virtual void OnActorCombatChanged(Actor actor) { } + + private void OnSystemLogMessage(WorldState.OpSystemLogMessage op) + { + switch (op.MessageId) + { + case 7222: // pomander overcap + _lastChestContentsGold = (PomanderID)op.Args[0]; + break; + case 7248: // transference initiated + ClearState(); + break; + case 7255: // safety used + case 7256: // sight used + _trapsHidden = false; + break; + case 10287: // demiclone overcap + _lastChestMagicite = true; + break; + } + } + + private void OnOpenTreasure(Actor chest) => _openedChests.Add(chest.InstanceID); + + private void OnEObjAnim(Actor actor, ushort p1, ushort p2) + { + // fake beacon deactivation; accompanied by system log #9217 but it does not indicate a specific actor + if (actor.OID == (uint)OID.BeaconHoH && p1 == 0x0400 && p2 == 0x0800) + _fakeExits.Add(actor.InstanceID); + } + + protected virtual void OnChangeFloors() { } + + private void ClearState() + { + Donuts.Clear(); + Circles.Clear(); + Gazes.Clear(); + Interrupts.Clear(); + Stuns.Clear(); + ForbiddenTargets.Clear(); + HintDisabled.Clear(); + LOS.Clear(); + Walls.Clear(); + RoomCenters.Clear(); + IgnoreTraps.Clear(); + IgnoreTraps.AddRange(ProblematicTrapLocations); + DesiredRoom = 0; + Kills = 0; + Array.Fill(_playerImmunes, default); + _lastChestContentsGold = null; + _lastChestMagicite = false; + _chestContentsGold.Clear(); + _chestContentsSilver.Clear(); + _trapsHidden = true; + _openedChests.Clear(); + _fakeExits.Clear(); + OnChangeFloors(); + BetweenFloors = true; + } + + protected void AddGaze(Actor Source, AOEShape Shape) => Gazes.Add(new(Source, Shape)); + protected void AddGaze(Actor Source, float Radius) => AddGaze(Source, new AOEShapeCircle(Radius)); + + protected void AddLOS(Actor Source, float Range) + { + if (_config.AutoLOS) + AddLOSFromTerrain(Source, Range); + else + Circles.Add((Source, Range)); + } + + private bool OpenGold => _config.GoldCoffer; + private bool OpenSilver + { + get + { + // disabled + if (!_config.SilverCoffer) + return false; + + // sanity check + if (World.Party.Player() is not { } player) + return false; + + // explosive silver chests deal 70% max hp damage + if (player.HPMP.CurHP <= player.HPMP.MaxHP * 0.7f) + return false; + + // upgrade weapon if desired + if (Palace.Progress.WeaponLevel + Palace.Progress.ArmorLevel < 198) + return true; + + return Palace.DungeonId switch + { + DeepDungeonState.DungeonType.HOH or DeepDungeonState.DungeonType.EO => Palace.Floor >= 7, // magicite/demiclones start dropping on floor 7 + _ => false, + }; + } + } + + private bool OpenBronze => _config.BronzeCoffer; + + public override bool WantToBeDrawn() => _config.EnableMinimap && !Palace.IsBossFloor; + + public override bool DrawSeparately => true; + + public override void DrawExtra() + { + var player = World.Party.Player(); + var targetRoom = new Minimap(Palace, player?.Rotation ?? default, DesiredRoom).Draw(); + if (targetRoom >= 0) + DesiredRoom = targetRoom; + + ImGui.Text($"Kills: {Kills}"); + + var navInCombat = _config.NavigateInCombat; + + if (ImGui.Checkbox("Allow navigation in combat", ref navInCombat)) + { + _config.NavigateInCombat = navInCombat; + _config.Modified.Fire(); + } + + if (ImGui.Button("Reload obstacles")) + { + _obstacles.Dispose(); + _obstacles = new(World); + } + + if (player == null) + return; + + var (entry, data) = _obstacles.Find(player.PosRot.XYZ()); + if (entry == null) + { + ImGui.SameLine(); + UIMisc.HelpMarker(() => "Obstacle map missing for floor!", Dalamud.Interface.FontAwesomeIcon.ExclamationTriangle); + } + + if (data != null && data.PixelSize != 0.5f) + { + ImGui.SameLine(); + UIMisc.HelpMarker(() => $"Wrong resolution for map; should be 0.5, got {data.PixelSize}", Dalamud.Interface.FontAwesomeIcon.ExclamationTriangle); + } + + if (ImGui.Button("Set closest trap location as ignored")) + { + var pos = _trapsCurrentZone.MinBy(t => (t - player.Position).LengthSq()).Rounded(0.1f); + ProblematicTrapLocations.Add(pos); + IgnoreTraps.Add(pos); + } + } + + private readonly List AutoUsable = [ + PomanderID.Steel, + PomanderID.Strength, + PomanderID.Sight, + PomanderID.Raising, + PomanderID.Fortune, + PomanderID.Concealment, + PomanderID.Affluence, + PomanderID.Frailty, + PomanderID.ProtoSteel, + PomanderID.ProtoStrength, + PomanderID.ProtoSight, + PomanderID.ProtoRaising, + PomanderID.ProtoLethargy, + PomanderID.ProtoFortune, + PomanderID.ProtoAffluence + ]; + + private bool CanAutoUse(PomanderID p) => AutoUsable.Contains(p); + + private void IterAndExpire(List items, Func expire, Action action, Action? onRemove = null) + { + for (var i = items.Count - 1; i >= 0; i--) + { + var item = items[i]; + if (expire(item)) + { + items.RemoveAt(i); + onRemove?.Invoke(item); + } + else + action(item); + } + } + + protected virtual void OnActorCreated(Actor c) + { + if ((OID)c.OID is OID.BeaconHoH or OID.BandedCofferIndicator) + IgnoreTraps.Add(c.Position); + } + + private DateTime CastFinishAt(Actor c) => World.FutureTime(c.CastInfo!.NPCRemainingTime); + + public override void CalculateAIHints(int playerSlot, Actor player, AIHints hints) + { + if (!_config.Enable || Palace.IsBossFloor || BetweenFloors) + return; + + foreach (var (w, rot) in Walls) + hints.AddForbiddenZone(new AOEShapeRect(w.Depth, 20, w.Depth), w.Position, (rot ? 90f : 0f).Degrees()); + + HandleFloorPathfind(player, hints); + DrawAOEs(playerSlot, player, hints); + + var isStunned = player.IsTransformed || player.Statuses.Any(s => (SID)s.ID is SID.Silence or SID.Pacification); + var isOccupied = player.InCombat || isStunned; + + Actor? coffer = null; + Actor? hoardLight = null; + Actor? passage = null; + List> revealedTraps = []; + + PomanderID? pomanderToUseHere = null; + + foreach (var a in World.Actors) + { + if (_chestContentsGold.TryGetValue(a.InstanceID, out var pid) && Palace.GetPomanderState(pid).Count == 3 && a.IsTargetable) + { + if (CanAutoUse(pid)) + pomanderToUseHere ??= pid; + continue; + } + + if (_chestContentsSilver.ContainsKey(a.InstanceID) && Palace.Magicite.All(m => m > 0)) + // TODO use magicite/demiclone to prevent overcap + continue; + + if (_openedChests.Contains(a.InstanceID) || _fakeExits.Contains(a.InstanceID)) + continue; + + var oid = (OID)a.OID; + if (a.IsTargetable && ( + oid == OID.GoldCoffer && OpenGold || + oid == OID.SilverCoffer && OpenSilver && player.HPMP.CurHP > player.HPMP.MaxHP * 0.7f || + BronzeChestIDs.Contains(a.OID) && OpenBronze || + oid == OID.BandedCoffer + )) + { + if ((coffer?.DistanceToHitbox(player) ?? float.MaxValue) > a.DistanceToHitbox(player)) + coffer = a; + } + + if (a.OID == (uint)OID.BandedCofferIndicator) + hoardLight = a; + + if ((OID)a.OID is OID.CairnPalace or OID.BeaconHoH or OID.PylonEO && (passage?.DistanceToHitbox(player) ?? float.MaxValue) > a.DistanceToHitbox(player)) + passage = a; + + if (RevealedTrapOIDs.Contains(a.OID)) + revealedTraps.Add(ShapeDistance.Circle(a.Position, 2)); + } + + if (_config.TrapHints && _trapsHidden) + { + var traps = _trapsCurrentZone.Where(t => t.InCircle(player.Position, 30) && !IgnoreTraps.Any(b => b.AlmostEqual(t, 1))).Select(t => ShapeDistance.Circle(t, 2)).ToList(); + if (traps.Count > 0) + hints.AddForbiddenZone(ShapeDistance.Union(traps)); + } + + if (coffer != null) + { + if (_lastChestContentsGold is PomanderID p) + { + _chestContentsGold[coffer.InstanceID] = p; + _lastChestContentsGold = null; + return; + } + + if (_lastChestMagicite) + { + // TODO figure out why the system log args arent working + _chestContentsSilver[coffer.InstanceID] = 1; + _lastChestMagicite = false; + return; + } + } + + if (!isStunned && pomanderToUseHere is PomanderID p2 && player.FindStatus(SID.ItemPenalty) == null) + hints.ActionsToExecute.Push(new ActionID(ActionType.Pomander, (uint)p2), null, ActionQueue.Priority.VeryHigh); + + Actor? wantCoffer = null; + if (coffer is Actor t && !player.IsTransformed && (_config.AutoMoveTreasure && (!player.InCombat || _config.NavigateInCombat) || player.DistanceToHitbox(t) < 3.5f)) + wantCoffer = t; + + if (!player.InCombat && _config.AutoPassage && Palace.PassageActive) + { + DesiredRoom = Array.FindIndex(Palace.Rooms, d => d.HasFlag(RoomFlags.Passage)); + + if (passage is Actor c) + { + hints.GoalZones.Add(hints.GoalSingleTarget(c.Position, 2, 0.5f)); + // give pathfinder a little help lmao + hints.GoalZones.Add(hints.GoalSingleTarget(c.Position, 25, 0.25f)); + if (player.DistanceToHitbox(c) < player.DistanceToHitbox(coffer) && !_config.OpenChestsFirst) + wantCoffer = null; + } + } + + if (wantCoffer is Actor xxx) + { + wantCoffer = xxx; + hints.GoalZones.Add(hints.GoalSingleTarget(xxx.Position, 25)); + hints.InteractWithTarget = coffer; + } + + if (revealedTraps.Count > 0) + hints.AddForbiddenZone(ShapeDistance.Union(revealedTraps)); + + if (!player.IsTransformed && (!player.InCombat || _config.NavigateInCombat) && _config.AutoMoveTreasure && hoardLight is Actor h && Palace.GetPomanderState(PomanderID.Intuition).Active) + hints.GoalZones.Add(hints.GoalSingleTarget(h.Position, 2, 10)); + + var shouldTargetMobs = _config.AutoClear switch + { + AutoDDConfig.ClearBehavior.Passage => !Palace.PassageActive, + AutoDDConfig.ClearBehavior.Leveling => player.Level < LevelCap || !Palace.PassageActive, + AutoDDConfig.ClearBehavior.All => true, + _ => false + }; + + if (player.InCombat || World.Actors.Find(player.TargetID) is Actor t2 && !t2.IsAlly) + return; + + Actor? bestTarget = null; + + void pickBetterTarget(Actor t) + { + if (player.DistanceToHitbox(t) < player.DistanceToHitbox(bestTarget)) + bestTarget = t; + } + + foreach (var pp in hints.PotentialTargets) + { + // enemy is petrified, any damage will kill + if (pp.Actor.FindStatus(SID.StoneCurse)?.ExpireAt > World.FutureTime(1.5f)) + pickBetterTarget(pp.Actor); + + // pomander of storms was used, enemy can't autoheal; any damage will kill + else if (pp.Actor.FindStatus(SID.AutoHealPenalty) != null && pp.Actor.HPMP.CurHP < 10) + pickBetterTarget(pp.Actor); + + // if player does not have a target, prioritize everything so that AI picks one - skip dangerous enemies + else if (shouldTargetMobs && !pp.Actor.Statuses.Any(s => IsDangerousOutOfCombatStatus(s.ID))) + pickBetterTarget(pp.Actor); + } + + hints.ForcedTarget = bestTarget; + } + + private void DrawAOEs(int playerSlot, Actor player, AIHints hints) + { + IterAndExpire(HintDisabled, g => g.CastInfo == null, g => + { + hints.ForbiddenZones.RemoveAll(z => z.Source == g.InstanceID); + }); + + IterAndExpire(Gazes, g => g.Source.CastInfo == null, d => + { + if (d.Shape.Check(player.Position, d.Source)) + hints.ForbiddenDirections.Add((player.AngleTo(d.Source), 45.Degrees(), CastFinishAt(d.Source))); + }); + + IterAndExpire(Donuts, d => d.Source.CastInfo == null, d => + { + hints.AddForbiddenZone(new AOEShapeDonut(d.Inner, d.Outer), d.Source.Position, default, CastFinishAt(d.Source)); + }); + + IterAndExpire(Circles, d => d.Source.CastInfo == null, d => + { + hints.AddForbiddenZone(new AOEShapeCircle(d.Radius), d.Source.Position, default, CastFinishAt(d.Source)); + + // some enrages are way bigger than pathfinding map size (e.g. slime explosion is 60y) + // in these cases, if the player is inside the aoe, add a goal zone telling it to GTFO as far as possible + if (d.Radius >= 30) + { + var distToSource = (player.Position - d.Source.Position).Length(); + if (distToSource <= d.Radius) + { + var desiredDistance = distToSource + 10; + hints.GoalZones.Add(p => + { + var dist = (p - d.Source.Position).Length(); + return dist >= desiredDistance ? 100 : 0; + }); + } + } + }); + + IterAndExpire(Interrupts, d => d.CastInfo == null, d => + { + if (hints.FindEnemy(d) is { } e) + e.ShouldBeInterrupted = true; + }); + + IterAndExpire(Stuns, d => d.CastInfo == null, d => + { + if (hints.FindEnemy(d) is { } e) + e.ShouldBeStunned = true; + }); + + IterAndExpire(LOS, d => d.CastInfo == null, caster => + { + if (!_losCache.TryGetValue(caster.InstanceID, out var dangermap)) + return; + + var origin = dangermap.Item1; + var map = dangermap.Item2; + + hints.AddForbiddenZone(p => + { + var offset = (p - origin) / map.PixelSize; + return map[(int)offset.X, (int)offset.Z] ? -10 : 10; + }, CastFinishAt(caster)); + }, d => _losCache.Remove(d.InstanceID)); + + IterAndExpire(Voidzones, d => d.Source.IsDeadOrDestroyed, d => + { + hints.AddForbiddenZone(d.Zone, d.Source.Position, d.Source.Rotation); + }); + + IterAndExpire(KnockbackZones, d => d.Source.CastInfo == null, kb => + { + var castFinish = CastFinishAt(kb.Source); + if (_playerImmunes[playerSlot].ImmuneAt(castFinish)) + return; + + hints.AddForbiddenZone(new AOEShapeCircle(kb.Radius), kb.Source.Position, default, castFinish); + }); + + IterAndExpire(ForbiddenTargets, t => t.Timeout <= World.CurrentTime, t => + { + if (hints.FindEnemy(t.Actor) is { } enemy) + enemy.Priority = AIHints.Enemy.PriorityForbidden; + }); + } + + private static bool IsDangerousOutOfCombatStatus(uint statusRaw) => (SID)statusRaw is SID.DamageUp or SID.DreadBeastAura or SID.PhysicalDamageUp; + + private void HandleFloorPathfind(Actor player, AIHints hints) + { + if (player.InCombat && !_config.NavigateInCombat) + return; + + var playerRoom = Palace.Party[0].Room; + + if (DesiredRoom == playerRoom || DesiredRoom == 0) + { + DesiredRoom = 0; + return; + } + + var path = new FloorPathfind(Palace.Rooms).Pathfind(playerRoom, DesiredRoom); + if (path.Count == 0) + { + Service.Log($"uh-oh, no path from {playerRoom} to {DesiredRoom}"); + return; + } + var next = path[0]; + Direction d; + if (next == playerRoom + 1) + d = Direction.East; + else if (next == playerRoom - 1) + d = Direction.West; + else if (next == playerRoom + 5) + d = Direction.South; + else if (next == playerRoom - 5) + d = Direction.North; + else + { + Service.Log($"pathfinding instructions are nonsense: {string.Join(", ", path)}"); + DesiredRoom = 0; + return; + } + + hints.GoalZones.Add(p => + { + var pp = player.Position; + return d switch + { + Direction.North => pp.Z - p.Z, + Direction.South => p.Z - pp.Z, + Direction.East => p.X - pp.X, + Direction.West => pp.X - p.X, + _ => 0, + } * 0.001f; + }); + } + + private void LoadWalls() + { + Service.Log($"loading walls for current floor..."); + Walls.Clear(); + var floorset = Palace.Floor / 10; + var key = $"{(int)Palace.DungeonId}.{floorset + 1}"; + if (!LoadedFloors.TryGetValue(key, out var floor)) + { + Service.Log($"unable to load floorset {key}"); + return; + } + Tileset tileset; + switch (Palace.Progress.Tileset) + { + case 0: + tileset = floor.RoomsA; + break; + case 1: + tileset = floor.RoomsB; + break; + case 2: + Service.Log($"hall of fallacies - nothing to do"); + return; + default: + Service.Log($"unrecognized tileset number {Palace.Progress.Tileset}"); + return; + } + foreach (var (room, i) in Palace.Rooms.Select((m, i) => (m, i))) + { + if (room > 0) + { + var roomdata = tileset[i]; + RoomCenters.Add(roomdata.Center.Position); + if (roomdata.North != default && !room.HasFlag(RoomFlags.ConnectionN)) + Walls.Add((roomdata.North, false)); + if (roomdata.South != default && !room.HasFlag(RoomFlags.ConnectionS)) + Walls.Add((roomdata.South, false)); + if (roomdata.East != default && !room.HasFlag(RoomFlags.ConnectionE)) + Walls.Add((roomdata.East, true)); + if (roomdata.West != default && !room.HasFlag(RoomFlags.ConnectionW)) + Walls.Add((roomdata.West, true)); + } + } + } + + protected void AddLOSFromTerrain(Actor Source, float Range) + { + var (entry, data) = _obstacles.Find(Source.PosRot.XYZ()); + if (entry == null || data == null) + { + Service.Log($"no bitmap found for {Source}, not adding LOS hints"); + return; + } + + var pixelRange = (int)(Range / data.PixelSize); + var casterOff = Source.Position - entry.Origin; + var casterCell = casterOff / data.PixelSize; + var casterX = (int)casterCell.X; + var casterZ = (int)casterCell.Z; + + var bm = new Bitmap(data.Width, data.Height, data.Color0, data.Color1, data.Resolution); + for (var i = Math.Max(0, casterX - pixelRange); i <= Math.Min(data.Width, casterX + pixelRange); i++) + { + for (var j = Math.Max(0, casterZ - pixelRange); j <= Math.Min(data.Height, casterZ + pixelRange); j++) + { + var pt = new Vector2(i, j); + var cc = new Vector2(casterX, casterZ); + if (!IsBlocked(data, pt, cc, pixelRange)) + bm[i, j] = true; + } + } + + _losCache[Source.InstanceID] = (entry.Origin, bm); + LOS.Add(Source); + } + + private static bool IsBlocked(Bitmap map, Vector2 point, Vector2 origin, float maxRange) + { + var dir = origin - point; + var dist = dir.Length(); + if (dist >= maxRange) + return true; + + dir /= dist; + + var ox = point.X; + var oy = point.Y; + var vx = dir.X; + var vy = dir.Y; + + for (var i = 0; i < (int)dist; i++) + { + if (map[(int)ox, (int)oy]) + return true; + ox += vx; + oy += vy; + } + + return false; + } + + private Stream GetEmbeddedResource(string name) => Assembly.GetExecutingAssembly().GetManifestResourceStream($"BossMod.Modules.Global.DeepDungeon.{name}") ?? throw new InvalidDataException($"Missing embedded resource {name}"); +} + +static class PalacePalInterop +{ + // TODO make an IPC for this? wouldn't work in uidev + private static readonly string PalacePalDbFile = Path.Join(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), "XIVLauncher", "pluginConfigs", "PalacePal", "palace-pal.data.sqlite3"); + + public static List GetTrapLocationsForZone(uint zone) + { + List locations = []; + + try + { + using (var connection = new SQLiteConnection($"Data Source={PalacePalDbFile}")) + { + connection.Open(); + + var command = connection.CreateCommand(); + command.CommandText = @" + select X,Z from Locations where Type = 1 and TerritoryType = $tt + "; + command.Parameters.AddWithValue("$tt", zone); + + using var reader = command.ExecuteReader(); + while (reader.Read()) + { + var x = reader.GetFloat(0); + var z = reader.GetFloat(1); + locations.Add(new(x, z)); + } + } + + return locations; + } + catch (SQLiteException e) + { + Service.Log($"unable to load traps for zone ${zone}: ${e}"); + return []; + } + } +} diff --git a/BossMod/Modules/Global/DeepDungeon/BadTraps.json b/BossMod/Modules/Global/DeepDungeon/BadTraps.json new file mode 100644 index 0000000000..fb32a45ead --- /dev/null +++ b/BossMod/Modules/Global/DeepDungeon/BadTraps.json @@ -0,0 +1 @@ +[{"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/Config.cs b/BossMod/Modules/Global/DeepDungeon/Config.cs new file mode 100644 index 0000000000..7d197f6e1b --- /dev/null +++ b/BossMod/Modules/Global/DeepDungeon/Config.cs @@ -0,0 +1,45 @@ +namespace BossMod.Global.DeepDungeon; + +[ConfigDisplay(Name = "Auto-DeepDungeon", Parent = typeof(ModuleConfig))] +public class AutoDDConfig : ConfigNode +{ + public enum ClearBehavior + { + [PropertyDisplay("Do not auto target")] + None, + [PropertyDisplay("Stop when passage opens")] + Passage, + [PropertyDisplay("Target everything if not at level cap, otherwise stop when passage opens")] + Leveling, + [PropertyDisplay("Target everything")] + All, + } + + [PropertyDisplay("Enable module")] + public bool Enable = true; + [PropertyDisplay("Enable minimap")] + public bool EnableMinimap = true; + [PropertyDisplay("Try to avoid traps", tooltip: "Avoid known trap locations sourced from PalacePal data. (Traps revealed by a Pomander of Sight will always be avoided regardless of this setting.)")] + public bool TrapHints = true; + [PropertyDisplay("Automatically navigate to Cairn of Passage")] + public bool AutoPassage = true; + + [PropertyDisplay("Automatic mob targeting behavior")] + public ClearBehavior AutoClear = ClearBehavior.Leveling; + + [PropertyDisplay("Allow navigation in combat")] + public bool NavigateInCombat = false; + [PropertyDisplay("Try to use terrain to LOS attacks")] + public bool AutoLOS = false; + + [PropertyDisplay("Automatically navigate to coffers")] + public bool AutoMoveTreasure = true; + [PropertyDisplay("Prioritize opening coffers over Cairn of Passage")] + public bool OpenChestsFirst = false; + [PropertyDisplay("Open gold coffers")] + public bool GoldCoffer = true; + [PropertyDisplay("Open silver coffers")] + public bool SilverCoffer = true; + [PropertyDisplay("Open bronze coffers")] + public bool BronzeCoffer = true; +} diff --git a/BossMod/Modules/Global/DeepDungeon/FloorPathfind.cs b/BossMod/Modules/Global/DeepDungeon/FloorPathfind.cs new file mode 100644 index 0000000000..9d013222ff --- /dev/null +++ b/BossMod/Modules/Global/DeepDungeon/FloorPathfind.cs @@ -0,0 +1,61 @@ +using static FFXIVClientStructs.FFXIV.Client.Game.InstanceContent.InstanceContentDeepDungeon; + +namespace BossMod.Global.DeepDungeon; + +public enum Direction +{ + North, + South, + East, + West +} + +// neat feature of deep dungeons - there is only one path from any room to any other room (no loops) and the grid is so small that brute forcing is basically free! +internal class FloorPathfind(ReadOnlySpan Map) +{ + public readonly RoomFlags[] Map = Map.ToArray(); + + private readonly bool[] Explored = new bool[25]; + + private readonly Queue> Queue = new(); + + public List Pathfind(int startRoom, int destRoom) + { + if (startRoom == destRoom) + return []; + + Explored[startRoom] = true; + Queue.Enqueue([startRoom]); + while (Queue.TryDequeue(out var v)) + { + if (v[^1] == destRoom) + { + v.RemoveAt(0); + return v; + } + foreach (var w in Edges(v[^1])) + { + if (!Explored[w]) + { + Explored[w] = true; + Queue.Enqueue([.. v, w]); + } + } + } + + return []; + } + + private IEnumerable Edges(int roomIndex) + { + var md = Map[roomIndex]; + if (md.HasFlag(RoomFlags.ConnectionN)) + yield return roomIndex - 5; + if (md.HasFlag(RoomFlags.ConnectionS)) + yield return roomIndex + 5; + if (md.HasFlag(RoomFlags.ConnectionW)) + yield return roomIndex - 1; + if (md.HasFlag(RoomFlags.ConnectionE)) + yield return roomIndex + 1; + } +} diff --git a/BossMod/Modules/Global/DeepDungeon/LevelData.cs b/BossMod/Modules/Global/DeepDungeon/LevelData.cs new file mode 100644 index 0000000000..6c33b65ef4 --- /dev/null +++ b/BossMod/Modules/Global/DeepDungeon/LevelData.cs @@ -0,0 +1,37 @@ +namespace BossMod.Global.DeepDungeon; + +[Serializable] +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 Tileset Map(Func Mapping) => new(Rooms.Select(m => m.Map(Mapping)).ToList()); + + public RoomData this[int index] => Rooms[index]; + + public override string ToString() => $"Tileset {{ Rooms = [{string.Join(", ", Rooms)}] }}"; +} + +[Serializable] +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/Minimap.cs b/BossMod/Modules/Global/DeepDungeon/Minimap.cs new file mode 100644 index 0000000000..d08c96a680 --- /dev/null +++ b/BossMod/Modules/Global/DeepDungeon/Minimap.cs @@ -0,0 +1,165 @@ +using Dalamud.Interface.Utility.Raii; +using ImGuiNET; +using static FFXIVClientStructs.FFXIV.Client.Game.InstanceContent.InstanceContentDeepDungeon; + +namespace BossMod.Global.DeepDungeon; + +public record class Minimap(DeepDungeonState State, Angle PlayerRotation, int CurrentDestination) +{ + enum IconID : uint + { + ReturnClosed = 60905, + ReturnOpen = 60906, + PassageClosed = 60907, + PassageOpen = 60908, + ChestBronze = 60911, + ChestSilver = 60912, + ChestGold = 60913, + } + + [Flags] + enum RoomChest + { + None = 0, + Bronze = 1, + Silver = 2, + Gold = 4 + } + + /// + /// + /// + /// Integer index of the room the user clicked on. + public int Draw() + { + var dest = -1; + + var chests = new RoomChest[25]; + foreach (var c in State.Chests) + if (c.Room > 0) + chests[c.Room] |= (RoomChest)(1 << (c.Type - 1)); + + var playerCell = State.Party[0].Room; + + using var _ = ImRaii.PushStyle(ImGuiStyleVar.ItemSpacing, new Vector2(0f, 0f)); + + var roomsTex = Service.Texture.GetFromGame("ui/uld/DeepDungeonNaviMap_Rooms_hr1.tex").GetWrapOrEmpty(); + var mapTex = Service.Texture.GetFromGame("ui/uld/DeepDungeonNaviMap_hr1.tex").GetWrapOrEmpty(); + var passageTex = Service.Texture.GetFromGameIcon(new((uint)(State.PassageActive ? IconID.PassageOpen : IconID.PassageClosed))).GetWrapOrEmpty(); + var returnTex = Service.Texture.GetFromGameIcon(new((uint)(State.ReturnActive ? IconID.ReturnOpen : IconID.ReturnClosed))).GetWrapOrEmpty(); + var bronzeTex = Service.Texture.GetFromGameIcon(new((uint)IconID.ChestBronze)).GetWrapOrEmpty(); + var silverTex = Service.Texture.GetFromGameIcon(new((uint)IconID.ChestSilver)).GetWrapOrEmpty(); + var goldTex = Service.Texture.GetFromGameIcon(new((uint)IconID.ChestGold)).GetWrapOrEmpty(); + + for (var i = 0; i < 25; i++) + { + var highlight = CurrentDestination > 0 && CurrentDestination == i; + + var isValidDestination = State.Rooms[i] > 0; + + using var _1 = ImRaii.PushId($"room{i}"); + + var pos = ImGui.GetCursorPos(); + var tile = (byte)State.Rooms[i] & 0xF; + var row = tile / 4; + var col = tile % 4; + + var xoff = 0.0104f + col * 0.25f; + var yoff = 0.0104f + row * 0.25f; + var xoffend = xoff + 0.2292f; + var yoffend = yoff + 0.2292f; + + // trim off 1px from each edge to account for extra space from highlight square + // TODO there is probably a sensible primitive for this somewhere + if (highlight) + { + xoff += 0.2292f / 88f; + yoff += 0.2292f / 88f; + xoffend -= 0.2292f / 88f; + yoffend -= 0.2292f / 88f; + } + + ImGui.SetCursorPos(pos); + ImGui.Image(roomsTex.ImGuiHandle, highlight ? new(86) : new(88), new Vector2(xoff, yoff), new Vector2(xoffend, yoffend), tile > 0 ? new(1f) : new(0.6f), highlight ? new(0, 0.6f, 0, 1) : default); + + if (i == playerCell) + { + isValidDestination = false; + ImGui.SetCursorPos(pos + new Vector2(12, 12)); + ImGui.Image(mapTex.ImGuiHandle, new Vector2(64, 64), new Vector2(0.2424f, 0.4571f), new Vector2(0.4848f, 0.6857f)); + } + + if (State.Rooms[i].HasFlag(RoomFlags.Passage)) + { + ImGui.SetCursorPos(pos + new Vector2(28, 44)); + ImGui.Image(passageTex.ImGuiHandle, new Vector2(32, 32)); + } + + if (State.Rooms[i].HasFlag(RoomFlags.Return)) + { + ImGui.SetCursorPos(pos + new Vector2(28, 44)); + ImGui.Image(returnTex.ImGuiHandle, new Vector2(32, 32)); + } + + if (chests[i].HasFlag(RoomChest.Bronze)) + { + ImGui.SetCursorPos(pos + new Vector2(2, 2)); + ImGui.Image(bronzeTex.ImGuiHandle, new Vector2(48, 48)); + } + + if (chests[i].HasFlag(RoomChest.Silver)) + { + ImGui.SetCursorPos(pos + new Vector2(20, 2)); + ImGui.Image(silverTex.ImGuiHandle, new Vector2(48, 48)); + } + + if (chests[i].HasFlag(RoomChest.Gold)) + { + ImGui.SetCursorPos(pos + new Vector2(38, 2)); + ImGui.Image(goldTex.ImGuiHandle, new Vector2(48, 48)); + } + + if (i == playerCell) + { + ImGui.SetCursorPos(pos + new Vector2(44, 44)); + DrawPlayer(ImGui.GetCursorScreenPos(), PlayerRotation, mapTex.ImGuiHandle); + } + + ImGui.SetCursorPos(pos); + ImGui.Dummy(new(88, 88)); + if (isValidDestination) + { + if (ImGui.IsItemHovered()) + { + ImGui.SetMouseCursor(ImGuiMouseCursor.Hand); + ImGui.SetTooltip(i == CurrentDestination ? "Click to clear destination" : "Click to set destination"); + } + if (ImGui.IsItemClicked()) + dest = i == CurrentDestination ? 0 : i; + } + if (i % 5 < 4) + ImGui.SameLine(); + } + + return dest; + } + + private static void DrawPlayer(Vector2 center, Angle rotation, nint texHandle) + { + var cos = -rotation.Cos(); + var sin = rotation.Sin(); + ImGui.GetWindowDrawList().AddImageQuad( + texHandle, + center + Rotate(new(-32, -37.5f), cos, sin), + center + Rotate(new(32, -37.5f), cos, sin), + center + Rotate(new(32, 26.5f), cos, sin), + center + Rotate(new(-32, 26.5f), cos, sin), + new Vector2(0.0000f, 0.4571f), + new Vector2(0.2424f, 0.4571f), + new Vector2(0.2424f, 0.6857f), + new Vector2(0.0000f, 0.6857f) + ); + } + + private static Vector2 Rotate(Vector2 v, float cosA, float sinA) => new(v.X * cosA - v.Y * sinA, v.X * sinA + v.Y * cosA); +} diff --git a/BossMod/Modules/Global/DeepDungeon/Walls.json b/BossMod/Modules/Global/DeepDungeon/Walls.json new file mode 100644 index 0000000000..222af990ae --- /dev/null +++ b/BossMod/Modules/Global/DeepDungeon/Walls.json @@ -0,0 +1,74482 @@ +{ + "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 + } + } + ] + } + } +} \ No newline at end of file diff --git a/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/D100NybethObdilord.cs b/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/D100NybethObdilord.cs index ccaa085f7f..7261c3f5d9 100644 --- a/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/D100NybethObdilord.cs +++ b/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/D100NybethObdilord.cs @@ -27,7 +27,7 @@ class Catapult(BossModule module) : Components.LocationTargetedAOEs(module, Acti class CorseAdds(BossModule module) : Components.AddsMulti(module, [(uint)OID.BicephalicCorse, (uint)OID.GiantCorse, (uint)OID.IronCorse]); class Doom(BossModule module) : Components.SelfTargetedAOEs(module, ActionID.MakeSpell(AID.Doom), new AOEShapeCone(47.4f, 60.Degrees())); class Shackle(BossModule module) : Components.SelfTargetedAOEs(module, ActionID.MakeSpell(AID.Shackle), new AOEShapeRect(52.4f, 4, 0)); -class SummonDarkness(BossModule module) : Components.RaidwideCast(module, ActionID.MakeSpell(AID.SummonDarkness), "Summoning the corse, incoming Adds! \nRemember to use a resolution to make them permanently disappear"); +class SummonDarkness(BossModule module) : Components.CastHint(module, ActionID.MakeSpell(AID.SummonDarkness), "Summoning the corse, incoming Adds! \nRemember to use a resolution to make them permanently disappear"); class EncounterHints(BossModule module) : BossComponent(module) { diff --git a/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/D10PalaceDeathgaze.cs b/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/D10PalaceDeathgaze.cs index 9a8eb2417e..b603ba933c 100644 --- a/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/D10PalaceDeathgaze.cs +++ b/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/D10PalaceDeathgaze.cs @@ -34,5 +34,5 @@ public D10PalaceDeathgazeStates(BossModule module) : base(module) } [ModuleInfo(BossModuleInfo.Maturity.Contributed, Contributors = "LegendofIceman", GroupType = BossModuleInfo.GroupType.CFC, GroupID = 174, NameID = 4986)] -public class D10PalaceDeathgaze(WorldState ws, Actor primary) : BossModule(ws, primary, new(-300, -220), new ArenaBoundsCircle(25)); +public class D10PalaceDeathgaze(WorldState ws, Actor primary) : BossModule(ws, primary, new(-300, -220), new ArenaBoundsCircle(24)); diff --git a/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/D110Alicanto.cs b/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/D110Alicanto.cs index 6691c8862f..ae3bc1a4d8 100644 --- a/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/D110Alicanto.cs +++ b/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/D110Alicanto.cs @@ -33,4 +33,4 @@ public D110AlicantoStates(BossModule module) : base(module) } [ModuleInfo(BossModuleInfo.Maturity.Contributed, Contributors = "LegendofIceman", GroupType = BossModuleInfo.GroupType.CFC, GroupID = 209, NameID = 5371)] -public class D110Alicanto(WorldState ws, Actor primary) : BossModule(ws, primary, new(-300, -235), new ArenaBoundsCircle(25)); +public class D110Alicanto(WorldState ws, Actor primary) : BossModule(ws, primary, new(-300, -235), new ArenaBoundsCircle(24)); diff --git a/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/D120Kirtimukha.cs b/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/D120Kirtimukha.cs index 0798382cf3..eb111a4fb9 100644 --- a/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/D120Kirtimukha.cs +++ b/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/D120Kirtimukha.cs @@ -24,12 +24,18 @@ class BossAdds(BossModule module) : Components.Adds(module, (uint)OID.DeepPalace public override void AddAIHints(int slot, Actor actor, PartyRolesConfig.Assignment assignment, AIHints hints) { foreach (var e in hints.PotentialTargets) - e.Priority = (OID)e.Actor.OID switch + { + switch ((OID)e.Actor.OID) { - OID.DeepPalaceHornet => 2, - OID.Boss => 1, - _ => 0 - }; + case OID.DeepPalaceHornet: + e.Priority = 2; + e.ForbidDOTs = true; + break; + case OID.Boss: + e.Priority = 1; + break; + } + } } } class BloodyCaress(BossModule module) : Components.Cleave(module, ActionID.MakeSpell(AID.BloodyCaress), new AOEShapeCone(11.6f, 60.Degrees()), activeWhileCasting: false); diff --git a/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/D130Alfard.cs b/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/D130Alfard.cs index ff4e16d3b8..acd23ee7d8 100644 --- a/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/D130Alfard.cs +++ b/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/D130Alfard.cs @@ -17,12 +17,14 @@ public enum AID : uint } class Dissever(BossModule module) : Components.Cleave(module, ActionID.MakeSpell(AID.Dissever), new AOEShapeCone(10.8f, 45.Degrees()), activeWhileCasting: false); -class BallofFire(BossModule module) : Components.PersistentVoidzone(module, 6, m => m.Enemies(OID.FireVoidPuddle).Where(z => z.EventState != 7)); -class BallofIce(BossModule module) : Components.PersistentVoidzone(module, 6, m => m.Enemies(OID.IceVoidPuddle).Where(z => z.EventState != 7)); +class BallofFire(BossModule module) : Components.PersistentVoidzoneAtCastTarget(module, 6, ActionID.MakeSpell(AID.BallOfFire), m => m.Enemies(OID.FireVoidPuddle).Where(z => z.EventState != 7), 2.1f); +class BallofIce(BossModule module) : Components.PersistentVoidzoneAtCastTarget(module, 6, ActionID.MakeSpell(AID.BallOfIce), m => m.Enemies(OID.IceVoidPuddle).Where(z => z.EventState != 7), 2.1f); class FearItself(BossModule module) : Components.SelfTargetedAOEs(module, ActionID.MakeSpell(AID.FearItself), new AOEShapeDonut(5, 50)); class Hints(BossModule module) : BossComponent(module) { + // arena is like a weird octagon and the boss also doesn't cast from the center + private static readonly WPos FearCastSource = new(-300, -236); public int NumCasts { get; private set; } public override void OnEventCast(Actor caster, ActorCastEvent spell) @@ -43,6 +45,14 @@ public override void AddGlobalHints(GlobalHints hints) if (NumCasts >= 4) hints.Add($"Run to the middle of the arena! \n{Module.PrimaryActor.Name} is about to cast a donut AOE!"); } + + public override void AddAIHints(int slot, Actor actor, PartyRolesConfig.Assignment assignment, AIHints hints) + { + if (NumCasts < 4) + hints.AddForbiddenZone(new AOEShapeCircle(11), FearCastSource, activation: WorldState.FutureTime(10f)); + else + hints.AddForbiddenZone(new AOEShapeDonut(5, 50), FearCastSource, activation: WorldState.FutureTime(10f)); + } } class D130AlfardStates : StateMachineBuilder @@ -59,4 +69,4 @@ public D130AlfardStates(BossModule module) : base(module) } [ModuleInfo(BossModuleInfo.Maturity.Contributed, Contributors = "LegendofIceman", GroupType = BossModuleInfo.GroupType.CFC, GroupID = 211, NameID = 5397)] -public class D130Alfard(WorldState ws, Actor primary) : BossModule(ws, primary, new(-300, -235), new ArenaBoundsCircle(25)); +public class D130Alfard(WorldState ws, Actor primary) : BossModule(ws, primary, new(-300, -237), new ArenaBoundsCircle(24)); diff --git a/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/D140AhPuch.cs b/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/D140AhPuch.cs index 037a80a5d5..9aa58c6089 100644 --- a/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/D140AhPuch.cs +++ b/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/D140AhPuch.cs @@ -54,4 +54,4 @@ public D140AhPuchStates(BossModule module) : base(module) } [ModuleInfo(BossModuleInfo.Maturity.Contributed, Contributors = "LegendofIceman", GroupType = BossModuleInfo.GroupType.CFC, GroupID = 212, NameID = 5410)] -public class D140AhPuch(WorldState ws, Actor primary) : BossModule(ws, primary, new(-300, -237), new ArenaBoundsCircle(25)); +public class D140AhPuch(WorldState ws, Actor primary) : BossModule(ws, primary, new(-300, -237), new ArenaBoundsCircle(24)); diff --git a/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/D150Tisiphone.cs b/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/D150Tisiphone.cs index 4f67374a81..2b674db931 100644 --- a/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/D150Tisiphone.cs +++ b/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/D150Tisiphone.cs @@ -26,7 +26,29 @@ public enum AID : uint } class BloodRain(BossModule module) : Components.RaidwideCast(module, ActionID.MakeSpell(AID.BloodRain), "Heavy Raidwide damage! Also killing any add that is currently up"); -class BossAdds(BossModule module) : Components.AddsMulti(module, [(uint)OID.FanaticZombie, (uint)OID.FanaticSuccubus]); +class BossAdds(BossModule module) : Components.AddsMulti(module, [(uint)OID.FanaticZombie, (uint)OID.FanaticSuccubus]) +{ + public override void AddAIHints(int slot, Actor actor, PartyRolesConfig.Assignment assignment, AIHints hints) + { + if (actor.Class.GetRole() is Role.Ranged or Role.Healer) + { + // ignore all adds, just attack boss + hints.PrioritizeTargetsByOID(OID.Boss, 5); + foreach (var zombie in Module.Enemies(OID.FanaticZombie)) + { + hints.AddForbiddenZone(new AOEShapeCircle(3), zombie.Position); + hints.AddForbiddenZone(new AOEShapeCircle(8), zombie.Position, activation: WorldState.FutureTime(5)); + } + } + else + { + // kill zombies first, they have low health + hints.PrioritizeTargetsByOID(OID.FanaticZombie, 5); + // attack boss, ignore succubus + hints.PrioritizeTargetsByOID(OID.Boss, 1); + } + } +} class DarkMist(BossModule module) : Components.SelfTargetedAOEs(module, ActionID.MakeSpell(AID.DarkMist), new AOEShapeCircle(10)); class Desolation(BossModule module) : Components.SelfTargetedAOEs(module, ActionID.MakeSpell(AID.Desolation), new AOEShapeRect(57.3f, 3)); class FatalAllure(BossModule module) : Components.SingleTargetCast(module, ActionID.MakeSpell(AID.FatalAllure), "Boss is life stealing from the succubus"); @@ -35,9 +57,6 @@ class TerrorEye(BossModule module) : Components.LocationTargetedAOEs(module, Act class VoidAero(BossModule module) : Components.SelfTargetedAOEs(module, ActionID.MakeSpell(AID.VoidAero), new AOEShapeRect(42.3f, 4)); class VoidFireII(BossModule module) : Components.LocationTargetedAOEs(module, ActionID.MakeSpell(AID.VoidFireII), 5); class VoidFireIV(BossModule module) : Components.LocationTargetedAOEs(module, ActionID.MakeSpell(AID.VoidFireIV), 10); -class ZombieGrab(BossModule module) : Components.PersistentVoidzone(module, 2, m => m.Enemies(OID.FanaticZombie)); // Future note to Ice(self): Not entirely sure if I'm happy with this per se? It shows to essentially stay away from the zombies but, maybe a better hint when I can think of one - -// TODO: Add a switch to target the zombie that is currently attached to you. Missing the status effect that it gives when caught. class EncounterHints(BossModule module) : BossComponent(module) { @@ -62,7 +81,6 @@ public D150TisiphoneStates(BossModule module) : base(module) .ActivateOnEnter() .ActivateOnEnter() .ActivateOnEnter() - .ActivateOnEnter() .DeactivateOnEnter(); } } diff --git a/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/D160Todesritter.cs b/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/D160Todesritter.cs index dd62e28e58..c875d7ec32 100644 --- a/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/D160Todesritter.cs +++ b/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/D160Todesritter.cs @@ -18,29 +18,68 @@ public enum AID : uint } class CleaveAuto(BossModule module) : Components.Cleave(module, ActionID.MakeSpell(AID.AutoAttack), new AOEShapeCone(11.92f, 45.Degrees()), activeWhileCasting: false); -class HallOfSorrow(BossModule module) : Components.PersistentVoidzone(module, 9, m => m.Enemies(OID.Voidzone).Where(z => z.EventState != 7)); +class HallOfSorrow(BossModule module) : Components.PersistentVoidzoneAtCastTarget(module, 9, ActionID.MakeSpell(AID.HallOfSorrow), m => m.Enemies(OID.Voidzone).Where(z => z.EventState != 7), 1.3f); class Infatuation(BossModule module) : Components.SelfTargetedAOEs(module, ActionID.MakeSpell(AID.Infatuation), new AOEShapeCircle(7)); class Valfodr(BossModule module) : Components.BaitAwayChargeCast(module, ActionID.MakeSpell(AID.Valfodr), 3); -class ValfodrKB(BossModule module) : Components.Knockback(module) // note actual knockback is delayed by upto 1.2s in replay +class ValfodrKB(BossModule module) : Components.Knockback(module, ActionID.MakeSpell(AID.Valfodr), stopAtWall: true) // note actual knockback is delayed by upto 1.2s in replay { - private DateTime _activation; + private int _target; + private Source? _source; + private Infatuation? _infatuation; public override IEnumerable Sources(int slot, Actor actor) { - if (Module.FindComponent()?.CurrentBaits.Count > 0) - yield return new(Module.PrimaryActor.Position, 25, _activation, Module.FindComponent()!.CurrentBaits[0].Shape, Angle.FromDirection(Module.FindComponent()!.CurrentBaits[0].Target.Position - Module.PrimaryActor.Position), Kind: Kind.DirForward); + if (_target == slot && _source != null) + yield return _source.Value; } public override void OnCastStarted(Actor caster, ActorCastInfo spell) { - if ((AID)spell.Action.ID == AID.Valfodr) + if (spell.Action == WatchedAction) { - _activation = Module.CastFinishAt(spell); - StopAtWall = true; + _source = new(caster.Position, 25, Module.CastFinishAt(spell)); + _target = Raid.FindSlot(spell.TargetID); } } - 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.FindComponent()?.ActiveAOEs(slot, actor).Any(z => z.Shape.Check(pos, z.Origin, z.Rotation)) ?? false); + public override void OnCastFinished(Actor caster, ActorCastInfo spell) + { + if (spell.Action == WatchedAction) + { + _target = -1; + _source = null; + } + } + + private Func? GetFireballZone() + { + _infatuation ??= Module.FindComponent(); + if (_infatuation == null || _infatuation.Casters.Count == 0) + return null; + + return ShapeDistance.Union(_infatuation.Casters.Select(c => ShapeDistance.Circle(c.Position, 7)).ToList()); + } + + public override bool DestinationUnsafe(int slot, Actor actor, WPos pos) => GetFireballZone() is var z && z != null && z(pos) < 0; + + public override void AddAIHints(int slot, Actor actor, PartyRolesConfig.Assignment assignment, AIHints hints) + { + if (_target != slot || _source == null) + return; + + var dangerZone = GetFireballZone(); + if (dangerZone == null) + return; + + var kbSource = _source.Value.Origin; + + hints.AddForbiddenZone(p => + { + var dir = (p - kbSource).Normalized(); + var proj = Arena.ClampToBounds(p + dir * 25); + return dangerZone(proj); + }, _source.Value.Activation); + } } class D160TodesritterStates : StateMachineBuilder diff --git a/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/D180Dendainsonne.cs b/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/D180Dendainsonne.cs index 6bbcaae908..4e7815db67 100644 --- a/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/D180Dendainsonne.cs +++ b/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/D180Dendainsonne.cs @@ -24,10 +24,15 @@ class Maelstrom(BossModule module) : Components.PersistentVoidzone(module, 10, m class EclipticMeteor(BossModule module) : Components.RaidwideCast(module, ActionID.MakeSpell(AID.EclipticMeteor), "Kill him before he kills you! 80% max HP damage incoming!"); class Thunderbolt(BossModule module) : Components.SelfTargetedAOEs(module, ActionID.MakeSpell(AID.Thunderbolt), new AOEShapeCone(16.6f, 60.Degrees())); -class EncounterHints(BossModule module) : BossComponent(module) +class EncounterHints : BossComponent { private int NumCast { get; set; } + public EncounterHints(BossModule module) : base(module) + { + KeepOnPhaseChange = true; + } + public override void OnEventCast(Actor caster, ActorCastEvent spell) { if ((AID)spell.Action.ID is AID.CharybdisCast or AID.Trounce or AID.Thunderbolt) @@ -89,22 +94,61 @@ public override void AddGlobalHints(GlobalHints hints) } } +class ManualBurst(BossModule module) : BossComponent(module) +{ + private float HPRatio => Module.PrimaryActor.HPMP.CurHP / (float)Module.PrimaryActor.HPMP.MaxHP; + private bool Hold => HPRatio is > 0.15f and < 0.158f; + + public override void AddAIHints(int slot, Actor actor, PartyRolesConfig.Assignment assignment, AIHints hints) + { + if (Hold && hints.FindEnemy(Module.PrimaryActor) is { } e) + e.Priority = AIHints.Enemy.PriorityForbidden; + } + + public override void AddGlobalHints(GlobalHints hints) + { + if (HPRatio is > 0.15f and < 0.20f) + hints.Add("Autorotation will not attack if boss HP is between 15 and 16% - press buttons manually when ready to start burst"); + } +} + class D180DendainsonneStates : StateMachineBuilder { + private const uint BeheMaxHP = 373545; + private const uint Breakpoint1 = BeheMaxHP * 30 / 100; + private const uint Breakpoint2 = BeheMaxHP * 21 / 100; + private const uint Breakpoint3 = BeheMaxHP * 16 / 100; + private const uint Breakpoint4 = BeheMaxHP * 15 / 100; + public D180DendainsonneStates(BossModule module) : base(module) { - TrivialPhase() + SimplePhase(0, StateCommon("30%", 600f), "p1") + .ActivateOnEnter() + .DeactivateOnEnter() + .Raw.Update = () => Module.PrimaryActor.IsDestroyed || Module.PrimaryActor.HPMP.CurHP <= Breakpoint1; + SimplePhase(1, StateCommon("21%", 120f), "p2") + .Raw.Update = () => Module.PrimaryActor.IsDestroyed || Module.PrimaryActor.HPMP.CurHP <= Breakpoint2; + SimplePhase(2, StateCommon("16%", 120f), "p3") + .Raw.Update = () => Module.PrimaryActor.IsDestroyed || Module.PrimaryActor.HPMP.CurHP <= Breakpoint3; + SimplePhase(3, StateCommon("15%", 120f), "p4") + .Raw.Update = () => Module.PrimaryActor.IsDestroyed || Module.PrimaryActor.HPMP.CurHP <= Breakpoint4; + DeathPhase(4, StateCommon("Enrage", 60f)) + .ActivateOnEnter() + .DeactivateOnEnter(); + } + + private Action StateCommon(string name, float duration = 10000f) + { + return id => SimpleState(id, duration, name) .ActivateOnEnter() .ActivateOnEnter() .ActivateOnEnter() .ActivateOnEnter() - .ActivateOnEnter() - .ActivateOnEnter() - .DeactivateOnEnter(); + .ActivateOnEnter(); } } -[ModuleInfo(BossModuleInfo.Maturity.Contributed, Contributors = "LegendofIceman", GroupType = BossModuleInfo.GroupType.CFC, GroupID = 216, NameID = 5461)] +[ModuleInfo(BossModuleInfo.Maturity.Contributed, Contributors = "LegendofIceman", GroupType = BossModuleInfo.GroupType.CFC, GroupID = 216, NameID = 5461, PlanLevel = 60)] public class D180Dendainsonne : BossModule { public D180Dendainsonne(WorldState ws, Actor primary) : base(ws, primary, new(-300, -300), new ArenaBoundsCircle(25)) diff --git a/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/D190TheGodfather.cs b/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/D190TheGodfather.cs index 1fe0dfc39f..a3b95fdb45 100644 --- a/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/D190TheGodfather.cs +++ b/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/D190TheGodfather.cs @@ -23,7 +23,16 @@ public enum AID : uint //TODO: Make the boss's hitbox show up potentially/maybe add 2 circle indicators to show how close the stun bomb needs to be, add indicators to where the stun bomb will spawn next, to allow pre-positioning //spawn locations for stun bomb are as follows: 1:(-288.626, -300.256) 2:(-297.465, -297.525) 3:(-288.837, -305.537) 4:(-309.132, -303.739) 5:(-298.355, -293.630) 6:(-301.954, -314.289) 7:(-299.119, -297.563) class BossAdds(BossModule module) : Components.AddsMulti(module, [(uint)OID.LavaBomb, (uint)OID.RemedyBomb]); -class Flashthoom(BossModule module) : Components.SelfTargetedAOEs(module, ActionID.MakeSpell(AID.Flashthoom), new AOEShapeCircle(7.2f)); +class Flashthoom(BossModule module) : Components.SelfTargetedAOEs(module, ActionID.MakeSpell(AID.Flashthoom), new AOEShapeCircle(7.2f)) +{ + public override void AddAIHints(int slot, Actor actor, PartyRolesConfig.Assignment assignment, AIHints hints) + { + base.AddAIHints(slot, actor, assignment, hints); + + if (Module.Enemies(OID.LavaBomb).FirstOrDefault() is Actor g && Module.PrimaryActor.Position.InCircle(g.Position, 7.2f)) + hints.SetPriority(g, AIHints.Enemy.PriorityForbidden); + } +} class Sap(BossModule module) : Components.LocationTargetedAOEs(module, ActionID.MakeSpell(AID.Sap), 8); class ScaldingScoldingCleave(BossModule module) : Components.Cleave(module, ActionID.MakeSpell(AID.ScaldingScolding), new AOEShapeCone(11.75f, 45.Degrees()), activeWhileCasting: false); diff --git a/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/D20Spurge.cs b/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/D20Spurge.cs index 68a39675a3..37df483a7d 100644 --- a/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/D20Spurge.cs +++ b/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/D20Spurge.cs @@ -24,12 +24,18 @@ class BossAdds(BossModule module) : Components.Adds(module, (uint)OID.PalaceHorn public override void AddAIHints(int slot, Actor actor, PartyRolesConfig.Assignment assignment, AIHints hints) { foreach (var e in hints.PotentialTargets) - e.Priority = (OID)e.Actor.OID switch + { + switch ((OID)e.Actor.OID) { - OID.PalaceHornet => 2, - OID.Boss => 1, - _ => 0 - }; + case OID.Boss: + e.Priority = 1; + break; + case OID.PalaceHornet: + e.Priority = 2; + e.ForbidDOTs = true; + break; + } + } } } class AcidMist(BossModule module) : Components.SelfTargetedAOEs(module, ActionID.MakeSpell(AID.AcidMist), new AOEShapeCircle(9.6f)); diff --git a/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/D30Ningishzida.cs b/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/D30Ningishzida.cs index 2005bfd4de..96615570c5 100644 --- a/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/D30Ningishzida.cs +++ b/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/D30Ningishzida.cs @@ -17,12 +17,14 @@ public enum AID : uint } class Dissever(BossModule module) : Components.Cleave(module, ActionID.MakeSpell(AID.Dissever), new AOEShapeCone(10.8f, 45.Degrees()), activeWhileCasting: false); -class BallofFire(BossModule module) : Components.PersistentVoidzone(module, 6, m => m.Enemies(OID.FireVoidPuddle).Where(z => z.EventState != 7)); -class BallofIce(BossModule module) : Components.PersistentVoidzone(module, 6, m => m.Enemies(OID.IceVoidPuddle).Where(z => z.EventState != 7)); +class BallofFire(BossModule module) : Components.PersistentVoidzoneAtCastTarget(module, 6, ActionID.MakeSpell(AID.BallOfFire), m => m.Enemies(OID.FireVoidPuddle).Where(z => z.EventState != 7), 2.1f); +class BallofIce(BossModule module) : Components.PersistentVoidzoneAtCastTarget(module, 6, ActionID.MakeSpell(AID.BallOfIce), m => m.Enemies(OID.IceVoidPuddle).Where(z => z.EventState != 7), 2.1f); class FearItself(BossModule module) : Components.SelfTargetedAOEs(module, ActionID.MakeSpell(AID.FearItself), new AOEShapeDonut(5, 50)); class Hints(BossModule module) : BossComponent(module) { + // arena is like a weird octagon and the boss also doesn't cast from the center + private static readonly WPos FearCastSource = new(-300, -236); public int NumCasts { get; private set; } public override void OnEventCast(Actor caster, ActorCastEvent spell) @@ -43,6 +45,14 @@ public override void AddGlobalHints(GlobalHints hints) if (NumCasts >= 4) hints.Add($"Run to the middle of the arena! \n{Module.PrimaryActor.Name} is about to cast a donut AOE!"); } + + public override void AddAIHints(int slot, Actor actor, PartyRolesConfig.Assignment assignment, AIHints hints) + { + if (NumCasts < 4) + hints.AddForbiddenZone(new AOEShapeCircle(11), FearCastSource, activation: WorldState.FutureTime(10f)); + else + hints.AddForbiddenZone(new AOEShapeDonut(5, 50), FearCastSource, activation: WorldState.FutureTime(10f)); + } } class D30NingishzidaStates : StateMachineBuilder @@ -59,4 +69,4 @@ public D30NingishzidaStates(BossModule module) : base(module) } [ModuleInfo(BossModuleInfo.Maturity.Contributed, Contributors = "LegendofIceman", GroupType = BossModuleInfo.GroupType.CFC, GroupID = 176, NameID = 5012)] -public class D30Ningishzida(WorldState ws, Actor primary) : BossModule(ws, primary, new(-300, -235), new ArenaBoundsCircle(25)); +public class D30Ningishzida(WorldState ws, Actor primary) : BossModule(ws, primary, new(-300, -237), new ArenaBoundsCircle(24)); diff --git a/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/D40Ixtab.cs b/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/D40Ixtab.cs index 0e1bd48b1a..ea47398603 100644 --- a/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/D40Ixtab.cs +++ b/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/D40Ixtab.cs @@ -55,4 +55,4 @@ public D40IxtabStates(BossModule module) : base(module) } [ModuleInfo(BossModuleInfo.Maturity.Contributed, Contributors = "LegendofIceman", GroupType = BossModuleInfo.GroupType.CFC, GroupID = 177, NameID = 5025)] -public class D40Ixtab(WorldState ws, Actor primary) : BossModule(ws, primary, new(-300, -225), new ArenaBoundsCircle(25)); +public class D40Ixtab(WorldState ws, Actor primary) : BossModule(ws, primary, new(-300, -226), new ArenaBoundsCircle(24)); diff --git a/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/D50EddaBlackbosom.cs b/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/D50EddaBlackbosom.cs index c765163da0..fc7d7b48f3 100644 --- a/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/D50EddaBlackbosom.cs +++ b/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/D50EddaBlackbosom.cs @@ -52,4 +52,4 @@ public D50EddaBlackbosomStates(BossModule module) : base(module) } [ModuleInfo(BossModuleInfo.Maturity.Contributed, Contributors = "LegendofIceman", GroupType = BossModuleInfo.GroupType.CFC, GroupID = 178, NameID = 5038)] -public class D50EddaBlackbosom(WorldState ws, Actor primary) : BossModule(ws, primary, new(300, 375), new ArenaBoundsCircle(25)); +public class D50EddaBlackbosom(WorldState ws, Actor primary) : BossModule(ws, primary, new(300, 374), new ArenaBoundsCircle(24)); diff --git a/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/D60TheBlackRider.cs b/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/D60TheBlackRider.cs index 37a095ceaa..418b730943 100644 --- a/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/D60TheBlackRider.cs +++ b/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/D60TheBlackRider.cs @@ -13,97 +13,73 @@ public enum AID : uint AutoAttack = 7179, // Boss->player, no cast, range 8+R 90-degree cone Geirrothr = 7087, // Boss->self, no cast, range 6+R 90-degree cone, 5.1s after pull, 7.1s after Valfodr + 8.1s after every 2nd HallofSorrow HallOfSorrow = 7088, // Boss->location, no cast, range 9 circle - Infaturation = 7157, // VoidsentDiscarnate->self, 6.5s cast, range 6+R circle + Infatuation = 7157, // VoidsentDiscarnate->self, 6.5s cast, range 6+R circle Valfodr = 7089, // Boss->player, 4.0s cast, width 6 rect charge, knockback 25, dir forward } -class CleaveAuto(BossModule module) : Components.Cleave(module, ActionID.MakeSpell(AID.AutoAttack), new AOEShapeCone(11.92f, 45.Degrees())) +class CleaveAuto(BossModule module) : Components.Cleave(module, default, new AOEShapeCone(11.92f, 45.Degrees()), activeWhileCasting: false); +class Infatuation(BossModule module) : Components.SelfTargetedAOEs(module, ActionID.MakeSpell(AID.Infatuation), new AOEShapeCircle(7)); +class HallOfSorrow(BossModule module) : Components.PersistentVoidzoneAtCastTarget(module, 9, ActionID.MakeSpell(AID.HallOfSorrow), m => m.Enemies(OID.Voidzone).Where(z => z.EventState != 7), 1.3f); +class Valfodr(BossModule module) : Components.BaitAwayChargeCast(module, ActionID.MakeSpell(AID.Valfodr), 3); +class ValfodrKB(BossModule module) : Components.Knockback(module, ActionID.MakeSpell(AID.Valfodr), stopAtWall: true) // note actual knockback is delayed by upto 1.2s in replay { - private readonly Valfodr _charge = module.FindComponent()!; - - public override void AddHints(int slot, Actor actor, TextHints hints) - { - if (!_charge.ActiveBaits.Any()) - base.AddHints(slot, actor, hints); - } + private int _target; + private Source? _source; + private Infatuation? _infatuation; - public override void AddAIHints(int slot, Actor actor, PartyRolesConfig.Assignment assignment, AIHints hints) + public override IEnumerable Sources(int slot, Actor actor) { - if (!_charge.ActiveBaits.Any()) - base.AddAIHints(slot, actor, assignment, hints); + if (_target == slot && _source != null) + yield return _source.Value; } - public override void DrawArenaForeground(int pcSlot, Actor pc) + public override void OnCastStarted(Actor caster, ActorCastInfo spell) { - if (!_charge.ActiveBaits.Any()) - base.DrawArenaForeground(pcSlot, pc); + if (spell.Action == WatchedAction) + { + _source = new(caster.Position, 25, Module.CastFinishAt(spell)); + _target = Raid.FindSlot(spell.TargetID); + } } -} - -class Geirrothr(BossModule module) : Components.GenericAOEs(module) -{ - private DateTime _activation; - private static readonly AOEShapeCone cone = new(9.92f, 45.Degrees()); - private bool Pulled; - public override void Update() + public override void OnCastFinished(Actor caster, ActorCastInfo spell) { - if (!Pulled) + if (spell.Action == WatchedAction) { - _activation = WorldState.FutureTime(5.1f); - Pulled = true; + _target = -1; + _source = null; } } - public override IEnumerable ActiveAOEs(int slot, Actor actor) + private Func? GetFireballZone() { - if (_activation != default) - yield return new(cone, Module.PrimaryActor.Position, Module.PrimaryActor.Rotation, _activation); - } + _infatuation ??= Module.FindComponent(); + if (_infatuation == null || _infatuation.Casters.Count == 0) + return null; - public override void OnCastFinished(Actor caster, ActorCastInfo spell) - { - if ((AID)spell.Action.ID == AID.Valfodr) // boss can move after cast started, so we can't use aoe instance, since that would cause outdated position data to be used - _activation = WorldState.FutureTime(7.1f); + return ShapeDistance.Union(_infatuation.Casters.Select(c => ShapeDistance.Circle(c.Position, 7)).ToList()); } - public override void OnEventCast(Actor caster, ActorCastEvent spell) - { - if ((AID)spell.Action.ID == AID.Geirrothr) - _activation = default; - if ((AID)spell.Action.ID == AID.HallOfSorrow) - { - ++NumCasts; - if (NumCasts % 2 == 0) - _activation = WorldState.FutureTime(8.1f); - } - } -} + public override bool DestinationUnsafe(int slot, Actor actor, WPos pos) => GetFireballZone() is var z && z != null && z(pos) < 0; -class Infaturation(BossModule module) : Components.SelfTargetedAOEs(module, ActionID.MakeSpell(AID.Infaturation), new AOEShapeCircle(7)); -class HallOfSorrow(BossModule module) : Components.PersistentVoidzone(module, 9, m => m.Enemies(OID.Voidzone).Where(z => z.EventState != 7)); -class Valfodr(BossModule module) : Components.BaitAwayChargeCast(module, ActionID.MakeSpell(AID.Valfodr), 3); + public override void AddAIHints(int slot, Actor actor, PartyRolesConfig.Assignment assignment, AIHints hints) + { + if (_target != slot || _source == null) + return; -class ValfodrKB(BossModule module) : Components.Knockback(module) // note actual knockback is delayed by upto 1.2s in replay -{ - private DateTime _activation; + var dangerZone = GetFireballZone(); + if (dangerZone == null) + return; - public override IEnumerable Sources(int slot, Actor actor) - { - if (Module.FindComponent()?.CurrentBaits.Count > 0) - yield return new(Module.PrimaryActor.Position, 25, _activation, Module.FindComponent()!.CurrentBaits[0].Shape, Angle.FromDirection(Module.FindComponent()!.CurrentBaits[0].Target.Position - Module.PrimaryActor.Position), Kind: Kind.DirForward); - } + var kbSource = _source.Value.Origin; - public override void OnCastStarted(Actor caster, ActorCastInfo spell) - { - if ((AID)spell.Action.ID == AID.Valfodr) + hints.AddForbiddenZone(p => { - _activation = Module.CastFinishAt(spell); - StopAtWall = true; - } + var dir = (p - kbSource).Normalized(); + var proj = Arena.ClampToBounds(p + dir * 25); + return dangerZone(proj); + }, _source.Value.Activation); } - - 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.FindComponent()?.ActiveAOEs(slot, actor).Any(z => z.Shape.Check(pos, z.Origin, z.Rotation)) ?? false); } class D60TheBlackRiderStates : StateMachineBuilder @@ -111,8 +87,7 @@ class D60TheBlackRiderStates : StateMachineBuilder public D60TheBlackRiderStates(BossModule module) : base(module) { TrivialPhase() - .ActivateOnEnter() - .ActivateOnEnter() + .ActivateOnEnter() .ActivateOnEnter() .ActivateOnEnter() .ActivateOnEnter() diff --git a/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/D70Yaquaru.cs b/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/D70Yaquaru.cs index 5d45228203..4526ffad49 100644 --- a/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/D70Yaquaru.cs +++ b/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/D70Yaquaru.cs @@ -16,79 +16,53 @@ public enum AID : uint FangsEnd = 7092, // Boss->player, no cast, single-target } -class Douse(BossModule module) : Components.PersistentVoidzoneAtCastTarget(module, 8, ActionID.MakeSpell(AID.Douse), m => m.Enemies(OID.Voidzone).Where(z => z.EventState != 7), 0.8f); - -class DouseHaste(BossModule module) : BossComponent(module) +class DouseCast(BossModule module) : Components.SelfTargetedAOEs(module, ActionID.MakeSpell(AID.Douse), new AOEShapeCircle(8)); +class DousePuddle(BossModule module) : BossComponent(module) { - private bool BossInVoidzone; + private IEnumerable Puddles => Module.Enemies(OID.Voidzone).Where(z => z.EventState != 7); + private bool BossInPuddle => Puddles.Any(p => Module.PrimaryActor.Position.InCircle(p.Position, 8 + Module.PrimaryActor.HitboxRadius)); - public override void Update() + public override void DrawArenaBackground(int pcSlot, Actor pc) { - if (Module.FindComponent()?.ActiveAOEs(0, Module.PrimaryActor).Any(z => z.Shape.Check(Module.PrimaryActor.Position, z.Origin, z.Rotation)) ?? false) - BossInVoidzone = true; - else - BossInVoidzone = false; + foreach (var p in Puddles) + Arena.ZoneCircle(p.Position, 8, ArenaColor.AOE); + + // indicate on minimap how far boss needs to be pulled + if (BossInPuddle) + Arena.AddCircle(Module.PrimaryActor.Position, Module.PrimaryActor.HitboxRadius, ArenaColor.Danger); } public override void AddHints(int slot, Actor actor, TextHints hints) { - if (BossInVoidzone && Module.PrimaryActor.TargetID == actor.InstanceID) - hints.Add("Pull the boss out of the water puddle!"); - if (BossInVoidzone && Module.PrimaryActor.TargetID != actor.InstanceID && actor.Role == Role.Tank) - hints.Add("Consider provoking and pulling the boss out of the water puddle."); + if (Module.PrimaryActor.TargetID == actor.InstanceID && BossInPuddle) + hints.Add("Pull boss out of puddle!"); } -} - -class Drench(BossModule module) : Components.GenericAOEs(module) -{ - private DateTime _activation; - private static readonly AOEShapeCone cone = new(15.75f, 45.Degrees()); - private bool Pulled; - public override void Update() + public override void AddAIHints(int slot, Actor actor, PartyRolesConfig.Assignment assignment, AIHints hints) { - if (!Pulled) + if (Module.PrimaryActor.TargetID == actor.InstanceID && BossInPuddle) { - _activation = WorldState.FutureTime(5.1f); - Pulled = true; - } - } + var effPuddleSize = 8 + Module.PrimaryActor.HitboxRadius; + var tankDist = hints.FindEnemy(Module.PrimaryActor)?.TankDistance ?? 2; + // yaquaru tank distance seems to be around 2-2.5y, but from testing, 3y minimum is needed to move it out of the puddle, either because of rasterization shenanigans or netcode + var effTankDist = Module.PrimaryActor.HitboxRadius + tankDist + 1; - public override IEnumerable ActiveAOEs(int slot, Actor actor) - { - if (_activation != default) - yield return new(cone, Module.PrimaryActor.Position, Module.PrimaryActor.Rotation, _activation); - } - - public override void OnCastFinished(Actor caster, ActorCastInfo spell) - { - if ((AID)spell.Action.ID == AID.Electrogenesis) // boss can move after cast started, so we can't use aoe instance, since that would cause outdated position data to be used - { - ++NumCasts; - if (NumCasts % 2 == 0) - _activation = WorldState.FutureTime(7.3f); + var puddles = Puddles.Select(p => ShapeDistance.Circle(p.Position, effPuddleSize + effTankDist)).ToList(); + var closest = ShapeDistance.Union(puddles); + hints.GoalZones.Add(p => closest(p) > 0 ? 1000 : 0); } } - - public override void OnEventCast(Actor caster, ActorCastEvent spell) - { - if ((AID)spell.Action.ID == AID.Drench) - _activation = default; - if ((AID)spell.Action.ID == AID.FangsEnd) - _activation = WorldState.FutureTime(7.1f); - } } -class Electrogenesis(BossModule module) : Components.LocationTargetedAOEs(module, ActionID.MakeSpell(AID.Electrogenesis), 8, "Get out of the AOE"); +class Electrogenesis(BossModule module) : Components.LocationTargetedAOEs(module, ActionID.MakeSpell(AID.Electrogenesis), 8); class D70TaquaruStates : StateMachineBuilder { public D70TaquaruStates(BossModule module) : base(module) { TrivialPhase() - .ActivateOnEnter() - .ActivateOnEnter() - .ActivateOnEnter() + .ActivateOnEnter() + .ActivateOnEnter() .ActivateOnEnter(); } } diff --git a/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/D80Gudanna.cs b/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/D80Gudanna.cs index f7fe4e3301..055df558fb 100644 --- a/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/D80Gudanna.cs +++ b/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/D80Gudanna.cs @@ -21,20 +21,68 @@ public enum AID : uint class Charybdis(BossModule module) : Components.LocationTargetedAOEs(module, ActionID.MakeSpell(AID.Charybdis), 6); class Maelstrom(BossModule module) : Components.PersistentVoidzone(module, 10, m => m.Enemies(OID.Tornado)); class Trounce(BossModule module) : Components.SelfTargetedAOEs(module, ActionID.MakeSpell(AID.Trounce), new AOEShapeCone(51.6f, 30.Degrees())); -class EclipticMeteor(BossModule module) : Components.RaidwideCast(module, ActionID.MakeSpell(AID.EclipticMeteor), "Kill him before he kills you! 80% max HP damage incoming!"); +class EclipticMeteor(BossModule module) : Components.CastHint(module, ActionID.MakeSpell(AID.EclipticMeteor), "Kill him before he kills you! 80% max HP damage incoming!"); class Thunderbolt(BossModule module) : Components.SelfTargetedAOEs(module, ActionID.MakeSpell(AID.Thunderbolt), new AOEShapeCone(16.6f, 60.Degrees())); class EncounterHints(BossModule module) : BossComponent(module) { + private bool _disabled; + + enum BossAction + { + None, + Thunderbolt, + Charybdis, + TrounceWest, + TrounceEast + } + private int NumCast { get; set; } + private BossAction NextAction => NumCast switch + { + 0 or 2 or 5 => BossAction.Thunderbolt, + 1 or 4 or 6 => BossAction.Charybdis, + 3 => BossAction.TrounceEast, + 7 => BossAction.TrounceWest, + _ => default + }; + + public override void AddAIHints(int slot, Actor actor, PartyRolesConfig.Assignment assignment, AIHints hints) + { + if (_disabled) + return; + + switch (NextAction) + { + case BossAction.Charybdis: + // drop charybdis near arena edge (22y or more from center) + hints.GoalZones.Add(p => (p - Module.Center).LengthSq() >= 484 ? 0.5f : 0); + break; + case BossAction.Thunderbolt: + // stay near boss to make thunderbolt dodge easier + hints.GoalZones.Add(hints.GoalSingleTarget(Module.PrimaryActor.Position, 6, 0.5f)); + break; + case BossAction.TrounceEast: + // stay in eastward 1/4th of arena to prepare for dodging trounce + hints.GoalZones.Add(p => (p.X - Module.Center.X) >= 20 ? 0.5f : 0); + break; + case BossAction.TrounceWest: + // see above + hints.GoalZones.Add(p => (p.X - Module.Center.X) <= -20 ? 0.5f : 0); + break; + } + } public override void OnEventCast(Actor caster, ActorCastEvent spell) { - if ((AID)spell.Action.ID is AID.Charybdis or AID.Trounce or AID.Thunderbolt) - ++NumCast; + if (_disabled) + return; if ((AID)spell.Action.ID is AID.EclipticMeteor) - NumCast = 9; + _disabled = true; + + if ((AID)spell.Action.ID is AID.Charybdis or AID.Trounce or AID.Thunderbolt) + ++NumCast; if (NumCast == 8) { @@ -45,6 +93,9 @@ public override void OnEventCast(Actor caster, ActorCastEvent spell) public override void AddGlobalHints(GlobalHints hints) { + if (_disabled) + return; + switch (NumCast) { case 0: diff --git a/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/D90TheGodmother.cs b/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/D90TheGodmother.cs index 4c4178d389..1f536bdc21 100644 --- a/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/D90TheGodmother.cs +++ b/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/D90TheGodmother.cs @@ -22,7 +22,16 @@ public enum AID : uint class BossAdds(BossModule module) : Components.AddsMulti(module, [(uint)OID.GreyBomb, (uint)OID.GiddyBomb]); class Burst(BossModule module) : Components.RaidwideCast(module, ActionID.MakeSpell(AID.Burst), "Kill the Grey Bomb! or take 80% of your Max HP"); // future thing to do: maybe add a tether between bomb/boss to show it needs to show the aoe needs to explode on them. . . -class HypothermalCombustion(BossModule module) : Components.SelfTargetedAOEs(module, ActionID.MakeSpell(AID.HypothermalCombustion), new AOEShapeCircle(7.2f)); +class HypothermalCombustion(BossModule module) : Components.SelfTargetedAOEs(module, ActionID.MakeSpell(AID.HypothermalCombustion), new AOEShapeCircle(7.2f)) +{ + public override void AddAIHints(int slot, Actor actor, PartyRolesConfig.Assignment assignment, AIHints hints) + { + base.AddAIHints(slot, actor, assignment, hints); + + if (Module.Enemies(OID.GiddyBomb).FirstOrDefault() is Actor g && Module.PrimaryActor.Position.InCircle(g.Position, 7.2f)) + hints.SetPriority(g, AIHints.Enemy.PriorityForbidden); + } +} class MassiveBurst(BossModule module) : Components.RaidwideCast(module, ActionID.MakeSpell(AID.MassiveBurst), "Knock the Giddy bomb into the boss and let it explode on the boss. \n or else take 99% damage!"); class Sap(BossModule module) : Components.LocationTargetedAOEs(module, ActionID.MakeSpell(AID.Sap), 8); class ScaldingScolding(BossModule module) : Components.Cleave(module, ActionID.MakeSpell(AID.ScaldingScolding), new AOEShapeCone(11.75f, 45.Degrees())) diff --git a/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/PalaceFloorModule.cs b/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/PalaceFloorModule.cs new file mode 100644 index 0000000000..418912905c --- /dev/null +++ b/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/PalaceFloorModule.cs @@ -0,0 +1,126 @@ +using BossMod.Global.DeepDungeon; + +namespace BossMod.Heavensward.DeepDungeon.PalaceOfTheDead; + +enum AID : uint +{ + // gazes + StoneGazeSingle = 6351, // 3.5s cast, single target, inflicts petrification + StoneGazeCone = 6356, // 2.5s cast, range 8.2 90-degree cone, inflicts petrification + MysteriousLight = 6953, // 3s cast, 30 radius, inflicts damage + + // interruptible casts + ParalyzeIII = 6386, // 5s cast, 6 radius on target (player), applies paralysis + ParalyzeIII2 = 6388, // exactly the same as above but different action for some reason + Infatuation = 6397, // 3s cast, applies pox + VoidBlizzard = 7049, // 2.5s cast, applies slow to target, interruptible + Mucin = 7014, // 3s cast, applies stoneskin to self + BladeOfSuffering = 7029, // 3s cast, applies drain touch to self + HorroisonousBlast = 7058, // 4s cast, 20 radius, interruptible, can't be dodged due to the heavy + + // should be ignored + Chirp = 6365, // 2.5s cast, 21.6 radius, deals no damage, inflicts sleep +} + +enum SID : uint +{ + BlazeSpikes = 197, + IceSpikes = 198, +} + +public abstract class PalaceFloorModule(WorldState ws) : AutoClear(ws, 60) +{ + protected override void OnCastStarted(Actor actor) + { + switch ((AID)actor.CastInfo!.Action.ID) + { + case AID.MysteriousLight: + AddGaze(actor, 30); + break; + case AID.StoneGazeSingle: + AddGaze(actor, 100); + break; + case AID.StoneGazeCone: + AddGaze(actor, new AOEShapeCone(8.2f, 45.Degrees())); + HintDisabled.Add(actor); + break; + case AID.Chirp: + HintDisabled.Add(actor); + break; + case AID.Infatuation: + case AID.VoidBlizzard: + case AID.HorroisonousBlast: + case AID.Mucin: + case AID.BladeOfSuffering: + case AID.ParalyzeIII: + case AID.ParalyzeIII2: + Interrupts.Add(actor); + break; + } + } + + protected override void OnStatusGain(Actor actor, ActorStatus status) + { + switch ((SID)status.ID) + { + case SID.BlazeSpikes: + case SID.IceSpikes: + if (Palace.Floor > 60) + ForbiddenTargets.Add((actor, World.FutureTime(10))); + break; + } + } + + protected override void OnStatusLose(Actor actor, ActorStatus status) + { + switch ((SID)status.ID) + { + case SID.BlazeSpikes: + case SID.IceSpikes: + ForbiddenTargets.RemoveAll(t => t.Actor == actor); + break; + } + } +} + +[ZoneModuleInfo(BossModuleInfo.Maturity.WIP, 174)] +public class Palace10(WorldState ws) : PalaceFloorModule(ws); + +[ZoneModuleInfo(BossModuleInfo.Maturity.WIP, 175)] +public class Palace20(WorldState ws) : PalaceFloorModule(ws); +[ZoneModuleInfo(BossModuleInfo.Maturity.WIP, 176)] +public class Palace30(WorldState ws) : PalaceFloorModule(ws); +[ZoneModuleInfo(BossModuleInfo.Maturity.WIP, 177)] +public class Palace40(WorldState ws) : PalaceFloorModule(ws); +[ZoneModuleInfo(BossModuleInfo.Maturity.WIP, 178)] +public class Palace50(WorldState ws) : PalaceFloorModule(ws); +[ZoneModuleInfo(BossModuleInfo.Maturity.WIP, 204)] +public class Palace60(WorldState ws) : PalaceFloorModule(ws); +[ZoneModuleInfo(BossModuleInfo.Maturity.WIP, 205)] +public class Palace70(WorldState ws) : PalaceFloorModule(ws); +[ZoneModuleInfo(BossModuleInfo.Maturity.WIP, 206)] +public class Palace80(WorldState ws) : PalaceFloorModule(ws); +[ZoneModuleInfo(BossModuleInfo.Maturity.WIP, 207)] +public class Palace90(WorldState ws) : PalaceFloorModule(ws); +[ZoneModuleInfo(BossModuleInfo.Maturity.WIP, 208)] +public class Palace100(WorldState ws) : PalaceFloorModule(ws); +[ZoneModuleInfo(BossModuleInfo.Maturity.WIP, 209)] +public class Palace110(WorldState ws) : PalaceFloorModule(ws); +[ZoneModuleInfo(BossModuleInfo.Maturity.WIP, 210)] +public class Palace120(WorldState ws) : PalaceFloorModule(ws); +[ZoneModuleInfo(BossModuleInfo.Maturity.WIP, 211)] +public class Palace130(WorldState ws) : PalaceFloorModule(ws); +[ZoneModuleInfo(BossModuleInfo.Maturity.WIP, 212)] +public class Palace140(WorldState ws) : PalaceFloorModule(ws); +[ZoneModuleInfo(BossModuleInfo.Maturity.WIP, 213)] +public class Palace150(WorldState ws) : PalaceFloorModule(ws); +[ZoneModuleInfo(BossModuleInfo.Maturity.WIP, 214)] +public class Palace160(WorldState ws) : PalaceFloorModule(ws); +[ZoneModuleInfo(BossModuleInfo.Maturity.WIP, 215)] +public class Palace170(WorldState ws) : PalaceFloorModule(ws); +[ZoneModuleInfo(BossModuleInfo.Maturity.WIP, 216)] +public class Palace180(WorldState ws) : PalaceFloorModule(ws); +[ZoneModuleInfo(BossModuleInfo.Maturity.WIP, 217)] +public class Palace190(WorldState ws) : PalaceFloorModule(ws); +[ZoneModuleInfo(BossModuleInfo.Maturity.WIP, 218)] +public class Palace200(WorldState ws) : PalaceFloorModule(ws); diff --git a/BossMod/Modules/Stormblood/DeepDungeon/D10Mojabune.cs b/BossMod/Modules/Stormblood/DeepDungeon/D10Mojabune.cs index ffb079e92a..37a33da72a 100644 --- a/BossMod/Modules/Stormblood/DeepDungeon/D10Mojabune.cs +++ b/BossMod/Modules/Stormblood/DeepDungeon/D10Mojabune.cs @@ -15,7 +15,7 @@ public enum AID : uint } class ConcussiveOscillationAOE(BossModule module) : Components.LocationTargetedAOEs(module, ActionID.MakeSpell(AID.ConcussiveOscillation), 7, "Get out of the AOE!"); -class OvertowKB(BossModule module) : Components.KnockbackFromCastTarget(module, ActionID.MakeSpell(AID.Overtow), 23.7f, true); +class OvertowKB(BossModule module) : Components.KnockbackFromCastTarget(module, ActionID.MakeSpell(AID.Overtow), 23.7f, stopAtWall: true); class AmorphousApplauseAOE(BossModule module) : Components.SelfTargetedAOEs(module, ActionID.MakeSpell(AID.AmorphousApplause), new AOEShapeCone(27.4f, 90.Degrees())); class D10MojabuneStates : StateMachineBuilder diff --git a/BossMod/Modules/Stormblood/DeepDungeon/D30Hiruko.cs b/BossMod/Modules/Stormblood/DeepDungeon/D30Hiruko.cs index 3c879243f5..7c1c9ca937 100644 --- a/BossMod/Modules/Stormblood/DeepDungeon/D30Hiruko.cs +++ b/BossMod/Modules/Stormblood/DeepDungeon/D30Hiruko.cs @@ -1,6 +1,4 @@ -using Clipper2Lib; - -namespace BossMod.Stormblood.DeepDungeon.HeavenOnHigh.D30Hiruko; +namespace BossMod.Stormblood.DeepDungeon.HeavenOnHigh.D30Hiruko; public enum OID : uint { @@ -19,7 +17,25 @@ public enum AID : uint } class LightningStrike(BossModule module) : Components.SelfTargetedAOEs(module, ActionID.MakeSpell(AID.LightningStrike), new AOEShapeRect(55.25f, 3)); -class LightningBolt(BossModule module) : Components.SelfTargetedAOEs(module, ActionID.MakeSpell(AID.LightningBolt), new AOEShapeCircle(8)); // problem child. Need to create a safe area for players to stand in with the proxy AOE. +class Shiko(BossModule module) : Components.SelfTargetedAOEs(module, ActionID.MakeSpell(AID.Shiko), new AOEShapeCircle(10)); +class LightningBolt(BossModule module) : Components.SelfTargetedAOEs(module, ActionID.MakeSpell(AID.LightningBolt), new AOEShapeCircle(8)) +{ + public override void AddAIHints(int slot, Actor actor, PartyRolesConfig.Assignment assignment, AIHints hints) + { + if (Casters.Count == 20) + { + var closest = Casters + .Where(c => !c.Position.InCircle(Arena.Center, 10) && !c.Position.InCircle(Module.PrimaryActor.Position, 10)) + .MinBy(c => c.DistanceToHitbox(actor))!; + hints.AddForbiddenZone(new AOEShapeDonut(2, 100), closest.Position, default, Module.CastFinishAt(Module.PrimaryActor.CastInfo)); + } + else + { + base.AddAIHints(slot, actor, assignment, hints); + } + } +} +class Supercell(BossModule module) : Components.SelfTargetedAOEs(module, ActionID.MakeSpell(AID.Supercell), new AOEShapeRect(50, 50)); class D30HirukoStates : StateMachineBuilder { @@ -27,9 +43,11 @@ public D30HirukoStates(BossModule module) : base(module) { TrivialPhase() .ActivateOnEnter() + .ActivateOnEnter() + .ActivateOnEnter() .ActivateOnEnter(); } } -[ModuleInfo(BossModuleInfo.Maturity.WIP, Contributors = "LegendofIceman", GroupType = BossModuleInfo.GroupType.CFC, GroupID = 542, NameID = 7482)] -public class D30Hiruko(WorldState ws, Actor primary) : BossModule(ws, primary, new(-300, -300), new ArenaBoundsCircle(23.7f)); +[ModuleInfo(BossModuleInfo.Maturity.Contributed, Contributors = "LegendofIceman", GroupType = BossModuleInfo.GroupType.CFC, GroupID = 542, NameID = 7482)] +public class D30Hiruko(WorldState ws, Actor primary) : BossModule(ws, primary, new(-300, -300), new ArenaBoundsCircle(25f)); diff --git a/BossMod/Modules/Stormblood/DeepDungeon/D40Bhima.cs b/BossMod/Modules/Stormblood/DeepDungeon/D40Bhima.cs index b864875aec..9a08559732 100644 --- a/BossMod/Modules/Stormblood/DeepDungeon/D40Bhima.cs +++ b/BossMod/Modules/Stormblood/DeepDungeon/D40Bhima.cs @@ -1,6 +1,4 @@ -using System.Reflection; - -namespace BossMod.Stormblood.DeepDungeon.HeavenOnHigh.D40Bhima; +namespace BossMod.Stormblood.DeepDungeon.HeavenOnHigh.D40Bhima; public enum OID : uint { @@ -22,7 +20,7 @@ public enum AID : uint class AncientAeroII(BossModule module) : Components.LocationTargetedAOEs(module, ActionID.MakeSpell(AID.AncientAeroII), 6, "Get out of the aoe!"); class AncientAeroIII(BossModule module) : Components.KnockbackFromCastTarget(module, ActionID.MakeSpell(AID.AncientAeroIII), 23.5f, true, stopAtWall: true); class Tornado(BossModule module) : Components.SpreadFromCastTargets(module, ActionID.MakeSpell(AID.Tornado), 6); -class Windage(BossModule module) : Components.PersistentVoidzone(module, 8, m => m.Enemies(OID.Whirlwind).Where(z => z.EventState != 7)); +class Windage(BossModule module) : Components.PersistentVoidzone(module, 6, m => m.Enemies(OID.Whirlwind).Where(z => z.EventState != 7)); class D40BhimaStates : StateMachineBuilder { @@ -38,4 +36,4 @@ public D40BhimaStates(BossModule module) : base(module) } [ModuleInfo(BossModuleInfo.Maturity.Contributed, Contributors = "LegendofIceman", GroupType = BossModuleInfo.GroupType.CFC, GroupID = 543, NameID = 7483)] -public class D40Bhima(WorldState ws, Actor primary) : BossModule(ws, primary, new(-300, -300), new ArenaBoundsCircle(23.7f)); +public class D40Bhima(WorldState ws, Actor primary) : BossModule(ws, primary, new(-300, -300), new ArenaBoundsCircle(25)); diff --git a/BossMod/Modules/Stormblood/DeepDungeon/D50Gozu.cs b/BossMod/Modules/Stormblood/DeepDungeon/D50Gozu.cs index 06bea8df1c..008f3b7e55 100644 --- a/BossMod/Modules/Stormblood/DeepDungeon/D50Gozu.cs +++ b/BossMod/Modules/Stormblood/DeepDungeon/D50Gozu.cs @@ -18,7 +18,7 @@ public enum AID : uint } class EyeoftheFire(BossModule module) : Components.CastGaze(module, ActionID.MakeSpell(AID.EyeOfTheFire)); -class RustingClaw(BossModule module) : Components.SelfTargetedAOEs(module, ActionID.MakeSpell(AID.RustingClaw), new AOEShapeCone(11.45f, 45.Degrees())); +class RustingClaw(BossModule module) : Components.SelfTargetedAOEs(module, ActionID.MakeSpell(AID.RustingClaw), new AOEShapeCone(11.45f, 60.Degrees())); class TheSpin(BossModule module) : Components.SelfTargetedAOEs(module, ActionID.MakeSpell(AID.TheSpin), new AOEShapeCircle(20)); class VoidSpark(BossModule module) : Components.PersistentVoidzone(module, 8, m => m.Enemies(OID.Gloom).Where(z => z.EventState != 7)); class WordsofWoe(BossModule module) : Components.SelfTargetedAOEs(module, ActionID.MakeSpell(AID.WordsOfWoe), new AOEShapeRect(48.45f, 3)); @@ -37,4 +37,4 @@ public D50GozuStates(BossModule module) : base(module) } [ModuleInfo(BossModuleInfo.Maturity.Contributed, Contributors = "LegendofIceman", GroupType = BossModuleInfo.GroupType.CFC, GroupID = 544, NameID = 7485)] -public class D50Gozu(WorldState ws, Actor primary) : BossModule(ws, primary, new(-300, -300), new ArenaBoundsCircle(23.7f)); +public class D50Gozu(WorldState ws, Actor primary) : BossModule(ws, primary, new(-300, -300), new ArenaBoundsCircle(24.5f)); diff --git a/BossMod/Modules/Stormblood/DeepDungeon/D70Kenko.cs b/BossMod/Modules/Stormblood/DeepDungeon/D70Kenko.cs new file mode 100644 index 0000000000..a7a5c08b20 --- /dev/null +++ b/BossMod/Modules/Stormblood/DeepDungeon/D70Kenko.cs @@ -0,0 +1,84 @@ +namespace BossMod.Stormblood.DeepDungeon.D70Kenko; + +public enum OID : uint +{ + Boss = 0x23EB, // R6.000, x1 + Puddle = 0x1E9829 +} + +public enum AID : uint +{ + PredatorClaws = 12205, // Boss->self, 3.0s cast, range 9+R ?-degree cone + Slabber = 12203, // Boss->location, 3.0s cast, range 8 circle + Innerspace = 12207, // Boss->player, 3.0s cast, single-target + Ululation = 12208, // Boss->self, 3.0s cast, range 80+R circle + HoundOutOfHell = 12206, // Boss->player, 5.0s cast, width 14 rect charge + Devour = 12204, // Boss->location, no cast, range 4+R ?-degree cone +} + +public enum SID : uint +{ + Minimum = 438, // none->player, extra=0x32 + Stun = 149, // Boss->player, extra=0x0 +} + +public enum IconID : uint +{ + Prey = 1, // player->self +} + +class PredatorClaws(BossModule module) : Components.SelfTargetedAOEs(module, ActionID.MakeSpell(AID.PredatorClaws), new AOEShapeCone(15, 60.Degrees())); +class Slabber(BossModule module) : Components.LocationTargetedAOEs(module, ActionID.MakeSpell(AID.Slabber), 8); +class InnerspacePredict(BossModule module) : Components.GenericAOEs(module) +{ + private AOEInstance? Next; + + public override IEnumerable ActiveAOEs(int slot, Actor actor) => Utils.ZeroOrOne(Next); + + public override void OnEventCast(Actor caster, ActorCastEvent spell) + { + if ((AID)spell.Action.ID == AID.Innerspace) + Next = new(new AOEShapeCircle(3), WorldState.Actors.Find(spell.MainTargetID)!.Position, default, WorldState.FutureTime(1.6f)); + } + + public override void OnActorCreated(Actor actor) + { + if ((OID)actor.OID == OID.Puddle) + Next = null; + } +} +// TODO only apply invert logic to marked player, will probably need to rewrite component +class Innerspace(BossModule module) : Components.PersistentInvertibleVoidzone(module, 3, m => m.Enemies(OID.Puddle).Where(p => p.EventState != 7)) +{ + public override void OnCastStarted(Actor caster, ActorCastInfo spell) + { + if ((AID)spell.Action.ID == AID.HoundOutOfHell) + InvertResolveAt = Module.CastFinishAt(spell); + } + + public override void OnEventCast(Actor caster, ActorCastEvent spell) + { + if ((AID)spell.Action.ID == AID.Devour) + InvertResolveAt = default; + } +} +class Ululation(BossModule module) : Components.RaidwideCast(module, ActionID.MakeSpell(AID.Ululation)); +class HoundOutOfHell(BossModule module) : Components.BaitAwayChargeCast(module, ActionID.MakeSpell(AID.HoundOutOfHell), 7); + +class KenkoStates : StateMachineBuilder +{ + public KenkoStates(BossModule module) : base(module) + { + TrivialPhase() + .ActivateOnEnter() + .ActivateOnEnter() + .ActivateOnEnter() + .ActivateOnEnter() + .ActivateOnEnter() + .ActivateOnEnter(); + } +} + +[ModuleInfo(BossModuleInfo.Maturity.Contributed, GroupType = BossModuleInfo.GroupType.CFC, GroupID = 546, NameID = 7489)] +public class Kenko(WorldState ws, Actor primary) : BossModule(ws, primary, new(-300, -300), new ArenaBoundsCircle(24)); + diff --git a/BossMod/Modules/Stormblood/DeepDungeon/HoHFloorModule.cs b/BossMod/Modules/Stormblood/DeepDungeon/HoHFloorModule.cs new file mode 100644 index 0000000000..a3c3597999 --- /dev/null +++ b/BossMod/Modules/Stormblood/DeepDungeon/HoHFloorModule.cs @@ -0,0 +1,85 @@ +using BossMod.Global.DeepDungeon; + +namespace BossMod.Stormblood.DeepDungeon; + +public enum AID : uint +{ + StoneGaze = 6351, // 22AF->player, 3.5s cast, single-target + BlindingBurst = 12174, // 22C3->self, 3.0s cast, range 25 circle + NightmarishLight = 12322, // 22BC->self, 4.0s cast, range 30+R circle + Malice = 12313, // 2355->player, 3.0s cast, single-target + ShiftingLight = 12357, // 22DC->self, 3.0s cast, range 30+R circle + Cry = 12350, // 22D9->self, 5.0s cast, range 12+R circle + Eyeshine = 12261, // 230E->self, 3.5s cast, range 38+R circle + AtropineSpore = 12415, // 22FF->self, 4.0s cast, range ?-41 donut + FrondFatale = 12416, // 22FF->self, 3.0s cast, range 40 circle + TheDragonsVoice = 12432, // 2311->self, 4.5s cast, range 30 circle + Hex = 12442, // 2314->self, 4.0s cast, range 30 circle + HorrisonousBlast = 12258, // 230D->self, 4.0s cast, range 16+R circle + Northerlies = 12227, // 230C->self, 5.0s cast, range 40+R circle +} + +public abstract class HoHFloorModule(WorldState ws) : AutoClear(ws, 70) +{ + protected override void OnCastStarted(Actor actor) + { + switch ((AID)actor.CastInfo!.Action.ID) + { + case AID.Cry: + Stuns.Add(actor); + break; + case AID.Malice: + case AID.HorrisonousBlast: + case AID.Northerlies: + Interrupts.Add(actor); + break; + case AID.StoneGaze: + AddGaze(actor, 100); // actually a single target cast + break; + case AID.BlindingBurst: + AddGaze(actor, 25); + HintDisabled.Add(actor); + break; + case AID.NightmarishLight: + case AID.ShiftingLight: + AddGaze(actor, 35); + break; + case AID.Eyeshine: + case AID.FrondFatale: + AddGaze(actor, 40); + break; + case AID.Hex: + AddGaze(actor, 30); + break; + case AID.AtropineSpore: + Donuts.Add((actor, 9.5f, 41)); + HintDisabled.Add(actor); + break; + case AID.TheDragonsVoice: + Donuts.Add((actor, 8, 30)); + HintDisabled.Add(actor); + break; + } + } +} + +[ZoneModuleInfo(BossModuleInfo.Maturity.WIP, 540)] +public class HoH10(WorldState ws) : HoHFloorModule(ws); +[ZoneModuleInfo(BossModuleInfo.Maturity.WIP, 541)] +public class HoH20(WorldState ws) : HoHFloorModule(ws); +[ZoneModuleInfo(BossModuleInfo.Maturity.WIP, 542)] +public class HoH30(WorldState ws) : HoHFloorModule(ws); +[ZoneModuleInfo(BossModuleInfo.Maturity.WIP, 543)] +public class HoH40(WorldState ws) : HoHFloorModule(ws); +[ZoneModuleInfo(BossModuleInfo.Maturity.WIP, 544)] +public class HoH50(WorldState ws) : HoHFloorModule(ws); +[ZoneModuleInfo(BossModuleInfo.Maturity.WIP, 545)] +public class HoH60(WorldState ws) : HoHFloorModule(ws); +[ZoneModuleInfo(BossModuleInfo.Maturity.WIP, 546)] +public class HoH70(WorldState ws) : HoHFloorModule(ws); +[ZoneModuleInfo(BossModuleInfo.Maturity.WIP, 547)] +public class HoH80(WorldState ws) : HoHFloorModule(ws); +[ZoneModuleInfo(BossModuleInfo.Maturity.WIP, 548)] +public class HoH90(WorldState ws) : HoHFloorModule(ws); +[ZoneModuleInfo(BossModuleInfo.Maturity.WIP, 549)] +public class HoH100(WorldState ws) : HoHFloorModule(ws); diff --git a/BossMod/Pathfinding/NavigationDecision.cs b/BossMod/Pathfinding/NavigationDecision.cs index 2dd1e2dd96..2598c5867c 100644 --- a/BossMod/Pathfinding/NavigationDecision.cs +++ b/BossMod/Pathfinding/NavigationDecision.cs @@ -41,7 +41,7 @@ public static NavigationDecision Build(Context ctx, WorldState ws, AIHints hints return new() { Destination = destination, NextTurn = turn, LeewaySeconds = bestNode.PathLeeway, TimeToGoal = bestNode.GScore }; } - public static void RasterizeForbiddenZones(Map map, List<(Func shapeDistance, DateTime activation)> zones, DateTime current, ref float[] scratch) + public static void RasterizeForbiddenZones(Map map, List<(Func shapeDistance, DateTime activation, ulong source)> zones, DateTime current, ref float[] scratch) { // very slight difference in activation times cause issues for pathfinding - cluster them together var zonesFixed = new (Func shapeDistance, float g)[zones.Count]; diff --git a/BossMod/Replay/ReplayManagementConfig.cs b/BossMod/Replay/ReplayManagementConfig.cs index 6be65bc2e0..5f85c45033 100644 --- a/BossMod/Replay/ReplayManagementConfig.cs +++ b/BossMod/Replay/ReplayManagementConfig.cs @@ -1,5 +1,7 @@ namespace BossMod; +public record struct ReplayMemory(string Path, bool IsOpen, DateTime PlaybackPosition); + [ConfigDisplay(Name = "Replays", Order = 0)] public class ReplayManagementConfig : ConfigNode { @@ -27,4 +29,12 @@ public class ReplayManagementConfig : ConfigNode [PropertyDisplay("Format for recorded logs")] public ReplayLogFormat WorldLogFormat = ReplayLogFormat.BinaryCompressed; + + [PropertyDisplay("Open previously open replays on plugin reload")] + public bool RememberReplays; + + [PropertyDisplay("Remember playback position for previously opened replays")] + public bool RememberReplayTimes; + + public List ReplayHistory = []; } diff --git a/BossMod/Replay/ReplayManager.cs b/BossMod/Replay/ReplayManager.cs index 47a4cfcbde..206f9bdaca 100644 --- a/BossMod/Replay/ReplayManager.cs +++ b/BossMod/Replay/ReplayManager.cs @@ -8,7 +8,7 @@ namespace BossMod; -public sealed class ReplayManager(RotationDatabase rotationDB, string fileDialogStartPath) : IDisposable +public sealed class ReplayManager : IDisposable { private sealed class ReplayEntry : IDisposable { @@ -20,11 +20,13 @@ private sealed class ReplayEntry : IDisposable public bool AutoShowWindow; public bool Selected; public bool Disposed; + public DateTime? SavedPosition; - public ReplayEntry(string path, bool autoShow) + public ReplayEntry(string path, bool autoShow, DateTime? savedPosition = null) { Path = path; AutoShowWindow = autoShow; + SavedPosition = savedPosition; Replay = Task.Run(() => ReplayParserLog.Parse(path, ref Progress, Cancel.Token)); } @@ -43,6 +45,8 @@ public void Show(RotationDatabase rotationDB) Window ??= new(Replay.Result, rotationDB); Window.IsOpen = true; Window.BringToFront(); + if (SavedPosition != null) + Window.CurrentTime = SavedPosition.Value; } } @@ -69,12 +73,22 @@ public void Show() private readonly List _replayEntries = []; private readonly List _analysisEntries = []; + private readonly RotationDatabase rotationDB; private int _nextAnalysisId; private string _path = ""; private FileDialog? _fileDialog; + private string fileDialogStartPath; + + public ReplayManager(RotationDatabase rotationDB, string fileDialogStartPath) + { + this.rotationDB = rotationDB; + this.fileDialogStartPath = fileDialogStartPath; + RestoreHistory(); + } public void Dispose() { + SaveHistory(); foreach (var e in _analysisEntries) e.Dispose(); foreach (var e in _replayEntries) @@ -174,6 +188,7 @@ private void DrawEntries() e.Dispose(); foreach (var a in _analysisEntries.Where(a => !a.Disposed && a.Replays.Contains(e))) a.Dispose(); + SaveHistory(); } ImGui.TableNextColumn(); @@ -207,6 +222,7 @@ private void DrawEntriesOperations() e.Dispose(); foreach (var e in _analysisEntries.Where(e => e.Replays.Any(r => r.Selected))) e.Dispose(); + SaveHistory(); } } ImGui.SameLine(); @@ -216,6 +232,7 @@ private void DrawEntriesOperations() e.Dispose(); foreach (var e in _analysisEntries) e.Dispose(); + SaveHistory(); } } @@ -234,6 +251,7 @@ private void DrawNewEntry() if (ImGui.Button("Open")) { _replayEntries.Add(new(_path, true)); + SaveHistory(); } } ImGui.SameLine(); @@ -252,6 +270,7 @@ private void DrawNewEntry() if (ImGui.Button("Load all")) { LoadAll(_path); + SaveHistory(); } } } @@ -297,4 +316,24 @@ private void ConvertLog(Replay r, ReplayLogFormat format) using var relogger = new ReplayRecorder(player.WorldState, format, false, new FileInfo(r.Path).Directory!, format.ToString()); player.AdvanceTo(DateTime.MaxValue, () => { }); } + + private void SaveHistory() + { + var cfg = Service.Config.Get(); + if (!cfg.RememberReplays) + return; + + cfg.ReplayHistory = _replayEntries.Select(r => new ReplayMemory(r.Path, r.Window?.IsOpen ?? true, r.Window?.CurrentTime ?? default)).ToList(); + cfg.Modified.Fire(); + } + + private void RestoreHistory() + { + var cfg = Service.Config.Get(); + if (!cfg.RememberReplays) + return; + + foreach (var memory in cfg.ReplayHistory) + _replayEntries.Add(new(memory.Path, memory.IsOpen, cfg.RememberReplayTimes ? memory.PlaybackPosition : null)); + } } diff --git a/BossMod/Replay/Visualization/ReplayDetailsWindow.cs b/BossMod/Replay/Visualization/ReplayDetailsWindow.cs index 9eff232b74..cb7b53cc7c 100644 --- a/BossMod/Replay/Visualization/ReplayDetailsWindow.cs +++ b/BossMod/Replay/Visualization/ReplayDetailsWindow.cs @@ -2,7 +2,6 @@ using Dalamud.Interface.Utility.Raii; using ImGuiNET; using System.IO; -using System.Security.AccessControl; namespace BossMod.ReplayVisualization; @@ -80,6 +79,8 @@ public override void Draw() DrawTimelineRow(); ImGui.TextUnformatted($"Num loaded modules: {_mgr.LoadedModules.Count}, num active modules: {_mgr.LoadedModules.Count(m => m.StateMachine.ActiveState != null)}, active module: {_mgr.ActiveModule?.GetType()}, zone module: {_zmm.ActiveModule?.GetType()}"); _zmm.ActiveModule?.DrawGlobalHints(); + if (_zmm.ActiveModule?.WantToBeDrawn() ?? false) + _zmm.ActiveModule?.DrawExtra(); if (!_azimuthOverride) _azimuth = _mgr.WorldState.Client.CameraAzimuth.Deg; ImGui.DragFloat("Camera azimuth", ref _azimuth, 1, -180, 180); diff --git a/BossMod/packages.lock.json b/BossMod/packages.lock.json index a311c3622b..7f88d64d82 100644 --- a/BossMod/packages.lock.json +++ b/BossMod/packages.lock.json @@ -1,944 +1,1108 @@ -{ - "version": 1, - "dependencies": { - "net8.0-windows7.0": { - "DalamudPackager": { - "type": "Direct", - "requested": "[11.0.0, )", - "resolved": "11.0.0", - "contentHash": "bjT7XUlhIJSmsE/O76b7weUX+evvGQctbQB8aKXt94o+oPWxHpCepxAGMs7Thow3AzCyqWs7cOpp9/2wcgRRQA==" - }, - "SharpDX.Mathematics": { - "type": "Direct", - "requested": "[4.2.0, )", - "resolved": "4.2.0", - "contentHash": "R2pcKLgdsP9p5WyTjHmGOZ0ka0zASAZYc6P4L6rSvjYhf6klGYbent7MiVwbkwkt9dD44p5brjy5IwAnVONWGw==", - "dependencies": { - "NETStandard.Library": "1.6.1", - "SharpDX": "4.2.0" - } - }, - "JetBrains.Annotations": { - "type": "Transitive", - "resolved": "2021.2.0", - "contentHash": "kKSyoVfndMriKHLfYGmr0uzQuI4jcc3TKGyww7buJFCYeHb/X0kodYBPL7n9454q7v6ASiRmDgpPGaDGerg/Hg==" - }, - "Microsoft.NETCore.Platforms": { - "type": "Transitive", - "resolved": "1.1.0", - "contentHash": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==" - }, - "Microsoft.NETCore.Targets": { - "type": "Transitive", - "resolved": "1.1.0", - "contentHash": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==" - }, - "Microsoft.Win32.Primitives": { - "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "NETStandard.Library": { - "type": "Transitive", - "resolved": "1.6.1", - "contentHash": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.Win32.Primitives": "4.3.0", - "System.AppContext": "4.3.0", - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Console": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Calendars": "4.3.0", - "System.IO": "4.3.0", - "System.IO.Compression": "4.3.0", - "System.IO.Compression.ZipFile": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.Net.Http": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Net.Sockets": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Security.Cryptography.X509Certificates": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Timer": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0", - "System.Xml.XDocument": "4.3.0" - } - }, - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": { - "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==" - }, - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": { - "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==" - }, - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": { - "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==" - }, - "runtime.native.System": { - "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "runtime.native.System.IO.Compression": { - "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "runtime.native.System.Net.Http": { - "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "runtime.native.System.Security.Cryptography.Apple": { - "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", - "dependencies": { - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" - } - }, - "runtime.native.System.Security.Cryptography.OpenSsl": { - "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", - "dependencies": { - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": { - "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==" - }, - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": { - "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==" - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": { - "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==" - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": { - "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==" - }, - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": { - "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==" - }, - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": { - "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==" - }, - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": { - "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==" - }, - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": { - "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==" - }, - "SharpDX": { - "type": "Transitive", - "resolved": "4.2.0", - "contentHash": "3pv0LFMvfK/dv1qISJnn8xBeeT6R/FRvr0EV4KI2DGsL84Qlv6P7isWqxGyU0LCwlSVCJN3jgHJ4Bl0KI2PJww==", - "dependencies": { - "NETStandard.Library": "1.6.1" - } - }, - "System.AppContext": { - "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==", - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Buffers": { - "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==", - "dependencies": { - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Collections": { - "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Collections.Concurrent": { - "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Console": { - "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0" - } - }, - "System.Diagnostics.Debug": { - "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Diagnostics.DiagnosticSource": { - "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "tD6kosZnTAGdrEa0tZSuFyunMbt/5KYDnHdndJYGqZoNy00XVXyACd5d6KnE1YgYv3ne2CjtAfNXo/fwEhnKUA==", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Diagnostics.Tools": { - "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Diagnostics.Tracing": { - "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Globalization": { - "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Globalization.Calendars": { - "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Globalization.Extensions": { - "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0" - } - }, - "System.IO": { - "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.IO.Compression": { - "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Buffers": "4.3.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.IO.Compression": "4.3.0" - } - }, - "System.IO.Compression.ZipFile": { - "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==", - "dependencies": { - "System.Buffers": "4.3.0", - "System.IO": "4.3.0", - "System.IO.Compression": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0" - } - }, - "System.IO.FileSystem": { - "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.IO.FileSystem.Primitives": { - "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Linq": { - "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - } - }, - "System.Linq.Expressions": { - "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Linq": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Emit.Lightweight": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Net.Http": { - "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.DiagnosticSource": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Extensions": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.OpenSsl": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Security.Cryptography.X509Certificates": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.Net.Http": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "System.Net.Primitives": { - "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - } - }, - "System.Net.Sockets": { - "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.ObjectModel": { - "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Reflection": { - "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Emit": { - "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", - "dependencies": { - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Emit.ILGeneration": { - "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Emit.Lightweight": { - "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Extensions": { - "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Primitives": { - "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.TypeExtensions": { - "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", - "dependencies": { - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Resources.ResourceManager": { - "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime": { - "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "System.Runtime.Extensions": { - "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime.Handles": { - "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime.InteropServices": { - "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - } - }, - "System.Runtime.InteropServices.RuntimeInformation": { - "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0", - "runtime.native.System": "4.3.0" - } - }, - "System.Runtime.Numerics": { - "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", - "dependencies": { - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - } - }, - "System.Security.Cryptography.Algorithms": { - "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.Apple": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "System.Security.Cryptography.Cng": { - "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0" - } - }, - "System.Security.Cryptography.Csp": { - "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Security.Cryptography.Encoding": { - "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Linq": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "System.Security.Cryptography.OpenSsl": { - "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", - "dependencies": { - "System.Collections": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "System.Security.Cryptography.Primitives": { - "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", - "dependencies": { - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Security.Cryptography.X509Certificates": { - "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Calendars": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Cng": "4.3.0", - "System.Security.Cryptography.Csp": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.OpenSsl": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.Net.Http": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "System.Text.Encoding": { - "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Text.Encoding.Extensions": { - "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0" - } - }, - "System.Text.RegularExpressions": { - "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Threading": { - "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", - "dependencies": { - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Threading.Tasks": { - "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Threading.Tasks.Extensions": { - "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==", - "dependencies": { - "System.Collections": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Threading.Timer": { - "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Xml.ReaderWriter": { - "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Tasks.Extensions": "4.3.0" - } - }, - "System.Xml.XDocument": { - "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - } - }, - "ffxivclientstructs": { - "type": "Project", - "dependencies": { - "InteropGenerator.Runtime": "[1.0.0, )", - "JetBrains.Annotations": "[2021.2.0, )" - } - }, - "interopgenerator.runtime": { - "type": "Project" - } - } - } +{ + "version": 1, + "dependencies": { + "net8.0-windows7.0": { + "DalamudPackager": { + "type": "Direct", + "requested": "[11.0.0, )", + "resolved": "11.0.0", + "contentHash": "bjT7XUlhIJSmsE/O76b7weUX+evvGQctbQB8aKXt94o+oPWxHpCepxAGMs7Thow3AzCyqWs7cOpp9/2wcgRRQA==" + }, + "SharpDX.Mathematics": { + "type": "Direct", + "requested": "[4.2.0, )", + "resolved": "4.2.0", + "contentHash": "R2pcKLgdsP9p5WyTjHmGOZ0ka0zASAZYc6P4L6rSvjYhf6klGYbent7MiVwbkwkt9dD44p5brjy5IwAnVONWGw==", + "dependencies": { + "NETStandard.Library": "1.6.1", + "SharpDX": "4.2.0" + } + }, + "System.Data.SQLite": { + "type": "Direct", + "requested": "[1.0.119, )", + "resolved": "1.0.119", + "contentHash": "JSOJpnBf9goMnxGTJFGCmm6AffxgtpuXNXV5YvWO8UNC2zwd12qkUe5lAbnY+2ohIkIukgIjbvR1RA/sWILv3w==", + "dependencies": { + "System.Data.SQLite.Core": "[1.0.119]", + "System.Data.SQLite.EF6": "[1.0.119]" + } + }, + "EntityFramework": { + "type": "Transitive", + "resolved": "6.4.4", + "contentHash": "yj1+/4tci7Panu3jKDHYizxwVm0Jvm7b7m057b5h4u8NUHGCR8WIWirBTw+8EptRffwftIWPBeIRGNKD1ewEMQ==", + "dependencies": { + "Microsoft.CSharp": "4.7.0", + "System.CodeDom": "4.7.0", + "System.ComponentModel.Annotations": "4.7.0", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Data.SqlClient": "4.8.1" + } + }, + "JetBrains.Annotations": { + "type": "Transitive", + "resolved": "2021.2.0", + "contentHash": "kKSyoVfndMriKHLfYGmr0uzQuI4jcc3TKGyww7buJFCYeHb/X0kodYBPL7n9454q7v6ASiRmDgpPGaDGerg/Hg==" + }, + "Microsoft.CSharp": { + "type": "Transitive", + "resolved": "4.7.0", + "contentHash": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==" + }, + "Microsoft.NETCore.Platforms": { + "type": "Transitive", + "resolved": "3.1.0", + "contentHash": "z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==" + }, + "Microsoft.NETCore.Targets": { + "type": "Transitive", + "resolved": "1.1.0", + "contentHash": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==" + }, + "Microsoft.Win32.Primitives": { + "type": "Transitive", + "resolved": "4.3.0", + "contentHash": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "Microsoft.Win32.Registry": { + "type": "Transitive", + "resolved": "4.7.0", + "contentHash": "KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "Microsoft.Win32.SystemEvents": { + "type": "Transitive", + "resolved": "4.7.0", + "contentHash": "mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0" + } + }, + "NETStandard.Library": { + "type": "Transitive", + "resolved": "1.6.1", + "contentHash": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.AppContext": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Console": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.Compression.ZipFile": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0" + } + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": { + "type": "Transitive", + "resolved": "4.3.0", + "contentHash": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==" + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": { + "type": "Transitive", + "resolved": "4.3.0", + "contentHash": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==" + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": { + "type": "Transitive", + "resolved": "4.3.0", + "contentHash": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==" + }, + "runtime.native.System": { + "type": "Transitive", + "resolved": "4.3.0", + "contentHash": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Data.SqlClient.sni": { + "type": "Transitive", + "resolved": "4.7.0", + "contentHash": "9kyFSIdN3T0qjDQ2R0HRXYIhS3l5psBzQi6qqhdLz+SzFyEy4sVxNOke+yyYv8Cu8rPER12c3RDjLT8wF3WBYQ==", + "dependencies": { + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0" + } + }, + "runtime.native.System.IO.Compression": { + "type": "Transitive", + "resolved": "4.3.0", + "contentHash": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Net.Http": { + "type": "Transitive", + "resolved": "4.3.0", + "contentHash": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Security.Cryptography.Apple": { + "type": "Transitive", + "resolved": "4.3.0", + "contentHash": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl": { + "type": "Transitive", + "resolved": "4.3.0", + "contentHash": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": { + "type": "Transitive", + "resolved": "4.3.0", + "contentHash": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==" + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": { + "type": "Transitive", + "resolved": "4.3.0", + "contentHash": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": { + "type": "Transitive", + "resolved": "4.3.0", + "contentHash": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": { + "type": "Transitive", + "resolved": "4.3.0", + "contentHash": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==" + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": { + "type": "Transitive", + "resolved": "4.3.0", + "contentHash": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==" + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": { + "type": "Transitive", + "resolved": "4.3.0", + "contentHash": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==" + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": { + "type": "Transitive", + "resolved": "4.3.0", + "contentHash": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==" + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": { + "type": "Transitive", + "resolved": "4.3.0", + "contentHash": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==" + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": { + "type": "Transitive", + "resolved": "4.4.0", + "contentHash": "LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==" + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": { + "type": "Transitive", + "resolved": "4.4.0", + "contentHash": "38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==" + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": { + "type": "Transitive", + "resolved": "4.4.0", + "contentHash": "YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==" + }, + "SharpDX": { + "type": "Transitive", + "resolved": "4.2.0", + "contentHash": "3pv0LFMvfK/dv1qISJnn8xBeeT6R/FRvr0EV4KI2DGsL84Qlv6P7isWqxGyU0LCwlSVCJN3jgHJ4Bl0KI2PJww==", + "dependencies": { + "NETStandard.Library": "1.6.1" + } + }, + "Stub.System.Data.SQLite.Core.NetStandard": { + "type": "Transitive", + "resolved": "1.0.119", + "contentHash": "dI7ngiCNgdm+n00nQvFTa+LbHvE9MIQXwMSLRzJI/KAJ7G1WmCachsvfE1CD6xvb3OXJvYYEfv3+S/LHyhN0Rg==" + }, + "System.AppContext": { + "type": "Transitive", + "resolved": "4.3.0", + "contentHash": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==", + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Buffers": { + "type": "Transitive", + "resolved": "4.3.0", + "contentHash": "ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.CodeDom": { + "type": "Transitive", + "resolved": "4.7.0", + "contentHash": "Hs9pw/kmvH3lXaZ1LFKj3pLQsiGfj2xo3sxSzwiLlRL6UcMZUTeCfoJ9Udalvn3yq5dLlPEZzYegrTQ1/LhPOQ==" + }, + "System.Collections": { + "type": "Transitive", + "resolved": "4.3.0", + "contentHash": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Collections.Concurrent": { + "type": "Transitive", + "resolved": "4.3.0", + "contentHash": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.ComponentModel.Annotations": { + "type": "Transitive", + "resolved": "4.7.0", + "contentHash": "0YFqjhp/mYkDGpU0Ye1GjE53HMp9UVfGN7seGpAMttAC0C40v5gw598jCgpbBLMmCo0E5YRLBv5Z2doypO49ZQ==" + }, + "System.Configuration.ConfigurationManager": { + "type": "Transitive", + "resolved": "4.7.0", + "contentHash": "/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==", + "dependencies": { + "System.Security.Cryptography.ProtectedData": "4.7.0", + "System.Security.Permissions": "4.7.0" + } + }, + "System.Console": { + "type": "Transitive", + "resolved": "4.3.0", + "contentHash": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Data.SqlClient": { + "type": "Transitive", + "resolved": "4.8.1", + "contentHash": "HKLykcv6eZLbLnSMnlQ6Os4+UAmFE+AgYm92CTvJYeTOBtOYusX3qu8OoGhFrnKZax91UcLcDo5vPrqvJUTSNQ==", + "dependencies": { + "Microsoft.Win32.Registry": "4.7.0", + "System.Security.Principal.Windows": "4.7.0", + "runtime.native.System.Data.SqlClient.sni": "4.7.0" + } + }, + "System.Data.SQLite.Core": { + "type": "Transitive", + "resolved": "1.0.119", + "contentHash": "bhQB8HVtRA+OOYw8UTD1F1kU+nGJ0/OZvH1JmlVUI4bGvgVEWeX1NcHjA765NvUoRVuCPlt8PrEpZ1thSsk1jg==", + "dependencies": { + "Stub.System.Data.SQLite.Core.NetStandard": "[1.0.119]" + } + }, + "System.Data.SQLite.EF6": { + "type": "Transitive", + "resolved": "1.0.119", + "contentHash": "BwwgCSeA80gsxdXtU7IQEBrN9kQXWQrD11hNYOJZbXBBI1C4r7hA4QhBAalO1nzijXikthGRUADIEMI3nlucLA==", + "dependencies": { + "EntityFramework": "6.4.4" + } + }, + "System.Diagnostics.Debug": { + "type": "Transitive", + "resolved": "4.3.0", + "contentHash": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.DiagnosticSource": { + "type": "Transitive", + "resolved": "4.3.0", + "contentHash": "tD6kosZnTAGdrEa0tZSuFyunMbt/5KYDnHdndJYGqZoNy00XVXyACd5d6KnE1YgYv3ne2CjtAfNXo/fwEhnKUA==", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Diagnostics.Tools": { + "type": "Transitive", + "resolved": "4.3.0", + "contentHash": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.Tracing": { + "type": "Transitive", + "resolved": "4.3.0", + "contentHash": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Drawing.Common": { + "type": "Transitive", + "resolved": "4.7.0", + "contentHash": "v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.Win32.SystemEvents": "4.7.0" + } + }, + "System.Globalization": { + "type": "Transitive", + "resolved": "4.3.0", + "contentHash": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Calendars": { + "type": "Transitive", + "resolved": "4.3.0", + "contentHash": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Extensions": { + "type": "Transitive", + "resolved": "4.3.0", + "contentHash": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + } + }, + "System.IO": { + "type": "Transitive", + "resolved": "4.3.0", + "contentHash": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.Compression": { + "type": "Transitive", + "resolved": "4.3.0", + "contentHash": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Buffers": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.IO.Compression": "4.3.0" + } + }, + "System.IO.Compression.ZipFile": { + "type": "Transitive", + "resolved": "4.3.0", + "contentHash": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==", + "dependencies": { + "System.Buffers": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.IO.FileSystem": { + "type": "Transitive", + "resolved": "4.3.0", + "contentHash": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.FileSystem.Primitives": { + "type": "Transitive", + "resolved": "4.3.0", + "contentHash": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Linq": { + "type": "Transitive", + "resolved": "4.3.0", + "contentHash": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Linq.Expressions": { + "type": "Transitive", + "resolved": "4.3.0", + "contentHash": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Net.Http": { + "type": "Transitive", + "resolved": "4.3.0", + "contentHash": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Net.Primitives": { + "type": "Transitive", + "resolved": "4.3.0", + "contentHash": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Net.Sockets": { + "type": "Transitive", + "resolved": "4.3.0", + "contentHash": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.ObjectModel": { + "type": "Transitive", + "resolved": "4.3.0", + "contentHash": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Reflection": { + "type": "Transitive", + "resolved": "4.3.0", + "contentHash": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit": { + "type": "Transitive", + "resolved": "4.3.0", + "contentHash": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.ILGeneration": { + "type": "Transitive", + "resolved": "4.3.0", + "contentHash": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.Lightweight": { + "type": "Transitive", + "resolved": "4.3.0", + "contentHash": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Extensions": { + "type": "Transitive", + "resolved": "4.3.0", + "contentHash": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Primitives": { + "type": "Transitive", + "resolved": "4.3.0", + "contentHash": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.TypeExtensions": { + "type": "Transitive", + "resolved": "4.3.0", + "contentHash": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Resources.ResourceManager": { + "type": "Transitive", + "resolved": "4.3.0", + "contentHash": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime": { + "type": "Transitive", + "resolved": "4.3.0", + "contentHash": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "System.Runtime.Extensions": { + "type": "Transitive", + "resolved": "4.3.0", + "contentHash": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.Handles": { + "type": "Transitive", + "resolved": "4.3.0", + "contentHash": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.InteropServices": { + "type": "Transitive", + "resolved": "4.3.0", + "contentHash": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Runtime.InteropServices.RuntimeInformation": { + "type": "Transitive", + "resolved": "4.3.0", + "contentHash": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + } + }, + "System.Runtime.Numerics": { + "type": "Transitive", + "resolved": "4.3.0", + "contentHash": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Security.AccessControl": { + "type": "Transitive", + "resolved": "4.7.0", + "contentHash": "JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "System.Security.Cryptography.Algorithms": { + "type": "Transitive", + "resolved": "4.3.0", + "contentHash": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.Apple": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Cryptography.Cng": { + "type": "Transitive", + "resolved": "4.3.0", + "contentHash": "03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Security.Cryptography.Csp": { + "type": "Transitive", + "resolved": "4.3.0", + "contentHash": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Security.Cryptography.Encoding": { + "type": "Transitive", + "resolved": "4.3.0", + "contentHash": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Cryptography.OpenSsl": { + "type": "Transitive", + "resolved": "4.3.0", + "contentHash": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", + "dependencies": { + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Cryptography.Primitives": { + "type": "Transitive", + "resolved": "4.3.0", + "contentHash": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Security.Cryptography.ProtectedData": { + "type": "Transitive", + "resolved": "4.7.0", + "contentHash": "ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==" + }, + "System.Security.Cryptography.X509Certificates": { + "type": "Transitive", + "resolved": "4.3.0", + "contentHash": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Cng": "4.3.0", + "System.Security.Cryptography.Csp": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Permissions": { + "type": "Transitive", + "resolved": "4.7.0", + "contentHash": "dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==", + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Windows.Extensions": "4.7.0" + } + }, + "System.Security.Principal.Windows": { + "type": "Transitive", + "resolved": "4.7.0", + "contentHash": "ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==" + }, + "System.Text.Encoding": { + "type": "Transitive", + "resolved": "4.3.0", + "contentHash": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Text.Encoding.Extensions": { + "type": "Transitive", + "resolved": "4.3.0", + "contentHash": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Text.RegularExpressions": { + "type": "Transitive", + "resolved": "4.3.0", + "contentHash": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Threading": { + "type": "Transitive", + "resolved": "4.3.0", + "contentHash": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Tasks": { + "type": "Transitive", + "resolved": "4.3.0", + "contentHash": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Threading.Tasks.Extensions": { + "type": "Transitive", + "resolved": "4.3.0", + "contentHash": "npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==", + "dependencies": { + "System.Collections": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Timer": { + "type": "Transitive", + "resolved": "4.3.0", + "contentHash": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Windows.Extensions": { + "type": "Transitive", + "resolved": "4.7.0", + "contentHash": "CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==", + "dependencies": { + "System.Drawing.Common": "4.7.0" + } + }, + "System.Xml.ReaderWriter": { + "type": "Transitive", + "resolved": "4.3.0", + "contentHash": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Tasks.Extensions": "4.3.0" + } + }, + "System.Xml.XDocument": { + "type": "Transitive", + "resolved": "4.3.0", + "contentHash": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + } + }, + "ffxivclientstructs": { + "type": "Project", + "dependencies": { + "InteropGenerator.Runtime": "[1.0.0, )", + "JetBrains.Annotations": "[2021.2.0, )" + } + }, + "interopgenerator.runtime": { + "type": "Project" + } + } + } } \ No newline at end of file diff --git a/UIDev/OfflineTextureProvider.cs b/UIDev/OfflineTextureProvider.cs new file mode 100644 index 0000000000..dae9e4750c --- /dev/null +++ b/UIDev/OfflineTextureProvider.cs @@ -0,0 +1,180 @@ +using BossMod; +using Dalamud.Game; +using Dalamud.Interface.Textures; +using Dalamud.Interface.Textures.TextureWraps; +using Dalamud.Plugin.Services; +using ImGuiScene; +using Lumina.Data.Files; +using System.Diagnostics.CodeAnalysis; +using System.IO; +using System.Reflection; +using System.Threading; +using System.Threading.Tasks; + +namespace UIDev; + +internal class OfflineTextureProvider(IRenderer render) : ITextureProvider +{ + public readonly IRenderer Renderer = render; + + private const string IconFileFormat = "ui/icon/{0:D3}000/{1}{2:D6}.tex"; + private const string HighResolutionIconFileFormat = "ui/icon/{0:D3}000/{1}{2:D6}_hr1.tex"; + + public nint ConvertToKernelTexture(IDalamudTextureWrap wrap, bool leaveWrapOpen = false) => throw new NotImplementedException(); + public IDalamudTextureWrap CreateEmpty(RawImageSpecification specs, bool cpuRead, bool cpuWrite, string? debugName = null) => throw new NotImplementedException(); + public Task CreateFromExistingTextureAsync(IDalamudTextureWrap wrap, TextureModificationArgs args = default, bool leaveWrapOpen = false, string? debugName = null, CancellationToken cancellationToken = default) => throw new NotImplementedException(); + public Task CreateFromImageAsync(ReadOnlyMemory bytes, string? debugName = null, CancellationToken cancellationToken = default) => throw new NotImplementedException(); + public Task CreateFromImageAsync(Stream stream, bool leaveOpen = false, string? debugName = null, CancellationToken cancellationToken = default) => throw new NotImplementedException(); + public Task CreateFromImGuiViewportAsync(ImGuiViewportTextureArgs args, string? debugName = null, CancellationToken cancellationToken = default) => throw new NotImplementedException(); + public IDalamudTextureWrap CreateFromRaw(RawImageSpecification specs, ReadOnlySpan bytes, string? debugName = null) => throw new NotImplementedException(); + public Task CreateFromRawAsync(RawImageSpecification specs, ReadOnlyMemory bytes, string? debugName = null, CancellationToken cancellationToken = default) => throw new NotImplementedException(); + public Task CreateFromRawAsync(RawImageSpecification specs, Stream stream, bool leaveOpen = false, string? debugName = null, CancellationToken cancellationToken = default) => throw new NotImplementedException(); + public IDalamudTextureWrap CreateFromTexFile(TexFile file) => CreateOfflineFromTexFile(file); + + private unsafe OfflineTextureWrap CreateOfflineFromTexFile(TexFile file) + { + var buffer = file.TextureBuffer; + fixed (byte* raw = buffer.RawData) + { + return new OfflineTextureWrap(Renderer.CreateTexture(raw, buffer.Width, buffer.Height, buffer.NumBytes / (buffer.Width * buffer.Height))); + } + } + + public Task CreateFromTexFileAsync(TexFile file, string? debugName = null, CancellationToken cancellationToken = default) => Task.FromResult(CreateFromTexFile(file)); + public ISharedImmediateTexture GetFromFile(string path) => throw new NotImplementedException(); + public ISharedImmediateTexture GetFromFile(FileInfo file) => throw new NotImplementedException(); + public ISharedImmediateTexture GetFromFileAbsolute(string fullPath) => throw new NotImplementedException(); + public ISharedImmediateTexture GetFromGame(string path) + { + if (!_cachedFromGame.TryGetValue(path, out var cached)) + { + cached = new OfflineSharedImmediateTexture(Renderer, CreateOfflineFromTexFile(Service.LuminaGameData!.GetFile(path)!)); + _cachedFromGame.Add(path, cached); + } + + return cached; + } + + private readonly Dictionary _cachedFromGame = []; + + public ISharedImmediateTexture GetFromGameIcon(in GameIconLookup lookup) => TryGetIconPath(lookup, out var path) ? GetFromGame(path) : throw new InvalidDataException($"icon {lookup} not found"); + public ISharedImmediateTexture GetFromManifestResource(Assembly assembly, string name) => throw new NotImplementedException(); + public string GetIconPath(in GameIconLookup lookup) => TryGetIconPath(lookup, out var path) ? path : throw new FileNotFoundException(); + public IEnumerable GetSupportedImageDecoderInfos() => throw new NotImplementedException(); + public bool IsDxgiFormatSupported(int dxgiFormat) => throw new NotImplementedException(); + public bool IsDxgiFormatSupportedForCreateFromExistingTextureAsync(int dxgiFormat) => throw new NotImplementedException(); + public bool TryGetFromGameIcon(in GameIconLookup lookup, [NotNullWhen(true)] out ISharedImmediateTexture? texture) => throw new NotImplementedException(); + public bool TryGetIconPath(in GameIconLookup lookup, [NotNullWhen(true)] out string? path) + { + // 1. Item + path = FormatIconPath( + lookup.IconId, + lookup.ItemHq ? "hq/" : string.Empty, + lookup.HiRes); + if (FileExists(path)) + return true; + + var languageFolder = lookup.Language switch + { + ClientLanguage.Japanese => "ja/", + ClientLanguage.English => "en/", + ClientLanguage.German => "de/", + ClientLanguage.French => "fr/", + _ => null, + }; + + if (languageFolder is not null) + { + // 2. Regular icon, with language, hi-res + path = FormatIconPath( + lookup.IconId, + languageFolder, + lookup.HiRes); + if (FileExists(path)) + return true; + + if (lookup.HiRes) + { + // 3. Regular icon, with language, no hi-res + path = FormatIconPath( + lookup.IconId, + languageFolder, + false); + if (FileExists(path)) + return true; + } + } + + // 4. Regular icon, without language, hi-res + path = FormatIconPath( + lookup.IconId, + null, + lookup.HiRes); + if (FileExists(path)) + return true; + + // 4. Regular icon, without language, no hi-res + if (lookup.HiRes) + { + path = FormatIconPath( + lookup.IconId, + null, + false); + if (FileExists(path)) + return true; + } + + return false; + } + + private static bool FileExists(string path) => Service.LuminaGameData!.FileExists(path); + + private static string FormatIconPath(uint iconId, string? type, bool highResolution) + { + var format = highResolution ? HighResolutionIconFileFormat : IconFileFormat; + + type ??= string.Empty; + if (type.Length > 0 && !type.EndsWith('/')) + type += "/"; + + return string.Format(format, iconId / 1000, type, iconId); + } +} + +internal record class OfflineTextureWrap(TextureWrap Wrap) : IDalamudTextureWrap +{ + public nint ImGuiHandle => Wrap.ImGuiHandle; + + public int Width => Wrap.Width; + + public int Height => Wrap.Height; + + public void Dispose() => Wrap.Dispose(); +} + +internal class OfflineSharedImmediateTexture : ISharedImmediateTexture +{ + private readonly OfflineTextureWrap Wrap; + private readonly OfflineTextureWrap Empty; + + public unsafe OfflineSharedImmediateTexture(IRenderer renderer, OfflineTextureWrap wrap) + { + Wrap = wrap; + var bytes = new byte[16]; + fixed (byte* ptr = bytes) + { + Empty = new(renderer.CreateTexture(ptr, 4, 4, 1)); + } + } + + [return: NotNullIfNotNull(nameof(defaultWrap))] + public IDalamudTextureWrap? GetWrapOrDefault(IDalamudTextureWrap? defaultWrap = null) => TryGetWrap(out var tex, out _) ? tex : defaultWrap; + public IDalamudTextureWrap GetWrapOrEmpty() => TryGetWrap(out var tex, out _) ? tex : Empty; + public Task RentAsync(CancellationToken cancellationToken = default) => Task.FromResult(Wrap); + public bool TryGetWrap([NotNullWhen(true)] out IDalamudTextureWrap? texture, out Exception? exception) + { + texture = Wrap; + exception = null; + return true; + } +} diff --git a/UIDev/PathfindingTest.cs b/UIDev/PathfindingTest.cs index 97f60e4ed4..f4b46aebff 100644 --- a/UIDev/PathfindingTest.cs +++ b/UIDev/PathfindingTest.cs @@ -86,11 +86,11 @@ private MapVisualizer RebuildMap() Map map = new(_mapResolution, new(_mapCenter), _mapHalfSize.X, _mapHalfSize.Y, _mapRotationDeg.Degrees()); float[] scratch = []; var now = DateTime.MinValue.AddSeconds(NavigationDecision.ActivationTimeCushion); - List<(Func shapeDistance, DateTime activation)> zones = []; + List<(Func shapeDistance, DateTime activation, ulong source)> zones = []; if (_blockCone) - zones.Add((ShapeDistance.DonutSector(new(_blockConeCenter), _blockConeRadius.X, _blockConeRadius.Y, _blockConeRotationDeg.Degrees(), _blockConeHalfAngle.Degrees()), now.AddSeconds(_blockConeG))); + zones.Add((ShapeDistance.DonutSector(new(_blockConeCenter), _blockConeRadius.X, _blockConeRadius.Y, _blockConeRotationDeg.Degrees(), _blockConeHalfAngle.Degrees()), now.AddSeconds(_blockConeG), 0)); if (_blockRect) - zones.Add((ShapeDistance.Rect(new(_blockRectCenter), _blockRectRotationDeg.Degrees(), _blockRectLen.X, _blockRectLen.Y, _blockRectHalfWidth), now.AddSeconds(_blockRectG))); + zones.Add((ShapeDistance.Rect(new(_blockRectCenter), _blockRectRotationDeg.Degrees(), _blockRectLen.X, _blockRectLen.Y, _blockRectHalfWidth), now.AddSeconds(_blockRectG), 0)); zones.SortBy(z => z.activation); NavigationDecision.RasterizeForbiddenZones(map, zones, now, ref scratch); diff --git a/UIDev/UITest.cs b/UIDev/UITest.cs index 51e0b3fcc3..70739699ef 100644 --- a/UIDev/UITest.cs +++ b/UIDev/UITest.cs @@ -15,21 +15,26 @@ class UITest { public static void Main(string[] args) { - // you can edit this if you want more control over things - // mainly if you want a regular window instead of transparent overlay - // Typically you don't want to change any colors here if you keep the fullscreen overlay + var width = 1200; + var height = 800; + + if (SDL_Init(SDL_INIT_VIDEO) == 0 && SDL_GetDesktopDisplayMode(0, out var mode) >= 0) + { + width = mode.w - 200; + height = mode.h - 200; + SDL_Quit(); + } + using var scene = new SimpleImGuiScene(RendererFactory.RendererBackend.DirectX11, new WindowCreateInfo { Title = "UI Test", - XPos = -10, - //YPos = 20, - //Width = 1200, - //Height = 800, - Fullscreen = true, - TransparentColor = [0, 0, 0], + XPos = 100, + YPos = 100, + Width = width, + Height = height, + TransparentColor = null, }); - // the background color of your window - typically don't change this for fullscreen overlays scene.Renderer.ClearColor = new Vector4(0, 0, 0, 0); InitializeDalamudStyle(); @@ -39,6 +44,7 @@ public static void Main(string[] args) //Service.LuminaGameData.Options.PanicOnSheetChecksumMismatch = false; // TODO: remove - temporary workaround until lumina is updated Service.LuminaGameData.Options.RsvResolver = Service.LuminaRSV.TryGetValue; Service.WindowSystem = new("uitest"); + typeof(Service).GetProperty("Texture")!.SetValue(null, new OfflineTextureProvider(scene.Renderer)); //Service.Device = (SharpDX.Direct3D11.Device?)scene.Renderer.GetType().GetField("_device", System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance)?.GetValue(scene.Renderer); // esc should close focused window @@ -129,6 +135,9 @@ private static unsafe void InitializeDalamudStyle() private static string FindGameDataPath() { + if (Environment.GetEnvironmentVariable("FFXIV_GAME_FOLDER") is string gameFolderOverride) + return Path.Join(gameFolderOverride, "game", "sqpack"); + // stolen from FFXIVLauncher/src/XIVLauncher/AppUtil.cs foreach (var registryView in new RegistryView[] { RegistryView.Registry32, RegistryView.Registry64 }) { From 5f95e89f435dd03485177559fe6029cbeeaba2df Mon Sep 17 00:00:00 2001 From: xanunderscore <149614526+xanunderscore@users.noreply.github.com> Date: Tue, 28 Jan 2025 19:12:32 -0500 Subject: [PATCH 03/32] add maps --- .../Pathfinding/ObstacleMaps/1010.812.1.bmp | Bin 0 -> 17870 bytes .../Pathfinding/ObstacleMaps/1010.812.2.bmp | Bin 0 -> 806 bytes .../Pathfinding/ObstacleMaps/1010.812.3.bmp | Bin 0 -> 15038 bytes .../Pathfinding/ObstacleMaps/1010.812.4.bmp | Bin 0 -> 4514 bytes .../Pathfinding/ObstacleMaps/1010.812.5.bmp | Bin 0 -> 16598 bytes .../Pathfinding/ObstacleMaps/1010.812.6.bmp | Bin 0 -> 17870 bytes .../Pathfinding/ObstacleMaps/1010.812.7.bmp | Bin 0 -> 2450 bytes .../Pathfinding/ObstacleMaps/1011.793.1.bmp | Bin 0 -> 82046 bytes .../Pathfinding/ObstacleMaps/1012.804.1.bmp | Bin 0 -> 986 bytes .../Pathfinding/ObstacleMaps/1022.813.1.bmp | Bin 0 -> 73790 bytes .../Pathfinding/ObstacleMaps/1050.844.1.bmp | Bin 0 -> 53402 bytes .../Pathfinding/ObstacleMaps/1050.844.2.bmp | Bin 0 -> 16070 bytes .../Pathfinding/ObstacleMaps/1050.844.3.bmp | Bin 0 -> 21070 bytes .../Pathfinding/ObstacleMaps/1070.869.1.bmp | Bin 0 -> 26774 bytes .../Pathfinding/ObstacleMaps/1070.869.2.bmp | Bin 0 -> 67502 bytes .../Pathfinding/ObstacleMaps/1070.869.3.bmp | Bin 0 -> 23822 bytes .../Pathfinding/ObstacleMaps/1097.896.1.bmp | Bin 0 -> 19646 bytes .../Pathfinding/ObstacleMaps/1097.896.2.bmp | Bin 0 -> 21202 bytes .../Pathfinding/ObstacleMaps/1097.896.3.bmp | Bin 0 -> 33382 bytes .../Pathfinding/ObstacleMaps/1099.897.1.bmp | Bin 0 -> 50302 bytes .../Pathfinding/ObstacleMaps/1099.897.2.bmp | Bin 0 -> 49422 bytes .../Pathfinding/ObstacleMaps/1100.898.1.bmp | Bin 0 -> 49422 bytes .../Pathfinding/ObstacleMaps/1100.898.2.bmp | Bin 0 -> 50302 bytes .../Pathfinding/ObstacleMaps/1101.899.1.bmp | Bin 0 -> 44142 bytes .../Pathfinding/ObstacleMaps/1101.899.2.bmp | Bin 0 -> 44142 bytes .../Pathfinding/ObstacleMaps/1102.900.1.bmp | Bin 0 -> 44142 bytes .../Pathfinding/ObstacleMaps/1102.900.2.bmp | Bin 0 -> 44142 bytes .../Pathfinding/ObstacleMaps/1103.901.1.bmp | Bin 0 -> 37790 bytes .../Pathfinding/ObstacleMaps/1103.901.2.bmp | Bin 0 -> 37598 bytes .../Pathfinding/ObstacleMaps/1103.901.3.bmp | Bin 0 -> 998 bytes .../Pathfinding/ObstacleMaps/1104.902.1.bmp | Bin 0 -> 37598 bytes .../Pathfinding/ObstacleMaps/1104.902.2.bmp | Bin 0 -> 37790 bytes .../Pathfinding/ObstacleMaps/1105.903.1.bmp | Bin 0 -> 38150 bytes .../Pathfinding/ObstacleMaps/1105.903.2.bmp | Bin 0 -> 39806 bytes .../Pathfinding/ObstacleMaps/1106.904.1.bmp | Bin 0 -> 38150 bytes .../Pathfinding/ObstacleMaps/1106.904.2.bmp | Bin 0 -> 39806 bytes .../Pathfinding/ObstacleMaps/1106.904.3.bmp | Bin 0 -> 1630 bytes .../Pathfinding/ObstacleMaps/1107.905.1.bmp | Bin 0 -> 66854 bytes .../Pathfinding/ObstacleMaps/1107.905.2.bmp | Bin 0 -> 66670 bytes .../Pathfinding/ObstacleMaps/1108.906.1.bmp | Bin 0 -> 66854 bytes .../Pathfinding/ObstacleMaps/1108.906.2.bmp | Bin 0 -> 66670 bytes .../Pathfinding/ObstacleMaps/1108.906.3.bmp | Bin 0 -> 1646 bytes .../Pathfinding/ObstacleMaps/1108.906.4.bmp | Bin 0 -> 31774 bytes .../Pathfinding/ObstacleMaps/1110.38.1.bmp | Bin 0 -> 75422 bytes .../Pathfinding/ObstacleMaps/1110.38.2.bmp | Bin 0 -> 3854 bytes .../Pathfinding/ObstacleMaps/1110.38.3.bmp | Bin 0 -> 542 bytes .../Pathfinding/ObstacleMaps/1110.38.6.bmp | Bin 0 -> 2097214 bytes .../Pathfinding/ObstacleMaps/1111.141.1.bmp | Bin 0 -> 12542 bytes .../Pathfinding/ObstacleMaps/1112.171.1.bmp | Bin 0 -> 11614 bytes .../Pathfinding/ObstacleMaps/1112.171.2.bmp | Bin 0 -> 10958 bytes .../Pathfinding/ObstacleMaps/1112.171.3.bmp | Bin 0 -> 1094 bytes .../Pathfinding/ObstacleMaps/1113.182.1.bmp | Bin 0 -> 66758 bytes .../Pathfinding/ObstacleMaps/1113.182.2.bmp | Bin 0 -> 21950 bytes .../Pathfinding/ObstacleMaps/1113.182.3.bmp | Bin 0 -> 3182 bytes .../Pathfinding/ObstacleMaps/1113.182.4.bmp | Bin 0 -> 4150 bytes .../Pathfinding/ObstacleMaps/1114.219.1.bmp | Bin 0 -> 20942 bytes .../Pathfinding/ObstacleMaps/1126.822.1.bmp | Bin 0 -> 31422 bytes .../Pathfinding/ObstacleMaps/1143.240.1.bmp | Bin 0 -> 18046 bytes .../Pathfinding/ObstacleMaps/1144.241.1.bmp | Bin 0 -> 142790 bytes .../Pathfinding/ObstacleMaps/1146.247.1.bmp | Bin 0 -> 15814 bytes .../Pathfinding/ObstacleMaps/1146.247.2.bmp | Bin 0 -> 77786 bytes .../Pathfinding/ObstacleMaps/1164.823.1.bmp | Bin 0 -> 5022 bytes .../Pathfinding/ObstacleMaps/1164.823.4.bmp | Bin 0 -> 2110 bytes .../Pathfinding/ObstacleMaps/1172.279.1.bmp | Bin 0 -> 70206 bytes .../Pathfinding/ObstacleMaps/1173.585.1.bmp | Bin 0 -> 4130 bytes .../Pathfinding/ObstacleMaps/1173.585.2.bmp | Bin 0 -> 156350 bytes .../Pathfinding/ObstacleMaps/1174.611.1.bmp | Bin 0 -> 47158 bytes .../Pathfinding/ObstacleMaps/1174.611.2.bmp | Bin 0 -> 66862 bytes .../Pathfinding/ObstacleMaps/1177.960.1.bmp | Bin 0 -> 4958 bytes .../Pathfinding/ObstacleMaps/1177.960.2.bmp | Bin 0 -> 36102 bytes .../Pathfinding/ObstacleMaps/1193.824.1.bmp | Bin 0 -> 6278 bytes .../Pathfinding/ObstacleMaps/1193.824.2.bmp | Bin 0 -> 5102 bytes .../Pathfinding/ObstacleMaps/1193.824.3.bmp | Bin 0 -> 4734 bytes .../Pathfinding/ObstacleMaps/1193.824.4.bmp | Bin 0 -> 17666 bytes .../Pathfinding/ObstacleMaps/1193.824.5.bmp | Bin 0 -> 3454 bytes .../Pathfinding/ObstacleMaps/1194.829.1.bmp | Bin 0 -> 41334 bytes .../Pathfinding/ObstacleMaps/1194.829.2.bmp | Bin 0 -> 38462 bytes .../Pathfinding/ObstacleMaps/1194.829.3.bmp | Bin 0 -> 2462 bytes .../Pathfinding/ObstacleMaps/1198.831.1.bmp | Bin 0 -> 121982 bytes .../Pathfinding/ObstacleMaps/1199.827.1.bmp | Bin 0 -> 31382 bytes .../Pathfinding/ObstacleMaps/1199.827.2.bmp | Bin 0 -> 74694 bytes .../Pathfinding/ObstacleMaps/1199.827.3.bmp | Bin 0 -> 42630 bytes .../Pathfinding/ObstacleMaps/1199.827.4.bmp | Bin 0 -> 19742 bytes .../Pathfinding/ObstacleMaps/1208.825.1.bmp | Bin 0 -> 11166 bytes .../Pathfinding/ObstacleMaps/1208.825.2.bmp | Bin 0 -> 9778 bytes .../Pathfinding/ObstacleMaps/1208.825.3.bmp | Bin 0 -> 9890 bytes .../Pathfinding/ObstacleMaps/1208.825.4.bmp | Bin 0 -> 25838 bytes .../Pathfinding/ObstacleMaps/1208.825.5.bmp | Bin 0 -> 33662 bytes .../Pathfinding/ObstacleMaps/1233.1000.1.bmp | Bin 0 -> 2686 bytes .../Pathfinding/ObstacleMaps/1236.1002.1.bmp | Bin 0 -> 813406 bytes BossMod/Pathfinding/ObstacleMaps/146.0.1.bmp | Bin 0 -> 813182 bytes BossMod/Pathfinding/ObstacleMaps/147.0.1.bmp | Bin 0 -> 2097214 bytes BossMod/Pathfinding/ObstacleMaps/147.0.2.bmp | Bin 0 -> 302694 bytes BossMod/Pathfinding/ObstacleMaps/148.0.1.bmp | Bin 0 -> 733450 bytes BossMod/Pathfinding/ObstacleMaps/156.0.1.bmp | Bin 0 -> 2097214 bytes BossMod/Pathfinding/ObstacleMaps/156.0.2.bmp | Bin 0 -> 2097214 bytes BossMod/Pathfinding/ObstacleMaps/156.0.3.bmp | Bin 0 -> 135526 bytes .../Pathfinding/ObstacleMaps/251.323.1.bmp | Bin 0 -> 58526 bytes .../Pathfinding/ObstacleMaps/258.319.1.bmp | Bin 0 -> 632710 bytes .../Pathfinding/ObstacleMaps/260.321.1.bmp | Bin 0 -> 813182 bytes .../Pathfinding/ObstacleMaps/261.322.1.bmp | Bin 0 -> 813182 bytes .../Pathfinding/ObstacleMaps/270.335.1.bmp | Bin 0 -> 632710 bytes .../Pathfinding/ObstacleMaps/314.363.1.bmp | Bin 0 -> 632710 bytes BossMod/Pathfinding/ObstacleMaps/349.18.1.bmp | Bin 0 -> 5822 bytes BossMod/Pathfinding/ObstacleMaps/349.18.2.bmp | Bin 0 -> 37454 bytes BossMod/Pathfinding/ObstacleMaps/399.0.3.bmp | Bin 0 -> 135426 bytes BossMod/Pathfinding/ObstacleMaps/436.88.1.bmp | Bin 0 -> 1118 bytes .../Pathfinding/ObstacleMaps/455.395.1.bmp | Bin 0 -> 873590 bytes .../Pathfinding/ObstacleMaps/458.398.1.bmp | Bin 0 -> 66362 bytes .../Pathfinding/ObstacleMaps/460.400.1.bmp | Bin 0 -> 74622 bytes .../Pathfinding/ObstacleMaps/473.411.1.bmp | Bin 0 -> 555214 bytes .../Pathfinding/ObstacleMaps/479.416.2.bmp | Bin 0 -> 566 bytes .../Pathfinding/ObstacleMaps/479.416.3.bmp | Bin 0 -> 1527734 bytes .../Pathfinding/ObstacleMaps/513.441.1.bmp | Bin 0 -> 23382 bytes .../Pathfinding/ObstacleMaps/533.167.1.bmp | Bin 0 -> 4190 bytes .../Pathfinding/ObstacleMaps/561.174.1.bmp | Bin 0 -> 40310 bytes .../Pathfinding/ObstacleMaps/561.174.2.bmp | Bin 0 -> 39086 bytes .../Pathfinding/ObstacleMaps/562.175.1.bmp | Bin 0 -> 38510 bytes .../Pathfinding/ObstacleMaps/562.175.2.bmp | Bin 0 -> 39662 bytes .../Pathfinding/ObstacleMaps/563.176.1.bmp | Bin 0 -> 37934 bytes .../Pathfinding/ObstacleMaps/563.176.2.bmp | Bin 0 -> 39950 bytes .../Pathfinding/ObstacleMaps/564.177.1.bmp | Bin 0 -> 38870 bytes .../Pathfinding/ObstacleMaps/564.177.2.bmp | Bin 0 -> 40382 bytes .../Pathfinding/ObstacleMaps/565.178.1.bmp | Bin 0 -> 38870 bytes .../Pathfinding/ObstacleMaps/565.178.2.bmp | Bin 0 -> 40382 bytes .../Pathfinding/ObstacleMaps/593.204.1.bmp | Bin 0 -> 38414 bytes .../Pathfinding/ObstacleMaps/593.204.2.bmp | Bin 0 -> 40670 bytes .../Pathfinding/ObstacleMaps/594.205.1.bmp | Bin 0 -> 38414 bytes .../Pathfinding/ObstacleMaps/594.205.2.bmp | Bin 0 -> 40670 bytes .../Pathfinding/ObstacleMaps/595.206.1.bmp | Bin 0 -> 40670 bytes .../Pathfinding/ObstacleMaps/595.206.2.bmp | Bin 0 -> 38414 bytes .../Pathfinding/ObstacleMaps/596.207.1.bmp | Bin 0 -> 39374 bytes .../Pathfinding/ObstacleMaps/596.207.2.bmp | Bin 0 -> 38510 bytes .../Pathfinding/ObstacleMaps/597.208.1.bmp | Bin 0 -> 39374 bytes .../Pathfinding/ObstacleMaps/597.208.2.bmp | Bin 0 -> 38510 bytes .../Pathfinding/ObstacleMaps/598.209.1.bmp | Bin 0 -> 38510 bytes .../Pathfinding/ObstacleMaps/598.209.2.bmp | Bin 0 -> 39374 bytes .../Pathfinding/ObstacleMaps/599.210.1.bmp | Bin 0 -> 39590 bytes .../Pathfinding/ObstacleMaps/599.210.2.bmp | Bin 0 -> 38294 bytes .../Pathfinding/ObstacleMaps/600.211.1.bmp | Bin 0 -> 38294 bytes .../Pathfinding/ObstacleMaps/600.211.2.bmp | Bin 0 -> 39590 bytes .../Pathfinding/ObstacleMaps/601.212.1.bmp | Bin 0 -> 38006 bytes .../Pathfinding/ObstacleMaps/601.212.2.bmp | Bin 0 -> 40094 bytes .../Pathfinding/ObstacleMaps/602.213.1.bmp | Bin 0 -> 10070 bytes .../Pathfinding/ObstacleMaps/602.213.2.bmp | Bin 0 -> 9530 bytes .../Pathfinding/ObstacleMaps/603.214.1.bmp | Bin 0 -> 35830 bytes .../Pathfinding/ObstacleMaps/603.214.2.bmp | Bin 0 -> 34334 bytes .../Pathfinding/ObstacleMaps/604.215.1.bmp | Bin 0 -> 35830 bytes .../Pathfinding/ObstacleMaps/604.215.2.bmp | Bin 0 -> 34334 bytes .../Pathfinding/ObstacleMaps/605.216.1.bmp | Bin 0 -> 9530 bytes .../Pathfinding/ObstacleMaps/605.216.2.bmp | Bin 0 -> 9134 bytes .../Pathfinding/ObstacleMaps/606.217.1.bmp | Bin 0 -> 9134 bytes .../Pathfinding/ObstacleMaps/606.217.2.bmp | Bin 0 -> 9530 bytes .../Pathfinding/ObstacleMaps/607.218.1.bmp | Bin 0 -> 2097214 bytes .../Pathfinding/ObstacleMaps/607.218.2.bmp | Bin 0 -> 2097214 bytes .../Pathfinding/ObstacleMaps/607.218.3.bmp | Bin 0 -> 9134 bytes BossMod/Pathfinding/ObstacleMaps/613.0.1.bmp | Bin 0 -> 1912958 bytes .../Pathfinding/ObstacleMaps/659.464.1.bmp | Bin 0 -> 123506 bytes .../Pathfinding/ObstacleMaps/668.458.1.bmp | Bin 0 -> 481682 bytes .../Pathfinding/ObstacleMaps/671.466.1.bmp | Bin 0 -> 34190 bytes .../Pathfinding/ObstacleMaps/684.269.1.bmp | Bin 0 -> 50378 bytes .../Pathfinding/ObstacleMaps/686.467.1.bmp | Bin 0 -> 76182 bytes .../Pathfinding/ObstacleMaps/757.472.1.bmp | Bin 0 -> 482174 bytes .../Pathfinding/ObstacleMaps/768.536.1.bmp | Bin 0 -> 17902 bytes .../Pathfinding/ObstacleMaps/768.536.2.bmp | Bin 0 -> 17246 bytes .../Pathfinding/ObstacleMaps/768.536.3.bmp | Bin 0 -> 14146 bytes .../Pathfinding/ObstacleMaps/768.536.4.bmp | Bin 0 -> 10182 bytes .../Pathfinding/ObstacleMaps/770.540.1.bmp | Bin 0 -> 39878 bytes .../Pathfinding/ObstacleMaps/770.540.2.bmp | Bin 0 -> 39878 bytes .../Pathfinding/ObstacleMaps/771.541.1.bmp | Bin 0 -> 39878 bytes .../Pathfinding/ObstacleMaps/771.541.2.bmp | Bin 0 -> 39878 bytes .../Pathfinding/ObstacleMaps/771.541.3.bmp | Bin 0 -> 17310 bytes .../Pathfinding/ObstacleMaps/772.542.1.bmp | Bin 0 -> 38414 bytes .../Pathfinding/ObstacleMaps/772.542.2.bmp | Bin 0 -> 40670 bytes .../Pathfinding/ObstacleMaps/772.542.3.bmp | Bin 0 -> 17758 bytes .../Pathfinding/ObstacleMaps/773.544.1.bmp | Bin 0 -> 35966 bytes .../Pathfinding/ObstacleMaps/773.544.2.bmp | Bin 0 -> 34942 bytes .../Pathfinding/ObstacleMaps/773.544.3.bmp | Bin 0 -> 18662 bytes .../Pathfinding/ObstacleMaps/774.546.1.bmp | Bin 0 -> 35966 bytes .../Pathfinding/ObstacleMaps/774.546.2.bmp | Bin 0 -> 34942 bytes .../Pathfinding/ObstacleMaps/774.546.3.bmp | Bin 0 -> 18662 bytes .../Pathfinding/ObstacleMaps/775.548.1.bmp | Bin 0 -> 40454 bytes .../Pathfinding/ObstacleMaps/775.548.2.bmp | Bin 0 -> 37190 bytes .../Pathfinding/ObstacleMaps/775.548.3.bmp | Bin 0 -> 4014 bytes .../Pathfinding/ObstacleMaps/775.548.4.bmp | Bin 0 -> 18662 bytes .../Pathfinding/ObstacleMaps/782.543.1.bmp | Bin 0 -> 38414 bytes .../Pathfinding/ObstacleMaps/782.543.2.bmp | Bin 0 -> 40670 bytes .../Pathfinding/ObstacleMaps/782.543.3.bmp | Bin 0 -> 17758 bytes .../Pathfinding/ObstacleMaps/783.545.1.bmp | Bin 0 -> 34942 bytes .../Pathfinding/ObstacleMaps/783.545.2.bmp | Bin 0 -> 35966 bytes .../Pathfinding/ObstacleMaps/783.545.3.bmp | Bin 0 -> 18662 bytes .../Pathfinding/ObstacleMaps/784.547.1.bmp | Bin 0 -> 35966 bytes .../Pathfinding/ObstacleMaps/784.547.2.bmp | Bin 0 -> 18662 bytes .../Pathfinding/ObstacleMaps/784.547.3.bmp | Bin 0 -> 34942 bytes .../Pathfinding/ObstacleMaps/784.547.4.bmp | Bin 0 -> 3886 bytes .../Pathfinding/ObstacleMaps/785.549.1.bmp | Bin 0 -> 40454 bytes .../Pathfinding/ObstacleMaps/785.549.2.bmp | Bin 0 -> 37190 bytes .../Pathfinding/ObstacleMaps/785.549.3.bmp | Bin 0 -> 18662 bytes .../Pathfinding/ObstacleMaps/821.649.1.bmp | Bin 0 -> 52542 bytes .../Pathfinding/ObstacleMaps/821.649.2.bmp | Bin 0 -> 14322 bytes .../Pathfinding/ObstacleMaps/822.659.1.bmp | Bin 0 -> 93806 bytes .../Pathfinding/ObstacleMaps/822.659.2.bmp | Bin 0 -> 69626 bytes .../Pathfinding/ObstacleMaps/823.651.1.bmp | Bin 0 -> 11774 bytes .../Pathfinding/ObstacleMaps/836.656.1.bmp | Bin 0 -> 31158 bytes .../Pathfinding/ObstacleMaps/836.656.2.bmp | Bin 0 -> 18830 bytes .../Pathfinding/ObstacleMaps/837.676.1.bmp | Bin 0 -> 161678 bytes .../Pathfinding/ObstacleMaps/838.652.1.bmp | Bin 0 -> 112446 bytes .../Pathfinding/ObstacleMaps/838.652.2.bmp | Bin 0 -> 2558 bytes .../Pathfinding/ObstacleMaps/838.652.3.bmp | Bin 0 -> 2162 bytes .../Pathfinding/ObstacleMaps/861.662.1.bmp | Bin 0 -> 60486 bytes .../Pathfinding/ObstacleMaps/862.663.1.bmp | Bin 0 -> 474062 bytes .../Pathfinding/ObstacleMaps/864.665.1.bmp | Bin 0 -> 35214 bytes .../Pathfinding/ObstacleMaps/864.665.2.bmp | Bin 0 -> 4542 bytes .../Pathfinding/ObstacleMaps/884.692.1.bmp | Bin 0 -> 85798 bytes .../Pathfinding/ObstacleMaps/898.714.1.bmp | Bin 0 -> 87982 bytes .../Pathfinding/ObstacleMaps/916.737.1.bmp | Bin 0 -> 28358 bytes .../Pathfinding/ObstacleMaps/916.737.2.bmp | Bin 0 -> 59030 bytes .../Pathfinding/ObstacleMaps/920.735.1.bmp | Bin 0 -> 170522 bytes .../Pathfinding/ObstacleMaps/933.746.1.bmp | Bin 0 -> 4526 bytes .../Pathfinding/ObstacleMaps/933.746.2.bmp | Bin 0 -> 7314 bytes .../Pathfinding/ObstacleMaps/933.746.3.bmp | Bin 0 -> 4830 bytes .../Pathfinding/ObstacleMaps/933.746.4.bmp | Bin 0 -> 4982 bytes .../Pathfinding/ObstacleMaps/933.746.5.bmp | Bin 0 -> 2846 bytes .../Pathfinding/ObstacleMaps/933.746.6.bmp | Bin 0 -> 1542 bytes .../Pathfinding/ObstacleMaps/933.746.7.bmp | Bin 0 -> 20054 bytes .../Pathfinding/ObstacleMaps/938.777.1.bmp | Bin 0 -> 141062 bytes .../Pathfinding/ObstacleMaps/938.777.2.bmp | Bin 0 -> 8174 bytes .../Pathfinding/ObstacleMaps/952.783.1.bmp | Bin 0 -> 33398 bytes .../Pathfinding/ObstacleMaps/969.785.1.bmp | Bin 0 -> 40622 bytes .../Pathfinding/ObstacleMaps/969.785.2.bmp | Bin 0 -> 8846 bytes .../Pathfinding/ObstacleMaps/970.789.1.bmp | Bin 0 -> 108734 bytes .../Pathfinding/ObstacleMaps/970.789.2.bmp | Bin 0 -> 11942 bytes .../Pathfinding/ObstacleMaps/973.792.1.bmp | Bin 0 -> 34942 bytes .../Pathfinding/ObstacleMaps/973.792.2.bmp | Bin 0 -> 44678 bytes .../Pathfinding/ObstacleMaps/973.792.3.bmp | Bin 0 -> 34702 bytes .../Pathfinding/ObstacleMaps/974.787.1.bmp | Bin 0 -> 36098 bytes .../Pathfinding/ObstacleMaps/974.787.2.bmp | Bin 0 -> 24398 bytes .../Pathfinding/ObstacleMaps/975.778.1.bmp | Bin 0 -> 1383122 bytes .../Pathfinding/ObstacleMaps/977.780.1.bmp | Bin 0 -> 120302 bytes .../Pathfinding/ObstacleMaps/978.786.1.bmp | Bin 0 -> 16694 bytes .../Pathfinding/ObstacleMaps/978.786.2.bmp | Bin 0 -> 16142 bytes BossMod/Pathfinding/ObstacleMaps/maplist.json | 3158 ++++++++++++++++- 242 files changed, 3157 insertions(+), 1 deletion(-) create mode 100644 BossMod/Pathfinding/ObstacleMaps/1010.812.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1010.812.2.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1010.812.3.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1010.812.4.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1010.812.5.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1010.812.6.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1010.812.7.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1011.793.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1012.804.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1022.813.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1050.844.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1050.844.2.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1050.844.3.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1070.869.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1070.869.2.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1070.869.3.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1097.896.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1097.896.2.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1097.896.3.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1099.897.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1099.897.2.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1100.898.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1100.898.2.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1101.899.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1101.899.2.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1102.900.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1102.900.2.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1103.901.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1103.901.2.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1103.901.3.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1104.902.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1104.902.2.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1105.903.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1105.903.2.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1106.904.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1106.904.2.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1106.904.3.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1107.905.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1107.905.2.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1108.906.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1108.906.2.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1108.906.3.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1108.906.4.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1110.38.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1110.38.2.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1110.38.3.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1110.38.6.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1111.141.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1112.171.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1112.171.2.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1112.171.3.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1113.182.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1113.182.2.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1113.182.3.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1113.182.4.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1114.219.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1126.822.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1143.240.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1144.241.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1146.247.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1146.247.2.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1164.823.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1164.823.4.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1172.279.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1173.585.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1173.585.2.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1174.611.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1174.611.2.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1177.960.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1177.960.2.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1193.824.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1193.824.2.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1193.824.3.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1193.824.4.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1193.824.5.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1194.829.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1194.829.2.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1194.829.3.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1198.831.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1199.827.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1199.827.2.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1199.827.3.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1199.827.4.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1208.825.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1208.825.2.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1208.825.3.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1208.825.4.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1208.825.5.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1233.1000.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/1236.1002.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/146.0.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/147.0.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/147.0.2.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/148.0.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/156.0.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/156.0.2.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/156.0.3.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/251.323.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/258.319.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/260.321.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/261.322.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/270.335.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/314.363.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/349.18.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/349.18.2.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/399.0.3.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/436.88.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/455.395.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/458.398.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/460.400.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/473.411.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/479.416.2.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/479.416.3.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/513.441.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/533.167.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/561.174.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/561.174.2.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/562.175.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/562.175.2.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/563.176.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/563.176.2.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/564.177.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/564.177.2.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/565.178.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/565.178.2.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/593.204.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/593.204.2.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/594.205.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/594.205.2.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/595.206.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/595.206.2.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/596.207.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/596.207.2.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/597.208.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/597.208.2.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/598.209.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/598.209.2.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/599.210.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/599.210.2.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/600.211.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/600.211.2.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/601.212.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/601.212.2.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/602.213.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/602.213.2.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/603.214.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/603.214.2.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/604.215.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/604.215.2.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/605.216.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/605.216.2.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/606.217.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/606.217.2.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/607.218.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/607.218.2.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/607.218.3.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/613.0.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/659.464.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/668.458.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/671.466.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/684.269.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/686.467.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/757.472.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/768.536.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/768.536.2.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/768.536.3.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/768.536.4.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/770.540.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/770.540.2.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/771.541.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/771.541.2.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/771.541.3.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/772.542.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/772.542.2.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/772.542.3.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/773.544.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/773.544.2.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/773.544.3.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/774.546.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/774.546.2.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/774.546.3.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/775.548.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/775.548.2.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/775.548.3.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/775.548.4.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/782.543.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/782.543.2.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/782.543.3.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/783.545.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/783.545.2.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/783.545.3.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/784.547.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/784.547.2.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/784.547.3.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/784.547.4.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/785.549.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/785.549.2.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/785.549.3.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/821.649.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/821.649.2.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/822.659.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/822.659.2.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/823.651.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/836.656.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/836.656.2.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/837.676.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/838.652.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/838.652.2.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/838.652.3.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/861.662.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/862.663.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/864.665.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/864.665.2.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/884.692.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/898.714.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/916.737.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/916.737.2.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/920.735.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/933.746.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/933.746.2.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/933.746.3.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/933.746.4.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/933.746.5.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/933.746.6.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/933.746.7.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/938.777.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/938.777.2.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/952.783.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/969.785.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/969.785.2.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/970.789.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/970.789.2.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/973.792.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/973.792.2.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/973.792.3.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/974.787.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/974.787.2.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/975.778.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/977.780.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/978.786.1.bmp create mode 100644 BossMod/Pathfinding/ObstacleMaps/978.786.2.bmp diff --git a/BossMod/Pathfinding/ObstacleMaps/1010.812.1.bmp b/BossMod/Pathfinding/ObstacleMaps/1010.812.1.bmp new file mode 100644 index 0000000000000000000000000000000000000000..28cd4667e784e65e33dd7bcde09a9ecbe93dc767 GIT binary patch literal 17870 zcmeI2&u-i{5XPwruzCo*Ir?B^d+aelF9sT9ivm6N9SrmZa?GK?G6>K&>Rspq^c5<= z56~@g=oa0q`ps}Cl3GdpW5-Q`C9o1D@yBmwNDU>~-~agg4~ol6Y`@0u*Gj41j(uM# zRBZVY75e#Q+xPxqP_KJiba0*znlsn;=eYP2<2+ydXt?@0E-n^+?Hm_B8m|7C#AWY1 z3TqMn_H!#sg!^YI9g}i|`?rvrGc%@l45Q(WB6c2J%di&VO2?tp&Qfj{dgYEH{_WIL z*VeB^xV?Jrw|4aicPQlgIR_(p{jSW;{j06>$*)E9_S=~o;zMzDp>jS_||S&=ulfbSBrW(;?SbbOE9ANY&fLOd|GKDuhO7E_XzAkFCUbWW#Nm@ge}n}?8Qr(m&XFE& zthX4Ohv!UctL}33glm5a;}W&grc(068;2;@HJU>faEcPZQd~NvN;%1StfwWvpf}dj zbXH0*ejS|Bd?A~Y?na#PZ&ptr>?S!rD{TThr#UQFk$8@|O-}_`VwrQ8*tuq|%jSlT zGWC3pa_Y?Z4b5yk-HHCVaNoLS;-7bdtND7Shcs@b%k&1WZl!~`9yL6360Xti|BFi} zmgJ6KWPP9Y&vG-*gAdNN(&Ln#T~VB<8wWklRi`flNnHJl6SBQqnWg9C`r>i926lSW zfy9&iTM=g+GA1W+*YI!1BbK`|m7%|h@w>VN*O_**U3E7vxVprtkRw;|RA?qcI(O4# zaaQ2<&ueg4Nkp&15tRx5)DvmA!8*A$&)0_A^nJ(FGc{i^om#HcJ?E0L+ef!AVH-&no{+&6>BvNWje)9yFJ6|4&yLir)X4`r3 zmCs>;Nb|4y!URV2k~vH&npfCxT#`Bb?^mZgws%TF&#`ZR(bz8_+vV7e7jl5=@Dm^na-(90!6nuFS_pdwHT=(Cef#F^Im? z*l|!gm8;tZZ3hlr&idEkA{B11YAJ>%+!eRrRzp71bXZ9qyyWB_a(H~S_cnT$2W)z- zyCv?H^`0r3TS?rTuG`i9-#g~6N&J+v-#ST8a}!nng?tTDO1OOvXXIF~n8RyDXZ(9Y zyOX$h{?XeQm3oJlLcD(%?h;>kmO06X%pKO2TSd8!Iz}Nq$2I&v+)H+LOnG*$xfj}8 zEOCMj{=K`8cVjPBOu=5?_iA#GPce;M9 zk~#Qi<~4CQOY_C)!OjE4g%B=Rh1}vi6TRv{_g|=&!mazeJWhOhJkE@!=+S%;3of6I z{lg~|H||JGGz$zz^JU;}Qn*e3PUe~A=pO*X`(aA&0l6$Y-~Tb#d6j7A8~VsqwaONx z`YHd`vY?oF!auDBDMDBKWbPL0QA-S!Qx3_MN37-Rp5Cp`HQiVb$#t6h&gT?L=pQ(& zn-l&~)1W*UhgfY)Je#*{HODj1qJtAX_-8rI|FM_DY3_2Gdr8+udbG$v4?mPf zIYm1xMfk)o#T#zq33Jl7)3(EYo|E9ta!2*d_7m#0e0q+@47JIVJ^qc&k;afTQnpO+NPmdX>B}&#t%VdVJq*_QYwrf|5QC s4RQFHlEO(-`-sJd8JytRdS}i=V8|~)K;+;&4pUJ{yC0^=PbZ%L0onZs8vpR007ZvoVWl0 literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/1010.812.3.bmp b/BossMod/Pathfinding/ObstacleMaps/1010.812.3.bmp new file mode 100644 index 0000000000000000000000000000000000000000..245da8e01a2d35cdb0cf5fe36085dece00c5d071 GIT binary patch literal 15038 zcmeI2&2H>86vrJRH7pRrvWqL`E?HiQO$CS|_Pj$SUVvp6R~lbc;;~TP1WSE^pe_hv z?u7q2{>+CRJH0K1JC2M~@qrEwSEW+ZLwV;7=#MSf v=?uRnd1g#h&hz7ZRpBv>wh^E`_msH ziJh=*6H{-{Y08;ySI)E>7`cng?nK<6Q+$8mPchT)BC{@GTi-0MB9+}-<0z+w^!36j z;x!1JF}H4zamPT%Rb5wCc?8o6<4b#Bfn#lL+qvOg#prazps_As`Y2Po;a$b(94#ZJ zw*6NbI7V?R@@F?;S`(&t40^GjFm|PlGu;M86*7AIP5n_xe>77K59sCN)@CvHAArHn z@ZkjIS;4KewoP;}Iqneu569>wsJbuFF--gOI0i}E>{3UT2eD2vs*xO;5hG~g#$up^ z*ut1~iFKq|4=@tzNNSywTEPj)jYW(ZX2NKH7Ih4O!y?12z7N*|b3+D?jYQo17@D~r zs9h7Dpj$CG{`G$FwseknX zc2qljY;Rd#JP*^rw#hVH^=C(nbwHcB%DjR^r)xZ;4thVTnd@OtOw5^Ah8c!_ z%wPbSX7F?xGy5TjIeHyz%~Oo=2Riu-Or}6>X5fMz0uwQ1Td4CW2KTgB2iulR25~U{ zY+>?afS4D@%`+=`5X9R1Lvn|Bz6DIr7^6YJ>H^|&#$ zfuS6wlBI(mR41gDEv>*>hbM|#dzbvd<&eSY(=bwK9jX6La1uMx@z3TZ+qBaZI!aRx zIG;%RMpTmNNQOr9>%n`{*>~FOu~48hX7twFMC#0pBQVOHg1GT0ln4KBMrsF_^UYk-2cM%6 zh9(eCR*$_Hh8BcU+vxxCN*Qv!m}wJ?q7hLhg9wd5mHet+Rz;+xBLV;85e1;DKg~^Vs^+t}~4^ zG&2;pQU)dzG5Pn@+xCEThfeQ2v@Rp2;~0z?_>+;No`G#gih&>A)uKAZOm(EZF4Nf$ z_xX&m`RN&*eMX1!z(vbf=$0LPj+(or8JgSq%=Peq7`$xe{qIHoyn{cYY7wGYv2oj* z#a+i5F_1#dI-7%bq&NdE7pTt?Ek%`)?vuDQaoR?xu*CBoeBMf=4}yT&NnosTuWcUog6 z>F`K~QqTCarySLVT4y?VD~RieL7b`4At=<5N}6f8kNui5iZ2AV@pG=V-T9cuj1YE$ zTC8n~FJpa^T*1UL$KYUf&_vZn;frQq3ByRp1cT~pdT>)`o$X9@a!Jjq3oLc;?D zq)3iZP{wo@>G1N+?5=mc_E|{?1&EcrUhmJ}%tn z*wE;1!UnL(x-onOy48Ay*w*S`=cl$g8vei`;!29+qGst;lT~16M%QAy9Gt{C3fP!5 za=yGoKv0&^*7mE%LeqMaW^WI`eH|zcc z3+G*8G5(mjHTb|F7mH(Q58LWt&t**PCP&5Nb2j%de^TO;dB|eT_OJ|#HcP9)YKZj- zmaSmI+1#MCN-NC<@~!G*WymnqR(A`Ab&puOZ3C6 z(Qqta2el5*K6{MkJ7HK7h4I(2c}>=wza5gfH8!u$l1|+w#!0lDd8mm_sVwC@;aS+i|*&TP&dT#{6?676ku!R)meSA&h!cVRq(Q)30Ek|)Unh1avV68RkiMP zQ!}lCPP6zU=af#`tk)*}i>+{T(3l9^+}2l1!HY(?1^=3X7Z$TR#^OGhEoL z@v-rTqpigj$Ti0~z-5c9Dd-kG4DX6AvLf8Aj=MOS*JYCUfnJeXSFi~w_-)!O(ZUcu zi*(@*?fbB1(!e*MX5QE})BZ%)RB_<4JN{W_c6jIbexKQ`=V#UCbJAF7`VGt8&>;6U k+_vl_oW2H=Q>Y=ey0?_(4dCe}#2=St5nZ#Ze)?P4FW&5#_y7O^ literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/1010.812.5.bmp b/BossMod/Pathfinding/ObstacleMaps/1010.812.5.bmp new file mode 100644 index 0000000000000000000000000000000000000000..3676197e848065dda3f4832cf7908f1534878e72 GIT binary patch literal 16598 zcmeI1zi-?&6vuhJqRMcvRu6`+V@HoS1iqkq|A+e%JbDOl0=yQ@Kh!~Ohb}>~b*;K* zxK6p@VD|e+K9ZtDiqa)cjEcZnl=MFQzW4Y;l>FmQf4vf_+~V&K_&qFy`2A7Jg+PVN z3smUmm%Wt!si~LJl*gW%kxMfp#GHdU2Q)qAaWLm#9tZkCG0%m0F3fXbo(nny^IQ<3 z;N7*9nfq(Ih7y@#T82)>)lS?E?sx`cV_9g0!v#0{k}K|LbZW#;UX&x4Cd#Z_`&=_R z2g9s7I?t6URo=$Mvu!gaCn=tTM(hKoHc*_YCot7W=BT^~&!%GE}??;z{ZlW-*>Yp4)j#>QvXtxi&+KN;C(R5K|bl zE|G5+ydDU#CY{ILTtjCHqr*`xdO9keULA5M!Ss%U2-BqU7BWJw*L8|v$8c16!+fPu zjbdyg@jkUCtYa_WK@ph?)}+HM*F%2*NIlKmgExOjRJ_qrL8)GD8jpy~rG5QIFb0I?JPBTj>n-+tUM+L+g zyppwzcG3qgE>l?Y~jnQCX!c9AN+KgD+xsb&mZ`df0X8d>(IxcU}8DiiF z&4tz&9bibhy&eqf5QAoG{M(Bnal^6mQTREouD%%p8qkkH9IM_HO=hPubo-S zMsKx8#PcPY0#j+<`<-uv1@M5iCya*{l$t)m@S=i=!sSecnz4B+Ka$SA4qsfz$kS;v z*v6?svnnVvGc|9NNHq?q;`%3<>*vR0K7U#{h%uM23WlJ~+m~jpCiwR41cnlon}cu2 z7-flHjIrCvxHF_^-%y3!3td}Vs9_mv5T`T5}&DBvcwY_BbZ{?p@N739^rpaXZF+e(#m^D7k z>v(R|!GsXTb2Qh>KcKT^W^-dBMkQn#k2&m_d6{IYUgqk1b6Fiioyy#_zP+XkDjM6Z z0b@gDMkq!#WQSb9TpJmo7|PpN27Nk;Y4xd6f3Y)8M16aYp$nbHMtCQ(7{pUsrZFm= zK6N>OZwJbOwcOcS)VB^}k#Ou7o#H^_x~((B?B$z$#x(Z%8Jf=Y!Aki?8EZh{^WtSKo5fw{ zP0Dv-Svde7sT+3|XVi1S8n&6O=|z3p>9m=3WpVWBKE}Yvi^n0FInZd)7oCo06jYVY z6sDoCfvU0VY@OOMVtWKkxsDgkf%%|w-Oo@vuF(4e4R|x?`;zV`!jrB)ec|*+JXPqHe}B6~!Oy5(jneCNMW()}5By7uxZN z19S@gmeaQL&jLm^U`FP8O$>g?Vs*4tXWP;T2TY$y=i1D8^QV)Y_=P!d&pdDc0e1E> AhyVZp literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/1010.812.6.bmp b/BossMod/Pathfinding/ObstacleMaps/1010.812.6.bmp new file mode 100644 index 0000000000000000000000000000000000000000..28cd4667e784e65e33dd7bcde09a9ecbe93dc767 GIT binary patch literal 17870 zcmeI2&u-i{5XPwruzCo*Ir?B^d+aelF9sT9ivm6N9SrmZa?GK?G6>K&>Rspq^c5<= z56~@g=oa0q`ps}Cl3GdpW5-Q`C9o1D@yBmwNDU>~-~agg4~ol6Y`@0u*Gj41j(uM# zRBZVY75e#Q+xPxqP_KJiba0*znlsn;=eYP2<2+ydXt?@0E-n^+?Hm_B8m|7C#AWY1 z3TqMn_H!#sg!^YI9g}i|`?rvrGc%@l45Q(WB6c2J%di&VO2?tp&Qfj{dgYEH{_WIL z*VeB^xV?Jrw|4aicPQlgIR_(p{jSW;{j06>$*)E9_S=~o;zMzDp>jS_||S&=ulfbSBrW(;?SbbOE9ANY&fLOd|GKDuhO7E_XzAkFCUbWW#Nm@ge}n}?8Qr(m&XFE& zthX4Ohv!UctL}33glm5a;}W&grc(068;2;@HJU>faEcPZQd~NvN;%1StfwWvpf}dj zbXH0*ejS|Bd?A~Y?na#PZ&ptr>?S!rD{TThr#UQFk$8@|O-}_`VwrQ8*tuq|%jSlT zGWC3pa_Y?Z4b5yk-HHCVaNoLS;-7bdtND7Shcs@b%k&1WZl!~`9yL6360Xti|BFi} zmgJ6KWPP9Y&vG-*gAdNN(&Ln#T~VB<8wWklRi`flNnHJl6SBQqnWg9C`r>i926lSW zfy9&iTM=g+GA1W+*YI!1BbK`|m7%|h@w>VN*O_**U3E7vxVprtkRw;|RA?qcI(O4# zaaQ2<&ueg4Nkp&15tRx5)DvmA!8*A$&)0_A^nJ(FGc{i^om#HcJ?E0L+ef!AVH-&no{+&6>BvNWje)9yFJ6|4&yLir)X4`r3 zmCs>;Nb|4y!URV2k~vH&npfCxT#`Bb?^mZgws%TF&#`ZR(bz8_+vV7e7jl5=@Dm^na-(90!6nuFS_pdwHT=(Cef#F^Im? z*l|!gm8;tZZ3hlr&idEkA{B11YAJ>%+!eRrRzp71bXZ9qyyWB_a(H~S_cnT$2W)z- zyCv?H^`0r3TS?rTuG`i9-#g~6N&J+v-#ST8a}!nng?tTDO1OOvXXIF~n8RyDXZ(9Y zyOX$h{?XeQm3oJlLcD(%?h;>kmO06X%pKO2TSd8!Iz}Nq$2I&v+)H+LOnG*$xfj}8 zEOCMj{=K`8cVjPBOu=5?_iA#GPce;M9 zk~#Qi<~4CQOY_C)!OjE4g%B=Rh1}vi6TRv{_g|=&!mazeJWhOhJkE@!=+S%;3of6I z{lg~|H||JGGz$zz^JU;}Qn*e3PUe~A=pO*X`(aA&0l6$Y-~Tb#d6j7A8~VsqwaONx z`YHd`vY?oF!auDBDMDBKWbPL0QA-S!Qx3_MN37-Rp5Cp`HQiVb$#t6h&gT?L=pQ(& zn-l&~)1W*UhgfY)Je#*{HODj1qJtAX_-8rI|FM_DY3_2Gdr8+udbG$v4?mPf zIYm1xMfk)o#T#zq33Jl7)3(EYo|E9ta!2*d_7m#0e0q+@47JIVJ^qc&k;afTQnpO+NPmdX>B}&#t%VdVJq*_QYwrf|5QC s4RQFHlEO(-`-sJd8JytRdS}i=V8|~)K;+;&4pUJ{yC0^=PbZ%L0onZs8vp2AEie_V6cY(t~87+KG^**>b}tsfQ0~Zy2ZtYsU4-M5dr|t`wqqc literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/1011.793.1.bmp b/BossMod/Pathfinding/ObstacleMaps/1011.793.1.bmp new file mode 100644 index 0000000000000000000000000000000000000000..1e30cd539fb5228fb257473d9c996015cc2d2b03 GIT binary patch literal 82046 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 literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/1012.804.1.bmp b/BossMod/Pathfinding/ObstacleMaps/1012.804.1.bmp new file mode 100644 index 0000000000000000000000000000000000000000..8294b055f206ebbe163e9ecf91f092709bd9b37c GIT binary patch literal 986 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 literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/1050.844.2.bmp b/BossMod/Pathfinding/ObstacleMaps/1050.844.2.bmp new file mode 100644 index 0000000000000000000000000000000000000000..6b145b83e601eb9f179b6dfe86a46ae01b23a0a3 GIT binary patch literal 16070 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 AZ~y=R literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/1070.869.1.bmp b/BossMod/Pathfinding/ObstacleMaps/1070.869.1.bmp new file mode 100644 index 0000000000000000000000000000000000000000..6feeaff8102ab4675f1deee31a857989841da24c GIT binary patch literal 26774 zcmeI3KaT9U5r;YMU>q1bP8}FZ9qs{)C&0Py;UjFYFtym!@XMU;QI_@w4)+Kq@B)W# zj1Am|$1VS=ibau<(A{d5fF8^cGg6TvKNYKrf27g;?)QKBgX8o8$KT-hPd{_+Z>Mp5 za1U~Ujz3SoQ;BnaY)|3P&X^Oz!@Q(DA6z?QP6)1_7d7Xd>zWyJz}sd%&CSuA#~5m6 z2;lq70n_J9i*TGkX3RK6kQoyoojRx5IqS^DKZd;jxYg&C!r}3g%ihRfasfe)R-uo z44Feh%J_-Mwd*-C0~SwWHg{cCcaYrU4$MPg+pntE1lSSx3;6dqc6*$En*a8T6gUdpU%Ydx7%}%y<%qeWKXDRu%|r&!%3M2d+*HjNl(jX z1Z8%_ZcB@2uD*>&t@n5~=p}-Tn0vef+~ZxPJRPPDhmnuQ=#V6oXi$l>#Jo2j+3~5h6_cE#le-m@ zI^P-VNmHn|W{$b*WbIQ>J;A(h5dH*6J; z(^#1!$BL=5$)eV>;Q2b{vLQ-3{C=9Q1Vu#^rfXR$^vq?2aO{vN{w`1N%Q$5?<^C;Y zdc44VrgbIHhV(8sF|#m^@$gTj$@v0v0P{FaGqfg3yMh@Gf8WBy9lLL^zIbhv=dOu~ zI(cf7YUlODRrdg9pP01Nc$Txm=!SdzAzhc#WhO8cv*(5xPE0j&B45S)WjECphmpd) z6b6X(0KAI%+qA1-omeL3uL`CYS&mmRzt#ap{bU)ETx$Rc}i!Q^@CnQk?X{PoY+k=1hg9^V4|h2a$_LQ?O6(-anwmE-W2MttM)mYp+jEVwUREG4#L{~E zmC|ZnI`8+D*6T%g&rCit)$=}>Q9bgY^Q0E&S>v-Wg6X{9GxM;@>~EPv^4NT=nf<_e z`sg~5stNPFo_St+Dw$a1m&za_GRhm zEHiE7vUzZiYULqPB&M&Kxj|X1@<0uyQ3B&Fn53xML7JW4)27j!n?UcS3c<}@h+JSs zQnT>DTqRNrOzqZHdXiJVEIcsGy1B|ct{AAeD>0A0&n3fLCtO+RiAK4>ia?I$Nhw`h zW4_D@VD>94EjoQT{7+>*$Lz0Myp@?7o)Pw7o;LRVjC%Rf9?bGxCg13SkFql7gio`J zCd}_@=uhFPuS>S)K7CiWv0(o2@&1{y8^>=yzI4@S3)M1OcjAg%;9WW9>ay-VGVx^Z zoUxwnfGPGX+rERyskG;?oDj>)m*kL;m5=sdt}HN@bStkf^gKR(Pwy3VCs@|KR*tFf zc`JcQiBgM2BNK}4$s1yZ)b|`qsqZZYef7*7T-QeBRBzFD?64&HsnSO2Ei+@XUUrGb z=h-djc>}*?<|391?D@__kZQ=ik9Qcut2H*CBU)2>AMY@o;n=jaXJ8N6`smd%4aa-- z(Va6b=eoEW58-gvMqV5jNypLnH zbo$h&=j&w3Ympbzz6g{QP3i z9E!J1#ay#NTb z+QH0A^`t(Zc3={>Db4KJ#L~v^Obz+QO=2==ZO_I< z_*FCS*PfW!ie%#>`5!OE-Y>K6d*en)Cy|JL|55v{g^g!rens3ymNv(u3+w3zGvqkZ vr}I$O2YtPycWXR9V{06~Fp8w4%aQ)ZY0PBwpMAQ6;ps<1mZCnZaQ6Ivkv2=i literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/1070.869.2.bmp b/BossMod/Pathfinding/ObstacleMaps/1070.869.2.bmp new file mode 100644 index 0000000000000000000000000000000000000000..153a8ad0cd18b93eff1f27f1f62026f6bae12fdd GIT binary patch literal 67502 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 literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/1097.896.1.bmp b/BossMod/Pathfinding/ObstacleMaps/1097.896.1.bmp new file mode 100644 index 0000000000000000000000000000000000000000..fef5fa6238038620acfcbc423b368fd945d79d1d GIT binary patch literal 19646 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 literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/1097.896.3.bmp b/BossMod/Pathfinding/ObstacleMaps/1097.896.3.bmp new file mode 100644 index 0000000000000000000000000000000000000000..866f538a99ec00775b7cf1fd8cc03343ca7cc720 GIT binary patch literal 33382 zcmeI4L5}6P4M5$fMP)HSZ?j0?ZI;OeM!@WIhgoIa2M8b`r^zOF5YQJ9FceFsu7nF7bqz{2#j>(3lkI&jkt`sj5;bgFzTVig0@CnXf#TD z#HGZ7wnkiNG)jBKrNn}^MqFq#N_)hm#Dca)Txc{(d&H&0g0@CnXf#TD#HGZ7wnkiN zG)jBKrNn}^MqFq#N_)hm#Dca)Txc{(`&)@i^7uKu7S{!>`?=2o?~3aCG`JFt($dCd zndUNxq^0GY(w>&{N_&Ijvth*L4-yyMKDhY7u?wh;i&Mr^%S}pqN=|!Sd7pIq?(>`B zbnEa`uEXHis$K4n%lDqwV}4ww-M=q=XZy=zGBmE;b?f(UXnVQGwErqrC-($wcLkDg zFJyue?vs+E-!+rin`|*C;%3T`lOjH}etE-q(o0@n9fgR|m4Dl<%E3%NeNWg#0{ZCT z;;JK?2U?Z~b-IZ6tu#B}>?RLA942QxWL%yewRb3w%@5kx%n?6(xUhOj?12lfbZEBi zY7QbytAoXs4J&>^gqs|$-V6%{hs^`S8A*aH-M`}MnI*2Fh(k*Y+;~KM9Wr#-1D$zU z;v&LpIzUE}E=%{XpkqM-nkBb9ob0vgvyfCAsBUZK;iT5wOF{}cs&26laANmr)mcs{ z8heaYn@g8ET!}m=aweagym|~L92n8qfM3YX`Q+r)XO95PD#*1ixGrlSxGlJOu*0j% znJDFQ^bcGXAIxm0+o}-`W1HRB6c3G!gH+31u{!d}$!p=Z2&Jkz(O<>yh4T`7Ps-VK zuvm@xWR)FW-U=7C+=|?M(A=Ls3Rf;B`|95V>)BdHcvdbZF`j1C;9oqomvbv}mIqd8 zEX2sFL4iRim$w>NhStSs31lLVHCKU~kA5A` z_goqzkeWQ|=kq|)7xXR4A)N6Q+h@mtGpGmLnffN@I7e!7Q#>?0Nnh}D#_o>gTNnY4 zJ_FV!6ph<=6aHY3n|1 z(90Mox#%eg)fuSe-u5M$?2!^VvzNENwZEIoTkTz(r}-Ic2qM}sKew+nSWXoO+rEyA zsn${M2S3x>)t+)c?g7O7kR~DNtEuh7OdAX2yZ>+ z7;fpPKK2sw^~^aUhbSEVB)#WNNRRov_q+#oOf6^5M?LQWds@z(k9yt%*{J2t2fgU= zJ;})MTCOYkYkRnT*;?F`;4Y-$@WQO&JaDGzRjuH3T-?1X6RF3QLGMotl!#K|{aKj9(g!r+ce7td2%UfI4Y;kUxYdY|O;`xqzB&v>(` z$m_(JtEFQ5v|QYG6&r8d=M`Lf+h*B0TnZf){G|rp=>hAx-8|CBDfZ9!zdPjVnf~X; zd~~AY9Q`yMdPf!H>`~Zp9zMWz3}2~$JKG4qk)3o4FrM6|4?HnEu+KRjWKz zS%yynO+8qLzpC^@g> zwD!Io&UQq-RtdUo3GOHAv3ex;bGFB=O6Q@B%l(|GeD4ux>s`;yJ#JMx+NX(wt3nwC z+PLVS&Klm4hE%)ndS%@@C8xYyB7gnZ2*keoU3XUww;`&#dHAeXce|v$ebJ_;c3Zl8 zyT1SOx6hy6Gp(Oqd0U|6oYLN;?yk8s-gnN|>( z{s8m)2P1EZko$W}iRnk~i)A_*A`e`Ub5G!2ylD(xcVpSUxcfNVUS7Pd9cf9B3oRw4 zAGk@u1>}Ba#%qW?a$ihCtL}El{aelxu|5l6ZyOL?2TrXd*M*aQ!egk!C=2!p# literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/1099.897.1.bmp b/BossMod/Pathfinding/ObstacleMaps/1099.897.1.bmp new file mode 100644 index 0000000000000000000000000000000000000000..01ecdc1738a23b3d83c542ce4212854d63e27c33 GIT binary patch literal 50302 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 Mu`_aWEzf}d4+Jql%m4rY literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/1099.897.2.bmp b/BossMod/Pathfinding/ObstacleMaps/1099.897.2.bmp new file mode 100644 index 0000000000000000000000000000000000000000..417a192a64ee1da6bc0ba21eecf200bd55520973 GIT binary patch literal 49422 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 F{trJSl0N_d literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/1100.898.1.bmp b/BossMod/Pathfinding/ObstacleMaps/1100.898.1.bmp new file mode 100644 index 0000000000000000000000000000000000000000..23b19cbc3da40812386055779a09dd4ca3f3c495 GIT binary patch literal 49422 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 W;2mf_+#Vs_Z`NW#;CSA=`TidO){sg7 literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/1100.898.2.bmp b/BossMod/Pathfinding/ObstacleMaps/1100.898.2.bmp new file mode 100644 index 0000000000000000000000000000000000000000..0d14bb9669afafb60d5896ebe84f44d0e119dbb4 GIT binary patch literal 50302 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 literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/1101.899.2.bmp b/BossMod/Pathfinding/ObstacleMaps/1101.899.2.bmp new file mode 100644 index 0000000000000000000000000000000000000000..c0ae8691c895848a6e72ef63a74ac42c005d955e GIT binary patch literal 44142 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 literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/1102.900.2.bmp b/BossMod/Pathfinding/ObstacleMaps/1102.900.2.bmp new file mode 100644 index 0000000000000000000000000000000000000000..c0ae8691c895848a6e72ef63a74ac42c005d955e GIT binary patch literal 44142 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 LZH4#kZrl5RMHx$& literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/1103.901.2.bmp b/BossMod/Pathfinding/ObstacleMaps/1103.901.2.bmp new file mode 100644 index 0000000000000000000000000000000000000000..458f28fac17c2a525563c4c9d92d058a7048a8c1 GIT binary patch literal 37598 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 literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/1103.901.3.bmp b/BossMod/Pathfinding/ObstacleMaps/1103.901.3.bmp new file mode 100644 index 0000000000000000000000000000000000000000..12953b6ca6aeb6e85e032932e2f0966a7d3188bd GIT binary patch literal 998 zcmchWJr2S!424~FfQ=(`8}iFCkRQgA{}f|p%Emqc zav7m{T9^))%0zd>-K{tyDH%y;k0WVzMp8!@xRo2Yl{2kiw#cbgEhB6DY^_DTjlrZESDz E4S{@T%K!iX literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/1104.902.1.bmp b/BossMod/Pathfinding/ObstacleMaps/1104.902.1.bmp new file mode 100644 index 0000000000000000000000000000000000000000..458f28fac17c2a525563c4c9d92d058a7048a8c1 GIT binary patch literal 37598 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 literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/1104.902.2.bmp b/BossMod/Pathfinding/ObstacleMaps/1104.902.2.bmp new file mode 100644 index 0000000000000000000000000000000000000000..309b9193b8273418b6730ee8bdd08dfd7cc1bde6 GIT binary patch literal 37790 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 LZH4#kZrl5RMHx$& literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/1105.903.1.bmp b/BossMod/Pathfinding/ObstacleMaps/1105.903.1.bmp new file mode 100644 index 0000000000000000000000000000000000000000..61d452784d6e37844fb22265361b184ce2ff5a3e GIT binary patch literal 38150 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 D$o1T$ literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/1105.903.2.bmp b/BossMod/Pathfinding/ObstacleMaps/1105.903.2.bmp new file mode 100644 index 0000000000000000000000000000000000000000..cde383227f7a027b0cec5a10256fec205dc5e94a GIT binary patch literal 39806 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 D$o1T$ literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/1106.904.2.bmp b/BossMod/Pathfinding/ObstacleMaps/1106.904.2.bmp new file mode 100644 index 0000000000000000000000000000000000000000..cde383227f7a027b0cec5a10256fec205dc5e94a GIT binary patch literal 39806 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 R+3uL=@Wwv~z@?_1^WWt!F;cSn#*g35 zB-!Ve*ISb3Y0i&xyv^}G#@J|+_cGnjnMZz(>BLXp^cV9N(L;XGi7p&C#U2jR{UV?< zr+~^#hXs5KMgj>>2|m<*XZ~H;6ES&;%eyR5So`F8FEw5QIF@jrw=9qkv|N z0)n-G>UL#E6ck)oz{^8{ULFcu*~=x8g3s97K|?F|s7D$+;}-t10B2m2KQG9&oYKjH z{x`n1{~XWzr=;75!Y(K91IqiSBa}pQsXN3O#D_3_o#NM0* z(*h}Xv*SE_132&A0PX`X7+0bfSTvs(xPvPM4sZhlM^}dY7!ZWq7!ZsbSp9d4#}RVW bgq{uwJ>B%<1SR|jx15mgpipB&`ak#qDUN{S literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/1107.905.1.bmp b/BossMod/Pathfinding/ObstacleMaps/1107.905.1.bmp new file mode 100644 index 0000000000000000000000000000000000000000..8bb15b5388db276246b8516d7ea23f4dc32d2bb1 GIT binary patch literal 66854 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 literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/1107.905.2.bmp b/BossMod/Pathfinding/ObstacleMaps/1107.905.2.bmp new file mode 100644 index 0000000000000000000000000000000000000000..8f0013187121fb30ed35bfce84bb56bc501adb67 GIT binary patch literal 66670 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 literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/1108.906.1.bmp b/BossMod/Pathfinding/ObstacleMaps/1108.906.1.bmp new file mode 100644 index 0000000000000000000000000000000000000000..8bb15b5388db276246b8516d7ea23f4dc32d2bb1 GIT binary patch literal 66854 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 literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/1108.906.2.bmp b/BossMod/Pathfinding/ObstacleMaps/1108.906.2.bmp new file mode 100644 index 0000000000000000000000000000000000000000..8f0013187121fb30ed35bfce84bb56bc501adb67 GIT binary patch literal 66670 zcmeI5OOE77a)#L&0jXVGKmfN|=nNvDy{;l?sg+1Ti(bwVbd)Bb18Ai^1sz~&poMCn z?4>A$~8|NZA*Ow-@~ ze4al{RnOa|ziR)LO8c{(k1fA@%>Ib`b$Z18n0K3A9t()Ozotwsar;BgJ+Z$$6cIOX ziT$Lcye0JXL%b`GIKO4~v_29N_U57du)+LEH@g@12My+;*;`?Q!8Co)QMmRtE4>UQ z98B#~L8Hp6j(IKJp8R2N`Y^&N{hMajX#yt7SM5`bQDxIH#9pl5`0Qq1-_Fw<-*pO3 z)2z(Nw>>&_Qd-UNeYAXQlJ}{mVP#t1%<;Wrw(~)p6yK&L%?s5=b)z{r-&%06w`HmH+K1AjNLzNwSd-@ub!`a`)R|sSixxlNeMcj%3qeDMuLj5Kn4! zm_T-#b+k}>(ns4yYhugP5=S2N$Twn=PKThpfDuQsk&hUoHH!IYwn**S*$a1x`XGJ0 zaZuoxjyYKqw?7BXdEpx%S>_mV@Z4kzA43KOW{Zi^*)vBWA8#BKI7Zx!bPceDZ-8W( zIpUyTZ31lJW5}Su9Fa%X#MyD5+9G@dB+DE#vvjhC*uvK%aEUo0hP97kFTL%XY~kw> zxWt^bZ)XklTljheE^Sj=L=0jhA0~E{Ie${@exQ6;P8N_SF_ss5YD+(Pa85+-dKPhM zC(PWpvnKM*n(*}qT;iDCMRBg`Amqcuu5wJDZnxRO*D1JkOl=X@G;VL2If#7^T{r57F6On+GH>cQ)eO);vusy+5}($frrZhGK5sYl?eB zPt!{0th^zraloJu*xa5t zf3YUoyT?AKwg^sGy9YqnjePgmh!fSKY;jHF3y;*OJ*nMe?^9i5%+a)21n*6g zKCu}V5r?!zM36QM?Ou^iR*Nu_wgOH1#AaBe6U8dFk|rcR=%r6?M`b$Ta^PPj#FiE1hcRDRAg;7xCM&DyKhkWV{6EzJry`cVzwv^1$NN9(qzrb)iG z0d`dLG_6EA$frrZhMrYMHBZw@l!JVlN4)Tqdq@$RqMvT!q%0a#nlk{DDC-A67{?Yog zvJa3Gq@n#A<$`p?iE6|ct)m>|8!<^oF;R^eqji*nd?P05C?={AW3-NPkZ;5!9mPa7 zVvN>N4)Tqdq@$RqMvT!q%0a#nlXMgl)rc`#M>)thVv>$xq8c$q>nI2LMoiLCOjIMr zXdUGs--t;%iiv8(7_Flm27^8KRgM1?<=_n?u5o5HDa*%JtBpt;>HDZj` zQ4aErn53has78#@I?6%55tDQj6V-?@T1Pp^H)4{GVxk%`M(ZdC`9@6AQA|`L#%LYo zAm4~dI*N&E#2Brk9ON4@Nk=hJjTobKl!JUDCg~_9su5$fj&hK1#3UWXL^WcJ)=>`f zjhLjPn5agK(K^aOz7dmj6cg2mF*MjZ;9Q4%QJlo+S7L1UV8h%+RB?c)|W!*Cvx?D0nSD(Y-zJi3VJ>dd}aJv!jFV; zzkSS-?PLxzT_`Vd7+>w{T%1SdQ1V-B>Y`7i7$a%|`Hmdh61s^p#nkO0* zXx(g*TjmZ;QfeZz7pl}X@|CXEgx2(!nN&psIy@WrN}5_i_u7sgrHrv-aApxSXM8OW zg}0@MysULE>)*XdX5t=6G;H9jX{x*}MdU?AZACH@e7COj`$+F2cIMU1X2(j1o#1;? zRS)2MN^Shgq$ajZfE1N;KIkMve!Ot8?kqR6@SJ@p3|mEt5+* zTNNog7o{K{@$#7<1(Zde6)0z#lx?$OBVVP}2~K6nKANaVCAmsDfv*igVaqc2X>V*f zzBRd;4SdW?2M?u89rRmc%Q2`<)fyTr$)=_iyP@?2FUi$xZ}&Zq6PaE#~!^7ZyazXj)Z47DbXyFo1Hq+ivzi*j1* zl)HYuy5sxO^UWa9TA$AXO|u#L=**aUqS&eak;@l;W&9(lmGy;BWfz+=@L6;6^2D*c z*fcx(`pQYq1(iPQvGav*k@KF^t7E_7eV;Z9Hs3NGnOPUs`XzLFp$q0gu6}uvmodp+ zDMlE&*5Pb}zJ5`YY!uTq&Xl-^=p6^Xlwsa45!2i5F?>jL=FMK5MO?*dIS`h4m$}$LPE#V^FCmLVY(pd3)lkBa*6{sF6^8TAIw$exa8hyUp zn?ZppdlsqX!4f{sXJYeM%YGk?tw41b7s*Dx7MeeGaXXStiBh1-UL_m(h@E)MmN}yX zQ-J^*`L+hneWi9p&NxxBkL@Ffk|?24BzEpAV&|RtV*ih~&fH5qJ)4mkvvoqTCgJ{sTL*SfiXN=s5Y1Ycg) z^Q#sz$Le&pB+tcowHKo7D6fudvbEIeb$a?_TmRA7uzTD%E^@zp8>C2 z^W@5j&wy91d2;2%XTU4hJh^h>GvJkLo?JQc8Su(APp+K!40z?5Cs$5<2E203lV3I` z`xC$Sx!8UzKkN6gpS9oH6Te%(*nWOLHz&d8Y3bkI?91e*;|roMK$GWjR`{%x9_G+ViJwI$;jGUx5_|8J}y)EfUunjVdTm@|OuEn0( z2;?*umf=G_pCRUcM?oK3!2*dHvO|0SRE{D8D!Xb zDw{zlY2rbz21&`~|Fc5L_pH^Uu$5TTME$OYRY$$@EMh(P+Z$(xz_0Ks~xt=*2hU3H_vgVdyj40)Cr@~T62x9 zGg&~gJE@ssRPD7;H8hP~ea)aVSwM!p=P)%aMbTm#-nJ`8+L#u@-jih5TaxsAD@qbY zK8Zb_dD+v(w8)&S^@Xprl1ue@Ma2@kHn-In!G8PerM#)PN)Ao9rHjN-`&?L-sBks_lOm`}hd9*h7h%uRjH!X%NotLL-I2XrJ1A82fo~g17n*^0 z3$yvM8ucx?4~;GEA^ZO4?QNkxMtyUR^K9NPvHxU~p8;vLXh-glF| z8%?U0yT?PJq={wR7`+pFCnd8?uFGhmQ?s&5r*0{A3Q@OxtmmGU$fLpuuP-qt=+ z@7lU_vWC!>qp_u`q!C*tDZ>hA$t7Os9V=xz~9fdNJrQeoaK$6lgwQB*@KU?ki zTxyLia#qLEvWsu2fcCfMPM*H_7@Lcw8ET~ll>xEr;#;br{cQuMoO|tebu_k$%G*^$ zvKEkXQF7%psKY|Dva#0`&dUbaW#%qyDTVA)Uvbb0x@8!#|9$uUM(kuuiyW$UzG!`D zY~7(_*|m^rTf(#$+IA#Ke!5J0#jVv*=ZVSg*YkfUp4WTAELD8ghh?UVTxF~A zK;QJ%gGXU#g0H0=`jfM{wMu2HoRLkh58v=aAWOvKbw!mgye6D`HT6KF?HoIUaqE2nBC8t zj+G6y@Fv-NV%r@v{#u1ypw#w=UGzIol(lafmp0S|-hGbyHghqbam?%%+hh^4rJ>cIXcHo`$i|rHl+?)i?#J)=*W!G26P)yYHS=q-Eb8@l$?1`R> zedK-RV*4CjIk|G;GvJkLo?JQc8Su(APp+K!40z?5Cs$5<2E203lPf1a175l2$(0kI z0k2&1 z(s4T%Bt_@7>j(zzhy>4W4a+D6u)aA1NIv>lS z$Ex+UOtab@_qK)pO?C$Dg{@nx!AhgPt|^4rODc=ya3io4_KWaPu+k*&C?ReV?v7o3 z`T(vVr4esQo!A>&?O1+MOGUKT+3Xpmveg79-kjJQWT(+q5j4Hcn70HZ3@^maeI>R^ zTG<=6mx3H4-qP4B3!RtQt=lFAS(OnqZ01bg*o$BjFZH!eb#oRfs*I>_oaMM#aA=ZA zjo4|pXsYY<0`}g5)R?z^3r+SFvx}unesxp>* ziA}?=W6HiNw(QTzOJmFFO6+t(!R#YD6r1-?UF){&OA9yF=Utj+n7!qISw!^QNe=If zaOTLetTc=C9ITxbqc6rqu;IQCI_-9wMVei=i_w?tl{?wlUE^a>vi*3-(HA*c0K03P zro=vYA2@`L)gR8Ey4L$Rv&ds5hNk-@yT{P>e-Wn?#JR0Wb_emU^m*8KRh%3)Hui*e zZ5BD%~1yvgvZtZz~urZokCmiGI24pN)>b)AE|O)~i?g z+k;pV*S_xSpswupWjU(~;>)`VGO&dp417oF|k! zc+aNp(AwUJJ3`LW_ugyL-QUvp|8e%{{=4m2M^kH)ypKoi^_&dZTY}JmQ(E9LLSrtp z0DI4Dk?#IkLyk)}w z$>Xx_cR4H;$vz52H;A-mD|wRT&MJq++Uxkc0y;1kVI*E2tgThlz}3^$DnhD~yi%kC zQ)-e&Ws$RlEKw58gDypy2vXZq`+3Q{y_D2=BsH_;tmPA!65C)Yjd*jS9F3jJeaUP+ zy6vFQVvSXr8GLOm%jo3#C znUxP{a(r7^jYn-!b%!SSqS$q(mDa|$CbV?NCLr&PVb>j86&q=ix0MP2%?i^d_(g~2Wn(wu2?tgNOnU`hK8%^e^4rWJ`QtFWDVx8b-UY4_w z(Il_zmuVaR{%}wIHp5cR7)Dch+CWU|kZUd{VD3$EpgK_DZ>^+zhBsgJR`OqY! z7&!@%wl}u)iSEE6iXlx-aMB)OZ&O_)C#u2D3bCQpD?d?9U|=!IK|ToVVmsW_D^^jh zQ*bHDK|W0EDjnYPppR;uf=ivVvY~4%@o7Mx9Qt-tqEm;AiE4-^wI~PqBnOpy%)*=L zbRth+NaKJ(0mVeM0g`3JIp{bMCq3k2$e@5Yx3y(J^73uY%mK*98wZ7bqUAQ{``G=& z9BpsVU6%VXh}d20zP^7985K6lN$2!_cP+iZ*cPFUn4~kP$FL+n8?)Gbgcz=msVzN* zF_H~@LndwDgQByy)|&dv!#;UoCCFgSF`W(j&AtcNe6qU3X5Yo;QF>2Kc#NKqZ)W!~ z`mlMz>^uDiKF-&u0Ag@x4`%o^-B@NvMXz@R&9;2R-X=Q-HfEXkiMu-JXf7!~*& zw6KFQk_~(uFe>oP!5ud6jgYMK1n6w;BLCzfxq*)v!@|^-l^u}H6TJI4U|851yBm1- z)z3q`uSbkZEk=CFbCWH6BVyMZTYNdisZ|{B>x@xppYrnMN3p#q>5piSe-9^pA_N!r z^zm<(Ga3KhHUI2rJ+u!4g_>g0&(VcIKL=E|Y^C4Ur-EQ5{R-%t+Izkqeo=n!Q=4IB z`_1{PDQQ>A(l13h(EA`xiF;ye%F)>K9iQ3^D~IlM^3cg@QGV}Jn_=Zxtvp~mpN;eN z!%1{P(J=3Gfll}@r_e#KH+Y}kj%xm2)@#D`(ItnwXIAPGseK@BkwDF zVe5%`KPu*^6J?2+A9U4;vOX9UvzLjY&fc-OkSh6?45lc=h^!3?Y(- literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/1108.906.3.bmp b/BossMod/Pathfinding/ObstacleMaps/1108.906.3.bmp new file mode 100644 index 0000000000000000000000000000000000000000..ff90102ac192475a780ee8336bbc64d75f090134 GIT binary patch literal 1646 zcmds#L5jmL3`HFZ)9!kNYOTXI7dFAo=K9>+1bJmc5 z3c7nd2cK7Y39&D8sB`%%{z3ioK)!y9J>eTrdk=c1l-oy5$^YQ#J(zuwNj9E@&8Z06 zYX~NtGS0}WLjXc8c!piosxlHqE^0^8Q5i`UQIV!sfygEWvB)NiHY1}G$(xCs2cl|P zDKZyYnmsZX>h=wf&7T|iH_SbHFPnZ#>zD7R?r^;4$o?*T=gyhP-*Ln3-DN5pW8h2| zlWUCm8TErp_6O^QtJ())69$`b7P|=u62V_*TW>;VUZ@zdGj}MM Iy9VL>24qjZ+5i9m literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/1108.906.4.bmp b/BossMod/Pathfinding/ObstacleMaps/1108.906.4.bmp new file mode 100644 index 0000000000000000000000000000000000000000..9b1ec673d75d8257f4ff76076ae40ae7b0aeeb20 GIT binary patch literal 31774 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 QWq33)?e>L%zwf&LFSjcx`~Uy| literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/1110.38.1.bmp b/BossMod/Pathfinding/ObstacleMaps/1110.38.1.bmp new file mode 100644 index 0000000000000000000000000000000000000000..8e667e19c48cbe4cefdedfb5473cafd863ed1765 GIT binary patch literal 75422 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 UqEI!rS#{1ep~$H^U#jZ=0ov1*r2qf` literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/1110.38.2.bmp b/BossMod/Pathfinding/ObstacleMaps/1110.38.2.bmp new file mode 100644 index 0000000000000000000000000000000000000000..3b737123836cdb5c576a695cac20689ba4c1e4c4 GIT binary patch literal 3854 zcmeH}F|O1w5QZJC#8R;ZJ!vU9z!O3AT!?~L;$T?f09?V+I{=Yh!4^@5|Mxid*efl? zTRob!6t6!!8IS)N+xz*;o0CiBBkK2fzT$Z+B7+-Jf2v-i=3~o@mrQvyZ8rVfcDSkG z)twq%+@ay%hK9X!v+3C2$!Pctwg$<^Zu|xLPdERg;h%8J8+Ia_`%wH{u}-dT_y3G_ zT8>zkWe?#DvuSw+PiA}pkAf=OC!Zvclb*_vJX1eqx~uU}Ug5CHx${Gof9EO3yKtbj z-QMb^r;Zi#d>DTgFWvXCB!~J#(X=RId6ucytQ}nW$uOIiDdo|OQ_8_IC-{aZ+Y<)l zoqO2l6B>BsWcLTTfsR3bWq(8>ShdzJ^|%a6^049s^ZjaF?bX?Jz9JWMk)`e>nzsgG z;%XpV<4rWRc6ryiGFP~amFZ(R7G9Zeeki=?zL@v<0`e8UjXP7Mh$=H=KJeQiGgU}w z{|OD0fM;UElsg+S(3}FQh$qW9p?%PNI3_*OPJ01iNO~i8rj);kRZ3dM9Ut+B@sfZb z=X_*5WkF(dLm=H!yw7-tQJV0>eAs4GL9?gqh^4z4Rz%*G&15h8H_mKI&zDzGYcF>5 z`MQ~t)$DJX;pRM+!$aqrLzxSW%}G8>wfAf{JG!W`Eumw7TmI46JNbH+z>RhAqxA;a zFk6lq?9%0%vx}!wvpghE^FM*fW$gv|K#_@AKx(6x7mu#egHQK{r}n5yPfW)Go6iG zpy;@_`HPG>z9jR`vGeu*;r_A1*z#?FF7)P|WJ`OXaQ$`^3EgHW4y?u>oH&g^96*hM YJ73oW`ZWQIU4A_~{{4NpjwQZ-0g*l)iU0rr literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/1110.38.3.bmp b/BossMod/Pathfinding/ObstacleMaps/1110.38.3.bmp new file mode 100644 index 0000000000000000000000000000000000000000..c0e22d2b0877918eb28eb51fc11ec33fd671a8ef GIT binary patch literal 542 zcmd6k!41MN3`HG!D7S7vuk3(CCGM<5GFl}Vq$Bi352)tZaU@2-lJlbIC-!%4_tQZ< zuB>PBLcUZrN%C`Fj;xlykr5H^3VjB<$~{$XQn?0a$$lU*8Ta58T!JM?LDPMLYj6%O z!FJxrbAGR}-EX99tzSe&-q%@VF!BHfWI%`k=}efFy$jj9kV`H^Y!#IBO3-4g_zOPh gWim6x`|NR==y$?t4^=k?V4ipLX)`D`2Z9g%0*Il+I{*Lx literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/1110.38.6.bmp b/BossMod/Pathfinding/ObstacleMaps/1110.38.6.bmp new file mode 100644 index 0000000000000000000000000000000000000000..1a9f1b0b0d6773f006c817e4f508b2f0f7fbdb4e GIT binary patch literal 2097214 zcmeIup%H*U3`N1wQI|UrbFQWfd6LjTi^|Y_i=>Grzk{|ACwo;PI!_A7OuZGnqLv^pLk*n6TUM5 z$@_5f4~aSj){!ULpB+DJY`-MRe~f%3JV^s{>yK;yI@+J=zb5j;@gwmo>Tjm_pW+X( z{lruKr;hRqPYOSC>z_S-we=1_UcYP0-9K>mFJJ=J{)xq-)2w;_it@|(4RP{Cv1Q z5AsJQZyEf_6|OFS$^8eJHEdfsd}Vk%tlC-a3*WtSBJAJL=R5sV=3nFaxa}gezji*n zHQ4y^N74V%dF%bBAj{u)J{)^sS;H@(8|GwewBzAZKM3z7>R(Ft19FWs^nM%rA3gvA zPg46n3}p=mgV!?hCe$VI+Sx1~J6XALR=YZjABfYxmq-#D#gr>_6mz@Vb_ z%8v8r;JcjLi}gbeFsQS1-UMeINR@xPcK%}jkgv8>Q+RYh>VF;_tnAo))$QMtQ6?0i o{d9gX0ZUa+XE?v8!udsdIH7PjZ=9{d`OO3@RYm^D@py;>1YgyaM70&`AUa=|m5a!+QY)uhJF)p&x;9 z`qXphbgf<4!qgZL-D1M!>_u-%gAfxQBcUoLT+^`~NpC zA^sD)gxte?JLUHV`Go@NwD-=h8yKG}r?5tL38sQSbOk7{Ddo-;+12wgFrq8iydU%e z9`^^?(9Aw~gIDCD58{3ld7|ds;mU0LTjY`D7SK(ZoA-bZuvAX>IiUc-6sW8)bAiT(DnKR-_Sd4GPA-+uSkUj@1QfkgGdtw&<3 zUc6lW>l>;Uetn`j&*M8d<2shBf;=n0{SZ$hXtD11r8Mh_;TW#aNf^eTx64ZM zzMqW+AK-jp2gZyVj_EmcF9SRVhUY(}L>vAE_JE3d;R@C7biXA>dxtpsQ$qiMJN^Ym z^IlFo_J9sCCDiHD8wX&>*MwFs&^|DHQvQa{G2b*ErOW&HRBBHJ5XD%T3f#avxu*=> z@c2*s;seyU9tnd312m(fT!tHTfJB~UxOv8gvkaauKn^$f>TC?mISvxal6@HkEPEq zTF^u13H5X55!o%s$S8INhbvNdAhJ|2vo95{=!3{o5eJn|)L(Zna%K5!g%!C4G_rnV ztB@@20S1-=Z1OqQgs6Ou^?jJim9?VIvFgY7ZJ0K5PI5R}u>9bz+4mRyQUBFn<+=D` z`$PFt`LW}thg8#_nGcq-L-NWKWOn{dEYC6)d;f2Z^F6KyVQtRK+bwWTfTmZ@NPa}9 ze+yUkYYUHmpZoPr4x79Fyv;tu|0l%%H}vza_zV#g`AWAB;32d>u}cW#^JC9Pap9ic zm)w3m9m?l@&!wa$iiuGv)>*Z?b@(DS29-$&%x%!B|7wL5kt85aSXs&eo z!tzKwr~%?lUy&2Gze-u&iN|rKxEl| ztb|0Kw7monxvE?OxG9g?UNU}&Rb6*DV`+aRXFUUnex7#Q=hZGhTq|E(U8eNNW=Q&F z3n^XJLFM#TBiH<#^9|zw@~3tA7xPFP@Rw=vn)z4anjQo`6a5z`KdZx&1?vOD>3lQ% z&e&eG>q~g$G5jt3s?~LRbZI=by79cqb(!643RMR@@B1?@M)zI^c4 z9IT(^8`YnP`}&ayJE&Z^D9eISq}P2rKbS@|sNsUzguLwftM5~KJapb5cWe#j!&jcc d1E)?0s2zs+P`v(qGi1Pb2XE1|c*tYr{{ZlNF~I-; literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/1112.171.2.bmp b/BossMod/Pathfinding/ObstacleMaps/1112.171.2.bmp new file mode 100644 index 0000000000000000000000000000000000000000..8ec139a16dd8f2a27c52545605b594938efb9ca7 GIT binary patch literal 10958 zcmeI0y^bU`5XU{5V9D+gIz>DI!3j&`#H5FWM8X4Huu}WY&KHrvEBGQp=0wsbEo17- zRW;Sk45LLLE#1<7{HAPI)!$X_?)mzgpT9_SeFeWihoA4^=i5JeKcoYFPQN~b-}vLN zxyyA<)A*PEKBZR|yrkm=pVHxi+nrp)_%)}C^=o<_my~9|Ac&B6HU%#A0JZR%hrJN) zyz9XV?DaqmvG<2G#9j}3J%9pxKkWTL3hd{>^Uj0bVSbikqCY$DdhGRJ3jEjoP@nle zdSiZr{QL{{>2I)qLB{cS^KA0c{42cR`q{>B@?`cW93RUgTmmDyejs;_X?fRA zmB!E7AB1M->DG@t-I%9adGT~DUlPN~E6Zv6vYe*dc)oIB*7O-Q9a&ykme=q}TbMJl z6L-pu*VFJTvxZ-oHC#sh0(Q6`;SKj${6+V|>Q2H@cP+RRRy8Wy$MRix7I$<~_+IDX zx;&jUNu%!)zAneC(REHolNX+bx6bLzffYNYXWp4@Ic80+_lEIKHlH{Lp8uLF&Nnm5 z6WFrrWcOTPx(j!8@S@#?Pj=7mO3FVue>b_N{EHtS7y_J~83X=T`CW)-#dqd=OFy(< z)4zh<@7ETu_TMSiV7^z7IGe(oJei&9+0`qtD*$2_AoqvOkNv{^We#G$#eR(a8v9w; zBrK4xm#h+-1j2cQ*x0TS32Ta!pxYx($a-$@EDOf-P!dS$fc+U4{y;UZ%o;#r)(j;e z)qDgX{^i8707n2LKv7KZAJo#|Ljx3t8jv{DfFwf=NE|4ywxm)98Ze)MuBv6hkwBM- zj5#7rV08#{1lcB#L&pU_a9oim8{Yy`$|^u-hmI*?#}vR7CP`F4@QePgaS3*06PSu_#B$7ptU8SXb5PVCBu*p+8wO5e$~$xe<7?%>}~ z>3DMExAyZNdmOherN;`XoH+`^@}$5`QFbO3Iv& zd!8$_-bjaE4&Wo1&JXt%UYGZ;5stjwX#0ThwBB$J%MfQ>ufH#l|7`pL_&dY?siyRU hW0cV2id(SX&!d^yP1DWTW;nkt;#pkwXjt^H`4fR^{we?f literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/1112.171.3.bmp b/BossMod/Pathfinding/ObstacleMaps/1112.171.3.bmp new file mode 100644 index 0000000000000000000000000000000000000000..b5f1f10a62ff6096bfe104bda29ee3ca2e711676 GIT binary patch literal 1094 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 literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/1113.182.2.bmp b/BossMod/Pathfinding/ObstacleMaps/1113.182.2.bmp new file mode 100644 index 0000000000000000000000000000000000000000..d64bde3cc29ce6fdf2300dbd0926c2a808be53c7 GIT binary patch literal 21950 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 h;VAx1Sso5IM|0f2+)TXtuwUsL;S}R literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/1113.182.4.bmp b/BossMod/Pathfinding/ObstacleMaps/1113.182.4.bmp new file mode 100644 index 0000000000000000000000000000000000000000..a9271b51e3958cda3cae3f27293e6c96ebcbcb43 GIT binary patch literal 4150 zcmeH{yUp7$5P)g?h131nfNds76+}S#tP*4catwD_g_$5l7N9p!>B2B`Pn~3)u5cX! z5+5Ir_awi4|NJpg`wIV0@co7F#~9<3PP9(H5Aert-3n}q+byNT4K=0d06sv=`GCQZ z>2$z4uvC0lk!7DDI#7tFr1a*>-HG|epqbEIxtUqjP$-SZt} z_xxx_Ok8)Jf0aqd-0ViIi|<~ky~>)N=_DdzRpp!{MNGxK1pa3b0q3cBic6bT_hQT7 z1{8x^*30%&_?j4~;crqte(|XGRN+#(8LyfEJuT zGYOi@*g+2Bvm86f39V21*f=T#QJqmWw~m`99Pb$!L)*kGE0}=_*%V<`6ay9VR$-QS z@|e_dnW=Kp0)nDJ^T93PQY$nwBe=#0z(}K$BbfNsN*04Y!R!D^DKoWTXeYVd%$Kd zFml4p3yiRPz#d-EL@r{(4X6m#vkaWBdcl@`Enq!J#2f@WVz(gJ5xWP8h}a`cM0TPj zOM%=75*V`TTzR!1OkkAUfVGGPiI0lnRn`N2Aqx`GLsm4jyWV>WbyLKCUnbqQ>#vux cThoQ>MMwMo`fIHA1abq|KjNbKXaE2J literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/1114.219.1.bmp b/BossMod/Pathfinding/ObstacleMaps/1114.219.1.bmp new file mode 100644 index 0000000000000000000000000000000000000000..37865dfc97a4ff21f465ae4cbc60401fa4d60e34 GIT binary patch literal 20942 zcmeI4J+j^5%T@bU zbk9uBXHTnNdA)wmXk6Bgq@TKb{?juWY1jVxo8P`|O!*47U%=nbc1`p1{j%&Ds8IP7 zD)=`p{elILbf#9{Ak)@Qv_;ozU+OVH$-U71Ilb+&ER)5zJ7#HaiuOHl3R-H@4g; z6wr)|!9vf9i=zXM`7%0GR5i?KeRajf(E)e!Zlgm*)!hh1#@(Dm#@%=}rcl@(_&@8j zn1tT_RFTFWw#+Z94>HzHv}V@+UB3%*44GkSuNc=uD`lnG}x4wMWU2hUL=D zgl=MfVvNa-m6%ORuQD(^))`nnPcDn%-cIT#1#?j_%Rs&=xr$yV1v4v{i-KAHacvjk zS>7s`dj&%yQS!Ahkh4kdWjjvi%6w>H$5iIkhI{y(!-8``g}HZ+8Z(B(GjM7EGg!JBGn&(8(^i;hEs7IH>8t-eSsa0o z1#{m2I0a8oE17H=4$PsjQ!>pV_l3%3<&eI&dJ`7T0R#pF@Fi&xQJ@3};0wzbwpTDm z_|c9nbvqch^(Zm4K9(7cosBu|2kLF+lX`z*&e0)aq~5qLBYC2XeOk==xWE|%i`Xu= zl+rMwCAu|OZ_hrVu8uxmd1k_+cV!yw^YP9wlovi4h6&Hqu3dBKt2Nq0`Y=rQ^qA0e z>UU~aYg9+&L$eCT=Ruw6{N1Bus4qHy7mAoS@VvEK?&m#j;m`6nJjtQMh*@ko`&7Yw zG}hS@(e@HDAv&5?HBA2POlraIX_#4zXMi^3CHFMs0PMei=D1AGZ{63C5=Dro^{ZXY>u(anWp&G9e+O(m{e#089P2Z1Uq5)z$+arjGc(Nt1_Ws zbtW|IT8s&YjXC(LGr5Rd+j9{)#t$*;ij5~5VmvcC1CpI7Fb95IEdHhh=n)*VF-Hy4 zFfC-knjH<(Efa4i60uh?3N-=8~_oIy6pP6pyF0KT`mvVq_OsZMFcRPL1 z6O@;4@(`kZ$J|N1`T*vI!j70h&euCLG?%qeTZ`&o^zpy0FV5qE$uQFNgA`cm@lz@r zBdN1#D66ySv*}Y;V4GX&+TfWreZs4f=u7=U90W{3Qq+zb}qFA?-0+#*tl$rkkhpk<- literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/1126.822.1.bmp b/BossMod/Pathfinding/ObstacleMaps/1126.822.1.bmp new file mode 100644 index 0000000000000000000000000000000000000000..d4c946584ff783bc498584413d84ae44d3c0f439 GIT binary patch literal 31422 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 literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/1143.240.1.bmp b/BossMod/Pathfinding/ObstacleMaps/1143.240.1.bmp new file mode 100644 index 0000000000000000000000000000000000000000..4ff3af920cc1e51bd69a251d800a14cb42186122 GIT binary patch literal 18046 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 H&trcA55Em@ literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/1146.247.2.bmp b/BossMod/Pathfinding/ObstacleMaps/1146.247.2.bmp new file mode 100644 index 0000000000000000000000000000000000000000..3896b46f904eb5c6d41ce8f338c9207b235b95d9 GIT binary patch literal 77786 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 literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/1164.823.1.bmp b/BossMod/Pathfinding/ObstacleMaps/1164.823.1.bmp new file mode 100644 index 0000000000000000000000000000000000000000..a7f6811d2a77b5570d26466713960a323c100a41 GIT binary patch literal 5022 zcma)-027T_tnTx zzy&z3qkoz4GWzog?}Oo3X1vjIeUxQ;aH_Q|DUWjdPo?CjW7FKcCs^G)TV8b556i;~p;hdxC9OPu2oJ;UVJ0=6*3 zRv`WYbgtRnjQx$+>p@=;57Q~XAv`iQK?>pOjA{K_^dlG0iTCJ7K0qgqcCP=x`Gkk% zQ@LjB?L~p9TrJjP6xU1TeUS^~PdwE7AdU$z#{x0O4b9A9g^j}wboP|k z9#fbwcP|Zl0J2;$rVHB&kg1$JET0+k>7}t%8OWu{t_$z#M?SjWbYZo(+k-5|x%+{A zL%KX;>sTq@jIo@^R$eLJjFaXs;H!gjB$h-PQHYY8G*^{k&nGVeLiaN7RrVq$vJgoP}$iMT*WFKxbjio|at58*dV~DPBo8`sBA*W6wi`*sb{B`EdCKkZ@9v**>mIka-H7EzovZJ?(su*- zONdvHRH_wWa;(#1ZLTP#w7pE{h;^$*iA?7`|0|Odp{(L*V)&P%ttS- zf5xTxJwEaQdgsmZLC($ZdgtBz$j$!F^*$ZhruW}1mwWpJZuLO+>FtNX55xJZ$(z5o zCvxc4cKl}SyVb6y^)}=~^@!8?Y8{yR19-g))9Ef7WO@K{d^*j{GY)5mA9MgeCjK^z L6h8CEUjzRGS+Er? literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/1164.823.4.bmp b/BossMod/Pathfinding/ObstacleMaps/1164.823.4.bmp new file mode 100644 index 0000000000000000000000000000000000000000..a0b36dfd2d5d88054b44dcd4b8e79841784c4027 GIT binary patch literal 2110 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 literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/1173.585.2.bmp b/BossMod/Pathfinding/ObstacleMaps/1173.585.2.bmp new file mode 100644 index 0000000000000000000000000000000000000000..687aa204c3e8effaebb38177aa27f95af24ae303 GIT binary patch literal 156350 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 Ezvt~JPXGV_ literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/1174.611.2.bmp b/BossMod/Pathfinding/ObstacleMaps/1174.611.2.bmp new file mode 100644 index 0000000000000000000000000000000000000000..cf5b5934848b88e5e9f8dfd2102528e2a8e0cff8 GIT binary patch literal 66862 zcmeI5zpgB~aff?+WQ_uQkKyPBi={$G#zw{kY-}6O^$r{O0dA>UJ29?q#dS z<@MeP<822$&hLiNe(s)k@Q){ByW5|37>|7z?bq5<_g)xk`vfVhdFtK^qy3nVJIpJy z14Hi+OSKJ1|Z=FvcCmT<^eusanrnn!2qSG<91uXzI3R z(A0f0w#6^9RqK1sCu7@KP_1!?@c^UW-lMXbrt5~XmfKtD_N)2SK9Wob?X9ELgwWoc zfzYnD4_;YKgp$6j<@Q!POx>L}iOq)`!_l09Xw{s7A#c41PKZ{`Z#cnF+b4QiO)&bh zmfKr(`!I&>Ju0gSJ<1wpwAz8O#|rgiY#;MIR`Vz0|JQh6ch!6uoXnH4dDO=pY&Evu zmf()F{dHdV|Q(L)u)aaZG-#Rspbm^{)xq4SN+FrmMyCV0Mg;qZbaT_CratmZfkP+ zWDzYHC(md&vy4-tD-EV6>XMe&UiUs?5Faw%UV1_y0b%(nB&@jrr)6 zz_HbqS29{{e-g%UcZw8MFtAZb{cnn7tT#Hpm;j(mzh1rQs+?7=7$XT5Nfq^UwUG>n zOllCZMxg>{8+f6fGa7i|9MQtl7mWIzz8LZbH#%1s!|FUNxVQ%c-7>QwsjdeY<2zyO z5ftYP1^d-bb4Hb*sM21_?G+7w4aQ{_E#{0_7t#)GJiE*uC$wO^?ZW62ja%q3bqY@v zVrs*nTk$x1sxp4(`p)qwE~$8ikt7vW%+LAVfR#9S0rT*#{Du7E=S#{6qAD^*|MrHH z*@n?svCjUD7H~ zOYFUbgn_GJHuwr#k33^hIYy^2=+ziJV+So5Vact=aGoa_gR?l%YZyBQ&=e_%hkb$-2z0`tm$A=xsTXK9Hf19K-O5cq!6jW{nSjV+C?l z6ysz|U&kWG%o-nDpP4ZmC(P)w_YM|)6?!Zf!?{S0Am^x^3VdKaMp;7n=^R&J_x$QZqx7wvO&+V4#wqS5w$H1`=(=wu<6x$!WB0=O!!(vKMj>}qFZcb;~N=W;6 zk)LP(G0fvk`KT@<`)svJFav#DjZ#5O6w~vtcz9@~^6M~-_N*Yb3-^E%3!$^@fd5YA zRIv9MqpU+>xLD4)M;J!PO5zijA4h-r5r+0ca7=Ih=zbsDoezGn^7Zf{Skf?cxC0l7Vyrvuy({H2qzmGf1E22@2;M7dTcEs3 z`3&n3&gfvI%M{6r44cho*lz!u?dt%`8Jo4Q=)7l;Xug)u7+KiYR^*Ua4rRo!HP~#1 zs^v4d88xNkUBI5#raW_A$6(Z=c2jhTjn^#B;%`Y0voUYm6b+R_l6n1_Eg= zQDV_Ww}V~xwH0yw6$}?koa^Pg2hFRG*QMK1FtodlERxQ44+@8?3>Ef?ZqDlbEdz}0 zZE;ndW7zLH-!u6Pd~?ruRk$k@i=-7kLbJ@YssuPMVaVOS>eOcvrfF3PX26;@Sv@XI z8FoUw4cU4a-^&}vm*9dvrsp#L`;MC@8>4*3V2!_{^hy61qPKg<|cRp{u=HMtqiowcm7S!d9sdzhhD8T@chGWyJ+ zpz3#~)nN4q@hX4Q1ID@o+R;A7xLd@CJ-lW!d&?jhij>bx>r+?pD(lvd zH>TQvp~*i;diP5GDG6AbTHj1Pcfv6g*|j8?+!W6jECcTo&{@x8hoa21KCN)eK=%ws zd*fgkD9TK?7(b_u(`^Zfe{~G@B@|_*Ta2$6(U$QsWoSC>c~P#X$A>En#k<~m42z)1 zVQ4%wogWJsJRM2E_2e0R^;l@DO$@hfKk~eqveSCF>J-`P;1&S;Mo~6m8n4(`gK_RuG9KA_jEQh}0x7<{7DJgCNIbd#;{rXr z>8N719wfdW@gkGhrZeO9amFBfNi1>Oq-bL=9%bNawjLUdk`cu@Gz(NX13h#*bwA+? z^ped$8+b!#zsQh4^y1Y0G+cuD@{(ofuKVX8Bgr_1>F^u!F69C2O%%Mr%--1a;;dnG z2UP+idrwWV4qY9)12EST>7fsZ&PRVW`#}RS6ftfkVwe}nppvXa^QT{9;NoOx&l7Bw z9d;=!L5hz~OKos*8ehTq)?ZUpl#@nsxVsD$83*0x$fvr7cLhr)^quA>FnB=Ob)RgJ z8i!nl<{|gnryx0INZ@I}zTq2NHvN!`AO|1N2)4M9oWx7_6<0V+$$#l=;X$@_sU_iH zivq)*W;+Kh4KBjz1;owO86(>{c-2-cg&E0O^%s^pV`MuAGy2G&SvF5IhH~e359iPu z_@1q;A=^DnNGVR3-^2BHg}VwQkfIdFLR&^f$7^BBUJed4xbu4l+b5nO#!V~Ce{#lU zNb!N(>v2!Ezdk}9Qjc>j8R|Ymc^UVP7Qx1{(FzSl6y9fet?m(mX))E|f^PUJ#;-B{ z#AXb0`s1vBMF^yE465UmJ?TOK^jE9YAn;Dt`c%dEU(RB(p1`W&FT)gk0?_MFtgZWso$R$gh1X%lO_iOswM+bspr; z){l`va(Y+UGDa2+@3a}5#aOO!=CxiYa5zV8pRO=Ske_>n44#A@;ioQ7o1VMRJqP0x z*D2E@bdhCvttlS$9NXC*=k6e)8duV&p?vi_M}xXC`O2i7WpK&4qpcxQs)zE`?;JI^ zbuVFR28JD0avZKw#*m2E&A{lni*J}hnrcdh_t!g0%%@clK@3IX;RG19U|9NH04k8M zm_pYqV+{R1Ef{9lBA)A{(<(R>F|ZDX@pXFDSW%xaeqePjS zcGu@#_Oz6dPF-OO!;E3ZNSN~4T0Wh+b4J<{b&D9IGm<-~AeHq9XPg0JNK3YzL6l4? zw8DkpfUdBVp(R1if4UHWHiNMnW<{G$Q$+L+isbXSfjPKI=B(1pJrF*80wX$$E7X-4 zpexVw$MbxI{Dsxy%mt-+^pY|CYE{^ciz^Isg>gg5dhyK7<#ZkAL%uHQ_SF@}?M9hb zW}&2Pa^7K%Gyf=avUSKF3^UiGU++`N)jb$`u7@h=>3W;@!kC+C8Ee<=u;uDIVa%5( z|1@!n3AWaGFO2yTwcICcwaD#yPsVNA%&#nMRkXXAi%rg-jKmzPCr?|gnkTuqv{kJQ zXv91j(H8e|^KJVxw%@kcb6(xH&HT#ywN-qWG1s~Dd}*sExdxefyG8-#_+X*!RTcgR=U1EE$XURhAPzw`B2L z^t~`tt|ji*H*&lwzXzkg->=*n3q2YzMzW7gLvAnc*B_;P%J0Fr->vK#d%Wj0-!#;J zoH+lK%Fc0qamncAWIKy=g5(i`m^w(MsY@Nd$*45sGysB;?tYZKQl6*DDqCxu zht$g}<@q_o1OPIP7^7qi<$aee=XxZLE-OBepEINrR&tLE*=7)ZlulU5J=iq8U`Qvd z#4t3(>P>_!DsV}Zie6-AHHmwbU+B&yRC?t@UD@K%z_2L12&;s$N*ii@g)#cFbS{*r zKyBjqidiZgq*ShKC+2A!-sm6#EL-K}qd2h^MsVcjiIug5<-6l={gue5v3h8Xu2<#w zpPms1sRjdxgI|-5+B4!-QH7%73>oER`ZZoD6B#2H;AJQl9U79Ej??cJ621A77=xcFky!0-c7W5|i2!hc*L>yz{J!Jj{HG|V6pC(-Ts zc{xNw6#pv(i^R}`WT<2ar{x(QTEP%QOfyTImNPhJxc{)Aev1f5c%fD~gGW~RiJCBI z?W)2U(OInI^lFpn?pSG^)g<}V$1CJhh7za6Swg@feBc)$33lwoX=&CPiT=snCm{(F zYY?ZUS+^900GLQcX{lV;%-}qJ|jb64t3O}#M_~51U z@$lQ&^HViFJ|+zO{9Z_7CB~^s^=QM8YW$3TMld8(Nsq8dG3ra~g8~9iOjJC1Bq!DA zzQoxOq_ttt7mN4R8UK^$K_{v@V|gPLov@az))~=mLAioVIoMG9ZpyWqQK9MH&kdeyTF)(}oXy0tB!?KAqNLEFbYkSS`j?4{?|}_s%eQ z?DisetTY~LjJOYa5T+O14+V(8|NEeH+uQ_^%M3n#SB0_M#zof4XEW4*Tn+CIgGZ)) z4aVB!1*!@oOf0(lSf-(d9^o@A-z)(rsl)KmJwA5b7kwj! zk66&-E4Z~sLMxiVE9AwV0=T$&qlog9J&RD&v$OzFrWlVMM&$-`mSz`b2i_~HIy}MlH zFgoj4zjn6bN7hxuvk)KMZG3VJt5h`zz8s(DR!hdEv%eLYFjO@aSP*?VJ`G92=<6~j zFf4X?PW$GqFzgLIElNXHYhC+8o_p`<<+f-egf-&&(3y_R75U~EdCD8fBG3aD$FyIh- zaSXQA2_D%XU7W2PLp4BP-)3#a^NN1avqkC#LqpD%bVRhg?fDMDTjF z@IYV;Bdo13$(p25FsARCAnfYVBHD`Xy4_Fxh`ux9EXPBzYi9Rh@SSF(S!=C<|69>8 zS0nH93?7g@7>y!TqDP~so-&%OfEE#NZQXf`L%4lzA$+dK&<+yxXvlD}q{&9tTV_{= z^3?jrphsJVeT>-92{EsT@fv?9wZ5(Jc!?P5t)U)x1VBGWJ52vozyCoZlt2onO)|`A zxget>}-2( z4cED5_x;AUXVyQ?Wt!bRI@j56X6wTWW^mhf9%1*^Fu}RS#e-Q~yhk)_-vs~f@q?UIiSCV!-u>gU;Tv0;yGfAc?MmkIFh`&XTmXr0lmgw zBVUpVVd&fKU$Yf!z;ie3m@j$HW`N>4WoY$KcLSPOKQf-$3pS8m^6hqk$`v#b4TmO5 zrwn>GV4#UeID9R#(XE004L)sT2J|zDOcQ9Ewza1+ORGs&Ci*GE!EQggkVZtN3`gF+ zS-~V^irMg!F+XHstl)mOmc3o*2@SA*D&IKwC>c630cxL2v9ojTv37;===W@L0kc(I z7bmT&l6pmP2JHXhm2LY4KMFyJ>zF32eZg_{eqVx!vZ?Mq^C$-$g zipF5@4u~+U?yc+_(31mwro-J4mi-9Y7ZA^Y#MrYVnF13E29A~C6Y|g;I!2bu#LTCN zF|AYm0?(6$Wz^-N>FG)1Ue&n89X}8zzrT;YMRFn6Sja1DLWDwI4+5&oCe0 zUqyDElx>blYpN|M%!1ZpHi^MoFtSA|KTTp#i$$hA%furM4_!QW^F-)L-DgI>rmJ|A zxq%A`mc`RvF?#h1fCkGl7`aF$gqQdtgJs2AqX;_rV5hSgpFhD$Dod6t_4P}lru~!8P~qV^edR|Jd?@_=C{XW#<~*I zj^oeUgWF$Xuz&79A6@yY6!SxpAB?~KhTrfP{JcRD8ypNBS+>)ezj5PniNSZkVVP+k zmYM4SMoL>oqsNzJ!sX<#B$LVSATVEQAJi+xLjEh$dI`EWCyMc03u7)xhRrb>#f*+; zrn!j_G_^>hDazydVf^Do;e5^NSNFzB04w_WadffAJ54N$=_N z&*{HE`J-X@?H`uqG@NXO{`{HyFP03$v}{S=Z&5DmK3~h_TT1UQz)+VhEtYkMa#~F8;n??ABLiqv=y+o!BZ5C9YUVx!AV=TZo6wSvOG_sV$ zhDLMM+Y2zHVH{ih1~D9Bn2{ZhEq)u0V~pAM<;VtNM|L>0fw-<5TKv*>~4nC zjDPz<5kvI0o9Ye3IRD~Dd4O@(jLYyhGcooqex(^-n2_#f%rrNM@t)k+yZCAQd8ZjB z?YslI4a4ie*tvns!|+u%qdbB1%!-VaJCNt{1fs6c!1{QsFrLZ-XBhMFU_!dK`0wR` z)29MOQg=zGbPn^ps_eLANIlRfohELS9)lc6=stI|&m z!znl8{E(zlSq;Y6eKZ+Hhs82vW`LAkwW@X&1T!Y6PKGpk%rsNoyasd5T`U4w0b_!4F18sM)HOyeU>MYqHx4W=I~P^%ZwzXkF*{!=szpEIAyb>n%i#;Q<@HW)Zh%OES7&7qXtRRmixuP>L`PZvzxSHnfVZ?4Ga%llF{`+O&xG~Z>C$i zxXej2ehCJCQ9%)kjN#flJrjcsr0q-j$$-b>azD*l`>b~|7C@(vNDo6g zKW^F;^kY%vUbZKASC}8t#`L5zh7Bs8y&l2GMVi)3i#L8W+G)gG3y2y+P{UD)Bt!3E zsNjbnaYV?ht124^#zPyrG?MrwGAQ507?pc(Lq13{K}YVI!RCK#0sR=&A8SpW3*%_5||$)MzAuPAy;M01wVq7(v`uh|4~N4jY0SprLM)f?<*FiYg`guz-#D>)TR3v z!D`lw;szphjZ0#9^kTf8me1B{Q?$w$ON?Rq4j8zOLp)?`(S8pHc`J%tGjI8sJ)){W;x(#mvTQ6d>Wj`FlEIHT;Jb6Ef)8shrGItuydws4~n{RhA#7e)Izw*|8tI()x9Vi?-4BkI2C^2-*>8bA=6r zF)$PCjX;d~C}Rwau#5@o5^kr3kY#`n!aHcd8W!R&)1gmAva?s`353wy(MPTB$^wUGm`qiu)|~wPKgc`^2I+JweS%c--k%9GJ>@gBE$bohRRi< zM4`ucB-3NK`mv^^8N$7rF`NS9L*@rt{JvSQMPFpu1Th^x`r2@9GNM+H^slwk#5R!B zkD!cxyvwE;V|dqttrw8-Kwo3}a(BgX>12ph4;d*xG>3kC_4eJTP+^4$AS$T~*)t62 z7wL(HpFfVD;(t068rpLnd|h+aD@qFWR5tH%v}nfFEPmY;pGJ~F6z}AM&KJrA46sgT>J@Me*taN31-!0&_9G{2^ll1 zp{{$z0F195G6pW(lo8JXV0`&?lOYp7;$8ua;Zw%Ih1woM2ye{7#IEL8fn7CkBsFIIBJNe!@HGdhwkKfO()I3o>4sLk?!&~tyGL*04Po?oq zr~V7RLK5JI^z{cAbD0s}=v4f`4a6g8_68i4MMh!aYa3v|dI?*HR*7dTNHknw%qe9oG47xhr@AYI z0J)M9BYw|AN;yM0({K?5KiUkxM+U@DWW4b0aeH z1^?@m5jT(uBQ+?zxi2x|cV`)Z3Sa@b>bQYKKVF2PO6~iy+>f|{fFHBh@4LPPBW@tz zN4xnqS#_A}@lbillvu$BmeZLjKtdHT;?rfQrMrqWMaJx_U~00h)zv?Gy>K0aAG0re zh>vab)AcMpW+jm!eceNx0+plQYr3lleuUlYePlql5NO-jv zPw9poRsqAuZ<Laqq;c&S!v=~m~*MD2(4=8>!nLkrz$3IGyrk92@M>%XwbcdG_*M1~~A z^OI&glGL3t#^oul{Z5KNKYsg)?!fNH7@sxcwwVEoe_4JrYevTx>b#ST@uOy_GktDK zxPdG`NMg``CQ-jS6Jsbc3U^Qa4BS8##^`i{)G~&c`;DC@+dvc*jB>tN zT>NsNzm;`LTXsZbC>q*(siBoJT>OfL#oj=y7$w!nxKTzX^<7!mKyDP$xyvX~0>(Xt zG*Mc~P7!h!&#zas%hkYmV(&i6>c!GA`tdaF8CjwN<9XM}5<^5k!h$P0+$dxW*-&g$ z;Rce-u)b#?V!s3fHxR!8Ik&sd7+kpj-x;|0lX0P2oW_7c)k`qgBa8(277^$AUd9BF zmtZK~f$oEQ1V0kSSEo+L>Ws@jW`oWB3^~F4cnsxqQ}p-88FUv7#FmJQKRM-2*_+M^ zsK$Wr2`ZMc7&nmH9Lwq7hv-g>A)}f3qAq5e5^h2)9vdF)aN*(^wdKz6B^bE)<12Fg zj~>2l#(-7AJoR^Dy8aq}(8APgZTys5<1wMNmA5hqA>G`Ue3ov1ms1Go zWU14Nz5ywI}Rv1~ZN+I3ID25bo za4Aj z^m}q%S`KNGA%1t~jB-eujPVwyj! zv@6y_+G4zp;W#f+)OteYQL!P>*UjTm27TS!K=d7!*X5sE4B6;HsJbrSy#S+ySX5}N zAv6Y7!@C%w=|=OA3Z6}E#yu!Dgf^miNO@{?M|W&k72YJhp3DD$e{`;~a6Rk#pHaOi zbudQyx3}BLw^qL{#~Eu8B^T$q1Gc7vA=`|Ld;x~~rX5dRtJ;2?e`;<&mcPOn{z6Vx zvGJK4BL%M-#;)rB3S)ioulHr0F|9)WR~Q}hbk&c>iSIkP#&})3P4@u0uFa1J0m>C| zl`&Nep?Gb*bcA$SV|0Xc^$E8lq>Fl6SgKGYpx-s|w!)ZdhEU#~ALovpaP8}p^S97k zRcsz~_tWR9Ayza7m+oyRRISR5fY7~dAER;ia9J9+`sh?6AlKy=sM(NVLM5VL|1*aM zqH$`A<@=T))XAjvm>of@EzIM{rT=NeVMcv$p`jJAKDaA}SdAfI@`PG# zxe|@i_as$Nl`&RLvI@yM0GSO81!hbXS##9_HN0Y`Av0A?vWlDiA9n^*FZ3Kw9(Erl z>Fw~k@)+mM&6WOjy5gzZb36smsr)Ww3<@2>kLBn74ojv|2*{R@8df17TS96Wg$+P3 zM|(0js8$|(%$QCd5LVrl$pX@I1C)@nBXe^|3-=HrX`~~Y?W$9UQL2&-Oj_TQPX=a3 zNV5mbO^eq1m<+D)7B%eDSs`8<<@oP2NE4n5EidHn?J2AH250&Wyfv z+m#K>Hq)Su1G9NAbrf86J44FOhcS4!QHTSxw=1~ncFr*JIj*|h;edCTyB5BQTpSp& zF_NGjCh7=<8^zf}rj3T6?gw}O(8ht;KP>SlivoPxD*9D7ZZ$-G7gH?SEZc$EKht%C zc3_T#)DMi<>^~aV?Qp`P&9WJoBQs35s0Zd)NbNbbf8pDH>wy`qxcgHPW7=(P4QXJG xhEzX;91W@d{_Sg5rSNBLY&lUu=c#FhE>TH=aqj@?|r?Zo*id!2Z-l3O>wEnz}r$E9UV$Xrkv zuFmAlG6+#+a=cq$GIwJ;PGmW{t86$k9qr22ge7x_dTW_8^wz-T9Ki-W8qo* zTL04cL{JXxbkbtWA&lf4tA;;`= z$g~k@d*%z|!1CU`c8(@wVAvSEa*5PA?#7!aF{dDW%KBOFXggnT zRt-bB$V6K7dKdL;ZSxZ_BealP{tF*TpbS1T?Xree&aeuWo5?V$u#J*8zJTh04Gt9&iEq~ z1b7D(C&rNF6m!EiBPCivs~mIU=7#LiJH|v5De80sbQFYlA@~U3F&Gs z_yH5(*cW3hUUt$^PJ3IsS`Pq=v^I;)QZVTP=ohur!kc}WKE!S(*rlsTe z^eC07ZVC=**`QfZL+EXdGM+9Nn~IKwU{20*9`oFXV61sg4WO;nYz~dnL(9+z@i<27 z*0gIZ(Y!qUqpShmMcBqig80rN)W?% my`Y-_oV*@a}yV`Ix!L>wcAm9vH1_FJrd~v literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/1193.824.2.bmp b/BossMod/Pathfinding/ObstacleMaps/1193.824.2.bmp new file mode 100644 index 0000000000000000000000000000000000000000..50d9bd2098dae0c3126f915d35befb01011e5d24 GIT binary patch literal 5102 zcmeH~JB}1F5QaS(1VlRlIZlZXhbRM{DopofllGU-*F@DMxjRN~1YgzhX|NaAFY0Z; zA>5nPdrr%OW_Q(z&oJK>pCGPYPO-zPE8zPj^5hj{_-cQ$lefWMz4PnA9UKUJ+?`;h zSgHoh_5#mG{>6KzL71uw50N9%cmR~!Cq)Q#1b>6rU+9pH;es&I%H9y71J~iz&ABe- zVqAtf7mFd(9Xdr}=0_Me8Nx;3w;TtK%0fNbca|CH91LpQ;32i3Z{T*(iQzd^B#K|e z2(hr$w^>$Y@l&o&&LDn0x`J4%%3zbXU$G(-pGF+X@Qnz8xU$)20ZAtN4bUYCfZU zXJALT9oPoWUkxM~a1(Lfo~m(SvO+VmBf1}#e(6ge2z=|q-Z|;$VvAQUakgdsj@x8k zWqQPudHn^Lxty7thAKgY^F0gRMOkMvHyCDWIh|s!6mNf%Z1K$OC(d*FtBKjl=MtCZ z`dhgxI%0w!dC2P4e2(n5&hN;c)s^A%zLno&UGQPqSJR)Z)9@LAMOSTnh^STEMqF>8 zBkq#DDChA$HYa;6;)L8O;H>LUV%24v#P?>eXO* z`Y)plX~~b|^WXL8>avn|@9$nF9oKw*&Bu2>Zi%Q%oqn&UD?ZDy90Nau#{nZDr#|M> z1}`sS{kV^LiufbVX&30f(iHJAQAr)v=R`T+r%Fk%PC_%733Uq zHct~@(MY^6V!oqaNX)PFEAH9>pM?j5(+g80GEQ$F$f*P`9no=mhDe|B%Bf7!6AZ4N zFg$i2zf*Z$UY&@`-iy*B#TW6Bc^|mXIO4kX4_L3YA8;`r`6oDt-#QP@Z&5wwSvg!k zZ)`CC8eNbd=L5*k$=pM4Ejn6ff$nAFD7-n{Xn2UAB0tkCFHfCJ(d6d3 zT4-`l9n_C1)l+kM@?YMFe;N$Gl1n4M)3tHEH2Cq2am_+we)qm3{&m#A(zAGUpDDe) zX}RzG3uP*Oqk4+!xp403cz~Rh-)L%aonPX5Xmed1ar}YimR`9zJ`eoZdMIzMt39cF zEn0k5{}!Luw_9BEvlcBrZ*X-FZcE~yc`_FBt#1E`H_EC`qxxrX-F$&w%XW*m>ed}Z zWncY&E?56s`@#)enrnFk<(t!fOdo2rPp{194NhbKR9C;r+%uzpLO@Tga@rpQ=lQ8U P#ry~Lf97i6T$cX^qg41% literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/1193.824.4.bmp b/BossMod/Pathfinding/ObstacleMaps/1193.824.4.bmp new file mode 100644 index 0000000000000000000000000000000000000000..77e43bd12794fb4ffbce36a45689a2811cff6b5d GIT binary patch literal 17666 zcmeI2y{=p}5P;8S5tk~rBn>hhlz9RyAyM)UDJT)*2{`WZN>s!WManz^MijJ*Qe+XU zJ8KEH-Pby$|quiJK5pc2YwP{F^v ztlOxZGwd*c?hFU%9-lTr?zwT#jr+d1?~6PF_cP&sCfv`2d`EEozAx_k;=V8L`y!9P zt6Rte-K~E>=K5k;UU!{HLJ{-B^2t=sPs`JrFh4GzPW4C_IO-nKG`qFyjTlg~ zERS6iQTVYk+hsY%NscPl=~8Ul$IDDI1A=y)Wsj6`0$UPBnX_Q-r)9o(oPe>5PJ3-oa{}hYvJOT^ zF+AU=%tdfzlQ8FH^kxy=+0KGTzV>!D)CEg!v+1B+Dh)fkt3!neVP!?VOWfS2)40u!3D-1&5duF?y5`QSRmk zizwrbAmat$k!0a%zUn8zdFcczVde}Z*mMKJu{#Y9xI8_4oPaTN2HzHE%MLEfm`RF} zo*OXq?MBSne&tpSF2!suoPe3Bz9^seXLDRL*FDo_&Uv;_zx$ zkHhdx9;SBA@U-^#@@<*@t32EKkj#DzZ#8#X(#e_WaJeQ=I4fWbG5c#u$RvMQ&;A+C z%>MrJ%(|D)$UK_;XB;4l{%!w;gnG8gcL~72q>P&Q1B{*d42z^+3x0fz7 zrT@Cj>w@VbuM(rX00@oG^6U7K3~xXe8ot9|7Ox2Hd~0Zdp?uhRvp0b`54Qww7_>Eh zT}sSpxNRJoB7esBZ%d2@TaK0jt=5GQ@^<)k%a0mj>?o7@JP|WybYsc%NSNW1ltW1V z2$*qdBt2us#TZ_PCy!+Y(si6-j9?}YQ;cs00Al())N9FYzg(En!xZyjhI3~drkI~P zp4=nmo%23}FD^?ln>~D@8kktdfR}6ZKdOO=WoZcF^u)Bm6gZuwp#gE!gAHFEY}8-g zkOKh!4=KgSOXU^CClsCB|FV#9#wl<6u9D9{Aw1(>PvX;&2IG<_y(Qqh~^jIc`%E>yV>x_+~M>=cs?5i7q#K{*6)jIqEsGEgydPrE_E=0?s-%Ndbf0hRQ4VAIs%1$RjgNuxi|fd!TwZ3VGKS!jeUjRAg}?(b&AZ0RCbGCqi;H(eS_ z#s_f)TiLG}O2!8f5y-NT&lO`AD8A1W%u3_%!y$uHhhhtcW%x;1?{mu?Uvh_qaq0Zz zr}xTTr(hJBpcA{G9hwE>?bB#5rl^8;J&k&D2BNq|#yf#b$bam6U&etR<&{@@po=@C zjGpK@gRL2Z8M9`3;1xPFZRqJRegr>|uz`#h@;?)nB8`Sx5LQg`6l!^x;Y7K1T7)nEXJ`1#~$Lm zLebn!pN@n))0|l|hPHc%YET0IGsK^V+16t&I}rS_5zYt~6%~wOF{@_7C@C05y!jNM z9>dc}6U&(}Qj;;iV3n=FC}R8}t854cNv-!sGh?U;?;3gf1ZK?{uE$RpsLqeq5LQwX zJADO&Ix*yPji68`AvW__Qx8sSP0aRtvuS9xzQ~a6ZL?|UI+LrxL%-S(#N=v_QH6ls zS4tQAOgL9~bcca;&Vx>8oUUx0mZz!^!JwM4%hPqnxO%1?J?*zHjjhXa(m3v| z+QWu%4Fg|gReEg0z>h*I1`?yP)i4nF4zm>ncU&RB1GQWmoL0H&$W#(nuV~AFJI6PT ztx`{u7{J#*Apmz&rDm&td;{+2mMQbnHZ#vIE`D$uot81p8Y80$^I&T&1kmU(H3Ez- zWUe^SxXU$6wSIur%&A!kyyLBfty6PC;E_-g zqX_hr!nX~QUtQZyFKP62NI3S_j<^staV~nf0Zd0)if+fWX;)gpV_w3vdDrThGwDUH z9-Z3lxu5z%%~o4E$n*aa#t8J>j+w`~J+Si`alLa(XrLQ0kcO(!T?uZ+JUU&eZkiY6 zFZNAO5?s_-r&hmq(dV__lcW;nEYJf?QaY%~n9dnl={qR_^Y~{qs%_R!_m*gH67SEH qH-NsLIa9t?^t9m9bgoD8Q{TVmC$XJO zf3ou*C2UH>Z#x$Ol&|1Q5l zzX3)(0GQtTL%uWz?B+V$9dGv2Hi&ETY5CGLgm2b|J6<&q)}wBi(jdQ6+F0+Frv~wf zZ!Jdyk;T%mLens%ftGo|P2qLJlm^P%#Q1mIqNmSkM;@P9as&8mCVpcY0&;_o4&WTE zkZ9a8Qz=L}e_B&tbh@7au}l|>d1 zTVZiDoB+qv7$y#|&tL8Gj}k)`5E~?ZTF^AvkY%4sig9+9cSVU~S>bVEYsI;Sj`?fW zP~k)J+A2Ex>k12&58r-;h3{8TIG?%-j_OHq7=)UEN@&+KcY-UCHL-T*hQ+y5&m+DwJ0C&)3H@);@i7~93#Yt(U z!$O}Q!guAQ)Vu?ErxYV~p&dNW{eY(go1RjOPy!FSrxYw1{B3Re**#O*GG~=9W-(Rc Lw)Ix8rt-so!?o1; literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/1194.829.1.bmp b/BossMod/Pathfinding/ObstacleMaps/1194.829.1.bmp new file mode 100644 index 0000000000000000000000000000000000000000..759c48bcd77eabf2039e0adb97119d4c4204b443 GIT binary patch literal 41334 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 Y9?ZY`!*sA$aynq#yVGwOX^%twAN-CDQ~&?~ literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/1194.829.2.bmp b/BossMod/Pathfinding/ObstacleMaps/1194.829.2.bmp new file mode 100644 index 0000000000000000000000000000000000000000..77fcce22a377775ff506d27a9b165df2bcbb14fc GIT binary patch literal 38462 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 Y9ECoEU*+-6>DjYl12}f`yc~J|0lA@eLI3~& literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/1199.827.2.bmp b/BossMod/Pathfinding/ObstacleMaps/1199.827.2.bmp new file mode 100644 index 0000000000000000000000000000000000000000..1feed9d086524089fe7a5f788e6302348e95704f GIT binary patch literal 74694 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 DDO}6F literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/1199.827.3.bmp b/BossMod/Pathfinding/ObstacleMaps/1199.827.3.bmp new file mode 100644 index 0000000000000000000000000000000000000000..e5ecbdefd0966f54ab4827520cf0d9b3248c9e79 GIT binary patch literal 42630 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 B80-K5 literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/1208.825.1.bmp b/BossMod/Pathfinding/ObstacleMaps/1208.825.1.bmp new file mode 100644 index 0000000000000000000000000000000000000000..fd1374e9e6d39d975fd62d3aaa6c5b313dc28e70 GIT binary patch literal 11166 zcmeI0J8m2?42HRIvFUPzZ3Co9>Bk6k+(Sp1A_s7nDUy*%JxPhu0EXjT z2NJMrNuPd-Ls8sJzJB}h8C-k7?@##og`c0hwI?{adH3}Jzv;u7%`Hlg)@9b}U0Ph<9ZyrO72i)RO-r`GN|0m*x-Xwm~{HJFRP33E( z04mQ|J*DOa~=WoWSua7sK9IiXp*6qUeQ?)zuPEEd* z$+gSF@qu^R;TfT?-CwTDSzZSKJXQ}56 zQOu)BBT~=L(g8%iHi}{7PfDfddb`bWY5FVp-!z>%f~VQsdDk2Re$V2YpDOfjfTMfq z{5AguzwP+kbbet%{p0&f>DkU-Yu|*IMVZ|rxBuWQBC_k_V*oC4K8|jJlM_Av27h6E zR*IZ&YJAs7Rr@=1IaZ#?jiyK2fuCN=(FC=o-s58)vt9fRVzMvh<6ub(jyQjzh-%AU zvgbUTd)YpG*WU4Oh+`zGfB5p}Yw<4#LR0mRk!tph`@gZcqSn6xryuvw6#IAX$F<4v zB)|9nOk9eTE zs4me9aa2#JC!!bPh@M!)BR-xTGc8Xr939)&ox!%0l2K+3p^F$aXsxU;qUvHU))N+Q zJ#u}{249Xhg(1SBGS#J2;9@*c7Dhe)BQ}^TI3IPH%p1bh2ZJ)Afa-$AAd2|i^VFrO z(ZmeTsO@{*@1LfQaAYhq_x0Y7TEqU>p}_A61uOjp~5~Z44<@)3!2r~ zx)QU-#>%`Jiz{y_&z)Hpk`ZdR=frxSrCPc(-DAlaMyeQ^v$mUEITEqX*duNi#pM#+H_}JkPBg#)hEm zPq+4YADK(pynfBDHqLI{>x$GkGwh!o!tm*uCc#e0S^`V9B+S1k!Eo3$6~+ooOFKWe z##r&iJXZXk7!$3CS-$tlmBSt@!lp%G7ABv=-oQ|2F=uc0RR91 literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/1208.825.3.bmp b/BossMod/Pathfinding/ObstacleMaps/1208.825.3.bmp new file mode 100644 index 0000000000000000000000000000000000000000..2f7aac69a74b78d9f42a91bcb52be7d944b68347 GIT binary patch literal 9890 zcmeI0O|IH75XX&>Ub^E5**$g135wLNdmnbm6ANz9O1((4;~J@YfW9RQ#JriY9UI3u zwpBi5OC(O1AM@dVY=^Jkf4vHBU-0-DKR;$dd;@@)z>aR8utOiaH30f@j`p#wFr{v! zl^f~cKz^sR>cn=(%zmAo&z{put3f`qns9VlYw73m%sab{^&?~KpNx@NrPY9$$?0DH z^2xE9kijq?SX5zzC^bMqq-nHg2|WWNAGEZ&N;21)NAvx}&IfiriOiaWkjB6ruk|`M zOe!z~v-ph(=d+~QHId=pxhx}vO^yPC#Btz3g;E%RhpPdJFd!vwK2O2aM%dB$SWFjN zw`(zGKf?1$)R+pfP*u1p6WBBuy*aTJ1_gJ1yLG;9|CeE%a3t>docCihN^nECE2Tg8 z#LQBg)d2fiU!Zrq_B3YXN-S+M7|RJ|>G1+;t=C!A)|^ks?DkBfV_P_}iN+TkTMx|K zWiY3DgmIl3xy7Uf#HkxHdS)@GWca#815Z2Whnda;;H}4EI1_n@&gTYN>XivM^YQYE&(ALl??D7v?_e)~SI?7@u7RGrWTZ{2aAr0D9_XFu2UC zH80=?e)4~(q*?MqTLW?z9-rUPs$E2{EE~LmEwH7hU{>S?`WYN)=}lr9BC*N3MEUtA z2|UKfHXs*b4x^WZ>DZ1r%xK7`{g~W!uP`y%(bY2NQnyk!QbUD8m~V_OVtU&a=iY6M zrLoy`_%btk;?4KI-W&RPNn{WSFAN?>S7QET_~|p4_fB9Nzd3p`A8zF^`wTzwT{kVZ z97evor};T>K52T(VIad#7SjrBY5CBu>8Y3vCR8QXpz84P*$&S}RA)=fF3Qvx{e^Y~ EAG{nEMgRZ+ literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/1208.825.4.bmp b/BossMod/Pathfinding/ObstacleMaps/1208.825.4.bmp new file mode 100644 index 0000000000000000000000000000000000000000..a5974df12e1c378481927f0fa3f4aa9fb1f8c9b5 GIT binary patch literal 25838 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 literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/1236.1002.1.bmp b/BossMod/Pathfinding/ObstacleMaps/1236.1002.1.bmp new file mode 100644 index 0000000000000000000000000000000000000000..94466e0f758167f05f8897159b8f0fa7da86f919 GIT binary patch literal 813406 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 Dhj0kP literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/146.0.1.bmp b/BossMod/Pathfinding/ObstacleMaps/146.0.1.bmp new file mode 100644 index 0000000000000000000000000000000000000000..3b4e8c24fa9cf93fdb03962e90a01b725333916c GIT binary patch literal 813182 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 F@&DVZ#Pk3F literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/147.0.1.bmp b/BossMod/Pathfinding/ObstacleMaps/147.0.1.bmp new file mode 100644 index 0000000000000000000000000000000000000000..1a9f1b0b0d6773f006c817e4f508b2f0f7fbdb4e GIT binary patch literal 2097214 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 literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/148.0.1.bmp b/BossMod/Pathfinding/ObstacleMaps/148.0.1.bmp new file mode 100644 index 0000000000000000000000000000000000000000..1aa6c4d0911cbcbc04433dcd44e23ba587cc25c4 GIT binary patch literal 733450 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

yS!UwLj$^NB1RDsKYG=q+lUX9M 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 literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/458.398.1.bmp b/BossMod/Pathfinding/ObstacleMaps/458.398.1.bmp new file mode 100644 index 0000000000000000000000000000000000000000..758d063aa26b91b3b97305d949174d25da31ccb5 GIT binary patch literal 66362 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 Rj(qm$)bPlQE&jikegP6Jk@Nrn literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/479.416.2.bmp b/BossMod/Pathfinding/ObstacleMaps/479.416.2.bmp new file mode 100644 index 0000000000000000000000000000000000000000..73237b545e1a0610447d4e9ab4d3b21de2839a00 GIT binary patch literal 566 zcmaixu?~Vj42F9;;3SWLqob3-1i8fB_hGG)4T`uYiGJy+5#rv?G3Be~-|RwNS;hJyavhlr+!Z? EFM;*kx&QzG literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/479.416.3.bmp b/BossMod/Pathfinding/ObstacleMaps/479.416.3.bmp new file mode 100644 index 0000000000000000000000000000000000000000..d08ae6f9dafa8b9fdd0449dd2b9accb801d6134b GIT binary patch literal 1527734 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 B9ajJV literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/533.167.1.bmp b/BossMod/Pathfinding/ObstacleMaps/533.167.1.bmp new file mode 100644 index 0000000000000000000000000000000000000000..3620ef96a19f6dcdca5a57145831a6488c68f688 GIT binary patch literal 4190 zcma)yP-~qd5#C{`VQaKf^;i8W{QU%`$iOGMCjN@1n@u2);s$d@V{zjgOd_wNYH?+{)mi#-Km*5wP%T`)1-vaj&?nD}=`=wl- z@J=*3#SpA156bJrS5g1oIP-b9hGcUG3+>HY)suJRj}spp2Uxj*Tq1vE9Q)g$j6`-l zyvw8rPlLwqCC`?uN00U5N1)C|R~5*xaRSbl&HW6?0NeNaX!p z;x|$_-e>wln*zQ1z9h$f(ogp&Xh+YNQ&aiA3fe&$Un9qC%0m@kvTf`lGSH7-r3Fv9 ztMj}#DSC_QWn;-wa^$^MSn{mApgv_kjo_+0IiK?s%!rrt6Gp(yQn{aVS5?%z887^$ z@)^b!T$88b84s_(7sAJLx5q&{ZR88#OAQ`Q<;wjT?k3z+4g5^7WIhW&^QG|dIOvzc zCtnJmJWS`c-Z1nw(QFXh&5(A_a6Gma_2hoR&pD3A;$ocl@ul@rpLiI}kH>M&+yCMC z;n6SUpWOB<9%p-G@pT?~<>IuS*BadRJ?nM&$hDill)K!`Mnga6xX-d|sD6RB^b@iy z8_HASP&7$$jt}(HrQ47CdwEW%=}SIM=x4^O#Ph*0edhTf<$3v5#dG5%p2%GsnCl}) zaRgJqq91QPZ0aI!=G;_VOw{8}`mx@JCtMT#`sZJgLVpcH-wE1py<}dSpKb?!crH%^ zes95KS<(Mthg9v?qHh7%6Yj61!bA^m!5h;vp@m!HM;+dFwa=W1EAbAfP-44PnDGmQ z7fOBAwB|=E5!=xWU8R$cIkvSO4wX)xIHtk`Sl3}CC4zz*#vc>SL%Wd@^Ck`x4ZG2= z^*x*TUU-an*w#FF%((gi|FPRNC%lvLr{N_^383B3{{nx(_j~3@ zXw>h?)utaLwBcpIJEaH{-YRBkjJZS3w1MjaZCyxo`-) literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/561.174.1.bmp b/BossMod/Pathfinding/ObstacleMaps/561.174.1.bmp new file mode 100644 index 0000000000000000000000000000000000000000..5b31e9a89b342372657da3d4623e6e4408f15009 GIT binary patch literal 40310 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 L_wccIjeGtIHko)= literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/562.175.1.bmp b/BossMod/Pathfinding/ObstacleMaps/562.175.1.bmp new file mode 100644 index 0000000000000000000000000000000000000000..816b80d833bf2645bed6e59ffbad1ec8b79f0fe5 GIT binary patch literal 38510 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 literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/562.175.2.bmp b/BossMod/Pathfinding/ObstacleMaps/562.175.2.bmp new file mode 100644 index 0000000000000000000000000000000000000000..17079651cb37d28e0966622e682a6afb1bb66266 GIT binary patch literal 39662 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 H=PLgLKU;ii literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/563.176.2.bmp b/BossMod/Pathfinding/ObstacleMaps/563.176.2.bmp new file mode 100644 index 0000000000000000000000000000000000000000..22ad73c3a6863aee450dab3a7b399a4501065a9b GIT binary patch literal 39950 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 Rec!*Wm7JJ2e}yy&`yWyGQZxVn literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/564.177.2.bmp b/BossMod/Pathfinding/ObstacleMaps/564.177.2.bmp new file mode 100644 index 0000000000000000000000000000000000000000..69e3e196e1c852c47ee7a84c402c1d0452d9d68d GIT binary patch literal 40382 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 literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/565.178.1.bmp b/BossMod/Pathfinding/ObstacleMaps/565.178.1.bmp new file mode 100644 index 0000000000000000000000000000000000000000..7a5604779f732cfe30d96d297ebe4a05be6e18a4 GIT binary patch literal 38870 zcmeI5JFgr^c7SVkj2#)UbsaL$ZaZ{l8ct}KPzg>p@_)FQLKAR8z=FDI0(P>nLMt$! ze`1zE!_1bM;b>J0VwWLDxPUc=hPQp5Rj0bEA2V~8qSr2f-Ss%?2V!pz%^Kku8M54e z=q}{k5@&xg=RllzF=tPl5B}Y`8Q)hFG3V+xmvSQ6v-z*P;kbuO!)(d5K=$CFT@sxw zPn>&~aXK^w!v}u0zNNyBAb4n&L}$xG;`mv)rNStjkD4XP`Eunv{L6W{rP9Rt+jdEG zwp=+b-VrC<4d?eSK5_nOlJoqqj?=Yh(KN?>?Cxzl+$1N%!5!U>2XN-JrTEc#6poJV z(e=Dmw$h$H`8BX7K*9a>e&r2pQ1Pi8l&8@4MF^5Tz*`x09mjJYMSi%!oXSz?@P7GJ zj&>MsiZ-0e(M{+A4yh`K8p{~eIS!4<8$`893eI3zP2*vhZ&{J6VpoW|Ie04o@s4Hm zI(tycN#Xo4rH-4u`+R#l6b#I{TDIrGHR-;EWvv}j(#GG+aHM^NgHwB&vwR)p?? znzP;CYecAW;-S}eUrX6EXLoquD*(yjA=3sOGF1-s#no{I=gspudxYbkE!mUHXY9#B zl^FY#3*hcFCp5-hyvhxW{K*sldnIFIuRO};e~_6&}LyV+kIHv9J0eeSgh;<7zFezISn(Z;>ox1f6p zhxhb?bA1gkJR}ZZ)T(v$Gw9f{M@cy}s=XLbFQ>u>D?5UQCEhI3QjM-qb~D>xJT(L3OT?3nTE zbbAaZ_dD2MUH@nN`W@oH7|V_tzciQLu61S(X6YhUaH7k>v)F4qox#D0;@Z#LXTsU_ zU!Bf*9d`H}Xa{p#*VS#`AO{Zfq42AZuy69jz4ffO-8W}&P`9jn6W4KIl|p3`N{&O9 zY}PX)YNEhtO%kG3NxbYF_zS_q6lpLr4&zm`Ye0s*bK-2{n^ zF>)zo3#K^;oNDJ&?71Tj54E{=UT&WTJijXrH^EAKZhB~E^Nj+viF0VrNgTW=u=l!# z!+zzf6F}#{mE<(*H7Ubz_-fLpq9QWjaGhq5j5uwfo)WA$NYaCU&I=4eZ`htT$rcgf z_e!b6}ApPaln=}2oOAd?!=U<3H#vWO7%klF@4aYf@rVzbttZ{znJiKC; zV8-(?tG38_317s;?cRf5AAAc3|9sEV(S46K{?dJ1;z)-3P&ud;G#AeW$K9Y;bDTym zc|dB0!&I^y>cD#?3Y+L2Q{+RhoOUhe^BN~NF8~8q!pG7tURcNqFlsxpXZsBASuiv! zIa_G#F$a5;Fc=9OqoW_#18(!h+79G5YEM?U;%=w0Z#nINgBZH#y8`=@J(eR)4>QAZ z`o!V6KpYfp3XYCLa7R{T(5rK(oT=FF9>h|==Xr4jJ3ogh4%wSI?U>`ifU7#-idp5V+B7NAE9FLb$ zBJL<1AFIpT$G=7@QfuWf>E##*Grkq>1EyoXxqa%y?368e| zOgZEfS})@ey#+Q7Iu8xSp#^((1vT4q1P35wj{76r1aN)mc{eCI)cJ(+X0;$X9wK+P;O+xB~BWH6dIR4*P%0cz$RIvqmh;F45^B~C+p z<*4?#9B#C1502n6EZO799$Xf!Up0=_MG9~z>nS-=3fqc3>^rw7vT7X89E|5ekR~AH ztmEXBy(=i#@9fvR2z8-*3?pujk=h4;8F>$VlV_te3Gl%Nx!zS!%_F$>pARKrZ!W{GRB-w-cP_l_j zoc$Wkv57yOw1?NRxQ5gFmuwgx#adpNZp+H@+w zNJoXzBG6j2p9m*lnNQ-(X;Zq0kZke<6(L9)1dRJ6&YYAiBN1g!;N-5Xa%_vFJ_=Yv zljOHps4FLiPv7q%^mA;v z0{%qdDJQru4X1O~JQ32<%e}{qN`mj*u74v5)H8k+yN4>|GrfGyN#JNWjiXv}K8f>< zA86;~Nt{q_KA8e5#ah4M1*&t+6RT_E>p2hHcKZt*BNjpN)ttja;QXhKyz@B`zZJh% zj0*#Ud6H5A1Pi&&rk?y87VFxOlq9mA^F_Q>BD zi=T%(9eh}3mT?^~IH5wx;i6Wp5so-2dU-m7G6m*Hg09)wv>`_{*+;WX1yLPy4iSqC zhrq&t1r|f@hEFIB2l7i3C;(sYLYU`hYxVnURXvRpMNO;OYX(#tqzq3J_B6eOD6-0V z6(nQK36HQy1wkL$C#6))Lq3LA9STEuP}=h?48uzMuo4^tDY>+RzLIo>!`}_GNfmG5 zQlb;RMsl7j=W%JzuX_3ZpiQcMtZ=*(!{5H(aKGe0I|nMrn1aKF*{{R_Pqhs7vA^(~ z2R>yaDiuO`D><5WKOWgbMRp&9j0)#9kWDu%)0SO#hyCnDSjn7$$^$&zu+hBAVy(=L!VEoeQZy9!IP#xyeIO4ftLXJ0t{@Y z;QJ@B0Rc_pNC?o&$xnRf00EvkE^zp2r6XxPc(}pK92hrL1iyz`;P4_%!iWKJs9j!Q z(DjcN;So=QC=U7Tf1#{x|^utmXVS>o{cI=;MUU0bEBZJWSey zg)rKAWrul(U4g_WH>q3oW_B6 z5Cf33{VH+BA31PU#Zg~i&^p%TBCt*`1Xgm?uhO2)_lc8VcIRqFvGKeR5nG^DjkI&d zRDTr{?=sFoYBNhqu74PV_LMAGX*yGyJ0N>#iign|j(W3}BUUs+d$iwI_Loj0pE<(` ztd@~8!wIYNy_fdv=Q&B8BG=a`ojAPAJXz1#!*9U)XCXDUyx{4500u03slTu;JFw8N zRKE|0&7m##3(&>z4IK@q4?|A=jKG61zN|O)he7@|3>;6#+X!hJBn<&gIF=;H)7h=fsrwEwuVB;dcK$*j~gY!w8fQqn^R5?@#&PqL{%k z6asJu2cNPUQP5=tH@HDS1-{Y^6yt+%I>|~}K{Cc1E{b)40bJp&5&z$3U`sQM-CO2sJhy>e0x=2E~Ocr-OHghRzBef&)PPB{$0 zBb4wj;)BTGi53vA{Y=XWX{bofp=>-T}e4RJ%aWk#eTQ;17Rlc&g)ddmMe7pfYfkZ6AYac5%*}lx<#` za~@u;FNS1KlKf#gI?l4~=h^fAbA}Ji5BM-+F^v8CVL9XRGqeXkxLgj($!%~RNB5On z=Xo5pCyzt(l$P8%%`f7-K*iw}ypB`!`-`}H5r>xqCviO4^E_@}z#{3%A3dxahjK&3 z9AIELi_?+n$Fz>i)z0~xO=!>!83ZNAK4wCpi4f49O=z)LIOQI*l0&|1_EgIy9KNA~ z=fD@*)BF7L{Ste?jJ&aQ*jVQA9U8f^eF{!o!I|C@lRd}l1-rvzmS@hRF$dc$ zEh_l7$6iICb`FVisBmyxq(zRZaZOe&Vu>SfJ&JJ{QCGxev7$L$5IB)I0d-tiU%;G} z1!Y_$^Ga4;7`{ZE!F=yb4vl?Cm-?E@99h)7mf#sNYT;TADD7ft52K~Upo~ImD@t** zaE9F%(3VXq((6uX+0~o~3gx`urj-E{*qp(FskIt=Fsm!(7dMIY&;=ZEh3o9Zo`#cy zt#yz z(C)BKBYyx3Far1v{adJYTD=FrH^J>Erc`+ps9iiM8V^qMDa0nfn+ zTFIzxUgwtfsy8c2A|M;}v7<=+NAgRNl ziNk@Tc*#}!1Wv(0|x`6Xpldys=l!1)GHQyiSIDb&^t;Ls!h&R0Xu zy?eZF;IKfB4~&}N03w1tx6N%^+SBx}Kz##$5vk#GVO`$7gh4&s8WnsEO`$@UL9wD~^F+iyV0KwCi#&d8iw8$**-BtQLR73LaWc zryQUR?eU;82z(KRN2nUD;NanMQ|zG(_A5$hn;_g_FoQVQ%s7B3BzrK0e&KKr5a*tb5W~=-3KU@gsUT;_ zj2ImRYFo$)@UKD5B-LW#z~W#B3g85Vpm#D{#z*3G9QPy@IKkJwsv;b=STjYCPQ($_ zw%|0FQWfD)o*HQ})IRD8D(3aR!9*0{mi?lKX45b>--{d#z?PT4<{Q{3@XI8J@lOb#3K}7AiuW9hU~e8jV0`Y;n2@b zsZ6Fa#$Q2gTY0S$i8A0Ex5sVV#mpfB9}K5AuZAoK-s7{g{Nq#lqcl{FpWvA6K!VT& zeE`RWqdz{SLi%_iYgl`7ZW?i(u6mBVjzwuo;?TznS!06JC3~6lY zl(o*D!H-XgQ?|!C&fv$V9olmaXYk|G zFy_D%Z`tYc*pVn7@G7kM@oAv^LIF6w$dE+G2s&cF^N&xZZ6jqDYP7(Wu2OkNqI^J3 z@#E7-`D0Gmg%yrYf7$7HJHLR_ur72mgmX9@X=+neIFz;QS7c7hHdGq5f+krpK(`ha zORf;L@M|T9p4(hKRaN>PK@)Ud=I|EfaiMyns^hn#-M;7Zm8;#B6>`^E{5gID7h{G#z(@k=>P<`h!H z_5rc9O{xl>JF%zH%+Y(0RH730&yQ*zT+MOtnv*UzIHO_@tlBD^&r2M@P|AM}|{-hi~1h zO)EI?pVYt)9b$!3-rZG5mIFUu#veLBx7q5+o<)vrXQ~FCub1* z!nD=G7W6t!O^SvuIL0;ABu3`I;>^MJ*IjXKy^ z+9sxWZfDazf{|N7K{4KZ*Jr(tZ5T=|~Q;rkoCg1(sJF7>MuU*Av8 z`Tbt{rCn+|bkyzje*f)o?#i#b=GdKk)Ii#Z=H2-438Ri@dxLlmM`npmlM#Y4R@kEt zK$|*&bKfN=@O1O%+M^9CTjd<4KAy|<2mT5_4Df~LHr4hS_7MHagg2+#qw`B0qb~|) zF?GL2oOuS8R{gpwPH-IjvK=Z>wI>RvRjK9k`^M2pSgado_|>b9eNL=-C$tYf!slR= z&f%nnHhmHV?M>cNR9A7kJ9WZomXuAouDPb|@@i z^aWGFf&BtGX_;SyfPl15S@+k6YxiddzeZnWq`yke&GFj(xp@Pm!ZYV8r$7G9j7q)8 zxd_v#w5KjPpUdCvT+Zn>-)!%~p0N4FopAP>0Gx9C%(q0n^w5MK&HN$nx>7CIN8k6a OYb7V<&0ir+!u|(w!C2b> literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/565.178.2.bmp b/BossMod/Pathfinding/ObstacleMaps/565.178.2.bmp new file mode 100644 index 0000000000000000000000000000000000000000..76097aad43204ec7ca3b5a28b0f6419b5bdf9734 GIT binary patch literal 40382 zcmeI5&8{3bc7W@q4RscRZ-Q(Tz%$e`i!2Oe5f9*)M)rA!JMarAt2l^bQqaPiAoBu= z{UU)yjeuwq;N}4a5Cs9zQf&x`TJY7aoL~Ob54)=S%8@gnp(^t5oR5e9?5e))zy6!= z|Fxs=8C?Gi{{8tMblrcx?fbLtj5F~1hw?8=y3X|r!}&tJrrN7+bN;HSu_*JK=iO!- z7pbZapqN)<)}Z)wCA-vgVy%@Xn{C_^BTN*bv1D92+pH7egDJW z)}SLe9W=tOGpBN{?sa`1hbz{4fA;$hL+wsavaxueRVLqDq0OL!(>QdcYBT=ohB&W@ zGpN@Q{=DS&sVk5;&8k$Hm%Q@XN_a#&KZ)4Roq1S+NCuZm*i3vA$mZNsTI)FvJlWi` zCvt)meJUpk$DQcUG{+0Qf;SWY&uKPKAEZTXrRGIi37ZKq7%Ye?ZJJh@TC%OA@09aJ zRn#D{(4W^=7u^@bU9LneqgI< z!HI47*l#hXUgrC&4O))ecHUmK#^EA=Zk99Q zbt!@oS0*_Q)5T^f`;*g?v76$A8}erXCqQ?#KE+Wz=Qu96f=5m|4P|*1L(cO`0tsm6 zLbQkjBdmY4KilP5&-+)w3FuA=dg!2k_xk>9R3<{cWXHZ_jNr#0|JO5sDytZ?i7d%{C?ute2 z6T9y21+XqIk|B}Ta$qt$V0CWa;&fBHN;1I6>#*&ClSU7S>J(`o=JXK|wOZF1GA=H) zLXlBNYs+G3RJCI`_2$l`x*(;G?v>g!$Bv991Z|Fo?##Qugn1IRIbks;R;!dB6n-=( zEg|gijdDzCghpgguYo@v+vjJ*`ERRLJ*8g%(cMaQE;&zozp8!ysk^0%1vX@2ZX>K4 zFV$1LV|LCjb0EIIojI>SPq%m8%r!+ui#b@L`o@Qgs%A?$Z;_*xv7=xL_aS#tz1|>4 zw~K&AwV59ZiZbX)g4AV4Eh(7+jdF9L)T6*i{_uu}KH)^tbgV%}H79`T5>7ZrV_R_^ zaf+@1a%VXa^28rc9K)7q1L4_14xMF%(-B983}d<%6-PUv5K6S*Tr-EEeE8`G94T;& zfddu<&c0#}4_(_^7&!Vh!e20u>=g3 zv^~YO_efN(x}7%$w{mR9s2rj~LgQEvDLIfhojbsQ`w z4^ka_8qgF| zsfwsM$e^%@bK8I}?~6JvkLO5<(szMDj+}wZGJjBAHOcbrkR#rTn=`lD$cd7P@%~ld z6eUowh;#lDG?8--=4ARDA{ZzEnaeoa-+*QSGXs^gXvS|6)^aw=v8QopK6|Fmut9G5ua{R9Up9iSE%EW~xW zfqG?sNa`?C7LipPu)+R{v}8!Vl=Idj6#`e(HunqW1kw?2|D8RDcL$8oebD1b2%I^r z7qk@ml^APc7rA=!n;y z)gooOB@Qt)6Eq}XrboO_0pwO*8%?)x3u=NvG(T_}W3f*Jikv-Uamf*b3fg_3#Jajlo8)j=hD#95Atxw7?pFMvPGT2& z){z|1GXsBEM>6529IA|PB4xXtf~SOmI7PJiBd5~Uk+NtBhX;^kcv3Z@k=9}zWC{{( zE=@Spcha6x$wM5~hJgitGb9`uthxt8_QwwDHSp)F?|KOZhX$(*pI$iT07qN^t?W

H-c>;2C+(4LC8+QL4E5b8Q}^_MtV$FsARf5q8j>a_oJU6DPBxa(er? z+gPoj>P5Z|whKE2`q=1uy_!GdF&kKJ_{jA*Jc-Hb3?}6F| zF2P}P6b^HELJ4QHThC#O>x#2|vz`+jdcW`J7P(&M`y)6OIZ|=u=*K9`Dnp}vqCv%2 z`%~JMao);R!dsuDc*KPp;`n1YLAFHlDAGdERU8tj_vO8=SH+>D1gtC;^>zG|wq-m| zch)ZQXp(@v;T-PxBEO0j>p#dVf2h&H+Mt1FOj&OfbD&JCDY#c0>?vH6NTJCIpv7v! z8gMKvZNwo}&=$q|Mwz50a_MAFMf&t5{qP}gv5Y2OR1Qp6TI>B){mo{5CDvBhm@~7bFM}ea_*&Q8wy3efhr{v&s zn=XCDjH_AZr?|%|o0P53z=iCgHlwe)C?PC~&Q$*DI%V7>pGLB;Fl)YPC}FR@eU8{H#4!ARmK z5&Ahw@=4sl8ER(WB@>RsdidVzFgVV89M6vA?6$-)%n2QQVdW@)gd;;!c0tS3_O-5; zaAa!mvVKha?0!r2syXxh{wLYTfj^NrGIhnDY0m4bZJ#*!dIEj`B!&7%7@8c|**1UN zKV?(e<{ZWMJ$wgCw>mfgN21X#m`buuh{*X(wNZM4Z~r`36$L#wJqNh!GZ3xpkgV1aADJ1{8VDZ>7Ww= zT*Sz4acG(Wf|95O{yesrqJ&It^am>fota#Su%I>i3pl@Z$Uzfq77WP2N%NO4;NnO` z7hi7#nh`+@IQVErI8Y`A<@7Hh-;szeO-}a}X+~nQ%{7co@CRz?S8zU^<3JOy;jrhW zKQQ;HeU9hw-ymcTRF=Hu`VQI$7CQ<7v@lpq1&qnxG6)CSC(d#30m-f>%e2B6kTFNz zM+gUcujWJ@l)$(K-LH8$LJu%x4kRovVNzoIv^XK4C670ZVKDgp`#@3Tyg)Cy102u# zP-tE`O&+vICskVupOLHgk9N=lSlh2L9|nWE-=D!}F^*{WJQeL;3xLiWBDi5V>&ZAO_{) z0YLwhN|tM0M-Fj#o-)*FxA4$g$GO-fk1b7HNb=B&k^w_C51FLgh?t&66)j3&svPnz zH0&trZc?~oaI#>4MuV`jUTg~2j}nKcsyJ6q&7?ga`RHk?ibH>n<(M1dY+x>nxAqi& z7IDm_mIXzQCM>&Q(rh%d{y+}C1>m3&Tva|68Qe0*B4@JSfzv+>Vq>2?hffx8V1@KO zk-=@yK0$J-@r;~ab1Zb~c?W+~B${$Fb-zau(<})|hd4YYfP*0<4o7Am^z9P?e6=U@Xxw1eQ#OgWT50q5aj-$RY( z{26idb*^&QJAg6sbPj??{T|iZ!XI8yX8mE#c^c0axT#6Hg7f#70fB4cD6T0e76rK1 zdvU>{LXONi;Z*ha4#(h-oCO0WAt# zi1t_E59+fns9^heQ3W{$&NCE;i{w%-fMTi_#(%@Q5Jk=txI_4hhin=tWjQh8Q0DkT z98YrI+0>sSIDzps#|`|!0@EB}gYt^m`wv(mmXT6UQrbQi)1_q{C(frV6U#^`Nu>61 zD5!1A6mh;n$tH+tq+k7+&@P;Bx-<=%(4vp-x}Dw6!sV;f3-<;jpTClMqh z&Z{dZKE09nv3xxNzlKO0Zm$EJ{>o5sa;YA7_s>>vN(yeat`Iz$;n+}mm-?l!Y;r7N z0Rf!tWmMK-&Yo1cec&4knezl%^+*o%M&`iKTEpROI*spw15L5QpX)6sZ=a?1^Bo6^ z63F5()jord!|D4Qj0$48nge@&s#W2FLu?dio{uP%F!1O1nNv2PHct-&KE)|=xSe&c zsqBJ2k5XyHne6vL!E8vHc|pYG-6;|}PrBNms5*yd9gdNvEuC@d)2=1?w} zQ$aro$3tmcoOmj`1*anBLU5RD`r}cpZf8c&HDWFVhpCmEa+qls5%i`w3N5{-0`TI| z?J}n;{gJ~0i-c3=Y^I>aKs|@Aw>d6#A8 zI~P9ezIKIj8HEplwnz^-p);C$)raXp$O>K71VMuXk0lj3b+7x~*Yl!}RVh>UDtkAa zVSgRz&uIL_su#2lQ}?P~BTmupQ^tktrZ|y5-w1iwU(5aZsW`T1gI4sAKR3lOEhmb+ zwm-|q&+(ie_nU{8;!*jAqVK;ezu!U{@W&~I?{##4XZ!Ghh{`tWkM9s?bNK6(T*?P@F&a>Tz8(E&j1MzO+DA4lfS=>I5%}*?a z^8?qiToPNH*lk12k*WGT5UAv|#!u|vhvc@@2$4OI)_Tkw?E}I&DJOyxvM+duIp}hlQMgjwz>?Hw^-T`(YUvgWuZr(P{foX7D3k5xz(sdF0s%yR;c-^{^E z9LWJEbo>MwM>2lWGu6WVhCetjGY5}++PNslu#CgHI=>7U1)ZmW50LFLXx<+$9Q=&t zm=Ft21aW^J@P8VEVaRz%QoK+rL&3sfk$r@BK+yMX`fXr$YmNM@-p+QN8pB9;P^H{7}8rO+eD4{1?Dm55o*9x#^s5A zAK=15-Z~C8U*ZrB`4|>);uisRxn%;`_ueY!F6Lo}qaZSfDM}~!P zET}^lI=t!9OdM2S!7*qbr#UupaG16Iq184_ap3m>5(gC)aD3)`3{67yf_vgX{Fmuh zHgfw=G15MGgOTCjM(tB_zlZ-cf5he7BN-7PY_s?I6N>p8SoZ#307ODZJ~nl zUUNR>q=$tR-7s)VGrC*B`G*H+39fKQSW0QJsc%$J-fMpn$5I`R=KSq9Bx@E8)8Ph{rFcAAzmD zp^)DPh&1D%M#&r^XOE?j%<287GB1Ji>U!7xUHZNPylIFf^fWPjcPhZjIBrVcapLZ!-|;l5l` z$~PutnuhED7AJjTKzGvCfr)kXYH+Gmj?`wk%TBs-jEhB*$ZUg=OuJY#^q`p#DtOD-1ZGZ2NsGlCq_o#T+~( zg7X`=?8yT>U}12SYW7z^J2$LdKoSK<>yMmdiiuQ_fGKsg zrg_X^#gdauG2f_3gajNyr-H|E$cXO49QAP>i1O~dpajzE#7~Q&M*83l*TsIe&z!8a*_q@ z48QFrm!!U!lez{u{euACwcVZRpTVv0C%G-0?K4=PbzQ}^A}J&vCn7p2APYDSHSj=J za+1TCITs2JtQ&5u7SftF&MPDfI55BtSFO;Q^Cu0|qWDoX>JBqJ`lu!h3?1+)n!3LO z&giEcs9e9=p9be}I~VnOUpVmbhJ(+uTt)Io=s>;Tw*q3f-{9YsVmO*ZKM#;U#U0JT zF2z7I@hSSFKXt(ll9Q;=u2=7J2_0thT5~Gqm z7B!Mqr6mroI}!DZgO6$kl(sn$RVV-_aBMV$NN$xnd5>%g*V8yu6teJLj>pKvX)B=A zPWqujQbDy(Ko9Q_MyEE9(l&=wPz|4%;2nb&lJ79g7IN-2IZ%Yj)QMOi2jFtyibsB9 z#l`&&^DE7fF$VluIDT-Rs&A)qJcCC4MMW(12ghN9Q?B6??&_2RN8S(4@3=|eYEPT4WlC$vxMYvibJ{Wu(IXZ$~~aA-e7JH*L<5pEjex&DIL*xNpRn+4}#YO9eVf5FU* zvlIkkdEC(XMFL%Zt+{mp_dCo2V?}*r9b!|H~3i5Typk zFX2Q{a=H9r?45Fk^Ovv1+gPOHY2bKU&gkkgB|n_}oU#)BUM*YU=>aqeeBrq4V^tEOV|Hq*^JX zilEa*B>K(ZN}<1e%e}FjQ`>9mQkDX%g2_Aj)7E$*95-pN!owVWMDX+CX#HAuUUJ*@ zYT0WZ_xtG_9*0)3N8clijXYY9#`Nze#~oiGv7~zO4_uzax=GF%9z{2`Q%zG v)oZjLt)Ct|4B*(0`8(KiU@)yj8nJd!x<2>mLW-IK5s^t$dr@a3G6jZ66 literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/593.204.1.bmp b/BossMod/Pathfinding/ObstacleMaps/593.204.1.bmp new file mode 100644 index 0000000000000000000000000000000000000000..8925a1b86f1ced8027bdd9df46f348184a555e53 GIT binary patch literal 38414 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 literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/594.205.1.bmp b/BossMod/Pathfinding/ObstacleMaps/594.205.1.bmp new file mode 100644 index 0000000000000000000000000000000000000000..8925a1b86f1ced8027bdd9df46f348184a555e53 GIT binary patch literal 38414 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 literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/595.206.1.bmp b/BossMod/Pathfinding/ObstacleMaps/595.206.1.bmp new file mode 100644 index 0000000000000000000000000000000000000000..db91de34bf9b048833768917a2baee37724ee288 GIT binary patch literal 40670 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 literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/595.206.2.bmp b/BossMod/Pathfinding/ObstacleMaps/595.206.2.bmp new file mode 100644 index 0000000000000000000000000000000000000000..8925a1b86f1ced8027bdd9df46f348184a555e53 GIT binary patch literal 38414 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%0DDP)DMMRCkk71Tl2fWBP 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⁡O{F%jh;OL?r%pI7Q5llevVX~5nCPNW?@M^I~K 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 ChMkrG literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/597.208.2.bmp b/BossMod/Pathfinding/ObstacleMaps/597.208.2.bmp new file mode 100644 index 0000000000000000000000000000000000000000..b8dc5c8e3456cd00a92f507b8c47a8bdc192ac4c GIT binary patch literal 38510 zcmeI5%dRfFQGk1AODqP6^#TYpWWt;Q!V+`d0bT%wSq4aUo`4x*#w+j$eU!l&@&-AM zGKj?F9F#$}#L8;w?((H?|N2i(B4KHFyX>mZ<#O5G|GMqJ`}=?Tw}r~z!u2oV-(US` zS^oRC+xBVs#2tA3WBFHGmL+X%d27W-rS~O$^Qf)2ds~**FN<$^tp0`OoE|fFR)sjx zwLDf`pTx;e;t*y?hTC(4<-(F~8+Hb~Tp#Cr_auLQ-#E{T&$BqsTK8vhWL~jLtJ|V* zUT+(A2EzH&HQyE`4?oOVd0$-Mlw}F~ZsyCJ6*SW>=rV@_8Fx823YJ|3?VvzDfm3j_ zpw!{MVmFkbqi!*5QZy zoU<*x1)mH3^ec|t>HXP;2Hror9Cmk%vo7Fobi~2~s@UJ<7#pUMWea?*2Es`ycXv59 zCY(r`|El`J;Z|*|_cM;Izi>h|ZEDKt*Eug_@n#%3r%Y}r+otj9`j{OMLb?8lRwGxo6x4f6EWVN#bySJMqW%!ODK`K2c@ggpMy(bzhuu zB%ynbnpwLxq;5bJC4o#|+SM$oo;2*PyKwf_z31%hi%kytQ%+u}Slrc5yU+VqZeGkE zk^Aus!_V!iFCBZFPz}2pTcobF$oNs)GdBd4hdW#J&5~C2{5j>2#ju=uP9`1T8fREe zJ(m8a}K4aiw04agZ$Z9 zuRg6F<@9OwD5rPx$((~YLu$;jq6@$HbHs6PZ*DQaCr)OEKJ3r>0gm4U&*BvJC%Ops z)!jIIf8^lrZM_Wd-0=10zQB5U4j=sWobA;?2F@2!Xwss%~c>9f>aI|-S$V` z;n32C%vitakG|WWsm_b)cR87?=puPYVOFL@px7WaBy9~ew0KU~u(@bhP82Qc!n`VYxTgw>^Rr-Qlmrxyn#WN1N(?@;=I^#h9Q#koK z9NM@~m=}iU8T0Btw#-6IZKX+=Vcns-f1b@zS2$sA+O(cP7Pb}B> z;T1W-ItNZ^($w_0;>O6xsS9$81BbcoV8m33p7_>>gO&q-AhxOt<9iN?+DE>haC9x@ z$;{K0?~Z8S6^=duU^pzwq0{CTC$Z^D7~`;eO2vCQj*li{W=;}Qu!0gr!W*DQAB%-0n!3F%0Zkl3`ZPGr;~YMR1P@_Bg3Wj2c)1qaDSMyg5?u9w4SMg zfXb^|sHU^TMW#|!aRoU9Xie)GvBo8%HmnNXsEBG2F{vVvD~I}nbv7TkKjG?0K98Ig zI%_&*kW?3GBx4(t&*+tmLGuSOp%Rr$8Y+R{r`d2`PztOm`%6V=L_j3rY|UQ&ob-Ox=8W#jJ>|sqrz+N;>KR zOQMSwnY#J%x`DgWH*iD|ZJ@9esZJN^CeSN>f{?y}gNs#cOOd|nB8VIKI^*bi!E(_z z(P?n{00lNO=EwnU=~I6k=M~K#Vd z95n(Qiq0#Lgo>B}t8@#;k^&8Dp+H79+~Wl59yqE_u+NkHVLS8(C-EjzIp%ztN)DBcq_`hI~l`oSo%QV9?(wG zyYakM0ZcfW+`Pk8((^|#!pZv_-Lz~e%cTdmVj-U+B0EmPHYn(W<|H2+DoHx&AV7#{ z&~dN{3vvS0-~x3gWfIlBImf)kHHyk1%T}tL8;^(ZfEOwaCp8?CR?;-_-8i4=`z!+| zD2BUDDx_&5Kff@BsYc2B6HRpkQ&5sZX=#e`9Q-2NPY!eIhB#Nt38yX>KLNkn;k^A> zJsP(Or!Ln!z02=$e!Kll=K=R-Uf^oYEqa22M#u3^>~S!ot2-zq9EqDGK96xCzW+Rd z6L7&l%7I-2ThFG7!E+y5TyUUT?DWC*Ha_6WX9*H^X2jHwKiE`DIpVC)`DT#^35w-m zWnirwai9~59xE$J`|IVv-MsktR!(`CLwUIb8Au)q$&Fj9Fh~{L;!q&{!=n-;Et=|Lr1)=_JQ?%Mx98~@yhH{d$D(+tsZ`tZH&tQNY{be(bd z2pJqIcR9L8I#RyN2_1k%%816*vw6iS2g75>3u$EAm26Pjw0KKX4(;I1pU`OboTk$R z&>H-S){7MwDK!mKfjGf;W!sh9dX2N9Kj}G~CJkX3ugQA@<8HAQYElDk~yJEF<ln(afK>-~$OM z041Qo#vESiNG){P;jo^LzzG}30P0D<0B!Muo-*~PpaYhOg#@;`$6*gN5m(0nCivr9 z$W8Far9U^pRXC9w@`8m|uQ-maCtI*`bLIGGLgQK#NjuN6L_FgJg45oXeUAPootLfy zYQYRhxxI)#99rPi?`|ISpj|mXUjmuH8aL&TL#G+4*W>Z$aA5r}8s!GVC*5A0 zkwckTkH@^ceD}){2_%SP65M3gYpY{YTIkg8QK=+)Xrs{j({T9v zS;S#8AgaCI=_f=;z~OX~l+amqBAH>xVA^Thu%=Hz(24L^gMF?cfzBz16N|q~#?Qe- zszrtY37`iY*-Og7yM8wbL5>5VtQ_FB{)p?!!I157R`HE)0J2$Q)MdiT;iG{i=xzK_ z-x&Aej+Y51q3yt-hL*!LzJgKjPqg5=o>Nt>i zFfy*M7V#mV3<yr*Hx)T37=K zbYV`y`Yy-iPeervWh8+vS2>cDVkkpa49|;?<3oSAlg|@%T_wbkKas$;4=7~rg8JOa z1A_E7*sT&;uh>ACx}UJgm&&n)rm(x^+6rWl_$N!^30%j1?yQ#B6L@^O{u($k${~l( z&T5%~6CDS4wR($V%nJFNu_u}3+DOoRm4k*7NQ9L}YB?GDrbP`UkSN0N3GY@QDmt$` zg+OBh?Qd7_&LIah=Y<9>@6Me=PVtmiCzic(vri@{DFCS4nL>FQaBAjgfk95 zr-ai!{2Cl^{P57%`onvw;mo!vo@4H`#vxh`Cy;O$I$L&nsR(Fp<$%La+hD4$g7a_l zGq>vs{mWlRvG@x8SHV%_d7pgKgyZ_Z$hW1u1=eXjqHoRZfEoNrzQ0knj#JJg!_3%K zXbFOAfc1)Ayu)cS=mVT4BR;@sGW0Qyf05&`bnAXGKKz#KBfGSDc$GsN$Z=o+13M*X8EB!F%%fM;UV0^Q2KKLqTbgT{F&tn|S=x1=c1sVK-d8g{`L9H~3z-iJO z6XW-db1)g#1@m&!Y+kPWp!)xugWy2dX?)t}n}fBP*GiN1dKRZScAY!jjym<{2j#%F zY(CJ#K7Gg^df=e%`>fXcbkfCK*QU!?kSASvcpLX__J>u;X-w z89AZR-s7yG8BH^TR1G1Wq4+08+4U!bW*q~idL%Qa^`{BDjn7|Z?l_hrH#qbvSI0ni zYN}Dx>oj5X(j2?a9Ud}i3vtZ78=U49UA~xZ^O|yOOdXr=g8%Q>SPDMD@Eu0#jEAM?F8l+wvRJ(%MglLps?2R3cW$PvDu$;^ufHI zp3s+A({mDUef*&U;YhEAir5>-h<#(Vx!=II`O$x12wSv16B$e}_ZAC%(sFuyUCb=l;ATn9UxCEp@S33VR%w z>mH}jyjl+Fj`4X(&_-kEm$57!)_@*BVSgybZJ}^XEL@t<(i_ z5um9yoFcvGo%2V3NZSy?qnyfk2R1es~a0p%knAjhyCyZq}>!XP5IU<7oJqBT~n)Gyp65^Ec+tx7)ujOQ2!EF)YH# zBy=3<19jx+Hb>3>!VHhZS;>+osc&b-;Z8Y5_c)0-g*kx)T?`f!n^Yu!G;`7JYxIY^ zT(cmfyh0R@TIhVGZx4DM;ys> zbV=B0mDnGXnB&)LiK`x-+-ysNqv+zv8<+JVhyMHxDbXcn<*)~VokLA1CgFMM+}ZvU zIIoa9p{-ooihGWvmSvU@`E{f76%GjV7$TTlaI6pxJw3QU8 z4~0_m1-e_Qi%$jy6b@OT`a>KsZ8)|L&{+d=?2pXl!yHbMc3zM8^TTi~3F!H6enay; ze=c%lgZOcrC9Iy4y8LPUX%^4faP>Mz4iI-ddDs;WpCljWL>gEo`2l|tPhg?qjyZ1T zYcsE}yEw~KL_ZTJcs|ZYqxRt(;ZPb23#KRG~E1Re;VU z5>%zsZfpo5QX=YcSXH=Ij3asGE%}u;dd|*r;Zzdqxd%g4UTZ&}tQss~>kW;iUZAQa zY5xi>TBp_1U}>Y=K}~0jCR&oJ6?0d1f6$)hjxkYARtVgqY8A)97}Oc72Hio;x-!(Y z1l1~@1EcPQCxf95p$xpwIqypE@072?k!{E{i)Qiu^yVg0%808U;ZVv5NA~1H{(#r^ z_T$po+US#aGWT~YPvyvXZd*L$kES8{hV#T?>jm@+^IDxrfx4BTp}5Y8Vp0qOmHQl> z*2Wz90ZN7ATV|4h4sL7R70iL$2A=K|u)NHXEF}Awam*a>D&-mn#!hMh_3axJn*VFa zYpCXU_gcsq3$(_uwQp%T7ILQs8a8v++*Qvx5T6{YtAHaH~ry{xv{Yth4XpwOV1NH z^v?JU4)}a}bX=Gh1?a>dI23FwUvC15JN|?N?${&7*BcJ*j1$fZD*EX3^@f8FkP{AK z^pwi3K5$ao(nz=4HBb(CE> zzxN?eL;E;-hXM7L}XUqq4P~$@`2xnYhIb9ACT2t6_#(Wd4o18&iA96#7O=~MM z7w^xYu7~F6sDZvu⁡O{F%jh;OL?r%pI7Q5llevVX~5nCPNW?@M^I~K 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⁡O{F%jh;OL?r%pI7Q5llevVX~5nCPNW?@M^I~K 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 ChMkrG literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/599.210.1.bmp b/BossMod/Pathfinding/ObstacleMaps/599.210.1.bmp new file mode 100644 index 0000000000000000000000000000000000000000..822347fab03aeb7efa0ccdfec5114718077645ff GIT binary patch literal 39590 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 literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/601.212.1.bmp b/BossMod/Pathfinding/ObstacleMaps/601.212.1.bmp new file mode 100644 index 0000000000000000000000000000000000000000..6bd6a9698d98bf1feb64d08e90d71d396634f9e3 GIT binary patch literal 38006 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 Fp8y#@SH1uM literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/601.212.2.bmp b/BossMod/Pathfinding/ObstacleMaps/601.212.2.bmp new file mode 100644 index 0000000000000000000000000000000000000000..a9d458add1ca40003f7fe325188166fcdc70a2be GIT binary patch literal 40094 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 literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/602.213.2.bmp b/BossMod/Pathfinding/ObstacleMaps/602.213.2.bmp new file mode 100644 index 0000000000000000000000000000000000000000..5e4fe3b6711595cee3e9b49a1601fa0dc3b569e7 GIT binary patch literal 9530 zcmb`My{;U$700>Qz|;8_XGKYLgrrjwlYtAB&I1_six?4AsY@Oq zG*qa}7%n`5R?GbV=Nxi4AFCAt6Sy<88z?NY7s{UL!@OZ=EqYzLX>m)=m65cPwz_B` zN^-322VPsn66kE zxnpEjj5svgYIji=Fr|7X3WJ0e+im=y@sLq@suJgh+l&qgBCuveM^=A|h6&!Sm{b|j zqQk}r^t$p`P|{hQ*CBzIe$PbfrwlZ&7}52$^OO4t^5y}T*J;bpXUq!hc6gvY(6nJ3 zdcwwlX&7J^7*0qxcJ^G!upPZ2DC(~@Bg-Ed$TB8TPH*$f7BYw}8AK_PQC*mlG;)lA z4AwYd$Sq6~CIX`kOMsGI*Ap;QQ!<$HFJVY5Ot}O!onF5{j*t->|HcPn zBv=@)A~x!zNf4w+wV93QauEs2z-mNUiuj&rYWaJ)z@(}RjCyXml!;~bK$gWodZ40{ zlfop7_{F3SXlGGoc!kI0vu73K!_B>#qs;Z;4cnaaY)xuM6qFSrr-~yg zTQSj#NK2n0FP@O%+!syPRiEl=3d6=gib5T3=OnZH_ zxd$dJa%>Qdf&M_-!92sRp!QTF_l)dzV)J|~C!sN1&e0ehU_GzW+YxJwcs*Xuyk|E% z_g5OAXJcC6k$Yl^#~z;2fK__SD8xSej$m%x(tayT3+C&+DY52_n8-exjV1f}g4JHOCq zgK&olAYaEil1DaQq!D2vigL`bWnm6tsO!%!!039InmyT5H;auao`m6a2&_ko&A=5S zxxO$OQlV?Ql&dh!ulhlT5;qKnEwC?U!65hY@1D`4S~doI_9)Q9o~bzx2g$s}d2Z3w zzHbES4#wjl!Ss6!7oLt0zuLTj90rKX>B6Y*ZCaEHr1PWQO7gr*C9 zp@ajdtv47+n5nlBHz6*)X%KC7_iOO8FK6ko}$Eh8!?oC?yQTQ_2ftIBZ~G0>i`cM2Vi) zo;l@ErbmB$2IS#68TwzZy;P8iWMCi8WGwZIB}S$iWQ<3n z$(Hm3tY5&`O__N_^q`L=2Dz=61XZkUj3Ur&0f!tgqNOs~nCd8Xfe|fr%|rrdNh>*P zW;CY0Tz7Jc`Nb@fV!@!UtdkZ4rcG(oJ0fKdGNv-Z)t>0B$zHZ72e}bgTN&r=zrGz) z|9fOibY~tI*~x+mIrgcc%8Bk|k?xqH;W0+C$*Y`YOiOtqRXV1^XqIa3qAgbkZQSoL zVxlmrM85{D5J`Xt#G|$X z87;uklCQJbrVw>$a$!(LQMTA)Q<02j|Dhb47DBvdM7ddu)uLU2ZH3d}VSCYO@E)Zr#905OZA_4;W`rxWkBqZjEBNP!KsCCWKiB z>X5NGlL_dxXJk91K#>!0Z>F{fFr6+kaW^l(EWV4by09$*VY4wXMz0V`8LQz@(jxvr frmhYOHNUD9++$m1ZZo+~eCu~4$JVhXIlKP>AbL_@ literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/603.214.1.bmp b/BossMod/Pathfinding/ObstacleMaps/603.214.1.bmp new file mode 100644 index 0000000000000000000000000000000000000000..224c0fd0b5692c4a395c2c94cea17d745c363385 GIT binary patch literal 35830 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 literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/603.214.2.bmp b/BossMod/Pathfinding/ObstacleMaps/603.214.2.bmp new file mode 100644 index 0000000000000000000000000000000000000000..0551ed6078ea9e023080460c71beddefa595f61e GIT binary patch literal 34334 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 literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/604.215.1.bmp b/BossMod/Pathfinding/ObstacleMaps/604.215.1.bmp new file mode 100644 index 0000000000000000000000000000000000000000..224c0fd0b5692c4a395c2c94cea17d745c363385 GIT binary patch literal 35830 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 literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/604.215.2.bmp b/BossMod/Pathfinding/ObstacleMaps/604.215.2.bmp new file mode 100644 index 0000000000000000000000000000000000000000..0551ed6078ea9e023080460c71beddefa595f61e GIT binary patch literal 34334 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 literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/605.216.1.bmp b/BossMod/Pathfinding/ObstacleMaps/605.216.1.bmp new file mode 100644 index 0000000000000000000000000000000000000000..2bdfad23d61add920ebb89255ab66217387bc379 GIT binary patch literal 9530 zcmb`LzmDuQ6vnd}#5AxgIuJ;vL87EY6hxxu9pDWp>5|*f@&xF#L3+PYd6j$znt^=oMSsPKm7RJSA(?gar_$pA3qJlzmJ@s2Ap{N04Myf+mx*> z!OwR6Z5Z@gvVKS8T$o`PJGbRh#k{YH1CV5LmNQOKX_8GPSfLrk3`8#zx_q>1&dwa&os13u}iVF7#p{>oG87jP@Po zPcY)v*&c&|2@|b9V`fWShly!e#Lh4bA*1z};edfY&sQ`CxzzxYiE3^m=@$p*v$-+Mc-;J1%XPuUs)E?UXTTuVJ98tuYiEOHSHinVUDYn(rk(*_pVh z`TW>3$x74n-eVS9whEI=zH%}>mbWr5a@H|Wbd<`6(o^sB~Dzh*T&n+0t>rogBnLmEtGngqvF^R71xV(?jv!3x6@BuT99j=s;=SMUE zSat)>24jjY5A(`!wIQ05ZwfVoi?~^sXu8(b2EK4HCo2pE$RpNC%$89dDif~P-~_*}$HYsYp^+)+l6mPxosJyIAr2F+Kahs=a= z4IGy;zVdrd1H;Rkzreuj2?Gpw@wcflT$lLZ&f4G(dRT`eI`(_U=EZEg!x@vTM!Ss7 zLCB)3s`f#9%Wnhk`JBP!k)M;_XPlBQZa>v?XNcvXuw zK6u~-t$DqJz&bO^m1gc7Fi=A0i_9-){1rmeMI|F{-JUPixO}}aJ$O}`z~IHdVtoHw z86dW{$Qcg4?KzV?a+Mw5EVZ1W*7v%G31ae$$#%0aWj|bVktMDr7v*&dRqV7@s>{2F^s$ zt(w<4C>L?iIBSZO@%^;C1}S4Nl+I{&%4<-EiMIY&_S~1rR6Ce-fl6jih1$7kRVahW ztBf2;i{`}`3gI3u7D_6VNj;{dLYX*R-`xTx@1*QOxZC-rwey4!$}+|m0Ww^Jw++=SiN|$kF7IF$W4K99FA;0Iex<1y zAdraz2YF4yH-k>e9m9x_c|n1Q44gx{=wT3ON1}$S0iX;2L0K-j}tz$uON1#TJr9LZQJV8`NQakjC{lzGfh z1QwKV%&2fMFkgO^*yus+!Vcyxie5zF({@~#M59Q9OA*y)0=-}nR8f5fN-z_I@!G&+ z+9;Qc2yV<|R21*En#o*mU*ISUt|ep701!q*iHnxu;$TfhDI>aWSIdPH(3a?s&EGG4 z?(`U&gR^X{0DDYQd(5Ga-7xxMUYHa1lEX7*lpN~X!uVKQ?aWdsFrj;8m%&59a!6lr z>aEz}H3UdP>dbW#Yg;A(m2vSI*p2+0ctGQ|>n%id6YVfQU=q59!DqIb5#KlzJ3>^< zDEf3GabFD+0ZV$Xve|T*B=#Zm<(RP_QjL+?;JB=*=66wc6HXgwmh&Bx|NMs%V4Y+aK5)A2;zrc(sazovSM?Yb}qk5epIuX(WQr?*uX$oLf0}JQSvD$PQlpw zm^_GNknwd427=_LWn{;xn9)bJuCAXJFjAFqP4yl=hfG2g|ITb*Dx4_j&Ef=cEt`D8yLa+-w6QTr~#pD);q zfr_0k1sY}>=YseN68ByP+oUZV>)8GI($BA8;wzY>^S_#d#YH(;cC}h=m6Njgo@mbV Lr2HA<7Qy@nBnkXt literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/605.216.2.bmp b/BossMod/Pathfinding/ObstacleMaps/605.216.2.bmp new file mode 100644 index 0000000000000000000000000000000000000000..e9cb812dc2595bb61d2af2fa90701afbc87082ca GIT binary patch literal 9134 zcmb`MF^)625rsLJh2_A&>&btz?f$Kai>cg$MK>HopBQa<15`3|#`vJ2wl z+TSpj3P(0fqhyn>mClxI%X61($q_Ik$=)3dGBrz2XCikSrf!+Y-C)o|rm`)QWS{rU z>bV2(N+YGCLwW=-{smkt@c zGtn0|Fv`oLo{0Y|Ci3`-fq|LxY|m_A@dg|+%{**l>+JP_;q=pF{e%yq;Na}zaY=Fb#dO+UMlyUfUVN?3Fg z^PgZQDq-{7CFZvsvnV{-pI>*3=Pv27=)s9ehVU>+)?*S}25%WS+N)!)=PZ9vWSway zN&Yx4~}c#FRxUGhR72|3r!HnEO)i zY{8&ZCkc|CyI&7ipIYqt{mA*cUru`M;;w?3S(i2Iapqi%EjoSH@|BsJ&9%-j2uNRM z?iQHE6K3u#<>QdCGFq8!rUU?VYBUSjOUiB|A%HPq7-y)zTFN)I|| zBt2$ur5{ZUUd$s5VRfc9GD|Rd1O_3gV3a6B@J=3qfoH64sF<9nv~%9jd@qhBxzrrbZt zoXUsPb(Evdps)5xAGRic;<^@_*7LM?9rg|w4-9Pc4KYa#0?q|k@ECr~ov9}?Gt!3I zcacUrhEYdA7lSl9WRScT49e({QE^R5At;REOt5$K#5AN)q!?j?KkC7>HiTspBec%^ z7rt7Fj7`I$3TEkf9~(<)OH3|u;5{1`{@li0y@+^i+AB;v6$j=t0$*iV_U2DeN zrWoUMIc5@p^70f&NPDIyGdHc#B~b$zKwsjJtyH?#b5R@|YE0xCX89Q_-ZN*#%Jr1L zBYAsfO|iOxnU9zho?H3(n28inwadYbP~SG4j4oewa8CR@t^vvSfdgkW?En4T*){pRjqzMzK-wbn4` z%`T{5dhPXjc5uIVjV&Cy8e1*}Y+t=rZODktI?FWHqu!(DoxyTvt$8rGEqw1tcH(rU zd#NG8Tulf+$$UYU8>ekAn{)Uc_1-u~X4*2tS%i%Y%c~}4&5NFGUodZh z&}aPX!9!G6>H*VBfedU<5d+MNNw9-6bZA?EOsP!NC8MeU8l&+bHy~ByrjPW;Cu4Cv4%or5a3`t{pUN9BR z!nnR*7_Gwa9WaU^L8Bw zsG!;tW@SX|nAQe3vbBi8a%Zh4G;RD@m_JVU-7oBcVXDFCJP$S7wL=O_#gXFLmb!*Y~Ux)bg6PkQ8eujX^R z-`N>W7Z9Sw7iTg0_PGv%5yBAlJZe=JS<8%Kiv^6DZ+MSRjyBN>nHGCTi5dWU6RlJ* zYwSS?WqDvT$3Wn&?PWQ}M{mqOjWEMiOXhUV;h}r}r-8UnIX!K{Gl5wNTEm=@xs(;? z3Ev*jIJIZ+OEgiuyC?}q42nkT7!mV!uLmkDH;9PJIv;uN4;U_wekf7+)Y|1V7+X>W zLor4ZXU+%AY`KX<-TgN;;h~3C7+`}GZVwYh9qlp7XspBc>iGrS4EFPg} z^8EEgrC*#f1DhQqUXzW#{UrN z48o=8ZJGP8)D7j8A7Hfl2ZmFfK}Z$7@%t|Q@#cEGX5nS^i48MLh>-Gg?TJ5NnlT;` z&<6}0qMpUvI%Z&H789Nx=lf0<-|`bHoOe=ZTir00=||H^sPGt-}x zDGoE!7yBKi8#OH(J+atV%xdRp&Xj2yxqz=$n<<++rr)3=Q#%IVF0GAIZqGOp_eTs< YoVy6J(-@$aeD3m*DH9zrBU7FEA6ie>>Hq)$ literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/606.217.1.bmp b/BossMod/Pathfinding/ObstacleMaps/606.217.1.bmp new file mode 100644 index 0000000000000000000000000000000000000000..e9cb812dc2595bb61d2af2fa90701afbc87082ca GIT binary patch literal 9134 zcmb`MF^)625rsLJh2_A&>&btz?f$Kai>cg$MK>HopBQa<15`3|#`vJ2wl z+TSpj3P(0fqhyn>mClxI%X61($q_Ik$=)3dGBrz2XCikSrf!+Y-C)o|rm`)QWS{rU z>bV2(N+YGCLwW=-{smkt@c zGtn0|Fv`oLo{0Y|Ci3`-fq|LxY|m_A@dg|+%{**l>+JP_;q=pF{e%yq;Na}zaY=Fb#dO+UMlyUfUVN?3Fg z^PgZQDq-{7CFZvsvnV{-pI>*3=Pv27=)s9ehVU>+)?*S}25%WS+N)!)=PZ9vWSway zN&Yx4~}c#FRxUGhR72|3r!HnEO)i zY{8&ZCkc|CyI&7ipIYqt{mA*cUru`M;;w?3S(i2Iapqi%EjoSH@|BsJ&9%-j2uNRM z?iQHE6K3u#<>QdCGFq8!rUU?VYBUSjOUiB|A%HPq7-y)zTFN)I|| zBt2$ur5{ZUUd$s5VRfc9GD|Rd1O_3gV3a6B@J=3qfoH64sF<9nv~%9jd@qhBxzrrbZt zoXUsPb(Evdps)5xAGRic;<^@_*7LM?9rg|w4-9Pc4KYa#0?q|k@ECr~ov9}?Gt!3I zcacUrhEYdA7lSl9WRScT49e({QE^R5At;REOt5$K#5AN)q!?j?KkC7>HiTspBec%^ z7rt7Fj7`I$3TEkf9~(<)OH3|u;5{1`{@li0y@+^i+AB;v6$j=t0$*iV_U2DeN zrWoUMIc5@p^70f&NPDIyGdHc#B~b$zKwsjJtyH?#b5R@|YE0xCX89Q_-ZN*#%Jr1L zBYAsfO|iOxnU9zho?H3(n28inwadYbP~SG4j4oewa8CR@t^vvSfdgkW?En4T*){pRjqzMzK-wbn4` z%`T{5dhPXjc5uIVjV&Cy8e1*}Y+t=rZODktI?FWHqu!(DoxyTvt$8rGEqw1tcH(rU zd#NG8Tulf+$$UYU8>ekAn{)Uc_1-u~X4*2tS%i%Y%c~}4&5NFGUodZh z&}aPX!9!G6>H*VBfedU<5d+MNNw9-6bZA?EOsP!NC8MeU8l&+bHy~ByrjPW;Cu4Cv4%or5a3`t{pUN9BR z!nnR*7_Gwa9WaU^L8Bw zsG!;tW@SX|nAQe3vbBi8a%Zh4G;RD@m_JVU-7oBcVXDFCJP$S7wL=O_#gXFLmb!*Y~Ux)bg6PkQ8eujX^R z-`N>W7Z9Sw7iTg0_PGv%5yBAlJZe=JS<8%Kiv^6DZ+MSRjyBN>nHGCTi5dWU6RlJ* zYwSS?WqDvT$3Wn&?PWQ}M{mqOjWEMiOXhUV;h}r}r-8UnIX!K{Gl5wNTEm=@xs(;? z3Ev*jIJIZ+OEgiuyC?}q42nkT7!mV!uLmkDH;9PJIv;uN4;U_wekf7+)Y|1V7+X>W zLor4ZXU+%AY`KX<-TgN;;h~3C7+`}GZVwYh9qlp7XspBc>iGrS4EFPg} z^8EEgrC*#f1DhQqUXzW#{UrN z48o=8ZJGP8)D7j8A7Hfl2ZmFfK}Z$7@%t|Q@#cEGX5nS^i48MLh>-Gg?TJ5NnlT;` z&<6}0qMpUvI%Z&H789Nx=lf0<-|`bHoOe=ZTir00=||H^sPGt-}x zDGoE!7yBKi8#OH(J+atV%xdRp&Xj2yxqz=$n<<++rr)3=Q#%IVF0GAIZqGOp_eTs< YoVy6J(-@$aeD3m*DH9zrBU7FEA6ie>>Hq)$ literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/606.217.2.bmp b/BossMod/Pathfinding/ObstacleMaps/606.217.2.bmp new file mode 100644 index 0000000000000000000000000000000000000000..2bdfad23d61add920ebb89255ab66217387bc379 GIT binary patch literal 9530 zcmb`LzmDuQ6vnd}#5AxgIuJ;vL87EY6hxxu9pDWp>5|*f@&xF#L3+PYd6j$znt^=oMSsPKm7RJSA(?gar_$pA3qJlzmJ@s2Ap{N04Myf+mx*> z!OwR6Z5Z@gvVKS8T$o`PJGbRh#k{YH1CV5LmNQOKX_8GPSfLrk3`8#zx_q>1&dwa&os13u}iVF7#p{>oG87jP@Po zPcY)v*&c&|2@|b9V`fWShly!e#Lh4bA*1z};edfY&sQ`CxzzxYiE3^m=@$p*v$-+Mc-;J1%XPuUs)E?UXTTuVJ98tuYiEOHSHinVUDYn(rk(*_pVh z`TW>3$x74n-eVS9whEI=zH%}>mbWr5a@H|Wbd<`6(o^sB~Dzh*T&n+0t>rogBnLmEtGngqvF^R71xV(?jv!3x6@BuT99j=s;=SMUE zSat)>24jjY5A(`!wIQ05ZwfVoi?~^sXu8(b2EK4HCo2pE$RpNC%$89dDif~P-~_*}$HYsYp^+)+l6mPxosJyIAr2F+Kahs=a= z4IGy;zVdrd1H;Rkzreuj2?Gpw@wcflT$lLZ&f4G(dRT`eI`(_U=EZEg!x@vTM!Ss7 zLCB)3s`f#9%Wnhk`JBP!k)M;_XPlBQZa>v?XNcvXuw zK6u~-t$DqJz&bO^m1gc7Fi=A0i_9-){1rmeMI|F{-JUPixO}}aJ$O}`z~IHdVtoHw z86dW{$Qcg4?KzV?a+Mw5EVZ1W*7v%G31ae$$#%0aWj|bVktMDr7v*&dRqV7@s>{2F^s$ zt(w<4C>L?iIBSZO@%^;C1}S4Nl+I{&%4<-EiMIY&_S~1rR6Ce-fl6jih1$7kRVahW ztBf2;i{`}`3gI3u7D_6VNj;{dLYX*R-`xTx@1*QOxZC-rwey4!$}+|m0Ww^Jw++=SiN|$kF7IF$W4K99FA;0Iex<1y zAdraz2YF4yH-k>e9m9x_c|n1Q44gx{=wT3ON1}$S0iX;2L0K-j}tz$uON1#TJr9LZQJV8`NQakjC{lzGfh z1QwKV%&2fMFkgO^*yus+!Vcyxie5zF({@~#M59Q9OA*y)0=-}nR8f5fN-z_I@!G&+ z+9;Qc2yV<|R21*En#o*mU*ISUt|ep701!q*iHnxu;$TfhDI>aWSIdPH(3a?s&EGG4 z?(`U&gR^X{0DDYQd(5Ga-7xxMUYHa1lEX7*lpN~X!uVKQ?aWdsFrj;8m%&59a!6lr z>aEz}H3UdP>dbW#Yg;A(m2vSI*p2+0ctGQ|>n%id6YVfQU=q59!DqIb5#KlzJ3>^< zDEf3GabFD+0ZV$Xve|T*B=#Zm<(RP_QjL+?;JB=*=66wc6HXgwmh&Bx|NMs%V4Y+aK5)A2;zrc(sazovSM?Yb}qk5epIuX(WQr?*uX$oLf0}JQSvD$PQlpw zm^_GNknwd427=_LWn{;xn9)bJuCAXJFjAFqP4yl=hfG2g|ITb*Dx4_j&Ef=cEt`D8yLa+-w6QTr~#pD);q zfr_0k1sY}>=YseN68ByP+oUZV>)8GI($BA8;wzY>^S_#d#YH(;cC}h=m6Njgo@mbV Lr2HA<7Qy@nBnkXt literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/607.218.1.bmp b/BossMod/Pathfinding/ObstacleMaps/607.218.1.bmp new file mode 100644 index 0000000000000000000000000000000000000000..1a9f1b0b0d6773f006c817e4f508b2f0f7fbdb4e GIT binary patch literal 2097214 zcmeIup%H*U3`N1&btz?f$Kai>cg$MK>HopBQa<15`3|#`vJ2wl z+TSpj3P(0fqhyn>mClxI%X61($q_Ik$=)3dGBrz2XCikSrf!+Y-C)o|rm`)QWS{rU z>bV2(N+YGCLwW=-{smkt@c zGtn0|Fv`oLo{0Y|Ci3`-fq|LxY|m_A@dg|+%{**l>+JP_;q=pF{e%yq;Na}zaY=Fb#dO+UMlyUfUVN?3Fg z^PgZQDq-{7CFZvsvnV{-pI>*3=Pv27=)s9ehVU>+)?*S}25%WS+N)!)=PZ9vWSway zN&Yx4~}c#FRxUGhR72|3r!HnEO)i zY{8&ZCkc|CyI&7ipIYqt{mA*cUru`M;;w?3S(i2Iapqi%EjoSH@|BsJ&9%-j2uNRM z?iQHE6K3u#<>QdCGFq8!rUU?VYBUSjOUiB|A%HPq7-y)zTFN)I|| zBt2$ur5{ZUUd$s5VRfc9GD|Rd1O_3gV3a6B@J=3qfoH64sF<9nv~%9jd@qhBxzrrbZt zoXUsPb(Evdps)5xAGRic;<^@_*7LM?9rg|w4-9Pc4KYa#0?q|k@ECr~ov9}?Gt!3I zcacUrhEYdA7lSl9WRScT49e({QE^R5At;REOt5$K#5AN)q!?j?KkC7>HiTspBec%^ z7rt7Fj7`I$3TEkf9~(<)OH3|u;5{1`{@li0y@+^i+AB;v6$j=t0$*iV_U2DeN zrWoUMIc5@p^70f&NPDIyGdHc#B~b$zKwsjJtyH?#b5R@|YE0xCX89Q_-ZN*#%Jr1L zBYAsfO|iOxnU9zho?H3(n28inwadYbP~SG4j4oewa8CR@t^vvSfdgkW?En4T*){pRjqzMzK-wbn4` z%`T{5dhPXjc5uIVjV&Cy8e1*}Y+t=rZODktI?FWHqu!(DoxyTvt$8rGEqw1tcH(rU zd#NG8Tulf+$$UYU8>ekAn{)Uc_1-u~X4*2tS%i%Y%c~}4&5NFGUodZh z&}aPX!9!G6>H*VBfedU<5d+MNNw9-6bZA?EOsP!NC8MeU8l&+bHy~ByrjPW;Cu4Cv4%or5a3`t{pUN9BR z!nnR*7_Gwa9WaU^L8Bw zsG!;tW@SX|nAQe3vbBi8a%Zh4G;RD@m_JVU-7oBcVXDFCJP$S7wL=O_#gXFLmb!*Y~Ux)bg6PkQ8eujX^R z-`N>W7Z9Sw7iTg0_PGv%5yBAlJZe=JS<8%Kiv^6DZ+MSRjyBN>nHGCTi5dWU6RlJ* zYwSS?WqDvT$3Wn&?PWQ}M{mqOjWEMiOXhUV;h}r}r-8UnIX!K{Gl5wNTEm=@xs(;? z3Ev*jIJIZ+OEgiuyC?}q42nkT7!mV!uLmkDH;9PJIv;uN4;U_wekf7+)Y|1V7+X>W zLor4ZXU+%AY`KX<-TgN;;h~3C7+`}GZVwYh9qlp7XspBc>iGrS4EFPg} z^8EEgrC*#f1DhQqUXzW#{UrN z48o=8ZJGP8)D7j8A7Hfl2ZmFfK}Z$7@%t|Q@#cEGX5nS^i48MLh>-Gg?TJ5NnlT;` z&<6}0qMpUvI%Z&H789Nx=lf0<-|`bHoOe=ZTir00=||H^sPGt-}x zDGoE!7yBKi8#OH(J+atV%xdRp&Xj2yxqz=$n<<++rr)3=Q#%IVF0GAIZqGOp_eTs< YoVy6J(-@$aeD3m*DH9zrBU7FEA6ie>>Hq)$ literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/613.0.1.bmp b/BossMod/Pathfinding/ObstacleMaps/613.0.1.bmp new file mode 100644 index 0000000000000000000000000000000000000000..55fd556f1a68b2bfb0a8f4d5618406210b3aef69 GIT binary patch literal 1912958 zcmeFaPmd)zk|*Y`-=JO}YV(b5xlnAfjyk5GO8}cn4s@2jL+TT33VYZbOsU9H0csrv z(|eSFh59S(O*#l_77Ez94AlAt#X1+B{?J8#pU?=dzNXvG!OWFALa0ZJx1yI#}QOsy_Miq0kd9D@i|jjJ*T)mj!I0 zHp*A^$)7JD>n9I!aKNt66D}(0d1)4~?k)=0LS>$@emYp+#i~AeN)-CSB_%y$9h*46 zBw!15dB*w~>*#@}L$N|%xTK`#ejVHLrEiEoV;!-+^i9%dte>%t9(X#`rEiix_v_e} zFMX5r8S9AkrEiix-@bmvnt0&pkm8cAriXQT?$@L#^Pzt(Ddib!f;GD&WQTQm#`+m+ z;(@0_Uic>IbH64{`NB6zpRcc0Kl0H9gMw;@4Z<0P^O|ZW3P10wqpAObN zt?HAf#c%`Sl2V>LzSIHyl8_zNMbf%Hb(#(Rb4e-BSd#|+j5Tq_g_9S)N&4KcN&CI< zO;S?RXY#VKe!jk@E&Q@KNuTe1P^>R|ll1wX<}=pR15b#)q^s#cU2dKbkQG%G0|#AD zg067D6Joh&tkn|&vZAW|g1YgbDzd@>Pl$yL9CSemPYB1Fsy<^~GQT(iuEOLl0IKvKOL-9TGb~XyW|b=Cl7A!fD5|B%Bu1_UFTSf%tMzG)p=E) zeEf2;e)7-`9KbK9Bd0ZazIi>snx!7PoR}I^^~on(>c-jgrrEG*UnGO15 z#`+RB&Q!UoPd@b->!;HME^(7oKOOj%)$~%Xvq(Lju^wpx#7CDxK3`ssU@a~M;aHDn ztVgis(MOj;J!AcJu+}40ee%idQhIZ&$1~O=t@;8tN##gYpM3J=Vg3B1!dRoeybbZ^ zrP&zPm$yl(#;W?{(=Tt6^vOdy>VS*G`uSnAQLHcS2if#^RiAv0h!>_8K|NzV-lX|O zARH_4jP*0t;~scAIV^UGi=dwS^?2L8w2d=0Ueza`b7>oA&sdK)>1V9ReRF9!m$pgz z+^@%5=%sC(J!Ach^|%MlD`$7gd$JdCr4=io&kMT6*6jPmMd}NP=%-7dbbZawk(2eO z#F}3M!m$pI{80s{h&){ze8&28zFjOCuZq;-Qq=_*h`*rlxZlXdUCa~K;KDXZPw1)Y z?$gf50P7PzZE;~6XD9SjJA^eQx!(7ZKVuCZs11)6YXLP>91bVEz`n3e(npQ8M!-*q z^@VMcK3c2+s89K*0t`z*%|#H89qZFRFn19Uhe|wltTpt$ z(*+UybP0qyouf`EIk;Y)QcK5!o=YIqNqu!P;lcGM(_jR%pyv_@by{bgNP1WxpL7}C zb(e*;J`ozH6&tWV?b57^+jE!DuOB(qCpQ1GHqK7mF;3OJeK(V*Qefp?*2dW*#adXf zPdr_Bmxc8yZxfxc&oPVjsatAT7g%+V{7A6gs}q8=k?7By9JgpXHP)B4NlHdRLFkR3 z*;>r*jw>V6Et>S!3UYamyeFsT2Yin|o%CJi+=*@RW6!iHX|X=(4Nap*q~3bmvEVKa z^*H&E*oJT{#ngB23D%*ZMvjds^vcDAfVF@sk;!{wpKT=WRo7h`QMO;7-d=VwKx0Kb z3P_*ccV1iL8Gr`3Ay}+W->(_EDoITbby6$KUekiOjYm?MrZFdbU?&o`i z$@-wtJZtXh`?YOTm(sBny3RW<%-%Nf?2fQ_+?fUBLt%Yc8)wP_Y8&vmW39p1*J!Za z&^mp;zAUWKeGuHlWFu#L)L@yx+HPo_9_!26Bt`c@V0KQjk+VHYu^q{Uw2-5n-RmH`&_1Cu2Y`xKf>LT_sdyA+(E9{!5@@nHSlfNAyv+`5vY+i#5ZC2f-WDNk6i zCH32R(iTi};XA~7xAlG5OTyZ_>#<>NF1m&-b6=Xn*R}8W6d9TU#8Y;=P6euAEo{~FM2Ph?Aab`M!og8Y3)4ct2E`vv&cJ4 zTe0=NnSWsCaieUl*Uoi*FHlaq^5f^em^Oj?jlgNP`dsgr3jo`@#_tcQdM|to&V&AZ zS}pSxnr5rdy`W7}@0!Pg_1rbp(O0M*&1p{Wm<#OJdb;KxJ9j^K&vLhQ1ukgg%y$D{ zrLA4Hb>k3Q3!IbZ9dkkb+E>YAKj(s{lYapqyDE5W{j^kgtmo;#TCAzK7_hagpI>f1 zW1RzjIasR<>(a(!Ui+sN=NHqjpRt~6x$I)FmaeLP3@_b0n)Akk=70L2+CbUmY@B(| zd8`Z1dU%%eIKO&mGcE?}Fg-sSthatSZ?@?K&ph_AT>Gkq)+>F=`JK)CTP!nhb|-CZ zJ^a<^V~0BKIEEES=E}96+ORxq_kc8}Qjv$b9rBcYdCc!JJ$kIe<@6)KdjA7HBz)8< zT*uPenkmb=*u`KS=4b%hYp`L zJBFdiT3CFXbW`KSqX*el0K8{HsE~`F;R&8T(tvdsij0Xk!k*aH;2P($M|)DvQNBWF zyq5w`AH5%7jjQAnW6d8exS8SFIm#!WJ=TZRLcIDtG1koc=CPl1tkV(l#9mw`9(G5e zU++__abIAWn8n;->*29u?eAavdYm`b@9-_21T6N9wTEu@?63|Ok>`!I2AoBLH9tMp z7qdzF_^@UVjrGNBlDeza$I!1~9gh7PH&kMHfPQ^xScm$Y@fd!zSVx?ZdH}3LKY;1t zQ3uzr9|P8~m!eXjAts7nFC4I~N_f-&6XPEd)_eJpu!i<@5y4>{)|zKLhVRs)!}`0k zY9o&b>+WY~Y%(DCe>{2f+Lf4hBe!ola zd~I)f*nC)u0XS1EEptNtoix7TUWGEzGdT=CVOGSt6Y{k7He(HT3Gdi5I6F55lQOrt zrf^zcj!NfwkNr?!y*7`b6*4wUYF=T11;MfBkM%)q=CKArJiS+Ko>dr#dDU(H-HcpE zBTm>-&k1W~>lIAOs+m7|pJksoDhgkX9;iHa`)mm}U|E|Gyt52+Tr)NnU8bm#TU$SP z?tIYve65>Sl^4C5FMsHYU#pxiSkKW27-G%6XV2iQ?T7w?C8+~;H^ocZl<9P_z6NV} zv@~y_TU*o!7-G$WXFoo1V_$~~hRDQEJNYrOhBc8&%qd6qzs;xhGGBWt5AIn+oEz4+ z_H`)XE1?pP?BrDvf7nPZ*1xNn*4LQMy?2(K&kgH)i*=}tN__Gtu!eC`CRT4A3Eo+b zb@Tq}GF6q_X0i(=sl-u_1?$x6qzYR^E(`0hHI#bo?659=WtjDP3q;3dTnyH3VdK!2 zS&ebd`DkJIt4v2(Foyr43#l6>t-!kZzDeb%ypYX0rHu9Aqu%$b#ro6@vJq>X9nTDF zX~1@yz83g!JgPu`1VRihrr^2ZVPFZ?#bJI}Xi3V&V{LrKmbhed-obu&R|GP}TKsxJf8TzcP6r>u?!KyerxtK7DsrtzY{VMv2#a2H@5c`o-xmTb zx%)hNWb|N`sV(461#aYk9L1s$;4QGb6-H3c4{+zr*vD2r%do=IsmM2co zxoTeYA`adHG?W1)=Z3Y$iXWuzX;q)rHV7kS}2>AvwyaKyQd;dUX;mBq+?81PLU*8PvL1UYWL z@@;P}co*l4us*Z50o?Vd-)eSm(tN1Fnpww!e`Py5+m?LBdVHM0oCGLthIDvd?`j?d zW(&i(*|1`s7vI9c!K8EP*XUO;=d6OFP8DW_1|xX|)-W3xkWc?nP-@{MjgCDRtkJLH ztdNH5QL;4(#z`;{ZhBN;4O<1quV;q!*1JHw5wCN^`cL#?%VG_1U&H@w5NC$9S@&)| zph46+vM*X5Tia_rf;^=pGQ9j0=NTjH05b^oP`E(loH%zEdEH65m6#oDQh z!dmL+2yW(U7{Ezd%+08?!`j|!$gEr&U4wON+5S{P>F5sTu&#O|&OO$5K5Mfx#QM8a zq1Gl>zmHhk2LxW$z3F5Cwcx3b#o6bi-i1J=_RgevqJ=-?QZfPg&v?mSR2} z%xrg6hjsUi^*Ao3{huAycLZzuG4`u&FFpF>XW{lO&S&2Yw@A;WUz?20>1+H+wt%pB72-bg-DTnA^4U(9F7LDakQ_NPY1#9?P|7o$dJMLiM zaKJA7u#d%B2beY?c&pQ$cF|h?B;~A84OsL3m%BIiGJ6xZ4ul-SkTLAU1+4A0?3wgy zf4_~N1hZD5E3oc+4Rtx$7=Db8BkMs!82+%&Sz^svVL3@T>qW8rHuP%&x4O8y-8IBw zeF}?MzZ**X8~Ow!g9c~E@Qqs@)UPc_Yw>w)l3JTuu^v*JI7$DuP*1 zoRg!NRTR{(EjTmmVACdI`%=~wO;~pa9K#<1>(8u}>G3*7MZ|hrbD(~0L0RL@>jK-_ zBw`Wvjtc#WqtkDWE1%toZDHd6r$c@Z~gL0}wL)nuRu{Me2-SfRE33jI7K;Y6Klm9-&#_xUK^hfz^U*uWWtr-eZX3V zT>OrA6f;RqMWtq(0k*Yjq@kluTMCP*N?~O(15j?H@%*Nx4K+=9gMY#*uI=J zMooNoXg|_#J=Ps~db$JpYA-x5!&-Wu>V;}1*?FtOqZMa#*`;hYPm8{MgxgXLzT(Bdragf2empbEOexdauA8X>Mnrt*k2ylSjR3a?29 z4^0%O_d^hC&74Qi1M6tT89lEsi_&!$?WVpLBvSQO5aF*P5x{XqdOrlPzIRA(yl2aU z*oDMxw0vR76S7aZ)0+FC`w;CWl<1{>pd8Xph4sWbfZh*bfVJ>GnkYl8uOzvby7Ww} zU`xxMjKADzi7VcZV9opf>rkV2q`*d`ndjuVFdedRbLt+dW+s+V4SCRUu! zAYOs>b=g@ka)uh|GRvA&BiX>SR3MpLoWa|qD8LeK-Cte*ucI`q-0B8Kh)N0K{00+rUfnv>@B%GiSHHuU+km5GMI%^tGjaSI313wan zk?og+X)ae38F70FoMw>0B3rbxU?n#a8xFLQp3QE`+)@U-NU+|^;08)>(l#QdnmY|8qv%z|183kUvna27G-YCCU zq-wY<&af6FyOtE_;wr3RDaZk9m==GFWzG(3bjW#xY2V{z>-)&^N&cGwyMK6tt0EOy z%nw~;{+?-2q;Mn!x@Q_|-=g|Ee9siH{tcGNbVrE|6i0zAK@nw-32RO4E@Dmd?Te_X zzumV>Q?|JnM;A|F-T!D-Zo9j#he2Gzlce8CER^b=Q!|~9@|uFCa+@TaqL8Fk4QMmh z(A4bRD$}oNzQsCSKgXx~Q_jg4$I4D&E$o+Y_GY%`5`;0ypv+ld?S~vwMKJ0-0y=3t z7_4Q;|5g4C;sVxqIhkU8Z1F!s_e^2U`(A@#haTpcyTfmRWD?Ci3#=0(uqI~_6gX)- zAaGyUWN zZ+aE5W>~FI0tpb3#H%7BSPSJ#gH#+T4`xMnV}EWDRVQ7_GdG?&3Tz2UBNZ(YPEkfp zx`Cm}IQbmA%#&kSODYvmN#Znblpeu4LJ7-T_=1=^m@BRO-A^FNtavjEM-|j$aIAh) zpwdN?gcB6f)T#l^QDgMpaTjqnyalXH5lJPrW1S3zC~`-paNghU`rCuuL6QGbyWcg8 z)>0eVXj2z-!Qvo^LcX~4i3(_9)Q}XYHG2HTKEryC*Vk#_SVYpacC3@35Jkc|EQsc? zB*VYoqr!i?2P@53a2{AIwAKZV2A)I6!1MOGv#~IG{I3o=WjHa`gLxjXR>lJOI1T`P z?C%e~KqLRJ4*t#vYw9PC2A(GTut;nL*2Lra&)x6;={g19-CLA2m66U!(cmw8dIw`7j;Wj=htRgPOi_kC5IR?(FXnQ!i(w7e_g2XbRM=tVu#uA+<<0HEQ4s z7&0-aknt)|mM~Z!lSETO(j?x3wN$t}0I%X|A z#Zj5|UMu;wdk0<{3AS??@7h2&9 zk!%~q-M`Up9S-Ns0$AP{;u^;`&_*$H#grY(=Ga{RU8kXKjCjXkjovN4-nYk%G_FZ; z>v~C2u<0dnnm0}(tmM+(GGgK_k``+LV~!hpUKcQJCY%;)SN|F_!E-xBX5?rhP%~J=2!j3kUz(og3fdx63RYFpggV*?Dq(Gf zX_O)WYv)NVw8eUCjH=U`a`74umU)Qf3(zRb8c$WWD~&TGIrrVCd%1@)rQrOCc7HOM z*AG8|cMAykH#x$(@CjhEN2XoNNGF>z#7Fv&>H=>&kWO3%M zW}3vz6p~QU85Ww|z1Yk2fwAbQX{_(wTdY6C0)8PvQy6HIG@*_*9x7t3P{4aU2!b`d zV`%3Og*n><4yLz;Xu%1wMkT!7!YQno6@wlh_UrD`>(1Qdyy+zBw81tHAHy>WQ8b~B z9>-dv0Moz(Nai3O!VO?;ir5}sr(=$b8_{hC6@;G-YqNB59kRwsz}k(7!MH%Ux{hEC zZwVaa%dWdI8yl_=GdhC=ATUMKgi5;qvAhnq!rq`10a(L7h8vh;j8m2A@s&De*tikh zcF;lg>995v#e(I)r-xarQDmWCL+U|ZLqi#0ZI{Zfvgj~uEsFy**u0!+!x|;M!h?X9 zMI92zX`HITqOAg&-WrJMts-X2-C{)-G^Kw)tlyQr!>u-iZiqFOImq|jt^#XgR9VM( zDgdjq+=#XLRT9zn-#UjFPNeUzvN9{8+zD?vkt&Op@-<~_d#d5IJij>t)+2#CF_1mP z`aPr`V2!j>u(%7s6dCmEBq8w55HL9DjKxSdiJx@vOsnYo?|K_dBETQJ%&jQ;~t+XRmC8Uv}anRyz;j2AO+Kwv%Vu~x*W+(W`@`lBpi zjkmXkSeqiZR1gCp6FMksMh}YFWr&rIa}{x-!m=j*{~)zZ;9z=lh$gUR8B+y2`#j|$ ztdmX{4Ma*ao^F) zw23O0Qod^C>_Tb<)*6JCu-q_`S~xJqu~O6)`%AQm)Y6hph=y1JYxo81Lci`f`klOAZ$>aHZ}rhu zN*g(D*T~}UEAb7?An#VI@d9|Q6H9#Fq$QgjB{^ehQ9d7I8KlQDzKY@OglI@8V9jm; z>vw_K6HEie;?jG2tP_hZ)~FN1*U;SG8ET6|y%Pssg}KC90AE=@O}}>XK}-F5zz=`c zwB+dOsvxm|^{X$6SQ`l}US|QBFV_+!OCkbg_0HmVwj`$gURru5&kpPTE#1mR^EV3G zRvC_N$yy<|8S9RXW6k4y0_171{u^6a0pgVTo=CY_(m5?1B^bz8w5X<$RWt|D&B4_f@6j~Nm?%gayqMrivSh&>S2m4XMvRPM ztu1GAgy%{Hl)UeNuw%GR@|ztyyL0)XU3qhS~u z!>P(p*kf&8)c6hBGw?D3{7u2i7b_$^K+2h9*8v2E@iAFkq&FWAII3z^x1xGdS$s^ zzci~as@Bm0bU3V!{arGj7PxDZ#;_*k*+g{+TOG+$Pc4iQ9b#e8d3HZ)7$y6@@>bV` zbC}hsLEu8HO+i~(_z8%uX3!C=X$|mgl+6OS^=~}NXa{Q)F~n|D?)SOo#_r&vRZe_+LAuR8E?UsvR)sGC)=FJnpSyxRb4JLlhE zS3#`l_Y-VA#>Q~l0bONztn*6BZ!9~(M%tsmy0Y6XfLl^m?%8`)+BQ!$?H5g!bPoICuyhvhguqj9L1CgtnGe}d6@*U-tVY* zq_2m=x?ynxLe9QA?p&sbpvQr==>Jl5eruv89str$Zgb+MuohTYy##3n>r?^6rm>!q zJP=itz|fv_Yv!?F{ev}qqoYpURf}~#98f6?O^a9$dhs;Y**r=GH_`yCv4|9hq~!X8 zWUVH-Ro8e_M1S9Z(u0n7s^lLCNs{vpwrUt7hZjRa#>+kD8tmIP0bYV~RWBAlJCwA}) zhPoYVX)N0C;IO80hgicHE;9HVO<0FDT?mQ(EU^B8dM8T7HV(dY1c|ZG|-xD6x$7 z>x0*povocJOI;nU!kXW7tf!r-SuLM(_iWzjv3})iR*Us;z78V1C^(-7*0xTG6Co+X z6&7ZP!g`HVrk30k>vh7imZh>PWZ7fUA7oap_|)w(tX(_HEy@)wj$66O_&mfKwgjO6 zFP2>>unwN2N!my7#xPi%E;DOIorL0d{@!M?7WQk0b=Ki>nakr=ZYoyfb2I!R_Lu$7 za=G+D30~*H5v~ktHp14FoY#)mNhx9-W_@4(a=(5*GG9Bav)X!D?dLMqIu$4+zdHx4 z(xK2TAUU@DXL>-VK{;%ik(UYN#>y4FK#roV5~DlI8@PFUOP;N-%GtPcwG|2ztW}Tg=su-@X|;INM+Zn(vpb|Hvs1feCQ`?mYSaxH>VdEp8AS7*E^~m(hFHHE z^0E!?sPd&4B>WB#|JKoC!g}aVxZi1CY(MBMvoMC2ZbxOMs-gp|UqUh3&iA)=UyZLH z#W%s)|Fn|5hDcgNb7WApx_&LgLrascE`P1yolV{+yOtowwP6auR#=0}(tdpf>S*2Z zM?f&J-kjDPHo^J|8zY8hWQPT5eU0o&tP7W?rg(ao#CrJYA!{DN8qg=PRQ9qMYClhGZUQc5!NcP@F2V6 zS4k3#-q?b@j}z`i5nGGY&GoSyYf)cxj&p!@)u!D2F&z;X`J%H}e+F}rObc4w6l<~7 z7@q6etL{bGvEh;7v%wn1aNp)O#5(UOr4eLRvMJ~~18rR@g_@}`x#Hnz;S-*~Y z?2x1mDqmlkA00UhtW~@o*br;liHtj{#_++&A3a$?8LV*~l+OefYa)ERb$B!j6=OJl zO&gU-65x$jhFWu2iH=o$^uVyBYp#lTk)d)Ai8cJvK^ja|$Wj2X9srV-SRR8;2KOCU98G79ACi;ih|io|Q9LYm%66fsm|LQb;ouzIY2$b{;tX z@XXr4O)Z)aD%D@r_v)0j_3M>b<2Q#4)?cLcvYSMjBn}=6BYAD)uD5U=KD-nmV}3*6!4D9~mN89u-pO`hE7>__gMx*ba7{oR{k>cSL` zm1qyvtYF*;vEKbyW2G9Y{utKp6Mki|mXP);Nq1jc)gVI zgjlYH*LZN8C&PNfhZXXEy|2Prj(A`U>vUYQSfhyiVpgCF^oa0nlK0ZdIcP_a)6>HG z@Q3jh7juYv67rD5LL|MTwKG_Mg1I@?995(ZBM4bY_{-?LSTM1)^#@p=$rv6+Lc8Y> zUB80L`}OfRHNtWS&cxH<@?o$}bw&fj+N(4M0oFLbtP8xxgX275rnXj`5bIYpYk|Ch z%=sq0Q@m3zp@8xE3H$XJ){|HQ)^~H2nay8`bv~?(w~D1XSu5(^)T{-TVjUi+F@E~E zSYJ83h5|+-ikidV7;{Mm#{YT^--qoGH%LEN?B%NVHO_i*RP`h zyv$Dn=+|jVL(EiS)Zw!kdG*CkB$h`ma~6&A4&` z)AeA~@;;J7tYMQ%#{5Q#&-!nY0TJ;}45I~~PI52F%(2!Fh4mgM&Ts*Qm4a}*howkv zlFh0-3gsA!>u|_?=knn+#5(4!p!gF14|%cr^akM7N_kO3=GdL8!8$86>lgE#oWQly zFM;0wJ4}#xh~c0CYaQdusa{Q$(On0BCk`vILFaPf;VT$ywh2Tix?rbj*5O$p>$}o5 zjLqrZxU)T3tnCxKGRc7mU_D67c_!jBFK+0rQ?c}4nKeU`%hAc1+uV+5l_g8)wQ@4I)(? zKkK5W!TLku!M(i3xT%j!axlV|UeF~H4!u6=BqfQwOFo2qFw;oFutj7g)*5WUe;=-D zX4NXJwHIm6by%ykkd00B>mt@BQ4S=rwOEU+`KB7^%72r$GE?yw+W>1S^a`f6ZGxs^ zaba9DVyLvxY%KM@>({1p%R$+7<0|y)X{_l^ot;Jo7OYL!8tcto^HFKd>adn+q1jjw z>nkWWb`d-)ag5>6-;84oug%=iRnM4^mFX+7R+;)&{$1tOoja4ft6GQ4%$&Js5o_$g z$?J1-Qfl%MYqJm-VeY3gN6IWs-WY4}(`uBh0GZW9*IdnIWoDx})~~SyKF_&dH8~gb z&SA}Uq0q)j8)JRg4C}m};`bGeC@(Y@PqFSggEc-dykB)OT~IrRb)m@SNh`6InL&H~ zidA4T&vI|vPNdfudXLXhF9|whHcIg&Sg|$M$C)uaGvp-E8W)ZuGZ^W1{r$dQySPVv zch^~U*|-%kXXz7v-^)~s!MeX=H|sXZQlTcs`rFC*x=>{EBpw~rK-~=NF|R|g22oj& z+c%l$$_sa$6`PFiN?7muI}XOk$&!mR0c-vM%dbhhuv+awm1Wml3ePCL!7HC6h?x>L zd)WFCA!%gylS~t^Ujx>tD$7avmdB2O^&;DrtC%gpt&19ux-1_yRPe)HYl422i)K~g z7Ws2mLevc)GS|N@j{RD#6S2B9ukzp+)0k)Bw=q^?ts1djG)}^6HN$W+tj$XXLwygI zvJUGp&kFpO{i>h_cOq-9uNOX*Rm9pEuC~PhUfftJaPTv}O9kZo>#!cPpRdMR4zR9k zJYyE+^|tZBbp#|kJ^FpQNMmXP)_d8gYpmEhtV_N^O)n4LWv!jN73(pJ%JqL+NcL@N zY|JVYsYsf_+Ptzil(8QstxH*lb!omc_N>Nw__}f3Mb|Q{OTP11FB>6Bl4#l#*7PY9 za%&UzAh!)Gv6ds&9M;|g8N5ALD{#c1`ecvw`c^}AvWfYcPFLh+`?{N`RJo&1g|)2f zhNDA#ca+6B@M%zV_ zkq^C0WrA{sEITeVWS+AoK7}3Bq@Ug0{8 z@A|P#0mm2mwMq-Fi%nv!qwEinJb$dgSp3BFYOG_OJtfBRr8&~`+jIV56KI1eLmmr_ zROdNs;!{}D%~R440qgf`R1V5=>Zawi8VLN{y&Mo+wp=Kd7|7i#UMEQ=MWL6bgErWe zawO~!3G0Hts61;$d=l&1Aeg=s@}#gPa~C{4P>Xen5bU<43u*vAlP6>mI>;ey<&9&6fMHg*yjzChBMlP*}et0kEF& zpm2Kb$KIYzMaZN$7-gk79rC4%VBA@VDMV1cQUIxk%(Pb54 zhAbfD(C463t?k!h9hI2RB4yQTjhf}Zkj3I6V14{Y!T?y4*ajpYx_L>84kjdvW=LI$ zwL+}@$mW$)$(+YJ7wg5_bDSykRhqLV2Byp6V=y2zV$J{K8Xa?G&lPJx?2uh8K~-v+ zVTv`Dkllyq27q!J>-bEBrXy;U&_=yI9 ziX{P$!evU0%pull5!Ngyx!LmWgXr}kS!_msiGX$b+1X!5mQ5%gYSu*PV8q5)LvIAE zRS*vZ+`9*_%!VP>HyPIXGJq=SIur3!ZvnE21 zXxi0Y4Nq%L!~@nf)+%a}nc;66vA$c4HTiu3c#ss{^P#o{T12cv+9`+{?@i#LM{I(< zzKK%RS&47^NOlClA6(4 z*3o)I31BViBusLl3qJQM0P9Jaf3cz*JFIf-2o9;zi-0pEDiR%%+={{D|1olrG%Pfd z!g?KYMF0B{)gm-M_O%N9+Y=nBv?Azni^K}Cz9?e-g;%kc(`z$rG@|7D{m;Wk5;`oFMe~Z&hvCb_MSER1i@?h#(xWUO9?~1vcvCAh_7h zL|hg;LagyFKUQshpnYrlBTM(#>y-!dKvip>T62yCPk?o?+Y+oF;TR4}<`ZCjyh%pp z2#Te;<45l3asPmBPx$r!#5pb^5zt$K3Pu7 zvO)Op3|lU(P{P&Sy8QzIV#u4A!f8ItD5Vfbe3JWL#)9)$v*MT>rRDwl$DS9!q*%}E zjMA4^*h+qo7Xw1 za59rrEmpFc8f(@k!uoIJlx0ah6UH*utT!ePz9*ceF3u~92B&wYEE(=i;ZS0AvNq`VqB6;HcA8Nh%ml18eQ}EDNLmka7DDKfg*?3OB&tE9y{n(I zUWbJKe6b#N2EKt!oR&C#S;RCa?i5X3Uf(2M=ZO~L@ZeU1wZbT1O@0P|m_1s(AY|^1 zEBG>H%i0ZI?&q_sZ$aU%|`}Sd;9R2I^wi>N#h(S(qELME3UMR_PWhk zB$-JwaD2u*g%KFT$y<8F?9u8u5qSEH&_go4hQf6}h}T0tpE8;0nVQc$amvC7X|$;U z8)7ZV;{{V#tHgq|B09;l5i_GJq*JWPOkabw6*hKE_eO*s<8$fI^XFJ*Bur+X25bDe zj45DJC?;dy;QJD88k-WSXf?CJUei2BN33CSL4Fc6!}?vJ=z^rU#D+rYBCsIkoUtyA zjiw44Vhv3l+;3Nb8H7n2k<@otqtGUm`DTOqmQg)Vh&RFZr))?Kc zUjx<*KvhO|f^Hg#x`85-E^?Isdl;+}t7aqojK^?2YW;Rt15V(A-YyM*7z>FhJmo5_ zD-702AsgAYUl$ZiB!SgxB71FC=9Sb(bFp#5J~u0>x$-sn+CCL-2l4R&Hs5(8AM3}k zP71lQ8P=~|@@Y$v*l?N8L52See*eL)UYo$!&yd~-qqc$b5v5XBynL$8I zOX+0zFJ%wp6cgZw^lHMf@0gB^s5-{Br+DU;MNv6w&s%s3X_2T=X6Ythg}V4CTY^i@ zm1H`b88DU7H^G{Iy2|M*omk%q9W$W$B~3QwY(w$fFH7Qb)P`3ZVr@rNv%Vq&Y-T5Q z(txXkDOS9cPL}W}^RrMzR$AeO+>|($W{s2uV{gct4iIH!i-zSIQ?Sa-VO-}6c;ZYn z%cTX43n0OGkI|fzCbkT?N|*{LUi!gOf;A4P@4Z~%mWMt*d4>*K6W;IjXM_*zu4^Nt z%o37Am7Bx3qQjrJ!dkn5+jLwuZYr^5z*WK;CEXPuq3b%;z4DzIk{95>drj;aC3QMh zfZYppj7lBN;8^F@Fe()`&9=h&*3bK>jE!4LY~eXq$%Dc&X;RLRwD4`5PNBP(T1;Nr z#p^)ZDcDvE1Ba=dZ(1XA*Co@c+1f8Sj;n@;Uug$fAalU_wM&tpjSq4|0%p4~;3|1g z*ph=Rmu_dywPWc)u0a-aJ&s zePnnhwun4eL(x1qCgN(#LCW6pFT)_e2y2}4Wv*}--^;fhj|P0fPrH>eKxKSfBC$o}TndWj!HLR;ciKX4*`GpRUW~QQ6%OODe*KiGkbVy)$q+jM;i{Z_ zr!GEe*(tCV<94a&oB>nGPHwpZn65ZohSQJPEXF!-MA5uJ0oHe~V(ea=b}MD7rwm*+ zNRYwM62S-js}dCG5aSXs+l2v>&!A`KxM&*C6l-{WO!@3ZSYtEK8<7`8&in2_xDK!g zt(oPCfQ6*5va9*BlbTeK!yEUB%hT#L%qPFm2k<=dF57IZ*b~gn(!Z&X#G&@HD>ippsD((|s}u zh$10FEEr&o_L5T6FcvgB@iM#v1?@qP*=^I?1(!;KvQezzb63%pX{`M%C=crG=Sd|P zQLShWug02N5m_UmvWm18CtjMZ!+NIax=Iu8ts!;S{duhXHxz4+Vq~UnXCMbd;7ZrN zES5?~Vb)VARz~^gBrIHK?Vt_|i|Iv{zcftS&}`A&w{@H7vx3GMXx&IP>&ThfKN!|`us~O# zj>9U^{;~k;|2v38g6kwY8u7KhCs%Bv%rRs4hf^=ZyP;$1U^ZN|zeKAewLsK7D>SUw z7gP2d*bY)`<2097HZ5yn1ruq^39y2fBu_oyS`SnwEz-tod@0<0U}Z7}hGO zKO4ws#QGl+v9%HI)ZZ6=!(vJX6jM|A>+_hitm#C3STbdm@Z6#atf}r^4z<#$)BJcC z6yQO=q{V6Bwx59Ta`9Hi%p^w@N~z2o$C~z@ zvPy3dIY+IEq|#~Pz6tB3ea|_FY8I#N*6Xk?ZZuQ-dGzRdN{$(;iOLPJCifeOf;o~7 z42w2Lk`?5fmZp5R3IjExGpYD0O;C6gYuc~N8?$m?CutK&B}lity&9CNNJt%8QNXh- zn%sS%Md#GCrEpL$m(-R$zf_Ckr|YRi1f3NLR)j|mj3bsMnWX&9gJO+OW1cuL;*sU# z?0mFbXIyEh^vnDcUGOrO*$+Iceq)jAv zkp8aT%+;=x&yw0CvP@GakdA?`a`KkN!riDD-o7dKpOT_ zZ-^x}jYm?`5<9CRndH1HkZw{XZi;Di9ZnluZNC;#Q&I)8KL2WN<=K^XL0J?Glr+M7 zo#^;jk<_%r&Z-Eh1%4zf?+V0qRpO?Y6!^9nTCgU964w)hzae!?ctS+<-C(WGh-8N~ z$P7iw#OfdJEQ`%jQ_~VVt0KhD_@S#D>#3&!tK<_VojlM>GKdW$Q@YM-ov_IylgLfd z3z0o+f4s`mIT7Ho{(f$=^l@NKuDbAH=Tl;RQ-ifgT*;gMi1Lk)^pbLY7&PB}(i z<~-Ia7>Q#;_aU{4<}Se+F~ncHpdkzk);NiIui#%JF&eHrHJZ0w2J;SUK8LGN^0D4% zpJ&M&g_N*<16l8E_Q>&ir$=(OOlDZK zRiQL;M+?O&*=b=lvJjugT1JE58r}U+b`YMz#ULGjuW^11N1^!TRT@fIzXt~V9}n+$ zYCLnZ9IV;8kX1IbY@O`1v>I866ALm|`|>hc#e7;kr>zwk@E3XKv3?CwXRtPU6&z=< z&Zh!XZtDZqY+ac4$vW9-Y4BN^;9~Pw6R+{12vQyxaou(UtH9}cp+v;GOAF_%5jo6U zJ&m>AOT&5E0~=O-Y09L5ONCAGt1{NVBkrE>*Sw%1sX;x~Z<2C0k{V#!%R9)L!5S{h zP9IpI>I;)@td)4RISdPBO|q*p){Kt9WdSl8CJG!R+rCJI{hG9(SUREJCNUdHZ}vnP zlUVQ6p&)AWBvz>U!X#HAu1dx&lr_l?3JUoY>9O4wVp>5$uc_s*c!PwRSM^H$I>kEL zHiI=T=}#V5sqV|t+{E^8T>nl@rlRuoFU_l=Wf5ygC4m(Mslbtrv5r}XY$QMgUfmU| zlQ8}@#^A%NG^AJu8RUn8D7T~c@WS0u~tR|t^piT zJ{=xrL!8yQd6G+-%MW!_h;>|!n0g6PQhtgI?O_Y7c}abawKk^PLupcW+2*3S3Tu&h zg~&(pfM1tBePE@!FHBQicMluG_?tERyq}3E%l5z+Urdc-4SU=!6#K0okAa8S6ZOX> z6iVTQy>Lg~DT0&P6rRLdTIRuM7iAdgMR%R0oFvL(jhiVA5G$cOZMto0CXZ6@%;p10 zh*@+L+;@w_nFrHovpYb5M zn~|(o`DKZ?qlgaEU{(HT6_I~uT5lPQDurWMV+%mt7|P-Uc!kDdOt*#Y(azUC<((&n zXVax8v36yqS7vzo`u$M)_9+C5Du0)lZq2=+yCT-a_jhJiN*jJj+-TZP6`+EC&7g!w zljtLILdPv@PiIpWgw41cAF#{&b+XR4v(}6h$iABSY2|qdRUGK2wE;g@f(v2|8uNZl zeE+t4izc;e+v_6MCefpr_&TWax#df)Y&}_x^==O9pcd;r5w4BvCK$HKV!>tLn9I1yIF)>7j8gT=aCBizs@06FsB_SG<44mlttfXSw_jm-zxHVa{L zL+b;uZGrW}+`jJ0l`nc^Jkf4`8mw7{H9_Y$FU%NT7>CCtCpq9*o+MzzVI9;C7%(AV zUCfQy0pdVRVttKR2UbHQ{W>(jlqbgA0{#77#tX%t+RD<;~uOAPhe)GlWrXC`s zEF{1o!!h{I&B2gqLQ%TMdZeBCY$t-AUeQQSV`etUFT>i6f;t-*IeIJnowq=+!#Y1}88_VxrCl zhXLa@39RIrwlssaS({SRqJpp7x-D_X5>?vl)np|+){toe&+<*wJDsc^C>!n9@0=WW z!mc|S;PGSo3{w0kLNf4pwPOOn91VFp^&q!2J4Wlgjy6~it`wsJ<*>$@$J7Nn;Tn3_ zF>hVJ_7~W^B+xs3q?r+{Vf~kcw@ECI^ta|38%)qHYZ2DStPtzTRY9(_InGM1X-l(M z2TPdsU{s)(cX?^vt-CC>>k{}HT^Eq+5K^yn9i^H^cI;X`W-Hi38!ggqJ zCtT&1U~No=wz7wfvxf*Q)_5%?6MI3hi3bJn%ysl>;*x5`AdvFjioS=fW-ALjy$O`V z(;jOmPzuqmZrK?A>;K%|bmp{(>{5aTbd`u zT4EK0>;2-%)H|e(dB2#hGOX<`U50gO5O-J)S9VSf2p$O^M$*${0M%75!8)mOS^{Gn zwS#F7bW8JeSPTF1F;)nJrj>2O8bnxG_Nc*IAoQeIzo%A@(fH)x5bK#(G|~s2JL?27d|ywz8|e4X{pZi&g?Po#pIdbX?@>N!S9=-Op>Yw`xiQ>zN@pBBC05gn5t=mOS*)Fb-OIWbHKMUT znGuhyBxRyigy({s*d)6&sm`kh$OscGuIt=3gG9B$%MKNF7^=H`sAwf)H z?Z>Z$T8mg)_mXjg4W&wBS)$e73^mL)pP28+F|0dHc#pWD^4ca46?0hIHhRDB-tGS# zk(QIYeojzcVk}LbHf~g8jl8j6t5Uz-0&8R52e9`otpi{!(|9q)6(qYcoESKVkQ-(0r*CN@ zESd9)MpPskAW+`wpvSN_Luy{}Hg&jD7J|RZvRD%Z$xvh?76kkdD0@p18)pmF z0?LIgZ4rcONSzAa%>T{5kxSR}zMx?`L#(}h<_ricn_$K&0)w|(V0_S#b?N09Iu{LX`Yga^sx+pJX?Cd$6Qt*=;u$qp7Epdauyu#Jz ztmlG}(%FZib!KauI{P+}D;q=#O!(iU0z0TXE_;$Dm(#S{?gtrH?2v!#;H~0cM=?lM zVQm`S5Nnx=8pgaeZu|#h^nl4=9iELGWG_l!Ug7F7oQ3QEptAMrDE0EEL6l-Zd8H^&6u#**E9@ALlgDWSz{Ls{0#_;4g?=99iT4z3l zBIk*3@#-kJO$;!qNBK@c<}#afxCe+RzC zFBCymMes#=&@o%cnR9P%X|n#_KB$oEF#Y5}hg5Ane+{palYB*lAvKiT$hi>=F-3qLdLzSk^m(^*hn) z{3D1^&hd;$SeDGJz7389T4Mrv;s{3G+$vXxrF!W%I5fz#GZ}-??-Qb7Al%uOXiKq% zZdt;*ySe{C63Impp00{RJ@-oDuvRPtiH;RtW%Y(&b(=>&pFoA zis83mM4LY8D-XprXt0X{oFizz=DF~4zuu9x8H^9F2OpdS1%Dft9kfCT-NWadepW6i z=$^&ePQ~^k1?*1XG-s~fsBB+dNfTRXmb;}nK2^8feR5+6j1_HqBpIJIh;c~3xB=hY z2_Y`8y%wA0W9AI#y2qC=YOxkF$Z*8peLYn#%Ov_A<3$HI!r?I0_Dwl&hCgm=lZvmy&|l<2TN+$9%FW&VJ zT999+iZ(sUU2tM)4GLYq&bPaGF5TGX9cMFBtnK2Fq0A(_Ph#cBkzN-IuR8Cdd0Efb z-|TOh!+Nj~_a@7{bW5BCm8*$K^}8%rw5g-N(WOD8!5XfLUZvt==eKI?nByI1(=x0T z_UlXx2(7_-Z#U|@(IJ6EYte6#aOUyH8EyDa;wub@iukfK;cVj zkYzS(VBL58doS3W^9j2GYmL`jSBVsi)L@-75pNyEe;^eTBIDr~09qKPFC42sd#qjZ zx)Td3R}*7~Y>c(PR54p|+@jdgN50UGtTI(tzwP>e!Y%P6yiQ{C5f6@?VkY<_qk>V$ z4=Ha=iR;d<06dqRkW`)Zh_S}{dyIDub60QgA`f{5*6?mGw4#pB4ZSm-jU$Sh<_sqO z2w3BMVuHbX4FFw!kv>VB#NPM@Rb1S4bTD@MFu~;tG{5N}Wt(PT2a>Ox-doLRFV3*0En_ z0x^2+({kyUzBfCOPFtYBp$~bSV z!Ttpy3}N0kb!WgDo{h&)LSzhU!+V7NiV&Q4|5->Ngm?3T+CN-9G6Okw8fYcw)*6at2Bf7eTizo+O-l{P!zgS)~^lL>^62KKVKWS z-aHi+Ej*R!6i0zi)6Fg{!cc;Ke-|MolWvR@F+Tak| zW}N|TDpkO`pyd#zkrLLNYV_7(;)7z1efnR+f3)yFy4&VlLY2TC==K;~{U8B@cF|QQ zW<+gpPz%ivO**Hs*4~EbNu$N|n?#|<8vC-r`a9FNtxeL4S$>XFQ|zmWl*7+=Ff!rq z`uXt3-h!uB&(r$zM-|9?wMZXeZJWIxTD!aC}k!}`z4@nXZd?LMge@4mhXIQh&dubK)n08SF( zH!KA#4gkN%*MI%3U7Ts;e-EF4F?rsft|lfE8P){0+~36#Ni!ZAH2igwqLkUhfc3}_ z=`>ekjn_9|`thsZd>OIUL;Gt}9ELx_e2ab62j&M7_%!bxu?7Yg?z(Tg{|ddQk@-Dz zWMjO?+6h#cxi&DbbLDvs>n~+$X{$%gT5r$A>2KVwDABMKU2heexj%TA!g%(a2)4F)t2GyXZ`FSjPH zuh$1y+o^6wUnZi0?oC*Gmekv#6Ars{mE1$Agg_w3@O%Z zBCDNb(FLoh8Q*`BS=b15FW+x~wf7_1gjmCiToOLB6KtBPOIDR6>SQRmpOIo6A9GE| z9A%1oi=ZjE?2uwmp{+B~w%h9l59Y?8G2?0vJ1192fv=o| z6l=^|A6V48ijt$I6tNbK%Ko`(!5ZC8mgbt+idehoc31;Y$@7Nz*rE#uozz@mGW#uT zf-^Mo{UgBI{?0ktJq!lxLzbRYctPYRRW)Cyb7HSSJHh&UbgK&`thLWvezuBHKEM~l zXO@J?;_y{cTZI|>KfosV@h3ZwyB3%9Yd^$WDa}WgsBVoA=M5~m#^>hZmX^uSuvnm0 zI;?$X9H=YFS75?JVy$zlUOTJQuU`;5pxP#V|0A?UaEXmrXZZS=`Pu`Yi(MFJ3;aCJ z>Ma{l{uaJZ;IqtUC7ZDpAjX(6tud1i$|tY}dB(Ufh7V;MqkRpEXKwqRRSf#l;IYI~GJ{8r~~{wRw#txOIUJ!-};t#B}vj ztPzGutSwH_sDTgD*>{i)3BtA)qgW3Zu1(6mzvb{gCJmMo(sXyVQy6nr7#gAsxu=Fr zEK?bbER?q@SZ9r@1gvj<<#G>*QgrJ=wJ5|CnW=sv7F#04TB8&fz!DWnS8ULb%+m$F zNa+k1OOuWg)PTccedzHQN@#F?gVbACh-)loT@xJ2k$oVqErFq|)ghQRX2h=dS6${w z$!4s-Qgv7hS|u~;ka<#hyE987SP5ryE`P^<8s!D(6j__4a^zHuS;McYl8rmP6z*jMz;>@FSXk@gR|=h zNDM+!CDTb(VST+4YuJN@K!z4$pL*lEFUA0N(;_YaYk#B1{%}+5LJ27I5&6#Tr6};7 zX*O^khIDOaI>`vu#{ahC@TfkQc%9tI$a5i{^lLd_uvilXMwRr-dlQ38Y%FJ8qrC{s za=qUtHJ_Q$v-%+C4RDv(d-Qxe*8j>aO%+HPcS0&(125fyH*rk+!uK_d*fpQ?gfuDP z@VUQF6;d){25a+W^}Qf&{u9vf7_$*$TPA*C2cko)&27(2UsIG3{VPZ{ube)vkYcew zuM`e7iC!6<$Wr;nxI(|)!OTkfH8lgo)9@zw91G2HG^6u%As>?tf@lDI!wtkrk6D= zwg?Id#ZuxxM-BiH-WIfFoV6Bf3%qtk&k^gdy>ZUQ!il~GmtsMkJVSe|aZv+8WI+!m zrSc6EkCL@X*lT!ZlVU9*N4}K)bPKGH_HL}zBC(CxY21!2uzbe{8QlGAYoe`)ry+A) zV5EX8NEI#;M$I{poD_=%di6ireyu@RE!KmT7Z!%%@B+#07}l1>@YzFr)_^2N65Oav z4C@k;6Y52Vb@;fxnMYuE%ue6N8`_mbM|nCC))HYx^y-7cj#eLp<)FuIW?%si)&9e${y+b&L{+-9#N(G@~tB4oA0|N_J9CW-ghWKUUt^HttF~bUr z?bk6vLnS}f&QN*=mCBWC%{_4sT30VzcU;}i8cvlV$>s8XT#LniZT4w zs~N)@?)G^jZkfV`;Tu!LV|~B-4&!DKscnvF9m>(GPt2=dcYY|WO;6?#YdSFyU)TkX ztixSL;u91R( z5oM?i4h)s74-2uTo?oV1LY)C6ZBJ?hYr5jSGxt-eMl9^MWHe%Jq9bGY!L=^WF)0VjSx?z5`>k0HnjdAH&iRzE>#LU@eh?fDKX^YJ&qqCF_HJxyTmk`DMx_=mBqN zIDsGJ7}hLGz1=Bb7BRsTb}1HXlvZMaMDsgq9hEKCFEi1iJuZ5D)ftQBYh&*G^P>uv;Vrj>p%GmIYN#F!)1{sda@~%0eunodT!n&L9*YM37c<5RSQb~;tv(3$7 zZ5=pZ!DMbxHY2%ZD;*8irZaLo=9HMO!{CCg0vNqepltY7VL1*FJY!%$OG9mNKw%q% z2gMp-!umtMuE(0zQKR47nix=m(bNP%c$7;6$7f4&pOKsm)&?LRaY{HKavfF?naHSD zV;KfK3A}J(0 zwG8y5C=5V{b(&3CaYVrzgr!*XR-F>-dNj)*#QIb4#vceY-V@gOMhPbEbfVACmykGu zb?AA(^2Q4tKS!+XHCmA~Vl9(=H=Ce^MlA|cj)RY1!X+}QA`Ap?5SC(1uvn&DVy(=x zs4!oL{u!Y0bp{B1FeM1q@~;h(u=(>?-?`Vlyy((7VqMC0X|Fw~Sx+UlntEVdyE0&< zUrtO&uFPV#%4?4|GyBE4HNM)5^~xv-KH7=HD~dAxJm!Si7{#kjK~7X8kx#@p&ez7r zG%Yk9kWFvUVc9~c!ur}*IT?3}-*Ob4MW7GUZ+o zV?@&m@+LT^&X&;c7V7*(Mfos>n+S@CsgCk;VemG76Fy-S>%^o`9Vj=pH%D~ZvWleS zXL3^q(imNTP{qT}XFn1!j%m3*|fZpA?a7XSFictT+87dMfAxta~Lw zH1zB87|s@8O>HA)TJjqibcR90DFcW-ya2={Bms|aCrjMWs7jX|6!T#M!i32 zqJ|ki9MFDAk`2l34c3+eQ$j6264u{+9V|$(4#_~=I%LD{+c{!=cl;*z_H=yrJ*{Ik zeWQt3`;||FsUpdSJl>f$VBBgpLxKtk1?u}XFz2F6aU)%qa(o*9Ay`1M7Rl7%vEKW} zE6%WA_uTAG`HIb-cQRCc386F*y)%(A)`wd&CkL$K2tCBwtc0$02|;5N`}G9Y z$Ol(u!kpYeVL1%pm$Gbh>}ZO)0l3UVzI8>gHVri@9$-E9KulTJNGgkpR#7)QHKL)M zyi11BTGjW3C7>x=P#)8VSjTlz(41l|gVpx(JVZwbfpVs>-f503CJ?N-OLC_>-)Q|A z)#2yHHwi3N)*Mq0g7uvpwz1~S4Rf}`>VY$Cy7cL3zn;a~7ppy+{uvkj!(w~IgKr6R zA|x8(-v0o$P*DVaZhVu#Qf19CJ^F}9*-YBb>y_R{ti=r0X3Y~fB9>vj*ttf0)Hba1 zfiy27U8Hrtw?7d8dp#19i!KEq$@-Gs>I9IvPNRWNSRJMKY_A z$M%5Fl~$WE$;gPJHRNsg`J|pfrf9)h?xhv959m%}jh~>lA-cK-YhSAVEWmjaSnvK5 zxsHxF4t$^vRwW~IKZvfkV~Uf3ja!6UKhsPpqj_Jj+mTduwR@T)_3sa%%boXs<1TNg#}=o&urI_1Kl=V z`SggjI{q=e_hGG|WB3GUUS57?AZ4Q1@gI=Eg$b;+Ys`K_9MwRnTw7b5c>`9S?_r~A zQGj2fS{&}eCu(BtnUNv~y0i3vHH-w=eJ*PT#hMJD1Gys!?B_|W*{8y)!D9v1VUrZp zL5UHi3zHct-yqzxiB?^-Ni5f@yO&m!eUQ}9%!rW#6_{?HQLXO^g15fKwLeO}%j zh#4xt^n3ESZ)BUtS`Nj{rc7f^f48;QK^PjD1dnwWna&XFsaE|VRE`iLsbp2;#(uIB zcDSP)Zc4_urx>KivG`Z^D$8WfW9?-uIlmAS9@uHJG>b5HXk-!s)#i9Oz23qb`Y7SbGX zyO%aIUSK~>tnb2Awfk5Uy2ZGwFn?frTm)rUJI~S+!MY&L0zi&Tl87OvZa*H99;`x9 z+5(I*;bC+Z+9{0TH3kKl;{>DiT}O{Axh`di#oFLkMWvNQ-ZC-nDma6IcpdcOJAM#c zzeX|-5$mdNLUI*kJL2e#%QGPEnwrz80teY(v3UV&`^p+J0@iUZ3ME?zme;vGE|=*S zi#6$>pcQK);P^vHbHw__E+zLWs2dVwo$NC8Q4HC9%2l!{D}6G#tL{t+jrI^Iz&iBt zP_T($rFyre#VS-;A{J|jRVG*;P)woWGf1XmIL7T7=lDk?^ANFC)_krfsu5;j^30%qv-cmdgwfi#0|>3D#y9j5)yu4&qB#Q?FAC zhFHhaL1-Z8{9qG5CpHB(Pb5FKM~$Tx7}}TE#kDsl_3+tEXExB*oFJnCSCK4GJB5j2 zv7*@2iC+zNvBw8>C_SQe^z-$o(gD`~>tjJ8C5BkPB{oq`L%%blkJC+!<##-_C=`ve z|FPF0brr!1N>(Mvi|#dJ$qtodSnMXYhVIA#P@ z45h~&bd($u7#_-Di1ow-T)>)K@&_XV@lp__Hr2O7+T&?WxDKVaA{a4ZB`JeVV1L2= zA=_fTTyvC3yPTky1|6m@1Z%}Hh2fzb)?ytrmxz~CCo=56_qLeQRdiB)9LcrRt`nI)=LMWQJ)SX;()@T$=q9YF_7P$r{lPZ@c^pZ>)> zX4Tvmv<`^nQ7A!#ka5>0C&!Lb6nY{X^E!leFnii0S7 zpX=8)F5=}$V6Yu2nB+GtTy1ZA_)dHla;&@C>3*$(t_mWlEAmqZC5A{ZExgj@6V{(u zqG?4$2U~hGJcsBQk&J6~ii0ToLm3VX5g`o>(^%_1{oWaBA7K4O5H=*rW66-urzB$- zB!YRdGbEYX7n%PFPtRF>W_4bk=L$yd?r;h%^tIfkd6_v!kgzw}u57%tim@GuOnFum zvnSQx2usD|0BaVs4GF+{m^hJ=zzKW_)_5fmLRgW_{)Fd*x{)jvw5%kwR{$$74zi?= zkDkR+jj=1(A2D-Sm#%Cr*1>UI_dghA%&P2qSySo=9Pzrtp)kn$L;gj<7Uc)#L17xTDn#a5-w<}Fex#VSWM)a&Awb#3sMyB%d z^z46D5K{S4eZjv_7RuY#uT$|pX6I|=qxb?G24;>ofVGXAs67O%NsEfbGb&;YGuCW4 z+%lpFNBzSo?w8yl!;1ytf3}1QisfDvx zsx11U+yA1>oLvxWlZe z9c3A{WJw0g3~7!A+u#a?T8~R9Ex^E^Z{Q#YcmYO>*tJTVjgA`k+(ocUOYh z6oou9;Sh%4iJM_whMiBMI+ z2<~OjXeQb{2|-c~*0zMf8a{HCg!_QCB&Ej4_*sh={#BGQRs(FJ3KRgkIu_XVKLiF+ zDasO=S5PcySxG1~0JFMp3QNxq|osJ$O458B;h4k5RL2Yg-2< zL+&Wnq|hiC$JZBgzrHxcT7lT~&C*_>wI+}{ipdI&+BTlSoQ~Bei8^q51Agka>tLTW zSdCbhHYP;1&TlMdx@zJYHI4;_MM$QJ8{F+jhzOQgE1+ORFyh_!&Lz8Hk$ z-jd)oXpn@CyelZ?m8?BWGy?85!UZ%#k_As6@7}@`j%jHS)hfTToGL9p88g5U4u&GE z^UUjU|NIYDra!`by*Kni2haX8cDY|?ScA7*AnJKtvm=$9A%haHto5u>5nv6sCCmiP z|Kc?t?_s$neJq|uwJM83XgpEGIEC{w^%X~D#F2JT$3z>TUt28;2hQWvtxs#7v)*em zJ(`Ds!Sa~p1ac4)H{Up8!Gx8B@zEy+>npTh{2-x|!#{WxQjy4lsMQGX_Fy1x$Rrh_ zSVWU_kxQ^6Hm2Ip@g}VK-NbEft3SsY&5EO*~?|NX7wSM99dSV+~n`g*ZDhk5hsz#v1EEzmZ{t zTlpoS-+8tR+1SF8yqawf9M_7`yQVYGEWiW z^~EZzZ$|oc=^=&ahjf?}rix&a4>{J5-hlP)X7`U?;@COI8a*|*J?1BD8KrFgWD45= zW+TF44L_2kjJ1b*k2Oq13NOP3LDZ_&WvoU2?*}qTLOM)ZWi&h0j*EdNtl{!Mva5;ImrjPYo(HufCu@EvI!!=b9>4_Jy?ZE6JTyKAGW>R^;n zSh9YNYxV}L_cz^#S^Zf(f5Ca;eO}5jsdph`^QVwlW=L}s><4Un|DliL?NM2*0jQN& z%QDv8{Ptwo1wVnieFlUPJ%Q0hJg(XX-qJ7!MF*)VmK(l+PqcJ|zV@Ck5T zP-+t~dojgo9X`jWQ8j~~f;7aoSlg>1D;U-IFnhV<8Qr}Q>tonASRZt8DH8P} z)r@tiO{Ah1#kRuww;I(77{v_%SpPF=`!zVVJkSkXFxH%8_pdO^3I;79Tm@>DFv^VY z@VbWg_Gf-jtPMC{Yb2NTrGqYR6Q$+|t0Ept7`lb{{pYc)DDlPY#T1JctfK4_wmpp4 z+Sp*fUW2JyU~M{~6>Oxt!xfE8)24F9ci3oPQjkVws5536tcNqjl;8tkt;QI9h6q|5 zK{s!GVY?>j@80+X=s6|6n7x={xgCvhs~A2G>ox#hbTCw!?Xu0VR)flwuG$AoHo;a) zV&s5b_o#VN(?+aeJIB74fP%9CYjhh@O`x`jp)-f%aYARZo1)CASb4Hm!CT>e6ZeJL zKEZ2j7@Tg47bc=s=MBsZ5I|NIP<&;ux(vU;dY`@J1GpT`HJ1mdPA+0SR^niW5s<^I z@^~y_C|te@n$w-XklakLXu%rFRtt86{J!N2vt~gs0H>8$+X@gtL(1UKf(l{ro z9BPHTDv`VCHPNIKDXn*4Pt=JB?2J@DyvN;o_iI*%*Fj z+9)zafVS;aLcm<$VzT-9|^n)j7w`F+28fzwY;u8Qp9Pgxl-9?0oj}$92EcWs~Wo%Nw}hgfIED&OAw5`Cu=!dfz~+U`8^_w{9Vgqfi_$hCDwdp<0Bz?8fVG1a z&&LgScqK4xl>5DJF08|B#SWIPeC@(bz_6cu1zGNwq{|z)kn0NnZvpGD4~J%8fKe9a z^^i@+8f%%ViDv)33{}{?JP&L|zXDT495l;G8rLZbvEXbUVPlDg6`UBkfVE4LH8p~+ zuo%EPwJ5fv*c~+u_#u=M)`<~P!F~2cRydK7#Sr9q*z)XMpX=N9&{My~G8d#Q!P+Oq zG!cjV#*bo6>kl%46=@h7R1YDrL+ydbqEW!2U`YJQ2TNG@HepRenz}svFiEh!(YDP{ z`l~?WyQ}**niZBZ41PA&Y8ZQ12CH{yd=KL~U~PjQ=o~Y~_39d^^~DtGQ=UX@x>;B! zEi(LZ@uToav4%;{K{xF>AI#*VV7<1X;I*y|I8Gk<n|o3M zdbewweNdN&ovC1*Ix(D&&rrDK@msa2C+7PjvA*B);t);vpHTy0&8lW%jSbRRlf40J zSig9Ls*V;EMmG$Qj~Q98W5KF@F_kS`9+{y1)FZUm^2ID|Lzvzkx-}QZWgrIet%t7jO9&mG9CfzI?xEjaV?I9 zWJDwrDoqK62&*&_OALu7&JAC*!Sm!I@ObAPrbk8$Vpzz*aS&@_$w`S|Tw%-dY)6+w zE3Bnw=O-$`;5k_P5v;}P*;x0fN#j_53q`Zg8h8+t2swoCTddLqOFZTvy(?xZ7 z5I-3ziR{vYqqIKE5HWvZBB&#sryTI7xLxDr$Ly~^YFPPdhCasH73?wq_WygR(B3Xc zIXfg}(^#{2QNtXp>F3uGEEtKThq3N`&|YCJ!?jP;NLgWh<_qG6)SZ0j@FGeBYbeFg z`bGMa8A?a6?uC`TeE0=5gK&(@;U2BTan08`=3-3~7BQm$L5r~5xPdET*NjFGvGk1i zf%A^*xfWLh7t?1*n5h4xM2CA$^^FR#>~%=Au&!3Ih5?MV6>%Y!{vU5tz`FK4Cn&7J=|!R3_}ur2y2gmmSDYd$U#Bcgqigx za#=U^O|ilewUmD@glwgyS~#5fg18a&r^P?~+<|Ge!+Bi46zf%-5F1zRI<&78n`Q)1 z3IQa2B13};>cfz9G_n590Z$m$G@KE%Qf-i0jB5+(kv9a5^-3Pm;U5Ji3t$}~^5g** z*x5=Oa@a60$#cX;n{Z0nUIJ@N=PR_;QH@PDdnzUDLH|VPQ`6d5Bm4J6L=Y2bSXPA` zYs7hNg(!AHDloCL3`u)Pg?&cC+6M_tXG0DrEZ&ev!D+E6%{VImBMpMa96ki=-ZYGq z8Ei@+PGb)PjWi{pk1U=_4dz{IYZ#e&BnhF3^;@K50t-pP+CicU&$5ynYZ=x7yg zw6CS0AQ@&((pXr97gUzLMsw%G(FAMy&)x zxpw3tLk@`J-fZO#`_Km8x)3XjvXX+P`B>LoSHz{*Lqi;ABi7YPL0`16#F`nnM_QH# z7hC?tVErt%IZG(q^tj%h9qU#P%`AZoSP-B4UBzxxQXRzF5(l>|WU%CS5bL)suN@xO z*W`fepyuN+J`9bTEj#D{_{J=_-ElqUp7V2yw%G5har!Wyq) zEx@av(Z(iH+>0 zcziZi9F+iRX9&T%ajaXt^JuIGWiSa2SU*hN*%T0fwTU%eBaJjmupYA4hDw`)KN29l zG8vOK)`26CC2nY$Pf|`znIQheW3X-%>;5RL*&$^M#h<}stmOqfKAT>0KtAF)hP72R zVD0R2ZQ#3ZNuSsT(z4K({tdN5Dz;P-3KDA{FSDew<5MQ7J0TVHn;O#BRC85V%sA&7 z!J3g}Yrh2W1nZ~cZa9SXuYonvEWvuSO>JBGF|3Eux0Xy*rJS{@AoYeTvz zDlc4ZZ({*m9%S2WEDMQ&%VXrQTzUqUS}f=cCgFtzl%q`iaRSw!c3^?1Bcf)R-)#g0tr zePt0pa<#*sa26rDc1&~T>eW5^0j9Tt`Zo?<)?uj777BFs0M@iMh@uf|6gjeC&~o$i z<~~?bZ5_xyeQ?NFV@=bE4?n8lmFbKNHXEnyI3i7^!!KQ-0eRSa%D?LBF&|w!s!xkr zKM-7*e~=My*>IuN^hNpr*3_+{L4q~L3xk{z6l_%!9TI4)Sr-yQ-AkyA=6J}QC78;L zV+uUl(s&JkeB0=*@zvMZmQjVeft&qjNcUh0YVgrd9v#-%jD)QyjOMYbvF14h2_4KT zz!SUY5nT>-*1=R}EG_sE7-)UD`ofj+<=5i3jh`kh#ky@5IU+dCmfBT5I<9@rm5*y| z4T?O%$-$Cx@{iMTY=cAFlu@!?3_#&QyH%sUl!mNF1ryaDnfL-fRv5g}yV3;s{vH** zf}UO0od;`j#9^$Jvew=#$J&FbjJ3YlT{fVV50;djWIon?a3##a1 zghC#?$PY<;)CH3vAniGV5rId>+qECYvF^DI?wE0%fv4v?Z7LDb5SX6o63;FUm{dj^ z=jeJ5jzuEaReuwfr`ewFNoGmD3~Oi-KI#%gp*&m4J2G!j*a@NQJ{lP7yS_52=LyJx zA4>zHYsa)_;2p-goH(_>gYGicu#mO2u3H>>YHkvdZR-*PTnNtDobvPZ70lOo+X z)&}V@XsmsKwQfsW?YvS$nvOf{@JaYIhnvqGW>tVTlAVUTtEy7x6eG&tI!!)`HByl; zHP%=DrDE1te?Ovazki!!E%+?MdO-1B>87N}O1cBZ0Q-Cn8f$oWvCaC2Ed?HzH=^u_ zm|s0P@GP_Wr7LWJ@kVXvNsG^GV>3rI=fWnjrui<%TFt!ZX;^MT@Hh=M!`oO&h6+B* zutpg*hbWI4c=Ix(uZ~n$gYROh%M*-s&seYarA=TjHGB^w)zoINY$D{s zYIiX!kbOk>X{?Peu#Qg=dXIW?$FC)7GP1pj3{^b-YAWAwI~GQrAO0l z_^eXj-J-f)b`OKYtO@`SBCy&IC{Kd{r3T9;f>na@re{nJ@AhI(Na8oPx8N-auhYBREfELDA;yJYA|ldj1uN2GLc&RWIABYS0cfe0c)I0v%px3 zs93kdpJ)tHJQ4?)!ed6LVE?+dK%}sS_v&4NO<0QIWx$$_`~7$O|A$jr;HQvDbGRcu zo?aKt;W&j@;>JVIsWefGP75_ZquPOsGORz@|DC$^0ThmCPdymcwJbu*){e&x_>ORS zT4PQ7rPx%<#=;}Sca6?om=O0`#5HCoK*3n6zVYD)K<-)F3&NJamyTG|oSrH3Sd_31 zj0)@7FY+$1W{jc(qEZV>V6eC6GU-wV^Z4?=0TU7&x8=0Rh`2>@z?#2jAz0s3Soerm z(jXSEcknF?-i3^-mDY#$B`G-vXdtZnh%L~6NZu87g!PUc{@wonu0?tDY{Z%svw@h) zFS!PTnnzTXDtgWwg*8Y@!6l(5q)ZaHAVpYPRtue(`e=}GPX+8DApj7UTmv>Xg{!65P)y6XRIkI#yNeSOXUYkpkfT*8q3y7F^wo(8^eWj-eJevF-vP?*L<0 zLJ2U3uW`0a!9}5`Buo;xAcYzQYqXYp_M)^SjB6#9v0nG8Y&_|;JTpS~A2d-&N7sT? zXe134_y{CP@M&^}yh9G0X%p50zkq0)QEUh?4kWZDDurv5NO#gQW~lLXU1-!&yum*B&jcu>Om34j1&K&C{_^ zlNb6C+HH;X=aJMAD|IbMk_fLy?59+pVNE4?7(_~qwXu<^NB|R0CWb%vMg$^C;)j2Q z5@>ehJ=hBoWRM22rrAgsoK&9_lWY+=H{PurUe8TflP#t+|( zEKb~0Z+S&^J(i`W@*KXh+2rSl^wfhvRZ9b64JWh#YxEJ>Qe$mAm^Uct?EGF8jVF@> zK*|^k4*4yjwG&2-(ne@h3Km)apvN7@D#$(h9ASFmxg(;jp zGenIcu~V+*QE0am}CW~RKNt>&O4 zbDMOLsx6aR*ceOJAp(OEW2pprAw>h%1J=J43j5O%YpCWRG>AiiwZ3j6bph;i^wl@+wjq0y@i)p0kVA7Ffi8eIA6Xg4#@V{7!EuNC3_$qlp}{R zTC0en!-d#WNe@{_2-fMG&vv6&$0_tjXhmF2NnG|3%JzyREsA`%?<&&XF zu;2eOnjr}-J@hsMyif~Be7g4`5u`zPrS%aCSv*!#h*Hqxd|XdsZIK`txH=^6~3xJ=sYXge2wZpo|FC2LA!mfc4Pqwe%ID z#}()d!31H;j-Z$KAZP)Y8~P;-lML%SvX53EmLIBh$)w_h^)N=~NXJt;hJ(f$hclhC zqGI@TIGz8EBhkWNw#f{>jG=u zlV*}A16UJkG!d{+tmu;hN?D?&L#XnYHhaE512PO|Qy|il4_ac9J)Jrp>j2(-ovC^K zh)Iq};1nQ+Y}SBM_+0>Fjo)7Ju!98bDLlv=o@5g}iIOsGtnNyXJ&ZMU4%ysUVCY2{ z$5138R8bG<_cky&!dkaOs85ScVaA;7T&zPM&pN0@Yv=3qNKT<2G0agdY-M85KEl35 zSaa$EgUHxR5tFSPVBJJk-&Ao7oh&4>@D zio==|l|idQ$)=dY8Ea*9*ig>bnKX^@I5GoHM`Oq+p%k!=Vq`>z)`1JdK0IXMsCseF zh1iI>Si^Gb#SV@2z_K_}T6oA4*RZ#b9&2bJW4+DRYjJUfbub2Amvl4ud#Me%c3Mot;)tVV7(y{;CM}E55n*s z$2E`F*u;UcUhn5&EloHaC$Hp~Bu;cCU1p*f4}GeH6KWgFF>wfMm#9q;lPpM8YgNXKags(Pv;j{?@zN<=otx@80qEe(crEjyH0_j0m5{K_f)Yi^T<$wGbY z@KN=tk)g-egh8S1W4$K&G}MDu3b|@<>Y$CIt7}5a6~Tf(l2VLU>hwUD=jjQowf};( zg0(^0Q6;!eS(e<8>sXj0>8N2r@P!T|PgUe^pWQIl8YT;@su72jrbcQZnhOPj`yEAe z7BuVOqRX_DJ!r?joPO1xeagM7V5IT)8Bal#yRNFTy9*7}S$lPl~TgDKyn zdXT;2=$TKl{+JoPB7 zaaWVPo4h`nie3@dm6U0O3p7AQ$7KgL(N$QdHbvh65e2dazY7OJVeP2k#DWE}dRnT`9xo*T)&`r2LBkv0A2?H8!g^?N z{OC!8K4e%wbk9>Aj@to@Vifm#WEQNMEZu--SBLV^C(M|w6|upt!rCfo_KkE|GTw*! zM}hSN{RmbWoRSf1NDOkxL3=;FfU^Z%U6!!!>q>o2mTb^;1=b#h7!V2tdN^V2QAEPp z1S%|qAYg>ttm6;__!8@9nwznX(>n6FK=3%Q-b8CtitV#pWh^`eB4pfZYP+H1>_e1M zPJ}^1^pU87cu>MKtnqiX20`nYBEvddBrs87Ad)HlPEQa@*;vv=Ek34LYt9l1qgL~M z3u};ej$qh=1=0OFDvslrOX42JSoLUEuY`Z0(le6L39uwIg8E2pw5eBg8P*%=eTFH* zV8x7sd7W}{?jQgO)?N3{QNf%9bizJp@i7(hNg~NHRGOLzquB-pajA*uhw|f(L02$i z=5e=XYhVV9DYC%Gv<=Ty7_nLA$(hn~vdjs273Q|7KDxjtvI1+_X)#5OwVI52A`%Fu^*y}Bh(jF5A)m0m>iT5AvRdIVD;YKEQ;@{DeJPft*raNB z^yqo205>{(xF>EF!wP`pIIb}lhrSF(StMq@S0O4}JB78jC_D`n>0n4uhy}khSkumj z%)aV|FlsQTH)o+~vyTbuW`}Xt(Md4@-io2b+7s4dPmVRJG6{;Fgb3F4`?90HW&$qI zn_z`6=Cw2gh>@wHkgI5cI(>1m`lJNw3U~G% z!KcN-uG~TgK~+QaG!M(zVFmQmsOc2+s?Z)^^!3yt62MeZSn6#GYa6RiO0ceA*SzEX z>hHSFx3mrkYr1OYm}rQq5I(S!sZ6vGO*9QD)3c(pv#w za+61ol3;~3yfV%i%T-4xVO!w!MKq0$VC`QeDYr2?Gi!V9uw-xRT?`O=yS z>jD^&G$)oedmxrH8diwxu}q=a$C)Kz9p{=kdM9WMsakY+z^mSXK>pwq>KI}}`n|i_ zh4~W7^>%5IDj0~N?Kkaly}d)VMNm!3u!hd*n3PEb>xY1K|5nZ6M6xSHFUX1&9(W|Z zhY(#9Wc65f0PBKffe|^WAyo?xAmXD#Si|o799XX=vA#cm^)@|I1UC2al%G3a#G2N4 zxBs<*f*f-K)+7@Aiqn$r>jiLqa6J%(FvM{kFXc-2ptC}uJ0_+k1%0!RJg3y-TC4)M z0uBC$pxZiI3lVyl$xz0N^`|Yy2OktZPfL#?r1MBFU0qonvW-0G4(?lQL zL0!++%}natq5HnE3A9f>gbdpk*lJ3 zHLeHY3O0efNOfGoh`{+VS?iiuk65F;KVJ<|dT61CmR)`Gb(7OVT^Tls(x+zyfhxS) z9*j{~)48^MCK+Ccn`51>2A4_>=M~mNvgpvbR&$9Fu86fgtaXYa3KYSIW1Ld($unrG^LW|{d=Uedn0MZiHzx5&z$oBW~tWioA z#JrD2piqZ|du&b$eJGCw3hTHL_f!kbvXShlgb^F&$7n2`3DsDqjc#tsX;{-_F=C#} z6;X}{6mk?;zrcC}?dEkW@S)g4?VHQ8jQ0oGsNgw;xi(6yoH;n5L6UsOBocUya+Oq zw6KP~CbQ@-DKEXV6;;HG9ZFUa9kVQ8B1PE8+7J~^z)uh!D}^~R+N0_BqK7w%?5383@NN#MtEZ8Rj>nP-l5JIezZz*7`rl-2OyF(5E}7-Cz|pHh8YI(HEM!?k9T7-g?EL z0U3hz9&WAl;6WZ;wvu*20e}4sW!~`!4c7mt#|SqIsTf;@bui0Q9s2y8V~w_euYA|r zU_^dI&-uLQXsoeq!z9+O&;(Nsa!6>svdBQC#@c}EgH!)wCG3O(__!ciK?Xk8{cn$N zIE{g^CbB@Kunq;G?!91*D>C@Ycj{y`njU^A!`8*pW5=}z37~3XT$h>v>;F}q;Y?%w zTjYL2Z%am4_P>Da*#f-Q4`tdQP;xXEp?Dhq4*N-ENq4>cpD0e8Yb1o~e08~m*n z4Z&|RIj3d->j8AI7;XKJ1)69|z#3B-)*vF<0XDvKtkEnm3HD|#+MyEg7;*J`FWpjV z&zytjF|lUMn>a1f@qDZKI)9FFE*Y8V0bE+UE_mFsQG~V%^f&s$718+m>NVRj?ZiTU*rg&^@c_ z3D<9+@>dFLnqpl|drHZ!GlKP#Y{zo%l~~z1;P<}*)_R6lgy3%;{aN9XjDc1!3+^Sl z3wqzs{6!l)1%Fc-(8lS2TANF0%P5F|1z$udp@}tG{|!+1;VXC3{aV*>%bsrY9;|(%F*Mg&ciEAe;9dGz^-MR9WAADXiw$>id zX>%!av0mFSJV<&y#h}nNVhx>j?Ot{NcuA~1H$m^rK(iEMEj!@{+?|9@3Z88T^X{>R zTSwq`ShZhCk2y~%}e2O08UC8{%}Owcp`i1>nQ9O}Qr zLlIV=)tifBur53C+;I&j0je>sur6c;YZ&%n4qwyDadO(9<=N%AwfB)J^8mjP1uOL& zv>(WD7n#nTFv>Brk~qZx)}wZ;J}pr~(l%043dTOl38Ivel7Bf@h2*c@D7+V_}-qTW-zTST`m- zaEpnO8}-4=mj+s(v97I`&l=P<^Goi8bUxNrSYq5)KMaah%M!^i(LvLRmmh%wv$&(> zjh$A3wXSSNa}KY11ib_xk&a@$!|S`#Sf68+ypdMq%}lO z0|n2pua17nW?b=bKyF@LgO~tRl#S`-BXvpEvpKIyvtS{;J&3ijCEMcswQ$VGS~yaS z?e!^pe99=#%}G8yL9Exy74~zaN1B;fk4!Hj#t$C{pvmckh1%D|+O?Z5w1V~DcQz*k z3~q4_x7|Mu*v`C`axi_pZWJ#nTBW%+^QMnd`m7u>Y;q((D={P%Rkbi_NYea6!1{FKn*mU4dvJJ3e)q9XM>q0GZRO6jw5$mESi zx^Mb36LSyQ6TM98-64oPbi98GSnn#V(|fl^l@EtR>-zg{eQ;dc0eeI%1gyW2%T1ed?T2yx zZ(Lxc2tPw#2E3GV>cpwA?se-D*1D9^_1y&Kw55T|^QO`^U9bZPhWiTZ@Y~_JX{|>8SP83CiC~jHe6l!WWI=7ZVBe@k>p#Su$I1=R=u9N9LIHJPT!nqr|65s z5$pU^46Pm=*W-rPrjL{uRIni68^aol$MxYaV)P5N;2p;3kYIVmK0d*&32S?2d|=(g z$HY?~ea8N99M=&HN{v-baJWSC&&1kQ>oqsr9aeXU!Yo1n@3(t%fxg>%kt{XT!Kw3lujz@+6TWdJo z;|>?@HrDX;G3?Jy3F!mEpj+ARp0iZB5RmG^uNO4dT=yQZ#;K99zEN%fqrJ+uk|s6i zaB8=5g^ZzK8przCi_YX&$8(>WY1hN^RPZ~yMt~DFz2G(|4i$}I9e)T1b`~LARZs>= zA9)X0!$UqB#`?8tDi~e+QPo2dNaly_L9CnbkVdn`lUbK*4>@geD0%47s1_~0f8)ek zUGRH*7e%Yadl}b86^5j}Lk2aj1?ycDbabNDR;kYl;LYLkv70waX%9qJ+6k|B-a|4sjAa~#5pJR zy6d+>hc4pq@W)&z1uAwz&#|~I_K%`|LDncWGm?n4VXUoE6IfM2ofM;IXu9kHEpYg%f}#xD2+Fh2V0zVC_aOEff7PTMLrQs!6PCYf9!r2!tN_?3Vav9Po;0Aj8$; z2Gm2N?%`I~0EeT4TJDP$_^$Ifb(Fysx_Tyf_gFi)nAE@;h5!W*g8>@R4g(V%jw}es zv3929I)p&L8pr6o0KVkQ<}ZN(v4%wlH)lgw_~%I}sotc50#|rDN)zkE5K=ui{M}=1 z`$?=}>o$(HSY4u4=PfqV;eo^2o01A(m<$1Hn2P5GyiLKs!hHoC&#|lR_rJ6qD2C** z0s9Sy0&BPc05eJ1svmYjF7d!5?;h(<_q*15E$!G%VGUlJ85}e;AJ@lXEgm}bf|&@jaMC8{_3Z{cc6>$e!AV##6pZumRL`e6Vg@H%l3A`(w0=J2Ai6?m!OKY{oR>(wr5h*Xsk(WV~#(y%fT zG!lb@!ogyVhkx^l#Zl*BZ#9HlJy3W=FncdtvVY|U&=i{2Xc;kbuy;$`3s&S>+Wn+b>j;nFq`r)4~|jjW z`VEnJU|qkpkRG=9;PA+!3qk=^2biGdVGg4{`tZPTocUYdV##cPUklw<5E->3-=D08< zwq!b`u%a)@>_>^5Q$q31u?`Buw}rJ;V$gmHYgqZ_1o+_i{{ph}v!%Y~9Bn+zA86ZC zZQ#N59a1pXcpp-F3T@8ZLH1Ds)n!fA1{yCzRs?o`R0$Fi8f8`Oq5@NBo6dTYU16O@ z>?GFxv~aHdHb7-`Gg{OCDAq?!x(e%Ctr;-?VefUxvb4e)>{5Xi4VA~F+*Q>odZrwMGE!umeDfD|l{ zrqev2EnA)zQ4MD{ifm9&>P^GWs|TzqV}^#rsz~Ol7n;4rIfb>;%(K#Wc-1V-;Tb*L z{F>N;WTefEK6UJMV-f2#MnX;bWDH7_Q}EK~O>NVKM(aPAW?2~yP?lyV*u%O}g$KnW zfv~?)VoINoped}qVxE`0>);ur2G($cbE^9u6t1y0WH%pLSo_AfmT`piCx%SFwxyY7 zW$`{8=aZ0=vHp!?nYSEcl=_mgYP9h%5=Q%h5}GHsow@JuDd94}JkuyGsYdfFm#Sol zQX^1k*@vB`W#QcrM5>9z$BtO8 z{#kRHCWEHX>0_|IhRghItY5;CX|?!eX^mcnHI7pmv)sIgZr#w-hg!c(Z;RTno_Ucn zo z&5d_07PhB(w#ZdN=~>KgN3;T1ZT9K+WQ=6S+H$ zbvBGirfv?NUbn_IFJLywJT_%=bq8`TsnMS9Bb$dWw2g*HHIWG8y7=*XlCL@2{wr&TXB-NLk2^xFEphu;nlSqUs6idd378%Xwq*ksxcWqi`4u^u9y zFP`g8^pJ{F6A7Nf^O4lI88YE9gR3HA?PKAL1Yo`XqXr#p&hS@5#|FGDDq+y=c!1}T zvjP~`Ev&$B+WiJP&jzh z`Wz1&hRC0fN2#yKB7K!ufc39^AwOgd$fTOP$#r)9?=<(*S7ZBd+=XvQo~ECleydiJ z=DA~X!9%>`l8Nt;VwV*imoX@4en2dT3edz~RcWh+L^qmhVr`n_ziBJ$f!LwiZTfwU zwt~|+*4MkPhbh#x2;s`v37&o%IvxqmHsW=g?$eLIv>gU1+ilfkhtnhoh0O|Iqsl3) zC!NyI(DAWr*le1N_ibgUg@pJ8Si`u+>t?p09AAb6C)vk_?=?)#cErN__Ado#Ht@&l zS9~UFnv-yM!1`#gR=XZBOCAO9p&<_PD?hn^&c`*3D7+qSfv*ZLPPv)_J4Mwche;>j zuUw@Z3TQTH*0iW6%FLwpveMmvsJ@y{5}9gOt#ppAW^>z&#dbx^>cJWZ%0bd~Z9^=n zu!fp8)&|_|BHzM9jy2jg9un3*(}El}D>*J>##J|J{8O0E^rS>e)t001e{NHv8yd1h z(eYT{ybjuW5ab{UlAh)Iv)p{FaTTw+cP48hlVfc{BS(($O*+L~j$9KeW>=w{`N6|T z>G!^nuK4e9;E#of^?k2cvgCul2N>l<#*DV?SBxym_P`2QH&0+YOOcMXZaiRXrPmO*kSLQ8X)VVy!RzJ>Y^q7Gg``rD7xD6s$KvFUrPY z2v~nGW(k`7SvFQ*A!!?H+?>HYeq4Yy1G@x3ej;pRN6$lvwkO-2(wtc^TIqRYK`5`*U6V z3N!KMW$$zy?C_6%M~=x)jid3c#AQZvY6;k~AZ*WpH9Uqoigj}ja`j2m#2ruC(inv` zb(uTC8i4DCD8%$Jr8`~r1~a|oqQP^5q7CHK;M7$I(lgl=fIgbP8aSJy6k*7QgwjY2vO}ju~qM#Dw)L-kZT>o=^<(;nzF(S_2gZ3z?{W$c7kh zi>WUt`ngH4#w*$$j2jJ_Q1P5CX+|}-DzTbtZ)7#%<{Mj7k4ijSbJFEMTLkj3e}KkQ@UVHySiy?eqO7?AeOT8=7@84Q+OcV0@zj zR%=4VbG9UUW`5Y-G_cl#bQ0^;kD%!bYSA#F)2oI>DEIhHhdS)?aVHpEsGr8g84& zfEiQkl;wgoEUv&;hhn`J>=5fP#9swr*NAmCh+$kiHDiB;bU^T}3k+x{_Y*FFj_^Y2 z7RG5|AjY~Gsl+Z6y_DP}RWnlPfocx#l#Ihz2Ls3EGOz4cSoba43ao__MFTbv-h`r? zZoRIszJHNG_!{Xxg5TeM6d16LL4xFAQ0J3~R2+^sKBH;2gj;7b%JXLo>zNm|u~uhL z2e9sC(=&#(9!`Qad~LRAWf;7bOOQ4o#V6Hw-Cu6}T}B5#$4^+VzP4C-zwsDRh<0+` zbe&kkC9|W{rHEy$;pl&nInpqxJ~~Fv%nt{#K42!D>!7V;P1eInybD-2$sewpt?r>Y zK@6X0`R?s!56?4N+G0q*VyyQjb%+vcxJ24kmPu`9WE;ViQwuheO#PgqsbX%SnGZBj zdJtRB;c8q@U>z?&qG^gHGeGkztebt~;TcM*!Te3g(TRv(pp(u~VIMlUr>rcLrkxt6#Fzh{NXk4${pw=H#U=3H)ZW8OV zluRGYl{GiZi2n5tY`%cMOy4-Q$z+NQV9-u3yfF*wIM{%B^{o#gsB-u?v{+VO?V$35 zwK`v~u)cByWVzC*99~yep}F;-775l*wru9!D!wx$jW}*r?BOR6X$;G5Jk>K`Al~`+dNAr9i2$Ui;g~u`uB`8AGET+@6TF zH;!1|FV^stvxIg0skJg+LzOiVw%&RUH{8A|(kT784I&K2N{KMJP@Nwute+A0N zS0EgF+9qx_l6bsC_B3Tf$`t!{IQwuV&D^}l=hal`4>cXO4Pl7CU##zQtX*h=I%fkN?&i0s&gpGsk~@NR+2?p#O?HF+`3SvRx6MLm*BpzR{vvEC!HS8HM*rs%> zQ5Bo+idRUBSeti_b#LW{9a}Y^g^eJ-L##I*4lumwc&>wKD4i;5-2+g_`FVCJjzXDi zMp4eyZbccD?U9){2v^KHcmt#GXdupb41=fE# z;%d*DUP260k%MUO;c&KKMih?~-xr3XAy=P8YCq2~o>e2;e*Z0}HB7x8xf<)v5Vg&e z-Ez+Czt-4YcQ=gn7POXFUv~qD()5|kb7YJ|@KpGYjIR%lX>K3}Q#~GGUN_mY#xzGo zrq(%G(t7Y`lW=hJj8Iq)`)^R8Wf{6*gTBm_bij@}WO7}%oZb8&msO|$E}JE+;hkbR zu08!c*fZ-zB2#QER$pU#8^N*qJBYzS+pfp2)WC1mrGo2^j!Z-8WYI4&PX@gShnZ$2 ztRIFwa>t)|@Y65Em^T<$uk+GkiF=09u zL1zEyh<`1UAl7hs3a26XmH2)*+q46gEDL|X@n}mH5)L*iAI&7J@B1A>K^Hp65XFOi zJBFkK`?)v!E8Q)?H$IYP3Aptzfi?Vu3$-de8S^ELSB_a> zpxl>pIGdi-D9*Dbvm4m!`%g#QoaqCXm`In^9G^)7qvYvCj&*ocGvP4Pkc2gkC{XC= zh?jUIN^a9o-DKmS#3) znA=B+tVUBUOPeTgZsJoPHEbTj!=Vv}xwB2e8ifsnaL}(L5K-JpMICWQj8$mQCPN-e zLcq&rCWr>C;Y$x0*G~m&FZ7p)H=j5y7Mj}(84;WuB)Y6di&~a8O|?^nUnk914~AB{ zh{K4(E0fasH45u#s^+F8+Rz~^7X%%jfn`#XC?VC@F;e};UV(fH0JMis>1np7f^}A^ zDbA7JY^*kq%?U>7qt*pGGF9bt)zN9AB+g6z+D2t&KOnkK7h@e62)HoTc&sPsp+k7q z7A9LH;(~e627ZXuhlUZJCDumO&6BvC>VvE7VLLV_DAq^EqHiJY9|hKG5(KMp&OHTd zZXQO#2R4=jtYySe?g6k?vwS2SPr#Ffbh!k4+Qd329hoe~#V)GZz)RtCuYom<;Dc1U z6L0pvQ50OWNNY`Ol*D;SHBS$~fgBKLI+4q;N}XrJu3T?Ptpro6XkfShfAbW zSVxy$6zl(#8Hf#O2DX9rarwB`ZpvgW%9y6s$wJr3vt0wwxs$N=%GeU?Fo(yzm;q(> z&)u?j{;uK4Lb@^r%;d^^TtACgOOI0aoGrQer%Y52wlsraZGrr158nZg;k{uE*SLHz zegI=2DL0aM`xELWk8uuniY)j&6%<%Q^+WgP@PSjCNDijf9!3efj9i&NNBZQQV7>k> zv$JP=sz~~q1M;i=cdGuqVZAegHCp5KxQ5KE5V6+Oy1|&KihmJmW$Nlc_Br7Lh@U!v@=m> zkr1r!KvjN= zZn|--Z)KSPO)Trl`moUD6j?)!xT}oCeK(-s380-q#=l%WbC@J>ehMa241pI`(0D2s z$`2pe$3+tczrlGr1~$mW0!VC@ogH1_`-@l(jq7l;h9%z0)BzM+boGy;I*Tkfu?hs!n=N7cDQubXucYXj=99~agEFzSo}l!y6`J@&+*JwWb_uZ5x95X3sl z9CvsIKe`a#QV#{7VQ0?aRxXu;A}U&S>x*EWo#{#63$0T}8Q1uvFnm`?)l`m>7A%U5 zk~ljV#&wv8>8lL`vf2e(WP=RZAP&BcH!Lwb5K&gNsBJ)umq(DAMD);kHom)_KZl12%1zro1S<|uP0HBfCvi-W)4*B{u^ zOQl zsZ9n%8}I}NhIp^4WWSUwgG*yr;@EMkO_aAJ;XvRZ4447y z0r2US706V0dGL+gbFr>|KA*JUWwUN$f~9d_HL-TYwXp{}V3NHsb+z}AgLW(8J{2bl zARSc2`@|ZJindtDtnrpakHzN;azZpQM}x9A-IEuiI$z+sN-8;kKZbl<2Pp838&rAr z!<9N;5Q`L=l=NC_^em5Mbqqb#nEX~sGFBX-O(1(jn^!GZYg=LgRE-G zM-9<1NslkFp1vgAbECw(Cf2OwRq^fVhQ=d{^zTZ=A~sASr$tL4#!EIrT1K8WTIB3B z&M5;^2PYxcuX53+=H_Ajtoz9*)?gHv70+HQTXYlRd|XGY&)f>uiPs=vvNLT@+eCpE zR8sJ|;^?$V0vDvvF$2@Hlc40N-iO_$9p+;F!8q1##@Sbu;+dvS#?SU=HM zd}mv6GS+a;HH!7dt}R&7bGyVS7ZN$vyHH3EEeYXyW3_d~E5so<>Cwe5Je$LhnlNkQ z4eMMO`3Bb6>jP>{?GmF-I|~Z&!t}U?_pSW9$XJ|x(UXNW)=b{S`f?Xjvda%}g*b%x zWOT6$e?(YAPaD|U0L8kyf=kcKLqCqS$rOxcN?FPU5D$iBFKhH#(MM5`re1|;ZsPGK69L3%MFc#G1Eh8kbA01WgwvA znJh9&pVnSwDvSNq>U$K#-H9754e*l5XOV1`z8^z6?B`(I>3Kl_L8gY;Q25piZ-n6>YvD#ff`rz89lC5 z6})eJiTz7x2mE%0%sT;VcRjQupb3VI#)E5-98s1eM$xkpYQ45csEsWB=xQXZEVOn0 z*DwBhr$z~2{WU2HYh#+HL!nx)71r<_foR;B6FquXRE4hW{#^2zF1##YkeY(c>W4?dIv3XYuj{q( z3G0XE2W2#EO#j?{*R83kt`K&+*?YH(ff!dX7OkZyH9B$~|$!^Tyev?QFJ z7l|x*cI4CfwV$o5L74x#UK1p&_w%s^-?=CRx6~mwd{Un!=y9#E?mYZmD3Et83&+fZ zkzB3O5Orfhs!3;-h(s1VJ31HE`DHI{^yygRlZB2%zHHn&MXb5?+0elYXT|+8ZPqF2 z0o@xc>Nu&f0^wY){ zaS&_X>t|Twn-1S-L(Z4((a(4eG1YCHGPJ9$O=Z+zc_<6lRbZ!u!X1d#3d|yMv##*-%UAFdOS% zfg@d%;yV8lGS9HUI6UfrSo2A2=FShhXZqrsW;r$8V{1H1x$ff-Z_1T5EHkc2Ik(WD z`Xd5-QAoJlTwP7N8U!XYA|EcCJ#Vtsg-*`0uxbUnESR0)mIH+PatvVom*IO+`Ox_Q zKgwv4=j?%8=2`5ASJPVLTGHt!2>aKLeF?vUU3~=`?2X7?=UxM>|9gIM zvlkYO;rpuT%ig-;^z?w;SN8lLn(38-*O$B_o@9gaC>k<5oNZi#^>~fJRjn||mf7PP zgcvK5Hh%qy!{>A1fT8$UJkH_!Uy~9`_2B?xdh>CdXjR1-lB6tQ{V*+(+n@K)X_o0) z!xEQ93Tr#9;b1LYPVyC5pG>N-Zk$31zruRE!9rN~f>YxF52UnShruJf7_avZ-q$98 z=$ez$L79lY?p{ww^zmZV`^S2h)@wUq@|-Gzpo#|)!+^yhR9H{Ey)aIUPp-Cf7o!Im zBy}#<|FH56bCO|4rvlcV`Dx2ICJXi&;^5jdV@!w2P4MR8qk8|AJ*4A6{ea5r7A2GF zYoz0EB~24GeEAdINn0E;vDgdIxDJnVY6I8%@4M|87fB^M?6y3Yd@y#S+<-3-Yu3wfB~5baqLjjVk-nNZ^!93|3dLkojWt+Z3!)NufG>pgL-;{1tq>N=3as&YGkyvi zYb5|6-I34Oh={S6Oo>~8&DaAlJ@^8#4&;%3OzQk{@Y+$~d{~FxE)Ye_LowM_W8Jql zbHuu~EMWs!zk)P*%wb^@>j5=jt%UXdi|%Hq%#rF-;sBmy5u35!I-+vKnmquiGX;Zf zJtFL++vT1*!m8kb%DLRD(XcwTJcJ)#k75lg`z@TJk$h1K@oN7M-IKmDM^PM|B&=bA4q@{-VZD-kjML~LSZu5~ zHGyqCCZutFs#`{|Rz}flFtdgZqvJZ>knA7e5-Bhd*5uVBGy@PxBtqne|b5qOUbM4 zbFqpRX+5s1Nk=G;i;ec_{51478F{&k?ieO)4wQ5>70)5tGu!M>B;88&1ZYrLG2O*#eZ!Yq55ojN-L z=LsC8?F$X)*n*s`&n?L->GGi~%Q(+i;|td|STuq4#)oljfh>i+_uY3F!J01IeCCrX zO1+3!ca92%q#WGfsq8EV_H^#r!#Tiu6>bvIkU7N^R+fwCa})AP!rGQ)n1_p^j5S_G zrHA@y>(?CDA8vf;vB;Ui;P1NsDY-jUoSwo)eNqn8>LFRRF$6cb)76RugZh^TbY8%^ zG+hMGjb(bs>4(guSSLfEzi)4p;VyN=dKa!i8k97Nbs=il-gG~|9M&K2VrxQTUXMRn>D>v+kyXy4b1_3^POK9M41q_*K2}0vvlXoIm5@)d zsz*sg-WO}1jO!$eL=D^P?q7={DmmK$O|gYK{hREdC|>3z;_<&L-u`Xt&ehWY85=Bw-ITExt zvv271Ajwn_ArWjWr)d|}8u90{7@fC5C zIj-S7NL26PsDjz9yY(+s!P$~@`e$zz$y-J}E!yN>otq0D1)!#-AFiE+wPiUkYI*BV zq>}2^zx9D8$J${b4s{&@)9$b$UP!|cOlGZGc7OsJY2@&v3i zZp>T()?>GpE8;~32AgF2MLg#uCjDr`qTtzto}6}yJvG*VQW%WMB2jQHi4>PuOO4sv z@GguV#PAv(<_-rt^4CZ|=xeL5mAo$+YEl!wNz zjn1fIQWWZ69z4sG8FNy_WM#x!M8X%{@YQZvh;@^q^2*-R;DsGo#2N@za2KoV{03=9 zu!f)H-ay?20-AE4y_WO>N+v|2{^h|=NL*G`WBq!Kzf8_Tnms<4Exq?)eK8=(MXuHU zN62`Z`Ny!ngD-wv1Z&)f1Jj9eOV)08_iC@wWy~eSI=ly(SIbQ zwPV3I2Sd}?ql{=^-B;=b>+u(E)VkNd3`U|b7pq@(IHV12y~eSIQGFL#&X<6;I>h>G zIMyL_Lsfp>8y_IpRF0if;FL+HB_q~RSmw7TRioY#T1omJCC=`KND`mQ<(YP371*1^yJ38E=jCheKsSTBR2#4p&ZSqvxW^ zfOS}n0qZzlMuL!lHz*Y)=g2bF-TIzpmqH|5)U{dBBf)yiN13g&GBwua#c)7AjcY$k zC=tD+BguD>D`4GOESSLh)!6T4qoAV_d|ME%_~S}a1b)Ujm98JhdVLYBdrR%yRl{0g z?UE}FrG82TZLFzk0_zK1IAg4z)Gz9RWgNZ+VndtOxP`-o{ZZ`AE`s$yEiCVQAo6Kk zJ9NU5a2(dxtx0x?+BU5;1a6uBq@;j}U9jf&c0N9=U1{{Pyqd%JJ6e~AGmYzD2g$e5 zjXZ}_-Nd+l5*e1Y<^Xj#gN9S=tzVa<@YDZ~GKICgA*83iA1O{wnA)?4O5oG3Y7Td& znXnM+yQSJtJ}d#7{}33BOrwyUz1jT*3<_`>SC<12jNu6bEbY> z`2^ONdJ2i!029jaMQTzg!^`BdybNmc;o7rA%dxiLJ{xsc>rSkhmrz&_p$~n3Zmeme zBX+9g2V6cjt~-B`iz(41y>?+J1xLvA^=PmL&kbT!wEg%5UDrZ%JzhicAZQZnKVGaU z4D08DHQn_HLZ-03&{Ifaz0p%+C(w_6d!}WF zHwll>gpK42!CFy0>C_-s<(PcYJu6DinuXi8z7!bW+oDEzNpo7>G(0<5WKYvqardmv z<1Z>b>`_1G0v$~&g)QuO2wr_wozLR)X5(1*m&F>MP=TiAp_d}?!x<+|rNn5L&Pbo# z3NgUrEjJIANr5)TDvRr6@uJb3V4#iUCNHGi6xPP7$-cpRVo?L@;jQ%8;Zb1yZ~-f1 zbLR1v*dBa%4AySk_W|qrEn?H-`pOnJoyHX$Qv+C+CZ{VA z?-1+pbFQ^L_k|2bGDHom-3?Rx9%C)oIyjdjtcM2JcJg`ciMNU4l8|{>WuA;aTL?Qu z2R{k8Txeiz9~;&to&%oG4*^<~*VA0w#JU3PxiVl9>y1~GS#k>N?m|E5VgqWd;|rYd z*~9bCo}||VSI;|c@hv0}-muAMi3Ze7OM{`Mwa0uBKCV_|ZNenh<2F9&{>qKkUgjwz zQFjRI(LII;I4U-US0}Su{#mPb^if(h(|{_&bxi6=J?4v0e~D3p51!Kk=cb=@|DzkF zy}Qg)NUX2M`X}+CENx)?s9`5mn8K@*Sy{r)igk}Fs>OiVG&@hIs=lf_q%=MfstSn z|LoM0?k~sLF7y-<8&~&EXb{)YxR%W9#>^pXcy=6b`A`$Bu5+Z%p&<)=qJ&E-Ww@`f zhJrrA4<~Cj@y||;{Z5kvT<9qzHV&{Z%uHXQBCKQE3bK>3s>X6 z!=oGNEq0f{`a(}3MXYs;sc`UuBYMB8mdaCNGlpxcobFGY+Y-c976)vJsWrok7K%v? zh|o>vGtu`s0%g&(^+{l7RItdHHy~i4*3ttYy7uOYt_XX3Pgf z>H5l%Sbx~vCM(L+%3ks*q^TbvLTez{(x5Zs4N0DPxCqwJkF!BL)W*PLPio}jyIFxI zJrQ~&)>rm++<}*U3W>k<(NzCPuns7kd0Yc-PB*%NwacCsGVmldSmNV-%1dAk7tXRC zs4YA_J@tWYoaY|FxF#zAnaQiui#?&Y@39o zj{|F%N5K&A{6(=g71q_lSz2u z2G3s<>-t(sg*Cb3Aw3aBpEY|59|c$xrm=>nkQPZh8*w@ zH}F(j9x4nq*2Z#UZYIAIpIRJK(^zjV`*dNnqE1lbU0r^1iOJnMnX`nozcALT`@XQE z!a6KzuyKIUgFO^(mTsn|v0mF}EcjhV)O>pZt)}qnR2I~Om%)mQj_dB#pA|+_Schr; zp3Z=u%h}lTx<`h}mMU-?%PwU?<1*9oX~mrxMgRyenvg$?+-!TR}-8&F~0Q~fS zYOp7qDLgN>;uY2dSqyiz_ii1rzFn&Q0M>(BD)3bLm0h7u1Fd`CSZ~3GfOXZV{;XKv zgwqaC7ea+~D1Lx0;n!Bi^=)O z&S>3>;+lAgHFt%8wG*sUn`Wl2u5YI(%~a(@>K+l+F5vm$%etZG#rj#XvW#GjU39zh zH?=wQN)BLs*^`ZyiR+GDgNiHI8AndiWYA;tg7w6PSg%}?fT{CheMR@Nl2PR*DO^RQ z`fc}0u-+6lPr6g_dE(KUW2W{Au-}Bz=q4UH3>;2oyW4(3?O=!3)+^uT2o%!F2+S%F1 zh&6TG0opvf6$=Or$ekDNySIDBx?0N4JFeGW&C+0;E!v|-z3(=^Ubwc!dkc>bYui1= zref=hCZ8p1<^c^<+joZb3VutZL)lP;^{!igcNEqr-&|;}EbX0}-`MU?kQQ5S=Q1sz zgZ9o0+wL#nc|MxMFFdZhU50hFb}6g@=c{hx7c{tAS#l<{+Q9!3&P&q*)@zGOz%Gh0 zea3+8ofl{~{BE#*fvt_98n+5-!0O3**}EJO>xUj&gL2O3%9BOG!#693Qot^Y@tK2( zE-d?~gqntXO^r-#a zjO(imYwBdW={eR=bFFI+r5`WW_$mjF=D&BW9a_OymqYEm`*2u-d)4neD%L?`?RCYh z^drW4c<3Cq;k{#R!H8iW&aW?w^~Rcnb+t9iuBugo9(^?#0PFNL%cGjZJHy)taPwpn zj;vHpP3~=`P(lB0uwFYgbnAwx%KYa+HEE-Su$J=2g|%!ShR1+4oaNJXvkQ;wl}~Wi z!#W$+WXW@ZZcfZt2f2?7Yqr0C-`7adt8m`?F0k(I(q+)b9y@ge{@LGhtl<_p`SlN2 zH|KDgF8BMd=z4f@Qowt&vwcyjPZvqcDFo&@qwK4y4-RemIO&^5jdk~)?{is$ZXLGk z5v;-guCMP&9dvz@;90tGR&Bn{g7v^yo2L5rUN|i8!ZU2vV?+&?IvHNJHi`8Xus)ZO z(EwjJ!o{o1J)P0%uwQ zI5PJL?&bO(4aZ!p9sR%_#xuJ|ur3>NTNWIbf8a|Vt>ySkSfdz!oOQpWT=TKMh8DsD zBkX;c1e@WuS-P|kUvJm%eH#pg_1mzdEECV;8gIt?Wt_j`)N`@6^ibE;Rs$2)%Km`0xNjs5m%}%^-Um-!7V93c#w%NRIkpbTL|a!L zEmx67{sHT0tikmG>#N^9?1%S^wF$O<9HwIF0kdPldicY*Zi2q; zRt}x{`szohhs0&a_0YVCf(BsVdteivDi3rc$3I}*gg6#PtT%u)E|c;ACQ$tH`~4?y zgKK~(b?t6P9K5V}8tZULZ6B}eER&5_X=oq*hjAU@%@T0y!=g)HBi87t4dp8Z#V z^?v{3{)cZo6`y*T#yZ^ZJZ@taYz|n%CgfjK`2X2^pB~w9Y{5^_(YR5I@{KaQxdZ21 z)<;NS7LyN?bJgF#Um*vxHH>Tw;K_&1ccpd%E-#GNTQ44_zrp~sd4L~WEEF)cvEAFZ zXrtJuMQt8lN23=Njm}E>98#1>iKM6qDI|psac>57`2YMwivL703#s=4mNawJ%g5cz zUOpyE)+ozhBXP;P9L=EgEE8r86%&l)bxJB#y$<#NPKkK#VVKlg=bvL)k<;CQne`fr zmsPBP>E1KcUk7RMd97HVTq`Tq#mYKok*r@}DjZGvMF;C5m;TQD!y;IpTq`wexWUDl z`CL};Xx8f74E7Cd0>>w%vkixO?ViEztCKKmwFmTE*7(#HeKWRb|B|mIyaAc^q z2vf4&{Ry^~1?zP_gj#S-Ghos`L5>6NVJBc+@Qo}**yFXivIx%TrK;Cp_p;8@fi&2` zI(bl;I1Pqm-TLzGX>lzo6hn{^CV!{e@bAE{pY>2hPcey*$qV8aq!Rqb77hJ{IY=KY21RrnoGEGkVF(@%693j#WaheSkG9 zif;?tBK~6@lVXe?*2P*))W$@$C_ik})`kJQ7{e87dAJ4MeB-j-cd-tAEPPRP?aZ>% zdz^Me&MOuJ8vJlI$oh!0P2;ofcfzQ%V2c!>5`M9h{EbyG82G(N4{Kc{s8;-ers%*i}j7#|C3X_ z9s~AVSSJEYSF+}s^+%9p!;iTzsTG=;us)Qm)gDgRex^|17=c(1bz9Dc^&^yM_oANf zuwzt~Z}WXltcM~kcWR2^Vr#_|+c$#`+(Fn~`OW!P&HC$HvWA&c+(!x*WX{mQZ0hwL z6k`7Z4K^CxhGX^4s=bBz8Rev)Gpg6P__2rA-=!heW89mwsn^Jwscn5wuXn1fRIi6* zJ{#7!_`x>c%4+?pS>sOPjN0&lfX{|CVokTdm8@ShYdpjdSeGUrsLX4P23YeE%g!{X zj$a|^rrR&1zlt^HEUSX%BW83JQO||-7KT-?JKU>)tD5EWdKCmNSIBG@_4<1_qw~ z?dRXVyiMeyW=^a}VO<{CJxbg#V(wzB-I4YGgRC=<5bKd}%wlgLX5#1nck({j{svgX zD#%EMU3s*)=rEdLKrY7M#${m5lI^d-JFy-O$cPcM7|`HHvp#ITA=V@E7&Gcv*0K%% zU6LL*zX#UzydIOuSaCdxU9+Pc|8`85#xjKUL6YnzU zheKzaSdR;3q}Zcb=Ro+ca7W5pSi+_@d?XyBMjOrg3*h{3@ICvtP{WD!s8B|VJeqX@ zbK)ts-fv(Dn^=#8W7KH-ur9vLHgBu5bH~8e7f{bV2#I-QX4)UvXfKp#ahT@ zV4jp%pRDi+1NLW~66*W81B^=ZQPXRY!{tf%31PO8NE9PKSDEU{h| zuXA$SpEaYt**OZIFl>L;)DNE!*I7xQ!W!S%q`ui%YM&%)pS z{JcFQ)@Q4Ik_dXS<{2KTK&&Srb$+7#SQp4T#d?jWlag7M22N$omQ_s3Eoh)O>pZ~^ ze#;iXM7OVhxKtalF9Td}mluPnd4Si|RfV7oB1;bQM%EjOaA zOn*x%Zg18HKWn);X-S1YKd<-aM{&6rda;IgHR1IhU%i&|X_w3SEK{iR}k zlMw3?X9n{Pi!r@eBkCg0?%k}%{V>TqHJUA{bJmM>hOBvZ=VrZI-}4%dgj!JNtQTuU z4XppOn{~3NiG^X>33lDAll1RBtoQja3S3Yuco^?uO#gcAXT6w050_CqWP35D7wZ(7 z@Yf{$yX5X+F$Eksqe~iKpThb-C3j+E6)q-vJOykirZ?-CB>gq9uJA5tpxKLcR^Zx4 zy35~*B)O}~yJpLFK@(@aSOaR9J4iP<(!E_X;=1ft${LO%m8|Q6l5I&EV1O^yNY;lW zT~hfdueAnPENJjovd-$zWLuI3da+IcxJZcgk^mcdJ%x2{geU8AG|-DRdge*Sms32- zsiA>htl{g5#M)5a!mPbn=gERblna9~a&~*M#%+Za>vtpPjG`Y}1ASP-^r&Q=%S?PW zbXF+7ku}hd^?d^KqYGNu8CiJ?i@qOg*=`f-g)!FI?Z+BJ(QEcvcT4;2!TMEgnIzUr zW32PrhqVf`SyUP?%dI!-MZIx+U98S6O>frs@*CLaCQIQb&_Hk2PoGYZOG?8}-H>mk%WNgTac|A43dP`#c6)BuV0WDN_O#Cia=PZC8x)|f?N zJqf4*679trT5w`LfYK+5f>=+a_z99F))Odwq9lp+M2epvSz7ZX7*)-TCh8gnfMZ7ZX_SRWJi4>Xt3(&17BJz1x;rnwZd?R@rP4d>1l zRIl4gT!^F>YdDLPST6*uBb&Wg!x>1#+M&dSh)!Vrej!DpY&JB|k2SuK`zf(*=x`~Q z{aE9t$B6Y(*f#Uom-P#=ZmMuG*Zo-U;N6d^UVpxrLQ+Ph2Kur-*5m63QsJ^R(2w;V zKF?LHbJ00x%R=4fEIT+)ni=l`Y>4%hvldmo-joL;Ev&#R&Tg+Z9Hzr-)(M?+wy^uA zFKb@a>qPD#URZHgo!x${8JrVe_08y;Yzw<{`mx@d?{g9Bt7g45S*Hst>gu!GuU=z+ ztZKtqdGPS+b+{A-^kn^Pu-?<4YblgfK6|o$XRzK8>+5B$2Gms>z9rVHVZHeaJ+K!A zyH6Y5sMiUecSdG88aRh_MveG#KtoRZv))(VL{5qIYFIN`)m#m0I!Sy{s849a>+;cV zg<2O&u=ROfQ}qW(PgVND;t_Umy8F8x{8{qQA}kMdY+pg(I?jk)Sr$hHIx^km`77@$HlMAA^`4eC zSHt@4&Ekr>`V61ih9|^&araIS)=a&=RnCzT>#Jt{B1=cC7YDh_aG!c@vZnWYmPh<# z*7QE^;$WZ3I-$9g>t+3tl&@RU`t{-}m}}vpzt*77&V9Yt=38H=4Eh?+baJ8L?g*W1Zo6)@f1TnEL0`hHKp| z?Khe=FIhkSk4q~e<+s#8EbCYJu8XYK#Coy!PAqHu%z1$IUMyAv>&bX5>l|6*;>TnC zyne3LByWTIl5BI-Krhy~=geUJ`V(EEjl2!?75&ar1HD+|fhjfX&FfB=X$RlMCNp;p z#IlA-lmb4e39PGr_~yTE;aZwKu`V?+=bw1ifErJ`s#$OIEnG{(h;^xnIsf!yEiBf_ z2Ck(^iFK)oIsZhmhQ~41Ymw{^RX==7tmjO&owsP#8)SX7Stp{5km_|?v-6Xj$NHgS zt9UwFV+tza(2#ual(ehg)qpoi|2KqTv9vMaz?eY4H+gDw@Yrai=38MFQE$NFIQ!;|7k7YkU^16wO&w!hJ= z_ka@`YGZs2c3rFt+|(ODT0+0`(*OfX5e6zW`r_u=M^bgovb-pXc@+0T$A-|4Zz&h*>N-?U`VOk2sOU;u$FUb^uTVY_Pk4&&&bb*77XKmn;E-N}z>Cg&Qm?W#vA9(W`CeHo=^tE%$kI`Jp;5SkVG^S$>n}%~a%5G;t zu@(uL!8DLf&l+dG+f3!26^DGVlCLkKiCKRQ^%`q1Ji8l4t#h^I4R3TAuYrkKZ-F%f z){c%iNNHnAJje*287Oq<%EKVe2!qLPxSA;Sv3AHK3PoO=8pr_3(7U==1ZeOAth257 zC>OgNgDw?`Gt(qINdpYM{>x4N10IqvpL(oPL9WIfGXN}*;)F$11e)mAzSSH#B9YQSIvH!d_Hjtw5sZsy0BYgDjVQzzWq78%9TFOIT?935+?|MZ zo+{SIPl@%_vt}jho6D4xQh}AOiTY-_W=)Ul3*Ck@V11#IQZm!CrZLy0?m}3>p12Js z))!1=@0;z=FUUo+mW$`K-~WQFH$%Vp8qGS9b${TV;RQ8ENhRm8-g8pnax@UnI>UpRo9kODUvf5_`r#LWG*BXutVJuivR=33B$%xRB3biR0aUuIQ+mMXD6 zO>avK6~|h%i$?Xjt&^Eci1o|?4Vb++*1VmfoDZkxbz3p>mBg_Yb^$WDB-XZ07I1Y6 z>kSU8<(ekd>jfaLvUm#XE$$wbZ)pm}Vlr?Jklh;XtUvA%xRvVZww)tl-PXyqO5#|HaPe=F$FK)-or4CV zS%>CBZxS(wvQQqv8i;2d!1kYk!eL8_YA=8VnCYpVijO91G0P6$Q+_CWWikDdTQrDtAUxM{9{JdVY{uY#ZJhz0O zo?iyRyUnqB!{hXnDCF51z~c>q1EO#WtQ)jUfEG8xdc25him*;kiDB?gbH>edde$gp zQv(@-Y6|1883yk(G~$Za=!iZu1jSEIfMM`X6J)(RoSZrZ?4^MWK~=NWl_fR~hQT{c zkoEqM+{7kF{+t?k%W|i@AP!ddISZls_8_{)dH1fha zIirV;=g4mR`X zhoM>XcD5m5p`?XyIJX0k#H#@~kzKN`RO(n3WPSU9C&C^!9YZ8D6HJEh`eTMD?Z6t7$%-%G!Oa~WNEEFBfDpr4 zQPTZzh&?TieRk$UGTp|AzREweJCHy12>FUvVzQi|fmBuKj(QEX3ylE-9-kLs4ebs* zV}LlAKNIT{2-iWfq7ZNu$67wwRoG4OBHzM@?4L1Y)n$z6s|+gExGToG)hc(g#A^Ul zD8P4b*7z+Y2)Mx(Ho`DSr_;EiQhi6ox<_9yB1`M@0ssV*x<6}BKd=E57`)T4PSD`N z&$c_3M&1`O6b z5JZl7TC8E*1$B<83H3l|aAIM~$~AYz0ZoVcST6VxE)OJ&)PTV{4+N2{+YfYxZ9*E; z5szYRWuTmudypS?Den|v`Jjt_8qlnvB@PAju-+l-EF4rt8^hWjyKRLG`GDuw!NWqD zM&D3HO@AXbfUI-$o3&eLBMQmdq3J!Btl@8mVG360@8Q{sqhkG(;0mfVjvQEF=pv+n ziuEoJd6Rv!Qq!i-Jp{^Po})~`3jJ+>tlIE9VjV&g?^dx62a&9W@&oT*SO!=(Fj>y( zqCe|0l7|FX%jDrcY4;c$Ns-8-ffHD>hQ^_NZ%7-uEYNpdSYhLDJy zxoO2rf>;eifx^zwYg$%bu)@5k(QAj><;%P)y^~o#C66g$E)DNWh}?Y|*h8J^Zh&!s zd(hXIDR2i zmr=1b!?NPHRzP>{Z-%1lwgytrV-)K;C@Wd#ysYccsBiMx-ED(VUB*puj~l}c(>=U% zXMm(BXtAgE7_iQY*E^UnQz5Zq&bw3zp}LHV^?mYnky!zI-kDwbT9G^I@g&xA68&Cj zisgf_cI6}e?vFS3Mc{wSEN*9|Z~>#A-Ls>`^dNdNFs&!ngb{5d0+ zkOpuj#Zj;2va~N8ldMbEt=!a-BtLV+VnqO%q` zU)~k}6FZ-^bD}lF99o9!wCT5(1{i8l*U>6us^(YR6C`kY;I^#H5MWz|{+N7P1$SCx zN|;)}=C4{Ztu87`&5O*k)rVRZ-g3&_9FT+SX3^&3t zT(oAbjv2%t3}0l8*FcKeZ?Y~sZ2D2$hz(gACRL%+kh07L^iJmn9`%|Zq8lUF3INC1%GJB?&bCNWdPRZ z!vyMe)}mYr8abfL7!9OKdAa3R&aaeOwOx|!uL>?K&+v4Yem1WIur@1f%FTR~*>UHp zks-QtY9Ld}1159GOgfGZUhLh?zpYYNXV`=P%1u(HNHxR6PG${^}ChBaJ{%$i5r$E*4zw~ z`frQe^hfq64fJ8n;EsUdHQ;U<$$Hal0~)>tWz8Fr(`B~?G6g%PUZ>bn!&n+{H%%&^ zpRH+i+glWCVTMUn=3IX*e`Xl6do_?LMaHqdOOhw~uNfVKyP(==*mTs_%*CuJvoex4 zUF&PhpH6{(gBr+``fSy?`{C*F9nOz#Y`-#gwO`>wxOdEIQhuAfX>^XWNPpTt{RTBq zs?*|UPLUSe2!4~m$tC3r@P=4-#BZK0Ve^9d$<;2gti!ieGika;4Y*jF)!JeW8&3}9 zjHs=>o$Q=_>UfeH{-Ri049m>bcS3EmCtZwG$m-QVs?=vyC$;uf>XjQoCF}QwKwEbl zs(kWOmy`Aa{r57);E%;H3wX`zh{+bGfmEr}&02t~S*1Yoh2vK;+GYi=qZSUx)kRvUr)k3J1=LMoFAv$iJ0vVdQK`6JUu z17&;NVyzIvUavnGvB8Ylv(<~M-EcDPlOb5=b)330;Uw?k6W;A@0wL=3XYi@eW07tF_yW%U;NtpY>%^-3?lOtk*+a&@J*#|>#jgPe zYZz45mFo^ytPO+p*JUD9&qC-bw>qM*|Jt7`J0x>xK&^Asl?l9TxZ&>x4z@ClhxH~x z^MA#+=Mr!YXLi za>bqI&tgQ#(mepnjY9;b-P?MYl#|sSjV2cF=oJVE_}mXaU}99 zEN-XDKMU7W?J9HtVy!hX*l%i#uwT{(Xw}#FZ{hqD?VFm@(P-T^2+}noZ3dv6U^Zc?7cBM11 z_ULZ}vHe5_)=*`YLDmWWcNlocTVpkcmq^yt3VGUbZ#a@5Q9liAbJPC>tabWb_lEXo zW|!{(crWjaP{qj(~hJhMB&O@e)ovy~bjHJuI_7_T%+yWXXiodm7f%RuvfaB{# z=qvjd_L^Daa@$p2b+OZ|MHx1{er>F=JJKRiw+3MC`tK}Xz`8Q>Y%5V+HZAu}LF2kF zYqbQY?|}BNXv9yK{WJi}UVm?eFc-b#*KvjAY+ek-TKD@Mht68S{W&pnMRuPCfc1a2 z+%}@V+@T%+yG`|6cRR<q3;P#awP810JNLJ_HwK*U0)8zTIZmv zZ$_-O?oa#OwKn^2^E#&E-IJF!JBr$))5hG@vn|b4aANIL<6uH{@QE4ShSygg?_RzA z@Z!&+_UN=lv*s$ebwp45j;Q%mmtSGbGx->3+;dLoJMYAr4eO>;kUK`p!!Rlbmgc(n2URZYjT~K=K zVpmj#%MfXG?Y30&YgRVsB31(~*45lbIFc;vEMMz(Lu*O7j4Ex(Z2__F(s*&Q>w;Ig6YDNr4&a_SSZ5#% zEMaYmtdJ>-cO4mE70WKm4|4vq%U8!8*pZvnJA-;#z3#`q3D#?z@!+U9anqqb)&tRsVd3B7v3$v6FYgGHG23MBatdmgR3~mpu z)Y;ge_a?&$3JdoxWA z>hw4V>rT}?p^v+v-sh6F{E&2QRUp=#TtXhOpVgDKe8K*Cc-F_HYpX)27ZEBXxk(MM z6If%wd;D`VXuW<3eK=Ltd}57SKiME_HCXN!1ry-^=6y#X89SyhkikUBoT>qa6ug1A zxzCAVH|gz-&$*P#*fE8HjOa*@oI@H&k%HHQ`D$0g6F#sn&YCweL6?0r(81at6*k{H zzq4{-cqa{Lcvpht9?(FBB)sl{z85-OoOSNaX@o--;peKoAZ!1aD=;sHthZgNVG#R} zChtlx;J$CZ$`tT>olZ!?&pOce!kIOH*R50*8xl0cbq<4c?X2ZYm4D{(onN`gy6f1& zWKOKlyHos%Sd5FDsq!yX-}wuI&*}~LyGxgWS^FEHj(mVK+|}KluG)uW&Ammu^}48j znLnfoI3w2WR}}qayG|F+GM6swqqekvWglF$<(6b%)-P7%{VrH=`$fOFmgyT=bAQ&m zSU>oKN|zb2&WLqzW108OYXB+h^@3Q_;`cr<-~ym-mhywCayNt99RikSKJ^;9X8tay z&hB;pcCdCA{t3l6N80ttrlH4NXY|9N6Us5iD>jZ7e7dzES<7jb&pSL1T(8e#op)sR z+MQ48oi3C088^yx+y&_=y;C{EBL95ep@o6#^%=7v8``T@oWvSWr zabI4$GxSc6v1QDT?@F)lk+sD9Sx4acuujfs6FLgH5NDW5iDkX5$1MB*Wh&PB>3Wsz z(CNXK9}?szBr`O+Cz_@^)1EFtfTMD zz8Sr8|M=#0khM)V`lc||HZ<$F9-)~7vZDr4V9itESH|b26Mn_MzaiHBbv8l>`4&JP zV*OyIDnICB3Zm>ovtIogbd=Uxp0HZ~W0G<0&{kvRgkI*sI)g?AyaoVuA%L|G(ZyOWb4|}0vP`D029UKm z|J7#w6DvxV!zHn{bh3~O?3%$O)TZivce2KUP0#wU5dF?6o5-4nS=-rtkC%_Otow>V zGJ_hpKgsme0I7m#(TUZ*0xfXaRscgIjmW4tJd6I0AlUd%L1gC?1dYw zH&qRH=bl)*^)i1c9-WaxHh1;&ueLd}|Af-%+wj&bfHSisG&F#-W_Y>pAY2ELn6cUK zWf-J0tl_=VC(rVPc=>$ZN7H)%we?@uWW$1n*aYG0sR7uhAfL~y7wcVbMGwz9x*_VR zk?ZvitR-a@P48!*47LBik5-0f-7#F~lev}n1=a$Kn##Xui!u8=#+T`5c-GYfzL^Z! z0~)}+W;wX`WF3gn?KA>w%r==G8qlokZ7E%WKY#~0#_sZHxf5$k9g|$7P_HrJUaUWV z>YZ0&-CJdY2gu5Uq~oV1-b1yH?zC6=CDxTHrm)~-D6VqJF;|H7Pwm{@_I$X@(8StS z;)SnLXuNTX^a$w&U)5=_eok24JFCRHx5|bL@DWB%*fqljx!$VaNTIg$vGyqDLSp%uCV`2)Vb~*Yw$)`ePMA3< zLmEHC+EB&>R-8ytmHBPT!RqPQW&i|ms-!={7ilnu)nV;dx2&LUr#5Y9G|&9>^`q;PyV7-t#NLHa;4eoSLH zL+e~lUTxu)C$iaAl_NW*$e`^FB&l2M^y?QgjDJ`|to`b?T%cadW?Lz&WSv`H%8S%D z$Kvwrm9b$tV{F9QtL>J9RKJko?2w`M@|GVEFkM~M zG}77+(g`Bg4YgkMGLv{!lG5sF!-@4pv5bPdyqy1BB=!L1<*CED~sYSOnss$`!~|A zAKs0k&XzT`;SExrOU+s+cg5PRJYwz9;ZnqJ%6c8eIv=1^Ox;dH{&nA)1LXC}qR_0l zDpw{MxRtkcFMst^2pf{Jii^fvaSV24z0OV6Zsif{IF-)Umu9UpsOD94r@WEr_P5y@ z9-=NssMj=a7Nz;5WL*whO4jbpM#MT!rL*-_ver-N@?q+%DYIog$hd#DgoevlAJ&7+ zS&Yzz53)CEIF-&eroH^=b@hbC7qP*(>-B6|50bIjA{s1XpDNZR+)eQfkUm!Etz>qC zsFdNoG_#vl$HpKxn zcTApKYMC+X+?8LFH8fDN{-W&5et$@dKl@laYkMQU&P#^%aA=cvCcA1689bt42idc# z*MD0sZ0ru(;*Ur75%9sI&!Tn7hUSd%@#y4N=@B;&!Y<&~BtvE0KVG%C#pi(UF7#t`QqAe_k;kkRvOrH^=ePaTEItLa&RfX zjk~nxwP)9qD(dS0rWWfz0Ou|IPZD@)Z$$DAtxYrI@ion+G+~+78E4pb!?HmJe>ph8 zOZQ-43=N-wxI=5xd@6fyO=;h22FZxZZ*yk@G6^AHbFsqPjLL?+p9t zR%YH~!`buGb9C(?H@SL^t5kNaDP+xzHr-IftXXp-qhz%-u+4X7oysdmWW9554kp%> zmKJ5%!Cbgu>bxUskGb>6`-z#6?0{C@FBfa_U2Z)pmHk>5J;3_5_H~AhSf8Q1lY$cK zlhn4zKsIZfBq>jV|G>TFp?d9A&8!`^YKubIh8wJ({j47bDG{~dgQ&4bBsS|Kge*V4 z^*7ub%Y)aYj{~vpqpczQ+N}SQ18WZPJ|`LexXpuG+*3-ddn#-I?`dI}yj~s0|+&|1rcR2ennLD>|^9*mX z7LZ3|4HIU>dY-(_$(55eD}Enf4L8F8W~6#82FTjAM)7%Ow4bP`U5*P}eqp#Y2Ijov|DAiQnh`0JsSN%{7)g+| zp@Ga$cMfg>_m6^UcdckQwR*rwv!Ejcp5!00UhzBi#Y5 zVxa6@Wi(l(=ohTZFl{Dx8xrfQqs>)EO!Ce%DBk}CxbccuUmfeb-X4BPQfR_qyMo+V zO02JrwW`EL1~nPR)lj@AVtsv(%M!^g!}zgl=r<#47;>o{<71Z?k{rYEvGcv)_@&AZ zfEUWJy(QKQM%kHl$y&fu8(Bl87F4f0b+%LwDK?~el3`zLd)WSR>8$gmg1A7w5p|LL zivk!Yo5S{7zVLdTLpjJeH6VvvFA0;ZlYjpA*px52Z{{o|2~h)b-sG6D9|c~0lufx} zougnx!(@vx_@8{lEH6B2sc{%?WwIO}{u_MrW6`Yn!hwvK{S+&fNN~!mGK*#nWg+9% zK!&Wjnnuw+7R?&kC^AhA>`|a*!*knh(X5YlS?CHhu#qqEsKZhk3L(}Fg)IFtm79bl z)@D^ur)qF-2|x3?^l@PL^cdbW3)3e{SL&DHNrmv3MrAkEGX(30PQA&bG5KK)mWqt2 z0jSR}Sq|NAR5YL}b*#qxi$2_k; zZ^YTYRH?|MhWtZqcvIDT+)wtZP`7p)DGIz9rn-({U3vCeh_zQW!#co+d&-A(`*E#0 zY=!WqNUXi8nWF>4*D%%Kx(!v;IN{AVvG%HFjt)#V+*yGpZ)T85v1p2`YhqogVhI)o zO?Z<0I|;Rw-!9gz04E7lDl!K{{%H;%Ps-a>1;X)GlKfsOIY+B$RF_Sdq7m%GdIY7q zqD%!!zxx7VbF`X9vd*|E8o^GiM^LIO%93@CpVAaf52{}Crg-4%kyy)z)4*9>c65sM z*H{R-24a;4S-)>rcgxTD7bCGgo}aTTi$SsGSgL(XJ1|)uJhyNdU5vz<=FOUT6l*1I zv4(Lsu+E!d%&8j`2Rb>os) zHxx3~Wy(V_GpOo;dY$6e7rV`4*vm+)af3Su{&cn&B&$W~Fwosc7U8+fs#M-5onacLOBV)w6LqW@N zK9BWF`K_O`%1dqdS?Y@qyyG2ygY|mWtUC&}K4)UR9_CxoQPz%nJ-|%lNNqUHn>ERv z$NF_UU)BTUtf{PpUw00gw(un%?kQwStUa2UrC6~}ap$nx0BiO7y~7z;d&4=rdqg9( z;Z(1i`rhFLDDET8n=a)w%$q%XoDyQ~)66X8l64C2esE9rU_SiT<1}y9wD!@&wuh!} z11)%nbu&zL&0e8}KiiDdhI@M%XJ>e+5ioe*?vS_elmP0r#|2*Goi%G;iM++Rb_aa# z1Lsq`i<3dtFLSQfG0Uyjj@K$*T8Lx^67R%zko9pJsP$Glfs3))aPP8vATL+#gsky! z9Bjv(Cdiu4nYFJ(&SI`Xm}%BO^_14f`X2nhhtXQ@2^TLOt6mQ<^p7vZ5`5y@9`evD zUuJ!*pCQ0oV9k92qvgapT2*Ixgk#O}(^!9mbmz@_fZ^a-x}95Km@y;PbAvKce&Edx zeJthY?j&H2)M=<*JJm8{p*${y$qagCLVc|9dHn{C-{5DLZmj1u^g78H8rb7Oc0ty@ z*^-hq<3?(W;E8Gr_WiLU2tG|4AMEQ zgX6V0#f-;V#ARS5zT^w`yBteq-Y2+Z)`8p9RKiN^dsK(4*PDZT`J;pN_IyQ+ zSFfpaX3~+b_{cw7AL~Fv2yOVhS?6Y1*KRjh3s1ccv&OaWGtG$gnxC1qs|qfMTdH0Q z&+|IWde&pELR=NBGYg|w=Q%#KJ^k=7>wi8o0}y<~dQIDq3_NNYWy67Wj$c7;8+XfI z`3u|$m7fj^vF=dNK+bB4b0dBtH=Vg6?O^R3le^;a%SL29K<@ncUY5(9p3WA#6Ipw= zpY~A1h^z-_b$S$J)?S~=C9Xv5wXK<7Cco&^l-Ae0ww`Jmku^=GR8Zg($jUC>Cm$=R zWl1|&3(NOO7bCK!$&`wS!P?yk$8R}>+rft_vXd=ivd&M=)wKnzSbzI|C)|aDPqn!n zhLeuTnh%%Fg~wE}-oJYG9Kb%)(fhJvvK9*`G+g$N$$J$U92D-372nKuy9_5ClQm7I zl$>C|RI*MoPfNXY)}uE{!`<@Z#$>QopYv%a2dq7JLFspZ?FwVo>u~1V<-J;o!P-~G zrL%tZ6>M$tAy^NfvoY)S=$(xL%72k4fb~sBLY?)xBYceWsI2pt9IU{PpLNE|;xC@H zF31XS28*~6o_f8hKHs!>)*`5ZH8}313cReh)dUK$Ui|GKw+iFgNAH|P*;NCr#j~c# z6g>S1_JI0X>;5auk&Zq@9kp*plPMX#?qRdu8c<=%6z>Hv#9HZL!GDWFK<=%2y)%xV z1=i>e23U{Y3XWQ@M{kvso@V@45rlVp>gTn|8nj;$2G(DUU5-&%)5MutsRY*bT#C8W zl~t^h;&p%>;NiQ4Scmm({Xi)^Ipd#X1e> z3g6M6_q%(lN^$E4-vg^}mX>p@0PeC84dijv2I@8TPoZ9B zxmHA4vxY~vG1&IAzJss>JP+B3r0YWIa<1*SW?j|g#LwERokwWG2N=^3Yp;d}aEM@C z-vs{j1h5`pu3}u)kjYh>inZ~%<3_!X*gm@9phR)LB8m0+It;|1p4a=_U=14QWeBDG z&bd)Jyw+g?iFG*<>n;tQ<(|pD**-Up|Ar13FXKF)HT2H2=qEX`K8s~nVD+87y?N9- z476<4$F4|Zy%tVidjT(kIb9q=V(n1Ma3aN;CA)fB2`0<(GJ&)})7k5itRI}2+8=piJShIt1>p-+W(NVj8*;trmyuy{_ znq>0WaCpJTsMkqdkyELp&gX5QUZ)3mB;>V5eIJgIKA22ytUsd8#X4OGD%%%?a^ll3PKKb44$g;~Zcs&rOr*~qnxn*mtgIyIOcjBb6h&pvbdDuv^+{-N_( z6w2GxxZS`ah^sJ4`Q7!JLtr=Sy~UapfA300%f@AGJxg?w>-z=PPM`y^7FwenefqIk zSNYKSS>x|blAOaj;h;2J>uQ_5fHwS4%DeWMkIlMsqM)7s>yx}s+@~K!)NAi}ytah9USJ+UaUN)Ek^WOOGn zn2RfS{19Xv)KC;_*)n7R@HMDNHWK10+F%P6%-Z!hhFObHLGQtFo5LSx!vJ!8O3Ovk z41R-6M8d$ws3v@?L1tHAo|8n5oti~upm`B)cQHseYh;WRgH6Qvtj$%JW?9#A{gl9o zDGr0IxkKI%!R8bH_!?GMar0)))cCpnn?y8<)}-h8WYV95;MM)6crW!*wYu?1RfC1!{lE)xfK>3BSPe8gC+3 zKG!3ISNG0g4UYgY9RD;8vi>2Lr>%51;TK{J*;%oH@35W2T75N}yA*f_u)oN`C4+&w z%Y!9jaA%BfxRvJGF5n;(FYAcMn>t6ut-}461+*HHwc7)@RfdfZ8d4BddTX>mKibQ> z`zfnFDIoU^JCwJ1m0xcJ9p?^LTXY%Lox=e;Q&)EN0a!aVP_0J>3oN_ga-P)bO|y17 zTEfe)UiTOqU@<4_dY^&Cq;c_t*K(e;;h-)V{&X#INw1e-9nn&$j9=wnfRzeo$iS&;P?!YGt{#2VLO>kBWpoVmSW6aPunu=ZlCSKN$C*6^n?8LzAnmKzc3 zh9^ge;_aNC*HEz|N_C}PM6&sQhe)(3gtkTe{sdY3yWx`cerBxmh;m)07i7)Mj&d*7 zZ*O>F97)|$5jGgR!n~DQUP{5`+Hmg6!qv-x^?zl?uoJhD#2fZk+`rqbe3I{H#=1}W z;x(}ZpTPQmWyUkCC+oik){owDZow5sQ}e3VX6MA4^Q&|aP^#2eo9M?n{W?yv5TfD&bL6Cum7a6MW7iFdM&+rfFc=e5~6!4j{>2qI~map6nZalkD8aBn3P;t4}&-R#zf*Ubze&_RhLDso157#ai zuvbCe>Co27CmHKg;^J?Cb?yzZdEJO2&uVuye_mhLHey}tVl0~g*76C4Tlab2RItka zTlnuY#jk`x8tx14!}5Zxxi7cZE*F|L>_ds_L|F>K7QtwuEjPSKf8g&-A+a{KacR4N zjCLk^`xWgmN%7FnyOy)R&P;Fc4yw$yRa3w%wp_-zhpp28YG))Zzf zS2c|i5o<#k7q-@{(-Z3T4n}D`S?8Vt;;nWeV?R|q`ME+dzLHz~8Vis|IVRB&2!4hrez`AcK zqYF24kI<%Oa>?T~)=)aQTY8w(=a*fmQlD@~`?9<=dGVlGqq6(9ZXcnz>TUbjaue%V zO%3jE^J=l?JraNxA$bP>Z+e7Dk`F%Lc&lB=th5cs0dl5lGtP$tzG#DBFyu{i2=sXG z^UW~6%b1n2#sM-`P%yC01v8$}2A8`FaU0ql?uzTqB}5s!3};MbrL1vqj1OHf5od-f zkLoWjcNZL3Kbq3h?F{3)jDfanjV2QYYv3Ml)UlILO(BLM47&_xOl764ao15$JWd;PDQK;qePG3}G(Fy3eC(h@#CT4&eJOz(fS2~%uMeYGjag-coj5j=B$i>q<<%?v^qe^>ao^ZbyEL6eB zDashEVdf>@=i?Z)$Jb7nmF=+~3J<iFd8g97 zCDwxgxL_o5E+vgj5MCR2gb8qI9;;R0p7r`OUt(0ReVQ3aj^pb$Y2>mbu>PR;@BEQi z4}{=i(crwAR2gT^XwNLw&QBN`@66>z~5;HF2>%g0~&6mdMTITw0Rksr-%mnFVWAhPVu0 zjW1;V=?*su#u#KRM`=*K>vu$+V}e$GX2H6g-mNmV3d>GN){$j>1Wo@kx~!_*z@GpVlXIh=rZww+iqmtft<*00ysk6f%Et8y@N3AQ`p*(<6#VW+ zzLB3NyZ^8L@=?qy1V%jbV9kvjt;Gr_XaH+?Xh#|LpI{RU9#Fgcwyqid&Ks}RPFe|G zv|fu=^4Bk5ybtUB>-PUBz`XoWS8LenU|e)->{FkYi?WWryM38mqMYUM>PB=cEMLt; z*o9uugfjO$iketYb)O*X`{1F_R?bq%8UNHHRAenIU%`ucus#O!c%6=Ej^|*=qi3TE zh-WWIQ!5Ku_h=G{b(Eq<@Ptd(N7!u=ZFDnkv#x7-XGHU0-EU5yvrvohkiqlzxZ&}6 z#aayJYlALa_E6nCSjWx^$17(3K0m^w=b;a49CHC%^AjzLWZmPbGk=P4IfM$iJM>zC zP6e<%Bq!Hv@0L{t@m|jKXo=!9Ie%Y(Y%gHXV7y^`hkAOhLjWLyd@Xm|X2QD9(7|1h z#Yq7YFChK~Vx4vty+Xi=cmY?!Q)>EyQ zg|g;#307gl+0iWN+lHfR>hU%9%zHeqz1zuIaapsrp7`c#p1hvKTGVwR?ZtW~`Q&+-JM3PwTj011=jF77H%BwX_yhDWZnFP>U(#T#M-Tw(WNJ|PDP!!lJ#DF zfwhu@BkBC_vucpKn+ z)*_MHNzL|o>)ymhtS`dVmBbrQi4d#O(v1) z-x>aZHC(~p`qfQz%{czG%_fKGcaLEh!3B*mYV_pj%EV8SwO9Y1(%KVcJGr$`?k3KS z08AJc$_mSB{^td|AZJXfeB9vI)rn*}4el*y~CuER12>r{ZUBq45SZSSl& z{&zyzr5NjU%*-13zFO-OuJwWY)zrH`ycWXLX>MF8>#q2VxBGkXdhN|gE8Ev0fO?(dR}x>M&(VN#t1oHR z3P9F!$knLVy!N7O2k<4DLVbO4)<>Q4N`5~`)?eWxERQa7^E@Y(H{9@IS(%LCf`8V=S}ih51=j#A1dfYc?Nx4HLe`3rFnl*pL)_(f zV?o{a7a^`_nY*@)dkx=&8B?Y%jm~HYe7(k=qqmPhxH8r59@q zHz(G@D98$|@CXGXo3xW2Uvg_XytY%;Yc8Wxf0`@RIJ*XOF3QpI_wsFcd~ei|-Q|f4 z){ZI7$nyADb1S?|>M$qPb+^OH=(S#`%64W~<)*6FxuK`##uPjbbMv|}eAw2@*XxzB zR*z4`8dyY`+orE~6>HN4Kj~*0WW9aG>36pw)^5EFCdJijJvfeid_6W(ziY7u`mh?3 zTORSClzFj^A9+{>S?UG6&4pB?iEYwa_XNV1F;v|9urHXMFa zq*S#GPawHbuGL?8{USYAGSk8^hKrh&v6g4te1t6oU?Pj&>~pE(Rv5-$vA#D!f?cwH z+K7g@x|A_sESED?+Uu|&o|j&%o9kC& zeuKG}lcYkI16f1NmbsHx{_{H6$k}KS66z zb<|2N;_MoTx%_ebnS!-&oRE4#Kz_ry0D_Q53N8@4&)-Oi- z*Kd7huh5K3){zBoz0Yym*3wc~*S*Ph8Lm(AoZ<|KWDUPDruDp571jz0qE=(Ayr~6q z%X4`#MZIn;ySlPA|Dd7ByQ$mdq0C=0#(8#(ZhbxOhLEJqCMEKkzB5tE9ZHKg_BB=ve# z59~}XdB_QIUh6$%+kI(!bgf*$cO_a{RH5E`qbAl~)ePj2$te&y=u$8`$exg#rS@!VvsxbZ)`&ynTX#IXJV=i@c%wPOA3O=X&T zoqO|heGW_^fR!$Iz`9Ipx}kZ1u(Mv{*;e)}=@t^&g^oxh)-LrADbveQ#s(rQ`c3N| z*r%3_Bv}hGR5* zW*XMqmz^t=>!nBc$#bw=^_wPZ_OYRcyT-M=+=&M3oovHXV(rq_Wn_8>u>NhPy31h> z%ra^7!G2>omlv?~Vb^OMaPN+(vk{PCs9wADIHb(KuT!P6RLig?>pl2_so0jsN-zy;|1+h^*lH|{C)_G*dl2UQ0zlegjlHtgv)+iB zSR2Zi#QNVwurB9gto*rI>k*#iwY(tKF0EWr1}!+Z(sR^n=4hFr_pXO?D!81qX}+gx z#ykyc{}|BB+dAx<=JVRgI&Uc>gAtZ6r3{~p@I>$$V(nGU#T*)aGY9Lm5Ut!mRo_`s z#k%FM77*)N7t`2S-ePTcyJ2vZwznn1OZCZ4m|12b`AGs#aj%(%wOtr*=2qdriWY18 z5hq!q+)8xQsKmgU6|c=tfZ%5aY}Q!< z#}l{i2_tG^Z7AdN)}KH_+}y9SX*`^PHEeXqir-n;L)O3Lrsy^K559F%<&9XI>YBn1 z)0%d&4%To#6uCVsj@wB8z>Scwa1FC&p;;taC$z z>)D}|4}20#VM0$8Bl|0`GU#O6T`{PgyjgIlu)l9K^)1$L7$#KzR!}1MXvE{fFEL42Li5gH8BE^&0vWWTXa~l^TTbt=pDzvf`JGXECt0hC z7UC=33TX(Ysn^6>Bfv%HhG`79rE6M1)&56wQU&e^JM102AlQhhaY?Kj3c2)U9BWwU zN{dgiJFctA=JmJs(#KQ#5UfU7h;>6Dm%hAjC1~$9QO>x0bp+JMYH?%pS}F&B6K~eEF15a$t&P z^9s*!!@xbT5w1sl?T6}ht&4GNZ-UWo^0srkSug!GSnEf(blm}dV%=8eMJ4|4>R>ip zHPOpDIXomu*$}{~X)k6uV0azeL<)YXUYiOV!@kW!vEpO4X+AUs)%7o+i&nEfR&ubs zldN-7)U*@prbdRocGcWE4Ogez&pItc&D!2t2Dbq8)9Z*GHe&5i%CI64jLvF^lN~*1lK9WB_WzOErx71MP0W*mGU-QT^QV4ole5;ARvzYivDO z>C5*+_1dSI!Q@ZDn9`hA?i+qYyZloL(V|)7N#e5Vx9T;1^6jG)rhP%I+d3IoBI~L* zP9{XD&Iv&M}KQ0aq)SO?WJgk$^hYsR`i>NfrsI#&Xm-n7TuChPYq zbmN_RxS^bHeVIuSYf~Ge*h@H`xOXtet<2q)$<@r8Hfu9%dFwP-3ux$dM5b@kPOMFB zjAFOG=&$^Ajf1_T! zK89J}KFdhjtW)lY-4sp3THnfMPOjFj2gkkwvhp3Q`?s=+!v~&npI4OMGU;qDUZaCO zdP7OW5bK6QhQAC?h{JRCOD?CyZ`7MSyDrwMM%%MynCsWBtWU$bs~6Fg>qWVDvBpoY z$*B;0TyKj%bg{+?{L+3p!`XHnhFEtf=zQn!;}`KBpSB!#fdZ`*_MU{>@H>3%x@f=Q zVIPX*$~LifX=PYh9*%AUo5&Pv@R)V7hLLoUJ6Jmp(6LgUhIQBIz{=v{F92cC06475 za^(UchU+y9*Wna1<5So&?rrY>ri)ITSZhs8_?s19GkV zy0ZY&uoj*9T9t>i_$CL|@PAu;b$r?c3%@H_o84}BhUZZr0Jav{|*6Swg51qlNUU#Z!d=L9SYj8Mo_7t8}#q3}kj<<(4Sg+M|nwGeJiM2~B zmzEt6)Mr?&Vc12iFRlKIrYA5pV2%69lDqeK6*L*v>%8^?^_q7#{Zy}OjZJ6cnDpn^ zzXsbKjG#M=q?Xs79+NGxuGKMr+vm`P<3srFt~0OT(X7|E0$AU6hN61isiI4H_!*pl z^8$%=LsJ86c(j-1-@=5t5c&BmL*Snj|AY;(4(n$K*A4f@vXOM*pc823Kg!8)U@d&U zO*yvrJFX`|}Y#j(bXOZo*7*&q1WjJthJ z^}4N-!6nbW81)Hd>2I()?>YL5V~uC0sA;wYP7Q}pRYwiua2sOn*2|z$=8LUj{kr>A zUV4gSEnEL`!vZu4uvNvEMlGL)HLo+U2Ais|j*@ED`izMuMO+$ftv6aCt7=#0N$h>wkkU6+&8YexxPdAlB&m$jpa+uR`xh|=PRWW%2W zKD5&$tRu$#I)B&kt5-kLh`YSceSz9xFzVVIVpKW_>xdFx2V-3dU01W1wP~S4#r^Ja zHwzwK*=Z(Wt$QS$xw{q*nsrf#?jk+L)X_Q`xu^W!M8rGMI#-?3b=XSQuvihn+o8yo8p zHx28Uo%3ZN_q7+u|wTAd+9!2@Y-1C z6D$A1$(Q46Xv2?*o-g%gVH-2K<_#Tin5GRMt2BXvPU=*$mgDOU@5qXuwS4qB*F2+M zAee}?=qT@%IhTClwP_e_c9q@BdIPH*o|S5K%6x~`CStv^L6^n)u>;A*H<1dD00^4p zj_@5{IaeVjV%<6LaFl1sA|W%6b186cg0mp|zbHRAld5eEkI*dO3jn+!#!Chrflf0K z>$MHKgao1H!*85W_J7fniC)%l?m`YP_^G(;NSJy}-xfBnCStv|L08#s%X;nXT*2YN zw)%z-uhcbS^?(d8Uuoz0oG zr#S9HE?;_I79q|3tgAj-=24EU*UizDdLm@j@uVJoO;xY4F0EiH|k( z%{Y81!fp~(PjA+&S2pO<9M576<7;FstU6M$&MmR)Vyb$*vO(9UrS3n%FAS1f2Ho}j zkoY#7!Bk9}wTcSrb>51!DVU6Pch;I&UGlXaQ=i2ereZjZxm-{4d9&tAM%O#{h z_)1UPNT;^gmVl>ejH@NGvvy5a`dRz|3g!CX&Kqc(g)VUBs<{{tE3bRjL^|p4zTe4M zd&=X>=fdS(thadv&*IWJTWN5Eez-gjNBc8==gr#H5*eAlGV8mtJidAj-L86M;$yvq z<{LfowsPP$$lKC}WU_i)7p;+_tGv7`ONFfUv)d}DTme(3lx>_nZScK;n*gBJjeQ*h z49D{N%43_3b$8x8Sze;pWc}V>0ETrIzNPB%k@5t2iMBIT_qMPpA=XWejB@>0#)_N+ ztTW_j^wQdS$$)j$VKwcOe1%V$02<#8v{uxj^Svw+YiHLPe zC1VIg87YI`dw&7~CsYFObK%n(_n4n%i1lfD>lsRv{&8#_V9jw-{KnrL?<6i_-BbG) z^NQsT63S(QAneyA?m7U-gH z|B|=mTEd96R>e$zH}!xRSU(1Gc?WLW-0wlnr4&bcUi)=4t;V*R0#R+e{Q zi(&0tDyw4gS;|&HwG9{j>&wyg$yr{N$z=Vpl2#UE80vSG_4<`qS1OyC#i+pW@vW*} zV}so=$S}mQoJuMF_eQw5ORCp#dOF9~Qymys-_}%o6Db?Ru!O^MTfpLYUhsjUO8Wk=WUKzO^-6eSs{Ns zf3~n{DGaw}h0wHe!%w_bhbGqXI_v2ZDl3@mOZD?2e>{KGZBaQ^pK8+*O)J-eUcWjt zvF@d|KAzPes!$y3=~9?AX~nY1Ezz~G4&L8ZiI;w%SRXbV3t~QjRfRW;ccrY=lQ?HO;0+JdQAucsTXy52j{UaaiTI#aCM6~&ru zYg1MdV(rt+U~<_H---4n1PAN8aJ}}j-p4$!r(zwGx52bMZA2Ao-pGfGwcR%>+x=?G zk*e16U3`0)d)Kb&jl|$`D%OW~R<2d@9t#H3+^vn@4%W@KSb5o(Pdq$S0S#VStnXW+ zGnX=%41D=ND`G9Fz$;kWW|=Kq3Qm)?lIpi~P1blyR%PzHzXSz-iFKv0u`Ckldtlvs zZaG*xM3620wHG)kLmI5t^2wmH{5E0Q8u%sF0p$$iB!|)OpWyYKMtl}7<>nZ2qXQGt zIl$TzPzKX~h_%+lXupc}UDBEb15wj#^QJ^ytLER!dfy(+Sy$gd@tUk3+eO~+w(O@MQrlTHYn%~%GCe*KYf~N5 z*(=tvf*bh|hFx17GJLG7uX0ta^Td8j`nhf3c+uW8jZ5Y9VET~u>;->P z0e>{>Kf~z^cwL!n)~sa#s=QvcMY6`q*?`-)R62NQsUnm8vYh}2J-+^9-iRyB+xwYX z5luF}Cf4o`V?MMIDG@&0HS0gYJX~&iWTN?eFkQ8Ms($#2SSJFMjniCqMc!f$t7UFm zl2U+uG0htGm@~`Y{^*!*wS3?Ov2LkkaDjjrcR4(6(NdYcbGhR7uJWKP8lsdJ+8pjJ zZ@Z{BH;J{Sv{5dwN^WzgmcoplIh(dy8zS5!Wf&8tuv^`tb?h9h=*2|F6 zj}RI5of@pUD~-=?8dAJTcA`A7HdC;nF_#^-L>uoh)Y^mmCDxWYM!CSFab!PPn9*Ac zRh7fLrWj7$kSk9zO1Yxtc+fZ5 zJBuIx>)0NAGyQhgfwtvHA zIW~@ZSrzaT-S4g>LfPa#q+KCR<<`$ato!NfB;Wh5oVd`%6_+O^QBBE zmj$yfOQ6be?SHp_QXk*RWkI*0lL_@0tE&5DW1zn3r6$CGI8k3y)oXrYewP_6Ge5Kx zX00l8y`!qACd=tz1Gxbo<5@d~&VT!%Q`d7S_H_?(f1XHngWMwU)V7*qX z;lOd6Q)#ijE6{AXt*T8DJT$HHJQ3@v>rrK7J(l3}`c{I336vJ=95i(Q1E79QxUDRx z`k^6v<#{63joen*S%W3aT7oPOL$c~Ms*LS^jcz1_}MnK znXF`eRNkwayE(e_C zG(Wf-vgW~9KUA)Yb@g^d=cw_a)xzEMe<>POhelMUG-YG&SBQBzIikI#JZ`G z(XOFQX1_k{VcyGYs?IicwZK1^Z5(Sg{FWiSe~7hLHA6eVYR3Lsk%U-RNn(?%Snr5+ zrIqDa-r)OKJkbYO1v9>b)vP<|W8cks2Oj5JuU~@&y;8?5JgZ@F9d+y+-W7^9i)0<4 zv}xM#RkD^Fh+qOVs_?LM`6ThZe_vAc_swwXMQu|H11HvD{S4_^;64L*&n_;`^eFv( z&@Tu0S>v__VjZW|OZm!Rn*o^cBx#kIa{P5)v4-R3{f1ckbu)!a@gv7%Gx-;7VRMkq z73=5V9tUC_R_29WH)Vy+4oRBVY1^kQ)N=WKkhjURuGb%f4FdJU4b4q&-TpS0nMhyN z307r}m?$mHpF0p3tkXQpn_lYc`LZt8>FTVm!M6P(m&Iho7v>ixQ`J_tHE;u>ee$gP z;d>F{xlwVqV=*Mt^ut%ldRJ~OkuTPYib2`muC6N!Hr@v7-7$Hn+*+0mZ;4uhX;_DP zl&vgYi$HEKg2LchmoZW5WxdNS*4q~!Ypm1rW$kOWt_7>J9J-SwS^wq#{QJ^V=DYFL z4#TGpIZfPr4aRDD8A1#6FRqT+ z=V@sd`VF>0iDF=tAs@kVqxIN;m3$b?VW+G|DI+ds^)*gcJ zU`Nb1lITpL6>306lRU}dQ;H=jf*ZW(j9}Owa=ZX z?UpSA*108dUJz@iT1F7ovzXDW6QSStk@@jHli_}t@19{O!|Kc_tf4!{YDIbb+KdO! z$I~%PQ?G?ienr2hu)ecd=N@(KUZOTOO~aadGJVbBnspZYyvAct%zEup5A0-n@wpjt zVr?j6RBO!|bk5_Fg7wUgwa-m$ZP-#AiFX=e-KnC1Jk+dVQ8SN=bkDd!v5uh`dKXiz zlWAB-7PVQVMPJvXV4*9rB>OLajA9)Z9kGtn)A_z?)*EwMN-$!$D`1|aGQ6^#WFgik zsqKV7HR~j*CxuDC@~1G8;)eYM>oly-%=8K6oIZ%bdT&Ayqvx#j*~UG=^o*1c7BVt|wCwVl?jecAVF z8rHGTtG=a~v;Qd8;Ux@WJ!im1-lAADZiHxAiFHdQ^Atp}Hg=&nN-ld_z+{1lrwZ%KknjOx{ z46!~-eSHFZw~LjL>_k$YbLESboi|pUhV^;(r%x3#msTUGO zNgYtxh;>sV<6S@bHW{6-NINysa9w{)LX<|rSE3F$2|^v_5P+Sh7Q>@ z^;&e~>N=hG-K_OH+HM8xaE0@264Rk~ML?`wS{X;S<-vHdUWZxBuQR?+cEM=;j>Oup zo1tAgX3p@HtT(|lj&GjR;hisAVv;VQc+U;y(jL64^xs@JDz?Zhx?=lHmK z_0pLFv39Cumco7KI{@1}l<|^v$8+Bs!!-4Jm2)XLG!|YE$|1b)xm9g=xI6DpVH(y^ zuPOL5y;PTNCOWbn#whQVcS*uKV(~an!#ei82T!J#Dh}6LSt=eXn`8}BYe7%`2qt2E zVs8EAScXeyvBULxkI#VjOJfarUZZ*FDm1eG-0O*9-wu{W;qNJCqI$j3&e?4jB5dXF zyq+ZMU6P!ry@^;Kz2&)T2k2LY%{EU0pF&TuUT-)2DIAH`rh)L z$+x>U9J*(xn2A{9LhK4nc)A-Dg7an{4aL}c%H;TE!^0~iMsV9otZjXad*zt|t)I{h z)?1tPxAJl$I&T?wDTuXOFXKpexhr0H%Ua8kqEWBySVl-Ii(q$v44X;%+TN`diXd5^yM~|X{tg+(;W^?T9;z@t4Kh%b|R5GG~J-Q+X z26|kA6utEtM%L2266;bEbN=~I_ri>9rt&+RQh*eV(X-t*(_ONZ#$1N>=4yR%Qp$?z z5UfuctaW{t1=5dc_IIb15896@j6Ie(E$a&mbOjQ0*2M*F##&Z_sC8crS?8X7Y`DiERy+}F z-DbsR^VWuvbMveQr^w8gub;Gk!JUWxYNmZ};VBx)E<51UMlPI9`+S$P4bfU|GX2b)DP;X{r4wrQ9sE<{qXj*aKCI{ zk?)fANBv&kgRgAF+NYV>%750#nPmO-;o~k>4x-^+T`rZiw?I|NuGaFqr@faW62tq zu-(SHDB||smQGZ!+ZkDnq}eT%dysxz97>e?+@}c->uobaU-*PrdsQ>AgI5H!+MR=W}5X~^ByX2%kYOpp{#ZfH+|s;0h}iNom1=(PQ!Z5 z(`GGXl684BrCtDWkVtfhyx zrXGlOTPagZK2sUcN265PDK{Sp6x>$Qw#CExcFWs-of4|oPPL37EZgVSn;-JD|0EHZ zW{C9zdT5)JShtljwWMU79U2*du{B6kOZ?DqD=+1%K_0hsBiw;nQmWT2m5e3O_4?RM zK)%n{!5RXIW;k{I>T_s$pN2JWO9J%Y`j&`w>kcD{L?lYoMI7eIY{8JGq*$A zH?eN(WL!y2hE+$-LW)7w@IHRNX}0|;o6v&SF)ESoFR}J%W-NJ)ES2NxG99^_OaXVK zoE62_uF1wM*>Ga*P}n>~9@aa|oqxJ>UwrRcL?}40jx|)TV>LCDznXPcKf24;uHSnT z!IjUv?fNG{tlL_djl{!R?mBt$=km4qHFvlkiM2y3a}jx1%WWyOTPwHsuTH8@n{PzR zuSY;_xJNOgiEEyjxmb;?gEL?s6Vb}ko8)fuO&wv&-4+mQTOZ?J)o3i%xcsHJ4LdXO z!NGb5tofbOyF*B<9ZDHherbWV??~&X&F9Q3{B)TQB2D>nT#J zUL)&!`0wg%%glUmER1Z6C&8s_%pYPMqopDJ)KelB>vxdGElhc~mcjJdr7qUH;!xi@ zotY%oohlmG!*dm%#TuWw570d;MCGn5yRxR=JL>hmIMmTK!nH4_VJ+GjS&iglRZ=(W z`gyKA>J<_fYgQcn(=Syz+Cr?gCNA}xRtcr%mJyLTycfx4SBL zWhn}EOFZcpv@7@QJ7QfaW0sbh_0Cw+#9=bN83L@~uVLgXKzRL_<%Srn(&gpe7KW~< zUWc?ZhMRlc5;<@2fAL?qm8yKT4<&zU+yvki%nSD4BMq^RRMcSJ+^lh{0{-8Kp9?D~ zsOYMyf7fI!537A8)|R^Fb+N-L+%h|mAnQc@-0p~{73*JdbgvCV7h+v2WPY}ta|T;3 zbLEg*@o=>AoFP%^fZcS%$j5d4m2|_!XJr`G#f|V~X9e=@FS((dH8FZ6lZTL3FTfsDvwJ;?ec4FP3py8ciaq9nV#rld8m?wn~{aAxC zIk1wfTQ>-?ZfS9Lf^BhpX=X|-QY+TG+;CNOkwd+1vR19TF#L8|sa|(!Xn1#XZnTVj zD~DC^(B8v`o4Aprth`vScWU@uJE_)P)PhbMvF=pS@E+1ue?`5Q3!QOjz%ABUfrjH} zyMAhCq-x!5ao~!{xGw#tRn|Zbuh3~HnuXdU&IDM)aC|LncXt|U2{pl4oQNbf};yq6&;I#`d8yE%ZO!&*eM{439O2n#T!Ze#ISbSPj)~xBi4<*!tIaX- zXenBpi=6tVNchmHOzQe6th+3;Vf+hB$V}AtS$=%B#TsU6xUcOywQUwYgXZT6Li?}| zl(_TY=?PdL!M%>BKXMqhs`gWh zbydT-2B4U=xZ|ZJ_bYhb?7qgee*UixI@90j@cDagQ%-Q}(x1aCF&H63<1!s7+z->2 z*J64f?S!b!-CeOh=&uusRaeZtN0(D4c>JV;HM3g)P=!$Yh7he=Dqwd2%||Vl4fWyd4$na{fxI`5Cc39)3`@ zC8#v{;rKF#D`VvJ+X&WbrzBwg*IG@ESs&Z1)re-UQH8a$MOHqAT8_;)>jT5Ae>j5n z-?*=wF$f3;cRQ_vA^j|-cInDG+}dStkGTw{ph&>_oze~7-QmgyzsFw-)+b=C<6h(i zx6c|@YcH1dlPx>!A-aETdO!<}VGXZ3hhfe9Rx~giqpbhak$S8f2G`Qy@VExnuVy>k zo!4cy{-46S-##-_J6OXB{JnlK6b3P~l^iAOqZ`-t%Lkb#x`1&4S!KAH$T3G#2Fh>e z?r&Ukj|KDqYFNLm@Erd40xHboX1vyy|0+vj){Ou~#82YYE0IMu{<%NahMhtVteIi` z9d86EQrVaB$`T)+*x% z&CGnV^5ht*o$#L&H#qN)cSM!h_SZFTyrS2c)10sUeQUU2VsGKfibJDdb?(e@_=kf( zQq6)~cMM?!b+z@AA|@n^c4S-1sy5fS(RyBKM$6hm2)Ov$lf2kMCu?Zp;UB1%u`(Y| zL9Eq{>z|Y*S&ChVDzokH9kTYC47m8)BNv?g=g5w~X6Pmd;`rYAJ=WC45Bm!1VH?fJ zVaK)F)z*>(>y!Gn)rn&1ryqFDaD?&ei*XTD#C}$z)1;3&7S^N8G&PfBO_2!2THeq` zlQU!>2mU`Xl+k)ytQBgn2ieSBp2E7zGK<7J)(puL=j$US9HP+V453fe<#!B@Emv5# zOp;xMW6hCnaM{EU?2A~2J)r2Sdajxuy{j{mdcCZJwWev%4IbmHA(kJ0|5QVR;gZYo zhKuVH)vpEk#xSgpFZz6aHFJ1jec{!Gi|6~rDE?@;%Ey%I3pHVPG_2vt1+@-Wti9E} z%iZDI<$Qhbti}1dYA8(Qe-W%d7&daXMob7F4eRrT)_O>bLt%}Lw6mXBFdS(jSwk2S zMYLUue?obDuVGCt%t{2$6|jEx8*;-T2Zp0oiv4gIJo*<+Ur`?4`(6jh<=>o0{Re*h zoIN3ei*Dt=8`f@VCI_(L0MS(X)$OalGV#$RxJ)#xYadaXA&Fmjn^2mH#u8U}RQIH$ zQ8`v$J!}X&r1V>ee$YvJu;Yxz-@&@ObC`noSXg6gEbWIAvvCZ|uJwubNJY07yuq12 zoT)Ne&KCGcQdZh^%27?;LFj{9e;Rn(Y1f_b_uX#kF!o2*8Y|G zHl)*DOhHY)J}+WTW7;3jh_#v6+Zh{bzFOFLh^~QkqK@sxUrP*P9aZ`G(|@t?uwb+P zz~jcXhg!b?8f5Mc62J5|p~6}NIb7U#aO%qsU6=~%F3V&T@5Xh(T@N^`_2oP0ULo z>Myfdp=DfWM82_Dx>#dnJ6WUc7AsJAI4(WxCtl%=0*N{fw<6aZ&Yok2;0V@@lL$VV z)^6ez-YCG+biCf&&YokM+{5}?ZG+lL?7l?nvKPUHxAKo^c$dOg74HnnM(B-R?g(># z))BRnn0j?>oDYqJS#-t;f*vbWD@GS&OffO6N9bxQ!McX8qkJ(9wl~DNiAgx_!8-j+ zlhB~7vep;vMone!Lfz#f4Itt7)?!!3nul$=*|23jX4@=y-v^A+z;zY;#YOeUHl>j) zYc|1VM0dO`4|IZ_*IC3`*AC3Sc9;heY#v_23j-9MEw(ZCd=0U}J<8vaKUSL!VUJYp z2C`Y}@-dBRvwi>pUdfR4D7i+0)#kF98+Gn7`d#VuRA)al;sE{jD5R+~T4tMjuRa|IrrKN^NkspGz+Lmz8>+{5E*t zO|5V*b&F##hquyuBX(dt>iVNs z=_^W<_N5~f{&0EzCdd}K7a|q_uMPYJSw{t>E>LzucXzBuEk-|)mym532B6}lp_kge zpc$Uw`;n6kA?vC}U2FDheLbmS(jC>gKUMEf)NfZfr$eeZC%h2*f@WduTWsHum~{CV z6~3$9oPvxI*5cv9XJWfg_N;>zjWNXa=7CA~H*}2p-@yb8Gaf!?$4G*_Czvbr+!)Kz zT^aO|joqjjty|$MOMySm@oALGz*>CW&bI&;ri>;Jjyb1ul z0<(_I;o`+z`>KATDus2T!Pd(De*kN^&w*KEzp3`EoF(if7c=o=j)nCYD=nI*W^r-H ziZE~9KJ#`)b%wU5g$_~eaw4X%j@xC$*oMc2A7B60Pl>U%-&Tps=#AZ;^*wEoMor&* zjzx<A_2RTT>Y(+>4$ZD6A)& zZeqdrAHT**HkVhzKYA%<9sWN&yXbe$o9rvBlT9|Wz{ht{*5Ywd_hnL9huK$oAP)As zwCxj5*TUK}#|D9q;xfAJh}bswQw-}bXM2rRy?fs-IyR=T9&4$k@_h=3YPn~@`advS zi(&owbm2DMpXP1!7*An6#!5@(>0o^jd))u~E3V0~eyVD>K>vbsr1`gJ4c+&y-KUB~ z+h0TM|7LD#$Q+vWfveAqt5S}-3Mc#))(OU1B0^I#c7TF7C`7Ib$Cf+^QDt z05kYkIDW(6M>zO%_6s;y`Bt#$0$N|K2xsmHJz%ZY=STijeLBF)UB*_2NbYnSxXKIb zbn7LTP+O#6>et96^MM^;Wf2gS;Ioy zys-!G=<;|Cr-|deu#VevrPv|X)q`W*set*8ZvmF2(2= z&D8LJf)yOx)8=DJ;5=nqV{5G8KQJuSv3`f5N3*7)(6eAY;p)4vMkZgyOS~cMSmQ61 z!FC!QQ#oNG*K_qwe5dkxObMK)u*TL{!w-*rBWGB16ekwdV_3u85Lt{B)}Hn93HT3- z#aYXTMh8_sYSz549<-4+Z#8kf7@!nWBW;hDG#>)N;$p)gCM?V&@ zbZar;lM%CiAcdIPH#^=NYx&3Nwbc)Q(Ps9pxnVvY!@5!L{phXm(}>j%E7g2R@_^d(F7!H>+X#;+^Vqd%xYz9 zpS6gzdAdB}krsIOXNDsnVOuv#-5D+2uBd-!3)f3%t&HunCLLc!!bQcdD8Tlj5(7}p z#_kSScP_MQbI$ZxpD+H+uqZ>hy*kTy+p~sd-n#1?ey@l%GQ#O{9)>7cPh6F$y0&LM zOI>83oV`!_<=Q|;c(qo4^U6niK$m4f5f?m(`FBi4S0wOl&w7@+f%drupYY<_DS3Q0 zthtL6zOQ~T8dAL^nlv(Ud)C7%&XKBTob7Y`?TyoucmhQ@<}3fs4@N^o7NpU%agj=b z6tmUO9CgPvYWG~fs!lN-PF%cxDIA4l2LBUWEeo=Q5@A*%C2aabLmh4~{0Pq#wB4Dh zD<^d|&Dt6IVj2mF_hlJKBb#EDmC*r}ZXvmYH8i~zHjrzUL_0{^rQgUz)+9>AmcNN@ zM9N-|_wg9h^#erO<+S;}RV-s9PHv@yH%%h>dZG&J9^*_;dLKPszZU|icL|H$G^1|X`KM6h=o#OPOuCPuq+9r9=e;=#nuSKMQR#?Z(bER>| z|I(@WFAD2U+gxQr&#vb$>WloaY?;Hal59lj=y_Fck9~8x$UV_P)*rE0qBq>4a&g8U zzgQ`3>}ZcVH`u|8wgwZU_JtdAGb;`?*;55Jd>q`*?^d5HDtNA3)C#jMGgcUoLa zZ^lQy*A0iq6^2+Jf6rXIE$cZ?>w(p`c5t}?RdUym`|%xV^9LrHD=Z*ABGBRf$Xr5W zA-T9@AF)EV^1vBKtSZG4aLvt|v?ozVeR3Chq|Is=9Jl7-o~bpW{*HTG$ByJ_z$DjIjvZ&HtKXd^5p z-PjV5d_;@b?f^Twji`-Aw7LB#{ntEBiEmOnJTpv0oRp1xz*^SCXJ~!BMZZz1A353p z9d3<&un_Dv=hR0wBJ8Sp(a*yV-R2p#z!m2>JSDNVw?3|n^|OA@Y0Pbu(&uV+HRyXMG zo3(sw!40`yUoD1)c5|#ojF8Qa&-z1+bF}U?&8;P(8GPP$;|{F#efK%5j9bIm+nxpw z!#OM3?ODHQ-3#kp!Zy)9ek742)+4^BV}(f1_N-r}&hvH!{5ITnNDmEdHMA>Hr;e8G zS!<$)|q#kPS$YM&C+x)tkdk3 zm>a%cH`4{IxfKVjUBJfnc?#=3> &rmmk_H5S$_lVln(;V+U0E$L&87Ue;yXt0dy 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 literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/668.458.1.bmp b/BossMod/Pathfinding/ObstacleMaps/668.458.1.bmp new file mode 100644 index 0000000000000000000000000000000000000000..97eaeaeb2934e93b74e1f9d6e760c79e3d58bb01 GIT binary patch literal 481682 zcmeFaPp=$Hb|)68Y%|+1b?Ys!p*uHvFu=e&Q<#OSq1()cy_l6hfOizefHs5CZ40pO zVA#wc2sAf_2pBM+#e?`21Zd%22x1Tf#EsBgc+&<3Vh{wxjUd+ZGv?I;>s9)9&WVVO z%*v|Dd+YCeya)GY#@`d?{PM(!$jHd7|KWf7KmO-J5#7iCe~177^T$g4_utlarZP$v zLYkugl&bm%K*bM0hi$8%%58J}{_|7S_g{x?YhZ3MS%B31av|xnPx$icvxi^-fG=+y z$^s_lcHrs3L@%U$?g>hbK6eNf^uNVq0g_s&lWH;b^G+GvI@zuP%(YdzoA{Z>XTapv z$+nGvFu7eWXk#+H#iR`gVl(*ITRUmPGRMNrdKdKxT4_NedI2vfX0Rf~2Nlr!XJd ziJy6F3QR`!c5W`6b=r%TTE^-SwLVR;Ty4&+nc}ynfDfbr!cpeB$&J;Ol}to z5=1`E)h#9o9u%a3nCZ6fL}YF;iBQDAEhZ6)7?>!U+JkQA_6;T(uRPvj5)pxqy~QL! zLxR&=OcpUwzVF;_EQr`l)s^_zTTCJ*wG~KiH=s0-)PH}ANrHw1d4>9Rjk=AC*vajb zEk(sJD7P*)#l$iuI!*fQ!|oQ71sjk%<6D1{0wedux0s}u$lU%GlN6J=dI*nlyY!f1 zQp;UnE9tY380tN@`%hYSU~e&L;Xx61i^&2e6Y{aQeW!)XbbO0R3lK!8>)fu}w^0Em zxfwb^dEc)4LyZBG!VGmNFMp^gwDlrPa3k1GTo$v-GJaU;z+{A_>S~ZyrW{o4dtZn! zaRXmMF#3D1?jQvOlVQr*&t#EODGfUrc4z##>@5~dhB;aLnM`;U{HvqG0CK~i8^Gzf zi;#~1Cgl(*-7x5eusZ58b4Z5?iXI}Q8&+%xtD`S7rNL(aO@YZ)0295Q*$<=y zlpUf8iVYf{hVVN6GQ%*zcR>b?PsgwC5DCp7I{_x2$sG@2W`|-jtlW^xaP(!|FkP|4 zUmd+J+Y)dx3==c(W^r3$9hA>>Fedt-a_+P7*|0tVJNbMDp82o^6ksyw#%Q0Hb9ZeG zo1g-d&uB02Yqv4ngy8gV6zudlq<1`Iq# zFe#7P4Au&F4NTU%2|Na1JNbMtSwHYNwkM_Z+DmcN1>AZ~A;0KauG7SNOa|Rou48t% zd^c!_6 z30A;l&A=1PDd{^eIvN1nvXgXt(b*78oVSxT15X_o3r!NFSyQL!FOUO8Z5R`NK8%Cgn<@EHtJqazr9Sq|j2^f9j!~z`8#4H>gns9l1N@1R&qG#Fr&=kG-1F~QtLWopfB(;?B2wvApb!@Q77T&*rfxxfTBJB-P_ z{PAxvo#jcsWHA@a`&Dk%UWWBe?Y6|amsR}Ke(iLZF)0WW9(MvJ(oc}gbcQ45_s9M` zV~w4B=cgybF)19WKk{}W{UiWOIhi~9(b(!$b~xudSyH81RZQ|w3I?GK6(?^>eMc|} zz*3HKM?dn|)uX^4vl{B|5KM}I$(S)Iej72d!X+LBsr4uysKlB@kq@HB`4CK=VsX-v zod_mywqt)2Y$6&GIPzQLVVK+>g2`+2uwG1pi;c(}xszRq3C+iu9t;^jVJEl&9G$3p z+;>v(O690 zH0e6o6BGiiFwQ91;Q}i#!S#J8zagQnhKv+Yx2P)zl}C?hmez;KW6B29hf{b!%PTO! zBz#W(l4!_oaTo)4z*`$4ui=D9HU>=vySi*X}WQQv;5R)M~IH+4n-xw{$ zR<{FXn3;pPG$<}&x1ZgbZ{7bN9rd^{hSvexoTP0(I+9{M7E%)^8u0_uE;B@YJh}PVWfb` z^iISC6PD18h!bO?hq`))GhupR9rXa>EJhaWM_NXV$?~FeU?i_HI>Q%3UzQxLbCM;Dh~Ag z;+#uSuUyFOPvFucCzbe!UI$am=^$|ld@nHhHw#Lpm{be7{Ry;q!oS(+5nu}gqdeXm zYsXoC+F$=jQZ4LzI#qwTAkGY9D(i^TLgtbLE}sXRPtu^tHrt2E{5Px?9fl4&wRu3LJDAJ} z(oe9Kh6aPYYwi2_Lr_{nEf;dJ;nUx%l-%eK7s#p5RF!eWaNU$E3)O3iA`1&$4$G z-d#+lsr4NnCQsi4AYAA~NPtR0!>xLnKgCZD%ABoujdP-R9+0v6YXNsy1*O{pS6FslT!%uwXb|7 zj|o~JBJNeg?x-+fNxyR1i)Ru^v8ePbmVfXx7PotFAfh}B?pghE)_m^6CtGGoAA3-t zQM7$jnBa0L^^5omF^H5N9$d*xZh3}dQWGZ7mMF(Z{9fUez~G_Vm}q;vm^c!D9Nz;r z7tPfJCb)c{YhYsFKe$eT(4>C->AeX#ds}(d!YjTvhGqj=C_tIM+~H3a!l<*du0#}If-5ZqOs**RI(G85 z{!Z*9pNyW>qd71M?8N5e4P$1T^7Vj)vWGoe67MYZ`PwAYh8xUJ>bJG^)uuYHpAZf~ zKaUBu=P9wj8LwW&%Mt1v=FH-qWY2u-z$6ZlF327c8z7=waMXNsU)Apsi*@Fyi7@Mg zFTK`sErX0~cMvf2Rjnf4lv-d?`erN(j>8{aquq#!{##W6lSc0@CIF#|jL}a)P2rev zh=8FjMMd_VZ<{dDA%&-@lN$z8^GT@M|-%4Nn=#kX>sdiExswB z^2f7)12750f%V!cN0~2tiFK!7D0r}%1CziE(=rVQ4!`=Mp6~UG195I3A5H5r0sUM5!o?6fD=%$jTy==s0?lB1li6n0)LxFFY z?jqEONhJ-zWW1d~c$+A&QjUNL`p1Lv%R)DW9Wb$^^_==7`I|J4`VQ`*kAbFQCnu?$ zlp+|e-I)4LHbHNSJ!+lMVdW8+z0&>5VYBb7Wp z2#qf&4rdE0he$Wa{Duo#IwGQzS`P4XLySpmhe}X!0;)=iA1(+%KpuwLQN;IZgnkcx zR%L%fi7oAxiW_EZKbue$03N`m8c3_SrX%%ZJCsCGN-R15&<8`}sQi`4VJYH!wK>7( z2Pi5xt*LfPg(eJ%##21~Ld6y)(7fWBlLbtSdce+EFXg zo$)0MrnFMHnN-2c2Jp`Lw6HBC#hYN#)`Q8Upth-axc6Gw&`vW+Ymm1M!Gsl=`_~!O zw-d%>&^U>St7Crn3JNeO`=@%|i6tCuhLT45a9H!(soE=f{=QiUOS`&G{DwvQ|j+1e~oePKckY=C5 zK8WasKpR~2vZq$W#Q9+f6-vPb#nsVZ!ajs-gY1N)vIq+~nx}izdNgb&dGjJn%E$GG z)-ID!vcW{ur+E2<{E51Je-zp+vbvB7TbGMk9@-nOi4)xrK#7qeG2=-+o{!hNh2n&Fe5A9 zW7~RPomVa}W;1dabogRal&@}?)6aV}oNbb+&ddaN!v9y?}st>RAi@rK9=@~2& zV`8-tOz_zB>|{VIeLT0ACc{dm0luiKr8M~)t_Z_BhkmyIs=GEOPSclaF%hcy-NDr@>>>9$m<*Vp82@=G z%!w}ulm6>IVF(C39^WUxdgbFTH9J=QvdS<^aa|c(L>T<8Iy{#tyHVpFFN&9+*1;Z<8VxDCEWo&7J2ztu9Ybk zuI3Lgj;z51!yU7QP_zLoen}J%BP>ExDsfl2mu((f}dDS}&tKWSkC zn{xejwYJ$U7hq)xnIChA5AwT09Bj>8)=y9(kI@X6e6<7<^c}4%%3i^*f(%y!e*Mo4 zx2*Acb}UZC$9PCENoOvX>n+;`9{ChE#otc;U9SL`>uO%odnlMlB_NJ>ppJo99$6v? z`uN|U;wV4v_ZgS#CANVFeLzJ0^!*YIv2yed`S4*SO33X1!4qGuT2gOM$w7(qocNQ1 zMEA7BW2S=IP*&Z;Sa$Vq)4U{XJSO*fRV~3}y(K1Gb{33EBmv%cB5{9D$B`wojZ`$- zZ~-RhZ2wo98^ibt_Ip~W((F^e7nrbOGPf*F+EVq74_33GYP5@ugQ*{eL$ke1bARc z>KMptfV)x`f+;2;P0rOii61xa=MuLwBm53)FB!q4c>W66f=LF4ykzX|WwFCVuXOJC z;R?q*CT%!4R<0A|D@;8+VSWNkp7z(UBVH5FYwA26lXsZpAJLo*Rx&A0gElhk+z-*@ ztot==Qn4Yhq1=q>=S^N3a-&xU1@k#|7O9gtOx|9mg$@=b(LjGNEq*H@;A1HiAqvSj zubs$FG1^4R4ZXtDOOyOP70cLxg#K37*@xcJ`%ZMCLN#mF>T@G$i$@+NR!KOKZ(K@E zJWc#i^_QL&j>}+Vf)|nE*|AL7YLQJz_r3mjl=NY zPA@CI*Ysc>_=Q8EVq$%$@3cm?N$LHiuUjltGByH^A_IzIK64BdFp0~J{g{O8YPHPY z_-h{E?0tmJESxVwy^-c@Bibu#j>E?WOoA4eyxACT0^v@%WQCR=zHakd{_r>06MHB` z$|)X?siVaNNXY$P1BudBB6>L-l=I!YHYRt=W#vOxRqs&(k!q&P`LSZc<4$D~JSbRN zNm$e2r^)Y0aE0}l&{Hn}S=WErenop3n0rW%*GqK9bQ`@}R~~|p7%|bSMVf?{enQ1+ zS^37EP=qnDaPv!xFJrTl^w6(^68xKhrE8)R3U;Db3o-HcO0jyitbBt>Nqq-yWr|tA z(&Ee5>>~X;8^sTSGjwhjBH&0h6VLWqp9ymo#a^1bJ4to5qF<0qyZ zmcw97+V_tXy=LQo9Q9MTpy!+ErZtqDACKUk_2ve^c`jgrK6Aeu84XHIQ z(-aOxKqxtS3)Mdz$MVS%OfZKsEbhW#?NuX8M!B5+>0L@yFEHo^h0Fx=sD@&t5q>@WIIjyX<`^-iznz+WVRJyQ$qD>TA0@b=N zalCVQs6&{*$F6d*;fbhc%c|OH_ZqKnp_!QxCJ_OrFtsEq<-}n=l;5sl`T;fGzcM4T zFul60WsZE1f@XF3J>|M67VBVq^Z|VeiD&_nEPRH1selHUyf>qlRC{S5&S)-(pT``< zG!{2sfoKsr+Q}p3Gh#|8MhhLQ$td*>m^jp^R+ns?nJ}HN193IGZRJ7%Pc2ODFUMrv z^qWSq?42nb&g-PSgEB%~5+B)FS7Q(P%}^W$8WC}Pb4=*s7w-(O>aNq^t(E4yMNQT? z<#p_~liv(GZA?xBCPC)pyryMx5_%veVMBo*wJ}p%!+amv128#D;6N~|tJQ)z6sleu z{xtsTlE{sA%3v&cYke)3?G{Keu}~&ZV<#sKCXXn0?OmEdp}H7|N&VWQIEZI5$8ler zV&YghIV6}|#ALoBTDtKlTr30JX4+)`FY1M~6=x^xH5Gx?tSGs!tYw(!%!;gP#F+eq zVuLXmeO(*=nVJD=_&G|+Mb*iG8oMsC1QVy@#AS3vaIoZ+K`2|cX)lP1LM2^shr%Ik z#d(Hepo)u_WAm|=h2z7!XAu)wl4MM9@j>f8)@?~aXi5mKz#?X$JV>JUm@sj00tQVI%kH^BjTwi|YC8l0sV3N@dt)~yT#J~1o7ZSzC zu3G?riRcd&b$)>#j2|LDW8(YF%;_Ojc3UQ30>!iU2AT+cP~|i3E=YDEG3*#vV<&hH z{?wq(Wi=j-iRU>FA5-0})~mTQCReO=9DNb1m450tRi(+2vc?Zi)gxZAyVO^MFyX1J z_F^8xYZ-)z|7H7Bd3X+5P9X|wrV^v$8cb&D>YR#Q76ZRMK!wYI$q_hN!X*FXNUUTR zb^ZJW0& zeLWq+t8cQc=#(^|0S2F!ID@swM1&GaF+TA@!fWgVpX=~d3L8{ic_#Y|1&-kz1g8pD zD8@uN#^gR=2sT1MXgUbpyTj*rQG+6#^EAL%xT=%Y8=b-cW5$|+K9<{Iz^X1L|AA-a z9tE6$Q6TmbiJ>o%Yf}2LDtG0QBCX^WCeK@02Z=aUxSXD5f*jk)&()Y`3`nr}kKeOF z&{2FnCSTRXdxLWKZ-U7|P-r*mFw|u9G!x_)6Q%x>$3(6+uA-+nqiwTTh_34Gu*$MZI(y08)I3tPg;@>%iX5n=V zrS3&cs9~t zFy@kKGvi~Jz4>3wS>GWX*Ezvs^hWdLp<}}&EJf2Vfu4!>jb$L71*1XuQ8~2lIOcSI z4NUZM$o8KjX3kR&zyeA?0Rundy8$w?S?MF?Ix!tFQfI?4(Z@6J;NwMN2aHKICQah& zqZCnv!$GK+l}b>Mov-v5jDVSVQSUXPfhh`|oCgR*k z>QGGdU`(1trM>9As*y>+gmta>@?x@*khU?>7|=RQ=J%wMc5w}0l@zd(X7O=V!M)^7 z@~PMf>rgp5RU8h7W_ofm924JlU~+@p#F1fA*u)SjOGxl6E|2 z8t#{{^fDBa+?FeO?lE&xr0%1%&^KABCiNSu(StFOK8VVC*!=Xnr+5arN3B;kHNofQ zgQ5GSB)=R)co4B&b7(Lo6ULV648)}VUn$gFs==5Pv^*)a8WV@79~V?GuLonIey7}$ zN*l9rki3n_=x<4zNVtmwF(z>xj(}T54!a8YfpK2HeX*)wlV?;uuw+wbS0M|91(U+y z(!x&UaaHy;<!L!~`?4d)`hgyg-RhJQ*khrGHK*oDD7BpK^p;u+VBuEMan8J3-sWL4OU0 zdjA3ISy)WpfC-QRJ>(YNhy=Fri}Cv6G|0Jy;OVxRAJi$rB+sM5ZCkxW4-_; zSKn7mumUYEmLJ-pt9VRsk=e19wKjwX5vH2-Yf7MXn7~F()HECRaEGnM9g&^jNd?5= zD~chA%th?t3}O1OW~IT2DR(3KbvDpCOtKdS19#?zKiqR-qe*W%SkS76yg1DU0=bl5 z4Z6e_#F*e&?gIpw3cTSb9gWOs1(_TjFasufMWJ?~6@if9^SdX9{O8|(?=dlbm;_yC=mjptqzXCxXU60!w`La8t_!E! zPB>UBXi6s1v6I3yLPEPZ`VcnNYJnM(SN58iT&wtM0XE7Fn9y+3!DRHjjI4nU-3?(t zvV4je{Q<`0DQ0fhpqcmR*Qm0iqM{-$JXDoCW7e4tcgq*CQA{0p=FeksZr0ou*ECnF zFzb!=2L$Fvhsj5PfaN2?B2d$F>RLl7PS@x{gD{ys9Ib_}h1AhulKrE~Oa~LfAyA2c zAy8v%s)kK)w zyDlczgmAS4o8($S0hkmjV&c0=hi}AW{hbM6f-k>c&rYscyd&KfqXCn@OfbnliTa&p zC^37>!;kJ{b)$^Q89=@c9UUeYgoz9-Du2%b-BE}z$pw?Llhuv>ATYtx-CT`k4r)X3 z$Baq$DnGHvdc(IqRTqR#9GJ}R;ajWg%C)N5Yuz%os%|%82n5g-Jm=4*j>AfQqH`A$ zn%!rwcsjdI24FI!Cuw?J!8HG9F!3N@ojNza{0drwPSB4)3z)p~)BE+mI0{VoW?GuJA84aV0j>b)vs@&;?l zPyntZa+;ANO$(4tquoL{gv?HC1T3rw(3$qI= z3y&9ZscESOWGCFwu7ipH3Gk&%_m#n;2Prj9C|xR%mxEJ&lLxbyvYXS5-wcy$dE{=B+l!lkiG@F;ohMoCNHmA^ zg}yUa=SVK=^}g^%m~g|}Q|+dlqKnOdNo_O%K|eFb&S25*E$yE`=Gx{66L*Hf*SYjZ zf=P6-zyw1u%mA1`pCy<~a<-mzUtUIa@UVo*f~|q~GCEF7E@;rz;py8n9#AZC%gz$da1U63AkPh6D$KC0VIB%pmmf5rA`ksf#edYCYQtEwNE!n_?m>bz@DuhLOeNlwl=zTZ$g) zD)rBd$&UyVEEP1EY+}j{CPS^wPOf!#v@>Al>cWK=9}9$Vr3^kwjrPn{GcMnx`Co$> zHm7U+Ao0NJFP&VCfyH-LY^KKW8~6k9ODI^gSJ_LnXU2Uufx`v)3+8z?s@FdZ@=RYD zc(dUR?5yNWT?!zq0S*O?K?d#pYC}wf;R&WaL!HDos8a4s)8UL~>Olt+9xuS)88Erd z;zzelk4Zi^L%Gn^80vevt!*<7OeP||KhlSAGE>#{(~FHTk%aSf36Ag$M6MFx8s5U)KdrUAjy$&WvaToY){nu?wN()SE1s}T|Obn0(w;_aH zd$Pe*7}CU`GT&n8ZBb<@in<$O0tJcqR=XM`N{uR`?8C6KyDarB-}j09e3Um0(4;v- z{N_y)CJ+4hUJhjQ&-mF^ng$%0zKWQ9!H{Iz#KciI1Y12&No+2EP44}`)L`s2oWZD9au2JLt`Fy zfXxlbfgSx{;D4x{r~;2a${RMgy=qSkWM-mHlu!HyCBlTPU*EVThuZXij{j?5QXCZ~ zWFSR&K{T)V+qoOevKjHw9kyetBN47FTd&Or{6G z#I`OzjV%df^?e`P7?ZCPwgc5kF?+#dflZze`vTRC7-6 zKFrEQy!`}8(xg@AA&^sD)Zz2~n`07hE(iNq#$=vIw;xC#=*Y;`=L=%nm^}MB_a3I= zUbTsxBnvZom~u1vx@x(1OkgJ1fx|MggKt5i>gVtChms_AGEkX*l^eVVvSCd0i+*mq zONGL;;7SdUxwKtu_V|VMAHv03aDc-!~NIxG^Cy111GT1t#Zwbr_`V>t_7SS)=M^ z(ED1+9as!vHot#}_e3GZB}+nw_*DypxPO|LqqP9A7Ry6u#N`usX2}UgB=v4BNLPWaUvYim(R-I_R zLoPdtk|bSBvikMx(3lVs4V_jVliVP23w8obE}c3dN3qynb4d;}C$!LoADi<-as#K%4@en2l_#RoyfpkFuCj7W(RO7KN`I@a@QcQWc zZ>vwXQ<{-Z4MpJCw9%B~u(0jokjAT8aktSm9`A1f6D(8Tcl5ioe~MPhj(`|-%&6s0 z1rxKOWA8LGAeut35Uy$yFu@lIHn)>chBmHi!`7$U(!q6QrffNs8Jmdd&RW{_wjP^Z zEZ~qPRG%z&eO=>+n#jj)*mr;lZi?^2BG5|9B=~*R%+{?5isi8%erD@>uVR>vwJ8`9 z&g*Z*1p^cG9k(#2TE)6A517Ch9`<5_mauf zv{jukX}yE`0e2djmd!i8tW|9X5y-Zj%GdJ_CJ=EGqDzpyCrr!&zDO;xCR{fBU&Cww z2YsmfZIin5&>A~=T{oD}PdlU%-$XXPeF~Vg+$p&YUfj|R-=~Yc66Wz5`pM2otnDjYUJ1-JPw-vGkaYfC-kAd2OjO8`}xD z_n#cb9SWge2w9B4Y(hxytxk{L{T_#91`MU`j2(gOt5k7+hOn5Dpth?Gw4sZYu z3x*DXh>1a;qy(a5fr{q!xNF5e(UJARh8BL$GiZ;@K6>QQVufhPzy*D{he@#O{6Qxe*g}{~fdc zz;*&m^7)OLyICcV2`*RkA0l>xN$&0-i7=tdxfM*%s`mFcRgJ|)FGYiiT!Q+Q$K*Vp zRX5Y`CbhgY5HW-V61hd=a6TbS2n#B*Elf&(6*O+ALfZ?Nye{VKe(z>el;0OcBua$% zp@qi;v+NLxn2;%L1rsoWj=lxF^dD^0`X+hk`3V07`<0}9zO525(H%_a3tOHhGR5LM zF>lm2y=2~>fOqvV!Ni89;u&DPL3fUr>~YH0coEv=m)c2`4lfy>BSO7JCL%B)@F^N{rCnu+hI_^0VDueS&Jj>WC zCf<{zn2elY!a~YQfre~ETfyW{prB!P%MOeQT@CWFkL*6pgv{1s@+fcQtDRtCnk4#7 z45E!N3An>d)?gCvzkY-^$sg~}Oc)bbDdzra#!9HE*1t6FhN+I(EXmqFUuI3xX#ZIYtu%UIM1t!<9wSrV%}QAm`C||bbkt& z_C^+%I7LKXsRtat!lA^?mnBTOugRJ9$+TAv?)VT$jGJYeYs-1qvinlP~ zyiM$cUF<1Z0h48z$jINq2wnM-))w|fgabCJ72nkJUr^X%GSTl@f-q1}DSUDRhfOh= zTnLkSWf54U9!$!5a=FLb9lqA5Fy!~=kQdrXgmaRWZBNPp^F(w$`vMJx_mSG7X@Q&w2OaS0_ zZr^r-r+{dZzYD}W?-&!0yN$vEI~ue%u@m&YY(n3cT0v(Ec^Lh_vj@VY5w?#F7UV3GWzOv=hy~=OPg*2)CoNgD_$z6!MfbZ$nx* zZ{SZb?0|T*58M{d!kf;$ruTVEi5RIm$0ULO;#Wq7C|vm1#0hWLrErqG{!A;pstAu56^*ZOA2!Ho>O(ZDL}83EJ@c zo|@Jq#BlI%FY$Zb0(!SdG~8XcW#x>lJ4%^_?!AGXfHB?86b^?aM19NCI0SIMr10S| z$-c6@5yHc^O-!H{Jp*WV$|2IB(!_)XO!hXBUGSkfVN!WSdX`OZE?IC1{NCC85D?u2FciZo2oMR44F9J91|C~G{z7&I#O1KAIk2CbMZjxTxJgb zw~=bMp^gyfwFY7|Z7y8Xn`2_Zm`OVyP@~jLX*r-H&ILOXrT#$1>8g=ym!SnaC`sO= z#UOq--y9PYScDH+!RS&9@)z-;PS^}{Bh^kr^h$GT zz+--{Uo~xR4-?k!tfl0#NW{dZCHD1uCK$Ao*t4jleE34a4XQdH;g&^vXg#HbmL<`bMqbV>Un5_Y1#>OBI^Y@ER{&ZE}vZm5t_4Hpcvm7CNEm5;LXhEeLn9O zO{q!CjyAvqALE01C-Nbs``CJvkjrM{BIGt8>udJEM^-_ za)Ud@o0Ea#!j5v@s5IvL@7SPI^BzoMwgh&C$-GgPl(Tg0$meybDYivSF4(v72y@x7 z6Lo$#Ogf(cx9U;cIOI}X8cdS=HrUA~^J_aU>>Ye>+oGXK{?sJxId%6mi8jG|2!;)r zyRs9jiaPm5gn={h>w)d{ofMNOA>M!61QU0!ws-I*jse3-_MA?E9Q|-}ACb@3R&sWS z3AAb)I5kH7J9Kkt9JhiEChakD6HG7>w3w=A)QH2^xI<$&KfoHWP2w@A4OabpP9t`` zRU-C<2^wPqH7-4x#nN=TM>C%`?YA*$(r+Y|g_~t^>JQLtBsi1G-{8bF4$x+m3jai# zT#r@KTKx8IZcASTE05M=g14BcT_Q|ce%NS{bxc zr!tbX$(XlPB4k)#lDX0snFLJm24L`Hw8m7J=9+w}y+|zBrkI?Gdfg47=u)|cY>Na; zE<@@n#Wu*Z#6Mz!`39V>p%ul6rW_(*GHThW=!-s>m8Sza)ZrrA=fk4|Dm z&4I$HOL!Z;DQleEhElYvTd?MOfZ#XOyFx$r*oT1iuP6K@LnBPB*is zyTim%Ge528a)U8%VZtK3VZo?W;cx(5QVK59t}vlCDoa16?I@T}Pk5?O)Zei{+G19l zS#)^1ik{d`ypJtI;!V%oY{SLNL9+Od1jyX+67jGJp=8mJup=K!Z4+tn@A>Rs@w5P# zI7&XX1&$VbG^<2uLs<{#&`M593=gt?Df6cDc-SqP5s&_eT2%M6iL7@o)2nHj{Iiv^nwK zuj>htBEy3#Fezsq6Y5+r=|V6$i(*y7n;Be^Od`ePOI(XjVWd-EqPPL!h}pe@WK zab3!Ux1ZTE_w#e_Pq^`sE#DcWpULn;C8}1%twea#$*CQo>{lVANb3t)mJP&W`BtMP zZ3&aMGNDCm)(I9-QHf{bRMbga?dpKpW^=URn56(Sl~0TPJcS5t9M}Fh~N?rQDfGq~kamJJ|&$Hngdp3F&gnPV@Z$SBJp{QNbh&O$AB9 zIeoy>cBYM;=na}*QPqhIf=MujPwMBAe8qj9o!tr^H_KXwi4_s}7zE>%8tZN)-%N_W zTE2n%)bu>`&)MnE1&n(>`{51-W6#>L(u)UeC5@d-OL-Q}A-8BH_i1;-G-^3Fgvls= zqGx^<9)ronq`6CVL;g#v3F^v`06kP1No454#bRbuk(UeFzb(A9q3dT@YJoASV&(aX zAB^b@BcjvYVS*8+m;7{5#-0`?G*94VmUA5?-fnsvJ8{|Mvz*9 zNijzDdAVIEA~%S3c}h1sVbJk8pV(-%5z)GL1+n_g1Kyw93k`J6XA;kNrlecVSjbA4 z+^<^6+l#2Q5TSB=O?pmXx`cj$^b5(u7iF7oCUAV}bdQahSU@Bw!wgS>S1ON2=01=Ogdgl;n`xE-1hQC7Uwgg$^<5cn6 zZkt>Ry(-xnQ!durG{vHUUV4Dkhmw<7g03syYqFk>1Kd=awEnE8P0pu`<_+93t+R#j z^ih1Ok9OMh0MRQ>%3m1{RP7dD*RF)I?2Kp%vfxXoHJ+Q0u`uZ^3ox0N+(6);o*g36 zaPdmO>9qbDzc95^GOI9o6lCp4wTVQZsIr?ED=`sogMHPPBtfV3*PApyq^@0sNo7bR zP`68`oL!a1)`scTli8BpmSh%mU+6n6cKaO!6ZDeK+(fkE%UC)%TFAH(lkR0)gUVN{ zFqz>y!-NUiEot`5kE^fQz?$}lWq<4~2C?Y1a2b4bZxK$!UWMhEJvozVg`LbY{$x2V z6;vjxvEKty90HRb!I1if=eOd$RBuA@^I71;I@wthY_f=O-YU8Cc&6Lu&7X0<=Dq}wVFykKC!M6bXk ze?klmjL+zQROb&6yB_8X4Q?}mqzQv@v5c|0gHp)l5q4RjR=PuZ>X*HQ&D5`u!I(To zztj#6ccxnm4jC~J?mqsBmd&Imyv712OP+HWIk2<%Z_z^^yHbiVLA0hfSPKV3Jt9o3 zq5;uAv+P$HQlFy~5Oah353v>cIokt;(@zV(Mw}M2>gVWT)Nzjq69>Vx^{arT%gaSO zfW&7gg^7e++Pk{7P{$K~c;dMPQQ3x6!i47b{4}4!`E)Se-L|$Kr%pfm1m91Dr4+r` zg7HsbG+r-R%U$k1Y9ds@YGEN*9+})iN}U?AX^_s zR=DAacbjPv1RAOAw;aeUKR3?*yu_|%%Sp7^a2V%3lp>AEhyyM5YKN@+l^u5lN-VW&t`Rv{^Y6ZXLOL%Ad^2YjJD)le@)VIqvYlU4zNV889(mCgmvq`-F*s6TsaX z^x_8-104$V2Qe6VzyvlS{-jWZ3Es~f@yn20^oXV>=>}Snt$V$2|60t|DK5Ea*tMhn zxD#e{d}ROtQN(1VMgWH}c`rG1?6%v_cR#775sO1*yV*HSS%AsNJ_IIsd#|n^w@dWK z8b6V}513r$<_m7(M3pna#5IlgvN=$qZN%bG*_H#s^Iqp-N)HWly5ljOBJBziYcR>* zhiBzig}vk^PO!}Zn3!}aZs>s4*Vxw6x|ry83&2G7%v2r|c-jFzrNIP`w8jE^S=Y{E zG6y)oq-=_PpD@7%6)I^e3p>HIVgM$w8VUzHDd)WT1`cZUpTQIU#A8Ga95p7L!8R(V zNg-eY!uFnZ6sxJi_&YzPrxjNROn-p@mJX7kxb<`T!sl3@R;aSsOM=U zgwf^vI&6bU;Vz^V*>QP}6^PiX`dO%X4Ch8H33WO~bHOPax3hdo1@C|;S%k?)_7-p( zXWUV6>*q1aW~azLYkkb;h%k9uvy$O};dUh^^qdE}wK{*Nf?&c!H~~Y};xQo@JP{_R z%6BDBD^r*c8-5Mp6T-}_vslo!6W&XU<&Q+@r5hGT(p zDzM+>IZ7!3V3OJZT838m6T0BXR1_{7nWmizKF81&j+4_CCigrad1!u4^Pb%Jw2pZ; z{P!M$R4wYo#DyZWh>30_ouo$7B%9H5r_Nv@u#+p#puyx3Qch@Ty!i9Lys3KNkPQ+g z=e9`rwN&Rbp+o39$yno3qiO2evUchew|c0;;}4ibOdb#>cW6WXN#NM)sT+2C3|X&k zdMaD(CzvQ3F-bJA{qE7$gbDa!Y8F}nCISn8HfTh@BQ*+`Bq+Dq-+v^`7*=7TT$(H4 zR`2gs=N&Nlkzj&Zn-BmQbBH(kpSLj4`&WKRi-Rz+UL~2ta-6pgiFx&P*^QnEs5-N}$^;YA%e z52oL>a?W2*5IAEy37C|TOk`rETSCo64IGo_4#@;%TGy?PlvK8=0HTFUU=?P? zQ^tg5FVRlQq~bw?-;it#;d62z-4ZEcg6={~vz{tnXbz~BU;^GWvgGpJq)?I0=Y_-Z zj4&wz$H1`F_#qR=mVkLJ1AYW@jQEe502Wcg6E1cJD&XcCj0@D3LHmPx2qp0hR^%jAS0c55TIVs^bNt} z3uLA;I(5%S*-pwdFNQ6#Y|%K0(Of9>-0CSU;P-Qh?DiDE`w@_=A-aLR4_88-H;RBX zx|?lHLMG~7B?V^1Y@QfZtc8F>#Wr0fQNpD9i6m6~q3|-Te6TQnT_c!pl=hJpOrnI4 zo%VJmUY8c%?)m&#f!(jD(nAZZ<&_lQ68+Fx4XlYO-tphhrHAoOlkgdssYn%%nL~?Y zC(+}PYNu&uLIF%`v`97`nMX}oN%O}pYo%OfVne_r3z(GZ0_oIg4^Io2e1VO35Q{L0 zcHuFJ7?Id0;N!EAc^JYSh47)+4!PXK6krlRlS3<>5#?+$s@i{IFQ>YUPBOc8ZwOt0`&M-$gEm2 znvme=7PoBWg~%snL#)E4fSG0ES-Mt}+76P*Mw`7;+F z2$I>5umY15fHUHlZcF00%#la1lkrhvaz#?&eLpOSOdN&7zynMw6Cg-1DLKrT=#bnx zqhcgXaC(UN!W-e+a8spUv??Dg0;yx)VN5PrMn}isFvwFpK0q&?qDAn&OcEqQ_m zoRF132Sprl*%H!vm&ll4+bdojUL->eV8nto zQn`LQE=+j-K+_8*!Q`ZciClic_Lqhd^#WvaFDm{6a{+(R6zG+V;Y1qonswHy;v^`sX$>^;TxV3HXdMC3CG zWw?V~`b8uW6PXe)cy!1Mn3cp^NAkct+=tQ%p`-Q|M2QcpUBt zNi@PlzsD2aPj8T=9inBA$kGHb8PavaFxSIpZ%HC&2NV2I9mqRg3<92P{$?nEXze29xo9NI3opiOCn90ty`lzurff zgjpJkO?CppOL1~*i*TRi2TbT$j;BAeA+&HlI3_c1&kZKOM;Ztk>>yZX7zZAVVJ+K; zQ!V96!gi2An4EGk9F}8(y(JcqO2PLC!Ydm(2J&Wka7-rZ0gIG@Yv1!&K8;Fg$6b`8i7U29ECRP^7Nnu1LdT;+*i^7J&fxHRDE0&sbikWI9tdcG740C?>wyQs9&h|C=jud_=)W z0h97DScFz(M1WKQ6B{L@0Aa!&L*1ONX(SMjzIrOw^f(6zqg-Ard=_I~>ieq_UlylvXZ0ChKE$S-8N3 z%JgF*sfI9-CjQK!L)udXKm#>*&DAOPufl z%Dr5J$=G8;E;fIRU1J|Z6I9<@?Lje#JLj{1V3m@`I~2#j%9d`>B`hT*q>-0dMkPsI z*>%VhkCU6@{PCptNDtE@5mKOoVuJSXu@u2y{Fr0m0KI9nhUz`HwDtU6X5n&Lc5=E( z9pW|SCuhFkzA6K|?SD)NFT%pc13$J$y{euEE3* z4^PrdeE$FkICdJN*%YNsv_@2h8V5K#bPtgzoxQSHd?1l#z~n(6CO`!r&bkgJXeu`i zcXUn0BylL!mz-T50E^Hh1oU9^V#1=$oKio*u*t%<52Ft>Y+R;^3wTeJ(4r(VX087+;HcE*yCH;=~=(Tj=8aUvSCc1;kSrzd1XOm294KTq6@^KO> z?A;C~E)p+ob=5JL;dz3x^a0EU zlaWF3FVoI^$ynm3o@%G=~HeE^yMq1bBH& z#!~&@n9v-`_np?o7V+T!n5L7nkE*xtpj`2`GntE4;b8%6K18jd!lbd26UzG%qZ-I# zat=Ge2T?+m1Dr`1Ar}J4S$m1_29xO>cThGT`6)%HSGLuFDF!xVmE>fLP?UCSy#OYT z5f`%tV4c};%jFh~Eil{5*#?sT}h3FbRijI=gQW0F&>V36v z%AcS(7S=>|u6Mwst8)ZZKK`{x#A3dbR4dCQ3%OsGVMw>x6Y$ zjSQ?rg5`;67n2N&u^tl(Q&X@Mp|gWxf?4KISdMd=Jtg-v=pLzZMue63w7zg5ws6)H z-Bg>=%k4Zp!B5H{y@SbR_CBv4i=CigZi>Jz?Br-z?KKp{047-MfoPt-Sb>T9c^Ug$ zDDTg$4|Oz{7q5gcsm&{VnTi8+h&tS7QfXqYHz`9815-#yk6QWHyD#AvW)1frl&3@ z_d?&Hg_4e)DD)K|7OTGx#y3jFsy)HbYQ}hx_`4Q~o#dko{HpNj+|yQBU% z`-g{d_WH{DMh=aM^Kw8ti&>kG;Uqi8gMKDv(DNCjO5g8d;;I^Zs#B6V8_JiklYog8 zZiV_Ln`7qYdB69`>KtA0kQDj=9){c2E<}8nKOy7ghB3@w4-u399MciNkKI-HdD)~| zGq-0<#47QiOsL5IQ9Znhk3#;P@#$?>)?&Ap$n-~dSQ5b`3WdP$rtRC9Gor_tAW3Q6 zAz^LqmkYla0gS%G$CqYhUB4GE1XP9c%Bs_gWa~w2gc>*;&F;udiSE?n1!UQlV4`Vo z0ZHd+?Qcb&a=GDwrcua@>gfmU*g&Os9uwzv&nrWlaISo`Io)llA0jmOivWeeI#)1i zmTn0qWo>A9;aOW}!7@kUA|`mZyl7$4=w2dt!k@-z(kN6O0*RzeFAd(AFz6NuEyd&& zpo7!~4#XwpX#z&if;)CH!G4OuY3e)g!hn<3I&Xh@g|n(ezC#3!2uKFZ8|@{EV@o$1 zlgs)IK}R;Bem8h%$)%qq&W*U6s0!AoZQ({!*vf}KO!S@Bm0+tmG$u~;nc|c@WT047 z3jrgga4ew&3Y++KS!Wd)=A=yy~=ZX3Q4pJ1P>3$At zQ+;;AUGY_K-|1j-3QkphSTdxJ%wS6ia{?>fNY><(-WoJA3qK-DjS3*qn!{2|Y-v63 zZSbB?FO zUAm}<_u0Oa zY3?diW6Ds9Z-x$yN$l^Pk(CCPNYr=8PAc{pqySdX$VTWEhoUfp$<>5Dr?h~{oH#ky zRkSFnAhl+>E8{((0VV_xHi)+9T`RVSNR+TMQ!kUYe}h5={*mO1)2iYGn0zAR0Ohqk z#YzDwPM!u7>|_ZheCvt3fy|W*7F9H8#VL?x4&mThQ|geq%QMNql&rE*yi6MX2gI>L z3)!Yzlo(0dB!WE{smv#H4f5TtWX zG5M`394vcOe~M6qfNC(2seaI>!K9*&M89d&pq zl>-c6DT20$Wge4irtV(yitOVsq`hzb?i}KmL~=n_hN5yz3S*aa2efI>PeKFDamOxF7n;;RktIx*E!_ zVv$+r)b*jCH`Fvkuw9W{F63TTxOze|gkN=LH=$s9ZoO(Km}p=^K;NgK-%#PZ zmw1rS_8ykft0+!;nh=w>8E9h?Eg`o2iRSRK)>Au@jtH1I4xm?A3h<|weafKIm`h>( zjdxq3d-=yBcWEbX4<=>M8N#6KZmESyYf1K;8+PIxv9mRsyP)o6GgI+Tno|o4rB99m2rTJeN_Y(khZ z(fq8FlS(&gFew{Mc$Z#rI<)WbWCRQa6S@hsut46y#+cBLqvJQ9QnE_BI1-`selQ6$ z3t&QRdV-z&_&x?nv7~A$qb_Ia1QW_WIW3H@wdUksXKtQ!5hi#|86Yqw#b42)MG6T- z5=`KaMZ8w-P9iSMKymJ30tG7`c9eQhYZqT3&@vd|3d=7joQ#KJ683X^4A>DS_+mL! zV@$F>Owe~YpYAk4B_cbe@0?P|Z-Fg4F;=}G&X zh~dvHeV3LnAy>hZ;c?eaMwT!^!HSA(1rtm$mJ{iA?*TOhN-#N94l^hT6_1HjE|+UFI0wH5vYhDZ+;h?xu9lGyt{qKK zPgMC>uAh34egOrTz>Q?MWX5ky2-Vh|A9f4;%+Z99?1cT6U{a>?8dTXbCZArow1sY% zdU3!+hZ`}ZX|nDDuSiQjM+)>0UJlrp%3q$TL%IO7Bp$TLr08SOn8oCb3Ev_BCbg3o z9h-hdj;9V8XCWYGRPS9YP{m)MK=vLw6Wx~+QrIx0?^q&Z@-Kl_BefXKa(frC(8*1<#s6>%(m6E{5p6X&m3KMR9K zF!N%nx|n?M8DvO>Qw_leti*VQxyk6kr1Y44YtT~u7gDytev=T+vjD!!mJb@>si{69DjPOp2OFa!t9CQv>gGaO|bKSV)AutjspvrNcU|7;L!L1>?BG1LPt!JR5-`{F{U#WadvY0BzA(%S4~Ol%%&A6 zEY7UywIvlJ4oow_q=-+JsET;+P~_U@1x%i_StRg_BqY%S5hm&MeXOI8P0L=QYjiNd zL*)_xm6NKPwAzaG8DpvnL-k-tmY5R(yhGqm~+8+L3mS}Zq7$-^*# zR9vHdcmPZ){QMO05j&xLGK6wg)vh0tf?I5?ke4Kg1CwB)Yw!SxO>Jr?Xu*lolQwuo z%eP0Tw5zahOfmU+c(!#0NAQNFk^{ZUmPA9a#0UmVlFMj(7GYxhG2zLfYB1p%l^5~T zm%RE^NoyC{a&FRqFL#|2X^4+TH&tdGJ4rF&tP~R)d@TA+k$Rpn?-^$K(t}>WB z5)yn!IW*N;bHR{Yd5NcI{7SZ5y1agi>uVs3&%M!!AH~wg`Xf!7uF7dEF}eI-yo|Vt z_?T1!*O;DuFA^40$xd1#Lj_QY#u7~ECMS~b7cowOiiLw2pHWf&7BZLs6T2xUbZJ_c z_~F1e+0%DYkSfR%2*2IlzD$r*Oi>Yj6+V2n(jVscXY8uZ=*o_dWF1`2jkioo#8Y@G6I?PMME;=S1r zlNknquV$l{5tCOYc2!ABy9(>V2`-gU!aB~r5$A_@i)AQJU!EP)34cX;|7MQ%hEeVqgt3Us4 zo4RN$%eb92C2~UZOm~}$j~K>fyV*8g?g*2_6lD`fn1uRE={v;+Z)Rqn~Cb9`en-tYq+{?^)wuvoBSk~T7CKcjhC;l2qF5I)~sne0uN<-c=b}1x8nEZH~ zs0`rp=TCsiTZ0QMJnXB?C-<_S?r_-XTW`7GB@SXik5bZe`O<+bCisRmt{!raB|~j{ zkYG}S*LxL~$6EAYOi1iFCiTXtOg8vIF8eU28^Pr0t>Loe2%c?RV zh8uaO6nm54Wb+^JB^3dN(twE)OoY8HhuhKEH?_zTq+Bu#1G5~dDIb9>IHO{QxR}4} zKJX@z=DKEk_QqU#Srm|WrtuDvB`vv2cmWg9LUPzW!#x<;b-2X)R3rOl2$Q(G8!9z{ z$vNK0@R(dsVNk9Lx;)xqB8e3%tk8hl?1xtQW4z6>dSkAHr?@|8pYTOlHkO}}bjIW% z(&EWER0Jkfh*9X|n%u@UBObnW4=YSf-fVj$^{x z&E3jtkp#M!B$DKis9d*&6f8^*J`ouoEnGD2a#?K(Nk5 z@u4xI*$EDppML;MD)1m-OcmY*k$~0PVM2-dLnIo`?m3@MW8!`f zj3m)m;0SgSVS>xwV~m8GMrBL*nlcfl1tAzPCSOn*2#;DxIk;7dF%bi) zH-;pHJ|AO3^THS=rX;!?W_ur4FZ3T`n=fzdFvX~ev!?6`i8UhbglO}_7=6YQ|h>3l~nK5y! zNpHafJn^M6!X#L1ETy@v2rOPIUP?yWer+;5$G?_n?lAdH@$SK$F`?&LPp;0)Ix}ET zmdWH4XH4>zG09akipio9^s-zpEsNN5m@H0%2|7&F4>Vz7=qYP+)+{$JV;XFfm-I z{70F-oTg+aPkx{+CR;HD$KGR7iCn_Oy`+GPvj!&jt=WYBh!YfjCroOKNp_|M6Wi?r z)Y}FM=dH)YUM8ou_lrkl-9*M-I*D0VmhOmX9+Vs;)OW7xuaL-g^1Bohygn&JZA6GL zkz48jR%5$RsQXt^BEsY{(;?;s%?{k&RGRIC7}pw34-+0#vDu^&`B#3uLeYeZhx0H& zrC2?4KRd;<*k3Eg-E2%@bX< zI=e@VXJGRBU28;#o?G}S<9gUmWDG|=yW$l6%n4&c2Ld|F7?U3c-fsU*qXmwwC|b0y zQP5(NZ|~Eg63CAybe0^&=Ae+4xouiQnDF(eAF9Ys0`P{KA)>#2L7ERzv2li8|9YSR zKG)|`gZfYgeTVD>H#x~dUy_}ix`L4}m{dq9+czkPftt3J`S#3W;^&<WlK(#XLlheTjqq5B# zyfI2Q!z~50(G0c|#)Krl(Ic2(ki|!?$dt;~SU!BikAIwyj=8TLCa-qeta6bfe0;VQ zrlQbyfXPJ(VGfh%8}g*XRwmlYszY86lX4s7_JY1CXjMd}%uc}xZ6?V%VM1!eq!D3E zeoh_NEp$*0C@(f_C$))9!;o1WO^nI!ts2*mJ%$M#?(ZYOIzf$bnLSLfyNEI20pAsd ze~JH!>|~u_l0SyLDm$l=SL+xP%^Ub*LD`U!jkx*X zA$`B_1SZuKCiyeL#0bmc6)-uI*9{X)(1h6l3=}krZ#*Vq`VN!m+YyAxbiWWKb2_B| zOu|!cACuBx%|ept!N@N0hy0or%l;ITAJV9OcDkhU%Ztc1?utqIHUDY_*~ug((djDf z_UQukDF6CvovnJwy@VbnJKuNC2QcAJ`4VImV^RVg-XSn1i*v^0CrI;`97CTE9}&>y zn_KQT3YZwWpSE)sDrl}S5mdM)mVQTm{(mTrCeXBR3@7e!0%vG!N>$?&)!T`C3OVqw zn6%%wUs2!Tr%ZFb!dewN*`?sm@dabweAr3jBZmi6`I=D297t2!mj;-)nJ{Qh*RDpE zkbIM}#Nh?eCA-$C{m*>Fsl9OE421;~`Xx8&J9K@zgs1rK$%W6~AsZ!0U$f$cO7V@M z^6ML#tu293?ZQX+x_r$%36sUpKke6#Fkxn>^hw_81QQ+G-iN{jsx*p3Hr9M~O&Sv+ z84@WkqSFvYJ8Lb`62*uX{fm3j0WpWC~GRi zQE_5S(Ag_0ek2Lo;yZ)D&zQTz#MF+ZrWtR`nS&12HH{1|$Zi5CzEPo8Df1T>}pES^xa) zHZ!={#;dhPEAI4St;7ylWw-0Fa@Hxg`NrEs*}faX1YI0d{7_w!Uq@PY?1Zv~JSO~X zTSZkA=bZ71jE^{M(Of4ibt)keHY+HYVDDxuCaXrvey?d917wxbCaZ#Yb{3~~O<{Zk z{J~OE*52_fzSE140c?&Q5xDd;%|=OL|0AlDt)f5+4*3 z_lzzLCO43=py85Fi>shDmIR9A^NAJ(n9jI)2>v;gjWPMu7Kl9jx*5gFHJ;lB`Q;#F zj9^kIDj0|#2fE-mFk$6(KKFy#2_6-*j}f4O_#;fd$D^kjr^OK_?rBx81O+asJkh$` zC74KR;#y4b9Wg`crRP103GF!(TxhbrV5YeeP%-6N!lPUfN76oy9un60uz2~xW5Vi| z=&HcP#F%LJ>G^w32lkgs8%5z16Evqo_Cbq9CX1hVF)?B%&9;LHEqfK32$ZcsOVG2vQ4j;3$AqN^O%)23r{gw zIUEc!v91bq9fB?-!{fpYNs+3?UQ}07d`M3d2*~hu1}pc!g%alSgJ2S07{;Vx5uzO0-4I_PV=+;oFhZ5x1ILMl_KX=5Ujqjz z=7V4oEDsvcfhKna=t5*-OlWUT^htur0ylb@xX(G8p%mHENTzcIvxTzdDwe_y;AdaC zqU@u9NfHoo->62g#G%_$nhjWHR# z4agi8%Gy&j$O?-*{|9}>j%OF=kaw~v|&tE zNn#PYQ~EUo`mvG}ljHghE*P{y(;sRUyyga2UIbW#$@XkXWzt7i*RsXs%5Y9yAo8(I zNU3Y>6<@b^6S|>{qhPB-QQ0kJ3_1>hI`DjX=kaCtF;0;$B-!-gB%H#u^zm zNC_LcuSCTIt>wtfB@AJ5ZCtMP^A`#an-SH-mx(c1Xgko@g1pJgvM*e;=Z9{DtmZkM zPH_C-Yqaecq8_Nh&)N5DvJJP?p^PeU?R+i(nV^fGY4)u{n6NcPiS9|;kObfblZZRy zXuqFyMH{4Y*zdkwj`+0+@%;CTY#n2wqOJ)(v&rC65#LHN^ZYeM+;E~1t^%t;Ou}Jy zwnA~j!w#Sb2?-{rE(-s~t?tqbX--U3h=Mhwb5aj2DOhRpd4|K#f0AP2uWe|;tdItl zJfMh-{JBEFY5E-D2>8wER!SwVM}XHOz$E`el8@oQP(qA}FW}G@T@AzPGZCnf!ExFP zj#5c_om^pc9NS6qIhR>r*g^{ZBx-4ao*r-@OdLKaznN4_9_(EMli#6QOe-D7lCbNg zqK&~l16~gMGBq+dLN~`pspRW&`N1$joBfr>GgFUAa3w0Xgh_NIx9N+1T@_g~T+SXQ z7rI+C#H}Rp=-@wH>D9>K!mz*2^b>g4>U{=YAURC&(HlejNXX>UJ=xgYxr3^2IUjq~R$J zguR~J$i{Q~Aea~@OMH(%OTnd;Jr%SNa<2eZ#wIMSAA5`mEc_%p^SbkN8g%!K*dLJJ zdeTln+5Qnh$9Ko_U2I@C=BinLmYsC!q?mBKFlyz$cg5T;&p(jzU|>+ARRBF`2TUS< z8`&D{2cc5}zd{Z|ZK1OLEdmaO-91YEQK%w?M%_pha>SWGmxfBT7Dp~{xGvP{KJ&O9XeLP=kj>6F1& z9nYgW(X<9kXi1j3*q)^4DGpS?6J7x7)T7nu>=3Oahc=j)1~=zQdD?G9jK;itIHZ|+45T}IH~I*RoIERB)L?0zE1&5aImCP<}P`kA24bE zF<|26M^>#==e1?CZyoD(41wzqM2My}nu!|zWVy85F((=764RhrY)_L~X+(}n(==X3 zF(!0G<_I?5xbOk~ZN#EAz(SKShslOoRQ~D?m_(0h3ghgA4iOi4@(o&2QlhrHW)tNO z%$Wm@zeB=#=r!(efiOY8s(te@9Fmkn$z$>qZ?t<%-25o_WtS(FWjn)8R%t8xnDAJF z>8%D&O@$lFoIC~7foCXv9#!RSjY=g-6DH_AH8Em>x{VDU;ss3b_^k#OhE#Ewa0I_) zQdyQWFu_P2Q!?u!qs5+E`HeR=TPjiekwKA3D*=y$>P6eY9te|cgHOQ3m{2D@1Poi& zVzO(V{L?yM;?{zi#p6i>$C=}kP6v}Sla|K1ihy;UleU$PH~B9VnsE>&>$;_H9Pz$z zlfQbBMRsyGOz?i?AL!XnYt9bdub?7P?etb0opA2$#e^$6Lj>Qg<4wLsZf&^8Oy{TV z!h8%&=>Fp-qYnqvf#IF(1UJ5Z*FYomXx7E@bvuj3iP4-p;oMuLne-c6G2PfmFcim{ zeTD4k%y)*x{B%=j;(5lLo6`@62?_s8;9;Lvvx}D9|D;G_^4)+3d?0fuKr~<474W z`Npien3!WRp`IO!VN6)%w@w#7b!sVCnJmNK48lS@#>Dl_*urB-RKn6>lCI{d2-$Pwbvkdxm7_2X1uDc3#st+tG)yE1W(Hd9?8gzL%LO~h^~af}dt6sE*AwB* zz!iCagwr@}+Yf~aZo~Z&j8{0~2;`(FNrLKhtQzviLrE()g)ithrhY6F>-Af^#_M5% z@0RIeSMJ)}2*;}3T_QxA?xgRGO!=wQZj4!m%SX2+^T#45avQFOPhJbbzwBaCN5!LH zyb{bdK~Pr@8&^?P!bC{ch>@LGOj?gg^JvF|4r(N0Y%~dtNE}FJC4#E_Aat@!ML%)o zsLn)13~XpBFMcHfZg=i-8A<0^2SEd>P?B-=$giD|NjJU@dFHG@-zi#S?Igb~ca=gu zaEoB*{9xFK%w94v%7UucbkkTtiI!NChU@Y4k7NK+{2_YWkxGv3OHZI-nv4BkPvke5KnX&rT!yI>L-2ECOL&z|y-w8g|~Tq?rk#x;-q z&cSPv=Ob(3oU6Fgr|9^y2>9+O77}5yUSDN&EU4{VeBxhc%;M?SjLS)-rZElK_x>tq zasl}XCJ!jDrb;_^a}Jm|lkpV+>&i#Q0vC;k%ePLq&jzwblz; zgS?7#6*>|V11=v$m;7RdzM+xm=nR3Anq;_HAn9tZ82mM1HA%G$3{#kxhyk0gTa^*! zGXJ2&Qd2Qn&)14VnjA|N=_+(2CN#fa$Cx0Fj**hX#HL1FEiTvWot^7jocrMV>Tx?U z5yyKJj@Ja|F0;}IVS>Q|ghDy~Jyi}79$cdgmEfX1nk{r zGe~NPl`nPH8HQ1gt|Pv>5o%0^CLZSXLcoB>rxKVHS@pMlhDH02jocVbUZko>SD`y# z63wG*x?xyzim(W;E-(Rn{sM(`XWx3OhFH2!y@V*0YDg*<{scPB>&Kdhqxyl-xvNm>FI83&Cc5`j z8_EC^Y*bs5z8iD>D)7DoCXIGl*jCxr!ybgtb3q=HCAz80vIQhBy2vUmkj84}H|(ge zR4d!>R91{)f~7M~;A(uw-D?Ih?aROym{cKlKuAYh6K+b#Wk;IEg`AqQ^y0Xs>iO{E{sb20wgaWTLqb2s&ENz=o1Q+30cL9m@&qMI66D5 zt6=iL1S87%1Cc?)7gGll6tN|2zFU9K#$;;jGsbb{MMAC-Z8sf(RD_Na&dc`yNe2A% zrmHz}j5W1409s+8Q=Fro7TEIU2%Pg!}k+hZ{ajRoi2oM)xQ#5l0T09}lXTf#7_gbu)@@_Kgz z-v&%-3`|H?3j0;^gKEPxF@?`QplERLsX= z0%NkLB9+rw%HdpP9_26bE16^T{WI;jRL%m*J|>^C;hy1#7nLhc{vT7zNMmCnd+G1| zut7ZkjiKK$wi{4)OjC0u*J8{mbQ}+=Un%yj(>0qoFA3)@eJE;-0w#E4QtIWmm~uNr zTh87as#wR=F<+I$;+#FGN?DbN++|$incQ}VR8s#hd5o)1NeIf@g@z{P3lj2tu=IxkN702d>fj9QH_S{^5Clx5Z~3bvn4E-#uN0hc>k0MHE=T^xtK(Hj(gNC;0 z+uh}_>gbLaM9@n2DB?cR{_oEf3k439`{n}Pv1$!c8|KT|aBwaleXGzmNx-SY?#&e) z_3H^uqe>o=!pLRdyc|zA@A7XnF!?W0VNAq$xhG+ahkldz>-d0GNzSrqQp9RuKV49fWSRh9E3YY$@lN z4}*zz{BZF_5E8cD1__fZbP7YoN^$}dWBbx@GAx~X2h1~ zF}ZP*uJjhy=QapE3%uDCFKHu}Np}W2}P&8!~)$#-+n)(WPIs(a}bO2fvl& zN9-h6DE_IMnBkFU1z5KV7Y)v(s?Z0&AsLKGq`Ws{d;^V&Vnk!tIir|ZqJAg)JBi6Hn6obKR# zBqs6&6sUL$&Ws6n-TWnsgZd;9)3rnylS(l8)FrWxk1Y&iVtbUuO-iKixd`- zR4m5}pURhy0(RbEQ1SIas#|w-7>W{y7!yqiAS{nsJg9XcF?Kavpae|1T?MZ>9YgX} z7^+G9^Jh52WHaDJ3MF+2m|RIxiV5z6RjN~#qq4}5H5OjGKST9qhN8qvKBq@q_{J_g!#hcUmi+ew=dm9N53K?NzfzRsFolQ{cZLljI1JHJawz?ha= z2CmfrVNeD!CZ8dIA22UxsKuu!w&PNDf2smZ>aS8vt{WBsOqveoBQe?daY;jV2B%@W z{5cytC8Y#RZX^YmRIH3EFpP=h=GvB8Rvo=Zq6Xz1Ca}ns;zSUFw@;IYJuZ1H)Mr4h zL%N4jr@(MDU}9J%i6k1uM7f){Fjv2l;wn>^c#B%r!+La6-vRE*-cvxQ^qAl~@K`mn zJm=u)SOjsL&>do7Tr;Jm(v1ffhOs0uBmnD8=rlwn^po^LWtEh*<*fY-)pEy`5HVNF zTf#(?h%qVpn9z4)v*q=9Z-@nubEPGq^f0l{HJn4IA;S5E1p?invhZ+0890XOAk7ZQ z_}%y>5kDHCo1_(YiY)tKWG9$#oo4Q;VYa~nWw}swm)nt;=)_Jc?L?kD7;YVG*BJ*X z9Tl3ygcg~2?ySgu+|_#|9%J$Yi-}BL#UDkemsb%co8`jvSdoTDP=ZNT8QcbBk&EG; za1Xy>;I7je5|!vjuGcXng%D%%YsBlBI_|O+*bDqan4J5MH_#dc!^w5|b&vItnBWpv zB2%ofn-P;No6w*rgbkuU)oA|InD9UW;WVRY_;M6e{+9Hq{Xk2GPMBmrb1m_H`ps^i zyf2Vq(qQ{zNMu&j>~$UV7LQ5&Zx6E*TG%xE^zr#vmh~{<%O#lnRJqBAW*f$&@^xL{ zNKAs7IJ{C#%QsF4lc%bS2Nv6UX`id(ynmHqGP0uKqSSW|#sshBaOHDnC%mv+{0$|d zlXD)FB1~G-w67c#-v1z&wD>JgL$cPxm>9x@3s50kNX0%od&d*>0pC%*+M@x5rK829 z!pcLFjE3YfCRjRReZ(*mCL@FgyGC-Rl3|Ut%_lp-`Mosrx_U|?J9K|Fg^3$`JC!)f zbMZl#=oAzB(Q!0T0h4>+NVk%&;KPu*8^5TzXi^lL8`KFVxQvg{H$lKeaUgL{R!cmK zp?z9vCxWKWOakW=8(4jh>#0$J1_}_~OyRQ(v|b@b_~P)w+`!+5iC<}q3+m>8Wmefl zY%XCZ789gug@@P(liI!# zp@aV2wjmDN8c5xfM3}hFBbc~H{=z<;idZ^X;Ra}gNpdEizfrDS-?x}N+@nvFy;(U- z^4A)@W|@^w7!!UJ1QX<%q+nQi6;S+3h# z7$wvFp}vEhkFwIh>kwgL@6Fj9jF6rP6Z~cO|Kib8A1SzXE1)QZ-3cf#X>6X9*yGY3=p zI7YxEGx#O!vHZbwuqWa{R&mfdXAYBw`!w(MUEY8X>G#Gl(civ7oxDA$YXfGiRJHH5J6m7Wjmk|9-<{gDob*{KrylGfL#|VoX+e zAzyRmwNz#0Z0WvN(hK1em^6~hSTXuP8M5!&6pH|2?lC0D3o88v>osa1ptYuUDc z19MYY^v}nHS~s6uQ@NH2%2O!8B+cr^PAb|Hmrl!WwvW$Oj7x4ECcnd4QaMciJuuOD z?A=MLC%B58lZv5J7pd7!s$P1UAZ;2@V>}5Ljjo%$ zsnJkD!DPXhe1g1+5=Y3e0y%!id!)cX@+c-ITRf3W;ij1RsPhwrTXf~kXuf3J1rxUD zhMEv#at6i~C616>R&=xjFp)ZJn`DrIOqRbAOk~hjA!{h~xyDW8@buYG5p3lS8~?eP zfWm;AUCL9^_5#qVth}JUbB?@<3l2Nd1R8vX^M_JN9uZg3mEj0Egb807$=cUX3-Krz=o%|h|R6$$~iGlSDEVp%_j)2K$*uIzyC z8zd)*110)NuBrAnyF3es%iT>4sTEp=ydE(ocw}whRB06oAE201RZ(poK;TOc$H@-q zS^X!|iu`)HKjnM=qQI%>y>pe+|ssjt>BebR@7@ejJ zT!bkOhDs70V4@vNT$Bek_p$q0giaa?4n1+K0VUmtRER36YdK9dqMN6P0~*9W+X>G@ zlnPq>6W&tjR*B<=i@`YnlRwxxXAN_*nB+QJ74CVZtg=G1<3Hd76C7(`7{#&*&?dLmQi7z;zyiT-S?L_b||1z=*cBnmr0 zM{t<%x$>{3kE{!tbS}Zi^2={;Y$)<3uV`O4PEl0fu1@-xw6IR@P$RWlL)D4uu@e3C zUrP-Sw&FNpg2!N8KOlZcr@h4(6$+SK(^-d5v8B~ihwgxh3}*OJ5H!)AZN9^!QS&fy z#@>gZm$J3|9b=J4m}G^5!&Ff(o+ie`F++{+u0Qg;Zr+FQBAQUFyU))zXlRSmuT7M zM~cJb;B0SCuP`XUbO0v*(N?J~CL+6o2?iHVPn&6LS`V*m`gs^h_~dw+Pq8B~VbiOg zzBJ73J~(VD#bI&^3R=yFJ%a*FizmYc22!yWWU6i62qw0aw*G+kpvg)T(od=c6FkZT zIsy~cr~ZxN`fy+|wF?U-(*|H%;l<;D)(*aGSh zKPi%XWCGB%`c8wyXLZ2a5q_`z!iCX86|Y^A8fk>K!mqFs~_0yymV2iO+qH)GFt1cpN5vsv;)UYwRhm;S;l%=)_`# zVn9&j#Jvk9#gE1WKdg!=!(xJ4*|`1Jv6BRXUc_TUYvGyXuD~EB^=brw{mF|I6WRS7 z(Ra2uQ9^$afw)F)R+a>OLtqb2*FG4^Ohm$M8;>H}$uq_8b=O8jlUr^l29r?Cg-ZL` z7#qI>Ce#{*@fjA48K>seqvMLxQm^=MlaIl~_MLOjnlFjHca>oB-IKuIwS3$!)A5KG z68o;{P^-46$)8VPOf=10L14)#P~TIjE`68+%<3pi6!xdY0mF1|V9tgjpi0%h%=KQDnhTTTyTULK zQL5rPRpXLy89XL`%X#9Ic$_8zJ<9RH7?VPs*=43=!^-!Lhfamqr^|pRdEgb8luaFO zxZrU?=u^dohr$L7gys*jnkxhhb@A?zwUh7^7s?POabFTSiQB`3mQ`nmcsyM)gYVo^^E)FyD7$(-9PrYy4=h##L61P zViL=zn?3gQ98wmMC@<7uvZfT%!K6l7B*ux~>l+!FSqKnu2W}jnGiVzrNp7=Om@7b~ zBV{Sdc4E?RR*=y|6XA->rA`XeWtv$b8i{ez_xc;^Ix>=BIJvc!dL!GZ84PhL9W}&g z7AaJzLP=&oc4F>hd*NvD-Qy)42^pKPWLrQ)*#z=R1BW&xM2lau=N%fHW;7uvVnbWG zym)Gu!L71hV3d6k>f$^7avZ z(j~0!Jtj!?Bu6N}FqCjovPVHVU82n9ZKUi$!CS`UuUkA*!1Ql3v%qF!n095HE)~da z;^fKj2Bqszf_^b&L45}uSraEB>`Y5|czlqfI7o1IV&m+|82dW9GLlPG=~2Qy||qB<&3PJ|Ik*5oRi}2%7MO z#_Vc<4JuSV8F%ReCjYBrW-oowKDH_ULfb&>S-Wbwc{wFualdGj3+QFe2v|E?k~nO` zAjt%syY*Gnp097-HnbCNezd+43LF(0b1U3s6+Y+8&tH zhB)Qz7i9eTOE_ogNi@pDWHCW63B$C%uM(QL~}OcHxk zL7Nz>Y0>oJhb4@m8Z3ZG1579gOvL*=d8L6vL{n>id&*(wG)h9oCBXkBh1cYuhDkcQ zlR3kGgYE$PeJz-L1aud=8m*^j)_&@<5p^_wV@@xASi%+6U;s?eF9Z|36G1HVTk`z3 zOBoZDV)6?r_fZzxN%4@E8X0cMhL=z((Q0_9Oc1IKoPY^M z{MUg5lQ8#FCORHaQ@N=qz;p(S;}r$mwk^Zea~jX{x7T#YU2AXwUE}{xj)}Ho9}kkR z7Wd0mk!*(vwRPQy4MH_0#zafEvPt%S1uzLvoko~6`e;n>AQ&!pqeT+wbLQ=!kE)_# zrTd8=RP=O!ooKPN-H#P&zk2L3(Zq~a`C0azJqU#fGchJFT0>uRwIpLJT(fjZnPB3K zesScNklWiE0-P@ySW_#1)Q7^SC=y?^ZzX}W_vFj$4H($Oe{AeKlCK`SDx@F|nvCk_Tctd4-k7*NWqCtTn7NbK#Ploft_d4|!uG zsEeIr^-!ag(!BhaSijXFyBi`i0=eJsJRXxTAFgQATLKfDRmf1o;iOUN$s=Vkxd$by$*%`nOi-T5$`%cp z+2X-vT^Pb-LEmh_XnI2|JSGKRi*T4|VNRHoze+JtoP}Rqyb74mu}gMiIEUu6**b-S zI=d}j5+6W;w-X_^#_oNboG^>Yk#+(wXh{WV>}W2tsl((#mbnV^EdSI1N@tA85=(_I zoeEj?E6T`#NfpvsO4|AO5sQ0P?lleNi`SY37xm<454od;Lz(jKhj=b6tVN!Qx?~f~}vT4Aqe5OTk z9sl-hkAXo^Cdu*oA?<*!%b4)IVKLd!nZN)h#&38mCg<6DDGFffI;T($ObYGN#5cyr zt$RRl<;lxdsmCUj4XziVT&N z#=nbVFi_trhJDf0d&plOb&YI)Q1k}(N;ZHu2RrPmlj*E_&{LmMcE5Xn7Gbd4OAFO3Ya)M z(eDTo%f5b2FF)J@6KyxYbkVX;fXQ{h#Qj?K((e<4c1s^T920INoqiUZ@-yKx(hN?H zI<8z`s*euMRQZ}ueP|>Qu&rzf^G*d!t_lTA@byLbju@{cy2)Cs11i6g-1LKFQa)fZ zwXhi0j+NuHEd2Vmw0O9nq#CCoG~yH*oim&2EB-_6gCl`}i7RSeE0~^TUz6!EYnuSz zEhdoVFe&Bs4yq|%%mvO|01LrGiDBT)M(f@vnqr}YC~K1nDQijf71dsQ4ffX9TIRK; zV|JlhX*sm8ad^^EmUP`5CihCi`M%3>OdL1nAm$`^_4WnAhN{&+7EPzBs7S1o+dz63 zll^)GOq{eWFsVEy8gi~9S%eAgf@wVQrdy$<+ zY1k%@kzn!}Wm`R+cKdxzwTSXJo9q#XCMwzM!o|ESwX9JcKs2@{X*$7#vI3*Vm(<}y zd4&=Yk&E#J<49^d{=5n0I#rwrA*c2dW(Kqqn?KXp%dGe&`|l=dhRcg;l`Y7a;HIw^ zP7SUnxFCx!@Mk2u@dZ_Qu!1r=g!7#~CYPbm5GDm@*IvTRfD*37rg-+B@>dxa9aHCy zMoNoYSrPgYc9Jy)bD|KHa$%d)^%#>S@o9Y4K1{Y4%{z87jtM_nE;!X*!pwjYIVGOF ze}jka_cTRQE0}WheirexHJ79s#sW!@ZQ`B*1wGB)glU)yIjA4H6bnh5mN4nigHAk( zQr7X9tWg`7s5k1yH_I!U29y_yQLv&sRkxcn!USszPCyzLqResH(Ky_(6TGZHg-J7j z$*tF?7dS&o@l3%T*J30Gl^iA}Tlr>uDWW)@I)(ZjCD7q!@yJV< z8K54yLPdi=V6x}xYLpfdOdyiBHj2`!ZG|96tf`d9sB3Kdk^-d77&YHQn%hRmmT(G_ zKMs#LWvSWSybXr0Y( zQV=?^VN8szJKzZ>XObgJ6?a-XP}&Z^SIF99`yIV7))(r&VDf~A^gVWxV)E({V?s|h z5qahkg&j@NPIIw4##1rJCH8#JXOi{&YL6 zMOgXO%M_EwLa?*>)A-uEQXNdJ^;ix=p1=U!=tlJ@CiktK(4Dk!v8;l7yloClcq$h= zsrHoDk(yOm%4Mw-r`A&UiL7Jyj`vcjqp-s>64MDviL1PQhTq@)lVGyJgmW+^pNX3I z^(2dl<^+ppX(>sZa2wRi4W4^_g^Ht?xZjK@QMvg@~q^X)e?4tx8e{+;dyrK!f+PiXO-0p6xpr8V;U| zO|C^0W?>3UH$!gU<0iYUV=*~@z;PKG@Ibe++0z4xky2F*c{*TOHrBJ4(1CP`A>#Lx!8EQvoPV(z~om_&0->>v^@&Jga67h?Tnvk<69%84#gw~5M@o3 z^R^ntKK~`tnhl%AZOghG-sp246JHceL zzGok;NM8qxYZYG$CiI}*!E-Ub6ZcRNx6;7r_U;st)?$J!&8Jk@jj>s25V0Lkagd#9 zqkSzU55?quwZZ*$sau+CgzPUo@Qt%WF}Vd>F%$$qRR@JM8Zfz_!XA@aGN`g#9?rF$ zDP<92?-iFC!-Q8Bv!7ve-z1qAw`J(x&;#KX(#N*>?hzC-Rj44`%P*QC|^m*6r9p#0f!bbe%HVF>p^~HFP3Msf-EP^eS6Y ze46fpNvpv-hk@N15|XOjjR__+bZROrd-Y2MDvnZZB_VMq2iajveErG@5BzS$uBKGR zgnH2`%f6?C4y}{8$3*Sh>vtQ8pBGbLh2FE+k&cs%aLY!zvKoa2lal(4n|>>s!MS@@ z2Kz9PeER$|{l=xmgaRvEIz@q$c1hG@Vh+ZHksxLZw&ji?cOitG;6g>101v*O=>|It z@v&x;6A%505~w3m65&?PDCs&;D%%MKU=V5hDKX1liDzB+*hYgjWVadn;>z=&>rzb@ zhnhIAPcdnz9_&y&+$K-)Mwe&?LVCN#6>K@y`KBOaI zx`~vl9S^pXdb$EI!7?piQtjLa?{MvyY)fn`y2&@d_z{;%HKx|nI0`VRPm+fM2!LCdaN#VJ6}IbSCia#dhZ3hrg{84a zn#%Su5e|04QsM`3$WHjnK$26BV4}Pw5!+jfDSqJ<(aBz%szo!RW=W6?f3gic#-i_p zd8cY0S#;b+51@~y@11*Tsr=h8nlx<#pFFIfn3k4V##~L8ydzz zi}oA1&2(uQPax)2pr}xsYh!&mNc9vy9*JPwG4a5vm=_0ehoy%Jo?54En5MZx1Gz*o*%= z!GtF<#dVz{m_&Cm@J^0)nUP;dVW{@pUaduIIHO7AOhz0gdHV`gCyTl@8!*|Ov7E&# z8DSBT1WqMqB^tu+#|bYo0bsoL7m-0-TB{O~|Cvk~6!mtJ_ue?5?67{}*y1%7CI&(J zbQMt*N!b&`yL4P7!@>Olm`I()53~f(jg$+qziQb7e4})Gm3@VY{p+NFMzun5-HfbZ z6)=%Ra(3SMxp#ofS?yL3-yne*#nx{18LOa&C{o-jffFUC^^vbDujnZDTy8=S>Xu%c8_zJ#p*@Jtr~QlzMx{-_(y()Tod32Llsf za*LEeRT>Q$Hnf7zd&dNmIubJ-#3)CcfXN?bV`Ah$qx2Ioad1B;#N6JcI?6A0Un|{*V<}qM z^|Q$+vrp;Irhn!OT(FhdD1Pa3@2u(-ahQO?sGR_9DQ|m+-1g{V5-l4E69sL`+RGUT zsFD;O!~_z2Pps?_zZpDnBnBjEkb)&Qz+~Tw)T`(*!Eb4gAqjb+x!035kbPiKrrx?R zVM5_Kn50vr!BB-Z;*`eAs-B1e8d()N8Qw1+Y9HoEBVS$ z{7_72RF_X_PGG{9Gr^?p+N?b-1TWur{w%b%A0kZX$Jk?ngdQd`U;q zWa8~)5|b^R6{^%uaDB*5@IuTyi9WrQaUjmMVUp0p#BP0&g;HB8;^=Wg18!2wfUGcAi?1_-Wq{PRTX$Lb%#C8l5>|ar*(*TSS za&;dM^0SFjq$88QTf~?&wlR?>kEBEi9K5h=SBy>rm^jT!+&e3tO{wGa&}-RF3R6SH zj()Bbi{=Q2#Iet9Rr1+k73FYm8f>s*D83k1l_u^yCMiqsr&m)4D8b}&bru%^b0u-Q zPc$}OrW%mZ|AMP+sSyWZVpv#B=UJ^cQA*>PWCkWOibCy#JSGAe3lV4dtu8#Vw&r}k zyYsnDFu?#~q;jdNx3e*+zvXf0^L>~!q`B~C*DjzM!6a@#-oA4WGL3*NAjoB}Boe#Q zcLXxX(pKsiCRp?aN-@Fp63vS1><~;&SvO2|({{qT2ifk$gXWg)Bwf?`@pquXq49!A z6B1mAF)8_e38p4L0}uC|d{dI@j?A?Sv42zA4u^+~=i7<>cwnKxWB9TPSD2yioFvZP zh;*35CWHamYErpo4*Gb|RSBYLwqSyt#5w)y=zIM!$pbi+sl>dCQvl?-i?WK11{t){ zSiuJ-|5+xARMtR@Eb9{g%L>j2Cf0}>R993gp>}6mrK4o}+%{7+ATmm7+ATvJB~cKp zwph0?Cfn>=CA`KkF*FJLt38B(CJv8p3(UepLCEVs!{5fvh3N67cq^Iiel$+H}oG;;PFUh!C$Y?p>S-#)a%I!d)T$?I zC;_K@Y+UT5`*v5{VnUhPviDvSFfkb9|H)>!!<^djILHSlvJ=MSCj0c%ON#@^M2FQ_ zVyAIIA0|v*&Qau{$We$jtLvF;~M$hQ`inBgE*S( z>cxCaa?K4NS}cHx{f1N1wkFbwgR6iEI23AS3&8w{?tlp%5~99y&3w9!h8gK3v4hE3 zl4&C*yL>$dldsrLawC(=a2uYAog!08#qzL9mvl$7jjv)#7qxT9>6TO#9|y1 z!xEg6o)wGjyFBNcEPFpk1&hf$ln2!#RTO1beyKt+OZaTEtD{_xae2H!cDV=m7865! zhB2Y#WqN%YnCZPBcrb(-b1{L~{IOy#^@!%0axocm595-~xeSX#6MbdfW;Y}JrjsK~ z!o2_|(E8nPFV(OrK0)b}i=)?B{{GdpXwKFA84~-h*O;9=GQ=9^ze9t&pRBgH+1a6H zh6ep29uw?$(9}WdVp7e(WQm7vtG>8iiji;DJ`}-qFP{=_WyHijtHyqvUa^Y_<|A~A z`?EUExpUtECMmxV>taGrf4CKED3yjPU^2YTbxjZ-k3~}(W$wIRr4dwO;Ii5Izf+K+g`_Q1F$)uHKnW8Wp3dsN%CFle z*yb7Gihk0=Btiba879!LEFNJbu$qd#;(l5v4wMSNw$yK7F9jP=!sKJFG=#}l_)$E6 zdmIZGyN}rr*lDC$q*k;LChf`GXs;M*Wa#pSX{altoBOa=OS!mE+)?uoof9{ zLo5bBr1YN}uR)ErDe7#2QcN6poIkQx*oTi1OoE7gA=~C(Y!-{(*~!PjKvnO%oA2x4 zv(BDA&opKz_mopFmnWPYt1&Hl5o+Q2C{9Z;Nwy*Xe_>*8uH(U*r~k!avN57D-23h! zjpYeO!x;oX%iW1=F8ngx*W=3$Oe$*|dHXuC1W4>)5^u%^?9OwZ2xvNIa~~!5Et?4Z z3^hQti7?r&IE@^S$<^h@{U#150!-*DVmwClL3BfhJ0!wqGHd09aiEJybg(gNkniiH zsW<2C=|w7NG`9W*H9(~$0i+Z-_Yha=b>~68EWhc|cB$$NV zrP4xX@y-k5K-Fzj$nIrziw?*2ftdW9Ui1HgmS)A%7j}j$@SG{p4gNn`XhUK8y}G%W z)OZe?o8PtdXfVYvVkv#ja9}U3T*zxb z+2p7|Z}i;BpZ*;Xf#L&RZXXu=Xo zF_E;3w1pEonfwjCyNRot{N|#&+E&IWCY><|oLDV9C?6v{A-|Vpuf}Hi6HTYCjEP)n zr%TtTNe4upQ#;p7PGg5njn8&x>SXfQ^zPhBhXrs4}{$6 zJhU?oSxjh_^5(s{2qgrQlj~2qvq(?2O)z%8QK_9cBXpcQ=j1MVz#701SJPn-(KlbK*_aMDJE7KufoP#rBCAPQ}v`k zGzK$$>?&5a8QBkTQMQ%aW?w}@2ZC0&Gstzh9vmcSPOQwqn4n_ZJ}^kgG)a^rE9hO1 zV4?aGr?lwOoXLE&?psI=`c|Nlel=LDF&4LgWrfw#?+j%jWKZ-D6qy|rPC1O z(E55{Y2O-KYDC=LWD#8@<5zcdixnxd#cw5!LCo7pR3aA>2PV~C;jVy@!1jLQQtZMj z;tQ+1wMP;mb&at-RB<6A1?CR%uA27+6ZiNRGjj`&AUXG!<`l>&gq6 z8~EEMlr+S}60e$QAX~Z=>#yO5DlTLsx4*!31@`#XPPSGEd6Ssna@nFe*$F9?Qr;L! zxHBf2xLB$b2U>Zk(kXznKP4vh#!4p-jh!Ml$9z7FNpS~E;_DZyP%Dnr78C9BCNY^k z#>ZkQEOt^GFDA?WnQ{?KsD0Xl$wwaslWi=xeyAu~sU>;Q7IhdCO{K7+?6!4oTriO_ zKv-ozP&Tk>lA+h87B(AplFU{%I}?1H9sSJs@uVF)^6RG@UFb_rFHvec$ zwhIMeqc7%WXTDRMgydYhq0LJG~EsNv*j#;#|2f zFi|cX`Br3Bp)U{Q^R>(}^Ze+eKR|>oV^^WtO6JQzBiw1bq4C7qNq<*k`&%EZKK8>Y zhGb%h2z2R!Bac-(ZD3D*Oz;I-i&=ps%CST&Y+ZK+7!x}7{HF~q5EzpS(zK6>Rq&3O zU?JijDd6*Xl0|(-{EiEan3_&HM?VZExYE9l{OmPj(%;qG850sI%h-P> z!h;*eF`K5@hvhQeSU>S1Ow{pqf>t%o#x}xVFln*HkwuenV*65T4UekhG~3tUP2Duh zeoqdQ#OWI#3FSJD_Fs{p{Qq9r@gyr${|e64Y7?!*tP&m*=x}27SksG@e^l`R|{bfIAW{L*? zx?>Rb8@)8Mj8gvEbn`w2n;$-RnB;e`6CH*Vd+23lJ;yy|^mQA%8txvNvyWe%w8Vgi zSY{-S!^ExPqbwifUvTy@4t%@>CiOm73eijmp3K5?FgBk?I+$NXk)4e2;KIk7N&7|t zf-WZZb>1s{%^BIAPUDyv!lcn26Z!^lHKO$1ZoLzPn1?KsZ1oY83w>2#3k>&mB<2^aq=ZtHMA}o*_{9#5ZhA`e^#ro0x&9Q<4|c zNu>j56@+!PM4RAcg7b(9qk!Py(;I8*)l&#B;n-bs(z@EHo~7T=ty4F^wA*i^4#p1h(_eKPLHS)OcwrOT3>AmlLjUd zukVD39}TqU?gB;o-ED)j=|34J8?uu|y2_uCoS3wZV`NVzB=n6dJHMY`^1K|q6#Fu^ z{xWw|fP7@(O;S?C7fRW&k&oo1C5K}hS|&G|B%I6?i$ zvCTTd3nrk$?#9Zhh#y<_$bO13;ZjucaMHj;zM@rWd+ZyU*|mg)^qo;mu8Pc{HNv26 z&Ee{}8alR zE(sI&ftovEV!Y{Vn5UAf;AAze+$r^QQ>SUDLS6S*daPk+(hB_cYBKRU4I)3qL?FLHtZ~VetazNL%3|VesndE?`N+>(oxB;*1!3Y&2K>|WPI%Wx zGeeS{tU?0qOE4szi~ZDh!X&)Fu5iiKy;uru4-F-Z3@5atDaP>HkI8PK*IDt>UGZy@ zG*0*=g9*9KHiT{HI>Xxb>H)_HlV-mLBPBYR6#lXiZ(yOxhloK!*71yI@ip)PK1K7ow$j zV=jK}j4g^WIZK!QT<02}WN{A^*XZ<3Pu;l*2_`j~|4;?3%E{FUXWjvmZD|OTATHM- z+zS;t!Nl|mT;q7u-ORirCcaUMrCb-{bHwi2$A%NSZoc~5ixA3fN&^Pbv+}(q3bH-n zSA#UIpxB(w8p9c9K0DJ7@Ug0jO^G}EUF^g+O4u)BOz5Ny1k?vUEW zB~BJh{wOlYtyBp2LU>VB6DBqEz})m*peP+W_h5Emf~XX6A+U<8$zuEQiMzO3l-1WeN3A{>%Gme#{0->66s z2S-&INRBdxz7%&?=Gzx)v{TN861u zqj^!=$AYx(Ogc=w42a}Q5Iu(n3$}z&Oo$`s4m}#$u6?V7Tiiu$itk;W#?dm`@0L1w zbD~{LdZz=~^-mRK*kQ(Ge5AsdR5G4~+ow0#X-zVzJm_wi$Y=bCopAGaLv0k^7$!9D zRaEmhLbuh#LBU}v{;LZ)zxq}qSd){X(-0=IRkWD6C$;Dm(jTxEC_!|WOGUuC774ek zw0`hhfv!(itm!7skKFm=%L&cIQ6*P7k z=V{l+L}|A|7XH3-bs3tw4JUY;SVKah4W(LN?tgW%o6i3pY@hEp!sb#}rL->;x0V`7)FcN+SEvo`}PrFiiS zn@SrYZxj>c-DNDpmlicx1UorLtVJy>iiVl#e}3Mgn34HF_9k;k^MRf3q)B-KcDl~FJtdC_K#wM20K%(N16$X z9y6hl8fmh!m^c`uhqxF$_=4q!CQOzt5x(r5!_lMEDmFM!c@x?9n9`{VBeC$#DZ~@W z_ySRO-<`A@UoCax&vOHHN0`n?{sxvP;|WUzuMQ@PFv+z)9&Hnag&U-3toRMdt)d3rHdIIwx_MEtIl=d^M8?FOpHwL(=r>r2QP((0?(7RD z<<6B}lOCiK5^4#P>#p1!Rr+Q8#dcDt%}|)fPuO={<9%z8(NGeP@HK^wBeUvY!f=Co zOck~CB-w5N6O60n&SK%l--y`Pjv@PXuQ@!`#AW(LdUeJUw#3KZyYPFrn7a#i zFi{xU=~Hezo}4$z6-)hUOz^C9^h{e$Cv5wb(|i7m2Fn>gMw^)Tz&smgb6EJPW2PULkBRE)Af}X6reAhU7@ou7 zEMA__t7BQ#W7`$u)MT^m-#@m1F8aidpn8OGVj)Nq_8# zD<)xki%lfOnD|Ay*P$Dz3aWMOj~#zZ(Js{*DODo!n25@9`pzy$Wtjm>&|gVH?A}UF z#%su!Xe{@BuK#-tv`MBvDBMfbekvf7%{a1OQFfD@|X||=cR#* zHcn%r2$L^~A1)zLtKVo2c!%cdK@0C`u|ENNUS7IpJ#Wnj*2W9B0jgp@1TuTeMGX(X zY)7%P(!kw^36)p^H^_9DwDfLrOdk>xSRt-~#qRa!GubAVPhpSA+48E|4?UOQ2GzD% z{4Ca)9Y&|^gyb#xBuSmi@)zv1resevT7M`zky)T|t$OPM9ltlm5+;f!?@K)W-zhv6 zWhQ>wC2UUZl4u4di-#H&PO{4tJV@wZg2WGpi6(CKSTkJuFeX&Bp&weBM~2G#&ukGU z%hJG|)pumtF6H;g8b70Rb?f|p?Y+&9BuREB<}uO8m_spR09|sy-1GtVpleZk$NadB=fCR7`!iim-&F~vCknD<>?5*z@G6r>whYS-sC)^Oiq(egc zO^3Q7swsYfjWMAq6k#(ar>879vmX`eslF_b8G8xb+HR97hlzV}9@Y>hG;=h)p$Qff zbLrACQOn{~gacnl{L&@5jee410=?Q56;Yp5cZUSGw%w$_V?xsuhkyxPi&AlLHz-Nl zo!s7OoqnskbbRs=bFH7y0H$-P4fSuIy%i>JjkO?tae?LU3C5 z@m2<#T9&2+VG=sS{Oud^6XJ~oP32se+UrfE zjAxCVCYPJXvk}vVSq7DD!sHV+sA(f6R3c!~&%Yr|$kdSli4dksJGUnL z0U@_QxZZVC#pHVP~XP!FyoM^8@AWm3{%p(~kg_vys) za!j6dzwhcb@0_Dh&jw7EhHSCUL=-}cdc4md%l>9hH(I$ZXpc{htC)0Attera_7}|I z!BmM%kkc)tVwlyAUb(JWEf*&JqbC*Kw>`3&lqN(l<{-ATF8RM#IpGe z4kV@@7wfzwQ$c$>URGk_fas}&u#0`0jjgH@(s(`kS|%esX_o(?)OjQ(N2o`h50svN zzsJ>yy})d%4dDze{KOf<{MZ!yeip*GUEcLca=NTwg7+{^?WjRwF<=soVTehOHTAfU zj<+w%Rj8}YxCuj@lRZ|*Vq#lQ+$8i#u|Y!K5(I?1@&GbW^cq$$W+F3-t=)=DuZ$@+~lUFfV# z>4*`)V*=sw3LY8olZeSPuQ!Ql-c<=_i=D!fNmZVP_G%_)7&{=gR*EsP^uVs>vKi^w z+hSsxILGvASOul0pC`)zVs+NGeH}Gaj_Xq22^`i2^3DcDWDJwndSo^RCbK9To{o(y zOW}TN#3XYEmYKZi%%E65-h!QTp}rk0)L0Xo5S!C;ffqV4ZH60`bwx{56UFP8oD1m6 zm^6QA*$C1$)pQ)GwrsT_ zCcV$N@`Q~eCUef&^R&am)hH%zY39#`fmx3Jis%rgUw)}Z2Dl~BG0@HUf zoL&?A$HK(dOKtPCCWCxH2OPu1csY*aIGV62p`#c0x%k_~L}zl$uop+;eSeF-G89o8 z`i}DxkHZ23gSR0uwA}?0*FrZ$x)etfo%;lC*DEO#=?lIP@b(OwcIz~1+otaXOyCV( zUPt42epU^DsRScsJw400;e8D!gPs&Flzg!mpYw%)x2IC|?rgOyCOWiSN8@-tY(h?M zhLN(KF1!dhyzv7}X3kZ8Da0Q-`p3n@`{xh1*63W5jkAm+@O1E?EipObAyR5-;%E}s zT{=D!-?+@DKdPU!p_wKuk-TMWAo3TxVqzaVa_zIxEZ-~WlX_T8TVen6Uct6K5g5PP zF;&iSyC7ry(6UZ!MgG`tvnR5?MTLEVnc-nGNPrkz1Qury>QMM{RLmSu zM#=_y*nVW#orxeZI_)&wKagNIsO!#2HDC8tC1w;8VK}3K7sN+2Noh|PFuCC6x)(s4 ze)URZVDY%RXqpf11(Rw+;3Kxj7SF{>+DB^yyyRL{#h>_>1&E%QAqS)8F9*Epo*ay$ z!RP3*uhx3Y4CQCpLU~Mr{IE2vZ1ZfaXk)OL_^YB^cp-KQLa7oaAu|y9RP3|nyeaoT zJT^1$E(}#@ zuG1&&&a03;3z87fBbeOaa=(SZEkYF&Y&8Irr+dFF9@z-Ovh+l`HWbD&lQyqsOu8I9 z%OS672Sri^)l?l5MVJ&`{jC|XEx+z3xTO2veJcumR;7*Tx$ktfYPqLXTbHUzQef-5*=fb%ejJ#$|pWQ;`EE7sx`* zdk%F>)MWkDQn5YryxzfZLYA50GRE0Udaha7j)&Q6T`6(Y%>Mydy{ln=Q5_TBpSOv*QS5ZhO}7)uZEc5bg3~v zCOzcoJBQZPicFgyaLNk9e`f8Dj4CGf2P)6mpd1skBPKkaoW|DK@1DkVo$3tbO}qfs zIX+AkDct`u7ALm?;)(|^i%Gr&FxTEPA9pKIT}7GQni7~4wx_+K5ZfWyUMPjT83L2Z z|3RXKDY0h6w)`q4_SZ{Gx)9ckKd@);ik6oCNy0{_q3 zZCkp%oUZxFf(LXqsId2JY=$^?M2}-4e5?L+c~Cj|9g_o0LN*A-q~E@++e%h3F#?k| z(`KY?OrJhS)MbK>u|%fa9XdZBDv%Dqd6U29h#HQvnxp*iA8R$Lj0w%+I77i2VP@-&5LPT!b-NC70g2|JrQ*1z1@wdGG^1o(DGMWXe zlK^2N!^xFQF+DSga8c*Ox)% z8A@Ib8Fsi4n79XvJ6qHqvqH5Q;$ASpi6y<(l&pqtTf>u4u+fcy6@a}Si03#49oL{f z2r2(^Cvz*%j!cs-LuXhal5X!30BW z^pkux(Jos>+bvbYLiD!dEZlqm%jrA#CxWyF)Q z#1EKImzoT}7UW7EHEpT3JMzkypzBynmP8aWVPiC9%TO~>1)+%!WI|jGFmaia-?95t zMrM2w<&Nzy6*ontE3$~h>zH(uZJgyH%Hbn1IYG%WmWB!+o>wr@{9;|{b~8%e4<@>0 zn+FGmf_O|k=?2-fR$~@t`&Ln0!z9W~Riy1TuT4LzU}B_%WbhBFAWp`=Z7U$mm~$wuB^a2ne6R|8#?tWLsoT42TfU{Y*_q6(=wWlYdS zyVTnj6Cu}=Y8%!sJ%u>_;GbY(el{{0=!w1Rc!!wS(;6_bztd>XI3EKh;{024iwHYt zS>h;mx51LO6~KkI>Tn1!9W^GleWmFepzA;c@<2)UAdkAKCkS~oFXQQEo-6N4RC#0 zPr$@w$A;{J31-q*utvRBM}@4(=S%knM{3x9QbkOx6)kFTj?kr*0Se2>FtJOyR2nH$ zXcxu`b5Z0A=JXp~#N>r>pVQ2$+5@A6i35Urm9?);YYLcTeP<_3X6CtQevzDhV@jAn z*8Q$mYS?~KB~0Al$CxNKbuj1vlb)-;111yG%)VLv_eCTkbNV+mOx(SX{h*L)F*74yzW!Aizlug|%`9PJ$O3Jb zWlXy(zMvG2gBdi`& z;gT>2KcAS_b$3ny6SAShvc4znZdKMAKl_3QoOZ;7UdTd!Q#kr?eC4S@oL=?Knu#6= za1wp0^ZlFbyiK^N6tX=e$)q~_z_A9kTCm_A7L&rM4&@SpF`2&BR+&8-nGke_Nl_4( zOxFJ=ox9ry)0fMtA>TSi6jt8cF7N<_9dQfR2BC!D$C_p@wAY0g3!rjHF~Q6EMZqH~ z+-BA%wQfq(dS0%TDiec;rZj~%RAFw1$#K#Pk_1;!JYZig8HN%ee5ExQwL5X+&TLjP z$3&r8>jo?w`bS)#XfI$OItW<>%usOkCdH&zgOcSWzB<*p93Mx)>9SnicHHXw&}B?w z`~9NL!$8$3TE9>*(L7HvKRc+8kbj)aAbAVDiZovN_rq4Xzf5YQWM)8#q1>pL<&`n% zqMVzIWq*RvRZRL=Qc#*Oc_J|}zxMjoGK@Ux~z%0OAm z#lk!djte$}bH#x%k&hV9#{5KiWiFolBZz0sY`{h`$K*THi+V>%h3m_ra1N`99>FS? zeuvP5s$ooLvp@|(v63}?!VI70h_dsi-uoiYQ=RgZi}{J_XW@4zMXoi=N9{VV|brF+Rs=D!*cu}&cX9?~R!o-jv%M-mgPoc(^KA3K|zE6OZ-;@ zb_+O|sd7||^6`Yeid<@F!LB2`aO39&uvcL(ceY?;#$t@D&r9_f|w`7Un5 zz&*&QC(Tr6nRmnlzYZO34AfSbc>ApaHq0qN=N;G?G$+Il!{*G_z01W@fg;^(R0x#bd6VvIYa1M)@ zM93uNn)TEg>T;INuLpio#$+()Kt~;u$tNimA@xKD(!Xh$_Z_^q%OC2 z2Ta`HI>co7(T?0ovS1&WOt=ly4y*uPY8z)wy_v7K^%FjuxxKq!V%s&ugiRBNypA#^ zf2KsCgq#$vYe+z1a^w>E$g#xl(C6F?I$|&;x$G{O*wrj!GJoYN$nhn66Fwze-XH#*@>CXA{N(gx z7DQ)mUd}O5^YzUxnB;2_VA8whZH~AVj7gBaJtl2vpCtY#N?;{b3MVH=fgR8ZmNETBs6TIdZ!?;oQaqbyy_%2A>R|l4l;eCkYB;Xm!x>AT*@2bYg_J& zN$ZRHcqdFmNBM7@0>N@dZi~ran!9;R1v5%b%va+ON9qo{h^PKU9GBNG! zK;$tIFuBYsCbL+YsPi;wQ>POJ;;gzO8_EPsx@a9!1{bw3YQQZgsjgD{ON-mG25_ws z*5qXbi}{uDL}!~%Pg#6w3;CnRB)dE61$-Q?5nFGFi#71Ti7sEV4P>pdp$2N^mXkT@ zGv1^)gA10;%&#A)q>d#WWk=^CCT%ldXN8;j-#A`N+C|X7#E6MeWM!o7_-)45g@s%u z5TKymYDbp>=R#(W9uh#Gr%Nwn`ge9x5Jx=cJ>-yZtFZ_B(@#D%_Pj0 zeUA$+V*`4xN$@zgjERaRE#~EQdOpD3P3_y^b*2*iWndNB zM3@{GHkHuIaw`ft!X^Jx38YHxEovJA=ZZ}AlhdU1x%G&vlzaSIbXqI#KLeQ8X7k&x zi}t5Xi%Fj{kpiw6)|pUXI6pa;9Zn~$DkJR5rIJ{UngJ%A1@Af)oa?Oo`IQyvgK3`7 zjcMk3YfO$x(>5&g>Ndyjd?mNf2IsIXX&K1)CZAuq7acvLwT;g(IrjoSZjGh-tTscK znD$?@jGXZa>&W@!tZji^W?7TdTZ*m+TN_JzzEGuoZW=$mnmLUr|2j=h^S3(u&%@GImp9(v6%AAECB zMb(r>4uBP)dXbk)IS!LmED~O3A^iwJmn`TXtFR(80lF~2%Cn6pZ2TuGa~vno%33T< zW%231Z7|WKr8L9PaNraap3fQ7888u}b=r3Z1)QCOwg*ho)d`u%!MNB(RZOONgQz)o z#^mNKoZRKc6}2lWzlPthdu9=ue5<8@x4r(U6p>Nm;Ifgp^-_EedP8 zRExvpxm=$(E1ppWk{?Shhr2|f$rV58<@OPVhbks*ti(~ynqn6o3TraBjEO<5ERGwU z!(xMU2@}U#+jvlbld6hI0EeuL;n^(GpiW=wBpnl7R^2X`u%0p|7-emS-ndc;n27UW zd6N-Ls=JBR=Z1fF8ru!(FI19@i9W-`egko`akfA~9thi)nF?Z{QFcO76-SDt+*x=o zrx%{(o5?G-G#~W1?zD-aP4%Dt!)z+T;4(Snlxj1SJ9`~%u2PIi|5Y)cPBdkp!KF%M z8HdTWoYmO~GK50O6H#{!6X$oftUS{7ehg=kOsJB%h9qW2T3w+TlS&>nv`3!t{!)g&*8(p86pa{?w} zePU3K!q4eY!UWDxnP2>784Ppd zf()Th!X!E6R?Hpo{$njXt7S<3X|y7k^DiVYTNHAFh$BWZdCp*v>7^zms)9waP7`<_ zN{*IeqJ5D%Cg}>r%Mao@CfnTLL7zrQnimtu#N4VOa2rghTnHrvCgd`4-ZX)8oo0#D zOo>E|yohIpTl3FI8xo#w<0pKsN(PfI1uY#PTS|@v4N(q#kkXFBQK<^uBug-CNEu&5 zU^4$yc`n5hEmIZxybD$^@%!Fw)l3YiO@V8ee^nNv%sKb2wk#02tOw%a$|$giUBX0d zg-QF{L{W1|>NbVc-XC;tPcVvs+7N8lY1*=wp{g;cR5rywWTMYC~|!+On8&*;}Bi{S`_VRH;xJL>ZH?uSTNh;`dcL zMH~*@&DG}H#9r9PeXxRv*My1N=Ok)0*jc9;^%JgUR10NlKOb~KRCxm_-U1UWfQn3?pAhrzt_f-zBCrVsX22-kILm}p;fXRlU9A2m8X_YbDL)oNBfFPElP{5Yj5S9 zdR@9hq^x###1lq-K5yJ-ahuMHO#iu|uSyDyNl8vTbF7&G5sZK_cnEa)(KTzFEltyU z`zo;;1ghI3{-w@MdPx29DcQ1&n@XYu(nMj3LWvk~egY<~w*2QId(rjlm7fv0&*)Yqd z?b^RBXQtfcnl4_1M+i(R3UWVDP=O%)qc zCe=2a5;;ozj;fu04}ENswVO@pGg)RR&Xk91nPB=7$8-G8CR$)(<*2h3!+99!-P4C2 zlYjHJY>DLl15{FtRbSA_5Fv}^G-HCt^SB3vMR5QQj8e6f#Fx4q~*m(uQre zbm^F3;vKBoPGR7(X?}?sC#u#zUh%6yqQnR(Itxibw-1#<%IA;Aik9t1$7Tmi#1Lq^ zfv=&~&S)Wh66BKlPZbl4l(lXZ)i_FE(u1`b6K|-93*BL&36q~axx%?~lI$m~5#ON^C?x(i7urZrX1fqX0aiI@eFGG2N^T*JhHk?R_=y0^!;r+J8E_CLsy>kF%2`fSxdbV+ z0gQ-AMY)4;_JwhUD$#$J@lkSueUW+)O*e^@$S5_yy6i-eC+-OoXmX*Kn6#zpgTTE0 zV1-pS^-4qBV_Epy*i!>P5TfZq>_h9oWowvgSi?l|1yAKvLU0#9iS@T~SFGduvO|!* z3T@evz;*HTuf}A{m|UVrW<|mzJ4w`c8CbjAfz8asxqH5Con&OGcuLByS2# zRKgh~%9va=Pd1FPhV@`5K|J|V8k^9&U?Ns15|chr7!nSXV|+KOG@mBTL~lvM4wx8! zLESg)+faLvfGEO5pV9GUQG}Q~VWLPS2fjXbbVautgy-8}^5<5SavCw7L^ALqA^gP9 z1(+Q>Th&%f@ob19Oze+%?5FRntxnQA6SS{!5IaopamAAlsK{7wn3y1w54<6Zh**`z zTQBa>(rqzm^fl?&6DDDZaG2QZ(P&^oIZUR?oRF_Jc;kqp(jmj7BqVsTA~jibAJagG zE&Gw_)fO;T#fRLE`arr<-*L@^=I#At^4grVY)cy6(*?f+>?l0h9KxqLGr~uH+aW zbRlPAH~Zqw9)1pF#kT>DkDDo9hk3M0u?dPm>QbzJGbT@P9-GO>#S7#zCXm-ZT4K%IZT#kGVL_%nZQw+Dl1m~p*n3Ogfhf9^9BT%$RDb!i6hZE^D8n`0LOV zV~2R~81ajm)7k=>3j5FoB|}1wBRdqgX*+YPZ8U}7cQ3KJel?1G&fCJ&^Q??{jd?vegzO@+Dw z-_7rIu^YnG8OY0!MDyQ-8g;{Nir<9&jUkDWF+tc3fKF5CTw2lFVWOR0iuzb*pk93H zM_>rpr`JMH5=AZP{fRJfj~*n$@f8W2h++{FgA!Ef%^#_6G$a_HU`0j<9j;&|LX6vC zB1Xp25PLIGVvpIrkEK7c5dByzYa`Brhgfe;OnvC}<~Nk4Y!3$mms62ddQRZIN4IqP+Sd+NeBx zDV7R!zLbpZhK%Q2dSVbKQ+dy}N0 zrUqDXKbrc&6ytPx7m(~BJ&R8q`@ZwtO~8a6v7?UEm8=Oo;g66lo=uXyEhgIA+=m(k zfy&#|04x5=ml83J(IQzV!xMrYljX8Aex})k3I9%YYSOG|I;?R&2rt^R9T~ntSQJky zkIgiZ3{(pZ%BMcpp336MOaCZ*z=XbLNW~F=i9wN;6NSTypjV_cJj^}o3Ub7{EhhfA z1IyPJHB3qlL6&KZv~2JQCeyF+;-CvX%DADqW77AX)~50!|J)E)5l+BSpNlaEKN4KY z8E1dzCeZTWOOK3gN1V2^B|heW&F_;b5qp3R>H^8tMyj#M=BR zrErkOIgk$ ztbb|}HNI^(b<;f5F!9!i*mgc8Ocj|4d1c?dAYRW^@^od%^=I2*GXK=hPtc*8x2z>U z+#VA{EBmjEv6KM=fi$U!E~3yDdbpRY#bd zLfkE!40=;J+yxWVfhtPDz}StUM-P+JmO_azDdeS3A||trDqVCMQV|96lUg%9CMPIK zm|#<`{8N&oSl_`<(59Yrv9fH2%!ZP0^bBy;w-OMvl|RT*A?l6?J$`ca3dxd zP|hj_@qExLfaWkcqMw$o42I~xeYss*aB=^-EJZy#31=Y{=hL>qPJSB|=vj+(_eGE# zAuJA>H*EzbD|{a#>PsjZLpuDEG+si+YapnrVm;iqPYUmnsQv^{)&a;I8)gBoi{?m+ znG`pgKE|iZB6_YsDY7^y#zb_0n{iA?6P5fy1CuEpR;V}?y!;NB)BrS8y$rvOiBnIW z(-J{cz5piY{#CCNFIA4$>kdl+#zdZMykyDOzqwuHClp#_{h)}T-)PU}h;t`Q$|}Lt zs5A+G5mRAJcHWo|rB#dR=fK3>^4rjb);AqC70DdI4 z=b$45mil**F?HnP9H&_}X#MJIU@}#lAG|3Rloa02#_6;-JcR9=G3g=A_*~C$<~mU} zlE^P-M3Gxiwq2qT4hRF5YxHDsJ~Qbkck_Q!-%*fh^oC)j$Gul9ylC7y750A$w--ra zxgX((#h6^uQm7RYk%Vj)Q+uK`H7f}Y6Ak8s4%D7s%v2)=NYqWAhinyPn$W{Y76I!{ z8M;La%kiAsR6P^+|8F1En&XPIUs`{pN%NzojQ9Q4#z#4<#aoJqQFkk&ONL1K5pkMUe}en6EWw2Afw zFnLCK6aBLwVu?6~iwwr3@1hQkOp%Nk7*7$}HFo;_4A9f2fslwKWV@K!59RwVnNbK@ z@Y$<&7+w!2xm|&cK*O+`{O|r)nleOb%0jk$e>^fG?I%lkDj#08x zxzbiktCvmXQ>mItc1~1Lf>r@HHB997g4BO|n(L%`HwUsz1cURZP-@<39Br_D4I3-% zXU6klJRf4xeJS(>k_ybQ8^M05DMeHn6HE~Uvx1u26IA7vVNkhom^=}fU?qppu2;0k z%EH`8J6GsU1C^Z3!%2(v4?BP+Egdq--z6|q+r9%;xn&qMz@XDB{QvER4hncDyLmRf zX_v?zhV=W>G(494o-ygs{kT3ujqcIvvY+VMe0~RVq*1`+KSfO3+ zl4c&`nK7QAOT|E#l>CGWPO0m$@WR7Z#-ywwR&p!qrGg3Dg)%11$+J-Wh#bf53Yfrk zM2|NCxtY#R!epS5a}@EZ19g-Pza(G81UjVaarwI+UXTgfg+T+1D#dIhGv1T-9p zOJra|8*VW`wA3I{J2N=+B)asqCcir6m0(P2J-xTs*ijJ{aB$AATr!Qkb*^&la$9l9 z#F)$s=S*l45|_x>YD>*laTOvns4(w7^u*;yQHa2<)EkPE0C(yW#y%1{#l(&-6HRuB zz};ic*}wubX>BA)0lSiE@Xt`vQ|bZ}K$U7hx%J1XPNWEv*3HLBChSVmlrY6n zIuqNCVV9zzO%{`o^aS4-9kd7wh)VF=Zq#`sCT8Gi294y?oIIvSn9NLr(5FoSCuJa| z2P!jxTQG1VOi}edbjDL@JnxZi(+c$9`SVL(#ADL*ml6}elb&d#?ZaqG*|KjHZs@S8 zv^qKm0}BX~(kMMBxMOnVZ%4TH@Pf(FNkoI^K)3OI#0g&d0>H$MBK?QW%y=#hw?j;5 z{{UJOOyFED4C>Q`X-efV4NC2v#HNI|fMb|f4!s^Uh|W*e+0%ce-SeKwH9`BRXSu^;?k#Q{#_M* zlz?U*A5u)v8)nW=gl-bQeMfw7dnkPS^g_&)WJjN1GW+`f zW#e#|exFscu)huFCF1+Y({Fy~aKKnHS%ql`5Vffmb;R=qFzG`^9g}=Otv}Hf)a_2d znj{P`d3AFcvZK|mnqk>1FFFaBOqYwvB97v{8uUM9hX^ef`HTrT(syi)Dr`vlhUy{6 zKI1O2p}Iv#F_|m>(h@|nmw|_vTn0T0{%i#$SNJ@^EX-}45@RWutt=*p+R%!KNgsHY zSP5^koE)V=k=rBYtG64%5wq(Bt&6USP8|Gp|r*0=qOjOfo_zER8 z%>7|Wi(n4zr*EYFjOvWni4iQqq`CUXiQbIKamN)NIJ4FV@me+O(db zpL`V65XG2qyR>({ru*_sse=nlcmWeT6=U+7w=dWLDUIPLvmm-xDtVWbX0zfUOwE_h zq<@Ne*?Aj)@=S<=w3v`_@oPf=as9H3=EC(U+_0X&W=x*GT`$i2z;lEi^jWsViu%|q&F6}(_AwE{+ma$Iyt?~LVpEqIzaDHaDY+J8dIpK?o z&a-^1Qw#ug@3Zz8djq`DA?}o`WziVRZ1ZaUiM9gbhP%ZiG+$c*T>K;tOyKEsLe-98 zcBtrSuCw7pJ`ZT?9`qG`FVhY!B+H@w*g>#lOt3=>bBAFtpoA{sRCZoo`8wbdt!L6s zJm1FQ9R=%#aL%Yx4n4Ne029C&mFuN90aoiN( zWJFO3vCBTR6qp#1(_?rNx5(T?9;87ixgMdSGIL+F#N^3@kawYvH7M#hmDgvqm*;q< zl4M-2OLpQXGQ(fxL|z2dS)+ZA)>bIi5Y4?aB`1z2Q?XehG~?tLTnZM4GZPyCYWn}g z4Cmjg4^x~V4-J-i3!zPBKrn)*tb@{CaK*G|Mo)0aWi5;z5xP*$WLS@pc+*SKAO2^B#fcQv5G60eU)|jA3q1W;rmk@rLs598%v8 znDj6=oMmidx9Uue__10p-9$+L|i?+2)+2a1#21!Fwo*lqm6I+Jo&6~fM z>E=z)V2STcLrQNPCc(sk*xiyQF~MKiJjcg9BPPo^KeyADY9b`?I3JFusV4d`a~n#K zLliL4gEAM{h!Qkd0>9WsIQX%-A7t+*nOZe*$#eQNZa4|lZiHfml-JGZv}KrFifdSi zJ@sR(pH87qphm_HHod}xmP~**-Vlq=GZk!6Qz{a7jxf{Lh_eUXn8W(-8Bt;g(REJ-fQ2roiZ%ISSE1~nXY=z0f zVj@PQq1D0d9VUR&g;PJ$cm~IK#tFe2;bLnGWwe8wy(KkiuY@kt!UEPE0?!dxd0O{g zI!v_CHV{@W>&$w+^&8s5Jx!4G3f6|GzM>?5@?#))>!hM;5!^OA)BeebE@)+T858{A zy2ZrZFPvx=wuhj=62@|`POU1<$r(-KQ=5|>?HW5;ktnHHGpO-aNpHoecq8$F7NS08j~D%O7%()%V1>9?T^ z3+)UO9vr($-NqYjtez{U4|bb=P{w7QTi>z;uHTMhl64X;Hc-6JWU!ycGA&X>cD^R| z`QE1nad>gdc|pWvy%>o48ZKD(@{%f<-~zLeKg2>z8|Z2qVW`BEm_wo4r$cw)s<|?% z(1p$`HpK9WVSE!hye)ct}+mq<-NU*V3A9O11<$IBk3gBh-7L)?C7 z#@^EI)KVpIQF~e_VMFKZ(MV@5>@(M`r);S+8`1Gke2$M@4ejTOvM=$EN0gG8iue?I zZnYw^^QB#Ez^hv`5WYo{>a+pl_z;ucD^w7vkMqCvVph>v{MDY$=lIyI+GwglxWs?E z{(TXX=Ui4pB6A6v--2&?&3lX$RmuTvb{2b1>@CFE8k6v~e{m7%Ep~p1cQJgZVRG41 z89qx)QObqCx*jpc3*8~s-Zq*E2ABjCxCJ3qug&V3suN4#*6&bOj$c-&TYpkq*I#l` zwx}Oy(bsm`8nE}4G}ba4;f(`K{2Xgf*AAFiofDH|f+g!9bl6K&10E&+l$*$BqaU<( zaebeoi5x<5Ohlj6V|^!>Y?~G~d{hAwWo6 zt?24qtj26L(%Y8$A#;|`7_=KV2*6~j9PiS`JctNPgdNr*JJv+&_Dspaju-m$WjGi5 zSQnt%!e4EK-fo`i6b3@pzAkQ zO{EZAe=K4W`>K_tTWiKxy1|A)Yvw4YLT#YlJtkBs2f{>=&-(6^Of(SL8k6T%;Zf)S z0!**mir7gw3%G& ztIhNesG7c0eC16*+-jTfC&VD>=}g&uF+vCLQ3EW%(S4Lc3~h#f>}|7YuEDL_@)U)!Q$uYEtU>)NRgHpY;h#> zkdT(7Mhg(G`A8pkl$n-}n4F=ti?x0W;mL0`7r~*oy{mU6e-uny2lqCRDY!|1RfF{$ zYZ_y+#RA2(%wj^Vw8iDo*l)%l4?CRGAJ&RDI>XH`lwc*jF9Sh82YJ^0#|pI;j8FVt zlb;kCIJ8bf3L#?B4<*(Sla>b!iwVD(ZBP^gJ4JEg2mS6b(PTnit!YJbEGBsag$R?1 zbj4@+MAL#KHV_mG;d$E*Tt&-~qvixQEJ1Gu@uVwdNghtRLzvqI zOj?<3X*Aph#)NC1t`*A7K3z<1AOkHkifvF3?tS82#cX~%UR$#pCR6MGWlR_~LWR$R z#qe9gWIkEhVJ(4@Fxha%#%;e%E>26)$AvCDI$$8w3RamURS5RgSn4~4*4W;HuEOdJ z$jm4z$m02OTUs7$v1Pf9Fp>|`vq$&-CGEQK&p5rG?t|;|va`T*?_UH>0P(FPI zt&~>~-xEut*6|wmiwV_-Fk9i}rNv(=kmt?%Z*eRdL8A1Xo!OpRyPX zPfS{%^rO0g3E5vZT9$9P{mrf=fZS@d`KBE-kq$javIr9g6#V zrNhgT$~PdyB}~@JR!5zP{bW9ZiS21PA@3FwRJ#e2hWupn(60j)o+x5sY<1jsdPw4@ zMNzU{mjZQK3bWHv?!EC)Z8xeMCh?mEqe7HvAW6-Op@@moL!I`VG11##(z;^rB!X?- zSVd$zW73aFQJ#UMzcmUHVGI-6HaMRu6j^M>joItUZo)Z1c^eNDaJ zj{sC+9213&CBg)|C#GhD?>on*ThzZtP-^zLDpt)0=<)~~2b8a=1=l3%LihQYnF{m! z3k^|T(so5rTpd0qW$zx7@;n$Y!LO%~T^liZgOe#g_c4h-c3f((!l{3yQN-Y{)_?I^ z=aAqVX`>ynRKXp18@zIfOV;f$`P~_;r+*h_>wg_HOQCPQ*6`9XOxy-8E$=s;ld;Nn z%!6%XB^Dl&Q7O`(X(;wjrV}}i$={)wjENrc6Fl1mO&s1OCVKn~&|}W*C+B0xQ6Ar{ zVNu(Nb{rF$c<2^at7%~FD%zFRMaPQ7eXz|qCK{OVxw_s^ITr0O98cEx(5=56Euyem z)WAd$CbcmQ0zQl?+i&KEZzj?fSW9MQkIxUxzztPMiN{^Lfxs}S;T`w~;B`#Cfq)Og z^7oh?|D-dPCqK87iP>O-#l$xNakrrWjhlw$ajf{sLbCuLHmKWYHumM~>g=M4*9h)9 zr7ElKuoK(RRYh$E>Au4M$pl3o7AAN^wQl^1o5)AAp^ZCZLR!xWlRs8X?YbAf6hdD& zbMHB-W)Ny(H0+barX8=DzC)FSZd{)4YY-++uq>;YATimbZ$ouEW$TLHk`fFjm`fO$ zF)n@j=FX(ol!czxkKWc z$5>jN5GMS&$C?eK$cF2h$bEpa7^{rzng0VF^~kV8W@!?Vq1$Avq0g+iP_x13wtHR!l3pLd=N&ypE5tHKPQCJ~Y6vJ`0&L7ijH^oao1vZ2*#DuY0mecy@jS5L ziFR0TOv3`?!cUI7$ox^M1wUtDP2Yrx@ht=<^x|-R;B-xjBT!p!BxW4S#f5fP7kZ~T zi&<>wCQPJHEw{nMt=v&VTW=JmGs>;++188RQ%-`(m*bTXCYKJvek)9rlODS?f-`lf z7m^e`gs=$1Aja4)#w~)E(``-;9bQ(Mjf*2!v+PlG*^P+W``PMYVzOyrDlwraQ8r^@ zw!y?+d+G;-30v(C>)(!?Pg;KmKOs!&3wE!?dew1r*?UeQ)-5s3L&D^#2L$o)=&2`6 zVwi7%iM<>+ZmxQ2b|sjOGR#B8WW1RvCU_RO(#XiRlQA%ftemp1dBLUHJnu*0#7h$P zfYI(Sz-02nW{VYRJ#K!pSrV9RS_^DevL6W(F4Hz+l3W<$8TsXA6O6^=FE>j9lg)m& zSU`2c1qS1JZ zYen9sd|;TUnbEeHV=HU}ky~Ig3YgDC^$!daJyS5shWcboA_*qGL3@ay`=Md-K|>AZ zP#+N$^6v{1=stcZ7lHN^o1=(HeKkRt@W+=BbJ&A_comv3shBh@L`6} zh?N5G$GR65>}Rb@Qn%#U>bqN(zK>$d_H#Ds%;K^t){$Vsuln^xxmz&}*F3U$b1SWP zDFjRuf9r{ts*_b;QpWc(yq_>8C8=BT9v~*&7yLd}NB8&fF`;6^7_WfIH3W-dw_|Fm z_(4s^tM30|Ozh{uCNGNZQfxIHDBKGsZL#7Xhq=NN@ATfD!{p{u|JQBzlyY4K4m9FYsw?FDSS((8T#`x3aD#J0940JDBJ@SX zJ{P+!hg4qHFUfDK_AcefBpx65OH#$_4xWnrZxTWH>E1Ch4+|4TkkFF;TXKZr+8%xZ z|F*~wiO}EWG^Axooq0&hST~IDX`((-#DqJ~RFUyMbZNWpl7h;o4-6AS&9tWpL=lrU z`AEFwK?U}Q2?74}>$`xu|FYaATGp$Y#{Pcau$C7|zu7M))MJ17W?18oo94lyV;g`8 z-{JUvXwhp!ILKfN4CQW<=IQK<+myV&GHg@F`juOsW|)W%LjBSr)9%e6u76g(_S{<~ zJ1SzEdM+h1LMF?Y(UG#XnA>hW7{k4D>$xuAKi|O}PmM|gZHyI}0ZU~&< zA7PIzP^@sTD)$EwVM5ce`&}iWSYWdM2544^Z$5|$9}G#D&^JPtV}9Z=$wY473ga>9 zZ?EItN_tEd*%{0IWRI9owe;QAeeOT(4I?%V+DvAh7-P8sIP`m~mZm!n`%}3$+vrOq zP4iI;OuB*60w(Q1Y?yno%^ ziik;fdnNZ&lD>37zpVSNG0_3(VV}LHhVG!&%wU|MkG2m7(EIh12aO5*1Ob=~&liur zoEZ=84rq^y8n3kWjq~y1_nI4QYvz4gQOxn??{hp1+W*^^X|)d^6>P%*`ZlpgM<^P1 zk93doW~ldn`828ZAtZurKp-7a6gWQE@4pWO?qq)GnSHjIbtk?1C~W9sgFYk*J(FUG zNtX!RDG@PwaVI_ZQCNpZrO|ZZD8EfEiybEWG{A$>K0H6s&D@YD@P#{F2fEjuKK_H{ z+M~r}kNa%=0v_vrfS4%ywJ8qR%%Cy!YwHaBlSEkYyTA+my<+11uzh%AY=+5ei;3np z22)H#*Rn!)Iy$r;ASO-l6S5JFG`69J-#!SKTvP7eF`-ZGKRirso;7n#?d3q7L-!1d zNgu~yOol66i{5RIsIkNUe7{<6YmF#p@ZB|w2OS9$)pGW`!9=0bhldHBDg^r_=_v+S zXQL5cw?qCF3GLT<-8BDRL2J+F-~k=rCmepx$LZH!`QLfEe@qM>kW#4j0ioec`DX^h z9q>z#_)TWYc}v!cz<#pdG1gd2xVndhOR~fGZw>aA*qN2UgUEZpMB6I%y6D*tw#m*B zmT$m>h7Dy64oAjh&*mG}zF+6t3n+d$$@W=Hc=icsSmK96Z8>9 z7$98O=zcIk?aK!^71Pag85k4TsT}jn#q1~dV1M>h?tTV@J8D@-Ncgw8TeRIX$!#cD zZ0=aqPp0@XJg!D<@A2O?_BX#K8kfQf3QGYCWa}-W}*)VlNN24peyBoc1X8&Blq>-4ki|P8+?&^P% zC6>+6Y%5G~t$f-4B%8Ri(OB5e)>+?~C@j(%E&9%!FzI$y|C20mi3Mto$?U}%9S4{k zH9pWy_4X&(#GQ>slc(738ie)*wgqXkAPJf`Pe0qaj-Ob88(PEWe$xLdF!37&0T+W^ zNz79}u_o?p?rM&)q^H3{hROPSVB&r{J!V{Cm)byl=URSp1>h$`OlH8uh!1%?Sm;O5 zL3Tg6Chlyonq-*Jtw3NBJ;YL{*DaxU0GMd}yvm^U78CmbhRiyjlVrOy>_52z7&()@ z0<^k@$q9aj$L9XzTDhCSt9&jdOq9LRCEWxsUq8bxB;~&Ep@<0_;v&I=5{HAyi)_tC zp0M!uIK)tU(wrTLpJ-ln;K#{AAWW8i&%RfIkMZ@zVe}o-(@JcJ$%?iL5T^E{kW6EI zRR=M~t`{9oJkd{{(shl;WWF|HQszC{_kDn+k)vfyXo<=Jn~~gVJ43hYmB577`!@Ie z1_mFvr{>!}a*5u8*_pzU5yJJ2f4Tr^yf}Cen5VdAjBWnU5w0~5Fg z?G`P`PoAvTxB%kd7H#w`5D~5p2NPb}x8G>7W8^XMi#H3*fnY+7?y1G?cdxCBNIz-d zLLyurhMy27)=$3sT43V+gW(FO90(@pB&#*u8*bNc3z)Pj07A3SVfe`s*DyC069GxM zWtuGRXV~XIgh0PL15D;$bxCV|-$^mihl2_356{+-i*IsqKRXaVv6u|Myyai_I!sKk!?rg5Dn~er<~jIOzRiNC zLl0$)B}{sOh9xZ~$s0ZggUJ$pq6?T9_LJmxSTj|Ja4&=ITC_z>{Mh>3VT0(&REev^ z%(LDf24SKKev)G{`Rl2?a(;gx$Xc?*_*%lmZ5D{9E~cMMOq-Q|9~p#+DRc?HxW5Q} z2be5R-$w|tHZdk`#ts*OrvVc@N4$Pmzps>Ay%!EH|N8Z^&2{+;o_G@-nDhsM$*MW- z*Eb`W1UI4Q%{x59a{xh|^~F|tKZ%&|K4ek$ePgPNa*GO>d~_)HchvRPn80NYV;##s zH&cK`_=#V>9SkNDc?Uycqudw%uwNU;l!Ne-o9X8g2tk|XnZ-h4Qdr!HBJT;gntobo z$s%C#GWtnd5q_`O%jwHXdzKy(Y!L)dx{C1o#h!dsY0s*JNna6uzu484=}mY!L-@)2 z)%IFz7JVfrPR0j^N$Fb0q7()Z@peW9zk^{1Og;!yb1;psG*m?>0@YV!4~1RAq&t+x zSK3*^q^-yv3R{OB6N!UZ+mD>!SALs1LUJH`1$9u~i0few%VFFvu4D4HfXP9;t5Syq zIo>-&+>aJGfJ}jfC))#P_GlB8M<_X9sD3$@RLVO22MiB zvA%W)c?C!wF)4s@2);1Z#sVaTr@Y2AynlI*nB?d55tAGfRRE>W#SV(|h)I6BHTjAE zEfJy-4&6^Qf$)e);w`}FW5CK40-39d&> z=Kl2zfMXvoc*JD>JbH?ql-CCy7R{M^_K}cz#Dv^o(Oih~6O5t!h;4EhMhfrrIJOH6wGhzWh#Ph!%Us{?rveWWiCCMpgnEz$>nACNGR zm|y{S@b`-cn9y&I9QwmsJe~+Yp>NwgVv>$0^v$w%WcWFVEcBh^S*2bTK9q70NW?~B zOieK9@YZ$AJxprZeDH@j6{F*rM@*Ld0o91gd~xuXfcTCBzIiCZY@C1mt9W@Jsvb2G5_Yzc^?Y;l^WuB189x2yH$lp?$<8{=AAq=HM@O$S1_z z9fIZHHwp-o!COs_vrdl5ZzAjF3t}=?btN981lTYvcCd04OxLeVg3mdA#7U z7|GuAcpKefB8Qa6MVrM$3rBfev{_6H{T8cxyXg@ViwP#4GygWiBPJFT+)2kPwKKR2 zf@2+gq^aXf?Y*9Z2g3n?-@#V?7i#-QP#A$FzZUqM`_3aK)+ttu$pvH5S=PZHZ<-c( z(EsCwac~Cyd7@SWlE=B&gQBS4%nc5Y*E=2){R?stnv7e|I{278#A4DPJQf}RyIjM= zD38O5hr~Uugayjua1t=Fk1JuIZ3FAziGWFW@K6K*Ry4*o@RPuKBrGPUk6(llu3)$B z&mJE?5t!KbGtM5rYEi&MvJReBG{zo3-pG)SU@>{T37BKjN!G#Bn)=S;!anhXM@$kp zIAO?79*2_z7{;VaSO=eAOb#A}6ad;(dR(34m^=kyZ!0H?T literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/671.466.1.bmp b/BossMod/Pathfinding/ObstacleMaps/671.466.1.bmp new file mode 100644 index 0000000000000000000000000000000000000000..a6ba8f97f8cc1468c6efaa11492f5982f7657393 GIT binary patch literal 34190 zcmeI5&(0(_5x_l6*a=d!!*LNGX^tHC1c_Ls5uAC4+&HqwMOxGytq?bO0FZbEZsfMT zibRgQ01}pR$dN%D@*#$4%74l(+hw~PvLZ-W$+X-4xm;zJ%RQc%Z-4mXU;RSa^d7u^ z2mb%bL8*8DweJT78BA|N#{5syve(iLuyd`lD8E>thoZbvpuG-rr9Ll4e#$E<_sB~P zK>k#bmlq>{%quGQ$V&(4%f@fYC8_@FAn$P{ly7{~CLw9`9Xal zAJqRJ<@MnByl#FQ)aP~ctJUWK-N^jY@kcptM61&SseE-pURB~>TCAo){#%BBU^cf@ zP~}eD0jW-A*;I(6_@*8i{%|kk<8oALNhI+%MlPnAN0QRGe3g>$8im7kN+j_&l$UIf zTa^Dm!mp7(NjB7ofBhubP;cshJv^52$H;%e4+$;3suS|>9RE&h_&o4v!8_{vJVQ$p zexfye{-#bBZ^4~te%0~fEfDetJ;cN4c>ZmXJ~*06Jrwa94ySrD=KqHe2l?NN_^=+q z?-qWJlG4a;B0j{2gBI~2{v0l%_!f92b4kM_#sM|($kSpbUTBikY4dX(|23Tc7i>ZLe5vUkk) z_JG56G4+H){l%P}_#_E%+fgGfIYYlH!V4D6y(0PxCYa2Y=tyS^%0our5G&;c6P)0E zK032)xb!A023yO|Jzl5!jPlc<{H_Bf(hV_phflpe zcikN+<)5fm9ephS0QGrt7~}7b9sZWi*Yw#3ZGCRfy`}DQ-VYuAS>(Zp^R2@Zb>ILI z((B`u9+NNPaiWZ9n>zY$9t)QaA2`gkc|V*)t2XaeyZx}qcOc=9AEGwB`Ev4)j|cgP zcl^Q2Ut-10A>nKBYO{f!xU=t~#=AgFCaTTDQ}%V*ccO^p_e*7exxgog zbHN|?`w9<&FOkQ1c&hRnbPv3_Kswo|1xMWbePw?%6zIR2E9I{|595ARKi%F`~E z%T$UDC71d1@k$#U_G_qQGKQzPs)P}2dYMjtO!x_F`0M5P)jvo6eCd4@s?{6Q8XC;K zrxLS%K`5qu|0}OXC^dXoW3><-Xd54nf#*XSpH+w7TWde<)`Yu zOhJD~`BeRxa@B3yr-l=CXuB$W;6p1Ha)ZzE{=@;nN3zQQmBtTr!Hdl*%9F zZxbgyY;@2?Dt{m4e?2JwPlNoYgZw9heC0bXIQqr-{B2M^&l7*n#{a^~C+lUDPnY9< zS-1|!de8Zp<6~^g-{704x-#iFp1J&~q<3O&A)n)kIwF3H>LmPU@C2KNBc~j}lbr~h zjpNB^rYDTA;0czIuY>&e(-Y4R;0c!D*BZa>OQN6Eo(|3rlzA!+$q34K)|VR;k~9a} zJx=HRN?4Pnyt&VLQ%2Jg<=bh`{DVYV*NX7kl=S#0-igZA4_S#$e&pRW%6UJ~QGm(i z@`*UBeja~EdAd}x;b7%A_|3G>^%><8-v@DIdR8Mom!I=wd_+9iu34UXzv-Uv_BPk2 z;FmC;GJei@G61HgkRR5!pZSc}uGjb)){~GA1L|k8CqE1j&u>u^pIf}aekOx{uDIl9 z&-;-G_Sg8y^V;>7@vAE(uLx|e44Zo?DK zp$-$QXdG99+U$9={Ich1gZJL%`r-Sje0!v9PDmJjhp0SoI?jU zdi-NsfIBA-LjkoJSdifBManme(1?wq#j{nwlQ&efm)cjjEAnwKi-LV_lrR0$YgI^g z1;acWq8kI`pUaM!A=L@+8_*09nWj4L1TWdUt2%EjKHPsVwY<(-MGo7$UNNs!gVz>$ z^7EvF?BS5khT-2*@2T0gvoDVzK-80hMG43B{?{_5!F#aaTM15;AKEzOyXf)PJEd%# z^89zz)Dpk%8UKLUeG>t{^@77?NveyR->iXjnGXLuJ;+0lIMW#}G{_3>&59*6oK+XM z5Qm^_4O$gIR&cWqw;S>eck>M=bJcR*HVdJ#FW>TDwMz|mwxEA;YZIEZ+?g~811jW0 z_-(sC>A_ntk)n21TZ84i8`8Ngl+-$fM)`$EXlI@L|MRs`8XX@uzw+^P{v+o%>u+*? z9pn89tBpoc?pJV8UMq0JDGVnd#0{sM*VbHN_yPIbAa8McwpKILmpfh>uJGfbFAeYA zL9CB=2Qly5K^p$i9pt>5UOB(I`4Vpz4(~i&MHj*SODZ4tM=6i{wRHTo*I&9`wn2U! z<8gST>kEfR%H!}z{Q=FD@@THqAN=T~A3a5HDRP0IiYl%k45yOuVK{qF=e{$)ctNX~ z>%J(9{8H3$1!21UK`zJ8vM~I@?IH}PaJdBe!sWPO2NTt@p4Z6Fb%xdiexarHeBkRy zQuBFv;qd#tw{dB5Dx_fsK?E%4KOY<~X@Ti%wjXn37s^pWUuPkyU3W2cSl1-=%DNy2Ln zPw?r5gx?&0o?poL)$!BMUWs_zD(=k5zd#?Le1e>SN7`QdeArozropoJ(rV?x3-HIa zN0W0O!++4_gLrcWcYM*|FF|`a2Lb+ZtAy7X-x0r4{&zW?YDgvaz5qf0WloY)F0iIi&Iw zGQKh9_icZjW&9J5cLTKNo(p+&&u7SYCJcGRdq)r6J#lop3qEt_ zo_O-8ZF4 zYst3*Xmo!Z*!FrK<@4pzJ8CTXiM108HL4x1Uo5``xtN);YxerO`4!a&*S0<-zp#2^ zVGtWKUnpO?fBS)HlrP=Cy}yt0rTe$#mwbD9mF_>|%&^yjZ>zKGFs(k*jt(V1v1)|E zEtfxsDmF99uetn%6&nf*KGg7;TzuO*@zYY$iWiHexjUaa@(X@LN&Gc;=W~0r3*Syb z1J1Q?1^VuCcb<4PLg^@Y_(ME^u@V5_ujh{d?#Av?hk*-Vs2?v@alOpJePd?I52mA7^voyF?{p= ze(wHeBBqAH9N!vJZ3JeiWq{6Dd%M&X+Bm*p0LwQFSULF(16aN>1DyEQ4Dfu_0O$UA z&=ML~4XE(dJ;u3nA-{Tr$hf~%sd4wtwJ;Ja#g~s}eBOXM&l^w`U)eYs{LC0!M1RtrbGa7Jxm?YiZ8wZQO`b8J z>dvME#(*Zz7*KWRiUFQKU)YAF0ouw@=fAOhX#n!P{L+BU%71)%{M2=ny%sZI`1jS5 zBlFjPOw%cE06hF5pSR)9DVgdb6$Y;mnJ(rOa4T3-!13;{MQIril;e4O3;BV6CX#R5 z-~QV_$qyr9(|p1re-|N=%VUIbfA=F9p3h^1;m_s;emlaZ<=4rK8TbF1T>~47tLa6- zAAWC8&GW}pBjd%e*TK&LO^!_q?Z8vOR~P0)dF@2D_+&^ef6~A|XO)4%WX)`bI$z*x z9#uZsC>?))Qt;2o)Y420SPgW(0)JP-lc;6+X@8)O`9H20n^Oa9>Dlm&Kuz?qC;8@g zukLTH!8&FVHNd>xF~6&I$^HruZ^AWQ1R5U4v1-8^kT6$E=qceR%HIxKsKjrQhXR*LTy9^xe7a_IkOt*zxS^TEfH)>qJ~1GU2@EtZ zKQZ8T#4m3Euc;a#pBfM-5EGRPu*oC_&@Xsb+%z#DNHvbNCUWs6F<{3d7sG2rl51vw z*TVEFGr$Qmyv%^rHkg5z836yfs`k4fT$z*^0CGX`#mKJ&UR!7CF@akwCLi4+>1Hx@ zG=ZV+Ho?M8HUoBG9KQvIW=aF_ZM)O}`NDv}ZxJH7!hjVe2o2bf7aE|E z=Yv+VZQR_74Lh1clC=|SlVj*7|(B?}6 za`z0PZKj;DhWnTnh5pHNTq@k$ZE1rIqfJS=lFa2U>Ss05m1hP#&$r0D_3fBwH1+uX zMWWGZn{$cT{ilgWhuU8vCasbYY9H#_R;dAPe=rR+?cnqmE2H(27~F9OBPZdz|3Ls6aP5UR-xvzMFW};sq_Zq4_Aap zv(A9Sr)g>9&Ke-|1}nuHFu*$l8VY1p&VVT^ZQNP|<_3^e83P^;@EZ8@%S=e))~uQS z<`o5)s5Qcyuq$>4(~XAXo7i1H2L=rBV8D<1QVFrD%Afru49#w`;1-(5{;A=B!~2sZ Z-biv|^92u!lSFD{L_cPWc>J^Y{{{))eQp2% literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/684.269.1.bmp b/BossMod/Pathfinding/ObstacleMaps/684.269.1.bmp new file mode 100644 index 0000000000000000000000000000000000000000..fed720201116543a52788935e81281d48c89a927 GIT binary patch literal 50378 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⁢2PorY;ddCp{1z^LuWj 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 literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/757.472.1.bmp b/BossMod/Pathfinding/ObstacleMaps/757.472.1.bmp new file mode 100644 index 0000000000000000000000000000000000000000..93b587d2e315b1781c1223d9403c7c27d1e8e066 GIT binary patch literal 482174 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 literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/768.536.2.bmp b/BossMod/Pathfinding/ObstacleMaps/768.536.2.bmp new file mode 100644 index 0000000000000000000000000000000000000000..35658c3da77a97b6e38451b01952d7dd542a558d GIT binary patch literal 17246 zcmeI3y^bU`6otLopb1tQLINZc5)zQDw3Z;|6%da>MAe%R^9E$pqtqMF5=kLu#~i!M zKixXVl1J{TS!qk!>04i)zW4h2+Ex9tKm7Fbk0u@;@b_E%`vd>J|LFZ2^Ct56=L`G| z|LSA%L}yAd4zsh@lEQTe0J zG=H_;pTRAw^E3S1JI_P>qyDr$uaMLFyg>iZxT=3tKB}H--)L~PFHw%Thww)JwBJVU zC-5_Qa$rAHoT$BrzKbI+)uaA2ZZB8k8dW!Sy-@y_=PSqN>(SW11ZUVoKZI|5duy#<#{#SVS6ub;_6uJZeii&Yh%5gK_ph#B za$JV{8K|Gwyud%hejrzI9Sb~gyhHqB{Zc=pxE$|qVgWx%PV@9nJb!EuT(9^h^kQA8 zb=|xFLr?Foz)zkWsOM3f=81eLNB>ZceZ!JrVHzcOLO+Dd{uJxt8G6g|ho9*n?nK8~gAi^pvZ9!#>lc-^@Fqx1JpvA1>-VN>9rS|McU)a9`(G zo~jOa=il-A|8wRX1DII;-CSJP@VPpzkGkJ$^e6SB^veH%+_E}1u2Xl_qi)o{;^Xps zN8>)3hrfA!s2taK&L8=00&d^wNMX#nh#T^xQKOK24Dyl&6j)q~TxXwNP_LqCxL1WvFAruhgS z(kx%oopYpXzPc1Dq+j-dC9hb_R_6bqtTcoG5Uy|m`xwMi7X-Gc=?IbC2T9_*BK zFcY7{$z@Xr>1Q77{RMvpYu85&PM!Duo4|vCBMdPdp)ApeG~S@bQ%pycq_V~I<1?-v ziC-^j{5>tfbi1E;62N}!_!29@Qo&oE!rt4tGBy8l_5n=JkC~vcuc$u_wuCM z{j8NXn2FDV-{92bDxF)N+~4wPPv?fGehhDSakwQu)D_J(7zbnUh zm4BC$sEkJbchw`$A^w#gRfnVa+Bq*+x3oT+;Mh+lPmWi}>9~+5<8ta&SN94tMf~CV_aSO7w88y-mW}*$9w;AeQDEN)Q_9_P@iU7ee2iHZT49k z`sW3wT9$2f-N*IaW>IB~;{Pt(Ki){txZQjeeiWa%Uad#fS4!W@@qUfg0i3QQa92%J zHV@<~Pc^Pr#;wamtPJ(-e?OC~w_5$3N*{&>=r{XjHxK{snno)ZGF>$yLuLe_0%*#~Hiq+t*sEVcL_Z9M~ zWL>Prc$MCjR~HL@)c!w&V;-rWft+r*AJ1YV)|}>v`r1Tsm>$W_vRQcjr$DlQqJ|G zdLPkS=iWX)Y9ChX7`eXiYq_*XHsgt^Yzj@FAY5%81!Ad zab3HrS2}?{nb(h+PuIfzOyr4uo63FqhWGZ_&-_vmv7dXzXTJY?$;G_Pl25l&70+kh zpYpz4Tu;%5mid2$+=)CV#&!SmIycrY^^g7GJ&TLayXcLA;)~ELJ`271ba?&^KwUrN w-^Eb}s#o<{M14MWzKZuLxc{LyzPSIP9Q{nWS{MFnT7LZCgSJ1Wn!5M@1Dvh!C;$Ke literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/768.536.3.bmp b/BossMod/Pathfinding/ObstacleMaps/768.536.3.bmp new file mode 100644 index 0000000000000000000000000000000000000000..0d9158591094a2586f2825b349ca72a2f7f95b15 GIT binary patch literal 14146 zcmeI2OKv1L42H|_Vv+G@=xFP{9=20oDVrI zpQq4cY56pji_3h%WqFv&ky{?yF?`A-w_$cV6I(G$gl5i1W)la6O$-ezx9o7j!ZwGk z4#Qb0IzI$^X3r-9O@d$|R17BYsffXNa$>pdAZAI(`?Jll<*h8L4=d35tqj$R>GT*{ z5GIFMT1tB>J2`T%VQBX;ImFCP#G=}QSa6skxDy&fJE1YO!Bhr{=~WCAQCx@9aNX|A;#BAe5%#68~fttvs z(_^4sa*oA$$TTpJa@ z7q)dbx^5z!=v|G6c#OqnhB~aA`MmQWK7^HXBxdKwMCZ??bEm`>(*15IO ztrs67dk9%zGGPTlIeT$LI{z)UHjiu1Y(WR}Z)K?JP3N@?6`JXME3+4WBxm1j+*vIZ z>AWT`Xi=NoE!cbK2-U9nht`p?bqwVY&s#8LOVT~-77WG3=0iC$=G6px2v|Hn0^=vR zwEdV|+h5Ru%J!_AuVa}tX@R&J)&ozd4;S3HEnpiSswn`69!4FNwG;9GA6^TVx-H$ zO0C*Jo|X-mF&1mM{&_Y|5-`=sscm#9BL6q9kJSrcT$I28*Dw zq7*Y$`nkz<)kMOHnWo4huR1xupL9zko5!P-cu2z9OhkTHw+kGYJzJ4nvqR`U3aSLs zIVv5+*u&N?nAM*Qcmt~eW5El#ngqb?M1tlU4873VvUi-X{(%_H*9%_iw8txy>#RA- zwXhvo4b50*GO&imV?)gs{Z$UIT5KNc*PohPg9#6OrciIJ&;lvag6Q(M8oi!zwy)^NF$DJH@c9{2ntN$5>)};pT>CP_8 zNUpDr%ayfso-c=da#(z4c5>?F{J!i=N2*!7mOblf8tHv@wk&!CA`!VqY@0#a2iF;+ zC(D%4-a6Zo`IzakY0%PmxE{NzqrVvau-;~i3io_3%iOe^-K=r>N~(K*nYIL&Iee1 z$MM*9)JcoEG>?H;SGij-uuatY0IR;QNB?TffPY?YE8CAc>${l8fSA2%qh<6O23)5_ oGEJYpj!d4Y#lgwLD3DU*0N+b+d6m&;xFe~isYc>|=@|L-4^L#TKmY&$ literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/768.536.4.bmp b/BossMod/Pathfinding/ObstacleMaps/768.536.4.bmp new file mode 100644 index 0000000000000000000000000000000000000000..d2b2cfb1844d3f64d922e56486dd1d96168f9e20 GIT binary patch literal 10182 zcmds*OODhq5QY=YqS?(6yc`aJCK7wDgncu-;u`n}SwzjXBU=B6CJ*$D-sc;M`OPz#?Jr?S(kxW=<>QWqcEo0&7fUgnkub5+0BehT- zsYNGS{hcXo5vXMjhND`Ge~BOtB|W!h6b|MLu!CDT;@;bGEzryI0LHBkhGTnj#e-1Z zEo2UcZBuhzC2zm!xMOx%9;{00RhZNE=Jl5KqV$V#Eruw#XP@MuG)?l9TzGa#oD;Be_^qk%$ zM7QMDlm^R_+`=yn3n`S`!kh^;uA_@sN51mQ0G-Rb#PK^JaefTVC@&N%%D;TuHG@Vd z#-F}%Wq;j4XRfPVGj~XB^vosML!?KEp{ZTxGGE5kJ|DR9gj5`ztFv1dahi3mh?A14 z{n}Bfo(?Br>4RgSUM02d*9pSSTRHssBv0^NW=GEO!*{MDXYZ`@EiLCK9jsLqLQYu$EDCKp7ulF}_%ebGn^WWg? zTN&f$LEa_T`<2jHNN5k7mXk`n3gj4~7^R_Ta5Nz0uL`z}ASDZXiBZolq787V`2QDUHRZ*E8*Rc8DG^kcDh literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/770.540.1.bmp b/BossMod/Pathfinding/ObstacleMaps/770.540.1.bmp new file mode 100644 index 0000000000000000000000000000000000000000..593b4c58b93afabcf4b94e4fffddaab63a2cb815 GIT binary patch literal 39878 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 MHyY=8;x|V3Ps38T3IG5A literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/771.541.1.bmp b/BossMod/Pathfinding/ObstacleMaps/771.541.1.bmp new file mode 100644 index 0000000000000000000000000000000000000000..057834d5a1e448a8586d3cf65c23488a1d020b40 GIT binary patch literal 39878 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 Sq>ub^cRq;SrRvxk_WuWJzAicd literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/771.541.2.bmp b/BossMod/Pathfinding/ObstacleMaps/771.541.2.bmp new file mode 100644 index 0000000000000000000000000000000000000000..6ffeba2f53b070c4b66790a85427cd36d89f0821 GIT binary patch literal 39878 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 literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/771.541.3.bmp b/BossMod/Pathfinding/ObstacleMaps/771.541.3.bmp new file mode 100644 index 0000000000000000000000000000000000000000..7363e62e16e90243870d29e33b5b9593cabf5bfe GIT binary patch literal 17310 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 Qd42FHX1?!S>$7nF0F|L^bN~PV literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/772.542.3.bmp b/BossMod/Pathfinding/ObstacleMaps/772.542.3.bmp new file mode 100644 index 0000000000000000000000000000000000000000..bac19064780ea90e25e4d045185a092ce7123a8f GIT binary patch literal 17758 zcmeIuu?d1P6aeA;otc}G) z?>ag?aRB4m00H9K0HN@>Hb5vmt_=_hk81;j!sFTi`OdI`dyDblX}K~`fA0+VUk7%j zFIrsnT!xlvty(g6ZS=HM=K@(Wc5U>uRHtpmu8p3;YTRa!xVzCOt%N+Kg2XeS*xl%( zRzjYVVnh_X8-379$Wu~`fMR!}C!4B71ti7rWhJUv*~v?hEi_}-MlU=0oFNOwu8m%H z@@b19;xUUi9Q^?a8s`w z)LGY1LRp2!A%@?^T@$+XmUl`NAY+pr^1~l%t_ej~S*PTWS0`46D(jU{R?~sy>9MMLuknBThTFO@i*~$E&!rV6pY6&TG5HMsO2LV zEj&(`h^YxrCnwgTmQP@`@F2!Vz5JcH+36fbK)KSPo&&;_RZ&~EygN}m!-<=n&bbrC zGn`mkw!Ax0Jj02boylQ5RM|5qK$LhRYgfpEVa2-`0qyFT^M}?t#5Qz{VNZhv!;074 zKvd}%`h7EQF{T|xG&8+1rk1gYv7~pG4TKA#1>;%oE(aMeX6iQ}oxbd3sO@yIkDb04 z<0rGf?)Af-DA@h<0LgW7n{0<+ zduA+K;WuIE5Nu7GT-T4^h_Tp(?Y#Jlk?BJzEEsksjxlU>n_E(8*FP72c*c$x`)V1% ztg>O>*)V854mq`swagD?ExS1VJPdu8dbRsiapb%oxYOymjq9i0c?Rxunh{K?xZzKf zgb~)aZ^PKSX*xe5GunDLEpOd;p9gcI1ZFh0>I*SqbN;X&>TEd62yHwbY1ojShLh|YWoJZLWE?Wfed(<}i&#C!gXNCPp zP~`0|aE3p!9cfQF-xx9pO&NWOT*7pQR-NtiIdPUDrhqLO5!4d1jge5R6HIe)jS(P& z2B&k3CL@cSvK^Ox6UMt5b#oqEZhKbl&$>W!9ka9Lah4&$^svT|eP$Tw=^0rjX2Qr( z*2WEf)P3w}h4Cm33L^)k_ak7gvfl9Y0}STMr_B66VN54VIUr{)R6TwJ(Mm9AV@lPf zG_u(yLyv&65{C*yHsu645}zUY)EI_;zz@ZsmVbU^J!tBli62o!mhmuC{I|Z4Qe_}t z`G&z~2+txhAAY2@Y#Dhr%S=mg;_--NvzFR^xEgWNzmBrh)7#E`XQPH7Pn177mu41?t78SSRB zka3C(lKm^0i_YL#*14ks%sG3QffjZ!UU_a8cZb|Kq*LDyadB~nX^gSY(0jbv z$(!LGMxf3#6Ykoa%XErJpz4#N3Tr09s;nV1_H^`vvAnxh)0#?{14kMi+rJwDzsirkUc5^PBWh5xJZdZHGv~$AF zt@oquuGXAOtKY>SxrEWq3GW9xU&rH|AIdd19$$>1Tq-w*Hn&E&vkW8XQlf}-xdRBgWBZwjeylkwA`*{;P|_eq3$o%!3#?2?s0*YRRv?RHJ6vv{pE7w zYyrl2*f<;FpeSeganx-XOObY-%Vk;iYSHW z_i1>aeB9w=S2`wJ7;~$&jBHDKO~vN+Fo;jzJLtKVdJK|JFx1yu&sk%@tgazye}oa; z^ys;kRu~ED^^!~N)9|MJ+{uVgAIf_qYM+*5%+H;S0QI5V&l0lqJ|X1iP6o6oiFQPe zuD?`MufYzq91mL)$hdsFa<-*tEvVMk5CVZg)3X^M)?&dB@xX}$dd4$AVTT8zvKS9Jw=gQ# zFy7NPjgURgc*E94+vI!|;~j64M;WvszT*5$>_^0BO}p2eFz$GpobzUxDZAD_?GMDD zv7jW3vTN+yg9;-tp)ekEY3E+ZKVp{c9)~Aw;N=I};c3r)ig6PN2raQCmG|)IDcl#*^PA? zVO!>M`BOZGic_UhNdn{q9c?JU9$x;*+2SMWCDN3CuGv1fA%|Noa z=)D6o#uCfN7<7|<7&-I-sCVy+{NUU8^jR3eU41*Fig=rgA9K;Y1tam|F2sG$L^F~j zm@JOG+e(aRJNd5v4avE83r4(wAH2tWxUMhEn4W77FN;$#W5!$&m#w*M#*Bu*wx9P- zRoBY~8dIedFWEn`-I9^dBgO4yJ>%l_f(CBI_(3@v4y-xyL(jzTnW2V)vq$>k8N-1w zT{13@vF{8&0=A6%gsnJGLg*i`GA6i>+`^BqgK=aZGoyh*yuo;+8!*%#xp)_Mmyg^( zJp48cy+ivJ_LYyE`<{H{%>EpVXihBO!oKn?&W3Q{{^7m5#k_n=jElY#`oZKf-!!j` zknapTvFzVZ(EBbPG13!jO!|>zqZ}lc)eeAYs*@Z`XUH-KC=lffBy1pX*N|s0;Ckps-9m98;c9*%`l^1NqB`>99iEXb{yu)0? z(cAd4VbBZv%D}NQ-p7CxMqb>f`Mu6=y zPs9jCQ!-rA9~}nv67=} z#>o4+-jk~z<;Fz6GKXRKD=rAMpJqnelUL3L)}g)>2C}p9dLITXv`wQLlSWdLpohWdFy4pG9EMSI?$kURg^xDtSH;HWcd^N z+2zKFY)nm0MRUPuTe4gVq}&){NM>VUsJ_S!+m0x?oaC^D4W(jc7}CHjvIMOb>gL`Y zAR6+87s`fV#(*Zjg{f#xf{%n~=jh8{hWk+@`1~(Kf6FE6Sd*C1PY@|5Up@{$HBCLj zX2yuyqEXggbMi$uX6%{`5okcl5T9k3sEuYga09ME;23sHmA~3X{Aiz!;YKc2f1AZJ zx5Aj3mLG#AvAKMrNaY*mc53py4D&Xe7;|G7S*u>;jNTjK<64HAF>1{47p=Dnt7l>i z486>njnCO}^QG$yh!WC;j9^S6N=O$n*rrZlJAa0|ww*+oUikF@75)MeD|WYK)B&^OXZA!fgSC3P>VHa^o~ zXt6h~WvwKB80WRP+W3rCI?B*vnlKvr@__cth1IuT%9`QM7pPE;UB|^vKX1W6Llx=H z%DsM=cMEc6kCk~k{k*3yWHuEeckZJa(*AguTdljp>}Alvw_83n+lFT^Bf+QzCLzpJ zE-Fg5^)o`N9YVpBvLDS&ZK(2O)mn}yHLvok#V!LzY6R@)obU@1Qjg(g!psuhKoYad za1mi5uDs=K!==VRWqov;WhzdZ0aB(l%g!oq^=?x9z#z}nU?r2N!>XnB*A!5$e&BzC zI+G$ZHhP>H_$!373`VHQHO*DV>sP{{|FM2M?d!|+jN$ZrwI9QL1IBp%3bJQBpmTj+ zzB42!^LqI{rg@G20ms9i4S6IkijO}Y!;I3RuxmW@t!6*jG^Qz}TF-K;H+FxqL62Km`TJ=G-NsKX)1SM(SF5A^J;~K>;#3(^}+zPQA~d sv7f7v&-{Xlx2_-NH(HO7a$2uewP7OV literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/773.544.2.bmp b/BossMod/Pathfinding/ObstacleMaps/773.544.2.bmp new file mode 100644 index 0000000000000000000000000000000000000000..d5152b8ed3cdf59282c48006fede72f4665983c9 GIT binary patch literal 34942 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 Z%`XD$(OT%?*PqY)v=EtNkA8&l`#&7nk>&sZ literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/773.544.3.bmp b/BossMod/Pathfinding/ObstacleMaps/773.544.3.bmp new file mode 100644 index 0000000000000000000000000000000000000000..62d503f9aea28bcb04095c665ec4582be6597185 GIT binary patch literal 18662 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 literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/774.546.2.bmp b/BossMod/Pathfinding/ObstacleMaps/774.546.2.bmp new file mode 100644 index 0000000000000000000000000000000000000000..886492f46fd40b74d9672239f27d206ec40854cf GIT binary patch literal 34942 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 literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/775.548.2.bmp b/BossMod/Pathfinding/ObstacleMaps/775.548.2.bmp new file mode 100644 index 0000000000000000000000000000000000000000..87742c2d16f3d81c23a17447497fbed99af218f0 GIT binary patch literal 37190 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 literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/775.548.3.bmp b/BossMod/Pathfinding/ObstacleMaps/775.548.3.bmp new file mode 100644 index 0000000000000000000000000000000000000000..c9b3b897ad82666a3d78ffd9ff907807e0c6915c GIT binary patch literal 4014 zcmeH}T~5O=498vZFnHP#`pPM=d(93&^=3^_`Uz~dg!f*pUvvk(=cpbafjyZ++L z{yTM&K0dwfp|=OT-{bX+*IjFEf~oiS+b!Pd@-5+@*6OacBk=R*T;avry9+mdTP~t- zAuZU>jSsAEVs));&2N&w`u}gd^?XHt=T@3hw1O_&_A~>?imo;JXC4tBz9Zo269r1gDYh2uTN_dU48&4B(c%I0AK&FzKWiN8F>B*|GQqN+m_XfvRgZ3XDsX0hwt^O66(C5bA2mAxC4jouB{l1K$tW4KLqm3G?yx_j SdsRonD8)n%+FW$)(%%o{Dmy&@ literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/775.548.4.bmp b/BossMod/Pathfinding/ObstacleMaps/775.548.4.bmp new file mode 100644 index 0000000000000000000000000000000000000000..c1ba56af31baad3905c2cd29dc0ccfb924e7e127 GIT binary patch literal 18662 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 LA{{#)Tj1mWq(7

#|60#D+=p%0+aR4MlzbOSqd;1Va(Ep!$t*BMki!iHZUdDK5> z0xt;ufZ(oXxImSLZ2Uaze$fCq+|l>lzkdCxk@78l{)7Je`(K*om*4OAQ*+V={`{-^ z&(}0fdtWTp{k+(7zC-0yedZOIZ{06{D3kx+H0AlsgvyzkHBlx{=QlUUfNYxA`@PT7 zd4kj2@6?hp?~lewE&-~{jjM7X!$!umK6&{(!FkEuf2KKk`_BZ2*4Iv)H+lfcSYH$V zy!6fAcH+<#%KcF{D~FOKAw{xsw4|USIV4#L!$wAONV0M?6e^NKl9e!QWF&{gmC2h5 zqT(Ua8dn~b6UT|tB&A4JRt|1`u^zEqbyh`epRfAV{7I|{u1cmxTp8O5Rc!8kC7;-r$VPrTV=aByg}X+0Asx+VSQb&Oglf9B$fdLM=( zsYM^|RYMS0)Uu#Y)Vp$`jVoWDHX^7w=Gev%wNQ7>=QSMZ={A_B;7o3Y=>1|`D>5VwU^Vk4zComKYhfxQNbM7oHA`lD(Bjz;UlRi@%{E9x$Ven3z z(~lEzW%@%ol-371x8~yI8|gz8kHwL-up%xDavayYb9%m}f5o%epG*#4H97AO#vwhZ ztk*}nC+59!f}2pbK5%CdiMQ!|0FGOrxK3$jgni%dl=0b+hY!lR!#=+~u9!2@D;CDt zs!!`*d`JFl=0x-J#2noWEr9KDy*I}eyWhMg=A5f796hluMmDO-*-@WipAx~h>-+$m zj=Xmn_2n!{G9*$~T%Ur|vm~u05*u7rt*?$cI-Pk87aEtJKQ|i49#CNhmn|HA0oYsw zQ^b*saeEUZxoq*L=Yj4;4WDw^!s&S6sXVS5bKHd4*15$W!MF)4;831$xk_NO9O*IK z2UH0E*$c)^{Nr#)St?onXdsd#G}OhVoS3R%bekU z0-J-6OA~qrPRlaxz_~V;+wjNkuN26y(xmXol`j;2FK}(VIZ!d{vW8>%1tXDj-ibqd z>&<*i9y!BS_>&wPR_@6$u1LZLJBa#Nm&qghV~vOBG|fME(Whztdr;1Qc8Y7CJmkdO zBcJ!@^o*3UV&AZ?!}{V1jjMNUUoGup$#u%R)=r#GIkv@Z_9x=Bymz}8UC4p$ZtKvl zhW!e}{MpQL`taYGxh!(158Th3ao&kz^IqzYapY@392aZOg#+etCY>jX&b#$!!*P7h z#m27SSl>1r$LCyfI5+Lw^0>|oEc}EbjutQLyz#DmQY^9Q1X$Yh|-55XaSTkqy{UM|H2 z9E=l&s`2$?{^W7K*@<(Vb#os=6|&e7|x$Ojy*pk=E*pA z-9 z4eXysD?Rh0vBjEqOqC)i@hSHItg7mf_bR5_qr;Ww9riVgH<*))E2^fdgC*F@FSoZ-cOdHxe+DDGTfuO^X zW^`*cUK^9%vjE!ojET% z`SX4p-U~DKL#NN!pKTob8&j~a^8D>EU*o9;XnYYDSFt}gcNMw(d?=ItPy^1$F*p{l z91HZR9DR#xI+&DZ!_gXNmX!6ku4cp08Y^c|pim!rNs=fJtFt{g@Ln|hL}6@DO(Lq` z{rsQD;XQTu5$~XLzCUS>ND+L%S8Fg#pWQfoRfApv7vL0J0KU8B zctr@t5XvflU?>>x%V`5i!c%YojI=+Wi_>$C$hT=*c9JwIf}GNa%=^#ruY5w0gTGs? zeF)V6L82& zcy3^~(}m*Fr4%-Yl?Ua7A%>yH=gEFSWpEk~1v}XbFTx=x!1(m^RJQVHZy!y%m zbLckOq872GH(LIb2Lab?>t0OKhe{idL|gjE$0KvTcW(Zho!7X=TLJ`@j>~E#*2)n% z!g;UySQ42MxW25m=8q}y0r~{r^K5p;#})n@mb2!kUu*QK99C&^Kcu8ve&qOAotGb> z*ZK2=oR>~QJI~A)JPnPv45?|3${8kpI-jje*dvz7`pm5h>r*+V9x8&C^}(a{sXC)B zW*t}`-ln2|N!Oy)6@`{5g2(2i=a-B0ZzzYW5J#eg99vq(4ms_zvjFD29KZYrt_ov|46Gp~5O~$o1M_035Dx6VU z=XSI{m_O!EDaYug93I~dZ+wh87nfdf{NBsvd~400 Qd42FHX1?!S>$7nF0F|L^bN~PV literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/782.543.3.bmp b/BossMod/Pathfinding/ObstacleMaps/782.543.3.bmp new file mode 100644 index 0000000000000000000000000000000000000000..bac19064780ea90e25e4d045185a092ce7123a8f GIT binary patch literal 17758 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 Z%`XD$(OT%?*PqY)v=EtNkA8&l`#&7nk>&sZ literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/783.545.2.bmp b/BossMod/Pathfinding/ObstacleMaps/783.545.2.bmp new file mode 100644 index 0000000000000000000000000000000000000000..533172bf8141c641d903aa17aa063731164fe29d GIT binary patch literal 35966 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 sv7f7v&-{Xlx2_-NH(HO7a$2uewP7OV literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/783.545.3.bmp b/BossMod/Pathfinding/ObstacleMaps/783.545.3.bmp new file mode 100644 index 0000000000000000000000000000000000000000..62d503f9aea28bcb04095c665ec4582be6597185 GIT binary patch literal 18662 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 literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/784.547.2.bmp b/BossMod/Pathfinding/ObstacleMaps/784.547.2.bmp new file mode 100644 index 0000000000000000000000000000000000000000..62d503f9aea28bcb04095c665ec4582be6597185 GIT binary patch literal 18662 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 literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/785.549.1.bmp b/BossMod/Pathfinding/ObstacleMaps/785.549.1.bmp new file mode 100644 index 0000000000000000000000000000000000000000..2de7eed4f0a3b0c7eb34e2beb2a0bf0dbc954b97 GIT binary patch literal 40454 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 literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/785.549.2.bmp b/BossMod/Pathfinding/ObstacleMaps/785.549.2.bmp new file mode 100644 index 0000000000000000000000000000000000000000..87742c2d16f3d81c23a17447497fbed99af218f0 GIT binary patch literal 37190 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 literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/785.549.3.bmp b/BossMod/Pathfinding/ObstacleMaps/785.549.3.bmp new file mode 100644 index 0000000000000000000000000000000000000000..c1ba56af31baad3905c2cd29dc0ccfb924e7e127 GIT binary patch literal 18662 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 KlbWmEy#E7d+^w1b literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/822.659.2.bmp b/BossMod/Pathfinding/ObstacleMaps/822.659.2.bmp new file mode 100644 index 0000000000000000000000000000000000000000..c00b5745f553d6bcfa352c85c3eccf232163cfe2 GIT binary patch literal 69626 zcmeI5O^)O^4uvBpfv(xr5xnhFw1L^rnXIGfD4x|UJC}(@AwATuMOku+q^dhQhX$&` zl%+4IrzhDCM^ydm-+z36dARL2`133L`Q;yv$IFl7czJ|!ckJ=c_{RtFukB!MKfbe? zp+@iDP{<12Us=siqqi3nvVymVyfga*hLtnkAJ4&fn~=u@#%9HN{BUzkXjB-LISirM zeI7Fy57s=(jbLP9h07sp$1{ZE;u*rlaCd!KSY1es{IERM6tZ4@R~{RyZEEDZB4Y%E z%pMj5mD)oYX;8!Kv*=-9WMRX}5u<<*`Sc?)R^nTi)%}S9I7?Yb+z&JV@sO-RVdl#i zHtHeC!%SdAghY=tv=T-dS_vZ!t%Q+=R>IgPXgY&oC*(1MVNxD~YyKIGl!oNmGBfzs zQhB-vuE$OWe__v4PH=L_Q%=ChQ|`e(!R&cl_zW8uufSS~CzV`1GQLBfmRv~OF(Ho) zv}KG3HLXXt8ex>~Jsoqs2f9NQfvysva%29tQ{me{;5IvF$i4dti3x0&MX1 zJ9}WPBX|a6#2gso5w0;Xm;>Vx-d&(Bb0rIm1@drCffxD~Ew;LrTt>9m<`{;#f<%is z1lwf6VqrWi(_}k{kbD6-v1Y&ZjL;PHWtq%)#^UvWfnk}}23}$wsivF6X@B@NF!Fo5#bg_994iJ!8d|>^t~|y$Ss{-_$}kLrgua}lz}Rwaccxf!G`3SSoY_ye z@EFeQ)WHpTobTtB=sbJQ;@iEN;ZFV3S$AO=C|Pgc_HxiO%H%DSESG9`1>p=;GIn5` z)90>jIu;n^KsbYxajMyW4UEzdZg9)I`fbyZz$kO~CF$_cYq%I&%DRvTZD0apEg1$F z2wEO&?Kc=ZFv`xgnxV3AQMi?5ZeXMgms&YcCBL~J^1z3HK{AL-yk0;Jhf!H-Cz{OX zQDyGRaPRITc+ZQ1PSpEW_^4-8BkA0};cB;$XDn3}V60WqU1*{HrGdE?eahIX8US9Z zqPq~PUpv3k%x)Z`eiInnO6Ix-iXEe}*m1xFpiGz^qp}@(-#UOat`iJQMrB;`29sU- zSHF1?yF4xo+O4u*#IIvuu47faZ?)?gOI1j`-R>|f#q6H3UhHEXEB@B2F-89p#&z1dg^bph8H~m|LLLorM^rbq z4F)WRe?DWm=19(C24kI&$4_FwaM8x4kq4QvUG)G)VoGdjo5g!ak7ngg;a6hV33|+8bmSf`c6kg}?o>3*%fe3OPVo!|bcL`|v=afw z_`=ynbS{J1l{=*~81B@tboisiGZ=13mgeCY>uA!QdTuG4!RX+Jiy@E3UDR-MUvZzq z5KkA#<0%+cK5gCiJ)~2A3d1z-qGX+j8YOtTz<m@Zik!Ifo}gYXen<+M28fV5Oc#>23Lxn$PyMpez-HTTcJkC6Tz0Fkd!S)J}n3q(?Ze}dv81{B;_)SNy}c;3x~0t zUdX{d*A~OVc4^U&xpIQn@D>fm_(}nM_Q&RS%^Q6`a(3h&(Z3u6>p$gVBNDc$W(qN#X&jMiJAuuiv%EJ^l$Cs0+Q?&R<$G5)gRz&r z2>awbeiDPMslE1vJhnfHL7gsPJ;nX`zh*SNPS)cqG1A$wun1WXW#HBIS@dYELFBPj z1|HkJm?&|VtmzC!V+|soqZ&T_OBm_WxR92d#|%dLluv$gd)F; zkSA>Q1}=}aDx-!w^~0Ce8_3ge|6-i9E6S+HMm5EXs2-E`@TY|0b3=?Di5Ep7B|*GE`Hn0FKljss~m8N9vE~)B~>S$luw(J@Mb&dGNAG$P7KqgzsG_1CNX9p?Y8iaHRggdORkq zLCR1~u>v?!f2bZ<0USMvKW5x}Jj?yujCOvyeZ|Cn8{nwh`=1odag*yj*A z#(F6w6@X2}4FBr{ULMB1ecpJC+}!W57+!^w!(w<9gbe>{0wE(lwoMdPU-r~Gys{W} z0>eyTU<7ZzDC0nz>Vf1aKHuZ7r^PbtB#9tDGaEmbh!RKt7jQ82)$ywB(hMy2+6s0^%?>Y;jI1#qPPP(82$I8uM8 z9#{b!sXtT?tN@PGAF2md07vQ%)dMSlBlU;sffc}!`a|`=3gAfnp?Y8iaHRfFJ+J~e zQhz+F9`NMmveBMhT$=j=+H;sTgZ4bA&7eJ(>M%AudiPO>vEH}BM>~uK*Se274AMiT z4ufQn4ufQn=V!bP|7xq>7iARMfIldDtk=m9zi2aRwB|WV8Cci9sUEl!F(URw8BGOn zp=zpnUYPZ_<>P9RFA9x-cf(39#{b!sXtT? ztN@Pw?*4$Q!6o&G+ZVVh&5zW$jPf^UTn4nuXL>FJE(Y^6R{91O~%LX){k0@ zrC+^yq{Ud9HT#7v#@4UiJknw`E8Y|~7t9Ema>IjmvAg(KdBGU@UbR zH7>7Dscmz8xlND5h^?-SJRosLHN}d|@ToGsuBJwOs&s46h6Q3oGZ+(mDnB>Gi#pL6 zR~gtrs)y=<6~K}DL-oK4;7I+UdSC@`r2bGnumU(zf2bZ<0UW76R1d5Gj?^Dm4~Ta0 zN8`uw{wxg9&3=&PO&Q1|st1zeP(8k`9`6(8zA~^sX6P|x&P_N+%{W)?;>X#?VW%)Q zJWz~i&a(n}9uuB76#s_;Lx|W!^T67v9;ydc07vSNFRF*$XXAlYJyZ{@0FKljss~m8 zN9qsN11o?d^@r+#6~K}DL-oK4;7I+UdSC@`r2bGnumU(zf2bZ<0UW76R1d5Gj%N77 L|8{o4+`;I7LQ6x8 literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/823.651.1.bmp b/BossMod/Pathfinding/ObstacleMaps/823.651.1.bmp new file mode 100644 index 0000000000000000000000000000000000000000..69523e21f2c7b5a7abee247720eab0ec2f6b0dc5 GIT binary patch literal 11774 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 D-D$_M literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/836.656.2.bmp b/BossMod/Pathfinding/ObstacleMaps/836.656.2.bmp new file mode 100644 index 0000000000000000000000000000000000000000..38294bed3d26fa51f97fcca4f7d05bf68e99f684 GIT binary patch literal 18830 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 aj#p=>7;RYmqMQ}4xA@g*+M#QNf&UM&eS1^@ literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/837.676.1.bmp b/BossMod/Pathfinding/ObstacleMaps/837.676.1.bmp new file mode 100644 index 0000000000000000000000000000000000000000..65653e357ad8b92880c0a249f0a62e13ff64eb73 GIT binary patch literal 161678 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 UY4N!DEX=b!*0zw-;<5Js0r!W9Qvd(} literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/838.652.1.bmp b/BossMod/Pathfinding/ObstacleMaps/838.652.1.bmp new file mode 100644 index 0000000000000000000000000000000000000000..140219e17d534133c4d4d6b98f3815822242746b GIT binary patch literal 112446 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 literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/861.662.1.bmp b/BossMod/Pathfinding/ObstacleMaps/861.662.1.bmp new file mode 100644 index 0000000000000000000000000000000000000000..5ee4faaeae934f58a1b5c72de3b9c0cd8299a2d7 GIT binary patch literal 60486 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 literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/862.663.1.bmp b/BossMod/Pathfinding/ObstacleMaps/862.663.1.bmp new file mode 100644 index 0000000000000000000000000000000000000000..793cd2c15e420441284388bb75d88540d4e88041 GIT binary patch literal 474062 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 literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/864.665.1.bmp b/BossMod/Pathfinding/ObstacleMaps/864.665.1.bmp new file mode 100644 index 0000000000000000000000000000000000000000..8956f0ebab9babcd047d1c68adbb5c865d2fef0e GIT binary patch literal 35214 zcmeI5y{_d*5rBPk&|IQ9=>{uINH`&&VR}T)JKRT@a07%}+5jOTcoSZMmNr-d9sy|^ z5p2i>0xr_k@mBv-|GCR{+b&C7t)=nl-}<_$tE<~SXZQZ{SAY0jXRi-%{|Ws2`L*l* zbRWk{cX1Ww{zLySmUP`P!u5^0op6190>dD_Jc)C8U7Y(#`n+`K*zLu6H#_XP6YLBF zch0)l;FIKgmt;D{4AFTm+f;+(O7orqjRyM-bc`WjS~DDe@flDUwE?{)IjE7);mS*<+98-0ti#K^oA*ojoRK!@1nq z*Q!~kU3X{S>`WZ(x?l5eLY4zJ?#LrOsArBm+H<%gf^!7$Ic9yFBY;xO9CJXhmtY1- z&*9!0l;?0eg7zS8M|ehs2Hpv}Yi~GiM?em@BOr(S`2;!aj^O8qJ7kB*)AKsqi286l zg7Tp69ieSPPum*Kb_DjV!7KFYA_Di;aF!!T4|*+*fQM4nqf8pM{og;wZn#|DN*gL{!A4PlLmL9k@e6%a|zb##x+J>#cI>J{? zeVZCPM{wT)aDI8~9pUmNjP9Ay8@wZQhNBt70y=_;q>}MHGd`yNY#hNS1kji+?+Cvz z-w|_$Iq5*}$5C~h`<)IPNHB&|Jd_T`BaAmNUFZmdQH(KcW8@Kl;pD)ovDbThXEK@* zs~pGO2R;xwf&~da4myJ6^n4t21k2$(m`Y1HL)FoIN6hn1sG;-rqiX}2`;aB{{U1jBLq^*H`Ea5&fLIDQ*AoN;s<|05C9 zGcF$x{n|MCB)f&Jfq8xcNAUVVh&;@kumv%5#!fib9(e6GDt{Vb#*BX-oojP*%)>TZ zyy4m^VO{$Kj&<$tIn9pqD(%Mj!U_#+?e_n}!5yZ@@t2yxf)2_iV!wj0(v!xM>~Dm96Lq>*E_w}Eiigc zn`5g~aFITeBMaGSmf(03P+_UsYt9X*`9V`x1rmjGZm`4|2${8F99wFxkgj!rG924L z)Ypnt5L!tPf{-I>0*SJU^jNgO=?R&Y;<#r==`lrcuu}sEO%P?LsRd3$;L)krNqT|P z5O`!RTcAl?F~Pw#x1NJNJnfeM7M1$;5__!=aQX1NejNvYu)03*6suH>^0OXYh@C9xKG<8DWc?HH&K&WDNDx=;+?%w2ox-F`ijh2 zQL#!LM*+ZJOPsX}wQvLHrwS>wKGbuQvKwAfC~8K4GHkMT0Z9*luM$ksiA|JT z;;j5SJ#hoeaidQrjpAq=-@28G5^wO@4)pO>NEYfM2O`Ld3oQg3b9wJcv|Q$_3JJ=J z2Y~s!24nkD_@Fp`fEt>tacv3h%=OmXu3=~<=dO9qMVnU3c1sKd?XST}O>cJ%gpfp^ z6$+snIGNXA0i;mxUF?5B7aEblDU1=_z;i;mLK#8BP~{WZ2p5AwkZ0vap&B`)gp9MO z5Q=l3krVXnOFc0E{2}cddt!a|nY%$UpJAbjtbLMs8B$JI;Yo`mnJb^Hl`w!IX`Lls zvfbS>X{B^NrYHzGv%xFxY;(l0RMs>ZkKxQR%#gCqmTGCgUdnY7IMPcl7r&D*t3kN>^*M0`@< zMJ6SX6o_B_8KOomD9a7`F&gStiw_M8Kg#6CjL3)6K0VnvJjz{2wNKCVS8NLiTP=b) z)+f{&!9|<((qqfq@`b>9cEj}K4@z~hlhQ5I6HnO_ab$sr)@Vp+QXW;&AUtVWL`X__ zEZ;OelcgTzQK@ayQ|@4t^jIzuW3(irgmtMF*=gH#(nG6_)6*Q`woVV8i^6~x5+b!l zL%NkSG{{byHgcv%p;XvRx{*UZ70e)PRU@Zgl1J6A=X`EFL{M^;%2#tP_AId^j;vqJ zv2R_su2R6Og$3iQujB6_wRM#OXJKP_ryWQRyw99gZlSAAuPukTC(r}ig(Jj0n zC$79-w6A_PFG6-q&)S_%cW-u059ldNC2ILcQz&Swtf-lu;oM7~4EM?8RtTGEGF?J7 z&ZlnopLtSt52cC6m?UmXM{+cI`K0wMiej|*E?@XcH3eH6x6-WK}GLE+Pvp3DevHq3> zgpYe3u_`u3eR}ifsS?iKXN3}l9B_i-_c?vpbXPud#y{ro=GZu2pTzkp<6Qr|%T8ry zw3`^me`M!+2;oOw3Flw;)ZZ96FJHuUO8;zTo0f?_&-wX4Y!gWILQX$9!SQhHi6=GN z&S(0GT3$9xJF4bOj@1Xx9TO)97d`A6{EeNi$8=EHOFSb5#HM$Ss#7)D254+@VN~N$M4oTNdl+S zho7Z#2;`JmI*$jx3Y$>;*6_$YJHWMj_apc0c*8x4ilzq_nc(*A!7{7jfKx3$y71`t WVAS~jeU3WgQ%{ZH*z*5v5ceH}Z@g&$ literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/864.665.2.bmp b/BossMod/Pathfinding/ObstacleMaps/864.665.2.bmp new file mode 100644 index 0000000000000000000000000000000000000000..6f11c9485c0ebd9186602f0b5f8f97bb3443380e GIT binary patch literal 4542 zcmds(y>8S%5XWa(DW-@x(Oq$hTgsFtfntfCcgO=!T$v)0Hx*9-j}naX8Wc`NYec~z zUCzwRdOv2@>j)4+VkEEa{q28tXZFK>{pR*Luw7vJ0}Sme~0`JJNidw=r}&K&A$n zHP0}i$VApW17yjji5cwW+Qi0nw zwMQ8WR7saQo8H;yJhR*EUo$*@(B{Xo$S%t|)sx4E+1TkDI(-LmpVl3DaYo;QdYT0T zP1u^)K%1~>4W6`se?`vl6Y4j#Q3v#39D);kYMsy39)B`C+fkzl9ibgyeCVi(jQV!x z;8F7m?WrD(mw-P%?P+sm5$F&25Ew`B$}u|a0y9)yQ-P*&n97~=M;karMW#_#efQ(! zx+h#>Jvy%^P88h%-+~dFCLKN7@EoOY zNBH&2S?$LnkK7IZ;57xdhHdlFv)*;Z_ciQVk4DKh&<8YjLbp+$ifpCtB4&iH8s8O} z9z*2Wfpx5lx@gj|jqLC5vrfb(`%769#gMS=5^EQ9ODvKlbK97h$+gtn#7wTii?HCa zkzChX!Q6j`P0y8J@*B4c#{hL~tiqOqWL?BmFIgWkZ6u2W)X~PI{^9_2v@war0j4Yt zP?@lyNf!sGx`df9&`j3_79SGqv;R#N2cN_zf83IBF6rW=Rf%qi#YbqW6M0K~asu3J U%rR`h`6)2OSw7k4R2+ovCzcA|o&W#< literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/884.692.1.bmp b/BossMod/Pathfinding/ObstacleMaps/884.692.1.bmp new file mode 100644 index 0000000000000000000000000000000000000000..ee623c5d530f1c10d66ba24c009488fb3e2463bc GIT binary patch literal 85798 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 R;I+MREpf*4`J}F6{|7qo1SkLi literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/898.714.1.bmp b/BossMod/Pathfinding/ObstacleMaps/898.714.1.bmp new file mode 100644 index 0000000000000000000000000000000000000000..f7b02a92de2fd960b744658ffbc08d79acab3f82 GIT binary patch literal 87982 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 literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/916.737.1.bmp b/BossMod/Pathfinding/ObstacleMaps/916.737.1.bmp new file mode 100644 index 0000000000000000000000000000000000000000..4d5d7fc8a09b663b0fdd69a1454d966ff15645c7 GIT binary patch literal 28358 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 literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/920.735.1.bmp b/BossMod/Pathfinding/ObstacleMaps/920.735.1.bmp new file mode 100644 index 0000000000000000000000000000000000000000..1d8cd4aa752e7799b97e1f33632f0b729d0db545 GIT binary patch literal 170522 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 z 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%0A;#=g(an&uC7P%M88U`nTLsVIlKlbbAOx z@Ysd0Ll;U3^83yZPd^y!q>#cnCtcn+stKDn;6noZeIrgwn8C*dGxyT`$VJ8L+2Fi= z@0KsaIKlf!hmIDEVz*DyMtA4AaW-fI6@I4qGJ7SCXA z@zVnE#%X4p4V&kQIgSRfAr+;)(6~^!Y1&WlFu8_@p=b#b?qdsT`V>|=O)CmZnR{pm zp994dhCdlkH?3E5N{oMPF!;Av5$1zvG+&p{uOW9*zmyr<-G7=op z&m67Ij5FZUdjY|jIMtXC3F@GrOR0@YI?yk|5cHFdQj=_AC%3kM8DB2w#Aw{d(6%77 z?0~jiRMNA{g&N5;fR$RvDlpLt&tp&{ZeYV&zVDg(-UV@o63CxCl`JkMKuiCWW7s^X1e22&uY3Wb2h1$i~jm zstRbW8pjH6W&`iW4Ijb#fZFwZ=JM>!*Az`*;21ECP)zSfqSl7_WGE%i%&M2_Y7fdY znLh_rtB*DM!8pfKoFFJoie~U5K9wm2m-?6A9a9>L*&n!i2!xeqU^ZDuX;y35 z^LPurqu0`Xt4lF&RF8un0svy^3Xe~VaEQRsh5jJO%?jV6= literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/933.746.1.bmp b/BossMod/Pathfinding/ObstacleMaps/933.746.1.bmp new file mode 100644 index 0000000000000000000000000000000000000000..7146bbd1a0565c6ae0f9a6c1cf7c9ccdec2a30d1 GIT binary patch literal 4526 zcmeH~O>WyT5QWD`(R3&D1lsl#70`WdRDdkdWzW(x@F+Thms$v#zWE_Dj-pg??4UqR zK=P;YkTZN7((<>5-=9g_SKPngdcgH-VLs47?Rxu!yIip)=Jt4hW7XoOgO$Whhkr^3 zW?txkyS4v~XQEW+ek2+yk3{`*T!^}AkDQ56*w!Kw(OtD)gU5|Lx9lb4pF_^{nCEiH zA8SF(ccmlGf4VPSPWCW$r7O}JiuC%npM)L|^QmzlJ$=hn-^7P}7W!yhz&@lWN1t|$>@#hBZEwwxKqUfcYd zkjZ1oIqU0OvRE3patUY17|s?9+PgbXr#w_Ug1w5NO7jP&I!doI9nX! zM&9y&2m8R@5bJD?zlnSJEwQfMcTfIXKB(=cA-H#GIdTd0pHI1NBiTEVeGBSeq~}-< z0*{5V!trix#VOcd%huKQ`-M5?e-2koq;F+8i~My!b!(hYwT(La>xLehjZ0Xgabr#Q z*kjFHyN0pwgRhY+*kAeD`Mh!bROflB literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/933.746.2.bmp b/BossMod/Pathfinding/ObstacleMaps/933.746.2.bmp new file mode 100644 index 0000000000000000000000000000000000000000..aa2598c46a3c6b67e3b7ce0d3665354ac944b067 GIT binary patch literal 7314 zcmeH~L5>tL3`NtL1?;#0Qf)Z}C9&sB$rT_YjY|88~l0vL^@ zu95O^;_ui=`11AnV{!Y8?pz#y2ATc+&n7qxsxoxtq0O#`E$ROY=$N92SZ= zMWU8?y&PpxXZOz;HP7pMx`u`7o6TTN7)S2MOMcFQDHq{q=h7;e1zHvB@>sG3d9~PF zXVJBfu>4-(yJzdY-P4wZy}kath|WYRu1S5OS@y}=M!>3qU`xVufwm-=kpzR|ZcP@{ z>azuV+SOV;&O)gkN6bU&srROy<|l#?x$|JaD#@Lz$DzkgHlMB)x}XJPhb*fcA2-Gp zYzAN}31&Fqd5tTJ`^B}ySzJqk^;nR_f)m}178TT+QMLuM5Pj%Ew~Wy_H$TcYfxOA7!qhi)cLc+93t60xELZSKgFyyIu{SU5%3&-fcrCoHN z$H`9#6NYB7Kh(e~1sDWd5+?f(ovZrR|GQV!q}$VoVg#erXAi@?tF`(Y4?`VH7YDY< z8p&2beWlVdm~92pt+yfz1~-UWZ$kYF_=Em~*or|@5WzIcVkTeWtRfhg=(c7|6#pdx#e2KWmc0{3 zx;yfW4re^0!7@L-Uikel?0$XSbG9P0dka?g03%1)@b&1Fc5uNsi%#M!3OixE=A#1- wFmDLqmoa~dil+9LC@II1 z-qj!CyY<8V?ed%J>kH?j>mQu2AzwNMAD4l^umebdwOz_a1p;m^MSPFAmFtcIB-;8I zfP#>JtTVQHvjF$u$h7`G literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/933.746.4.bmp b/BossMod/Pathfinding/ObstacleMaps/933.746.4.bmp new file mode 100644 index 0000000000000000000000000000000000000000..bb5be77bf647cbfe8d0d69be9e6341eb6091a72f GIT binary patch literal 4982 zcmb7_v5p)e42D^4v8nEgG$~G*Hhr3tA_XaZ-sP(3I=CvYl#)D2c!O+t#c7Fc3>e1V zXh+%^^UXhie+>KW`;YgIuCH+a1ixSK`&>#nxC3#zy@NacQ4M_qt{G}^@Lx3)xoVunBfJPB&mLJkf!=r32rQmK zzYSTBt{JBpZ5d~A%Q)m(C0d3S(BEum&r$@@=qKICv!O>G#CR=4qkU_LCvwdQG*n9% zjnf7ot_(nxxQPKdB(AM6_OET3WN=JC+cKDd#cxU2G6KidjJV1bgEID`aO!7cx5VQr zR}3Y+VkqTham6^&TU;@e3PPzMT6mKOktv7hk7jg4?)Q4)+ny)XTU;?Nqh2w{GSuR? z8coJ2Mw4+ja5}P-g(0r=QzGPRam9y{bblsJrtoTKp_d%v*8j@ee28;0a!2mCuM00Z z8OjSUxjdRACxf^kaL)aFj1V(V5O%Y$!3jhNJI^DI5O$6OaAL$;^0)$=BPjY<1s#>V z7cp@576P#u5;Vw%y4gI%a6=xjaRc|LubY`dY-Z?(8VcV~KuhE(#3s5+##x-~A9|FL zDL9bG3x~5f8JbW&4h2k8@PKo{3pp7YA&`d)Gz70=yhnI}Pk3;It;$2Qla~T{0#)a{ zbdCFFr{Ed%owu5Y573vb**WtMz^iS7gK-aFGcOCU z=$3FRdFH1hSC8by#nTH{2~N0Qhj>)^OFE{e_gxJ$$p@9Ee8>UI0( zc`*16SN+Z%KAM-B#jk1GZTo(RdxP)s`0H8TVSy^cl73sX)C7GnxQ3x{m25$|+ll;j d)VnWnzlQWh+^<#To;zF~zn6Av{%rw1{{i4&Hnji% literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/933.746.5.bmp b/BossMod/Pathfinding/ObstacleMaps/933.746.5.bmp new file mode 100644 index 0000000000000000000000000000000000000000..18a4e2b9f64c408bf3d2aa92fc42a35d3268fd9d GIT binary patch literal 2846 zcmd6oOG<+=5XVzoD7f$jX6q^Zz`Yx<;USWfX^xU3bm>AG=aressD&1h2J*qL^ZHL- zeR{sXO*9_i`vCJ5=F1pkmv;0!eQw~3(~km9zmI(|wX*zhNGtCH*Od<`Z9aY+Ml$m>)j>)EZ2mk z`l!sh9b(R6pK?lI!6EWATv$(s$jj4T4ye1F2O9^EJXqaOUay8Fy_ zyYKYeIRE%u(S3L4ccA`k?*Xx;8^}%$u@6VPd+o@+xpY|1;Q)54KaiJnz}fpl{<84f Qq6SP$I^abO@HVahvFA)FYwp9AaFZNi*bUNXg8gl0>~wZmYSO$q-*)1@ zz8ww;_Cn(`JsRGCd*8Eb+OzW=c1p*cV@(e` zwxwleSE^!WXJTc7Ct`VGmDtn72+he{m`#B>#2mPRl_0o*WiZW&GbZDTNqNO5kwXxA z&0w4{Tj{-7PL%-}dDNr_1V94`Zk8v#i1p4h^r{frj0{K?!a|Q=D>I9m9#D8>3o^~@ zr#YJ{D#4CHq&ls4&?qPvY!b{AgHOoYe;96h(gT|kl#cLGtxL85`2ukbjtXmz*v*Yo z#W(Sb1xvff1oamPddfBrl{L?_V?$tNA&9bY3fAo*2OV literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/933.746.7.bmp b/BossMod/Pathfinding/ObstacleMaps/933.746.7.bmp new file mode 100644 index 0000000000000000000000000000000000000000..6d7d800ac42a03912000a3a7f5dc62768e7c53ac GIT binary patch literal 20054 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 literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/938.777.1.bmp b/BossMod/Pathfinding/ObstacleMaps/938.777.1.bmp new file mode 100644 index 0000000000000000000000000000000000000000..f2c0237c38e62436d7ab8d6ba1599e090f67c1cb GIT binary patch literal 141062 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 literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/938.777.2.bmp b/BossMod/Pathfinding/ObstacleMaps/938.777.2.bmp new file mode 100644 index 0000000000000000000000000000000000000000..678f359cd82c45465f67b68dc7f99ff89c598d1b GIT binary patch literal 8174 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 Jy?Jx9^c!Skj=BH< literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/970.789.1.bmp b/BossMod/Pathfinding/ObstacleMaps/970.789.1.bmp new file mode 100644 index 0000000000000000000000000000000000000000..a87af465845c74921607de3e5ef2b7d70881e837 GIT binary patch literal 108734 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 U!t{16`zu3Rfi+?u{%$#c0s6NH$^ZZW literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/973.792.1.bmp b/BossMod/Pathfinding/ObstacleMaps/973.792.1.bmp new file mode 100644 index 0000000000000000000000000000000000000000..5f492e8201296ee65fa5cbd328926974127c6be6 GIT binary patch literal 34942 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℘tz3`P)-n_!mrO6qL2+K5 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 literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/974.787.2.bmp b/BossMod/Pathfinding/ObstacleMaps/974.787.2.bmp new file mode 100644 index 0000000000000000000000000000000000000000..049058fb47f396b4add3c22bf1b435323b04ad1d GIT binary patch literal 24398 zcmeI4J#y?e49B^%g;K>gcxqFm$O)ci(kE9)j*v1%=7|T%VR)192rjqSSq0$7iqrz2 zps_a|hn(>)CGjUfe*z>W+5Y*LUw<>9e1*>+;OFm?F+bjx^QjN08YhNxPD+}8LE9V z;1)2Gg1H)y446^DT+jkA4Y4cVUg1h^z%*{XD#n}TVxTl4u43F7Ju|3;RBC2e5NUN# z#n_h^aE%VC7&FFzYjjY_+|1;IYmE-7nb~QXt66Mh}C z&=E01ERGoeKpmR9$-#!ifCqH}#zGc&+{@Uh0oV%65~Wix;IR$o+Rw};N8E14&L&5k zin+wg+|PV7IpRJXW574Byq>2qU(H~(zI`!6ME1w1c@ks4*ZXD%GdQINz?{9FIi(S9 ze~b?12xHWC&er^)ydDS4Pg>?=BcT}I{K-j794%oi_k~p6+!=Aj1I&GCX>D-1lb?6-3@Q)1-xPU+j#jB4g) zUJ^5|!V)!?Cu2C4S4c2T5-rzVC6iZTt;K)ESd+@Uo|LFn3~aW1;g6oVuMz`hNG(bKw| zErZe1h_(ki+jEfKZG3w-rjCP0Un%F_g7H;cP*#>rye&9q(hZBfTi?n#tY}tMk1*T* z*<Z8fPn1~xj=HNcqYanLpBaexZ+ICx_XW;`EPm~m&~ z+T(tP84obx%_(C?T*ESqxb$Zj@y!RvNFs2IBm&1sB5;hfdSRJ~?^Tu&L|_@=E`w!+ zUhNE-2$VF>-cC)7!U|MkmW*H3bkH_SvkQ(2b4ED3zJevu*Eoi_n zr=%wrrj(r{On$$sv2%zCAK4OV7=a0`rT1+pHKp4*JuYXmfn)}ceX8?q5Z?21 zzP%h^#wCiaxt{51Obl$DZ*dl4m!bT(>zjk5TSU0HCYii=TIfPBd5qud z+Y-)^CSlGuN1g4HGPKf4&j$;NZp>wu$S|&_D|Oh*VCB;8Z2I~8!Q#)B>UqR6FVP*A^xuD zW`=N=F+yNf0fhO1Kgi^Iy4rLn1AA-1^M1G&&9|fXbLL~uWXk6Od393ymXDXd<$ZXm znF$w~KJxL-l)u_oKZ@+S_1O6@@~4&CBRZ8z&fk(5H^<(4tU`0>hi2@JE(-GxF~&C; zN39c)670MsW9xY&`kOvEI|rGmI(e}n*g3+?#i^^RVCPv(O8|f9_7}s z@C5D%!`@;DcJz#J%f#9_!dU*+jJ5Omm?LrUxfpXG7YsL!L&h?Biu2E0C3LaDFu1-O zi)K}oVf+Ec>Y1?gRQeX)oGBT6e4y3fh;JX62}`J<>ilBEk+B$<6Z{J}vIq>D4R6Q9 zmqy$uLfbjca5Io(N6AP1XV(f5%&>3#tezI=NAVT*KJW|D?V`9?1KNANYogI;}^!h1G+?)ms z6CXG-zJa0>HS&c>pcysGX7zYgbs#stw zGIMqHaYJAbAv-8Aya!|lMTU|mh85L8JQKs0>L8xs(~)O<(17Y7o^gSpw{sdAcWNDHxSdQILsZPxk2P!7+BSdoFln5Hlf)n+nSTLymv`>~ literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/975.778.1.bmp b/BossMod/Pathfinding/ObstacleMaps/975.778.1.bmp new file mode 100644 index 0000000000000000000000000000000000000000..ff8380c83a47e52036bdd6044d9240a9b7235ed7 GIT binary patch literal 1383122 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

~N7E%O9RU52D$Y8C#9XmG; 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 uTB^MlLJ?-DT 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

M#p=(M{U~*JBp=O4a_NNhHKz&O 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 Ic58C}KcO|FzW@LL literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/977.780.1.bmp b/BossMod/Pathfinding/ObstacleMaps/977.780.1.bmp new file mode 100644 index 0000000000000000000000000000000000000000..e52435cdaf89d722aa044efd32d299a27980190e GIT binary patch literal 120302 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 Ok~yU1%0w z9SZZ%PGpj2*0W`jb{K^5?M#v=LgiVM9nr!w4`TSVrIqoo7$Q& zicAY;%&cI>ObTyd&1`)UGl`2gGx_wM%%rB=IONaQ#!T`PeV#O7V#bZJ!W@(vzJ>{k zB?abE&lRI&YMg1c!?(e1%}s5C==FS3ZGDH%+}5D<1=4Sg(w(i_hI!#^9!#&$AYg$1&8I?wXsLCSms1xO!GeBgRy!+XOVn0pHN!1Z{M)|R0; zo??c)Yl0`CEXM$?BcG);s>FV2J;0pst|TtD;x0`97;>m)0?U+vCp7XEbh2(uHhBxi zRm>rAUPGh;?B8U3?>Cl~wG*p!b!;=5P zhAg*LrsbmKk)ybbA?qTsPo!*@@%j2^88l3Y*?4}{bw{1VvleiOPI0+mQSpq2WL{@F zRYn+lz79cD$>6GLs6rwcl9g;B))g`^#TrH{-L-9Ij?zA2aG4nyp5<-@;~NHf&1Kc2 zOkrWpRBG251maE6541&_6mk+HvlCOKOI9O^mb6z4ZZXfy*a}f0pGnUNGusA(&6Tvn zU08Mvk+wGGAE>!~m(gfxzFP{~t;!%%4yEYni42u|$mlV33gbHdJlp0tgz4o6Zpg|_ zuDzqj7^H?T*I^JcOK~4ESij7`=1h+#MMw`{J3Z7FLMD+hz1XoGmCbKUv2>7NR1aoY9Q5^Nf3VdRG4d9uV zyU6tNBYX72l##vl^p!D>(VyO-AU=1Pmqa&=rSOP{srJJ|vZV~x#&k;0v`j$$z49aG z0Aqcmz2`~Bm#pOy+5R`?J4Mn73W3@RGUu-!WuW~f;i^NYF&ddNqTaD0JHD{uU|RhQ z{ID})#}}A0XAXW4rN+35VMLF2@r~OsWJ}cr$#la=?53XmF`r>M*JDfJ=0$HTGjZ@h z;?m5@@nsB52s~lnoiOZy+SNCw=`lw4Oppaqd2()?H(i*{@^iKg{EF-d86C+vZF_xcA^*GM6m0k42C-u|M znFFqAnxl4Z)lAO`M!T!eATN}LolRXsh5{C(Vp0ydF&f4}Vp^#N7~f>z|CFJCz<7a7 zyS&%!iEQ1{^B#=lM|~ETV@Aa1faKCOV=OLWZsm{|6s&8@^tb`zA-DZQ@q=&UWu`7?i%Kd{@B*@9Y*cPf(e2UqOB0WVc6z~%&sG(%5W{1<^+0N%V;sE zTj(kn6KWDoZ7Kk4MMjcnA!JPaTTH8HsepHmZQ>(iBtc$g!03oiXc1~}T3EjTdadL03WHL(xU@(_@)>3E1@ml= zBL+!7EQG{_Y-`BZ0IOtT${&T`ogIN$evT+3ulh_p^4M`?B5s3d3u#VSlbvqQk-UK&yj%x7VD5f3U`{+i}cuj{u#h%#CXwRKkM5j`aXHAQ+l47r%6NA|o$Dz<3Zp8F#SQjst~dW@50%&>J8h*56H&~8m?CsxG(D*ALy-$JMcGhBYDao@o0WT)@wb`Un#N<S$ex33piEW|^Y2XcoIS5F zakJW@&OL6#&YX!>n7GMoQRfcEb;N}TdtxsHod+s>myf}a)4f}b%K{H&-ej3sEM$C%mXup~~IQxdeo%r=k}SDdDt0AdggBp zWn5=@6e%-nQ)`PAX4ZnX<)=&#ho+3~vFYB>b7Q*4tne`zoq;jFGiM@WoC!L2V|-`M zM8?>2@4mw5CY#27{hbp%&7uAtFs+3$)4ie0-is&7Brq4By94&wcc-H8C)z^ssXriQ z9v0TEF#lfpCVAer1!Fh;Sz_{^RQs{h-;k}r(zx7v| zaD`cFFxzg!`%0tUu?hXq5t~?Oc)V1d;luk1b1dk&SEHT_4S&BToPP5FD~-Cs+^bPn^xUga*Yw$iWk;qd<273P=G7`AF literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/978.786.2.bmp b/BossMod/Pathfinding/ObstacleMaps/978.786.2.bmp new file mode 100644 index 0000000000000000000000000000000000000000..e5b274b599f7ff2d4f561a8ab6e23ecef0c23d20 GIT binary patch literal 16142 zcmeI2OOE735Qg1i(X8MI-f{`B#GbpbWC6;Y)kthO5}p&x1&~OI3)Hd}B`1IOV7oj1 z&r()b!APhrbvyg3h>S-@KJ4o6fB0$|p04lo`y2iIs-HhDwLT0FPyFfEm-^j)o?of% z*Kd1sZJi$1)_y;Iy|>raX;!V^FPg2F!E0jyR&QX`A2ITU7{x*HX2`+J%<>{RW6C`+&tHLD5j%n0 zY4G*x7Djd{Hp)wec{Bi%T#AWNe-Tyk<+ZVCzWj6T)Afy2&FA%c%gghn{4FnUwb2%& zw>tQL=b(*o@18>Y(G2?*u?%~jR^HU?KffgR{LiO0^+&$+#&L^Wf%69W(#vK%(|8W( z45zcQH9$aKO^$*4FSeOLzNpZ+teEb|2Oj`JAWq)BT>uy}h=Gm1+HSzn8SP*H&2@&+f$L zXP>XlIjybzK2LjlZP8d_Y-!cl?|E--tq)skZxDO8f4sH)F{)OQBfB|m-E57U*w)M5 zAYVT0A8)N*_ONMejir~t60rcQ#K1^nj}N z)Tr8+Rm&A@1RE2u@a*zXWx7erv`bS_qi5e@c67#s>O?}&MsGr<)wY66vEY?XUkRlZY{ZB_5~Tw zX!9*{p1@jw;mf{v?sLt=CWm=+)*Hwf0=@vFx0~H>OCbsO*2Qlz=H!VvO~4>ve7$*# zTxXf%Ng7JJz&1>506AE9G_QTm(RN7eiUXc4P|`KlyJ$7JF$`y8ahQ7947$y~ICR?9 zEn9jbFgY!%=1bdIqJP~?MogDpImocd$w-Vt2SJOYF<)uLY~IYklo^u~i-Xku351wA zO~D;7>rZmV$S(D#>EOw_K(ZEMKf;1Xrxx0(h%KJfx_EG6?zEyyHC$J)DX7YZJ3~yF zPEl8t5D~u3BDn)*He}aq(7&+KVA9d|-i*g>GM{0pMlZ98c}*Rd(;A~LMs=lv zF6^kFqF&Bo|ZPcF$FCHaUm{^1&?Q; zV77fXY%F&&iP@+LjqhLDZIO*1U$UkelLxG+#=0QZvO=}e!{DLfuUY+#FFkH3?h;w( zrBwSSX!s>Cc^n;ShwfO&?f6A3IMUv}MCWQP&Ytq_uDGsTHXApxDcEgkN&hy>U}N?= zYc)ScUwWBrnC{^0DECva+vHMUt(b`gu~tHHHtQuEvN(sD++*yISOK{MW~D1RU}jdO zYhoIrF}f!|O1{M#E5uOKK=eCq-kRev^Wsx)FLhM~$e#NU#PF1JjP{S7Et B|A+tp literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/maplist.json b/BossMod/Pathfinding/ObstacleMaps/maplist.json index 0967ef424b..7cc2ef5caf 100644 --- a/BossMod/Pathfinding/ObstacleMaps/maplist.json +++ b/BossMod/Pathfinding/ObstacleMaps/maplist.json @@ -1 +1,3157 @@ -{} +{ + "837.676": [ + { + "MinBoundsX": -178, + "MinBoundsY": -11, + "MinBoundsZ": -484.5, + "MaxBoundsX": 153.5, + "MaxBoundsY": 34.5, + "MaxBoundsZ": 478, + "OriginX": -178, + "OriginZ": -484.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "837.676.1.bmp" + } + ], + "1199.827": [ + { + "MinBoundsX": -147, + "MinBoundsY": 491.5, + "MinBoundsZ": -37, + "MaxBoundsX": 89, + "MaxBoundsY": 516.5, + "MaxBoundsZ": 224.5, + "OriginX": -147, + "OriginZ": -37, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1199.827.1.bmp" + }, + { + "MinBoundsX": 733, + "MinBoundsY": 32, + "MinBoundsZ": 599.5, + "MaxBoundsX": 885.5, + "MaxBoundsY": 76, + "MaxBoundsZ": 845.5, + "OriginX": 733, + "OriginZ": 599.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1199.827.2.bmp" + }, + { + "MinBoundsX": -774.5, + "MinBoundsY": -479, + "MinBoundsZ": -663.5, + "MaxBoundsX": -510, + "MaxBoundsY": -453.5, + "MaxBoundsZ": -350, + "OriginX": -774.5, + "OriginZ": -663.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1199.827.3.bmp" + }, + { + "MinBoundsX": 733, + "MinBoundsY": 32, + "MinBoundsZ": 599.5, + "MaxBoundsX": 885.5, + "MaxBoundsY": 76, + "MaxBoundsZ": 845.5, + "OriginX": 733, + "OriginZ": 599.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1199.827.4.bmp" + } + ], + "952.783": [ + { + "MinBoundsX": -30.5, + "MinBoundsY": -480, + "MinBoundsZ": -189.5, + "MaxBoundsX": 102.5, + "MaxBoundsY": -421, + "MaxBoundsZ": 274, + "OriginX": -30.5, + "OriginZ": -189.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "952.783.1.bmp" + } + ], + "933.746": [ + { + "MinBoundsX": -19.5, + "MinBoundsY": -1, + "MinBoundsZ": -19.5, + "MaxBoundsX": 19.5, + "MaxBoundsY": 23, + "MaxBoundsZ": 167, + "OriginX": -19.5, + "OriginZ": -19.5, + "ViewWidth": 39, + "ViewHeight": 60, + "Filename": "933.746.1.bmp" + }, + { + "MinBoundsX": -226.5, + "MinBoundsY": -213, + "MinBoundsZ": 27, + "MaxBoundsX": -124, + "MaxBoundsY": -189.5, + "MaxBoundsZ": 156.5, + "OriginX": -226.5, + "OriginZ": 27, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "933.746.2.bmp" + }, + { + "MinBoundsX": -51, + "MinBoundsY": 233, + "MinBoundsZ": -233, + "MaxBoundsX": 65, + "MaxBoundsY": 246, + "MaxBoundsZ": -158.5, + "OriginX": -51, + "OriginZ": -233, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "933.746.3.bmp" + }, + { + "MinBoundsX": -26.5, + "MinBoundsY": 197.5, + "MinBoundsZ": -189, + "MaxBoundsX": 65.5, + "MaxBoundsY": 212.5, + "MaxBoundsZ": -86.5, + "OriginX": -26.5, + "OriginZ": -189, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "933.746.4.bmp" + }, + { + "MinBoundsX": -66.5, + "MinBoundsY": 201, + "MinBoundsZ": -213.5, + "MaxBoundsX": -13, + "MaxBoundsY": 213.5, + "MaxBoundsZ": -126.5, + "OriginX": -66.5, + "OriginZ": -213.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "933.746.5.bmp" + }, + { + "MinBoundsX": -52, + "MinBoundsY": 169, + "MinBoundsZ": -120.5, + "MaxBoundsX": 17.5, + "MaxBoundsY": 180.5, + "MaxBoundsZ": -83.5, + "OriginX": -52, + "OriginZ": -120.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "933.746.6.bmp" + }, + { + "MinBoundsX": 120.5, + "MinBoundsY": -602, + "MinBoundsZ": -213.5, + "MaxBoundsX": 210, + "MaxBoundsY": -582, + "MaxBoundsZ": 203, + "OriginX": 120.5, + "OriginZ": -213.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "933.746.7.bmp" + } + ], + "399": [ + { + "MinBoundsX": -801.5, + "MinBoundsY": 169, + "MinBoundsZ": 438, + "MaxBoundsX": -126, + "MaxBoundsY": 255, + "MaxBoundsZ": 831.5, + "OriginX": -801.5, + "OriginZ": 438, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "399.0.3.bmp" + } + ], + "938.777": [ + { + "MinBoundsX": -865, + "MinBoundsY": -26.5, + "MinBoundsZ": -54.5, + "MaxBoundsX": -68, + "MaxBoundsY": 17, + "MaxBoundsZ": 298.5, + "OriginX": -865, + "OriginZ": -54.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "938.777.1.bmp" + }, + { + "MinBoundsX": 635, + "MinBoundsY": -58, + "MinBoundsZ": -123, + "MaxBoundsX": 816, + "MaxBoundsY": -44.5, + "MaxBoundsZ": -38, + "OriginX": 635, + "OriginZ": -123, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "938.777.2.bmp" + } + ], + "668.458": [ + { + "MinBoundsX": -589, + "MinBoundsY": -66.5, + "MinBoundsZ": -354.5, + "MaxBoundsX": 510, + "MaxBoundsY": 49.5, + "MaxBoundsZ": 518, + "OriginX": -589, + "OriginZ": -354.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "668.458.1.bmp" + } + ], + "258.319": [ + { + "MinBoundsX": -499.5, + "MinBoundsY": -33, + "MinBoundsZ": -549, + "MaxBoundsX": 485.5, + "MaxBoundsY": 55.5, + "MaxBoundsZ": 726.5, + "OriginX": -499.5, + "OriginZ": -549, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "258.319.1.bmp" + } + ], + "260.321": [ + { + "MinBoundsX": -479.5, + "MinBoundsY": -18, + "MinBoundsZ": -825, + "MaxBoundsX": 402, + "MaxBoundsY": 58.5, + "MaxBoundsZ": 990.5, + "OriginX": -479.5, + "OriginZ": -825, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "260.321.1.bmp" + } + ], + "146": [ + { + "MinBoundsX": -479.5, + "MinBoundsY": -18.5, + "MinBoundsZ": -825, + "MaxBoundsX": 402, + "MaxBoundsY": 58.5, + "MaxBoundsZ": 990.5, + "OriginX": -479.5, + "OriginZ": -825, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "146.0.1.bmp" + } + ], + "261.322": [ + { + "MinBoundsX": -479.5, + "MinBoundsY": -18, + "MinBoundsZ": -825, + "MaxBoundsX": 402, + "MaxBoundsY": 58.5, + "MaxBoundsZ": 990.5, + "OriginX": -479.5, + "OriginZ": -825, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "261.322.1.bmp" + } + ], + "251.323": [ + { + "MinBoundsX": -255, + "MinBoundsY": -4.5, + "MinBoundsZ": -197.5, + "MaxBoundsX": 115, + "MaxBoundsY": 30, + "MaxBoundsZ": 107, + "OriginX": -255, + "OriginZ": -197.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "251.323.1.bmp" + } + ], + "314.363": [ + { + "MinBoundsX": -499.5, + "MinBoundsY": -33, + "MinBoundsZ": -549, + "MaxBoundsX": 485.5, + "MaxBoundsY": 55.5, + "MaxBoundsZ": 726.5, + "OriginX": -499.5, + "OriginZ": -549, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "314.363.1.bmp" + } + ], + "270.335": [ + { + "MinBoundsX": -499.5, + "MinBoundsY": -33, + "MinBoundsZ": -549, + "MaxBoundsX": 485.5, + "MaxBoundsY": 55.5, + "MaxBoundsZ": 726.5, + "OriginX": -499.5, + "OriginZ": -549, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "270.335.1.bmp" + } + ], + "1010.812": [ + { + "MinBoundsX": -38, + "MinBoundsY": -3, + "MinBoundsZ": -396, + "MaxBoundsX": -24, + "MaxBoundsY": 23, + "MaxBoundsZ": -378, + "OriginX": -95.5, + "OriginZ": -463.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1010.812.6.bmp" + }, + { + "MinBoundsX": -95.5, + "MinBoundsY": -3, + "MinBoundsZ": -463.5, + "MaxBoundsX": 123, + "MaxBoundsY": 23, + "MaxBoundsZ": -304.5, + "OriginX": -95.5, + "OriginZ": -463.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1010.812.4.bmp" + }, + { + "MinBoundsX": -33.5, + "MinBoundsY": -1, + "MinBoundsZ": 130.5, + "MaxBoundsX": 33.5, + "MaxBoundsY": 12.5, + "MaxBoundsZ": 329.5, + "OriginX": -33.5, + "OriginZ": 130.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1010.812.7.bmp" + } + ], + "1011.793": [ + { + "MinBoundsX": -795.5, + "MinBoundsY": -37.5, + "MinBoundsZ": -942.5, + "MaxBoundsX": 727.5, + "MaxBoundsY": 65.5, + "MaxBoundsZ": 766.5, + "OriginX": -795.5, + "OriginZ": -942.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1011.793.1.bmp" + } + ], + "1110.38": [ + { + "MinBoundsX": -82, + "MinBoundsY": 195.5, + "MinBoundsZ": 1, + "MaxBoundsX": 383.5, + "MaxBoundsY": 235.5, + "MaxBoundsZ": 315.5, + "OriginX": -82, + "OriginZ": 1, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1110.38.1.bmp" + }, + { + "MinBoundsX": 171, + "MinBoundsY": -60.5, + "MinBoundsZ": 86, + "MaxBoundsX": 232, + "MaxBoundsY": -48, + "MaxBoundsZ": 205, + "OriginX": 171, + "OriginZ": 86, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1110.38.2.bmp" + }, + { + "MinBoundsX": -382, + "MinBoundsY": -301, + "MinBoundsZ": -271.5, + "MaxBoundsX": -352.5, + "MaxBoundsY": -289.5, + "MaxBoundsZ": -241.5, + "OriginX": -382, + "OriginZ": -271.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1110.38.3.bmp" + } + ], + "973.792": [ + { + "MinBoundsX": -399.5, + "MinBoundsY": -611, + "MinBoundsZ": -154.5, + "MaxBoundsX": -253.5, + "MaxBoundsY": -566.5, + "MaxBoundsZ": 281.5, + "OriginX": -399.5, + "OriginZ": -154.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "973.792.1.bmp" + }, + { + "MinBoundsX": 235.5, + "MinBoundsY": 498, + "MinBoundsZ": -222.5, + "MaxBoundsX": 441, + "MaxBoundsY": 513, + "MaxBoundsZ": 206.5, + "OriginX": 235.5, + "OriginZ": -222.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "973.792.2.bmp" + }, + { + "MinBoundsX": -124.5, + "MinBoundsY": -9, + "MinBoundsZ": -291.5, + "MaxBoundsX": 21, + "MaxBoundsY": 13, + "MaxBoundsZ": 141.5, + "OriginX": -124.5, + "OriginZ": -291.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "973.792.3.bmp" + } + ], + "822.659": [ + { + "MinBoundsX": -71.5, + "MinBoundsY": -141.5, + "MinBoundsZ": -232.5, + "MaxBoundsX": 370, + "MaxBoundsY": 1.5, + "MaxBoundsZ": 186, + "OriginX": -71.5, + "OriginZ": -232.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "822.659.1.bmp" + }, + { + "MinBoundsX": -292.5, + "MinBoundsY": 162.5, + "MinBoundsZ": -255, + "MaxBoundsX": -33.5, + "MaxBoundsY": 222, + "MaxBoundsZ": 256.5, + "OriginX": -292.5, + "OriginZ": -255, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "822.659.2.bmp" + } + ], + "1050.844": [ + { + "MinBoundsX": -182, + "MinBoundsY": 302.5, + "MinBoundsZ": -161, + "MaxBoundsX": 143.5, + "MaxBoundsY": 321.5, + "MaxBoundsZ": 156.5, + "OriginX": -182, + "OriginZ": -161, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1050.844.1.bmp" + }, + { + "MinBoundsX": -27.5, + "MinBoundsY": -9, + "MinBoundsZ": -143, + "MaxBoundsX": 68, + "MaxBoundsY": 10.5, + "MaxBoundsZ": 190.5, + "OriginX": -27.5, + "OriginZ": -143, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1050.844.2.bmp" + }, + { + "MinBoundsX": -77.5, + "MinBoundsY": -351, + "MinBoundsZ": -92.5, + "MaxBoundsX": 129.5, + "MaxBoundsY": -328, + "MaxBoundsZ": 109.5, + "OriginX": -77.5, + "OriginZ": -92.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1050.844.3.bmp" + } + ], + "1070.869": [ + { + "MinBoundsX": -55.5, + "MinBoundsY": -722.5, + "MinBoundsZ": 65.5, + "MaxBoundsX": 270.5, + "MaxBoundsY": -689, + "MaxBoundsZ": 224.5, + "OriginX": -55.5, + "OriginZ": 65.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1070.869.1.bmp" + }, + { + "MinBoundsX": -289.5, + "MinBoundsY": -719, + "MinBoundsZ": -257.5, + "MaxBoundsX": 21.5, + "MaxBoundsY": -667, + "MaxBoundsZ": 164, + "OriginX": -289.5, + "OriginZ": -257.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1070.869.2.bmp" + }, + { + "MinBoundsX": -113, + "MinBoundsY": 344.5, + "MinBoundsZ": -247, + "MaxBoundsX": 54.5, + "MaxBoundsY": 396.5, + "MaxBoundsZ": 23, + "OriginX": -113, + "OriginZ": -247, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1070.869.3.bmp" + } + ], + "473.411": [ + { + "MinBoundsX": -423.5, + "MinBoundsY": -6, + "MinBoundsZ": -298.5, + "MaxBoundsX": 660.5, + "MaxBoundsY": 55.5, + "MaxBoundsZ": 722, + "OriginX": -423.5, + "OriginZ": -298.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "473.411.1.bmp" + } + ], + "1177.960": [ + { + "MinBoundsX": 136.5, + "MinBoundsY": -3.5, + "MinBoundsZ": -28, + "MaxBoundsX": 280.5, + "MaxBoundsY": 21, + "MaxBoundsZ": 40, + "OriginX": 136.5, + "OriginZ": -28, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1177.960.1.bmp" + }, + { + "MinBoundsX": 345.5, + "MinBoundsY": 37.5, + "MinBoundsZ": -178.5, + "MaxBoundsX": 606, + "MaxBoundsY": 89.5, + "MaxBoundsZ": 86.5, + "OriginX": 345.5, + "OriginZ": -178.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1177.960.2.bmp" + } + ], + "1233.1000": [ + { + "MinBoundsX": -85, + "MinBoundsY": -20, + "MinBoundsZ": -20.5, + "MaxBoundsX": 31.5, + "MaxBoundsY": 10, + "MaxBoundsZ": 20.5, + "OriginX": -85, + "OriginZ": -20.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1233.1000.1.bmp" + } + ], + "458.398": [ + { + "MinBoundsX": -213.5, + "MinBoundsY": -23, + "MinBoundsZ": -165.5, + "MaxBoundsX": 181, + "MaxBoundsY": 50.5, + "MaxBoundsZ": 166, + "OriginX": -213.5, + "OriginZ": -165.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "458.398.1.bmp" + } + ], + "436.88": [ + { + "MinBoundsX": -31, + "MinBoundsY": -5, + "MinBoundsZ": -23.5, + "MaxBoundsX": 13.5, + "MaxBoundsY": 13.5, + "MaxBoundsZ": 20.5, + "OriginX": -31, + "OriginZ": -23.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "436.88.1.bmp" + } + ], + "513.441": [ + { + "MinBoundsX": -59.5, + "MinBoundsY": -301, + "MinBoundsZ": -160.5, + "MaxBoundsX": 115.5, + "MaxBoundsY": -253, + "MaxBoundsZ": 104.5, + "OriginX": -59.5, + "OriginZ": -160.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "513.441.1.bmp" + } + ], + "1111.141": [ + { + "MinBoundsX": 57.5, + "MinBoundsY": -3, + "MinBoundsZ": -159, + "MaxBoundsX": 313.5, + "MaxBoundsY": 38.5, + "MaxBoundsZ": -61.5, + "OriginX": 57.5, + "OriginZ": -159, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1111.141.1.bmp" + } + ], + "533.167": [ + { + "MinBoundsX": -121.5, + "MinBoundsY": 289, + "MinBoundsZ": -282, + "MaxBoundsX": 69.5, + "MaxBoundsY": 328.5, + "MaxBoundsZ": -109.5, + "OriginX": -121.5, + "OriginZ": -282, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "533.167.1.bmp" + } + ], + "1112.171": [ + { + "MinBoundsX": -435.5, + "MinBoundsY": -9, + "MinBoundsZ": -185, + "MaxBoundsX": -380.5, + "MaxBoundsY": 19.5, + "MaxBoundsZ": 176, + "OriginX": -435.5, + "OriginZ": -185, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1112.171.1.bmp" + }, + { + "MinBoundsX": 369.5, + "MinBoundsY": -9, + "MinBoundsZ": 156, + "MaxBoundsX": 419.5, + "MaxBoundsY": 20, + "MaxBoundsZ": 496.5, + "OriginX": 369.5, + "OriginZ": 156, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1112.171.2.bmp" + }, + { + "MinBoundsX": 384.5, + "MinBoundsY": -65.5, + "MinBoundsZ": -130.5, + "MaxBoundsX": 415.5, + "MaxBoundsY": -48.5, + "MaxBoundsZ": -66, + "OriginX": 384.5, + "OriginZ": -130.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1112.171.3.bmp" + } + ], + "1113.182": [ + { + "MinBoundsX": -234, + "MinBoundsY": -41, + "MinBoundsZ": -107, + "MaxBoundsX": 89, + "MaxBoundsY": 45.5, + "MaxBoundsZ": 290, + "OriginX": -234, + "OriginZ": -107, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1113.182.1.bmp" + }, + { + "MinBoundsX": 167, + "MinBoundsY": 98.5, + "MinBoundsZ": -168.5, + "MaxBoundsX": 344, + "MaxBoundsY": 155, + "MaxBoundsZ": 59.5, + "OriginX": 167, + "OriginZ": -168.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1113.182.2.bmp" + }, + { + "MinBoundsX": 393, + "MinBoundsY": 141, + "MinBoundsZ": -300.5, + "MaxBoundsX": 450.5, + "MaxBoundsY": 162.5, + "MaxBoundsZ": -203, + "OriginX": 393, + "OriginZ": -300.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1113.182.3.bmp" + }, + { + "MinBoundsX": 298.5, + "MinBoundsY": 150, + "MinBoundsZ": -435.5, + "MaxBoundsX": 404, + "MaxBoundsY": 177, + "MaxBoundsZ": -362.5, + "OriginX": 298.5, + "OriginZ": -435.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1113.182.4.bmp" + } + ], + "1114.219": [ + { + "MinBoundsX": -248.5, + "MinBoundsY": -6, + "MinBoundsZ": -197.5, + "MaxBoundsX": -113.5, + "MaxBoundsY": 15.5, + "MaxBoundsZ": 92.5, + "OriginX": -248.5, + "OriginZ": -197.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1114.219.1.bmp" + } + ], + "659.464": [ + { + "MinBoundsX": -171, + "MinBoundsY": -8, + "MinBoundsZ": -289, + "MaxBoundsX": 250.5, + "MaxBoundsY": 35, + "MaxBoundsZ": 282.5, + "OriginX": -171, + "OriginZ": -289, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "659.464.1.bmp" + } + ], + "1174.611": [ + { + "MinBoundsX": -430, + "MinBoundsY": 50, + "MinBoundsZ": 11, + "MaxBoundsX": 27.5, + "MaxBoundsY": 117.5, + "MaxBoundsZ": 214, + "OriginX": -430, + "OriginZ": 11, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1174.611.1.bmp" + }, + { + "MinBoundsX": 11, + "MinBoundsY": 4, + "MinBoundsZ": -239.5, + "MaxBoundsX": 404, + "MaxBoundsY": 62.5, + "MaxBoundsZ": 94.5, + "OriginX": 11, + "OriginZ": -239.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1174.611.2.bmp" + } + ], + "1143.240": [ + { + "MinBoundsX": -65.5, + "MinBoundsY": -1.5, + "MinBoundsZ": 213.5, + "MaxBoundsX": 56, + "MaxBoundsY": 20, + "MaxBoundsZ": 494.5, + "OriginX": -65.5, + "OriginZ": 213.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1143.240.1.bmp" + } + ], + "1144.241": [ + { + "MinBoundsX": -279.5, + "MinBoundsY": 23.5, + "MinBoundsZ": -301.5, + "MaxBoundsX": 323, + "MaxBoundsY": 85.5, + "MaxBoundsZ": 168, + "OriginX": -279.5, + "OriginZ": -301.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1144.241.1.bmp" + } + ], + "671.466": [ + { + "MinBoundsX": -247.5, + "MinBoundsY": 36.5, + "MinBoundsZ": -126.5, + "MaxBoundsX": -68, + "MaxBoundsY": 66.5, + "MaxBoundsZ": 229, + "OriginX": -247.5, + "OriginZ": -126.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "671.466.1.bmp" + } + ], + "686.467": [ + { + "MinBoundsX": -604.5, + "MinBoundsY": -1, + "MinBoundsZ": -84.5, + "MaxBoundsX": 99, + "MaxBoundsY": 56.5, + "MaxBoundsZ": 780.5, + "OriginX": -604.5, + "OriginZ": -84.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "686.467.1.bmp" + } + ], + "684.269": [ + { + "MinBoundsX": 499, + "MinBoundsY": 59, + "MinBoundsZ": 411, + "MaxBoundsX": 823, + "MaxBoundsY": 97.5, + "MaxBoundsZ": 710.5, + "OriginX": 499, + "OriginZ": 411, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "684.269.1.bmp" + } + ], + "1146.247": [ + { + "MinBoundsX": -433, + "MinBoundsY": 1.5, + "MinBoundsZ": 84, + "MaxBoundsX": -259, + "MaxBoundsY": 38, + "MaxBoundsZ": 263, + "OriginX": -433, + "OriginZ": 84, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1146.247.1.bmp" + }, + { + "MinBoundsX": 50.5, + "MinBoundsY": 95.5, + "MinBoundsZ": -424.5, + "MaxBoundsX": 310.5, + "MaxBoundsY": 135.5, + "MaxBoundsZ": 147, + "OriginX": 50.5, + "OriginZ": -424.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1146.247.2.bmp" + } + ], + "1172.279": [ + { + "MinBoundsX": -514, + "MinBoundsY": -17, + "MinBoundsZ": -71.5, + "MaxBoundsX": 498.5, + "MaxBoundsY": 19, + "MaxBoundsZ": 65.5, + "OriginX": -514, + "OriginZ": -71.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1172.279.1.bmp" + } + ], + "757.472": [ + { + "MinBoundsX": -968, + "MinBoundsY": -122.5, + "MinBoundsZ": -989.5, + "MaxBoundsX": 990, + "MaxBoundsY": 99, + "MaxBoundsZ": 954.5, + "OriginX": -968, + "OriginZ": -989.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "757.472.1.bmp" + } + ], + "1173.585": [ + { + "MinBoundsX": 172, + "MinBoundsY": 57.5, + "MinBoundsZ": 279.5, + "MaxBoundsX": 306, + "MaxBoundsY": 77.5, + "MaxBoundsZ": 336, + "OriginX": 172, + "OriginZ": 279.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1173.585.1.bmp" + }, + { + "MinBoundsX": -307.5, + "MinBoundsY": 9.5, + "MinBoundsZ": -366, + "MaxBoundsX": 193.5, + "MaxBoundsY": 55.5, + "MaxBoundsZ": 244.5, + "OriginX": -307.5, + "OriginZ": -366, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1173.585.2.bmp" + } + ], + "1022.813": [ + { + "MinBoundsX": -253, + "MinBoundsY": -39.5, + "MinBoundsZ": -227.5, + "MaxBoundsX": 119, + "MaxBoundsY": 16, + "MaxBoundsZ": 156.5, + "OriginX": -253, + "OriginZ": -227.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1022.813.1.bmp" + } + ], + "861.662": [ + { + "MinBoundsX": -53.5, + "MinBoundsY": 117.5, + "MinBoundsZ": -401, + "MaxBoundsX": 352.5, + "MaxBoundsY": 171.5, + "MaxBoundsZ": -110.5, + "OriginX": -53.5, + "OriginZ": -401, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "861.662.1.bmp" + } + ], + "821.649": [ + { + "MinBoundsX": -80, + "MinBoundsY": -0.5, + "MinBoundsZ": -460.5, + "MaxBoundsX": 69.5, + "MaxBoundsY": 34, + "MaxBoundsZ": 195.5, + "OriginX": -80, + "OriginZ": -460.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "821.649.1.bmp" + }, + { + "MinBoundsX": -182.5, + "MinBoundsY": -184, + "MinBoundsZ": -263.5, + "MaxBoundsX": -109, + "MaxBoundsY": -134, + "MaxBoundsZ": 93, + "OriginX": -182.5, + "OriginZ": -263.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "821.649.2.bmp" + } + ], + "823.651": [ + { + "MinBoundsX": -31, + "MinBoundsY": -71, + "MinBoundsZ": -447.5, + "MaxBoundsX": 63.5, + "MaxBoundsY": -45, + "MaxBoundsZ": -203.5, + "OriginX": -31, + "OriginZ": -447.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "823.651.1.bmp" + } + ], + "862.663": [ + { + "MinBoundsX": -1024, + "MinBoundsY": -6.5, + "MinBoundsZ": -951.5, + "MaxBoundsX": 887, + "MaxBoundsY": 212.5, + "MaxBoundsZ": 1024, + "OriginX": -1024, + "OriginZ": -951.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "862.663.1.bmp" + } + ], + "836.656": [ + { + "MinBoundsX": -30.5, + "MinBoundsY": 117, + "MinBoundsZ": -121, + "MaxBoundsX": 173.5, + "MaxBoundsY": 132.5, + "MaxBoundsZ": 178, + "OriginX": -30.5, + "OriginZ": -121, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "836.656.1.bmp" + }, + { + "MinBoundsX": 137, + "MinBoundsY": -87, + "MinBoundsZ": -51.5, + "MaxBoundsX": 230.5, + "MaxBoundsY": -56.5, + "MaxBoundsZ": 339.5, + "OriginX": 137, + "OriginZ": -51.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "836.656.2.bmp" + } + ], + "864.665": [ + { + "MinBoundsX": -370, + "MinBoundsY": 346.5, + "MinBoundsZ": -482, + "MaxBoundsX": 43, + "MaxBoundsY": 405.5, + "MaxBoundsZ": -313, + "OriginX": -370, + "OriginZ": -482, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "864.665.1.bmp" + }, + { + "MinBoundsX": 271, + "MinBoundsY": 300, + "MinBoundsZ": -417.5, + "MaxBoundsX": 368.5, + "MaxBoundsY": 330.5, + "MaxBoundsZ": -337.5, + "OriginX": 271, + "OriginZ": -417.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "864.665.2.bmp" + } + ], + "838.652": [ + { + "MinBoundsX": -137.5, + "MinBoundsY": 724, + "MinBoundsZ": -380.5, + "MaxBoundsX": 109.5, + "MaxBoundsY": 760.5, + "MaxBoundsZ": 497.5, + "OriginX": -137.5, + "OriginZ": -380.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "838.652.1.bmp" + }, + { + "MinBoundsX": -18.5, + "MinBoundsY": -736, + "MinBoundsZ": 179, + "MaxBoundsX": 19, + "MaxBoundsY": -719.5, + "MaxBoundsZ": 283, + "OriginX": -18.5, + "OriginZ": 179, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "838.652.2.bmp" + }, + { + "MinBoundsX": -19, + "MinBoundsY": -733, + "MinBoundsZ": 45, + "MaxBoundsX": 19, + "MaxBoundsY": -721.5, + "MaxBoundsZ": 132.5, + "OriginX": -19, + "OriginZ": 45, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "838.652.3.bmp" + } + ], + "884.692": [ + { + "MinBoundsX": -116.5, + "MinBoundsY": -15, + "MinBoundsZ": -364.5, + "MaxBoundsX": 104, + "MaxBoundsY": 18.5, + "MaxBoundsZ": 401, + "OriginX": -116.5, + "OriginZ": -364.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "884.692.1.bmp" + } + ], + "898.714": [ + { + "MinBoundsX": -127.5, + "MinBoundsY": 74.5, + "MinBoundsZ": -363.5, + "MaxBoundsX": 89, + "MaxBoundsY": 122.5, + "MaxBoundsZ": 421.5, + "OriginX": -127.5, + "OriginZ": -363.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "898.714.1.bmp" + } + ], + "916.737": [ + { + "MinBoundsX": -699.5, + "MinBoundsY": -25, + "MinBoundsZ": 430.5, + "MaxBoundsX": -557, + "MaxBoundsY": 17, + "MaxBoundsZ": 823.5, + "OriginX": -699.5, + "OriginZ": 430.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "916.737.1.bmp" + }, + { + "MinBoundsX": -735.5, + "MinBoundsY": -1.5, + "MinBoundsZ": -784, + "MaxBoundsX": -334, + "MaxBoundsY": 25, + "MaxBoundsZ": -500.5, + "OriginX": -735.5, + "OriginZ": -784, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "916.737.2.bmp" + } + ], + "969.785": [ + { + "MinBoundsX": -401.5, + "MinBoundsY": -201, + "MinBoundsZ": -6, + "MaxBoundsX": -198.5, + "MaxBoundsY": -164.5, + "MaxBoundsZ": 384, + "OriginX": -401.5, + "OriginZ": -6, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "969.785.1.bmp" + }, + { + "MinBoundsX": -43, + "MinBoundsY": 478.5, + "MinBoundsZ": -199.5, + "MaxBoundsX": 43, + "MaxBoundsY": 510.5, + "MaxBoundsZ": -16.5, + "OriginX": -43, + "OriginZ": -199.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "969.785.2.bmp" + } + ], + "970.789": [ + { + "MinBoundsX": -411, + "MinBoundsY": -2, + "MinBoundsZ": -446, + "MaxBoundsX": -170.5, + "MaxBoundsY": 66.5, + "MaxBoundsZ": 403, + "OriginX": -411, + "OriginZ": -446, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "970.789.1.bmp" + }, + { + "MinBoundsX": 245.5, + "MinBoundsY": 21.5, + "MinBoundsZ": -61.5, + "MaxBoundsX": 311, + "MaxBoundsY": 72.5, + "MaxBoundsZ": 235.5, + "OriginX": 245.5, + "OriginZ": -61.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "970.789.2.bmp" + } + ], + "974.787": [ + { + "MinBoundsX": -163.5, + "MinBoundsY": 484.5, + "MinBoundsZ": -15.5, + "MaxBoundsX": 38.5, + "MaxBoundsY": 528.5, + "MaxBoundsZ": 331, + "OriginX": -163.5, + "OriginZ": -15.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "974.787.1.bmp" + }, + { + "MinBoundsX": -166.5, + "MinBoundsY": 609.5, + "MinBoundsZ": -49, + "MaxBoundsX": 39.5, + "MaxBoundsY": 661, + "MaxBoundsZ": 185, + "OriginX": -166.5, + "OriginZ": -49, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "974.787.2.bmp" + } + ], + "978.786": [ + { + "MinBoundsX": -79.5, + "MinBoundsY": 163, + "MinBoundsZ": 392, + "MaxBoundsX": 64.5, + "MaxBoundsY": 213, + "MaxBoundsZ": 623, + "OriginX": -79.5, + "OriginZ": 392, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "978.786.1.bmp" + }, + { + "MinBoundsX": -23.5, + "MinBoundsY": -213.5, + "MinBoundsZ": 79.5, + "MaxBoundsX": 45.5, + "MaxBoundsY": -164.5, + "MaxBoundsZ": 481.5, + "OriginX": -23.5, + "OriginZ": 79.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "978.786.2.bmp" + } + ], + "768.536": [ + { + "MinBoundsX": -314, + "MinBoundsY": -482, + "MinBoundsZ": -74, + "MaxBoundsX": -166, + "MaxBoundsY": -464.5, + "MaxBoundsZ": 149, + "OriginX": -314, + "OriginZ": -74, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "768.536.1.bmp" + }, + { + "MinBoundsX": 212, + "MinBoundsY": -473, + "MinBoundsZ": -193, + "MaxBoundsX": 296.5, + "MaxBoundsY": -439.5, + "MaxBoundsZ": 165, + "OriginX": 212, + "OriginZ": -193, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "768.536.2.bmp" + }, + { + "MinBoundsX": -59, + "MinBoundsY": -10.5, + "MinBoundsZ": 139.5, + "MaxBoundsX": 45.5, + "MaxBoundsY": 20.5, + "MaxBoundsZ": 391, + "OriginX": -59, + "OriginZ": 139.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "768.536.3.bmp" + }, + { + "MinBoundsX": -110, + "MinBoundsY": -13.5, + "MinBoundsZ": -59, + "MaxBoundsX": 37.5, + "MaxBoundsY": 11.5, + "MaxBoundsZ": 67.5, + "OriginX": -110, + "OriginZ": -59, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "768.536.4.bmp" + } + ], + "455.395": [ + { + "MinBoundsX": -749.5, + "MinBoundsY": -219.5, + "MinBoundsZ": -204.5, + "MaxBoundsX": 877.5, + "MaxBoundsY": -38, + "MaxBoundsZ": 866, + "OriginX": -749.5, + "OriginZ": -204.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "455.395.1.bmp" + } + ], + "460.400": [ + { + "MinBoundsX": -99, + "MinBoundsY": -17, + "MinBoundsZ": -201, + "MaxBoundsX": 209.5, + "MaxBoundsY": 19.5, + "MaxBoundsZ": 265, + "OriginX": -99, + "OriginZ": -201, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "460.400.1.bmp" + } + ], + "1097.896": [ + { + "MinBoundsX": -44.5, + "MinBoundsY": 363.5, + "MinBoundsZ": -864, + "MaxBoundsX": 75.5, + "MaxBoundsY": 409, + "MaxBoundsZ": -558, + "OriginX": -44.5, + "OriginZ": -864, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1097.896.1.bmp" + }, + { + "MinBoundsX": 295, + "MinBoundsY": 29.5, + "MinBoundsZ": -460.5, + "MaxBoundsX": 407, + "MaxBoundsY": 84, + "MaxBoundsZ": -83, + "OriginX": 295, + "OriginZ": -460.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1097.896.2.bmp" + }, + { + "MinBoundsX": -432.5, + "MinBoundsY": -174, + "MinBoundsZ": 100.5, + "MaxBoundsX": -220.5, + "MaxBoundsY": -106, + "MaxBoundsZ": 398, + "OriginX": -432.5, + "OriginZ": 100.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1097.896.3.bmp" + } + ], + "1126.822": [ + { + "MinBoundsX": -443.5, + "MinBoundsY": -1.5, + "MinBoundsZ": 79.5, + "MaxBoundsX": -293.5, + "MaxBoundsY": 31, + "MaxBoundsZ": 471.5, + "OriginX": -443.5, + "OriginZ": 79.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1126.822.1.bmp" + } + ], + "1164.823": [ + { + "MinBoundsX": -463, + "MinBoundsY": -450, + "MinBoundsZ": 72, + "MaxBoundsX": -400, + "MaxBoundsY": -431.5, + "MaxBoundsZ": 227, + "OriginX": -463, + "OriginZ": 72, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1164.823.1.bmp" + } + ], + "1193.824": [ + { + "MinBoundsX": 9, + "MinBoundsY": -25, + "MinBoundsZ": 157, + "MaxBoundsX": 222.5, + "MaxBoundsY": 2, + "MaxBoundsZ": 212.5, + "OriginX": 9, + "OriginZ": 157, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1193.824.1.bmp" + }, + { + "MinBoundsX": -155.5, + "MinBoundsY": 9.5, + "MinBoundsZ": 49, + "MaxBoundsX": -63, + "MaxBoundsY": 51.5, + "MaxBoundsZ": 154, + "OriginX": -155.5, + "OriginZ": 49, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1193.824.2.bmp" + }, + { + "MinBoundsX": -167.5, + "MinBoundsY": 79, + "MinBoundsZ": -22.5, + "MaxBoundsX": -55, + "MaxBoundsY": 114.5, + "MaxBoundsZ": 50.5, + "OriginX": -167.5, + "OriginZ": -22.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1193.824.3.bmp" + }, + { + "MinBoundsX": -173, + "MinBoundsY": 315.5, + "MinBoundsZ": -219.5, + "MaxBoundsX": -29.5, + "MaxBoundsY": 388.5, + "MaxBoundsZ": 25, + "OriginX": -173, + "OriginZ": -219.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1193.824.4.bmp" + }, + { + "MinBoundsX": -111, + "MinBoundsY": -8.5, + "MinBoundsZ": 158, + "MaxBoundsX": 4, + "MaxBoundsY": 21.5, + "MaxBoundsZ": 211, + "OriginX": -111, + "OriginZ": 158, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1193.824.5.bmp" + } + ], + "1194.829": [ + { + "MinBoundsX": -159, + "MinBoundsY": -53, + "MinBoundsZ": -218.5, + "MaxBoundsX": 184.5, + "MaxBoundsY": -9.5, + "MaxBoundsZ": 16, + "OriginX": -159, + "OriginZ": -218.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1194.829.1.bmp" + }, + { + "MinBoundsX": -255.5, + "MinBoundsY": -211, + "MinBoundsZ": -233.5, + "MaxBoundsX": 113.5, + "MaxBoundsY": -179.5, + "MaxBoundsZ": -33.5, + "OriginX": -255.5, + "OriginZ": -233.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1194.829.2.bmp" + }, + { + "MinBoundsX": 87.5, + "MinBoundsY": -196, + "MinBoundsZ": -366, + "MaxBoundsX": 151.5, + "MaxBoundsY": -173.5, + "MaxBoundsZ": -291, + "OriginX": 87.5, + "OriginZ": -366, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1194.829.3.bmp" + } + ], + "1198.831": [ + { + "MinBoundsX": -128.5, + "MinBoundsY": -4.5, + "MinBoundsZ": -449.5, + "MaxBoundsX": 119, + "MaxBoundsY": 22.5, + "MaxBoundsZ": 503, + "OriginX": -128.5, + "OriginZ": -449.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1198.831.1.bmp" + } + ], + "1208.825": [ + { + "MinBoundsX": -55.5, + "MinBoundsY": 299, + "MinBoundsZ": 26, + "MaxBoundsX": 58.5, + "MaxBoundsY": 312.5, + "MaxBoundsZ": 199.5, + "OriginX": -55.5, + "OriginZ": 26, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1208.825.1.bmp" + }, + { + "MinBoundsX": -201, + "MinBoundsY": -505, + "MinBoundsZ": -9.5, + "MaxBoundsX": -94.5, + "MaxBoundsY": -488, + "MaxBoundsZ": 164, + "OriginX": -201, + "OriginZ": -9.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1208.825.2.bmp" + }, + { + "MinBoundsX": -105.5, + "MinBoundsY": -121, + "MinBoundsZ": -197.5, + "MaxBoundsX": 101.5, + "MaxBoundsY": -109, + "MaxBoundsZ": -103, + "OriginX": -105.5, + "OriginZ": -197.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1208.825.3.bmp" + }, + { + "MinBoundsX": -211, + "MinBoundsY": -95, + "MinBoundsZ": -231.5, + "MaxBoundsX": 74.5, + "MaxBoundsY": -79.5, + "MaxBoundsZ": -52.5, + "OriginX": -211, + "OriginZ": -231.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1208.825.4.bmp" + }, + { + "MinBoundsX": 3, + "MinBoundsY": -1, + "MinBoundsZ": -40.5, + "MaxBoundsX": 237, + "MaxBoundsY": 12, + "MaxBoundsZ": 239.5, + "OriginX": 3, + "OriginZ": -40.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1208.825.5.bmp" + } + ], + "920.735": [ + { + "MinBoundsX": -537.5, + "MinBoundsY": -1.5, + "MinBoundsZ": -48, + "MaxBoundsX": 895.5, + "MaxBoundsY": 87, + "MaxBoundsZ": 899, + "OriginX": -537.5, + "OriginZ": -48, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "920.735.1.bmp" + } + ], + "975.778": [ + { + "MinBoundsX": -899.5, + "MinBoundsY": 237, + "MinBoundsZ": -752, + "MaxBoundsX": 774, + "MaxBoundsY": 348, + "MaxBoundsZ": 894.5, + "OriginX": -899.5, + "OriginZ": -752, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "975.778.1.bmp" + } + ], + "148": [ + { + "MinBoundsX": -625, + "MinBoundsY": -72, + "MinBoundsZ": -450, + "MaxBoundsX": 687.5, + "MaxBoundsY": 90.5, + "MaxBoundsZ": 654.5, + "OriginX": -625, + "OriginZ": -450, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "148.0.1.bmp" + } + ], + "156": [ + { + "MinBoundsX": -665, + "MinBoundsY": -29, + "MinBoundsZ": -861.5, + "MaxBoundsX": 636.5, + "MaxBoundsY": 65, + "MaxBoundsZ": -35.5, + "OriginX": -665, + "OriginZ": -861.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "156.0.3.bmp" + } + ], + "147": [ + { + "MinBoundsX": -327.5, + "MinBoundsY": -4, + "MinBoundsZ": -446, + "MaxBoundsX": 278, + "MaxBoundsY": 103, + "MaxBoundsZ": 549.5, + "OriginX": -327.5, + "OriginZ": -446, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "147.0.2.bmp" + } + ], + "561.174": [ + { + "MinBoundsX": -436.5, + "MinBoundsY": -5, + "MinBoundsZ": 163, + "MaxBoundsX": -157.5, + "MaxBoundsY": 12, + "MaxBoundsZ": 442.5, + "OriginX": -436.5, + "OriginZ": 163, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "561.174.1.bmp" + }, + { + "MinBoundsX": 166.5, + "MinBoundsY": -5, + "MinBoundsZ": -433.5, + "MaxBoundsX": 447.5, + "MaxBoundsY": 15, + "MaxBoundsZ": -162.5, + "OriginX": 166.5, + "OriginZ": -433.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "561.174.2.bmp" + } + ], + "562.175": [ + { + "MinBoundsX": 166.5, + "MinBoundsY": -4.5, + "MinBoundsZ": -431.5, + "MaxBoundsX": 445, + "MaxBoundsY": 16, + "MaxBoundsZ": -164.5, + "OriginX": 166.5, + "OriginZ": -431.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "562.175.1.bmp" + }, + { + "MinBoundsX": -433.5, + "MinBoundsY": -4.5, + "MinBoundsZ": 164.5, + "MaxBoundsX": -159, + "MaxBoundsY": 15, + "MaxBoundsZ": 439.5, + "OriginX": -433.5, + "OriginZ": 164.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "562.175.2.bmp" + } + ], + "563.176": [ + { + "MinBoundsX": 168, + "MinBoundsY": -4.5, + "MinBoundsZ": -430.5, + "MaxBoundsX": 444.5, + "MaxBoundsY": 18, + "MaxBoundsZ": -167.5, + "OriginX": 168, + "OriginZ": -430.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "563.176.1.bmp" + }, + { + "MinBoundsX": -436, + "MinBoundsY": -5, + "MinBoundsZ": 165.5, + "MaxBoundsX": -161, + "MaxBoundsY": 15, + "MaxBoundsZ": 442.5, + "OriginX": -436, + "OriginZ": 165.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "563.176.2.bmp" + } + ], + "594.205": [ + { + "MinBoundsX": 171.5, + "MinBoundsY": -7, + "MinBoundsZ": -429, + "MaxBoundsX": 441, + "MaxBoundsY": 16.5, + "MaxBoundsZ": -147, + "OriginX": 171.5, + "OriginZ": -429, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "594.205.1.bmp" + }, + { + "MinBoundsX": -433, + "MinBoundsY": -7, + "MinBoundsZ": 163, + "MaxBoundsX": -160, + "MaxBoundsY": 17.5, + "MaxBoundsZ": 445, + "OriginX": -433, + "OriginZ": 163, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "594.205.2.bmp" + } + ], + "595.206": [ + { + "MinBoundsX": -433, + "MinBoundsY": -7, + "MinBoundsZ": 163, + "MaxBoundsX": -160, + "MaxBoundsY": 17.5, + "MaxBoundsZ": 445, + "OriginX": -433, + "OriginZ": 163, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "595.206.1.bmp" + }, + { + "MinBoundsX": 171.5, + "MinBoundsY": -7, + "MinBoundsZ": -429, + "MaxBoundsX": 441, + "MaxBoundsY": 16.5, + "MaxBoundsZ": -147, + "OriginX": 171.5, + "OriginZ": -429, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "595.206.2.bmp" + } + ], + "596.207": [ + { + "MinBoundsX": 162.5, + "MinBoundsY": -5.5, + "MinBoundsZ": -433.5, + "MaxBoundsX": 443.5, + "MaxBoundsY": 15.5, + "MaxBoundsZ": -160.5, + "OriginX": 162.5, + "OriginZ": -433.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "596.207.1.bmp" + }, + { + "MinBoundsX": -441, + "MinBoundsY": -5.5, + "MinBoundsZ": 166.5, + "MaxBoundsX": -162.5, + "MaxBoundsY": 15, + "MaxBoundsZ": 433.5, + "OriginX": -441, + "OriginZ": 166.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "596.207.2.bmp" + } + ], + "597.208": [ + { + "MinBoundsX": 162.5, + "MinBoundsY": -5.5, + "MinBoundsZ": -433.5, + "MaxBoundsX": 443.5, + "MaxBoundsY": 15.5, + "MaxBoundsZ": -160.5, + "OriginX": 162.5, + "OriginZ": -433.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "597.208.1.bmp" + }, + { + "MinBoundsX": -441, + "MinBoundsY": -5.5, + "MinBoundsZ": 166.5, + "MaxBoundsX": -162.5, + "MaxBoundsY": 15, + "MaxBoundsZ": 433.5, + "OriginX": -441, + "OriginZ": 166.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "597.208.2.bmp" + } + ], + "598.209": [ + { + "MinBoundsX": -441, + "MinBoundsY": -5.5, + "MinBoundsZ": 166.5, + "MaxBoundsX": -162.5, + "MaxBoundsY": 15, + "MaxBoundsZ": 433.5, + "OriginX": -441, + "OriginZ": 166.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "598.209.1.bmp" + }, + { + "MinBoundsX": 162.5, + "MinBoundsY": -5.5, + "MinBoundsZ": -433.5, + "MaxBoundsX": 443.5, + "MaxBoundsY": 15.5, + "MaxBoundsZ": -160.5, + "OriginX": 162.5, + "OriginZ": -433.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "598.209.2.bmp" + } + ], + "599.210": [ + { + "MinBoundsX": -434, + "MinBoundsY": -4.5, + "MinBoundsZ": 165, + "MaxBoundsX": -160, + "MaxBoundsY": 11, + "MaxBoundsZ": 439.5, + "OriginX": -434, + "OriginZ": 165, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "599.210.1.bmp" + }, + { + "MinBoundsX": 166.5, + "MinBoundsY": -4.5, + "MinBoundsZ": -430.5, + "MaxBoundsX": 445, + "MaxBoundsY": 15, + "MaxBoundsZ": -165, + "OriginX": 166.5, + "OriginZ": -430.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "599.210.2.bmp" + } + ], + "600.211": [ + { + "MinBoundsX": 166.5, + "MinBoundsY": -4.5, + "MinBoundsZ": -430.5, + "MaxBoundsX": 445, + "MaxBoundsY": 15, + "MaxBoundsZ": -165, + "OriginX": 166.5, + "OriginZ": -430.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "600.211.1.bmp" + }, + { + "MinBoundsX": -434, + "MinBoundsY": -4.5, + "MinBoundsZ": 165, + "MaxBoundsX": -160, + "MaxBoundsY": 11, + "MaxBoundsZ": 439.5, + "OriginX": -434, + "OriginZ": 165, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "600.211.2.bmp" + } + ], + "601.212": [ + { + "MinBoundsX": 167.5, + "MinBoundsY": -4.5, + "MinBoundsZ": -431, + "MaxBoundsX": 443, + "MaxBoundsY": 15, + "MaxBoundsZ": -167.5, + "OriginX": 167.5, + "OriginZ": -431, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "601.212.1.bmp" + }, + { + "MinBoundsX": -436, + "MinBoundsY": -5, + "MinBoundsZ": 165.5, + "MaxBoundsX": -162, + "MaxBoundsY": 11, + "MaxBoundsZ": 443.5, + "OriginX": -436, + "OriginZ": 165.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "601.212.2.bmp" + } + ], + "602.213": [ + { + "MinBoundsX": -436, + "MinBoundsY": -5, + "MinBoundsZ": 165.5, + "MaxBoundsX": -162, + "MaxBoundsY": 11, + "MaxBoundsZ": 443.5, + "OriginX": -436, + "OriginZ": 165.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "602.213.1.bmp" + }, + { + "MinBoundsX": 167.5, + "MinBoundsY": -4.5, + "MinBoundsZ": -431, + "MaxBoundsX": 443, + "MaxBoundsY": 15, + "MaxBoundsZ": -167.5, + "OriginX": 167.5, + "OriginZ": -431, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "602.213.2.bmp" + } + ], + "564.177": [ + { + "MinBoundsX": 167, + "MinBoundsY": -5, + "MinBoundsZ": -432.5, + "MaxBoundsX": 447, + "MaxBoundsY": 16.5, + "MaxBoundsZ": -163, + "OriginX": 167, + "OriginZ": -432.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "564.177.1.bmp" + }, + { + "MinBoundsX": -436, + "MinBoundsY": -5, + "MinBoundsZ": 163, + "MaxBoundsX": -158, + "MaxBoundsY": 13.5, + "MaxBoundsZ": 443, + "OriginX": -436, + "OriginZ": 163, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "564.177.2.bmp" + } + ], + "565.178": [ + { + "MinBoundsX": 167, + "MinBoundsY": -5, + "MinBoundsZ": -432.5, + "MaxBoundsX": 447, + "MaxBoundsY": 16.5, + "MaxBoundsZ": -163, + "OriginX": 167, + "OriginZ": -432.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "565.178.1.bmp" + }, + { + "MinBoundsX": -436, + "MinBoundsY": -5, + "MinBoundsZ": 163, + "MaxBoundsX": -158, + "MaxBoundsY": 13.5, + "MaxBoundsZ": 443, + "OriginX": -436, + "OriginZ": 163, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "565.178.2.bmp" + } + ], + "603.214": [ + { + "MinBoundsX": -433.5, + "MinBoundsY": -7, + "MinBoundsZ": 172, + "MaxBoundsX": -164, + "MaxBoundsY": 25, + "MaxBoundsZ": 435, + "OriginX": -433.5, + "OriginZ": 172, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "603.214.1.bmp" + }, + { + "MinBoundsX": 172, + "MinBoundsY": -7, + "MinBoundsZ": -428, + "MaxBoundsX": 440, + "MaxBoundsY": 16.5, + "MaxBoundsZ": -176, + "OriginX": 172, + "OriginZ": -428, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "603.214.2.bmp" + } + ], + "604.215": [ + { + "MinBoundsX": -433.5, + "MinBoundsY": -7, + "MinBoundsZ": 172, + "MaxBoundsX": -164, + "MaxBoundsY": 25, + "MaxBoundsZ": 435, + "OriginX": -433.5, + "OriginZ": 172, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "604.215.1.bmp" + }, + { + "MinBoundsX": 172, + "MinBoundsY": -7, + "MinBoundsZ": -428, + "MaxBoundsX": 440, + "MaxBoundsY": 16.5, + "MaxBoundsZ": -176, + "OriginX": 172, + "OriginZ": -428, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "604.215.2.bmp" + } + ], + "605.216": [ + { + "MinBoundsX": -433.5, + "MinBoundsY": -7, + "MinBoundsZ": 172, + "MaxBoundsX": -164, + "MaxBoundsY": 25, + "MaxBoundsZ": 435, + "OriginX": -433.5, + "OriginZ": 172, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "605.216.1.bmp" + }, + { + "MinBoundsX": 172, + "MinBoundsY": -7, + "MinBoundsZ": -428, + "MaxBoundsX": 440, + "MaxBoundsY": 16.5, + "MaxBoundsZ": -176, + "OriginX": 172, + "OriginZ": -428, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "605.216.2.bmp" + } + ], + "349.18": [ + { + "MinBoundsX": -325, + "MinBoundsY": 15, + "MinBoundsZ": -220, + "MaxBoundsX": -179.5, + "MaxBoundsY": 36.5, + "MaxBoundsZ": -148, + "OriginX": -325, + "OriginZ": -220, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "349.18.1.bmp" + }, + { + "MinBoundsX": -197, + "MinBoundsY": -13, + "MinBoundsZ": -234.5, + "MaxBoundsX": 95, + "MaxBoundsY": 7.5, + "MaxBoundsZ": 11.5, + "OriginX": -197, + "OriginZ": -234.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "349.18.2.bmp" + } + ], + "606.217": [ + { + "MinBoundsX": 172, + "MinBoundsY": -7, + "MinBoundsZ": -428, + "MaxBoundsX": 440, + "MaxBoundsY": 16.5, + "MaxBoundsZ": -176, + "OriginX": 172, + "OriginZ": -428, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "606.217.1.bmp" + }, + { + "MinBoundsX": -433.5, + "MinBoundsY": -7, + "MinBoundsZ": 172, + "MaxBoundsX": -164, + "MaxBoundsY": 25, + "MaxBoundsZ": 435, + "OriginX": -433.5, + "OriginZ": 172, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "606.217.2.bmp" + } + ], + "607.218": [ + { + "MinBoundsX": 172, + "MinBoundsY": -7, + "MinBoundsZ": -428, + "MaxBoundsX": 440, + "MaxBoundsY": 16.5, + "MaxBoundsZ": -176, + "OriginX": 172, + "OriginZ": -428, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "607.218.3.bmp" + } + ], + "770.540": [ + { + "MinBoundsX": -435, + "MinBoundsY": -7, + "MinBoundsZ": 166.5, + "MaxBoundsX": -160.5, + "MaxBoundsY": 16.5, + "MaxBoundsZ": 443, + "OriginX": -435, + "OriginZ": 166.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "770.540.1.bmp" + }, + { + "MinBoundsX": 171, + "MinBoundsY": -7, + "MinBoundsZ": -428, + "MaxBoundsX": 448, + "MaxBoundsY": 16.5, + "MaxBoundsZ": -151.5, + "OriginX": 171, + "OriginZ": -428, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "770.540.2.bmp" + } + ], + "771.541": [ + { + "MinBoundsX": -435, + "MinBoundsY": -7, + "MinBoundsZ": 166.5, + "MaxBoundsX": -160.5, + "MaxBoundsY": 16.5, + "MaxBoundsZ": 443, + "OriginX": -435, + "OriginZ": 166.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "771.541.1.bmp" + }, + { + "MinBoundsX": 171, + "MinBoundsY": -7, + "MinBoundsZ": -428, + "MaxBoundsX": 448, + "MaxBoundsY": 16.5, + "MaxBoundsZ": -151.5, + "OriginX": 171, + "OriginZ": -428, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "771.541.2.bmp" + }, + { + "MinBoundsX": 193.5, + "MinBoundsY": -1, + "MinBoundsZ": 223, + "MaxBoundsX": 406, + "MaxBoundsY": 10, + "MaxBoundsZ": 377, + "OriginX": 193.5, + "OriginZ": 223, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "771.541.3.bmp" + } + ], + "772.542": [ + { + "MinBoundsX": 171, + "MinBoundsY": -7.5, + "MinBoundsZ": -429, + "MaxBoundsX": 441, + "MaxBoundsY": 16.5, + "MaxBoundsZ": -147, + "OriginX": 171, + "OriginZ": -429, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "772.542.1.bmp" + }, + { + "MinBoundsX": -433, + "MinBoundsY": -7.5, + "MinBoundsZ": 163, + "MaxBoundsX": -159, + "MaxBoundsY": 16.5, + "MaxBoundsZ": 445, + "OriginX": -433, + "OriginZ": 163, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "772.542.2.bmp" + }, + { + "MinBoundsX": 189, + "MinBoundsY": -1, + "MinBoundsZ": 221, + "MaxBoundsX": 411, + "MaxBoundsY": 10.5, + "MaxBoundsZ": 379, + "OriginX": 189, + "OriginZ": 221, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "772.542.3.bmp" + } + ], + "782.543": [ + { + "MinBoundsX": 171, + "MinBoundsY": -7.5, + "MinBoundsZ": -429, + "MaxBoundsX": 441, + "MaxBoundsY": 16.5, + "MaxBoundsZ": -147, + "OriginX": 171, + "OriginZ": -429, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "782.543.1.bmp" + }, + { + "MinBoundsX": -433, + "MinBoundsY": -7.5, + "MinBoundsZ": 163, + "MaxBoundsX": -159, + "MaxBoundsY": 16.5, + "MaxBoundsZ": 445, + "OriginX": -433, + "OriginZ": 163, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "782.543.2.bmp" + }, + { + "MinBoundsX": 189, + "MinBoundsY": -1, + "MinBoundsZ": 221, + "MaxBoundsX": 411, + "MaxBoundsY": 10.5, + "MaxBoundsZ": 379, + "OriginX": 189, + "OriginZ": 221, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "782.543.3.bmp" + } + ], + "773.544": [ + { + "MinBoundsX": 166, + "MinBoundsY": -5, + "MinBoundsZ": -425.5, + "MaxBoundsX": 436, + "MaxBoundsY": 15, + "MaxBoundsZ": -161.5, + "OriginX": 166, + "OriginZ": -425.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "773.544.1.bmp" + }, + { + "MinBoundsX": -425.5, + "MinBoundsY": -5, + "MinBoundsZ": 166, + "MaxBoundsX": -174.5, + "MaxBoundsY": 16, + "MaxBoundsZ": 438.5, + "OriginX": -425.5, + "OriginZ": 166, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "773.544.2.bmp" + }, + { + "MinBoundsX": 183.5, + "MinBoundsY": -1, + "MinBoundsZ": 222.5, + "MaxBoundsX": 416.5, + "MaxBoundsY": 10.5, + "MaxBoundsZ": 377.5, + "OriginX": 183.5, + "OriginZ": 222.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "773.544.3.bmp" + } + ], + "783.545": [ + { + "MinBoundsX": -425.5, + "MinBoundsY": -5, + "MinBoundsZ": 166, + "MaxBoundsX": -174.5, + "MaxBoundsY": 16, + "MaxBoundsZ": 438.5, + "OriginX": -425.5, + "OriginZ": 166, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "783.545.1.bmp" + }, + { + "MinBoundsX": 166, + "MinBoundsY": -5, + "MinBoundsZ": -425.5, + "MaxBoundsX": 436, + "MaxBoundsY": 15, + "MaxBoundsZ": -161.5, + "OriginX": 166, + "OriginZ": -425.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "783.545.2.bmp" + }, + { + "MinBoundsX": 183.5, + "MinBoundsY": -1, + "MinBoundsZ": 222.5, + "MaxBoundsX": 416.5, + "MaxBoundsY": 10.5, + "MaxBoundsZ": 377.5, + "OriginX": 183.5, + "OriginZ": 222.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "783.545.3.bmp" + } + ], + "774.546": [ + { + "MinBoundsX": 166, + "MinBoundsY": -5, + "MinBoundsZ": -425.5, + "MaxBoundsX": 436, + "MaxBoundsY": 15, + "MaxBoundsZ": -161.5, + "OriginX": 166, + "OriginZ": -425.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "774.546.1.bmp" + }, + { + "MinBoundsX": -425.5, + "MinBoundsY": -5, + "MinBoundsZ": 166, + "MaxBoundsX": -174.5, + "MaxBoundsY": 16, + "MaxBoundsZ": 438.5, + "OriginX": -425.5, + "OriginZ": 166, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "774.546.2.bmp" + }, + { + "MinBoundsX": 183.5, + "MinBoundsY": -1, + "MinBoundsZ": 222.5, + "MaxBoundsX": 416.5, + "MaxBoundsY": 10.5, + "MaxBoundsZ": 377.5, + "OriginX": 183.5, + "OriginZ": 222.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "774.546.3.bmp" + } + ], + "613": [ + { + "MinBoundsX": -968, + "MinBoundsY": -11, + "MinBoundsZ": -989.5, + "MaxBoundsX": 990, + "MaxBoundsY": 99, + "MaxBoundsZ": 954.5, + "OriginX": -968, + "OriginZ": -989.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "613.0.1.bmp" + } + ], + "784.547": [ + { + "MinBoundsX": 166, + "MinBoundsY": -5, + "MinBoundsZ": -425.5, + "MaxBoundsX": 436, + "MaxBoundsY": 15, + "MaxBoundsZ": -161.5, + "OriginX": 166, + "OriginZ": -425.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "784.547.1.bmp" + }, + { + "MinBoundsX": 183.5, + "MinBoundsY": -1, + "MinBoundsZ": 222.5, + "MaxBoundsX": 416.5, + "MaxBoundsY": 10.5, + "MaxBoundsZ": 377.5, + "OriginX": 183.5, + "OriginZ": 222.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "784.547.2.bmp" + }, + { + "MinBoundsX": -425.5, + "MinBoundsY": -5, + "MinBoundsZ": 166, + "MaxBoundsX": -174.5, + "MaxBoundsY": 16, + "MaxBoundsZ": 438.5, + "OriginX": -425.5, + "OriginZ": 166, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "784.547.3.bmp" + }, + { + "MinBoundsX": -324.5, + "MinBoundsY": -1, + "MinBoundsZ": -395, + "MaxBoundsX": -275.5, + "MaxBoundsY": 22, + "MaxBoundsZ": -275.5, + "OriginX": -324.5, + "OriginZ": -395, + "ViewWidth": 49, + "ViewHeight": 60, + "Filename": "784.547.4.bmp" + } + ], + "775.548": [ + { + "MinBoundsX": -432.5, + "MinBoundsY": -7.5, + "MinBoundsZ": 164, + "MaxBoundsX": -160, + "MaxBoundsY": 16.5, + "MaxBoundsZ": 444.5, + "OriginX": -432.5, + "OriginZ": 164, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "775.548.1.bmp" + }, + { + "MinBoundsX": 171.5, + "MinBoundsY": -7.5, + "MinBoundsZ": -428.5, + "MaxBoundsX": 440.5, + "MaxBoundsY": 16.5, + "MaxBoundsZ": -155.5, + "OriginX": 171.5, + "OriginZ": -428.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "775.548.2.bmp" + }, + { + "MinBoundsX": -325, + "MinBoundsY": -1, + "MinBoundsZ": -398.5, + "MaxBoundsX": -275, + "MaxBoundsY": 17.5, + "MaxBoundsZ": -275, + "OriginX": -325, + "OriginZ": -398.5, + "ViewWidth": 50, + "ViewHeight": 60, + "Filename": "775.548.3.bmp" + }, + { + "MinBoundsX": 186.5, + "MinBoundsY": -1, + "MinBoundsZ": 222.5, + "MaxBoundsX": 413.5, + "MaxBoundsY": 10.5, + "MaxBoundsZ": 377.5, + "OriginX": 186.5, + "OriginZ": 222.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "775.548.4.bmp" + } + ], + "785.549": [ + { + "MinBoundsX": -432.5, + "MinBoundsY": -7.5, + "MinBoundsZ": 164, + "MaxBoundsX": -160, + "MaxBoundsY": 16.5, + "MaxBoundsZ": 444.5, + "OriginX": -432.5, + "OriginZ": 164, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "785.549.1.bmp" + }, + { + "MinBoundsX": 171.5, + "MinBoundsY": -7.5, + "MinBoundsZ": -428.5, + "MaxBoundsX": 440.5, + "MaxBoundsY": 16.5, + "MaxBoundsZ": -155.5, + "OriginX": 171.5, + "OriginZ": -428.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "785.549.2.bmp" + }, + { + "MinBoundsX": 186.5, + "MinBoundsY": -1, + "MinBoundsZ": 222.5, + "MaxBoundsX": 413.5, + "MaxBoundsY": 10.5, + "MaxBoundsZ": 377.5, + "OriginX": 186.5, + "OriginZ": 222.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "785.549.3.bmp" + } + ], + "1099.897": [ + { + "MinBoundsX": 136.5, + "MinBoundsY": -5.5, + "MinBoundsZ": -465, + "MaxBoundsX": 453.5, + "MaxBoundsY": 17.5, + "MaxBoundsZ": -151, + "OriginX": 136.5, + "OriginZ": -465, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1099.897.1.bmp" + }, + { + "MinBoundsX": -449, + "MinBoundsY": -5.5, + "MinBoundsZ": 145, + "MaxBoundsX": -135, + "MaxBoundsY": 16.5, + "MaxBoundsZ": 453.5, + "OriginX": -449, + "OriginZ": 145, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1099.897.2.bmp" + } + ], + "1100.898": [ + { + "MinBoundsX": -449, + "MinBoundsY": -5.5, + "MinBoundsZ": 145, + "MaxBoundsX": -135, + "MaxBoundsY": 17, + "MaxBoundsZ": 453.5, + "OriginX": -449, + "OriginZ": 145, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1100.898.1.bmp" + }, + { + "MinBoundsX": 136.5, + "MinBoundsY": -5.5, + "MinBoundsZ": -465, + "MaxBoundsX": 453.5, + "MaxBoundsY": 17.5, + "MaxBoundsZ": -151, + "OriginX": 136.5, + "OriginZ": -465, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1100.898.2.bmp" + } + ], + "1101.899": [ + { + "MinBoundsX": 155, + "MinBoundsY": -5, + "MinBoundsZ": -445, + "MaxBoundsX": 445, + "MaxBoundsY": 12.5, + "MaxBoundsZ": -155, + "OriginX": 155, + "OriginZ": -445, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1101.899.1.bmp" + }, + { + "MinBoundsX": -445, + "MinBoundsY": -5, + "MinBoundsZ": 155, + "MaxBoundsX": -155, + "MaxBoundsY": 12.5, + "MaxBoundsZ": 445, + "OriginX": -445, + "OriginZ": 155, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1101.899.2.bmp" + } + ], + "1102.900": [ + { + "MinBoundsX": 155, + "MinBoundsY": -5, + "MinBoundsZ": -445, + "MaxBoundsX": 445, + "MaxBoundsY": 12.5, + "MaxBoundsZ": -155, + "OriginX": 155, + "OriginZ": -445, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1102.900.1.bmp" + }, + { + "MinBoundsX": -445, + "MinBoundsY": -5, + "MinBoundsZ": 155, + "MaxBoundsX": -155, + "MaxBoundsY": 12.5, + "MaxBoundsZ": 445, + "OriginX": -445, + "OriginZ": 155, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1102.900.2.bmp" + } + ], + "1103.901": [ + { + "MinBoundsX": -319.5, + "MinBoundsY": -1, + "MinBoundsZ": -319.5, + "MaxBoundsX": -280.5, + "MaxBoundsY": 10.5, + "MaxBoundsZ": -280.5, + "OriginX": -319.5, + "OriginZ": -319.5, + "ViewWidth": 39, + "ViewHeight": 39, + "Filename": "1103.901.3.bmp" + }, + { + "MinBoundsX": 169, + "MinBoundsY": -5, + "MinBoundsZ": -431, + "MaxBoundsX": 442, + "MaxBoundsY": 15, + "MaxBoundsZ": -169, + "OriginX": 169, + "OriginZ": -431, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1103.901.1.bmp" + }, + { + "MinBoundsX": -434, + "MinBoundsY": -5.5, + "MinBoundsZ": 167, + "MaxBoundsX": -162.5, + "MaxBoundsY": 12.5, + "MaxBoundsZ": 443, + "OriginX": -434, + "OriginZ": 167, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1103.901.2.bmp" + } + ], + "1104.902": [ + { + "MinBoundsX": -434, + "MinBoundsY": -5.5, + "MinBoundsZ": 167, + "MaxBoundsX": -162.5, + "MaxBoundsY": 12.5, + "MaxBoundsZ": 443, + "OriginX": -434, + "OriginZ": 167, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1104.902.1.bmp" + }, + { + "MinBoundsX": 169, + "MinBoundsY": -5, + "MinBoundsZ": -431, + "MaxBoundsX": 442, + "MaxBoundsY": 15, + "MaxBoundsZ": -169, + "OriginX": 169, + "OriginZ": -431, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1104.902.2.bmp" + } + ], + "1105.903": [ + { + "MinBoundsX": 167.5, + "MinBoundsY": -5, + "MinBoundsZ": -431, + "MaxBoundsX": 441.5, + "MaxBoundsY": 15, + "MaxBoundsZ": -166.5, + "OriginX": 167.5, + "OriginZ": -431, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1105.903.1.bmp" + }, + { + "MinBoundsX": -436.5, + "MinBoundsY": -5, + "MinBoundsZ": 167.5, + "MaxBoundsX": -162.5, + "MaxBoundsY": 12.5, + "MaxBoundsZ": 443.5, + "OriginX": -436.5, + "OriginZ": 167.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1105.903.2.bmp" + } + ], + "1106.904": [ + { + "MinBoundsX": -624.5, + "MinBoundsY": -1, + "MinBoundsZ": -324.5, + "MaxBoundsX": -575.5, + "MaxBoundsY": 10, + "MaxBoundsZ": -275.5, + "OriginX": -624.5, + "OriginZ": -324.5, + "ViewWidth": 49, + "ViewHeight": 49, + "Filename": "1106.904.3.bmp" + }, + { + "MinBoundsX": 167.5, + "MinBoundsY": -5, + "MinBoundsZ": -431, + "MaxBoundsX": 441.5, + "MaxBoundsY": 15, + "MaxBoundsZ": -166.5, + "OriginX": 167.5, + "OriginZ": -431, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1106.904.1.bmp" + }, + { + "MinBoundsX": -436.5, + "MinBoundsY": -5, + "MinBoundsZ": 167.5, + "MaxBoundsX": -162.5, + "MaxBoundsY": 12.5, + "MaxBoundsZ": 443.5, + "OriginX": -436.5, + "OriginZ": 167.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1106.904.2.bmp" + } + ], + "1107.905": [ + { + "MinBoundsX": -481, + "MinBoundsY": -1.5, + "MinBoundsZ": 118.5, + "MaxBoundsX": -118.5, + "MaxBoundsY": 13, + "MaxBoundsZ": 481.5, + "OriginX": -481, + "OriginZ": 118.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1107.905.1.bmp" + }, + { + "MinBoundsX": 118.5, + "MinBoundsY": -1.5, + "MinBoundsZ": -481, + "MaxBoundsX": 481, + "MaxBoundsY": 13.5, + "MaxBoundsZ": -119, + "OriginX": 118.5, + "OriginZ": -481, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1107.905.2.bmp" + } + ], + "1108.906": [ + { + "MinBoundsX": -481, + "MinBoundsY": -1.5, + "MinBoundsZ": 118.5, + "MaxBoundsX": -118.5, + "MaxBoundsY": 13, + "MaxBoundsZ": 481.5, + "OriginX": -481, + "OriginZ": 118.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1108.906.1.bmp" + }, + { + "MinBoundsX": 118.5, + "MinBoundsY": -1.5, + "MinBoundsZ": -481, + "MaxBoundsX": 481, + "MaxBoundsY": 13.5, + "MaxBoundsZ": -119, + "OriginX": 118.5, + "OriginZ": -481, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1108.906.2.bmp" + }, + { + "MinBoundsX": -619.5, + "MinBoundsY": -1.5, + "MinBoundsZ": -346.5, + "MaxBoundsX": -580.5, + "MaxBoundsY": 12, + "MaxBoundsZ": -280.5, + "OriginX": -619.5, + "OriginZ": -346.5, + "ViewWidth": 39, + "ViewHeight": 60, + "Filename": "1108.906.3.bmp" + }, + { + "MinBoundsX": -58, + "MinBoundsY": -702, + "MinBoundsZ": -58, + "MaxBoundsX": 58, + "MaxBoundsY": -615.5, + "MaxBoundsZ": 437.5, + "OriginX": -58, + "OriginZ": -58, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "1108.906.4.bmp" + } + ], + "593.204": [ + { + "MinBoundsX": 171.5, + "MinBoundsY": -7, + "MinBoundsZ": -429, + "MaxBoundsX": 441, + "MaxBoundsY": 16.5, + "MaxBoundsZ": -147, + "OriginX": 171.5, + "OriginZ": -429, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "593.204.1.bmp" + }, + { + "MinBoundsX": -433, + "MinBoundsY": -7, + "MinBoundsZ": 163, + "MaxBoundsX": -160, + "MaxBoundsY": 17.5, + "MaxBoundsZ": 445, + "OriginX": -433, + "OriginZ": 163, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "593.204.2.bmp" + } + ] +} \ No newline at end of file From 7998936f5528f2f4e1fb30e8edf8076ad3ff8198 Mon Sep 17 00:00:00 2001 From: xanunderscore <149614526+xanunderscore@users.noreply.github.com> Date: Tue, 28 Jan 2025 22:05:36 -0500 Subject: [PATCH 04/32] update rotations --- .../Standard/xan/AI/DeepDungeon.cs | 199 ++++++++++++++++++ .../Autorotation/Standard/xan/AI/Healer.cs | 2 +- BossMod/Autorotation/Standard/xan/AI/Melee.cs | 6 +- .../Autorotation/Standard/xan/AI/Ranged.cs | 6 +- BossMod/Autorotation/Standard/xan/Basexan.cs | 51 ++++- .../Autorotation/Standard/xan/Melee/DRG.cs | 94 ++++----- .../Autorotation/Standard/xan/Melee/MNK.cs | 12 +- .../Autorotation/Standard/xan/Ranged/MCH.cs | 123 ++++++----- .../Autorotation/Standard/xan/Tanks/PLD.cs | 2 +- 9 files changed, 368 insertions(+), 127 deletions(-) create mode 100644 BossMod/Autorotation/Standard/xan/AI/DeepDungeon.cs diff --git a/BossMod/Autorotation/Standard/xan/AI/DeepDungeon.cs b/BossMod/Autorotation/Standard/xan/AI/DeepDungeon.cs new file mode 100644 index 0000000000..379c9cb974 --- /dev/null +++ b/BossMod/Autorotation/Standard/xan/AI/DeepDungeon.cs @@ -0,0 +1,199 @@ +namespace BossMod.Autorotation.xan; + +public class DeepDungeonAI(RotationModuleManager manager, Actor player) : AIBase(manager, player) +{ + public enum Track { Potion, Kite } + + public static RotationModuleDefinition Definition() + { + var def = new RotationModuleDefinition("Deep Dungeon AI", "Utilities for deep dungeon - potion/pomander user", "AI (xan)", "xan", RotationModuleQuality.Basic, new BitMask(~0ul), 100, CanUseWhileRoleplaying: true); + + def.AbilityTrack(Track.Potion, "Potion"); + def.AbilityTrack(Track.Kite, "Kite enemies"); + + return def; + } + + enum OID : uint + { + Unei = 0x3E1A, + } + + enum Transformation : uint + { + None, + Manticore, + Succubus, + Kuribu, + Dreadnaught + } + + enum SID : uint + { + Transfiguration = 565, + ItemPenalty = 1094, + } + + public override void Execute(StrategyValues strategy, ref Actor? primaryTarget, float estimatedAnimLockDelay, bool isMoving) + { + if (World.DeepDungeon.DungeonId == 0) + return; + + var transformation = Transformation.None; + if (Player.FindStatus(SID.Transfiguration) is { } status) + { + transformation = (status.Extra & 0xFF) switch + { + 42 => Transformation.Manticore, + 43 => Transformation.Succubus, + 49 => Transformation.Kuribu, + 244 => Transformation.Dreadnaught, + _ => Transformation.None + }; + } + + if (transformation != Transformation.None) + { + DoTransformActions(strategy, primaryTarget, transformation); + return; + } + + if (IsRanged && !Player.InCombat && primaryTarget is Actor target && !target.InCombat && !target.IsAlly) + // bandaid fix to help deal with constant LOS issues + Hints.GoalZones.Add(Hints.GoalSingleTarget(target, 3, 0.1f)); + + SetupKiteZone(strategy, primaryTarget); + + if (Player.FindStatus(SID.ItemPenalty) != null) + return; + + var (regenAction, potAction) = World.DeepDungeon.DungeonId switch + { + DeepDungeonState.DungeonType.POTD => (ActionDefinitions.IDSustainingPotion, ActionDefinitions.IDMaxPotion), + DeepDungeonState.DungeonType.HOH => (ActionDefinitions.IDEmpyreanPotion, ActionDefinitions.IDSuperPotion), + DeepDungeonState.DungeonType.EO => (ActionDefinitions.IDOrthosPotion, ActionDefinitions.IDHyperPotion), + _ => (default, default) + }; + + if (regenAction != default && ShouldPotion(strategy)) + Hints.ActionsToExecute.Push(regenAction, Player, ActionQueue.Priority.Medium); + + if (potAction != default && Player.PredictedHPRatio <= 0.3f) + Hints.ActionsToExecute.Push(potAction, Player, ActionQueue.Priority.VeryHigh); + } + + private bool IsRanged => Player.Class.GetRole() is Role.Ranged or Role.Healer; + + private static readonly HashSet NoMeleeAutos = [ + // hoh + 0x22C3, // heavenly onibi + 0x22C5, // heavenly dhruva + 0x22C6, // heavenly sai taisui + 0x22DC, // heavenly dogu + 0x22DE, // heavenly ganseki + 0x22ED, // heavenly kongorei + 0x22EF, // heavenly maruishi + 0x22F3, // heavenly rachimonai + 0x22FC, // heavenly doguzeri + 0x2320, // heavenly nuppeppo (WHM) (uses stone) + + // orthos + 0x3DCC, // orthos imp + 0x3DCE, // orthos fachan + 0x3DD2, // orthos water sprite + 0x3DD4, // orthos microsystem + 0x3DD5, // orthosystem β + 0x3DE0, // orthodemolisher + 0x3DE2, // orthodroid + 0x3DFD, // orthos apa + 0x3E10, // orthos ice sprite + 0x3E5C, // orthos ahriman + 0x3E62, // orthos abyss + 0x3E63, // orthodrone + 0x3E64, // orthosystem γ + 0x3E66, // orthosystem α + ]; + + private void SetupKiteZone(StrategyValues strategy, Actor? primaryTarget) + { + if (!IsRanged || primaryTarget == null || !Player.InCombat || !strategy.Enabled(Track.Kite)) + return; + + // wew + if (NoMeleeAutos.Contains(primaryTarget.OID)) + return; + + // assume we don't need to kite if mob is busy casting (TODO: some mob spells can be cast while moving, maybe there's a column in sheets for it) + if (primaryTarget.CastInfo != null) + return; + + float maxRange = 25; + float maxKite = 9; + + var primaryPos = primaryTarget.Position; + var total = maxRange + Player.HitboxRadius + primaryTarget.HitboxRadius; + var totalKite = maxKite + Player.HitboxRadius + primaryTarget.HitboxRadius; + float goalFactor = 0.05f; + Hints.GoalZones.Add(pos => + { + var dist = (pos - primaryPos).Length(); + return dist <= total && dist >= totalKite ? goalFactor : 0; + }); + } + + private void DoTransformActions(StrategyValues strategy, Actor? primaryTarget, Transformation t) + { + if (primaryTarget == null) + return; + + Func goal; + ActionID attack; + int numTargets; + var castTime = 0f; + + switch (t) + { + case Transformation.Manticore: + goal = Hints.GoalSingleTarget(primaryTarget, 3); + numTargets = 1; + attack = ActionID.MakeSpell(Roleplay.AID.Pummel); + break; + case Transformation.Succubus: + goal = Hints.GoalSingleTarget(primaryTarget, 25); + numTargets = Hints.NumPriorityTargetsInAOECircle(primaryTarget.Position, 5); + attack = ActionID.MakeSpell(Roleplay.AID.VoidFireII); + castTime = 2.5f; + break; + case Transformation.Kuribu: + // heavenly judge is ground targeted + goal = Hints.GoalSingleTarget(primaryTarget.Position, 25); + numTargets = Hints.NumPriorityTargetsInAOECircle(primaryTarget.Position, 6); + attack = ActionID.MakeSpell(Roleplay.AID.HeavenlyJudge); + castTime = 2.5f; + break; + case Transformation.Dreadnaught: + goal = Hints.GoalSingleTarget(primaryTarget, 3); + numTargets = 1; + attack = ActionID.MakeSpell(Roleplay.AID.Rotosmash); + break; + default: + return; + } + + if (numTargets == 0) + return; + + Hints.GoalZones.Add(goal); + if (castTime == 0 || Hints.MaxCastTimeEstimate >= (castTime - 0.5f)) + Hints.ActionsToExecute.Push(attack, primaryTarget, ActionQueue.Priority.High, targetPos: primaryTarget.PosRot.XYZ()); + } + + private bool ShouldPotion(StrategyValues strategy) + { + if (World.Actors.Any(w => w.OID == (uint)OID.Unei) || !strategy.Enabled(Track.Potion)) + return false; + + var ratio = Player.ClassCategory is ClassCategory.Tank ? 0.4f : 0.6f; + return Player.PredictedHPRatio < ratio && Player.FindStatus(648) == null && Player.InCombat; + } +} diff --git a/BossMod/Autorotation/Standard/xan/AI/Healer.cs b/BossMod/Autorotation/Standard/xan/AI/Healer.cs index 8a93c7aeff..8a3b68cfa7 100644 --- a/BossMod/Autorotation/Standard/xan/AI/Healer.cs +++ b/BossMod/Autorotation/Standard/xan/AI/Healer.cs @@ -130,7 +130,7 @@ public override void Execute(StrategyValues strategy, ref Actor? primaryTarget, private void UseGCD(AID action, Actor? target, int extraPriority = 0) where AID : Enum => UseGCD(ActionID.MakeSpell(action), target, extraPriority); private void UseGCD(ActionID action, Actor? target, int extraPriority = 0) - => Hints.ActionsToExecute.Push(action, target, ActionQueue.Priority.High + 500 + extraPriority); // TODO[cast-time]-xan: verify all callers + => Hints.ActionsToExecute.Push(action, target, ActionQueue.Priority.High + 500 + extraPriority); private void UseOGCD(AID action, Actor? target, int extraPriority = 0) where AID : Enum => UseOGCD(ActionID.MakeSpell(action), target, extraPriority); diff --git a/BossMod/Autorotation/Standard/xan/AI/Melee.cs b/BossMod/Autorotation/Standard/xan/AI/Melee.cs index f1ce2d73c7..9aadb095d1 100644 --- a/BossMod/Autorotation/Standard/xan/AI/Melee.cs +++ b/BossMod/Autorotation/Standard/xan/AI/Melee.cs @@ -25,7 +25,7 @@ public override void Execute(StrategyValues strategy, ref Actor? primaryTarget, Hints.ActionsToExecute.Push(ActionID.MakeSpell(ClassShared.AID.SecondWind), Player, ActionQueue.Priority.Medium); // bloodbath - if (strategy.Enabled(Track.Bloodbath) && Player.InCombat && Player.PredictedHPRatio <= 0.75) + if (strategy.Enabled(Track.Bloodbath) && Player.InCombat && Player.PredictedHPRatio <= 0.3) Hints.ActionsToExecute.Push(ActionID.MakeSpell(ClassShared.AID.Bloodbath), Player, ActionQueue.Priority.Medium); // low blow @@ -66,7 +66,7 @@ private void ExecLB(StrategyValues strategy, Actor? primaryTarget) case 1: break; case 2: - Hints.ActionsToExecute.Push(ActionID.MakeSpell(ClassShared.AID.Bladedance), primaryTarget, ActionQueue.Priority.VeryHigh, castTime: 3); + Hints.ActionsToExecute.Push(ActionID.MakeSpell(ClassShared.AID.Bladedance), primaryTarget, ActionQueue.Priority.VeryHigh); break; case 3: var lb3 = Player.Class switch @@ -80,7 +80,7 @@ private void ExecLB(StrategyValues strategy, Actor? primaryTarget) _ => default }; if (lb3 != default) - Hints.ActionsToExecute.Push(lb3, primaryTarget, ActionQueue.Priority.VeryHigh, castTime: 4.5f); + Hints.ActionsToExecute.Push(lb3, primaryTarget, ActionQueue.Priority.VeryHigh); break; } } diff --git a/BossMod/Autorotation/Standard/xan/AI/Ranged.cs b/BossMod/Autorotation/Standard/xan/AI/Ranged.cs index 08833bb73b..688d1f039e 100644 --- a/BossMod/Autorotation/Standard/xan/AI/Ranged.cs +++ b/BossMod/Autorotation/Standard/xan/AI/Ranged.cs @@ -46,11 +46,11 @@ private void ExecLB(StrategyValues strategy, Actor? primaryTarget) { case 1: if (lbTarget(2) is Actor a) - Hints.ActionsToExecute.Push(ActionID.MakeSpell(ClassShared.AID.BigShot), a, ActionQueue.Priority.VeryHigh, castTime: 2); + Hints.ActionsToExecute.Push(ActionID.MakeSpell(ClassShared.AID.BigShot), a, ActionQueue.Priority.VeryHigh); break; case 2: if (lbTarget(2.5f) is Actor b) - Hints.ActionsToExecute.Push(ActionID.MakeSpell(ClassShared.AID.Desperado), b, ActionQueue.Priority.VeryHigh, castTime: 3); + Hints.ActionsToExecute.Push(ActionID.MakeSpell(ClassShared.AID.Desperado), b, ActionQueue.Priority.VeryHigh); break; case 3: var lb3 = Player.Class switch @@ -61,7 +61,7 @@ private void ExecLB(StrategyValues strategy, Actor? primaryTarget) _ => default }; if (lbTarget(4) is Actor c && lb3 != default) - Hints.ActionsToExecute.Push(lb3, c, ActionQueue.Priority.VeryHigh, castTime: 4.5f); + Hints.ActionsToExecute.Push(lb3, c, ActionQueue.Priority.VeryHigh); break; } } diff --git a/BossMod/Autorotation/Standard/xan/Basexan.cs b/BossMod/Autorotation/Standard/xan/Basexan.cs index 51365875c1..fa6cabf586 100644 --- a/BossMod/Autorotation/Standard/xan/Basexan.cs +++ b/BossMod/Autorotation/Standard/xan/Basexan.cs @@ -1,4 +1,5 @@ -using static BossMod.AIHints; +using System.Diagnostics.CodeAnalysis; +using static BossMod.AIHints; namespace BossMod.Autorotation.xan; @@ -71,6 +72,15 @@ public bool CanWeave(AID aid, int extraGCDs = 0, float extraFixedDelay = 0) protected int NextGCDPrio; protected uint MP; + protected AID HighestUnlocked(params AID[] actions) + { + foreach (var act in actions) + if (Unlocked(act)) + return act; + + return default; + } + protected AID ComboLastMove => (AID)(object)World.Client.ComboState.Action; protected void PushGCD

(AID aid, Actor? target, P priority, float delay = 0) where P : Enum @@ -114,11 +124,11 @@ protected bool PushAction(AID aid, Actor? target, float priority, float delay) if ((uint)(object)aid == 0) return false; - if (!CanCast(aid)) // TODO[cast-time]-xan: don't do this, it's now not reliable, instead queue all cast options at different prios + if (!CanCast(aid)) return false; var def = ActionDefinitions.Instance.Spell(aid); - if (def == null) + if (def == null || !def.IsUnlocked(World, Player)) return false; if (def.Range != 0 && target == null) @@ -137,7 +147,7 @@ protected bool PushAction(AID aid, Actor? target, float priority, float delay) targetPos = target.PosRot.XYZ(); } - Hints.ActionsToExecute.Push(ActionID.MakeSpell(aid), target, priority, delay: delay, targetPos: targetPos); // TODO[cast-time]-xan: verify all callers + Hints.ActionsToExecute.Push(ActionID.MakeSpell(aid), target, priority, delay: delay, targetPos: targetPos); return true; } @@ -367,9 +377,14 @@ protected void UpdatePositionals(Enemy? enemy, ref (Positional pos, bool imm) po private void EstimateCastTime() { - MaxCastTime = Hints.MaxCastTime; // TODO[cast-time]-xan: this is now wrong, needs to be reviewed and fixed (queue all actions with casttime=time they need) + MaxCastTime = Hints.MaxCastTimeEstimate; + + if (Player.PendingKnockbacks.Count > 0) + { + MaxCastTime = 0f; + return; + } - // TODO[cast-time]-xan: this is not really correct in most cases: even if target is a gaze source, it's possible to start casting then rotate to be >45 && <75 degrees and finish cast successfully; the gaze avoidance tweak handles that var forbiddenDir = Hints.ForbiddenDirections.Where(d => Player.Rotation.AlmostEqual(d.center, d.halfWidth.Rad)).Select(d => d.activation).DefaultIfEmpty(DateTime.MinValue).Min(); if (forbiddenDir > World.CurrentTime) { @@ -379,12 +394,33 @@ private void EstimateCastTime() } } + private float? _prevCountdown; + private DateTime _cdLockout; + + [SuppressMessage("Security", "CA5394:Do not use insecure randomness", Justification = "determinism is intentional here")] + private void PretendCountdown() + { + if (CountdownRemaining == null) + { + _cdLockout = DateTime.MinValue; + _prevCountdown = null; + } + else if (_prevCountdown == null) + { + var wait = (float)new Random((int)World.Frame.Index).NextDouble() + 0.5f; + _cdLockout = World.FutureTime(wait); + _prevCountdown = CountdownRemaining; + } + } + public sealed override void Execute(StrategyValues strategy, ref Actor? primaryTarget, float estimatedAnimLockDelay, bool isMoving) { NextGCD = default; NextGCDPrio = 0; PlayerTarget = Hints.FindEnemy(primaryTarget); + PretendCountdown(); + var pelo = Player.FindStatus(ClassShared.SID.Peloton); PelotonLeft = pelo != null ? StatusDuration(pelo.Value.ExpireAt) : 0; SwiftcastLeft = MathF.Max(StatusLeft(ClassShared.SID.Swiftcast), StatusLeft(ClassShared.SID.LostChainspell)); @@ -410,6 +446,9 @@ public sealed override void Execute(StrategyValues strategy, ref Actor? primaryT // TODO max MP can be higher in eureka/bozja MP = (uint)Math.Clamp(Player.PredictedMPRaw, 0, 10000); + if (_cdLockout > World.CurrentTime) + return; + if (Player.MountId is not (103 or 117 or 128)) Exec(strategy, PlayerTarget); } diff --git a/BossMod/Autorotation/Standard/xan/Melee/DRG.cs b/BossMod/Autorotation/Standard/xan/Melee/DRG.cs index 7afa7f8bfb..2b6c719000 100644 --- a/BossMod/Autorotation/Standard/xan/Melee/DRG.cs +++ b/BossMod/Autorotation/Standard/xan/Melee/DRG.cs @@ -138,17 +138,17 @@ public override void Exec(StrategyValues strategy, Enemy? primaryTarget) break; case AID.Disembowel: case AID.SpiralBlow: - PushGCD(AID.ChaosThrust, primaryTarget); + PushGCD(HighestUnlocked(AID.ChaoticSpring, AID.ChaosThrust), primaryTarget); break; case AID.VorpalThrust: case AID.LanceBarrage: - PushGCD(AID.FullThrust, primaryTarget); + PushGCD(HighestUnlocked(AID.HeavensThrust, AID.FullThrust), primaryTarget); break; case AID.TrueThrust: case AID.RaidenThrust: if (PowerSurge < 10) - PushGCD(AID.Disembowel, primaryTarget); - PushGCD(AID.VorpalThrust, primaryTarget); + PushGCD(HighestUnlocked(AID.SpiralBlow, AID.Disembowel), primaryTarget); + PushGCD(HighestUnlocked(AID.LanceBarrage, AID.VorpalThrust), primaryTarget); break; } } @@ -167,11 +167,14 @@ private void OGCD(StrategyValues strategy, Enemy? primaryTarget) var moveOk = MoveOk(strategy); var posOk = PosLockOk(strategy); + var bestSingleTarget = primaryTarget.Priority >= 0 ? primaryTarget : null; + + bool posCheck(float animationLock) => Hints.PositionStoredIn > AnimLock + animationLock; if (NextPositionalImminent && !NextPositionalCorrect) Hints.ActionsToExecute.Push(ActionID.MakeSpell(AID.TrueNorth), Player, ActionQueue.Priority.Low - 20, delay: GCD - 0.8f); - if (strategy.BuffsOk()) + if (strategy.BuffsOk() && PowerSurge > GCD) { PushOGCD(AID.LanceCharge, Player); PushOGCD(AID.BattleLitany, Player); @@ -183,35 +186,43 @@ private void OGCD(StrategyValues strategy, Enemy? primaryTarget) if (CanWeave(AID.LanceCharge)) return; - if (LanceCharge > GCD && ShouldLifeSurge()) - PushOGCD(AID.LifeSurge, Player); - - if (StarcrossReady > 0) - PushOGCD(AID.Starcross, primaryTarget); - - if (LotD > AnimLock && moveOk) - PushOGCD(AID.Stardiver, BestDiveTarget); + if (ShouldWT(strategy)) + PushOGCD(AID.WyrmwindThrust, BestLongAOETarget); if (NastrondReady == 0) PushOGCD(AID.Geirskogul, BestLongAOETarget); - if (DiveReady == 0 && posOk) - PushOGCD(AID.Jump, primaryTarget); + if (DiveReady == 0 && posOk && posCheck(0.6f)) + PushOGCD(AID.Jump, bestSingleTarget); - if (moveOk && strategy.BuffsOk()) + if (LanceCharge > GCD && ShouldLifeSurge()) + PushOGCD(AID.LifeSurge, Player); + + if (moveOk && strategy.BuffsOk() && posCheck(0.8f)) PushOGCD(AID.DragonfireDive, BestDiveTarget); if (NastrondReady > 0) PushOGCD(AID.Nastrond, BestLongAOETarget); + if (LotD > AnimLock && moveOk && posCheck(1.5f)) + { + // stardiver: 1.5 + delay + // regular GCD: 0.6 + delay + // some conditions like DD haste (and maybe bozja?) can reduce GCD to 2.1s or lower, making stardiver weave impossible + if (GCDLength > 2.1f + 2 * AnimationLockDelay) + PushOGCD(AID.Stardiver, BestDiveTarget); + else if (GCD > 0) + PushGCD(AID.Stardiver, BestDiveTarget, 3); + } + + if (StarcrossReady > 0) + PushOGCD(AID.Starcross, BestDiveTarget); + if (DragonsFlight > 0) PushOGCD(AID.RiseOfTheDragon, BestDiveTarget); if (DiveReady > 0) - PushOGCD(AID.MirageDive, primaryTarget); - - if (Focus == 2) - PushOGCD(AID.WyrmwindThrust, BestLongAOETarget); + PushOGCD(AID.MirageDive, bestSingleTarget); } private bool ShouldLifeSurge() @@ -219,41 +230,24 @@ private bool ShouldLifeSurge() if (LifeSurge > 0) return false; - if (NumAOETargets > 2 && Unlocked(AID.DoomSpike)) - { - // coerthan torment is always our strongest aoe GCD (draconian fury just gives eyeball) - if (Unlocked(AID.CoerthanTorment)) - return ComboLastMove == AID.SonicThrust; - - if (Unlocked(AID.SonicThrust)) - return ComboLastMove == AID.DoomSpike; - - // doom spike is our only AOE skill at this level, always use - return true; - } - else + return NextGCD switch { - // 440 potency, level 64 - if (Unlocked(AID.Drakesbane)) - { - var ok = ComboLastMove is AID.WheelingThrust or AID.FangAndClaw; - - // also 440 potency, level 86 - if (Unlocked(AID.HeavensThrust)) - ok |= ComboLastMove is AID.VorpalThrust or AID.LanceBarrage; - - return ok; - } + // highest potency at max level (full thrust is still highest potency before it gets upgraded) + AID.CoerthanTorment or AID.Drakesbane or AID.HeavensThrust or AID.FullThrust => true, - // 380 potency, level 26 - if (Unlocked(AID.FullThrust)) - return ComboLastMove is AID.VorpalThrust; + // highest potency before Full Thrust is unlocked at 26 + AID.VorpalThrust => !Unlocked(AID.FullThrust), - // below level 26, strongest GCD is vorpal thrust - return ComboLastMove is AID.TrueThrust; - } + // fallbacks for AOE rotation + AID.SonicThrust => !Unlocked(AID.CoerthanTorment), + AID.DoomSpike => !Unlocked(AID.SonicThrust), + _ => false, + }; } + private bool ShouldWT(StrategyValues strategy) + => Focus == 2 && (LotD > AnimLock || NextGCD is AID.RaidenThrust or AID.DraconianFury); + private bool MoveOk(StrategyValues strategy) => strategy.Option(Track.Dive).As() == DiveStrategy.Allow; private bool PosLockOk(StrategyValues strategy) => strategy.Option(Track.Dive).As() != DiveStrategy.NoLock; diff --git a/BossMod/Autorotation/Standard/xan/Melee/MNK.cs b/BossMod/Autorotation/Standard/xan/Melee/MNK.cs index 99e33e370c..48fa9b7b7b 100644 --- a/BossMod/Autorotation/Standard/xan/Melee/MNK.cs +++ b/BossMod/Autorotation/Standard/xan/Melee/MNK.cs @@ -228,7 +228,7 @@ public enum Form { None, OpoOpo, Raptor, Coeurl } return (Positional.Any, false); var pos = Unlocked(AID.Demolish) && CoeurlStacks == 0 ? Positional.Rear : Positional.Flank; - var imm = EffectiveForm == Form.Coeurl && NextGCD is not AID.WindsReply and not AID.FiresReply; + var imm = NextGCD is AID.Demolish or AID.SnapPunch or AID.PouncingCoeurl; return (pos, imm); } @@ -328,9 +328,6 @@ public override void Exec(StrategyValues strategy, Enemy? primaryTarget) EffectiveForm = GetEffectiveForm(strategy); - var pos = NextPositional; - UpdatePositionals(primaryTarget, ref pos, TrueNorthLeft > GCD); - Meditate(strategy, primaryTarget); FormShift(strategy, primaryTarget); @@ -345,8 +342,6 @@ public override void Exec(StrategyValues strategy, Enemy? primaryTarget) return; } - GoalZoneCombined(strategy, 3, Hints.GoalAOECircle(5), AID.ArmOfTheDestroyer, AOEBreakpoint, positional: pos.Item1, maximumActionRange: 20); - UseBlitz(strategy, currentBlitz); FiresReply(strategy); WindsReply(); @@ -391,6 +386,11 @@ public override void Exec(StrategyValues strategy, Enemy? primaryTarget) Prep(strategy); + var pos = NextPositional; + UpdatePositionals(primaryTarget, ref pos, TrueNorthLeft > GCD); + + GoalZoneCombined(strategy, 3, Hints.GoalAOECircle(5), AID.ArmOfTheDestroyer, AOEBreakpoint, positional: pos.Item1, maximumActionRange: 20); + if (Player.InCombat) OGCD(strategy, primaryTarget); } diff --git a/BossMod/Autorotation/Standard/xan/Ranged/MCH.cs b/BossMod/Autorotation/Standard/xan/Ranged/MCH.cs index 09de5caa3f..9e5c6daa19 100644 --- a/BossMod/Autorotation/Standard/xan/Ranged/MCH.cs +++ b/BossMod/Autorotation/Standard/xan/Ranged/MCH.cs @@ -95,13 +95,14 @@ public override void Exec(StrategyValues strategy, Enemy? primaryTarget) (BestChainsawTarget, NumSawTargets) = SelectTarget(strategy, primaryTarget, 25, Is25yRectTarget); NumFlamethrowerTargets = Hints.NumPriorityTargetsInAOECone(Player.Position, 8, Player.Rotation.ToDirection(), 45.Degrees()); - OGCD(strategy, primaryTarget); - if (IsPausedForFlamethrower) return; if (CountdownRemaining > 0) { + if (CountdownRemaining < 5 && ReassembleLeft == 0) + PushGCD(AID.Reassemble, Player); + if (CountdownRemaining < 1.15f) { PushGCD(AID.AirAnchor, primaryTarget); @@ -122,69 +123,66 @@ public override void Exec(StrategyValues strategy, Enemy? primaryTarget) if (FMFLeft > GCD) PushGCD(AID.FullMetalField, BestRangedAOETarget); - if (NumAOETargets > 3) + if (NumAOETargets > 2) PushGCD(AID.AutoCrossbow, BestAOETarget); - PushGCD(AID.HeatBlast, primaryTarget); - - // we don't use any other gcds during overheat - return; + PushGCD(HighestUnlocked(AID.BlazingShot, AID.HeatBlast), primaryTarget); } + else + { + if (ExcavatorLeft > GCD) + PushGCD(AID.Excavator, BestRangedAOETarget); - if (ExcavatorLeft > GCD) - PushGCD(AID.Excavator, BestRangedAOETarget); - - var toolOk = strategy.Simple(Track.Tools) != OffensiveStrategy.Delay; + var toolOk = strategy.Simple(Track.Tools) != OffensiveStrategy.Delay; - if (toolOk) - { - if (ReadyIn(AID.AirAnchor) <= GCD) - PushGCD(AID.AirAnchor, primaryTarget, priority: 20); + if (toolOk) + { + if (ReadyIn(AID.AirAnchor) <= GCD) + PushGCD(AID.AirAnchor, primaryTarget, priority: 20); - if (ReadyIn(AID.ChainSaw) <= GCD) - PushGCD(AID.ChainSaw, BestChainsawTarget, 10); + if (ReadyIn(AID.ChainSaw) <= GCD) + PushGCD(AID.ChainSaw, BestChainsawTarget, 10); - if (ReadyIn(AID.Bioblaster) <= GCD && NumAOETargets > 2) - PushGCD(AID.Bioblaster, BestAOETarget, priority: MaxChargesIn(AID.Bioblaster) <= GCD ? 20 : 2); + if (ReadyIn(AID.Bioblaster) <= GCD && NumAOETargets > 1) + PushGCD(AID.Bioblaster, BestAOETarget, priority: MaxChargesIn(AID.Bioblaster) <= GCD ? 20 : 2); - if (ReadyIn(AID.Drill) <= GCD) - PushGCD(AID.Drill, primaryTarget, priority: MaxChargesIn(AID.Drill) <= GCD ? 20 : 2); - } + if (ReadyIn(AID.Drill) <= GCD) + PushGCD(AID.Drill, primaryTarget, priority: MaxChargesIn(AID.Drill) <= GCD ? 20 : 2); - // TODO work out priorities - if (FMFLeft > GCD && ExcavatorLeft == 0) - PushGCD(AID.FullMetalField, BestRangedAOETarget); + // different cdgroup fsr + if (!Unlocked(AID.AirAnchor) && ReadyIn(AID.HotShot) <= GCD) + PushGCD(AID.HotShot, primaryTarget); + } - if (ReassembleLeft > GCD && NumAOETargets > 3) - PushGCD(AID.Scattergun, BestAOETarget); + // TODO work out priorities + if (FMFLeft > GCD && ExcavatorLeft == 0) + PushGCD(AID.FullMetalField, BestRangedAOETarget); - // different cdgroup? - if (!Unlocked(AID.AirAnchor) && ReadyIn(AID.HotShot) <= GCD && toolOk) - PushGCD(AID.HotShot, primaryTarget); + var breakpoint = Unlocked(AID.Scattergun) ? 2 : 1; - if (NumAOETargets > 2 && Unlocked(AID.SpreadShot)) - PushGCD(AID.SpreadShot, BestAOETarget); - else - { - if (ComboLastMove == AID.SlugShot) - PushGCD(AID.CleanShot, primaryTarget); + if (NumAOETargets > breakpoint && Unlocked(AID.SpreadShot)) + PushGCD(HighestUnlocked(AID.Scattergun, AID.SpreadShot), BestAOETarget); + else + { + if (ComboLastMove == AID.SlugShot) + PushGCD(HighestUnlocked(AID.HeatedCleanShot, AID.CleanShot), primaryTarget); - if (ComboLastMove == AID.SplitShot) - PushGCD(AID.SlugShot, primaryTarget); + if (ComboLastMove == AID.SplitShot) + PushGCD(HighestUnlocked(AID.HeatedSlugShot, AID.SlugShot), primaryTarget); - PushGCD(AID.SplitShot, primaryTarget); + PushGCD(HighestUnlocked(AID.HeatedSplitShot, AID.SplitShot), primaryTarget); + } } + + OGCD(strategy, primaryTarget); } private void OGCD(StrategyValues strategy, Enemy? primaryTarget) { - if (CountdownRemaining is > 0 and < 5 && ReassembleLeft == 0) - PushOGCD(AID.Reassemble, Player); - - if (CountdownRemaining == null && !Player.InCombat && Player.DistanceToHitbox(primaryTarget) <= 25 && NextToolCharge == 0 && ReassembleLeft == 0 && !Overheated) - PushGCD(AID.Reassemble, Player, 30); + if (CountdownRemaining == null && !Player.InCombat && Player.DistanceToHitbox(primaryTarget) <= 25 && ReassembleLeft == 0 && !Overheated && AlwaysReassemble(NextGCD)) + PushGCD(AID.Reassemble, Player, priority: 50); - if (IsPausedForFlamethrower || !Player.InCombat || primaryTarget == null) + if (!Player.InCombat || primaryTarget == null) return; if (ShouldWildfire(strategy)) @@ -238,31 +236,42 @@ private bool ShouldReassemble(StrategyValues strategy, Enemy? primaryTarget) if (ReassembleLeft > 0 || !Unlocked(AID.Reassemble) || Overheated || primaryTarget == null) return false; - if (NumAOETargets > 3 && Unlocked(AID.SpreadShot)) + if (AlwaysReassemble(NextGCD)) return true; - if (RaidBuffsIn < 10 && RaidBuffsIn > GCD) - return false; - - if (!Unlocked(AID.Drill)) - return ComboLastMove == (Unlocked(AID.CleanShot) ? AID.SlugShot : AID.SplitShot); + return NextGCD switch + { + // AOE actions (TODO review usage, the wording in the balance guide is contradictory) + AID.SpreadShot or AID.Scattergun or AID.AutoCrossbow => true, + // highest potency before 58 + AID.CleanShot => !Unlocked(AID.Drill), + // highest potency before 26 + AID.HotShot => !Unlocked(AID.CleanShot), + + _ => false + }; + } - // past 58 we only reassemble on tool charges so don't bother - if (strategy.Simple(Track.Tools) == OffensiveStrategy.Delay) - return false; + private bool AlwaysReassemble(AID action) => action is AID.Drill or AID.AirAnchor or AID.ChainSaw or AID.Excavator; - return NextToolCharge <= GCD; - } + private int BatteryFromAction(AID action) => action switch + { + AID.ChainSaw or AID.AirAnchor or AID.Excavator or AID.HotShot => 20, + AID.CleanShot or AID.HeatedCleanShot => 10, + _ => 0 + }; private bool ShouldMinion(StrategyValues strategy, Enemy? primaryTarget) { if (!Unlocked(AID.RookAutoturret) || primaryTarget == null || HasMinion || Battery < 50 || ShouldWildfire(strategy)) return false; + var almostFull = Battery == 90 && BatteryFromAction(NextGCD) == 20; + return strategy.Option(Track.Queen).As() switch { QueenStrategy.MinGauge => true, - QueenStrategy.FullGauge => Battery == 100, + QueenStrategy.FullGauge => Battery == 100 || almostFull, // allow early summon, queen doesn't start autoing for 5 seconds QueenStrategy.RaidBuffsOnly => RaidBuffsLeft > 10 || RaidBuffsIn < 5, _ => false, diff --git a/BossMod/Autorotation/Standard/xan/Tanks/PLD.cs b/BossMod/Autorotation/Standard/xan/Tanks/PLD.cs index 35ec9d45fa..5ceaa1fccb 100644 --- a/BossMod/Autorotation/Standard/xan/Tanks/PLD.cs +++ b/BossMod/Autorotation/Standard/xan/Tanks/PLD.cs @@ -229,7 +229,7 @@ private void UseHS(StrategyValues strategy, Enemy? primaryTarget) var prio = strategy.Option(Track.HolySpirit).As() switch { - HSStrategy.Standard => useStandard ? GCDPriority.DMHS : GCDPriority.None, + HSStrategy.Standard => useStandard ? GCDPriority.DMHS : divineMight ? GCDPriority.HS : GCDPriority.None, HSStrategy.ForceDM => divineMight ? GCDPriority.Force : GCDPriority.None, HSStrategy.Force => GCDPriority.Force, HSStrategy.Ranged => useStandard ? GCDPriority.DMHS : GCDPriority.HS, From 517c9140c24cf0e463d9a5a8f72e620af33a675e Mon Sep 17 00:00:00 2001 From: xanunderscore <149614526+xanunderscore@users.noreply.github.com> Date: Wed, 29 Jan 2025 13:29:11 -0500 Subject: [PATCH 05/32] forgot to display da window --- BossMod/BossModule/BossModuleHintsWindow.cs | 2 +- BossMod/Framework/ActionManagerEx.cs | 22 ++++++++++++++++++++- BossMod/Framework/Plugin.cs | 3 +++ 3 files changed, 25 insertions(+), 2 deletions(-) diff --git a/BossMod/BossModule/BossModuleHintsWindow.cs b/BossMod/BossModule/BossModuleHintsWindow.cs index 25b66b7208..52d8f31b56 100644 --- a/BossMod/BossModule/BossModuleHintsWindow.cs +++ b/BossMod/BossModule/BossModuleHintsWindow.cs @@ -42,5 +42,5 @@ public override void Draw() } } - private bool ShowZoneModule() => _mgr.ActiveModule?.StateMachine.ActivePhase == null && (_zmm.ActiveModule?.WantToBeDrawn() ?? false); + private bool ShowZoneModule() => _mgr.ActiveModule?.StateMachine.ActivePhase == null && _zmm.ActiveModule is ZoneModule z && z.WantToBeDrawn() && !z.DrawSeparately; } diff --git a/BossMod/Framework/ActionManagerEx.cs b/BossMod/Framework/ActionManagerEx.cs index 2082cdf422..8d15f1f4da 100644 --- a/BossMod/Framework/ActionManagerEx.cs +++ b/BossMod/Framework/ActionManagerEx.cs @@ -1,6 +1,7 @@ using FFXIVClientStructs.FFXIV.Client.Game; using FFXIVClientStructs.FFXIV.Client.Game.Character; using FFXIVClientStructs.FFXIV.Client.Game.Control; +using FFXIVClientStructs.FFXIV.Client.Game.Event; using FFXIVClientStructs.FFXIV.Client.Game.InstanceContent; using FFXIVClientStructs.FFXIV.Client.Game.Object; using FFXIVClientStructs.FFXIV.Client.Game.UI; @@ -292,12 +293,31 @@ private bool ExecuteAction(ActionID action, ulong targetId, Vector3 targetPos) // TODO: consider calling UsePetAction instead?.. return _useActionHook.Original(_inst, CSActionType.PetAction, action.ID, targetId, 0, ActionManager.UseActionMode.None, 0, null); } + + // fake action types case ActionType.BozjaHolsterSlot0: case ActionType.BozjaHolsterSlot1: - // fake action type - using action from bozja holster var state = PublicContentBozja.GetState(); // note: if it's non-null, the director instance can't be null too var holsterIndex = state != null ? state->HolsterActions.IndexOf((byte)action.ID) : -1; return holsterIndex >= 0 && PublicContentBozja.GetInstance()->UseFromHolster((uint)holsterIndex, action.Type == ActionType.BozjaHolsterSlot1 ? 1u : 0); + case ActionType.Pomander: + var dd = EventFramework.Instance()->GetInstanceContentDeepDungeon(); + var slot = _ws.DeepDungeon.GetPomanderSlot((PomanderID)action.ID); + if (dd != null && slot >= 0) + { + dd->UsePomander((uint)slot); + return true; + } + return false; + case ActionType.Magicite: + dd = EventFramework.Instance()->GetInstanceContentDeepDungeon(); + if (dd != null) + { + dd->UseStone(action.ID); + return true; + } + return false; + default: // fall back to UAL hook for everything not covered explicitly return _inst->UseActionLocation((CSActionType)action.Type, action.ID, targetId, &targetPos, 0); diff --git a/BossMod/Framework/Plugin.cs b/BossMod/Framework/Plugin.cs index a722cf09ce..e8c1e13bb7 100644 --- a/BossMod/Framework/Plugin.cs +++ b/BossMod/Framework/Plugin.cs @@ -36,6 +36,7 @@ public sealed class Plugin : IDalamudPlugin private readonly ConfigUI _configUI; // TODO: should be a proper window! private readonly BossModuleMainWindow _wndBossmod; private readonly BossModuleHintsWindow _wndBossmodHints; + private readonly ZoneModuleWindow _wndZone; private readonly ReplayManagementWindow _wndReplay; private readonly UIRotationWindow _wndRotation; private readonly AI.AIWindow _wndAI; @@ -91,6 +92,7 @@ public unsafe Plugin(IDalamudPluginInterface dalamud, ICommandManager commandMan _configUI = new(Service.Config, _ws, replayDir, _rotationDB); _wndBossmod = new(_bossmod, _zonemod); _wndBossmodHints = new(_bossmod, _zonemod); + _wndZone = new(_zonemod); _wndReplay = new(_ws, _bossmod, _rotationDB, replayDir); _wndRotation = new(_rotation, _amex, () => OpenConfigUI("Autorotation Presets")); _wndAI = new(_ai); @@ -112,6 +114,7 @@ public void Dispose() _wndAI.Dispose(); _wndRotation.Dispose(); _wndReplay.Dispose(); + _wndZone.Dispose(); _wndBossmodHints.Dispose(); _wndBossmod.Dispose(); _configUI.Dispose(); From de433e17bce627f12819d1fe221fae77e806e51a Mon Sep 17 00:00:00 2001 From: xanunderscore <149614526+xanunderscore@users.noreply.github.com> Date: Wed, 29 Jan 2025 13:29:48 -0500 Subject: [PATCH 06/32] oh whoops --- FFXIVClientStructs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FFXIVClientStructs b/FFXIVClientStructs index fa26dd2b2d..0f55619dd2 160000 --- a/FFXIVClientStructs +++ b/FFXIVClientStructs @@ -1 +1 @@ -Subproject commit fa26dd2b2df6d2bbb10737504432941c2e63fd8c +Subproject commit 0f55619dd202382416b8a3190fad75872d5b0953 From cef92dd46d683cebdf927e340372be1e87d056b0 Mon Sep 17 00:00:00 2001 From: xanunderscore <149614526+xanunderscore@users.noreply.github.com> Date: Wed, 29 Jan 2025 13:50:29 -0500 Subject: [PATCH 07/32] minor fixes --- BossMod/Framework/ActionManagerEx.cs | 17 +++++++++++++++++ BossMod/Modules/Global/DeepDungeon/AutoClear.cs | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/BossMod/Framework/ActionManagerEx.cs b/BossMod/Framework/ActionManagerEx.cs index 8d15f1f4da..bf92cb7a9b 100644 --- a/BossMod/Framework/ActionManagerEx.cs +++ b/BossMod/Framework/ActionManagerEx.cs @@ -64,6 +64,8 @@ public sealed unsafe class ActionManagerEx : IDisposable private readonly HookAddress _useActionHook; private readonly HookAddress _useActionLocationHook; private readonly HookAddress _useBozjaFromHolsterDirectorHook; + private readonly HookAddress _usePomanderHook; + private readonly HookAddress _useStoneHook; private readonly HookAddress _processPacketActionEffectHook; private readonly HookAddress _setAutoAttackStateHook; @@ -88,6 +90,8 @@ public ActionManagerEx(WorldState ws, AIHints hints, MovementOverride movement) _useActionHook = new(ActionManager.Addresses.UseAction, UseActionDetour); _useActionLocationHook = new(ActionManager.Addresses.UseActionLocation, UseActionLocationDetour); _useBozjaFromHolsterDirectorHook = new(PublicContentBozja.Addresses.UseFromHolster, UseBozjaFromHolsterDirectorDetour); + _usePomanderHook = new(InstanceContentDeepDungeon.Addresses.UsePomander, UsePomanderDetour); + _useStoneHook = new(InstanceContentDeepDungeon.Addresses.UseStone, UseStoneDetour); _processPacketActionEffectHook = new(ActionEffectHandler.Addresses.Receive, ProcessPacketActionEffectDetour); _setAutoAttackStateHook = new(AutoAttackState.Addresses.SetImpl, SetAutoAttackStateDetour); @@ -100,6 +104,8 @@ public void Dispose() { _setAutoAttackStateHook.Dispose(); _processPacketActionEffectHook.Dispose(); + _useStoneHook.Dispose(); + _usePomanderHook.Dispose(); _useBozjaFromHolsterDirectorHook.Dispose(); _useActionLocationHook.Dispose(); _useActionHook.Dispose(); @@ -501,6 +507,17 @@ private bool UseBozjaFromHolsterDirectorDetour(PublicContentBozja* self, uint ho return res; } + // TODO add to manual q + private void UsePomanderDetour(InstanceContentDeepDungeon* self, uint slot) + { + _usePomanderHook.Original(self, slot); + } + + private void UseStoneDetour(InstanceContentDeepDungeon* self, uint slot) + { + _useStoneHook.Original(self, slot); + } + private void ProcessPacketActionEffectDetour(uint casterID, Character* casterObj, Vector3* targetPos, ActionEffectHandler.Header* header, ActionEffectHandler.TargetEffects* effects, GameObjectId* targets) { // notify listeners about the event diff --git a/BossMod/Modules/Global/DeepDungeon/AutoClear.cs b/BossMod/Modules/Global/DeepDungeon/AutoClear.cs index 9cedb74211..5c41ba941c 100644 --- a/BossMod/Modules/Global/DeepDungeon/AutoClear.cs +++ b/BossMod/Modules/Global/DeepDungeon/AutoClear.cs @@ -336,7 +336,7 @@ public override void DrawExtra() if (ImGui.Button("Set closest trap location as ignored")) { - var pos = _trapsCurrentZone.MinBy(t => (t - player.Position).LengthSq()).Rounded(0.1f); + var pos = _trapsCurrentZone.Except(ProblematicTrapLocations).MinBy(t => (t - player.Position).LengthSq()).Rounded(0.1f); ProblematicTrapLocations.Add(pos); IgnoreTraps.Add(pos); } From 025965505d6749314fe939de74abb7f37b238b72 Mon Sep 17 00:00:00 2001 From: xanunderscore <149614526+xanunderscore@users.noreply.github.com> Date: Wed, 29 Jan 2025 13:51:09 -0500 Subject: [PATCH 08/32] oopC --- BossMod/ActionQueue/ActionDefinition.cs | 19 ++++++++++++++++++- BossMod/ActionQueue/Roleplay.cs | 13 +++++++++++++ .../Standard/xan/AI/DeepDungeon.cs | 3 +-- 3 files changed, 32 insertions(+), 3 deletions(-) diff --git a/BossMod/ActionQueue/ActionDefinition.cs b/BossMod/ActionQueue/ActionDefinition.cs index a730dfae45..366507fc3c 100644 --- a/BossMod/ActionQueue/ActionDefinition.cs +++ b/BossMod/ActionQueue/ActionDefinition.cs @@ -173,6 +173,14 @@ public sealed class ActionDefinitions : IDisposable public static readonly ActionID IDPotionInt = new(ActionType.Item, 1044165); // hq grade 2 gemdraught of intelligence public static readonly ActionID IDPotionMnd = new(ActionType.Item, 1044166); // hq grade 2 gemdraught of mind + // deep dungeon consumables + public static readonly ActionID IDSustainingPotion = new(ActionType.Item, 20309); + public static readonly ActionID IDMaxPotion = new(ActionType.Item, 1013637); + public static readonly ActionID IDEmpyreanPotion = new(ActionType.Item, 23163); + public static readonly ActionID IDSuperPotion = new(ActionType.Item, 1023167); + public static readonly ActionID IDOrthosPotion = new(ActionType.Item, 38944); + public static readonly ActionID IDHyperPotion = new(ActionType.Item, 1038956); + // special general actions that we support public static readonly ActionID IDGeneralLimitBreak = new(ActionType.General, 3); public static readonly ActionID IDGeneralSprint = new(ActionType.General, 4); @@ -219,6 +227,13 @@ private ActionDefinitions() RegisterPotion(IDPotionInt); RegisterPotion(IDPotionMnd); + RegisterPotion(IDSustainingPotion, 1.1f); + RegisterPotion(IDMaxPotion, 1.1f); + RegisterPotion(IDEmpyreanPotion, 1.1f); + RegisterPotion(IDSuperPotion, 1.1f); + RegisterPotion(IDOrthosPotion, 1.1f); + RegisterPotion(IDHyperPotion, 1.1f); + // special content actions - bozja, deep dungeons, etc for (var i = BozjaHolsterID.None + 1; i < BozjaHolsterID.Count; ++i) RegisterBozja(i); @@ -380,7 +395,7 @@ public void RegisterSpell(AID aid, bool isPhysRanged = false, float instant private void Register(ActionID aid, ActionDefinition definition) => _definitions.Add(aid, definition); - private void RegisterPotion(ActionID aid) + private void RegisterPotion(ActionID aid, float animLock = 0.6f) { var baseId = aid.ID % 500000; var item = ItemData(baseId); @@ -399,6 +414,7 @@ private void RegisterPotion(ActionID aid) CastTime = castTime, MainCooldownGroup = cdgroup, Cooldown = cooldown, + InstantAnimLock = animLock, }; var aidHQ = new ActionID(ActionType.Item, baseId + 1000000); _definitions[aidHQ] = new(aidHQ) @@ -408,6 +424,7 @@ private void RegisterPotion(ActionID aid) CastTime = castTime, MainCooldownGroup = cdgroup, Cooldown = cooldown * 0.9f, + InstantAnimLock = animLock }; } diff --git a/BossMod/ActionQueue/Roleplay.cs b/BossMod/ActionQueue/Roleplay.cs index ead5416138..2daf544c72 100644 --- a/BossMod/ActionQueue/Roleplay.cs +++ b/BossMod/ActionQueue/Roleplay.cs @@ -2,6 +2,13 @@ public enum AID : uint { + // palace of the dead/EO transformations + Pummel = 6273, + VoidFireII = 6274, + HeavenlyJudge = 6871, + Rotosmash = 32781, + WreckingBall = 32782, + // magitek reaper in Fly Free, My Pretty MagitekCannon = 7619, // range 30 radius 6 ground targeted aoe PhotonStream = 7620, // range 10 width 4 rect aoe @@ -262,6 +269,12 @@ public sealed class Definitions : IDisposable { public Definitions(ActionDefinitions d) { + d.RegisterSpell(AID.Pummel); + d.RegisterSpell(AID.VoidFireII); + d.RegisterSpell(AID.HeavenlyJudge); + d.RegisterSpell(AID.Rotosmash); + d.RegisterSpell(AID.WreckingBall); + d.RegisterSpell(AID.MagitekCannon); d.RegisterSpell(AID.PhotonStream); d.RegisterSpell(AID.DiffractiveMagitekCannon); diff --git a/BossMod/Autorotation/Standard/xan/AI/DeepDungeon.cs b/BossMod/Autorotation/Standard/xan/AI/DeepDungeon.cs index 379c9cb974..eb3c7a231a 100644 --- a/BossMod/Autorotation/Standard/xan/AI/DeepDungeon.cs +++ b/BossMod/Autorotation/Standard/xan/AI/DeepDungeon.cs @@ -184,8 +184,7 @@ private void DoTransformActions(StrategyValues strategy, Actor? primaryTarget, T return; Hints.GoalZones.Add(goal); - if (castTime == 0 || Hints.MaxCastTimeEstimate >= (castTime - 0.5f)) - Hints.ActionsToExecute.Push(attack, primaryTarget, ActionQueue.Priority.High, targetPos: primaryTarget.PosRot.XYZ()); + Hints.ActionsToExecute.Push(attack, primaryTarget, ActionQueue.Priority.High, targetPos: primaryTarget.PosRot.XYZ(), castTime: castTime - 0.5f); } private bool ShouldPotion(StrategyValues strategy) From 03b4d45bdad5fe8ca08078fa35157c17c7227abb Mon Sep 17 00:00:00 2001 From: xanunderscore <149614526+xanunderscore@users.noreply.github.com> Date: Wed, 29 Jan 2025 14:07:59 -0500 Subject: [PATCH 09/32] add los check to amex --- BossMod/Framework/ActionManagerEx.cs | 37 +++++++++++++++++++++++++++- 1 file changed, 36 insertions(+), 1 deletion(-) diff --git a/BossMod/Framework/ActionManagerEx.cs b/BossMod/Framework/ActionManagerEx.cs index bf92cb7a9b..78ca280867 100644 --- a/BossMod/Framework/ActionManagerEx.cs +++ b/BossMod/Framework/ActionManagerEx.cs @@ -7,6 +7,7 @@ using FFXIVClientStructs.FFXIV.Client.Game.UI; using FFXIVClientStructs.FFXIV.Client.System.Framework; using FFXIVClientStructs.FFXIV.Client.UI.Misc; +using FFXIVClientStructs.FFXIV.Common.Component.BGCollision; using System.Runtime.InteropServices; using CSActionType = FFXIVClientStructs.FFXIV.Client.Game.ActionType; @@ -374,7 +375,12 @@ private void UpdateDetour(ActionManager* self) // check whether movement is safe; block movement if not and if desired MoveMightInterruptCast &= CastTimeRemaining > 0; // previous cast could have ended without action effect - MoveMightInterruptCast |= imminentActionAdj && CastTimeRemaining <= 0 && _inst->AnimationLock < 0.1f && GetAdjustedCastTime(imminentActionAdj) > 0 && GCD() < 0.1f; // if we're not casting, but will start soon, moving might interrupt future cast + // if we're not casting, but will start soon, moving might interrupt future cast + if (imminentActionAdj && CastTimeRemaining <= 0 && _inst->AnimationLock < 0.1f && GetAdjustedCastTime(imminentActionAdj) > 0 && GCD() < 0.1f) + { + // check LoS on target; blocking movement can cause AI mode to get stuck behind a wall trying to cast a spell on an unreachable target forever + MoveMightInterruptCast |= CheckActionLoS(imminentAction, _inst->ActionQueued ? _inst->QueuedTargetId : (AutoQueue.Target?.InstanceID ?? 0)); + } bool blockMovement = Config.PreventMovingWhileCasting && MoveMightInterruptCast && _ws.Party.Player()?.MountId == 0; blockMovement |= Config.PyreticThreshold > 0 && _hints.ImminentSpecialMode.mode == AIHints.SpecialMode.Pyretic && _hints.ImminentSpecialMode.activation < _ws.FutureTime(Config.PyreticThreshold); @@ -596,4 +602,33 @@ private bool SetAutoAttackStateDetour(AutoAttackState* self, bool value, bool se } return _setAutoAttackStateHook.Original(self, value, sendPacket, isInstant); } + + // just the LoS portion of ActionManager::GetActionInRangeOrLoS (which also checks range, which we don't care about, and also checks facing angle, which we don't care about) + private static bool CheckActionLoS(ActionID action, ulong targetID) + { + var row = Service.LuminaRow(action.ID); + if (row == null) + // unknown action, assume nothing + return true; + + if (!row.Value.RequiresLineOfSight) + return true; + + var player = GameObjectManager.Instance()->Objects.IndexSorted[0].Value; + var targetObj = GameObjectManager.Instance()->Objects.GetObjectByGameObjectId(targetID); + if (targetObj == null || targetObj->EntityId == player->EntityId) + return true; + + var playerPos = *player->GetPosition(); + var targetPos = *targetObj->GetPosition(); + + playerPos.Y += 2; + targetPos.Y += 2; + + var offset = targetPos - playerPos; + var maxDist = offset.Magnitude; + var direction = offset / maxDist; + + return !BGCollisionModule.RaycastMaterialFilter(playerPos, direction, out _, maxDist); + } } From 8418449e2e99998039bfd4d23325d0984637b620 Mon Sep 17 00:00:00 2001 From: xanunderscore <149614526+xanunderscore@users.noreply.github.com> Date: Wed, 29 Jan 2025 14:13:17 -0500 Subject: [PATCH 10/32] basexan fixes --- .../Autorotation/Standard/xan/AI/Healer.cs | 2 +- BossMod/Autorotation/Standard/xan/AI/Melee.cs | 4 +- .../Autorotation/Standard/xan/AI/Ranged.cs | 6 +-- .../Autorotation/Standard/xan/BLU/Basic.cs | 14 +++---- BossMod/Autorotation/Standard/xan/Basexan.cs | 42 ++++--------------- .../Autorotation/Standard/xan/Casters/BLM.cs | 1 - .../Autorotation/Standard/xan/Casters/RDM.cs | 4 +- .../Autorotation/Standard/xan/Casters/SMN.cs | 4 +- .../Autorotation/Standard/xan/Melee/DRG.cs | 2 +- 9 files changed, 24 insertions(+), 55 deletions(-) diff --git a/BossMod/Autorotation/Standard/xan/AI/Healer.cs b/BossMod/Autorotation/Standard/xan/AI/Healer.cs index 8a3b68cfa7..8a93c7aeff 100644 --- a/BossMod/Autorotation/Standard/xan/AI/Healer.cs +++ b/BossMod/Autorotation/Standard/xan/AI/Healer.cs @@ -130,7 +130,7 @@ public override void Execute(StrategyValues strategy, ref Actor? primaryTarget, private void UseGCD(AID action, Actor? target, int extraPriority = 0) where AID : Enum => UseGCD(ActionID.MakeSpell(action), target, extraPriority); private void UseGCD(ActionID action, Actor? target, int extraPriority = 0) - => Hints.ActionsToExecute.Push(action, target, ActionQueue.Priority.High + 500 + extraPriority); + => Hints.ActionsToExecute.Push(action, target, ActionQueue.Priority.High + 500 + extraPriority); // TODO[cast-time]-xan: verify all callers private void UseOGCD(AID action, Actor? target, int extraPriority = 0) where AID : Enum => UseOGCD(ActionID.MakeSpell(action), target, extraPriority); diff --git a/BossMod/Autorotation/Standard/xan/AI/Melee.cs b/BossMod/Autorotation/Standard/xan/AI/Melee.cs index 9aadb095d1..2aae49578e 100644 --- a/BossMod/Autorotation/Standard/xan/AI/Melee.cs +++ b/BossMod/Autorotation/Standard/xan/AI/Melee.cs @@ -66,7 +66,7 @@ private void ExecLB(StrategyValues strategy, Actor? primaryTarget) case 1: break; case 2: - Hints.ActionsToExecute.Push(ActionID.MakeSpell(ClassShared.AID.Bladedance), primaryTarget, ActionQueue.Priority.VeryHigh); + Hints.ActionsToExecute.Push(ActionID.MakeSpell(ClassShared.AID.Bladedance), primaryTarget, ActionQueue.Priority.VeryHigh, castTime: 3); break; case 3: var lb3 = Player.Class switch @@ -80,7 +80,7 @@ private void ExecLB(StrategyValues strategy, Actor? primaryTarget) _ => default }; if (lb3 != default) - Hints.ActionsToExecute.Push(lb3, primaryTarget, ActionQueue.Priority.VeryHigh); + Hints.ActionsToExecute.Push(lb3, primaryTarget, ActionQueue.Priority.VeryHigh, castTime: 4.5f); break; } } diff --git a/BossMod/Autorotation/Standard/xan/AI/Ranged.cs b/BossMod/Autorotation/Standard/xan/AI/Ranged.cs index 688d1f039e..08833bb73b 100644 --- a/BossMod/Autorotation/Standard/xan/AI/Ranged.cs +++ b/BossMod/Autorotation/Standard/xan/AI/Ranged.cs @@ -46,11 +46,11 @@ private void ExecLB(StrategyValues strategy, Actor? primaryTarget) { case 1: if (lbTarget(2) is Actor a) - Hints.ActionsToExecute.Push(ActionID.MakeSpell(ClassShared.AID.BigShot), a, ActionQueue.Priority.VeryHigh); + Hints.ActionsToExecute.Push(ActionID.MakeSpell(ClassShared.AID.BigShot), a, ActionQueue.Priority.VeryHigh, castTime: 2); break; case 2: if (lbTarget(2.5f) is Actor b) - Hints.ActionsToExecute.Push(ActionID.MakeSpell(ClassShared.AID.Desperado), b, ActionQueue.Priority.VeryHigh); + Hints.ActionsToExecute.Push(ActionID.MakeSpell(ClassShared.AID.Desperado), b, ActionQueue.Priority.VeryHigh, castTime: 3); break; case 3: var lb3 = Player.Class switch @@ -61,7 +61,7 @@ private void ExecLB(StrategyValues strategy, Actor? primaryTarget) _ => default }; if (lbTarget(4) is Actor c && lb3 != default) - Hints.ActionsToExecute.Push(lb3, c, ActionQueue.Priority.VeryHigh); + Hints.ActionsToExecute.Push(lb3, c, ActionQueue.Priority.VeryHigh, castTime: 4.5f); break; } } diff --git a/BossMod/Autorotation/Standard/xan/BLU/Basic.cs b/BossMod/Autorotation/Standard/xan/BLU/Basic.cs index f2e17949df..00f9b361b1 100644 --- a/BossMod/Autorotation/Standard/xan/BLU/Basic.cs +++ b/BossMod/Autorotation/Standard/xan/BLU/Basic.cs @@ -37,9 +37,7 @@ public enum GCDPriority : int private Mimicry Mimic; - protected override bool CanCast(AID aid) => HaveSpell(aid) && base.CanCast(aid); - - private bool HaveSpell(AID aid) => aid switch + protected override bool CanUse(AID aid) => aid switch { // TODO add other transformed actions here AID.DivineCataract => true, @@ -56,7 +54,7 @@ public override void Exec(StrategyValues strategy, Enemy? primaryTarget) if (World.CurrentCFCID > 0 && World.Party.WithoutSlot().Count(p => p.Type == ActorType.Player) == 1) { - if (HaveSpell(AID.BasicInstinct) && Player.FindStatus(SID.MightyGuard) == null) + if (CanUse(AID.BasicInstinct) && Player.FindStatus(SID.MightyGuard) == null) PushGCD(AID.MightyGuard, Player); if (Player.FindStatus(SID.BasicInstinct) == null) @@ -98,7 +96,7 @@ public override void Exec(StrategyValues strategy, Enemy? primaryTarget) PushGCD(AID.TheRoseOfDestruction, primaryTarget, GCDPriority.GCDWithCooldown); // standard filler spells - if (HaveSpell(AID.GoblinPunch)) + if (CanUse(AID.GoblinPunch)) { if (primaryTarget is { } t) Hints.GoalZones.Add(Hints.GoalSingleTarget(t.Actor, Positional.Front, 3)); @@ -106,7 +104,7 @@ public override void Exec(StrategyValues strategy, Enemy? primaryTarget) } PushGCD(AID.SonicBoom, primaryTarget, GCDPriority.FillerST); - if (HaveSpell(AID.PeatPelt) && HaveSpell(AID.DeepClean) && StatusLeft(SID.SpickAndSpan) < GCDLength) + if (CanUse(AID.PeatPelt) && CanUse(AID.DeepClean) && StatusLeft(SID.SpickAndSpan) < GCDLength) { var (poopTarget, poopNum) = SelectTarget(strategy, primaryTarget, 25, (primary, other) => Hints.TargetInAOECircle(other, primary.Position, 6)); if (poopTarget != null && poopNum > 2) @@ -118,7 +116,7 @@ public override void Exec(StrategyValues strategy, Enemy? primaryTarget) } } - if (HaveSpell(AID.TheRamsVoice) && HaveSpell(AID.Ultravibration)) + if (CanUse(AID.TheRamsVoice) && CanUse(AID.Ultravibration)) { Hints.GoalZones.Add(Hints.GoalAOECircle(6)); var priorityTotal = 0; @@ -157,7 +155,7 @@ public override void Exec(StrategyValues strategy, Enemy? primaryTarget) private void TankSpecific(Enemy? primaryTarget) { - if (HaveSpell(AID.Devour) && !CanFitGCD(StatusLeft(SID.HPBoost), 1)) + if (CanUse(AID.Devour) && !CanFitGCD(StatusLeft(SID.HPBoost), 1)) { if (primaryTarget is { } t) Hints.GoalZones.Add(Hints.GoalSingleTarget(t.Actor, 3)); diff --git a/BossMod/Autorotation/Standard/xan/Basexan.cs b/BossMod/Autorotation/Standard/xan/Basexan.cs index fa6cabf586..77f1523cad 100644 --- a/BossMod/Autorotation/Standard/xan/Basexan.cs +++ b/BossMod/Autorotation/Standard/xan/Basexan.cs @@ -34,6 +34,7 @@ public abstract class Basexan(RotationModuleManager manager, Actor protected float DowntimeIn { get; private set; } protected float? UptimeIn { get; private set; } protected Enemy? PlayerTarget { get; private set; } + protected bool IsMoving { get; private set; } protected float? CountdownRemaining => World.Client.CountdownRemaining; protected float AnimLock => World.Client.AnimationLock; @@ -83,6 +84,9 @@ protected AID HighestUnlocked(params AID[] actions) protected AID ComboLastMove => (AID)(object)World.Client.ComboState.Action; + // override if some action requires specific runtime checks that aren't covered by the existing framework code + protected virtual bool CanUse(AID action) => true; + protected void PushGCD

(AID aid, Actor? target, P priority, float delay = 0) where P : Enum => PushGCD(aid, target, (int)(object)priority, delay); @@ -124,7 +128,7 @@ protected bool PushAction(AID aid, Actor? target, float priority, float delay) if ((uint)(object)aid == 0) return false; - if (!CanCast(aid)) + if (!CanUse(aid)) return false; var def = ActionDefinitions.Instance.Spell(aid); @@ -147,7 +151,7 @@ protected bool PushAction(AID aid, Actor? target, float priority, float delay) targetPos = target.PosRot.XYZ(); } - Hints.ActionsToExecute.Push(ActionID.MakeSpell(aid), target, priority, delay: delay, targetPos: targetPos); + Hints.ActionsToExecute.Push(ActionID.MakeSpell(aid), target, priority, delay: delay, targetPos: targetPos, castTime: GetSlidecastTime(aid)); return true; } @@ -333,17 +337,6 @@ protected int AdjustNumTargets(StrategyValues strategy, int reported) protected float GetSlidecastTime(AID aid) => MathF.Max(0, GetCastTime(aid) - 0.5f); protected float GetSlidecastEnd(AID aid) => NextCastStart + GetSlidecastTime(aid); - protected virtual bool CanCast(AID aid) - { - var t = GetSlidecastTime(aid); - if (t == 0) - return true; - - return NextCastStart + t <= MaxCastTime; - } - - protected float MaxCastTime; - protected bool Unlocked(AID aid) => ActionUnlocked(ActionID.MakeSpell(aid)); protected bool Unlocked(TraitID tid) => TraitUnlocked((uint)(object)tid); @@ -373,27 +366,6 @@ protected void UpdatePositionals(Enemy? enemy, ref (Positional pos, bool imm) po Hints.RecommendedPositional = (target, positional.pos, NextPositionalImminent, NextPositionalCorrect); } - private readonly SmartRotationConfig _smartrot = Service.Config.Get(); - - private void EstimateCastTime() - { - MaxCastTime = Hints.MaxCastTimeEstimate; - - if (Player.PendingKnockbacks.Count > 0) - { - MaxCastTime = 0f; - return; - } - - var forbiddenDir = Hints.ForbiddenDirections.Where(d => Player.Rotation.AlmostEqual(d.center, d.halfWidth.Rad)).Select(d => d.activation).DefaultIfEmpty(DateTime.MinValue).Min(); - if (forbiddenDir > World.CurrentTime) - { - var cushion = _smartrot.MinTimeToAvoid; - var gazeIn = MathF.Max(0, (float)(forbiddenDir - World.CurrentTime).TotalSeconds - cushion); - MaxCastTime = MathF.Min(MaxCastTime, gazeIn); - } - } - private float? _prevCountdown; private DateTime _cdLockout; @@ -415,6 +387,7 @@ private void PretendCountdown() public sealed override void Execute(StrategyValues strategy, ref Actor? primaryTarget, float estimatedAnimLockDelay, bool isMoving) { + IsMoving = isMoving; NextGCD = default; NextGCDPrio = 0; PlayerTarget = Hints.FindEnemy(primaryTarget); @@ -426,7 +399,6 @@ public sealed override void Execute(StrategyValues strategy, ref Actor? primaryT SwiftcastLeft = MathF.Max(StatusLeft(ClassShared.SID.Swiftcast), StatusLeft(ClassShared.SID.LostChainspell)); TrueNorthLeft = StatusLeft(ClassShared.SID.TrueNorth); - EstimateCastTime(); AnimationLockDelay = estimatedAnimLockDelay; CombatTimer = (float)(World.CurrentTime - Manager.CombatStart).TotalSeconds; diff --git a/BossMod/Autorotation/Standard/xan/Casters/BLM.cs b/BossMod/Autorotation/Standard/xan/Casters/BLM.cs index db7a66fa48..296a7e58c4 100644 --- a/BossMod/Autorotation/Standard/xan/Casters/BLM.cs +++ b/BossMod/Autorotation/Standard/xan/Casters/BLM.cs @@ -437,7 +437,6 @@ private void TryInstantOrTranspose(StrategyValues strategy, Enemy? primaryTarget private bool ShouldUseLeylines(StrategyValues strategy, int extraGCDs = 0) => CanWeave(MaxChargesIn(AID.LeyLines), extraGCDs) - && MaxCastTime >= 30 && strategy.Option(SharedTrack.Buffs).As() != OffensiveStrategy.Delay; private bool ShouldTranspose(StrategyValues strategy) diff --git a/BossMod/Autorotation/Standard/xan/Casters/RDM.cs b/BossMod/Autorotation/Standard/xan/Casters/RDM.cs index 6ae9ec890e..a61bbae00f 100644 --- a/BossMod/Autorotation/Standard/xan/Casters/RDM.cs +++ b/BossMod/Autorotation/Standard/xan/Casters/RDM.cs @@ -243,9 +243,9 @@ private void OGCD(StrategyValues strategy, Enemy? primaryTarget) private bool DashOk(StrategyValues strategy, Enemy? primaryTarget) => strategy.Option(Track.Dash).As() switch { DashStrategy.Any => true, - DashStrategy.Move => MaxCastTime > 30, + DashStrategy.Move => !IsMoving, DashStrategy.Close => Player.DistanceToHitbox(primaryTarget) < 3, - DashStrategy.CloseMove => Player.DistanceToHitbox(primaryTarget) < 3 && MaxCastTime > 30, + DashStrategy.CloseMove => Player.DistanceToHitbox(primaryTarget) < 3 && !IsMoving, _ => false }; } diff --git a/BossMod/Autorotation/Standard/xan/Casters/SMN.cs b/BossMod/Autorotation/Standard/xan/Casters/SMN.cs index c5c81f1fd9..f8be569751 100644 --- a/BossMod/Autorotation/Standard/xan/Casters/SMN.cs +++ b/BossMod/Autorotation/Standard/xan/Casters/SMN.cs @@ -286,13 +286,13 @@ public override void Exec(StrategyValues strategy, Enemy? primaryTarget) case CycloneUse.Delay: // do nothing, pause rotation return; case CycloneUse.DelayMove: - if (MaxCastTime == 0) + if (IsMoving) return; else PushGCD(AID.CrimsonCyclone, BestAOETarget); break; case CycloneUse.SkipMove: - if (MaxCastTime > 0) + if (!IsMoving) PushGCD(AID.CrimsonCyclone, BestAOETarget); break; case CycloneUse.Skip: diff --git a/BossMod/Autorotation/Standard/xan/Melee/DRG.cs b/BossMod/Autorotation/Standard/xan/Melee/DRG.cs index 2b6c719000..1afaa5391b 100644 --- a/BossMod/Autorotation/Standard/xan/Melee/DRG.cs +++ b/BossMod/Autorotation/Standard/xan/Melee/DRG.cs @@ -169,7 +169,7 @@ private void OGCD(StrategyValues strategy, Enemy? primaryTarget) var posOk = PosLockOk(strategy); var bestSingleTarget = primaryTarget.Priority >= 0 ? primaryTarget : null; - bool posCheck(float animationLock) => Hints.PositionStoredIn > AnimLock + animationLock; + bool posCheck(float animationLock) => true; // Hints.PositionStoredIn > AnimLock + animationLock; if (NextPositionalImminent && !NextPositionalCorrect) Hints.ActionsToExecute.Push(ActionID.MakeSpell(AID.TrueNorth), Player, ActionQueue.Priority.Low - 20, delay: GCD - 0.8f); From 2a1e048867006b8c4e1ae870f7fd0b6b288331ba Mon Sep 17 00:00:00 2001 From: xanunderscore <149614526+xanunderscore@users.noreply.github.com> Date: Wed, 29 Jan 2025 14:58:38 -0500 Subject: [PATCH 11/32] interaction cleanup stuff --- BossMod/Autorotation/MiscAI/NormalMovement.cs | 15 +++++-- BossMod/Framework/Plugin.cs | 43 ++++++++++++++++--- 2 files changed, 48 insertions(+), 10 deletions(-) diff --git a/BossMod/Autorotation/MiscAI/NormalMovement.cs b/BossMod/Autorotation/MiscAI/NormalMovement.cs index 6214e4c24e..12eb03ebd0 100644 --- a/BossMod/Autorotation/MiscAI/NormalMovement.cs +++ b/BossMod/Autorotation/MiscAI/NormalMovement.cs @@ -1,6 +1,4 @@ using BossMod.Pathfinding; -using BossMod.Stormblood.Dungeon.D15GhimlytDark.D151MarkIIIBMagitekColossus; -using Dalamud.Utility; namespace BossMod.Autorotation.MiscAI; @@ -65,7 +63,18 @@ public override void Execute(StrategyValues strategy, ref Actor? primaryTarget, } if (Hints.InteractWithTarget != null) - Hints.GoalZones.Add(Hints.GoalSingleTarget(Hints.InteractWithTarget.Position, 2, 100)); // strongly prefer moving towards interact target + { + // strongly prefer moving towards interact target + Hints.GoalZones.Add(p => + { + var length = (p - Hints.InteractWithTarget.Position).Length(); + + // 99% of eventobjects have an interact range of 3.5y, while the rest have a range of 2.09y + // checking only for the shorter range here would be fine in the vast majority of cases, but it can break interact pathfinding in the case that the target object is partially covered by a forbidden zone with a radius between 2.1 and 3.5 + // this is specifically an issue in the metal gear thancred solo duty in endwalker + return length <= 2.09f ? 101 : length <= 3.5f ? 100 : 0; + }); + } } var speed = Player.FindStatus(ClassShared.SID.Sprint) != null ? 7.8f : 6; diff --git a/BossMod/Framework/Plugin.cs b/BossMod/Framework/Plugin.cs index e8c1e13bb7..44a7aba706 100644 --- a/BossMod/Framework/Plugin.cs +++ b/BossMod/Framework/Plugin.cs @@ -4,6 +4,7 @@ using Dalamud.Game.ClientState.Conditions; using Dalamud.Plugin; using Dalamud.Plugin.Services; +using FFXIVClientStructs.FFXIV.Client.Game.Event; using System.IO; using System.Reflection; @@ -312,17 +313,45 @@ private unsafe void ExecuteHints() FFXIVClientStructs.FFXIV.Client.Game.ActionManager.Instance()->UseAction(FFXIVClientStructs.FFXIV.Client.Game.ActionType.GeneralAction, 2); _throttleJump = _ws.CurrentTime.AddMilliseconds(100); } - if (_hints.InteractWithTarget?.DistanceToHitbox(_ws.Party.Player()) <= 3 && _amex.EffectiveAnimationLock == 0 && _ws.CurrentTime >= _throttleInteract) + + var player = _ws.Party.Player(); + var target = _hints.InteractWithTarget; + + if (_amex.EffectiveAnimationLock == 0 && _ws.CurrentTime >= _throttleInteract && CheckInteractRange(player, target)) { - var obj = FFXIVClientStructs.FFXIV.Client.Game.Object.GameObjectManager.Instance()->Objects.IndexSorted[_hints.InteractWithTarget.SpawnIndex].Value; - if (obj != null && obj->GetGameObjectId() == _hints.InteractWithTarget.InstanceID) - { - FFXIVClientStructs.FFXIV.Client.Game.Control.TargetSystem.Instance()->OpenObjectInteraction(obj); - _throttleInteract = _ws.FutureTime(0.1f); - } + // many eventobj interactions immediately start some cast animation; if we keep trying to approach the object after a successful interaction, it will interrupt the cast, forcing us to do it again + _hints.ForcedMovement = default; + FFXIVClientStructs.FFXIV.Client.Game.Control.TargetSystem.Instance()->InteractWithObject(GetActorObject(target)); + _throttleInteract = _ws.FutureTime(0.1f); } } + private unsafe bool CheckInteractRange(Actor? player, Actor? target) + { + var playerObj = GetActorObject(player); + var targetObj = GetActorObject(target); + if (playerObj == null || targetObj == null) + return false; + + // treasure chests have no client-side interact range check at all; just assume they use the standard "small" range, seems to be accurate from testing + if (targetObj->ObjectKind is FFXIVClientStructs.FFXIV.Client.Game.Object.ObjectKind.Treasure) + return player?.DistanceToHitbox(target) <= 2.09f; + + return EventFramework.Instance()->CheckInteractRange(playerObj, targetObj, 1, false); + } + + private unsafe FFXIVClientStructs.FFXIV.Client.Game.Object.GameObject* GetActorObject(Actor? actor) + { + if (actor == null) + return null; + + var obj = FFXIVClientStructs.FFXIV.Client.Game.Object.GameObjectManager.Instance()->Objects.IndexSorted[actor.SpawnIndex].Value; + if (obj == null || obj->GetGameObjectId() != actor.InstanceID) + return null; + + return obj; + } + private void OnConditionChanged(ConditionFlag flag, bool value) { Service.Log($"Condition chage: {flag}={value}"); From 7f5a5700315bfd96f61390ed1e8dd119e5f24029 Mon Sep 17 00:00:00 2001 From: xanunderscore <149614526+xanunderscore@users.noreply.github.com> Date: Wed, 29 Jan 2025 15:01:36 -0500 Subject: [PATCH 12/32] lol? --- BossMod/Framework/Plugin.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BossMod/Framework/Plugin.cs b/BossMod/Framework/Plugin.cs index 44a7aba706..4af509f433 100644 --- a/BossMod/Framework/Plugin.cs +++ b/BossMod/Framework/Plugin.cs @@ -321,7 +321,7 @@ private unsafe void ExecuteHints() { // many eventobj interactions immediately start some cast animation; if we keep trying to approach the object after a successful interaction, it will interrupt the cast, forcing us to do it again _hints.ForcedMovement = default; - FFXIVClientStructs.FFXIV.Client.Game.Control.TargetSystem.Instance()->InteractWithObject(GetActorObject(target)); + FFXIVClientStructs.FFXIV.Client.Game.Control.TargetSystem.Instance()->InteractWithObject(GetActorObject(target), false); _throttleInteract = _ws.FutureTime(0.1f); } } From 4910879937b15d41b9b736325550b1479be1bf1e Mon Sep 17 00:00:00 2001 From: xanunderscore <149614526+xanunderscore@users.noreply.github.com> Date: Wed, 29 Jan 2025 15:06:08 -0500 Subject: [PATCH 13/32] add transform statuses --- BossMod/Autorotation/RotationModuleManager.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/BossMod/Autorotation/RotationModuleManager.cs b/BossMod/Autorotation/RotationModuleManager.cs index 2e329fb96f..1359304244 100644 --- a/BossMod/Autorotation/RotationModuleManager.cs +++ b/BossMod/Autorotation/RotationModuleManager.cs @@ -49,6 +49,10 @@ public Preset? Preset (uint)Roleplay.SID.BorrowedFlesh, // used specifically for In from the Cold (Endwalker) (uint)Roleplay.SID.FreshPerspective, // sapphire weapon quest 565, // "Transfiguration" from certain pomanders in Palace of the Dead + 439, // "Toad", palace of the dead + 1546, // "Odder", heaven-on-high + 3502, // "Owlet", EO + 404, // "Transporting", not a transformation but prevents actions ]; public static bool IsTransformStatus(ActorStatus st) => TransformationStatuses.Contains(st.ID); From df6a0489ee6a75db655d0cf1eb180705759a0d7e Mon Sep 17 00:00:00 2001 From: xanunderscore <149614526+xanunderscore@users.noreply.github.com> Date: Wed, 29 Jan 2025 15:31:40 -0500 Subject: [PATCH 14/32] fix multi charge stuff --- BossMod/ActionQueue/ActionDefinition.cs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/BossMod/ActionQueue/ActionDefinition.cs b/BossMod/ActionQueue/ActionDefinition.cs index 366507fc3c..5721841d65 100644 --- a/BossMod/ActionQueue/ActionDefinition.cs +++ b/BossMod/ActionQueue/ActionDefinition.cs @@ -120,7 +120,13 @@ public float MainReadyIn(ReadOnlySpan cooldowns, ReadOnlySpan1 charge via trait is currently MCH Drill; others have multiple charges at unlock - SGE Phlegma, RPR Soul Slice, BLU Surpanakha + var cooldownSingleCharge = IsGCD && max > 1 && cdg.Total > 0 ? cdg.Total / max : Cooldown; + + return !IsMultiCharge || cdg.Total < cooldownSingleCharge ? cdg.Remaining : cooldownSingleCharge - cdg.Elapsed; } public float ExtraReadyIn(ReadOnlySpan cooldowns) => ExtraCooldownGroup >= 0 ? cooldowns[ExtraCooldownGroup].Remaining : 0; From b1747f8093ff869203df5462d6a7a6cecec05262 Mon Sep 17 00:00:00 2001 From: xanunderscore <149614526+xanunderscore@users.noreply.github.com> Date: Wed, 29 Jan 2025 15:56:40 -0500 Subject: [PATCH 15/32] one more fix --- BossMod/Autorotation/RotationModuleManager.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BossMod/Autorotation/RotationModuleManager.cs b/BossMod/Autorotation/RotationModuleManager.cs index 1359304244..9b67205e98 100644 --- a/BossMod/Autorotation/RotationModuleManager.cs +++ b/BossMod/Autorotation/RotationModuleManager.cs @@ -71,8 +71,8 @@ public RotationModuleManager(RotationDatabase db, BossModuleManager bmm, AIHints WorldState.Actors.InCombatChanged.Subscribe(OnCombatChanged), WorldState.Actors.IsDeadChanged.Subscribe(OnDeadChanged), WorldState.Actors.CastEvent.Subscribe(OnCastEvent), - WorldState.Actors.StatusGain.Subscribe((a, idx) => DirtyActiveModules(PlayerInstanceId == a.InstanceID && a.Statuses[idx].ID == (uint)Roleplay.SID.RolePlaying)), - WorldState.Actors.StatusLose.Subscribe((a, idx) => DirtyActiveModules(PlayerInstanceId == a.InstanceID && a.Statuses[idx].ID == (uint)Roleplay.SID.RolePlaying)), + WorldState.Actors.StatusGain.Subscribe((a, idx) => DirtyActiveModules(PlayerInstanceId == a.InstanceID && IsTransformStatus(a.Statuses[idx]))), + WorldState.Actors.StatusLose.Subscribe((a, idx) => DirtyActiveModules(PlayerInstanceId == a.InstanceID && IsTransformStatus(a.Statuses[idx]))), WorldState.Party.Modified.Subscribe(op => DirtyActiveModules(op.Slot == PlayerSlot)), WorldState.Client.ActionRequested.Subscribe(OnActionRequested), WorldState.Client.CountdownChanged.Subscribe(OnCountdownChanged), From 32156d323282033c793ca1b8be67e9c7c18a200d Mon Sep 17 00:00:00 2001 From: xanunderscore <149614526+xanunderscore@users.noreply.github.com> Date: Wed, 29 Jan 2025 17:26:34 -0500 Subject: [PATCH 16/32] maybe? --- FFXIVClientStructs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FFXIVClientStructs b/FFXIVClientStructs index 0f55619dd2..035501d6fb 160000 --- a/FFXIVClientStructs +++ b/FFXIVClientStructs @@ -1 +1 @@ -Subproject commit 0f55619dd202382416b8a3190fad75872d5b0953 +Subproject commit 035501d6fbc8e47807f3ed9f03a5184f1e982474 From dea1e4ac30be333ea2cb90a1987dac400eb0d18e Mon Sep 17 00:00:00 2001 From: xanunderscore <149614526+xanunderscore@users.noreply.github.com> Date: Wed, 29 Jan 2025 17:31:18 -0500 Subject: [PATCH 17/32] surely --- BossMod/Autorotation/Standard/xan/BLU/Basic.cs | 4 ++-- BossMod/Autorotation/Standard/xan/Melee/DRG.cs | 2 +- .../DeepDungeon/EurekaOrthos/D50ServomechanicalChimera14X.cs | 2 +- BossMod/Util/WPosDir.cs | 1 + 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/BossMod/Autorotation/Standard/xan/BLU/Basic.cs b/BossMod/Autorotation/Standard/xan/BLU/Basic.cs index 00f9b361b1..8087c14a97 100644 --- a/BossMod/Autorotation/Standard/xan/BLU/Basic.cs +++ b/BossMod/Autorotation/Standard/xan/BLU/Basic.cs @@ -37,11 +37,11 @@ public enum GCDPriority : int private Mimicry Mimic; - protected override bool CanUse(AID aid) => aid switch + protected override bool CanUse(AID action) => action switch { // TODO add other transformed actions here AID.DivineCataract => true, - _ => World.Client.BlueMageSpells.Contains((uint)aid) + _ => World.Client.BlueMageSpells.Contains((uint)action) }; public override void Exec(StrategyValues strategy, Enemy? primaryTarget) diff --git a/BossMod/Autorotation/Standard/xan/Melee/DRG.cs b/BossMod/Autorotation/Standard/xan/Melee/DRG.cs index 1afaa5391b..0b1d90bdd9 100644 --- a/BossMod/Autorotation/Standard/xan/Melee/DRG.cs +++ b/BossMod/Autorotation/Standard/xan/Melee/DRG.cs @@ -169,7 +169,7 @@ private void OGCD(StrategyValues strategy, Enemy? primaryTarget) var posOk = PosLockOk(strategy); var bestSingleTarget = primaryTarget.Priority >= 0 ? primaryTarget : null; - bool posCheck(float animationLock) => true; // Hints.PositionStoredIn > AnimLock + animationLock; + static bool posCheck(float animationLock) => true; // Hints.PositionStoredIn > AnimLock + animationLock; if (NextPositionalImminent && !NextPositionalCorrect) Hints.ActionsToExecute.Push(ActionID.MakeSpell(AID.TrueNorth), Player, ActionQueue.Priority.Low - 20, delay: GCD - 0.8f); diff --git a/BossMod/Modules/Endwalker/DeepDungeon/EurekaOrthos/D50ServomechanicalChimera14X.cs b/BossMod/Modules/Endwalker/DeepDungeon/EurekaOrthos/D50ServomechanicalChimera14X.cs index b21a09520e..77771b1112 100644 --- a/BossMod/Modules/Endwalker/DeepDungeon/EurekaOrthos/D50ServomechanicalChimera14X.cs +++ b/BossMod/Modules/Endwalker/DeepDungeon/EurekaOrthos/D50ServomechanicalChimera14X.cs @@ -91,7 +91,7 @@ public override void OnEventCast(Actor caster, ActorCastEvent spell) public override void AddGlobalHints(GlobalHints hints) { - if (hint != "") + if (hint.Length > 0) hints.Add(hint); } } diff --git a/BossMod/Util/WPosDir.cs b/BossMod/Util/WPosDir.cs index 80dd650121..279eeb31fd 100644 --- a/BossMod/Util/WPosDir.cs +++ b/BossMod/Util/WPosDir.cs @@ -53,6 +53,7 @@ public readonly bool InRect(WDir direction, float lenFront, float lenBack, float } // 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) { } From 2d96749a82ed92e32b77dd53f0f6175147ccd8fc Mon Sep 17 00:00:00 2001 From: xanunderscore <149614526+xanunderscore@users.noreply.github.com> Date: Wed, 29 Jan 2025 17:55:48 -0500 Subject: [PATCH 18/32] specify version --- global.json | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 global.json diff --git a/global.json b/global.json new file mode 100644 index 0000000000..78b38e0dc2 --- /dev/null +++ b/global.json @@ -0,0 +1,5 @@ +{ + "sdk": { + "version": "8.0.405" + } +} \ No newline at end of file From ad54ea4a946de7ba2536d9b0647318a4e105059b Mon Sep 17 00:00:00 2001 From: xanunderscore <149614526+xanunderscore@users.noreply.github.com> Date: Wed, 29 Jan 2025 18:07:28 -0500 Subject: [PATCH 19/32] mark generic AI functionality as usable while transformed --- BossMod/Autorotation/MiscAI/AutoFarm.cs | 2 +- BossMod/Autorotation/MiscAI/NormalMovement.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/BossMod/Autorotation/MiscAI/AutoFarm.cs b/BossMod/Autorotation/MiscAI/AutoFarm.cs index 74901a6d41..1a8464fb2c 100644 --- a/BossMod/Autorotation/MiscAI/AutoFarm.cs +++ b/BossMod/Autorotation/MiscAI/AutoFarm.cs @@ -8,7 +8,7 @@ public enum PriorityStrategy { None, Prioritize } public static RotationModuleDefinition Definition() { - RotationModuleDefinition res = new("Automatic targeting", "Collection of utilities to automatically target and pull mobs based on different criteria.", "AI", "veyn", RotationModuleQuality.Basic, new(~0ul), 1000, 1, RotationModuleOrder.HighLevel); + RotationModuleDefinition res = new("Automatic targeting", "Collection of utilities to automatically target and pull mobs based on different criteria.", "AI", "veyn", RotationModuleQuality.Basic, new(~0ul), 1000, 1, RotationModuleOrder.HighLevel, CanUseWhileRoleplaying: true); res.Define(Track.General).As("General") .AddOption(GeneralStrategy.FightBack, "FightBack", "Automatically engage any mobs that are in combat with player, but don't pull new mobs", supportedTargets: ActionTargets.Hostile) diff --git a/BossMod/Autorotation/MiscAI/NormalMovement.cs b/BossMod/Autorotation/MiscAI/NormalMovement.cs index c458d6d36c..70e5602a6e 100644 --- a/BossMod/Autorotation/MiscAI/NormalMovement.cs +++ b/BossMod/Autorotation/MiscAI/NormalMovement.cs @@ -14,7 +14,7 @@ public enum SpecialModesStrategy { Automatic, Ignore } public static RotationModuleDefinition Definition() { - var res = new RotationModuleDefinition("Automatic movement", "Automatically move character based on pathfinding or explicit coordinates.", "AI", "veyn", RotationModuleQuality.WIP, new(~0ul), 1000, 1, RotationModuleOrder.Movement); + var res = new RotationModuleDefinition("Automatic movement", "Automatically move character based on pathfinding or explicit coordinates.", "AI", "veyn", RotationModuleQuality.WIP, new(~0ul), 1000, 1, RotationModuleOrder.Movement, CanUseWhileRoleplaying: true); res.Define(Track.Destination).As("Destination", "Destination", 30) .AddOption(DestinationStrategy.None, "None", "No automatic movement") .AddOption(DestinationStrategy.Pathfind, "Pathfind", "Use standard pathfinding to find best position") From d7573c888d9b33a71cb0e2e46d06a8d4bf7b66ff Mon Sep 17 00:00:00 2001 From: xanunderscore <149614526+xanunderscore@users.noreply.github.com> Date: Wed, 29 Jan 2025 18:10:01 -0500 Subject: [PATCH 20/32] minify walls file to reduce PR sive --- BossMod/Modules/Global/DeepDungeon/Walls.json | 74483 +--------------- 1 file changed, 1 insertion(+), 74482 deletions(-) diff --git a/BossMod/Modules/Global/DeepDungeon/Walls.json b/BossMod/Modules/Global/DeepDungeon/Walls.json index 222af990ae..9d2b81271b 100644 --- a/BossMod/Modules/Global/DeepDungeon/Walls.json +++ b/BossMod/Modules/Global/DeepDungeon/Walls.json @@ -1,74482 +1 @@ -{ - "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 - } - } - ] - } - } -} \ No newline at end of file +{"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}}]}}} From 280ead8a5d609bce883c152b8690d259152dc58d Mon Sep 17 00:00:00 2001 From: xanunderscore <149614526+xanunderscore@users.noreply.github.com> Date: Fri, 31 Jan 2025 12:55:18 -0500 Subject: [PATCH 21/32] github stuff --- .github/ISSUE_TEMPLATE/rotation-bug-report.md | 17 +++++++ .../something-that-isn-t-a-rotation-bug.md | 10 +++++ .github/workflows/build.yml | 44 +++++++++++++++++++ BossMod/ActionQueue/Melee/MNK.cs | 1 + BossMod/Autorotation/MiscAI/AutoEngage.cs | 2 +- 5 files changed, 73 insertions(+), 1 deletion(-) create mode 100644 .github/ISSUE_TEMPLATE/rotation-bug-report.md create mode 100644 .github/ISSUE_TEMPLATE/something-that-isn-t-a-rotation-bug.md create mode 100644 .github/workflows/build.yml diff --git a/.github/ISSUE_TEMPLATE/rotation-bug-report.md b/.github/ISSUE_TEMPLATE/rotation-bug-report.md new file mode 100644 index 0000000000..bc18011291 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/rotation-bug-report.md @@ -0,0 +1,17 @@ +--- +name: Rotation bug report +about: Unexpected rotation behavior, crash, error in logs, etc. +title: "[BUG] L100 JobNameHere: Issue Summary Here" +labels: '' +assignees: '' + +--- + +**Bug description** +e.g. "Reaper using Enshroud too early before raid buffs" + +**Replay info** - only one choice is needed +- [ ] I have a(n anonymized) video recording of this interaction +- [ ] I have a replay file and I will DM it to you upon request (or just post it here if I don't care about privacy) +- [ ] I can attach my `/xllog` from when the issue occurred +- [ ] I have a screenshot of or link to xivanalysis diff --git a/.github/ISSUE_TEMPLATE/something-that-isn-t-a-rotation-bug.md b/.github/ISSUE_TEMPLATE/something-that-isn-t-a-rotation-bug.md new file mode 100644 index 0000000000..beee98eee5 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/something-that-isn-t-a-rotation-bug.md @@ -0,0 +1,10 @@ +--- +name: Something that isn't a rotation bug +about: Not a rotation bug +title: '' +labels: '' +assignees: '' + +--- + + diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000000..193b6d4379 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,44 @@ +name: Build + +on: + push: + branches: + - wip + +jobs: + Build: + runs-on: ubuntu-latest + env: + DALAMUD_HOME: /tmp/dalamud + steps: + - name: Checkout Repository + uses: actions/checkout@v4 + with: + submodules: true + + - name: Short ref + id: short_ref + run: echo "short_ref=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT + + - name: Set up .NET + uses: actions/setup-dotnet@v3 + with: + dotnet-version: 8.0.x + + - name: Download Dalamud Latest + run: | + wget https://goatcorp.github.io/dalamud-distrib/stg/latest.zip -O ${{ env.DALAMUD_HOME }}.zip + unzip ${{ env.DALAMUD_HOME }}.zip -d ${{ env.DALAMUD_HOME }} + + - name: Restore Project + run: dotnet restore + + - name: Build Project + run: dotnet build --configuration Release BossMod/BossMod.csproj + + - name: Publish + uses: ncipollo/release-action@v1 + with: + artifacts: BossMod/bin/Release/BossMod/latest.zip + prerelease: true + tag: "wip-${{ steps.short_ref.outputs.short_ref }}" diff --git a/BossMod/ActionQueue/Melee/MNK.cs b/BossMod/ActionQueue/Melee/MNK.cs index 5d9ec8fbb8..da62223b9d 100644 --- a/BossMod/ActionQueue/Melee/MNK.cs +++ b/BossMod/ActionQueue/Melee/MNK.cs @@ -160,6 +160,7 @@ public Definitions(ActionDefinitions d) d.RegisterSpell(AID.ElixirBurst); d.RegisterSpell(AID.WindsReply); d.RegisterSpell(AID.FiresReply); + d.RegisterSpell(AID.EarthsReply); d.RegisterSpell(AID.EnlightenedMeditation); d.RegisterSpell(AID.ForbiddenMeditation); d.RegisterSpell(AID.InspiritedMeditation); diff --git a/BossMod/Autorotation/MiscAI/AutoEngage.cs b/BossMod/Autorotation/MiscAI/AutoEngage.cs index 9349f0abe9..172daf411c 100644 --- a/BossMod/Autorotation/MiscAI/AutoEngage.cs +++ b/BossMod/Autorotation/MiscAI/AutoEngage.cs @@ -7,7 +7,7 @@ public enum Track { QuestBattle, DeepDungeon, EpicEcho } public static RotationModuleDefinition Definition() { - var def = new RotationModuleDefinition("Misc AI: Auto-engage", "Automatically attack all nearby targets in certain circumstances", "Misc", "xan", RotationModuleQuality.Basic, new(~0ul), 1000); + var def = new RotationModuleDefinition("Misc AI: Auto-engage", "Automatically attack all nearby targets in certain circumstances", "Misc", "xan", RotationModuleQuality.Basic, new(~0ul), 1000, Order: RotationModuleOrder.HighLevel); def.AbilityTrack(Track.QuestBattle, "Automatically attack solo duty bosses"); def.AbilityTrack(Track.DeepDungeon, "Automatically attack deep dungeon bosses when solo"); From 96009851d287c8e71ec483a9386d4f216caacf23 Mon Sep 17 00:00:00 2001 From: xanunderscore <149614526+xanunderscore@users.noreply.github.com> Date: Fri, 31 Jan 2025 13:53:33 -0500 Subject: [PATCH 22/32] fix some interact stuff --- BossMod/Framework/Plugin.cs | 12 ++++++++---- BossMod/Pathfinding/ObstacleMaps/301.343.1.bmp | Bin 0 -> 331206 bytes BossMod/Pathfinding/ObstacleMaps/maplist.json | 15 +++++++++++++++ 3 files changed, 23 insertions(+), 4 deletions(-) create mode 100644 BossMod/Pathfinding/ObstacleMaps/301.343.1.bmp diff --git a/BossMod/Framework/Plugin.cs b/BossMod/Framework/Plugin.cs index 4af509f433..e15bcc6c7e 100644 --- a/BossMod/Framework/Plugin.cs +++ b/BossMod/Framework/Plugin.cs @@ -317,12 +317,16 @@ private unsafe void ExecuteHints() var player = _ws.Party.Player(); var target = _hints.InteractWithTarget; - if (_amex.EffectiveAnimationLock == 0 && _ws.CurrentTime >= _throttleInteract && CheckInteractRange(player, target)) + if (CheckInteractRange(player, target)) { // many eventobj interactions immediately start some cast animation; if we keep trying to approach the object after a successful interaction, it will interrupt the cast, forcing us to do it again - _hints.ForcedMovement = default; - FFXIVClientStructs.FFXIV.Client.Game.Control.TargetSystem.Instance()->InteractWithObject(GetActorObject(target), false); - _throttleInteract = _ws.FutureTime(0.1f); + _movementOverride.DesiredDirection = default; + + if (_amex.EffectiveAnimationLock == 0 && _ws.CurrentTime >= _throttleInteract) + { + FFXIVClientStructs.FFXIV.Client.Game.Control.TargetSystem.Instance()->InteractWithObject(GetActorObject(target), false); + _throttleInteract = _ws.FutureTime(0.1f); + } } } diff --git a/BossMod/Pathfinding/ObstacleMaps/301.343.1.bmp b/BossMod/Pathfinding/ObstacleMaps/301.343.1.bmp new file mode 100644 index 0000000000000000000000000000000000000000..4e2a9975c2ac639b86de38ac694955240b62f7e7 GIT binary patch literal 331206 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 literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/maplist.json b/BossMod/Pathfinding/ObstacleMaps/maplist.json index 7cc2ef5caf..b5fb307176 100644 --- a/BossMod/Pathfinding/ObstacleMaps/maplist.json +++ b/BossMod/Pathfinding/ObstacleMaps/maplist.json @@ -3153,5 +3153,20 @@ "ViewHeight": 60, "Filename": "593.204.2.bmp" } + ], + "301.343": [ + { + "MinBoundsX": -945, + "MinBoundsY": 147.5, + "MinBoundsZ": -769.5, + "MaxBoundsX": 728, + "MaxBoundsY": 386.5, + "MaxBoundsZ": 793, + "OriginX": -945, + "OriginZ": -769.5, + "ViewWidth": 60, + "ViewHeight": 60, + "Filename": "301.343.1.bmp" + } ] } \ No newline at end of file From 8d23034c95996d1a3696d9f70d768cf43a51efc8 Mon Sep 17 00:00:00 2001 From: xanunderscore <149614526+xanunderscore@users.noreply.github.com> Date: Fri, 31 Jan 2025 13:55:37 -0500 Subject: [PATCH 23/32] clarify comment --- BossMod/Framework/Plugin.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BossMod/Framework/Plugin.cs b/BossMod/Framework/Plugin.cs index e15bcc6c7e..4e2a60a8d2 100644 --- a/BossMod/Framework/Plugin.cs +++ b/BossMod/Framework/Plugin.cs @@ -319,7 +319,7 @@ private unsafe void ExecuteHints() if (CheckInteractRange(player, target)) { - // many eventobj interactions immediately start some cast animation; if we keep trying to approach the object after a successful interaction, it will interrupt the cast, forcing us to do it again + // many eventobj interactions "immediately" start some cast animation (delayed by server roundtrip), and if we keep trying to move toward the target after sending the interact request, it will be canceled and force us to start over _movementOverride.DesiredDirection = default; if (_amex.EffectiveAnimationLock == 0 && _ws.CurrentTime >= _throttleInteract) From c3ed5bc7344a2687f0c4facec38f11a405564458 Mon Sep 17 00:00:00 2001 From: xanunderscore <149614526+xanunderscore@users.noreply.github.com> Date: Fri, 31 Jan 2025 14:50:09 -0500 Subject: [PATCH 24/32] fix autohint forbidden zone size --- BossMod/BossModule/AIHintsBuilder.cs | 20 ++++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) diff --git a/BossMod/BossModule/AIHintsBuilder.cs b/BossMod/BossModule/AIHintsBuilder.cs index b5dcfd75e3..f984d57939 100644 --- a/BossMod/BossModule/AIHintsBuilder.cs +++ b/BossMod/BossModule/AIHintsBuilder.cs @@ -5,6 +5,7 @@ public sealed class AIHintsBuilder : IDisposable { private const float RaidwideSize = 30; + public const float MaxError = 2000f / 65535f; public readonly Pathfinding.ObstacleMapManager Obstacles; private readonly WorldState _ws; @@ -141,6 +142,13 @@ private void CalculateAutoHints(AIHints hints, Actor player) { hints.AddForbiddenZone(ShapeDistance.Rect(aoe.Caster.Position, target, ((AOEShapeRect)aoe.Shape).HalfWidth), finishAt); } + else if (aoe.Shape is AOEShapeCone cone) + { + // not sure how best to adjust cone shape distance to account for quantization error - we just pretend it is being cast from MaxError units "behind" the reported position and increase radius similarly + var adjustedSourcePos = target + rot.ToDirection() * -MaxError; + var adjustedRadius = cone.Radius + MaxError * 2; + hints.AddForbiddenZone(ShapeDistance.Cone(adjustedSourcePos, adjustedRadius, rot, cone.HalfAngle), finishAt); + } else { hints.AddForbiddenZone(aoe.Shape, target, rot, finishAt); @@ -161,16 +169,16 @@ private void OnCastStarted(Actor actor) return; AOEShape? shape = data.Value.CastType switch { - 2 => new AOEShapeCircle(data.Value.EffectRange), // used for some point-blank aoes and enemy location-targeted - does not add caster hitbox + 2 => new AOEShapeCircle(data.Value.EffectRange + MaxError), // used for some point-blank aoes and enemy location-targeted - does not add caster hitbox 3 => new AOEShapeCone(data.Value.EffectRange + actor.HitboxRadius, DetermineConeAngle(data.Value) * 0.5f), - 4 => new AOEShapeRect(data.Value.EffectRange + actor.HitboxRadius, data.Value.XAxisModifier * 0.5f), - 5 => new AOEShapeCircle(data.Value.EffectRange + actor.HitboxRadius), + 4 => new AOEShapeRect(data.Value.EffectRange + actor.HitboxRadius + MaxError, data.Value.XAxisModifier * 0.5f + MaxError, MaxError), + 5 => new AOEShapeCircle(data.Value.EffectRange + actor.HitboxRadius + MaxError), //6 => ??? //7 => new AOEShapeCircle(data.Value.EffectRange), - used for player ground-targeted circles a-la asylum //8 => charge rect - 10 => new AOEShapeDonut(DetermineDonutInner(data.Value), data.Value.EffectRange), - 11 => new AOEShapeCross(data.Value.EffectRange, data.Value.XAxisModifier * 0.5f), - 12 => new AOEShapeRect(data.Value.EffectRange, data.Value.XAxisModifier * 0.5f), + 10 => new AOEShapeDonut(MathF.Max(0, DetermineDonutInner(data.Value) - MaxError), data.Value.EffectRange + MaxError), + 11 => new AOEShapeCross(data.Value.EffectRange + MaxError, data.Value.XAxisModifier * 0.5f + MaxError), + 12 => new AOEShapeRect(data.Value.EffectRange + MaxError, data.Value.XAxisModifier * 0.5f + MaxError, MaxError), 13 => new AOEShapeCone(data.Value.EffectRange, DetermineConeAngle(data.Value) * 0.5f), _ => null }; From 643c70ed30f033964c2aa54b1690b85d3dae83c5 Mon Sep 17 00:00:00 2001 From: xanunderscore <149614526+xanunderscore@users.noreply.github.com> Date: Fri, 31 Jan 2025 16:41:06 -0500 Subject: [PATCH 25/32] add vscode config stuff back in --- .vscode/launch.json | 21 +++++++++++++++++++++ .vscode/tasks.json | 25 +++++++++++++++++++++++++ 2 files changed, 46 insertions(+) create mode 100644 .vscode/launch.json create mode 100644 .vscode/tasks.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000000..0790fb74be --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,21 @@ +{ + "version": "0.2.0", + "configurations": [ + { + // Use IntelliSense to find out which attributes exist for C# debugging + // Use hover for the description of the existing attributes + // For further information visit https://github.com/dotnet/vscode-csharp/blob/main/debugger-launchjson.md + "name": ".NET Core Launch (console)", + "type": "coreclr", + "request": "launch", + "preLaunchTask": "build", + // If you have changed target frameworks, make sure to update the program path. + "program": "${workspaceFolder}/UIDev/bin/Debug/net8.0-windows/UIDev.dll", + "args": [], + "cwd": "${workspaceFolder}/UIDev/bin/Debug/net8.0-windows", + // For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console + "console": "internalConsole", + "stopAtEntry": false + } + ] +} diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000000..84f4347a0f --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,25 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "label": "build", + "command": "dotnet", + "type": "process", + "args": [ + "build", + "${workspaceFolder}/BossMod/BossMod.csproj", + "/property:GenerateFullPaths=true", + "/consoleloggerparameters:NoSummary;ForceNoAlign", + "--configuration", + "Release", + "--output", + "${workspaceFolder}/BossMod/bin/x64/Release/" + ], + "problemMatcher": "$msCompile", + "group": { + "kind": "build", + "isDefault": true + } + } + ] +} From a1d207e009d93b98fae56b7a5b9132d9cc1d2202 Mon Sep 17 00:00:00 2001 From: xanunderscore <149614526+xanunderscore@users.noreply.github.com> Date: Fri, 31 Jan 2025 19:27:38 -0500 Subject: [PATCH 26/32] vsc stuff fix --- .vscode/launch.json | 35 ++++++++----------- .vscode/tasks.json | 4 +-- .../Autorotation/Standard/xan/Casters/PCT.cs | 6 +++- BossMod/BossMod.csproj | 4 +-- UIDev/UIDev.csproj | 4 +-- 5 files changed, 25 insertions(+), 28 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 0790fb74be..ba954bef4a 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -1,21 +1,14 @@ -{ - "version": "0.2.0", - "configurations": [ - { - // Use IntelliSense to find out which attributes exist for C# debugging - // Use hover for the description of the existing attributes - // For further information visit https://github.com/dotnet/vscode-csharp/blob/main/debugger-launchjson.md - "name": ".NET Core Launch (console)", - "type": "coreclr", - "request": "launch", - "preLaunchTask": "build", - // If you have changed target frameworks, make sure to update the program path. - "program": "${workspaceFolder}/UIDev/bin/Debug/net8.0-windows/UIDev.dll", - "args": [], - "cwd": "${workspaceFolder}/UIDev/bin/Debug/net8.0-windows", - // For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console - "console": "internalConsole", - "stopAtEntry": false - } - ] -} +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "name": "C#: UIDev Debug", + "type": "dotnet", + "request": "launch", + "projectPath": "${workspaceFolder}/UIDev/UIDev.csproj" + } + ] +} diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 84f4347a0f..6e91614753 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -12,8 +12,8 @@ "/consoleloggerparameters:NoSummary;ForceNoAlign", "--configuration", "Release", - "--output", - "${workspaceFolder}/BossMod/bin/x64/Release/" + "-p", + "Platform=x64" ], "problemMatcher": "$msCompile", "group": { diff --git a/BossMod/Autorotation/Standard/xan/Casters/PCT.cs b/BossMod/Autorotation/Standard/xan/Casters/PCT.cs index 7456a3fe4a..ed1fc21b44 100644 --- a/BossMod/Autorotation/Standard/xan/Casters/PCT.cs +++ b/BossMod/Autorotation/Standard/xan/Casters/PCT.cs @@ -265,7 +265,11 @@ private bool ShouldPaintInOpener(StrategyValues strategy) if (strategy.Option(Track.Motif).As() != MotifStrategy.Combat) return false; - return !WingFangMuse && BestPortrait == AID.None && (CreatureFlags.HasFlag(CreatureFlags.Pom) || CreatureFlags.HasFlag(CreatureFlags.Claw)) && CanWeave(AID.LivingMuse, 0, extraFixedDelay: 4) && CanWeave(AID.MogOfTheAges, 5); + return !CreaturePainted + && BestPortrait == AID.None + && (CreatureFlags.HasFlag(CreatureFlags.Pom) || CreatureFlags.HasFlag(CreatureFlags.Claw)) + && CanWeave(AID.LivingMuse, 0, extraFixedDelay: 4) + && CanWeave(AID.MogOfTheAges, 5); } protected override float GetCastTime(AID aid) => aid switch diff --git a/BossMod/BossMod.csproj b/BossMod/BossMod.csproj index 5b5cd9cedc..8f8d363a5d 100644 --- a/BossMod/BossMod.csproj +++ b/BossMod/BossMod.csproj @@ -18,7 +18,7 @@ false false true - true + true true @@ -50,7 +50,7 @@ - + false Analyzer diff --git a/UIDev/UIDev.csproj b/UIDev/UIDev.csproj index eeac72bcbc..11d763d770 100644 --- a/UIDev/UIDev.csproj +++ b/UIDev/UIDev.csproj @@ -2,7 +2,7 @@ net8.0-windows - x64 + AnyCPU enable WinExe preview @@ -69,6 +69,6 @@ - + From fcbf21298ea7b8448528a2c17a102e79fb7ebde0 Mon Sep 17 00:00:00 2001 From: xanunderscore <149614526+xanunderscore@users.noreply.github.com> Date: Sat, 1 Feb 2025 16:12:01 -0500 Subject: [PATCH 27/32] prevent preemptive use of potion for % based damage --- BossMod/Autorotation/Standard/xan/AI/DeepDungeon.cs | 2 +- BossMod/Data/Actor.cs | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/BossMod/Autorotation/Standard/xan/AI/DeepDungeon.cs b/BossMod/Autorotation/Standard/xan/AI/DeepDungeon.cs index eb3c7a231a..41e0cffb61 100644 --- a/BossMod/Autorotation/Standard/xan/AI/DeepDungeon.cs +++ b/BossMod/Autorotation/Standard/xan/AI/DeepDungeon.cs @@ -78,7 +78,7 @@ public override void Execute(StrategyValues strategy, ref Actor? primaryTarget, if (regenAction != default && ShouldPotion(strategy)) Hints.ActionsToExecute.Push(regenAction, Player, ActionQueue.Priority.Medium); - if (potAction != default && Player.PredictedHPRatio <= 0.3f) + if (potAction != default && Player.HPRatio <= 0.3f) Hints.ActionsToExecute.Push(potAction, Player, ActionQueue.Priority.VeryHigh); } diff --git a/BossMod/Data/Actor.cs b/BossMod/Data/Actor.cs index c01f99c11b..8304564acc 100644 --- a/BossMod/Data/Actor.cs +++ b/BossMod/Data/Actor.cs @@ -126,6 +126,7 @@ public sealed class Actor(ulong instanceID, uint oid, int spawnIndex, string nam public bool IsFriendlyNPC => Type == ActorType.Enemy && IsAlly && IsTargetable; public bool IsStrikingDummy => NameID == 541; // this is a hack, but striking dummies are special in some ways public int CharacterSpawnIndex => SpawnIndex < 200 && (SpawnIndex & 1) == 0 ? (SpawnIndex >> 1) : -1; // [0,100) for 'real' characters, -1 otherwise + public float HPRatio => (float)HPMP.CurHP / HPMP.MaxHP; public int PendingHPDiffence => PendingHPDifferences.Sum(p => p.Value); public int PendingMPDiffence => PendingMPDifferences.Sum(p => p.Value); public int PredictedHPRaw => (int)HPMP.CurHP + PendingHPDiffence; From 461c8d46175d5a1e46a8cca8ef1776a568d01d83 Mon Sep 17 00:00:00 2001 From: xanunderscore <149614526+xanunderscore@users.noreply.github.com> Date: Sat, 1 Feb 2025 16:12:12 -0500 Subject: [PATCH 28/32] bomb enrage --- BossMod/Modules/Global/DeepDungeon/AutoClear.cs | 3 +++ .../DeepDungeon/PalaceOfTheDead/PalaceFloorModule.cs | 10 ++++++++++ 2 files changed, 13 insertions(+) diff --git a/BossMod/Modules/Global/DeepDungeon/AutoClear.cs b/BossMod/Modules/Global/DeepDungeon/AutoClear.cs index 5c41ba941c..e15bbc7172 100644 --- a/BossMod/Modules/Global/DeepDungeon/AutoClear.cs +++ b/BossMod/Modules/Global/DeepDungeon/AutoClear.cs @@ -385,6 +385,8 @@ protected virtual void OnActorCreated(Actor c) private DateTime CastFinishAt(Actor c) => World.FutureTime(c.CastInfo!.NPCRemainingTime); + protected virtual void CalculateExtraHints(int playerSlot, Actor player, AIHints hints) { } + public override void CalculateAIHints(int playerSlot, Actor player, AIHints hints) { if (!_config.Enable || Palace.IsBossFloor || BetweenFloors) @@ -395,6 +397,7 @@ public override void CalculateAIHints(int playerSlot, Actor player, AIHints hint HandleFloorPathfind(player, hints); DrawAOEs(playerSlot, player, hints); + CalculateExtraHints(playerSlot, player, hints); var isStunned = player.IsTransformed || player.Statuses.Any(s => (SID)s.ID is SID.Silence or SID.Pacification); var isOccupied = player.InCombat || isStunned; diff --git a/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/PalaceFloorModule.cs b/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/PalaceFloorModule.cs index 418912905c..57b2dacefe 100644 --- a/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/PalaceFloorModule.cs +++ b/BossMod/Modules/Heavensward/DeepDungeon/PalaceOfTheDead/PalaceFloorModule.cs @@ -81,6 +81,16 @@ protected override void OnStatusLose(Actor actor, ActorStatus status) break; } } + + protected override void CalculateExtraHints(int playerSlot, Actor player, AIHints hints) + { + foreach (var p in hints.PotentialTargets) + { + // this mob will enrage after some time + if (p.Actor.OID == 0x1842 && p.Actor.InCombat && p.Actor.TargetID == player.InstanceID) + p.Priority = 10; + } + } } [ZoneModuleInfo(BossModuleInfo.Maturity.WIP, 174)] From 181677bf8deaa45ddcc9f3a6d3b7b094e8fcd9e8 Mon Sep 17 00:00:00 2001 From: xanunderscore <149614526+xanunderscore@users.noreply.github.com> Date: Sat, 1 Feb 2025 22:33:14 -0500 Subject: [PATCH 29/32] this doesnt work i guess whatever --- UIDev/UIDev.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UIDev/UIDev.csproj b/UIDev/UIDev.csproj index 11d763d770..45495577f5 100644 --- a/UIDev/UIDev.csproj +++ b/UIDev/UIDev.csproj @@ -2,7 +2,7 @@ net8.0-windows - AnyCPU + x64 enable WinExe preview From ed7826297960acea2eca8227a910f5f675f40f13 Mon Sep 17 00:00:00 2001 From: xanunderscore <149614526+xanunderscore@users.noreply.github.com> Date: Sat, 1 Feb 2025 22:33:53 -0500 Subject: [PATCH 30/32] remove leftover shit --- .vscode/launch.json | 14 -------------- .vscode/tasks.json | 25 ------------------------- 2 files changed, 39 deletions(-) delete mode 100644 .vscode/launch.json delete mode 100644 .vscode/tasks.json diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index ba954bef4a..0000000000 --- a/.vscode/launch.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - // Use IntelliSense to learn about possible attributes. - // Hover to view descriptions of existing attributes. - // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 - "version": "0.2.0", - "configurations": [ - { - "name": "C#: UIDev Debug", - "type": "dotnet", - "request": "launch", - "projectPath": "${workspaceFolder}/UIDev/UIDev.csproj" - } - ] -} diff --git a/.vscode/tasks.json b/.vscode/tasks.json deleted file mode 100644 index 6e91614753..0000000000 --- a/.vscode/tasks.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "build", - "command": "dotnet", - "type": "process", - "args": [ - "build", - "${workspaceFolder}/BossMod/BossMod.csproj", - "/property:GenerateFullPaths=true", - "/consoleloggerparameters:NoSummary;ForceNoAlign", - "--configuration", - "Release", - "-p", - "Platform=x64" - ], - "problemMatcher": "$msCompile", - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} From 19fb91eafeeee6b8abf362436bb82271a2650632 Mon Sep 17 00:00:00 2001 From: xanunderscore <149614526+xanunderscore@users.noreply.github.com> Date: Sun, 2 Feb 2025 12:26:13 -0500 Subject: [PATCH 31/32] leftover from bmx --- .github/workflows/build.yml | 44 ------------------------------------- 1 file changed, 44 deletions(-) delete mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml deleted file mode 100644 index 193b6d4379..0000000000 --- a/.github/workflows/build.yml +++ /dev/null @@ -1,44 +0,0 @@ -name: Build - -on: - push: - branches: - - wip - -jobs: - Build: - runs-on: ubuntu-latest - env: - DALAMUD_HOME: /tmp/dalamud - steps: - - name: Checkout Repository - uses: actions/checkout@v4 - with: - submodules: true - - - name: Short ref - id: short_ref - run: echo "short_ref=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT - - - name: Set up .NET - uses: actions/setup-dotnet@v3 - with: - dotnet-version: 8.0.x - - - name: Download Dalamud Latest - run: | - wget https://goatcorp.github.io/dalamud-distrib/stg/latest.zip -O ${{ env.DALAMUD_HOME }}.zip - unzip ${{ env.DALAMUD_HOME }}.zip -d ${{ env.DALAMUD_HOME }} - - - name: Restore Project - run: dotnet restore - - - name: Build Project - run: dotnet build --configuration Release BossMod/BossMod.csproj - - - name: Publish - uses: ncipollo/release-action@v1 - with: - artifacts: BossMod/bin/Release/BossMod/latest.zip - prerelease: true - tag: "wip-${{ steps.short_ref.outputs.short_ref }}" From ed99643703ac92bb7d13088bb1f14950c4f85b48 Mon Sep 17 00:00:00 2001 From: xanunderscore <149614526+xanunderscore@users.noreply.github.com> Date: Sun, 2 Feb 2025 12:30:06 -0500 Subject: [PATCH 32/32] remove thing from other pr --- BossMod/Autorotation/MiscAI/AutoEngage.cs | 38 ----------------------- 1 file changed, 38 deletions(-) delete mode 100644 BossMod/Autorotation/MiscAI/AutoEngage.cs diff --git a/BossMod/Autorotation/MiscAI/AutoEngage.cs b/BossMod/Autorotation/MiscAI/AutoEngage.cs deleted file mode 100644 index 172daf411c..0000000000 --- a/BossMod/Autorotation/MiscAI/AutoEngage.cs +++ /dev/null @@ -1,38 +0,0 @@ -using BossMod.Autorotation.xan; - -namespace BossMod.Autorotation.MiscAI; -public sealed class AutoEngage(RotationModuleManager manager, Actor player) : RotationModule(manager, player) -{ - public enum Track { QuestBattle, DeepDungeon, EpicEcho } - - public static RotationModuleDefinition Definition() - { - var def = new RotationModuleDefinition("Misc AI: Auto-engage", "Automatically attack all nearby targets in certain circumstances", "Misc", "xan", RotationModuleQuality.Basic, new(~0ul), 1000, Order: RotationModuleOrder.HighLevel); - - def.AbilityTrack(Track.QuestBattle, "Automatically attack solo duty bosses"); - def.AbilityTrack(Track.DeepDungeon, "Automatically attack deep dungeon bosses when solo"); - def.AbilityTrack(Track.EpicEcho, "Automatically attack all targets if the Epic Echo status is present (i.e. when unsynced)"); - - return def; - } - - public override void Execute(StrategyValues strategy, ref Actor? primaryTarget, float estimatedAnimLockDelay, bool isMoving) - { - if (Player.InCombat || primaryTarget != null || World.Client.CountdownRemaining > 0) - return; - - var enabled = false; - - if (strategy.Enabled(Track.QuestBattle)) - enabled |= Bossmods.ActiveModule?.Info?.Category == BossModuleInfo.Category.Quest; - - if (strategy.Enabled(Track.DeepDungeon)) - enabled |= Bossmods.ActiveModule?.Info?.Category == BossModuleInfo.Category.DeepDungeon && World.Party.WithoutSlot().Count() == 1; - - if (strategy.Enabled(Track.EpicEcho)) - enabled |= Player.Statuses.Any(s => s.ID == 2734); - - if (enabled) - primaryTarget = Hints.PotentialTargets.Where(t => t.Priority == AIHints.Enemy.PriorityUndesirable).MinBy(p => Player.DistanceToHitbox(p.Actor))?.Actor; - } -}

k=`o}~t*vx10$UCygaSn_E< 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 C`H*1% literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/156.0.1.bmp b/BossMod/Pathfinding/ObstacleMaps/156.0.1.bmp new file mode 100644 index 0000000000000000000000000000000000000000..1a9f1b0b0d6773f006c817e4f508b2f0f7fbdb4e GIT binary patch literal 2097214 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 literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/251.323.1.bmp b/BossMod/Pathfinding/ObstacleMaps/251.323.1.bmp new file mode 100644 index 0000000000000000000000000000000000000000..68c1a35066a76dde1f0b08a6fbbc4cd1a505e52c GIT binary patch literal 58526 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 &_OEhh` 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 z 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 literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/261.322.1.bmp b/BossMod/Pathfinding/ObstacleMaps/261.322.1.bmp new file mode 100644 index 0000000000000000000000000000000000000000..a48c09877542b2a004f970f3d5cdaa4d50c309d4 GIT binary patch literal 813182 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 z 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 literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/270.335.1.bmp b/BossMod/Pathfinding/ObstacleMaps/270.335.1.bmp new file mode 100644 index 0000000000000000000000000000000000000000..cccaaa047679c95cedda77987a5f32c54331f5b4 GIT binary patch literal 632710 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 &_OEhh` zF2XSP#6p!J_yBpWVeSp}Y7E>(E!pAX+k%~Vr@4`EA=juk<2Ddj3~~R0zm7_6-LGVY z`w5*5w~Zz>O6Qo2JZOZ>Lxu#}V~meu?$60jlfa1&XMLLw;II81*C7ZcABN5mBHVts zCc#Ebi0`29@4hfL&6!Ut+!ye#wv%^>sCz7BF-M|cIaXYFc(O&7vB;Nk+- z>Ct}fb`JFp%Ty%sb=(gr5gVLf^_k~3Hq=^N4M(SwLpJNX8Okt6h$fjIUZd~Oo*`me zTJG{Q&P*o|BkG^#UQ@Ek)^J#QL$aI|l_Gn}jpnaxK5qoTB<#61p!I%Ds|eH%TVh4$C)HnjzU&kLfsVQtpPXv0>c%8jWTz_EFif zohr&MYCF_jGnwX45!~mld!{Mj4x0@&*mLtHM2XK~Oc<%222E!EPR`u^8?aV!x#hXf z@i5q`UnyCb+HUW;UnmNB*iK-}T7l0!y`-DSd+Wi%-5M5W>X2|Z+Xm_A?^4oxZi4|5 z+}(tb8%a*b$su4O>+J_a7>sHw6J#23fm@d1XV7l#| z^UQyBBHX26ai$JbGaPr;_1g~plk1_>S^6vHel*2xLh|{!x2*4LxS?#T)Q+HRM;*-h z=lpYgEhQNG#PRXiV zx;=F>mG}0;`8&z`xUsW)M`BNM+gX4U&%aLXKc>s1fxc-8E~a|wJ-`SPhN4#WA`J88v-3x~-6;zOfcJ zcedYNU#D-<{ZG&&WMwCxkYr#pijC{<-56Gqcr3wK8$sh5Z9AiBUn>y1VS1#U$7?ZM zat3bvl zC<7%9=EnLqceO=RRb%l_{FDzK6R2}7(c;6-Q#Y!H)fREcsX1A7Fkv+5;w`+j7&cMbeHTJ)XN_3kwJ1I z_3H$0E?AJ9%y1|jTD&Wk^-hVya%SALdNApRVQn$oAMhM}l_7|D6bSD6FI{X1rf-@| z7|if_+YH>2=cfAR3V$6n-Z(83O>^+$j3Lwmar*~3L$G~AF3ZN=7RRjoyurK{cbA>) zR=gA3=N<^$?>+d5^~T(>+ovW6HH1tyl#-a6a&x{r;a-pH`^1Y0?jJpH)eyJy*v+Y3 z!zVkF6{RHRrgJiLw^=3Liq~Mig-8y}N$2*6HTCae`{dX~1be{U**N0PWc}XUv`EO# zbt~9za?ZIiNs-Dij}!Mse)ZdOiRFH_Ed;s+4skcBbS9)?*G=`krhUFU;l_E%_>oJz zG}aL}9&399?vg(LotesH0p({(LWn!-z*=JbF(2>KS_-~3Jv(zJ+*XvFt5S5ku&DlT zL)>-$*Is1j7(D4$K35V)+}X~9jgfdd2DH5{Q<%Hq-pQ~QJ!vYkfr_~6jXCWMw8sOC zMA;*1CNnOCxU+_wr5ucVQ}E`YxpCU5bBu-)x5hqFuJ00oFnGu0sMF}J?;tmIq04-{ zwj0a!e<|utp@$)jH#NJQc73qFh`Wit+fgkH0`-}`8+~sv1mVrKEb zrnnm=iHJKJxT4(RYzBy<0s0KdM`PYF5Zu(x2i$gZoZ?{mocjV~ieh3z>r*mA?wv$L z$85ZxqR^COD)LRj!A)k!Eg|+1Ox*L9bnb{)I|8_n$i4}8Hr`JmC_3#_-_bC#j?R=>3Y`mXBP&n0m+z@i(M7J&fO}W#0nZlM8U^f~4 z{Ug>?p=0e_^xcrYkBGbHbQldD*qeyc?VL7ZQm(9*(5Y@FvZAEz&CR*VCOhRDS`=L7lLS*9KK%{Hz^QYLhFk8lAis5;(xr-BrqQJ1x$DP1Edg@VZDi6H{|6XqTxI38^1v$~{k2WF*i80ol{wf>*qF$<@O+fn?L2##e#$^KKYFr?+o0lz%6sFmALxCi|(G)m4K6D z7g1@{LBg$FRIqQvZ5vr!g}3CkEzryC1*^dgVDdLyma$Q8V7Fdxo%?g}xYx!4Dxb^SMV-`gOA)q)=tpu#%^q&sTx~Ymx-;>bbNF^Hky2d@ zm8P~uIaEn8+LTf0WJcrO6x+_N18)2R>?N9?M!CYRdEb@fm@uQU&kr1Z6 z70kg&Y}uK%P+sSy;ykFBE0$y8kWX>Ut%r&E2WKlDM_0ZCP9`Hl5OBw#cQcy%{laZd zML!^DjpIId0b{mXhPgPVP|g=@ewVU3rhr<=T%4QG9l5CDj+(i<)_a_D)6dsi!-AM- z>(oWWc0Ss(ym12SZV9L2ks*Jg-2q#hyWU+j^GWU%bF+MoJGxvO0_EM9wC8IsBrh?B zgWFI@_-Y+=4}WWcVZFp3rmHK&2!HjX}yLTHdxBOymdVIlTbT%xjk%%bx2W9S5>cT~=G+^2z|HRMLF z&>CE1L)=yWRB=G3T{zp((5>Ay@tqB8wi7-|B#<_@ev)vPzsk}eHjtgmPh?Y)Zwwt< z*HX#jOh;`1?OFVtap7zy+%_g^`>6a|HC#fZF7`JlVuMacEwY2#iji9vKHv&!6i>M} z|n6f#?8ES4WSLyMybZQNsc=*ipm`0-XYv_QU>ng?hSg6 z!g%3u8z?_Af%_}%g1b9{#%T?eF~*HArJmlD8w>pUe-&X%&1V!(bOiLL)Xc;FYPMht zyGE77tMf;%gF)3YsTx#LcmE=x%QE~V}y1of_LqOCe*w}~Otj}8w zoe;jp_@GDL#SThAX6M_v`0wVprX}i0DnV#r^Z@$gH0CljG)#N$e93B4wKxyeacgV< zoYr+FHa9Y)^35QO@Cdzaa~*e!0==Z;jz%NgH_q`i+*b|aIy#7Pqlz8r9OePJ&z&gF z?rilwGwpTM@+W92+x9k1f+`2{X zP(Q!pz#^L&;E$i_Zj>Z&+_s?~iW`Mba`)@T^Vn`Evf3lhN+ReJA93Pc*0Hjm&{VX1 z{VzUtf_vi<+}%|PS`e2qkhF7cYYmyL8B`9!>7HpLf`;h)Y^^&Pp7-qgZ?rq1<92?_ ziP5j*Gi>NsHN&bsNwxFk8ZO{g8W8{nNRw`y#ECWco-BSEkb8{yVflw{0F?V+{eeng$Z zxK#0lXf@JoT&`PVO-`gBM#f#@QjAQvafdYTRg^L}?L22o@R%j>YQrLl(m@mWuPJ9jJ%b8jT(G)h2s!?_%} zG>>A)X=6x^J26>tj91ZDY2L!9;nbbKD8B zoK(t6p*F=Aj{C8fB~9XkuXiwlk#u#G98XoWB7>IDxP)w7FX?XcC`H<4Xr+2wyufhI z?L2TNo!ut9kri{ts~?ZH9XXAUyiL~lTvBGr{fIWVHq3qQWqLDiE$4|>0lq2QKHy6t z$6XKSyhzR;(`poCBJNnCG49YB5}{L1iDjr8BV%s=7>7>Nv+qFMY00=W?)nWr-I8$+ zE<$XrrMYw8BzI@qoyv2-FPBDf!@OnpNSXA=b=w~gxd%@r_a@CQz2e7dU`dbNY6(mB z*;}9}ey<_TK)zYH@%&-419#HSk1?m_@->?@#Bzs0fuc+Lp10A{**y<;ZNRNr0Dm~)`@-V&Pb1fMiRn|ZBj?7XWH{n-Fe9WH$#=;?cg;O2 zcl>=^FWAYd_ipPzbI%&OMC9C91sRSx_YK9KVZ@q~JKkAyqMdYu0jM_o_Ki#7?R37w z=A+|2jh<}usWZo{+|}Qjzk<(4m21>PxKk_% z`S>t$QzOA@KMt|(lshydMEh&CyW*eFH{B-93=LMt9S$chqTJwd2=`>F3uOE3BJzT} z9px_EqY-?SmT=$s<@Xf#@P41%0#FQ8%JHwyFpc#R#3Al*av?4r&A{D^b06FE%fv8tI={CDsv|%n2o!zzyBMg zNw^hoE;rzw*j&g{2LGLNL#A;PF1989;dzuUa97!I-svcrIH_-Ruc_}l zAJ+y_x`5T+IG5ND&muqWs5sLFCj|}XKYjogoOYYBJTWBqZ?4rx;7gI25ItuyXIEo+|{p! zE%sH^ljBuQIkl=%v-kf;Bq2T-3Aj>dcL>iV<)8b9?J^;ln^IPgj2vV67HF8B+-j*gWiC=A6-M?)-5JnTP*+WUp+=Kr@pAf@dfIn+1Vz$divsNQb&8an{>3~8VmZaU#X;^2~TsI$b2qC z&l!kl=O}c7`+q^NY<6fCWLi~ylyKLEf+tLNMZ-%q+J!sPl;L;jryQ?0w|_rWVJhaK zMs^4%xI2tvsB^^m93Wc4?*zhxzCLj0R{(?<|`?R>A;sihRy-0*VKv%#G z(7#X=))klO+aR@};3?DVIEMQaabF7eAFDWa%6$jipW*!#EIgoP;m-79CF!^y5n^$AACL7fOx> zJ+d{mA~(1jvc1{Q9WFZgsd|lU#BJ|vZ>Zg0Ywm!%GeuRcF{r=VFn61_ODhunH27-m zxzpiqKXAWjd1VQ8|e}* z$$oCPro}nPP$uGbi+bbEvd_MCZoJWHPO9n^1p3C12yo~`0(<$1)g12F|B|A%tIaXl z+&su}4R@<45%nN<4M3lyk`Gd)4~I#*u_LnHs==F)&$hz7AwtrLP71E1A+{LUI>j5u z+tu+yN+J<(T*K|68y?Fkr+kWwT-i-x2^u-xDl|@pH(@{AR9Kwjp*gy87;^uNb&FrD z$Kb}?<#r`c83pe3h@>G%G~4Y^m^CrCoZiJu*|*J2vac<7rKK&xicBlN%27k;T9dxZ zO`URAA78`0ZlrJfii)|zkA6gj=FVI1-z3UK%@5XZ#<}g#O*_IR|E6QPDL3zvV2pwL zgY~B#h=K>E+IEV^H07e=8)V#dT*Q=p>)foVQ>;PJ&S|u!u}6=Veuhx~B!0Q6HXryT zn8~l>hR~YM>zg@B2{l#wQ|)ow2{%-kaH~lH9(}7Z1iUV{d$K(AhWN&RHCmTjzeR>H3Pf zza+`10F@W(_04On`nU0wMuWtGn+AcQX=z!cZ8(}%*Z0P!3f%E&eY7}89k*(p8Z>R; z{z6k3IJ+V{Ht%`QC0zBFomM`C9DzFt_MRHU(%(5>%kmrNJ(0C9dE;i}qOE=F+#iB_ zBivF%H^Q9?QGMAOl>}kW%xyF#;lUFP8jKz4_AGFBP{4$_b#6r(gvKC^6bY9S*Z8qg z<(Eyy4Si?3NrSx99oR@u4SPCgVIJ$E*6)&A`_{Sb#RZ*LNg17UWJNm(R8fy{e>9#v z5497q^5KCSH4;9i=;Oul#@yfZpG!lN~%{NA*Y&z}=L##ZEQ<-OUt)$?XG_+Sf#_h$Q%t;Z_%H0Mo zg`E0!PH{N-sCi>o`c!3%RBaYq%BoZ>dP zTPoR_{~c#1ksWuKsiR_3VK6e|Cv*K$hSIIJm$CmW%9}b@*pj7HOH`9~TLbBcJB;&D zMqDR0R^IPzDJ%~{<~8a15&j%^R9bMR+$&W+t)pA=*l}EKE`2XWwrTE0AsV_9?jMID z$i+i_8YDgprA?6e`?+wY*5*W$Gbivr#@}mjSGray_om)FtQF2;%``U^M|_%7=8cQw zQXG>WYU5?LqQAC9?Wnc6uxGAG5E7HPzYs0Jmzk@?Ut%};=s{@LP+z@%SUp!ss(l`} zE{od;rSBkw8p&9{IrkQ)ZE<=sy6F`w0Aa)(_qvhNeb5zgdtZT%UVI(C1f9G)8xke1 z#`fY$CBZD1PJ`H2-v)Q7+rIx*158?5CfrmhH!$az?jA(osIyJ+%(CEZf@_VNx=NiU zZJ=?J2C)zIL-M|fp$8IM%oeSkG8{LrC#>irB_~0r;694ytqv#Dw$d7tq#gD68z_Uc zq&^Cr;93vHlVGdC+{KX>TFvHZ9vc%E=K{q9WL6s?MrPPkpAUAlNzl~I$FOw zVFSoI$KRW-TQr8XU-!7tlfA4@bLS@mnR9NLtSVES*S{o*oay^-Z8LW_y*uB z@XomD^i973cV@uthS?C4w{zhJ+j;d5Ar-emTW6?~8fx7aI3|UAK#FhTjS`U*}dEi^^MZ$ z9!hS`@Lw4ST|+N#V2Jxk?`qczQK8p=ypw6w zkFgRv_9eMvaHB@nHYvC}r|;IEbD!gkA}eLN>;9$7-c0HH7P!05#<+`mE6-!tns;JX z&$M#}d-W3TYJDXk;BKAZPeP(Su49U;3oZKQHmo@Ll)L#<6E{sTVp@0MY=?ChzR#`;v*!4g8n9;P*n3wt;tg84tiT@?{U=fi zpOFqVyX0w0YQmAJKGTuUIv@S1DT+T@hop{sI9?7jyO3IS!rcXKKasmc&VECEOF>0r z-1)?oak}Kt0K;+BrIs}D@r*9r{^aYpE^@Z0Y(Dy=C+=(&zGy3vyMu(PZ=G=hS${32=Bb?wvbL zX4fVJWcsGZIAbF^7VgSN3AduhPH$o^D3LTTIAVQM#F%+A?#WTd*s?IBKOPnv#xE?K zD7yKEYH*cvYj=S;JVhEJ<2d>Xn>O_CG+E@k9d09M4DUGEeoyPAVcnEHjrZ0F_hy9q zwEEAjLvg7mY~j9=SiS^y^T9-hH*DvQ$;jzj-z*(BE>SlTq!a9^5|=wRn-0#PZ-|b| zrgA&E?e8*L`z-cbRXW+?sNlX0eP6h}Ah*vIo}ELBOIN0(-sqaM+e~f!-?2$aT!EM}whJF7OXKhr%txGLM@sWny`uQ_z4-xkXzudZV+)y`? z(Puh1&;A2lsUF8kEYe+aZ@4_%5t9zq_b(7YXttfxRk-;J_`T^2acjyL4eY1PeN@|I z4RM#I`~??AnD!HJCf+F3kt$mm~rxncH}78e+^ZG(}oNJ+>}$?)R*| z?dC;?T<9Lx$_Gp5s6Rn+gmG;Zcpd;+C+?6i=5A?k90eoK=3#UuPh_IN zfz#IxvcJAzyp_6qsp-Tx7Y5N%8UJLlbTwNEoCMtE*NV5e0uEwmP+*B+)Af{rZs|n@ z<~B&cCgP@3Ykbdw0Cs0C0WNMlcT}v84vr4_zPB-Sp3~xwUnp`w1laLU0LrdLBmhOy z8(t?!PN?2+duBQ4>pQ~zr__)&&SNPZG)fZG1aKr{nIVS9o7_GyZU2{Y3 zH`-|W|H*rwA32gN&(EX1L2m(^jM6O!lbc@p4|27DCK{bfFJSK4|3FA!0L?|vWTORj zHin`bmqM2gqvmx0)pqGmXx-*8m@+OG%{>g7*FChFMiE$E7Rx9!po&68h3os?vmejg zJt89_nLkK9WV+jrXJ+qXzuf#sxEl+r{t(X|e0!eHn;bc26*9SMfv-9LLl5~c5T=OZE=VE(upSN)Nc{+6*3E;M{Oy)xpuiB8OpUc;*=6ZsaMCr+ST& z+EH<*j>84;W)I$&q;%;vCJswY=aA*a88%bCMB1<>1ws<{>5!X__&9kZJv{%!s+1US zo})Zzu2LAJMbgs8IO$Nv^(|qe+;1c<+ak-os|?)KIj8cUf3n$OY$4zo{Vu*_WQ~c%k4dJrM;jTnH#0C zus|-OG@LOaNWyxY&PNV8L~n38s*&!9CsQlZZoO6Cb{GNOQ{fJoP*Q$^hibZ|vEXHt z`+0~}`;fgaWvAV%C*1q$*GTosft!ru(}WT3Q08PcF&DuT_djIrBlv*>?!p91zVE)o z5@qC)6R&kB1I--|->UOZ-aEHEG}Vxa3wm-<4Ky-{BRWS;C0)nop(;e2Xm9HO)qatIIF~Qc3c}aPc zoW*=mKG$VYu?^>BNlD9bYm;{p-JTmu7@jpSsH30~hZFiDWTLqrHZf7mc=Cc8p(kzB z+ugy-44Q2r_*Kvg#a&XHHXLJnC8}4$A|}mL;3mNYNyFS{%Q?{a(UUes$KSzHF@{6X z1aej*iL4JSCNFvy@hPGerMi|Q=jLO1%X!A~L!mkMYvaQc z_l!c)5ed^8)uHoxewT7-V>h1uov&*u*arOp_os+q)ArrK9_}&tUS_i>?sdtwhQ_00 zYeV)A`$XbWka?Bq%Akec&AIW=`4Ej+jIm}z6ol%B2%VuN;Vd;R!b4! zi@llE!sh2z9pVn~li8R`7L(BX^Zw1MPp`^N$3@Wo9y^>%U?y^Kv7q>HVITzY;*~CU zBMomQBDO_Cxhd{C63|dZ=GZFnKHOLCq{0waRrK*1FZTYKsGk%waj5Op+M8C?$iZ@k zlQ+QyFUmGN(SMgWldSM$%c;_)7EQFb)CwQKrSc5ts45GH4q*@+|1~!~h3~}{XRJ}2 z$S&Jnk=ro${D77kfAd-$zfrbuFHW=aJhwD$7K53K{gIohZ6$*R#bBb&YOuDf4Q}4zg{NMn+wRPy*5Hg6W({h8&^FFqb+aM*4Z%2D>Y4l(sAun>HU69s@ zi@03~EWaXcFR^>f&O?0KlYv)|XO;|GdG3~5gvv|Y|1s}nLvGZVNG;)br<{sz|uUB<{SQKMLh1?hpb%N=XYaFD-LpT1VYsrRm3ih>iQiePZbt5JYM#s^yL=_H$!j ze=giuPnEx;yqPF*cSaYuiM#4^V=6=9N%zgK<;Qrf(^*A#;x01oacw!-`UQRM=P1Bo6qlw_WR+Uac0yo`^!pkqcd^^@Y$AXZ##lG z8nlkPxaUu&8aJM96@sg6+WUQQFU!>4;C@5~Y{7jV3}t;Wgr*t?fA&Zzhe#(!ls{pk zL|W3rw-t_QNt{+n?)SlMu{!g&rYmrB#q)J!-`?+dPD*8Zm(w9t==;K*j!ICX+l3I{ z-u3uQmAGX-4djl~_BIpy{<+*GoWTRp z@U;*UhCMDWCF#Bj*uJl%D0Y?ah1(SWm918#k<5V(sc9qJOB_zQE+}Z7#GeWZcdh0% zxg`>xVITf_hx3%xQpmp9j$03im||;(DgMTm-D|^zRma z`i3V7AEbX~gwdV>LdCIKn+^LqS}(Dzk~XC|VUJ$e#T45*up;kVAN;4jS)?yFsC$zUkGVn%mH!=}BgJC|&Ol zLvwlVg^tvNea+W8)M+TCyo~!Xeq(L4TCAt-9V?t1qm8`b)t46KKKuk5K6}J=ayhrH z9qB`aJJh0trNuh@>4mWpDO-ISijYgVCr=!6H``MVHHjN{W&-!Gl{q!9+9yl3cvi8= zS=x9zm--8Svh7kNpOhwVoehByUgbS1aoeDw_mgiNPMx`3hCJJbtZ;b&cV@uNZ(BcB z1^CO|i_5tG;`s|$!9v`}>U4|(8_Q9$S;L*z#wFYZKSTR|xUpi%&$?h{c;g|zh96zj zDf_ka*$W%IGC$-w#X&$yb>6Z*U9|`q@cuIHme-SX6=z@hV@F?VUCrqz1)jN ziVfVorkYsMFF$|lUE|zYV~%sj`9X3_3zED(Bo^B%bK|iNZto)?em>y#GqLB+R$(ao z#CPXO^^FY{aeI6H5LW7b($7Scd_gfqY{1`ypnNZno<*&l9r!FSeVKQ`*S)6T=7o7I zqZQX0?pbRkzWmmRLylwg6qlCFJIbA%w<2j;cpIHja$l7jz;kfp`C%Lx-Vyg{$~=zK z$emm9V;;-Uw}&wiukW)4MpPQ^4{&HMY}5{p-eK%=?juS`=S_PG4%}FyqQ8!Fe2qfT8Y;0D%DQ>m8z%fxjk@0|XNZiH67d&UtO@a7QKfbN^HlM`AtTA9Y}F&TWdrG49n7>rN})(I(iR)pU&Yj{Uh)PSmv2 zJ@2dbo`q=7jbpRF>4Avq9NbnkG&d$m>OVpH+(#qalZ9|sbQUWsDNUSkmrs@9>GoP9+@#fk8FGcFih!VN>boK_~@>%$p%2*!YE2E#tgYqR2~bN^_r z?(EaYoIK-}YlaBl(B6HVt^Foii~1$cWZ7Pz&kfq!ks{5piTj8aR|7)QY6l%z4i@wc zpT?m}QD&OEM%RHH$c~(lhA12s75E>QxR@o)oy4RJCvUvx7bDzKcH*W3^p9wDGRi%i zxI8ze5qxEI$bBs9y=usf+6imIWNL7Qxo;;TSqcZYrG1icpE#WDN{n#Zk&F5`H(-@;jOPm4X=6g+^};W~ z%jGW|ehnPL{l2y2pmMweKlj|gZAg0^H%_%2#V1M2fE0#tO(fr9SQs5D?)S!x_s0B+ zvuswxIN&xEiGC&hni}4%;XXhlDQBYF8{ECoLCd(IFgJad)ePf=o6OixVwUZS-|_1n zw4>ZYf*!hH8)}p`zbA$FjXKV_{Q)fF#O>-=9(}xtP zpSStTI>Ln0pm&qB{B#eaLm-fVM_am%}pii|t!5R|sEGM{JpU^2y5EnU{n=?J0( zCG9Cja=FLc=QPy{cay)YBTPK}rcfm542{uc@u+{iqwH$koc_lV88f2AExstEgck>SbY7}10Cw!jmA1brjU#q zwd+;=Zj`&SIO(T!O8F-)OUTxe#XF0Ue5&GU_hxxMu`T6bVP`($%4ujUle<05P32zP zn9yTZ?5GP|hw01I!H6)^^YnOLoJ%cw)%}+(p$kpX_1@tbw#cntSuuS+M~~CO-To1U z9P423ZZa&fG}tdHO^^F{lzUFkjQWmNTco@wT*h5fBkd_4h`9Wb2+{B#&uL z>1{D>Wsj2%pE-6Eq{sKvVAjJ_kTh~v&TTmo-0EoG=RVCd5T9^!Bc!#yZf~}gjN3zu zFQZ{Jp3bGcQQubLI8brZsB(zfj$87eaatPh9=7+x_3hnCDsFG2SKQv%J)n`qn=&2Y zZk_H9eg_cnkZf{WtPJ4Zh9zt=lr>>>cp-gDR`+*^?+0bS9Ht|@$uvf}MPnv6nEh>LeK_2Ik($mA=mQ>f z54eTR-fF!3PfBjT$NQ5McfG(`0{+HjwkJ=>A%)NaSo>-}YD3sXa18f{vPAPYV8Ue^ z(yPhTJ!R<&;`RnNXM;fGUxqmxZ&zB@&MRW~FX1MPIzvhEH13kmyL81N`yMwIih~qB z;82MD3O>v^6xr;_Ovx5L_vu&SZhas){Z&u;YH737cA|QiJ3Gbl`OuEIjqW5}J(WDyjn>GYG`0y7q&=vBmWJ0mvD2L*mRDn25Yg zFRbwG<%9coid=l~v6l|qBgCTA?!g<91kXAgPTaZ?@I zzW$}$gA|-YRm>*iF<~wWB)jb$=iZpm-n8!!h`!vaQJUQg}!N znsXl!+F6Lp_6OiTXLGV(_T(hH`7ClcD*l?e9p%;{JsfE7vDF7@1Zg_g26wjKid**; z=KeIxBY24WWbD0uP}q$$*S1K1fV!r3c5w5gWcjRQ$gNH+a4LZWsY6iGAX{+fV}!Xu zHzF9{)ZYK|NECO?oMwBUMTYl0H|Omq`ayr1XX1x;O_ zBwghy&Cd+Df3AXp^Ge(Xxlnskr{N4KHwwd>9>cnY!)ep!wwwC-p^ND_t z+|~IX4j`@&nRIXHzRF*EuijmSn_Kh&^&~W(WJ=eMsNfOq?4lkLm`B=<=%#+|ie0&X z7}LX%4w2p4b@TaExEb*w-6RM{YdBE9v^*NNx3&!9p+5{lv~WLi!O#1wuV6X}3*@Mj zU06JVMI!ABeIG4^(w;`-j`H$zpMZKBE*Z{fk?$>uEB|n*T$h#HC>5U56p&oP-MSP4 zSD$-OY1smO28+Dh8{E3_5qogk&_^8d!1ryxa5x%M9YEs3YGkn~8rYVor;XegI3{Y7 zqsn~prqVp?#e7a%@w`xD%_Uys9rhr8tUFjPB7w4^7dS%Kf14NZ*b>H z^7by;L3=|TZ@zFoRpS2c*)jzBIKQK1;f`X$F<-K%UK*5XvuyF&p6;u`APg##w=()q z^F$I&{Tw9(UD?;Uca$3~7)ngs-}0Mm^VICygPYQ|u+EplUAx!17ntBimYbn`#5uU* zWDvq>Pu!RmjSlNyZ*Iog8zkN$b+&%derdCuf@eSO8DT9XkIIC+R`F0pkDf*|LUh_A z&cRpFrY|zD?ZJ(NzB;n=pw>wVbd*=JJ2z#HhsebAloNeJLNx==eJM6~wTs#zq&HiM z&M5a$o_@5wTbPuqu`hH2TGc6`Vs;biOovomHe|!IPTBca_DCpmo1oF#w~NN%z?!Yt zg9;ghBSxNdTkbp+WeGcI2Z!Zd*wnj0Lz@Q?TNmB#-;Ymm?k!ZF*~K_FI`HMDmV=B|-O3b_cY3RH!JpqPrs zcjw?76L8-L_rci8g$}F(ZWN+rl$%VlT8rJI+{mth_HMF{8x0kUr5nSL{Ggs}>b~oQ zyT?NsG(ZO2Xdo@4+|&h~)?)W4_hKJzBogZkXAF~M8b=9^L$JBW2fB__;~XF2um|@K zxxL3KCUV=9;w(AIHOfr`#N~SMt>bQ?y_+yM^+Uw2bnZlQ0t z45bb2ZHI9_WR$xmj6p@B`wa5|0!rCYgd4TnGb`hU2SU@&C^!8)p(#Hv|3fbi@-}ET ze#p>_L`u+lZZS?J6zvYvZ*fNQCaPMyl`3~rh|cN8mGv@5y?q$J~RBvYf}lM`>dxKG^Ug05o6V`Ati zcgsaao#1E-YO}(EtBM`9@GYTRZt*EsoxSTxeE;&aAB zz&~9SrZ_wFd7%m&IZtTgGqvRI3za!Gu)Q8;Ow&)&^KWQx+fx-U+oWUm=f>zhFUk?_ z3*;ZVk<(=bHTqB*4T`HgbZATV?p;FQz{g6OgK z=950Jyy{#(S>R5sqBV4-ad=SQh1-N2d)!UuZJW4u6F1g~E57g=mNa=U1ov->!%#-t z>y!17PbEi?XkAPRM}D6P0a1Mia2s;OC&F+|F-jfky1azD3EY0!(i`U^tL#_?JMg)R zMIMqy*03j#Cg$H<_TdhbDITw#e6BK#gS~YBYGZp(yGPvKm7k+~_bZ3oJ+r|*7{+nH z_G=_`s`tu`3k)MtJFGoeM#ncg*#qJJLK6Q^c^>WHtg6Rd&YN}I@47yBYx3O17Y?-E z&h2*Ar$xUWxK)ph59klia_-;P65_G<{e12hjrbg) z$mE&zu51^F#da<2wVdRE2l_`wPunf<+jNn2-0~bwJ09H-_o8SY`(iSK$y2)ii+|*H z1IomwCl|$kT}-~aguC?y?zRi|c9yv3pOG<9z+FG}`MDT6=6Em`NC$sBeT?s7novw% zt-^H)(+jMn#0CBQ9i`O*lCZE17lw1n#e#c;favelRA*gx_#R zB{)vCC%J2M)ybkBG-=ep9l6FupE&%;qIY|Kk0BjbITPDcWN#RUzFTg+`!_x}dQV6B zG-d5L*TkJ-!W(;7fi|;x;+PR_q$IZp(V0nmA6#((icU&HEFK+e_Njw zjvD0?8!i`390$u?K}r$SsAu^UVF&Ju;Li8NO=q$u4^BQjR@^`(lfZ52ue!%JM)e=z z^$|^uv$gNv*dxiIadeOg=f7AynivR2`^rTxR@*gH zyvWQQxu>tXmo~%|Q`H$`V7x4{HE&RSVmx=f{H(&eWI~pX9jAZ#(kq$}fu5Dz9C%U` zF2*KD;I4b^-6(&px&3c2BX@!3BnQ^wLxo=QP z?=)}PJryIu2^w_4o&Q)u(hs)G4MHkIM^;_;{{}yffAZoZ3h>-gAQF|9KQ!REkI;YK zC%5(7-~n76n}RGUs&8sBBQ}a~FE~~<+O2{qMN2K)=LVlNEEGn#W6uRQ_x#xz=XxJk zK8FJemAI!Y0yjV8ka`^#R=#K?+nl@n2ac7^g>ok+-yfp&8gZBuPOilLaM<3l=Mp#7 zoBtuPtfSp$c~)UE*aQBnkW&l$dfe1DEUHoK&i>#yq`|(&?K=#wKdHSb2cy*CY+?Y? zhEqA3qev~bAh^+C@VMSNrxxz{8GGX93f!^N(R+IE&|)s5+}Tryvpm5T+-V5{q&{~f zA?|7S+rW)U7jkjNJK136SbO{S*~OeNz{AgOLs%GXsyfi#g%}}9hs6(rHti#~rSXk# zp2H+V5lPZBa%ZQr#4WcFGwund!1KQ}lvIkO-)=?0uaU39ZDK}^rA4Qf(9iSnU8Eoe}ob6cGy+-(SOk7nTw0tkLYYLSH6n_dn7^Vit(VG-M!-Qlm=rS+|Mk9%Qe63IE&hE zgZ3W#)Rvf8dfe1YNmf*}NR4hgv2cf{-1=jK)gm|bThi9j_`!hhsu{)2Dh(A!!rbUf zc=-TDjI0?d8cA0WTyuCR*|zp_ZeE`|Sb{oPTzraspg>p@p3iAzR>LqGgT;~70M{1Y z)Tg=C|AdbY%BRGp~#3m#vCHyRl)}GRY!%axD<$fuJ5V!vraqB|H^!NvjVG-3R zIBHhHji)?|v!YUQikoJ6n%5}34Vn5qC-I|WZF>jqURveF0^Xaq;rH&ynexj z0G84sD}x!{=cw2aKMmXkxaBKll1y{g#7$pJ7;^I)rov2;XFcralJnShvM)DYK^x7I zw-3gSo$7x=lplS0GgVS}L3r0_A9 zYlHG`dwN$YL~?I+#Wxg=o>fcEqU(j`VnUY*khmLA}jp9w6{T^%_6i17K6K@3N1^hz#z+jJ}LP*w+$yHWWyCW~!+ ziB!|z-q_W{?6V6q>7sNZ^aY1GjS7^U;1Y-Kmk69PH$5A08FyDx1{Ru`)R%LU2B1;E zdg08efE|VMZsJt{RYWTpnYa+Ns_==EmAU7pW?v)78-HWmYTVQ|OU((8Ce)0{VslT> zh5AlHd829b%#PsYT)v`qY9&LXbnwk7Zo$jBYe_uP-kRH~ywiFu56x7f#~bHM*?#w$ z!28^fI1HIMYKca2i$$?xSMFzdatsu8eCYiK%NIDTt9~Bvw_@DR+t*a>|BR+DCE%WP zUt?f8vPjJ6sU&Ws+tANzZ_#t3@+W7;9eT9rNP%(E=_Sm)KKq?__95j%4XmWbWYRrb zfxB{nTQv`9%J`NmUYoeXeEZB&Dkb`EfA7*(;8xn}oO`a$G2hTw?n~v0ay21t`n6uo zm8pg!sh5Vfo|~L37r_ztk=sd7JQ!cj-Rog7OYPYA@ZH%jbT;0N^NwBk+ zH=>taT%>sJJeguJ%sL5fLagRi7n&&Aw|B3Hg@oBYR4X^lE*m?VdqY37@BXZF^sZ;g z+h*l?&$RpHi4NbueJ*;^PvF+~RC_06p4;i1*SNjvF2tfM<1#rB&P}WrT~5(RWybA&l!G%o4qDx8fR+CtLdtcK~?<1iF;V3vb2zT-E})J9Jq`xX7ZdI zn1iuBlCvbbv#on1DI@_$;x61sn#C*s{Q2kzpJQkh@hK50)d2i?)d?K14rG`%oZ-V-(y9; zw}z?And4d3$L71MaA#*xfWVx_hmjvOkvlI;`)WLekzSaFxd4(+M4o$jD&PJI^A**u zR1>Gcg)74jbgtlFe`yMbj&IpB*j$A>jW}fMxxXWm9)KGMsf{9sxG<`ZSvMaQo_n<{ zfe@boAw|7lL&<+jVN@NK_kL6Ud*Z&p|CsE*URz+Pgk}m&TT|{;=crle&1e3|JXR)$ zT})Qc3f$b^!-dx1(o(d?+zxL31Ote; z9>&Y$&>3$7_YcT7u^bjQwV!Eu0;G>`Mak|;B@^P3MHH!F@PW3NDmf4qR>8Z@=D6#H z$3>7q;6~5JlU$wShdnMXF69<00yq2CaO1HDgZK+cLEClQi=;v>zLydDqmF{va%AZ}+6adF;A^d;LZxhWU)tsspr+xvqFZI7FyM-Gt1A!3@nm?@Frd_$oa z+`?V_p9sI`H3_SZY;x{=V)B+5KaoF5$-%AeONH@`_Z}sc=o;gu$S`~Cj&C^cjGI@G zj>3CW537!BsOFc=GbtD#U)6cM3^h5Aq?z;Bge?qsZl$!b?R+4h2&)W2}hd9?Z-J3q^(?3 z^$xE6Uf{*i*n|$HkiDOm8o1U2Hmi0w_>;j|=Z)PAv2S|63_A*hV(hgI#B z%DoR{1i?c&^hndnQM-GRKJT5GqK2ps&$!Po;WnJ8a-m9m9vgSi9+$G(7o6&wxoh8F z(AT-|bwkjVZkJ0~K7y=_@AeVK5q?uH|Y`opO?vM?0 zw<#faQJmqr8ohiBKJA|v2TqAcwr(48ro$p|SQ4`aTIfmT(9?LAUhb`fN zLw3T8Be!iHcVSMa0Fi1{586A#@!si0cQ|oS+(^ybxY5iKqq1Dqc?R6L-qT7(J8qp6 zp~s2mt|#4V(>I`AsVTW1Nq!p+SsdAjH4zSeBi#7rkHn2-vNo*G-GbZaBe`w8_5Dnr z**Gee`gr%O>vzNUvX!eXIXPtkfjWui<{7;*_%No#8CKkK)90p~Tghj~t?#vsN@igM zKPcTjrcm-mX%$2aOpb$Mp8fCz>LeMrg?eT1?7qaAlzMm9@?pqEGTVOZxpe}vq@u+t zUcH2H3vUpzH9}BeZ#jKjJj_CTwlPVA02)Tq@*OY!;kA^_?sCpa>}=0&E(fj9=fq5d zEVV?5;aC?F@8l5fd_wl6ZM9+?$9&fjc*S zD`Zw;Zau3JcavHu7Q~KwO}a-*4@noD%M`$^lLn(QZmQS&ax`pVLf&Dr+>~c6ca1Fe z5$3LSN*LK2#HoCIeK2)%9I>*;bD-8ZRAEvN^*P|C4?IJtUKUAxgKNMYbX#ru4sJH7 z)(P<2*u>qtEDY{sC;Dpq^q@DRamXr|gjvt$n{yi|w9HK%J>{3uZSM*r$rrT!j!kN` zJ|AIL{)RKIJ7tpWJi=s%*5&lGpu^lY_~Klfb0eNVON56aQEuu#G1(3do+7mMTf3={ zmb49T$q?#(My_dPt1q5CL;E}wDn>dDmg3QEJz{;1i47Td9d1j&T=a7KM2MaaLM}V( z!${(cciK=PlwcKlWyW2*%m~;UxP2ib+(AR~CB4|DoM?^{0=k%09a7cBzK|8Ptp^$G zDaIcIL>!h&E*r=DumQK9e`5!usMy}z&m(snd^tDWbZ=-~bja%lIQEx4p^*&5 zvVATzkK=xB*_N_JuoBSv0CX_Rg{s*5cqF7&t-F?+W;{dORC`wCu&XoHKAW=B2IX^V z>>DJcrm3)ZGqRx$nB;*#)3Sp`=3_&CIt4QlcGTmJR^{zYKK`v5ia<6_67RKzq5Fyz zPU^k~{;6>0en^Ila2pEeLmiHB#Es|mBn-FFyLqkJd%!InfJQX0*T9XU@JngRaUVfp zdy6Hy(2TPBBknnI!_Iu#;r1m9OSJaHo-y~EiJ>5R)(YPb?%V_Maqkeb7CyvxeB-$h zilT5Pj(~k6)~l4V+t$js*5%T{fw_?}ai@cLc(VZ-8P#R+JsSLUuW3kkXN*; z$Bn1DxV@nVZoHeqgcQ5&_dkdM(D0-hMFXVjSR`7G49->x27W81Ieq4%Z7#*S)37$#Yj1 z6MncJC52j}oRZt;v0)dpCv$g}1}SI|E1?X(F%&?v?FMOA4RZ%2{N$|eR{z}iB+)RY z!E_h6aeJ&;mduUfL#^$~UBk@1Wko52-DEGGQ6zh%;`1nv6L&bO)ks>!dP9!~_eoI5 zxla=}M#4{*)2}TQYh6Uu?$X{3%)FYU8i#F$n}rR)=+jYw$M1o)q8~ye?v~eU(e{k{ z-g$B6+k1tX?`O;D8{)m^Jrr z5Ezrx!7vIrxF}rU#w_u+E8iLfqb$W;TLf(@A@}|FPI3QpcR6=!$+pl`aS?~(o|$%U z3`LSeZU@ittZ+y{vN|g2mw0^5AUI4Ra+#y$APT-*sCBL=n){PCmU6Uc3TkgRW`Kl( zLPh~iZY*tQE0v-SW;w(jo#J=ZKH#{hzeE-JG~C|IEkCd3;L***s^Is)ZE-3b<>$<8 z;KxsbiN7zQHe#2K+|35=PnyJC7t>l^JWfY{sXQv>vg26B?FUV$+kN&%qczOUA*j+U zO4I^x9cqOpbrzuM-%mh6#8E6)iuk9~{|HrX;#r-zL6Yi#Gwf}`i62i3KJTmSvh3@O zJBt!e?WeBh9TsaO;p7TvireMm8w1&de*SrlcVx@-2kua7Xzok6r8wHQSHTTwW5Jv+ zrW;H>QiOgDgM?t)1n%b{;farHo`Tyq85Xy7D8M0}`cB|BcmgzW``Y7m!{+w(#bDQl ztgo^svy$K-)$%V65H$KEQRADXF(FapewlFx%+8Ub=AM2VxT$h1MMK~m8&?vUZ(FEd zS@JBgU^@&U8@U6m|4tdwG`2{0P#mxO*f>l1feAB%_;YUQ@!XL@Z=nR6C044>bN5}Z zZ=t=TjJ`Rsk@ilLjC`LBiBJ=2xaQo{&m%X@#ZF48#nKAH|H{#jPmXwo#bfg6nwq%3t#W}K1?pD#8FpG>ibJrb6_xY z_9yXjNw2i?;BWlcv@sy%QT#88yA4*6X4c-tH<6okI45a8+r&vVWWQ!#Q_B4%%*o(3 zRKoez+|i!q*W#qv;9JEVjk1UbckBSRcoSwY1p8`iSl!jJ-=D?;MjfKhiT2qHxYylk z4zo`@jzwz@ABnTZk;)}*Mq-mJ;&blTzH?(9gs=@QtJ3$7{DhM%lk9ujhV}Q}q*+bc z`%G~k#iB0MZ~ai9ixKSbRnmO*v@?l2&A0|ynj8LZC09{JN#coNfr=1d{c0P;52Pja z{Uwb}Tn&I++)E`q2+nMZZPszmnwOdzdR`3jq1TdzDHun}c6rK~`%#^)Nz{@1ccJw0 zeH(J$Z=bj&`-i^Mk}qXIif4@DGz0YgkoxQ2=o_-pGF_4yyULU4fJJnu9ROh(i=;&bjB0FL3tcoc(Fmlr%eSaTujC zE|og0GDx%O+&DKI6u7lrhLWMACKy-TD_?*8*2FeO<;OVaP+Q#N=fo&sUuGPjx>Lw? z`@L(o<8E?p`xDbQhWr=w1JG_I6Jun8HLTsb#AXhPzj*!J)WK2=wl=tF&!-6Lc12d& z5&J5wzpLBU=_+8BxA%mOo^hk`e{9CIF<^;XqFQAOYd0pb*+)hB+@^W}sMbd<(^p#D zSRrA)yBc@%Y)$4;Wa~>t*Y+;#rrq;zZSp1;YUyEoPE%pWSunD_UQXUV(cFes>`GSh zb()m7a>P9cE(d|g~93<#`^;576Egne4`0 zQ@QKJe+Dp{ZoO{S-reK3W+V4MuDK9!b#Bbct>JldEw>SqQ$LS$^Ez&SqiBpf8}prc zk=MhZl~!k?WeE2rX$P6<0LR>v`N?PrIAR$@U?jwKYWDum(M0}+$>rR(%IiT}#_q-0 zXaNtnhhCC)keLo};7(c3k~6r#eQ$T}1tqU_LCAx`a$D`CKWhDq5)I^(-{zF(r3<^< zP5oT5eS{qynR^26+ERPR^RaE(dyKoHoU=I|x0JFzF=DRmnIm4|&hr{cydfxZ^QV!{ zjt0emvUS28;w~NE{zg%w%Ed8%g!{F80zm2Yoh}rb?S=cYI_u}9{otmCMhAR{%@{Yn z(F-M*jj3OR)-4-l4L8P1c4?vOo@3FrS=?Ab=dyCY3b%{5Cg_kM_hs{JQwxEU{`NWx-k}CFZly!d!H_mjBzh8jPe#f;RG8t zTXWk>r>0TvQ&|{Yk^A?;O-rNsaD3xeu6^ze#1iFuNTX^TgM`<&xveH|ex)CrJVEvg zJg#|)X@b%od$jl8a<&J=y^Ld66;&f!%8z^J?r_6SdQSO5ocfeip z>Fa{qu=x*4?Ax(o8l+*B{-$#hvMu)o)G4!Fgz75DS#ZcL+DpgCrgG-RCz9KYxyOc6 zgY+g8srK;)lG}1q+IEvMBXOGhJQOY`O_z?5k?dm7qL}&Ih`Ygml!+5(3uO~SlcRd) zd&hv=-}rB0De01}3fjuKR9Da=x7eVw-zqPyvxK*P^LvVP# zg3xCSSme+UbA>~5JBc{a@sEbwp3Xmw-YC0bj0)SvxqLuH;!>P0ncej^$=B*E!Udx` zUz?<2xQU$jFH$hQ5OmPqbBUkI%C=FZ#uyd0jZQmabQoZ`2F>@MwRNhb&!f( z?_4gBC3QI`S<@D8h{2ih`ZU|b96d_;jk{{fCJaxT=?umDn*a669JdD$W*lL_7e z%I09=9M=U|wx6u}msn~m2BvL8Ia94eDu+#yS#pZYbIa*cwkCC=u)CEO3EN}=WrL%d z>z&ZqT_O&N|K+^r<-z4!u^C+eJ%QbR;_k2RK&>DWS4SaD6HjJ+i0_oOD#>!x9;Z+Sm;N{(uFIcFK8?M~JtAbcOg;C6 zEvp^x($9Nk0+Het95>js3tVsItK$;oFFRyYk7TePw@>AeyEnHnd(0H76<(`F+Ki1x zO_HP`D+dh6p(EV5N;B<2sipTJr`8kKXD-eY6^-twrg&~vCWpSN(~8H@3qK-{z>+jAyuZDTk>mUr?%Xq z)^ekd)6som{|gt>5I5b1(A;tnFAyjbE_0fMNF`Wb${sVMDruwveZFbOB@8RbD_{!q zJus;dchi|{N%h4ilt2}|t&_%)7qZq;Hjo$?B6r$v!%Zc8lc1#7u*DOn=np(gT!b*{ z=Loc^p^(Gr38MFzj7;q2$R$m~SL0UGTC}?Fs8QZJY(m2yXLITkKJ?uADbws6(fbTa zllADw)|b-2s{Lgf?grUAU)o>?qnTnY#{TmvWtmx+arW1#veiU|*NKQ+cnMLKR6pW*{TnZlFW~7z;u|+%AobCUCc@DCSoF z6tj=Z)%&DMY2q}IxbU$W3t!&eF2ySsNL$Ve-KO=Q52R>t*F4#^T@+&x5q-Dq809Vv zOpM%o>~RPg3b+NJ$K7^#B^P!6Ht{{S`yIYh4)4?DhA_S=Vz1rE?PqLoH>$ncZq+b1 zwn2!SvkC#Xx`#1A!h@OTA;9lPxZ_+ONWfjI@!c{L+Pg_`UmBd`CGRb}tiaK^bKsVc zv}NvmJfw?no&?;}{}6jf=-#Ldg=en1rdD}f*$HDvXr;0jw_k{WyZYa;@zRQ2IVj@l zE8F|NGO%*X<5KR03rw_6?VY&O3m)QhmT}V&vw2@;Upb$JTt4TOsU}ly?&nLVLdLn( z&*ME`HlV3Dv{$zGePyr=pMJd1T$!7>S5Aiw+8a}tmRig+VcH`vaZB)B*e)x-VjEq! z@rY&a&S|dHJ$yg!ar;n{otWIE!*{o+{Y*X9-tzqI2zRQ3S{kp%?Pq!0dMmtXaNEN90~o zK|>#D10>y`XoBa~_nRN7?r|>&u1c4j%4ZlR9>E-DsqQz0FPbk>bp9 z^2nReWU$Wh^(_jUc8+!=je3b|; z>Ovdd~>K>{WmjzsKSD}6FU25+@xrRGDUk>9}i5mnMxA+Hl?7BuZHljRkbnw%L zu?|9A+}0lLA#w>fT2*lyN<-YmcP64(@{`B|O_4iQjH-j%;tl1-W6$rz=E1h{t5cjs zmOiq=A`QYd)tWkFWjPcZ;r6&jb%;B}jpHke{~?w4sa-f(YrCMzxATKWGj9U73t__T z$GuS#z#ZZa=NhFvix5mt`|x~L6MIH6Nlq-*z6#tSE8pIJiDJ`Q#oQro=Lz{ffp?GY zs{b?^+y-jC2Pi5N!+VLc8FxIUrDV6`f>|t;-*4L88;KM+wmpsmuhwv=OA8x>-x=oCMJ6UR1bPl;* zT1#>9B~4zj1xs3;^XZn4;hkTf-&JlSwyx)HEPez^qAsJtC(UVVz>jV zL?f1>S=NZ}tzK?zA^dY^-s{J?Ds&rLn+?r=-{7BLTP_pTyiD?s_|JApD`n-BJr` zq4wt2T5*#rZgiXWbJC<)LZ`SrH<{Qv+Nw#6J1KQ!KZ79_lQ%p(zDb#6V6?%~=VD?w zk~g8f?#v&W&Bf{O*Q~8~xcY-)+?*TWy zeS8;Ubb!xcbKvix~1yzXC_1LKNPdJb9btrQ=c8<#%n-f>3DnB3fMah zbEk*W)f`}o=2s};4su(XlvI0Lc!awq=Rle@+!uO!j7o-Q3FfBme)}TFCfMQR{pM#L zu(RYqdt5bj|DtUPy#o+ca9r_b)H=s_wV{{9dR3&+?SDQ4MPQT z+B)9zgCK3-MlJ|#8^qnE_Qnzf-*$Uq*<#vEEAMP$P;y*gIIQKa{W&;u2W-?HO?0!` z-7)TIx2!a`Ovec|b6pg(F>V<${?&r=;E&?w3v_pfJDh0Zi&>g`@B%#zeo?f)8EJ3f zuHMpG6mueSPHP)SXJ_a}_O7&d;HHtN`uWE8KF5!|*K(KgI}CoJJq=}W8*tO9ZVHUO z;T9aieN@ytaMQ#*BGTSP;3mwdg-0rgo7y`C#@JhMcy345kY!$YG=?Km2u%BS%u>%S z>r~cFh~TE~U)#IIeTbuX#?7O#StQcjwTWA4rnM|y+%(6bj7|YkWsFtcO@;aK?WpT2 zi}~7W69&JE5a&AXO7|Hxt_i5y1M~OvO^=8yY%-L!o zEbnpa!7N?7A zL?RoSx$fz+%e<9Ph3Mz;DVe;z9rCEA)MM7vTAtUn`>4GQtQip)XgJt&!xmf?HG27( znb+gak5`VK{k?amxPdY%;8x)cF*YY#MH1DDb>bJUQ?)=VQ<7+@LV5XsfR-2ixK|@T&-BTg%;!EVT$TA8^ zZ+xHGN_-$Ryz?7a#Qs{DHZQ+)%@Ba=Fr>{p2rYqTe24v?T9wi5IY+ql1*hUqVVWhD zO4(@3FN>+`k;y}t0edigF*n7kd~VU{qM^}|ao4cTa+Ja>%Kz=KGQFPM<8FIUn8^7# z=H9sPY2BFDMcn9+e(k+AEb)D!jYeV3Im3}X`n@CT=lw`i)Zd`94^#COZ^rK;ZgdDY z-#L(@EtyLa8W?L3^9$3P>R>L8RZ05h)8dB|LMHwA8}{2|X>bj=k#od6aDAb_IXE2HQI!VCc&+2WW1SR9aYVaQ@MP zo7`H!oemE=g4}qGJWmvAdhDy*q~9aS&%+X4bhTuRSK>f^5!b|F%r_LJ1!0@G<-GO- z;btxytAXYv_$Cg3jbd z8U&aNhX?(>-p%;4LytCF++V`U9V8{o^b`WtJ0Sj$v&)s&e z_BJv24}0;$o~{)JG@g49ek%dPmQ1#{-Lefvk={{?@~-{}*9swJ+#7jWK=j|L!)a4{ zZfzLN0}p%g`MD`+YlT)PC$}w55kEMY>8st0-)d8HcfO#s^3|(MW%9gdq>gQRai05* zoR%1EYIGlytKW%v)e%+5@h8uEY&v#?`w%^(Usb&vZpy1IO>TZ*ukPDml7hGnTu((S z43ayFo#G>9cRFC(HpWIRGAhfS_GyXM)@0QL)`W6i9Xlk2W ziO7P~d6b;B-;vc?x90Fo+=B^dtd4qcftmKbD1Wu8>DR{X_}3i1>CAJ$O?8AHR%y2W z+^6EEcbeNNOOPH;N~kU1Ol*xvXSCVrGlt7aUUyFc{# zYRt%DNY~p^YN6v@+6Z^+E#g+HyA`;Z>#)H)n3RO+59;eDJkHA@ zRd(3(CEVD~%1q_WJSBUy@NY|E!#IhWyzyMK2gSKn>K_(2%~bwqJM(0U1Dv~Q!?m$bKqvKkdJ*^N2K+9|c3 z{QTaLzb|Z{0x2I`;^x;M_$MK}uZec6YC?8x4EGL;z`7rJgMKzo?qbvPqQkcf!agxj zasOaqXwlBxEmE-@)6Cu^(|xe)Qm}WKTzL?G-2p;#OxE$wA;~e2hOE$`jUnF@4_l_^ zI8Wix+^j-sBm)eCK+bj$b29;|6*qJH37;SWY-JzL_(z@`cDOTldozfmr6_JWR5L?w zLk3zM*0KjLqSLj}<5mgE#h`4190q|m7@)YBWpqRKj74SVf2DJp-NCPh+q z>Y%40ZpgVU_o!a0r$K%)Umcp9;+EfCX(UA6>as;QSTZzsQNvuW#|Jb%(hHwUnW)+b z?1=mjxZl}CvB{-aT+$oozSVxNtV?$GTxIwA^5*6=GsUfv47q99aI4(5$2jK2Lx~Dv zOe2K-M6swOMr`k|eRXqUW!$Ug=zPW&&;iFz~pNvKD?<;x{$?`>tsZ*$TEekA-+d=S+1#o{$ z29CSdwRia&TB7BWST5&oZVYo!(CBg`C&5YDeB@&XP%2M`-9T}tb#MK7zu*Nu_t*48 zZ_ck8rB9pu)A|45l25y4g9cA5i*#*$I>LRLEoyI$SW4Q8yPkicVU?TDJ(XX#q2jL8 zVLg<4yWDEh&CJg{?ffY7C(rSqz3bR=ihH;uozruk!^3(^eBBP07>2I!j{f-lse#Ht zuii>EW_4E@wD+7I%e_TzJ3vtZ{%i}s1XL%btfFrO&d`hq9S*{quaa8?MdtW+L{l|cBK*TTJG{itPgfrx@3QQ z?Y-49wdq{pZ~teo$}`4oReVuC$+`cw2KQi=&vmZRC)~Y*k+zrIEr#OyYs{?ext(rr z!!dp{Q75Rx^Q+tCUXoe*bwbhB)93>Cf?s8vLI$qda8SmbDNRg1!mC+}?=N3ti*C;P zd$RX3ZruAkXl#bj_xP*K^NES&^@b28a4ppw+<8^#=<9Yb2w)R8CTdu>I6m)_=6(-3 zufo$Z^h|3eXW7~Is&aRf+pk1mK6>Ng^nCE(OGf2A=hLraOPRhx6Ql4@Kt(SZy}kC9 z8I4=LZ>IRcjib%td^_%o>FWsB#0>qSF5^C)&;v42`KBG0%;ZJ!M!4Pix|M3ABgd?M zmIzFU^2FH89yO2+m`N{2a zo1SeW-bXO@>p9*xmkHJ(y%33RzKU!vOHdSbjG=o9xFc?Eub-QqZ6n?m=B^g~UwfCP z?_{OUE&Jmj)`+cFI6O8uyKQd;8ayMm`yd;lYO-zF=U$!jV|qc! z@A0D8bgt1K2a&s|mOs0z-021hbN4G~(#=QPTc2a~xx-YCyv|#TY3}ygyKh=*zVulk z=7x=#lrNlcn=H5}K3m`3o_qBONg9WKPXD(f{UPWfaAT{_-J7JUC(DwNtxw{2cpL0j z0i|E5nj80(ZH3G zt#UguVJNj5a7*LyS#^U12l$Znzw0HWj$fAT6X0PAdpqFvOIYFl1atWuWBhi+^i22O z#;I32d)p`qI0j=A|3y)S&)k!Tg$F#o_kz<_bm?aUZofL4ABy^Ia(j#WyH@vq&uwrO z9gSm(;$J+bPG8Yia5JeMP;h4(`WPkf`|*Ajb3Rc^SM8AFEeMV%qmr5I54*Nz11%OO zFR0TGFDzFSJSA=iZj)6W7b7`1c31b&EvN(Ch74MSO~UD+jAk*=8|GSeSmORYVusu$ zva8;8k6+P8SHbN#z1j$+<&f#$-XgbCMro&B$Mu@TLhr>vaX7+FIZWSmPr!|#oO4$W zkussf0h#`aetCm=;5I}|7;fp3K#)2&j7R>#{J})21Xb)&OHZDHyY29iNflnBFUVy? z-<9qI`L?)KZ&oJ4skz&no6}T_rX8OfP)kof2REeA+zqFryh5Q3ogLgxd$W0DVqbXL z_JJ@p6NB(-*+l!j8XeRjwQp~7ItuV2)kI?^aJR%QJwMC;20SKM)!*YN6oShL7(t#OB%7d!M;aSvMr$x6KK;7ljL&@k)=_p?`>?%|@A zxSa$Pe~CJ{`5Om>Gqlc|gz;^Ib7TY-KO}A!Gh&nMOa~}6q`Mt%phXKZ z0QR(ryLT8vG7Qmj^I0DBed;bgt*FzW@8eNF`lRN4f=Wv?DCg@{m3J5_%Pf`WXmr z4*aVV`+mR6@?LCz#g|0w%x5SNNwcT(FcT2&EdpND37Vs_jAAj@AX6eIZ zae)K3aQnM~q9xq5=SHXRK1W9O=KDE*@|M{hxEZT2aKnfsQ=%|8zWnSzY(H+)s_EQ|XGn8`e}6vO7|LVHzn*wA7(+!v zy^Bs%A?QSA@|?Po!(4E)V(Cimh=ALo#mGtsd~0O!!Xloz4IEgF^LA>c=SBO5i0}y> z4x&w2@NLD4pUkGY%uL+vaJw}RW(jwFDYqO1{~Ka5MCPUXT{SN{a3cfXx)g(tx}bNJ zovSVFXe`Z%dw%2X?Z})Ffl&_K)i)K{wnhvkra3KgV+8*{lXvBBi;kY{>2cHXy~4}d zct?He{LXRD&p{)yftwY;Jqyz|U5I#l_Qu@9_ZoOnRGC>=1j-zMw-Wx$@$d%s$=%|{ z;F|-$%h=-Fx4$J7G;!oEpZ;U<+`TbqR_enRog3U2J}27M_?0~Blrpt~zqs*!j^Q>g z=;tzaDS87pWiY`gJ_{VU4(HiE3}Wz1MQ%Tq$v{$41+N`8oa#5J*V(G5-HkL*1KtF~)i(T~Rp% zw1}d8bNk$rW7tug(FWYLAqRxI;yNMj;t8wCh7_ORe4aBMNB|<*=`?zh&;? zD;NShY*E1=2)gMd$C#zd4^q^zm$boYs$?+2J)^u^s37rO;I3gSRX;=y?C|g;C1Imm zC|(eTNJ~1n{zO7qR4?HOk+R2CwG(o+h_Tp{awrwfn~}T^HfWn#3YG!z*YJ#g{5G10 zCu=?TJuKNc*mFBT@%zq+E(y-hJ|$lZU5h<&8(-U;{3bRzH(Aj7V#zeN?GiJ7b3z|h zDxv%cb0I6!x*TGQqW&E@rSDLFB;mZYMT~);X3g8>&gbn{s1vg768Za29TueDfB@Xj zSQ&?I5(KrDCh7&~l7uIuTEticGxwjv!?I10LH8>AWRLVXmDhH+DgVBl({l|VIGgfB z-gU1e6N9SwjJWeog)0&)En*zGus1)!hUCVsK(GmZv)3T|`|^93|H>$CLE!1^w0jHR zs<5dXdNCnM%b0LrZ~rAW5Y$k^j%(kr34TLuv$N39besX&n;?U5D?gB9`Q+cGa%wB? z7K%Iq;IOBX3TbL_UH8@`gZ3L*iMyC~`ZGh!^q_nUf`2TZr(!fWA2nKVA7KN5zh=j^ zZxnYvt!-PfLoczQg2_#m#v!n%N&+dWu#&~tZVW}pLLNV0;AHMd(!#e_r^^c7%466D z-c(y9=qoL{uKhL5iG6O)xhhSKX>01&fAm@_9Q8;-EgPyBcZ3ZD-1}LOo!Oklkx49^Sacw zYgy3vcXY+|Q}Pox+LtA{v~nZrxeJSuekCu z{v6BH$`%bG5_b)51R%Ld{UFQh{d*h=6sh;k+%6q%f`L2B;E(>q`~m;)6&m2CyNuNw zr!TdMwZv06|45}-qV0RRWLdsXkE5bk+I_QqNk`$MdvU}{KH-AIQQ7?pbppX-$JkbG zTJu|{8`1OJrYP#gCy38$Z(o}(P3Nd6NcHSe)wK#soQ)mzduZUsbp1=rY7pU`x`Woz zg~dklL#5%1@0B49mUeA9?=ynC7Ru}JyS;s7*&YtL(T-l4dk@%!mw{kk+xy*OV&RbD zz+K`>g<%!iH2a#dQ##LG@06&oyf_(hFVO=aIQy#ZJ>-`ocy9Bjj=BB93{(58f+$#xpjmz4L7PRs6pE(jDIicP|e*L>I;3 z{TaB=RC_d89ri4y@YM&) zJzQ__06)UV4kjybm%lv(_b=&zWpFd5uWE-GQD2A(-^J2}U$l1(u$} z(;9;(9*#eqVZm}Xb?(fTwq>fZW>zW_-{oOGfcbUia;3TX4>0x53LrXw%Zo%OEb)YZ?xD$pqyb{TH(7* zId>zOqZ-=o=D7{k@zpEY4Y?W1QSKL10=SQh;=i=~JK7TpmX^gxYr5i$0$A2$v|S5q zuVuNgD|aq`Z)i}iqX!~!*v6=4?jJjTZj*X{Sg{rNYyDpJD-F3p`D+6#SrANEt95C_ zTJA>;^9Jsd*NX+pJ5+_5AL7Ou4S10o;&xnGeJR)_3iNE^n9Nr#j$c2Zg^lpP{(iuX zS~rP1%=2Tpy~nWk#EoasM+MKQx}thYKb~`R@=~}ua{Iw$iJJ#JH$j-^N3(l>fx_Kf zHN!NTe&)6Zb!QZJJ(|(`4ixUI=i02z!WG4Lbj6&xOPUD2kk5hm8H~93FwZSe6!qGi z-e&|F;)=_)%d9~OKf@JstjsaK!QJ9?8+8#&wFhsr7j3VZDK0B!$9U$x*0lnfnpP&B zdv)C62RW9w{mgBrIro*<5?j>(S#`Z#3k$NuJ^9rsZjaPdXqZ)O^*n3uYi)#BCuG(2 zPN5lhd4MCH`{Gk7)z7AMPUHAW6bD}I94T^L>PQA$s=A*-j~lSIF`684v~M5f9Q{V??QL=I%d>4d z+&%+tg?`T5zzpKKE0?wRHBUF&ntf%x75~C^1NU@}%P}+rMA|EtctaQ;Wk+^4``v^~;n~#wD`D<_& z;GP{~FG7p9(`Tr39KKKMFZBiV_6C~bMv8dy*n+amxQYIsMebK0BloiWzdZK^&h?c{ zpM7Piy=T)`_(f5S_*mL|S^m)i3hmwJe*DzXjg%QyruOLL*@ z#-lEDgP6JLz$S9dSG{hmy}S9uf+%nA3+8@M(62=+YVXATv8+?S$5$4I+{`Jk)dhZ8 z!}S0)e|CCvt#WN8El<$Yd3(F!LXar}?TuT7iTkF`L$3|kXS_J6h)(r$x^*HHqRz`_u19gG^lWPF+C%Sh&BIFO?|n zd+7CwyO=jG`KLC%B5t59ZlZ`c^OG5fa_;QqWNr6SUr4?Qqi&##H}32L+?cS_H5K|5 zU6Q85Lv1$t+Z!F_!z7Xv;H?ge@{HMHi|ja`(uUj**d8JZht zjO#CAj2nycB+RWZEPg!P^x(B_?*t7OeG(ee`z!|5*WVa7P{M*vv;Y6d%~SQ!=JuX+ zCS7RyNKQm?C8@xpshj#aUh-zrg{F^$n{M<%)^g*OKH&cNE;L=njrBNwENjyfY#+&m zhb_4AVrZ96&_0F}@R#zk7V78nD?#q_*=F(-7gZaFcrSl)14o(bF5)Q)pdUeR=APsF zBF4WLd~)!E7n+;#P>*nD%d|j=dxV`UrgNOH1!+Hc?4@w?jemMrb5trk;)M@6*%WJ!6BFjGHQaRV1t;LH2=c*q^UhAY*TfCtwcJPa zzI@I75nNz17`t?`J)bPsazCn|fuH=JhvxnWxas=g8F81ZK6gBBt)}P=n)}0Fx8T=u zd{#1DRe$Jlf8u{bRusRj9k|sA_y@mE{T@Ip^|JdF)}g^mVKbtIOy)mmEODC|`?2}p zxiM}<>hD+g`rJn{yO)a>n9hFy?sy{l!E?L7eTv6egqv1wEQf~|;`s3kO!yVPcJlFX zTOq@XEo#qQb!Q>$N8GRP7k~N$Q$Y2!ODCcqdV8CISe#E+<&>_oO)uin3UBIy+&|>0 zuYB4$I(cFFc(~7|op2vq_}*O<2gH4Z3yw796E`M&kq@0aa9}^}o^X5Lzc>w{6>-<} zn<{YEPrG>;V?OM4s=v;{G}G>P;C_SGdK?A1l3IRh@cTjHp5hL8i21? zh%cIZ)||t1A#ODVJmc!7X(aB*suj&0+1mz?xkoej&?X4ix515D;oO_bb3ZreZ^J@m z?x=jo*7v0W^H=B_r}7x?e?_rxe?es*BXcU@eKahQ-L8dcLQ5WVL%A4vvYn0*YEj(! zfWCP#fw-Fy7V3gq^g5Bg@+I6jE~)>%<#Nv4cn6rcO$qPfaxR<9AT$a}h4L7y&GMp)fcl)bRNIWq!xJ2ty|M}ehq)A7Kp(v0eYY#hZ*wF&n zEBF%bL9Dj%5jq7JGR2&bzMou@?|J38e~!}KY+oa+817qwNy~Yop3tdttqCQ4-@)I! z`GBHQtL~(it8d2OF3Q1NVnFhQPF{<+v0hTOpS_R3KF*>}IyZ{37v{cz7pG@ZAhqYr z&6OeHrp;eMg^8y*H-8hkrU@3cJ~%}}kIs*a4=4cc_-@)X^y zv_iE#8BNdhjSmanpk(9oQ-lZZUW2>aQG1?n*GeomD{){zt3$kTpx}HNao^GLz}=p> zTT|&x-1>K&RB*1seTI98xOdF`kFS`Ue_^7tH=`}*=+4xac*&sq zM~d5+#*Tgk&%g9i^{puVv>|UUA1lX=j}j4gUn#`FxAsEJX6>s1=bsx4(dxkBT%+ZF z(xU%*1MX{nVl%_UYIfcE6XsLsFqiimgGk)Xo8PQ(OYOnGUGlmRoVrHU{wEE%KZeWb zyNYevnm>}9&(QM@ed8#XcbvvV+|>(I{u-6~8lSR(OtFEE_sL|+0q#qy+80C%cFR4) z+`ZI8_dX%0ynvfWA}{Pdy=xe8kYubbmK*KWnp^@=Rn@2baup)k`kivWC$pH-cw3!rDKpHsa<}t1vu^jJwSj zBJ~YRY)uUJ7}?|3wW7%JhQ+F-?H}?a(%hWiaMQTcMY7zD>D4)YBU9b+P&&ump**zQ zm(kN#mF7s1!Pac$>6%ik7$keC^%j-Mr64*?i3bb6t1GxTC?>jrsZP!VuZ=X~nub`jA9h7_P z^1>fA2@9ZDZkk0l@{V)xE+_JI*ep@1zUfSdxwx$8r%odG94G6inbf%qHh`uW<>~w0 z%p1+2=6-LSg$Mm;+(mQ06L_7AOjwd0`bL{BOit9dK}@c620V#CZu+Lzl}Y`>udOZn z#4T)V4=v#C%tFA!xp~)*)weKi4etF9<#rvoz;bT5-(BjOHYy$!+ks2u?!JoVMI+E~ zYGf2RciIlz%sYx|&K0;bJu}Yjm^0@5wgbo6T+-|owRw~0UShglD|+%%#U8R@n{Q?5 zyJhZosuvMX-Z_1>4A&gQHmoeeWvo9YeZROl+KFQaOU&J|=hg&KO_9ZotsCD_sx5%Q z$X+q zzYISTsBcZ&xXdKw<}a@K7`B{8y`4brZC#yUrX==FvQ3k7Ll}26V#TkiTCd4fN5XC2 zL5L!YKW$3`&hXLZozGK2ruV^0)4ltS*Ujr(C^}) zg;g)AeiQcwCkCFv?Piq>{XkY;ETSfo4Y#V8`-slX2~`etF*=jVO>LWl%HC@g2m4cl zU7#p#s|c7W#Ij;X&A^~M2J(i+^F%J`9TKI5Ew#c?;&udBOuj`3i>C~ghB z=EGlC&tE>6bMXU7^Gw8z8a{tvjzb@Mk;nZE@47yeav5J9cU5(#%^NRaqY#1I7c^h) zkGGCk9^e$!u32Lf+;5#S^>8Q~L~+N}`h+Q$Vz^;|_#syXkKEN&WqgZpnZ-gAcY2a7ar+nzW2Kl4#MKbU(E zrf&_>OBm?-^&ibGs$CtvV8W(Y^5ZJ~> zUMG!vTdDXZcI>bXWHZ-{JE`oFxS=~jRvj)*HdFMq68rs<@GQ}H!Yye>vgNK)?szgi zT@6H~h|75xydz^IEr>eqHqv)H#oW~F1(|b)C$hLlD(C3LWA0{(TdQY1;&>^D8_WL0 zO%{xidP=5XdhH(Ij#D1uek^)|@vNZseB|v8DR;F~F;Ax>Up-YrTba2~^;Uem4BxGbfgz5+KD7#3mNACBmDp>M<8YfE8oFX=uHw9ica_S`Ve zCFvW?&8Oi0HJL5Z0Xzn-8*zVqV?48Kf3FeZCttw*2QK+SE@1xONIy>?EV!|vfKOt- zi_218yrwWeas&5X2r?&A8zLr5j29D*YrY$^r%U=Suan8ml-Q{1X@g^ho9jM4lWZf3 zD9w=XYfk7mA{N35~) zcEK&`tU=8z7nYlPvlC@j?a`iVY32OFqQ;XCN9kwW?ew82ZUsQos?p>F`A(Dt_pe29 zkH8H2RwqIu+JalwH%wyC=zz>PIPacw-;3jZ*MkkCcf!G=u{a=c8*bm1wL4i0qF}jU z9*rxHL)b@`Q@H&vXv$qudyeGZ;9pf~{PWfq1w4$Ke$dMS_v7bEA>lkKBLbEO>6?Bb zhAA?5DGD13BykBr-4Km2~fKS}j1XUD_C zdEGBWa|g4<;hcQWa(^hKg8zxRF+(Rq_9v^CBgSLTR~(YoZ_HfCkUurI6pIam=7-2# z6gjK!Lb-2B;oe3d)@jy%mf`b|*Bmgb-%|9Q;Wj)8%Fz>tT>MHtAa~_eE1ly-{WDy8q|($*jmvLt+QI(IeWCf$qWzD?Kuml+d< z;M+z~Ip;o2#=CRhMiADyZI@w5h<(oERjJ%>5+d@{c&F;H*ga26?uI%78TwWh@m+gA zh5P5`N8oPKa?USI%Q(!$AXL@;+YY=|$Mnq`fRI6o+pws9w;F#$6n8yQ7sOH@t>4wV zCZg)8?T)zFz!k;4i4HN@(dgm?slP`rmT-59ekP*(9x0_{RPT)g*VotHSyei6&zw-~ zk{dgLBydyduF(p2QE}};798XT;F9}F2KObnX|FxM@o)9HiE8X2eIxpeyI0knh>3^q z2$kM??~jdHk2a-Dv^bBd3=1%_m#1FS=Yr?iJ_L_#;JhTmpU5 zWH|TwJu(e(oy_w>fa2r@uHgS;%&Z)4132-*6TToWyK`;u{Wj|(;wvEpm7J{&U;;< zIrk3Sbl>?h?qPx>H!KHY;N}cO{B!TXZHnEe%L8HFmE*=3JaFS=RhEB$&V?Ll%hcCA zu?fv_qaz61ovk>-nRDwyl*?zi`kiq1Lb%nE?NCUYdl-+u2istryS{TA2f~t}wu=`Z zbmNMAY23QPKyxP1!A5nV+_i3&O<}@q8_ILn_c+ttQEyzCUF0y3b3>H7N5MU~4De@| zP3JDkC;3E2PT%3D?qJGu$DVXZ^J%X3;7?ptKYQ*6+G}KZAId5*+`+;;P2Ht%=jK=r z=76igE0JtzIQw$`Bln5|=fNfF`(h56^DphxIF`tAeiaj}xx2Lo94?ak?Sn}6p__Vm zhGWB*Vy*Y#>>IYxrTrET`gf{yS;gD&SYIx8Ka80yvPVRB<#PYs_bSJ2<`vI<`uxDR zcrs8)(9b^4aSw+3{Pmr%JjkO%?69gr3vG~+xo-&2$aCia@JR0d-0QcU_Vww0fFo-B zt(Ng)yO@0T`u5!V0mLS1uyU|sGTNV8?&s&Oa68?7U{hkPEYkcI`tOL_9XfmN4Z7#P znPb7vv*oMYVeJHqfTR7nn~phm?p+4g2OZ`PjTu%%-EX9DZ(V|O_nHFN^nG*be-eF` z&`moE(Kj^9%JnG69XjUr)x|9Wg^tcC0MC6(p>I1cYo>HT_f%{k=gzGuk=<^CeGGXrdQKRA z;AR5s)p8r%b67uVx}Q6@qC{@?8}-Au`RkidJO3H_QorE~+(f2ePRX<@tB+;$MTBswkRipOPUKr4eAHM1Vc z9Mz{0=3`y4ooi+uByitX8*r-%=E)z&&Bvyj_s9is_u$_1*<%^=PsHMbHx+U zW<)leH#kyD4bf(Q+u$s!Zu(-*a+?I?+dUWMia$mO(;NZk%}wJH;%@f4&Gsj#-$%H$ zL(JZ<*v>=Oji)lWs|wtd*ag^4mM|Y^xOoKvS$Nh00Pb+>HSRoNKGbp#r0?#mu_=X? zyWL)pzGtJ#Jm4(!#`>?#c&4Yn+6v&_R~sBeh6OLI9sCe(ZMp3zu45~3IBRf9@eYH> zkM0fkXb~QC(>C_r+|3BQKYQ*w;{KA-Jh#^^=dZ3gSzIdi-In2wr(xYHTf1FyZG zdUJnmAjetna6u7gAtM#S6Y1>Y%WP^qJXmol8$QsVJ?nUCcehfEVw+D)dWe1|A^w zdy_u*SEL{5kz)Xc-{(UGn#&!DKxlK>&U>Dr{pk3MA;(moYwfd2e-FDvPoKlEI zgM)GcccYTOAb=Yd8xsAr9xp3wN?r&lGCogl5y1pxxQBCY){r)UQ59F0%?RDcLd=Gn z&Dr?T!i}hrkiO3x+q7wh`#Wmog4oFj==(T#_!YUpeeMhYrjG)5KaE&8iG_4c@^J29 zd-fZ-c&tq2yr15iaU1IGDfQb#^;dAW=U&dKCrh}=AIUN93&fr6&BY50=RFK%ouCcs zCadobt^3Dm^LC3On}$T00_Qbxt27MU_>*TYSOrE3QO-Y_?or9xPcc}rf|d;nDXW{f zIMx-ew5Avfxcf7wM)JlE7ssvI&rH`w9IfUr*-Scb$WauQXR`*s-=6t8Fe_ynbL$#y zoW*%UryYN;t4X;-dhCPw?Xpipz|DX8yf6EN8#Pl~isv1;Tk;*z_a!QLGa{aqetY)a zH>uU0FObW#ndx3iVB?p_u*avaCiGHxZQ{}R&nBfT7@+>Jm}tt=hi22 zUskPe6u`Y<6L6N90=%PD<}h{JZF>=S&GyOcc2U`_F{Xi&&)sjQuTS8$ev3m8*n8lz$13XPV@)ySbJM81o_aMOTgUvhV&5JwT6Ri@C(V9X zW~P7;BH&q;FFV8iR$z)SQ{>b@xF4Oj|#4QejLa`RW|44ApLn(tSz=WZGkWUkATdeTMQ(WdUMJwJqlpbgc^F1~DY&)^6{Ek#B+&Ep3yj!eZZWfpsW#Ao5jWk8 zc<#MDp2e1PV#S2Z^egLk@da~t#O;;~td^fu_g$ET0wn3XgBg!$2l%cX_W3VsY3J>RyW_d5L*<49ugcJ11!4n?2i*P0Yu~g(AV@LX?Jr%4 ze--EeP2AmxAUcXPNRJE?C?g04n{G4O2;2bh!Ll})aIvS(zTD>9joCU4BkrKESjtV83&oo_A0e7P|G#sl{RsH#-?PHnT zT&}&ox7Jeo6l8PZMt-AS8169jCYalIMSkXZ4h=u_jmroZZFq7fJcUaX*0<-L7!GI| zp+|SVHN#JAoK7OPX}AOThq;#A0224Bmp(%#H%1l7eUGx6np_;<=^_Vl-+OK}3EDiA z$<1jG`o_E}Er#TTxL+GH6_4=~WnvY=y|wT0FVKnm+LwkRxZQY+TBsFn+N-y#F4%mh zEP-`8nyeA2Z)29meUbJ}w!yO3YtxV2xWMwbdxw_XiCc$|pP<*aYbJ&0TY1AfP_m2n z`H+c9(h|4%B9};R+fGF`mm0oN0J|c(MCi4;%1xZ(R3@B1%hQh{xrqf5bDIw8!aRts zo#Q5*qx-%`+eXcUOl~khBJQnksQF2_bZ!!r*8jnc<$vZLCW!(DNW}g9Dz}LWlLZcN z;}9I?mPqZ4u812LzoM*INEe4#Zgl5xNfgC2Dfe$;Lhnwv@dhxxDh}@0#ubzSV}{!g zK0Gry`q&38TkbT=#E_3nlPc{rZf*44i9t;gYPgdZ*Y5`#$XVhqee;p+?GXfhTkbyj zb7DLeF;4FuNEzur{McIacnEG~^gYBsmE%^1Fi!CI=%O;xefWjz!SQsU;n;w7E&in- zw=#rriob&?mXU7yW~zO7Pu!gr%WYIU?}R;G9ck-ciMmF>o*%Hh`p)0?{Kp-j6XeV zxC4o+NM_Ho?HaH5BJKve-IO1o|Ml#rV!VVs=MMceKQ$M}{RDlO^5H)h13F766U@T0 z+*B7#L12Ab^1q$^RE#&rowZx21v44KeYfTQnHbPnLMi?8M%mAjTR6T^B$FXL<76L6 z<>r!m5;rvhOYZqkXSsT|UgB;)nk7$LWu~`*#@r;azD0A-uq|Fnjfn>udy(7{ihO!I?g$o(VuR(T*yWJz{qdZFVX| zlws>byH;(!Mk_wp2lRNr1{o^)!^(yciCHlc7}OhaS9?Im-2DhuBhp{(vm3%BV!LiT z`Mmq<9^Z>qlpS8Ue@CQVB;+#DPR&i|x}f|IbX6(OOb)i+DN-TeuE%nxNiyu_lWq0) zik;Eu)I{*W=)?58#(*vMH5cWk&gy!*8;lp#XN+^?78F_$IfaE~4-I1X?Z zvt*(Iu6G^c9t!Emw5L7I(HFv7;FdiU5bI8G1v}rmok%_G1v}r zmtwd)l)IP?{GfK14@)WM`6baMuL~)qU3;|L%4zbndpmtwhUKD9<8`rcsBTvT_yY}9 zY*Q_xD|;~aeHmTZ0}a&%Yl(dc1^t1BDhhcSyB;3MjY3|=OQR1pR0nVuF&K3{)QNZ6 zt6GGydLpln)@kfTFQ8=`J<(|n;%>i@53Wwb^|3b8;}>ANJeZq%eEIs;UX!OeTITM= zgFlqp9GxtG9R5H9oxfg$k|AE-59M~BE|RWss;0=Z1P;ONk_oV?! zuSQF3EaibEGUDZ1iAl+^OH;(XlfE2=wV(W$) zN8#%cQSMAM>Grv+u1BE}fnO_nT?Y4b3b2V&e@$il@o_g>nw2Vrdo;>C;o4|ow%pR& zb1Z0k`7`gzI-cm42!CasiRV^<(H-sZZU~B9&#LF}mdI^a5p+x&+)pc-k|~8df;5YM z)$$E+!~RxL`i{8W_fn%ELu{^3t7|x{zW-eIFf=~#oR1ETL1*r#^=}bk+w-R-al1u< z8L;&}D8XhQ6{Y zS@w)!F5&3=D9}4G1k>2fWIDT6`oY05x0_V(sEGq68n|o2-AF$;IOeVrPXbMzA>yug z!fW__jOSMU;;`Tzs9m%AuCUG`TLM=bAB`M>y^D6`x}7~`aUXj58(kO=-l%}kY_jlj z&MZcyZPjYy%3lpP&CqP{t8%z;gyO-5t>ZizM$)_z&#fZm;#jH!Vz@i}pg8V>(~O3j z3^wAHK9dZLAO}Y#RIAaB!*D5%yCbqSG2FwB`mj;FzU}0af%VJ!S@zcyI_-x7xpfxU z1{&^Z8cWbOifxd?BeE+*q>W6fIBq)E{;(9ootP?z4HwE0aMSmSM)B{FCEN$kUo!;( z<@}02+9Z28HrthZ&|qV5;O^=`{{eO+oW@+ zCV3YC*Id({=3T_=JLR75+seRC`(78veR#%&a{=EXqh4P6PHe8M3`CbkdFPq~-y);F z@9}Z(`0csExb>QvefVTQD)TOIyw-osQ0D@{jqUVHjx=Goja}3uL$d?&{nrrc*FKXxLa^b zADFCgcjE!A)4BN44VSbfyLPnwZ=EZ1uPID;InQ(BOu?#pYe)-2ngfGu@Ra+dWn=CO zS{zxGUN$%N#X%D8tKqld$->o@#N8{y*TNjF?p|FjXhT4e-25i+wz>$I3zu-i_M}KS zk96*2M%8l<`dM|APOdv(dzWsYCo^oGyH}T0x0|6R-lDi)IkdLAH1mfpV0o8quVLRt zgtQOt%izqrq;u;C>tM-_;*ql;?i1!y1AIZ;JTo514!fjtN0SSWmAh4kRh&E>geyGK zx0_9z+Jh#G!S980M{W3Ei0bL9#EMJQ>^%i>TP>66tvuhFqbo<>b`s(=Zs`NjP|n?c z#nZT@56D8h=H?kr$mJ_*UF9t{4tu}2pagWA%_(~C_ zN;Hw&YJ&-!DD(h2%{|-;1&;_H%#By7rrl%YM#)f*ksEKrk3zYl5r{k40@XGu{jPpL zcaHdu0ZcjEK*?}-ItKP`vGb}#z+d2TrnoRPr1A4|D4P%b{(9!2j=dSrQJ-wwXSem`|?F6Q`^QOHP?Q$nC)~OfUT>U zy=&$o^isJM2uzzbj1Gnmne!fY)U>rLBeJ=<{f@YwE(jMNd9X1G;LdkcmajN&4KVJn zVS(g}GLx6f4GSb1j9WGPTXFSU1C90l2)PGp*A8=6E0sWOyGE0V{R!NCn0Uo6yol!R zEO#EwFs_WpM04{_HMHl4xK|cSMRW7adCYy`%keQsHwhK$v-t(dnEUD&u756?n<--M zJI{5@Q5N^@Fx0Cu z8w9)?55xKn4}5sWQ2_V59t#KeoLbHc;P%*bU{Uehx!GeJP{pr8hn!e-iCquPal>$X zoZNI^$7%gHMz2C8Q-pC+N%`F468r(&V)wU9KXQA;L*HxbVLpy?3_`2-ioVy@!yK-^ zm&8p6OrF@D(_T%PqP*(7gSg!;J|DQ^D2ba6*7Uo&R(M@-aoi5<$i0(U%CVz(0d{r5 zL8|^oC2?2UV;yyfop4z)UOiIo)vu@KlwXj(s|T!?$UR|lS-(L67?w^#*osRm_tpVLn_3RHYspjj+}ADxs`V4+D3j`MKNv$) z`P_YgiLxLB!o?c`nr}Z)Ayhth7ho=fGjZ`JtD3RXAyhs$opWtvjl2JECc@w%3VsRP zw`*;HS-xjsp50qb7scHK?iE+P-{_xIZ{bW?0xIZT+ zPssT#e)N*1OmX_Y3UwBAw}CdexI{2=t$b)N6Wi-M>`o=5EO#go(Z{2ub4NvY#_bD& zcc7LRqwlmEi}W3It37P}&FI{N@N(`r%sr^KYWz+%9pd~x|hzW?PIyrBZ<5GbE}A7Fy(FC)am++sI0Wx4-NmOHBSUf*SL-yY+xRAr~*1%E$2&aWW;0S?xE{Jc`XNr*l}oH-w|Rnf|6bl4}x4EykIU(*wZL^gncl3~#&%9NtTnFBX1GWi{&@NpDR8HUKVMjd} zXNtGZbXC3L*d=fq62h_EXvIkeba1bj+fyPZuKAe{vDql*7U`SRY9!^RcmH2My}_g2 zVIe0jIjS!K?unFp#I2ZwE(v!{&G)e2HmyMk+#cH*-^P-OxCf_A=(|L2yROgswlD_s z`gYi~+F-bS3-2EZaYW@j==-mfacjB-?l5_Z8ebx}`<4mQ*VL|Y{q|-Hg&1zJF9c`x z&Ajenxc}kSjlQWM<5y-MP$&XI%C}2q!hPjf<2!RtzXNxu%=ncVvlYx;QK_CZdiT(2 z6~=uL>)E>p;{IaJ-Ha3=RC!l`gxr&I?oks*Puy>GtnW!z^+=II(HFw&l6e9*O|T7L zsf2rLCtOPArtf?VpFzE$e#3Av6HO&^x0<-Cq)_i40XK-N;h%7c8ZpNm6#-XsWZX}v z-^9Hk?x?fg)9FhP^F`6MfESpgyLWY|r z7R8$92e_Y@{CHYrxwqVZcTvfgdBLPW?)F{-l_u3jaC7#=l;B2q91>-w0OzW{Ys<~Z^^Uec^byZk zHKMs`e3_TayAa;&hH=5IBVqG|3iW!qh*!*ug0XMONzt!dzK2n0Qrqs=A}IF+}jvNSJht@ zrf(|YHB?a3pEA4r|ZL6xiBks;{qc@B6tzgTDwo?Ol_y35} zN~e3gO2K_Nw&f0A@VITpt;*1M{Pu6P8DHa-K;~|BHM|d{SMg%Eg1*NhxKUS~vibh1 zsxCZtL+5u4sO3&{vD{?OFgNBGhNilMa=&ua(`2~iZu4M6oAnC@zPpQpV{biukF)<< zI=jV*W_`yc-#w9XN5y4n;;j$8suajb=a9{lm$-J@hGGId=;Ku6iA~F$qz%TC$l6o{X3i2E&7Ay{40iJScHD z%6mh-7voX^E^@hJLS4{PQwe+nPTX~Dw~FC)2~`g5@ZE6xhKvSkkAmA&{uy`YGEd-zqx&yw+&Um>Uj}+(^CSo|u6+4oJ5pZu-aEgQmFh^nH(|56?|a z^D*hS^r_hP3hbnB+TldY-_blH7lU)Z+#|()5%(1CVO!s~)ssum4#YhY_iY%aoI9{h zAL=wsESS1_688>^L{DEl2W>xnZ<_>p+^{k`;2LY2OwMC65%=W_IwQHG9Agp5O>MJj z&`;%_E?;0P0BXp{)U@?STK%@DhMP?7V*(uy;KtUENN%8eSz=Ki#J$;pTSeHFmdb7F z_bK`wG}cDDEmnpic?8^;RjhX#T@<%#o+C{zoG?`CU8@pqg!Qtjx9f>aIrrS*=#m9D zw%+57VDl!pdkEvD4DM!hNVz-S0KZK1{gP}LSz=Xe+Hrt>K6<=c@5(spKiqe5O}Ium=_ua>iFRCl*v5sRI~Sb2 zfB$9sseM3`ZG#fb4Tbya?Y>Zvg+}1@ZyLA3jV4zof!s*4l_6Abnjl@5dQ#6T;IcsR ze9(ooaf!0&ry;oZZgYTM@FuQi(l33$=9g9d=}2QUS)x2aHR#}`;q{s{(>CI^^Q(fn z<4(IB=hPu5u%9V#<0LNrT_;Q3e&)boTHv^wGLJ$`aAPCB72?)#m&5%QXo8qidf1PN zNDM@*pcu3o?!FLxEBmn}AhDnkw=SB14SPRYTh66(TR2RoTsuy_r`+Lq58@sXV-T)y z1ABw7wWQolqHpYHvVw*H=%sMqCSR!`E_7aWBiUeq#W!rt$1=G!qs%XN>)cy#@9~b2 z{Ym|mOz!(RGW%bJhRZ(pTeEjC?A!_W^z2?HcWj(mMBHA+wi^exDBLWcZt3llS{Wbh z;KSBzdG&kt=8&av2kbdGQ>oea>6SmnrTwFZjW=oSc{2J8ETQ$bVV&3a|ELC3j)?@VscnHjmIo0)%~ zM2Rx#KXUCy6TuEoF%8M>nf)lTS!WW3z38%zWPp7^$2F7$_ z(x%r4{D*S43{G!V$(v^SW4QUWWc!L;Pk%_5XgftldV7dav+l;_gD_@FF6<6dNgo1D zai3v^$*wj?uU*kh-Q>mQqKK4Xsq-yxi4eHN5pOC&qm;{? z?Y0ZzPR3rI3-1f9&Pq@u!TPq0YuxVjk|--8r+n_X`3f(IVJAzW`o52}=bW*LQffKR zamV@|a^|VaAj$Q6^blD`vD`X~>jV2z^?k72!ubscxh1|cT9RIrFxmpG1B0Qb1ll1VD8V>pjPrA3ck1& z%>Cs>MDj4FXl{L#z&^x!ySNmr@07cq4la)*SyX|0*<45o(N`}bn&dCC8ekpi*O}9E?@uzP^ zVQu72oZU|F@LQ)S)3PI5eamFCEt-3EXIrg1DZSP*oyYb4^zEcb#GZcn_oRdz=dRYd z2Pu@xbe_PytnyCh#caLkJ*n=iYeMjLUpQ4cZy^by0+8FeS|alb7DNR`rJjp)*0_~N}ozD=QHjU z?1)ctyY?gZnsQgip`zQhIs?oe;v*l2GevDi2Eb?^db%OPQn9;Z7=KK)%q8*zB^kOP=CZW3- z%mchb=Ff=<`r+K7o3*r@A8W~y!XUa?JCXY$AvPY-&Dx3FFEiY|n7W)x=xOzP7?&xr{r<%qH|l?x4wxYrw0&=~hPBW@>7;WPokZa6iqq^hsVMLdj2+xC-9SxEs-n2B&j( zhhOT2T<)t( zIS)a#D%Ebu%rpe-s#db6k$pe5Q14;xN)6Nt$`#i&{m5-g^D%wPRW+wP9$ZHCw@L>g z$rJW`R3tZY<8sLwhrB6~yT^O$n!7LJ`vqIf!bT{6oZ1}1}W@NE4az@0r1J#Y)h z&g+}Fvr;_wVe4G>D;8W-SIT)%Y*z2mXOYv%VUO5HAIFXlQ}q!FSry2q@ zT*5~sEBbcaDq)R1U6Jj%ApfwAt^tE~Y`2r8;3q}Zn zh_BwnZL2c_nTzEnPnKKwB(l|aY?gZXjWW*MLYd_A{ar}~o#*Z?D-pYc&*P6gP&kY5 z%}ie37H81bK{sXGO|Bm+q?}WKMe>Kt@RJt47g7dy=g@95+}Q=f!nms(_d?kSD2-d^ zATwcQaBplmug6olJJ%b?y^rX!T>XAz+^yrTR`q?G7WOjqU3>d{wOuQa`*jtX@fluF z^6Wtg`i^HFt^(;nR{`Ab#qUU69;6Kq3*i3ni!ty#4bFou@zdwiH0g*te#JjO(PFYg z_$EzIPi6|yYWGy`0_?R_?)E@QFM(SJKJ~16*ZWH6{(5w%wYqe(4G3y{xO*P%CFuKG z&)1A`KX!<_fO)1V^xrdX74$oIDQ*#EU;Ln?YLZQB^*VPgeRnEpEUf!AsNe5;)z;cO ztJ&8Ti{K9WuJKWi8xI?E`x!X%vP;XIa}D!%-kYyW;J$wmtq%p* z_)Lev&qQ&ylrS8_R<5f-c`ZlW(FZ(=0=QT{PM)Q{^1OGBe>rWUQw?5{E#!+-ZkIk;_*=a`)yS0{R0t>*eVZ-&F{$N=bmcB z=?7wW0o+$ntq$DLu?8W~xQ1!Me{Sq9Rp0m3J99AhhZ%|aV?cMrt@wdl?m3sinGL$5 zNZ=+rZ8SlTiktc}n-isRJFZC4LBZAVfvX2nP4t!WTp#AH@cnNiQn^?74ss)}{81;x zaVx9P#Vvh-^f7U}GEP}i1ouyZa-(Ut5Xi1!DuFv`*P=1$^!pjE_jbwYds6ki#y#wA zJZb9KOgajXy4%I|!;I1dqG1=!GDe)J(aBFr<8F6X3GJFkDz|N;6mv!TZub{!s7bhN zZaeu9&Al}D7dHvuil+?j00-`OgKync1a~!hKsvtW6p_lkP2iOGfqSuO@y=50+N<`yc6T%9ZW0^E#+1tKLD`|b7XxfR#N)ceI^{xD&&ShF+u37Vi+sofh4Q8w&@UUwJxmTrFRjMrc2Yl$1NN*TCJS+}GWt zt7>kwm%*)|K_gf&>Ej*gRrRu;wkldbGVzMwj#hu`{mcK7a&P+S4{BcL%P8jw_w**^ zrWuBD(WcASH)?LY^!e(u|K-ZOE%{$zv0%}r56BIH618jKj`jdl`&y;k?Pt^WDV^?; z$RH3JNp{>_ONM%6q1F5PUlPEo?WWyjVcgA!za;KR>TUgdO@6QTw)<*-)s&_0g&Jua z%kOW9+w|!)HtWBNI z+3^8xyfNK>Pz_1$#JhZC<$%G+a=+qd=0JdFJL2v>QJqS`WzmMzI&Q*w9wD{UJvuhX zz$Lr=USSDzGi}{bJ}zqbOR`)h{ia=e>0of*xcRk#Te9{Sy3!n&w)@d8K8f6>d+IXW zz4=V|X8hZc_A2iAT(%HTDz~*;mfUXjZ!osaX6%0hTG%;pp`e_QDRxSw;Yz%LN}WX9 zRM0nLN8H0yrTdqKbDM1)o9N8c-uCFM&Jo-#DH?C#L_1dzAe@`uCu!d#+|aT+j7dSu z|B1M<1{}@F_~-JwUJYAF3)!f zx2DjJxhZ$P-{I1rccZ%(soNdm-uU{8RBDBk4C$F0R(#F=X5NuW<&Mkw)m3DC+x^Ca z;U19z8rjgGBfF&ha3XbC5Sk1Uaig84LhqVujRLRWhkD24oENd&8Z=I>dgYu1jI!X0 zF@_|jhj-hrUA)ee2YFX+rR>`UyG}bEYNw%ahqZ@G;Tils3P*Jj5M7pV1>dkT>uu+o zIqsjv@D7dc7`U^|9W&FVmqi;=%iJ)-2ttQfrkGm=s(WL%B7lEDu~|Zl@FzvM7-O)d zce8Um?L6_HP4sLCGq5Hm0%QtvyILE#Gwn2S6Qj!-z7H~~ZLxKwcjF6jx8wmgcWY&E zv-$uz5>8n4>$BWk>kHvl-~c4us&KgGu;fNr;95@+y=3Aoe|eT6)O8_Ynoz=OXC|rW z&P(E^Dh*2Rxf|DL^%-tFqt-4Ov*DLRE~1REj=8C|#;{|gn>Wi-09|zm@J%1bOk;@h zeKwlWhbCUdG;TPOa%i^Bis7EL!9)Re+}v)b(C}@!RCB@L+`%QEL5p9WXTZ*4g2Oa# zru|wbmdzG#!V`NwgO1#UyNuu@IBN4ja^bt0Sl6N9DEJR9zel}b^VTRCRB zuVj$3gQ>k;KFQ2Imcwl+!91AOddPDt3XievG;=<-n9x0%XXajOrFB2& z?!>?yNa#Jd@98+jwblxg4>NPE816|QK)FYImzpj8RDh7a56V3Xf@%0%CGQW$7xM6a zwSYSS;T=8KN{|txpu5QICDL_=d%xo!zdu1Hv@&)&Fc1`wh%wwG}%t+0( z$HSePYo%~^UiE8^)Lc7WFV_CfS%p{K(d49N%j4lz-ew`kkK9KK$~i~ib%DbP91GO< z{R!L&b|K~b1n$&qIiVdqTzbyq=?UDa*-{Mma8v<0Dd^qN_!1)QPnkAK47M`3r&G9- zb%Rp4PbrmgN$*ej!THCjPDx_iv^^&7c&4ckZgq;j;~DfqxIa3HJF;CK6?at7hm$hu z>?6H*S_(spUI_Q+r*VflmqNI|IgLA*Y>$gO^x%bXpZM*W(4e1IKF&VYiQK_NKYOA- zZ30I(82!`!*|Yy^>XCA5_m1e?Cgc=c6JeF5kTEj?xLBcy5}x*dr!GH#cJ-VpQZfuJ>@n< zJxhJhU8uUJ+(l8%UG;O6zq_a0o1!S^sPDPUT;Ee}gDc^=>wb>%)jj6!=BV(Q%hb^K zedIRaZfCChIf^IlW{!eqE)(a?o+~(e0 zgA;ePyNB1J;4aNQye3lshdKDbGIxQBvG3nnRSS1Jcl{r_d?Vb=q061SynD`l?-nl5 z_X-y$_io{0x$oU3I&l~Ga8niBWbWN2x?$}5w_y8$d+wFQVaultHZt8|i=Dl+AGl{% z!9fLZ`fd+e>imWMz&*bX4k^KX*LQQs%3eTOPTxOpFF+Xw5P@!xk-2XhF87`LzV&aX z@9qG7YDq;n?j^}|2w5!mz1wH9-1lxj)pFmrX{@*0%^~{KlFG2$?UH0Vge;c3J49Ja zDnq#M-EeOE_q`j=f8btH=R1Hb(!YOb=Le|jMHKOaz89f}g9-72z7JN_izw&^eJ?@{ z2NOc{eP7q-KX4zcq0L;-5AA$r1su5e`>pT$dOddU9>cc#E%$Ew+;TSu9#!Tqj$RPG zkFUN9cQ?NR4lIFiAGpv36vy26Z+YI+3&HpBbztGXf77>c-@oZwxSItGG=~=9eoo(g zPu$(1D|-Ru5%&VbIJgKua38$NXD#ptea~9`2QT~{>-!#Fmhk-j1NXsu*?a|}fB&HG z`KtfmCI6uBgID>i1>RSE<3-6onYH3)D*OlTnJRv!V(+WI)jeIe=pVRe>S^;7`-8sc zsrQ*m<@^=*Q-XQQ=I7VidCH!%RN}sew?q3LM$ zFTDob*jIeV?+cD{fA{Wl^Cf4l@9n$K4Z`8I*XG^l#t1h2;R>pZcf5ZycRqG=Bk1x$ z{+;q`sCJ-Ru8j7b;>=+bap%wAvcBJKZpO}^xxP2tSu1$wxfyV{CgsKJJKWCYJ@4WC z{jPHx>D@)UOB?#T-p-Y9uljY9fWPD1+?;{l_1RVDJI-xKwW5RLKIz-`?&1=Tg!|nd z*W75%`1gq0IDM1d#^9{)CJuR*+-j10bTi^zL3g9M(6=!bM-A^5#!22@w;RowJKJTT zuy^(SZ_%?oX51RV`DVmhrQuCCC2rcx({Zgg;LfUI>O9K~HvwWdwZ$J}X962ExQ$UR;w^Yz@Tr;Ep%63`SyGZB}p*0OcWTmK<&YQ*=DTgI+& zjqh#e5;-|GOjPA!f`xm0NPm~Ph3)=v({yw-@xD~{+0xq&x)d9X4`#<(t#4kLT-`rzRwmkdlj_p>g09KsLdAZo^{t4+wX$DAC#XYOwOZ|cD_=bi-2t} zQlpT!$jMw+#e?rY9u->GF?gNyaNcjp2l>&nEHIF<9v2U`<2%B76?3N}+uN*fS%9Ax z#Wx>~D#g6h+^0qP>V9#{n0#6^pY#6U*SXSl+RT&w{WiCA;a-{M6>~qoFWjQD)wb>V z;(D-pQJKEudU>1my(y_Bm;HvhcLVMWJGnA>o4MDGA+*){5$SuAaFK2Y+))ylzXw$n zH;Ki%*NsU3ANUU6IvKYhbh^)kO5m#L1jlftaQ|2=-;`h?JMQN)x5>9%WY}XqIlSBy zyQYn~t!Ju$g@$h~gr~OLO)BSr``Ldl%&|+PkhlAFn&U0;Z7p}t+&bS*wo7oS8#?M^ zaJ#*Bg@EoY0nNk=+%%-=d|Oq6EHTXOmhuWwZ!7nuU_IgMDwS~$hBelA6LG(tqgvl@ zue>^;Ih8%HLNj!FAxipQIau}fKHsuC_uMVb*6D0)5Sd(%)x_;9=iT7OXa!8r2LrHT zMTcPC74B2p!AaHBon0Gdc!hvO-$g;(u2CS`IYV9b>*N$s#FCubRhX)Vzsv#bw0{e? zUCmPL2)7yuTM{zMvaJn?&!&@AN+hF;iR|Oz!cATjI%GtniO#T8r@f|Put$81q#jOV zr0)wi2vG7NHwKArskA|^m|L)~;Xd))Tr0!AjNm4mf2pp$+=JCQY9?@V>?pTe$1W8b za)nXNYCCSF`?)!*Te<~A=zCZhA$lRMz1$;>f%I+f9!ztObozzhdNDlrk4N-9D#-Rlg7ZTab&Fd1Y??25>s%vnU&$H0Qd9`P{bgmn6+nim7q-v>< z;X*D;IIlNwKOAt&4DEu&hQ7Nk>HDS4*=6#pO1KxkW>X%^>)UH;Y~`*(@=@UC(VCRuTYzN@R^VQ>lrk949Y)6xxg3{AJN=&A^(QIJy6o4y6j(O5 zaXLH=^S5uIKGG%fc1O2X*wjx`Zu536A}_+lNLxrA8e@2IE;#Qtw$dw-V{GqW)Mrr|0&O98=*D4{xe3jkrtg zr#+(I7Ff2tP28pHu)yi8{#1c21aDgI)0OzEFSLy?3HPR`pzP)A+fx-?a5k13A*~Ok z*-g=+g+r<@#D>RDdz1^xHU)p;rXlZQ4MX_DnYe7%q%}?8?!ce}_j4s_GwyBib0i{t zQ~Jf4sK*k9ZR@V(BE)m^>%w(lyLJ-E4OA7 zbGy7QH52amDwNVK6WB`SWEXaxoPGqija5a_z;{lutUm)=k*}yU58C8RxmRdHrGC4( zSEO$uwcHS&%wsyR{!mSJyLp29Y2RAz#-3xDmI2WR_!HA$`Yl@J$0XYtK!WNZfY3Zj zGpg?oIZcIAaC*wKNMk@me_|SX;GxqQH%-VX_ZgaUR0R>KGE<$BPiGw2UP+Rf1 zraGGRAJJd3obl&dh(kj{8py~Rt-i*Zb45Lyh~%WiBX9r3#D67BpL zuOc~vt1*QXzd>d07SC-PvSnMNg<}-c)Yzd_jBn(3la=TmF{fCtZ5pbgF8X?~aF;KL z`#V<|OSBa+$-o5%NhsVDT#@D}ggkb#^4yQgb-C%*6;hdo^0C3LgF?oS9~I?x`P?#5 z0ghzPxLdS*#JJ4`;YK%jRBXyke_5eLs4$=lcYXS(C^pOIZZwg>5cgNy&dJC6Zg>F} zxX&mCZ`nO6j>~V%Wo0@=qrWxWG>W4ua9@4v0+(nj!r(EO934c=xS>l$QFd{%vz>i& zQk-BVe_7FrJ}lS_B`wY`!R>M^k=p9A7Bva?TKY2tr*Vy>Cls&KZ#6u;vwBoC>LEt< zi2GkDCEg@QF9 zLu$y)jTep<5}M9wpY>hXrx*O#Whe)6gR3|zHGICEe@byhO?A8e^L#uT$tpk5x?A@j1iHDh@0HNaZKVb^j)v+99xw`*Cm(b{!WeY3*}7OrpU%a1H+ zv+l6^G9bd=h`v9z69Bh!q|%lfS*Shis;9a*Z$G2VEA2-FZVC%KpuNJhd?Y1xy{5}? z9^r@W9NdV6k+HARs}HqkoEGxner7N>QpJJ0Sr}?24q-TMn!z;%OmMGgl|tr;x&Z%!$)TROLbkPS)7WW9NEY&>_sdWU-LLDeY{dua#%Oveo!>XUX(VM`xHc{Fj6et7|ar0&22iypi zuJ7A9XT$U@ec$#E&OH1e>Eh}D!b>;xI4n8#j*K|?$j@-v0ox~hOz-3H7)F|}ZF0Jt zUoU^5N=oC2%;SjsY5$g8h-?TzHsZ#`TFl*;qR`#q^qUJr+&nB}_K8iM4OW+kbSky! zF#jE)wxHWJu1{oqc>JJUS6}J8l;!z}`@a!WHVNmGlVy!9Qa`vG;g*;u54uhL&9mik z<`Pj8rH|Ig;3mS;ah26Wi19Aw{?HKj@6&0>?9d~A{EJ0D<7SBL&`>)! zabT+=A5Z01#I1;1?whQL`?Jl_0@XVZ$#u+#iJjMQ^OW`^<8FleWKhTg1NL$!m67P1 zxe-!5RUPy#TMk#{*SqR7bBvJ18=A*bBUc-&?<8W#jip)jbOXcNn2S(v`1*9C6o?Kh2`&~Zt5 z6Yd9m8s-K%GG%6|+?EnD(|0?neruoSptYE0eg6dE)8?chP~{S2)b!;dm_g{A0XzZq z#!1ZF6y`$YnH7Et#HSfLnEPWT5qJ(DH+acZqv{3uMh$Vd z)XdK$y2Bg68I;DI)May*+J2L$Sn&gRAfPessQf|+)$j=Js}|#ywo!PiGUMJA%j51y zH35dWH|!N|8ut_p^Isrh+_ZSM72GE-LD%y)gz3E2;L^0;HqN&MdndC?0K%0QZwq2J z`xS)}x1oE6Uup7=nIk-si|cfI$GFD0&EJfU@C)bZ8WhB?>Q6X4vdq z6gRct$__}Dd%)GuLyDD(7q5df;NCcH`UFTee-rqoqvJx1To)VWu<9BxLE)yTi{n8= z6cBS$@CY|vuU?L!B`AM~3Dy&GkC_hKs~d1fGu?pu>mEy+mrXF>e$@}R)Mu;)O>zo%^-_^%#B}JeoM+%Gh*#t zL*MI|`>UM$qvdheAF}wT4s&4B994f9wPKgT>Km8p#9bH{j_Z_!dqbNJSh_67D2Td} zCwQj0TX3h(V_U$$t%zIOV04|F+pO@ds|6X7^oT!LGV&av!ys-u__-i!OFJ*xe=LYQ zHeC$)xA;KFqPS_f#*gE|YGSbyH*>c-2@}r;WYsVF-{5K{;>Js{P0X!2RlnTSanQVO z<|f&(n>fwgWMA;043WY5{x`UaHzA0Yv@xY=iyyU%&IJ9$X*VL8cZU+}9cuY0XH{CZ(O=CBrB$O`J$>iKmmc+fWk8{+H`_W)@ z!!BFGeZo}nA>qcwx=d&Y^+qH4qPW-g^T7D-tB^dvz@8dhp1O@Fju_?cb!T%ytFoAh zxfLRhmZWdT-T3BBw@XsfVXft(?aOsZ3VENx4u}}WWr)bR$F^X6gE+LqaYx-+Crt3P z^tNLNJPS_iI_h{0D$Sd^wW5dtcRaBjnlmrY6d!96vKqVvv!>uSDoatog1A36_G?t#D7PkY@iA|3i<90Uz2w03K+*Pv`3AVG`EI$~-+1oE z_Ra*ycJ;Cci;);`1FBL34Jn5AnMRYlh5TFhIX>bZ&UKWG4c{DCIyXk){oK;6 z8`7KS*5Eb*IdZ(Dv@}Sz2G%(~Mj5BVirY$P$cjE3d5F(LzYgfdIGd{2J~? zxH4|FEN)Z&CG?%sioeGAO$@?~8QgNa*Q>^JxiQ;51Syq3lOerS?R>M_x(4^ebxGYD zo`Q33s*kG)XarlPP4Q_=2X3&(A+x&m>cQyl31Q*wik5`a&OHyTslU zU&dq#6{45Jt&Sc{GB7l8b9;d5?UI~6b}_j+_p9+#sj@qwJ zh>xzwG=rkO?lBYGhO#V%8_U#V8gIr7UwV>a*5?#WUc>1+&DO+Wf?Ec{md>{Tvnfu` z>~HPl7+&2N)eR!aFT!^!PaFGPb*K7Kf{h2Z3ezWEt1;+B!%hTNgzh+McE zaxTEEi<5`$-I-Wva0hPtur0*B3Ae*F&LNn~;?~5CZ&;Tf>I^&DE!oP-2J*`YxL@B6 zS3AcNxmEGt5+EyvIto0hHgt?ETKM2$*aGyI_!JG#OQ>|+SegAXOh-54t9U{48 zT%!ev;ut<&k&{ivEdxXTI+5n2O?1{7ody@12KQ|h_5|o^BQ}v(>VhI@V$W2OA(|XHclN1S$(eBfnp;YhZK)p^ zHYyI>xL2|fZW(z9j7-9^qiX`qXQRUqJ__{s9z!;%f2uHm&1*w-KyfOQ@C}NJ?0UXsgVA!8LW|=CV8SG zMNNDi@j|^HlTBvBcM=z*Z>(E7Tor>GqNSJN3HLuS7aA#zeObZ;nLRB~ak8NAZ#7Q@ zm<|`x&LQ2Cn{XTE!9Y!8Uz1i4MD7cGcCggp9`eMuv_u zIpZGZY7~dq_T2FhAXSGGc<#kK=dms>uvFcwomvF1hv}!{FNGV+mB&Z($AF$j)nIw z(>Ja6B6AVBgT9r7O4nHix~ltEUw?@2i+mbOT-1+6$a2j}vx3*e?O(4;GFZ=L2&_H# zw;Z^b%@(eB4IREH={tBqVz}z&Gm6G&$J{OsLAaDu&O5aK+y-I!yYk!{3M|zVRNG>V zX_$M5-IhOy=CXQaNJPu+2YVz&24&$!tUtGL_-ew+e}Bz#%g;X0X%}Ej+xNdL`yIB~ zVxYR_@r;0xfCVSY25!6dChySvnU*l(-nntj)@T2F3*dDkm`=Fy1NU8TJP6j=h`_AH ztbXijdiny3Pc?L0Y6&B5`8gAu#Wt7z7jS20w(puyb5^8pUZ_~9S@sq&r07OA5jYHP zkHG=?!Es~VW`DjWWY~3-J2jisdpI8rUw_HmHC!g*XyDiIW8jPR?QVicDI@0}Qw}jz zuJ18!c|Z;&9ol@30{Cg0mR+V02c;s zk~D4h%+ruGQXA~g4?l^XbS?c489=8!yg6lVDmOtI`Q&0VNR*PFy%+iI zC7q1_liVGhavpP9^qWRg*$KD1&wUkGnqeXrS(D>D=B6IPhLfm&XMKsKXn8P~`5Sy( zv3W+Nr(L%bCK>G1C44*z#e<)upd(*^pGNH*VFJX{_oeIXDI_n8(xAin{sCKs?Fjcd zQ^^)esm=(FgfbkQADCOdp6#PLX5h;7jh=(tVO!|NxessS*Rf3dA(iVF;w(BhaM#O= zpCF9KWaYVH2XohHgK3#%gJkF9AG+U^daj8KqT$CDM!BhFL&b_LG0g2esm=X6`?6ER z+y)7sj4#Yg^>=(qPIvGFuCeu)zAuRERF>mECO2PMrYhy&aIk$}ONi*w!1H8$A+GAj zGfv?6FuiV{a&?Qm_IN?|iFjn7rom}^Sd&!lsKp_=q>6ens!Ti$ZTB}uqwhKp7s{%W zdRHQ_952W^7Pmb@6q5ub+mSw|*6fsX68Fg{1AczaFK$K?+-)F@W|mvzWuXhYl>+XE z?6deSuHM-14v(B8v2j()=HlN&a_$(T1ZK|J8xlcA%WXtnIbM=={62eZa|btj{b8Kj z-97q`7hS)7TvWL788c=)cr59ign^% zkB{1V#zBoLQh9wR+-K28JHSoV(0+=vv3bBBJ%~ft{WHzhlcL_>wp+DrNA*SAFGphz z6Q}?rRiAJ-xH@I=ad6z)1$aAqN>jpHNk^^W6o12?8f37)F718C!(a|dQQ(%Am~dnI z74acCxX)l&9=N<2Y*{y1~XZ&W$PF}pD~^yj)e zFP``Zn=%+YF4%pTg&oqXCb&uX`Z;3lWv1nJvlNA2V}8Erj*BPF1dJ-qpUgRxDR7VU zZ)REvw{6X=?@8_t2DR{KyT_Q#rn!$Fjn8ls6?MzO;9g1jW+3_MDPo~^O-E_xliU}a zCO&k(-eHcM<}Oa9f88?B4Nr$&y^?v%U;{9g8}5qz^hqX|{rbM(H1VPR1l(;qA&0_G zd(Fwc@!WdIEf}R{n+L2x)ku=jj{wlqpQ~<~Teff};_o_mi*_vf)`h#Ia4c+N7BlaY zi@9wba10-gt@A7d#V$GZ2*k%4l`;~3s37RXaw~dBd}y#;xPC~%^s4{RJhDN;KbX+F zDGqSI-%dpyA{@9K@9&TGZ*1CB+2Y0trX4R7p+)_2GVTBoShrlmeTF3qrJCZl zH+vPGC^LJw=^?;54Rd#pfVGy%&E6AqggxB2m{dqNSjbV{YWgn{ifh1RXPWWZvKiUeH!960g4Ql9i2^(35TMt`6Z3Ier z?%Hsa9Bi$OfzQotMlUE>>1KY3RYN*0|^a zH>PRFy>j|aUZxuY+Yp?xos2w4gn0rP&Kz3iChk)oM=2A7rebB(E4%5M+;f?nzNrQe zLN{HA!6+TQ=!rYl5gKs^6UT69Bg-|MT;nlRNoa4Tv1fAnrZT5RI!Fw0M<4gb^9dq9 zAFt(hWZH8_x!s~>$g!E9dkyYrX5JNFILYy7L$_bwE5Bzl&OJGOFMxXk8QkZYFiv6H z>*m~kxfZo^mz(TnsA&mV0QWb1y^GDX~7sH>)*7{b7XMZ{vBs%r?}~~ zF6&g9I}ZO2GPp<8FixdE%+;6}<5BEE?@&Q_IIq%J@^w?PFMykdu4!%^!|dTkvJvhn z?A{=KGZ}lB2*}`m%Y*fO3Yo^ues0oXYNn?ujY?Y0yRS%f@3>dg&i_ER2^rynk0l=q z+Ej^6)XsO9mxkPKk{jwz(d7Ab7=FkQgPy7#PpMB<(T?&%4yOT(OvX(?jYvw|W-zi% zbJKl@a=JMj1mDE#7UDLbNX+%zq&_{Umr3p&U)s&gjrJLSgr?NzCq@vebFib;_U5<#u{ z0)K2ueTA=2DL+PC!`)a3QE#<7MX)Ei^%A(_>ky3RYYo9~$o+dxG2kBAwy9loZbQ{n zN|%Qp)=wgMV~m0O!uw;#pq)2PP;mQO1tG^IH!gS#lC>`TJT{5o%|&6nJ9iAY{q+{O z-L7ktX@Yx89|EFMX6D{Rq89Iua39+Q1C@I28Zkb!x>*^(QcfGGUC(HqDKZs$b#*?V$18!Ffd-eUkOBL)1ePfsQqT$MJwi8JX zLLYHoUg4Kqg5a6!HMvhFpq};XOMAtC)f|Lyybzket+{+0E>c`ru>FpN3-YZr>MAY{ z%lQfJ=frI&ohjzzj$ZpTkHF0$kyyEz=8l?7$TY?M0^D*XWQyPa^|&q$6RMrC2911m zMv9m)DWKPPmL9DJW~!aP=uJ^^3ga*64#Sz3g7U=}Jb_zdVDkYk!r8t-0HMuT%7Hw?odoti|nd$6X z2WM#41jF_ux33}Aw^x=8w%pZo#V72>B@f(aACuQE<9Tm4)Q{+fo>Cc1SFToIUpV(@ zJ9peq6(^ezQhR+P{jA*nlFZOu&7;vrbR2MOH;&9V1CFib9@*4>ik9NgrBK83aw|(? z=ueWs!&Vx^`-c`j^G($dB5P>k-K~VLB(J%P;B9h1<_^E|s+{_sJ!1Ol6UW z^*T^fR3GU&d0^`&6U-FcIVn@_E9u|YaR20zA2*mv2=iV zqcrlsJ{FY5HGGw#R(@V1@%I=n}RZ_X{e8@BdlvHCD6`<&`OT2vR2$QcBtaNMxuq3A?}~jPHgzqO`?G%~sYzcl0EsU> zTJFvRaZ;!6)8c*3?_*PkbUV0P#Ze5hTO;~hICEUcR9&zkZ{4=(Y87SP0b_mMtddNC7{0D zz;g}v3#acd=1{XQ(@IVHz7#jqwe`BU(ca<}CiLp__r}M;LDh0Gsc((g<^}yM61ir5 z3!H}~2oZ6EX*bPH5+~dez@Y`dT4VzESD|{yMM;I*!1d>8<}+4mOhE2=>IT9X8$8gvjfwiVOG&nTlP|RMY%5742|gu%Cfw0EX24gF z1t#NmQ`&2C^YmRr+*F6bC@zYwMCttVa%+(VnsOgdY#^xT&Tf&G`}HlK?+TqDW3$-! z>YRa-%9+oQ1TeU}TN~Ig4TSOBG$BXk8g5DL70F*D@;}6eSwalBHC*j{(18%0yEYI8 zra|aNobWh@*zWf|JQ{}n$UI^?lqZycB&_T*`NTIu|~R?KF$8CTW&B<<8o9 zZAbcu`=R9Gqg74w0LgQyFjq?!qrlZrhF4a7?yX36< zPZgwrX&}fHH#J)_k+LFv)8++CXGwVcrrFUpbcMJ}@P0$ng=_pa?ZGWKxj+txMW%ra zt~Mkj99x@cocmM~b{2w9!b=$mk=UmH_NAebVrJu@R&UJhUdj?m+h}S!e+$NsYz@P$ z5!4`PR-+&Unc8W-fjG`BQQ_Fxh)7!(KGuCSp|d=OVovCQ=CS5qt!fqZ0)?Q~CYsH1 z_r#pGSQD?oZ2%#LpXh@VWNb7ApVI-{nrzycM-(|*Ni*NkG$cl38ptxm?II$58=qCK zN<6oWjc4@OE9PoW)ndT3C-3GXmXg<%7hD`PW=)N2E+SfV7@wW?Y{*z7KPRB6H+(|m z!X8uqoeqgahB=O#NyAmAQ$DiquJL;B*yJWHd!k)fxB1Srd(yMY096G*omjCyw)P|bQ6~hr_!ZzH(|TQiEeFwhuAe)pjfc}&><0eX%XR+Mb=2D>d+?`{HxLe_F<;MSa#%Hq=r60oe8KS}o zW^xVNxfgigXso_H0%SHWRj0^x1#apE)UxrsD+T4;=6DI?IS;iY-VID+C-$g&2X5Q2 z!A%pE!s%)y558zk=k}FlV$V$4MzI=V+|aZ(aT`f%T;9OlAeusJBV*lHntV&+_Uj80 zZohHd5w_R2yN<=U25zo|ZYQtWN)PZ|TBDF?0T7?;kZ!lU+>gw$9XDU@zg|LP^YOld zxLbQ+(}gBL5iW~@`>o_|90Az|6l9{G^6G48ht^Itg(d*w+c|j_!Tp#dxrreV7;pt+ zI0%E8bFg9+g`$_2{r^QSG7gm+f%Am(9Ne|_9}v9~0jH0aI}y>?rq<#| zy2~+&ONWTV^19M+*ODZGk$x!d(Ie||id(rXmYeuv?$#E_^Tz`8&GpYRC$9@Sir60G zcJZxq5HGW#U4Yx4zO&qh5<2DEuoy|BWTJD`$GPgMijMYB|_o!=xo0#dZ@$EU{ z-r@Fu3-_a;rc*aj)y?9Jxx*K8X%-qWww-rDQbK0#mR+2O#xv47&0}`u2LD^aeZ>gb zLAcKXwhUl|9C5EW8MwP|BW~1&7)2*-oNq3BO5cx3y4(nN7sZKKRfM^@s(((Sf~UUx-L!_Fn%XbKBfMeeRefA*Gtv&=<(a;DLDT zg7Obs)DptM$$_|&;k;iTopFj5RmRykT7lbqMrWyP{?c=ACH=h6D1FWEy4eR#Oik*r zHDN`LEaLX_FiXBZIu{P$Fn5h$oCDV*%sLf9IwAwaX>z+17byv)4S&K*ml)fVg|Ob>7ZbqVI&;FgH%=7ISdf zv%B?MD}~K?^xSqq1)(SVH_gUr|2BbJz7W~~MRPj`Y%rmfkiP3s4YQGZZcIHSjPAuA!;_Ceg71Kb$Xsf2XR*ge~VVQTgigshI0h{`-nq3L;+5Is3tgvuD%c4=(EyjDH*uWIl1T? z&z;kvPg4--yYp0Eao1?Pe>TT!akqWBX+_i>7H)>P*tCZEh>$Cz{3}`X5j0God&LU3 z=Lo?wxI{94bg$3(fY{NZWm}ndKnzihDR;-@?W84_>UR}+g*#f?e$DmV&A^!#>BnS} z6DzIEFQN7rac{Nzkv@uR*43A+NvCfm7dJ0yF&6x>wXR-RZlIFk#rf}1dQ)I1aOO7@7wO-HAKuP7xci1V$u}_cz+z)X)Hc?T zy;_&gxuJCY{@su4CFq}^x1V1`S0(+wQ0i#;c6eS_V#aMhen{dC4Lx|Db2F}Q^IiX3 z0nBFo1#w@--2X~3k^Y?&hqrnBwQ`cx?CIbYZiTqHS4p1t&dBzU47B|VM3fR&`~s^t ze0)=?hd1V2QOnphmi2Eb;ghI%eA@>&)9@WE8oBJ#WD@{Pqu8Q}H#gumG6~hLnaFJB2ZaV5;i*DC z%+srLx)qLJ0BS?Ue}-YS3EnwfBxP*eip}xIadhcPvgVV3=f*b#YpDwCBA?znO|6_byZ@V%nH^S)z3or(v z#HO-Mc#NBt-z{X0)04Y3HiS0Ti2DQb*TfAE<*-I0*tuu64Md3z-tS}Y{~%Tz1yyaS zd!n(XCgR4xrfg*OVb8B&wt-M1D)?q~87rl?I@^l15Alu`+^ash^~G_Wu}LuMx%&<) zRXzhZV!FVm7qU8sL{4NYIaZnbxZODJe=DA|IqoCkZcET%IM)S!VQ#tH`546@bkN@A z9c}2^{v|q!blmtnD!2=cSq$6ArS87|aD9>K+bw)TBbdkan%s&wVQSe{)a-GMhPlrQ zeTvYdufW}_jaex7h9$q*p|RaUbf(cK3}xI*^+xH5|wGp}VIRFEl!Xic!H>PsoKBiF)86piM4lA357zJT&YD__$J8H`|W5?6BcHD3P z_tNfRv>ue|#Czs;u#hC^4GeZq(3kBMdX&E9am_&IvW}yu*7fw(6Cz|Omn9<*5l`;K z@1w_)_oa(pamz=m4&3xWoS49Es6i~nXe-`LtV@vEr8y<1{>rA_UQiP@_+!l@uh}$VLyd}uo^^RkO_A=B!&^Mx%vOLe1ULy6>vDMU4jg1c672Wpl zH7dl-aSv%NQ}S;qdT#0r%~G1Vr?4=4t%fHnmn7ouPYQgA4BVYt%HgRmJl5ABZNlw6 zv-2B=aU+{1X=eg=+5b&}m08YR^W#z;b%TuE?7U6@<1lVy$J}9DEBHeWvWaL<1AUkM zqd!xTzG+-=rOs~~E2y)mX-4KK^)q)B#f!834Q$#-joW#(J^c(pjbk)4$}h%{7Gjff z7OOUn6u0|kXoy+Sq*WslMs1Kfh%8&xlO8H>J9Ybc|?U2lF@gyqz;ybja#~Vv@nFX#T-+ z)BNnYU-g^Swo>O5CWd;za+WQ0;V5SB%LXpdi2e8!Iwj^~{5kFqaGk!|)y&-qHzjGr zxr8H$!)D*3EiTQN{g~bpb7$#Dt1uURx9-2L*C(By$f$zbB@l}YR#57Pnk0U0bMYRs zxU+zprf~!`@AqHS>+{~jQitl6!wtd2`0wGmfPpPUdGG}Vv^Es0Q~wFs?l-6A3_B97 zz?x`?TLQkaBCo=pfep#6>$&M0%H;+fo=o?T=P|cl)HD_@L}`oI8|7V*V;{FXjjG@-ptymMwj6NH*4Y|B{?!hA&)9a(4>)?*9Rq zsIU0T9B`kng}Wuq8YCclIfg|QZoc0G0ih$s)(s9wc~bUIkg@@j<;IZyN9JlA2dhAwWdRga!1@PPWHK^XYTc`<`;|j+-hOVR4iPM|0^yU zsRm#m9vlCNx%Kb2DsWf2MgHfCQyv%f-xlUmxo5&{3E{R)Q89}!{{)>kRub1gU+?Oy z+7fq%b9^Y=#c{o^i|2MWC*TEgL#hqQOvaDLGTgE9u0M#rJ1qW6Evb(yQ&;qyJsX@@ z`MyNOEY4UBVURK+@{Nu(uF-RP7}jjIV>Iiq57#Z8o7Nd(jC0(;mb-x9eoi~6w19hv zBR%;crr~QIH-;eH@{AMJe!9SWo#TOauE_S>PxTcApCh+x@#Lph&lYw$me)Lq$>!2I zQu{=we)jQo7fsKlKBIu+jGI33BJ+D*++zHS})$1XGkM zO4!o4(JlsZL=f$y#mF>jxC7@g%>8A*F8Seeyhvx#6mJpt@1&A@A9rByvkvAq^gTD) zRbKInC2^W_@^mBByqF;4#GT;2U<8-Q*)&g8pY^6v#9bW6gBk@apW8R%ACtU8b8#{Z zqpq!r`dM%6*XGVDm8NRRyBOV$334qrD>S8|CamzqI=b_4N>OKZwpGRZP-Dd{CX6N= zHt#t{YF_{;HMBhGFrGK3cwbl%_r)2m!yd<}=(SVXZ(0m!CWz-A@L3KYe&GU?a6dZj zRjsHST%3VE;ig-t_EI-1Zzbme|_6u8gv<5V`9trFbLQV>Vw2;3?b+`G?w z`*++G;)wf?u{q`Redg0!hhF%yC0vLW5Ou^{`Ee~)C~^PnB`w0Gox3`*C*ZYPH(Jk2 z3EX;C?On0s(sQFNJA)w$`sO;L(C+VyixK-R;HHJP80{R1JEP zrfBS2w1I?Tv~whOXy+#(92-d*7n{gIPkfAUf2J1CZ5+;pb0qfp6X%V%F-58J`L7XE z{tIz`s$3##e~EyF>wAsc0BjywnNzEQLdC4Y)&zD^6!udQ{!@)ZPp-stSfVeSdxJN> z*c>O4J5L=ZI(iUSOapFw-yR;Sth0^=_Qae+-3#Z&uXGC&un!AWawYlyquK8BB;I1e{dxyiJD &_OEhh` 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 BD-i$y literal 0 HcmV?d00001 diff --git a/BossMod/Pathfinding/ObstacleMaps/436.88.1.bmp b/BossMod/Pathfinding/ObstacleMaps/436.88.1.bmp new file mode 100644 index 0000000000000000000000000000000000000000..487eb98dba1a32badc8f7b750a5403fbb88a8b15 GIT binary patch literal 1118 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