diff --git a/.github/workflows/build-docfx.yml b/.github/workflows/build-docfx.yml
index 1c4b543743d..ca1a6f0af12 100644
--- a/.github/workflows/build-docfx.yml
+++ b/.github/workflows/build-docfx.yml
@@ -21,7 +21,7 @@ jobs:
- name: Setup .NET Core
uses: actions/setup-dotnet@v3.2.0
with:
- dotnet-version: 7.0.x
+ dotnet-version: 8.0.x
- name: Install dependencies
run: dotnet restore
diff --git a/.github/workflows/build-map-renderer.yml b/.github/workflows/build-map-renderer.yml
index e921bd2558c..35aed1a7f7f 100644
--- a/.github/workflows/build-map-renderer.yml
+++ b/.github/workflows/build-map-renderer.yml
@@ -36,7 +36,7 @@ jobs:
- name: Setup .NET Core
uses: actions/setup-dotnet@v3.2.0
with:
- dotnet-version: 7.0.x
+ dotnet-version: 8.0.x
- name: Install dependencies
run: dotnet restore
diff --git a/.github/workflows/build-test-debug.yml b/.github/workflows/build-test-debug.yml
index 54b11ee98ad..17ba32fe2bd 100644
--- a/.github/workflows/build-test-debug.yml
+++ b/.github/workflows/build-test-debug.yml
@@ -36,7 +36,7 @@ jobs:
- name: Setup .NET Core
uses: actions/setup-dotnet@v3.2.0
with:
- dotnet-version: 7.0.x
+ dotnet-version: 8.0.x
- name: Install dependencies
run: dotnet restore
diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml
index e014f8fc183..8cefc5329f3 100644
--- a/.github/workflows/publish.yml
+++ b/.github/workflows/publish.yml
@@ -41,7 +41,7 @@ jobs:
- name: Setup .NET Core
uses: actions/setup-dotnet@v3.2.0
with:
- dotnet-version: 7.0.x
+ dotnet-version: 8.0.x
- name: Get Engine Tag
run: |
diff --git a/.github/workflows/test-packaging.yml b/.github/workflows/test-packaging.yml
index 859c04ce8cc..e5936298a80 100644
--- a/.github/workflows/test-packaging.yml
+++ b/.github/workflows/test-packaging.yml
@@ -65,7 +65,7 @@ jobs:
- name: Setup .NET Core
uses: actions/setup-dotnet@v3.2.0
with:
- dotnet-version: 7.0.x
+ dotnet-version: 8.0.x
- name: Install dependencies
run: dotnet restore
@@ -78,7 +78,7 @@ jobs:
- name: Package client
run: dotnet run --project Content.Packaging client --no-wipe-release
-
+
- name: Update Build Info
env:
FORK_ID: ${{ vars.FORK_ID }}
diff --git a/.github/workflows/yaml-linter.yml b/.github/workflows/yaml-linter.yml
index 8798c95e19a..dfe497b100c 100644
--- a/.github/workflows/yaml-linter.yml
+++ b/.github/workflows/yaml-linter.yml
@@ -26,7 +26,7 @@ jobs:
- name: Setup .NET Core
uses: actions/setup-dotnet@v3.2.0
with:
- dotnet-version: 7.0.x
+ dotnet-version: 8.0.x
- name: Install dependencies
run: dotnet restore
- name: Build
diff --git a/Content.Benchmarks/Content.Benchmarks.csproj b/Content.Benchmarks/Content.Benchmarks.csproj
index a8b255c71b0..049d6f5b6f4 100644
--- a/Content.Benchmarks/Content.Benchmarks.csproj
+++ b/Content.Benchmarks/Content.Benchmarks.csproj
@@ -8,7 +8,7 @@
false
Exe
true
- 11
+ 12
diff --git a/Content.Client/Actions/ActionsSystem.cs b/Content.Client/Actions/ActionsSystem.cs
index b67c1bd5b97..508f3404bac 100644
--- a/Content.Client/Actions/ActionsSystem.cs
+++ b/Content.Client/Actions/ActionsSystem.cs
@@ -87,6 +87,8 @@ private void BaseHandleState(EntityUid uid, BaseActionComponent component, Ba
component.Cooldown = state.Cooldown;
component.UseDelay = state.UseDelay;
component.Charges = state.Charges;
+ component.MaxCharges = state.MaxCharges;
+ component.RenewCharges = state.RenewCharges;
component.Container = EnsureEntity(state.Container, uid);
component.EntityIcon = EnsureEntity(state.EntityIcon, uid);
component.CheckCanInteract = state.CheckCanInteract;
diff --git a/Content.Client/Actions/UI/ActionAlertTooltip.cs b/Content.Client/Actions/UI/ActionAlertTooltip.cs
index f48350d7722..ddc498b6e91 100644
--- a/Content.Client/Actions/UI/ActionAlertTooltip.cs
+++ b/Content.Client/Actions/UI/ActionAlertTooltip.cs
@@ -21,7 +21,7 @@ public sealed class ActionAlertTooltip : PanelContainer
///
public (TimeSpan Start, TimeSpan End)? Cooldown { get; set; }
- public ActionAlertTooltip(FormattedMessage name, FormattedMessage? desc, string? requires = null)
+ public ActionAlertTooltip(FormattedMessage name, FormattedMessage? desc, string? requires = null, FormattedMessage? charges = null)
{
_gameTiming = IoCManager.Resolve();
@@ -52,6 +52,17 @@ public ActionAlertTooltip(FormattedMessage name, FormattedMessage? desc, string?
vbox.AddChild(description);
}
+ if (charges != null && !string.IsNullOrWhiteSpace(charges.ToString()))
+ {
+ var chargesLabel = new RichTextLabel
+ {
+ MaxWidth = TooltipTextMaxWidth,
+ StyleClasses = { StyleNano.StyleClassTooltipActionCharges }
+ };
+ chargesLabel.SetMessage(charges);
+ vbox.AddChild(chargesLabel);
+ }
+
vbox.AddChild(_cooldownLabel = new RichTextLabel
{
MaxWidth = TooltipTextMaxWidth,
diff --git a/Content.Client/Atmos/EntitySystems/AtmosDebugOverlaySystem.cs b/Content.Client/Atmos/EntitySystems/AtmosDebugOverlaySystem.cs
index c849abf70ef..b63d274bdca 100644
--- a/Content.Client/Atmos/EntitySystems/AtmosDebugOverlaySystem.cs
+++ b/Content.Client/Atmos/EntitySystems/AtmosDebugOverlaySystem.cs
@@ -1,22 +1,16 @@
-using System.Collections.Generic;
using Content.Client.Atmos.Overlays;
using Content.Shared.Atmos;
using Content.Shared.Atmos.EntitySystems;
using Content.Shared.GameTicking;
using JetBrains.Annotations;
using Robust.Client.Graphics;
-using Robust.Shared.IoC;
-using Robust.Shared.Map;
-using Robust.Shared.Maths;
namespace Content.Client.Atmos.EntitySystems
{
[UsedImplicitly]
internal sealed class AtmosDebugOverlaySystem : SharedAtmosDebugOverlaySystem
{
-
- private readonly Dictionary _tileData =
- new();
+ public readonly Dictionary TileData = new();
// Configuration set by debug commands and used by AtmosDebugOverlay {
/// Value source for display
@@ -48,20 +42,20 @@ public override void Initialize()
private void OnGridRemoved(GridRemovalEvent ev)
{
- if (_tileData.ContainsKey(ev.EntityUid))
+ if (TileData.ContainsKey(ev.EntityUid))
{
- _tileData.Remove(ev.EntityUid);
+ TileData.Remove(ev.EntityUid);
}
}
private void HandleAtmosDebugOverlayMessage(AtmosDebugOverlayMessage message)
{
- _tileData[GetEntity(message.GridId)] = message;
+ TileData[GetEntity(message.GridId)] = message;
}
private void HandleAtmosDebugOverlayDisableMessage(AtmosDebugOverlayDisableMessage ev)
{
- _tileData.Clear();
+ TileData.Clear();
}
public override void Shutdown()
@@ -74,24 +68,12 @@ public override void Shutdown()
public void Reset(RoundRestartCleanupEvent ev)
{
- _tileData.Clear();
+ TileData.Clear();
}
public bool HasData(EntityUid gridId)
{
- return _tileData.ContainsKey(gridId);
- }
-
- public AtmosDebugOverlayData? GetData(EntityUid gridIndex, Vector2i indices)
- {
- if (!_tileData.TryGetValue(gridIndex, out var srcMsg))
- return null;
-
- var relative = indices - srcMsg.BaseIdx;
- if (relative.X < 0 || relative.Y < 0 || relative.X >= LocalViewRange || relative.Y >= LocalViewRange)
- return null;
-
- return srcMsg.OverlayData[relative.X + relative.Y * LocalViewRange];
+ return TileData.ContainsKey(gridId);
}
}
diff --git a/Content.Client/Atmos/Overlays/AtmosDebugOverlay.cs b/Content.Client/Atmos/Overlays/AtmosDebugOverlay.cs
index 72adf276bff..fcf3b04e530 100644
--- a/Content.Client/Atmos/Overlays/AtmosDebugOverlay.cs
+++ b/Content.Client/Atmos/Overlays/AtmosDebugOverlay.cs
@@ -1,187 +1,272 @@
+using System.Linq;
using System.Numerics;
using Content.Client.Atmos.EntitySystems;
+using Content.Client.Resources;
using Content.Shared.Atmos;
-using Content.Shared.Atmos.EntitySystems;
using Robust.Client.Graphics;
+using Robust.Client.Input;
+using Robust.Client.ResourceManagement;
+using Robust.Client.UserInterface;
+using Robust.Client.UserInterface.CustomControls;
using Robust.Shared.Enums;
using Robust.Shared.Map;
using Robust.Shared.Map.Components;
+using AtmosDebugOverlayData = Content.Shared.Atmos.EntitySystems.SharedAtmosDebugOverlaySystem.AtmosDebugOverlayData;
+using DebugMessage = Content.Shared.Atmos.EntitySystems.SharedAtmosDebugOverlaySystem.AtmosDebugOverlayMessage;
-namespace Content.Client.Atmos.Overlays
+namespace Content.Client.Atmos.Overlays;
+
+
+public sealed class AtmosDebugOverlay : Overlay
{
- public sealed class AtmosDebugOverlay : Overlay
+ [Dependency] private readonly IEntityManager _entManager = default!;
+ [Dependency] private readonly IMapManager _mapManager = default!;
+ [Dependency] private readonly IInputManager _input = default!;
+ [Dependency] private readonly IUserInterfaceManager _ui = default!;
+ [Dependency] private readonly IResourceCache _cache = default!;
+ private readonly SharedTransformSystem _transform;
+ private readonly AtmosDebugOverlaySystem _system;
+ private readonly SharedMapSystem _map;
+ private readonly Font _font;
+ private List<(Entity, DebugMessage)> _grids = new();
+
+ public override OverlaySpace Space => OverlaySpace.WorldSpace | OverlaySpace.ScreenSpace;
+
+ internal AtmosDebugOverlay(AtmosDebugOverlaySystem system)
{
- private readonly AtmosDebugOverlaySystem _atmosDebugOverlaySystem;
+ IoCManager.InjectDependencies(this);
+
+ _system = system;
+ _transform = _entManager.System();
+ _map = _entManager.System();
+ _font = _cache.GetFont("/Fonts/NotoSans/NotoSans-Regular.ttf", 12);
+ }
+
+ protected override void Draw(in OverlayDrawArgs args)
+ {
+ if (args.Space == OverlaySpace.ScreenSpace)
+ {
+ DrawTooltip(args);
+ return;
+ }
- [Dependency] private readonly IEntityManager _entManager = default!;
- [Dependency] private readonly IMapManager _mapManager = default!;
+ var handle = args.WorldHandle;
+ GetGrids(args.MapId, args.WorldBounds);
- public override OverlaySpace Space => OverlaySpace.WorldSpace;
- private List> _grids = new();
+ // IF YOU ARE ABOUT TO INTRODUCE CHUNKING OR SOME OTHER OPTIMIZATION INTO THIS CODE:
+ // -- THINK! --
+ // 1. "Is this going to make a critical atmos debugging tool harder to debug itself?"
+ // 2. "Is this going to do anything that could cause the atmos debugging tool to use resources, server-side or client-side, when nobody's using it?"
+ // 3. "Is this going to make it harder for atmos programmers to add data that may not be chunk-friendly into the atmos debugger?"
+ // Nanotrasen needs YOU! to avoid premature optimization in critical debugging tools - 20kdc
- internal AtmosDebugOverlay(AtmosDebugOverlaySystem system)
+ foreach (var (grid, msg) in _grids)
{
- IoCManager.InjectDependencies(this);
+ handle.SetTransform(_transform.GetWorldMatrix(grid));
+ DrawData(msg, handle);
+ }
- _atmosDebugOverlaySystem = system;
+ handle.SetTransform(Matrix3.Identity);
+ }
+
+ private void DrawData(DebugMessage msg,
+ DrawingHandleWorld handle)
+ {
+ foreach (var data in msg.OverlayData)
+ {
+ if (data != null)
+ DrawGridTile(data.Value, handle);
}
+ }
+
+ private void DrawGridTile(AtmosDebugOverlayData data,
+ DrawingHandleWorld handle)
+ {
+ DrawFill(data, handle);
+ DrawBlocked(data, handle);
+ }
+
+ private void DrawFill(AtmosDebugOverlayData data, DrawingHandleWorld handle)
+ {
+ var tile = data.Indices;
+ var fill = GetFillData(data);
+ var interp = (fill - _system.CfgBase) / _system.CfgScale;
- protected override void Draw(in OverlayDrawArgs args)
+ Color res;
+ if (_system.CfgCBM)
+ {
+ // Greyscale interpolation
+ res = Color.InterpolateBetween(Color.Black, Color.White, interp);
+ }
+ else
{
- var drawHandle = args.WorldHandle;
+ // Red-Green-Blue interpolation
+ if (interp < 0.5f)
+ {
+ res = Color.InterpolateBetween(Color.Red, Color.LimeGreen, interp * 2);
+ }
+ else
+ {
+ res = Color.InterpolateBetween(Color.LimeGreen, Color.Blue, (interp - 0.5f) * 2);
+ }
+ }
- var mapId = args.Viewport.Eye!.Position.MapId;
- var worldBounds = args.WorldBounds;
+ res = res.WithAlpha(0.75f);
+ handle.DrawRect(Box2.FromDimensions(new Vector2(tile.X, tile.Y), new Vector2(1, 1)), res);
+ }
- // IF YOU ARE ABOUT TO INTRODUCE CHUNKING OR SOME OTHER OPTIMIZATION INTO THIS CODE:
- // -- THINK! --
- // 1. "Is this going to make a critical atmos debugging tool harder to debug itself?"
- // 2. "Is this going to do anything that could cause the atmos debugging tool to use resources, server-side or client-side, when nobody's using it?"
- // 3. "Is this going to make it harder for atmos programmers to add data that may not be chunk-friendly into the atmos debugger?"
- // Nanotrasen needs YOU! to avoid premature optimization in critical debugging tools - 20kdc
+ private float GetFillData(AtmosDebugOverlayData data)
+ {
+ if (data.Moles == null)
+ return 0;
- _grids.Clear();
+ switch (_system.CfgMode)
+ {
+ case AtmosDebugOverlayMode.TotalMoles:
+ var total = 0f;
+ foreach (var f in data.Moles)
+ {
+ total += f;
+ }
- _mapManager.FindGridsIntersecting(mapId, worldBounds, ref _grids, (EntityUid uid, MapGridComponent grid,
- ref List> state) =>
- {
- state.Add((uid, grid));
- return true;
- });
+ return total;
+ case AtmosDebugOverlayMode.GasMoles:
+ return data.Moles[_system.CfgSpecificGas];
+ default:
+ return data.Temperature;
+ }
+ }
- foreach (var (uid, mapGrid) in _grids)
- {
- if (!_atmosDebugOverlaySystem.HasData(uid) ||
- !_entManager.TryGetComponent(uid, out var xform))
- continue;
+ private void DrawBlocked(AtmosDebugOverlayData data, DrawingHandleWorld handle)
+ {
+ var tile = data.Indices;
+ var tileCentre = tile + 0.5f * Vector2.One;
+ CheckAndShowBlockDir(data, handle, AtmosDirection.North, tileCentre);
+ CheckAndShowBlockDir(data, handle, AtmosDirection.South, tileCentre);
+ CheckAndShowBlockDir(data, handle, AtmosDirection.East, tileCentre);
+ CheckAndShowBlockDir(data, handle, AtmosDirection.West, tileCentre);
+
+ // -- Pressure Direction --
+ if (data.PressureDirection != AtmosDirection.Invalid)
+ {
+ DrawPressureDirection(handle, data.PressureDirection, tileCentre, Color.Blue);
+ }
+ else if (data.LastPressureDirection != AtmosDirection.Invalid)
+ {
+ DrawPressureDirection(handle, data.LastPressureDirection, tileCentre, Color.LightGray);
+ }
+
+ // -- Excited Groups --
+ if (data.InExcitedGroup is {} grp)
+ {
+ var basisA = tile;
+ var basisB = tile + new Vector2(1.0f, 1.0f);
+ var basisC = tile + new Vector2(0.0f, 1.0f);
+ var basisD = tile + new Vector2(1.0f, 0.0f);
+ var color = Color.White // Use first three nibbles for an unique color... Good enough?
+ .WithRed(grp & 0x000F)
+ .WithGreen((grp & 0x00F0) >> 4)
+ .WithBlue((grp & 0x0F00) >> 8);
+ handle.DrawLine(basisA, basisB, color);
+ handle.DrawLine(basisC, basisD, color);
+ }
+
+ if (data.IsSpace)
+ handle.DrawCircle(tileCentre, 0.15f, Color.Yellow);
+
+ if (data.MapAtmosphere)
+ handle.DrawCircle(tileCentre, 0.1f, Color.Orange);
+
+ if (data.NoGrid)
+ handle.DrawCircle(tileCentre, 0.05f, Color.Black);
+ }
+
+ private void CheckAndShowBlockDir(AtmosDebugOverlayData data, DrawingHandleWorld handle, AtmosDirection dir,
+ Vector2 tileCentre)
+ {
+ if (!data.BlockDirection.HasFlag(dir))
+ return;
+
+ // Account for South being 0.
+ var atmosAngle = dir.ToAngle() - Angle.FromDegrees(90);
+ var atmosAngleOfs = atmosAngle.ToVec() * 0.45f;
+ var atmosAngleOfsR90 = new Vector2(atmosAngleOfs.Y, -atmosAngleOfs.X);
+ var basisA = tileCentre + atmosAngleOfs - atmosAngleOfsR90;
+ var basisB = tileCentre + atmosAngleOfs + atmosAngleOfsR90;
+ handle.DrawLine(basisA, basisB, Color.Azure);
+ }
- drawHandle.SetTransform(xform.WorldMatrix);
+ private void DrawPressureDirection(
+ DrawingHandleWorld handle,
+ AtmosDirection d,
+ Vector2 center,
+ Color color)
+ {
+ // Account for South being 0.
+ var atmosAngle = d.ToAngle() - Angle.FromDegrees(90);
+ var atmosAngleOfs = atmosAngle.ToVec() * 0.4f;
+ handle.DrawLine(center, center + atmosAngleOfs, color);
+ }
+
+ private void DrawTooltip(in OverlayDrawArgs args)
+ {
+ var handle = args.ScreenHandle;
+ var mousePos = _input.MouseScreenPosition;
+ if (!mousePos.IsValid)
+ return;
+
+ if (_ui.MouseGetControl(mousePos) is not IViewportControl viewport)
+ return;
- for (var pass = 0; pass < 2; pass++)
+ var coords= viewport.PixelToMap(mousePos.Position);
+ var box = Box2.CenteredAround(coords.Position, 3 * Vector2.One);
+ GetGrids(coords.MapId, new Box2Rotated(box));
+
+ foreach (var (grid, msg) in _grids)
+ {
+ var index = _map.WorldToTile(grid, grid, coords.Position);
+ foreach (var data in msg.OverlayData)
+ {
+ if (data?.Indices == index)
{
- foreach (var tile in mapGrid.GetTilesIntersecting(worldBounds))
- {
- var dataMaybeNull = _atmosDebugOverlaySystem.GetData(uid, tile.GridIndices);
- if (dataMaybeNull != null)
- {
- var data = (SharedAtmosDebugOverlaySystem.AtmosDebugOverlayData) dataMaybeNull;
- if (pass == 0)
- {
- // -- Mole Count --
- float total = 0;
- switch (_atmosDebugOverlaySystem.CfgMode)
- {
- case AtmosDebugOverlayMode.TotalMoles:
- foreach (var f in data.Moles)
- {
- total += f;
- }
- break;
- case AtmosDebugOverlayMode.GasMoles:
- total = data.Moles[_atmosDebugOverlaySystem.CfgSpecificGas];
- break;
- case AtmosDebugOverlayMode.Temperature:
- total = data.Temperature;
- break;
- }
- var interp = (total - _atmosDebugOverlaySystem.CfgBase) / _atmosDebugOverlaySystem.CfgScale;
- Color res;
- if (_atmosDebugOverlaySystem.CfgCBM)
- {
- // Greyscale interpolation
- res = Color.InterpolateBetween(Color.Black, Color.White, interp);
- }
- else
- {
- // Red-Green-Blue interpolation
- if (interp < 0.5f)
- {
- res = Color.InterpolateBetween(Color.Red, Color.LimeGreen, interp * 2);
- }
- else
- {
- res = Color.InterpolateBetween(Color.LimeGreen, Color.Blue, (interp - 0.5f) * 2);
- }
- }
- res = res.WithAlpha(0.75f);
- drawHandle.DrawRect(Box2.FromDimensions(new Vector2(tile.X, tile.Y), new Vector2(1, 1)), res);
- }
- else if (pass == 1)
- {
- // -- Blocked Directions --
- void CheckAndShowBlockDir(AtmosDirection dir)
- {
- if (data.BlockDirection.HasFlag(dir))
- {
- // Account for South being 0.
- var atmosAngle = dir.ToAngle() - Angle.FromDegrees(90);
- var atmosAngleOfs = atmosAngle.ToVec() * 0.45f;
- var atmosAngleOfsR90 = new Vector2(atmosAngleOfs.Y, -atmosAngleOfs.X);
- var tileCentre = new Vector2(tile.X + 0.5f, tile.Y + 0.5f);
- var basisA = tileCentre + atmosAngleOfs - atmosAngleOfsR90;
- var basisB = tileCentre + atmosAngleOfs + atmosAngleOfsR90;
- drawHandle.DrawLine(basisA, basisB, Color.Azure);
- }
- }
- CheckAndShowBlockDir(AtmosDirection.North);
- CheckAndShowBlockDir(AtmosDirection.South);
- CheckAndShowBlockDir(AtmosDirection.East);
- CheckAndShowBlockDir(AtmosDirection.West);
-
- void DrawPressureDirection(
- DrawingHandleWorld handle,
- AtmosDirection d,
- TileRef t,
- Color color)
- {
- // Account for South being 0.
- var atmosAngle = d.ToAngle() - Angle.FromDegrees(90);
- var atmosAngleOfs = atmosAngle.ToVec() * 0.4f;
- var tileCentre = new Vector2(t.X + 0.5f, t.Y + 0.5f);
- var basisA = tileCentre;
- var basisB = tileCentre + atmosAngleOfs;
- handle.DrawLine(basisA, basisB, color);
- }
-
- // -- Pressure Direction --
- if (data.PressureDirection != AtmosDirection.Invalid)
- {
- DrawPressureDirection(drawHandle, data.PressureDirection, tile, Color.Blue);
- }
- else if (data.LastPressureDirection != AtmosDirection.Invalid)
- {
- DrawPressureDirection(drawHandle, data.LastPressureDirection, tile, Color.LightGray);
- }
-
- var tilePos = new Vector2(tile.X, tile.Y);
-
- // -- Excited Groups --
- if (data.InExcitedGroup != 0)
- {
- var basisA = tilePos;
- var basisB = tilePos + new Vector2(1.0f, 1.0f);
- var basisC = tilePos + new Vector2(0.0f, 1.0f);
- var basisD = tilePos + new Vector2(1.0f, 0.0f);
- var color = Color.White // Use first three nibbles for an unique color... Good enough?
- .WithRed( data.InExcitedGroup & 0x000F)
- .WithGreen((data.InExcitedGroup & 0x00F0) >>4)
- .WithBlue( (data.InExcitedGroup & 0x0F00) >>8);
- drawHandle.DrawLine(basisA, basisB, color);
- drawHandle.DrawLine(basisC, basisD, color);
- }
-
- // -- Space Tiles --
- if (data.IsSpace)
- {
- drawHandle.DrawCircle(tilePos + Vector2.One/2, 0.125f, Color.Orange);
- }
- }
- }
- }
+ DrawTooltip(handle, mousePos.Position, data.Value);
+ return;
}
}
-
- drawHandle.SetTransform(Matrix3.Identity);
}
}
+
+ private void DrawTooltip(DrawingHandleScreen handle, Vector2 pos, AtmosDebugOverlayData data)
+ {
+ var lineHeight = _font.GetLineHeight(1f);
+ var offset = new Vector2(0, lineHeight);
+
+ var moles = data.Moles == null
+ ? "No Air"
+ : data.Moles.Sum().ToString();
+
+ handle.DrawString(_font, pos, $"Moles: {moles}");
+ pos += offset;
+ handle.DrawString(_font, pos, $"Temp: {data.Temperature}");
+ pos += offset;
+ handle.DrawString(_font, pos, $"Excited: {data.InExcitedGroup?.ToString() ?? "None"}");
+ pos += offset;
+ handle.DrawString(_font, pos, $"Space: {data.IsSpace}");
+ pos += offset;
+ handle.DrawString(_font, pos, $"Map: {data.MapAtmosphere}");
+ pos += offset;
+ handle.DrawString(_font, pos, $"NoGrid: {data.NoGrid}");
+ }
+
+ private void GetGrids(MapId mapId, Box2Rotated box)
+ {
+ _grids.Clear();
+ _mapManager.FindGridsIntersecting(mapId, box, ref _grids, (EntityUid uid, MapGridComponent grid,
+ ref List<(Entity, DebugMessage)> state) =>
+ {
+ if (_system.TileData.TryGetValue(uid, out var data))
+ state.Add(((uid, grid), data));
+ return true;
+ });
+ }
}
diff --git a/Content.Client/Chemistry/EntitySystems/SolutionContainerMixerSystem.cs b/Content.Client/Chemistry/EntitySystems/SolutionContainerMixerSystem.cs
new file mode 100644
index 00000000000..b6401c113de
--- /dev/null
+++ b/Content.Client/Chemistry/EntitySystems/SolutionContainerMixerSystem.cs
@@ -0,0 +1,9 @@
+using Content.Shared.Chemistry.EntitySystems;
+
+namespace Content.Client.Chemistry.EntitySystems;
+
+///
+public sealed class SolutionContainerMixerSystem : SharedSolutionContainerMixerSystem
+{
+
+}
diff --git a/Content.Client/Explosion/ExplosionOverlaySystem.cs b/Content.Client/Explosion/ExplosionOverlaySystem.cs
index 60208ea1a0d..064b068a97e 100644
--- a/Content.Client/Explosion/ExplosionOverlaySystem.cs
+++ b/Content.Client/Explosion/ExplosionOverlaySystem.cs
@@ -19,11 +19,6 @@ public sealed class ExplosionOverlaySystem : EntitySystem
[Dependency] private readonly IOverlayManager _overlayMan = default!;
[Dependency] private readonly SharedPointLightSystem _lights = default!;
- ///
- /// For how many seconds should an explosion stay on-screen once it has finished expanding?
- ///
- public float ExplosionPersistence = 0.3f;
-
public override void Initialize()
{
base.Initialize();
diff --git a/Content.Client/Forensics/ForensicScannerMenu.xaml.cs b/Content.Client/Forensics/ForensicScannerMenu.xaml.cs
index 84ffd7969e7..8b6152c8612 100644
--- a/Content.Client/Forensics/ForensicScannerMenu.xaml.cs
+++ b/Content.Client/Forensics/ForensicScannerMenu.xaml.cs
@@ -58,6 +58,12 @@ public void UpdateState(ForensicScannerBoundUserInterfaceState msg)
{
text.AppendLine(dna);
}
+ text.AppendLine();
+ text.AppendLine(Loc.GetString("forensic-scanner-interface-residues"));
+ foreach (var residue in msg.Residues)
+ {
+ text.AppendLine(residue);
+ }
Diagnostics.Text = text.ToString();
}
}
diff --git a/Content.Client/Guidebook/Controls/GuideReagentEmbed.xaml b/Content.Client/Guidebook/Controls/GuideReagentEmbed.xaml
index f83eb8c2407..7b1beeeb650 100644
--- a/Content.Client/Guidebook/Controls/GuideReagentEmbed.xaml
+++ b/Content.Client/Guidebook/Controls/GuideReagentEmbed.xaml
@@ -14,29 +14,12 @@
-
-
-
-
-
-
-
-
-
-
-
-
+ HorizontalExpand="True"/>
diff --git a/Content.Client/Guidebook/Controls/GuideReagentEmbed.xaml.cs b/Content.Client/Guidebook/Controls/GuideReagentEmbed.xaml.cs
index 5c2caf2230f..cf5a1b6e59c 100644
--- a/Content.Client/Guidebook/Controls/GuideReagentEmbed.xaml.cs
+++ b/Content.Client/Guidebook/Controls/GuideReagentEmbed.xaml.cs
@@ -6,8 +6,10 @@
using Content.Client.UserInterface.ControlExtensions;
using Content.Shared.Chemistry.Reaction;
using Content.Shared.Chemistry.Reagent;
+using Content.Shared.Localizations;
using JetBrains.Annotations;
using Robust.Client.AutoGenerated;
+using Robust.Client.GameObjects;
using Robust.Client.Graphics;
using Robust.Client.UserInterface;
using Robust.Client.UserInterface.Controls;
@@ -53,7 +55,7 @@ public bool CheckMatchesSearch(string query)
public void SetHiddenState(bool state, string query)
{
- this.Visible = CheckMatchesSearch(query) ? state : !state;
+ Visible = CheckMatchesSearch(query) ? state : !state;
}
public bool TryParseTag(Dictionary args, [NotNullWhen(true)] out Control? control)
@@ -84,7 +86,11 @@ private void GenerateControl(ReagentPrototype reagent)
BackgroundColor = reagent.SubstanceColor
};
- var textColor = Color.ToHsl(reagent.SubstanceColor).Z > 0.45
+ var r = reagent.SubstanceColor.R;
+ var g = reagent.SubstanceColor.G;
+ var b = reagent.SubstanceColor.B;
+
+ var textColor = 0.2126f * r + 0.7152f * g + 0.0722f * b > 0.5
? Color.Black
: Color.White;
@@ -92,49 +98,19 @@ private void GenerateControl(ReagentPrototype reagent)
("color", textColor), ("name", reagent.LocalizedName)));
#region Recipe
- // by default, we assume that the reaction has the same ID as the reagent.
- // if this isn't true, we'll loop through reactions.
- if (!_prototype.TryIndex(reagent.ID, out var reactionPrototype))
- {
- reactionPrototype = _prototype.EnumeratePrototypes()
- .FirstOrDefault(p => p.Products.ContainsKey(reagent.ID));
- }
+ var reactions = _prototype.EnumeratePrototypes()
+ .Where(p => p.Products.ContainsKey(reagent.ID))
+ .OrderBy(p => p.Priority)
+ .ThenBy(p => p.Products.Count)
+ .ToList();
- if (reactionPrototype != null)
+ if (reactions.Any())
{
- var reactantMsg = new FormattedMessage();
- var reactantsCount = reactionPrototype.Reactants.Count;
- var i = 0;
- foreach (var (product, reactant) in reactionPrototype.Reactants)
- {
- reactantMsg.AddMarkup(Loc.GetString("guidebook-reagent-recipes-reagent-display",
- ("reagent", _prototype.Index(product).LocalizedName), ("ratio", reactant.Amount)));
- i++;
- if (i < reactantsCount)
- reactantMsg.PushNewline();
- }
- reactantMsg.Pop();
- ReactantsLabel.SetMessage(reactantMsg);
-
- if (reactionPrototype.MinimumTemperature > 0.0f)
+ foreach (var reactionPrototype in reactions)
{
- MixLabel.Text = Loc.GetString("guidebook-reagent-recipes-mix-and-heat",
- ("temperature", reactionPrototype.MinimumTemperature));
+ var ctrl = GetRecipeGuide(reactionPrototype);
+ RecipesDescriptionContainer.AddChild(ctrl);
}
-
- var productMsg = new FormattedMessage();
- var productCount = reactionPrototype.Products.Count;
- var u = 0;
- foreach (var (product, ratio) in reactionPrototype.Products)
- {
- productMsg.AddMarkup(Loc.GetString("guidebook-reagent-recipes-reagent-display",
- ("reagent", _prototype.Index(product).LocalizedName), ("ratio", ratio)));
- u++;
- if (u < productCount)
- productMsg.PushNewline();
- }
- productMsg.Pop();
- ProductsLabel.SetMessage(productMsg);
}
else
{
@@ -186,8 +162,69 @@ private void GenerateControl(ReagentPrototype reagent)
FormattedMessage description = new();
description.AddText(reagent.LocalizedDescription);
description.PushNewline();
- description.AddText(Loc.GetString("guidebook-reagent-physical-description",
+ description.AddMarkup(Loc.GetString("guidebook-reagent-physical-description",
("description", reagent.LocalizedPhysicalDescription)));
ReagentDescription.SetMessage(description);
}
+
+ private GuideReagentReaction GetRecipeGuide(ReactionPrototype reactionPrototype)
+ {
+ var control = new GuideReagentReaction();
+
+ var reactantMsg = new FormattedMessage();
+ var reactantsCount = reactionPrototype.Reactants.Count;
+ var i = 0;
+ foreach (var (product, reactant) in reactionPrototype.Reactants)
+ {
+ reactantMsg.AddMarkup(Loc.GetString("guidebook-reagent-recipes-reagent-display",
+ ("reagent", _prototype.Index(product).LocalizedName), ("ratio", reactant.Amount)));
+ i++;
+ if (i < reactantsCount)
+ reactantMsg.PushNewline();
+ }
+ reactantMsg.Pop();
+ control.ReactantsLabel.SetMessage(reactantMsg);
+
+ var productMsg = new FormattedMessage();
+ var productCount = reactionPrototype.Products.Count;
+ var u = 0;
+ foreach (var (product, ratio) in reactionPrototype.Products)
+ {
+ productMsg.AddMarkup(Loc.GetString("guidebook-reagent-recipes-reagent-display",
+ ("reagent", _prototype.Index(product).LocalizedName), ("ratio", ratio)));
+ u++;
+ if (u < productCount)
+ productMsg.PushNewline();
+ }
+ productMsg.Pop();
+ control.ProductsLabel.SetMessage(productMsg);
+
+ var mixingCategories = new List();
+ if (reactionPrototype.MixingCategories != null)
+ {
+ foreach (var category in reactionPrototype.MixingCategories)
+ {
+ mixingCategories.Add(_prototype.Index(category));
+ }
+ }
+
+ // only use the first one for the icon.
+ if (mixingCategories.FirstOrDefault() is { } primaryCategory)
+ {
+ control.MixTexture.Texture = _systemManager.GetEntitySystem().Frame0(primaryCategory.Icon);
+ }
+
+ var mixingVerb = mixingCategories.Count == 0
+ ? Loc.GetString("guidebook-reagent-recipes-mix")
+ : ContentLocalizationManager.FormatList(mixingCategories.Select(p => Loc.GetString(p.VerbText)).ToList());
+
+ var text = Loc.GetString("guidebook-reagent-recipes-mix-info",
+ ("verb", mixingVerb),
+ ("minTemp", reactionPrototype.MinimumTemperature),
+ ("maxTemp", reactionPrototype.MaximumTemperature),
+ ("hasMax", !float.IsPositiveInfinity(reactionPrototype.MaximumTemperature)));
+
+ control.MixLabel.SetMarkup(text);
+ return control;
+ }
}
diff --git a/Content.Client/Guidebook/Controls/GuideReagentReaction.xaml b/Content.Client/Guidebook/Controls/GuideReagentReaction.xaml
new file mode 100644
index 00000000000..69c14a59af7
--- /dev/null
+++ b/Content.Client/Guidebook/Controls/GuideReagentReaction.xaml
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Content.Client/Guidebook/Controls/GuideReagentReaction.xaml.cs b/Content.Client/Guidebook/Controls/GuideReagentReaction.xaml.cs
new file mode 100644
index 00000000000..fbc6bf13fc4
--- /dev/null
+++ b/Content.Client/Guidebook/Controls/GuideReagentReaction.xaml.cs
@@ -0,0 +1,20 @@
+using Content.Client.UserInterface.ControlExtensions;
+using JetBrains.Annotations;
+using Robust.Client.AutoGenerated;
+using Robust.Client.UserInterface.Controls;
+
+namespace Content.Client.Guidebook.Controls;
+
+[UsedImplicitly, GenerateTypedNameReferences]
+public sealed partial class GuideReagentReaction : BoxContainer, ISearchableControl
+{
+ public bool CheckMatchesSearch(string query)
+ {
+ return this.ChildrenContainText(query);
+ }
+
+ public void SetHiddenState(bool state, string query)
+ {
+ Visible = CheckMatchesSearch(query) ? state : !state;
+ }
+}
diff --git a/Content.Client/Medical/CrewMonitoring/CrewMonitoringNavMapControl.cs b/Content.Client/Medical/CrewMonitoring/CrewMonitoringNavMapControl.cs
index f4ae82970c2..e6adf13bed4 100644
--- a/Content.Client/Medical/CrewMonitoring/CrewMonitoringNavMapControl.cs
+++ b/Content.Client/Medical/CrewMonitoring/CrewMonitoringNavMapControl.cs
@@ -15,7 +15,7 @@ public sealed partial class CrewMonitoringNavMapControl : NavMapControl
public CrewMonitoringNavMapControl() : base()
{
- WallColor = new Color(250, 146, 255);
+ WallColor = new Color(192, 122, 196);
TileColor = new(71, 42, 72);
_backgroundColor = Color.FromSrgb(TileColor.WithAlpha(0.8f));
diff --git a/Content.Client/Stylesheets/StyleNano.cs b/Content.Client/Stylesheets/StyleNano.cs
index 2ef5a63ac73..9f656297c82 100644
--- a/Content.Client/Stylesheets/StyleNano.cs
+++ b/Content.Client/Stylesheets/StyleNano.cs
@@ -56,6 +56,7 @@ public sealed class StyleNano : StyleBase
public const string StyleClassTooltipActionDescription = "tooltipActionDesc";
public const string StyleClassTooltipActionCooldown = "tooltipActionCooldown";
public const string StyleClassTooltipActionRequirements = "tooltipActionCooldown";
+ public const string StyleClassTooltipActionCharges = "tooltipActionCharges";
public const string StyleClassHotbarSlotNumber = "hotbarSlotNumber";
public const string StyleClassActionSearchBox = "actionSearchBox";
public const string StyleClassActionMenuItemRevoked = "actionMenuItemRevoked";
@@ -940,6 +941,10 @@ public StyleNano(IResourceCache resCache) : base(resCache)
{
new StyleProperty("font", notoSans15)
}),
+ new StyleRule(new SelectorElement(typeof(RichTextLabel), new[] {StyleClassTooltipActionCharges}, null, null), new[]
+ {
+ new StyleProperty("font", notoSans15)
+ }),
// small number for the entity counter in the entity menu
new StyleRule(new SelectorElement(typeof(Label), new[] {ContextMenuElement.StyleClassEntityMenuIconLabel}, null, null), new[]
diff --git a/Content.Client/UserInterface/Systems/Actions/ActionUIController.cs b/Content.Client/UserInterface/Systems/Actions/ActionUIController.cs
index 635647c8909..aae06965ef9 100644
--- a/Content.Client/UserInterface/Systems/Actions/ActionUIController.cs
+++ b/Content.Client/UserInterface/Systems/Actions/ActionUIController.cs
@@ -171,7 +171,7 @@ private bool TargetingOnUse(in PointerInputCmdArgs args)
// Is the action currently valid?
if (!action.Enabled
- || action.Charges is 0
+ || action is { Charges: 0, RenewCharges: false }
|| action.Cooldown.HasValue && action.Cooldown.Value.End > _timing.CurTime)
{
// The user is targeting with this action, but it is not valid. Maybe mark this click as
diff --git a/Content.Client/UserInterface/Systems/Actions/Controls/ActionButton.cs b/Content.Client/UserInterface/Systems/Actions/Controls/ActionButton.cs
index aab160a162d..3cd172b0802 100644
--- a/Content.Client/UserInterface/Systems/Actions/Controls/ActionButton.cs
+++ b/Content.Client/UserInterface/Systems/Actions/Controls/ActionButton.cs
@@ -191,6 +191,12 @@ private void OnUnpressed(GUIBoundKeyEventArgs args)
var name = FormattedMessage.FromMarkupPermissive(Loc.GetString(metadata.EntityName));
var decr = FormattedMessage.FromMarkupPermissive(Loc.GetString(metadata.EntityDescription));
+ if (_action is { Charges: not null })
+ {
+ var charges = FormattedMessage.FromMarkupPermissive(Loc.GetString($"Charges: {_action.Charges.Value.ToString()}/{_action.MaxCharges.ToString()}"));
+ return new ActionAlertTooltip(name, decr, charges: charges);
+ }
+
return new ActionAlertTooltip(name, decr);
}
diff --git a/Content.Client/UserInterface/Systems/Actions/Controls/ActionTooltip.xaml b/Content.Client/UserInterface/Systems/Actions/Controls/ActionTooltip.xaml
index 338a2974539..22893ccef4c 100644
--- a/Content.Client/UserInterface/Systems/Actions/Controls/ActionTooltip.xaml
+++ b/Content.Client/UserInterface/Systems/Actions/Controls/ActionTooltip.xaml
@@ -5,5 +5,6 @@
+
diff --git a/Content.IntegrationTests/Tests/PostMapInitTest.cs b/Content.IntegrationTests/Tests/PostMapInitTest.cs
index 465a91116e2..a1480caa54c 100644
--- a/Content.IntegrationTests/Tests/PostMapInitTest.cs
+++ b/Content.IntegrationTests/Tests/PostMapInitTest.cs
@@ -70,7 +70,8 @@ public sealed class PostMapInitTest
"Marathon",
"Gemini",
"MeteorArena",
- "Atlas"
+ "Atlas",
+ "Reach"
};
///
diff --git a/Content.Server/Atmos/EntitySystems/AtmosDebugOverlaySystem.cs b/Content.Server/Atmos/EntitySystems/AtmosDebugOverlaySystem.cs
index 90edd4caed5..4af32fce58f 100644
--- a/Content.Server/Atmos/EntitySystems/AtmosDebugOverlaySystem.cs
+++ b/Content.Server/Atmos/EntitySystems/AtmosDebugOverlaySystem.cs
@@ -20,7 +20,7 @@ public sealed class AtmosDebugOverlaySystem : SharedAtmosDebugOverlaySystem
[Dependency] private readonly IPlayerManager _playerManager = default!;
[Dependency] private readonly IMapManager _mapManager = default!;
[Dependency] private readonly IConfigurationManager _configManager = default!;
- [Dependency] private readonly AtmosphereSystem _atmosphereSystem = default!;
+ [Dependency] private readonly SharedTransformSystem _transform = default!;
[Dependency] private readonly MapSystem _mapSystem = default!;
///
@@ -67,7 +67,7 @@ public bool RemoveObserver(ICommonSession observer)
}
var message = new AtmosDebugOverlayDisableMessage();
- RaiseNetworkEvent(message, observer.ConnectedClient);
+ RaiseNetworkEvent(message, observer.Channel);
return true;
}
@@ -84,11 +84,9 @@ public bool ToggleObserver(ICommonSession observer)
RemoveObserver(observer);
return false;
}
- else
- {
- AddObserver(observer);
- return true;
- }
+
+ AddObserver(observer);
+ return true;
}
private void OnPlayerStatusChanged(object? sender, SessionStatusEventArgs e)
@@ -99,19 +97,22 @@ private void OnPlayerStatusChanged(object? sender, SessionStatusEventArgs e)
}
}
- private AtmosDebugOverlayData ConvertTileToData(TileAtmosphere? tile, bool mapIsSpace)
+ private AtmosDebugOverlayData ConvertTileToData(TileAtmosphere? tile)
{
- var gases = new float[Atmospherics.AdjustedNumberOfGases];
-
- if (tile?.Air == null)
- {
- return new AtmosDebugOverlayData(Atmospherics.TCMB, gases, AtmosDirection.Invalid, tile?.LastPressureDirection ?? AtmosDirection.Invalid, 0, tile?.BlockedAirflow ?? AtmosDirection.Invalid, tile?.Space ?? mapIsSpace);
- }
- else
- {
- NumericsHelpers.Add(gases, tile.Air.Moles);
- return new AtmosDebugOverlayData(tile.Air.Temperature, gases, tile.PressureDirection, tile.LastPressureDirection, tile.ExcitedGroup?.GetHashCode() ?? 0, tile.BlockedAirflow, tile.Space);
- }
+ if (tile == null)
+ return default;
+
+ return new AtmosDebugOverlayData(
+ tile.GridIndices,
+ tile.Air?.Temperature ?? default,
+ tile.Air?.Moles,
+ tile.PressureDirection,
+ tile.LastPressureDirection,
+ tile.BlockedAirflow,
+ tile.ExcitedGroup?.GetHashCode(),
+ tile.Space,
+ false,
+ false);
}
public override void Update(float frameTime)
@@ -135,12 +136,9 @@ public override void Update(float frameTime)
if (session.AttachedEntity is not {Valid: true} entity)
continue;
- var transform = EntityManager.GetComponent(entity);
- var mapUid = transform.MapUid;
-
- var mapIsSpace = _atmosphereSystem.IsTileSpace(null, mapUid, Vector2i.Zero);
-
- var worldBounds = Box2.CenteredAround(transform.WorldPosition,
+ var transform = Transform(entity);
+ var pos = _transform.GetWorldPosition(transform);
+ var worldBounds = Box2.CenteredAround(pos,
new Vector2(LocalViewRange, LocalViewRange));
_grids.Clear();
@@ -157,8 +155,8 @@ public override void Update(float frameTime)
continue;
var entityTile = _mapSystem.GetTileRef(grid, grid, transform.Coordinates).GridIndices;
- var baseTile = new Vector2i(entityTile.X - (LocalViewRange / 2), entityTile.Y - (LocalViewRange / 2));
- var debugOverlayContent = new AtmosDebugOverlayData[LocalViewRange * LocalViewRange];
+ var baseTile = new Vector2i(entityTile.X - LocalViewRange / 2, entityTile.Y - LocalViewRange / 2);
+ var debugOverlayContent = new AtmosDebugOverlayData?[LocalViewRange * LocalViewRange];
var index = 0;
for (var y = 0; y < LocalViewRange; y++)
@@ -166,11 +164,13 @@ public override void Update(float frameTime)
for (var x = 0; x < LocalViewRange; x++)
{
var vector = new Vector2i(baseTile.X + x, baseTile.Y + y);
- debugOverlayContent[index++] = ConvertTileToData(gridAtmos.Tiles.TryGetValue(vector, out var tile) ? tile : null, mapIsSpace);
+ gridAtmos.Tiles.TryGetValue(vector, out var tile);
+ debugOverlayContent[index++] = tile == null ? null : ConvertTileToData(tile);
}
}
- RaiseNetworkEvent(new AtmosDebugOverlayMessage(GetNetEntity(grid), baseTile, debugOverlayContent), session.ConnectedClient);
+ var msg = new AtmosDebugOverlayMessage(GetNetEntity(grid), baseTile, debugOverlayContent);
+ RaiseNetworkEvent(msg, session.Channel);
}
}
}
diff --git a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.CVars.cs b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.CVars.cs
index bcd628a60de..7f82e6fb57b 100644
--- a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.CVars.cs
+++ b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.CVars.cs
@@ -52,7 +52,7 @@ private void InitializeCVars()
_cfg.OnValueChanged(CCVars.AtmosMaxProcessTime, value => AtmosMaxProcessTime = value, true);
_cfg.OnValueChanged(CCVars.AtmosTickRate, value => AtmosTickRate = value, true);
_cfg.OnValueChanged(CCVars.AtmosSpeedup, value => Speedup = value, true);
- _cfg.OnValueChanged(CCVars.AtmosHeatScale, value => HeatScale = value, true);
+ _cfg.OnValueChanged(CCVars.AtmosHeatScale, value => { HeatScale = value; InitializeGases(); }, true);
_cfg.OnValueChanged(CCVars.ExcitedGroups, value => ExcitedGroups = value, true);
_cfg.OnValueChanged(CCVars.ExcitedGroupsSpaceIsAllConsuming, value => ExcitedGroupsSpaceIsAllConsuming = value, true);
}
diff --git a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Gases.cs b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Gases.cs
index 41470c170c2..4c3437e431e 100644
--- a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Gases.cs
+++ b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Gases.cs
@@ -35,7 +35,7 @@ private void InitializeGases()
for (var i = 0; i < GasPrototypes.Length; i++)
{
- _gasSpecificHeats[i] = GasPrototypes[i].SpecificHeat;
+ _gasSpecificHeats[i] = GasPrototypes[i].SpecificHeat / HeatScale;
GasReagents[i] = GasPrototypes[i].Reagent;
}
}
@@ -43,11 +43,22 @@ private void InitializeGases()
///
/// Calculates the heat capacity for a gas mixture.
///
- public float GetHeatCapacity(GasMixture mixture)
+ /// The mixture whose heat capacity should be calculated
+ /// Whether the internal heat capacity scaling should be applied. This should not be
+ /// used outside of atmospheric related heat transfer.
+ ///
+ public float GetHeatCapacity(GasMixture mixture, bool applyScaling)
{
- return GetHeatCapacityCalculation(mixture.Moles, mixture.Immutable);
+ var scale = GetHeatCapacityCalculation(mixture.Moles, mixture.Immutable);
+
+ // By default GetHeatCapacityCalculation() has the heat-scale divisor pre-applied.
+ // So if we want the un-scaled heat capacity, we have to multiply by the scale.
+ return applyScaling ? scale : scale * HeatScale;
}
+ private float GetHeatCapacity(GasMixture mixture)
+ => GetHeatCapacityCalculation(mixture.Moles, mixture.Immutable);
+
[MethodImpl(MethodImplOptions.AggressiveInlining)]
private float GetHeatCapacityCalculation(float[] moles, bool space)
{
@@ -61,7 +72,7 @@ private float GetHeatCapacityCalculation(float[] moles, bool space)
NumericsHelpers.Multiply(moles, GasSpecificHeats, tmp);
// Adjust heat capacity by speedup, because this is primarily what
// determines how quickly gases heat up/cool.
- return MathF.Max(NumericsHelpers.HorizontalAdd(tmp), Atmospherics.MinimumHeatCapacity) / HeatScale;
+ return MathF.Max(NumericsHelpers.HorizontalAdd(tmp), Atmospherics.MinimumHeatCapacity);
}
///
@@ -320,7 +331,9 @@ public ReactionResult React(GasMixture mixture, IGasMixtureHolder? holder)
var req = prototype.MinimumRequirements[i];
- if (!(mixture.GetMoles(i) < req)) continue;
+ if (!(mixture.GetMoles(i) < req))
+ continue;
+
doReaction = false;
break;
}
@@ -328,7 +341,7 @@ public ReactionResult React(GasMixture mixture, IGasMixtureHolder? holder)
if (!doReaction)
continue;
- reaction = prototype.React(mixture, holder, this);
+ reaction = prototype.React(mixture, holder, this, HeatScale);
if(reaction.HasFlag(ReactionResult.StopReactions))
break;
}
diff --git a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.GridAtmosphere.cs b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.GridAtmosphere.cs
index 036b64cad94..3eb38296f6a 100644
--- a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.GridAtmosphere.cs
+++ b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.GridAtmosphere.cs
@@ -3,6 +3,7 @@
using Content.Server.Atmos.Reactions;
using Content.Shared.Atmos;
using Content.Shared.Atmos.Components;
+using Robust.Shared.Map;
using Robust.Shared.Map.Components;
using Robust.Shared.Utility;
@@ -558,4 +559,12 @@ private void GridRepopulateTiles(Entity();
- while (query.MoveNext(out var uid, out var exposed, out var transform))
+ while (query.MoveNext(out var uid, out _, out var transform))
{
var air = GetContainingMixture(uid, transform:transform);
diff --git a/Content.Server/Atmos/EntitySystems/GasTankSystem.cs b/Content.Server/Atmos/EntitySystems/GasTankSystem.cs
index b476b906a93..bdd60d6d052 100644
--- a/Content.Server/Atmos/EntitySystems/GasTankSystem.cs
+++ b/Content.Server/Atmos/EntitySystems/GasTankSystem.cs
@@ -39,6 +39,7 @@ public sealed class GasTankSystem : EntitySystem
private const float TimerDelay = 0.5f;
private float _timer = 0f;
+ private const float MinimumSoundValvePressure = 10.0f;
public override void Initialize()
{
@@ -178,7 +179,8 @@ private void ReleaseGas(Entity gasTank)
var strength = removed.TotalMoles * MathF.Sqrt(removed.Temperature);
var dir = _random.NextAngle().ToWorldVec();
_throwing.TryThrow(gasTank, dir * strength, strength);
- _audioSys.PlayPvs(gasTank.Comp.RuptureSound, gasTank);
+ if (gasTank.Comp.OutputPressure >= MinimumSoundValvePressure)
+ _audioSys.PlayPvs(gasTank.Comp.RuptureSound, gasTank);
}
private void ToggleInternals(Entity ent)
diff --git a/Content.Server/Atmos/EntitySystems/HeatExchangerSystem.cs b/Content.Server/Atmos/EntitySystems/HeatExchangerSystem.cs
index e8a7b089c67..2541d98a7ef 100644
--- a/Content.Server/Atmos/EntitySystems/HeatExchangerSystem.cs
+++ b/Content.Server/Atmos/EntitySystems/HeatExchangerSystem.cs
@@ -83,7 +83,7 @@ private void OnAtmosUpdate(EntityUid uid, HeatExchangerComponent comp, AtmosDevi
else
xfer = outlet.Air.Remove(-n);
- float CXfer = _atmosphereSystem.GetHeatCapacity(xfer);
+ float CXfer = _atmosphereSystem.GetHeatCapacity(xfer, true);
if (CXfer < Atmospherics.MinimumHeatCapacity)
return;
@@ -94,7 +94,7 @@ private void OnAtmosUpdate(EntityUid uid, HeatExchangerComponent comp, AtmosDevi
float CEnv = 0f;
if (environment != null)
{
- CEnv = _atmosphereSystem.GetHeatCapacity(environment);
+ CEnv = _atmosphereSystem.GetHeatCapacity(environment, true);
hasEnv = CEnv >= Atmospherics.MinimumHeatCapacity && environment.TotalMoles > 0f;
if (hasEnv)
radTemp = environment.Temperature;
diff --git a/Content.Server/Atmos/IGasReactionEffect.cs b/Content.Server/Atmos/IGasReactionEffect.cs
index acaef2a0719..bd229694bb1 100644
--- a/Content.Server/Atmos/IGasReactionEffect.cs
+++ b/Content.Server/Atmos/IGasReactionEffect.cs
@@ -6,6 +6,14 @@ namespace Content.Server.Atmos
[ImplicitDataDefinitionForInheritors]
public partial interface IGasReactionEffect
{
- ReactionResult React(GasMixture mixture, IGasMixtureHolder? holder, AtmosphereSystem atmosphereSystem);
+ ///
+ /// Process this reaction effect.
+ ///
+ /// The gas mixture to react
+ /// The container of this gas mixture
+ /// The atmosphere system
+ /// Scaling factor that should be applied to all heat input or outputs.
+ ReactionResult React(GasMixture mixture, IGasMixtureHolder? holder, AtmosphereSystem atmosphereSystem,
+ float heatScale);
}
}
diff --git a/Content.Server/Atmos/Piping/Unary/Components/GasCondenserComponent.cs b/Content.Server/Atmos/Piping/Unary/Components/GasCondenserComponent.cs
new file mode 100644
index 00000000000..1db0b524bb6
--- /dev/null
+++ b/Content.Server/Atmos/Piping/Unary/Components/GasCondenserComponent.cs
@@ -0,0 +1,33 @@
+using Content.Server.Atmos.Piping.Unary.EntitySystems;
+
+namespace Content.Server.Atmos.Piping.Unary.Components;
+
+///
+/// Used for an entity that converts moles of gas into units of reagent.
+///
+[RegisterComponent]
+[Access(typeof(GasCondenserSystem))]
+public sealed partial class GasCondenserComponent : Component
+{
+ ///
+ /// The ID for the pipe node.
+ ///
+ [DataField]
+ public string Inlet = "pipe";
+
+ ///
+ /// The ID for the solution.
+ ///
+ [DataField]
+ public string SolutionId = "tank";
+
+ ///
+ /// For a condenser, how many U of reagents are given per each mole of gas.
+ ///
+ ///
+ /// Derived from a standard of 500u per canister:
+ /// 400u / 1871.71051 moles per canister
+ ///
+ [DataField, ViewVariables(VVAccess.ReadWrite)]
+ public float MolesToReagentMultiplier = 0.2137f;
+}
diff --git a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasCondenserSystem.cs b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasCondenserSystem.cs
new file mode 100644
index 00000000000..8df1bb53658
--- /dev/null
+++ b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasCondenserSystem.cs
@@ -0,0 +1,73 @@
+using Content.Server.Atmos.EntitySystems;
+using Content.Server.Atmos.Piping.Components;
+using Content.Server.Atmos.Piping.Unary.Components;
+using Content.Server.NodeContainer;
+using Content.Server.NodeContainer.EntitySystems;
+using Content.Server.NodeContainer.Nodes;
+using Content.Server.Power.Components;
+using Content.Shared.Atmos;
+using JetBrains.Annotations;
+using Content.Server.Power.EntitySystems;
+using Content.Shared.Chemistry.EntitySystems;
+
+namespace Content.Server.Atmos.Piping.Unary.EntitySystems;
+
+[UsedImplicitly]
+public sealed class GasCondenserSystem : EntitySystem
+{
+ [Dependency] private readonly AtmosphereSystem _atmosphereSystem = default!;
+ [Dependency] private readonly PowerReceiverSystem _power = default!;
+ [Dependency] private readonly NodeContainerSystem _nodeContainer = default!;
+ [Dependency] private readonly SolutionContainerSystem _solution = default!;
+
+ public override void Initialize()
+ {
+ base.Initialize();
+
+ SubscribeLocalEvent(OnCondenserUpdated);
+ }
+
+ private void OnCondenserUpdated(EntityUid uid, GasCondenserComponent component, AtmosDeviceUpdateEvent args)
+ {
+ if (!(_power.IsPowered(uid) && TryComp(uid, out var receiver))
+ || !TryComp(uid, out var nodeContainer)
+ || !_nodeContainer.TryGetNode(nodeContainer, component.Inlet, out PipeNode? inlet)
+ || !_solution.TryGetSolution(uid, component.SolutionId, out var solution))
+ {
+ return;
+ }
+
+ if (solution.AvailableVolume == 0 || inlet.Air.TotalMoles == 0)
+ return;
+
+ var molesToConvert = NumberOfMolesToConvert(receiver, inlet.Air, args.dt);
+ var removed = inlet.Air.Remove(molesToConvert);
+ for (var i = 0; i < Atmospherics.TotalNumberOfGases; i++)
+ {
+ var moles = removed.Moles[i];
+ if (moles <= 0)
+ continue;
+
+ if (_atmosphereSystem.GetGas(i).Reagent is not {} gasReagent)
+ continue;
+
+ var moleToReagentMultiplier = component.MolesToReagentMultiplier;
+ var amount = moles * moleToReagentMultiplier;
+
+ if (_solution.TryAddReagent(uid, solution, gasReagent, amount, out var remaining))
+ continue;
+
+ // if we have leftover reagent, then convert it back to moles and put it back in the mixture.
+ inlet.Air.AdjustMoles(i, remaining.Float() / moleToReagentMultiplier);
+ }
+ }
+
+ public float NumberOfMolesToConvert(ApcPowerReceiverComponent comp, GasMixture mix, float dt)
+ {
+ var hc = _atmosphereSystem.GetHeatCapacity(mix, true);
+ var alpha = 0.8f; // tuned to give us 1-ish u/second of reagent conversion
+ // ignores the energy needed to cool down the solution to the condensation point, but that probably adds too much difficulty and so let's not simulate that
+ var energy = comp.Load * dt;
+ return energy / (alpha * hc);
+ }
+}
diff --git a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasThermoMachineSystem.cs b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasThermoMachineSystem.cs
index 7f5f58fe4b7..4140eb2a93f 100644
--- a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasThermoMachineSystem.cs
+++ b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasThermoMachineSystem.cs
@@ -80,7 +80,7 @@ private void OnThermoMachineUpdated(EntityUid uid, GasThermoMachineComponent the
float dQ = thermoMachine.HeatCapacity * thermoMachine.Cp * args.dt;
// Clamps the heat transferred to not overshoot
- float Cin = _atmosphereSystem.GetHeatCapacity(inlet.Air);
+ float Cin = _atmosphereSystem.GetHeatCapacity(inlet.Air, true);
float dT = targetTemp - temp;
float dQLim = dT * Cin;
float scale = 1f;
diff --git a/Content.Server/Atmos/Reactions/FrezonCoolantReaction.cs b/Content.Server/Atmos/Reactions/FrezonCoolantReaction.cs
index ddbd8a772b7..051ee8202db 100644
--- a/Content.Server/Atmos/Reactions/FrezonCoolantReaction.cs
+++ b/Content.Server/Atmos/Reactions/FrezonCoolantReaction.cs
@@ -10,9 +10,9 @@ namespace Content.Server.Atmos.Reactions;
[UsedImplicitly]
public sealed partial class FrezonCoolantReaction : IGasReactionEffect
{
- public ReactionResult React(GasMixture mixture, IGasMixtureHolder? holder, AtmosphereSystem atmosphereSystem)
+ public ReactionResult React(GasMixture mixture, IGasMixtureHolder? holder, AtmosphereSystem atmosphereSystem, float heatScale)
{
- var oldHeatCapacity = atmosphereSystem.GetHeatCapacity(mixture);
+ var oldHeatCapacity = atmosphereSystem.GetHeatCapacity(mixture, true);
var temperature = mixture.Temperature;
var energyModifier = 1f;
@@ -45,11 +45,11 @@ public ReactionResult React(GasMixture mixture, IGasMixtureHolder? holder, Atmos
energyReleased = burnRate * Atmospherics.FrezonCoolEnergyReleased * energyModifier;
}
- energyReleased /= atmosphereSystem.HeatScale; // adjust energy to make sure speedup doesn't cause mega temperature rise
+ energyReleased /= heatScale; // adjust energy to make sure speedup doesn't cause mega temperature rise
if (energyReleased >= 0f)
return ReactionResult.NoReaction;
- var newHeatCapacity = atmosphereSystem.GetHeatCapacity(mixture);
+ var newHeatCapacity = atmosphereSystem.GetHeatCapacity(mixture, true);
if (newHeatCapacity > Atmospherics.MinimumHeatCapacity)
mixture.Temperature = (temperature * oldHeatCapacity + energyReleased) / newHeatCapacity;
diff --git a/Content.Server/Atmos/Reactions/FrezonProductionReaction.cs b/Content.Server/Atmos/Reactions/FrezonProductionReaction.cs
index 084d939e4e0..4ffd9c2f5b3 100644
--- a/Content.Server/Atmos/Reactions/FrezonProductionReaction.cs
+++ b/Content.Server/Atmos/Reactions/FrezonProductionReaction.cs
@@ -11,7 +11,7 @@ namespace Content.Server.Atmos.Reactions;
[UsedImplicitly]
public sealed partial class FrezonProductionReaction : IGasReactionEffect
{
- public ReactionResult React(GasMixture mixture, IGasMixtureHolder? holder, AtmosphereSystem atmosphereSystem)
+ public ReactionResult React(GasMixture mixture, IGasMixtureHolder? holder, AtmosphereSystem atmosphereSystem, float heatScale)
{
var initialN2 = mixture.GetMoles(Gas.Nitrogen);
var initialOxy = mixture.GetMoles(Gas.Oxygen);
@@ -28,7 +28,6 @@ public ReactionResult React(GasMixture mixture, IGasMixtureHolder? holder, Atmos
// Amount of tritium & oxygen that are reacting
var tritBurned = Math.Min(oxyLimit, initialTrit);
var oxyBurned = tritBurned * Atmospherics.FrezonProductionTritRatio;
- var burnRatio = tritBurned / initialTrit;
var oxyConversion = oxyBurned / Atmospherics.FrezonProductionConversionRate;
var tritConversion = tritBurned / Atmospherics.FrezonProductionConversionRate;
diff --git a/Content.Server/Atmos/Reactions/GasReactionPrototype.cs b/Content.Server/Atmos/Reactions/GasReactionPrototype.cs
index 30f9b72f8df..0ee29de3bf1 100644
--- a/Content.Server/Atmos/Reactions/GasReactionPrototype.cs
+++ b/Content.Server/Atmos/Reactions/GasReactionPrototype.cs
@@ -60,13 +60,20 @@ public sealed partial class GasReactionPrototype : IPrototype
///
[DataField("effects")] private List _effects = new();
- public ReactionResult React(GasMixture mixture, IGasMixtureHolder? holder, AtmosphereSystem atmosphereSystem)
+ ///
+ /// Process all reaction effects.
+ ///
+ /// The gas mixture to react
+ /// The container of this gas mixture
+ /// The atmosphere system
+ /// Scaling factor that should be applied to all heat input or outputs.
+ public ReactionResult React(GasMixture mixture, IGasMixtureHolder? holder, AtmosphereSystem atmosphereSystem, float heatScale)
{
var result = ReactionResult.NoReaction;
foreach (var effect in _effects)
{
- result |= effect.React(mixture, holder, atmosphereSystem);
+ result |= effect.React(mixture, holder, atmosphereSystem, heatScale);
}
return result;
diff --git a/Content.Server/Atmos/Reactions/MiasmicSubsumationReaction.cs b/Content.Server/Atmos/Reactions/MiasmicSubsumationReaction.cs
index b7dd5b7eb89..f9e8cbdf776 100644
--- a/Content.Server/Atmos/Reactions/MiasmicSubsumationReaction.cs
+++ b/Content.Server/Atmos/Reactions/MiasmicSubsumationReaction.cs
@@ -10,7 +10,7 @@ namespace Content.Server.Atmos.Reactions;
[UsedImplicitly]
public sealed partial class MiasmicSubsumationReaction : IGasReactionEffect
{
- public ReactionResult React(GasMixture mixture, IGasMixtureHolder? holder, AtmosphereSystem atmosphereSystem)
+ public ReactionResult React(GasMixture mixture, IGasMixtureHolder? holder, AtmosphereSystem atmosphereSystem, float heatScale)
{
var initialMiasma = mixture.GetMoles(Gas.Miasma);
var initialFrezon = mixture.GetMoles(Gas.Frezon);
diff --git a/Content.Server/Atmos/Reactions/PlasmaFireReaction.cs b/Content.Server/Atmos/Reactions/PlasmaFireReaction.cs
index 22a8772e682..9adda3089cc 100644
--- a/Content.Server/Atmos/Reactions/PlasmaFireReaction.cs
+++ b/Content.Server/Atmos/Reactions/PlasmaFireReaction.cs
@@ -8,10 +8,10 @@ namespace Content.Server.Atmos.Reactions
[DataDefinition]
public sealed partial class PlasmaFireReaction : IGasReactionEffect
{
- public ReactionResult React(GasMixture mixture, IGasMixtureHolder? holder, AtmosphereSystem atmosphereSystem)
+ public ReactionResult React(GasMixture mixture, IGasMixtureHolder? holder, AtmosphereSystem atmosphereSystem, float heatScale)
{
var energyReleased = 0f;
- var oldHeatCapacity = atmosphereSystem.GetHeatCapacity(mixture);
+ var oldHeatCapacity = atmosphereSystem.GetHeatCapacity(mixture, true);
var temperature = mixture.Temperature;
var location = holder as TileAtmosphere;
mixture.ReactionResults[GasReaction.Fire] = 0;
@@ -22,8 +22,10 @@ public ReactionResult React(GasMixture mixture, IGasMixtureHolder? holder, Atmos
if (temperature > Atmospherics.PlasmaUpperTemperature)
temperatureScale = 1f;
else
+ {
temperatureScale = (temperature - Atmospherics.PlasmaMinimumBurnTemperature) /
(Atmospherics.PlasmaUpperTemperature - Atmospherics.PlasmaMinimumBurnTemperature);
+ }
if (temperatureScale > 0)
{
@@ -56,14 +58,14 @@ public ReactionResult React(GasMixture mixture, IGasMixtureHolder? holder, Atmos
mixture.AdjustMoles(Gas.CarbonDioxide, plasmaBurnRate * (1.0f - supersaturation));
energyReleased += Atmospherics.FirePlasmaEnergyReleased * plasmaBurnRate;
- energyReleased /= atmosphereSystem.HeatScale; // adjust energy to make sure speedup doesn't cause mega temperature rise
+ energyReleased /= heatScale; // adjust energy to make sure speedup doesn't cause mega temperature rise
mixture.ReactionResults[GasReaction.Fire] += plasmaBurnRate * (1 + oxygenBurnRate);
}
}
if (energyReleased > 0)
{
- var newHeatCapacity = atmosphereSystem.GetHeatCapacity(mixture);
+ var newHeatCapacity = atmosphereSystem.GetHeatCapacity(mixture, true);
if (newHeatCapacity > Atmospherics.MinimumHeatCapacity)
mixture.Temperature = (temperature * oldHeatCapacity + energyReleased) / newHeatCapacity;
}
diff --git a/Content.Server/Atmos/Reactions/TritiumFireReaction.cs b/Content.Server/Atmos/Reactions/TritiumFireReaction.cs
index d1459993bf8..c52b431fd43 100644
--- a/Content.Server/Atmos/Reactions/TritiumFireReaction.cs
+++ b/Content.Server/Atmos/Reactions/TritiumFireReaction.cs
@@ -8,10 +8,10 @@ namespace Content.Server.Atmos.Reactions
[DataDefinition]
public sealed partial class TritiumFireReaction : IGasReactionEffect
{
- public ReactionResult React(GasMixture mixture, IGasMixtureHolder? holder, AtmosphereSystem atmosphereSystem)
+ public ReactionResult React(GasMixture mixture, IGasMixtureHolder? holder, AtmosphereSystem atmosphereSystem, float heatScale)
{
var energyReleased = 0f;
- var oldHeatCapacity = atmosphereSystem.GetHeatCapacity(mixture);
+ var oldHeatCapacity = atmosphereSystem.GetHeatCapacity(mixture, true);
var temperature = mixture.Temperature;
var location = holder as TileAtmosphere;
mixture.ReactionResults[GasReaction.Fire] = 0f;
@@ -47,10 +47,10 @@ public ReactionResult React(GasMixture mixture, IGasMixtureHolder? holder, Atmos
mixture.ReactionResults[GasReaction.Fire] += burnedFuel;
}
- energyReleased /= atmosphereSystem.HeatScale; // adjust energy to make sure speedup doesn't cause mega temperature rise
+ energyReleased /= heatScale; // adjust energy to make sure speedup doesn't cause mega temperature rise
if (energyReleased > 0)
{
- var newHeatCapacity = atmosphereSystem.GetHeatCapacity(mixture);
+ var newHeatCapacity = atmosphereSystem.GetHeatCapacity(mixture, true);
if (newHeatCapacity > Atmospherics.MinimumHeatCapacity)
mixture.Temperature = ((temperature * oldHeatCapacity + energyReleased) / newHeatCapacity);
}
diff --git a/Content.Server/Atmos/Reactions/WaterVaporReaction.cs b/Content.Server/Atmos/Reactions/WaterVaporReaction.cs
index 75eb0291dfa..8db8fdbd66d 100644
--- a/Content.Server/Atmos/Reactions/WaterVaporReaction.cs
+++ b/Content.Server/Atmos/Reactions/WaterVaporReaction.cs
@@ -17,7 +17,7 @@ public sealed partial class WaterVaporReaction : IGasReactionEffect
[DataField("molesPerUnit")] public float MolesPerUnit { get; private set; } = 1;
- public ReactionResult React(GasMixture mixture, IGasMixtureHolder? holder, AtmosphereSystem atmosphereSystem)
+ public ReactionResult React(GasMixture mixture, IGasMixtureHolder? holder, AtmosphereSystem atmosphereSystem, float heatScale)
{
// If any of the prototypes is invalid, we do nothing.
if (string.IsNullOrEmpty(Reagent))
@@ -34,9 +34,8 @@ public ReactionResult React(GasMixture mixture, IGasMixtureHolder? holder, Atmos
// Remove the moles from the mixture...
mixture.AdjustMoles(GasId, -MolesPerUnit);
- var tileRef = tile.GridIndices.GetTileRef(tile.GridIndex);
- EntitySystem.Get()
- .TrySpillAt(tileRef, new Solution(Reagent, FixedPoint2.New(MolesPerUnit)), out _, sound: false);
+ var tileRef = atmosphereSystem.GetTileRef(tile);
+ atmosphereSystem.Puddle.TrySpillAt(tileRef, new Solution(Reagent, FixedPoint2.New(MolesPerUnit)), out _, sound: false);
return ReactionResult.Reacting;
}
diff --git a/Content.Server/Body/Systems/BloodstreamSystem.cs b/Content.Server/Body/Systems/BloodstreamSystem.cs
index f1ab5702e5b..cb83625615b 100644
--- a/Content.Server/Body/Systems/BloodstreamSystem.cs
+++ b/Content.Server/Body/Systems/BloodstreamSystem.cs
@@ -1,7 +1,6 @@
using Content.Server.Body.Components;
using Content.Server.Chemistry.ReactionEffects;
using Content.Server.Fluids.EntitySystems;
-using Content.Server.Forensics;
using Content.Server.HealthExaminable;
using Content.Server.Popups;
using Content.Shared.Alert;
@@ -22,6 +21,8 @@
using Robust.Shared.Random;
using Content.Shared.Speech.EntitySystems;
using Robust.Server.Audio;
+using Robust.Shared.GameObjects;
+using Content.Server.Forensics;
namespace Content.Server.Body.Systems;
@@ -38,6 +39,7 @@ public sealed class BloodstreamSystem : EntitySystem
[Dependency] private readonly SolutionContainerSystem _solutionContainerSystem = default!;
[Dependency] private readonly SharedStutteringSystem _stutteringSystem = default!;
[Dependency] private readonly AlertsSystem _alertsSystem = default!;
+ [Dependency] private readonly ForensicsSystem _forensicsSystem = default!;
public override void Initialize()
{
@@ -322,11 +324,7 @@ public bool TryModifyBloodLevel(EntityUid uid, FixedPoint2 amount, BloodstreamCo
component.BloodTemporarySolution.AddSolution(temp, _prototypeManager);
if (_puddleSystem.TrySpillAt(uid, component.BloodTemporarySolution, out var puddleUid, false))
{
- if (TryComp(uid, out var dna))
- {
- var comp = EnsureComp(puddleUid);
- comp.DNAs.Add(dna.DNA);
- }
+ _forensicsSystem.TransferDna(puddleUid, uid, false);
}
component.BloodTemporarySolution.RemoveAllSolution();
@@ -378,11 +376,7 @@ public void SpillAllSolutions(EntityUid uid, BloodstreamComponent? component = n
if (_puddleSystem.TrySpillAt(uid, tempSol, out var puddleUid))
{
- if (TryComp(uid, out var dna))
- {
- var comp = EnsureComp(puddleUid);
- comp.DNAs.Add(dna.DNA);
- }
+ _forensicsSystem.TransferDna(puddleUid, uid, false);
}
}
diff --git a/Content.Server/Body/Systems/LungSystem.cs b/Content.Server/Body/Systems/LungSystem.cs
index 954b5532277..1843ae033e6 100644
--- a/Content.Server/Body/Systems/LungSystem.cs
+++ b/Content.Server/Body/Systems/LungSystem.cs
@@ -53,22 +53,18 @@ private void OnComponentInit(EntityUid uid, LungComponent component, ComponentIn
private void OnMaskToggled(Entity ent, ref ItemMaskToggledEvent args)
{
- // toggle breath tool connection (skip during equip since that is handled in LungSystem)
- if (args.IsEquip)
+ if (args.IsToggled || args.IsEquip)
{
- if (args.IsToggled)
- {
- _atmos.DisconnectInternals(ent.Comp);
- }
- else
- {
- ent.Comp.IsFunctional = true;
+ _atmos.DisconnectInternals(ent.Comp);
+ }
+ else
+ {
+ ent.Comp.IsFunctional = true;
- if (TryComp(args.Wearer, out InternalsComponent? internals))
- {
- ent.Comp.ConnectedInternalsEntity = args.Wearer;
- _internals.ConnectBreathTool((args.Wearer, internals), ent);
- }
+ if (TryComp(args.Wearer, out InternalsComponent? internals))
+ {
+ ent.Comp.ConnectedInternalsEntity = args.Wearer;
+ _internals.ConnectBreathTool((args.Wearer, internals), ent);
}
}
}
diff --git a/Content.Server/Chemistry/EntitySystems/ChemistrySystem.Injector.cs b/Content.Server/Chemistry/EntitySystems/ChemistrySystem.Injector.cs
index 6b085d133ed..c618094d1b0 100644
--- a/Content.Server/Chemistry/EntitySystems/ChemistrySystem.Injector.cs
+++ b/Content.Server/Chemistry/EntitySystems/ChemistrySystem.Injector.cs
@@ -15,6 +15,7 @@
using Content.Shared.Verbs;
using Content.Shared.Stacks;
using Robust.Shared.Player;
+using Content.Shared.Forensics;
namespace Content.Server.Chemistry.EntitySystems;
@@ -290,7 +291,7 @@ private void TryInjectIntoBloodstream(InjectorComponent component, EntityUid inj
("target", Identity.Entity(target, EntityManager))), injector, user);
Dirty(component);
- AfterInject(component, injector);
+ AfterInject(component, injector, target);
}
private void TryInject(InjectorComponent component, EntityUid injector, EntityUid targetEntity, Solution targetSolution, EntityUid user, bool asRefill)
@@ -328,10 +329,10 @@ private void TryInject(InjectorComponent component, EntityUid injector, EntityUi
("target", Identity.Entity(targetEntity, EntityManager))), injector, user);
Dirty(component);
- AfterInject(component, injector);
+ AfterInject(component, injector, targetEntity);
}
- private void AfterInject(InjectorComponent component, EntityUid injector)
+ private void AfterInject(InjectorComponent component, EntityUid injector, EntityUid target)
{
// Automatically set syringe to draw after completely draining it.
if (_solutions.TryGetSolution(injector, InjectorComponent.SolutionName, out var solution)
@@ -339,9 +340,13 @@ private void AfterInject(InjectorComponent component, EntityUid injector)
{
component.ToggleState = SharedInjectorComponent.InjectorToggleMode.Draw;
}
+
+ // Leave some DNA from the injectee on it
+ var ev = new TransferDnaEvent { Donor = target, Recipient = injector };
+ RaiseLocalEvent(target, ref ev);
}
- private void AfterDraw(InjectorComponent component, EntityUid injector)
+ private void AfterDraw(InjectorComponent component, EntityUid injector, EntityUid target)
{
// Automatically set syringe to inject after completely filling it.
if (_solutions.TryGetSolution(injector, InjectorComponent.SolutionName, out var solution)
@@ -349,6 +354,10 @@ private void AfterDraw(InjectorComponent component, EntityUid injector)
{
component.ToggleState = SharedInjectorComponent.InjectorToggleMode.Inject;
}
+
+ // Leave some DNA from the drawee on it
+ var ev = new TransferDnaEvent { Donor = target, Recipient = injector };
+ RaiseLocalEvent(target, ref ev);
}
private void TryDraw(InjectorComponent component, EntityUid injector, EntityUid targetEntity, Solution targetSolution, EntityUid user, BloodstreamComponent? stream = null)
@@ -389,7 +398,7 @@ private void TryDraw(InjectorComponent component, EntityUid injector, EntityUid
("target", Identity.Entity(targetEntity, EntityManager))), injector, user);
Dirty(component);
- AfterDraw(component, injector);
+ AfterDraw(component, injector, targetEntity);
}
private void DrawFromBlood(EntityUid user, EntityUid injector, EntityUid target, InjectorComponent component, Solution injectorSolution, BloodstreamComponent stream, FixedPoint2 transferAmount)
@@ -414,7 +423,7 @@ private void DrawFromBlood(EntityUid user, EntityUid injector, EntityUid target,
("target", Identity.Entity(target, EntityManager))), injector, user);
Dirty(component);
- AfterDraw(component, injector);
+ AfterDraw(component, injector, target);
}
}
diff --git a/Content.Server/Chemistry/EntitySystems/ChemistrySystemHypospray.cs b/Content.Server/Chemistry/EntitySystems/ChemistrySystemHypospray.cs
index fcc3c58fa7b..cb4feb80640 100644
--- a/Content.Server/Chemistry/EntitySystems/ChemistrySystemHypospray.cs
+++ b/Content.Server/Chemistry/EntitySystems/ChemistrySystemHypospray.cs
@@ -14,6 +14,7 @@
using Content.Shared.Weapons.Melee.Events;
using Content.Shared.Timing;
using Robust.Shared.GameStates;
+using Content.Shared.Forensics;
namespace Content.Server.Chemistry.EntitySystems
{
@@ -138,6 +139,9 @@ public bool TryDoInject(EntityUid uid, EntityUid? target, EntityUid user, Hyposp
_reactiveSystem.DoEntityReaction(target.Value, removedSolution, ReactionMethod.Injection);
_solutions.TryAddSolution(target.Value, targetSolution, removedSolution);
+ var ev = new TransferDnaEvent { Donor = target.Value, Recipient = uid };
+ RaiseLocalEvent(target.Value, ref ev);
+
// same LogType as syringes...
_adminLogger.Add(LogType.ForceFeed, $"{_entMan.ToPrettyString(user):user} injected {_entMan.ToPrettyString(target.Value):target} with a solution {SolutionContainerSystem.ToPrettyString(removedSolution):removedSolution} using a {_entMan.ToPrettyString(uid):using}");
diff --git a/Content.Server/Chemistry/EntitySystems/SolutionContainerMixerSystem.cs b/Content.Server/Chemistry/EntitySystems/SolutionContainerMixerSystem.cs
new file mode 100644
index 00000000000..a942d34e7a8
--- /dev/null
+++ b/Content.Server/Chemistry/EntitySystems/SolutionContainerMixerSystem.cs
@@ -0,0 +1,29 @@
+using Content.Server.Power.Components;
+using Content.Server.Power.EntitySystems;
+using Content.Shared.Chemistry.Components;
+using Content.Shared.Chemistry.EntitySystems;
+
+namespace Content.Server.Chemistry.EntitySystems;
+
+///
+public sealed class SolutionContainerMixerSystem : SharedSolutionContainerMixerSystem
+{
+ ///
+ public override void Initialize()
+ {
+ base.Initialize();
+
+ SubscribeLocalEvent(OnPowerChanged);
+ }
+
+ private void OnPowerChanged(Entity ent, ref PowerChangedEvent args)
+ {
+ if (!args.Powered)
+ StopMix(ent);
+ }
+
+ protected override bool HasPower(Entity entity)
+ {
+ return this.IsPowered(entity, EntityManager);
+ }
+}
diff --git a/Content.Server/Commands/ActionCommands.cs b/Content.Server/Commands/ActionCommands.cs
new file mode 100644
index 00000000000..280bf75a614
--- /dev/null
+++ b/Content.Server/Commands/ActionCommands.cs
@@ -0,0 +1,81 @@
+using Content.Server.Administration;
+using Content.Shared.Actions;
+using Content.Shared.Administration;
+using Robust.Shared.Console;
+
+namespace Content.Server.Commands;
+
+[AdminCommand(AdminFlags.Fun)]
+internal sealed class UpgradeActionCommand : IConsoleCommand
+{
+ [Dependency] private readonly IEntityManager _entMan = default!;
+
+ public string Command => "upgradeaction";
+ public string Description => Loc.GetString("upgradeaction-command-description");
+ public string Help => Loc.GetString("upgradeaction-command-help");
+
+ public void Execute(IConsoleShell shell, string argStr, string[] args)
+ {
+ if (args.Length < 1)
+ {
+ shell.WriteLine(Loc.GetString("upgradeaction-command-need-one-argument"));
+ return;
+ }
+
+ if (args.Length > 2)
+ {
+ shell.WriteLine(Loc.GetString("upgradeaction-command-max-two-arguments"));
+ return;
+ }
+
+ var actionUpgrade = _entMan.EntitySysManager.GetEntitySystem();
+ var id = args[0];
+
+ if (!EntityUid.TryParse(id, out var uid))
+ {
+ shell.WriteLine(Loc.GetString("upgradeaction-command-incorrect-entityuid-format"));
+ return;
+ }
+
+ if (!_entMan.EntityExists(uid))
+ {
+ shell.WriteLine(Loc.GetString("upgradeaction-command-entity-does-not-exist"));
+ return;
+ }
+
+ if (!_entMan.TryGetComponent(uid, out var actionUpgradeComponent))
+ {
+ shell.WriteLine(Loc.GetString("upgradeaction-command-entity-is-not-action"));
+ return;
+ }
+
+ if (args.Length == 1)
+ {
+ if (!actionUpgrade.TryUpgradeAction(uid, actionUpgradeComponent))
+ {
+ shell.WriteLine(Loc.GetString("upgradeaction-command-cannot-level-up"));
+ return;
+ }
+ }
+
+ if (args.Length == 2)
+ {
+ var levelArg = args[1];
+
+ if (!int.TryParse(levelArg, out var level))
+ {
+ shell.WriteLine(Loc.GetString("upgradeaction-command-second-argument-not-number"));
+ return;
+ }
+
+ if (level <= 0)
+ {
+ shell.WriteLine(Loc.GetString("upgradeaction-command-less-than-required-level"));
+ return;
+ }
+
+ if (!actionUpgrade.TryUpgradeAction(uid, actionUpgradeComponent, level))
+ shell.WriteLine(Loc.GetString("upgradeaction-command-cannot-level-up"));
+ }
+ }
+}
diff --git a/Content.Server/Discord/DiscordWebhook.cs b/Content.Server/Discord/DiscordWebhook.cs
index d8a93184445..ace57667644 100644
--- a/Content.Server/Discord/DiscordWebhook.cs
+++ b/Content.Server/Discord/DiscordWebhook.cs
@@ -1,5 +1,7 @@
-using System.Net.Http;
+using System.Net.Http;
using System.Net.Http.Json;
+using System.Text.Json;
+using System.Text.Json.Serialization;
using System.Threading.Tasks;
namespace Content.Server.Discord;
@@ -66,7 +68,7 @@ public async void TryGetWebhook(string url, Action onComplete)
public async Task CreateMessage(WebhookIdentifier identifier, WebhookPayload payload)
{
var url = $"{GetUrl(identifier)}?wait=true";
- return await _http.PostAsJsonAsync(url, payload);
+ return await _http.PostAsJsonAsync(url, payload, new JsonSerializerOptions { DefaultIgnoreCondition = JsonIgnoreCondition.WhenWritingNull });
}
///
@@ -91,7 +93,7 @@ public async Task DeleteMessage(WebhookIdentifier identifie
public async Task EditMessage(WebhookIdentifier identifier, ulong messageId, WebhookPayload payload)
{
var url = $"{GetUrl(identifier)}/messages/{messageId}";
- return await _http.PatchAsJsonAsync(url, payload);
+ return await _http.PatchAsJsonAsync(url, payload, new JsonSerializerOptions { DefaultIgnoreCondition = JsonIgnoreCondition.WhenWritingNull });
}
void IPostInjectInit.PostInject()
diff --git a/Content.Server/Discord/WebhookEmbed.cs b/Content.Server/Discord/WebhookEmbed.cs
index 8e0db0722c2..25083e48956 100644
--- a/Content.Server/Discord/WebhookEmbed.cs
+++ b/Content.Server/Discord/WebhookEmbed.cs
@@ -1,10 +1,13 @@
-using System.Text.Json.Serialization;
+using System.Text.Json.Serialization;
namespace Content.Server.Discord;
// https://discord.com/developers/docs/resources/channel#embed-object-embed-structure
public struct WebhookEmbed
{
+ [JsonPropertyName("title")]
+ public string Title { get; set; } = "";
+
[JsonPropertyName("description")]
public string Description { get; set; } = "";
@@ -14,6 +17,10 @@ public struct WebhookEmbed
[JsonPropertyName("footer")]
public WebhookEmbedFooter? Footer { get; set; } = null;
+
+ [JsonPropertyName("fields")]
+ public List Fields { get; set; } = default!;
+
public WebhookEmbed()
{
}
diff --git a/Content.Server/Discord/WebhookEmbedField.cs b/Content.Server/Discord/WebhookEmbedField.cs
new file mode 100644
index 00000000000..5c03c84899d
--- /dev/null
+++ b/Content.Server/Discord/WebhookEmbedField.cs
@@ -0,0 +1,20 @@
+using System.Text.Json.Serialization;
+
+namespace Content.Server.Discord;
+
+// https://discord.com/developers/docs/resources/channel#embed-object-embed-field-structure
+public struct WebhookEmbedField
+{
+ [JsonPropertyName("name")]
+ public string Name { get; set; } = "";
+
+ [JsonPropertyName("value")]
+ public string Value { get; set; } = "";
+
+ [JsonPropertyName("inline")]
+ public bool Inline { get; set; } = true;
+
+ public WebhookEmbedField()
+ {
+ }
+}
diff --git a/Content.Server/Discord/WebhookMentions.cs b/Content.Server/Discord/WebhookMentions.cs
index da945b363e0..e28726990f0 100644
--- a/Content.Server/Discord/WebhookMentions.cs
+++ b/Content.Server/Discord/WebhookMentions.cs
@@ -1,4 +1,4 @@
-using System.Text.Json.Serialization;
+using System.Text.Json.Serialization;
namespace Content.Server.Discord;
diff --git a/Content.Server/Discord/WebhookPayload.cs b/Content.Server/Discord/WebhookPayload.cs
index 6300f86ad57..fdf5f48444a 100644
--- a/Content.Server/Discord/WebhookPayload.cs
+++ b/Content.Server/Discord/WebhookPayload.cs
@@ -1,4 +1,4 @@
-using System.Text.Json.Serialization;
+using System.Text.Json.Serialization;
namespace Content.Server.Discord;
@@ -9,13 +9,13 @@ public struct WebhookPayload
/// The message to send in the webhook. Maximum of 2000 characters.
///
[JsonPropertyName("content")]
- public string Content { get; set; } = "";
+ public string? Content { get; set; }
[JsonPropertyName("username")]
public string? Username { get; set; }
[JsonPropertyName("avatar_url")]
- public string? AvatarUrl { get; set; } = "";
+ public string? AvatarUrl { get; set; }
[JsonPropertyName("embeds")]
public List? Embeds { get; set; } = null;
diff --git a/Content.Server/Explosion/Components/ClusterGrenadeComponent.cs b/Content.Server/Explosion/Components/ClusterGrenadeComponent.cs
index e2e3ca27333..fe1b8caede7 100644
--- a/Content.Server/Explosion/Components/ClusterGrenadeComponent.cs
+++ b/Content.Server/Explosion/Components/ClusterGrenadeComponent.cs
@@ -1,7 +1,6 @@
using Content.Server.Explosion.EntitySystems;
using Robust.Shared.Containers;
using Robust.Shared.Prototypes;
-using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype;
namespace Content.Server.Explosion.Components
{
@@ -13,8 +12,8 @@ public sealed partial class ClusterGrenadeComponent : Component
///
/// What we fill our prototype with if we want to pre-spawn with grenades.
///
- [DataField("fillPrototype", customTypeSerializer:typeof(PrototypeIdSerializer))]
- public string? FillPrototype;
+ [DataField("fillPrototype")]
+ public EntProtoId? FillPrototype;
///
/// If we have a pre-fill how many more can we spawn.
@@ -28,20 +27,91 @@ public sealed partial class ClusterGrenadeComponent : Component
public int MaxGrenades = 3;
///
- /// How long until our grenades are shot out and armed.
+ /// Maximum delay in seconds between individual grenade triggers
///
- [ViewVariables(VVAccess.ReadWrite)] [DataField("delay")]
- public float Delay = 1;
+ [ViewVariables(VVAccess.ReadWrite)]
+ [DataField("grenadeTriggerIntervalMax")]
+ public float GrenadeTriggerIntervalMax = 0f;
///
- /// Max distance grenades can be thrown.
+ /// Minimum delay in seconds between individual grenade triggers
///
- [ViewVariables(VVAccess.ReadWrite)] [DataField("distance")]
- public float ThrowDistance = 50;
+ [ViewVariables(VVAccess.ReadWrite)]
+ [DataField("grenadeTriggerIntervalMin")]
+ public float GrenadeTriggerIntervalMin = 0f;
+
+ ///
+ /// Minimum delay in seconds before any grenades start to be triggered.
+ ///
+ [ViewVariables(VVAccess.ReadWrite)]
+ [DataField("baseTriggerDelay")]
+ public float BaseTriggerDelay = 1.0f;
+
+ ///
+ /// Decides if grenades trigger after getting launched
+ ///
+ [DataField("triggerGrenades")]
+ public bool TriggerGrenades = true;
+
+ ///
+ /// Does the cluster grenade shoot or throw
+ ///
+ [ViewVariables(VVAccess.ReadWrite)]
+ [DataField("grenadeType")]
+ public Enum GrenadeType = Components.GrenadeType.Throw;
+
+ ///
+ /// The speed at which grenades get thrown
+ ///
+ [ViewVariables(VVAccess.ReadWrite)]
+ [DataField("velocity")]
+ public float Velocity = 5;
+
+ ///
+ /// Should the spread be random
+ ///
+ [ViewVariables(VVAccess.ReadWrite)]
+ [DataField("randomSpread")]
+ public bool RandomSpread = false;
+
+ ///
+ /// Should the angle be random
+ ///
+ [ViewVariables(VVAccess.ReadWrite)]
+ [DataField("randomAngle")]
+ public bool RandomAngle = false;
+
+ ///
+ /// Static distance grenades will be thrown to.
+ ///
+ [ViewVariables(VVAccess.ReadWrite)]
+ [DataField("distance")]
+ public float Distance = 1f;
+
+ ///
+ /// Max distance grenades should randomly be thrown to.
+ ///
+ [ViewVariables(VVAccess.ReadWrite)]
+ [DataField("maxSpreadDistance")]
+ public float MaxSpreadDistance = 2.5f;
+
+ ///
+ /// Minimal distance grenades should randomly be thrown to.
+ ///
+ [ViewVariables(VVAccess.ReadWrite)]
+ [DataField("minSpreadDistance")]
+ public float MinSpreadDistance = 0f;
///
/// This is the end.
///
public bool CountDown;
}
+
+ public enum GrenadeType
+ {
+ Throw,
+ Shoot
+ }
+
}
diff --git a/Content.Server/Explosion/EntitySystems/ClusterGrenadeSystem.cs b/Content.Server/Explosion/EntitySystems/ClusterGrenadeSystem.cs
index 9467966cb6c..2674a8d61bc 100644
--- a/Content.Server/Explosion/EntitySystems/ClusterGrenadeSystem.cs
+++ b/Content.Server/Explosion/EntitySystems/ClusterGrenadeSystem.cs
@@ -6,6 +6,10 @@
using Content.Shared.Throwing;
using Robust.Shared.Containers;
using Robust.Shared.Random;
+using Content.Server.Weapons.Ranged.Systems;
+using System.Numerics;
+using Robust.Server.Containers;
+using Robust.Server.GameObjects;
namespace Content.Server.Explosion.EntitySystems;
@@ -13,9 +17,11 @@ public sealed class ClusterGrenadeSystem : EntitySystem
{
[Dependency] private readonly IRobustRandom _random = default!;
[Dependency] private readonly SharedContainerSystem _container = default!;
- [Dependency] private readonly TriggerSystem _trigger = default!;
[Dependency] private readonly ThrowingSystem _throwingSystem = default!;
[Dependency] private readonly SharedAppearanceSystem _appearance = default!;
+ [Dependency] private readonly GunSystem _gun = default!;
+ [Dependency] private readonly TransformSystem _transformSystem = default!;
+ [Dependency] private readonly ContainerSystem _containerSystem = default!;
public override void Initialize()
{
@@ -23,12 +29,12 @@ public override void Initialize()
SubscribeLocalEvent(OnClugInit);
SubscribeLocalEvent(OnClugStartup);
SubscribeLocalEvent(OnClugUsing);
- SubscribeLocalEvent(OnClugUse);
+ SubscribeLocalEvent(OnClugTrigger);
}
private void OnClugInit(EntityUid uid, ClusterGrenadeComponent component, ComponentInit args)
{
- component.GrenadesContainer = _container.EnsureContainer(uid, "cluster-flash");
+ component.GrenadesContainer = _container.EnsureContainer(uid, "cluster-payload");
}
private void OnClugStartup(Entity clug, ref ComponentStartup args)
@@ -53,64 +59,97 @@ private void OnClugUsing(Entity clug, ref InteractUsing
!HasComp(args.Used))
return;
- component.GrenadesContainer.Insert(args.Used);
+ _containerSystem.Insert(args.Used, component.GrenadesContainer);
UpdateAppearance(clug);
args.Handled = true;
}
- private void OnClugUse(EntityUid uid, ClusterGrenadeComponent component, UseInHandEvent args)
+ private void OnClugTrigger(Entity clug, ref TriggerEvent args)
{
- if (component.CountDown || (component.GrenadesContainer.ContainedEntities.Count + component.UnspawnedCount) <= 0)
- return;
+ var component = clug.Comp;
+ component.CountDown = true;
+ args.Handled = true;
+ }
+
+ public override void Update(float frameTime)
+ {
+ base.Update(frameTime);
+ var query = EntityQueryEnumerator();
- // TODO: Should be an Update loop
- uid.SpawnTimer((int) (component.Delay * 1000), () =>
+ while (query.MoveNext(out var uid, out var clug))
{
- if (Deleted(uid))
- return;
-
- component.CountDown = true;
- var delay = 20;
- var grenadesInserted = component.GrenadesContainer.ContainedEntities.Count + component.UnspawnedCount;
- var thrownCount = 0;
- var segmentAngle = 360 / grenadesInserted;
- while (TryGetGrenade((uid, component), out var grenade))
+ if (clug.CountDown && clug.UnspawnedCount > 0)
{
- var angleMin = segmentAngle * thrownCount;
- var angleMax = segmentAngle * (thrownCount + 1);
- var angle = Angle.FromDegrees(_random.Next(angleMin, angleMax));
- // var distance = random.NextFloat() * _throwDistance;
+ var grenadesInserted = clug.GrenadesContainer.ContainedEntities.Count + clug.UnspawnedCount;
+ var thrownCount = 0;
+ var segmentAngle = 360 / grenadesInserted;
+ var grenadeDelay = 0f;
- delay += _random.Next(550, 900);
- thrownCount++;
+ while (TryGetGrenade(uid, clug, out var grenade))
+ {
+ // var distance = random.NextFloat() * _throwDistance;
+ var angleMin = segmentAngle * thrownCount;
+ var angleMax = segmentAngle * (thrownCount + 1);
+ var angle = Angle.FromDegrees(_random.Next(angleMin, angleMax));
+ if (clug.RandomAngle)
+ angle = _random.NextAngle();
+ thrownCount++;
+
+ switch (clug.GrenadeType)
+ {
+ case GrenadeType.Shoot:
+ ShootProjectile(grenade, angle, clug, uid);
+ break;
+ case GrenadeType.Throw:
+ ThrowGrenade(grenade, angle, clug);
+ break;
+ }
+
+ // give an active timer trigger to the contained grenades when they get launched
+ if (clug.TriggerGrenades)
+ {
+ grenadeDelay += _random.NextFloat(clug.GrenadeTriggerIntervalMin, clug.GrenadeTriggerIntervalMax);
+ var grenadeTimer = EnsureComp(grenade);
+ grenadeTimer.TimeRemaining = (clug.BaseTriggerDelay + grenadeDelay);
+ var ev = new ActiveTimerTriggerEvent(grenade, uid);
+ RaiseLocalEvent(uid, ref ev);
+ }
+ }
+ // delete the empty shell of the clusterbomb
+ Del(uid);
+ }
+ }
+ }
- // TODO: Suss out throw strength
- _throwingSystem.TryThrow(grenade, angle.ToVec().Normalized() * component.ThrowDistance);
+ private void ShootProjectile(EntityUid grenade, Angle angle, ClusterGrenadeComponent clug, EntityUid clugUid)
+ {
+ var direction = angle.ToVec().Normalized();
- grenade.SpawnTimer(delay, () =>
- {
- if ((!EntityManager.EntityExists(grenade) ? EntityLifeStage.Deleted : MetaData(grenade).EntityLifeStage) >= EntityLifeStage.Deleted)
- return;
+ if (clug.RandomSpread)
+ direction = _random.NextVector2().Normalized();
- _trigger.Trigger(grenade, args.User);
- });
- }
+ _gun.ShootProjectile(grenade, direction, Vector2.One.Normalized(), clugUid);
- EntityManager.DeleteEntity(uid);
- });
+ }
- args.Handled = true;
+ private void ThrowGrenade(EntityUid grenade, Angle angle, ClusterGrenadeComponent clug)
+ {
+ var direction = angle.ToVec().Normalized() * clug.Distance;
+
+ if (clug.RandomSpread)
+ direction = angle.ToVec().Normalized() * _random.NextFloat(clug.MinSpreadDistance, clug.MaxSpreadDistance);
+
+ _throwingSystem.TryThrow(grenade, direction, clug.Velocity);
}
- private bool TryGetGrenade(Entity ent, out EntityUid grenade)
+ private bool TryGetGrenade(EntityUid clugUid, ClusterGrenadeComponent component, out EntityUid grenade)
{
grenade = default;
- var component = ent.Comp;
if (component.UnspawnedCount > 0)
{
component.UnspawnedCount--;
- grenade = EntityManager.SpawnEntity(component.FillPrototype, Transform(ent).MapPosition);
+ grenade = Spawn(component.FillPrototype, _transformSystem.GetMapCoordinates(clugUid));
return true;
}
@@ -128,12 +167,12 @@ private bool TryGetGrenade(Entity ent, out EntityUid gr
return false;
}
- private void UpdateAppearance(Entity ent)
+ private void UpdateAppearance(Entity clug)
{
- var component = ent.Comp;
- if (!TryComp(ent, out var appearance))
+ var component = clug.Comp;
+ if (!TryComp(clug, out var appearance))
return;
- _appearance.SetData(ent, ClusterGrenadeVisuals.GrenadesCounter, component.GrenadesContainer.ContainedEntities.Count + component.UnspawnedCount, appearance);
+ _appearance.SetData(clug, ClusterGrenadeVisuals.GrenadesCounter, component.GrenadesContainer.ContainedEntities.Count + component.UnspawnedCount, appearance);
}
}
diff --git a/Content.Server/Explosion/EntitySystems/ExplosionSystem.cs b/Content.Server/Explosion/EntitySystems/ExplosionSystem.cs
index 9df735ff6ac..d9bfbece239 100644
--- a/Content.Server/Explosion/EntitySystems/ExplosionSystem.cs
+++ b/Content.Server/Explosion/EntitySystems/ExplosionSystem.cs
@@ -63,7 +63,7 @@ public sealed partial class ExplosionSystem : EntitySystem
///
public const ushort DefaultTileSize = 1;
- private AudioParams _audioParams = AudioParams.Default.WithVolume(-3f);
+ public const int MaxExplosionAudioRange = 30;
///
/// The "default" explosion prototype.
@@ -328,15 +328,33 @@ public void QueueExplosion(MapCoordinates epicenter,
var visualEnt = CreateExplosionVisualEntity(epicenter, type.ID, spaceMatrix, spaceData, gridData.Values, iterationIntensity);
// camera shake
- CameraShake(iterationIntensity.Count * 2.5f, epicenter, totalIntensity);
+ CameraShake(iterationIntensity.Count * 4f, epicenter, totalIntensity);
//For whatever bloody reason, sound system requires ENTITY coordinates.
var mapEntityCoords = EntityCoordinates.FromMap(EntityManager, _mapManager.GetMapEntityId(epicenter.MapId), epicenter);
// play sound.
- var audioRange = iterationIntensity.Count * 5;
+ // for the normal audio, we want everyone in pvs range
+ // + if the bomb is big enough, people outside of it too
+ // this is capped to 30 because otherwise really huge bombs
+ // will attempt to play regular audio for people who can't hear it anyway because the epicenter is so far away
+ var audioRange = Math.Min(iterationIntensity.Count * 2, MaxExplosionAudioRange);
var filter = Filter.Pvs(epicenter).AddInRange(epicenter, audioRange);
- _audio.PlayStatic(type.Sound.GetSound(), filter, mapEntityCoords, true, _audioParams);
+ var sound = iterationIntensity.Count < type.SmallSoundIterationThreshold
+ ? type.SmallSound
+ : type.Sound;
+
+ _audio.PlayStatic(sound, filter, mapEntityCoords, true, sound.Params);
+
+ // play far sound
+ // far sound should play for anyone who wasn't in range of any of the effects of the bomb
+ var farAudioRange = iterationIntensity.Count * 5;
+ var farFilter = Filter.Empty().AddInRange(epicenter, farAudioRange).RemoveInRange(epicenter, audioRange);
+ var farSound = iterationIntensity.Count < type.SmallSoundIterationThreshold
+ ? type.SmallSoundFar
+ : type.SoundFar;
+
+ _audio.PlayGlobal(farSound, farFilter, true, farSound.Params);
return new Explosion(this,
type,
diff --git a/Content.Server/Forensics/Components/ForensicScannerComponent.cs b/Content.Server/Forensics/Components/ForensicScannerComponent.cs
index 16eb852590e..ad262138482 100644
--- a/Content.Server/Forensics/Components/ForensicScannerComponent.cs
+++ b/Content.Server/Forensics/Components/ForensicScannerComponent.cs
@@ -13,21 +13,27 @@ public sealed partial class ForensicScannerComponent : Component
///
/// A list of fingerprint GUIDs that the forensic scanner found from the on an entity.
///
- [ViewVariables(VVAccess.ReadOnly)]
+ [ViewVariables(VVAccess.ReadOnly), DataField("fingerprints")]
public List Fingerprints = new();
///
/// A list of glove fibers that the forensic scanner found from the on an entity.
///
- [ViewVariables(VVAccess.ReadOnly)]
+ [ViewVariables(VVAccess.ReadOnly), DataField("fibers")]
public List Fibers = new();
///
/// DNA that the forensic scanner found from the on an entity.
///
- [ViewVariables(VVAccess.ReadOnly)]
+ [ViewVariables(VVAccess.ReadOnly), DataField("dnas")]
public List DNAs = new();
+ ///
+ /// Residue that the forensic scanner found from the on an entity.
+ ///
+ [ViewVariables(VVAccess.ReadOnly), DataField("residues")]
+ public List Residues = new();
+
///
/// What is the name of the entity that was scanned last?
///
diff --git a/Content.Server/Forensics/Components/ForensicsComponent.cs b/Content.Server/Forensics/Components/ForensicsComponent.cs
index 5a73a6a3e38..27eccf3334a 100644
--- a/Content.Server/Forensics/Components/ForensicsComponent.cs
+++ b/Content.Server/Forensics/Components/ForensicsComponent.cs
@@ -11,5 +11,27 @@ public sealed partial class ForensicsComponent : Component
[DataField("dnas")]
public HashSet DNAs = new();
+
+ [DataField("residues")]
+ public HashSet Residues = new();
+
+ ///
+ /// How long it takes to wipe the prints/blood/etc. off of this entity
+ ///
+ [DataField("cleanDelay")]
+ public float CleanDelay = 12.0f;
+
+ ///
+ /// How close you must be to wipe the prints/blood/etc. off of this entity
+ ///
+ [DataField("cleanDistance")]
+ public float CleanDistance = 1.5f;
+
+ ///
+ /// Can the DNA be cleaned off of this entity?
+ /// e.g. you can clean the DNA off of a knife, but not a puddle
+ ///
+ [DataField("canDnaBeCleaned")]
+ public bool CanDnaBeCleaned = true;
}
}
diff --git a/Content.Server/Forensics/Components/ResidueComponent.cs b/Content.Server/Forensics/Components/ResidueComponent.cs
new file mode 100644
index 00000000000..10895e7c2b0
--- /dev/null
+++ b/Content.Server/Forensics/Components/ResidueComponent.cs
@@ -0,0 +1,15 @@
+namespace Content.Server.Forensics;
+
+///
+/// This controls residues left on items
+/// which the forensics system uses.
+///
+[RegisterComponent]
+public sealed partial class ResidueComponent : Component
+{
+ [DataField]
+ public LocId ResidueAdjective = "residue-unknown";
+
+ [DataField]
+ public string? ResidueColor;
+}
diff --git a/Content.Server/Forensics/Systems/ForensicScannerSystem.cs b/Content.Server/Forensics/Systems/ForensicScannerSystem.cs
index a073574e1d1..6710864c729 100644
--- a/Content.Server/Forensics/Systems/ForensicScannerSystem.cs
+++ b/Content.Server/Forensics/Systems/ForensicScannerSystem.cs
@@ -51,6 +51,7 @@ private void UpdateUserInterface(EntityUid uid, ForensicScannerComponent compone
component.Fingerprints,
component.Fibers,
component.DNAs,
+ component.Residues,
component.LastScannedName,
component.PrintCooldown,
component.PrintReadyAt);
@@ -74,6 +75,7 @@ private void OnDoAfter(EntityUid uid, ForensicScannerComponent component, DoAfte
scanner.Fingerprints = new();
scanner.Fibers = new();
scanner.DNAs = new();
+ scanner.Residues = new();
}
else
@@ -81,6 +83,7 @@ private void OnDoAfter(EntityUid uid, ForensicScannerComponent component, DoAfte
scanner.Fingerprints = forensics.Fingerprints.ToList();
scanner.Fibers = forensics.Fibers.ToList();
scanner.DNAs = forensics.DNAs.ToList();
+ scanner.Residues = forensics.Residues.ToList();
}
scanner.LastScannedName = MetaData(args.Args.Target.Value).EntityName;
@@ -222,6 +225,12 @@ private void OnPrint(EntityUid uid, ForensicScannerComponent component, Forensic
{
text.AppendLine(dna);
}
+ text.AppendLine();
+ text.AppendLine(Loc.GetString("forensic-scanner-interface-residues"));
+ foreach (var residue in component.Residues)
+ {
+ text.AppendLine(residue);
+ }
_paperSystem.SetContent(printed, text.ToString());
_audioSystem.PlayPvs(component.SoundPrint, uid,
diff --git a/Content.Server/Forensics/Systems/ForensicsSystem.cs b/Content.Server/Forensics/Systems/ForensicsSystem.cs
index d4281c8b8d5..3c6d1d30afd 100644
--- a/Content.Server/Forensics/Systems/ForensicsSystem.cs
+++ b/Content.Server/Forensics/Systems/ForensicsSystem.cs
@@ -1,5 +1,13 @@
+using Content.Server.Body.Components;
+using Content.Server.Chemistry.EntitySystems;
+using Content.Server.DoAfter;
+using Content.Shared.DoAfter;
+using Content.Shared.Forensics;
+using Content.Shared.Interaction;
using Content.Shared.Interaction.Events;
using Content.Shared.Inventory;
+using Content.Shared.Tag;
+using Content.Shared.Weapons.Melee.Events;
using Robust.Shared.Random;
namespace Content.Server.Forensics
@@ -8,11 +16,19 @@ public sealed class ForensicsSystem : EntitySystem
{
[Dependency] private readonly IRobustRandom _random = default!;
[Dependency] private readonly InventorySystem _inventory = default!;
+ [Dependency] private readonly TagSystem _tagSystem = default!;
+ [Dependency] private readonly DoAfterSystem _doAfterSystem = default!;
public override void Initialize()
{
SubscribeLocalEvent(OnInteract);
SubscribeLocalEvent(OnFingerprintInit);
SubscribeLocalEvent(OnDNAInit);
+
+ SubscribeLocalEvent(OnBeingGibbed);
+ SubscribeLocalEvent(OnMeleeHit);
+ SubscribeLocalEvent(OnAfterInteract);
+ SubscribeLocalEvent(OnCleanForensicsDoAfter);
+ SubscribeLocalEvent(OnTransferDnaEvent);
}
private void OnInteract(EntityUid uid, FingerprintComponent component, ContactInteractionEvent args)
@@ -30,6 +46,79 @@ private void OnDNAInit(EntityUid uid, DnaComponent component, MapInitEvent args)
component.DNA = GenerateDNA();
}
+ private void OnBeingGibbed(EntityUid uid, DnaComponent component, BeingGibbedEvent args)
+ {
+ foreach(EntityUid part in args.GibbedParts)
+ {
+ var partComp = EnsureComp(part);
+ partComp.DNAs.Add(component.DNA);
+ partComp.CanDnaBeCleaned = false;
+ }
+ }
+
+ private void OnMeleeHit(EntityUid uid, ForensicsComponent component, MeleeHitEvent args)
+ {
+ if((args.BaseDamage.DamageDict.TryGetValue("Blunt", out var bluntDamage) && bluntDamage.Value > 0) ||
+ (args.BaseDamage.DamageDict.TryGetValue("Slash", out var slashDamage) && slashDamage.Value > 0) ||
+ (args.BaseDamage.DamageDict.TryGetValue("Piercing", out var pierceDamage) && pierceDamage.Value > 0))
+ {
+ foreach(EntityUid hitEntity in args.HitEntities)
+ {
+ if(TryComp(hitEntity, out var hitEntityComp))
+ component.DNAs.Add(hitEntityComp.DNA);
+ }
+ }
+ }
+
+ private void OnAfterInteract(EntityUid uid, ForensicsComponent component, AfterInteractEvent args)
+ {
+ if (args.Handled)
+ return;
+
+ if (!_tagSystem.HasTag(args.Used, "CleansForensics"))
+ return;
+
+ if((component.DNAs.Count > 0 && component.CanDnaBeCleaned) || (component.Fingerprints.Count + component.Fibers.Count > 0))
+ {
+ var doAfterArgs = new DoAfterArgs(EntityManager, args.User, component.CleanDelay, new CleanForensicsDoAfterEvent(), uid, target: args.Target, used: args.Used)
+ {
+ BreakOnHandChange = true,
+ NeedHand = true,
+ BreakOnDamage = true,
+ BreakOnTargetMove = true,
+ MovementThreshold = 0.01f,
+ DistanceThreshold = component.CleanDistance,
+ };
+
+
+ _doAfterSystem.TryStartDoAfter(doAfterArgs);
+
+ args.Handled = true;
+ }
+ }
+
+ private void OnCleanForensicsDoAfter(EntityUid uid, ForensicsComponent component, CleanForensicsDoAfterEvent args)
+ {
+ if (args.Handled || args.Cancelled || args.Args.Target == null)
+ return;
+
+ if (!TryComp(args.Target, out var targetComp))
+ return;
+
+ targetComp.Fibers = new();
+ targetComp.Fingerprints = new();
+
+ if (targetComp.CanDnaBeCleaned)
+ targetComp.DNAs = new();
+
+ // leave behind evidence it was cleaned
+ if (TryComp(args.Used, out var fiber))
+ targetComp.Fibers.Add(string.IsNullOrEmpty(fiber.FiberColor) ? Loc.GetString("forensic-fibers", ("material", fiber.FiberMaterial)) : Loc.GetString("forensic-fibers-colored", ("color", fiber.FiberColor), ("material", fiber.FiberMaterial)));
+
+ if (TryComp(args.Used, out var residue))
+ targetComp.Residues.Add(string.IsNullOrEmpty(residue.ResidueColor) ? Loc.GetString("forensic-residue", ("adjective", residue.ResidueAdjective)) : Loc.GetString("forensic-residue-colored", ("color", residue.ResidueColor), ("adjective", residue.ResidueAdjective)));
+ }
+
public string GenerateFingerprint()
{
var fingerprint = new byte[16];
@@ -64,5 +153,31 @@ private void ApplyEvidence(EntityUid user, EntityUid target)
if (TryComp(user, out var fingerprint))
component.Fingerprints.Add(fingerprint.Fingerprint ?? "");
}
+
+ private void OnTransferDnaEvent(EntityUid uid, DnaComponent component, ref TransferDnaEvent args)
+ {
+ var recipientComp = EnsureComp(args.Recipient);
+ recipientComp.DNAs.Add(component.DNA);
+ recipientComp.CanDnaBeCleaned = args.CanDnaBeCleaned;
+ }
+
+ #region Public API
+
+ ///
+ /// Transfer DNA from one entity onto the forensics of another
+ ///
+ /// The entity receiving the DNA
+ /// The entity applying its DNA
+ /// If this DNA be cleaned off of the recipient. e.g. cleaning a knife vs cleaning a puddle of blood
+ public void TransferDna(EntityUid recipient, EntityUid donor, bool canDnaBeCleaned = true)
+ {
+ if (TryComp(donor, out var donorComp))
+ {
+ EnsureComp(recipient, out var recipientComp);
+ recipientComp.DNAs.Add(donorComp.DNA);
+ }
+ }
+
+ #endregion
}
}
diff --git a/Content.Server/Medical/VomitSystem.cs b/Content.Server/Medical/VomitSystem.cs
index 974c1981b56..fedb6d2357b 100644
--- a/Content.Server/Medical/VomitSystem.cs
+++ b/Content.Server/Medical/VomitSystem.cs
@@ -28,6 +28,7 @@ public sealed class VomitSystem : EntitySystem
[Dependency] private readonly SolutionContainerSystem _solutionContainer = default!;
[Dependency] private readonly StunSystem _stun = default!;
[Dependency] private readonly ThirstSystem _thirst = default!;
+ [Dependency] private readonly ForensicsSystem _forensics = default!;
///
/// Make an entity vomit, if they have a stomach.
@@ -85,9 +86,7 @@ public void Vomit(EntityUid uid, float thirstAdded = -40f, float hungerAdded = -
if (_puddle.TrySpillAt(uid, solution, out var puddle, false))
{
- var forensics = EnsureComp(puddle);
- if (TryComp(uid, out var dna))
- forensics.DNAs.Add(dna.DNA);
+ _forensics.TransferDna(puddle, uid, false);
}
// Force sound to play as spill doesn't work if solution is empty.
diff --git a/Content.Server/Nutrition/EntitySystems/DrinkSystem.cs b/Content.Server/Nutrition/EntitySystems/DrinkSystem.cs
index 1829dc32c8f..e45c904591e 100644
--- a/Content.Server/Nutrition/EntitySystems/DrinkSystem.cs
+++ b/Content.Server/Nutrition/EntitySystems/DrinkSystem.cs
@@ -54,6 +54,7 @@ public sealed class DrinkSystem : EntitySystem
[Dependency] private readonly SharedInteractionSystem _interaction = default!;
[Dependency] private readonly SolutionContainerSystem _solutionContainer = default!;
[Dependency] private readonly StomachSystem _stomach = default!;
+ [Dependency] private readonly ForensicsSystem _forensics = default!;
public override void Initialize()
{
@@ -399,9 +400,7 @@ private void OnDoAfter(EntityUid uid, DrinkComponent component, ConsumeDoAfterEv
//TODO: Grab the stomach UIDs somehow without using Owner
_stomach.TryTransferSolution(firstStomach.Value.Comp.Owner, drained, firstStomach.Value.Comp);
- var comp = EnsureComp(uid);
- if (TryComp(args.Target, out var dna))
- comp.DNAs.Add(dna.DNA);
+ _forensics.TransferDna(uid, args.Target.Value);
if (!forceDrink && solution.Volume > 0)
args.Repeat = true;
diff --git a/Content.Server/Nutrition/EntitySystems/IngestionBlockerSystem.cs b/Content.Server/Nutrition/EntitySystems/IngestionBlockerSystem.cs
index 5c34df4b383..ede1c21680c 100644
--- a/Content.Server/Nutrition/EntitySystems/IngestionBlockerSystem.cs
+++ b/Content.Server/Nutrition/EntitySystems/IngestionBlockerSystem.cs
@@ -1,4 +1,5 @@
-using Content.Shared.Clothing;
+using Content.Server.Nutrition.Components;
+using Content.Shared.Clothing;
namespace Content.Server.Nutrition.EntitySystems;
@@ -8,10 +9,10 @@ public override void Initialize()
{
base.Initialize();
- SubscribeLocalEvent(OnBlockerMaskToggled);
+ SubscribeLocalEvent(OnBlockerMaskToggled);
}
- private void OnBlockerMaskToggled(Entity ent, ref ItemMaskToggledEvent args)
+ private void OnBlockerMaskToggled(Entity ent, ref ItemMaskToggledEvent args)
{
ent.Comp.Enabled = !args.IsToggled;
}
diff --git a/Content.Server/Nutrition/EntitySystems/SmokingSystem.cs b/Content.Server/Nutrition/EntitySystems/SmokingSystem.cs
index 276393b728b..63a558238b0 100644
--- a/Content.Server/Nutrition/EntitySystems/SmokingSystem.cs
+++ b/Content.Server/Nutrition/EntitySystems/SmokingSystem.cs
@@ -15,6 +15,8 @@
using Robust.Server.GameObjects;
using Robust.Shared.Containers;
using System.Linq;
+using Content.Shared.Inventory.Events;
+using Content.Server.Forensics;
namespace Content.Server.Nutrition.EntitySystems
{
@@ -30,6 +32,7 @@ public sealed partial class SmokingSystem : EntitySystem
[Dependency] private readonly SharedItemSystem _items = default!;
[Dependency] private readonly SharedContainerSystem _container = default!;
[Dependency] private readonly SharedAppearanceSystem _appearance = default!;
+ [Dependency] private readonly ForensicsSystem _forensics = default!;
private const float UpdateTimer = 3f;
@@ -44,6 +47,7 @@ public override void Initialize()
{
SubscribeLocalEvent(OnSmokableIsHotEvent);
SubscribeLocalEvent(OnSmokableShutdownEvent);
+ SubscribeLocalEvent(OnSmokeableEquipEvent);
InitializeCigars();
InitializePipes();
@@ -85,6 +89,14 @@ private void OnSmokableShutdownEvent(EntityUid uid, SmokableComponent component,
_active.Remove(uid);
}
+ private void OnSmokeableEquipEvent(EntityUid uid, SmokableComponent component, GotEquippedEvent args)
+ {
+ if (args.Slot == "mask")
+ {
+ _forensics.TransferDna(uid, args.Equipee, false);
+ }
+ }
+
public override void Update(float frameTime)
{
_timer += frameTime;
diff --git a/Content.Server/Power/Generation/Teg/TegSystem.cs b/Content.Server/Power/Generation/Teg/TegSystem.cs
index 2be41f7c923..1fb844ac5b1 100644
--- a/Content.Server/Power/Generation/Teg/TegSystem.cs
+++ b/Content.Server/Power/Generation/Teg/TegSystem.cs
@@ -120,8 +120,8 @@ private void GeneratorUpdate(EntityUid uid, TegGeneratorComponent component, Atm
var (airA, δpA) = GetCirculatorAirTransfer(inletA.Air, outletA.Air);
var (airB, δpB) = GetCirculatorAirTransfer(inletB.Air, outletB.Air);
- var cA = _atmosphere.GetHeatCapacity(airA);
- var cB = _atmosphere.GetHeatCapacity(airB);
+ var cA = _atmosphere.GetHeatCapacity(airA, true);
+ var cB = _atmosphere.GetHeatCapacity(airB, true);
// Shift ramp position based on demand and generation from previous tick.
var curRamp = component.RampPosition;
diff --git a/Content.Server/Projectiles/ProjectileSystem.cs b/Content.Server/Projectiles/ProjectileSystem.cs
index b8a6b8c5b26..1d256071d62 100644
--- a/Content.Server/Projectiles/ProjectileSystem.cs
+++ b/Content.Server/Projectiles/ProjectileSystem.cs
@@ -7,6 +7,7 @@
using Content.Shared.Projectiles;
using Robust.Server.GameObjects;
using Robust.Shared.Physics.Events;
+using Content.Shared.Mobs.Components;
using Robust.Shared.Player;
namespace Content.Server.Projectiles;
@@ -70,7 +71,18 @@ private void OnStartCollide(EntityUid uid, ProjectileComponent component, ref St
component.DamagedEntity = true;
- if (component.DeleteOnCollide)
+ if (component.DeleteOnCollide )
+ {
+ QueueDel(uid);
+ }
+ if (component.CanPenetrate)
+ {
+ component.DamagedEntity = false;
+
+ if (!TryComp(target, out var mobState))
+ QueueDel(uid);
+ }
+ else if (component.DeleteOnCollide && !component.CanPenetrate)
{
QueueDel(uid);
}
diff --git a/Content.Server/Store/Conditions/BuyBeforeCondition.cs b/Content.Server/Store/Conditions/BuyBeforeCondition.cs
new file mode 100644
index 00000000000..132f3534391
--- /dev/null
+++ b/Content.Server/Store/Conditions/BuyBeforeCondition.cs
@@ -0,0 +1,56 @@
+using Content.Server.Store.Components;
+using Content.Server.Store.Systems;
+using Content.Shared.Store;
+using Robust.Shared.Prototypes;
+
+namespace Content.Server.Store.Conditions;
+
+public sealed partial class BuyBeforeCondition : ListingCondition
+{
+ ///
+ /// Required listing(s) needed to purchase before this listing is available
+ ///
+ [DataField(required: true)]
+ public HashSet> Whitelist;
+
+ ///
+ /// Listing(s) that if bought, block this purchase, if any.
+ ///
+ public HashSet>? Blacklist;
+
+ public override bool Condition(ListingConditionArgs args)
+ {
+ if (!args.EntityManager.TryGetComponent(args.StoreEntity, out var storeComp))
+ return false;
+
+ var allListings = storeComp.Listings;
+
+ var purchasesFound = false;
+
+ if (Blacklist != null)
+ {
+ foreach (var blacklistListing in Blacklist)
+ {
+ foreach (var listing in allListings)
+ {
+ if (listing.ID == blacklistListing.Id && listing.PurchaseAmount > 0)
+ return false;
+ }
+ }
+ }
+
+ foreach (var requiredListing in Whitelist)
+ {
+ foreach (var listing in allListings)
+ {
+ if (listing.ID == requiredListing.Id)
+ {
+ purchasesFound = listing.PurchaseAmount > 0;
+ break;
+ }
+ }
+ }
+
+ return purchasesFound;
+ }
+}
diff --git a/Content.Server/Temperature/Systems/TemperatureSystem.cs b/Content.Server/Temperature/Systems/TemperatureSystem.cs
index 5de609d24ba..2ab9ce74c66 100644
--- a/Content.Server/Temperature/Systems/TemperatureSystem.cs
+++ b/Content.Server/Temperature/Systems/TemperatureSystem.cs
@@ -149,13 +149,11 @@ private void OnAtmosExposedUpdate(EntityUid uid, TemperatureComponent temperatur
if (transform.MapUid == null)
return;
- var position = _transform.GetGridTilePositionOrDefault((uid, transform));
var temperatureDelta = args.GasMixture.Temperature - temperature.CurrentTemperature;
- var tileHeatCapacity =
- _atmosphere.GetTileHeatCapacity(transform.GridUid, transform.MapUid.Value, position);
+ var airHeatCapacity = _atmosphere.GetHeatCapacity(args.GasMixture, false);
var heatCapacity = GetHeatCapacity(uid, temperature);
- var heat = temperatureDelta * (tileHeatCapacity * heatCapacity /
- (tileHeatCapacity + heatCapacity));
+ var heat = temperatureDelta * (airHeatCapacity * heatCapacity /
+ (airHeatCapacity + heatCapacity));
ChangeHeat(uid, heat * temperature.AtmosTemperatureTransferEfficiency, temperature: temperature);
}
diff --git a/Content.Server/VoiceMask/VoiceMaskSystem.cs b/Content.Server/VoiceMask/VoiceMaskSystem.cs
index 95988a26de3..7e7b802e798 100644
--- a/Content.Server/VoiceMask/VoiceMaskSystem.cs
+++ b/Content.Server/VoiceMask/VoiceMaskSystem.cs
@@ -22,7 +22,7 @@ public override void Initialize()
{
SubscribeLocalEvent(OnSpeakerNameTransform);
SubscribeLocalEvent(OnChangeName);
- SubscribeLocalEvent(OnMaskToggled);
+ SubscribeLocalEvent(OnMaskToggled);
SubscribeLocalEvent(OnEquip);
SubscribeLocalEvent(OnUnequip);
SubscribeLocalEvent(OnSetName);
@@ -70,7 +70,7 @@ private void OnSpeakerNameTransform(EntityUid uid, VoiceMaskComponent component,
}
}
- private void OnMaskToggled(Entity ent, ref ItemMaskToggledEvent args)
+ private void OnMaskToggled(Entity ent, ref WearerMaskToggledEvent args)
{
ent.Comp.Enabled = !args.IsToggled;
}
diff --git a/Content.Server/Voting/Managers/VoteManager.cs b/Content.Server/Voting/Managers/VoteManager.cs
index 90089afb544..4fb022fad0e 100644
--- a/Content.Server/Voting/Managers/VoteManager.cs
+++ b/Content.Server/Voting/Managers/VoteManager.cs
@@ -373,10 +373,16 @@ private void EndVote(VoteReg v)
.First()
.Select(e => e.Data)
.ToImmutableArray();
+ // Store all votes in order for webhooks
+ var voteTally = new List();
+ foreach(var entry in v.Entries)
+ {
+ voteTally.Add(entry.Votes);
+ }
v.Finished = true;
v.Dirty = true;
- var args = new VoteFinishedEventArgs(winners.Length == 1 ? winners[0] : null, winners);
+ var args = new VoteFinishedEventArgs(winners.Length == 1 ? winners[0] : null, winners, voteTally);
v.OnFinished?.Invoke(_voteHandles[v.Id], args);
DirtyCanCallVoteAll();
}
diff --git a/Content.Server/Voting/VoteCommands.cs b/Content.Server/Voting/VoteCommands.cs
index 498c9d04941..aad0ee43d74 100644
--- a/Content.Server/Voting/VoteCommands.cs
+++ b/Content.Server/Voting/VoteCommands.cs
@@ -1,11 +1,20 @@
using System.Linq;
+using System.Net.Http;
+using System.Text.Json;
+using System.Text.Json.Nodes;
using Content.Server.Administration;
using Content.Server.Administration.Logs;
using Content.Server.Chat.Managers;
+using Content.Server.Discord;
+using Content.Server.GameTicking;
using Content.Server.Voting.Managers;
using Content.Shared.Administration;
+using Content.Shared.CCVar;
using Content.Shared.Database;
using Content.Shared.Voting;
+using Robust.Server.Player;
+using Robust.Shared;
+using Robust.Shared.Configuration;
using Robust.Shared.Console;
namespace Content.Server.Voting
@@ -61,6 +70,11 @@ public CompletionResult GetCompletion(IConsoleShell shell, string[] args)
public sealed class CreateCustomCommand : IConsoleCommand
{
[Dependency] private readonly IAdminLogManager _adminLogger = default!;
+ [Dependency] private readonly IEntitySystemManager _entitySystem = default!;
+ [Dependency] private readonly IConfigurationManager _cfg = default!;
+ [Dependency] private readonly DiscordWebhook _discord = default!;
+
+ private ISawmill _sawmill = default!;
private const int MaxArgCount = 10;
@@ -68,8 +82,15 @@ public sealed class CreateCustomCommand : IConsoleCommand
public string Description => Loc.GetString("cmd-customvote-desc");
public string Help => Loc.GetString("cmd-customvote-help");
+ // Webhook stuff
+ private string _webhookUrl = string.Empty;
+ private ulong _webhookId;
+ private WebhookIdentifier? _webhookIdentifier;
+
public void Execute(IConsoleShell shell, string argStr, string[] args)
{
+ _sawmill = Logger.GetSawmill("vote");
+
if (args.Length < 3 || args.Length > MaxArgCount)
{
shell.WriteError(Loc.GetString("shell-need-between-arguments",("lower", 3), ("upper", 10)));
@@ -91,6 +112,41 @@ public void Execute(IConsoleShell shell, string argStr, string[] args)
options.Options.Add((args[i], i));
}
+ // Set up the webhook payload
+ string _serverName = _cfg.GetCVar(CVars.GameHostName);
+ _webhookUrl = _cfg.GetCVar(CCVars.DiscordVoteWebhook);
+
+
+ var _gameTicker = _entitySystem.GetEntitySystem();
+
+ var payload = new WebhookPayload()
+ {
+ Username = Loc.GetString("custom-vote-webhook-name"),
+ Embeds = new List
+ {
+ new()
+ {
+ Title = $"{shell.Player}",
+ Color = 13438992,
+ Description = options.Title,
+ Footer = new WebhookEmbedFooter
+ {
+ Text = $"{_serverName} {_gameTicker.RoundId} {_gameTicker.RunLevel}",
+ },
+
+ Fields = new List {},
+ },
+ },
+ };
+
+ foreach (var voteOption in options.Options)
+ {
+ var NewVote = new WebhookEmbedField() { Name = voteOption.text, Value = "0"};
+ payload.Embeds[0].Fields.Add(NewVote);
+ }
+
+ WebhookMessage(payload);
+
options.SetInitiatorOrServer(shell.Player);
if (shell.Player != null)
@@ -114,6 +170,18 @@ public void Execute(IConsoleShell shell, string argStr, string[] args)
_adminLogger.Add(LogType.Vote, LogImpact.Medium, $"Custom vote {options.Title} finished: {args[(int) eventArgs.Winner]}");
chatMgr.DispatchServerAnnouncement(Loc.GetString("cmd-customvote-on-finished-win",("winner", args[(int) eventArgs.Winner])));
}
+
+ for (int i = 0; i < eventArgs.Votes.Count - 1; i++)
+ {
+ var oldName = payload.Embeds[0].Fields[i].Name;
+ var newValue = eventArgs.Votes[i].ToString();
+ var newEmbed = payload.Embeds[0];
+ newEmbed.Color = 2353993;
+ payload.Embeds[0] = newEmbed;
+ payload.Embeds[0].Fields[i] = new WebhookEmbedField() { Name = oldName, Value = newValue, Inline = true};
+ }
+
+ WebhookMessage(payload, _webhookId);
};
}
@@ -128,6 +196,38 @@ public CompletionResult GetCompletion(IConsoleShell shell, string[] args)
var n = args.Length - 1;
return CompletionResult.FromHint(Loc.GetString("cmd-customvote-arg-option-n", ("n", n)));
}
+
+ // Sends the payload's message.
+ private async void WebhookMessage(WebhookPayload payload)
+ {
+ if (string.IsNullOrEmpty(_webhookUrl))
+ return;
+
+ if (await _discord.GetWebhook(_webhookUrl) is not { } identifier)
+ return;
+
+ _webhookIdentifier = identifier.ToIdentifier();
+
+ _sawmill.Debug(JsonSerializer.Serialize(payload));
+
+ var request = await _discord.CreateMessage(_webhookIdentifier.Value, payload);
+ var content = await request.Content.ReadAsStringAsync();
+ _webhookId = ulong.Parse(JsonNode.Parse(content)?["id"]!.GetValue()!);
+ }
+
+ // Edits a pre-existing payload message, given an ID
+ private async void WebhookMessage(WebhookPayload payload, ulong id)
+ {
+ if (string.IsNullOrEmpty(_webhookUrl))
+ return;
+
+ if (await _discord.GetWebhook(_webhookUrl) is not { } identifier)
+ return;
+
+ _webhookIdentifier = identifier.ToIdentifier();
+
+ var request = await _discord.EditMessage(_webhookIdentifier.Value, id, payload);
+ }
}
diff --git a/Content.Server/Voting/VoteFinishedEventArgs.cs b/Content.Server/Voting/VoteFinishedEventArgs.cs
index 344abd4db44..2a641272b0c 100644
--- a/Content.Server/Voting/VoteFinishedEventArgs.cs
+++ b/Content.Server/Voting/VoteFinishedEventArgs.cs
@@ -15,10 +15,16 @@ public sealed class VoteFinishedEventArgs : EventArgs
///
public readonly ImmutableArray
public static readonly CVarDef ExplosionPersistence =
- CVarDef.Create("explosion.persistence", 0.3f, CVar.SERVERONLY);
+ CVarDef.Create("explosion.persistence", 1.0f, CVar.SERVERONLY);
///
/// If an explosion covers a larger area than this number, the damaging/processing will always start during
@@ -1053,14 +1059,14 @@ public static readonly CVarDef
/// in-game.
///
public static readonly CVarDef AtmosSpeedup =
- CVarDef.Create("atmos.speedup", 1f, CVar.SERVERONLY);
+ CVarDef.Create("atmos.speedup", 8f, CVar.SERVERONLY);
///
/// Like atmos.speedup, but only for gas and reaction heat values. 64x means
/// gases heat up and cool down 64x faster than real life.
///
public static readonly CVarDef AtmosHeatScale =
- CVarDef.Create("atmos.heat_scale", 1f, CVar.SERVERONLY);
+ CVarDef.Create("atmos.heat_scale", 8f, CVar.SERVERONLY);
/*
* MIDI instruments
diff --git a/Content.Shared/Chemistry/Components/SolutionContainerMixerComponent.cs b/Content.Shared/Chemistry/Components/SolutionContainerMixerComponent.cs
new file mode 100644
index 00000000000..8e4b6f52d87
--- /dev/null
+++ b/Content.Shared/Chemistry/Components/SolutionContainerMixerComponent.cs
@@ -0,0 +1,44 @@
+using Content.Shared.Chemistry.EntitySystems;
+using Content.Shared.Chemistry.Reaction;
+using Robust.Shared.Audio;
+using Robust.Shared.Audio.Components;
+using Robust.Shared.GameStates;
+using Robust.Shared.Serialization;
+using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom;
+
+namespace Content.Shared.Chemistry.Components;
+
+///
+/// This is used for an entity that uses to mix any container with a solution after a period of time.
+///
+[RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
+[Access(typeof(SharedSolutionContainerMixerSystem))]
+public sealed partial class SolutionContainerMixerComponent : Component
+{
+ [DataField, ViewVariables(VVAccess.ReadWrite)]
+ public string ContainerId = "mixer";
+
+ [DataField, AutoNetworkedField]
+ public bool Mixing;
+
+ ///
+ /// How long it takes for mixing to occurs.
+ ///
+ [DataField, ViewVariables(VVAccess.ReadWrite), AutoNetworkedField]
+ public TimeSpan MixDuration;
+
+ [DataField(customTypeSerializer: typeof(TimeOffsetSerializer)), ViewVariables(VVAccess.ReadWrite), AutoNetworkedField]
+ public TimeSpan MixTimeEnd;
+
+ [DataField, AutoNetworkedField]
+ public SoundSpecifier? MixingSound;
+
+ [DataField]
+ public Entity? MixingSoundEntity;
+}
+
+[Serializable, NetSerializable]
+public enum SolutionContainerMixerVisuals : byte
+{
+ Mixing
+}
diff --git a/Content.Shared/Chemistry/EntitySystems/SharedSolutionContainerMixerSystem.cs b/Content.Shared/Chemistry/EntitySystems/SharedSolutionContainerMixerSystem.cs
new file mode 100644
index 00000000000..ab924256089
--- /dev/null
+++ b/Content.Shared/Chemistry/EntitySystems/SharedSolutionContainerMixerSystem.cs
@@ -0,0 +1,125 @@
+using Content.Shared.Chemistry.Components;
+using Content.Shared.Chemistry.Reaction;
+using Content.Shared.Interaction;
+using Content.Shared.Popups;
+using Robust.Shared.Audio.Systems;
+using Robust.Shared.Containers;
+using Robust.Shared.Network;
+using Robust.Shared.Timing;
+
+namespace Content.Shared.Chemistry.EntitySystems;
+
+///
+/// This handles
+///
+public abstract class SharedSolutionContainerMixerSystem : EntitySystem
+{
+ [Dependency] private readonly IGameTiming _timing = default!;
+ [Dependency] private readonly INetManager _net = default!;
+ [Dependency] private readonly SharedAppearanceSystem _appearance = default!;
+ [Dependency] private readonly SharedAudioSystem _audio = default!;
+ [Dependency] private readonly ChemicalReactionSystem _chemicalReaction = default!;
+ [Dependency] private readonly SharedContainerSystem _container = default!;
+ [Dependency] private readonly SharedPopupSystem _popup = default!;
+ [Dependency] private readonly SolutionContainerSystem _solution = default!;
+
+ ///
+ public override void Initialize()
+ {
+ SubscribeLocalEvent(OnActivateInWorld);
+ SubscribeLocalEvent(OnRemoveAttempt);
+ }
+
+ private void OnActivateInWorld(Entity entity, ref ActivateInWorldEvent args)
+ {
+ TryStartMix(entity, args.User);
+ }
+
+ private void OnRemoveAttempt(Entity ent, ref ContainerIsRemovingAttemptEvent args)
+ {
+ if (args.Container.ID == ent.Comp.ContainerId && ent.Comp.Mixing)
+ args.Cancel();
+ }
+
+ protected virtual bool HasPower(Entity entity)
+ {
+ return true;
+ }
+
+ public void TryStartMix(Entity entity, EntityUid? user)
+ {
+ var (uid, comp) = entity;
+ if (comp.Mixing)
+ return;
+
+ if (!HasPower(entity))
+ {
+ if (user != null)
+ _popup.PopupClient(Loc.GetString("solution-container-mixer-no-power"), entity, user.Value);
+ return;
+ }
+
+ if (!_container.TryGetContainer(uid, comp.ContainerId, out var container) || container.Count == 0)
+ {
+ if (user != null)
+ _popup.PopupClient(Loc.GetString("solution-container-mixer-popup-nothing-to-mix"), entity, user.Value);
+ return;
+ }
+
+ comp.Mixing = true;
+ if (_net.IsServer)
+ comp.MixingSoundEntity = _audio.PlayPvs(comp.MixingSound, entity, comp.MixingSound?.Params.WithLoop(true));
+ comp.MixTimeEnd = _timing.CurTime + comp.MixDuration;
+ _appearance.SetData(entity, SolutionContainerMixerVisuals.Mixing, true);
+ Dirty(uid, comp);
+ }
+
+ public void StopMix(Entity entity)
+ {
+ var (uid, comp) = entity;
+ if (!comp.Mixing)
+ return;
+ _audio.Stop(comp.MixingSoundEntity);
+ _appearance.SetData(entity, SolutionContainerMixerVisuals.Mixing, false);
+ comp.Mixing = false;
+ comp.MixingSoundEntity = null;
+ Dirty(uid, comp);
+ }
+
+ public void FinishMix(Entity entity)
+ {
+ var (uid, comp) = entity;
+ if (!comp.Mixing)
+ return;
+ StopMix(entity);
+
+ if (!TryComp(entity, out var reactionMixer)
+ || !_container.TryGetContainer(uid, comp.ContainerId, out var container))
+ return;
+
+ foreach (var ent in container.ContainedEntities)
+ {
+ if (!_solution.TryGetFitsInDispenser(ent, out var solution))
+ continue;
+
+ _chemicalReaction.FullyReactSolution(solution, ent, solution.MaxVolume, reactionMixer);
+ }
+ }
+
+ public override void Update(float frameTime)
+ {
+ base.Update(frameTime);
+
+ var query = EntityQueryEnumerator();
+ while (query.MoveNext(out var uid, out var comp))
+ {
+ if (!comp.Mixing)
+ continue;
+
+ if (_timing.CurTime < comp.MixTimeEnd)
+ continue;
+
+ FinishMix((uid, comp));
+ }
+ }
+}
diff --git a/Content.Shared/Chemistry/EntitySystems/SolutionContainerSystem.cs b/Content.Shared/Chemistry/EntitySystems/SolutionContainerSystem.cs
index bb903514835..04ad17869f2 100644
--- a/Content.Shared/Chemistry/EntitySystems/SolutionContainerSystem.cs
+++ b/Content.Shared/Chemistry/EntitySystems/SolutionContainerSystem.cs
@@ -374,6 +374,22 @@ public bool TryAddReagent(EntityUid targetUid, Solution targetSolution, ReagentQ
return acceptedQuantity == reagentQuantity.Quantity;
}
+ ///
+ /// Adds reagent of an Id to the container.
+ ///
+ ///
+ /// Container to which we are adding reagent
+ /// The Id of the reagent to add.
+ /// The amount of reagent to add.
+ /// If all the reagent could be added.
+ [PublicAPI]
+ public bool TryAddReagent(EntityUid targetUid, Solution targetSolution, string prototype, FixedPoint2 quantity,
+ float? temperature = null, ReagentData? data = null)
+ {
+ var reagent = new ReagentQuantity(prototype, quantity, data);
+ return TryAddReagent(targetUid, targetSolution, reagent, out _, temperature);
+ }
+
///
/// Adds reagent of an Id to the container.
///
diff --git a/Content.Shared/Chemistry/Reaction/ChemicalReactionSystem.cs b/Content.Shared/Chemistry/Reaction/ChemicalReactionSystem.cs
index 1a55408916a..1bf7e7888b8 100644
--- a/Content.Shared/Chemistry/Reaction/ChemicalReactionSystem.cs
+++ b/Content.Shared/Chemistry/Reaction/ChemicalReactionSystem.cs
@@ -112,7 +112,8 @@ private bool CanReact(Solution solution, ReactionPrototype reaction, EntityUid o
{
lowestUnitReactions = FixedPoint2.Zero;
return false;
- } else if(solution.Temperature > reaction.MaximumTemperature)
+ }
+ if (solution.Temperature > reaction.MaximumTemperature)
{
lowestUnitReactions = FixedPoint2.Zero;
return false;
@@ -126,7 +127,7 @@ private bool CanReact(Solution solution, ReactionPrototype reaction, EntityUid o
}
var attempt = new ReactionAttemptEvent(reaction, solution);
- RaiseLocalEvent(owner, attempt, false);
+ RaiseLocalEvent(owner, attempt);
if (attempt.Cancelled)
{
lowestUnitReactions = FixedPoint2.Zero;
diff --git a/Content.Shared/Chemistry/Reaction/MixingCategoryPrototype.cs b/Content.Shared/Chemistry/Reaction/MixingCategoryPrototype.cs
new file mode 100644
index 00000000000..2456fbf7335
--- /dev/null
+++ b/Content.Shared/Chemistry/Reaction/MixingCategoryPrototype.cs
@@ -0,0 +1,27 @@
+using Robust.Shared.Prototypes;
+using Robust.Shared.Utility;
+
+namespace Content.Shared.Chemistry.Reaction;
+
+///
+/// This is a prototype for a method of chemical mixing, to be used by
+///
+[Prototype("mixingCategory")]
+public sealed partial class MixingCategoryPrototype : IPrototype
+{
+ ///
+ [IdDataField]
+ public string ID { get; } = default!;
+
+ ///
+ /// A locale string used in the guidebook to describe this mixing category.
+ ///
+ [DataField(required: true)]
+ public LocId VerbText;
+
+ ///
+ /// An icon used to represent this mixing category in the guidebook.
+ ///
+ [DataField(required: true)]
+ public SpriteSpecifier Icon = default!;
+}
diff --git a/Content.Shared/Chemistry/Reaction/ReactionMixerComponent.cs b/Content.Shared/Chemistry/Reaction/ReactionMixerComponent.cs
index 69697239533..a88bf02bf83 100644
--- a/Content.Shared/Chemistry/Reaction/ReactionMixerComponent.cs
+++ b/Content.Shared/Chemistry/Reaction/ReactionMixerComponent.cs
@@ -1,4 +1,5 @@
using Content.Shared.Chemistry.Components;
+using Robust.Shared.Prototypes;
namespace Content.Shared.Chemistry.Reaction;
@@ -10,7 +11,7 @@ public sealed partial class ReactionMixerComponent : Component
///
[ViewVariables]
[DataField]
- public List ReactionTypes = default!;
+ public List> ReactionTypes = default!;
///
/// A string which identifies the string to be sent when successfully mixing a solution
diff --git a/Content.Shared/Chemistry/Reaction/ReactionPrototype.cs b/Content.Shared/Chemistry/Reaction/ReactionPrototype.cs
index 37b5d441407..7541784905e 100644
--- a/Content.Shared/Chemistry/Reaction/ReactionPrototype.cs
+++ b/Content.Shared/Chemistry/Reaction/ReactionPrototype.cs
@@ -48,7 +48,7 @@ public sealed partial class ReactionPrototype : IPrototype, IComparable
[DataField("requiredMixerCategories")]
- public List? MixingCategories = null;
+ public List>? MixingCategories;
///
/// Reagents created when the reaction occurs.
diff --git a/Content.Shared/Clothing/ClothingEvents.cs b/Content.Shared/Clothing/ClothingEvents.cs
index b4c1224ce91..bb31c568e02 100644
--- a/Content.Shared/Clothing/ClothingEvents.cs
+++ b/Content.Shared/Clothing/ClothingEvents.cs
@@ -70,4 +70,4 @@ public sealed partial class ToggleMaskEvent : InstantActionEvent { }
/// Event raised on the entity wearing the mask when it is toggled.
///
[ByRefEvent]
-public readonly record struct WearerMaskToggledEvent(bool Enabled);
+public readonly record struct WearerMaskToggledEvent(bool IsToggled);
diff --git a/Content.Shared/Clothing/EntitySystems/MaskSystem.cs b/Content.Shared/Clothing/EntitySystems/MaskSystem.cs
index 50cf3afe50a..6c135e1a07a 100644
--- a/Content.Shared/Clothing/EntitySystems/MaskSystem.cs
+++ b/Content.Shared/Clothing/EntitySystems/MaskSystem.cs
@@ -3,6 +3,7 @@
using Content.Shared.Inventory;
using Content.Shared.Inventory.Events;
using Content.Shared.Popups;
+using Robust.Shared.Timing;
namespace Content.Shared.Clothing.EntitySystems;
@@ -11,6 +12,7 @@ public sealed class MaskSystem : EntitySystem
[Dependency] private readonly SharedActionsSystem _actionSystem = default!;
[Dependency] private readonly InventorySystem _inventorySystem = default!;
[Dependency] private readonly SharedPopupSystem _popupSystem = default!;
+ [Dependency] private readonly IGameTiming _timing = default!;
public override void Initialize()
{
@@ -30,7 +32,7 @@ private void OnGetActions(EntityUid uid, MaskComponent component, GetItemActions
private void OnToggleMask(Entity ent, ref ToggleMaskEvent args)
{
var (uid, mask) = ent;
- if (mask.ToggleActionEntity == null)
+ if (mask.ToggleActionEntity == null || !_timing.IsFirstTimePredicted)
return;
if (!_inventorySystem.TryGetSlotEntity(args.Performer, "mask", out var existing) || !uid.Equals(existing))
diff --git a/Content.Shared/Explosion/ExplosionPrototype.cs b/Content.Shared/Explosion/ExplosionPrototype.cs
index 37d0b2b4212..1be3e31939d 100644
--- a/Content.Shared/Explosion/ExplosionPrototype.cs
+++ b/Content.Shared/Explosion/ExplosionPrototype.cs
@@ -62,8 +62,26 @@ public sealed partial class ExplosionPrototype : IPrototype
[DataField("fireColor")]
public Color? FireColor;
- [DataField("Sound")]
- public SoundSpecifier Sound = new SoundCollectionSpecifier("explosion");
+ ///
+ /// If an explosion finishes in less than this many iterations, play a small sound instead.
+ ///
+ ///
+ /// This value is tuned such that a minibomb is considered small, but just about anything larger is normal
+ ///
+ [DataField("smallSoundIterationThreshold")]
+ public int SmallSoundIterationThreshold = 6;
+
+ [DataField("sound")]
+ public SoundSpecifier Sound = new SoundCollectionSpecifier("Explosion");
+
+ [DataField("smallSound")]
+ public SoundSpecifier SmallSound = new SoundCollectionSpecifier("ExplosionSmall");
+
+ [DataField("soundFar")]
+ public SoundSpecifier SoundFar = new SoundCollectionSpecifier("ExplosionFar", AudioParams.Default.WithVolume(2f));
+
+ [DataField("smallSoundFar")]
+ public SoundSpecifier SmallSoundFar = new SoundCollectionSpecifier("ExplosionSmallFar", AudioParams.Default.WithVolume(2f));
[DataField("texturePath")]
public ResPath TexturePath = new("/Textures/Effects/fire.rsi");
diff --git a/Content.Shared/Forensics/Events.cs b/Content.Shared/Forensics/Events.cs
index d49bb24fbb7..7300b78d76b 100644
--- a/Content.Shared/Forensics/Events.cs
+++ b/Content.Shared/Forensics/Events.cs
@@ -24,3 +24,30 @@ public ForensicPadDoAfterEvent(string sample)
public override DoAfterEvent Clone() => this;
}
+
+[Serializable, NetSerializable]
+public sealed partial class CleanForensicsDoAfterEvent : SimpleDoAfterEvent
+{
+}
+
+///
+/// An event to apply DNA evidence from a donor onto some recipient.
+///
+[ByRefEvent]
+public record struct TransferDnaEvent()
+{
+ ///
+ /// The entity donating the DNA.
+ ///
+ public EntityUid Donor;
+
+ ///
+ /// The entity receiving the DNA.
+ ///
+ public EntityUid Recipient;
+
+ ///
+ /// Can the DNA be cleaned off?
+ ///
+ public bool CanDnaBeCleaned = true;
+}
diff --git a/Content.Shared/Forensics/ForensicScannerEvent.cs b/Content.Shared/Forensics/ForensicScannerEvent.cs
index f305125b99e..ce84b1f7b36 100644
--- a/Content.Shared/Forensics/ForensicScannerEvent.cs
+++ b/Content.Shared/Forensics/ForensicScannerEvent.cs
@@ -8,6 +8,7 @@ public sealed class ForensicScannerBoundUserInterfaceState : BoundUserInterfaceS
public readonly List Fingerprints = new();
public readonly List Fibers = new();
public readonly List DNAs = new();
+ public readonly List Residues = new();
public readonly string LastScannedName = string.Empty;
public readonly TimeSpan PrintCooldown = TimeSpan.Zero;
public readonly TimeSpan PrintReadyAt = TimeSpan.Zero;
@@ -16,6 +17,7 @@ public ForensicScannerBoundUserInterfaceState(
List fingerprints,
List fibers,
List dnas,
+ List residues,
string lastScannedName,
TimeSpan printCooldown,
TimeSpan printReadyAt)
@@ -23,6 +25,7 @@ public ForensicScannerBoundUserInterfaceState(
Fingerprints = fingerprints;
Fibers = fibers;
DNAs = dnas;
+ Residues = residues;
LastScannedName = lastScannedName;
PrintCooldown = printCooldown;
PrintReadyAt = printReadyAt;
diff --git a/Content.Shared/Implants/SharedImplanterSystem.cs b/Content.Shared/Implants/SharedImplanterSystem.cs
index b3b2421f205..6c8284b9bec 100644
--- a/Content.Shared/Implants/SharedImplanterSystem.cs
+++ b/Content.Shared/Implants/SharedImplanterSystem.cs
@@ -3,6 +3,7 @@
using Content.Shared.Containers.ItemSlots;
using Content.Shared.DoAfter;
using Content.Shared.Examine;
+using Content.Shared.Forensics;
using Content.Shared.IdentityManagement;
using Content.Shared.Implants.Components;
using Content.Shared.Popups;
@@ -72,6 +73,9 @@ public void Implant(EntityUid user, EntityUid target, EntityUid implanter, Impla
else
ImplantMode(implanter, component);
+ var ev = new TransferDnaEvent { Donor = target, Recipient = implanter };
+ RaiseLocalEvent(target, ref ev);
+
Dirty(component);
}
@@ -140,6 +144,10 @@ public void Draw(EntityUid implanter, EntityUid user, EntityUid target, Implante
implantComp.ImplantedEntity = null;
implanterContainer.Insert(implant);
permanentFound = implantComp.Permanent;
+
+ var ev = new TransferDnaEvent { Donor = target, Recipient = implanter };
+ RaiseLocalEvent(target, ref ev);
+
//Break so only one implant is drawn
break;
}
diff --git a/Content.Shared/Light/Components/LightBulbComponent.cs b/Content.Shared/Light/Components/LightBulbComponent.cs
index 01b348d13a5..35b04be8974 100644
--- a/Content.Shared/Light/Components/LightBulbComponent.cs
+++ b/Content.Shared/Light/Components/LightBulbComponent.cs
@@ -71,7 +71,7 @@ public sealed partial class LightBulbComponent : Component
///
[DataField("breakSound")]
[ViewVariables(VVAccess.ReadWrite)]
- public SoundSpecifier BreakSound = new SoundCollectionSpecifier("GlassBreak");
+ public SoundSpecifier BreakSound = new SoundCollectionSpecifier("GlassBreak", AudioParams.Default.WithVolume(-6f));
#region Appearance
diff --git a/Content.Shared/Projectiles/ProjectileComponent.cs b/Content.Shared/Projectiles/ProjectileComponent.cs
index 276e0943e02..3b5cd33c791 100644
--- a/Content.Shared/Projectiles/ProjectileComponent.cs
+++ b/Content.Shared/Projectiles/ProjectileComponent.cs
@@ -33,6 +33,9 @@ public sealed partial class ProjectileComponent : Component
[DataField("deleteOnCollide")]
public bool DeleteOnCollide = true;
+ [DataField("canPenetrate")]
+ public bool CanPenetrate = false;
+
[DataField("ignoreResistances")]
public bool IgnoreResistances = false;
diff --git a/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs b/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs
index c5a130495d5..5c98cb011bb 100644
--- a/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs
+++ b/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs
@@ -1,7 +1,6 @@
using System.Diagnostics.CodeAnalysis;
using System.Linq;
using Content.Shared.ActionBlocker;
-using Content.Shared.CombatMode;
using Content.Shared.Containers.ItemSlots;
using Content.Shared.Destructible;
using Content.Shared.DoAfter;
@@ -40,7 +39,6 @@ public abstract class SharedStorageSystem : EntitySystem
[Dependency] protected readonly ActionBlockerSystem ActionBlocker = default!;
[Dependency] private readonly SharedAppearanceSystem _appearance = default!;
[Dependency] protected readonly SharedAudioSystem Audio = default!;
- [Dependency] private readonly SharedCombatModeSystem _combatMode = default!;
[Dependency] protected readonly SharedTransformSystem TransformSystem = default!;
[Dependency] private readonly SharedStackSystem _stack = default!;
[Dependency] private readonly SharedUserInterfaceSystem _ui = default!;
@@ -145,7 +143,7 @@ private void OnInteractUsing(EntityUid uid, StorageComponent storageComp, Intera
///
private void OnActivate(EntityUid uid, StorageComponent storageComp, ActivateInWorldEvent args)
{
- if (args.Handled || _combatMode.IsInCombatMode(args.User) || TryComp(uid, out LockComponent? lockComponent) && lockComponent.Locked)
+ if (args.Handled || TryComp(uid, out var lockComponent) && lockComponent.Locked)
return;
OpenStorageUI(uid, args.User, storageComp);
diff --git a/Content.Shared/Store/ListingPrototype.cs b/Content.Shared/Store/ListingPrototype.cs
index 0adcbd46374..d80c5cf6c83 100644
--- a/Content.Shared/Store/ListingPrototype.cs
+++ b/Content.Shared/Store/ListingPrototype.cs
@@ -18,6 +18,10 @@ namespace Content.Shared.Store;
[Virtual, DataDefinition]
public partial class ListingData : IEquatable, ICloneable
{
+ [ViewVariables]
+ [IdDataField]
+ public string ID { get; private set; } = default!;
+
///
/// The name of the listing. If empty, uses the entity's name (if present)
///
@@ -131,6 +135,7 @@ public object Clone()
{
return new ListingData
{
+ ID = ID,
Name = Name,
Description = Description,
Categories = Categories,
@@ -156,7 +161,5 @@ public object Clone()
[DataDefinition]
public sealed partial class ListingPrototype : ListingData, IPrototype
{
- [ViewVariables]
- [IdDataField]
- public string ID { get; private set; } = default!;
+
}
diff --git a/Content.Shared/Weapons/Ranged/Components/GunComponent.cs b/Content.Shared/Weapons/Ranged/Components/GunComponent.cs
index fb52870df8e..350dd85d697 100644
--- a/Content.Shared/Weapons/Ranged/Components/GunComponent.cs
+++ b/Content.Shared/Weapons/Ranged/Components/GunComponent.cs
@@ -1,7 +1,11 @@
+using Content.Shared.Damage;
+using Content.Shared.Tag;
using Robust.Shared.Audio;
using Robust.Shared.GameStates;
using Robust.Shared.Map;
+using Robust.Shared.Prototypes;
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom;
+using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.List;
namespace Content.Shared.Weapons.Ranged.Components;
@@ -110,6 +114,18 @@ public partial class GunComponent : Component
[ViewVariables(VVAccess.ReadWrite), DataField("resetOnHandSelected")]
public bool ResetOnHandSelected = true;
+ ///
+ /// Type of ammo the gun can work with
+ ///
+ [ViewVariables(VVAccess.ReadWrite), DataField("compatibleAmmo")]
+ public List>? CompatibleAmmo;
+
+ ///
+ /// Damage the gun deals when used with wrong ammo
+ ///
+ [ViewVariables(VVAccess.ReadWrite), DataField("damageOnWrongAmmo")]
+ public DamageSpecifier? DamageOnWrongAmmo = null;
+
///
/// How fast the projectile moves.
///
diff --git a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Clothing.cs b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Clothing.cs
index b9b21a47981..a144d965670 100644
--- a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Clothing.cs
+++ b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Clothing.cs
@@ -33,7 +33,11 @@ private bool TryGetClothingSlotEntity(EntityUid uid, ClothingSlotAmmoProviderCom
{
slotEntity = null;
- if (!_inventory.TryGetContainerSlotEnumerator(uid, out var enumerator, component.TargetSlot))
+ if (!Containers.TryGetContainingContainer(uid, out var container))
+ return false;
+ var user = container.Owner;
+
+ if (!_inventory.TryGetContainerSlotEnumerator(user, out var enumerator, component.TargetSlot))
return false;
while (enumerator.NextItem(out var item))
diff --git a/Resources/Audio/Effects/attributions.yml b/Resources/Audio/Effects/attributions.yml
index 2e14f748153..aa5609ab3d7 100644
--- a/Resources/Audio/Effects/attributions.yml
+++ b/Resources/Audio/Effects/attributions.yml
@@ -171,3 +171,8 @@
copyright: '"jumps from reason.3.Rev.wav" by martian of Freesound.org. Modified by reversing and altering volume.'
license: CC0-1.0
source: https://freesound.org/people/martian/sounds/19261/
+
+- files: ["explosion_small1.ogg", "explosion_small2.ogg", "explosion_small3.ogg", "explosion1.ogg", "explosion2.ogg", "explosion3.ogg", "explosion4.ogg", "explosion5.ogg", "explosion6.ogg", "explosionfar.ogg", "explosionsmallfar.ogg"]
+ copyright: "vgstation at c5edbfd7179288080f081e2b8ac2496b7e4455db"
+ license: CC-BY-SA-3.0
+ source: https://github.com/vgstation-coders/vgstation13/tree/c5edbfd7179288080f081e2b8ac2496b7e4455db/sound/effects
diff --git a/Resources/Audio/Effects/explosion_small1.ogg b/Resources/Audio/Effects/explosion_small1.ogg
new file mode 100644
index 00000000000..929c318696b
Binary files /dev/null and b/Resources/Audio/Effects/explosion_small1.ogg differ
diff --git a/Resources/Audio/Effects/explosion_small2.ogg b/Resources/Audio/Effects/explosion_small2.ogg
new file mode 100644
index 00000000000..018fe3da91c
Binary files /dev/null and b/Resources/Audio/Effects/explosion_small2.ogg differ
diff --git a/Resources/Audio/Effects/explosion_small3.ogg b/Resources/Audio/Effects/explosion_small3.ogg
new file mode 100644
index 00000000000..154d695f715
Binary files /dev/null and b/Resources/Audio/Effects/explosion_small3.ogg differ
diff --git a/Resources/Audio/Effects/explosionfar.ogg b/Resources/Audio/Effects/explosionfar.ogg
new file mode 100644
index 00000000000..aecdd0aab1d
Binary files /dev/null and b/Resources/Audio/Effects/explosionfar.ogg differ
diff --git a/Resources/Audio/Effects/explosionsmallfar.ogg b/Resources/Audio/Effects/explosionsmallfar.ogg
new file mode 100644
index 00000000000..1fa4039758e
Binary files /dev/null and b/Resources/Audio/Effects/explosionsmallfar.ogg differ
diff --git a/Resources/Audio/Effects/metalbreak.ogg b/Resources/Audio/Effects/metalbreak.ogg
index 0b447cc6999..0864824075e 100644
Binary files a/Resources/Audio/Effects/metalbreak.ogg and b/Resources/Audio/Effects/metalbreak.ogg differ
diff --git a/Resources/Audio/Machines/attributions.yml b/Resources/Audio/Machines/attributions.yml
index 411e1aa825a..c7859e9ba14 100644
--- a/Resources/Audio/Machines/attributions.yml
+++ b/Resources/Audio/Machines/attributions.yml
@@ -8,6 +8,16 @@
copyright: "Created by dotY21."
source: "https://freesound.org/people/dotY21/sounds/330726/"
+- files: ["buzz_loop.ogg"]
+ license: "CC0-1.0"
+ copyright: "Created by Duasun, converted to OGG by EmoGarbage404 (github)."
+ source: "https://freesound.org/people/Duasun/sounds/712127/"
+
+- files: ["spinning.ogg"]
+ license: "CC0-1.0"
+ copyright: "Created by MrLindstrom, modified and converted to OGG by EmoGarbage404 (github)."
+ source: "https://freesound.org/people/MrLindstrom/sounds/543964/"
+
- files: ["vending_restock_start.ogg"]
license: "CC0-1.0"
copyright: "https://freesound.org/people/Defaultv/"
diff --git a/Resources/Audio/Machines/buzz_loop.ogg b/Resources/Audio/Machines/buzz_loop.ogg
new file mode 100644
index 00000000000..5893b2aac14
Binary files /dev/null and b/Resources/Audio/Machines/buzz_loop.ogg differ
diff --git a/Resources/Audio/Machines/spinning.ogg b/Resources/Audio/Machines/spinning.ogg
new file mode 100644
index 00000000000..e85d46f07d9
Binary files /dev/null and b/Resources/Audio/Machines/spinning.ogg differ
diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml
index e0a69ec48c8..55840be7169 100644
--- a/Resources/Changelog/Changelog.yml
+++ b/Resources/Changelog/Changelog.yml
@@ -1,157 +1,4 @@
Entries:
-- author: HerCoyote23
- changes:
- - {message: 'The Syndicate has grown tired of losing overconfident "Loud" agents,
- and has reduced their stealth gear prices to encourage a more sneaky approach.',
- type: Tweak}
- id: 4856
- time: '2023-09-18T21:07:00.0000000+00:00'
-- author: Doru991
- changes:
- - {message: Berry seeds are now available from the MegaSeed Servitor., type: Add}
- - {message: Seeds for the bungo fruit are included in the exotic seed crate., type: Add}
- id: 4857
- time: '2023-09-19T03:29:28.0000000+00:00'
-- author: EmoGarbage404
- changes:
- - {message: Skeletons have been reported in the closets of various station officials.
- And maintenance., type: Add}
- - {message: Skeletons can no longer have a pitch-black coloration., type: Tweak}
- id: 4858
- time: '2023-09-19T05:05:18.0000000+00:00'
-- author: metalgearsloth
- changes:
- - {message: 'Expeditions have been massively tweaked. Timer is 7 minutes, loot count
- is significantly up, added significantly more loot to the loot table, mob count
- is significantly up, and mobs overall have been nerfed (no more 15 damage carps
- ending you). It also has a flat 13 minute cooldown. Better bring your fultons
- if you expect to bring stuff back.', type: Tweak}
- id: 4859
- time: '2023-09-19T12:52:01.0000000+00:00'
-- author: Repo
- changes:
- - {message: Time out for particular uplink items for balancing. Syndicate Bomb can
- only be purchased after 30min., type: Add}
- id: 4860
- time: '2023-09-19T23:51:15.0000000+00:00'
-- author: liltenhead
- changes:
- - {message: Reduced the crafting costs of the buckler and makeshift shield., type: Tweak}
- id: 4861
- time: '2023-09-20T04:49:43.0000000+00:00'
-- author: dahnte
- changes:
- - {message: Added frontal lisp as a character trait for all species!, type: Add}
- id: 4862
- time: '2023-09-20T04:51:50.0000000+00:00'
-- author: Alekshhh
- changes:
- - {message: Changed most medkit fills, type: Tweak}
- id: 4863
- time: '2023-09-20T07:50:19.0000000+00:00'
-- author: Alekshhh
- changes:
- - {message: Added U-shaped rails, type: Add}
- id: 4864
- time: '2023-09-20T08:26:17.0000000+00:00'
-- author: Just_Art
- changes:
- - {message: Added corn in butter., type: Add}
- - {message: Increased popcorn cooking time., type: Tweak}
- id: 4865
- time: '2023-09-20T09:51:09.0000000+00:00'
-- author: metalgearsloth
- changes:
- - {message: 'Fix some do_afters mispredicting, e.g. removing encryption keys from
- headsets.', type: Fix}
- id: 4866
- time: '2023-09-20T12:01:54.0000000+00:00'
-- author: ike709
- changes:
- - {message: Added a search filter to vending machines, type: Add}
- id: 4867
- time: '2023-09-20T19:40:41.0000000+00:00'
-- author: waylon531
- changes:
- - {message: Centcomm is tired of the crew drunkenly wandering the station and starting
- brawls. Many mixed drinks now have half as much alcohol., type: Tweak}
- id: 4868
- time: '2023-09-21T00:58:57.0000000+00:00'
-- author: metalgearsloth
- changes:
- - {message: Fix xeno ghost roles showing up for expeditions., type: Fix}
- id: 4869
- time: '2023-09-21T13:21:43.0000000+00:00'
-- author: mirrorcult
- changes:
- - {message: 'Added improvised bows & arrows to construction, have fun embedding
- people with arrows', type: Add}
- - {message: Added quivers as random maint loot drops, type: Add}
- id: 4870
- time: '2023-09-22T09:45:21.0000000+00:00'
-- author: Vasilis
- changes:
- - {message: The guidebook now has a pop-out button. This will turn it into a system
- window that you can drag wherever is convenient such as a second monitor., type: Add}
- - {message: 'The Steam overlay has been disabled due to conflicts with pop-out windows.
- Due to a bug with Steam, the game''s graphics will corrupt when overlay is enabled
- and a popout window is opened.', type: Remove}
- id: 4871
- time: '2023-09-22T19:52:31.0000000+00:00'
-- author: TheArturZh
- changes:
- - {message: Station records console works properly again, type: Fix}
- id: 4872
- time: '2023-09-22T19:57:06.0000000+00:00'
-- author: EmoGarbage404
- changes:
- - {message: 'The rat king can now rummage through disposal units to get trash, cheese,
- or gold.', type: Add}
- - {message: 'The rat king now can command its servants to do various actions. They
- can sit, follow, attack a target, or go buck-wild, all at the King''s command',
- type: Add}
- - {message: Rat servants are no longer ghost roles., type: Remove}
- id: 4873
- time: '2023-09-22T20:01:05.0000000+00:00'
-- author: waylon531
- changes:
- - {message: The surgeons at Centcomm have made it so drinking too much alcohol will
- now cause liver failure instead of heart failure. Alcoholics rejoice!, type: Fix}
- id: 4874
- time: '2023-09-22T20:01:42.0000000+00:00'
-- author: dahnte
- changes:
- - {message: Improved lisp letter matching and clarity., type: Fix}
- id: 4875
- time: '2023-09-23T05:39:47.0000000+00:00'
-- author: EmoGarbage404
- changes:
- - {message: Skeletons no longer asphyxiate due to their lack of lungs., type: Fix}
- id: 4876
- time: '2023-09-23T08:24:58.0000000+00:00'
-- author: PrPleGoo
- changes:
- - {message: Added onion goggles for the chef. It displays hunger icons for hungry/overfed
- mobs. Can also be eaten., type: Add}
- - {message: The beer goggles now display thirst icons for thirsty/overhydrated mobs.,
- type: Tweak}
- id: 4877
- time: '2023-09-23T13:14:06.0000000+00:00'
-- author: ElectroJr
- changes:
- - {message: Fixed spellbooks not granting spell actions., type: Fix}
- id: 4878
- time: '2023-09-23T16:33:39.0000000+00:00'
-- author: deltanedas
- changes:
- - {message: Armed nuclear explosives can be seen on station maps., type: Tweak}
- id: 4879
- time: '2023-09-23T19:15:05.0000000+00:00'
-- author: Repo
- changes:
- - {message: Nukies can declare war again., type: Fix}
- id: 4880
- time: '2023-09-23T20:00:13.0000000+00:00'
- author: Doru991
changes:
- {message: Trash spawns correctly after food is eaten., type: Fix}
@@ -2898,3 +2745,158 @@ Entries:
- {message: Added a new "uneven" hair style., type: Add}
id: 5356
time: '2023-12-13T21:34:28.0000000+00:00'
+- author: notafet
+ changes:
+ - {message: Plasma and tritium fires spread more slowly and are now more survivable.,
+ type: Tweak}
+ id: 5357
+ time: '2023-12-14T02:39:38.0000000+00:00'
+- author: Dygon
+ changes:
+ - {message: 'A new type of grenade has been developed, these grenades release a
+ spray of bullets instead of exploding: Shrapnel grenade, Stinger grenade and
+ Incendiary grenade.', type: Add}
+ - {message: Stinger grenades and ClusterBangs are now available in the sectech.,
+ type: Add}
+ - {message: 'Incendiary grenades, Shrapnel grenades, Cluster grenades and the Slipocalypse
+ ClusterSoap are now available in the syndicate uplink, clowns also get a Clusterbanana
+ in their uplink.', type: Add}
+ - {message: Explosive banana peels are now more dangerous., type: Tweak}
+ id: 5358
+ time: '2023-12-14T03:30:43.0000000+00:00'
+- author: EmoGarbage404
+ changes:
+ - {message: Added gas condensers. These machines are available at the circuit imprinter
+ and can convert gases into liquids. Tasty!, type: Add}
+ id: 5359
+ time: '2023-12-14T03:35:44.0000000+00:00'
+- author: DangerRevolution
+ changes:
+ - {message: Extended emergency nitrogen tanks can now be found on the station.,
+ type: Add}
+ id: 5360
+ time: '2023-12-14T04:35:39.0000000+00:00'
+- author: SlamBamActionman
+ changes:
+ - {message: Discord bot Changelog now includes hyperlinks to the PRs., type: Add}
+ id: 5361
+ time: '2023-12-14T18:19:25.0000000+00:00'
+- author: themias
+ changes:
+ - {message: Fixed spray nozzle not getting ammo from the back pack tank, type: Fix}
+ id: 5362
+ time: '2023-12-14T20:49:40.0000000+00:00'
+- author: Ubaser
+ changes:
+ - {message: Mothroach crates are now twice as expensive, type: Tweak}
+ id: 5363
+ time: '2023-12-14T20:58:38.0000000+00:00'
+- author: deltanedas
+ changes:
+ - {message: Crusher Glaives can be made with the Salvage Weapons technology., type: Add}
+ id: 5364
+ time: '2023-12-15T01:34:37.0000000+00:00'
+- author: brainfood1183
+ changes:
+ - {message: Acidifier now has a sprite effect., type: Tweak}
+ id: 5365
+ time: '2023-12-15T01:56:42.0000000+00:00'
+- author: Ubaser
+ changes:
+ - {message: Mercury poisoning now causes stuttering., type: Tweak}
+ id: 5366
+ time: '2023-12-15T09:28:13.0000000+00:00'
+- author: ninruB
+ changes:
+ - {message: Reptilians no longer innately take 30% less heat damage., type: Tweak}
+ id: 5367
+ time: '2023-12-15T09:37:05.0000000+00:00'
+- author: keronshb
+ changes:
+ - {message: Added the Action Upgrade System - used to upgrade specific actions!,
+ type: Add}
+ - {message: Added commands to upgrade actions., type: Add}
+ - {message: Added Charges information to action tooltips for actions with charges,
+ type: Add}
+ id: 5368
+ time: '2023-12-15T09:41:44.0000000+00:00'
+- author: Ubaser
+ changes:
+ - {message: Chaplains can smack their bible on water to create holy water., type: Add}
+ id: 5369
+ time: '2023-12-15T09:52:21.0000000+00:00'
+- author: EmoGarbage404
+ changes:
+ - {message: Added the electrolysis unit and the centrifuge. These will be used for
+ chemistry in the future., type: Add}
+ id: 5370
+ time: '2023-12-15T09:52:46.0000000+00:00'
+- author: themias
+ changes:
+ - {message: Gibbed body parts contain their victim's DNA, type: Tweak}
+ - {message: 'Implanters, syringes, hyposprays, medipens, and cigarettes transfer
+ DNA', type: Tweak}
+ - {message: Melee weapons that deal blunt/slash/pierce damage transfer DNA, type: Tweak}
+ - {message: 'Soap and rags can be used to clean evidence off of items, but leave
+ evidence of their own', type: Tweak}
+ id: 5371
+ time: '2023-12-15T09:52:56.0000000+00:00'
+- author: TheShuEd
+ changes:
+ - {message: Added hypodart into uplink. It is capable of piercing armor and injecting
+ up to 7u reagents., type: Add}
+ id: 5372
+ time: '2023-12-15T09:55:57.0000000+00:00'
+- author: tgrkzus
+ changes:
+ - {message: Open tanks will no longer make noise at very low release pressure.,
+ type: Tweak}
+ id: 5373
+ time: '2023-12-15T09:56:17.0000000+00:00'
+- author: MendaxxDev
+ changes:
+ - {message: 'The flare gun now explodes, damages and stuns the player when used
+ with wrong ammo', type: Tweak}
+ id: 5374
+ time: '2023-12-15T09:57:59.0000000+00:00'
+- author: TheShuEd
+ changes:
+ - {message: 'Added 2 new artifact effect: attraction and repulsion', type: Add}
+ id: 5375
+ time: '2023-12-15T15:39:25.0000000+00:00'
+- author: mirrorcult
+ changes:
+ - {message: Explosion visuals now last slightly longer, type: Add}
+ - {message: You will now hear a reverbed explosion sound effect for explosions that
+ are far away from you, type: Add}
+ - {message: Smaller explosions now make a distinct sound compared to larger ones,
+ type: Add}
+ id: 5376
+ time: '2023-12-15T16:57:46.0000000+00:00'
+- author: Ubaser
+ changes:
+ - {message: Artistic toolboxes now have a filled variant that can be found in maintenance
+ occasionally., type: Tweak}
+ id: 5377
+ time: '2023-12-15T20:44:42.0000000+00:00'
+- author: Ilya246
+ changes:
+ - {message: Cyborg jobs now start with a positronic brain., type: Tweak}
+ id: 5378
+ time: '2023-12-15T20:45:31.0000000+00:00'
+- author: deltanedas
+ changes:
+ - {message: Borgs can wear hats now. Time to get festive!, type: Tweak}
+ id: 5379
+ time: '2023-12-15T22:33:52.0000000+00:00'
+- author: mirrorcult
+ changes:
+ - {message: Chasms no longer spawn on lava expeditions, type: Tweak}
+ id: 5380
+ time: '2023-12-15T22:34:09.0000000+00:00'
+- author: EmoGarbage404
+ changes:
+ - {message: 'The guidebook now shows you if a chemical''s recipe needs an alternative
+ mixing method, such as a chaplain''s blessing or electrolysis.', type: Fix}
+ id: 5381
+ time: '2023-12-15T23:59:54.0000000+00:00'
diff --git a/Resources/Locale/en-US/actions/actions/actions-commands.ftl b/Resources/Locale/en-US/actions/actions/actions-commands.ftl
new file mode 100644
index 00000000000..c0cd59cdaca
--- /dev/null
+++ b/Resources/Locale/en-US/actions/actions/actions-commands.ftl
@@ -0,0 +1,12 @@
+## Actions Commands loc
+
+## Upgradeaction command loc
+upgradeaction-command-need-one-argument = upgradeaction needs at least one argument, the action entity uid. The second optional argument is a specified level.
+upgradeaction-command-max-two-arguments = upgradeaction has a maximum of two arguments, the action entity uid and the (optional) level to set.
+upgradeaction-command-second-argument-not-number = upgradeaction's second argument can only be a number.
+upgradeaction-command-less-than-required-level = upgradeaction cannot accept a level of 0 or lower.
+upgradeaction-command-incorrect-entityuid-format = You must use a valid entityuid format for upgradeaction.
+upgradeaction-command-entity-does-not-exist = This entity does not exist, a valid entity is required for upgradeaction.
+upgradeaction-command-entity-is-not-action = This entity doesn't have the action upgrade component, so this action cannot be leveled.
+upgradeaction-command-cannot-level-up = The action cannot be leveled up.
+upgradeaction-command-description = Upgrades an action by one level, or to the specified level, if applicable.
diff --git a/Resources/Locale/en-US/administration/commands/custom-vote-command.ftl b/Resources/Locale/en-US/administration/commands/custom-vote-command.ftl
new file mode 100644
index 00000000000..b8d64d26349
--- /dev/null
+++ b/Resources/Locale/en-US/administration/commands/custom-vote-command.ftl
@@ -0,0 +1 @@
+custom-vote-webhook-name = Custom Vote Held
\ No newline at end of file
diff --git a/Resources/Locale/en-US/chemistry/components/mixing-component.ftl b/Resources/Locale/en-US/chemistry/components/mixing-component.ftl
index 2582920443c..04d83627437 100644
--- a/Resources/Locale/en-US/chemistry/components/mixing-component.ftl
+++ b/Resources/Locale/en-US/chemistry/components/mixing-component.ftl
@@ -1,3 +1,8 @@
+# Types
+mixing-verb-centrifuge = centrifugation
+mixing-verb-electrolysis = electrolyze
+mixing-verb-holy = bless
+
## Entity
default-mixing-success = You mix the { $mixed } with the { $mixer }
diff --git a/Resources/Locale/en-US/chemistry/components/solution-container-mixer-component.ftl b/Resources/Locale/en-US/chemistry/components/solution-container-mixer-component.ftl
new file mode 100644
index 00000000000..9402903477f
--- /dev/null
+++ b/Resources/Locale/en-US/chemistry/components/solution-container-mixer-component.ftl
@@ -0,0 +1,3 @@
+solution-container-mixer-activate = Activate
+solution-container-mixer-no-power = No power!
+solution-container-mixer-popup-nothing-to-mix = Nothing inside!
diff --git a/Resources/Locale/en-US/flavors/flavor-profiles.ftl b/Resources/Locale/en-US/flavors/flavor-profiles.ftl
index d1954ababf0..a1f1c566394 100644
--- a/Resources/Locale/en-US/flavors/flavor-profiles.ftl
+++ b/Resources/Locale/en-US/flavors/flavor-profiles.ftl
@@ -44,6 +44,7 @@ flavor-base-sharp = sharp
flavor-base-syrupy = syrupy
flavor-base-spaceshroom = mysterious
flavor-base-clean = clean
+flavor-base-holy = holy
# lmao
flavor-base-terrible = terrible
diff --git a/Resources/Locale/en-US/forensics/forensics.ftl b/Resources/Locale/en-US/forensics/forensics.ftl
index 88494820ec0..2326aeb9c21 100644
--- a/Resources/Locale/en-US/forensics/forensics.ftl
+++ b/Resources/Locale/en-US/forensics/forensics.ftl
@@ -2,6 +2,7 @@ forensic-scanner-interface-title = Forensic scanner
forensic-scanner-interface-fingerprints = Fingerprints
forensic-scanner-interface-fibers = Fibers
forensic-scanner-interface-dnas = DNAs
+forensic-scanner-interface-residues = Residues
forensic-scanner-interface-no-data = No scan data available
forensic-scanner-interface-print = Print
forensic-scanner-interface-clear = Clear
diff --git a/Resources/Locale/en-US/forensics/residues.ftl b/Resources/Locale/en-US/forensics/residues.ftl
new file mode 100644
index 00000000000..3c5fe3c96d9
--- /dev/null
+++ b/Resources/Locale/en-US/forensics/residues.ftl
@@ -0,0 +1,11 @@
+forensic-residue = {LOC($adjective)} residue
+forensic-residue-colored = {LOC($adjective)} {LOC($color)} residue
+
+residue-unknown = unknown
+residue-slippery = slippery
+
+residue-green = green
+residue-blue = blue
+residue-red = red
+residue-grey = grey
+residue-brown = brown
\ No newline at end of file
diff --git a/Resources/Locale/en-US/guidebook/chemistry/core.ftl b/Resources/Locale/en-US/guidebook/chemistry/core.ftl
index c9d1db332d7..7b39a631757 100644
--- a/Resources/Locale/en-US/guidebook/chemistry/core.ftl
+++ b/Resources/Locale/en-US/guidebook/chemistry/core.ftl
@@ -11,7 +11,16 @@ guidebook-reagent-name = [bold][color={$color}]{CAPITALIZE($name)}[/color][/bold
guidebook-reagent-recipes-header = Recipe
guidebook-reagent-recipes-reagent-display = [bold]{$reagent}[/bold] \[{$ratio}\]
guidebook-reagent-recipes-mix = Mix
-guidebook-reagent-recipes-mix-and-heat = Mix at above {$temperature}K
guidebook-reagent-effects-header = Effects
guidebook-reagent-effects-metabolism-group-rate = [bold]{$group}[/bold] [color=gray]({$rate} units per second)[/color]
-guidebook-reagent-physical-description = Seems to be {$description}.
+guidebook-reagent-physical-description = [italic]Seems to be {$description}.[/italic]
+guidebook-reagent-recipes-mix-info = {$minTemp ->
+ [0] {$hasMax ->
+ [true] {$verb} below {$maxTemp}K
+ *[false] {$verb}
+ }
+ *[other] {$verb} {$hasMax ->
+ [true] between {$minTemp}K and {$maxTemp}K
+ *[false] above {$minTemp}K
+ }
+}
diff --git a/Resources/Locale/en-US/items/components/item-component.ftl b/Resources/Locale/en-US/items/components/item-component.ftl
index 8ebde5251e7..9d46b50dd4c 100644
--- a/Resources/Locale/en-US/items/components/item-component.ftl
+++ b/Resources/Locale/en-US/items/components/item-component.ftl
@@ -6,7 +6,7 @@ pick-up-verb-get-data-text = Pick Up
pick-up-verb-get-data-text-inventory = Put in hand
-item-component-on-examine-size = Size: {$size}
+item-component-on-examine-size = This is {INDEFINITE($size)} [bold]{$size}[/bold] item.
item-component-size-Tiny = tiny
item-component-size-Small = small
diff --git a/Resources/Locale/en-US/prayers/prayers.ftl b/Resources/Locale/en-US/prayers/prayers.ftl
index 1a8518bdd85..07713bc8216 100644
--- a/Resources/Locale/en-US/prayers/prayers.ftl
+++ b/Resources/Locale/en-US/prayers/prayers.ftl
@@ -4,10 +4,12 @@ prayer-verbs-call = Call
prayer-chat-notify-pray = PRAYER
prayer-chat-notify-honkmother = HONKMOTHER
prayer-chat-notify-centcom = CENTCOM
+prayer-chat-notify-syndicate = SYNDICATE
prayer-popup-subtle-default = You hear a voice in your head...
prayer-popup-notify-honkmother-sent = You left a voicemail message for the Honkmother...
prayer-popup-notify-centcom-sent = You left a voicemail message for Central Command...
+prayer-popup-notify-syndicate-sent = You left a voicemail message for Syndicate High Command...
prayer-popup-notify-pray-sent = Your message has been sent to the gods...
prayer-popup-notify-pray-locked = You don't feel worthy enough...
diff --git a/Resources/Locale/en-US/reagents/meta/biological.ftl b/Resources/Locale/en-US/reagents/meta/biological.ftl
index bcf3502c6bf..2efb3eba4cc 100644
--- a/Resources/Locale/en-US/reagents/meta/biological.ftl
+++ b/Resources/Locale/en-US/reagents/meta/biological.ftl
@@ -17,4 +17,4 @@ reagent-name-fat = fat
reagent-desc-fat = No matter how it was obtained, its application is important.
reagent-name-vomit = vomit
-reagent-desc-vomit = You can see a few chunks of someones last meal in it.
+reagent-desc-vomit = You can see a few chunks of someone's last meal in it.
\ No newline at end of file
diff --git a/Resources/Locale/en-US/reagents/meta/chemicals.ftl b/Resources/Locale/en-US/reagents/meta/chemicals.ftl
index 94851adc0d4..827d0fd6d5e 100644
--- a/Resources/Locale/en-US/reagents/meta/chemicals.ftl
+++ b/Resources/Locale/en-US/reagents/meta/chemicals.ftl
@@ -12,3 +12,6 @@ reagent-desc-artifexium = A lavender mixture of microscopic artifact fragments a
reagent-name-sodium-polyacrylate = Sodium Polyacrylate
reagent-desc-sodium-polyacrylate = A super-absorbent polymer with assorted industrial uses.
+
+reagent-name-cellulose = cellulose fibers
+reagent-desc-cellulose = A crystaline polydextrose polymer, plants swear by this stuff.
\ No newline at end of file
diff --git a/Resources/Locale/en-US/reagents/meta/medicine.ftl b/Resources/Locale/en-US/reagents/meta/medicine.ftl
index 346175e3dda..62854196ac5 100644
--- a/Resources/Locale/en-US/reagents/meta/medicine.ftl
+++ b/Resources/Locale/en-US/reagents/meta/medicine.ftl
@@ -114,3 +114,6 @@ reagent-desc-puncturase = A fizzy chemical that helps rebuild trauma caused by p
reagent-name-bruizine = bruizine
reagent-desc-bruizine = Originally developed as a cough medicine, it turns out this chemical is wildly effective at treating blunt force trauma.
+
+reagent-name-holywater = holy water
+reagent-desc-holywater = The cleanest and purest of waters straight from the hands of god, is known to magically heal wounds.
\ No newline at end of file
diff --git a/Resources/Locale/en-US/reagents/meta/physical-desc.ftl b/Resources/Locale/en-US/reagents/meta/physical-desc.ftl
index 1b3a5c1bfa4..5743f096209 100644
--- a/Resources/Locale/en-US/reagents/meta/physical-desc.ftl
+++ b/Resources/Locale/en-US/reagents/meta/physical-desc.ftl
@@ -91,3 +91,4 @@ reagent-physical-desc-exhilarating = exhilarating
reagent-physical-desc-vibrant = vibrant
reagent-physical-desc-fluffy = fluffy
reagent-physical-desc-reflective = reflective
+reagent-physical-desc-holy = holy
diff --git a/Resources/Locale/en-US/store/uplink-catalog.ftl b/Resources/Locale/en-US/store/uplink-catalog.ftl
index 55bcb94c573..9725024c9ca 100644
--- a/Resources/Locale/en-US/store/uplink-catalog.ftl
+++ b/Resources/Locale/en-US/store/uplink-catalog.ftl
@@ -28,7 +28,7 @@ uplink-gloves-north-star-desc = A pair of gloves that reduce your punching coold
# Explosives
uplink-explosive-grenade-name = Explosive Grenade
-uplink-explosive-grenade-desc = A simplistic grenade with a ten-second fuse that is geared towards injuring personnel. Causes minimal hull damage.
+uplink-explosive-grenade-desc = A simplistic grenade with a three-and-a-half-second long fuse that is geared towards injuring personnel. Causes minimal hull damage.
uplink-flash-grenade-name = Flashbang
uplink-flash-grenade-desc = A standard-issue flashbang, capable of blinding and slowing down anyone without proper protection. This, of course, includes you; make sure you're properly equipped before using it.
@@ -63,6 +63,15 @@ uplink-exploding-pen-desc = A class IV explosive device contained within a stand
uplink-exploding-syndicate-bomb-name = Syndicate Bomb
uplink-exploding-syndicate-bomb-desc = A big, anchored bomb that can create a huge explosion if not defused in time. Useful as a distraction. Has an adjustable timer with a minimum setting of 120 seconds.
+uplink-cluster-grenade-name = Cluster Grenade
+uplink-cluster-grenade-desc = Three explosive grenades bundled together, the grenades get launched after the 3.5 second timer runs out.
+
+uplink-incendiary-grenade-name = Incendiary Grenade
+uplink-incendiary-grenade-desc = Releases a spray of incendiary fragments, igniting anyone near the detonation area.
+
+uplink-shrapnel-grenade-name = Shrapnel Grenade
+uplink-shrapnel-grenade-desc = Launches a spray of sharp fragments dealing great damage against unarmored targets.
+
# Ammo
uplink-pistol-magazine-name = Pistol Magazine (.35 auto)
uplink-pistol-magazine-desc = Pistol magazine with 10 catridges. Compatible with the Viper.
@@ -240,6 +249,9 @@ uplink-proximity-mine-desc = A mine disguised as a wet floor sign.
uplink-disposable-turret-name = Disposable Ballistic Turret
uplink-disposable-turret-desc = Looks and functions like a normal electrical toolbox. Upon hitting the toolbox it will transform into a ballistic turret, theoretically shooting at anyone except members of the syndicate. Can be turned back into a toolbox using a screwdriver and repaired using a wrench.
+uplink-cluster-banana-peel-name = Cluster Banana
+uplink-cluster-banana-peel-desc = Splits into 6 explosive banana peels after being thrown, the peels detonate automatically after 20 seconds if nobody slips on them.
+
# Armor
uplink-chameleon-name = Chameleon Kit
uplink-chameleon-desc = A backpack full of items that contain chameleon technology allowing you to disguise as pretty much anything on the station, and more!
@@ -308,6 +320,9 @@ uplink-syndicate-segway-crate-desc = Be an enemy of the corporation, in style!
uplink-syndicate-sponge-box-name = Syndicate Sponge Box
uplink-syndicate-sponge-box-desc = A box containing 6 syndicate sponges disguised as monkey cubes, these cubes turn into a variety of angry wildlife after coming into contact with water.
+uplink-slipocalypse-clustersoap-name = Slipocalypse Clustersoap
+uplink-slipocalypse-clustersoap-desc = Scatters arounds small pieces of syndicate-brand soap after being thrown, these pieces of soap evaporate after 60 seconds.
+
# Pointless
uplink-revolver-cap-gun-name = Cap Gun
uplink-revolver-cap-gun-desc = Looks almost like the real thing! Ages 8 and up.
@@ -353,3 +368,6 @@ uplink-syndicate-pai-desc = A Syndicate variant of the pAI with access to the Sy
uplink-bribe-name = Lobbying Bundle
uplink-bribe-desc = A heartfelt gift that can help you sway someone's opinion. Real or counterfeit? Yes.
+
+uplink-hypodart-name = Hypodart
+uplink-hypodart-desc = A seemingly unremarkable dart with an enlarged reservoir for chemicals. It can store up to 7u reagents in itself, and instantly inject when it hits the target. Starts empty.
\ No newline at end of file
diff --git a/Resources/Locale/en-US/weapons/ranged/gun.ftl b/Resources/Locale/en-US/weapons/ranged/gun.ftl
index fe60f3eed1d..3fbf5f77e76 100644
--- a/Resources/Locale/en-US/weapons/ranged/gun.ftl
+++ b/Resources/Locale/en-US/weapons/ranged/gun.ftl
@@ -6,6 +6,7 @@ gun-selected-mode = Selected {$mode}
gun-disabled = You can't use guns!
gun-clumsy = The gun blows up in your face!
gun-set-fire-mode = Set to {$mode}
+gun-component-wrong-ammo = Wrong ammo!
# SelectiveFire
gun-SemiAuto = semi-auto
diff --git a/Resources/Locale/en-US/wires/wire-names.ftl b/Resources/Locale/en-US/wires/wire-names.ftl
index aae87f9c535..4a94dc9ac61 100644
--- a/Resources/Locale/en-US/wires/wire-names.ftl
+++ b/Resources/Locale/en-US/wires/wire-names.ftl
@@ -3,6 +3,7 @@ wires-board-name-default = Wires
wires-board-name-booze = BoozeDispenser
wires-board-name-soda = SodaDispenser
wires-board-name-thermomachine = Thermomachine
+wires-board-name-condenser = Condenser
wires-board-name-pa = Mk2 Particle Accelerator
wires-board-name-highsec = HighSec Control
wires-board-name-vessel = Vessel
diff --git a/Resources/Locale/en-US/xenoarchaeology/artifact-hints.ftl b/Resources/Locale/en-US/xenoarchaeology/artifact-hints.ftl
index 3b632719962..960a84e746a 100644
--- a/Resources/Locale/en-US/xenoarchaeology/artifact-hints.ftl
+++ b/Resources/Locale/en-US/xenoarchaeology/artifact-hints.ftl
@@ -19,6 +19,7 @@ artifact-effect-hint-communication = Long-distance communication
artifact-effect-hint-phasing = Structural phasing
artifact-effect-hint-sentience = Neurological activity
artifact-effect-hint-polymorph = Transmogrificational activity
+artifact-effect-hint-magnet = Magnetic waves
# the triggers should be more obvious than the effects
# gives people an idea of what to do: don't be too specific (i.e. no "welders")
diff --git a/Resources/Maps/Shuttles/emergency_meta.yml b/Resources/Maps/Shuttles/emergency_meta.yml
new file mode 100644
index 00000000000..32453ab12a8
--- /dev/null
+++ b/Resources/Maps/Shuttles/emergency_meta.yml
@@ -0,0 +1,9719 @@
+meta:
+ format: 6
+ postmapinit: false
+tilemap:
+ 0: Space
+ 27: FloorDark
+ 73: FloorPlastic
+ 76: FloorReinforcedHardened
+ 82: FloorShuttleRed
+ 83: FloorShuttleWhite
+ 87: FloorSteel
+ 97: FloorSteelMini
+ 98: FloorSteelMono
+ 106: FloorWhite
+ 115: FloorWhitePlastic
+ 118: Lattice
+ 119: Plating
+entities:
+- proto: ""
+ entities:
+ - uid: 1
+ components:
+ - name: grid
+ type: MetaData
+ - pos: -2.4375,0.859375
+ parent: invalid
+ type: Transform
+ - chunks:
+ 0,0:
+ ind: 0,0
+ tiles: dwAAAAAAVwAAAAACVwAAAAACVwAAAAACVwAAAAABVwAAAAAAVwAAAAADVwAAAAADVwAAAAABVwAAAAADVwAAAAAAVwAAAAACVwAAAAADVwAAAAAAVwAAAAACVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 0,-1:
+ ind: 0,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAdwAAAAAAYQAAAAAAcwAAAAAAYQAAAAAAYQAAAAAAdwAAAAAAVwAAAAABVwAAAAACVwAAAAAAVwAAAAAAVwAAAAACdwAAAAAAUgAAAAAAGwAAAAAAGwAAAAAAUgAAAAAAdwAAAAAAYQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAUwAAAAAAVwAAAAABVwAAAAAAVwAAAAABVwAAAAADVwAAAAACdwAAAAAAUgAAAAAAGwAAAAAAGwAAAAAAUgAAAAAAdwAAAAAAYQAAAAAAcwAAAAAAcwAAAAAAYQAAAAAAdwAAAAAAVwAAAAAAVwAAAAACVwAAAAAAVwAAAAABVwAAAAADdwAAAAAAUgAAAAAAGwAAAAAAUgAAAAAAUgAAAAAAdwAAAAAAYQAAAAAAcwAAAAAAcwAAAAAAYQAAAAAAdwAAAAAAVwAAAAABVwAAAAABVwAAAAADVwAAAAADVwAAAAABdwAAAAAAdwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAADdwAAAAAAVwAAAAABVwAAAAACVwAAAAABVwAAAAACVwAAAAACVwAAAAAAVwAAAAADSQAAAAABVwAAAAAAVwAAAAADVwAAAAABVwAAAAABVwAAAAACVwAAAAABVwAAAAADdwAAAAAAVwAAAAABVwAAAAAAVwAAAAAAVwAAAAADVwAAAAACVwAAAAAAVwAAAAACVwAAAAABVwAAAAAAVwAAAAADVwAAAAABVwAAAAACVwAAAAADVwAAAAADVwAAAAADdwAAAAAAVwAAAAAAVwAAAAABVwAAAAACVwAAAAADVwAAAAADVwAAAAABVwAAAAADVwAAAAABVwAAAAABVwAAAAABVwAAAAADVwAAAAABVwAAAAABVwAAAAABVwAAAAABYgAAAAAAVwAAAAACVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAADdwAAAAAAVwAAAAABVwAAAAABVwAAAAADVwAAAAABVwAAAAABVwAAAAADVwAAAAADVwAAAAAAVwAAAAABVwAAAAACVwAAAAAAVwAAAAABVwAAAAABVwAAAAADVwAAAAACdwAAAAAAVwAAAAAAVwAAAAABVwAAAAADVwAAAAAAVwAAAAABVwAAAAAAVwAAAAADVwAAAAACVwAAAAACVwAAAAABVwAAAAACVwAAAAADVwAAAAAAVwAAAAADVwAAAAAC
+ version: 6
+ -1,-1:
+ ind: -1,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAABVwAAAAAAVwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAADVwAAAAACVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAACdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAACVwAAAAAAVwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAGwAAAAACGwAAAAAAGwAAAAADGwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAAAGwAAAAACGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAACGwAAAAABGwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAGwAAAAADGwAAAAABGwAAAAABGwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAGwAAAAADGwAAAAADGwAAAAABGwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAGwAAAAACGwAAAAADGwAAAAACGwAAAAAB
+ version: 6
+ -1,0:
+ ind: -1,0
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAGwAAAAACGwAAAAABGwAAAAAAGwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAGwAAAAABGwAAAAACdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 1,0:
+ ind: 1,0
+ tiles: VwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 1,-1:
+ ind: 1,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAADdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAACdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAADdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAATAAAAAAATAAAAAAATAAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAABVwAAAAAAVwAAAAADVwAAAAABVwAAAAACdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAdwAAAAAAVwAAAAABVwAAAAABVwAAAAABdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAdwAAAAAAVwAAAAACVwAAAAACVwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ type: MapGrid
+ - type: Broadphase
+ - bodyStatus: InAir
+ angularDamping: 0.05
+ linearDamping: 0.05
+ fixedRotation: False
+ bodyType: Dynamic
+ type: Physics
+ - fixtures: {}
+ type: Fixtures
+ - type: OccluderTree
+ - updateAccumulator: 0.18502522
+ type: SpreaderGrid
+ - type: Shuttle
+ - type: GridPathfinding
+ - gravityShakeSound: !type:SoundPathSpecifier
+ path: /Audio/Effects/alert.ogg
+ type: Gravity
+ - chunkCollection:
+ version: 2
+ nodes:
+ - node:
+ color: '#FFFFFFFF'
+ id: Bot
+ decals:
+ 6: 13,-11
+ 7: 14,-11
+ 8: 15,-11
+ 10: 12,-11
+ - node:
+ color: '#D4D4D428'
+ id: CheckerNWSE
+ decals:
+ 110: 15,-6
+ 111: 14,-6
+ 112: 14,-5
+ 113: 15,-5
+ 114: 15,-4
+ 115: 14,-4
+ 116: 14,-3
+ 117: 15,-3
+ 118: 15,-2
+ 119: 14,-2
+ 120: 14,-1
+ 121: 14,0
+ 122: 15,0
+ 123: 15,-1
+ 124: 16,-5
+ - node:
+ color: '#FFFFFFFF'
+ id: Delivery
+ decals:
+ 0: 16,-11
+ 1: 16,-9
+ 2: 16,-8
+ 3: 15,-8
+ 4: 14,-8
+ 5: 13,-8
+ 9: 12,-8
+ 23: 16,-10
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: Dirt
+ decals:
+ 15: 12,-9
+ 16: 12,-10
+ 17: 13,-10
+ 18: 13,-9
+ 19: 14,-9
+ 20: 14,-10
+ 21: 15,-9
+ 22: 15,-10
+ 25: 20,-4
+ - node:
+ cleanable: True
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: Dirt
+ decals:
+ 26: -3,-8
+ 27: -4,-8
+ 28: -4,-9
+ 29: -3,-9
+ 30: -3,-10
+ 31: -4,-10
+ 32: -4,-11
+ 33: -3,-11
+ 34: -2,-11
+ 35: -1,-11
+ 36: -1,-10
+ 37: -2,-10
+ 38: -1,-8
+ 39: -2,-8
+ 40: -1,-7
+ 54: 18,-4
+ 55: 18,-5
+ 56: 19,-5
+ 57: 20,-5
+ 58: 19,-3
+ 59: 19,-4
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: DirtLight
+ decals:
+ 24: 20,-4
+ - node:
+ cleanable: True
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: DirtLight
+ decals:
+ 41: 20,-3
+ 42: 19,-3
+ - node:
+ color: '#334E6D76'
+ id: FullTileOverlayGreyscale
+ decals:
+ 152: -1,-1
+ 153: -1,0
+ 154: -2,0
+ 155: -2,-1
+ 156: -3,-1
+ 157: -3,0
+ 158: -4,0
+ 159: -4,-1
+ 160: -4,-2
+ 161: -3,-2
+ 162: -3,-3
+ 163: -4,-3
+ 164: -4,-4
+ 165: -3,-4
+ 166: -3,-5
+ 167: -4,-5
+ 168: -4,-6
+ 169: -3,-6
+ 170: -2,-6
+ 171: -1,-6
+ 172: -1,-5
+ 173: -2,-5
+ - node:
+ color: '#52B4E93B'
+ id: FullTileOverlayGreyscale
+ decals:
+ 60: 13,-6
+ 61: 16,-6
+ 62: 16,-2
+ 63: 16,-1
+ 64: 16,0
+ 65: 12,-6
+ 66: 11,-6
+ 67: 10,-6
+ 68: 9,-6
+ 69: 7,-6
+ 70: 6,-6
+ 71: 5,-6
+ 72: 4,-6
+ 73: 3,-6
+ 74: 1,-6
+ 75: 1,-5
+ 76: 1,-4
+ 77: 1,-2
+ 78: 1,-1
+ 79: 1,0
+ 80: 3,0
+ 81: 5,0
+ 82: 7,0
+ 83: 8,0
+ 84: 9,0
+ 85: 10,0
+ 86: 11,0
+ 87: 13,0
+ 88: 13,-2
+ 89: 12,-2
+ 90: 11,-2
+ 91: 10,-2
+ 92: 9,-2
+ 93: 7,-2
+ 94: 6,-2
+ 95: 5,-2
+ 96: 4,-2
+ 97: 3,-2
+ 98: 3,-4
+ 99: 4,-4
+ 100: 5,-4
+ 101: 6,-4
+ 102: 7,-4
+ 103: 9,-4
+ 104: 10,-4
+ 105: 11,-4
+ 106: 12,-4
+ 107: 13,-4
+ 108: 16,-4
+ 109: 16,-3
+ - node:
+ color: '#52B4E996'
+ id: MiniTileCheckerAOverlay
+ decals:
+ 174: 9,-9
+ 175: 9,-8
+ 176: 6,-11
+ 177: 6,-10
+ 178: 6,-9
+ 179: 6,-8
+ 180: 8,-11
+ 181: 9,-11
+ - node:
+ zIndex: 1
+ color: '#52B4E996'
+ id: QuarterTileOverlayGreyscale
+ decals:
+ 51: 18,-3
+ 52: 19,-3
+ 53: 20,-3
+ - node:
+ color: '#D4D4D40F'
+ id: QuarterTileOverlayGreyscale
+ decals:
+ 190: 3,-10
+ 192: 3,-9
+ 195: 2,-10
+ - node:
+ zIndex: 1
+ color: '#52B4E996'
+ id: QuarterTileOverlayGreyscale180
+ decals:
+ 43: 20,-5
+ 44: 20,-4
+ 45: 20,-3
+ - node:
+ color: '#D4D4D40F'
+ id: QuarterTileOverlayGreyscale180
+ decals:
+ 186: 3,-10
+ 187: 2,-10
+ 193: 2,-9
+ - node:
+ color: '#D4D4D428'
+ id: QuarterTileOverlayGreyscale180
+ decals:
+ 125: 13,-1
+ 126: 12,-1
+ 127: 11,-1
+ 128: 10,-1
+ 129: 9,-1
+ 130: 7,-1
+ 131: 6,-1
+ 132: 5,-1
+ 133: 3,-1
+ 134: 4,-1
+ 135: 13,-5
+ 136: 12,-5
+ 137: 11,-5
+ 138: 10,-5
+ 139: 9,-5
+ 140: 7,-5
+ 141: 6,-5
+ 142: 5,-5
+ 143: 4,-5
+ 144: 3,-5
+ - node:
+ color: '#D4D4D40F'
+ id: QuarterTileOverlayGreyscale270
+ decals:
+ 196: 2,-9
+ - node:
+ color: '#D4D4D428'
+ id: QuarterTileOverlayGreyscale270
+ decals:
+ 145: 2,-6
+ 146: 2,-5
+ 147: 2,-4
+ 148: 2,-3
+ 149: 2,-2
+ 150: 2,-1
+ 151: 2,0
+ - node:
+ color: '#D4D4D40F'
+ id: QuarterTileOverlayGreyscale90
+ decals:
+ 188: 3,-10
+ 189: 2,-10
+ 191: 3,-9
+ 194: 2,-9
+ - node:
+ zIndex: 1
+ color: '#EFB34196'
+ id: QuarterTileOverlayGreyscale90
+ decals:
+ 46: 20,-5
+ 47: 20,-4
+ 48: 20,-3
+ 49: 19,-3
+ 50: 18,-3
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnLineE
+ decals:
+ 11: 11,-8
+ 12: 11,-9
+ 13: 11,-10
+ 14: 11,-11
+ - node:
+ color: '#EFB34196'
+ id: WarnLineGreyscaleE
+ decals:
+ 185: 16,-5
+ - node:
+ color: '#52B4E996'
+ id: WarnLineGreyscaleS
+ decals:
+ 183: 8,-6
+ - node:
+ color: '#DE3A3A96'
+ id: WarnLineGreyscaleS
+ decals:
+ 182: 2,-6
+ - node:
+ color: '#334E6DC8'
+ id: WarnLineGreyscaleW
+ decals:
+ 184: 1,-3
+ type: DecalGrid
+ - version: 2
+ data:
+ tiles:
+ 0,0:
+ 0: 255
+ 0,-2:
+ 0: 65535
+ 0,-1:
+ 0: 65535
+ 1,0:
+ 0: 255
+ 2,0:
+ 0: 255
+ 3,0:
+ 0: 255
+ 0,-3:
+ 0: 65535
+ 1,-3:
+ 0: 65535
+ 1,-2:
+ 0: 65535
+ 1,-1:
+ 0: 65535
+ 2,-3:
+ 0: 65535
+ 2,-2:
+ 0: 65535
+ 2,-1:
+ 0: 65535
+ 3,-3:
+ 0: 65535
+ 3,-2:
+ 0: 65535
+ 3,-1:
+ 0: 65535
+ -2,-3:
+ 0: 61128
+ -2,-2:
+ 0: 61166
+ -2,-1:
+ 0: 61166
+ -1,-3:
+ 0: 65535
+ -1,-2:
+ 0: 65535
+ -1,-1:
+ 0: 65535
+ -2,0:
+ 0: 140
+ -1,0:
+ 0: 255
+ 4,0:
+ 0: 255
+ 5,0:
+ 0: 119
+ 4,-3:
+ 0: 13107
+ 4,-2:
+ 0: 65535
+ 4,-1:
+ 0: 65535
+ 5,-2:
+ 0: 30583
+ 5,-1:
+ 0: 30583
+ uniqueMixes:
+ - volume: 2500
+ temperature: 293.15
+ moles:
+ - 21.824879
+ - 82.10312
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ chunkSize: 4
+ type: GridAtmosphere
+ - type: GasTileOverlay
+ - type: RadiationGridResistance
+ - shakeTimes: 10
+ type: GravityShake
+- proto: ActionToggleLight
+ entities:
+ - uid: 4
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 3
+ type: Transform
+ - container: 3
+ type: InstantAction
+ - uid: 5
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 3
+ type: Transform
+ - container: 3
+ type: InstantAction
+ - uid: 12
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 11
+ type: Transform
+ - container: 11
+ type: InstantAction
+ - uid: 13
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 11
+ type: Transform
+ - container: 11
+ type: InstantAction
+ - uid: 22
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 21
+ type: Transform
+ - container: 21
+ type: InstantAction
+ - uid: 23
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 21
+ type: Transform
+ - container: 21
+ type: InstantAction
+ - uid: 32
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 31
+ type: Transform
+ - container: 31
+ type: InstantAction
+ - uid: 33
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 31
+ type: Transform
+ - container: 31
+ type: InstantAction
+ - uid: 42
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 41
+ type: Transform
+ - container: 41
+ type: InstantAction
+ - uid: 43
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 41
+ type: Transform
+ - container: 41
+ type: InstantAction
+- proto: ActionToggleSuitPiece
+ entities:
+ - uid: 51
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 50
+ type: Transform
+ - container: 50
+ entIcon: 52
+ type: InstantAction
+- proto: ActionVendingThrow
+ entities:
+ - uid: 54
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 53
+ type: Transform
+ - container: 53
+ type: InstantAction
+- proto: AirCanister
+ entities:
+ - uid: 55
+ components:
+ - pos: 20.5,-1.5
+ parent: 1
+ type: Transform
+- proto: AirlockCommandGlassLocked
+ entities:
+ - uid: 56
+ components:
+ - pos: 0.5,-2.5
+ parent: 1
+ type: Transform
+ - wiresAccessible: False
+ examine: wires-panel-component-on-examine-security-level2
+ type: WiresPanelSecurity
+ - node: medSecurity
+ type: Construction
+ - containers:
+ board: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 57
+ type: ContainerContainer
+ - address: 2A91-A774
+ receiveFrequency: 1280
+ type: DeviceNetwork
+- proto: AirlockCommandLocked
+ entities:
+ - uid: 58
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -0.5,-6.5
+ parent: 1
+ type: Transform
+ - wiresAccessible: False
+ examine: wires-panel-component-on-examine-security-level2
+ type: WiresPanelSecurity
+ - containers:
+ board: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 59
+ type: ContainerContainer
+ - address: 09A1-F0F3
+ receiveFrequency: 1280
+ type: DeviceNetwork
+ - node: medSecurity
+ type: Construction
+- proto: AirlockEngineering
+ entities:
+ - uid: 60
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 17.5,-4.5
+ parent: 1
+ type: Transform
+ - containers:
+ board: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 61
+ type: ContainerContainer
+ - address: 4FEE-86F1
+ receiveFrequency: 1280
+ type: DeviceNetwork
+- proto: AirlockExternalGlassShuttleEmergencyLocked
+ entities:
+ - uid: 62
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 6.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 63
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 4.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 64
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 14.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 65
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 12.5,1.5
+ parent: 1
+ type: Transform
+- proto: AirlockExternalLocked
+ entities:
+ - uid: 66
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -2.5,-11.5
+ parent: 1
+ type: Transform
+ - containers:
+ board: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 67
+ type: ContainerContainer
+ - address: 0D21-E7E9
+ receiveFrequency: 1280
+ type: DeviceNetwork
+ - uid: 68
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -1.5,-11.5
+ parent: 1
+ type: Transform
+ - containers:
+ board: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 69
+ type: ContainerContainer
+ - address: 3595-DBFB
+ receiveFrequency: 1280
+ type: DeviceNetwork
+ - uid: 70
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -1.5,-7.5
+ parent: 1
+ type: Transform
+ - containers:
+ board: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 71
+ type: ContainerContainer
+ - address: 2ECB-DFE5
+ receiveFrequency: 1280
+ type: DeviceNetwork
+- proto: AirlockGlass
+ entities:
+ - uid: 72
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 14.5,-6.5
+ parent: 1
+ type: Transform
+ - containers:
+ board: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 73
+ type: ContainerContainer
+ - address: 0F08-53AC
+ receiveFrequency: 1280
+ type: DeviceNetwork
+ - uid: 74
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 15.5,-6.5
+ parent: 1
+ type: Transform
+ - containers:
+ board: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 75
+ type: ContainerContainer
+ - address: 2CB4-0D0E
+ receiveFrequency: 1280
+ type: DeviceNetwork
+- proto: AirlockMedicalGlass
+ entities:
+ - uid: 76
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 8.5,-6.5
+ parent: 1
+ type: Transform
+ - containers:
+ board: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 77
+ type: ContainerContainer
+ - address: 0B07-5B7E
+ receiveFrequency: 1280
+ type: DeviceNetwork
+ - uid: 78
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 10.5,-9.5
+ parent: 1
+ type: Transform
+ - containers:
+ board: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 79
+ type: ContainerContainer
+ - address: 7B62-0AF6
+ receiveFrequency: 1280
+ type: DeviceNetwork
+- proto: AirlockSecurityGlassLocked
+ entities:
+ - uid: 80
+ components:
+ - pos: 2.5,-6.5
+ parent: 1
+ type: Transform
+ - containers:
+ board: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 81
+ type: ContainerContainer
+ - address: 40EA-C9E8
+ receiveFrequency: 1280
+ type: DeviceNetwork
+- proto: AirTankFilled
+ entities:
+ - uid: 82
+ components:
+ - pos: 13.43661,-10.339949
+ parent: 1
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 83
+ components:
+ - pos: 13.62411,-10.621016
+ parent: 1
+ type: Transform
+ - canCollide: False
+ type: Physics
+- proto: AlertsComputerCircuitboard
+ entities:
+ - uid: 85
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 84
+ type: Transform
+ - canCollide: False
+ type: Physics
+- proto: AntiPoisonMedipen
+ entities:
+ - uid: 87
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 86
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 101
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 100
+ type: Transform
+ - canCollide: False
+ type: Physics
+- proto: APCHighCapacity
+ entities:
+ - uid: 114
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 21.5,-3.5
+ parent: 1
+ type: Transform
+ - lastExternalState: Low
+ lastChargeState: Full
+ type: Apc
+ - loadingNetworkDemand: 18077
+ currentReceiving: 18076.947
+ currentSupply: 18077
+ supplyRampPosition: 0.052734375
+ type: PowerNetworkBattery
+- proto: AtmosDeviceFanTiny
+ entities:
+ - uid: 928
+ components:
+ - pos: 14.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 929
+ components:
+ - pos: 12.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 930
+ components:
+ - pos: 6.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 931
+ components:
+ - pos: 4.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 932
+ components:
+ - pos: -1.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 933
+ components:
+ - pos: -2.5,-11.5
+ parent: 1
+ type: Transform
+- proto: BedsheetMedical
+ entities:
+ - uid: 115
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 6.5,-9.5
+ parent: 1
+ type: Transform
+ - canCollide: False
+ type: Physics
+- proto: BookEscalationSecurity
+ entities:
+ - uid: 116
+ components:
+ - pos: 1.4369144,-10.349905
+ parent: 1
+ type: Transform
+ - content: >-
+ Get it right and you'll have the whole station calling you shitsec. Get it wrong and you'll face harmbatoning from the gods. Personally, I always aim for the former...
+
+
+ They say the pen is mightier than the sword, but you don't have a sword, you have a stun baton, and as soon as you start writing, any suspect is going to leave.
+
+
+ So, try starting your confrontations with words. It probably won't get you called shitsec, but it's also not likely to be very effective against someone with lethal intent.
+
+
+ Your next move should be to use non-lethal or less lethal devices, like stun batons, disablers, flashes, and flashbangs. Just make sure you get some training on these before trying to use them - offering them to a suspect in exchange for their cooperation is not an effective use of these tools.
+
+
+ If you're lucky enough to run into a suspect who is a lethal threat, it's time to bust out all the goodies you've been hoarding from the armory.
+
+
+ For an extra intimidation factor, take your robusted suspects to the medbay to be healed instead of the brig. That way, the whole crew can see just how robust you are.
+ type: Paper
+ - canCollide: False
+ type: Physics
+- proto: BorgCharger
+ entities:
+ - uid: 117
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 16.5,-7.5
+ parent: 1
+ type: Transform
+ - chargeRate: 30
+ type: Charger
+ - air:
+ volume: 200
+ immutable: False
+ temperature: 293.14963
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ type: EntityStorage
+ - containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
+ machine_board: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 118
+ machine_parts: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 120
+ - 121
+ - 119
+ type: ContainerContainer
+ - powerLoad: 0
+ type: ApcPowerReceiver
+- proto: BorgChargerCircuitboard
+ entities:
+ - uid: 118
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 117
+ type: Transform
+ - canCollide: False
+ type: Physics
+- proto: BoxFolderBlue
+ entities:
+ - uid: 122
+ components:
+ - pos: -1.5,-5.5
+ parent: 1
+ type: Transform
+ - containers:
+ storagebase: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 123
+ - 124
+ type: ContainerContainer
+ - canCollide: False
+ type: Physics
+- proto: BoxFolderClipboard
+ entities:
+ - uid: 125
+ components:
+ - pos: 16.361774,-5.489992
+ parent: 1
+ type: Transform
+ - containers:
+ storagebase: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 126
+ - 128
+ - 127
+ pen_slot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ type: ContainerContainer
+ - canCollide: False
+ type: Physics
+- proto: BoxFolderRed
+ entities:
+ - uid: 129
+ components:
+ - pos: 1.6712894,-10.412405
+ parent: 1
+ type: Transform
+ - containers:
+ storagebase: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 130
+ - 131
+ type: ContainerContainer
+ - canCollide: False
+ type: Physics
+- proto: BoxHandcuff
+ entities:
+ - uid: 132
+ components:
+ - pos: 4.5,-10.5
+ parent: 1
+ type: Transform
+ - containers:
+ storagebase: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 133
+ - 134
+ - 135
+ - 136
+ type: ContainerContainer
+ - canCollide: False
+ type: Physics
+- proto: Brutepack
+ entities:
+ - uid: 138
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 137
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 148
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 147
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 158
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 157
+ type: Transform
+ - canCollide: False
+ type: Physics
+- proto: CableApcExtension
+ entities:
+ - uid: 167
+ components:
+ - pos: 20.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 168
+ components:
+ - pos: 19.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 169
+ components:
+ - pos: 21.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 170
+ components:
+ - pos: 19.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 171
+ components:
+ - pos: 19.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 172
+ components:
+ - pos: 20.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 173
+ components:
+ - pos: 19.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 174
+ components:
+ - pos: 20.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 175
+ components:
+ - pos: 19.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 176
+ components:
+ - pos: 18.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 177
+ components:
+ - pos: 17.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 178
+ components:
+ - pos: 16.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 179
+ components:
+ - pos: 15.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 180
+ components:
+ - pos: 15.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 181
+ components:
+ - pos: 15.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 182
+ components:
+ - pos: 15.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 183
+ components:
+ - pos: 15.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 184
+ components:
+ - pos: 14.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 185
+ components:
+ - pos: 13.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 186
+ components:
+ - pos: 12.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 187
+ components:
+ - pos: 11.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 188
+ components:
+ - pos: 10.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 189
+ components:
+ - pos: 4.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 190
+ components:
+ - pos: 9.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 191
+ components:
+ - pos: 8.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 192
+ components:
+ - pos: 6.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 193
+ components:
+ - pos: 5.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 194
+ components:
+ - pos: 7.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 195
+ components:
+ - pos: 3.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 196
+ components:
+ - pos: 2.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 197
+ components:
+ - pos: 2.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 198
+ components:
+ - pos: 2.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 199
+ components:
+ - pos: 1.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 200
+ components:
+ - pos: 0.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 201
+ components:
+ - pos: 2.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 202
+ components:
+ - pos: 2.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 203
+ components:
+ - pos: 2.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 204
+ components:
+ - pos: 2.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 205
+ components:
+ - pos: 2.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 206
+ components:
+ - pos: 2.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 207
+ components:
+ - pos: 2.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 208
+ components:
+ - pos: 2.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 209
+ components:
+ - pos: 14.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 210
+ components:
+ - pos: 13.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 211
+ components:
+ - pos: 12.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 212
+ components:
+ - pos: 10.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 213
+ components:
+ - pos: 11.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 214
+ components:
+ - pos: 9.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 215
+ components:
+ - pos: 8.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 216
+ components:
+ - pos: 8.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 217
+ components:
+ - pos: 8.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 218
+ components:
+ - pos: 8.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 219
+ components:
+ - pos: 8.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 220
+ components:
+ - pos: 15.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 221
+ components:
+ - pos: 15.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 222
+ components:
+ - pos: 15.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 223
+ components:
+ - pos: 15.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 224
+ components:
+ - pos: 15.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 225
+ components:
+ - pos: 14.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 226
+ components:
+ - pos: 13.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 227
+ components:
+ - pos: 8.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 228
+ components:
+ - pos: -0.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 229
+ components:
+ - pos: -1.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 230
+ components:
+ - pos: -1.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 231
+ components:
+ - pos: -1.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 232
+ components:
+ - pos: -1.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 233
+ components:
+ - pos: -0.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 234
+ components:
+ - pos: -0.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 235
+ components:
+ - pos: -0.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 236
+ components:
+ - pos: -2.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 237
+ components:
+ - pos: -2.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 238
+ components:
+ - pos: -0.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 239
+ components:
+ - pos: -1.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 240
+ components:
+ - pos: -2.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 241
+ components:
+ - pos: -3.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 242
+ components:
+ - pos: -3.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 912
+ components:
+ - pos: -3.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 913
+ components:
+ - pos: -3.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 914
+ components:
+ - pos: -3.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 915
+ components:
+ - pos: -2.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 916
+ components:
+ - pos: -1.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 917
+ components:
+ - pos: -1.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 918
+ components:
+ - pos: -3.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 919
+ components:
+ - pos: -3.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 920
+ components:
+ - pos: -3.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 921
+ components:
+ - pos: 12.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 922
+ components:
+ - pos: -3.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 923
+ components:
+ - pos: -3.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 924
+ components:
+ - pos: -3.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 925
+ components:
+ - pos: -1.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 935
+ components:
+ - pos: 20.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 936
+ components:
+ - pos: 20.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 937
+ components:
+ - pos: 20.5,-6.5
+ parent: 1
+ type: Transform
+- proto: CableApcStack1
+ entities:
+ - uid: 119
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 117
+ type: Transform
+ - count: 5
+ type: Stack
+ - canCollide: False
+ type: Physics
+ - uid: 244
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 243
+ type: Transform
+ - count: 3
+ type: Stack
+ - canCollide: False
+ type: Physics
+ - uid: 250
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 249
+ type: Transform
+ - count: 3
+ type: Stack
+ - canCollide: False
+ type: Physics
+- proto: CableApcStack10
+ entities:
+ - uid: 256
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 255
+ type: Transform
+ - canCollide: False
+ type: Physics
+- proto: CableHV
+ entities:
+ - uid: 263
+ components:
+ - pos: 18.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 264
+ components:
+ - pos: 18.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 265
+ components:
+ - pos: 17.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 266
+ components:
+ - pos: 18.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 341
+ components:
+ - pos: 19.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 342
+ components:
+ - pos: 20.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 343
+ components:
+ - pos: 21.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 344
+ components:
+ - pos: 21.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 345
+ components:
+ - pos: 20.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 346
+ components:
+ - pos: 19.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 347
+ components:
+ - pos: 19.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 348
+ components:
+ - pos: 19.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 352
+ components:
+ - pos: 20.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 718
+ components:
+ - pos: 20.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 719
+ components:
+ - pos: 21.5,0.5
+ parent: 1
+ type: Transform
+- proto: CableHVStack1
+ entities:
+ - uid: 268
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 267
+ type: Transform
+ - count: 5
+ type: Stack
+ - canCollide: False
+ type: Physics
+ - uid: 280
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 279
+ type: Transform
+ - count: 10
+ type: Stack
+ - canCollide: False
+ type: Physics
+ - uid: 288
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 287
+ type: Transform
+ - count: 5
+ type: Stack
+ - canCollide: False
+ type: Physics
+- proto: CableHVStack10
+ entities:
+ - uid: 257
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 255
+ type: Transform
+ - canCollide: False
+ type: Physics
+- proto: CableMV
+ entities:
+ - uid: 293
+ components:
+ - pos: 19.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 294
+ components:
+ - pos: 19.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 295
+ components:
+ - pos: 18.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 296
+ components:
+ - pos: 19.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 297
+ components:
+ - pos: 19.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 298
+ components:
+ - pos: 19.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 299
+ components:
+ - pos: 20.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 300
+ components:
+ - pos: 21.5,-3.5
+ parent: 1
+ type: Transform
+- proto: CableMVStack1
+ entities:
+ - uid: 289
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 287
+ type: Transform
+ - count: 5
+ type: Stack
+ - canCollide: False
+ type: Physics
+ - uid: 302
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 301
+ type: Transform
+ - count: 5
+ type: Stack
+ - canCollide: False
+ type: Physics
+ - uid: 307
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 306
+ type: Transform
+ - count: 5
+ type: Stack
+ - canCollide: False
+ type: Physics
+- proto: CableMVStack10
+ entities:
+ - uid: 258
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 255
+ type: Transform
+ - canCollide: False
+ type: Physics
+- proto: CableTerminal
+ entities:
+ - uid: 311
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 18.5,-1.5
+ parent: 1
+ type: Transform
+- proto: CapacitorStockPart
+ entities:
+ - uid: 120
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 117
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 121
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 117
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 245
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 243
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 251
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 249
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 269
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 267
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 270
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 267
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 271
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 267
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 272
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 267
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 281
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 279
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 290
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 287
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 303
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 301
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 304
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 301
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 308
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 306
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 309
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 306
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 313
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 312
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 319
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 318
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 320
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 318
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 321
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 318
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 322
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 318
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 326
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 325
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 327
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 325
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 328
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 325
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 329
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 325
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 333
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 332
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 334
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 332
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 335
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 332
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 336
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 332
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 354
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 353
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 355
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 353
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 356
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 353
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 357
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 353
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 361
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 360
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 362
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 360
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 363
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 360
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 364
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 360
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 368
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 367
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 369
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 367
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 370
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 367
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 371
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 367
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 375
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 374
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 376
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 374
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 377
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 374
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 378
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 374
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 382
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 381
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 383
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 381
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 384
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 381
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 385
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 381
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 389
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 388
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 390
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 388
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 391
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 388
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 392
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 388
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 396
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 395
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 397
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 395
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 398
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 395
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 399
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 395
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 403
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 402
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 404
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 402
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 405
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 402
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 406
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 402
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 410
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 409
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 411
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 409
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 412
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 409
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 413
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 409
+ type: Transform
+ - canCollide: False
+ type: Physics
+- proto: Catwalk
+ entities:
+ - uid: 416
+ components:
+ - pos: 19.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 418
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 19.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 421
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 19.5,0.5
+ parent: 1
+ type: Transform
+- proto: Cautery
+ entities:
+ - uid: 423
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 422
+ type: Transform
+ - canCollide: False
+ type: Physics
+- proto: Chair
+ entities:
+ - uid: 429
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -3.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 430
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -3.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 431
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -3.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 432
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 18.5,-3.5
+ parent: 1
+ type: Transform
+- proto: ChairOfficeDark
+ entities:
+ - uid: 433
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -2.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 434
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -2.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 435
+ components:
+ - pos: -2.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 436
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -1.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 437
+ components:
+ - pos: -1.5,-4.5
+ parent: 1
+ type: Transform
+- proto: ChairPilotSeat
+ entities:
+ - uid: 438
+ components:
+ - pos: 3.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 439
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 1.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 440
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 1.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 441
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 1.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 442
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 4.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 443
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 4.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 444
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 4.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 445
+ components:
+ - pos: 3.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 446
+ components:
+ - pos: 4.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 447
+ components:
+ - pos: 5.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 448
+ components:
+ - pos: 6.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 449
+ components:
+ - pos: 7.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 450
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 3.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 451
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 4.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 452
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 5.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 453
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 6.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 454
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 7.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 455
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 3.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 456
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 4.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 457
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 5.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 458
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 6.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 459
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 7.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 460
+ components:
+ - pos: 3.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 461
+ components:
+ - pos: 5.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 462
+ components:
+ - pos: 7.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 463
+ components:
+ - pos: 8.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 464
+ components:
+ - pos: 9.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 465
+ components:
+ - pos: 10.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 466
+ components:
+ - pos: 13.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 467
+ components:
+ - pos: 11.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 468
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 13.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 469
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 12.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 470
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 11.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 471
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 10.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 472
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 9.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 473
+ components:
+ - pos: 9.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 474
+ components:
+ - pos: 10.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 475
+ components:
+ - pos: 11.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 476
+ components:
+ - pos: 12.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 477
+ components:
+ - pos: 13.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 478
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 9.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 479
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 10.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 480
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 11.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 481
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 13.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 482
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 12.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 938
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 16.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 939
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 16.5,-2.5
+ parent: 1
+ type: Transform
+- proto: CigaretteSpent
+ entities:
+ - uid: 483
+ components:
+ - pos: 12.505651,-8.597181
+ parent: 1
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 484
+ components:
+ - pos: 14.505651,-9.519056
+ parent: 1
+ type: Transform
+ - canCollide: False
+ type: Physics
+- proto: CigarSpent
+ entities:
+ - uid: 485
+ components:
+ - pos: -3.3704243,0.4654863
+ parent: 1
+ type: Transform
+ - canCollide: False
+ type: Physics
+- proto: ClosetEmergencyFilledRandom
+ entities:
+ - uid: 940
+ components:
+ - pos: 1.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 941
+ components:
+ - pos: 1.5,0.5
+ parent: 1
+ type: Transform
+- proto: ClosetFireFilled
+ entities:
+ - uid: 2
+ components:
+ - pos: 12.5,-10.5
+ parent: 1
+ type: Transform
+ - air:
+ volume: 200
+ immutable: False
+ temperature: 293.14963
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ type: EntityStorage
+ - containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 8
+ - 3
+ - 7
+ - 9
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ type: ContainerContainer
+ - uid: 942
+ components:
+ - pos: 1.5,-0.5
+ parent: 1
+ type: Transform
+- proto: ClothingBackpackDuffelSurgeryFilled
+ entities:
+ - uid: 422
+ components:
+ - pos: 6.4869747,-10.358768
+ parent: 1
+ type: Transform
+ - containers:
+ storagebase: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 425
+ - 427
+ - 424
+ - 423
+ - 426
+ - 428
+ type: ContainerContainer
+ - canCollide: False
+ type: Physics
+- proto: ClothingHeadHelmetEVALarge
+ entities:
+ - uid: 52
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 50
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - type: AttachedClothing
+ - uid: 487
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 486
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - type: InsideEntityStorage
+ - uid: 493
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 492
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - type: InsideEntityStorage
+- proto: ClothingHeadHelmetFire
+ entities:
+ - uid: 3
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 2
+ type: Transform
+ - selfToggleActionEntity: 5
+ toggleActionEntity: 4
+ type: HandheldLight
+ - containers:
+ cell_slot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: 6
+ actions: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 4
+ - 5
+ type: ContainerContainer
+ - canCollide: False
+ type: Physics
+ - type: ActionsContainer
+ - actions:
+ - 5
+ type: Actions
+ - type: InsideEntityStorage
+- proto: ClothingMaskBreath
+ entities:
+ - uid: 15
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 10
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 16
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 10
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 25
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 20
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 26
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 20
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 35
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 30
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 36
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 30
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 45
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 40
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 46
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 40
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 488
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 486
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - type: InsideEntityStorage
+ - uid: 494
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 492
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - type: InsideEntityStorage
+- proto: ClothingMaskBreathMedical
+ entities:
+ - uid: 500
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 499
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 514
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 513
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 527
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 526
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 540
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 539
+ type: Transform
+ - canCollide: False
+ type: Physics
+- proto: ClothingMaskGas
+ entities:
+ - uid: 7
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 2
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - type: InsideEntityStorage
+ - uid: 552
+ components:
+ - pos: 11.295792,-10.300869
+ parent: 1
+ type: Transform
+ - canCollide: False
+ type: Physics
+- proto: ClothingOuterHardsuitEVA
+ entities:
+ - uid: 489
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 486
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - type: InsideEntityStorage
+ - uid: 495
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 492
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - type: InsideEntityStorage
+- proto: ClothingOuterSuitEmergency
+ entities:
+ - uid: 50
+ components:
+ - pos: 11.467667,-10.363369
+ parent: 1
+ type: Transform
+ - clothingUid: 52
+ actionEntity: 51
+ type: ToggleableClothing
+ - containers:
+ toggleable-clothing: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: 52
+ actions: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 51
+ type: ContainerContainer
+ - canCollide: False
+ type: Physics
+ - type: ActionsContainer
+- proto: ClothingOuterSuitFire
+ entities:
+ - uid: 8
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 2
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - type: InsideEntityStorage
+- proto: CommsComputerCircuitboard
+ entities:
+ - uid: 554
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 553
+ type: Transform
+ - canCollide: False
+ type: Physics
+- proto: ComputerAlert
+ entities:
+ - uid: 84
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -3.5,-3.5
+ parent: 1
+ type: Transform
+ - containers:
+ board: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 85
+ type: ContainerContainer
+- proto: ComputerComms
+ entities:
+ - uid: 553
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -3.5,-1.5
+ parent: 1
+ type: Transform
+ - containers:
+ board: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 554
+ type: ContainerContainer
+- proto: ComputerCrewMonitoring
+ entities:
+ - uid: 555
+ components:
+ - pos: -2.5,0.5
+ parent: 1
+ type: Transform
+ - address: 6B96-B352
+ receiveFrequency: 1261
+ type: DeviceNetwork
+ - containers:
+ board: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 556
+ type: ContainerContainer
+- proto: ComputerEmergencyShuttle
+ entities:
+ - uid: 557
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -3.5,-2.5
+ parent: 1
+ type: Transform
+- proto: ComputerSurveillanceWirelessCameraMonitor
+ entities:
+ - uid: 558
+ components:
+ - pos: -1.5,0.5
+ parent: 1
+ type: Transform
+ - address: 367E-5A03
+ transmitFrequency: 1926
+ receiveFrequency: 1926
+ type: DeviceNetwork
+ - containers:
+ board: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 559
+ type: ContainerContainer
+- proto: CrateEmergencyO2Kit
+ entities:
+ - uid: 498
+ components:
+ - pos: 16.5,0.5
+ parent: 1
+ type: Transform
+ - air:
+ volume: 200
+ immutable: False
+ temperature: 293.14963
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ type: EntityStorage
+ - containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 499
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ type: ContainerContainer
+ - uid: 512
+ components:
+ - pos: 16.5,-1.5
+ parent: 1
+ type: Transform
+ - air:
+ volume: 200
+ immutable: False
+ temperature: 293.14963
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ type: EntityStorage
+ - containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 513
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ type: ContainerContainer
+- proto: CrewMonitoringComputerCircuitboard
+ entities:
+ - uid: 556
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 555
+ type: Transform
+ - canCollide: False
+ type: Physics
+- proto: Crowbar
+ entities:
+ - uid: 259
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 255
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 560
+ components:
+ - pos: 11.5,-7.5
+ parent: 1
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 562
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 561
+ type: Transform
+ - canCollide: False
+ type: Physics
+- proto: CrowbarRed
+ entities:
+ - uid: 17
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 10
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 27
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 20
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 37
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 30
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 47
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 40
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 566
+ components:
+ - pos: 14.721149,-10.661867
+ parent: 1
+ type: Transform
+ - canCollide: False
+ type: Physics
+- proto: Defibrillator
+ entities:
+ - uid: 567
+ components:
+ - pos: 6.5,-7.5
+ parent: 1
+ type: Transform
+ - canUse: True
+ canDraw: True
+ type: PowerCellDraw
+ - canCollide: False
+ type: Physics
+ - containers:
+ cell_slot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: 568
+ type: ContainerContainer
+- proto: DoorElectronics
+ entities:
+ - uid: 57
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 56
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 59
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 58
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 61
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 60
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 67
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 66
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 69
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 68
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 71
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 70
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 73
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 72
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 75
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 74
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 77
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 76
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 79
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 78
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 81
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 80
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 570
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 569
+ type: Transform
+ - canCollide: False
+ type: Physics
+- proto: DoubleEmergencyOxygenTankFilled
+ entities:
+ - uid: 571
+ components:
+ - pos: 11.655167,-10.503994
+ parent: 1
+ type: Transform
+ - canCollide: False
+ type: Physics
+- proto: Drill
+ entities:
+ - uid: 424
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 422
+ type: Transform
+ - canCollide: False
+ type: Physics
+- proto: EmergencyLight
+ entities:
+ - uid: 572
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 1.5,-8.5
+ parent: 1
+ type: Transform
+ - startingCharge: 19730.242
+ type: Battery
+ - type: ActiveEmergencyLight
+ - uid: 573
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 4.5,-1.5
+ parent: 1
+ type: Transform
+ - startingCharge: 19730.242
+ type: Battery
+ - type: ActiveEmergencyLight
+ - uid: 574
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 10.5,-5.5
+ parent: 1
+ type: Transform
+ - startingCharge: 19730.242
+ type: Battery
+ - type: ActiveEmergencyLight
+ - uid: 575
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -3.5,-5.5
+ parent: 1
+ type: Transform
+ - startingCharge: 19730.242
+ type: Battery
+ - type: ActiveEmergencyLight
+ - uid: 576
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 9.5,-7.5
+ parent: 1
+ type: Transform
+ - startingCharge: 19730.242
+ type: Battery
+ - type: ActiveEmergencyLight
+ - uid: 577
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 16.5,-10.5
+ parent: 1
+ type: Transform
+ - startingCharge: 19730.242
+ type: Battery
+ - type: ActiveEmergencyLight
+ - uid: 578
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 19.5,-4.5
+ parent: 1
+ type: Transform
+ - startingCharge: 19730.242
+ type: Battery
+ - type: ActiveEmergencyLight
+- proto: EmergencyMedipen
+ entities:
+ - uid: 501
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 499
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 515
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 513
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 528
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 526
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 541
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 539
+ type: Transform
+ - canCollide: False
+ type: Physics
+- proto: EmergencyOxygenTankFilled
+ entities:
+ - uid: 502
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 499
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 516
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 513
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 529
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 526
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 542
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 539
+ type: Transform
+ - canCollide: False
+ type: Physics
+- proto: EpinephrineChemistryBottle
+ entities:
+ - uid: 579
+ components:
+ - pos: 6.5416865,-8.488731
+ parent: 1
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 580
+ components:
+ - pos: 6.7847424,-8.481787
+ parent: 1
+ type: Transform
+ - canCollide: False
+ type: Physics
+- proto: ExtinguisherCabinetFilled
+ entities:
+ - uid: 419
+ components:
+ - pos: 10.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 420
+ components:
+ - pos: 6.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 700
+ components:
+ - pos: 13.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 850
+ components:
+ - pos: -1.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 851
+ components:
+ - pos: -3.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 865
+ components:
+ - pos: 12.5,-11.5
+ parent: 1
+ type: Transform
+- proto: Flare
+ entities:
+ - uid: 581
+ components:
+ - pos: 16.72115,-10.208742
+ parent: 1
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 582
+ components:
+ - rot: 4.510439612204209E-05 rad
+ pos: 16.735214,-10.505617
+ parent: 1
+ type: Transform
+ - canCollide: False
+ type: Physics
+- proto: FlashlightLantern
+ entities:
+ - uid: 11
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 10
+ type: Transform
+ - selfToggleActionEntity: 13
+ toggleActionEntity: 12
+ type: HandheldLight
+ - containers:
+ cell_slot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: 14
+ actions: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 12
+ - 13
+ type: ContainerContainer
+ - canCollide: False
+ type: Physics
+ - type: ActionsContainer
+ - actions:
+ - 13
+ type: Actions
+ - uid: 21
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 20
+ type: Transform
+ - selfToggleActionEntity: 23
+ toggleActionEntity: 22
+ type: HandheldLight
+ - containers:
+ cell_slot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: 24
+ actions: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 22
+ - 23
+ type: ContainerContainer
+ - canCollide: False
+ type: Physics
+ - type: ActionsContainer
+ - actions:
+ - 23
+ type: Actions
+ - uid: 31
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 30
+ type: Transform
+ - selfToggleActionEntity: 33
+ toggleActionEntity: 32
+ type: HandheldLight
+ - containers:
+ cell_slot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: 34
+ actions: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 32
+ - 33
+ type: ContainerContainer
+ - canCollide: False
+ type: Physics
+ - type: ActionsContainer
+ - actions:
+ - 33
+ type: Actions
+ - uid: 41
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 40
+ type: Transform
+ - selfToggleActionEntity: 43
+ toggleActionEntity: 42
+ type: HandheldLight
+ - containers:
+ cell_slot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: 44
+ actions: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 42
+ - 43
+ type: ContainerContainer
+ - canCollide: False
+ type: Physics
+ - type: ActionsContainer
+ - actions:
+ - 43
+ type: Actions
+- proto: FoodBoxDonut
+ entities:
+ - uid: 583
+ components:
+ - pos: -3.5110493,-0.3001387
+ parent: 1
+ type: Transform
+ - containers:
+ storagebase: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 584
+ - 585
+ - 586
+ - 587
+ - 588
+ - 589
+ type: ContainerContainer
+ - canCollide: False
+ type: Physics
+- proto: FoodDonutPink
+ entities:
+ - uid: 584
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 583
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 585
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 583
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 586
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 583
+ type: Transform
+ - canCollide: False
+ type: Physics
+- proto: FoodDonutPlain
+ entities:
+ - uid: 587
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 583
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 588
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 583
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 589
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 583
+ type: Transform
+ - canCollide: False
+ type: Physics
+- proto: FoodSnackChocolate
+ entities:
+ - uid: 18
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 10
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 19
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 10
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 28
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 20
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 29
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 20
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 38
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 30
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 48
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 40
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 49
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 40
+ type: Transform
+ - canCollide: False
+ type: Physics
+- proto: GasOutletInjector
+ entities:
+ - uid: 590
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 20.5,-6.5
+ parent: 1
+ type: Transform
+- proto: GasPassiveVent
+ entities:
+ - uid: 591
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 18.5,-6.5
+ parent: 1
+ type: Transform
+- proto: GasPipeBend
+ entities:
+ - uid: 592
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 19.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 593
+ components:
+ - pos: 20.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 594
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 19.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 595
+ components:
+ - pos: 18.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 596
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 8.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 597
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 2.5,-0.5
+ parent: 1
+ type: Transform
+- proto: GasPipeStraight
+ entities:
+ - uid: 598
+ components:
+ - pos: 20.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 599
+ components:
+ - pos: 20.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 600
+ components:
+ - pos: 19.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 601
+ components:
+ - pos: 18.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 602
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 17.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 603
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 16.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 604
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 14.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 605
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 13.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 606
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 12.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 607
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 15.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 608
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 15.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 609
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 15.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 610
+ components:
+ - pos: 8.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 611
+ components:
+ - pos: 8.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 612
+ components:
+ - pos: 8.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 613
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 7.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 614
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 6.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 615
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 5.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 616
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 4.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 617
+ components:
+ - pos: 2.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 618
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 3.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 619
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 2.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 620
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 2.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 621
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 2.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 622
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 1.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 623
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 0.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 624
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -0.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 625
+ components:
+ - pos: 2.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 626
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 3.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 627
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 4.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 628
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 9.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 629
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 10.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 630
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 11.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 631
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 8.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 632
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 15.5,-8.5
+ parent: 1
+ type: Transform
+- proto: GasPipeTJunction
+ entities:
+ - uid: 633
+ components:
+ - pos: 15.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 634
+ components:
+ - pos: 8.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 635
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 2.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 636
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 2.5,-2.5
+ parent: 1
+ type: Transform
+- proto: GasPort
+ entities:
+ - uid: 637
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 20.5,-1.5
+ parent: 1
+ type: Transform
+- proto: GasVentPump
+ entities:
+ - uid: 638
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 15.5,-9.5
+ parent: 1
+ type: Transform
+ - address: VNT-59EB-816D
+ transmitFrequency: 1621
+ receiveFrequency: 1621
+ type: DeviceNetwork
+ - gasThresholds:
+ Oxygen:
+ lowerWarnAround:
+ threshold: 1.5
+ enabled: True
+ upperWarnAround:
+ threshold: 0
+ enabled: False
+ lowerBound:
+ threshold: 0.1
+ enabled: True
+ upperBound:
+ threshold: 0
+ enabled: False
+ ignore: False
+ Nitrogen:
+ lowerWarnAround:
+ threshold: 0
+ enabled: False
+ upperWarnAround:
+ threshold: 0
+ enabled: False
+ lowerBound:
+ threshold: 0
+ enabled: False
+ upperBound:
+ threshold: 0
+ enabled: False
+ ignore: True
+ CarbonDioxide:
+ lowerWarnAround:
+ threshold: 0
+ enabled: False
+ upperWarnAround:
+ threshold: 0.5
+ enabled: True
+ lowerBound:
+ threshold: 0
+ enabled: False
+ upperBound:
+ threshold: 0.0025
+ enabled: True
+ ignore: False
+ Plasma:
+ lowerWarnAround:
+ threshold: 0
+ enabled: False
+ upperWarnAround:
+ threshold: 0
+ enabled: False
+ lowerBound:
+ threshold: 0
+ enabled: False
+ upperBound:
+ threshold: 0.0001
+ enabled: True
+ ignore: False
+ Tritium:
+ lowerWarnAround:
+ threshold: 0
+ enabled: False
+ upperWarnAround:
+ threshold: 0
+ enabled: False
+ lowerBound:
+ threshold: 0
+ enabled: False
+ upperBound:
+ threshold: 0.0001
+ enabled: True
+ ignore: False
+ WaterVapor:
+ lowerWarnAround:
+ threshold: 0
+ enabled: False
+ upperWarnAround:
+ threshold: 0.5
+ enabled: True
+ lowerBound:
+ threshold: 0
+ enabled: False
+ upperBound:
+ threshold: 1.5
+ enabled: True
+ ignore: False
+ Miasma:
+ lowerWarnAround:
+ threshold: 0
+ enabled: False
+ upperWarnAround:
+ threshold: 0.5
+ enabled: True
+ lowerBound:
+ threshold: 0
+ enabled: False
+ upperBound:
+ threshold: 0.05
+ enabled: True
+ ignore: False
+ NitrousOxide:
+ lowerWarnAround:
+ threshold: 0
+ enabled: False
+ upperWarnAround:
+ threshold: 0.5
+ enabled: True
+ lowerBound:
+ threshold: 0
+ enabled: False
+ upperBound:
+ threshold: 0.01
+ enabled: True
+ ignore: False
+ Frezon:
+ lowerWarnAround:
+ threshold: 0
+ enabled: False
+ upperWarnAround:
+ threshold: 0
+ enabled: False
+ lowerBound:
+ threshold: 0
+ enabled: False
+ upperBound:
+ threshold: 0.0001
+ enabled: True
+ ignore: False
+ pressureThreshold:
+ lowerWarnAround:
+ threshold: 2.5
+ enabled: True
+ upperWarnAround:
+ threshold: 0.7
+ enabled: True
+ lowerBound:
+ threshold: 20
+ enabled: True
+ upperBound:
+ threshold: 550
+ enabled: True
+ ignore: False
+ temperatureThreshold:
+ lowerWarnAround:
+ threshold: 1.1
+ enabled: True
+ upperWarnAround:
+ threshold: 0.8
+ enabled: True
+ lowerBound:
+ threshold: 193.15
+ enabled: True
+ upperBound:
+ threshold: 393.15
+ enabled: True
+ ignore: False
+ type: AtmosMonitor
+ - uid: 639
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -1.5,-2.5
+ parent: 1
+ type: Transform
+ - address: VNT-2EF6-FB1D
+ transmitFrequency: 1621
+ receiveFrequency: 1621
+ type: DeviceNetwork
+ - gasThresholds:
+ Oxygen:
+ lowerWarnAround:
+ threshold: 1.5
+ enabled: True
+ upperWarnAround:
+ threshold: 0
+ enabled: False
+ lowerBound:
+ threshold: 0.1
+ enabled: True
+ upperBound:
+ threshold: 0
+ enabled: False
+ ignore: False
+ Nitrogen:
+ lowerWarnAround:
+ threshold: 0
+ enabled: False
+ upperWarnAround:
+ threshold: 0
+ enabled: False
+ lowerBound:
+ threshold: 0
+ enabled: False
+ upperBound:
+ threshold: 0
+ enabled: False
+ ignore: True
+ CarbonDioxide:
+ lowerWarnAround:
+ threshold: 0
+ enabled: False
+ upperWarnAround:
+ threshold: 0.5
+ enabled: True
+ lowerBound:
+ threshold: 0
+ enabled: False
+ upperBound:
+ threshold: 0.0025
+ enabled: True
+ ignore: False
+ Plasma:
+ lowerWarnAround:
+ threshold: 0
+ enabled: False
+ upperWarnAround:
+ threshold: 0
+ enabled: False
+ lowerBound:
+ threshold: 0
+ enabled: False
+ upperBound:
+ threshold: 0.0001
+ enabled: True
+ ignore: False
+ Tritium:
+ lowerWarnAround:
+ threshold: 0
+ enabled: False
+ upperWarnAround:
+ threshold: 0
+ enabled: False
+ lowerBound:
+ threshold: 0
+ enabled: False
+ upperBound:
+ threshold: 0.0001
+ enabled: True
+ ignore: False
+ WaterVapor:
+ lowerWarnAround:
+ threshold: 0
+ enabled: False
+ upperWarnAround:
+ threshold: 0.5
+ enabled: True
+ lowerBound:
+ threshold: 0
+ enabled: False
+ upperBound:
+ threshold: 1.5
+ enabled: True
+ ignore: False
+ Miasma:
+ lowerWarnAround:
+ threshold: 0
+ enabled: False
+ upperWarnAround:
+ threshold: 0.5
+ enabled: True
+ lowerBound:
+ threshold: 0
+ enabled: False
+ upperBound:
+ threshold: 0.05
+ enabled: True
+ ignore: False
+ NitrousOxide:
+ lowerWarnAround:
+ threshold: 0
+ enabled: False
+ upperWarnAround:
+ threshold: 0.5
+ enabled: True
+ lowerBound:
+ threshold: 0
+ enabled: False
+ upperBound:
+ threshold: 0.01
+ enabled: True
+ ignore: False
+ Frezon:
+ lowerWarnAround:
+ threshold: 0
+ enabled: False
+ upperWarnAround:
+ threshold: 0
+ enabled: False
+ lowerBound:
+ threshold: 0
+ enabled: False
+ upperBound:
+ threshold: 0.0001
+ enabled: True
+ ignore: False
+ pressureThreshold:
+ lowerWarnAround:
+ threshold: 2.5
+ enabled: True
+ upperWarnAround:
+ threshold: 0.7
+ enabled: True
+ lowerBound:
+ threshold: 20
+ enabled: True
+ upperBound:
+ threshold: 550
+ enabled: True
+ ignore: False
+ temperatureThreshold:
+ lowerWarnAround:
+ threshold: 1.1
+ enabled: True
+ upperWarnAround:
+ threshold: 0.8
+ enabled: True
+ lowerBound:
+ threshold: 193.15
+ enabled: True
+ upperBound:
+ threshold: 393.15
+ enabled: True
+ ignore: False
+ type: AtmosMonitor
+ - uid: 640
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 2.5,-8.5
+ parent: 1
+ type: Transform
+ - address: VNT-3D86-03B7
+ transmitFrequency: 1621
+ receiveFrequency: 1621
+ type: DeviceNetwork
+ - gasThresholds:
+ Oxygen:
+ lowerWarnAround:
+ threshold: 1.5
+ enabled: True
+ upperWarnAround:
+ threshold: 0
+ enabled: False
+ lowerBound:
+ threshold: 0.1
+ enabled: True
+ upperBound:
+ threshold: 0
+ enabled: False
+ ignore: False
+ Nitrogen:
+ lowerWarnAround:
+ threshold: 0
+ enabled: False
+ upperWarnAround:
+ threshold: 0
+ enabled: False
+ lowerBound:
+ threshold: 0
+ enabled: False
+ upperBound:
+ threshold: 0
+ enabled: False
+ ignore: True
+ CarbonDioxide:
+ lowerWarnAround:
+ threshold: 0
+ enabled: False
+ upperWarnAround:
+ threshold: 0.5
+ enabled: True
+ lowerBound:
+ threshold: 0
+ enabled: False
+ upperBound:
+ threshold: 0.0025
+ enabled: True
+ ignore: False
+ Plasma:
+ lowerWarnAround:
+ threshold: 0
+ enabled: False
+ upperWarnAround:
+ threshold: 0
+ enabled: False
+ lowerBound:
+ threshold: 0
+ enabled: False
+ upperBound:
+ threshold: 0.0001
+ enabled: True
+ ignore: False
+ Tritium:
+ lowerWarnAround:
+ threshold: 0
+ enabled: False
+ upperWarnAround:
+ threshold: 0
+ enabled: False
+ lowerBound:
+ threshold: 0
+ enabled: False
+ upperBound:
+ threshold: 0.0001
+ enabled: True
+ ignore: False
+ WaterVapor:
+ lowerWarnAround:
+ threshold: 0
+ enabled: False
+ upperWarnAround:
+ threshold: 0.5
+ enabled: True
+ lowerBound:
+ threshold: 0
+ enabled: False
+ upperBound:
+ threshold: 1.5
+ enabled: True
+ ignore: False
+ Miasma:
+ lowerWarnAround:
+ threshold: 0
+ enabled: False
+ upperWarnAround:
+ threshold: 0.5
+ enabled: True
+ lowerBound:
+ threshold: 0
+ enabled: False
+ upperBound:
+ threshold: 0.05
+ enabled: True
+ ignore: False
+ NitrousOxide:
+ lowerWarnAround:
+ threshold: 0
+ enabled: False
+ upperWarnAround:
+ threshold: 0.5
+ enabled: True
+ lowerBound:
+ threshold: 0
+ enabled: False
+ upperBound:
+ threshold: 0.01
+ enabled: True
+ ignore: False
+ Frezon:
+ lowerWarnAround:
+ threshold: 0
+ enabled: False
+ upperWarnAround:
+ threshold: 0
+ enabled: False
+ lowerBound:
+ threshold: 0
+ enabled: False
+ upperBound:
+ threshold: 0.0001
+ enabled: True
+ ignore: False
+ pressureThreshold:
+ lowerWarnAround:
+ threshold: 2.5
+ enabled: True
+ upperWarnAround:
+ threshold: 0.7
+ enabled: True
+ lowerBound:
+ threshold: 20
+ enabled: True
+ upperBound:
+ threshold: 550
+ enabled: True
+ ignore: False
+ temperatureThreshold:
+ lowerWarnAround:
+ threshold: 1.1
+ enabled: True
+ upperWarnAround:
+ threshold: 0.8
+ enabled: True
+ lowerBound:
+ threshold: 193.15
+ enabled: True
+ upperBound:
+ threshold: 393.15
+ enabled: True
+ ignore: False
+ type: AtmosMonitor
+ - uid: 641
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 7.5,-9.5
+ parent: 1
+ type: Transform
+ - address: VNT-08DF-4974
+ transmitFrequency: 1621
+ receiveFrequency: 1621
+ type: DeviceNetwork
+ - gasThresholds:
+ Oxygen:
+ lowerWarnAround:
+ threshold: 1.5
+ enabled: True
+ upperWarnAround:
+ threshold: 0
+ enabled: False
+ lowerBound:
+ threshold: 0.1
+ enabled: True
+ upperBound:
+ threshold: 0
+ enabled: False
+ ignore: False
+ Nitrogen:
+ lowerWarnAround:
+ threshold: 0
+ enabled: False
+ upperWarnAround:
+ threshold: 0
+ enabled: False
+ lowerBound:
+ threshold: 0
+ enabled: False
+ upperBound:
+ threshold: 0
+ enabled: False
+ ignore: True
+ CarbonDioxide:
+ lowerWarnAround:
+ threshold: 0
+ enabled: False
+ upperWarnAround:
+ threshold: 0.5
+ enabled: True
+ lowerBound:
+ threshold: 0
+ enabled: False
+ upperBound:
+ threshold: 0.0025
+ enabled: True
+ ignore: False
+ Plasma:
+ lowerWarnAround:
+ threshold: 0
+ enabled: False
+ upperWarnAround:
+ threshold: 0
+ enabled: False
+ lowerBound:
+ threshold: 0
+ enabled: False
+ upperBound:
+ threshold: 0.0001
+ enabled: True
+ ignore: False
+ Tritium:
+ lowerWarnAround:
+ threshold: 0
+ enabled: False
+ upperWarnAround:
+ threshold: 0
+ enabled: False
+ lowerBound:
+ threshold: 0
+ enabled: False
+ upperBound:
+ threshold: 0.0001
+ enabled: True
+ ignore: False
+ WaterVapor:
+ lowerWarnAround:
+ threshold: 0
+ enabled: False
+ upperWarnAround:
+ threshold: 0.5
+ enabled: True
+ lowerBound:
+ threshold: 0
+ enabled: False
+ upperBound:
+ threshold: 1.5
+ enabled: True
+ ignore: False
+ Miasma:
+ lowerWarnAround:
+ threshold: 0
+ enabled: False
+ upperWarnAround:
+ threshold: 0.5
+ enabled: True
+ lowerBound:
+ threshold: 0
+ enabled: False
+ upperBound:
+ threshold: 0.05
+ enabled: True
+ ignore: False
+ NitrousOxide:
+ lowerWarnAround:
+ threshold: 0
+ enabled: False
+ upperWarnAround:
+ threshold: 0.5
+ enabled: True
+ lowerBound:
+ threshold: 0
+ enabled: False
+ upperBound:
+ threshold: 0.01
+ enabled: True
+ ignore: False
+ Frezon:
+ lowerWarnAround:
+ threshold: 0
+ enabled: False
+ upperWarnAround:
+ threshold: 0
+ enabled: False
+ lowerBound:
+ threshold: 0
+ enabled: False
+ upperBound:
+ threshold: 0.0001
+ enabled: True
+ ignore: False
+ pressureThreshold:
+ lowerWarnAround:
+ threshold: 2.5
+ enabled: True
+ upperWarnAround:
+ threshold: 0.7
+ enabled: True
+ lowerBound:
+ threshold: 20
+ enabled: True
+ upperBound:
+ threshold: 550
+ enabled: True
+ ignore: False
+ temperatureThreshold:
+ lowerWarnAround:
+ threshold: 1.1
+ enabled: True
+ upperWarnAround:
+ threshold: 0.8
+ enabled: True
+ lowerBound:
+ threshold: 193.15
+ enabled: True
+ upperBound:
+ threshold: 393.15
+ enabled: True
+ ignore: False
+ type: AtmosMonitor
+ - uid: 642
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 5.5,-0.5
+ parent: 1
+ type: Transform
+ - address: VNT-26D9-F6A1
+ transmitFrequency: 1621
+ receiveFrequency: 1621
+ type: DeviceNetwork
+ - trippedThresholds:
+ - Pressure
+ - Temperature
+ lastAlarmState: Danger
+ gasThresholds:
+ Oxygen:
+ lowerWarnAround:
+ threshold: 1.5
+ enabled: True
+ upperWarnAround:
+ threshold: 0
+ enabled: False
+ lowerBound:
+ threshold: 0.1
+ enabled: True
+ upperBound:
+ threshold: 0
+ enabled: False
+ ignore: False
+ Nitrogen:
+ lowerWarnAround:
+ threshold: 0
+ enabled: False
+ upperWarnAround:
+ threshold: 0
+ enabled: False
+ lowerBound:
+ threshold: 0
+ enabled: False
+ upperBound:
+ threshold: 0
+ enabled: False
+ ignore: True
+ CarbonDioxide:
+ lowerWarnAround:
+ threshold: 0
+ enabled: False
+ upperWarnAround:
+ threshold: 0.5
+ enabled: True
+ lowerBound:
+ threshold: 0
+ enabled: False
+ upperBound:
+ threshold: 0.0025
+ enabled: True
+ ignore: False
+ Plasma:
+ lowerWarnAround:
+ threshold: 0
+ enabled: False
+ upperWarnAround:
+ threshold: 0
+ enabled: False
+ lowerBound:
+ threshold: 0
+ enabled: False
+ upperBound:
+ threshold: 0.0001
+ enabled: True
+ ignore: False
+ Tritium:
+ lowerWarnAround:
+ threshold: 0
+ enabled: False
+ upperWarnAround:
+ threshold: 0
+ enabled: False
+ lowerBound:
+ threshold: 0
+ enabled: False
+ upperBound:
+ threshold: 0.0001
+ enabled: True
+ ignore: False
+ WaterVapor:
+ lowerWarnAround:
+ threshold: 0
+ enabled: False
+ upperWarnAround:
+ threshold: 0.5
+ enabled: True
+ lowerBound:
+ threshold: 0
+ enabled: False
+ upperBound:
+ threshold: 1.5
+ enabled: True
+ ignore: False
+ Miasma:
+ lowerWarnAround:
+ threshold: 0
+ enabled: False
+ upperWarnAround:
+ threshold: 0.5
+ enabled: True
+ lowerBound:
+ threshold: 0
+ enabled: False
+ upperBound:
+ threshold: 0.05
+ enabled: True
+ ignore: False
+ NitrousOxide:
+ lowerWarnAround:
+ threshold: 0
+ enabled: False
+ upperWarnAround:
+ threshold: 0.5
+ enabled: True
+ lowerBound:
+ threshold: 0
+ enabled: False
+ upperBound:
+ threshold: 0.01
+ enabled: True
+ ignore: False
+ Frezon:
+ lowerWarnAround:
+ threshold: 0
+ enabled: False
+ upperWarnAround:
+ threshold: 0
+ enabled: False
+ lowerBound:
+ threshold: 0
+ enabled: False
+ upperBound:
+ threshold: 0.0001
+ enabled: True
+ ignore: False
+ pressureThreshold:
+ lowerWarnAround:
+ threshold: 2.5
+ enabled: True
+ upperWarnAround:
+ threshold: 0.7
+ enabled: True
+ lowerBound:
+ threshold: 20
+ enabled: True
+ upperBound:
+ threshold: 550
+ enabled: True
+ ignore: False
+ temperatureThreshold:
+ lowerWarnAround:
+ threshold: 1.1
+ enabled: True
+ upperWarnAround:
+ threshold: 0.8
+ enabled: True
+ lowerBound:
+ threshold: 193.15
+ enabled: True
+ upperBound:
+ threshold: 393.15
+ enabled: True
+ ignore: False
+ type: AtmosMonitor
+- proto: Gauze
+ entities:
+ - uid: 139
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 137
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 149
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 147
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 159
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 157
+ type: Transform
+ - canCollide: False
+ type: Physics
+- proto: GeneratorBasic15kW
+ entities:
+ - uid: 417
+ components:
+ - pos: 18.5,-1.5
+ parent: 1
+ type: Transform
+- proto: GeneratorWallmountAPU
+ entities:
+ - uid: 349
+ components:
+ - pos: 21.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 350
+ components:
+ - pos: 21.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 351
+ components:
+ - pos: 21.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 643
+ components:
+ - pos: 17.5,-1.5
+ parent: 1
+ type: Transform
+ - supplyRampPosition: 6000
+ type: PowerSupplier
+ - containers:
+ board: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 644
+ type: ContainerContainer
+- proto: GenericTank
+ entities:
+ - uid: 645
+ components:
+ - pos: 13.5,-7.5
+ parent: 1
+ type: Transform
+- proto: GravityGeneratorMini
+ entities:
+ - uid: 267
+ components:
+ - pos: 20.5,-0.5
+ parent: 1
+ type: Transform
+ - containers:
+ machine_board: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 276
+ machine_parts: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 269
+ - 270
+ - 271
+ - 272
+ - 273
+ - 274
+ - 275
+ - 277
+ - 268
+ - 278
+ type: ContainerContainer
+- proto: Grille
+ entities:
+ - uid: 646
+ components:
+ - pos: 10.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 647
+ components:
+ - pos: 9.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 648
+ components:
+ - pos: 8.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 649
+ components:
+ - pos: 2.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 650
+ components:
+ - pos: 3.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 651
+ components:
+ - pos: -0.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 652
+ components:
+ - pos: -1.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 653
+ components:
+ - pos: -2.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 654
+ components:
+ - pos: -3.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 655
+ components:
+ - pos: 5.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 656
+ components:
+ - pos: 7.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 657
+ components:
+ - pos: 9.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 658
+ components:
+ - pos: 11.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 659
+ components:
+ - pos: 13.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 660
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -3.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 661
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -0.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 662
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 2.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 663
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 3.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 664
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 3.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 665
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 9.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 666
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 7.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 667
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 7.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 668
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 8.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 669
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 13.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 670
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 14.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 671
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 12.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 672
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 17.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 673
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 17.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 674
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 18.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 675
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 20.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 676
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 20.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 677
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 19.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 678
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 18.5,1.5
+ parent: 1
+ type: Transform
+- proto: Gyroscope
+ entities:
+ - uid: 312
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 20.5,0.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: PointLight
+ - containers:
+ machine_board: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 314
+ machine_parts: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 315
+ - 316
+ - 313
+ - 317
+ type: ContainerContainer
+- proto: GyroscopeMachineCircuitboard
+ entities:
+ - uid: 314
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 312
+ type: Transform
+ - canCollide: False
+ type: Physics
+- proto: Handcuffs
+ entities:
+ - uid: 133
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 132
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 134
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 132
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 135
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 132
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 136
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 132
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 680
+ components:
+ - pos: 2.5,-10.5
+ parent: 1
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 681
+ components:
+ - pos: -0.47979903,-0.3470137
+ parent: 1
+ type: Transform
+ - canCollide: False
+ type: Physics
+- proto: HarmonicaInstrument
+ entities:
+ - uid: 39
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 30
+ type: Transform
+ - canCollide: False
+ type: Physics
+- proto: Hemostat
+ entities:
+ - uid: 425
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 422
+ type: Transform
+ - canCollide: False
+ type: Physics
+- proto: IntercomAll
+ entities:
+ - uid: 849
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -2.5,-6.5
+ parent: 1
+ type: Transform
+- proto: IntercomCommon
+ entities:
+ - uid: 853
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 5.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 854
+ components:
+ - pos: 11.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 858
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 15.5,-11.5
+ parent: 1
+ type: Transform
+- proto: IntercomMedical
+ entities:
+ - uid: 866
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 5.5,-10.5
+ parent: 1
+ type: Transform
+- proto: IntercomSecurity
+ entities:
+ - uid: 852
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 1.5,-11.5
+ parent: 1
+ type: Transform
+- proto: MatterBinStockPart
+ entities:
+ - uid: 273
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 267
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 274
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 267
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 275
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 267
+ type: Transform
+ - canCollide: False
+ type: Physics
+- proto: MedicalBed
+ entities:
+ - uid: 722
+ components:
+ - pos: 6.5,-9.5
+ parent: 1
+ type: Transform
+- proto: MedkitBurn
+ entities:
+ - uid: 723
+ components:
+ - pos: 8.516247,-10.399765
+ parent: 1
+ type: Transform
+ - canCollide: False
+ type: Physics
+- proto: MedkitFilled
+ entities:
+ - uid: 137
+ components:
+ - pos: 16.40865,-10.349367
+ parent: 1
+ type: Transform
+ - containers:
+ storagebase: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 138
+ - 140
+ - 139
+ - 141
+ type: ContainerContainer
+ - canCollide: False
+ type: Physics
+ - uid: 147
+ components:
+ - pos: 8.41091,-10.483768
+ parent: 1
+ type: Transform
+ - containers:
+ storagebase: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 148
+ - 150
+ - 149
+ - 151
+ type: ContainerContainer
+ - canCollide: False
+ type: Physics
+ - uid: 157
+ components:
+ - pos: -0.52667403,0.4967363
+ parent: 1
+ type: Transform
+ - containers:
+ storagebase: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 158
+ - 160
+ - 159
+ - 161
+ type: ContainerContainer
+ - canCollide: False
+ type: Physics
+- proto: MedkitOxygenFilled
+ entities:
+ - uid: 499
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 498
+ type: Transform
+ - containers:
+ storagebase: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 500
+ - 502
+ - 501
+ - 511
+ - 503
+ type: ContainerContainer
+ - canCollide: False
+ type: Physics
+ - type: InsideEntityStorage
+ - uid: 513
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 512
+ type: Transform
+ - containers:
+ storagebase: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 514
+ - 516
+ - 515
+ - 525
+ - 517
+ type: ContainerContainer
+ - canCollide: False
+ type: Physics
+ - type: InsideEntityStorage
+ - uid: 526
+ components:
+ - pos: 16.393024,-10.568117
+ parent: 1
+ type: Transform
+ - containers:
+ storagebase: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 527
+ - 529
+ - 528
+ - 538
+ - 530
+ type: ContainerContainer
+ - canCollide: False
+ type: Physics
+ - uid: 539
+ components:
+ - pos: 9.521189,-10.406709
+ parent: 1
+ type: Transform
+ - containers:
+ storagebase: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 540
+ - 542
+ - 541
+ - 551
+ - 543
+ type: ContainerContainer
+ - canCollide: False
+ type: Physics
+- proto: MedkitToxinFilled
+ entities:
+ - uid: 86
+ components:
+ - pos: 16.393024,-10.458742
+ parent: 1
+ type: Transform
+ - containers:
+ storagebase: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 99
+ - 98
+ - 87
+ - 92
+ - 88
+ type: ContainerContainer
+ - canCollide: False
+ type: Physics
+ - uid: 100
+ components:
+ - pos: 9.453747,-10.483098
+ parent: 1
+ type: Transform
+ - containers:
+ storagebase: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 113
+ - 112
+ - 101
+ - 106
+ - 102
+ type: ContainerContainer
+ - canCollide: False
+ type: Physics
+- proto: MicroManipulatorStockPart
+ entities:
+ - uid: 246
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 243
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 252
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 249
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 315
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 312
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 316
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 312
+ type: Transform
+ - canCollide: False
+ type: Physics
+- proto: MiniGravityGeneratorCircuitboard
+ entities:
+ - uid: 276
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 267
+ type: Transform
+ - canCollide: False
+ type: Physics
+- proto: NitrogenTankFilled
+ entities:
+ - uid: 490
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 486
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - type: InsideEntityStorage
+ - uid: 496
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 492
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - type: InsideEntityStorage
+- proto: Ointment
+ entities:
+ - uid: 140
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 137
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 150
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 147
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 160
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 157
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 724
+ components:
+ - pos: 16.6899,-5.204524
+ parent: 1
+ type: Transform
+ - canCollide: False
+ type: Physics
+- proto: OxygenCanister
+ entities:
+ - uid: 725
+ components:
+ - pos: 15.5,-10.5
+ parent: 1
+ type: Transform
+- proto: OxygenTankFilled
+ entities:
+ - uid: 491
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 486
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - type: InsideEntityStorage
+ - uid: 497
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 492
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - type: InsideEntityStorage
+- proto: Paper
+ entities:
+ - uid: 123
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 122
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - fixtures:
+ fix1:
+ shape: !type:PolygonShape
+ radius: 0.01
+ vertices:
+ - -0.25,-0.25
+ - 0.25,-0.25
+ - 0.25,0.25
+ - -0.25,0.25
+ mask:
+ - Impassable
+ - HighImpassable
+ layer: []
+ density: 20
+ hard: True
+ restitution: 0.3
+ friction: 0.2
+ flammable:
+ shape: !type:PhysShapeCircle
+ radius: 0.35
+ position: 0,0
+ mask:
+ - TableLayer
+ - HighImpassable
+ - LowImpassable
+ - BulletImpassable
+ - InteractImpassable
+ - Opaque
+ layer: []
+ density: 1
+ hard: False
+ restitution: 0
+ friction: 0.4
+ type: Fixtures
+ - uid: 126
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 125
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - fixtures:
+ fix1:
+ shape: !type:PolygonShape
+ radius: 0.01
+ vertices:
+ - -0.25,-0.25
+ - 0.25,-0.25
+ - 0.25,0.25
+ - -0.25,0.25
+ mask:
+ - Impassable
+ - HighImpassable
+ layer: []
+ density: 20
+ hard: True
+ restitution: 0.3
+ friction: 0.2
+ flammable:
+ shape: !type:PhysShapeCircle
+ radius: 0.35
+ position: 0,0
+ mask:
+ - TableLayer
+ - HighImpassable
+ - LowImpassable
+ - BulletImpassable
+ - InteractImpassable
+ - Opaque
+ layer: []
+ density: 1
+ hard: False
+ restitution: 0
+ friction: 0.4
+ type: Fixtures
+ - uid: 127
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 125
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - fixtures:
+ fix1:
+ shape: !type:PolygonShape
+ radius: 0.01
+ vertices:
+ - -0.25,-0.25
+ - 0.25,-0.25
+ - 0.25,0.25
+ - -0.25,0.25
+ mask:
+ - Impassable
+ - HighImpassable
+ layer: []
+ density: 20
+ hard: True
+ restitution: 0.3
+ friction: 0.2
+ flammable:
+ shape: !type:PhysShapeCircle
+ radius: 0.35
+ position: 0,0
+ mask:
+ - TableLayer
+ - HighImpassable
+ - LowImpassable
+ - BulletImpassable
+ - InteractImpassable
+ - Opaque
+ layer: []
+ density: 1
+ hard: False
+ restitution: 0
+ friction: 0.4
+ type: Fixtures
+ - uid: 130
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 129
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - fixtures:
+ fix1:
+ shape: !type:PolygonShape
+ radius: 0.01
+ vertices:
+ - -0.25,-0.25
+ - 0.25,-0.25
+ - 0.25,0.25
+ - -0.25,0.25
+ mask:
+ - Impassable
+ - HighImpassable
+ layer: []
+ density: 20
+ hard: True
+ restitution: 0.3
+ friction: 0.2
+ flammable:
+ shape: !type:PhysShapeCircle
+ radius: 0.35
+ position: 0,0
+ mask:
+ - TableLayer
+ - HighImpassable
+ - LowImpassable
+ - BulletImpassable
+ - InteractImpassable
+ - Opaque
+ layer: []
+ density: 1
+ hard: False
+ restitution: 0
+ friction: 0.4
+ type: Fixtures
+ - uid: 131
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 129
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - fixtures:
+ fix1:
+ shape: !type:PolygonShape
+ radius: 0.01
+ vertices:
+ - -0.25,-0.25
+ - 0.25,-0.25
+ - 0.25,0.25
+ - -0.25,0.25
+ mask:
+ - Impassable
+ - HighImpassable
+ layer: []
+ density: 20
+ hard: True
+ restitution: 0.3
+ friction: 0.2
+ flammable:
+ shape: !type:PhysShapeCircle
+ radius: 0.35
+ position: 0,0
+ mask:
+ - TableLayer
+ - HighImpassable
+ - LowImpassable
+ - BulletImpassable
+ - InteractImpassable
+ - Opaque
+ layer: []
+ density: 1
+ hard: False
+ restitution: 0
+ friction: 0.4
+ type: Fixtures
+ - uid: 727
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 726
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - fixtures:
+ fix1:
+ shape: !type:PolygonShape
+ radius: 0.01
+ vertices:
+ - -0.25,-0.25
+ - 0.25,-0.25
+ - 0.25,0.25
+ - -0.25,0.25
+ mask:
+ - Impassable
+ - HighImpassable
+ layer: []
+ density: 20
+ hard: True
+ restitution: 0.3
+ friction: 0.2
+ flammable:
+ shape: !type:PhysShapeCircle
+ radius: 0.35
+ position: 0,0
+ mask:
+ - TableLayer
+ - HighImpassable
+ - LowImpassable
+ - BulletImpassable
+ - InteractImpassable
+ - Opaque
+ layer: []
+ density: 1
+ hard: False
+ restitution: 0
+ friction: 0.4
+ type: Fixtures
+ - uid: 728
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 726
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - fixtures:
+ fix1:
+ shape: !type:PolygonShape
+ radius: 0.01
+ vertices:
+ - -0.25,-0.25
+ - 0.25,-0.25
+ - 0.25,0.25
+ - -0.25,0.25
+ mask:
+ - Impassable
+ - HighImpassable
+ layer: []
+ density: 20
+ hard: True
+ restitution: 0.3
+ friction: 0.2
+ flammable:
+ shape: !type:PhysShapeCircle
+ radius: 0.35
+ position: 0,0
+ mask:
+ - TableLayer
+ - HighImpassable
+ - LowImpassable
+ - BulletImpassable
+ - InteractImpassable
+ - Opaque
+ layer: []
+ density: 1
+ hard: False
+ restitution: 0
+ friction: 0.4
+ type: Fixtures
+ - uid: 729
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 726
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - fixtures:
+ fix1:
+ shape: !type:PolygonShape
+ radius: 0.01
+ vertices:
+ - -0.25,-0.25
+ - 0.25,-0.25
+ - 0.25,0.25
+ - -0.25,0.25
+ mask:
+ - Impassable
+ - HighImpassable
+ layer: []
+ density: 20
+ hard: True
+ restitution: 0.3
+ friction: 0.2
+ flammable:
+ shape: !type:PhysShapeCircle
+ radius: 0.35
+ position: 0,0
+ mask:
+ - TableLayer
+ - HighImpassable
+ - LowImpassable
+ - BulletImpassable
+ - InteractImpassable
+ - Opaque
+ layer: []
+ density: 1
+ hard: False
+ restitution: 0
+ friction: 0.4
+ type: Fixtures
+ - uid: 730
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 726
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - fixtures:
+ fix1:
+ shape: !type:PolygonShape
+ radius: 0.01
+ vertices:
+ - -0.25,-0.25
+ - 0.25,-0.25
+ - 0.25,0.25
+ - -0.25,0.25
+ mask:
+ - Impassable
+ - HighImpassable
+ layer: []
+ density: 20
+ hard: True
+ restitution: 0.3
+ friction: 0.2
+ flammable:
+ shape: !type:PhysShapeCircle
+ radius: 0.35
+ position: 0,0
+ mask:
+ - TableLayer
+ - HighImpassable
+ - LowImpassable
+ - BulletImpassable
+ - InteractImpassable
+ - Opaque
+ layer: []
+ density: 1
+ hard: False
+ restitution: 0
+ friction: 0.4
+ type: Fixtures
+ - uid: 731
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 726
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - fixtures:
+ fix1:
+ shape: !type:PolygonShape
+ radius: 0.01
+ vertices:
+ - -0.25,-0.25
+ - 0.25,-0.25
+ - 0.25,0.25
+ - -0.25,0.25
+ mask:
+ - Impassable
+ - HighImpassable
+ layer: []
+ density: 20
+ hard: True
+ restitution: 0.3
+ friction: 0.2
+ flammable:
+ shape: !type:PhysShapeCircle
+ radius: 0.35
+ position: 0,0
+ mask:
+ - TableLayer
+ - HighImpassable
+ - LowImpassable
+ - BulletImpassable
+ - InteractImpassable
+ - Opaque
+ layer: []
+ density: 1
+ hard: False
+ restitution: 0
+ friction: 0.4
+ type: Fixtures
+- proto: PaperBin5
+ entities:
+ - uid: 726
+ components:
+ - pos: -2.5,-5.5
+ parent: 1
+ type: Transform
+ - items:
+ - 727
+ - 728
+ - 729
+ - 730
+ - 731
+ type: Bin
+ - containers:
+ bin-container: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 727
+ - 728
+ - 729
+ - 730
+ - 731
+ type: ContainerContainer
+- proto: PaperOffice
+ entities:
+ - uid: 124
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 122
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - fixtures:
+ fix1:
+ shape: !type:PolygonShape
+ radius: 0.01
+ vertices:
+ - -0.25,-0.25
+ - 0.25,-0.25
+ - 0.25,0.25
+ - -0.25,0.25
+ mask:
+ - Impassable
+ - HighImpassable
+ layer: []
+ density: 20
+ hard: True
+ restitution: 0.3
+ friction: 0.2
+ flammable:
+ shape: !type:PhysShapeCircle
+ radius: 0.35
+ position: 0,0
+ mask:
+ - TableLayer
+ - HighImpassable
+ - LowImpassable
+ - BulletImpassable
+ - InteractImpassable
+ - Opaque
+ layer: []
+ density: 1
+ hard: False
+ restitution: 0
+ friction: 0.4
+ type: Fixtures
+ - uid: 128
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 125
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - fixtures:
+ fix1:
+ shape: !type:PolygonShape
+ radius: 0.01
+ vertices:
+ - -0.25,-0.25
+ - 0.25,-0.25
+ - 0.25,0.25
+ - -0.25,0.25
+ mask:
+ - Impassable
+ - HighImpassable
+ layer: []
+ density: 20
+ hard: True
+ restitution: 0.3
+ friction: 0.2
+ flammable:
+ shape: !type:PhysShapeCircle
+ radius: 0.35
+ position: 0,0
+ mask:
+ - TableLayer
+ - HighImpassable
+ - LowImpassable
+ - BulletImpassable
+ - InteractImpassable
+ - Opaque
+ layer: []
+ density: 1
+ hard: False
+ restitution: 0
+ friction: 0.4
+ type: Fixtures
+- proto: Pen
+ entities:
+ - uid: 732
+ components:
+ - pos: 16.643024,-5.568117
+ parent: 1
+ type: Transform
+ - canCollide: False
+ type: Physics
+- proto: PhoneInstrument
+ entities:
+ - uid: 733
+ components:
+ - pos: -3.6672993,0.6998613
+ parent: 1
+ type: Transform
+ - canCollide: False
+ type: Physics
+- proto: PillCanisterCharcoal
+ entities:
+ - uid: 88
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 86
+ type: Transform
+ - containers:
+ storagebase: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 89
+ - 90
+ - 91
+ type: ContainerContainer
+ - canCollide: False
+ type: Physics
+ - uid: 102
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 100
+ type: Transform
+ - containers:
+ storagebase: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 103
+ - 104
+ - 105
+ type: ContainerContainer
+ - canCollide: False
+ type: Physics
+- proto: PillCanisterDexalin
+ entities:
+ - uid: 503
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 499
+ type: Transform
+ - containers:
+ storagebase: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 504
+ - 505
+ - 506
+ - 507
+ - 508
+ - 509
+ - 510
+ type: ContainerContainer
+ - canCollide: False
+ type: Physics
+ - uid: 517
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 513
+ type: Transform
+ - containers:
+ storagebase: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 518
+ - 519
+ - 520
+ - 521
+ - 522
+ - 523
+ - 524
+ type: ContainerContainer
+ - canCollide: False
+ type: Physics
+ - uid: 530
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 526
+ type: Transform
+ - containers:
+ storagebase: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 531
+ - 532
+ - 533
+ - 534
+ - 535
+ - 536
+ - 537
+ type: ContainerContainer
+ - canCollide: False
+ type: Physics
+ - uid: 543
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 539
+ type: Transform
+ - containers:
+ storagebase: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 544
+ - 545
+ - 546
+ - 547
+ - 548
+ - 549
+ - 550
+ type: ContainerContainer
+ - canCollide: False
+ type: Physics
+- proto: PillCanisterDylovene
+ entities:
+ - uid: 92
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 86
+ type: Transform
+ - containers:
+ storagebase: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 93
+ - 94
+ - 95
+ - 96
+ - 97
+ type: ContainerContainer
+ - canCollide: False
+ type: Physics
+ - uid: 106
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 100
+ type: Transform
+ - containers:
+ storagebase: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 107
+ - 108
+ - 109
+ - 110
+ - 111
+ type: ContainerContainer
+ - canCollide: False
+ type: Physics
+ - uid: 734
+ components:
+ - pos: 6.402176,-8.296023
+ parent: 1
+ type: Transform
+ - containers:
+ storagebase: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 735
+ - 736
+ - 737
+ - 738
+ - 739
+ type: ContainerContainer
+ - canCollide: False
+ type: Physics
+- proto: PillCanisterTricordrazine
+ entities:
+ - uid: 141
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 137
+ type: Transform
+ - containers:
+ storagebase: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 142
+ - 143
+ - 144
+ - 145
+ - 146
+ type: ContainerContainer
+ - canCollide: False
+ type: Physics
+ - uid: 151
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 147
+ type: Transform
+ - containers:
+ storagebase: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 152
+ - 153
+ - 154
+ - 155
+ - 156
+ type: ContainerContainer
+ - canCollide: False
+ type: Physics
+ - uid: 161
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 157
+ type: Transform
+ - containers:
+ storagebase: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 162
+ - 163
+ - 164
+ - 165
+ - 166
+ type: ContainerContainer
+ - canCollide: False
+ type: Physics
+- proto: PillCharcoal
+ entities:
+ - uid: 89
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 88
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 90
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 88
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 91
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 88
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 103
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 102
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 104
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 102
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 105
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 102
+ type: Transform
+ - canCollide: False
+ type: Physics
+- proto: PillDexalin
+ entities:
+ - uid: 504
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 503
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 505
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 503
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 506
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 503
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 507
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 503
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 508
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 503
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 509
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 503
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 510
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 503
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 518
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 517
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 519
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 517
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 520
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 517
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 521
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 517
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 522
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 517
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 523
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 517
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 524
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 517
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 531
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 530
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 532
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 530
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 533
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 530
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 534
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 530
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 535
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 530
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 536
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 530
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 537
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 530
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 544
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 543
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 545
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 543
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 546
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 543
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 547
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 543
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 548
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 543
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 549
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 543
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 550
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 543
+ type: Transform
+ - canCollide: False
+ type: Physics
+- proto: PillDylovene
+ entities:
+ - uid: 93
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 92
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 94
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 92
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 95
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 92
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 96
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 92
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 97
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 92
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 107
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 106
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 108
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 106
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 109
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 106
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 110
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 106
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 111
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 106
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 735
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 734
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 736
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 734
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 737
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 734
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 738
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 734
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 739
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 734
+ type: Transform
+ - canCollide: False
+ type: Physics
+- proto: PillTricordrazine
+ entities:
+ - uid: 142
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 141
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 143
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 141
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 144
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 141
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 145
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 141
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 146
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 141
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 152
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 151
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 153
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 151
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 154
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 151
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 155
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 151
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 156
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 151
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 162
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 161
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 163
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 161
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 164
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 161
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 165
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 161
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 166
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 161
+ type: Transform
+ - canCollide: False
+ type: Physics
+- proto: PlasmaReinforcedWindowDirectional
+ entities:
+ - uid: 740
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 18.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 741
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 20.5,-2.5
+ parent: 1
+ type: Transform
+- proto: PosterLegitCohibaRobustoAd
+ entities:
+ - uid: 934
+ components:
+ - pos: 0.5,-0.5
+ parent: 1
+ type: Transform
+- proto: PosterLegitIonRifle
+ entities:
+ - uid: 742
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 5.5,-8.5
+ parent: 1
+ type: Transform
+- proto: PosterLegitNanotrasenLogo
+ entities:
+ - uid: 873
+ components:
+ - pos: -4.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 898
+ components:
+ - pos: -4.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 899
+ components:
+ - pos: 5.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 900
+ components:
+ - pos: 13.5,1.5
+ parent: 1
+ type: Transform
+- proto: PosterLegitNTTGC
+ entities:
+ - uid: 901
+ components:
+ - pos: 17.5,-2.5
+ parent: 1
+ type: Transform
+- proto: PosterLegitVacation
+ entities:
+ - uid: 902
+ components:
+ - pos: 0.5,-4.5
+ parent: 1
+ type: Transform
+- proto: PowerCellMedium
+ entities:
+ - uid: 6
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 3
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 14
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 11
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 24
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 21
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 34
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 31
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 44
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 41
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 568
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 567
+ type: Transform
+ - canCollide: False
+ type: Physics
+- proto: PowerCellSmall
+ entities:
+ - uid: 282
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 279
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 283
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 279
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 284
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 279
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 285
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 279
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 291
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 287
+ type: Transform
+ - canCollide: False
+ type: Physics
+- proto: Poweredlight
+ entities:
+ - uid: 682
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 19.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 686
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 1.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 687
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 18.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 688
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -0.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 689
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 1.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 690
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -0.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 691
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 1.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 692
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -2.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 693
+ components:
+ - pos: 5.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 694
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 5.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 695
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 11.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 696
+ components:
+ - pos: 11.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 697
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 16.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 698
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 16.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 699
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 4.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 702
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -3.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 703
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 9.5,-10.5
+ parent: 1
+ type: Transform
+- proto: PoweredSmallLight
+ entities:
+ - uid: 683
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -0.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 684
+ components:
+ - pos: 13.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 685
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 6.5,-8.5
+ parent: 1
+ type: Transform
+- proto: Rack
+ entities:
+ - uid: 743
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 11.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 744
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 11.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 745
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 11.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 746
+ components:
+ - pos: 14.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 747
+ components:
+ - pos: 13.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 943
+ components:
+ - pos: 1.5,-4.5
+ parent: 1
+ type: Transform
+- proto: RadioHandheld
+ entities:
+ - uid: 748
+ components:
+ - pos: 14.205524,-10.630617
+ parent: 1
+ type: Transform
+ - canCollide: False
+ type: Physics
+- proto: Retractor
+ entities:
+ - uid: 426
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 422
+ type: Transform
+ - canCollide: False
+ type: Physics
+- proto: Saw
+ entities:
+ - uid: 427
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 422
+ type: Transform
+ - canCollide: False
+ type: Physics
+- proto: Scalpel
+ entities:
+ - uid: 428
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 422
+ type: Transform
+ - canCollide: False
+ type: Physics
+- proto: Screwdriver
+ entities:
+ - uid: 260
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 255
+ type: Transform
+ - selected:
+ enum.DamageStateVisualLayers.Base:
+ screwdriver: '#D58C18FF'
+ type: RandomSprite
+ - canCollide: False
+ type: Physics
+- proto: SheetGlass1
+ entities:
+ - uid: 317
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 312
+ type: Transform
+ - count: 2
+ type: Stack
+ - canCollide: False
+ type: Physics
+- proto: SheetSteel1
+ entities:
+ - uid: 247
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 243
+ type: Transform
+ - count: 2
+ type: Stack
+ - canCollide: False
+ type: Physics
+ - uid: 253
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 249
+ type: Transform
+ - count: 2
+ type: Stack
+ - canCollide: False
+ type: Physics
+ - uid: 277
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 267
+ type: Transform
+ - count: 5
+ type: Stack
+ - canCollide: False
+ type: Physics
+ - uid: 323
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 318
+ type: Transform
+ - count: 5
+ type: Stack
+ - canCollide: False
+ type: Physics
+ - uid: 330
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 325
+ type: Transform
+ - count: 5
+ type: Stack
+ - canCollide: False
+ type: Physics
+ - uid: 337
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 332
+ type: Transform
+ - count: 5
+ type: Stack
+ - canCollide: False
+ type: Physics
+ - uid: 358
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 353
+ type: Transform
+ - count: 5
+ type: Stack
+ - canCollide: False
+ type: Physics
+ - uid: 365
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 360
+ type: Transform
+ - count: 5
+ type: Stack
+ - canCollide: False
+ type: Physics
+ - uid: 372
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 367
+ type: Transform
+ - count: 5
+ type: Stack
+ - canCollide: False
+ type: Physics
+ - uid: 379
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 374
+ type: Transform
+ - count: 5
+ type: Stack
+ - canCollide: False
+ type: Physics
+ - uid: 386
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 381
+ type: Transform
+ - count: 5
+ type: Stack
+ - canCollide: False
+ type: Physics
+ - uid: 393
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 388
+ type: Transform
+ - count: 5
+ type: Stack
+ - canCollide: False
+ type: Physics
+ - uid: 400
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 395
+ type: Transform
+ - count: 5
+ type: Stack
+ - canCollide: False
+ type: Physics
+ - uid: 407
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 402
+ type: Transform
+ - count: 5
+ type: Stack
+ - canCollide: False
+ type: Physics
+ - uid: 414
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 409
+ type: Transform
+ - count: 5
+ type: Stack
+ - canCollide: False
+ type: Physics
+- proto: SheetUranium1
+ entities:
+ - uid: 278
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 267
+ type: Transform
+ - count: 2
+ type: Stack
+ - canCollide: False
+ type: Physics
+- proto: ShuttleWindow
+ entities:
+ - uid: 749
+ components:
+ - pos: 2.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 750
+ components:
+ - pos: 8.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 751
+ components:
+ - pos: 9.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 752
+ components:
+ - pos: 10.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 753
+ components:
+ - pos: 3.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 754
+ components:
+ - pos: 2.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 755
+ components:
+ - pos: 3.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 756
+ components:
+ - pos: -0.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 757
+ components:
+ - pos: -1.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 758
+ components:
+ - pos: -2.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 759
+ components:
+ - pos: -3.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 760
+ components:
+ - pos: 3.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 761
+ components:
+ - pos: 5.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 762
+ components:
+ - pos: 7.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 763
+ components:
+ - pos: 9.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 764
+ components:
+ - pos: 11.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 765
+ components:
+ - pos: 13.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 766
+ components:
+ - pos: 7.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 767
+ components:
+ - pos: 9.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 768
+ components:
+ - pos: 7.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 769
+ components:
+ - pos: 8.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 770
+ components:
+ - pos: 10.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 771
+ components:
+ - pos: 13.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 772
+ components:
+ - pos: 14.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 773
+ components:
+ - pos: 12.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 774
+ components:
+ - pos: 17.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 775
+ components:
+ - pos: 17.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 776
+ components:
+ - pos: 18.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 777
+ components:
+ - pos: 19.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 778
+ components:
+ - pos: 20.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 780
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -3.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 781
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -0.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 782
+ components:
+ - pos: 20.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 783
+ components:
+ - pos: 18.5,-5.5
+ parent: 1
+ type: Transform
+- proto: SignMedical
+ entities:
+ - uid: 867
+ components:
+ - pos: 10.5,-6.5
+ parent: 1
+ type: Transform
+- proto: SignSmoking
+ entities:
+ - uid: 870
+ components:
+ - pos: 7.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 872
+ components:
+ - pos: 16.5,-6.5
+ parent: 1
+ type: Transform
+- proto: SinkWide
+ entities:
+ - uid: 784
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 7.5,-10.5
+ parent: 1
+ type: Transform
+ - accumulator: 0.814998
+ type: Drain
+- proto: SMESBasic
+ entities:
+ - uid: 279
+ components:
+ - pos: 18.5,-0.5
+ parent: 1
+ type: Transform
+ - startingCharge: 4318837
+ type: Battery
+ - loadingNetworkDemand: 18075.072
+ currentReceiving: 6000
+ currentSupply: 18075.072
+ supplyRampPosition: 12075.072
+ type: PowerNetworkBattery
+ - address: SMS-03C1-ED8D
+ transmitFrequency: 1621
+ receiveFrequency: 1621
+ type: DeviceNetwork
+ - containers:
+ machine_board: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 286
+ machine_parts: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 281
+ - 282
+ - 283
+ - 284
+ - 285
+ - 280
+ type: ContainerContainer
+- proto: SMESMachineCircuitboard
+ entities:
+ - uid: 286
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 279
+ type: Transform
+ - canCollide: False
+ type: Physics
+- proto: SpawnMobMedibot
+ entities:
+ - uid: 785
+ components:
+ - pos: 15.5,-8.5
+ parent: 1
+ type: Transform
+- proto: StasisBed
+ entities:
+ - uid: 243
+ components:
+ - pos: 9.5,-8.5
+ parent: 1
+ type: Transform
+ - containers:
+ machine_board: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 248
+ machine_parts: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 245
+ - 246
+ - 244
+ - 247
+ type: ContainerContainer
+ - uid: 249
+ components:
+ - pos: 9.5,-7.5
+ parent: 1
+ type: Transform
+ - containers:
+ machine_board: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 254
+ machine_parts: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 251
+ - 252
+ - 250
+ - 253
+ type: ContainerContainer
+- proto: StasisBedMachineCircuitboard
+ entities:
+ - uid: 248
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 243
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 254
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 249
+ type: Transform
+ - canCollide: False
+ type: Physics
+- proto: SubstationBasic
+ entities:
+ - uid: 287
+ components:
+ - pos: 18.5,0.5
+ parent: 1
+ type: Transform
+ - loadingNetworkDemand: 18076.947
+ currentReceiving: 18075.072
+ currentSupply: 18076.947
+ supplyRampPosition: 1.875
+ type: PowerNetworkBattery
+ - containers:
+ machine_board: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 292
+ machine_parts: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 290
+ - 291
+ - 289
+ - 288
+ type: ContainerContainer
+- proto: SubstationMachineCircuitboard
+ entities:
+ - uid: 292
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 287
+ type: Transform
+ - canCollide: False
+ type: Physics
+- proto: SuitStorageEVAAlternate
+ entities:
+ - uid: 486
+ components:
+ - pos: -0.5,-9.5
+ parent: 1
+ type: Transform
+ - air:
+ volume: 200
+ immutable: False
+ temperature: 293.14963
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ type: EntityStorage
+ - containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 490
+ - 491
+ - 489
+ - 487
+ - 488
+ type: ContainerContainer
+ - uid: 492
+ components:
+ - pos: -0.5,-10.5
+ parent: 1
+ type: Transform
+ - air:
+ volume: 200
+ immutable: False
+ temperature: 293.14963
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ type: EntityStorage
+ - containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 496
+ - 497
+ - 495
+ - 493
+ - 494
+ type: ContainerContainer
+- proto: SurveillanceWirelessCameraMonitorCircuitboard
+ entities:
+ - uid: 559
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 558
+ type: Transform
+ - canCollide: False
+ type: Physics
+- proto: SyringeEthylredoxrazine
+ entities:
+ - uid: 98
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 86
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 112
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 100
+ type: Transform
+ - canCollide: False
+ type: Physics
+- proto: SyringeInaprovaline
+ entities:
+ - uid: 511
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 499
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 525
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 513
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 538
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 526
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 551
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 539
+ type: Transform
+ - canCollide: False
+ type: Physics
+- proto: SyringeIpecac
+ entities:
+ - uid: 99
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 86
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 113
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 100
+ type: Transform
+ - canCollide: False
+ type: Physics
+- proto: Table
+ entities:
+ - uid: 786
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 4.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 787
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 3.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 788
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 2.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 789
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 1.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 790
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 6.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 791
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 6.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 792
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 6.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 793
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 8.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 794
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 9.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 795
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 16.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 796
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 16.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 797
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -0.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 798
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -0.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 799
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -3.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 800
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -3.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 801
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -3.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 802
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -3.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 803
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -2.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 804
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -1.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 805
+ components:
+ - pos: 18.5,-2.5
+ parent: 1
+ type: Transform
+- proto: Thruster
+ entities:
+ - uid: 318
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 22.5,-5.5
+ parent: 1
+ type: Transform
+ - fixtures:
+ fix1:
+ shape: !type:PolygonShape
+ radius: 0.01
+ vertices:
+ - -0.45,-0.45
+ - 0.45,-0.45
+ - 0.45,0.45
+ - -0.45,0.45
+ mask:
+ - Impassable
+ - TableLayer
+ - LowImpassable
+ layer:
+ - TableLayer
+ - LowImpassable
+ density: 60
+ hard: True
+ restitution: 0
+ friction: 0.4
+ thruster-burn:
+ shape: !type:PolygonShape
+ radius: 0.01
+ vertices:
+ - -0.4,0.5
+ - 0.4,0.5
+ - 0.1,1.2
+ - -0.1,1.2
+ mask: []
+ layer:
+ - Impassable
+ - TableLayer
+ - HighImpassable
+ - LowImpassable
+ - InteractImpassable
+ density: 1
+ hard: False
+ restitution: 0
+ friction: 0.4
+ type: Fixtures
+ - containers:
+ machine_board: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 324
+ machine_parts: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 319
+ - 320
+ - 321
+ - 322
+ - 323
+ type: ContainerContainer
+ - uid: 325
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 22.5,-2.5
+ parent: 1
+ type: Transform
+ - fixtures:
+ fix1:
+ shape: !type:PolygonShape
+ radius: 0.01
+ vertices:
+ - -0.45,-0.45
+ - 0.45,-0.45
+ - 0.45,0.45
+ - -0.45,0.45
+ mask:
+ - Impassable
+ - TableLayer
+ - LowImpassable
+ layer:
+ - TableLayer
+ - LowImpassable
+ density: 60
+ hard: True
+ restitution: 0
+ friction: 0.4
+ thruster-burn:
+ shape: !type:PolygonShape
+ radius: 0.01
+ vertices:
+ - -0.4,0.5
+ - 0.4,0.5
+ - 0.1,1.2
+ - -0.1,1.2
+ mask: []
+ layer:
+ - Impassable
+ - TableLayer
+ - HighImpassable
+ - LowImpassable
+ - InteractImpassable
+ density: 1
+ hard: False
+ restitution: 0
+ friction: 0.4
+ type: Fixtures
+ - containers:
+ machine_board: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 331
+ machine_parts: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 326
+ - 327
+ - 328
+ - 329
+ - 330
+ type: ContainerContainer
+ - uid: 332
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 22.5,-3.5
+ parent: 1
+ type: Transform
+ - fixtures:
+ fix1:
+ shape: !type:PolygonShape
+ radius: 0.01
+ vertices:
+ - -0.45,-0.45
+ - 0.45,-0.45
+ - 0.45,0.45
+ - -0.45,0.45
+ mask:
+ - Impassable
+ - TableLayer
+ - LowImpassable
+ layer:
+ - TableLayer
+ - LowImpassable
+ density: 60
+ hard: True
+ restitution: 0
+ friction: 0.4
+ thruster-burn:
+ shape: !type:PolygonShape
+ radius: 0.01
+ vertices:
+ - -0.4,0.5
+ - 0.4,0.5
+ - 0.1,1.2
+ - -0.1,1.2
+ mask: []
+ layer:
+ - Impassable
+ - TableLayer
+ - HighImpassable
+ - LowImpassable
+ - InteractImpassable
+ density: 1
+ hard: False
+ restitution: 0
+ friction: 0.4
+ type: Fixtures
+ - containers:
+ machine_board: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 338
+ machine_parts: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 333
+ - 334
+ - 335
+ - 336
+ - 337
+ type: ContainerContainer
+ - uid: 339
+ components:
+ - pos: 22.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 340
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 22.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 353
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 22.5,-0.5
+ parent: 1
+ type: Transform
+ - fixtures:
+ fix1:
+ shape: !type:PolygonShape
+ radius: 0.01
+ vertices:
+ - -0.45,-0.45
+ - 0.45,-0.45
+ - 0.45,0.45
+ - -0.45,0.45
+ mask:
+ - Impassable
+ - TableLayer
+ - LowImpassable
+ layer:
+ - TableLayer
+ - LowImpassable
+ density: 60
+ hard: True
+ restitution: 0
+ friction: 0.4
+ thruster-burn:
+ shape: !type:PolygonShape
+ radius: 0.01
+ vertices:
+ - -0.4,0.5
+ - 0.4,0.5
+ - 0.1,1.2
+ - -0.1,1.2
+ mask: []
+ layer:
+ - Impassable
+ - TableLayer
+ - HighImpassable
+ - LowImpassable
+ - InteractImpassable
+ density: 1
+ hard: False
+ restitution: 0
+ friction: 0.4
+ type: Fixtures
+ - containers:
+ machine_board: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 359
+ machine_parts: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 354
+ - 355
+ - 356
+ - 357
+ - 358
+ type: ContainerContainer
+ - uid: 360
+ components:
+ - pos: -5.5,0.5
+ parent: 1
+ type: Transform
+ - containers:
+ machine_board: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 366
+ machine_parts: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 361
+ - 362
+ - 363
+ - 364
+ - 365
+ type: ContainerContainer
+ - uid: 367
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -5.5,-6.5
+ parent: 1
+ type: Transform
+ - containers:
+ machine_board: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 373
+ machine_parts: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 368
+ - 369
+ - 370
+ - 371
+ - 372
+ type: ContainerContainer
+ - uid: 374
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -5.5,-10.5
+ parent: 1
+ type: Transform
+ - containers:
+ machine_board: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 380
+ machine_parts: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 375
+ - 376
+ - 377
+ - 378
+ - 379
+ type: ContainerContainer
+ - uid: 381
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -5.5,-7.5
+ parent: 1
+ type: Transform
+ - fixtures:
+ fix1:
+ shape: !type:PolygonShape
+ radius: 0.01
+ vertices:
+ - -0.45,-0.45
+ - 0.45,-0.45
+ - 0.45,0.45
+ - -0.45,0.45
+ mask:
+ - Impassable
+ - TableLayer
+ - LowImpassable
+ layer:
+ - TableLayer
+ - LowImpassable
+ density: 60
+ hard: True
+ restitution: 0
+ friction: 0.4
+ thruster-burn:
+ shape: !type:PolygonShape
+ radius: 0.01
+ vertices:
+ - -0.4,0.5
+ - 0.4,0.5
+ - 0.1,1.2
+ - -0.1,1.2
+ mask: []
+ layer:
+ - Impassable
+ - TableLayer
+ - HighImpassable
+ - LowImpassable
+ - InteractImpassable
+ density: 1
+ hard: False
+ restitution: 0
+ friction: 0.4
+ type: Fixtures
+ - containers:
+ machine_board: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 387
+ machine_parts: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 382
+ - 383
+ - 384
+ - 385
+ - 386
+ type: ContainerContainer
+ - uid: 388
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -5.5,-8.5
+ parent: 1
+ type: Transform
+ - fixtures:
+ fix1:
+ shape: !type:PolygonShape
+ radius: 0.01
+ vertices:
+ - -0.45,-0.45
+ - 0.45,-0.45
+ - 0.45,0.45
+ - -0.45,0.45
+ mask:
+ - Impassable
+ - TableLayer
+ - LowImpassable
+ layer:
+ - TableLayer
+ - LowImpassable
+ density: 60
+ hard: True
+ restitution: 0
+ friction: 0.4
+ thruster-burn:
+ shape: !type:PolygonShape
+ radius: 0.01
+ vertices:
+ - -0.4,0.5
+ - 0.4,0.5
+ - 0.1,1.2
+ - -0.1,1.2
+ mask: []
+ layer:
+ - Impassable
+ - TableLayer
+ - HighImpassable
+ - LowImpassable
+ - InteractImpassable
+ density: 1
+ hard: False
+ restitution: 0
+ friction: 0.4
+ type: Fixtures
+ - containers:
+ machine_board: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 394
+ machine_parts: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 389
+ - 390
+ - 391
+ - 392
+ - 393
+ type: ContainerContainer
+ - uid: 395
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -5.5,-1.5
+ parent: 1
+ type: Transform
+ - containers:
+ machine_board: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 401
+ machine_parts: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 396
+ - 397
+ - 398
+ - 399
+ - 400
+ type: ContainerContainer
+ - uid: 402
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -5.5,-2.5
+ parent: 1
+ type: Transform
+ - fixtures:
+ fix1:
+ shape: !type:PolygonShape
+ radius: 0.01
+ vertices:
+ - -0.45,-0.45
+ - 0.45,-0.45
+ - 0.45,0.45
+ - -0.45,0.45
+ mask:
+ - Impassable
+ - TableLayer
+ - LowImpassable
+ layer:
+ - TableLayer
+ - LowImpassable
+ density: 60
+ hard: True
+ restitution: 0
+ friction: 0.4
+ thruster-burn:
+ shape: !type:PolygonShape
+ radius: 0.01
+ vertices:
+ - -0.4,0.5
+ - 0.4,0.5
+ - 0.1,1.2
+ - -0.1,1.2
+ mask: []
+ layer:
+ - Impassable
+ - TableLayer
+ - HighImpassable
+ - LowImpassable
+ - InteractImpassable
+ density: 1
+ hard: False
+ restitution: 0
+ friction: 0.4
+ type: Fixtures
+ - containers:
+ machine_board: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 408
+ machine_parts: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 403
+ - 404
+ - 405
+ - 406
+ - 407
+ type: ContainerContainer
+ - uid: 409
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -5.5,-3.5
+ parent: 1
+ type: Transform
+ - containers:
+ machine_board: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 415
+ machine_parts: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 410
+ - 411
+ - 412
+ - 413
+ - 414
+ type: ContainerContainer
+- proto: ThrusterMachineCircuitboard
+ entities:
+ - uid: 324
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 318
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 331
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 325
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 338
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 332
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 359
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 353
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 366
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 360
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 373
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 367
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 380
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 374
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 387
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 381
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 394
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 388
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 401
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 395
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 408
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 402
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 415
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 409
+ type: Transform
+ - canCollide: False
+ type: Physics
+- proto: ToolboxElectricalFilled
+ entities:
+ - uid: 255
+ components:
+ - pos: 11.327042,-8.269619
+ parent: 1
+ type: Transform
+ - containers:
+ storagebase: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 260
+ - 259
+ - 262
+ - 256
+ - 258
+ - 261
+ - 257
+ type: ContainerContainer
+ - canCollide: False
+ type: Physics
+- proto: ToolboxEmergencyFilled
+ entities:
+ - uid: 10
+ components:
+ - pos: 11.561417,-8.410244
+ parent: 1
+ type: Transform
+ - containers:
+ storagebase: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 17
+ - 15
+ - 16
+ - 18
+ - 11
+ - 19
+ type: ContainerContainer
+ - canCollide: False
+ type: Physics
+ - uid: 20
+ components:
+ - pos: 14.549274,-10.599367
+ parent: 1
+ type: Transform
+ - containers:
+ storagebase: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 27
+ - 25
+ - 26
+ - 28
+ - 21
+ - 29
+ type: ContainerContainer
+ - canCollide: False
+ type: Physics
+ - uid: 30
+ components:
+ - rot: 0.00017713382840156555 rad
+ pos: 18.470465,-2.4041085
+ parent: 1
+ type: Transform
+ - containers:
+ storagebase: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 37
+ - 35
+ - 36
+ - 38
+ - 31
+ - 39
+ type: ContainerContainer
+ - canCollide: False
+ type: Physics
+ - uid: 40
+ components:
+ - pos: -3.5,-4.5
+ parent: 1
+ type: Transform
+ - containers:
+ storagebase: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 47
+ - 45
+ - 46
+ - 48
+ - 41
+ - 49
+ type: ContainerContainer
+ - canCollide: False
+ type: Physics
+- proto: ToolboxMechanicalFilled
+ entities:
+ - uid: 561
+ components:
+ - pos: 11.436417,-8.332119
+ parent: 1
+ type: Transform
+ - containers:
+ storagebase: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 562
+ - 565
+ - 563
+ - 564
+ type: ContainerContainer
+ - canCollide: False
+ type: Physics
+- proto: trayScanner
+ entities:
+ - uid: 261
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 255
+ type: Transform
+ - canCollide: False
+ type: Physics
+- proto: VendingMachineTankDispenserEVA
+ entities:
+ - uid: 53
+ components:
+ - pos: 16.5,-0.5
+ parent: 1
+ type: Transform
+ - actionEntity: 54
+ type: VendingMachine
+ - actions:
+ - 54
+ type: Actions
+ - type: ActionsContainer
+ - containers:
+ actions: !type:Container
+ ents:
+ - 54
+ type: ContainerContainer
+- proto: VendingMachineWallMedical
+ entities:
+ - uid: 926
+ components:
+ - pos: 12.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 927
+ components:
+ - pos: 4.5,-2.5
+ parent: 1
+ type: Transform
+- proto: WallmountGeneratorAPUElectronics
+ entities:
+ - uid: 644
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 643
+ type: Transform
+ - canCollide: False
+ type: Physics
+- proto: WallPlastitanium
+ entities:
+ - uid: 808
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 22.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 809
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 22.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 810
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -5.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 811
+ components:
+ - pos: -5.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 812
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -5.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 813
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -5.5,-9.5
+ parent: 1
+ type: Transform
+- proto: WallShuttle
+ entities:
+ - uid: 815
+ components:
+ - pos: 0.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 817
+ components:
+ - pos: 1.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 818
+ components:
+ - pos: 3.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 819
+ components:
+ - pos: 5.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 820
+ components:
+ - pos: 7.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 821
+ components:
+ - pos: 11.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 822
+ components:
+ - pos: 13.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 823
+ components:
+ - pos: 15.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 824
+ components:
+ - pos: 16.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 825
+ components:
+ - pos: 17.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 840
+ components:
+ - pos: 5.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 841
+ components:
+ - pos: 4.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 842
+ components:
+ - pos: 1.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 843
+ components:
+ - pos: 0.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 855
+ components:
+ - pos: 6.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 856
+ components:
+ - pos: 9.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 857
+ components:
+ - pos: 10.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 859
+ components:
+ - pos: 11.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 860
+ components:
+ - pos: 12.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 861
+ components:
+ - pos: 15.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 862
+ components:
+ - pos: 16.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 863
+ components:
+ - pos: 17.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 864
+ components:
+ - pos: 17.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 868
+ components:
+ - pos: 17.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 869
+ components:
+ - pos: 17.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 871
+ components:
+ - pos: 18.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 874
+ components:
+ - pos: 21.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 875
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 21.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 876
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 21.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 877
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 21.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 878
+ components:
+ - pos: 19.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 879
+ components:
+ - pos: 20.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 880
+ components:
+ - pos: 21.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 881
+ components:
+ - pos: 21.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 882
+ components:
+ - pos: 21.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 883
+ components:
+ - pos: 21.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 884
+ components:
+ - pos: 21.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 885
+ components:
+ - pos: 21.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 886
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -4.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 887
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -4.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 888
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -4.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 889
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -4.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 890
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -4.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 891
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -4.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 892
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -4.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 893
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -4.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 894
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -4.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 895
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -4.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 896
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -4.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 897
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -4.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 903
+ components:
+ - pos: 19.5,-5.5
+ parent: 1
+ type: Transform
+- proto: WallShuttleDiagonal
+ entities:
+ - uid: 904
+ components:
+ - pos: -4.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 905
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -4.5,-11.5
+ parent: 1
+ type: Transform
+- proto: WallShuttleInterior
+ entities:
+ - uid: 679
+ components:
+ - pos: 17.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 701
+ components:
+ - pos: 17.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 704
+ components:
+ - pos: 0.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 705
+ components:
+ - pos: 17.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 706
+ components:
+ - pos: 0.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 707
+ components:
+ - pos: 0.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 708
+ components:
+ - pos: 0.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 709
+ components:
+ - pos: 0.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 710
+ components:
+ - pos: 0.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 711
+ components:
+ - pos: 0.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 712
+ components:
+ - pos: 1.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 713
+ components:
+ - pos: 4.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 714
+ components:
+ - pos: 5.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 715
+ components:
+ - pos: 5.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 716
+ components:
+ - pos: 5.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 717
+ components:
+ - pos: 5.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 720
+ components:
+ - pos: 5.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 721
+ components:
+ - pos: 0.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 779
+ components:
+ - pos: 0.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 814
+ components:
+ - pos: 0.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 816
+ components:
+ - pos: 0.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 826
+ components:
+ - pos: 4.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 827
+ components:
+ - pos: 6.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 828
+ components:
+ - pos: 10.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 829
+ components:
+ - pos: 12.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 830
+ components:
+ - pos: 6.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 831
+ components:
+ - pos: 10.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 832
+ components:
+ - pos: 10.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 833
+ components:
+ - pos: 10.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 834
+ components:
+ - pos: 11.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 835
+ components:
+ - pos: 13.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 836
+ components:
+ - pos: 16.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 837
+ components:
+ - pos: 17.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 838
+ components:
+ - pos: 17.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 839
+ components:
+ - pos: 17.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 844
+ components:
+ - pos: -0.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 845
+ components:
+ - pos: -1.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 846
+ components:
+ - pos: -3.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 847
+ components:
+ - pos: -2.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 848
+ components:
+ - pos: -1.5,-6.5
+ parent: 1
+ type: Transform
+- proto: WaterTankFull
+ entities:
+ - uid: 906
+ components:
+ - pos: -3.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 907
+ components:
+ - pos: 12.5,-7.5
+ parent: 1
+ type: Transform
+- proto: WeaponCapacitorRecharger
+ entities:
+ - uid: 301
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 3.5,-10.5
+ parent: 1
+ type: Transform
+ - containers:
+ charger_slot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ machine_board: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 305
+ machine_parts: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 303
+ - 304
+ - 302
+ type: ContainerContainer
+ - powerLoad: 0
+ type: ApcPowerReceiver
+ - uid: 306
+ components:
+ - pos: -3.5,-5.5
+ parent: 1
+ type: Transform
+ - containers:
+ charger_slot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ machine_board: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 310
+ machine_parts: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 308
+ - 309
+ - 307
+ type: ContainerContainer
+ - powerLoad: 0
+ type: ApcPowerReceiver
+- proto: WeaponCapacitorRechargerCircuitboard
+ entities:
+ - uid: 305
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 301
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 310
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 306
+ type: Transform
+ - canCollide: False
+ type: Physics
+- proto: Welder
+ entities:
+ - uid: 563
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 561
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 908
+ components:
+ - pos: 11.5,-7.5
+ parent: 1
+ type: Transform
+ - canCollide: False
+ type: Physics
+- proto: WindoorSecureEngineeringLocked
+ entities:
+ - uid: 569
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 19.5,-2.5
+ parent: 1
+ type: Transform
+ - address: 0563-CB65
+ receiveFrequency: 1280
+ type: DeviceNetwork
+ - containers:
+ board: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 570
+ type: ContainerContainer
+- proto: Wirecutter
+ entities:
+ - uid: 262
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 255
+ type: Transform
+ - selected:
+ enum.DamageStateVisualLayers.Base:
+ cutters: '#D5188DFF'
+ type: RandomSprite
+ - canCollide: False
+ type: Physics
+ - uid: 564
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 561
+ type: Transform
+ - selected:
+ enum.DamageStateVisualLayers.Base:
+ cutters: '#951710FF'
+ type: RandomSprite
+ - canCollide: False
+ type: Physics
+ - uid: 909
+ components:
+ - pos: 11.5,-7.5
+ parent: 1
+ type: Transform
+ - selected:
+ enum.DamageStateVisualLayers.Base:
+ cutters: '#1861D5FF'
+ type: RandomSprite
+ - canCollide: False
+ type: Physics
+- proto: Wrench
+ entities:
+ - uid: 565
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 561
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 910
+ components:
+ - pos: 11.5,-7.5
+ parent: 1
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 911
+ components:
+ - pos: 14.549274,-10.568117
+ parent: 1
+ type: Transform
+ - canCollide: False
+ type: Physics
+- proto: YellowOxygenTankFilled
+ entities:
+ - uid: 9
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 2
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - type: InsideEntityStorage
+...
diff --git a/Resources/Maps/atlas.yml b/Resources/Maps/atlas.yml
index 37cc97842e9..5723ffdae86 100644
--- a/Resources/Maps/atlas.yml
+++ b/Resources/Maps/atlas.yml
@@ -7,7 +7,6 @@ tilemap:
18: FloorCarpetClown
23: FloorClown
27: FloorDark
- 30: FloorDarkHerringbone
42: FloorFreezer
44: FloorGold
45: FloorGrass
@@ -22,6 +21,7 @@ tilemap:
78: FloorShowroom
87: FloorSteel
102: FloorTechMaint
+ 103: FloorTechMaint2
104: FloorTechMaint3
106: FloorWhite
115: FloorWhitePlastic
@@ -56,7 +56,7 @@ entities:
version: 6
-1,-1:
ind: -1,-1
- tiles: dwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdAAAAAAAdAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAdwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAAAdAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAdwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAAAagAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAdwAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdwAAAAAAdwAAAAAAagAAAAAAagAAAAAAGwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdwAAAAAAagAAAAAAagAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdwAAAAAAagAAAAAAagAAAAAAagAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAAAagAAAAAAagAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAagAAAAAAagAAAAAAagAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAagAAAAAAagAAAAAAagAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAALQAAAAAALQAAAAAALQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAOgAAAAAAOgAAAAAAdwAAAAAAdwAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAagAAAAAAOgAAAAAAOgAAAAAAdwAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAA
+ tiles: dwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdAAAAAAAdAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAdwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAAAdAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAdwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAAAagAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAdwAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAagAAAAAAagAAAAAAGwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdwAAAAAAagAAAAAAagAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdwAAAAAAagAAAAAAagAAAAAAagAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAAAagAAAAAAagAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAagAAAAAAagAAAAAAagAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAagAAAAAAagAAAAAAagAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAALQAAAAAALQAAAAAALQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAOgAAAAAAOgAAAAAAdwAAAAAAdwAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAagAAAAAAOgAAAAAAOgAAAAAAdwAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAA
version: 6
0,0:
ind: 0,0
@@ -92,7 +92,7 @@ entities:
version: 6
0,-1:
ind: 0,-1
- tiles: dAAAAAAAdwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAAAdwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAdwAAAAAAagAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAagAAAAAAdwAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAdwAAAAAAdwAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAdwAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAdwAAAAAAdwAAAAAAagAAAAAAdwAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAAAdwAAAAAAdwAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAdwAAAAAAdwAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAdwAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAdwAAAAAAdwAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAdwAAAAAAdwAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAAAagAAAAAAagAAAAAAdwAAAAAAdwAAAAAAagAAAAAAagAAAAAAagAAAAAAKgAAAAAAagAAAAAAagAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAAAdwAAAAAAdwAAAAAAagAAAAAAagAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAagAAAAAAagAAAAAAagAAAAAAdwAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAAAagAAAAAAagAAAAAAdwAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAdwAAAAAAVwAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAdwAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAVwAAAAAAagAAAAAAagAAAAAAagAAAAAAdwAAAAAAagAAAAAAagAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAdwAAAAAAagAAAAAAagAAAAAAagAAAAAAdwAAAAAAVwAAAAAA
+ tiles: dAAAAAAAdwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAAAdwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAdwAAAAAAagAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAagAAAAAAdwAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAdwAAAAAAdwAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAdwAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAdwAAAAAAdwAAAAAAagAAAAAAdwAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAAAdwAAAAAAdwAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAdwAAAAAAdwAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAdwAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAdwAAAAAAdwAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAdwAAAAAAdwAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAAAagAAAAAAagAAAAAAdwAAAAAAdwAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAAAdwAAAAAAdwAAAAAAagAAAAAAagAAAAAAdwAAAAAATgAAAAAATgAAAAAATgAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAagAAAAAAagAAAAAAagAAAAAAdwAAAAAAagAAAAAAagAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAAAagAAAAAAagAAAAAAdwAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAVwAAAAAAVwAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAdwAAAAAATgAAAAAATgAAAAAATgAAAAAAdwAAAAAAVwAAAAAAagAAAAAAagAAAAAAagAAAAAAdwAAAAAAagAAAAAAagAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAdwAAAAAATgAAAAAATgAAAAAATgAAAAAAdwAAAAAAVwAAAAAA
version: 6
-1,-2:
ind: -1,-2
@@ -108,7 +108,7 @@ entities:
version: 6
-2,-1:
ind: -2,-1
- tiles: dwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAdwAAAAAAGwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAdAAAAAAAdwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAAAdAAAAAAAdwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAdwAAAAAAGwAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAdwAAAAAAGwAAAAAAGwAAAAAAdAAAAAAAdwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAdwAAAAAAGwAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAADAAAAAAADAAAAAAADAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAOgAAAAAAOgAAAAAAVwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAOgAAAAAAOgAAAAAAVwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAOgAAAAAA
+ tiles: dwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAdwAAAAAAGwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAdAAAAAAAdwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAAAdAAAAAAAdwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAdwAAAAAAGwAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAdwAAAAAAGwAAAAAAGwAAAAAAdAAAAAAAdwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAdwAAAAAAGwAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAdwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAADAAAAAAADAAAAAAADAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAOgAAAAAAOgAAAAAAVwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAOgAAAAAAOgAAAAAAVwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAOgAAAAAA
version: 6
-2,0:
ind: -2,0
@@ -116,11 +116,11 @@ entities:
version: 6
-2,-2:
ind: -2,-2
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAASwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAAVwAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAVwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAASwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAAVwAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAdwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAA
version: 6
-3,-1:
ind: -3,-1
- tiles: AAAAAAAAAAAAAAAAdwAAAAAAaAAAAAAAaAAAAAAAdwAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdwAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAGwAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdwAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAGwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAGwAAAAAAdgAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdwAAAAAAdwAAAAAAdAAAAAAAdAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdAAAAAAAdwAAAAAAdwAAAAAAdAAAAAAAdAAAAAAAdwAAAAAAdAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAAAdAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAAAdwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAVwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAA
+ tiles: AAAAAAAAAAAAAAAAdwAAAAAAaAAAAAAAaAAAAAAAdwAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAZwAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdwAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAGwAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdwAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAGwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAGwAAAAAAdgAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdwAAAAAAdwAAAAAAdAAAAAAAdAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdAAAAAAAdwAAAAAAdwAAAAAAdAAAAAAAdAAAAAAAdwAAAAAAdAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAAAdAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAAAdwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAVwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAA
version: 6
-3,-2:
ind: -3,-2
@@ -132,7 +132,7 @@ entities:
version: 6
-3,0:
ind: -3,0
- tiles: dwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAVwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAANwAAAAAANwAAAAAANwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAVwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAVwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAANwAAAAAANwAAAAAANwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAVwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAVwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAVwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAA
+ tiles: dwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAVwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAANwAAAAAANwAAAAAANwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAVwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAVwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAANwAAAAAANwAAAAAANwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAVwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAVwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAVwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAA
version: 6
-3,1:
ind: -3,1
@@ -178,92 +178,143 @@ entities:
color: '#FFFFFFFF'
id: Arrows
decals:
- 499: -26,15
+ 494: -26,15
- node:
color: '#FFFFFFFF'
id: Arrows
decals:
- 685: 25,3
- 825: 29,1
- - node:
- angle: 1.5707963267948966 rad
- color: '#FFFFFFFF'
- id: Arrows
- decals:
- 756: -43,1
- 757: -43,3
- 758: -41,2
+ 680: 25,3
+ 820: 29,1
+ 1016: 23,5
- node:
angle: 3.141592653589793 rad
color: '#FFFFFFFF'
id: Arrows
decals:
- 759: -42,4
- 763: -44,8
- 764: -43,8
- 765: -42,8
- 824: 25,0
- - node:
- angle: 4.71238898038469 rad
- color: '#FFFFFFFF'
- id: Arrows
- decals:
- 760: -41,0
- 761: -43,2
- 762: -43,4
+ 819: 25,0
- node:
color: '#FFFFFFFF'
id: Bot
decals:
193: -41,18
194: -43,18
- 485: -31,16
- 486: -32,16
- 487: -18,14
- 488: -19,14
- 489: -19,16
- 490: -18,16
- 491: -19,18
- 492: -18,18
- 706: -31,8
- 707: -16,17
- 708: -12,13
- 709: -18,9
- 710: -18,-5
- 826: 27,0
- 827: 28,0
- 828: 29,0
+ 480: -31,16
+ 481: -32,16
+ 482: -18,14
+ 483: -19,14
+ 484: -19,16
+ 485: -18,16
+ 486: -19,18
+ 487: -18,18
+ 701: -31,8
+ 702: -16,17
+ 703: -12,13
+ 704: -18,9
+ 705: -18,-5
+ 821: 27,0
+ 822: 28,0
+ 823: 29,0
+ 958: -35,-10
+ 1015: 21,5
+ 1018: 5,-1
- node:
color: '#52B4E996'
id: BotGreyscale
decals:
- 866: -48,6
+ 859: -48,6
- node:
color: '#A4610696'
id: BotGreyscale
decals:
- 867: -49,6
+ 860: -49,6
- node:
color: '#D381C996'
id: BotGreyscale
decals:
- 863: -49,8
+ 856: -49,8
- node:
color: '#DE3A3A96'
id: BotGreyscale
decals:
- 864: -47,7
+ 857: -47,7
- node:
color: '#EFB34196'
id: BotGreyscale
decals:
- 865: -49,7
+ 858: -49,7
+ - node:
+ color: '#FFFFFFFF'
+ id: BotLeft
+ decals:
+ 959: -37,-10
+ 975: -19,-23
+ 976: -18,-23
- node:
color: '#FFFFFFFF'
id: BotRight
decals:
196: -45,18
197: -45,17
+ 1012: 21,6
+ 1013: 21,7
+ 1014: 21,8
+ - node:
+ color: '#D381C996'
+ id: BrickTileSteelCornerNe
+ decals:
+ 966: -17,-21
+ - node:
+ color: '#D381C996'
+ id: BrickTileSteelCornerNw
+ decals:
+ 965: -19,-21
+ - node:
+ color: '#D381C996'
+ id: BrickTileSteelCornerSe
+ decals:
+ 968: -17,-23
+ - node:
+ color: '#D381C996'
+ id: BrickTileSteelCornerSw
+ decals:
+ 967: -19,-23
+ - node:
+ color: '#D381C996'
+ id: BrickTileSteelLineE
+ decals:
+ 963: -17,-22
+ - node:
+ color: '#D381C996'
+ id: BrickTileSteelLineN
+ decals:
+ 964: -18,-21
+ - node:
+ color: '#D381C996'
+ id: BrickTileSteelLineS
+ decals:
+ 969: -18,-23
+ - node:
+ color: '#D381C996'
+ id: BrickTileSteelLineW
+ decals:
+ 962: -19,-22
+ - node:
+ color: '#52B4E996'
+ id: BrickTileWhiteCornerNw
+ decals:
+ 1007: 2,-12
+ - node:
+ color: '#52B4E996'
+ id: BrickTileWhiteLineN
+ decals:
+ 1008: 3,-12
+ 1009: 4,-12
+ - node:
+ color: '#52B4E996'
+ id: BrickTileWhiteLineS
+ decals:
+ 1010: 5,-13
+ 1011: 4,-13
- node:
color: '#FFFFFFFF'
id: Bushb3
@@ -325,96 +376,96 @@ entities:
color: '#52B4E996'
id: CheckerNESW
decals:
- 754: 18,25
- 755: 19,25
+ 749: 18,25
+ 750: 19,25
- node:
color: '#5E7C167F'
id: CheckerNESW
decals:
- 868: -25,1
- 869: -26,1
- 870: -26,2
- 871: -25,2
- 872: -24,2
- 873: -24,1
- 874: -24,3
- 875: -25,3
- 876: -26,3
- 877: -26,4
- 878: -25,4
- 879: -24,4
- 880: -24,5
- 881: -25,5
- 882: -26,5
- 883: -26,6
- 884: -26,7
- 885: -25,7
- 886: -25,8
- 887: -24,8
- 888: -23,8
- 889: -23,7
- 890: -24,7
- 891: -25,6
- 892: -24,6
- 893: -23,6
- 894: -23,5
- 895: -22,6
- 896: -22,7
- 897: -19,6
- 898: -19,7
- 899: -20,7
- 900: -20,6
- 901: -21,6
- 902: -21,7
- 903: -27,1
- 904: -27,2
- 905: -27,3
- 906: -26,0
- 907: -25,0
- 908: -24,0
- 909: -23,-1
- 910: -24,-1
- 911: -25,-1
- 912: -26,-1
- 913: -26,-2
- 914: -25,-2
- 915: -24,-2
- 916: -26,-3
- 917: -25,-3
- 918: -25,-4
- 919: -24,-4
- 920: -24,-3
- 921: -23,-3
- 922: -23,-4
- 923: -23,-2
- 924: -22,-3
- 925: -22,-2
- 926: -21,-2
- 927: -21,-3
- 928: -20,-3
- 929: -20,-2
- 930: -19,-2
- 931: -19,-3
+ 861: -25,1
+ 862: -26,1
+ 863: -26,2
+ 864: -25,2
+ 865: -24,2
+ 866: -24,1
+ 867: -24,3
+ 868: -25,3
+ 869: -26,3
+ 870: -26,4
+ 871: -25,4
+ 872: -24,4
+ 873: -24,5
+ 874: -25,5
+ 875: -26,5
+ 876: -26,6
+ 877: -26,7
+ 878: -25,7
+ 879: -25,8
+ 880: -24,8
+ 881: -23,8
+ 882: -23,7
+ 883: -24,7
+ 884: -25,6
+ 885: -24,6
+ 886: -23,6
+ 887: -23,5
+ 888: -22,6
+ 889: -22,7
+ 890: -19,6
+ 891: -19,7
+ 892: -20,7
+ 893: -20,6
+ 894: -21,6
+ 895: -21,7
+ 896: -27,1
+ 897: -27,2
+ 898: -27,3
+ 899: -26,0
+ 900: -25,0
+ 901: -24,0
+ 902: -23,-1
+ 903: -24,-1
+ 904: -25,-1
+ 905: -26,-1
+ 906: -26,-2
+ 907: -25,-2
+ 908: -24,-2
+ 909: -26,-3
+ 910: -25,-3
+ 911: -25,-4
+ 912: -24,-4
+ 913: -24,-3
+ 914: -23,-3
+ 915: -23,-4
+ 916: -23,-2
+ 917: -22,-3
+ 918: -22,-2
+ 919: -21,-2
+ 920: -21,-3
+ 921: -20,-3
+ 922: -20,-2
+ 923: -19,-2
+ 924: -19,-3
- node:
color: '#A4610696'
id: CheckerNESW
decals:
- 434: -32,19
- 435: -32,20
- 436: -33,20
- 437: -33,21
- 438: -33,19
- 439: -34,19
- 440: -34,20
- 441: -34,21
- 442: -35,21
- 443: -35,20
- 444: -35,19
+ 429: -32,19
+ 430: -32,20
+ 431: -33,20
+ 432: -33,21
+ 433: -33,19
+ 434: -34,19
+ 435: -34,20
+ 436: -34,21
+ 437: -35,21
+ 438: -35,20
+ 439: -35,19
- node:
color: '#D381C996'
id: CheckerNESW
decals:
- 424: -26,-9
+ 419: -26,-9
- node:
color: '#D4D4D428'
id: CheckerNESW
@@ -430,6 +481,9 @@ entities:
303: -2,-12
304: -1,-12
305: 0,-12
+ 1027: 13,-3
+ 1028: 12,-3
+ 1029: 11,-3
- node:
color: '#9FED58D6'
id: CheckerNWSE
@@ -469,15 +523,36 @@ entities:
335: -20,-9
336: -20,-10
337: -20,-11
+ 1021: -24,-17
+ 1022: -23,-17
+ 1023: -22,-17
+ - node:
+ color: '#D4D4D428'
+ id: CheckerNWSE
+ decals:
+ 944: -45,-14
+ 945: -44,-14
+ 946: -43,-14
+ 947: -42,-14
+ 948: -41,-14
+ 949: -40,-14
+ 950: -39,-14
+ 951: -38,-14
+ 952: -37,-14
+ 953: -36,-14
+ 954: -36,-13
+ 955: -36,-12
+ 956: -36,-11
+ 957: -35,-11
- node:
color: '#DE3A3A96'
id: CheckerNWSE
decals:
- 636: 11,12
- 637: 12,12
- 638: 12,13
- 639: 11,13
- 640: 10,13
+ 631: 11,12
+ 632: 12,12
+ 633: 12,13
+ 634: 11,13
+ 635: 10,13
- node:
color: '#EFB34196'
id: CheckerNWSE
@@ -495,25 +570,28 @@ entities:
223: -32,-2
224: -33,-2
225: -34,-2
- 567: -39,8
- 568: -40,8
- 569: -40,9
- 570: -39,9
- 571: -39,10
- 572: -40,10
+ 562: -39,8
+ 563: -40,8
+ 564: -40,9
+ 565: -39,9
+ 566: -39,10
+ 567: -40,10
- node:
color: '#FFFFFFFF'
id: Delivery
decals:
195: -45,19
- 484: -30,16
- 493: -19,20
- 494: -18,20
- 495: -20,14
- 496: -20,16
- 497: -20,18
- 498: -20,20
- 829: 26,0
+ 479: -30,16
+ 488: -19,20
+ 489: -18,20
+ 490: -20,14
+ 491: -20,16
+ 492: -20,18
+ 493: -20,20
+ 824: 26,0
+ 973: -17,-22
+ 974: -17,-21
+ 992: 6,-14
- node:
color: '#FFFFFFFF'
id: DirtHeavy
@@ -533,14 +611,14 @@ entities:
color: '#FFFFFFFF'
id: DirtHeavy
decals:
- 507: -16,13
- 531: -38,19
- 532: -39,18
- 585: -33,8
- 586: -35,9
- 587: -36,9
- 588: -36,8
- 589: -37,9
+ 502: -16,13
+ 526: -38,19
+ 527: -39,18
+ 580: -33,8
+ 581: -35,9
+ 582: -36,9
+ 583: -36,8
+ 584: -37,9
- node:
color: '#FFFFFFFF'
id: DirtLight
@@ -585,55 +663,55 @@ entities:
347: -43,6
348: -41,6
349: -40,5
- 513: -23,14
- 514: -24,15
- 515: -23,16
- 516: -26,16
- 517: -27,15
- 518: -28,14
- 519: -24,18
- 520: -28,19
- 521: -27,21
- 522: -19,13
- 523: -20,13
- 524: -21,15
- 525: -17,15
- 526: -19,17
- 527: -17,19
- 528: -43,16
- 529: -42,16
- 530: -41,15
- 536: -38,17
- 537: -37,15
- 538: -38,15
- 539: -44,16
- 592: -37,10
- 593: -35,10
- 594: -34,9
- 595: -36,7
- 596: -40,9
- 597: -34,10
- 598: -26,-8
- 599: -17,-9
- 600: -18,-5
- 734: -30,-8
- 735: -31,-8
- 736: -32,-9
- 737: -28,-7
- 738: -29,-4
- 739: -21,-6
- 740: -24,-6
- 741: -24,-3
- 742: -23,-2
- 743: -24,7
- 744: -25,9
- 745: -28,9
- 746: -29,8
- 747: -29,6
- 748: -30,4
- 749: -30,0
- 750: -16,10
- 751: -7,9
+ 508: -23,14
+ 509: -24,15
+ 510: -23,16
+ 511: -26,16
+ 512: -27,15
+ 513: -28,14
+ 514: -24,18
+ 515: -28,19
+ 516: -27,21
+ 517: -19,13
+ 518: -20,13
+ 519: -21,15
+ 520: -17,15
+ 521: -19,17
+ 522: -17,19
+ 523: -43,16
+ 524: -42,16
+ 525: -41,15
+ 531: -38,17
+ 532: -37,15
+ 533: -38,15
+ 534: -44,16
+ 587: -37,10
+ 588: -35,10
+ 589: -34,9
+ 590: -36,7
+ 591: -40,9
+ 592: -34,10
+ 593: -26,-8
+ 594: -17,-9
+ 595: -18,-5
+ 729: -30,-8
+ 730: -31,-8
+ 731: -32,-9
+ 732: -28,-7
+ 733: -29,-4
+ 734: -21,-6
+ 735: -24,-6
+ 736: -24,-3
+ 737: -23,-2
+ 738: -24,7
+ 739: -25,9
+ 740: -28,9
+ 741: -29,8
+ 742: -29,6
+ 743: -30,4
+ 744: -30,0
+ 745: -16,10
+ 746: -7,9
- node:
color: '#FFFFFFFF'
id: DirtMedium
@@ -659,16 +737,16 @@ entities:
color: '#FFFFFFFF'
id: DirtMedium
decals:
- 508: -17,13
- 509: -24,16
- 510: -23,17
- 511: -22,15
- 512: -21,14
- 533: -39,19
- 534: -38,18
- 535: -38,16
- 590: -39,9
- 591: -36,10
+ 503: -17,13
+ 504: -24,16
+ 505: -23,17
+ 506: -22,15
+ 507: -21,14
+ 528: -39,19
+ 529: -38,18
+ 530: -38,16
+ 585: -39,9
+ 586: -36,10
- node:
color: '#FFFFFFFF'
id: Flowerspv1
@@ -684,20 +762,20 @@ entities:
id: Flowersy1
decals:
108: -10.738006,-3.9568367
- 789: -10.994903,-0.060851812
+ 784: -10.994903,-0.060851812
- node:
color: '#FFFFFFFF'
id: Flowersy2
decals:
107: -11.738006,-3.9568367
- 790: -11.041778,2.299955
+ 785: -11.041778,2.299955
- node:
color: '#FFFFFFFF'
id: Flowersy4
decals:
109: -10.003631,-3.9568367
- 791: -10.760528,3.47183
- 792: -9.948028,0.6905799
+ 786: -10.760528,3.47183
+ 787: -9.948028,0.6905799
- node:
color: '#334E6DC8'
id: FullTileOverlayGreyscale
@@ -721,27 +799,12 @@ entities:
50: 1,-1
51: 2,-2
306: 1,-13
- 372: 7,-12
- 385: 5,-11
+ 382: 5,-11
- node:
color: '#9FED5896'
id: FullTileOverlayGreyscale
decals:
77: -8,2
- 78: -13,-1
- 79: -13,0
- 80: -13,5
- 81: -13,4
- 796: -9,4
- 797: -9,5
- 798: -9,0
- 799: -9,-1
- 800: -10,-2
- 801: -11,-2
- 802: -12,-2
- 803: -12,6
- 804: -11,6
- 805: -10,6
- node:
color: '#9FED58D6'
id: FullTileOverlayGreyscale
@@ -758,16 +821,16 @@ entities:
color: '#A4610696'
id: FullTileOverlayGreyscale
decals:
- 454: -36,19
- 469: -25,16
- 470: -25,17
- 480: -33,18
+ 449: -36,19
+ 464: -25,16
+ 465: -25,17
+ 475: -33,18
- node:
color: '#D381C996'
id: FullTileOverlayGreyscale
decals:
325: -22,-12
- 834: -29,-13
+ 829: -29,-13
- node:
color: '#DCCF8B96'
id: FullTileOverlayGreyscale
@@ -782,10 +845,10 @@ entities:
id: FullTileOverlayGreyscale
decals:
3: 16,6
- 618: 14,14
- 627: 12,7
- 628: 9,7
- 629: 6,7
+ 613: 14,14
+ 622: 12,7
+ 623: 9,7
+ 624: 6,7
- node:
color: '#EFB34196'
id: FullTileOverlayGreyscale
@@ -808,15 +871,15 @@ entities:
258: -33,7
276: -33,-3
277: -36,-3
- 573: -38,9
- 579: -36,7
+ 568: -38,9
+ 574: -36,7
- node:
color: '#FFFFFFFF'
id: Grassa3
decals:
- 779: -11.979278,3.954773
- 780: -10.057403,1.6266482
- 812: -11.8116865,0.0030798912
+ 774: -11.979278,3.954773
+ 775: -10.057403,1.6266482
+ 807: -11.8116865,0.0030798912
- node:
color: '#FFFFFFFF'
id: Grassa4
@@ -826,27 +889,27 @@ entities:
color: '#FFFFFFFF'
id: Grassa5
decals:
- 781: -11.541778,3.0797732
- 782: -10.088653,-0.013976812
- 783: -11.963653,1.6266482
+ 776: -11.541778,3.0797732
+ 777: -10.088653,-0.013976812
+ 778: -11.963653,1.6266482
- node:
color: '#FFFFFFFF'
id: Grassb1
decals:
- 817: -10.2023115,4.34683
+ 812: -10.2023115,4.34683
- node:
color: '#FFFFFFFF'
id: Grassb2
decals:
90: 11.052019,1.9986625
- 788: -10.104278,3.736023
+ 783: -10.104278,3.736023
- node:
color: '#FFFFFFFF'
id: Grassb3
decals:
- 787: -12.073028,2.6110232
- 813: -10.9835615,0.7062049
- 818: -12.3273115,3.143705
+ 782: -12.073028,2.6110232
+ 808: -10.9835615,0.7062049
+ 813: -12.3273115,3.143705
- node:
color: '#FFFFFFFF'
id: Grassb4
@@ -857,12 +920,10 @@ entities:
id: Grassb5
decals:
93: 8.364519,2.0455375
- 784: -10.244903,2.8766482
- 785: -10.979278,3.892273
- 786: -11.244903,1.3453982
- 814: -11.0929365,1.7999549
- 815: -11.4679365,-0.4812951
- 816: -9.6241865,2.737455
+ 779: -10.244903,2.8766482
+ 780: -10.979278,3.892273
+ 781: -11.244903,1.3453982
+ 809: -11.0929365,1.7999549
- node:
color: '#FFFFFFFF'
id: Grassd1
@@ -903,49 +964,39 @@ entities:
17: 29,4
18: 31,4
19: 32,4
- 776: 26,4
+ 771: 26,4
- node:
color: '#52B4E996'
id: HalfTileOverlayGreyscale
decals:
- 366: 12,-11
- 367: 11,-11
- 368: 10,-11
- 369: 9,-11
- 373: 6,-12
- 374: 5,-12
- 375: 4,-12
- 376: 3,-12
- 377: 2,-12
- 398: 13,-1
- 399: 12,-1
- 400: 11,-1
- 851: 7,-1
- 860: 3,-7
- 942: 9,-3
- 943: 8,-3
- 944: 7,-3
- 945: 6,-3
+ 363: 12,-11
+ 364: 11,-11
+ 365: 10,-11
+ 366: 9,-11
+ 846: 7,-1
+ 1044: 3,-6
+ 1045: 2,-6
+ 1046: 1,-6
- node:
- color: '#9FED5896'
+ color: '#9FED584D'
id: HalfTileOverlayGreyscale
decals:
- 71: -12,-5
- 72: -11,-5
- 73: -10,-5
- 807: -11,5
+ 1061: -11,6
+ 1074: -12,-5
+ 1075: -11,-5
+ 1076: -10,-5
- node:
color: '#A4610696'
id: HalfTileOverlayGreyscale
decals:
- 475: -30,17
- 476: -31,17
- 477: -32,17
- 478: -33,17
- 479: -34,17
- 562: -26,12
- 563: -27,12
- 564: -28,12
+ 470: -30,17
+ 471: -31,17
+ 472: -32,17
+ 473: -33,17
+ 474: -34,17
+ 557: -26,12
+ 558: -27,12
+ 559: -28,12
- node:
color: '#D381C996'
id: HalfTileOverlayGreyscale
@@ -957,18 +1008,18 @@ entities:
138: -23,-19
139: -24,-19
140: -25,-19
- 419: -21,-13
- 420: -22,-13
- 421: -23,-13
- 422: -24,-13
- 423: -25,-13
+ 414: -21,-13
+ 415: -22,-13
+ 416: -23,-13
+ 417: -24,-13
+ 418: -25,-13
- node:
color: '#DE3A3A96'
id: HalfTileOverlayGreyscale
decals:
- 643: 13,19
- 644: 14,19
- 645: 15,19
+ 638: 13,19
+ 639: 14,19
+ 640: 15,19
- node:
color: '#EFB34196'
id: HalfTileOverlayGreyscale
@@ -977,66 +1028,56 @@ entities:
279: -34,-4
280: -35,-4
281: -36,-4
- 580: -33,10
- 581: -34,10
- 582: -35,10
- 583: -36,10
- 584: -37,10
+ 575: -33,10
+ 576: -34,10
+ 577: -35,10
+ 578: -36,10
+ 579: -37,10
- node:
color: '#334E6DC8'
id: HalfTileOverlayGreyscale180
decals:
20: 32,0
21: 31,0
- 766: 26,-5
- 767: 27,-5
- 768: 28,-5
+ 761: 26,-5
+ 762: 27,-5
+ 763: 28,-5
- node:
color: '#52B4E996'
id: HalfTileOverlayGreyscale180
decals:
- 353: 13,-9
- 354: 12,-9
- 355: 11,-9
- 360: 12,-14
- 361: 11,-14
- 362: 10,-14
- 363: 9,-14
- 378: 6,-10
- 379: 5,-10
- 380: 4,-10
- 381: 3,-10
- 382: 2,-10
- 383: 1,-10
- 384: 0,-10
- 393: 7,-9
- 395: 13,-3
- 396: 12,-3
- 397: 11,-3
- 401: 0,-4
- 402: 1,-4
- 403: 2,-4
- 406: 6,-14
- 752: 10,-9
- 753: 9,-9
- 856: 7,-6
- 938: 9,-4
- 939: 8,-4
- 940: 7,-4
- 941: 6,-4
+ 350: 13,-9
+ 351: 12,-9
+ 352: 11,-9
+ 357: 12,-14
+ 358: 11,-14
+ 359: 10,-14
+ 360: 9,-14
+ 375: 6,-10
+ 377: 4,-10
+ 378: 3,-10
+ 379: 2,-10
+ 380: 1,-10
+ 381: 0,-10
+ 390: 7,-9
+ 398: 0,-4
+ 399: 1,-4
+ 400: 2,-4
+ 747: 10,-9
+ 748: 9,-9
- node:
- color: '#9FED5896'
+ color: '#9FED584D'
id: HalfTileOverlayGreyscale180
decals:
- 63: -10,9
- 64: -11,9
- 65: -12,9
- 806: -11,-1
+ 1066: -11,-2
+ 1071: -12,9
+ 1072: -11,9
+ 1073: -10,9
- node:
color: '#A4610696'
id: HalfTileOverlayGreyscale180
decals:
- 467: -20,13
+ 462: -20,13
- node:
color: '#D381C996'
id: HalfTileOverlayGreyscale180
@@ -1049,15 +1090,15 @@ entities:
133: -23,-22
134: -24,-22
135: -25,-22
- 411: -21,-15
- 412: -22,-15
- 413: -23,-15
- 414: -24,-15
- 415: -25,-15
- 416: -26,-15
- 417: -27,-15
- 418: -28,-15
- 551: -27,-8
+ 406: -21,-15
+ 407: -22,-15
+ 408: -23,-15
+ 409: -24,-15
+ 410: -25,-15
+ 411: -26,-15
+ 412: -27,-15
+ 413: -28,-15
+ 546: -27,-8
- node:
color: '#DCCF8B96'
id: HalfTileOverlayGreyscale180
@@ -1067,14 +1108,14 @@ entities:
color: '#DE3A3A96'
id: HalfTileOverlayGreyscale180
decals:
- 619: 12,8
- 620: 11,8
- 621: 10,8
- 622: 9,8
- 623: 8,8
- 624: 7,8
- 625: 6,8
- 626: 5,8
+ 614: 12,8
+ 615: 11,8
+ 616: 10,8
+ 617: 9,8
+ 618: 8,8
+ 619: 7,8
+ 620: 6,8
+ 621: 5,8
- node:
color: '#EFB34196'
id: HalfTileOverlayGreyscale180
@@ -1087,54 +1128,51 @@ entities:
273: -42,-2
274: -43,-2
275: -44,-2
- 574: -33,8
- 575: -34,8
- 576: -35,8
- 577: -36,8
- 578: -37,8
+ 569: -33,8
+ 570: -34,8
+ 571: -35,8
+ 572: -36,8
+ 573: -37,8
- node:
color: '#334E6DC8'
id: HalfTileOverlayGreyscale270
decals:
- 770: 25,-4
- 771: 25,-3
- 772: 25,-2
- 773: 34,-2
- 774: 34,-3
- 775: 34,-4
+ 765: 25,-4
+ 766: 25,-3
+ 767: 25,-2
+ 768: 34,-2
+ 769: 34,-3
+ 770: 34,-4
- node:
color: '#52B4E996'
id: HalfTileOverlayGreyscale270
decals:
- 370: 8,-13
- 371: 8,-12
- 387: 0,-9
- 388: 0,-8
- 389: 0,-7
- 390: 0,-6
- 407: 4,-3
- 408: 4,-2
- 840: 4,-4
- 841: 4,-5
- 842: 8,-5
- 843: 6,-5
- 844: 6,-2
- 845: 8,-2
- 861: 4,-6
+ 367: 8,-13
+ 384: 0,-9
+ 385: 0,-8
+ 386: 0,-7
+ 402: 4,-3
+ 403: 4,-2
+ 835: 4,-4
+ 836: 4,-5
+ 839: 6,-2
+ 840: 8,-2
- node:
- color: '#9FED5896'
+ color: '#9FED584D'
id: HalfTileOverlayGreyscale270
decals:
- 52: -7,-1
- 53: -7,0
- 54: -7,1
- 55: -7,2
- 56: -7,3
- 57: -7,4
- 58: -7,5
- 59: -7,6
- 60: -7,-2
- 84: -13,2
+ 1062: -13,4
+ 1063: -13,3
+ 1064: -13,1
+ 1065: -13,0
+ 1087: -7,6
+ 1088: -7,5
+ 1089: -7,4
+ 1090: -7,3
+ 1091: -7,1
+ 1092: -7,0
+ 1093: -7,-1
+ 1094: -7,-2
- node:
color: '#A4610696'
id: HalfTileOverlayGreyscale270
@@ -1147,24 +1185,24 @@ entities:
147: -24,19
148: -24,20
149: -24,21
- 445: -45,15
- 446: -45,16
- 449: -39,16
- 450: -39,17
- 451: -39,18
- 459: -39,15
- 481: -28,19
- 482: -28,20
- 483: -28,21
+ 440: -45,15
+ 441: -45,16
+ 444: -39,16
+ 445: -39,17
+ 446: -39,18
+ 454: -39,15
+ 476: -28,19
+ 477: -28,20
+ 478: -28,21
- node:
color: '#D381C996'
id: HalfTileOverlayGreyscale270
decals:
125: -18,-13
126: -18,-12
- 426: -28,-14
- 838: -30,-11
- 839: -30,-10
+ 421: -28,-14
+ 833: -30,-11
+ 834: -30,-10
- node:
color: '#DCCF8B96'
id: HalfTileOverlayGreyscale270
@@ -1176,38 +1214,36 @@ entities:
color: '#DE3A3A96'
id: HalfTileOverlayGreyscale270
decals:
- 611: 12,17
- 612: 12,16
- 613: 12,15
- 631: 5,9
- 632: 5,10
- 633: 5,11
- 634: 5,12
- 635: 5,13
- 641: 12,18
- 642: 12,19
+ 606: 12,17
+ 607: 12,16
+ 608: 12,15
+ 626: 5,9
+ 627: 5,10
+ 628: 5,11
+ 629: 5,12
+ 630: 5,13
+ 636: 12,18
+ 637: 12,19
- node:
color: '#EFB34196'
id: HalfTileOverlayGreyscale270
decals:
- 687: -30,2
+ 682: -30,2
- node:
color: '#52B4E996'
id: HalfTileOverlayGreyscale90
decals:
- 364: 13,-13
- 365: 13,-12
- 852: 9,-2
- 855: 9,-5
- 862: 2,-6
- 936: 5,-6
- 937: 5,-5
- 946: 5,-2
+ 361: 13,-13
+ 847: 9,-2
+ 938: 5,-2
- node:
- color: '#9FED5896'
+ color: '#9FED584D'
id: HalfTileOverlayGreyscale90
decals:
- 795: -9,2
+ 1067: -9,0
+ 1068: -9,1
+ 1069: -9,3
+ 1070: -9,4
- node:
color: '#A4610696'
id: HalfTileOverlayGreyscale90
@@ -1222,27 +1258,27 @@ entities:
344: -26,19
345: -26,20
346: -26,21
- 432: -16,14
- 433: -16,15
- 447: -40,15
- 448: -40,16
- 456: -36,16
- 457: -37,18
- 460: -36,15
- 468: -17,23
- 471: -26,14
- 472: -26,15
- 473: -26,16
- 474: -26,17
+ 427: -16,14
+ 428: -16,15
+ 442: -40,15
+ 443: -40,16
+ 451: -36,16
+ 452: -37,18
+ 455: -36,15
+ 463: -17,23
+ 466: -26,14
+ 467: -26,15
+ 468: -26,16
+ 469: -26,17
- node:
color: '#D381C996'
id: HalfTileOverlayGreyscale90
decals:
129: -14,-14
130: -14,-13
- 427: -26,-12
- 428: -26,-11
- 429: -26,-10
+ 422: -26,-12
+ 423: -26,-11
+ 424: -26,-10
- node:
color: '#DCCF8B96'
id: HalfTileOverlayGreyscale90
@@ -1255,15 +1291,15 @@ entities:
4: 15,5
5: 15,6
6: 15,7
- 614: 15,9
- 615: 15,10
- 616: 15,11
- 617: 15,12
- 648: 15,18
- 649: 15,17
- 650: 15,16
- 651: 15,15
- 652: 15,13
+ 609: 15,9
+ 610: 15,10
+ 611: 15,11
+ 612: 15,12
+ 643: 15,18
+ 644: 15,17
+ 645: 15,16
+ 646: 15,15
+ 647: 15,13
- node:
color: '#EFB34196'
id: HalfTileOverlayGreyscale90
@@ -1280,69 +1316,71 @@ entities:
color: '#FFFFFFFF'
id: LoadingArea
decals:
- 777: -23,21
+ 772: -23,21
- node:
angle: 3.141592653589793 rad
color: '#FFFFFFFF'
id: LoadingArea
decals:
- 778: -19,21
+ 773: -19,21
- node:
color: '#52B4E996'
id: QuarterTileOverlayGreyscale
decals:
- 386: 0,-10
- 678: 15,-1
- 679: 16,-1
- 859: 4,-7
+ 383: 0,-10
+ 1047: 4,-6
+ 1095: 15,-2
+ 1096: 15,-1
+ 1097: 16,-1
- node:
- color: '#9FED5896'
+ color: '#9FED584D'
id: QuarterTileOverlayGreyscale
decals:
- 74: -9,-5
- 75: -8,-4
- 76: -7,-3
+ 1060: -12,5
+ 1077: -9,-5
+ 1078: -8,-4
+ 1079: -7,-3
- node:
color: '#A4610696'
id: QuarterTileOverlayGreyscale
decals:
155: -16,20
- 553: -16,11
- 554: -17,11
- 555: -18,11
- 556: -19,11
- 557: -20,11
- 558: -21,11
+ 548: -16,11
+ 549: -17,11
+ 550: -18,11
+ 551: -19,11
+ 552: -20,11
+ 553: -21,11
- node:
color: '#D381C996'
id: QuarterTileOverlayGreyscale
decals:
- 425: -28,-15
+ 420: -28,-15
- node:
color: '#DE3A3A96'
id: QuarterTileOverlayGreyscale
decals:
- 604: -4,6
- 605: -4,7
- 606: 17,4
- 607: 17,5
- 608: 17,6
- 609: 17,7
- 610: 17,8
- 630: 5,8
+ 599: -4,6
+ 600: -4,7
+ 601: 17,4
+ 602: 17,5
+ 603: 17,6
+ 604: 17,7
+ 605: 17,8
+ 625: 5,8
- node:
color: '#EFB34196'
id: QuarterTileOverlayGreyscale
decals:
- 693: -30,1
- 694: -30,0
- 695: -30,-1
- 696: -30,-2
- 697: -30,-3
- 702: -31,-4
- 703: -31,-5
- 704: -31,-6
- 705: -31,-7
+ 688: -30,1
+ 689: -30,0
+ 690: -30,-1
+ 691: -30,-2
+ 692: -30,-3
+ 697: -31,-4
+ 698: -31,-5
+ 699: -31,-6
+ 700: -31,-7
- node:
color: '#334E6DC8'
id: QuarterTileOverlayGreyscale180
@@ -1355,128 +1393,133 @@ entities:
color: '#52B4E996'
id: QuarterTileOverlayGreyscale180
decals:
- 392: 6,-9
- 663: 13,1
- 664: 12,1
- 665: 11,1
- 666: 10,1
- 667: 9,1
- 668: 8,1
- 669: 7,1
- 670: 6,1
- 671: 5,1
- 672: 4,1
- 673: 3,1
- 680: -2,-3
- 681: -2,-2
- 682: -2,-1
- 947: 5,-4
+ 389: 6,-9
+ 658: 13,1
+ 659: 12,1
+ 660: 11,1
+ 661: 10,1
+ 662: 9,1
+ 663: 8,1
+ 664: 7,1
+ 665: 6,1
+ 666: 5,1
+ 667: 4,1
+ 668: 3,1
+ 675: -2,-3
+ 676: -2,-2
+ 677: -2,-1
+ - node:
+ color: '#9FED584D'
+ id: QuarterTileOverlayGreyscale180
+ decals:
+ 1058: -10,-1
- node:
color: '#A4610696'
id: QuarterTileOverlayGreyscale180
decals:
- 461: -17,13
- 462: -18,13
- 463: -19,13
+ 456: -17,13
+ 457: -18,13
+ 458: -19,13
- node:
color: '#D381C996'
id: QuarterTileOverlayGreyscale180
decals:
- 548: -23,-7
- 549: -24,-7
- 550: -25,-7
+ 543: -23,-7
+ 544: -24,-7
+ 545: -25,-7
- node:
color: '#D4D4D428'
id: QuarterTileOverlayGreyscale180
decals:
- 727: -21,9
- 728: -20,9
- 729: -19,9
- 730: -17,9
- 731: -16,9
- 732: -15,9
- 733: -14,9
+ 722: -21,9
+ 723: -20,9
+ 724: -19,9
+ 725: -17,9
+ 726: -16,9
+ 727: -15,9
+ 728: -14,9
- node:
color: '#DE3A3A96'
id: QuarterTileOverlayGreyscale180
decals:
- 647: 15,19
+ 642: 15,19
- node:
color: '#52B4E996'
id: QuarterTileOverlayGreyscale270
decals:
- 675: 15,-3
- 676: 16,-3
- 677: 17,-3
- 683: -4,-3
- 684: -4,-2
+ 678: -4,-3
+ 679: -4,-2
+ 1098: 15,-3
+ 1099: 16,-3
+ 1100: 17,-3
- node:
- color: '#9FED5896'
+ color: '#9FED584D'
id: QuarterTileOverlayGreyscale270
decals:
- 66: -9,9
- 67: -8,8
- 68: -7,7
+ 1057: -12,-1
+ 1080: -9,9
+ 1081: -8,8
+ 1082: -7,7
- node:
color: '#A4610696'
id: QuarterTileOverlayGreyscale270
decals:
- 464: -23,13
- 465: -22,13
- 466: -21,13
+ 459: -23,13
+ 460: -22,13
+ 461: -21,13
- node:
color: '#D381C996'
id: QuarterTileOverlayGreyscale270
decals:
- 540: -15,-9
- 541: -16,-9
- 542: -17,-9
- 543: -18,-9
- 544: -18,-8
- 545: -19,-7
- 546: -20,-7
- 547: -21,-7
- 552: -26,-8
- 835: -28,-13
- 836: -29,-12
+ 535: -15,-9
+ 536: -16,-9
+ 537: -17,-9
+ 538: -18,-9
+ 539: -18,-8
+ 540: -19,-7
+ 541: -20,-7
+ 542: -21,-7
+ 547: -26,-8
+ 830: -28,-13
+ 831: -29,-12
- node:
color: '#D4D4D428'
id: QuarterTileOverlayGreyscale270
decals:
- 711: 17,12
- 712: 17,13
- 713: 17,14
- 714: 17,15
- 715: 17,16
- 716: 17,17
- 717: 17,18
- 718: 18,-13
- 719: 18,-12
- 720: 18,-11
- 721: 18,-10
- 722: 18,-9
- 723: 18,-8
- 724: 18,-6
- 725: 18,-5
- 726: 18,-4
+ 706: 17,12
+ 707: 17,13
+ 708: 17,14
+ 709: 17,15
+ 710: 17,16
+ 711: 17,17
+ 712: 17,18
+ 713: 18,-13
+ 714: 18,-12
+ 715: 18,-11
+ 716: 18,-10
+ 717: 18,-9
+ 718: 18,-8
+ 719: 18,-6
+ 720: 18,-5
+ 721: 18,-4
- node:
color: '#DE3A3A96'
id: QuarterTileOverlayGreyscale270
decals:
- 686: 17,10
+ 681: 17,10
- node:
color: '#EFB34196'
id: QuarterTileOverlayGreyscale270
decals:
- 688: -30,3
- 689: -30,4
- 690: -30,5
- 691: -30,6
- 692: -30,7
- 698: -31,8
- 699: -31,9
- 700: -31,10
- 701: -31,11
+ 683: -30,3
+ 684: -30,4
+ 685: -30,5
+ 686: -30,6
+ 687: -30,7
+ 693: -31,8
+ 694: -31,9
+ 695: -31,10
+ 696: -31,11
- node:
color: '#334E6DC8'
id: QuarterTileOverlayGreyscale90
@@ -1489,27 +1532,28 @@ entities:
color: '#52B4E996'
id: QuarterTileOverlayGreyscale90
decals:
- 391: 6,-10
- 394: 7,-7
- 858: 2,-7
- 948: 5,-3
- 951: 5,-7
+ 388: 6,-10
+ - node:
+ color: '#9FED584D'
+ id: QuarterTileOverlayGreyscale90
+ decals:
+ 1059: -10,5
- node:
color: '#A4610696'
id: QuarterTileOverlayGreyscale90
decals:
156: -17,20
- 458: -37,17
- 559: -23,11
- 560: -24,11
- 561: -25,11
- 565: -29,12
+ 453: -37,17
+ 554: -23,11
+ 555: -24,11
+ 556: -25,11
+ 560: -29,12
- node:
color: '#D381C996'
id: QuarterTileOverlayGreyscale90
decals:
120: -15,-12
- 430: -26,-13
+ 425: -26,-13
- node:
color: '#DCCF8B96'
id: QuarterTileOverlayGreyscale90
@@ -1519,21 +1563,21 @@ entities:
color: '#DE3A3A96'
id: QuarterTileOverlayGreyscale90
decals:
- 601: -2,5
- 602: -2,6
- 603: -2,7
- 646: 12,19
- 653: 13,3
- 654: 12,3
- 655: 11,3
- 656: 10,3
- 657: 9,3
- 658: 8,3
- 659: 7,3
- 660: 6,3
- 661: 5,3
- 662: 4,3
- 674: 3,3
+ 596: -2,5
+ 597: -2,6
+ 598: -2,7
+ 641: 12,19
+ 648: 13,3
+ 649: 12,3
+ 650: 11,3
+ 651: 10,3
+ 652: 9,3
+ 653: 8,3
+ 654: 7,3
+ 655: 6,3
+ 656: 5,3
+ 657: 4,3
+ 669: 3,3
- node:
color: '#FFFFFFFF'
id: Rock01
@@ -1549,10 +1593,10 @@ entities:
id: StandClear
decals:
192: -42,19
- 830: -30,-8
- 831: -29,-8
- 832: -29,-10
- 833: -30,-10
+ 825: -30,-8
+ 826: -29,-8
+ 827: -29,-10
+ 828: -30,-10
- node:
color: '#334E6DC8'
id: ThreeQuarterTileOverlayGreyscale
@@ -1562,23 +1606,24 @@ entities:
color: '#52B4E996'
id: ThreeQuarterTileOverlayGreyscale
decals:
- 357: 8,-11
- 849: 6,-1
- 850: 8,-1
- 950: 4,-1
+ 354: 8,-11
+ 844: 6,-1
+ 845: 8,-1
+ 942: 4,-1
+ 1048: 0,-6
- node:
- color: '#9FED5896'
+ color: '#9FED584D'
id: ThreeQuarterTileOverlayGreyscale
decals:
- 69: -8,-3
- 70: -9,-4
- 83: -13,3
- 808: -12,5
+ 1049: -13,5
+ 1052: -12,6
+ 1083: -9,-4
+ 1084: -8,-3
- node:
color: '#A4610696'
id: ThreeQuarterTileOverlayGreyscale
decals:
- 452: -39,19
+ 447: -39,19
- node:
color: '#D381C996'
id: ThreeQuarterTileOverlayGreyscale
@@ -1598,25 +1643,24 @@ entities:
color: '#52B4E996'
id: ThreeQuarterTileOverlayGreyscale180
decals:
- 359: 13,-14
- 857: 9,-6
+ 356: 13,-14
- node:
- color: '#9FED5896'
+ color: '#9FED584D'
id: ThreeQuarterTileOverlayGreyscale180
decals:
- 794: -9,1
- 809: -10,-1
+ 1055: -10,-2
+ 1056: -9,-1
- node:
color: '#A4610696'
id: ThreeQuarterTileOverlayGreyscale180
decals:
- 431: -16,13
+ 426: -16,13
- node:
color: '#D381C996'
id: ThreeQuarterTileOverlayGreyscale180
decals:
121: -14,-15
- 410: -20,-15
+ 405: -20,-15
- node:
color: '#EFB34196'
id: ThreeQuarterTileOverlayGreyscale180
@@ -1626,22 +1670,20 @@ entities:
color: '#334E6DC8'
id: ThreeQuarterTileOverlayGreyscale270
decals:
- 769: 25,-5
+ 764: 25,-5
- node:
color: '#52B4E996'
id: ThreeQuarterTileOverlayGreyscale270
decals:
- 356: 8,-14
- 847: 6,-6
- 848: 8,-6
+ 353: 8,-14
- node:
- color: '#9FED5896'
+ color: '#9FED584D'
id: ThreeQuarterTileOverlayGreyscale270
decals:
- 61: -8,7
- 62: -9,8
- 82: -13,1
- 810: -12,-1
+ 1050: -13,-1
+ 1051: -12,-2
+ 1085: -9,8
+ 1086: -8,7
- node:
color: '#A4610696'
id: ThreeQuarterTileOverlayGreyscale270
@@ -1652,7 +1694,7 @@ entities:
id: ThreeQuarterTileOverlayGreyscale270
decals:
116: -18,-15
- 837: -30,-12
+ 832: -30,-12
- node:
color: '#DCCF8B96'
id: ThreeQuarterTileOverlayGreyscale270
@@ -1667,28 +1709,28 @@ entities:
color: '#52B4E996'
id: ThreeQuarterTileOverlayGreyscale90
decals:
- 358: 13,-11
- 846: 9,-1
- 949: 5,-1
+ 355: 13,-11
+ 841: 9,-1
+ 941: 5,-1
- node:
- color: '#9FED5896'
+ color: '#9FED584D'
id: ThreeQuarterTileOverlayGreyscale90
decals:
- 793: -9,3
- 811: -10,5
+ 1053: -10,6
+ 1054: -9,5
- node:
color: '#A4610696'
id: ThreeQuarterTileOverlayGreyscale90
decals:
- 453: -37,19
- 455: -36,17
+ 448: -37,19
+ 450: -36,17
- node:
color: '#D381C996'
id: ThreeQuarterTileOverlayGreyscale90
decals:
118: -15,-11
119: -14,-12
- 409: -20,-13
+ 404: -20,-13
- node:
color: '#DCCF8B96'
id: ThreeQuarterTileOverlayGreyscale90
@@ -1699,23 +1741,75 @@ entities:
id: WarnBox
decals:
324: 4,-20
+ - node:
+ color: '#52B4E996'
+ id: WarnCornerGreyscaleNE
+ decals:
+ 1000: 6,-12
+ - node:
+ color: '#52B4E996'
+ id: WarnCornerGreyscaleSE
+ decals:
+ 1001: 6,-13
+ - node:
+ color: '#52B4E996'
+ id: WarnCornerGreyscaleSW
+ decals:
+ 1002: 2,-13
- node:
angle: 3.141592653589793 rad
color: '#FFFFFFFF'
id: WarnLineE
decals:
- 819: -40,0
- 820: -40,1
- 821: -40,2
- 822: -40,3
- 823: -40,4
+ 814: -40,0
+ 815: -40,1
+ 816: -40,2
+ 817: -40,3
+ 818: -40,4
+ - node:
+ color: '#52B4E996'
+ id: WarnLineGreyscaleE
+ decals:
+ 996: 13,-12
- node:
color: '#52B4E996'
id: WarnLineGreyscaleN
decals:
- 932: 11,-7
- 933: 12,-7
- 935: 13,-7
+ 925: 11,-7
+ 926: 12,-7
+ 927: 13,-7
+ 999: 5,-12
+ - node:
+ color: '#52B4E996'
+ id: WarnLineGreyscaleS
+ decals:
+ 998: 5,-10
+ 1003: 3,-13
+ - node:
+ color: '#52B4E996'
+ id: WarnLineGreyscaleW
+ decals:
+ 997: 8,-12
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnLineN
+ decals:
+ 960: -37,-15
+ 970: -19,-20
+ 971: -18,-20
+ 972: -17,-20
+ 993: 11,-6
+ 994: 12,-6
+ 995: 13,-6
+ 1101: -44,9
+ 1102: -43,9
+ 1103: -42,9
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnLineS
+ decals:
+ 1019: -25,-22
+ 1020: -25,-21
- node:
angle: -3.141592653589793 rad
color: '#FFFFFFFF'
@@ -1730,13 +1824,13 @@ entities:
339: -43,-1
340: -42,-1
341: -41,-1
- 500: -17,23
- 501: -18,23
- 502: -19,23
- 503: -20,23
- 504: -21,23
- 505: -22,23
- 506: -23,23
+ 495: -17,23
+ 496: -18,23
+ 497: -19,23
+ 498: -20,23
+ 499: -21,23
+ 500: -22,23
+ 501: -23,23
- node:
color: '#FFFFFFFF'
id: WarningLine
@@ -1747,7 +1841,7 @@ entities:
254: -44,5
255: -43,5
256: -41,5
- 566: -42,5
+ 561: -42,5
- node:
angle: -3.141592653589793 rad
color: '#FFFFFFFF'
@@ -1759,6 +1853,13 @@ entities:
id: WarningLineCornerFlipped
decals:
257: -40,5
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinLineE
+ decals:
+ 1024: 0,24
+ 1025: 0,25
+ 1026: 0,26
type: DecalGrid
- version: 2
data:
@@ -2692,8 +2793,6 @@ entities:
- 2450
- 2603
- 2602
- - 2776
- - 2672
- 2680
- 2347
type: DeviceNetwork
@@ -2702,8 +2801,6 @@ entities:
- 2450
- 2603
- 2602
- - 2776
- - 2672
- 2680
- 2347
type: DeviceList
@@ -2972,7 +3069,6 @@ entities:
- 3317
- 3010
- 3011
- - 7551
- 2944
- 2943
- 1302
@@ -2991,7 +3087,6 @@ entities:
- 3317
- 3010
- 3011
- - 7551
- 2944
- 2943
- 1302
@@ -3126,7 +3221,6 @@ entities:
- 7490
- 7492
- 7500
- - 6649
type: DeviceNetwork
- devices:
- 6266
@@ -3137,7 +3231,6 @@ entities:
- 7490
- 7492
- 7500
- - 6649
type: DeviceList
- uid: 7561
components:
@@ -3228,7 +3321,6 @@ entities:
- devices:
- 2682
- 2558
- - 7551
- 2684
- 2685
- 2450
@@ -4089,12 +4181,6 @@ entities:
type: Transform
- proto: AirlockMedicalGlassLocked
entities:
- - uid: 1494
- components:
- - rot: 1.5707963267948966 rad
- pos: 14.5,-1.5
- parent: 30
- type: Transform
- uid: 1495
components:
- pos: 10.5,-2.5
@@ -4121,19 +4207,9 @@ entities:
pos: 8.5,-7.5
parent: 30
type: Transform
- - uid: 3359
- components:
- - pos: -0.5,-19.5
- parent: 30
- type: Transform
- - uid: 3951
- components:
- - pos: 3.5,-19.5
- parent: 30
- type: Transform
- - uid: 3952
+ - uid: 2634
components:
- - pos: 4.5,-18.5
+ - pos: 14.5,-2.5
parent: 30
type: Transform
- proto: AirlockMedicalLocked
@@ -4143,6 +4219,11 @@ entities:
- pos: 3.5,-13.5
parent: 30
type: Transform
+ - uid: 2489
+ components:
+ - pos: 6.5,-5.5
+ parent: 30
+ type: Transform
- proto: AirlockQuartermasterGlassLocked
entities:
- uid: 5535
@@ -4236,6 +4317,25 @@ entities:
- pos: -6.5,12.5
parent: 30
type: Transform
+- proto: AirlockVirologyGlassLocked
+ entities:
+ - uid: 48
+ components:
+ - pos: -0.5,-19.5
+ parent: 30
+ type: Transform
+- proto: AirlockVirologyLocked
+ entities:
+ - uid: 60
+ components:
+ - pos: 3.5,-19.5
+ parent: 30
+ type: Transform
+ - uid: 254
+ components:
+ - pos: 4.5,-18.5
+ parent: 30
+ type: Transform
- proto: AmeController
entities:
- uid: 6998
@@ -4579,6 +4679,14 @@ entities:
- pos: -20.5,8.5
parent: 30
type: Transform
+- proto: BaseGasCondenser
+ entities:
+ - uid: 2519
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -43.5,0.5
+ parent: 30
+ type: Transform
- proto: Beaker
entities:
- uid: 4294
@@ -4639,6 +4747,11 @@ entities:
- pos: 0.5,-15.5
parent: 30
type: Transform
+ - uid: 3309
+ components:
+ - pos: 11.5,-0.5
+ parent: 30
+ type: Transform
- uid: 3508
components:
- pos: 13.5,-6.5
@@ -4717,13 +4830,6 @@ entities:
type: Transform
- proto: BedsheetGreen
entities:
- - uid: 2800
- components:
- - pos: -1.5,-21.5
- parent: 30
- type: Transform
- - canCollide: False
- type: Physics
- uid: 2814
components:
- pos: -1.5,-20.5
@@ -4763,18 +4869,6 @@ entities:
pos: 7.5,-0.5
parent: 30
type: Transform
- - uid: 1565
- components:
- - rot: 3.141592653589793 rad
- pos: 9.5,-5.5
- parent: 30
- type: Transform
- - uid: 3578
- components:
- - rot: 3.141592653589793 rad
- pos: 7.5,-5.5
- parent: 30
- type: Transform
- uid: 7026
components:
- rot: 3.141592653589793 rad
@@ -5178,15 +5272,6 @@ entities:
- pos: -27.5,-9.5
parent: 30
type: Transform
-- proto: BoxBeaker
- entities:
- - uid: 2494
- components:
- - pos: -3.3814204,-5.429173
- parent: 30
- type: Transform
- - canCollide: False
- type: Physics
- proto: BoxBeanbag
entities:
- uid: 7062
@@ -5302,15 +5387,6 @@ entities:
type: Transform
- canCollide: False
type: Physics
-- proto: BoxPillCanister
- entities:
- - uid: 2491
- components:
- - pos: -3.6001704,-5.319798
- parent: 30
- type: Transform
- - canCollide: False
- type: Physics
- proto: BoxSterileMask
entities:
- uid: 2772
@@ -8080,16 +8156,6 @@ entities:
- pos: 5.5,-9.5
parent: 30
type: Transform
- - uid: 3271
- components:
- - pos: 6.5,-6.5
- parent: 30
- type: Transform
- - uid: 3272
- components:
- - pos: 7.5,-6.5
- parent: 30
- type: Transform
- uid: 3276
components:
- pos: 11.5,-6.5
@@ -11251,6 +11317,11 @@ entities:
- pos: 33.5,3.5
parent: 30
type: Transform
+ - uid: 276
+ components:
+ - pos: -35.5,-6.5
+ parent: 30
+ type: Transform
- uid: 341
components:
- pos: 32.5,3.5
@@ -13401,11 +13472,6 @@ entities:
- pos: -33.5,-6.5
parent: 30
type: Transform
- - uid: 6699
- components:
- - pos: -35.5,-6.5
- parent: 30
- type: Transform
- uid: 6710
components:
- pos: -35.5,-1.5
@@ -15495,11 +15561,6 @@ entities:
type: Transform
- proto: CarbonDioxideCanister
entities:
- - uid: 6399
- components:
- - pos: -41.5,-0.5
- parent: 30
- type: Transform
- uid: 7024
components:
- pos: -20.5,-19.5
@@ -16999,16 +17060,10 @@ entities:
pos: 25.5,-7.5
parent: 30
type: Transform
- - uid: 3350
- components:
- - rot: 3.141592653589793 rad
- pos: 15.5,-2.5
- parent: 30
- type: Transform
- - uid: 3351
+ - uid: 2962
components:
- - rot: 3.141592653589793 rad
- pos: 16.5,-2.5
+ - rot: -1.5707963267948966 rad
+ pos: -25.5,-11.5
parent: 30
type: Transform
- uid: 3352
@@ -17206,18 +17261,6 @@ entities:
pos: 2.5,-2.5
parent: 30
type: Transform
- - uid: 7040
- components:
- - rot: 1.5707963267948966 rad
- pos: 0.5,-2.5
- parent: 30
- type: Transform
- - uid: 7041
- components:
- - rot: 1.5707963267948966 rad
- pos: 0.5,-3.5
- parent: 30
- type: Transform
- uid: 7144
components:
- rot: 1.5707963267948966 rad
@@ -17453,6 +17496,11 @@ entities:
- pos: -1.5,-8.5
parent: 30
type: Transform
+ - uid: 2556
+ components:
+ - pos: 9.5,-12.5
+ parent: 30
+ type: Transform
- uid: 2703
components:
- pos: -0.5,-14.5
@@ -17487,16 +17535,6 @@ entities:
pos: 7.5,-1.5
parent: 30
type: Transform
- - uid: 6962
- components:
- - pos: 9.5,-4.5
- parent: 30
- type: Transform
- - uid: 7027
- components:
- - pos: 7.5,-4.5
- parent: 30
- type: Transform
- uid: 7038
components:
- rot: 3.141592653589793 rad
@@ -17549,12 +17587,6 @@ entities:
pos: 22.5,12.5
parent: 30
type: Transform
- - uid: 1025
- components:
- - rot: 1.5707963267948966 rad
- pos: 22.5,16.5
- parent: 30
- type: Transform
- uid: 1026
components:
- rot: 1.5707963267948966 rad
@@ -17607,28 +17639,14 @@ entities:
type: Transform
- proto: CheapRollerBed
entities:
- - uid: 2961
- components:
- - pos: 1.4785833,-8.943417
- parent: 30
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 2962
- components:
- - pos: 1.4785833,-9.396542
- parent: 30
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 3932
+ - uid: 2270
components:
- - pos: 7.5509615,-3.4627366
+ - pos: 4.4922504,-9.196449
parent: 30
type: Transform
- - uid: 4108
+ - uid: 2621
components:
- - pos: 9.5040865,-3.4939866
+ - pos: 4.4922504,-9.493324
parent: 30
type: Transform
- uid: 4133
@@ -17740,6 +17758,13 @@ entities:
occludes: True
ent: null
type: ContainerContainer
+- proto: ChemistryHotplate
+ entities:
+ - uid: 575
+ components:
+ - pos: -3.5,-6.5
+ parent: 30
+ type: Transform
- proto: ChurchOrganInstrument
entities:
- uid: 1016
@@ -17876,9 +17901,9 @@ entities:
type: Transform
- proto: ClosetL3VirologyFilled
entities:
- - uid: 7353
+ - uid: 2573
components:
- - pos: 0.5,-21.5
+ - pos: -1.5,-21.5
parent: 30
type: Transform
- proto: ClosetLegalFilled
@@ -17960,12 +17985,6 @@ entities:
type: Transform
- proto: ClosetWallEmergencyFilledRandom
entities:
- - uid: 957
- components:
- - rot: -1.5707963267948966 rad
- pos: -8.5,15.5
- parent: 30
- type: Transform
- uid: 5435
components:
- pos: 22.5,11.5
@@ -18022,15 +18041,6 @@ entities:
type: Transform
- canCollide: False
type: Physics
-- proto: ClothingBeltHolster
- entities:
- - uid: 1677
- components:
- - pos: -1.612056,25.655512
- parent: 30
- type: Transform
- - canCollide: False
- type: Physics
- proto: ClothingBeltMilitaryWebbing
entities:
- uid: 42
@@ -18165,15 +18175,6 @@ entities:
type: Transform
- canCollide: False
type: Physics
-- proto: ClothingHeadHatFedoraBrown
- entities:
- - uid: 1284
- components:
- - pos: -2.5034542,26.758677
- parent: 30
- type: Transform
- - canCollide: False
- type: Physics
- proto: ClothingHeadHatFedoraGrey
entities:
- uid: 7204
@@ -18321,13 +18322,6 @@ entities:
type: Transform
- canCollide: False
type: Physics
-- proto: ClothingNeckScarfStripedBlue
- entities:
- - uid: 2481
- components:
- - pos: 12.336111,-4.450293
- parent: 30
- type: Transform
- proto: ClothingNeckScarfStripedGreen
entities:
- uid: 4098
@@ -18353,24 +18347,6 @@ entities:
type: Transform
- canCollide: False
type: Physics
-- proto: ClothingNeckStethoscope
- entities:
- - uid: 2726
- components:
- - pos: 12.502375,-13.356518
- parent: 30
- type: Transform
- - canCollide: False
- type: Physics
-- proto: ClothingNeckTieRed
- entities:
- - uid: 4124
- components:
- - pos: -1.6637553,25.590635
- parent: 30
- type: Transform
- - canCollide: False
- type: Physics
- proto: ClothingOuterCoatBomber
entities:
- uid: 3335
@@ -18380,15 +18356,6 @@ entities:
type: Transform
- canCollide: False
type: Physics
-- proto: ClothingOuterCoatInspector
- entities:
- - uid: 1282
- components:
- - pos: -1.5700053,25.66876
- parent: 30
- type: Transform
- - canCollide: False
- type: Physics
- proto: ClothingOuterCoatJensen
entities:
- uid: 5882
@@ -18498,15 +18465,6 @@ entities:
type: Transform
- canCollide: False
type: Physics
-- proto: ClothingShoeSlippersDuck
- entities:
- - uid: 943
- components:
- - pos: -0.5283655,26.196354
- parent: 30
- type: Transform
- - canCollide: False
- type: Physics
- proto: ClothingShoesSlippers
entities:
- uid: 6667
@@ -18649,6 +18607,13 @@ entities:
4674:
- ArtifactAnalyzerSender: ArtifactAnalyzerReceiver
type: DeviceLinkSource
+- proto: computerBodyScanner
+ entities:
+ - uid: 2613
+ components:
+ - pos: 7.5,-4.5
+ parent: 30
+ type: Transform
- proto: ComputerCargoBounty
entities:
- uid: 6867
@@ -18704,16 +18669,16 @@ entities:
pos: -1.5,-12.5
parent: 30
type: Transform
- - uid: 2395
+ - uid: 1563
components:
- - rot: 1.5707963267948966 rad
- pos: 0.5,-5.5
+ - rot: 3.141592653589793 rad
+ pos: 9.5,-13.5
parent: 30
type: Transform
- - uid: 2525
+ - uid: 2395
components:
- rot: 1.5707963267948966 rad
- pos: 8.5,-13.5
+ pos: 0.5,-5.5
parent: 30
type: Transform
- proto: ComputerCriminalRecords
@@ -18760,10 +18725,10 @@ entities:
type: Transform
- proto: ComputerMedicalRecords
entities:
- - uid: 2459
+ - uid: 1549
components:
- - rot: 1.5707963267948966 rad
- pos: 8.5,-12.5
+ - rot: 3.141592653589793 rad
+ pos: 8.5,-13.5
parent: 30
type: Transform
- proto: ComputerPowerMonitoring
@@ -19216,6 +19181,13 @@ entities:
- pos: -9.5,-22.5
parent: 30
type: Transform
+- proto: CrateMedicalSurgery
+ entities:
+ - uid: 6164
+ components:
+ - pos: 9.5,-5.5
+ parent: 30
+ type: Transform
- proto: CrateMindShieldImplants
entities:
- uid: 1488
@@ -19330,16 +19302,15 @@ entities:
type: Transform
- proto: DefibrillatorCabinetFilled
entities:
- - uid: 7695
+ - uid: 1284
components:
- - rot: -1.5707963267948966 rad
- pos: 6.5,-6.5
+ - rot: 3.141592653589793 rad
+ pos: 12.5,-3.5
parent: 30
type: Transform
- - uid: 7696
+ - uid: 2513
components:
- - rot: -1.5707963267948966 rad
- pos: 10.5,-4.5
+ - pos: 7.5,-6.5
parent: 30
type: Transform
- uid: 7697
@@ -21705,13 +21676,6 @@ entities:
type: Transform
- canCollide: False
type: Physics
-- proto: DrinkHotCoco
- entities:
- - uid: 4293
- components:
- - pos: 12.89541,-4.231543
- parent: 30
- type: Transform
- proto: DrinkLithiumFlask
entities:
- uid: 7066
@@ -21730,24 +21694,6 @@ entities:
type: Transform
- canCollide: False
type: Physics
-- proto: DrinkMugOne
- entities:
- - uid: 512
- components:
- - pos: 27.26755,-1.687427
- parent: 30
- type: Transform
- - solutions:
- drink:
- temperature: 293.15
- canMix: True
- canReact: True
- maxVol: 20
- reagents:
- - data: null
- ReagentId: Coffee
- Quantity: 20
- type: SolutionContainerManager
- proto: DrinkSakeGlass
entities:
- uid: 7184
@@ -21807,22 +21753,6 @@ entities:
type: Transform
- canCollide: False
type: Physics
-- proto: Dropper
- entities:
- - uid: 2501
- components:
- - pos: -3.5516922,-5.398
- parent: 30
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 2502
- components:
- - pos: -3.5516922,-5.398
- parent: 30
- type: Transform
- - canCollide: False
- type: Physics
- proto: ElectricGuitarInstrument
entities:
- uid: 7192
@@ -21919,18 +21849,6 @@ entities:
pos: -48.5,11.5
parent: 30
type: Transform
-- proto: EmergencyRollerBed
- entities:
- - uid: 347
- components:
- - pos: 11.4884615,-0.2127366
- parent: 30
- type: Transform
- - uid: 3913
- components:
- - pos: 11.4884615,-0.5877366
- parent: 30
- type: Transform
- proto: EncryptionKeyCargo
entities:
- uid: 7627
@@ -22135,6 +22053,13 @@ entities:
- pos: 3.5,7.5
parent: 30
type: Transform
+- proto: filingCabinetDrawerRandom
+ entities:
+ - uid: 3710
+ components:
+ - pos: 27.5,-1.5
+ parent: 30
+ type: Transform
- proto: FireAxeCabinetFilled
entities:
- uid: 602
@@ -22283,14 +22208,6 @@ entities:
- 7549
- 7550
type: DeviceNetwork
- - uid: 6649
- components:
- - pos: -36.5,-14.5
- parent: 30
- type: Transform
- - ShutdownSubscribers:
- - 7560
- type: DeviceNetwork
- proto: FirelockGlass
entities:
- uid: 21
@@ -22444,6 +22361,11 @@ entities:
- pos: 13.5,10.5
parent: 30
type: Transform
+ - uid: 1677
+ components:
+ - pos: 16.5,6.5
+ parent: 30
+ type: Transform
- uid: 2159
components:
- pos: -16.5,-3.5
@@ -22457,6 +22379,11 @@ entities:
- pos: 13.5,9.5
parent: 30
type: Transform
+ - uid: 2272
+ components:
+ - pos: -16.5,-9.5
+ parent: 30
+ type: Transform
- uid: 2316
components:
- pos: 1.5,-4.5
@@ -22605,6 +22532,11 @@ entities:
- 7559
- 7558
type: DeviceNetwork
+ - uid: 5078
+ components:
+ - pos: -13.5,-0.5
+ parent: 30
+ type: Transform
- uid: 5234
components:
- pos: -21.5,10.5
@@ -22808,15 +22740,6 @@ entities:
- ShutdownSubscribers:
- 7532
type: DeviceNetwork
- - uid: 7551
- components:
- - rot: -1.5707963267948966 rad
- pos: 14.5,-1.5
- parent: 30
- type: Transform
- - ShutdownSubscribers:
- - 7550
- type: DeviceNetwork
- uid: 7599
components:
- rot: 3.141592653589793 rad
@@ -23189,12 +23112,6 @@ entities:
type: Physics
- proto: FuelDispenser
entities:
- - uid: 7727
- components:
- - rot: 1.5707963267948966 rad
- pos: -3.5,-7.5
- parent: 30
- type: Transform
- uid: 7728
components:
- rot: 1.5707963267948966 rad
@@ -23244,7 +23161,7 @@ entities:
pos: 12.5,-7.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2616
components:
@@ -23252,8 +23169,20 @@ entities:
pos: 12.5,-6.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
+- proto: GasFilterFlipped
+ entities:
+ - uid: 7214
+ components:
+ - pos: -42.5,2.5
+ parent: 30
+ type: Transform
+ - uid: 7235
+ components:
+ - pos: -42.5,4.5
+ parent: 30
+ type: Transform
- proto: GasMinerNitrogen
entities:
- uid: 6890
@@ -23268,6 +23197,18 @@ entities:
- pos: -46.5,1.5
parent: 30
type: Transform
+- proto: GasMixerFlipped
+ entities:
+ - uid: 3350
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -41.5,1.5
+ parent: 30
+ type: Transform
+ - inletTwoConcentration: 0.78
+ inletOneConcentration: 0.22
+ enabled: True
+ type: GasMixer
- proto: GasOutletInjector
entities:
- uid: 4564
@@ -23340,7 +23281,7 @@ entities:
pos: -41.5,13.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 676
components:
@@ -23348,7 +23289,7 @@ entities:
pos: -3.5,13.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 1434
components:
@@ -23356,14 +23297,14 @@ entities:
pos: 9.5,13.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2146
components:
- pos: 10.5,13.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2163
components:
@@ -23371,7 +23312,7 @@ entities:
pos: 6.5,9.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2318
components:
@@ -23379,7 +23320,7 @@ entities:
pos: -31.5,-11.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2326
components:
@@ -23387,7 +23328,7 @@ entities:
pos: -31.5,-6.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2382
components:
@@ -23395,7 +23336,22 @@ entities:
pos: -30.5,-6.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 2388
+ components:
+ - pos: 2.5,-8.5
+ parent: 30
+ type: Transform
+ - color: '#FF1212FF'
+ type: AtmosPipeColor
+ - uid: 2398
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 6.5,-7.5
+ parent: 30
+ type: Transform
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2400
components:
@@ -23403,7 +23359,20 @@ entities:
pos: -30.5,-5.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 2459
+ components:
+ - pos: -42.5,5.5
+ parent: 30
+ type: Transform
+ - uid: 2479
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 2.5,-9.5
+ parent: 30
+ type: Transform
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2586
components:
@@ -23411,7 +23380,7 @@ entities:
pos: -3.5,-1.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2591
components:
@@ -23419,28 +23388,20 @@ entities:
pos: -1.5,-2.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2612
components:
- pos: 12.5,-5.5
parent: 30
type: Transform
- - uid: 2613
- components:
- - rot: 3.141592653589793 rad
- pos: 12.5,-4.5
- parent: 30
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
- uid: 2666
components:
- rot: 3.141592653589793 rad
pos: -1.5,-7.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2669
components:
@@ -23448,7 +23409,7 @@ entities:
pos: -2.5,-8.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 3002
components:
@@ -23456,14 +23417,14 @@ entities:
pos: 25.5,-15.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3782
components:
- pos: -5.5,11.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3832
components:
@@ -23471,7 +23432,7 @@ entities:
pos: -5.5,-6.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3850
components:
@@ -23479,7 +23440,31 @@ entities:
pos: -6.5,-5.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
+ type: AtmosPipeColor
+ - uid: 3915
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 3.5,-8.5
+ parent: 30
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 3921
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 4.5,-6.5
+ parent: 30
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 3932
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 3.5,-6.5
+ parent: 30
+ type: Transform
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3988
components:
@@ -23487,7 +23472,7 @@ entities:
pos: 6.5,-17.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3989
components:
@@ -23495,7 +23480,7 @@ entities:
pos: 4.5,-17.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3990
components:
@@ -23503,7 +23488,7 @@ entities:
pos: 4.5,-19.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4297
components:
@@ -23531,14 +23516,14 @@ entities:
pos: -25.5,-12.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4817
components:
- pos: -29.5,8.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4818
components:
@@ -23546,7 +23531,7 @@ entities:
pos: -30.5,10.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4835
components:
@@ -23554,14 +23539,14 @@ entities:
pos: -30.5,8.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4849
components:
- pos: -17.5,-4.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4850
components:
@@ -23569,7 +23554,7 @@ entities:
pos: -21.5,-5.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4875
components:
@@ -23577,7 +23562,7 @@ entities:
pos: -26.5,-13.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 5451
components:
@@ -23591,28 +23576,28 @@ entities:
pos: -17.5,16.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 5758
components:
- pos: -15.5,18.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 5787
components:
- pos: -23.5,19.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 5788
components:
- pos: -21.5,20.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 6244
components:
@@ -23620,7 +23605,7 @@ entities:
pos: -29.5,-7.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 6246
components:
@@ -23628,7 +23613,7 @@ entities:
pos: -32.5,-9.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 6251
components:
@@ -23636,7 +23621,7 @@ entities:
pos: -34.5,-9.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 6255
components:
@@ -23644,28 +23629,21 @@ entities:
pos: -34.5,-13.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 6379
components:
- pos: -30.5,14.5
parent: 30
type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
- - uid: 6389
- components:
- - pos: 13.5,-4.5
- parent: 30
- type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 6408
components:
- pos: -28.5,12.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 6412
components:
@@ -23673,7 +23651,7 @@ entities:
pos: -32.5,13.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 6413
components:
@@ -23681,14 +23659,14 @@ entities:
pos: -30.5,12.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 6416
components:
- pos: -32.5,15.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 6417
components:
@@ -23696,7 +23674,7 @@ entities:
pos: -33.5,15.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 6421
components:
@@ -23704,14 +23682,14 @@ entities:
pos: -35.5,13.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 6423
components:
- pos: -35.5,15.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 6430
components:
@@ -23719,21 +23697,21 @@ entities:
pos: -40.5,15.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 6463
components:
- pos: -29.5,16.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 6660
components:
- pos: -32.5,9.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 6664
components:
@@ -23741,7 +23719,7 @@ entities:
pos: -21.5,-4.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 6852
components:
@@ -23769,14 +23747,14 @@ entities:
pos: -17.5,-6.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 6937
components:
- pos: -28.5,9.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 6938
components:
@@ -23784,7 +23762,7 @@ entities:
pos: -29.5,9.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 6943
components:
@@ -23792,7 +23770,7 @@ entities:
pos: -19.5,-6.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 6944
components:
@@ -23800,23 +23778,39 @@ entities:
pos: -19.5,-5.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- - uid: 6961
+ - uid: 6970
components:
- - pos: -41.5,5.5
+ - rot: -1.5707963267948966 rad
+ pos: -49.5,2.5
parent: 30
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 6970
+ - uid: 7040
components:
- rot: -1.5707963267948966 rad
- pos: -49.5,2.5
+ pos: -40.5,1.5
+ parent: 30
+ type: Transform
+ - uid: 7041
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -40.5,2.5
+ parent: 30
+ type: Transform
+ - uid: 7116
+ components:
+ - pos: -41.5,3.5
+ parent: 30
+ type: Transform
+ - uid: 7131
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -42.5,0.5
parent: 30
type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
- uid: 7357
components:
- rot: 3.141592653589793 rad
@@ -23831,7 +23825,7 @@ entities:
pos: -1.5,-19.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 7489
components:
@@ -23839,7 +23833,7 @@ entities:
pos: -44.5,-13.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 7498
components:
@@ -23847,7 +23841,7 @@ entities:
pos: -42.5,-12.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- proto: GasPipeFourway
entities:
@@ -23856,182 +23850,168 @@ entities:
- pos: 32.5,3.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 396
components:
- pos: 27.5,3.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 413
components:
- pos: 28.5,1.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 416
components:
- pos: 31.5,1.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 755
components:
- pos: 19.5,3.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 778
components:
- pos: -3.5,3.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 782
components:
- pos: 18.5,1.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 801
components:
- pos: -1.5,1.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 805
components:
- pos: 14.5,3.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 1140
components:
- pos: 19.5,21.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 1559
components:
- pos: -6.5,1.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 1560
components:
- pos: -5.5,3.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2527
components:
- pos: 18.5,-2.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2537
components:
- pos: 19.5,-1.5
parent: 30
type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
- - uid: 2566
- components:
- - pos: 6.5,-1.5
- parent: 30
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
- - uid: 2573
- components:
- - pos: 12.5,-2.5
- parent: 30
- type: Transform
- - color: '#990000FF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2577
components:
- pos: 5.5,-2.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2599
components:
- pos: 2.5,1.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2629
components:
- pos: 6.5,-11.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2643
components:
- pos: 3.5,-12.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 3008
components:
- pos: 19.5,-9.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3827
components:
- pos: -10.5,-5.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4764
components:
- pos: -22.5,-12.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4829
components:
- pos: -28.5,2.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 6219
components:
- pos: -32.5,-11.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 6382
components:
- pos: -31.5,16.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- proto: GasPipeStraight
entities:
@@ -24041,7 +24021,23 @@ entities:
pos: -44.5,13.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 268
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 4.5,-3.5
+ parent: 30
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 333
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 5.5,-4.5
+ parent: 30
+ type: Transform
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 374
components:
@@ -24049,7 +24045,7 @@ entities:
pos: 32.5,7.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 386
components:
@@ -24057,7 +24053,7 @@ entities:
pos: 33.5,7.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 387
components:
@@ -24065,21 +24061,21 @@ entities:
pos: 33.5,6.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 389
components:
- pos: 32.5,5.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 390
components:
- pos: 32.5,4.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 392
components:
@@ -24087,7 +24083,7 @@ entities:
pos: 31.5,3.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 393
components:
@@ -24095,7 +24091,7 @@ entities:
pos: 30.5,3.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 395
components:
@@ -24103,7 +24099,7 @@ entities:
pos: 28.5,3.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 397
components:
@@ -24111,7 +24107,7 @@ entities:
pos: 25.5,3.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 398
components:
@@ -24119,7 +24115,7 @@ entities:
pos: 26.5,3.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 401
components:
@@ -24127,7 +24123,7 @@ entities:
pos: 23.5,4.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 402
components:
@@ -24135,7 +24131,7 @@ entities:
pos: 23.5,5.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 404
components:
@@ -24143,7 +24139,7 @@ entities:
pos: 22.5,2.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 405
components:
@@ -24151,7 +24147,7 @@ entities:
pos: 22.5,3.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 406
components:
@@ -24159,7 +24155,7 @@ entities:
pos: 22.5,4.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 407
components:
@@ -24167,7 +24163,7 @@ entities:
pos: 22.5,5.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 409
components:
@@ -24175,7 +24171,7 @@ entities:
pos: 24.5,1.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 410
components:
@@ -24183,7 +24179,7 @@ entities:
pos: 25.5,1.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 411
components:
@@ -24191,7 +24187,7 @@ entities:
pos: 26.5,1.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 412
components:
@@ -24199,7 +24195,7 @@ entities:
pos: 27.5,1.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 415
components:
@@ -24207,7 +24203,7 @@ entities:
pos: 30.5,1.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 417
components:
@@ -24215,7 +24211,7 @@ entities:
pos: 32.5,1.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 418
components:
@@ -24223,7 +24219,7 @@ entities:
pos: 33.5,1.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 419
components:
@@ -24231,7 +24227,7 @@ entities:
pos: 33.5,3.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 422
components:
@@ -24239,7 +24235,7 @@ entities:
pos: 31.5,2.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 423
components:
@@ -24247,7 +24243,7 @@ entities:
pos: 31.5,3.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 425
components:
@@ -24255,70 +24251,70 @@ entities:
pos: 31.5,5.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 427
components:
- pos: 31.5,6.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 430
components:
- pos: 32.5,2.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 431
components:
- pos: 32.5,1.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 432
components:
- pos: 32.5,-0.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 434
components:
- pos: 32.5,-1.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 436
components:
- pos: 31.5,0.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 437
components:
- pos: 31.5,-0.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 438
components:
- pos: 31.5,-1.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 439
components:
- pos: 31.5,-2.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 441
components:
@@ -24326,7 +24322,7 @@ entities:
pos: 33.5,-2.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 442
components:
@@ -24334,7 +24330,7 @@ entities:
pos: 34.5,-2.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 443
components:
@@ -24342,7 +24338,7 @@ entities:
pos: 32.5,-3.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 444
components:
@@ -24350,7 +24346,7 @@ entities:
pos: 33.5,-3.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 445
components:
@@ -24358,14 +24354,14 @@ entities:
pos: 34.5,-3.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 446
components:
- pos: 32.5,-3.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 451
components:
@@ -24373,7 +24369,7 @@ entities:
pos: 27.5,4.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 452
components:
@@ -24381,7 +24377,7 @@ entities:
pos: 27.5,5.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 453
components:
@@ -24389,7 +24385,7 @@ entities:
pos: 28.5,2.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 454
components:
@@ -24397,7 +24393,7 @@ entities:
pos: 28.5,3.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 455
components:
@@ -24405,7 +24401,7 @@ entities:
pos: 28.5,4.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 456
components:
@@ -24413,7 +24409,7 @@ entities:
pos: 28.5,5.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 457
components:
@@ -24421,7 +24417,7 @@ entities:
pos: 27.5,6.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 458
components:
@@ -24429,56 +24425,56 @@ entities:
pos: 28.5,6.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 461
components:
- pos: 27.5,2.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 462
components:
- pos: 27.5,1.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 463
components:
- pos: 27.5,0.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 464
components:
- pos: 27.5,-0.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 466
components:
- pos: 28.5,0.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 467
components:
- pos: 28.5,-0.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 468
components:
- pos: 28.5,-1.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 472
components:
@@ -24486,7 +24482,7 @@ entities:
pos: -42.5,13.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 473
components:
@@ -24494,7 +24490,7 @@ entities:
pos: 21.5,1.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 474
components:
@@ -24502,7 +24498,7 @@ entities:
pos: 22.5,3.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 475
components:
@@ -24510,7 +24506,7 @@ entities:
pos: 21.5,3.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 476
components:
@@ -24518,7 +24514,7 @@ entities:
pos: 20.5,1.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 477
components:
@@ -24526,14 +24522,14 @@ entities:
pos: 20.5,3.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 485
components:
- pos: -41.5,15.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 585
components:
@@ -24541,14 +24537,14 @@ entities:
pos: -39.5,16.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 595
components:
- pos: -41.5,14.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 597
components:
@@ -24556,7 +24552,7 @@ entities:
pos: -40.5,16.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 643
components:
@@ -24564,7 +24560,7 @@ entities:
pos: 0.5,9.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 654
components:
@@ -24572,7 +24568,7 @@ entities:
pos: -43.5,13.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 675
components:
@@ -24580,7 +24576,7 @@ entities:
pos: -1.5,13.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 756
components:
@@ -24588,7 +24584,7 @@ entities:
pos: 18.5,3.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 757
components:
@@ -24596,7 +24592,7 @@ entities:
pos: 17.5,3.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 758
components:
@@ -24604,7 +24600,7 @@ entities:
pos: 16.5,3.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 759
components:
@@ -24612,14 +24608,14 @@ entities:
pos: 15.5,3.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 760
components:
- pos: 15.5,2.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 761
components:
@@ -24627,7 +24623,7 @@ entities:
pos: 13.5,3.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 762
components:
@@ -24635,7 +24631,7 @@ entities:
pos: 12.5,3.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 763
components:
@@ -24643,7 +24639,7 @@ entities:
pos: 11.5,3.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 764
components:
@@ -24651,7 +24647,7 @@ entities:
pos: 10.5,3.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 765
components:
@@ -24659,7 +24655,7 @@ entities:
pos: 9.5,3.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 766
components:
@@ -24667,7 +24663,7 @@ entities:
pos: 8.5,3.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 767
components:
@@ -24675,7 +24671,7 @@ entities:
pos: 7.5,3.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 768
components:
@@ -24683,7 +24679,7 @@ entities:
pos: 6.5,3.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 769
components:
@@ -24691,7 +24687,7 @@ entities:
pos: 5.5,3.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 770
components:
@@ -24699,7 +24695,7 @@ entities:
pos: 4.5,3.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 771
components:
@@ -24707,7 +24703,7 @@ entities:
pos: 3.5,3.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 773
components:
@@ -24715,14 +24711,14 @@ entities:
pos: 1.5,3.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 774
components:
- pos: 2.5,-0.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 775
components:
@@ -24730,7 +24726,7 @@ entities:
pos: -0.5,3.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 776
components:
@@ -24738,7 +24734,7 @@ entities:
pos: -1.5,3.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 777
components:
@@ -24746,7 +24742,7 @@ entities:
pos: -2.5,3.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 779
components:
@@ -24754,7 +24750,7 @@ entities:
pos: -4.5,3.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 780
components:
@@ -24762,7 +24758,7 @@ entities:
pos: 19.5,1.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 781
components:
@@ -24770,7 +24766,7 @@ entities:
pos: 17.5,1.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 783
components:
@@ -24778,7 +24774,7 @@ entities:
pos: 16.5,1.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 785
components:
@@ -24786,7 +24782,7 @@ entities:
pos: 14.5,1.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 787
components:
@@ -24794,7 +24790,7 @@ entities:
pos: 12.5,1.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 788
components:
@@ -24802,7 +24798,7 @@ entities:
pos: 11.5,1.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 789
components:
@@ -24810,7 +24806,7 @@ entities:
pos: 10.5,1.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 790
components:
@@ -24818,7 +24814,7 @@ entities:
pos: 9.5,1.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 791
components:
@@ -24826,7 +24822,7 @@ entities:
pos: 8.5,1.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 792
components:
@@ -24834,7 +24830,7 @@ entities:
pos: 7.5,1.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 793
components:
@@ -24842,7 +24838,7 @@ entities:
pos: 6.5,1.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 794
components:
@@ -24850,7 +24846,7 @@ entities:
pos: 5.5,1.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 795
components:
@@ -24858,7 +24854,7 @@ entities:
pos: 4.5,1.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 798
components:
@@ -24866,7 +24862,7 @@ entities:
pos: 1.5,1.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 799
components:
@@ -24874,7 +24870,7 @@ entities:
pos: 0.5,1.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 800
components:
@@ -24882,7 +24878,7 @@ entities:
pos: -0.5,1.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 802
components:
@@ -24890,7 +24886,7 @@ entities:
pos: -2.5,1.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 803
components:
@@ -24898,7 +24894,7 @@ entities:
pos: -3.5,1.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 804
components:
@@ -24906,7 +24902,7 @@ entities:
pos: -4.5,1.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 806
components:
@@ -24914,7 +24910,7 @@ entities:
pos: 15.5,3.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 807
components:
@@ -24922,7 +24918,7 @@ entities:
pos: 15.5,4.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 808
components:
@@ -24930,7 +24926,7 @@ entities:
pos: 14.5,4.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 810
components:
@@ -24938,7 +24934,7 @@ entities:
pos: 15.5,5.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 811
components:
@@ -24946,7 +24942,7 @@ entities:
pos: 15.5,6.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 812
components:
@@ -24954,7 +24950,7 @@ entities:
pos: 14.5,6.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 813
components:
@@ -24962,7 +24958,7 @@ entities:
pos: 14.5,7.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 815
components:
@@ -24970,7 +24966,7 @@ entities:
pos: 15.5,8.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 816
components:
@@ -24978,7 +24974,7 @@ entities:
pos: 14.5,8.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 833
components:
@@ -24986,14 +24982,14 @@ entities:
pos: -2.5,12.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 863
components:
- pos: -3.5,10.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 892
components:
@@ -25001,21 +24997,21 @@ entities:
pos: -0.5,9.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 896
components:
- pos: -3.5,11.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 911
components:
- pos: 14.5,9.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 926
components:
@@ -25023,21 +25019,21 @@ entities:
pos: 2.5,4.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 931
components:
- pos: 5.5,11.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 959
components:
- pos: 5.5,12.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 1103
components:
@@ -25045,7 +25041,7 @@ entities:
pos: 18.5,2.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 1104
components:
@@ -25053,7 +25049,7 @@ entities:
pos: 18.5,3.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 1105
components:
@@ -25061,7 +25057,7 @@ entities:
pos: 18.5,4.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 1107
components:
@@ -25069,7 +25065,7 @@ entities:
pos: 18.5,6.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 1108
components:
@@ -25077,7 +25073,7 @@ entities:
pos: 18.5,7.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 1109
components:
@@ -25085,7 +25081,7 @@ entities:
pos: 18.5,8.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 1110
components:
@@ -25093,7 +25089,7 @@ entities:
pos: 18.5,9.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 1111
components:
@@ -25101,7 +25097,7 @@ entities:
pos: 18.5,10.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 1112
components:
@@ -25109,7 +25105,7 @@ entities:
pos: 18.5,11.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 1113
components:
@@ -25117,7 +25113,7 @@ entities:
pos: 18.5,12.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 1114
components:
@@ -25125,7 +25121,7 @@ entities:
pos: 18.5,13.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 1115
components:
@@ -25133,7 +25129,7 @@ entities:
pos: 18.5,14.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 1118
components:
@@ -25141,7 +25137,7 @@ entities:
pos: 18.5,17.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 1119
components:
@@ -25149,7 +25145,7 @@ entities:
pos: 18.5,18.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 1120
components:
@@ -25157,7 +25153,7 @@ entities:
pos: 18.5,19.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 1121
components:
@@ -25165,7 +25161,7 @@ entities:
pos: 18.5,20.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 1122
components:
@@ -25173,7 +25169,7 @@ entities:
pos: 18.5,21.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 1123
components:
@@ -25181,7 +25177,7 @@ entities:
pos: 19.5,4.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 1124
components:
@@ -25189,7 +25185,7 @@ entities:
pos: 19.5,5.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 1125
components:
@@ -25197,7 +25193,7 @@ entities:
pos: 19.5,6.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 1127
components:
@@ -25205,7 +25201,7 @@ entities:
pos: 19.5,8.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 1128
components:
@@ -25213,7 +25209,7 @@ entities:
pos: 19.5,9.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 1129
components:
@@ -25221,7 +25217,7 @@ entities:
pos: 19.5,10.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 1130
components:
@@ -25229,7 +25225,7 @@ entities:
pos: 19.5,11.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 1131
components:
@@ -25237,7 +25233,7 @@ entities:
pos: 19.5,12.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 1134
components:
@@ -25245,7 +25241,7 @@ entities:
pos: 19.5,15.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 1135
components:
@@ -25253,7 +25249,7 @@ entities:
pos: 19.5,16.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 1136
components:
@@ -25261,7 +25257,7 @@ entities:
pos: 19.5,17.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 1137
components:
@@ -25269,7 +25265,7 @@ entities:
pos: 19.5,18.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 1138
components:
@@ -25277,7 +25273,7 @@ entities:
pos: 19.5,19.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 1139
components:
@@ -25285,7 +25281,7 @@ entities:
pos: 19.5,20.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 1141
components:
@@ -25293,7 +25289,7 @@ entities:
pos: 19.5,1.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 1142
components:
@@ -25301,7 +25297,7 @@ entities:
pos: 19.5,2.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 1143
components:
@@ -25309,7 +25305,7 @@ entities:
pos: 19.5,15.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 1144
components:
@@ -25317,7 +25313,7 @@ entities:
pos: 20.5,15.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 1145
components:
@@ -25325,28 +25321,28 @@ entities:
pos: 20.5,13.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 1154
components:
- pos: 19.5,23.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 1155
components:
- pos: 19.5,24.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 1156
components:
- pos: 19.5,25.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 1168
components:
@@ -25354,7 +25350,7 @@ entities:
pos: 13.5,21.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 1236
components:
@@ -25362,7 +25358,7 @@ entities:
pos: 20.5,21.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 1237
components:
@@ -25370,7 +25366,7 @@ entities:
pos: 21.5,21.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 1238
components:
@@ -25378,7 +25374,7 @@ entities:
pos: 22.5,21.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 1239
components:
@@ -25386,7 +25382,7 @@ entities:
pos: 23.5,21.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 1240
components:
@@ -25394,7 +25390,7 @@ entities:
pos: 24.5,21.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 1241
components:
@@ -25402,7 +25398,7 @@ entities:
pos: 18.5,21.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 1242
components:
@@ -25410,7 +25406,7 @@ entities:
pos: 17.5,21.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 1243
components:
@@ -25418,7 +25414,7 @@ entities:
pos: 16.5,21.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 1244
components:
@@ -25426,7 +25422,7 @@ entities:
pos: 15.5,21.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 1245
components:
@@ -25434,7 +25430,7 @@ entities:
pos: 14.5,21.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 1374
components:
@@ -25442,21 +25438,21 @@ entities:
pos: 3.5,1.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 1376
components:
- pos: 7.5,15.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 1377
components:
- pos: 7.5,12.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 1383
components:
@@ -25464,7 +25460,7 @@ entities:
pos: -3.5,1.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 1385
components:
@@ -25472,7 +25468,7 @@ entities:
pos: -1.5,3.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 1386
components:
@@ -25480,7 +25476,7 @@ entities:
pos: -1.5,4.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 1387
components:
@@ -25488,7 +25484,7 @@ entities:
pos: -1.5,5.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 1388
components:
@@ -25496,7 +25492,7 @@ entities:
pos: -1.5,6.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 1389
components:
@@ -25504,7 +25500,7 @@ entities:
pos: -3.5,4.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 1390
components:
@@ -25512,7 +25508,7 @@ entities:
pos: -3.5,6.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 1391
components:
@@ -25520,7 +25516,7 @@ entities:
pos: -3.5,5.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 1392
components:
@@ -25528,7 +25524,7 @@ entities:
pos: -3.5,7.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 1393
components:
@@ -25536,7 +25532,7 @@ entities:
pos: -3.5,8.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 1394
components:
@@ -25544,7 +25540,7 @@ entities:
pos: -1.5,7.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 1395
components:
@@ -25552,7 +25548,7 @@ entities:
pos: -1.5,8.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 1398
components:
@@ -25560,7 +25556,7 @@ entities:
pos: 12.5,10.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 1404
components:
@@ -25568,7 +25564,7 @@ entities:
pos: 9.5,10.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 1407
components:
@@ -25576,7 +25572,7 @@ entities:
pos: 15.5,16.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 1408
components:
@@ -25584,7 +25580,7 @@ entities:
pos: 7.5,9.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 1416
components:
@@ -25592,7 +25588,7 @@ entities:
pos: 12.5,8.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 1417
components:
@@ -25600,7 +25596,7 @@ entities:
pos: 11.5,8.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 1418
components:
@@ -25608,7 +25604,7 @@ entities:
pos: 6.5,8.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 1419
components:
@@ -25616,7 +25612,7 @@ entities:
pos: 9.5,6.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 1420
components:
@@ -25624,7 +25620,7 @@ entities:
pos: 9.5,7.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 1430
components:
@@ -25632,7 +25628,7 @@ entities:
pos: 8.5,7.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 1431
components:
@@ -25640,7 +25636,7 @@ entities:
pos: 8.5,9.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 1436
components:
@@ -25648,7 +25644,7 @@ entities:
pos: 5.5,8.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 1441
components:
@@ -25656,7 +25652,7 @@ entities:
pos: 8.5,9.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 1442
components:
@@ -25664,7 +25660,7 @@ entities:
pos: 13.5,9.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 1443
components:
@@ -25672,7 +25668,7 @@ entities:
pos: 12.5,7.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 1445
components:
@@ -25680,7 +25676,7 @@ entities:
pos: 15.5,10.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 1561
components:
@@ -25688,7 +25684,7 @@ entities:
pos: -6.5,3.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 1562
components:
@@ -25696,7 +25692,7 @@ entities:
pos: -7.5,3.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 1564
components:
@@ -25704,7 +25700,7 @@ entities:
pos: -7.5,1.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 1567
components:
@@ -25712,63 +25708,63 @@ entities:
pos: -5.5,1.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 1573
components:
- pos: -5.5,1.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 1574
components:
- pos: -5.5,2.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 1575
components:
- pos: -6.5,2.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 1576
components:
- pos: -6.5,3.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2004
components:
- pos: -3.5,9.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2016
components:
- pos: 14.5,12.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2080
components:
- pos: 14.5,14.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2081
components:
- pos: 14.5,16.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2082
components:
@@ -25776,7 +25772,7 @@ entities:
pos: 11.5,7.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2084
components:
@@ -25784,7 +25780,7 @@ entities:
pos: 9.5,8.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2090
components:
@@ -25792,7 +25788,7 @@ entities:
pos: 15.5,11.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2120
components:
@@ -25800,7 +25796,7 @@ entities:
pos: 15.5,12.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2121
components:
@@ -25808,7 +25804,7 @@ entities:
pos: 15.5,14.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2122
components:
@@ -25816,7 +25812,7 @@ entities:
pos: 15.5,15.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2123
components:
@@ -25824,7 +25820,7 @@ entities:
pos: 12.5,6.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2124
components:
@@ -25832,7 +25828,7 @@ entities:
pos: 14.5,9.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2125
components:
@@ -25840,14 +25836,14 @@ entities:
pos: 11.5,9.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2126
components:
- pos: 10.5,10.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2142
components:
@@ -25855,7 +25851,7 @@ entities:
pos: 10.5,10.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2143
components:
@@ -25863,7 +25859,7 @@ entities:
pos: 5.5,7.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2147
components:
@@ -25871,7 +25867,7 @@ entities:
pos: 9.5,14.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2153
components:
@@ -25879,14 +25875,14 @@ entities:
pos: 2.5,5.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2155
components:
- pos: 7.5,14.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2165
components:
@@ -25894,7 +25890,7 @@ entities:
pos: 5.5,9.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2226
components:
@@ -25902,7 +25898,7 @@ entities:
pos: 10.5,12.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2241
components:
@@ -25910,7 +25906,7 @@ entities:
pos: 6.5,6.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2242
components:
@@ -25918,7 +25914,7 @@ entities:
pos: 11.5,9.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2247
components:
@@ -25926,7 +25922,7 @@ entities:
pos: 6.5,7.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2253
components:
@@ -25934,8 +25930,28 @@ entities:
pos: 15.5,13.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
+ - uid: 2293
+ components:
+ - pos: 13.5,-3.5
+ parent: 30
+ type: Transform
+ - color: '#FF1212FF'
+ type: AtmosPipeColor
+ - uid: 2319
+ components:
+ - pos: 13.5,-4.5
+ parent: 30
+ type: Transform
+ - color: '#FF1212FF'
+ type: AtmosPipeColor
+ - uid: 2325
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -40.5,0.5
+ parent: 30
+ type: Transform
- uid: 2328
components:
- rot: 3.141592653589793 rad
@@ -25948,7 +25964,15 @@ entities:
pos: -31.5,-7.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 2365
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 5.5,-8.5
+ parent: 30
+ type: Transform
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2381
components:
@@ -25956,7 +25980,7 @@ entities:
pos: -31.5,-8.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2394
components:
@@ -25964,7 +25988,15 @@ entities:
pos: 7.5,-2.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
+ type: AtmosPipeColor
+ - uid: 2445
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 4.5,-8.5
+ parent: 30
+ type: Transform
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2447
components:
@@ -25972,7 +26004,23 @@ entities:
pos: 6.5,-12.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
+ type: AtmosPipeColor
+ - uid: 2467
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 4.5,-2.5
+ parent: 30
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 2481
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 2.5,-7.5
+ parent: 30
+ type: Transform
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2504
components:
@@ -25980,84 +26028,84 @@ entities:
pos: 8.5,-7.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2521
components:
- pos: 18.5,0.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2526
components:
- pos: 18.5,-1.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2528
components:
- pos: 18.5,-3.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2529
components:
- pos: 18.5,-4.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2530
components:
- pos: 18.5,-5.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2531
components:
- pos: 18.5,-6.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2532
components:
- pos: 19.5,-6.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2533
components:
- pos: 19.5,-5.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2536
components:
- pos: 19.5,-2.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2538
components:
- pos: 19.5,-0.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2539
components:
- pos: 19.5,0.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2540
components:
@@ -26065,7 +26113,7 @@ entities:
pos: 20.5,-1.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2541
components:
@@ -26073,7 +26121,7 @@ entities:
pos: 21.5,-1.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2542
components:
@@ -26081,7 +26129,7 @@ entities:
pos: 19.5,-2.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2543
components:
@@ -26089,7 +26137,7 @@ entities:
pos: 20.5,-2.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2544
components:
@@ -26097,7 +26145,7 @@ entities:
pos: 21.5,-2.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2547
components:
@@ -26105,7 +26153,7 @@ entities:
pos: 18.5,-1.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2548
components:
@@ -26113,7 +26161,7 @@ entities:
pos: 17.5,-1.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2549
components:
@@ -26121,7 +26169,7 @@ entities:
pos: 17.5,-2.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2550
components:
@@ -26129,7 +26177,7 @@ entities:
pos: 15.5,-2.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2551
components:
@@ -26137,7 +26185,7 @@ entities:
pos: 16.5,-2.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2552
components:
@@ -26145,7 +26193,7 @@ entities:
pos: 16.5,-1.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2553
components:
@@ -26153,7 +26201,7 @@ entities:
pos: 15.5,-1.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2554
components:
@@ -26161,7 +26209,7 @@ entities:
pos: 14.5,-2.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2555
components:
@@ -26169,15 +26217,7 @@ entities:
pos: 14.5,-1.5
parent: 30
type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
- - uid: 2556
- components:
- - rot: -1.5707963267948966 rad
- pos: 13.5,-2.5
- parent: 30
- type: Transform
- - color: '#990000FF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2557
components:
@@ -26185,7 +26225,7 @@ entities:
pos: 13.5,-1.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2559
components:
@@ -26193,7 +26233,7 @@ entities:
pos: 12.5,-1.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2560
components:
@@ -26201,7 +26241,7 @@ entities:
pos: 11.5,-2.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2561
components:
@@ -26209,7 +26249,7 @@ entities:
pos: 10.5,-2.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2562
components:
@@ -26217,7 +26257,7 @@ entities:
pos: 9.5,-2.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2563
components:
@@ -26225,7 +26265,7 @@ entities:
pos: 8.5,-2.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2565
components:
@@ -26233,7 +26273,7 @@ entities:
pos: 6.5,-2.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2567
components:
@@ -26241,7 +26281,7 @@ entities:
pos: 4.5,-2.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2568
components:
@@ -26249,7 +26289,7 @@ entities:
pos: 3.5,-2.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2571
components:
@@ -26257,7 +26297,7 @@ entities:
pos: 0.5,-2.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2574
components:
@@ -26265,7 +26305,7 @@ entities:
pos: 8.5,-1.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2575
components:
@@ -26273,7 +26313,7 @@ entities:
pos: 9.5,-1.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2576
components:
@@ -26281,7 +26321,7 @@ entities:
pos: 7.5,-1.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2578
components:
@@ -26289,15 +26329,7 @@ entities:
pos: 5.5,-1.5
parent: 30
type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
- - uid: 2579
- components:
- - rot: -1.5707963267948966 rad
- pos: 4.5,-1.5
- parent: 30
- type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2580
components:
@@ -26305,7 +26337,7 @@ entities:
pos: 3.5,-1.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2582
components:
@@ -26313,14 +26345,14 @@ entities:
pos: 2.5,-1.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2583
components:
- pos: 2.5,0.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2584
components:
@@ -26328,7 +26360,7 @@ entities:
pos: -0.5,-1.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2585
components:
@@ -26336,7 +26368,7 @@ entities:
pos: -0.5,-2.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2587
components:
@@ -26344,7 +26376,7 @@ entities:
pos: -1.5,-1.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2588
components:
@@ -26352,7 +26384,7 @@ entities:
pos: -2.5,-1.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2589
components:
@@ -26360,7 +26392,7 @@ entities:
pos: -3.5,-0.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2590
components:
@@ -26368,7 +26400,7 @@ entities:
pos: -3.5,0.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2592
components:
@@ -26376,7 +26408,7 @@ entities:
pos: -1.5,-1.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2593
components:
@@ -26384,7 +26416,7 @@ entities:
pos: -1.5,-0.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2594
components:
@@ -26392,91 +26424,78 @@ entities:
pos: -1.5,0.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2595
components:
- pos: 2.5,-1.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2596
components:
- pos: 0.5,-0.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2597
components:
- pos: 0.5,0.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2598
components:
- pos: 0.5,1.5
parent: 30
type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
- - uid: 2614
- components:
- - pos: 12.5,-3.5
- parent: 30
- type: Transform
- - color: '#990000FF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2620
components:
- pos: 5.5,-4.5
parent: 30
type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
- - uid: 2621
- components:
- - pos: 5.5,-5.5
- parent: 30
- type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2622
components:
- pos: 5.5,-6.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2624
components:
- pos: 5.5,-8.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2625
components:
- - pos: 5.5,-9.5
+ - rot: 1.5707963267948966 rad
+ pos: 6.5,-4.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2626
components:
- pos: 5.5,-10.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2627
components:
- pos: 5.5,-11.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2630
components:
@@ -26484,7 +26503,7 @@ entities:
pos: 6.5,-10.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2631
components:
@@ -26492,47 +26511,7 @@ entities:
pos: 6.5,-9.5
parent: 30
type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
- - uid: 2632
- components:
- - rot: 3.141592653589793 rad
- pos: 6.5,-8.5
- parent: 30
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
- - uid: 2634
- components:
- - rot: 3.141592653589793 rad
- pos: 6.5,-6.5
- parent: 30
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
- - uid: 2635
- components:
- - rot: 3.141592653589793 rad
- pos: 6.5,-5.5
- parent: 30
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
- - uid: 2636
- components:
- - rot: 3.141592653589793 rad
- pos: 6.5,-4.5
- parent: 30
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
- - uid: 2639
- components:
- - rot: 3.141592653589793 rad
- pos: 6.5,-2.5
- parent: 30
- type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2640
components:
@@ -26540,7 +26519,7 @@ entities:
pos: 5.5,-11.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2641
components:
@@ -26548,7 +26527,7 @@ entities:
pos: 4.5,-12.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2644
components:
@@ -26556,7 +26535,7 @@ entities:
pos: 3.5,-11.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2645
components:
@@ -26564,7 +26543,7 @@ entities:
pos: 7.5,-12.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2646
components:
@@ -26572,7 +26551,7 @@ entities:
pos: 7.5,-11.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2647
components:
@@ -26580,7 +26559,7 @@ entities:
pos: 8.5,-12.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2648
components:
@@ -26588,7 +26567,7 @@ entities:
pos: 8.5,-11.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2649
components:
@@ -26596,7 +26575,7 @@ entities:
pos: 9.5,-12.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2650
components:
@@ -26604,7 +26583,7 @@ entities:
pos: 9.5,-11.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2651
components:
@@ -26612,7 +26591,7 @@ entities:
pos: 2.5,-12.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2652
components:
@@ -26620,7 +26599,7 @@ entities:
pos: 1.5,-12.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2654
components:
@@ -26628,7 +26607,7 @@ entities:
pos: 2.5,-11.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2656
components:
@@ -26636,7 +26615,7 @@ entities:
pos: 0.5,-11.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2657
components:
@@ -26644,7 +26623,7 @@ entities:
pos: 0.5,-10.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2658
components:
@@ -26652,7 +26631,7 @@ entities:
pos: 0.5,-9.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2659
components:
@@ -26660,7 +26639,7 @@ entities:
pos: 1.5,-10.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2660
components:
@@ -26668,14 +26647,14 @@ entities:
pos: 1.5,-9.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2663
components:
- pos: 1.5,-8.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2665
components:
@@ -26683,7 +26662,7 @@ entities:
pos: -0.5,-7.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2667
components:
@@ -26691,7 +26670,7 @@ entities:
pos: -0.5,-8.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2668
components:
@@ -26699,7 +26678,7 @@ entities:
pos: -1.5,-8.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2670
components:
@@ -26707,7 +26686,7 @@ entities:
pos: 1.5,-8.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2674
components:
@@ -26715,7 +26694,7 @@ entities:
pos: 13.5,-5.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2675
components:
@@ -26723,7 +26702,7 @@ entities:
pos: 0.5,-11.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2679
components:
@@ -26731,28 +26710,28 @@ entities:
pos: 7.5,-7.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2681
components:
- pos: 5.5,-3.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2683
components:
- pos: 5.5,-1.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2688
components:
- pos: 3.5,-13.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2690
components:
@@ -26760,7 +26739,7 @@ entities:
pos: 6.5,-12.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2691
components:
@@ -26768,7 +26747,7 @@ entities:
pos: 6.5,-13.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2692
components:
@@ -26776,21 +26755,14 @@ entities:
pos: 6.5,-14.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2693
components:
- pos: 6.5,-15.5
parent: 30
type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
- - uid: 2733
- components:
- - pos: 6.5,-3.5
- parent: 30
- type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2754
components:
@@ -26798,70 +26770,70 @@ entities:
pos: 10.5,-1.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2971
components:
- pos: 19.5,-7.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2972
components:
- pos: 19.5,-8.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2974
components:
- pos: 19.5,-10.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2975
components:
- pos: 19.5,-11.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2976
components:
- pos: 19.5,-12.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2977
components:
- pos: 19.5,-14.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2979
components:
- pos: 19.5,-16.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2980
components:
- pos: 19.5,-13.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2982
components:
- pos: 19.5,-18.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2985
components:
@@ -26869,7 +26841,7 @@ entities:
pos: 18.5,-7.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2986
components:
@@ -26877,7 +26849,7 @@ entities:
pos: 18.5,-8.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2987
components:
@@ -26885,7 +26857,7 @@ entities:
pos: 18.5,-9.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2990
components:
@@ -26893,7 +26865,7 @@ entities:
pos: 18.5,-12.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2991
components:
@@ -26901,7 +26873,7 @@ entities:
pos: 18.5,-13.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2992
components:
@@ -26909,14 +26881,14 @@ entities:
pos: 18.5,-14.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2993
components:
- pos: 18.5,-15.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2996
components:
@@ -26924,7 +26896,7 @@ entities:
pos: 20.5,-15.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2997
components:
@@ -26932,7 +26904,7 @@ entities:
pos: 21.5,-15.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2998
components:
@@ -26940,7 +26912,7 @@ entities:
pos: 22.5,-15.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2999
components:
@@ -26948,7 +26920,7 @@ entities:
pos: 23.5,-15.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3000
components:
@@ -26956,7 +26928,7 @@ entities:
pos: 24.5,-15.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3005
components:
@@ -26964,7 +26936,7 @@ entities:
pos: 25.5,-14.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3012
components:
@@ -26972,7 +26944,7 @@ entities:
pos: 18.5,-4.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3013
components:
@@ -26980,7 +26952,15 @@ entities:
pos: 17.5,-4.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 3318
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 4.5,-9.5
+ parent: 30
+ type: Transform
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 3344
components:
@@ -26988,7 +26968,7 @@ entities:
pos: 19.5,-10.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 3345
components:
@@ -26996,7 +26976,7 @@ entities:
pos: 20.5,-10.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 3346
components:
@@ -27004,7 +26984,7 @@ entities:
pos: 20.5,-9.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3441
components:
@@ -27012,49 +26992,49 @@ entities:
pos: -36.5,19.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3688
components:
- pos: 14.5,15.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3689
components:
- pos: 14.5,13.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3693
components:
- pos: 14.5,11.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3765
components:
- pos: 7.5,13.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3766
components:
- pos: 7.5,11.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3767
components:
- pos: 5.5,14.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3769
components:
@@ -27062,7 +27042,7 @@ entities:
pos: 9.5,15.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 3770
components:
@@ -27070,7 +27050,7 @@ entities:
pos: 8.5,8.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3776
components:
@@ -27078,7 +27058,7 @@ entities:
pos: -5.5,4.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3777
components:
@@ -27086,7 +27066,7 @@ entities:
pos: -5.5,5.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3778
components:
@@ -27094,7 +27074,7 @@ entities:
pos: -5.5,6.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3779
components:
@@ -27102,7 +27082,7 @@ entities:
pos: -5.5,7.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3780
components:
@@ -27110,7 +27090,7 @@ entities:
pos: -5.5,8.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3781
components:
@@ -27118,7 +27098,7 @@ entities:
pos: -5.5,9.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3785
components:
@@ -27126,7 +27106,7 @@ entities:
pos: -10.5,11.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3786
components:
@@ -27134,7 +27114,7 @@ entities:
pos: -11.5,11.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3787
components:
@@ -27142,7 +27122,7 @@ entities:
pos: -12.5,11.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3789
components:
@@ -27150,84 +27130,84 @@ entities:
pos: -6.5,11.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3790
components:
- pos: -5.5,10.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3791
components:
- pos: -9.5,12.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3792
components:
- pos: -9.5,13.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3793
components:
- pos: -7.5,12.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3794
components:
- pos: -7.5,13.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3795
components:
- pos: -6.5,4.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 3796
components:
- pos: -6.5,5.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 3797
components:
- pos: -6.5,6.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 3798
components:
- pos: -6.5,7.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 3799
components:
- pos: -6.5,8.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 3800
components:
- pos: -6.5,9.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 3803
components:
@@ -27235,7 +27215,7 @@ entities:
pos: -11.5,11.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 3804
components:
@@ -27243,7 +27223,7 @@ entities:
pos: -11.5,12.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 3805
components:
@@ -27251,7 +27231,7 @@ entities:
pos: -11.5,13.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 3806
components:
@@ -27259,7 +27239,7 @@ entities:
pos: -12.5,10.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 3808
components:
@@ -27267,7 +27247,7 @@ entities:
pos: -9.5,10.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 3809
components:
@@ -27275,7 +27255,7 @@ entities:
pos: -8.5,10.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 3810
components:
@@ -27283,77 +27263,77 @@ entities:
pos: -7.5,10.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 3811
components:
- pos: -6.5,11.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 3812
components:
- pos: -6.5,12.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 3813
components:
- pos: -6.5,13.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 3818
components:
- pos: -5.5,0.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3819
components:
- pos: -5.5,-0.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3820
components:
- pos: -5.5,-1.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3821
components:
- pos: -5.5,-2.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3822
components:
- pos: -5.5,-3.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3823
components:
- pos: -5.5,-4.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3824
components:
- pos: -5.5,-5.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3826
components:
@@ -27361,7 +27341,7 @@ entities:
pos: -7.5,-6.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3828
components:
@@ -27369,7 +27349,7 @@ entities:
pos: -9.5,-6.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3829
components:
@@ -27377,7 +27357,7 @@ entities:
pos: -11.5,-6.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3830
components:
@@ -27385,7 +27365,7 @@ entities:
pos: -10.5,-6.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3831
components:
@@ -27393,7 +27373,7 @@ entities:
pos: -12.5,-6.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3834
components:
@@ -27401,7 +27381,7 @@ entities:
pos: -11.5,-5.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 3835
components:
@@ -27409,7 +27389,7 @@ entities:
pos: -12.5,-5.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 3836
components:
@@ -27417,7 +27397,7 @@ entities:
pos: -10.5,-6.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 3837
components:
@@ -27425,7 +27405,7 @@ entities:
pos: -10.5,-7.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 3838
components:
@@ -27433,7 +27413,7 @@ entities:
pos: -10.5,-8.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 3839
components:
@@ -27441,7 +27421,7 @@ entities:
pos: -6.5,-7.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3840
components:
@@ -27449,7 +27429,7 @@ entities:
pos: -6.5,-8.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3841
components:
@@ -27457,7 +27437,7 @@ entities:
pos: -9.5,-5.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 3842
components:
@@ -27465,7 +27445,7 @@ entities:
pos: -8.5,-5.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 3843
components:
@@ -27473,63 +27453,63 @@ entities:
pos: -7.5,-5.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 3844
components:
- pos: -6.5,0.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 3845
components:
- pos: -6.5,-0.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 3846
components:
- pos: -6.5,-1.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 3847
components:
- pos: -6.5,-2.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 3848
components:
- pos: -6.5,-3.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 3849
components:
- pos: -6.5,-4.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 3887
components:
- pos: -24.5,-2.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3888
components:
- pos: -24.5,-3.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3898
components:
@@ -27537,7 +27517,7 @@ entities:
pos: -17.5,-2.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 3900
components:
@@ -27545,7 +27525,7 @@ entities:
pos: -15.5,-1.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 3901
components:
@@ -27553,7 +27533,7 @@ entities:
pos: -15.5,-0.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 3902
components:
@@ -27561,7 +27541,7 @@ entities:
pos: -17.5,-1.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3903
components:
@@ -27569,7 +27549,7 @@ entities:
pos: -20.5,-1.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3905
components:
@@ -27577,7 +27557,7 @@ entities:
pos: -19.5,6.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3907
components:
@@ -27585,14 +27565,14 @@ entities:
pos: -21.5,-2.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 3908
components:
- pos: -24.5,10.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3934
components:
@@ -27600,14 +27580,14 @@ entities:
pos: -15.5,1.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 3986
components:
- pos: 6.5,-16.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3987
components:
@@ -27615,7 +27595,7 @@ entities:
pos: 5.5,-17.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3991
components:
@@ -27623,7 +27603,7 @@ entities:
pos: 4.5,-18.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3992
components:
@@ -27631,7 +27611,7 @@ entities:
pos: 3.5,-19.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3993
components:
@@ -27639,7 +27619,7 @@ entities:
pos: 2.5,-19.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3998
components:
@@ -27654,28 +27634,28 @@ entities:
- pos: -22.5,6.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4152
components:
- pos: -22.5,3.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4153
components:
- pos: -22.5,0.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4160
components:
- pos: -22.5,1.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4168
components:
@@ -27683,91 +27663,91 @@ entities:
pos: -25.5,2.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4183
components:
- pos: -22.5,2.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4184
components:
- pos: -22.5,-1.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4187
components:
- pos: -22.5,4.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4188
components:
- pos: -22.5,-0.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4194
components:
- pos: -22.5,-3.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4199
components:
- pos: -22.5,-4.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4214
components:
- pos: -24.5,8.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4220
components:
- pos: -24.5,7.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4222
components:
- pos: -24.5,5.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4223
components:
- pos: -24.5,4.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4224
components:
- pos: -24.5,3.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4226
components:
- pos: -24.5,1.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4229
components:
@@ -27775,14 +27755,14 @@ entities:
pos: -20.5,-4.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4230
components:
- pos: -22.5,9.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4233
components:
@@ -27790,28 +27770,36 @@ entities:
pos: -19.5,-4.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4235
components:
- pos: -22.5,8.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4283
components:
- pos: -24.5,9.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4353
components:
- pos: 5.5,13.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 4357
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 3.5,-9.5
+ parent: 30
+ type: Transform
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4372
components:
@@ -27819,7 +27807,15 @@ entities:
pos: -29.5,-5.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 4611
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 4.5,-5.5
+ parent: 30
+ type: Transform
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4634
components:
@@ -27857,7 +27853,15 @@ entities:
pos: -35.5,19.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 4720
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 6.5,-5.5
+ parent: 30
+ type: Transform
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4743
components:
@@ -27865,7 +27869,7 @@ entities:
pos: -16.5,11.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4744
components:
@@ -27873,7 +27877,7 @@ entities:
pos: -13.5,-5.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4745
components:
@@ -27881,7 +27885,7 @@ entities:
pos: -14.5,-5.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4746
components:
@@ -27889,7 +27893,7 @@ entities:
pos: -15.5,-5.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4747
components:
@@ -27897,7 +27901,7 @@ entities:
pos: -16.5,-5.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4748
components:
@@ -27905,7 +27909,7 @@ entities:
pos: -17.5,-5.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4751
components:
@@ -27913,7 +27917,7 @@ entities:
pos: -29.5,10.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4753
components:
@@ -27921,7 +27925,7 @@ entities:
pos: -22.5,-5.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4754
components:
@@ -27929,42 +27933,42 @@ entities:
pos: -23.5,-5.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4757
components:
- pos: -25.5,-6.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4758
components:
- pos: -25.5,-7.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4759
components:
- pos: -25.5,-8.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4760
components:
- pos: -25.5,-9.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4761
components:
- pos: -25.5,-10.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4765
components:
@@ -27972,7 +27976,7 @@ entities:
pos: -24.5,-12.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4767
components:
@@ -27980,7 +27984,7 @@ entities:
pos: -21.5,-12.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4768
components:
@@ -27988,7 +27992,7 @@ entities:
pos: -20.5,-12.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4769
components:
@@ -27996,7 +28000,7 @@ entities:
pos: -19.5,-12.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4770
components:
@@ -28004,7 +28008,7 @@ entities:
pos: -18.5,-12.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4771
components:
@@ -28012,56 +28016,56 @@ entities:
pos: -17.5,-12.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4772
components:
- pos: -22.5,-11.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4773
components:
- pos: -22.5,-10.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4774
components:
- pos: -22.5,-13.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4775
components:
- pos: -22.5,-14.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4776
components:
- pos: -22.5,-15.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4777
components:
- pos: -22.5,-16.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4778
components:
- pos: -22.5,-17.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4784
components:
@@ -28069,7 +28073,7 @@ entities:
pos: -26.5,-5.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4785
components:
@@ -28077,7 +28081,7 @@ entities:
pos: -27.5,-5.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4787
components:
@@ -28085,7 +28089,7 @@ entities:
pos: -28.5,-4.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4788
components:
@@ -28093,7 +28097,7 @@ entities:
pos: -28.5,-3.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4789
components:
@@ -28101,7 +28105,7 @@ entities:
pos: -28.5,-2.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4790
components:
@@ -28109,7 +28113,7 @@ entities:
pos: -28.5,-1.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4791
components:
@@ -28117,14 +28121,14 @@ entities:
pos: -28.5,-0.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4792
components:
- pos: -28.5,4.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4793
components:
@@ -28132,14 +28136,14 @@ entities:
pos: -28.5,1.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4794
components:
- pos: -29.5,2.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4795
components:
@@ -28147,14 +28151,14 @@ entities:
pos: -28.5,3.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4796
components:
- pos: -28.5,0.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4797
components:
@@ -28162,7 +28166,7 @@ entities:
pos: -28.5,5.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4798
components:
@@ -28170,7 +28174,7 @@ entities:
pos: -28.5,6.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4799
components:
@@ -28178,7 +28182,7 @@ entities:
pos: -28.5,7.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4800
components:
@@ -28186,7 +28190,7 @@ entities:
pos: -28.5,8.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4802
components:
@@ -28194,7 +28198,7 @@ entities:
pos: -13.5,11.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4803
components:
@@ -28202,7 +28206,7 @@ entities:
pos: -14.5,11.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4804
components:
@@ -28210,7 +28214,7 @@ entities:
pos: -15.5,11.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4808
components:
@@ -28218,7 +28222,7 @@ entities:
pos: -18.5,11.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4809
components:
@@ -28226,7 +28230,7 @@ entities:
pos: -20.5,11.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4810
components:
@@ -28234,7 +28238,7 @@ entities:
pos: -21.5,11.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4811
components:
@@ -28242,7 +28246,7 @@ entities:
pos: -22.5,11.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4812
components:
@@ -28250,7 +28254,7 @@ entities:
pos: -23.5,11.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4814
components:
@@ -28258,7 +28262,7 @@ entities:
pos: -25.5,11.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4816
components:
@@ -28266,7 +28270,7 @@ entities:
pos: -27.5,11.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4819
components:
@@ -28274,84 +28278,84 @@ entities:
pos: -28.5,11.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4821
components:
- pos: -29.5,-5.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4822
components:
- pos: -29.5,-4.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4823
components:
- pos: -29.5,-3.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4824
components:
- pos: -29.5,-2.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4825
components:
- pos: -29.5,-1.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4826
components:
- pos: -29.5,-0.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4830
components:
- pos: -29.5,4.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4831
components:
- pos: -29.5,3.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4832
components:
- pos: -29.5,5.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4833
components:
- pos: -29.5,6.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4834
components:
- pos: -29.5,7.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4836
components:
@@ -28359,14 +28363,14 @@ entities:
pos: -29.5,10.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4837
components:
- pos: -30.5,9.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4838
components:
@@ -28374,7 +28378,7 @@ entities:
pos: -27.5,10.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4839
components:
@@ -28382,7 +28386,7 @@ entities:
pos: -26.5,10.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4841
components:
@@ -28390,7 +28394,7 @@ entities:
pos: -24.5,10.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4842
components:
@@ -28398,7 +28402,7 @@ entities:
pos: -23.5,10.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4844
components:
@@ -28406,7 +28410,7 @@ entities:
pos: -21.5,10.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4845
components:
@@ -28414,7 +28418,7 @@ entities:
pos: -20.5,10.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4846
components:
@@ -28422,7 +28426,7 @@ entities:
pos: -17.5,10.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4847
components:
@@ -28430,7 +28434,7 @@ entities:
pos: -14.5,10.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4851
components:
@@ -28438,7 +28442,7 @@ entities:
pos: -18.5,10.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4852
components:
@@ -28446,7 +28450,7 @@ entities:
pos: -19.5,10.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4853
components:
@@ -28454,7 +28458,7 @@ entities:
pos: -28.5,-6.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4854
components:
@@ -28462,7 +28466,7 @@ entities:
pos: -27.5,-6.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4856
components:
@@ -28470,7 +28474,7 @@ entities:
pos: -25.5,-6.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4857
components:
@@ -28478,7 +28482,7 @@ entities:
pos: -24.5,-6.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4858
components:
@@ -28486,7 +28490,7 @@ entities:
pos: -23.5,-6.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4860
components:
@@ -28494,7 +28498,7 @@ entities:
pos: -21.5,-6.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4864
components:
@@ -28502,7 +28506,7 @@ entities:
pos: -17.5,-5.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4865
components:
@@ -28510,7 +28514,7 @@ entities:
pos: -16.5,-6.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4866
components:
@@ -28518,7 +28522,7 @@ entities:
pos: -13.5,-6.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4867
components:
@@ -28526,42 +28530,42 @@ entities:
pos: -14.5,-6.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4869
components:
- pos: -26.5,-7.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4870
components:
- pos: -26.5,-8.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4871
components:
- pos: -26.5,-9.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4873
components:
- pos: -26.5,-11.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4874
components:
- pos: -26.5,-12.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4876
components:
@@ -28569,7 +28573,7 @@ entities:
pos: -25.5,-13.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4878
components:
@@ -28577,7 +28581,7 @@ entities:
pos: -23.5,-13.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4879
components:
@@ -28585,7 +28589,7 @@ entities:
pos: -22.5,-13.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4880
components:
@@ -28593,7 +28597,7 @@ entities:
pos: -20.5,-13.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4882
components:
@@ -28601,7 +28605,7 @@ entities:
pos: -19.5,-13.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4883
components:
@@ -28609,7 +28613,7 @@ entities:
pos: -18.5,-13.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4884
components:
@@ -28617,28 +28621,28 @@ entities:
pos: -17.5,-13.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4886
components:
- pos: -21.5,-12.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4887
components:
- pos: -21.5,-11.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4888
components:
- pos: -21.5,-10.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4898
components:
@@ -28670,7 +28674,7 @@ entities:
pos: -15.5,2.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 5184
components:
@@ -28678,7 +28682,7 @@ entities:
pos: -15.5,3.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 5185
components:
@@ -28686,14 +28690,14 @@ entities:
pos: -15.5,4.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 5199
components:
- pos: -24.5,0.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 5264
components:
@@ -28701,7 +28705,7 @@ entities:
pos: -28.5,1.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 5277
components:
@@ -28709,14 +28713,14 @@ entities:
pos: -22.5,-5.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 5279
components:
- pos: -24.5,-0.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 5340
components:
@@ -28724,7 +28728,7 @@ entities:
pos: 19.5,-20.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 5341
components:
@@ -28732,7 +28736,7 @@ entities:
pos: 19.5,-19.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 5450
components:
@@ -28740,7 +28744,7 @@ entities:
pos: -17.5,6.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 5734
components:
@@ -28748,7 +28752,7 @@ entities:
pos: -25.5,11.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 5735
components:
@@ -28756,7 +28760,7 @@ entities:
pos: -25.5,12.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 5736
components:
@@ -28764,7 +28768,7 @@ entities:
pos: -25.5,13.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 5737
components:
@@ -28772,7 +28776,7 @@ entities:
pos: -25.5,14.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 5738
components:
@@ -28780,7 +28784,7 @@ entities:
pos: -26.5,12.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 5739
components:
@@ -28788,7 +28792,7 @@ entities:
pos: -26.5,13.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 5740
components:
@@ -28796,7 +28800,7 @@ entities:
pos: -26.5,14.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 5741
components:
@@ -28804,7 +28808,7 @@ entities:
pos: -26.5,15.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 5743
components:
@@ -28812,7 +28816,7 @@ entities:
pos: -17.5,11.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 5747
components:
@@ -28820,7 +28824,7 @@ entities:
pos: -25.5,16.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 5748
components:
@@ -28828,7 +28832,7 @@ entities:
pos: -24.5,16.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 5751
components:
@@ -28836,7 +28840,7 @@ entities:
pos: -21.5,16.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 5752
components:
@@ -28844,7 +28848,7 @@ entities:
pos: -20.5,16.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 5754
components:
@@ -28852,7 +28856,7 @@ entities:
pos: -18.5,16.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 5760
components:
@@ -28860,7 +28864,7 @@ entities:
pos: -24.5,15.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 5761
components:
@@ -28868,7 +28872,7 @@ entities:
pos: -23.5,15.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 5762
components:
@@ -28876,70 +28880,70 @@ entities:
pos: -22.5,15.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 5763
components:
- pos: -21.5,16.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 5764
components:
- pos: -21.5,17.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 5765
components:
- pos: -15.5,11.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 5766
components:
- pos: -15.5,12.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 5767
components:
- pos: -15.5,13.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 5768
components:
- pos: -15.5,14.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 5769
components:
- pos: -15.5,15.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 5770
components:
- pos: -15.5,16.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 5771
components:
- pos: -15.5,17.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 5772
components:
@@ -28947,7 +28951,7 @@ entities:
pos: -16.5,18.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 5774
components:
@@ -28955,7 +28959,7 @@ entities:
pos: -18.5,18.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 5775
components:
@@ -28963,7 +28967,7 @@ entities:
pos: -19.5,18.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 5776
components:
@@ -28971,28 +28975,28 @@ entities:
pos: -20.5,18.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 5785
components:
- pos: -23.5,17.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 5786
components:
- pos: -23.5,18.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 5789
components:
- pos: -21.5,19.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 5790
components:
@@ -29000,7 +29004,7 @@ entities:
pos: -22.5,20.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 5791
components:
@@ -29008,7 +29012,7 @@ entities:
pos: -23.5,20.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 5792
components:
@@ -29016,7 +29020,7 @@ entities:
pos: -24.5,20.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 5793
components:
@@ -29024,42 +29028,42 @@ entities:
pos: -24.5,19.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 5796
components:
- pos: -19.5,17.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 5797
components:
- pos: -19.5,18.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 5798
components:
- pos: -19.5,19.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 5799
components:
- pos: -19.5,20.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 5800
components:
- pos: -19.5,21.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 5872
components:
@@ -29067,7 +29071,7 @@ entities:
pos: -37.5,17.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 5897
components:
@@ -29075,7 +29079,7 @@ entities:
pos: -18.5,-1.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 5899
components:
@@ -29083,7 +29087,7 @@ entities:
pos: -21.5,-1.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 5900
components:
@@ -29091,7 +29095,7 @@ entities:
pos: -37.5,18.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 5902
components:
@@ -29099,7 +29103,7 @@ entities:
pos: -20.5,6.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 6111
components:
@@ -29131,7 +29135,7 @@ entities:
pos: -41.5,-12.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 6217
components:
@@ -29147,7 +29151,7 @@ entities:
pos: -33.5,-11.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 6226
components:
@@ -29155,7 +29159,7 @@ entities:
pos: -34.5,-11.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 6227
components:
@@ -29163,7 +29167,7 @@ entities:
pos: -35.5,-11.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 6236
components:
@@ -29171,7 +29175,7 @@ entities:
pos: -36.5,-14.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 6237
components:
@@ -29179,7 +29183,7 @@ entities:
pos: -36.5,-13.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 6240
components:
@@ -29187,7 +29191,7 @@ entities:
pos: -32.5,-12.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 6241
components:
@@ -29195,7 +29199,7 @@ entities:
pos: -32.5,-13.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 6247
components:
@@ -29203,7 +29207,7 @@ entities:
pos: -30.5,-7.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 6248
components:
@@ -29211,7 +29215,7 @@ entities:
pos: -31.5,-7.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 6249
components:
@@ -29219,7 +29223,7 @@ entities:
pos: -32.5,-8.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 6250
components:
@@ -29227,28 +29231,28 @@ entities:
pos: -33.5,-9.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 6252
components:
- pos: -34.5,-10.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 6253
components:
- pos: -34.5,-11.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 6254
components:
- pos: -34.5,-12.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 6257
components:
@@ -29256,7 +29260,7 @@ entities:
pos: -36.5,-13.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 6361
components:
@@ -29271,35 +29275,35 @@ entities:
- pos: -29.5,12.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 6371
components:
- pos: -29.5,13.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 6372
components:
- pos: -29.5,14.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 6373
components:
- pos: -29.5,15.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 6380
components:
- pos: -30.5,13.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 6381
components:
@@ -29307,7 +29311,7 @@ entities:
pos: -30.5,16.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 6383
components:
@@ -29315,7 +29319,7 @@ entities:
pos: -32.5,16.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 6384
components:
@@ -29323,7 +29327,7 @@ entities:
pos: -33.5,16.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 6385
components:
@@ -29331,7 +29335,7 @@ entities:
pos: -34.5,16.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 6387
components:
@@ -29339,7 +29343,7 @@ entities:
pos: -35.5,16.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 6388
components:
@@ -29347,7 +29351,7 @@ entities:
pos: -36.5,16.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 6390
components:
@@ -29355,7 +29359,7 @@ entities:
pos: -38.5,16.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 6405
components:
@@ -29363,7 +29367,7 @@ entities:
pos: -31.5,14.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 6406
components:
@@ -29371,14 +29375,14 @@ entities:
pos: -31.5,15.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 6407
components:
- pos: -28.5,11.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 6409
components:
@@ -29386,7 +29390,7 @@ entities:
pos: -29.5,12.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 6410
components:
@@ -29394,7 +29398,7 @@ entities:
pos: -31.5,14.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 6414
components:
@@ -29402,7 +29406,7 @@ entities:
pos: -33.5,13.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 6415
components:
@@ -29410,7 +29414,7 @@ entities:
pos: -34.5,13.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 6418
components:
@@ -29418,14 +29422,14 @@ entities:
pos: -33.5,16.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 6425
components:
- pos: -35.5,14.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 6426
components:
@@ -29433,7 +29437,7 @@ entities:
pos: -36.5,15.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 6427
components:
@@ -29441,7 +29445,7 @@ entities:
pos: -37.5,15.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 6429
components:
@@ -29449,21 +29453,21 @@ entities:
pos: -39.5,15.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 6431
components:
- pos: -40.5,16.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 6432
components:
- pos: -40.5,17.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 6661
components:
@@ -29471,7 +29475,7 @@ entities:
pos: -32.5,8.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 6662
components:
@@ -29479,7 +29483,7 @@ entities:
pos: -32.5,6.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 6881
components:
@@ -29523,7 +29527,7 @@ entities:
pos: -36.5,3.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 6917
components:
@@ -29531,7 +29535,7 @@ entities:
pos: -29.5,2.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 6918
components:
@@ -29539,7 +29543,7 @@ entities:
pos: -30.5,2.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 6919
components:
@@ -29547,7 +29551,7 @@ entities:
pos: -31.5,2.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 6921
components:
@@ -29555,7 +29559,7 @@ entities:
pos: -33.5,2.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 6922
components:
@@ -29563,7 +29567,7 @@ entities:
pos: -34.5,2.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 6923
components:
@@ -29571,7 +29575,7 @@ entities:
pos: -35.5,2.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 6924
components:
@@ -29579,7 +29583,7 @@ entities:
pos: -36.5,2.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 6925
components:
@@ -29587,7 +29591,7 @@ entities:
pos: -38.5,4.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 6926
components:
@@ -29595,7 +29599,7 @@ entities:
pos: -37.5,2.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 6927
components:
@@ -29603,7 +29607,7 @@ entities:
pos: -39.5,2.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 6929
components:
@@ -29611,7 +29615,7 @@ entities:
pos: -36.5,5.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 6931
components:
@@ -29619,7 +29623,7 @@ entities:
pos: -36.5,6.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 6932
components:
@@ -29627,7 +29631,7 @@ entities:
pos: -36.5,2.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 6933
components:
@@ -29635,7 +29639,7 @@ entities:
pos: -36.5,7.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 6934
components:
@@ -29643,7 +29647,7 @@ entities:
pos: -36.5,8.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 6940
components:
@@ -29651,7 +29655,7 @@ entities:
pos: -20.5,-6.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 6945
components:
@@ -29659,7 +29663,7 @@ entities:
pos: -30.5,0.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 6946
components:
@@ -29667,7 +29671,7 @@ entities:
pos: -31.5,0.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 6947
components:
@@ -29675,7 +29679,7 @@ entities:
pos: -32.5,0.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 6948
components:
@@ -29683,7 +29687,7 @@ entities:
pos: -33.5,0.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 6949
components:
@@ -29691,7 +29695,7 @@ entities:
pos: -34.5,0.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 6950
components:
@@ -29699,7 +29703,7 @@ entities:
pos: -35.5,0.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 6952
components:
@@ -29707,7 +29711,7 @@ entities:
pos: -37.5,0.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 6953
components:
@@ -29715,7 +29719,7 @@ entities:
pos: -38.5,3.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 6954
components:
@@ -29723,15 +29727,7 @@ entities:
pos: -39.5,0.5
parent: 30
type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
- - uid: 6959
- components:
- - rot: -1.5707963267948966 rad
- pos: -42.5,5.5
- parent: 30
- type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 6963
components:
@@ -29787,7 +29783,7 @@ entities:
pos: -32.5,4.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 7032
components:
@@ -29795,7 +29791,7 @@ entities:
pos: -32.5,5.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 7052
components:
@@ -29803,7 +29799,7 @@ entities:
pos: -36.5,1.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 7065
components:
@@ -29811,14 +29807,14 @@ entities:
pos: -18.5,-4.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 7093
components:
- pos: -22.5,5.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 7099
components:
@@ -29826,22 +29822,40 @@ entities:
pos: -32.5,3.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
+ - uid: 7111
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -42.5,1.5
+ parent: 30
+ type: Transform
+ - uid: 7117
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -41.5,2.5
+ parent: 30
+ type: Transform
+ - uid: 7125
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -42.5,3.5
+ parent: 30
+ type: Transform
- uid: 7135
components:
- rot: -1.5707963267948966 rad
pos: -13.5,10.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 7181
components:
- pos: -24.5,-4.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 7189
components:
@@ -29849,7 +29863,7 @@ entities:
pos: -26.5,2.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 7259
components:
@@ -29857,7 +29871,7 @@ entities:
pos: -36.5,4.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 7280
components:
@@ -29865,7 +29879,7 @@ entities:
pos: -32.5,7.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 7283
components:
@@ -29873,7 +29887,7 @@ entities:
pos: 0.5,13.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 7293
components:
@@ -29881,7 +29895,7 @@ entities:
pos: -19.5,-1.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 7297
components:
@@ -29889,7 +29903,7 @@ entities:
pos: -22.5,-1.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 7298
components:
@@ -29897,7 +29911,7 @@ entities:
pos: -18.5,6.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 7299
components:
@@ -29905,7 +29919,7 @@ entities:
pos: -21.5,6.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 7300
components:
@@ -29913,7 +29927,7 @@ entities:
pos: -18.5,-2.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 7301
components:
@@ -29921,7 +29935,7 @@ entities:
pos: -20.5,-2.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 7313
components:
@@ -29929,7 +29943,7 @@ entities:
pos: -16.5,-2.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 7314
components:
@@ -29937,7 +29951,7 @@ entities:
pos: -15.5,0.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 7329
components:
@@ -29945,7 +29959,7 @@ entities:
pos: -0.5,13.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 7332
components:
@@ -29953,7 +29967,7 @@ entities:
pos: -2.5,13.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 7348
components:
@@ -29961,7 +29975,7 @@ entities:
pos: -0.5,-19.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 7350
components:
@@ -29969,7 +29983,7 @@ entities:
pos: 0.5,-19.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 7352
components:
@@ -29979,6 +29993,12 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
+ - uid: 7353
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -41.5,0.5
+ parent: 30
+ type: Transform
- uid: 7354
components:
- rot: 1.5707963267948966 rad
@@ -30009,7 +30029,7 @@ entities:
pos: 13.5,10.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 7407
components:
@@ -30017,7 +30037,7 @@ entities:
pos: -22.5,6.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 7479
components:
@@ -30025,7 +30045,7 @@ entities:
pos: -37.5,-13.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 7480
components:
@@ -30033,7 +30053,7 @@ entities:
pos: -38.5,-13.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 7481
components:
@@ -30041,7 +30061,7 @@ entities:
pos: -39.5,-13.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 7482
components:
@@ -30049,7 +30069,7 @@ entities:
pos: -42.5,-13.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 7483
components:
@@ -30057,7 +30077,7 @@ entities:
pos: -43.5,-13.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 7486
components:
@@ -30065,7 +30085,7 @@ entities:
pos: -41.5,-14.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 7487
components:
@@ -30073,7 +30093,7 @@ entities:
pos: -40.5,-12.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 7488
components:
@@ -30081,7 +30101,7 @@ entities:
pos: -44.5,-12.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 7493
components:
@@ -30089,7 +30109,7 @@ entities:
pos: -37.5,-12.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 7495
components:
@@ -30097,21 +30117,21 @@ entities:
pos: -40.5,-12.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 7496
components:
- pos: -39.5,-13.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 7497
components:
- pos: -39.5,-14.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 7543
components:
@@ -30119,7 +30139,7 @@ entities:
pos: -20.5,-18.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 7544
components:
@@ -30127,7 +30147,7 @@ entities:
pos: -19.5,-18.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 7545
components:
@@ -30153,6 +30173,12 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
+ - uid: 7551
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -42.5,1.5
+ parent: 30
+ type: Transform
- uid: 7554
components:
- rot: 3.141592653589793 rad
@@ -30169,13 +30195,19 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
+ - uid: 7574
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -42.5,3.5
+ parent: 30
+ type: Transform
- uid: 7613
components:
- rot: 3.141592653589793 rad
pos: -31.5,-9.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 7614
components:
@@ -30183,7 +30215,7 @@ entities:
pos: -31.5,-10.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 7616
components:
@@ -30191,7 +30223,7 @@ entities:
pos: -26.5,-11.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- proto: GasPipeTJunction
entities:
@@ -30201,7 +30233,7 @@ entities:
pos: 32.5,6.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 394
components:
@@ -30209,7 +30241,7 @@ entities:
pos: 29.5,3.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 399
components:
@@ -30217,7 +30249,7 @@ entities:
pos: 23.5,1.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 400
components:
@@ -30225,7 +30257,7 @@ entities:
pos: 23.5,3.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 403
components:
@@ -30233,21 +30265,21 @@ entities:
pos: 22.5,1.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 408
components:
- pos: 24.5,3.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 414
components:
- pos: 29.5,1.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 424
components:
@@ -30255,14 +30287,14 @@ entities:
pos: 32.5,0.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 426
components:
- pos: 31.5,7.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 433
components:
@@ -30270,7 +30302,7 @@ entities:
pos: 31.5,4.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 435
components:
@@ -30278,7 +30310,7 @@ entities:
pos: 32.5,-2.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 440
components:
@@ -30286,7 +30318,7 @@ entities:
pos: 31.5,-3.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 772
components:
@@ -30294,7 +30326,7 @@ entities:
pos: 2.5,3.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 784
components:
@@ -30302,7 +30334,7 @@ entities:
pos: 15.5,1.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 786
components:
@@ -30310,14 +30342,14 @@ entities:
pos: 13.5,1.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 797
components:
- pos: 0.5,3.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 809
components:
@@ -30325,7 +30357,7 @@ entities:
pos: 14.5,5.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 814
components:
@@ -30333,7 +30365,7 @@ entities:
pos: 15.5,7.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 859
components:
@@ -30341,7 +30373,7 @@ entities:
pos: -1.5,9.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 904
components:
@@ -30349,14 +30381,14 @@ entities:
pos: 5.5,10.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 905
components:
- pos: 8.5,10.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 907
components:
@@ -30364,14 +30396,14 @@ entities:
pos: 14.5,10.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 936
components:
- pos: 11.5,10.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 1106
components:
@@ -30379,7 +30411,7 @@ entities:
pos: 18.5,5.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 1116
components:
@@ -30387,7 +30419,7 @@ entities:
pos: 19.5,13.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 1117
components:
@@ -30395,7 +30427,7 @@ entities:
pos: 19.5,14.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 1126
components:
@@ -30403,7 +30435,7 @@ entities:
pos: 19.5,7.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 1132
components:
@@ -30411,7 +30443,7 @@ entities:
pos: 18.5,15.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 1133
components:
@@ -30419,7 +30451,7 @@ entities:
pos: 18.5,16.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 1153
components:
@@ -30427,7 +30459,7 @@ entities:
pos: 19.5,22.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 1382
components:
@@ -30435,7 +30467,7 @@ entities:
pos: -1.5,2.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 1384
components:
@@ -30443,7 +30475,7 @@ entities:
pos: -3.5,2.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 1428
components:
@@ -30451,14 +30483,14 @@ entities:
pos: 7.5,10.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 1438
components:
- pos: 9.5,9.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 1440
components:
@@ -30466,7 +30498,7 @@ entities:
pos: 10.5,11.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 1447
components:
@@ -30474,7 +30506,7 @@ entities:
pos: 6.5,10.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2083
components:
@@ -30482,14 +30514,14 @@ entities:
pos: 15.5,9.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2141
components:
- pos: 12.5,9.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2331
components:
@@ -30497,7 +30529,7 @@ entities:
pos: 13.5,-7.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2369
components:
@@ -30505,7 +30537,7 @@ entities:
pos: -25.5,-11.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2370
components:
@@ -30513,7 +30545,54 @@ entities:
pos: -26.5,-10.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
+ type: AtmosPipeColor
+ - uid: 2384
+ components:
+ - pos: 4.5,-1.5
+ parent: 30
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 2387
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 5.5,-5.5
+ parent: 30
+ type: Transform
+ - color: '#FF1212FF'
+ type: AtmosPipeColor
+ - uid: 2389
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 6.5,-8.5
+ parent: 30
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 2390
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 4.5,-4.5
+ parent: 30
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 2406
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 6.5,-1.5
+ parent: 30
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 2449
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 3.5,-7.5
+ parent: 30
+ type: Transform
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2480
components:
@@ -30521,7 +30600,7 @@ entities:
pos: 13.5,-6.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2482
components:
@@ -30529,13 +30608,20 @@ entities:
pos: 11.5,-8.5
parent: 30
type: Transform
+ - uid: 2494
+ components:
+ - pos: 13.5,-2.5
+ parent: 30
+ type: Transform
+ - color: '#FF1212FF'
+ type: AtmosPipeColor
- uid: 2520
components:
- rot: -1.5707963267948966 rad
pos: 19.5,-3.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2534
components:
@@ -30543,7 +30629,7 @@ entities:
pos: 19.5,-4.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2535
components:
@@ -30551,7 +30637,7 @@ entities:
pos: 18.5,-0.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2569
components:
@@ -30559,7 +30645,7 @@ entities:
pos: 0.5,2.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2570
components:
@@ -30567,21 +30653,21 @@ entities:
pos: 1.5,-1.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2572
components:
- pos: 11.5,-1.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2581
components:
- pos: 1.5,-2.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2600
components:
@@ -30589,7 +30675,7 @@ entities:
pos: 0.5,-1.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2601
components:
@@ -30597,7 +30683,7 @@ entities:
pos: 2.5,-2.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2617
components:
@@ -30617,7 +30703,7 @@ entities:
pos: 5.5,-7.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2628
components:
@@ -30625,22 +30711,14 @@ entities:
pos: 5.5,-12.5
parent: 30
type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
- - uid: 2633
- components:
- - rot: 1.5707963267948966 rad
- pos: 6.5,-7.5
- parent: 30
- type: Transform
- - color: '#0055CCFF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2642
components:
- pos: 4.5,-11.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2653
components:
@@ -30648,7 +30726,7 @@ entities:
pos: 1.5,-11.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2655
components:
@@ -30656,21 +30734,21 @@ entities:
pos: 0.5,-12.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2661
components:
- pos: 1.5,-7.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2662
components:
- pos: 0.5,-8.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2664
components:
@@ -30678,7 +30756,15 @@ entities:
pos: 0.5,-7.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 2739
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 12.5,-2.5
+ parent: 30
+ type: Transform
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2973
components:
@@ -30686,7 +30772,7 @@ entities:
pos: 18.5,-10.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2978
components:
@@ -30694,7 +30780,7 @@ entities:
pos: 19.5,-15.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2981
components:
@@ -30702,7 +30788,7 @@ entities:
pos: 19.5,-17.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2989
components:
@@ -30710,14 +30796,14 @@ entities:
pos: 18.5,-11.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 3355
components:
- pos: 9.5,-7.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3511
components:
@@ -30741,7 +30827,7 @@ entities:
pos: 10.5,9.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 3783
components:
@@ -30749,7 +30835,7 @@ entities:
pos: -7.5,11.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3784
components:
@@ -30757,14 +30843,14 @@ entities:
pos: -9.5,11.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3788
components:
- pos: -10.5,10.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 3801
components:
@@ -30772,7 +30858,7 @@ entities:
pos: -6.5,10.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 3802
components:
@@ -30780,21 +30866,21 @@ entities:
pos: -11.5,10.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 3807
components:
- pos: -8.5,11.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3825
components:
- pos: -6.5,-6.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3833
components:
@@ -30802,7 +30888,7 @@ entities:
pos: -8.5,-6.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3904
components:
@@ -30810,7 +30896,7 @@ entities:
pos: -23.5,-1.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3906
components:
@@ -30818,14 +30904,14 @@ entities:
pos: -19.5,-2.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 3994
components:
- pos: 1.5,-19.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3996
components:
@@ -30840,7 +30926,7 @@ entities:
- pos: -21.5,-18.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4221
components:
@@ -30848,7 +30934,7 @@ entities:
pos: -24.5,6.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4225
components:
@@ -30856,7 +30942,7 @@ entities:
pos: -24.5,2.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4227
components:
@@ -30864,7 +30950,7 @@ entities:
pos: -24.5,-1.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4231
components:
@@ -30872,7 +30958,7 @@ entities:
pos: -22.5,7.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4359
components:
@@ -30909,14 +30995,14 @@ entities:
pos: -24.5,-5.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4749
components:
- pos: -18.5,-5.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4750
components:
@@ -30924,7 +31010,7 @@ entities:
pos: -29.5,11.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4752
components:
@@ -30932,28 +31018,28 @@ entities:
pos: -22.5,-6.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4755
components:
- pos: -19.5,11.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4756
components:
- pos: -25.5,-5.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4766
components:
- pos: -23.5,-12.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4779
components:
@@ -30968,14 +31054,14 @@ entities:
pos: -28.5,10.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4805
components:
- pos: -24.5,11.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4806
components:
@@ -30983,7 +31069,7 @@ entities:
pos: -15.5,10.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4807
components:
@@ -30991,14 +31077,14 @@ entities:
pos: -29.5,1.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4813
components:
- pos: -22.5,10.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4815
components:
@@ -31006,7 +31092,7 @@ entities:
pos: -26.5,11.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4820
components:
@@ -31014,7 +31100,7 @@ entities:
pos: -29.5,-6.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4827
components:
@@ -31022,7 +31108,7 @@ entities:
pos: -29.5,0.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4840
components:
@@ -31030,14 +31116,14 @@ entities:
pos: -25.5,10.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4855
components:
- pos: -26.5,-6.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4868
components:
@@ -31045,7 +31131,7 @@ entities:
pos: -15.5,-6.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4881
components:
@@ -31053,14 +31139,14 @@ entities:
pos: -21.5,-13.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4885
components:
- pos: -24.5,-13.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4892
components:
@@ -31068,7 +31154,15 @@ entities:
pos: -22.5,-18.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 5186
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 5.5,-9.5
+ parent: 30
+ type: Transform
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 5265
components:
@@ -31076,21 +31170,21 @@ entities:
pos: -27.5,2.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 5453
components:
- pos: -37.5,19.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 5746
components:
- pos: -25.5,15.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 5749
components:
@@ -31098,7 +31192,7 @@ entities:
pos: -21.5,18.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 5753
components:
@@ -31106,7 +31200,7 @@ entities:
pos: -19.5,16.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 5755
components:
@@ -31114,7 +31208,7 @@ entities:
pos: -22.5,16.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 5756
components:
@@ -31122,7 +31216,7 @@ entities:
pos: -26.5,16.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 5757
components:
@@ -31130,7 +31224,7 @@ entities:
pos: -17.5,18.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 5759
components:
@@ -31138,7 +31232,7 @@ entities:
pos: -23.5,16.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 5773
components:
@@ -31146,7 +31240,7 @@ entities:
pos: -21.5,15.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 5777
components:
@@ -31154,7 +31248,7 @@ entities:
pos: -16.5,10.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 6050
components:
@@ -31162,7 +31256,7 @@ entities:
pos: -36.5,-11.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 6068
components:
@@ -31170,7 +31264,7 @@ entities:
pos: -36.5,-12.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 6118
components:
@@ -31178,7 +31272,7 @@ entities:
pos: -36.5,0.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 6141
components:
@@ -31186,21 +31280,21 @@ entities:
pos: -38.5,-12.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 6198
components:
- pos: -41.5,16.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 6245
components:
- pos: -32.5,-7.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 6256
components:
@@ -31208,7 +31302,7 @@ entities:
pos: -35.5,-13.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 6386
components:
@@ -31216,7 +31310,7 @@ entities:
pos: -37.5,16.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 6411
components:
@@ -31224,7 +31318,7 @@ entities:
pos: -32.5,14.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 6428
components:
@@ -31232,7 +31326,7 @@ entities:
pos: -38.5,15.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 6920
components:
@@ -31240,14 +31334,14 @@ entities:
pos: -38.5,2.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 6951
components:
- pos: -38.5,0.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 7063
components:
@@ -31255,7 +31349,7 @@ entities:
pos: -32.5,2.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 7098
components:
@@ -31263,7 +31357,7 @@ entities:
pos: -22.5,-2.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 7312
components:
@@ -31271,7 +31365,7 @@ entities:
pos: -15.5,-2.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 7331
components:
@@ -31279,21 +31373,21 @@ entities:
pos: -3.5,12.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 7409
components:
- pos: -23.5,6.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 7484
components:
- pos: -41.5,-13.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 7485
components:
@@ -31301,14 +31395,14 @@ entities:
pos: -40.5,-13.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 7494
components:
- pos: -39.5,-12.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 7615
components:
@@ -31316,7 +31410,7 @@ entities:
pos: -28.5,-5.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- proto: GasPort
entities:
@@ -31340,7 +31434,7 @@ entities:
pos: 10.5,-7.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4682
components:
@@ -31373,7 +31467,7 @@ entities:
- pos: -21.5,-19.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 5831
components:
@@ -31381,7 +31475,7 @@ entities:
pos: -16.5,6.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 6364
components:
@@ -31427,7 +31521,7 @@ entities:
- ShutdownSubscribers:
- 1995
type: DeviceNetwork
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 383
components:
@@ -31438,7 +31532,7 @@ entities:
- ShutdownSubscribers:
- 5433
type: DeviceNetwork
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 384
components:
@@ -31448,7 +31542,7 @@ entities:
- ShutdownSubscribers:
- 5433
type: DeviceNetwork
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 420
components:
@@ -31459,7 +31553,7 @@ entities:
- ShutdownSubscribers:
- 1942
type: DeviceNetwork
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 447
components:
@@ -31470,7 +31564,7 @@ entities:
- ShutdownSubscribers:
- 5436
type: DeviceNetwork
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 448
components:
@@ -31481,14 +31575,14 @@ entities:
- ShutdownSubscribers:
- 1942
type: DeviceNetwork
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 459
components:
- pos: 27.5,7.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 470
components:
@@ -31499,7 +31593,7 @@ entities:
- ShutdownSubscribers:
- 5436
type: DeviceNetwork
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 478
components:
@@ -31511,7 +31605,7 @@ entities:
- 7550
- 1995
type: DeviceNetwork
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 481
components:
@@ -31521,7 +31615,7 @@ entities:
- ShutdownSubscribers:
- 1995
type: DeviceNetwork
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 482
components:
@@ -31532,7 +31626,7 @@ entities:
- ShutdownSubscribers:
- 1942
type: DeviceNetwork
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 599
components:
@@ -31543,7 +31637,7 @@ entities:
- ShutdownSubscribers:
- 7557
type: DeviceNetwork
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 819
components:
@@ -31551,7 +31645,7 @@ entities:
pos: 15.5,5.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 1146
components:
@@ -31562,7 +31656,7 @@ entities:
- ShutdownSubscribers:
- 7598
type: DeviceNetwork
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 1148
components:
@@ -31573,7 +31667,7 @@ entities:
- ShutdownSubscribers:
- 7553
type: DeviceNetwork
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 1150
components:
@@ -31581,7 +31675,7 @@ entities:
pos: 18.5,7.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 1157
components:
@@ -31591,7 +31685,7 @@ entities:
- ShutdownSubscribers:
- 7553
type: DeviceNetwork
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 1158
components:
@@ -31602,7 +31696,7 @@ entities:
- ShutdownSubscribers:
- 7553
type: DeviceNetwork
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 1167
components:
@@ -31610,7 +31704,7 @@ entities:
pos: 12.5,21.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 1231
components:
@@ -31618,7 +31712,7 @@ entities:
pos: 1.5,13.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 1246
components:
@@ -31626,7 +31720,7 @@ entities:
pos: 25.5,21.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 1401
components:
@@ -31636,7 +31730,7 @@ entities:
- ShutdownSubscribers:
- 6561
type: DeviceNetwork
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 1402
components:
@@ -31647,7 +31741,7 @@ entities:
- ShutdownSubscribers:
- 7372
type: DeviceNetwork
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 1437
components:
@@ -31657,7 +31751,7 @@ entities:
- ShutdownSubscribers:
- 7372
type: DeviceNetwork
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 1989
components:
@@ -31665,7 +31759,7 @@ entities:
pos: -1.5,12.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2164
components:
@@ -31676,7 +31770,7 @@ entities:
- ShutdownSubscribers:
- 7372
type: DeviceNetwork
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2330
components:
@@ -31684,7 +31778,7 @@ entities:
pos: -8.5,3.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2347
components:
@@ -31694,7 +31788,7 @@ entities:
- ShutdownSubscribers:
- 5063
type: DeviceNetwork
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2475
components:
@@ -31705,7 +31799,7 @@ entities:
- ShutdownSubscribers:
- 1944
type: DeviceNetwork
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2546
components:
@@ -31713,7 +31807,7 @@ entities:
pos: 22.5,-1.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2558
components:
@@ -31721,7 +31815,7 @@ entities:
pos: 11.5,-2.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2602
components:
@@ -31731,7 +31825,7 @@ entities:
- ShutdownSubscribers:
- 5063
type: DeviceNetwork
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2604
components:
@@ -31739,7 +31833,7 @@ entities:
pos: -4.5,2.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2606
components:
@@ -31750,7 +31844,7 @@ entities:
- ShutdownSubscribers:
- 7549
type: DeviceNetwork
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2608
components:
@@ -31761,14 +31855,22 @@ entities:
- ShutdownSubscribers:
- 7549
type: DeviceNetwork
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 2614
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 7.5,-4.5
+ parent: 30
+ type: Transform
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2673
components:
- pos: -1.5,-6.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2677
components:
@@ -31779,7 +31881,7 @@ entities:
- ShutdownSubscribers:
- 1945
type: DeviceNetwork
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2684
components:
@@ -31789,7 +31891,7 @@ entities:
- ShutdownSubscribers:
- 7578
type: DeviceNetwork
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2686
components:
@@ -31800,7 +31902,7 @@ entities:
- ShutdownSubscribers:
- 1944
type: DeviceNetwork
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2717
components:
@@ -31811,18 +31913,7 @@ entities:
- ShutdownSubscribers:
- 1945
type: DeviceNetwork
- - color: '#0055CCFF'
- type: AtmosPipeColor
- - uid: 2776
- components:
- - rot: -1.5707963267948966 rad
- pos: 2.5,-7.5
- parent: 30
- type: Transform
- - ShutdownSubscribers:
- - 5063
- type: DeviceNetwork
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 2995
components:
@@ -31833,14 +31924,14 @@ entities:
- ShutdownSubscribers:
- 1943
type: DeviceNetwork
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3006
components:
- pos: 25.5,-13.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3009
components:
@@ -31852,7 +31943,7 @@ entities:
- 1943
- 7552
type: DeviceNetwork
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3011
components:
@@ -31863,7 +31954,7 @@ entities:
- ShutdownSubscribers:
- 7550
type: DeviceNetwork
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3014
components:
@@ -31871,7 +31962,7 @@ entities:
pos: 16.5,-4.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3347
components:
@@ -31882,7 +31973,7 @@ entities:
- ShutdownSubscribers:
- 7552
type: DeviceNetwork
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3690
components:
@@ -31892,7 +31983,7 @@ entities:
- ShutdownSubscribers:
- 7372
type: DeviceNetwork
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3771
components:
@@ -31903,21 +31994,21 @@ entities:
- ShutdownSubscribers:
- 7372
type: DeviceNetwork
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3816
components:
- pos: -9.5,14.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3817
components:
- pos: -7.5,14.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3851
components:
@@ -31925,7 +32016,7 @@ entities:
pos: -6.5,-9.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3854
components:
@@ -31936,14 +32027,14 @@ entities:
- ShutdownSubscribers:
- 7532
type: DeviceNetwork
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3856
components:
- pos: -8.5,-5.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 3995
components:
@@ -31951,7 +32042,7 @@ entities:
pos: 1.5,-20.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4780
components:
@@ -31959,7 +32050,7 @@ entities:
pos: -22.5,-19.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4781
components:
@@ -31970,7 +32061,7 @@ entities:
- ShutdownSubscribers:
- 7538
type: DeviceNetwork
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4782
components:
@@ -31980,7 +32071,7 @@ entities:
- ShutdownSubscribers:
- 7538
type: DeviceNetwork
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 4783
components:
@@ -31991,7 +32082,7 @@ entities:
- ShutdownSubscribers:
- 7538
type: DeviceNetwork
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 5252
components:
@@ -32001,7 +32092,7 @@ entities:
- ShutdownSubscribers:
- 7537
type: DeviceNetwork
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 5275
components:
@@ -32011,7 +32102,7 @@ entities:
- ShutdownSubscribers:
- 7558
type: DeviceNetwork
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 5339
components:
@@ -32022,7 +32113,7 @@ entities:
- ShutdownSubscribers:
- 1943
type: DeviceNetwork
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 5446
components:
@@ -32030,7 +32121,7 @@ entities:
pos: -38.5,19.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 5448
components:
@@ -32040,7 +32131,7 @@ entities:
- ShutdownSubscribers:
- 1950
type: DeviceNetwork
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 5532
components:
@@ -32050,7 +32141,7 @@ entities:
- ShutdownSubscribers:
- 1950
type: DeviceNetwork
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 5745
components:
@@ -32061,21 +32152,21 @@ entities:
- ShutdownSubscribers:
- 7532
type: DeviceNetwork
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 5781
components:
- pos: -22.5,17.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 5782
components:
- pos: -17.5,17.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 5794
components:
@@ -32086,7 +32177,7 @@ entities:
- ShutdownSubscribers:
- 1950
type: DeviceNetwork
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 5840
components:
@@ -32096,7 +32187,7 @@ entities:
- ShutdownSubscribers:
- 7372
type: DeviceNetwork
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 5896
components:
@@ -32107,7 +32198,7 @@ entities:
- ShutdownSubscribers:
- 7573
type: DeviceNetwork
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 5995
components:
@@ -32115,7 +32206,7 @@ entities:
pos: -34.5,19.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 6121
components:
@@ -32125,7 +32216,7 @@ entities:
- ShutdownSubscribers:
- 1947
type: DeviceNetwork
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 6191
components:
@@ -32135,7 +32226,7 @@ entities:
- ShutdownSubscribers:
- 7560
type: DeviceNetwork
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 6233
components:
@@ -32145,7 +32236,7 @@ entities:
- ShutdownSubscribers:
- 7560
type: DeviceNetwork
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 6242
components:
@@ -32153,7 +32244,7 @@ entities:
pos: -32.5,-14.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 6243
components:
@@ -32163,7 +32254,7 @@ entities:
- ShutdownSubscribers:
- 7559
type: DeviceNetwork
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 6366
components:
@@ -32171,7 +32262,7 @@ entities:
pos: -42.5,16.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 6403
components:
@@ -32181,7 +32272,7 @@ entities:
- ShutdownSubscribers:
- 7536
type: DeviceNetwork
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 6404
components:
@@ -32192,7 +32283,7 @@ entities:
- ShutdownSubscribers:
- 7536
type: DeviceNetwork
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 6719
components:
@@ -32203,7 +32294,7 @@ entities:
- ShutdownSubscribers:
- 1948
type: DeviceNetwork
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 7289
components:
@@ -32213,7 +32304,7 @@ entities:
- ShutdownSubscribers:
- 7573
type: DeviceNetwork
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 7319
components:
@@ -32224,7 +32315,7 @@ entities:
- ShutdownSubscribers:
- 7561
type: DeviceNetwork
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 7363
components:
@@ -32232,7 +32323,7 @@ entities:
pos: -1.5,-20.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 7499
components:
@@ -32242,7 +32333,7 @@ entities:
- ShutdownSubscribers:
- 7560
type: DeviceNetwork
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 7500
components:
@@ -32253,7 +32344,7 @@ entities:
- ShutdownSubscribers:
- 7560
type: DeviceNetwork
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 7540
components:
@@ -32261,7 +32352,7 @@ entities:
pos: -18.5,-18.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 7618
components:
@@ -32269,7 +32360,7 @@ entities:
pos: -27.5,-11.5
parent: 30
type: Transform
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- proto: GasVentScrubber
entities:
@@ -32282,7 +32373,7 @@ entities:
- ShutdownSubscribers:
- 5433
type: DeviceNetwork
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 381
components:
@@ -32292,7 +32383,7 @@ entities:
- ShutdownSubscribers:
- 1995
type: DeviceNetwork
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 385
components:
@@ -32303,7 +32394,7 @@ entities:
- ShutdownSubscribers:
- 5433
type: DeviceNetwork
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 421
components:
@@ -32314,7 +32405,7 @@ entities:
- ShutdownSubscribers:
- 1942
type: DeviceNetwork
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 450
components:
@@ -32325,14 +32416,14 @@ entities:
- ShutdownSubscribers:
- 5436
type: DeviceNetwork
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 460
components:
- pos: 28.5,7.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 469
components:
@@ -32343,7 +32434,7 @@ entities:
- ShutdownSubscribers:
- 1942
type: DeviceNetwork
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 471
components:
@@ -32354,7 +32445,7 @@ entities:
- ShutdownSubscribers:
- 5436
type: DeviceNetwork
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 479
components:
@@ -32365,7 +32456,7 @@ entities:
- 7550
- 1995
type: DeviceNetwork
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 480
components:
@@ -32376,7 +32467,7 @@ entities:
- ShutdownSubscribers:
- 1995
type: DeviceNetwork
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 483
components:
@@ -32387,7 +32478,7 @@ entities:
- ShutdownSubscribers:
- 1942
type: DeviceNetwork
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 820
components:
@@ -32395,14 +32486,14 @@ entities:
pos: 14.5,7.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 845
components:
- pos: -1.5,10.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 929
components:
@@ -32412,7 +32503,7 @@ entities:
- ShutdownSubscribers:
- 6648
type: DeviceNetwork
- - color: '#0055CCFF'
+ - color: '#0335FCFF'
type: AtmosPipeColor
- uid: 1147
components:
@@ -32423,7 +32514,7 @@ entities:
- ShutdownSubscribers:
- 7598
type: DeviceNetwork
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 1149
components:
@@ -32434,7 +32525,7 @@ entities:
- ShutdownSubscribers:
- 7553
type: DeviceNetwork
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 1151
components:
@@ -32442,7 +32533,7 @@ entities:
pos: 19.5,5.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 1152
components:
@@ -32452,7 +32543,7 @@ entities:
- ShutdownSubscribers:
- 7553
type: DeviceNetwork
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 1415
components:
@@ -32463,7 +32554,7 @@ entities:
- ShutdownSubscribers:
- 7372
type: DeviceNetwork
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 1421
components:
@@ -32473,7 +32564,7 @@ entities:
- ShutdownSubscribers:
- 6561
type: DeviceNetwork
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2085
components:
@@ -32481,7 +32572,7 @@ entities:
pos: 9.5,11.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2127
components:
@@ -32492,7 +32583,7 @@ entities:
- ShutdownSubscribers:
- 7372
type: DeviceNetwork
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2131
components:
@@ -32503,7 +32594,7 @@ entities:
- ShutdownSubscribers:
- 7372
type: DeviceNetwork
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2148
components:
@@ -32513,7 +32604,7 @@ entities:
- ShutdownSubscribers:
- 7372
type: DeviceNetwork
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2332
components:
@@ -32521,7 +32612,7 @@ entities:
pos: -8.5,1.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2545
components:
@@ -32529,7 +32620,7 @@ entities:
pos: 22.5,-2.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2603
components:
@@ -32540,7 +32631,7 @@ entities:
- ShutdownSubscribers:
- 5063
type: DeviceNetwork
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2605
components:
@@ -32548,7 +32639,7 @@ entities:
pos: -2.5,2.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2607
components:
@@ -32558,7 +32649,7 @@ entities:
- ShutdownSubscribers:
- 7549
type: DeviceNetwork
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2609
components:
@@ -32568,25 +32659,14 @@ entities:
- ShutdownSubscribers:
- 7549
type: DeviceNetwork
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2671
components:
- pos: -2.5,-7.5
parent: 30
type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
- - uid: 2672
- components:
- - rot: -1.5707963267948966 rad
- pos: 2.5,-8.5
- parent: 30
- type: Transform
- - ShutdownSubscribers:
- - 5063
- type: DeviceNetwork
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2676
components:
@@ -32597,7 +32677,7 @@ entities:
- ShutdownSubscribers:
- 1945
type: DeviceNetwork
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2680
components:
@@ -32608,14 +32688,14 @@ entities:
- ShutdownSubscribers:
- 5063
type: DeviceNetwork
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2682
components:
- pos: 12.5,-1.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2685
components:
@@ -32625,7 +32705,7 @@ entities:
- ShutdownSubscribers:
- 7578
type: DeviceNetwork
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2687
components:
@@ -32636,7 +32716,7 @@ entities:
- ShutdownSubscribers:
- 1944
type: DeviceNetwork
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2689
components:
@@ -32647,14 +32727,14 @@ entities:
- ShutdownSubscribers:
- 1945
type: DeviceNetwork
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2718
components:
- pos: 3.5,-11.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2988
components:
@@ -32666,7 +32746,7 @@ entities:
- 1943
- 7552
type: DeviceNetwork
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 2994
components:
@@ -32677,7 +32757,7 @@ entities:
- ShutdownSubscribers:
- 1943
type: DeviceNetwork
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 3010
components:
@@ -32688,7 +32768,15 @@ entities:
- ShutdownSubscribers:
- 7550
type: DeviceNetwork
- - color: '#990000FF'
+ - color: '#FF1212FF'
+ type: AtmosPipeColor
+ - uid: 3310
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 7.5,-5.5
+ parent: 30
+ type: Transform
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 3348
components:
@@ -32699,7 +32787,7 @@ entities:
- ShutdownSubscribers:
- 7552
type: DeviceNetwork
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 3814
components:
@@ -32709,14 +32797,14 @@ entities:
- ShutdownSubscribers:
- 7532
type: DeviceNetwork
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 3815
components:
- pos: -6.5,14.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 3852
components:
@@ -32724,7 +32812,7 @@ entities:
pos: -10.5,-9.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 3853
components:
@@ -32735,14 +32823,14 @@ entities:
- ShutdownSubscribers:
- 7532
type: DeviceNetwork
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 3855
components:
- pos: -10.5,-4.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 3889
components:
@@ -32752,7 +32840,7 @@ entities:
- ShutdownSubscribers:
- 7573
type: DeviceNetwork
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4198
components:
@@ -32763,7 +32851,7 @@ entities:
- ShutdownSubscribers:
- 7537
type: DeviceNetwork
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4848
components:
@@ -32773,7 +32861,7 @@ entities:
- ShutdownSubscribers:
- 7532
type: DeviceNetwork
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4877
components:
@@ -32784,7 +32872,7 @@ entities:
- ShutdownSubscribers:
- 7538
type: DeviceNetwork
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4889
components:
@@ -32795,7 +32883,7 @@ entities:
- ShutdownSubscribers:
- 7538
type: DeviceNetwork
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4890
components:
@@ -32805,7 +32893,7 @@ entities:
- ShutdownSubscribers:
- 7538
type: DeviceNetwork
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 4897
components:
@@ -32824,7 +32912,7 @@ entities:
- ShutdownSubscribers:
- 7558
type: DeviceNetwork
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 5456
components:
@@ -32835,7 +32923,7 @@ entities:
- ShutdownSubscribers:
- 1944
type: DeviceNetwork
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 5780
components:
@@ -32846,7 +32934,7 @@ entities:
- ShutdownSubscribers:
- 1950
type: DeviceNetwork
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 5783
components:
@@ -32857,7 +32945,7 @@ entities:
- ShutdownSubscribers:
- 1950
type: DeviceNetwork
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 5784
components:
@@ -32867,7 +32955,7 @@ entities:
- ShutdownSubscribers:
- 1950
type: DeviceNetwork
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 5795
components:
@@ -32878,7 +32966,7 @@ entities:
- ShutdownSubscribers:
- 1950
type: DeviceNetwork
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 5914
components:
@@ -32889,7 +32977,7 @@ entities:
- ShutdownSubscribers:
- 1947
type: DeviceNetwork
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 6266
components:
@@ -32899,7 +32987,7 @@ entities:
- ShutdownSubscribers:
- 7560
type: DeviceNetwork
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 6267
components:
@@ -32910,7 +32998,7 @@ entities:
- ShutdownSubscribers:
- 7559
type: DeviceNetwork
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 6419
components:
@@ -32920,28 +33008,28 @@ entities:
- ShutdownSubscribers:
- 7536
type: DeviceNetwork
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 6433
components:
- pos: -40.5,18.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 6434
components:
- pos: -38.5,16.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 7056
components:
- pos: -36.5,9.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 7318
components:
@@ -32952,7 +33040,7 @@ entities:
- ShutdownSubscribers:
- 7573
type: DeviceNetwork
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 7333
components:
@@ -32960,7 +33048,7 @@ entities:
pos: 1.5,9.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 7349
components:
@@ -32985,14 +33073,14 @@ entities:
- ShutdownSubscribers:
- 7561
type: DeviceNetwork
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 7412
components:
- pos: -15.5,5.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 7490
components:
@@ -33002,7 +33090,7 @@ entities:
- ShutdownSubscribers:
- 7560
type: DeviceNetwork
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 7491
components:
@@ -33012,7 +33100,7 @@ entities:
- ShutdownSubscribers:
- 7560
type: DeviceNetwork
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 7492
components:
@@ -33023,7 +33111,7 @@ entities:
- ShutdownSubscribers:
- 7560
type: DeviceNetwork
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 7541
components:
@@ -33056,7 +33144,7 @@ entities:
pos: -27.5,-10.5
parent: 30
type: Transform
- - color: '#990000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- proto: GeneratorRTG
entities:
@@ -33236,11 +33324,6 @@ entities:
- pos: 37.5,7.5
parent: 30
type: Transform
- - uid: 276
- components:
- - pos: 10.5,-1.5
- parent: 30
- type: Transform
- uid: 315
components:
- rot: 3.141592653589793 rad
@@ -33311,6 +33394,11 @@ entities:
- pos: 20.5,3.5
parent: 30
type: Transform
+ - uid: 347
+ components:
+ - pos: 10.5,-1.5
+ parent: 30
+ type: Transform
- uid: 354
components:
- rot: 1.5707963267948966 rad
@@ -33348,6 +33436,11 @@ entities:
pos: 14.5,26.5
parent: 30
type: Transform
+ - uid: 596
+ components:
+ - pos: 6.5,-4.5
+ parent: 30
+ type: Transform
- uid: 617
components:
- rot: -1.5707963267948966 rad
@@ -33581,6 +33674,11 @@ entities:
- pos: -3.5,8.5
parent: 30
type: Transform
+ - uid: 1566
+ components:
+ - pos: 10.5,-4.5
+ parent: 30
+ type: Transform
- uid: 1636
components:
- pos: 13.5,12.5
@@ -33648,6 +33746,16 @@ entities:
- pos: 10.5,12.5
parent: 30
type: Transform
+ - uid: 2266
+ components:
+ - pos: 5.5,0.5
+ parent: 30
+ type: Transform
+ - uid: 2267
+ components:
+ - pos: 7.5,0.5
+ parent: 30
+ type: Transform
- uid: 2302
components:
- pos: -4.5,-2.5
@@ -33740,12 +33848,7 @@ entities:
type: Transform
- uid: 2386
components:
- - pos: 14.5,-2.5
- parent: 30
- type: Transform
- - uid: 2387
- components:
- - pos: 14.5,-0.5
+ - pos: 13.5,-3.5
parent: 30
type: Transform
- uid: 2396
@@ -33768,11 +33871,6 @@ entities:
- pos: 3.5,-2.5
parent: 30
type: Transform
- - uid: 2489
- components:
- - pos: -0.5,-9.5
- parent: 30
- type: Transform
- uid: 2638
components:
- pos: 11.5,-3.5
@@ -33780,7 +33878,12 @@ entities:
type: Transform
- uid: 2725
components:
- - pos: 13.5,-3.5
+ - pos: 9.5,0.5
+ parent: 30
+ type: Transform
+ - uid: 2735
+ components:
+ - pos: 14.5,-1.5
parent: 30
type: Transform
- uid: 2741
@@ -34000,36 +34103,11 @@ entities:
- pos: 7.5,6.5
parent: 30
type: Transform
- - uid: 4175
- components:
- - pos: -13.5,-0.5
- parent: 30
- type: Transform
- uid: 4238
components:
- pos: 0.5,21.5
parent: 30
type: Transform
- - uid: 4354
- components:
- - pos: -18.5,-9.5
- parent: 30
- type: Transform
- - uid: 4355
- components:
- - pos: -18.5,-8.5
- parent: 30
- type: Transform
- - uid: 4356
- components:
- - pos: -19.5,-7.5
- parent: 30
- type: Transform
- - uid: 4357
- components:
- - pos: -20.5,-7.5
- parent: 30
- type: Transform
- uid: 4365
components:
- pos: -15.5,-9.5
@@ -34120,6 +34198,11 @@ entities:
- pos: -19.5,-19.5
parent: 30
type: Transform
+ - uid: 4690
+ components:
+ - pos: 10.5,-5.5
+ parent: 30
+ type: Transform
- uid: 4828
components:
- pos: -9.5,-17.5
@@ -34555,6 +34638,11 @@ entities:
- pos: -30.5,4.5
parent: 30
type: Transform
+ - uid: 6861
+ components:
+ - pos: -18.5,-8.5
+ parent: 30
+ type: Transform
- uid: 6887
components:
- pos: -44.5,1.5
@@ -34570,6 +34658,11 @@ entities:
- pos: 13.5,13.5
parent: 30
type: Transform
+ - uid: 7027
+ components:
+ - pos: -18.5,-9.5
+ parent: 30
+ type: Transform
- uid: 7042
components:
- pos: 13.5,11.5
@@ -35053,15 +35146,6 @@ entities:
- pos: -31.473337,-0.7842679
parent: 30
type: Transform
-- proto: HandLabeler
- entities:
- - uid: 2500
- components:
- - pos: -3.6685562,-5.5019546
- parent: 30
- type: Transform
- - canCollide: False
- type: Physics
- proto: HighSecArmoryLocked
entities:
- uid: 752
@@ -35081,6 +35165,11 @@ entities:
- pos: 28.5,5.5
parent: 30
type: Transform
+ - uid: 2512
+ components:
+ - pos: -44.5,8.5
+ parent: 30
+ type: Transform
- uid: 5461
components:
- pos: -40.5,8.5
@@ -35091,11 +35180,6 @@ entities:
- pos: -44.5,13.5
parent: 30
type: Transform
- - uid: 6861
- components:
- - pos: -44.5,8.5
- parent: 30
- type: Transform
- uid: 7625
components:
- pos: -49.5,4.5
@@ -35380,6 +35464,11 @@ entities:
type: Transform
- proto: KitchenReagentGrinder
entities:
+ - uid: 3578
+ components:
+ - pos: -3.5,-5.5
+ parent: 30
+ type: Transform
- uid: 7121
components:
- pos: -15.5,-0.5
@@ -35445,6 +35534,12 @@ entities:
- pos: -1.5114588,-14.286842
parent: 30
type: Transform
+ - uid: 6965
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -19.59808,-9.067507
+ parent: 30
+ type: Transform
- proto: LampBanana
entities:
- uid: 1645
@@ -35500,9 +35595,9 @@ entities:
type: Physics
- proto: LockerAtmosphericsFilledHardsuit
entities:
- - uid: 5454
+ - uid: 3359
components:
- - pos: -36.5,8.5
+ - pos: -35.5,11.5
parent: 30
type: Transform
- uid: 6265
@@ -35584,14 +35679,14 @@ entities:
type: Transform
- proto: LockerEngineerFilledHardsuit
entities:
- - uid: 6018
+ - uid: 2525
components:
- - pos: -33.5,11.5
+ - pos: -36.5,8.5
parent: 30
type: Transform
- - uid: 6376
+ - uid: 6018
components:
- - pos: -35.5,11.5
+ - pos: -33.5,11.5
parent: 30
type: Transform
- uid: 6392
@@ -35599,16 +35694,6 @@ entities:
- pos: -34.5,11.5
parent: 30
type: Transform
- - uid: 7576
- components:
- - pos: -35.5,-0.5
- parent: 30
- type: Transform
- - uid: 7577
- components:
- - pos: -35.5,0.5
- parent: 30
- type: Transform
- proto: LockerEvidence
entities:
- uid: 1626
@@ -35682,18 +35767,6 @@ entities:
- pos: 13.5,-10.5
parent: 30
type: Transform
- - uid: 7580
- components:
- - pos: 9.5,-13.5
- parent: 30
- type: Transform
-- proto: LockerParamedicFilled
- entities:
- - uid: 1549
- components:
- - pos: 13.5,-0.5
- parent: 30
- type: Transform
- proto: LockerQuarterMasterFilled
entities:
- uid: 5834
@@ -35976,11 +36049,6 @@ entities:
type: Physics
- proto: MedicalBed
entities:
- - uid: 2747
- components:
- - pos: -1.5,-21.5
- parent: 30
- type: Transform
- uid: 2750
components:
- pos: -1.5,-20.5
@@ -35996,16 +36064,6 @@ entities:
- pos: 7.5,-0.5
parent: 30
type: Transform
- - uid: 3921
- components:
- - pos: 7.5,-5.5
- parent: 30
- type: Transform
- - uid: 6215
- components:
- - pos: 9.5,-5.5
- parent: 30
- type: Transform
- proto: MedicalTechFab
entities:
- uid: 7713
@@ -36139,11 +36197,9 @@ entities:
entities:
- uid: 328
components:
- - pos: 36.472916,0.60618997
+ - pos: 36.716324,0.566692
parent: 30
type: Transform
- - canCollide: False
- type: Physics
- uid: 1450
components:
- pos: -25.4987,14.667965
@@ -36182,13 +36238,6 @@ entities:
- pos: 16.5,-10.5
parent: 30
type: Transform
-- proto: NitrousOxideCanister
- entities:
- - uid: 6358
- components:
- - pos: -39.5,-0.5
- parent: 30
- type: Transform
- proto: NoticeBoard
entities:
- uid: 7632
@@ -36215,6 +36264,13 @@ entities:
- pos: 26.5,7.5
parent: 30
type: Transform
+- proto: OperatingTable
+ entities:
+ - uid: 512
+ components:
+ - pos: 8.5,-4.5
+ parent: 30
+ type: Transform
- proto: OreProcessor
entities:
- uid: 5619
@@ -36436,13 +36492,6 @@ entities:
type: Transform
- canCollide: False
type: Physics
-- proto: PassengerPDA
- entities:
- - uid: 507
- components:
- - pos: 28.33197,-1.4887066
- parent: 30
- type: Transform
- proto: PenCap
entities:
- uid: 519
@@ -36510,11 +36559,6 @@ entities:
type: Transform
- proto: PlasmaCanister
entities:
- - uid: 2904
- components:
- - pos: -40.5,-0.5
- parent: 30
- type: Transform
- uid: 4712
components:
- pos: -20.5,-18.5
@@ -36601,6 +36645,28 @@ entities:
type: Transform
- canCollide: False
type: Physics
+- proto: PortableGeneratorJrPacman
+ entities:
+ - uid: 943
+ components:
+ - pos: -41.5,-1.5
+ parent: 30
+ type: Transform
+ - uid: 3351
+ components:
+ - pos: 9.5,-17.5
+ parent: 30
+ type: Transform
+ - uid: 7575
+ components:
+ - pos: 26.5,18.5
+ parent: 30
+ type: Transform
+ - uid: 7576
+ components:
+ - pos: 9.5,23.5
+ parent: 30
+ type: Transform
- proto: PortableGeneratorPacman
entities:
- uid: 951
@@ -36754,6 +36820,13 @@ entities:
- pos: -13.5,-10.5
parent: 30
type: Transform
+- proto: PosterLegitAnatomyPoster
+ entities:
+ - uid: 39
+ components:
+ - pos: 8.5,-3.5
+ parent: 30
+ type: Transform
- proto: PosterLegitBuild
entities:
- uid: 5069
@@ -36835,6 +36908,13 @@ entities:
- pos: 16.5,-18.5
parent: 30
type: Transform
+- proto: PosterLegitPeriodicTable
+ entities:
+ - uid: 2487
+ components:
+ - pos: -0.5,-9.5
+ parent: 30
+ type: Transform
- proto: PosterLegitReportCrimes
entities:
- uid: 732
@@ -37021,6 +37101,11 @@ entities:
occludes: True
ent: null
type: ContainerContainer
+ - uid: 3358
+ components:
+ - pos: 12.5,-13.5
+ parent: 30
+ type: Transform
- uid: 4158
components:
- pos: -27.5,-12.5
@@ -37055,6 +37140,11 @@ entities:
occludes: True
ent: null
type: ContainerContainer
+ - uid: 6215
+ components:
+ - pos: -20.5,-9.5
+ parent: 30
+ type: Transform
- uid: 6377
components:
- pos: -38.5,8.5
@@ -37110,6 +37200,12 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
+ - uid: 263
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 2.5,-9.5
+ parent: 30
+ type: Transform
- uid: 549
components:
- pos: 32.5,4.5
@@ -37203,12 +37299,6 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 596
- components:
- - rot: 3.141592653589793 rad
- pos: 9.5,-8.5
- parent: 30
- type: Transform
- uid: 645
components:
- pos: -2.5,13.5
@@ -37275,6 +37365,17 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
+ - uid: 1494
+ components:
+ - pos: 8.5,-0.5
+ parent: 30
+ type: Transform
+ - uid: 1538
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 4.5,-3.5
+ parent: 30
+ type: Transform
- uid: 1609
components:
- rot: 1.5707963267948966 rad
@@ -37405,61 +37506,49 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 2509
- components:
- - pos: 4.5,-0.5
- parent: 30
- type: Transform
- - powerLoad: 0
- type: ApcPowerReceiver
- - uid: 2510
+ - uid: 2514
components:
- - pos: 8.5,-0.5
+ - pos: 3.5,-11.5
parent: 30
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 2511
+ - uid: 2515
components:
- - pos: 12.5,-4.5
+ - rot: -1.5707963267948966 rad
+ pos: 6.5,-9.5
parent: 30
type: Transform
- - powerLoad: 0
- type: ApcPowerReceiver
- - uid: 2512
+ - uid: 2632
components:
- - pos: 12.5,-10.5
+ - rot: 3.141592653589793 rad
+ pos: 12.5,-8.5
parent: 30
type: Transform
- - powerLoad: 0
- type: ApcPowerReceiver
- - uid: 2513
+ - uid: 2635
components:
- - pos: 9.5,-10.5
+ - rot: 3.141592653589793 rad
+ pos: 12.5,-2.5
parent: 30
type: Transform
- - powerLoad: 0
- type: ApcPowerReceiver
- - uid: 2514
+ - uid: 2636
components:
- - pos: 3.5,-11.5
+ - rot: 1.5707963267948966 rad
+ pos: 8.5,-10.5
parent: 30
type: Transform
- - powerLoad: 0
- type: ApcPowerReceiver
- - uid: 2515
+ - uid: 2639
components:
- rot: -1.5707963267948966 rad
- pos: 6.5,-9.5
+ pos: 13.5,-13.5
parent: 30
type: Transform
- - uid: 2516
+ - uid: 2726
components:
- - pos: 3.5,-5.5
+ - rot: 3.141592653589793 rad
+ pos: -22.5,-21.5
parent: 30
type: Transform
- - powerLoad: 0
- type: ApcPowerReceiver
- uid: 2729
components:
- rot: -1.5707963267948966 rad
@@ -37492,21 +37581,6 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 2735
- components:
- - pos: 13.5,-0.5
- parent: 30
- type: Transform
- - powerLoad: 0
- type: ApcPowerReceiver
- - uid: 2736
- components:
- - rot: 3.141592653589793 rad
- pos: 9.5,1.5
- parent: 30
- type: Transform
- - powerLoad: 0
- type: ApcPowerReceiver
- uid: 2737
components:
- rot: 3.141592653589793 rad
@@ -37754,6 +37828,11 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
+ - uid: 4376
+ components:
+ - pos: 12.5,-4.5
+ parent: 30
+ type: Transform
- uid: 5072
components:
- rot: -1.5707963267948966 rad
@@ -37778,13 +37857,6 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 5078
- components:
- - pos: -19.5,-18.5
- parent: 30
- type: Transform
- - powerLoad: 0
- type: ApcPowerReceiver
- uid: 5079
components:
- pos: -25.5,-18.5
@@ -38363,14 +38435,6 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 3307
- components:
- - rot: 1.5707963267948966 rad
- pos: 15.5,-12.5
- parent: 30
- type: Transform
- - powerLoad: 0
- type: ApcPowerReceiver
- uid: 3308
components:
- pos: 7.5,-15.5
@@ -38378,21 +38442,6 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 3309
- components:
- - pos: 2.5,-17.5
- parent: 30
- type: Transform
- - powerLoad: 0
- type: ApcPowerReceiver
- - uid: 3310
- components:
- - rot: -1.5707963267948966 rad
- pos: -3.5,-12.5
- parent: 30
- type: Transform
- - powerLoad: 0
- type: ApcPowerReceiver
- uid: 3536
components:
- pos: 25.5,21.5
@@ -38415,13 +38464,6 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 3541
- components:
- - pos: 24.5,-14.5
- parent: 30
- type: Transform
- - powerLoad: 0
- type: ApcPowerReceiver
- uid: 3971
components:
- pos: 27.5,-9.5
@@ -38475,27 +38517,6 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 4611
- components:
- - pos: -13.5,-16.5
- parent: 30
- type: Transform
- - powerLoad: 0
- type: ApcPowerReceiver
- - uid: 5132
- components:
- - pos: -19.5,-16.5
- parent: 30
- type: Transform
- - powerLoad: 0
- type: ApcPowerReceiver
- - uid: 5133
- components:
- - pos: -30.5,-16.5
- parent: 30
- type: Transform
- - powerLoad: 0
- type: ApcPowerReceiver
- uid: 5134
components:
- rot: 1.5707963267948966 rad
@@ -38591,11 +38612,6 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 6321
- components:
- - pos: -40.5,13.5
- parent: 30
- type: Transform
- uid: 6455
components:
- rot: -1.5707963267948966 rad
@@ -38604,29 +38620,6 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 7111
- components:
- - pos: -48.5,-0.5
- parent: 30
- type: Transform
- - powerLoad: 0
- type: ApcPowerReceiver
- - uid: 7116
- components:
- - rot: 1.5707963267948966 rad
- pos: -46.5,-3.5
- parent: 30
- type: Transform
- - powerLoad: 0
- type: ApcPowerReceiver
- - uid: 7117
- components:
- - rot: 1.5707963267948966 rad
- pos: -45.5,-7.5
- parent: 30
- type: Transform
- - powerLoad: 0
- type: ApcPowerReceiver
- uid: 7234
components:
- pos: -41.5,-3.5
@@ -38634,13 +38627,6 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 7235
- components:
- - pos: -38.5,-3.5
- parent: 30
- type: Transform
- - powerLoad: 0
- type: ApcPowerReceiver
- uid: 7434
components:
- rot: -1.5707963267948966 rad
@@ -38989,6 +38975,21 @@ entities:
pos: 21.5,25.5
parent: 30
type: Transform
+ - uid: 2501
+ components:
+ - pos: 15.5,25.5
+ parent: 30
+ type: Transform
+ - uid: 2502
+ components:
+ - pos: 20.5,8.5
+ parent: 30
+ type: Transform
+ - uid: 2509
+ components:
+ - pos: -21.5,-7.5
+ parent: 30
+ type: Transform
- uid: 2805
components:
- pos: -26.5,-1.5
@@ -39009,6 +39010,16 @@ entities:
- pos: -0.5,5.5
parent: 30
type: Transform
+ - uid: 6863
+ components:
+ - pos: 10.5,0.5
+ parent: 30
+ type: Transform
+ - uid: 6961
+ components:
+ - pos: 16.5,14.5
+ parent: 30
+ type: Transform
- uid: 7200
components:
- pos: 1.5,23.5
@@ -39058,11 +39069,6 @@ entities:
- pos: -13.5,13.5
parent: 30
type: Transform
- - uid: 4690
- components:
- - pos: -25.5,-9.5
- parent: 30
- type: Transform
- uid: 5808
components:
- pos: -5.5,10.5
@@ -39085,11 +39091,6 @@ entities:
- pos: -13.5,14.5
parent: 30
type: Transform
- - uid: 3931
- components:
- - pos: -25.5,-10.5
- parent: 30
- type: Transform
- uid: 6526
components:
- pos: -30.5,9.5
@@ -39671,9 +39672,9 @@ entities:
- pos: 12.5,0.5
parent: 30
type: Transform
- - uid: 2270
+ - uid: 2276
components:
- - pos: 10.5,-1.5
+ - pos: 14.5,-1.5
parent: 30
type: Transform
- uid: 2278
@@ -39691,11 +39692,6 @@ entities:
- pos: 11.5,-3.5
parent: 30
type: Transform
- - uid: 2293
- components:
- - pos: 7.5,-12.5
- parent: 30
- type: Transform
- uid: 2294
components:
- pos: 3.5,-2.5
@@ -39731,34 +39727,9 @@ entities:
- pos: 0.5,-10.5
parent: 30
type: Transform
- - uid: 2319
- components:
- - pos: 13.5,-3.5
- parent: 30
- type: Transform
- uid: 2373
components:
- - pos: 6.5,-10.5
- parent: 30
- type: Transform
- - uid: 2383
- components:
- - pos: 11.5,-9.5
- parent: 30
- type: Transform
- - uid: 2388
- components:
- - pos: 14.5,-2.5
- parent: 30
- type: Transform
- - uid: 2389
- components:
- - pos: 14.5,-0.5
- parent: 30
- type: Transform
- - uid: 2445
- components:
- - pos: 4.5,-10.5
+ - pos: 13.5,-3.5
parent: 30
type: Transform
- uid: 2490
@@ -39766,11 +39737,6 @@ entities:
- pos: -0.5,-5.5
parent: 30
type: Transform
- - uid: 2519
- components:
- - pos: -0.5,-9.5
- parent: 30
- type: Transform
- uid: 2695
components:
- pos: -1.5,-10.5
@@ -39786,11 +39752,6 @@ entities:
- pos: 3.5,-0.5
parent: 30
type: Transform
- - uid: 2728
- components:
- - pos: 13.5,-9.5
- parent: 30
- type: Transform
- uid: 2834
components:
- pos: 24.5,-17.5
@@ -39971,11 +39932,6 @@ entities:
pos: -9.5,-20.5
parent: 30
type: Transform
- - uid: 3318
- components:
- - pos: 7.5,-13.5
- parent: 30
- type: Transform
- uid: 3356
components:
- pos: 0.5,-4.5
@@ -40016,6 +39972,11 @@ entities:
- pos: 1.5,-22.5
parent: 30
type: Transform
+ - uid: 4110
+ components:
+ - pos: 5.5,0.5
+ parent: 30
+ type: Transform
- uid: 4139
components:
- rot: 1.5707963267948966 rad
@@ -40027,6 +39988,16 @@ entities:
- pos: 27.5,-14.5
parent: 30
type: Transform
+ - uid: 4302
+ components:
+ - pos: 9.5,0.5
+ parent: 30
+ type: Transform
+ - uid: 4355
+ components:
+ - pos: 7.5,0.5
+ parent: 30
+ type: Transform
- uid: 4361
components:
- pos: -17.5,-9.5
@@ -40426,6 +40397,16 @@ entities:
- pos: -30.5,4.5
parent: 30
type: Transform
+ - uid: 6853
+ components:
+ - pos: -18.5,-9.5
+ parent: 30
+ type: Transform
+ - uid: 6962
+ components:
+ - pos: -18.5,-8.5
+ parent: 30
+ type: Transform
- uid: 7212
components:
- pos: 10.5,12.5
@@ -40455,20 +40436,6 @@ entities:
- pos: -23.5,-8.5
parent: 30
type: Transform
-- proto: RubberStampApproved
- entities:
- - uid: 488
- components:
- - pos: 27.410095,-1.2699566
- parent: 30
- type: Transform
-- proto: RubberStampDenied
- entities:
- - uid: 497
- components:
- - pos: 27.691345,-1.5512066
- parent: 30
- type: Transform
- proto: SalvageMagnet
entities:
- uid: 5614
@@ -40477,13 +40444,6 @@ entities:
pos: -41.5,20.5
parent: 30
type: Transform
-- proto: SawElectric
- entities:
- - uid: 6853
- components:
- - pos: -50.54754,7.4546657
- parent: 30
- type: Transform
- proto: SecurityTechFab
entities:
- uid: 1496
@@ -40544,13 +40504,6 @@ entities:
type: Physics
- proto: SheetPlasma
entities:
- - uid: 2744
- components:
- - pos: -3.480597,-5.409103
- parent: 30
- type: Transform
- - canCollide: False
- type: Physics
- uid: 7049
components:
- pos: -43.530136,-1.4518127
@@ -40645,6 +40598,31 @@ entities:
type: Transform
- proto: ShuttersNormalOpen
entities:
+ - uid: 264
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -4.5,-4.5
+ parent: 30
+ type: Transform
+ - links:
+ - 2277
+ type: DeviceLinkSink
+ - uid: 265
+ components:
+ - pos: 7.5,0.5
+ parent: 30
+ type: Transform
+ - links:
+ - 3951
+ type: DeviceLinkSink
+ - uid: 266
+ components:
+ - pos: 9.5,0.5
+ parent: 30
+ type: Transform
+ - links:
+ - 2566
+ type: DeviceLinkSink
- uid: 330
components:
- rot: -1.5707963267948966 rad
@@ -40652,7 +40630,7 @@ entities:
parent: 30
type: Transform
- links:
- - 333
+ - 3307
type: DeviceLinkSink
- uid: 332
components:
@@ -40661,7 +40639,16 @@ entities:
parent: 30
type: Transform
- links:
- - 333
+ - 3307
+ type: DeviceLinkSink
+ - uid: 497
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 6.5,-4.5
+ parent: 30
+ type: Transform
+ - links:
+ - 507
type: DeviceLinkSink
- uid: 711
components:
@@ -40679,6 +40666,15 @@ entities:
- links:
- 3935
type: DeviceLinkSink
+ - uid: 1282
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 10.5,-4.5
+ parent: 30
+ type: Transform
+ - links:
+ - 507
+ type: DeviceLinkSink
- uid: 1379
components:
- pos: -14.5,-3.5
@@ -40695,6 +40691,15 @@ entities:
- links:
- 2158
type: DeviceLinkSink
+ - uid: 1568
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 10.5,-5.5
+ parent: 30
+ type: Transform
+ - links:
+ - 507
+ type: DeviceLinkSink
- uid: 1981
components:
- pos: 6.5,4.5
@@ -40735,6 +40740,109 @@ entities:
- links:
- 2158
type: DeviceLinkSink
+ - uid: 2511
+ components:
+ - pos: 5.5,0.5
+ parent: 30
+ type: Transform
+ - links:
+ - 3541
+ type: DeviceLinkSink
+ - uid: 2579
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -4.5,-5.5
+ parent: 30
+ type: Transform
+ - links:
+ - 2277
+ type: DeviceLinkSink
+ - uid: 2770
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 31.5,11.5
+ parent: 30
+ type: Transform
+ - links:
+ - 6389
+ type: DeviceLinkSink
+ - uid: 2821
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -4.5,-6.5
+ parent: 30
+ type: Transform
+ - links:
+ - 2277
+ type: DeviceLinkSink
+ - uid: 3272
+ components:
+ - pos: 12.5,0.5
+ parent: 30
+ type: Transform
+ - links:
+ - 2271
+ type: DeviceLinkSink
+ - uid: 3931
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 30.5,11.5
+ parent: 30
+ type: Transform
+ - links:
+ - 6389
+ type: DeviceLinkSink
+ - uid: 6321
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 32.5,11.5
+ parent: 30
+ type: Transform
+ - links:
+ - 6389
+ type: DeviceLinkSink
+ - uid: 6358
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 37.5,7.5
+ parent: 30
+ type: Transform
+ - links:
+ - 6399
+ type: DeviceLinkSink
+ - uid: 6376
+ components:
+ - pos: 30.5,-6.5
+ parent: 30
+ type: Transform
+ - links:
+ - 6709
+ type: DeviceLinkSink
+ - uid: 6401
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 37.5,6.5
+ parent: 30
+ type: Transform
+ - links:
+ - 6399
+ type: DeviceLinkSink
+ - uid: 6649
+ components:
+ - pos: 32.5,-6.5
+ parent: 30
+ type: Transform
+ - links:
+ - 6709
+ type: DeviceLinkSink
+ - uid: 6699
+ components:
+ - pos: 31.5,-6.5
+ parent: 30
+ type: Transform
+ - links:
+ - 6709
+ type: DeviceLinkSink
- proto: ShuttersWindowOpen
entities:
- uid: 331
@@ -40744,23 +40852,10 @@ entities:
parent: 30
type: Transform
- links:
- - 333
+ - 3307
type: DeviceLinkSink
- proto: SignalButton
entities:
- - uid: 333
- components:
- - pos: 35.5,5.5
- parent: 30
- type: Transform
- - linkedPorts:
- 332:
- - Pressed: Toggle
- 331:
- - Pressed: Toggle
- 330:
- - Pressed: Toggle
- type: DeviceLinkSource
- uid: 7020
components:
- desc: Exposes atmos tanks to vacuum. The 'oh shit' button.
@@ -40803,6 +40898,20 @@ entities:
type: DeviceLinkSource
- proto: SignalButtonDirectional
entities:
+ - uid: 507
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 8.5,-6.5
+ parent: 30
+ type: Transform
+ - linkedPorts:
+ 1568:
+ - Pressed: Toggle
+ 1282:
+ - Pressed: Toggle
+ 497:
+ - Pressed: Toggle
+ type: DeviceLinkSource
- uid: 1585
components:
- rot: 3.141592653589793 rad
@@ -40829,6 +40938,69 @@ entities:
1380:
- Pressed: Toggle
type: DeviceLinkSource
+ - uid: 2271
+ components:
+ - pos: 11.5,0.5
+ parent: 30
+ type: Transform
+ - linkedPorts:
+ 3272:
+ - Pressed: Toggle
+ type: DeviceLinkSource
+ - uid: 2277
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -3.5,-7.5
+ parent: 30
+ type: Transform
+ - linkedPorts:
+ 2821:
+ - Pressed: Toggle
+ 2579:
+ - Pressed: Toggle
+ 264:
+ - Pressed: Toggle
+ type: DeviceLinkSource
+ - uid: 2566
+ components:
+ - pos: 8.5,0.5
+ parent: 30
+ type: Transform
+ - linkedPorts:
+ 266:
+ - Pressed: Toggle
+ type: DeviceLinkSource
+ - uid: 3307
+ components:
+ - pos: 35.5,5.5
+ parent: 30
+ type: Transform
+ - linkedPorts:
+ 332:
+ - Pressed: Toggle
+ 331:
+ - Pressed: Toggle
+ 330:
+ - Pressed: Toggle
+ type: DeviceLinkSource
+ - uid: 3541
+ components:
+ - pos: 4.5,0.5
+ parent: 30
+ type: Transform
+ - linkedPorts:
+ 2511:
+ - Pressed: Toggle
+ type: DeviceLinkSource
+ - uid: 3951
+ components:
+ - pos: 6.5,0.5
+ parent: 30
+ type: Transform
+ - linkedPorts:
+ 265:
+ - Pressed: Toggle
+ type: DeviceLinkSource
- uid: 5551
components:
- rot: -1.5707963267948966 rad
@@ -40852,12 +41024,37 @@ entities:
- Pressed: Toggle
4291: []
type: DeviceLinkSource
+ - uid: 6389
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 33.5,9.5
+ parent: 30
+ type: Transform
+ - linkedPorts:
+ 6321:
+ - Pressed: Toggle
+ 2770:
+ - Pressed: Toggle
+ 3931:
+ - Pressed: Toggle
+ type: DeviceLinkSource
- uid: 6395
components:
- rot: -1.5707963267948966 rad
pos: -38.5,-16.5
parent: 30
type: Transform
+ - uid: 6399
+ components:
+ - pos: 36.5,8.5
+ parent: 30
+ type: Transform
+ - linkedPorts:
+ 6358:
+ - Pressed: Toggle
+ 6401:
+ - Pressed: Toggle
+ type: DeviceLinkSource
- uid: 6651
components:
- rot: 1.5707963267948966 rad
@@ -40868,6 +41065,20 @@ entities:
4651:
- Pressed: Toggle
type: DeviceLinkSource
+ - uid: 6709
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 33.5,-5.5
+ parent: 30
+ type: Transform
+ - linkedPorts:
+ 6649:
+ - Pressed: Toggle
+ 6699:
+ - Pressed: Toggle
+ 6376:
+ - Pressed: Toggle
+ type: DeviceLinkSource
- proto: SignalSwitchDirectional
entities:
- uid: 346
@@ -41297,10 +41508,9 @@ entities:
type: Transform
- proto: SignExamroom
entities:
- - uid: 2678
+ - uid: 2776
components:
- - rot: -1.5707963267948966 rad
- pos: 4.5,0.5
+ - pos: 10.5,-0.5
parent: 30
type: Transform
- proto: SignFire
@@ -41473,6 +41683,13 @@ entities:
- pos: -20.5,24.5
parent: 30
type: Transform
+- proto: SignSurgery
+ entities:
+ - uid: 2633
+ components:
+ - pos: 6.5,-6.5
+ parent: 30
+ type: Transform
- proto: SignTelecomms
entities:
- uid: 6851
@@ -41529,6 +41746,18 @@ entities:
pos: -2.5,-8.5
parent: 30
type: Transform
+- proto: SmartFridge
+ entities:
+ - uid: 2500
+ components:
+ - pos: -13.5,-0.5
+ parent: 30
+ type: Transform
+ - uid: 3913
+ components:
+ - pos: -0.5,-8.5
+ parent: 30
+ type: Transform
- proto: SMESBasic
entities:
- uid: 5511
@@ -41926,9 +42155,9 @@ entities:
- pos: -36.5,10.5
parent: 30
type: Transform
- - uid: 7214
+ - uid: 2516
components:
- - pos: -36.5,9.5
+ - pos: -35.5,10.5
parent: 30
type: Transform
- proto: SpawnPointBartender
@@ -42166,13 +42395,6 @@ entities:
- pos: 8.5,2.5
parent: 30
type: Transform
-- proto: SpawnPointParamedic
- entities:
- - uid: 4109
- components:
- - pos: 13.5,-1.5
- parent: 30
- type: Transform
- proto: SpawnPointQuartermaster
entities:
- uid: 5539
@@ -42242,34 +42464,6 @@ entities:
- pos: 13.5,17.5
parent: 30
type: Transform
-- proto: SpawnPointSeniorEngineer
- entities:
- - uid: 7575
- components:
- - pos: -36.5,-0.5
- parent: 30
- type: Transform
-- proto: SpawnPointSeniorOfficer
- entities:
- - uid: 3501
- components:
- - pos: 14.5,18.5
- parent: 30
- type: Transform
-- proto: SpawnPointSeniorPhysician
- entities:
- - uid: 7579
- components:
- - pos: 12.5,-11.5
- parent: 30
- type: Transform
-- proto: SpawnPointSeniorResearcher
- entities:
- - uid: 7582
- components:
- - pos: -21.5,-13.5
- parent: 30
- type: Transform
- proto: SpawnPointServiceWorker
entities:
- uid: 4061
@@ -42279,11 +42473,6 @@ entities:
type: Transform
- proto: SpawnPointStationEngineer
entities:
- - uid: 6164
- components:
- - pos: -35.5,10.5
- parent: 30
- type: Transform
- uid: 6224
components:
- pos: -34.5,10.5
@@ -42296,9 +42485,9 @@ entities:
type: Transform
- proto: SpawnPointTechnicalAssistant
entities:
- - uid: 7574
+ - uid: 3501
components:
- - pos: -36.5,0.5
+ - pos: -35.5,9.5
parent: 30
type: Transform
- proto: SpawnPointWarden
@@ -42322,6 +42511,13 @@ entities:
- pos: 15.5,13.5
parent: 30
type: Transform
+- proto: SpawnVehicleWheelchairFolded
+ entities:
+ - uid: 255
+ components:
+ - pos: 3.5,-5.5
+ parent: 30
+ type: Transform
- proto: SprayBottleSpaceCleaner
entities:
- uid: 3296
@@ -42347,9 +42543,9 @@ entities:
type: Physics
- proto: StasisBed
entities:
- - uid: 6965
+ - uid: 2678
components:
- - pos: 3.5,-5.5
+ - pos: 13.5,-0.5
parent: 30
type: Transform
- proto: StationMap
@@ -43283,11 +43479,21 @@ entities:
- pos: 4.5,-14.5
parent: 30
type: Transform
+ - uid: 2733
+ components:
+ - pos: -25.5,-10.5
+ parent: 30
+ type: Transform
- uid: 2773
components:
- pos: 10.5,-10.5
parent: 30
type: Transform
+ - uid: 3271
+ components:
+ - pos: -3.5,-6.5
+ parent: 30
+ type: Transform
- uid: 3293
components:
- pos: 23.5,-3.5
@@ -43563,14 +43769,19 @@ entities:
type: Transform
- proto: TableGlass
entities:
- - uid: 2461
+ - uid: 957
components:
- - pos: 11.5,-13.5
+ - pos: 8.5,-0.5
parent: 30
type: Transform
- - uid: 2467
+ - uid: 1492
+ components:
+ - pos: 6.5,-0.5
+ parent: 30
+ type: Transform
+ - uid: 2461
components:
- - pos: 12.5,-0.5
+ - pos: 11.5,-13.5
parent: 30
type: Transform
- uid: 2701
@@ -43680,6 +43891,11 @@ entities:
- pos: 16.5,6.5
parent: 30
type: Transform
+ - uid: 1025
+ components:
+ - pos: 13.5,-1.5
+ parent: 30
+ type: Transform
- uid: 1556
components:
- pos: -7.5,-0.5
@@ -43716,6 +43932,11 @@ entities:
- pos: 1.5,-4.5
parent: 30
type: Transform
+ - uid: 2672
+ components:
+ - pos: 9.5,-4.5
+ parent: 30
+ type: Transform
- uid: 3044
components:
- pos: -0.5,-6.5
@@ -43900,11 +44121,6 @@ entities:
pos: 25.5,-2.5
parent: 30
type: Transform
- - uid: 570
- components:
- - pos: 27.5,-1.5
- parent: 30
- type: Transform
- uid: 685
components:
- pos: 3.5,17.5
@@ -44467,16 +44683,16 @@ entities:
type: Transform
- proto: VendingMachineChemDrobe
entities:
- - uid: 2487
+ - uid: 3711
components:
- - pos: -3.5,-6.5
+ - pos: 2.5,-9.5
parent: 30
type: Transform
- proto: VendingMachineChemicals
entities:
- - uid: 4074
+ - uid: 576
components:
- - pos: -0.5,-8.5
+ - pos: 1.5,-9.5
parent: 30
type: Transform
- proto: VendingMachineCigs
@@ -44518,6 +44734,11 @@ entities:
- pos: 17.5,16.5
parent: 30
type: Transform
+ - uid: 2728
+ components:
+ - pos: -25.5,-9.5
+ parent: 30
+ type: Transform
- uid: 3349
components:
- name: Hot drinks machine
@@ -44609,11 +44830,6 @@ entities:
- pos: 4.5,-0.5
parent: 30
type: Transform
- - uid: 2770
- components:
- - pos: 2.5,-9.5
- parent: 30
- type: Transform
- proto: VendingMachineMediDrobe
entities:
- uid: 2749
@@ -44734,28 +44950,11 @@ entities:
- pos: -31.5,3.5
parent: 30
type: Transform
-- proto: VendingMachineWallMedical
+- proto: VendingMachineViroDrobe
entities:
- uid: 656
components:
- - pos: 9.5,0.5
- parent: 30
- type: Transform
- - uid: 1563
- components:
- - rot: 3.141592653589793 rad
- pos: 9.5,-6.5
- parent: 30
- type: Transform
- - uid: 3710
- components:
- - pos: 7.5,0.5
- parent: 30
- type: Transform
- - uid: 3711
- components:
- - rot: 3.141592653589793 rad
- pos: 7.5,-6.5
+ - pos: 0.5,-21.5
parent: 30
type: Transform
- proto: VendingMachineYouTool
@@ -44795,11 +44994,6 @@ entities:
- pos: 3.5,18.5
parent: 30
type: Transform
- - uid: 39
- components:
- - pos: -0.5,0.5
- parent: 30
- type: Transform
- uid: 63
components:
- pos: 30.5,-0.5
@@ -45811,16 +46005,6 @@ entities:
- pos: 12.5,14.5
parent: 30
type: Transform
- - uid: 1566
- components:
- - pos: 11.5,0.5
- parent: 30
- type: Transform
- - uid: 1568
- components:
- - pos: 10.5,0.5
- parent: 30
- type: Transform
- uid: 1690
components:
- pos: 9.5,22.5
@@ -45915,36 +46099,6 @@ entities:
pos: 6.5,26.5
parent: 30
type: Transform
- - uid: 2266
- components:
- - pos: 14.5,0.5
- parent: 30
- type: Transform
- - uid: 2267
- components:
- - pos: 13.5,0.5
- parent: 30
- type: Transform
- - uid: 2271
- components:
- - pos: 9.5,0.5
- parent: 30
- type: Transform
- - uid: 2272
- components:
- - pos: 8.5,0.5
- parent: 30
- type: Transform
- - uid: 2276
- components:
- - pos: 4.5,0.5
- parent: 30
- type: Transform
- - uid: 2277
- components:
- - pos: 3.5,0.5
- parent: 30
- type: Transform
- uid: 2295
components:
- pos: -0.5,-4.5
@@ -45995,11 +46149,6 @@ entities:
- pos: -3.5,-8.5
parent: 30
type: Transform
- - uid: 2406
- components:
- - pos: 3.5,-3.5
- parent: 30
- type: Transform
- uid: 2411
components:
- pos: -2.5,-11.5
@@ -46065,14 +46214,14 @@ entities:
- pos: 1.5,-13.5
parent: 30
type: Transform
- - uid: 2479
+ - uid: 2491
components:
- - pos: 5.5,0.5
+ - pos: -0.5,-9.5
parent: 30
type: Transform
- - uid: 2483
+ - uid: 2510
components:
- - pos: 6.5,0.5
+ - pos: -19.5,-7.5
parent: 30
type: Transform
- uid: 2517
@@ -46120,11 +46269,6 @@ entities:
- pos: -13.5,-9.5
parent: 30
type: Transform
- - uid: 2821
- components:
- - pos: 3.5,-4.5
- parent: 30
- type: Transform
- uid: 2832
components:
- pos: 12.5,-18.5
@@ -46252,11 +46396,6 @@ entities:
- pos: 16.5,16.5
parent: 30
type: Transform
- - uid: 3358
- components:
- - pos: 2.5,-4.5
- parent: 30
- type: Transform
- uid: 3442
components:
- pos: 29.5,-4.5
@@ -46382,11 +46521,6 @@ entities:
- pos: 25.5,-8.5
parent: 30
type: Transform
- - uid: 4065
- components:
- - pos: 7.5,0.5
- parent: 30
- type: Transform
- uid: 4206
components:
- pos: -14.5,21.5
@@ -47577,6 +47711,11 @@ entities:
- pos: -36.5,12.5
parent: 30
type: Transform
+ - uid: 6959
+ components:
+ - pos: -20.5,-7.5
+ parent: 30
+ type: Transform
- uid: 7002
components:
- pos: -40.5,7.5
@@ -47715,6 +47854,21 @@ entities:
- pos: -12.5,-2.5
parent: 30
type: Transform
+ - uid: 267
+ components:
+ - pos: 7.5,-6.5
+ parent: 30
+ type: Transform
+ - uid: 488
+ components:
+ - pos: 14.5,-0.5
+ parent: 30
+ type: Transform
+ - uid: 570
+ components:
+ - pos: 9.5,-3.5
+ parent: 30
+ type: Transform
- uid: 586
components:
- pos: 23.5,-4.5
@@ -48050,6 +48204,11 @@ entities:
- pos: -7.5,17.5
parent: 30
type: Transform
+ - uid: 1565
+ components:
+ - pos: 8.5,-3.5
+ parent: 30
+ type: Transform
- uid: 1683
components:
- pos: -0.5,4.5
@@ -48172,12 +48331,6 @@ entities:
pos: 7.5,-10.5
parent: 30
type: Transform
- - uid: 2325
- components:
- - rot: -1.5707963267948966 rad
- pos: 10.5,-4.5
- parent: 30
- type: Transform
- uid: 2333
components:
- rot: -1.5707963267948966 rad
@@ -48204,11 +48357,6 @@ entities:
- pos: 22.5,-14.5
parent: 30
type: Transform
- - uid: 2365
- components:
- - pos: 6.5,-6.5
- parent: 30
- type: Transform
- uid: 2371
components:
- rot: -1.5707963267948966 rad
@@ -48221,15 +48369,9 @@ entities:
pos: 14.5,-7.5
parent: 30
type: Transform
- - uid: 2384
- components:
- - rot: -1.5707963267948966 rad
- pos: 12.5,-3.5
- parent: 30
- type: Transform
- - uid: 2398
+ - uid: 2383
components:
- - pos: 7.5,-6.5
+ - pos: 12.5,-3.5
parent: 30
type: Transform
- uid: 2405
@@ -48372,12 +48514,6 @@ entities:
pos: 7.5,-9.5
parent: 30
type: Transform
- - uid: 2739
- components:
- - rot: -1.5707963267948966 rad
- pos: 10.5,-5.5
- parent: 30
- type: Transform
- uid: 2757
components:
- rot: -1.5707963267948966 rad
@@ -48579,11 +48715,41 @@ entities:
- pos: -36.5,-8.5
parent: 30
type: Transform
+ - uid: 3952
+ components:
+ - pos: -0.5,0.5
+ parent: 30
+ type: Transform
- uid: 3999
components:
- pos: 13.5,-18.5
parent: 30
type: Transform
+ - uid: 4065
+ components:
+ - pos: 11.5,0.5
+ parent: 30
+ type: Transform
+ - uid: 4074
+ components:
+ - pos: 10.5,0.5
+ parent: 30
+ type: Transform
+ - uid: 4108
+ components:
+ - pos: 14.5,0.5
+ parent: 30
+ type: Transform
+ - uid: 4109
+ components:
+ - pos: 13.5,0.5
+ parent: 30
+ type: Transform
+ - uid: 4124
+ components:
+ - pos: 8.5,0.5
+ parent: 30
+ type: Transform
- uid: 4138
components:
- pos: -11.5,-15.5
@@ -48604,6 +48770,11 @@ entities:
- pos: 0.5,18.5
parent: 30
type: Transform
+ - uid: 4175
+ components:
+ - pos: 4.5,0.5
+ parent: 30
+ type: Transform
- uid: 4182
components:
- pos: -0.5,21.5
@@ -48639,6 +48810,16 @@ entities:
- pos: -24.5,-15.5
parent: 30
type: Transform
+ - uid: 4293
+ components:
+ - pos: 3.5,0.5
+ parent: 30
+ type: Transform
+ - uid: 4298
+ components:
+ - pos: 3.5,-3.5
+ parent: 30
+ type: Transform
- uid: 4305
components:
- pos: -4.5,-13.5
@@ -48674,6 +48855,16 @@ entities:
- pos: -25.5,-15.5
parent: 30
type: Transform
+ - uid: 4344
+ components:
+ - pos: 6.5,0.5
+ parent: 30
+ type: Transform
+ - uid: 4345
+ components:
+ - pos: 3.5,-4.5
+ parent: 30
+ type: Transform
- uid: 4346
components:
- pos: -26.5,-0.5
@@ -48689,6 +48880,11 @@ entities:
- pos: -26.5,-15.5
parent: 30
type: Transform
+ - uid: 4354
+ components:
+ - pos: 2.5,-4.5
+ parent: 30
+ type: Transform
- uid: 4370
components:
- pos: -26.5,18.5
@@ -48839,6 +49035,11 @@ entities:
- pos: -9.5,-15.5
parent: 30
type: Transform
+ - uid: 5080
+ components:
+ - pos: 7.5,-3.5
+ parent: 30
+ type: Transform
- uid: 5090
components:
- pos: -23.5,-15.5
@@ -48864,6 +49065,16 @@ entities:
- pos: -34.5,-8.5
parent: 30
type: Transform
+ - uid: 5132
+ components:
+ - pos: 6.5,-3.5
+ parent: 30
+ type: Transform
+ - uid: 5133
+ components:
+ - pos: 6.5,-6.5
+ parent: 30
+ type: Transform
- uid: 5177
components:
- pos: -7.5,-13.5
@@ -49933,13 +50144,6 @@ entities:
- pos: -8.5,4.5
parent: 30
type: Transform
-- proto: WaterVaporCanister
- entities:
- - uid: 6401
- components:
- - pos: -42.5,-0.5
- parent: 30
- type: Transform
- proto: WeaponCapacitorRecharger
entities:
- uid: 1616
@@ -50311,9 +50515,9 @@ entities:
- pos: -4.5,-1.5
parent: 30
type: Transform
- - uid: 60
+ - uid: 606
components:
- - pos: -13.5,-0.5
+ - pos: 10.5,-5.5
parent: 30
type: Transform
- uid: 835
@@ -50385,6 +50589,26 @@ entities:
pos: 8.5,-8.5
parent: 30
type: Transform
+ - uid: 2483
+ components:
+ - pos: 10.5,-1.5
+ parent: 30
+ type: Transform
+ - uid: 2736
+ components:
+ - pos: 6.5,-10.5
+ parent: 30
+ type: Transform
+ - uid: 2744
+ components:
+ - pos: 11.5,-9.5
+ parent: 30
+ type: Transform
+ - uid: 2747
+ components:
+ - pos: 7.5,-12.5
+ parent: 30
+ type: Transform
- uid: 2782
components:
- pos: -5.5,-7.5
@@ -50405,6 +50629,21 @@ entities:
- pos: -11.5,-7.5
parent: 30
type: Transform
+ - uid: 2800
+ components:
+ - pos: 13.5,-9.5
+ parent: 30
+ type: Transform
+ - uid: 2904
+ components:
+ - pos: 7.5,-13.5
+ parent: 30
+ type: Transform
+ - uid: 2961
+ components:
+ - pos: 4.5,-10.5
+ parent: 30
+ type: Transform
- uid: 3015
components:
- rot: 1.5707963267948966 rad
@@ -50422,6 +50661,11 @@ entities:
- pos: -26.5,0.5
parent: 30
type: Transform
+ - uid: 4356
+ components:
+ - pos: 10.5,-4.5
+ parent: 30
+ type: Transform
- uid: 4643
components:
- pos: -19.5,-18.5
@@ -50437,6 +50681,11 @@ entities:
- pos: -19.5,-19.5
parent: 30
type: Transform
+ - uid: 5454
+ components:
+ - pos: 6.5,-4.5
+ parent: 30
+ type: Transform
- uid: 5501
components:
- rot: 3.141592653589793 rad
@@ -50479,18 +50728,6 @@ entities:
- pos: 9.5,-1.5
parent: 30
type: Transform
- - uid: 1492
- components:
- - rot: -1.5707963267948966 rad
- pos: 8.5,-5.5
- parent: 30
- type: Transform
- - uid: 1538
- components:
- - rot: -1.5707963267948966 rad
- pos: 8.5,-4.5
- parent: 30
- type: Transform
- uid: 2275
components:
- rot: -1.5707963267948966 rad
@@ -50503,30 +50740,6 @@ entities:
pos: 6.5,-0.5
parent: 30
type: Transform
- - uid: 2390
- components:
- - rot: -1.5707963267948966 rad
- pos: 6.5,-5.5
- parent: 30
- type: Transform
- - uid: 2449
- components:
- - rot: -1.5707963267948966 rad
- pos: 6.5,-4.5
- parent: 30
- type: Transform
- - uid: 3915
- components:
- - rot: 3.141592653589793 rad
- pos: 7.5,-4.5
- parent: 30
- type: Transform
- - uid: 4110
- components:
- - rot: 3.141592653589793 rad
- pos: 9.5,-4.5
- parent: 30
- type: Transform
- uid: 4703
components:
- rot: -1.5707963267948966 rad
@@ -50553,24 +50766,6 @@ entities:
type: Transform
- proto: WindowReinforcedDirectional
entities:
- - uid: 48
- components:
- - rot: 3.141592653589793 rad
- pos: -18.5,-8.5
- parent: 30
- type: Transform
- - uid: 254
- components:
- - rot: -1.5707963267948966 rad
- pos: 38.5,6.5
- parent: 30
- type: Transform
- - uid: 255
- components:
- - rot: -1.5707963267948966 rad
- pos: 38.5,7.5
- parent: 30
- type: Transform
- uid: 256
components:
- pos: 38.5,5.5
@@ -50612,57 +50807,6 @@ entities:
pos: 38.5,-0.5
parent: 30
type: Transform
- - uid: 263
- components:
- - rot: 3.141592653589793 rad
- pos: 30.5,-7.5
- parent: 30
- type: Transform
- - uid: 264
- components:
- - rot: 3.141592653589793 rad
- pos: 31.5,-7.5
- parent: 30
- type: Transform
- - uid: 265
- components:
- - rot: 3.141592653589793 rad
- pos: 32.5,-7.5
- parent: 30
- type: Transform
- - uid: 266
- components:
- - pos: 32.5,12.5
- parent: 30
- type: Transform
- - uid: 267
- components:
- - pos: 31.5,12.5
- parent: 30
- type: Transform
- - uid: 268
- components:
- - pos: 30.5,12.5
- parent: 30
- type: Transform
- - uid: 575
- components:
- - rot: 1.5707963267948966 rad
- pos: -50.5,11.5
- parent: 30
- type: Transform
- - uid: 576
- components:
- - rot: 1.5707963267948966 rad
- pos: -50.5,12.5
- parent: 30
- type: Transform
- - uid: 606
- components:
- - rot: -1.5707963267948966 rad
- pos: 30.5,-7.5
- parent: 30
- type: Transform
- uid: 836
components:
- rot: 1.5707963267948966 rad
@@ -50699,51 +50843,6 @@ entities:
pos: -1.5,12.5
parent: 30
type: Transform
- - uid: 4298
- components:
- - rot: 3.141592653589793 rad
- pos: -19.5,-7.5
- parent: 30
- type: Transform
- - uid: 4302
- components:
- - rot: 1.5707963267948966 rad
- pos: -18.5,-9.5
- parent: 30
- type: Transform
- - uid: 4344
- components:
- - rot: -1.5707963267948966 rad
- pos: -18.5,-9.5
- parent: 30
- type: Transform
- - uid: 4345
- components:
- - rot: 3.141592653589793 rad
- pos: -20.5,-7.5
- parent: 30
- type: Transform
- - uid: 4376
- components:
- - pos: -20.5,-7.5
- parent: 30
- type: Transform
- - uid: 4720
- components:
- - pos: -19.5,-7.5
- parent: 30
- type: Transform
- - uid: 5080
- components:
- - rot: -1.5707963267948966 rad
- pos: -18.5,-8.5
- parent: 30
- type: Transform
- - uid: 5186
- components:
- - pos: -18.5,-9.5
- parent: 30
- type: Transform
- uid: 6125
components:
- rot: -1.5707963267948966 rad
@@ -50786,30 +50885,6 @@ entities:
pos: -39.5,16.5
parent: 30
type: Transform
- - uid: 6709
- components:
- - rot: 1.5707963267948966 rad
- pos: -19.5,-7.5
- parent: 30
- type: Transform
- - uid: 6863
- components:
- - rot: 1.5707963267948966 rad
- pos: -50.5,10.5
- parent: 30
- type: Transform
- - uid: 7125
- components:
- - rot: 1.5707963267948966 rad
- pos: -18.5,-8.5
- parent: 30
- type: Transform
- - uid: 7131
- components:
- - rot: -1.5707963267948966 rad
- pos: -20.5,-7.5
- parent: 30
- type: Transform
- proto: WoodDoor
entities:
- uid: 7207
diff --git a/Resources/Maps/core.yml b/Resources/Maps/core.yml
index f794781be97..c6befda9e0b 100644
--- a/Resources/Maps/core.yml
+++ b/Resources/Maps/core.yml
@@ -14,6 +14,7 @@ tilemap:
18: FloorCarpetClown
23: FloorClown
27: FloorDark
+ 31: FloorDarkMini
32: FloorDarkMono
33: FloorDarkOffset
34: FloorDarkPavement
@@ -29,6 +30,7 @@ tilemap:
60: FloorLino
62: FloorMetalDiamond
63: FloorMime
+ 65: FloorMiningDark
74: FloorRGlass
75: FloorReinforced
85: FloorSnow
@@ -39,23 +41,23 @@ tilemap:
91: FloorSteelDamaged
94: FloorSteelDirty
95: FloorSteelHerringbone
- 97: FloorSteelMono
- 98: FloorSteelOffset
- 101: FloorTechMaint
- 102: FloorTechMaint2
- 103: FloorTechMaint3
- 105: FloorWhite
- 109: FloorWhiteMini
- 110: FloorWhiteMono
- 114: FloorWhitePlastic
- 115: FloorWood
- 116: FloorWoodTile
- 117: Lattice
- 118: Plating
- 119: PlatingAsteroid
- 120: PlatingBurnt
- 121: PlatingDamaged
- 122: PlatingSnow
+ 98: FloorSteelMono
+ 99: FloorSteelOffset
+ 102: FloorTechMaint
+ 103: FloorTechMaint2
+ 104: FloorTechMaint3
+ 106: FloorWhite
+ 110: FloorWhiteMini
+ 111: FloorWhiteMono
+ 115: FloorWhitePlastic
+ 116: FloorWood
+ 117: FloorWoodTile
+ 118: Lattice
+ 119: Plating
+ 120: PlatingAsteroid
+ 121: PlatingBurnt
+ 122: PlatingDamaged
+ 123: PlatingSnow
entities:
- proto: ""
entities:
@@ -69,275 +71,275 @@ entities:
- chunks:
0,0:
ind: 0,0
- tiles: dQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZwAAAAADZgAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZwAAAAAAZgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeAAAAAAAZQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAZQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZwAAAAACZQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeAAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAeAAAAAAAZwAAAAACZwAAAAABZwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAA
+ tiles: dgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAaAAAAAABZwAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAaAAAAAACZwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAeQAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAaAAAAAABZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAaAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAaAAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAaAAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAeQAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAeQAAAAAAaAAAAAACaAAAAAAAaAAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAA
version: 6
-1,0:
ind: -1,0
- tiles: DAAAAAAADAAAAAAAIAAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAADAAAAAADDAAAAAAAIAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAADAAAAAACIAAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAABDAAAAAABIAAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAACGwAAAAAAVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAGwAAAAADcwAAAAABcwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAGwAAAAACcwAAAAAAcwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAGwAAAAADcwAAAAABcwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAeAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAKgAAAAAAKgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAKgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAKgAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAKgAAAAAAdgAAAAAAZgAAAAAAZwAAAAADZwAAAAACZgAAAAAAdgAAAAAAeAAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAADVwAAAAACVwAAAAABdgAAAAAA
+ tiles: DAAAAAAADAAAAAAAIAAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAADAAAAAABDAAAAAAAIAAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAACDAAAAAADIAAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAACDAAAAAADIAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAADGwAAAAADVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAGwAAAAADdAAAAAAAdAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAdAAAAAACdAAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAdAAAAAAAdAAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAeQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAKgAAAAAAKgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAKgAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAKgAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAKgAAAAAAdwAAAAAAZwAAAAAAaAAAAAABaAAAAAABZwAAAAAAdwAAAAAAeQAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAABVwAAAAABdwAAAAAA
version: 6
0,-1:
ind: 0,-1
- tiles: ZQAAAAAAZQAAAAAAVwAAAAABdgAAAAAASwAAAAAASwAAAAAASwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAIAAAAAAAIAAAAAABIAAAAAADVwAAAAAAVwAAAAADYQAAAAADZQAAAAAAZQAAAAAAVwAAAAACYQAAAAABIAAAAAABIAAAAAAAIAAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAVwAAAAACYQAAAAAAIAAAAAADIAAAAAAAIAAAAAACdgAAAAAAZQAAAAAAZwAAAAADZwAAAAACZwAAAAADZgAAAAAAZgAAAAAAeAAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAVwAAAAADdgAAAAAASwAAAAAASwAAAAAASwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAACVwAAAAACdgAAAAAASwAAAAAASwAAAAAASwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZwAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZwAAAAACdgAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZwAAAAACdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeAAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAANwAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeAAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAA
+ tiles: ZgAAAAAAZgAAAAAAVwAAAAACdwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAIAAAAAABIAAAAAACIAAAAAAAVwAAAAADVwAAAAAAYgAAAAACZgAAAAAAZgAAAAAAVwAAAAACYgAAAAABIAAAAAADIAAAAAAAIAAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAVwAAAAACYgAAAAACIAAAAAADIAAAAAACIAAAAAACdwAAAAAAZgAAAAAAaAAAAAAAaAAAAAABaAAAAAADZwAAAAAAZwAAAAAAeQAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAVwAAAAACdwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAADVwAAAAADdwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAeQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAaAAAAAACdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAaAAAAAABdwAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAaAAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAaAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAeQAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAANwAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAeQAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAA
version: 6
-1,-1:
ind: -1,-1
- tiles: ZQAAAAAAdgAAAAAAGwAAAAABGwAAAAABVwAAAAABYQAAAAACVwAAAAADVwAAAAAAVwAAAAABVwAAAAACVwAAAAABVwAAAAADVwAAAAACdgAAAAAAVwAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAGwAAAAADGwAAAAACVwAAAAABdgAAAAAAVwAAAAABVwAAAAADVwAAAAADVwAAAAAAVwAAAAACVwAAAAADVwAAAAADYQAAAAACVwAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAVwAAAAAAVwAAAAABVwAAAAADdgAAAAAAIAAAAAACIAAAAAADIAAAAAAAVwAAAAABIAAAAAAAVwAAAAADVwAAAAAAYQAAAAABVwAAAAADZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAIAAAAAACGwAAAAACdgAAAAAAVwAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAALwAAAAAALwAAAAAAdgAAAAAAVwAAAAABVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAZgAAAAAAZwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAZgAAAAAAZwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAZgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAACcwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAADcwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAcwAAAAABcwAAAAAAcwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAADAAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAACDAAAAAACIAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: ZgAAAAAAdwAAAAAAGwAAAAAAGwAAAAACVwAAAAACYgAAAAADVwAAAAADVwAAAAADVwAAAAACVwAAAAABVwAAAAACVwAAAAABVwAAAAADdwAAAAAAVwAAAAADZgAAAAAAZgAAAAAAdwAAAAAAGwAAAAABGwAAAAABVwAAAAACdwAAAAAAVwAAAAAAVwAAAAABVwAAAAAAVwAAAAADVwAAAAADVwAAAAAAVwAAAAAAYgAAAAABVwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAVwAAAAABVwAAAAABVwAAAAAAdwAAAAAAIAAAAAABIAAAAAACIAAAAAADVwAAAAABIAAAAAADVwAAAAACVwAAAAAAYgAAAAAAVwAAAAADZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAIAAAAAABGwAAAAACdwAAAAAAVwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAALwAAAAAALwAAAAAAdwAAAAAAVwAAAAADVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAZwAAAAAAaAAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAZwAAAAAAaAAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdAAAAAABdAAAAAADdAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdAAAAAAAdAAAAAADdAAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdAAAAAACdAAAAAADdAAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAADAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAADDAAAAAADIAAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-1,-2:
ind: -1,-2
- tiles: VwAAAAAAVwAAAAABVwAAAAACVwAAAAACVwAAAAAAVwAAAAADVwAAAAADYQAAAAABVwAAAAAAVwAAAAABVwAAAAACVwAAAAABVwAAAAACVwAAAAACVwAAAAABVwAAAAACYQAAAAAAYQAAAAADYQAAAAAAYQAAAAABYQAAAAADYQAAAAAAYQAAAAADYQAAAAACYQAAAAABYQAAAAAASgAAAAACSgAAAAAAYQAAAAAASgAAAAACSgAAAAACYQAAAAAAVwAAAAABVwAAAAABVwAAAAABVwAAAAAAVwAAAAACVwAAAAABVwAAAAAAYQAAAAAAVwAAAAAAVwAAAAABVwAAAAABVwAAAAADVwAAAAADVwAAAAAAVwAAAAABVwAAAAADGwAAAAACdgAAAAAAGwAAAAABdgAAAAAAVwAAAAADdgAAAAAAVwAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAABGwAAAAADGwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACdgAAAAAAYQAAAAACYQAAAAABVwAAAAABVwAAAAADdgAAAAAAGwAAAAACGwAAAAAAGwAAAAAAGwAAAAABGwAAAAABGwAAAAACdgAAAAAAZgAAAAAAdgAAAAAAVwAAAAABYQAAAAACYQAAAAAAYQAAAAACVwAAAAAAVwAAAAACdgAAAAAAGwAAAAABGwAAAAACGwAAAAADGwAAAAADGwAAAAACGwAAAAAAdgAAAAAAZwAAAAAAdgAAAAAAIAAAAAACdgAAAAAAYQAAAAABYQAAAAAAVwAAAAAAIAAAAAACdgAAAAAAGwAAAAACGwAAAAAAGwAAAAACYgAAAAAAYgAAAAAAYgAAAAAAdgAAAAAAZwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAYQAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAACdgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAdgAAAAAAZwAAAAADdgAAAAAAGwAAAAADGwAAAAADGwAAAAABVwAAAAAAVwAAAAACVwAAAAABVwAAAAAAVwAAAAACVwAAAAACVwAAAAACYgAAAAAAYgAAAAAAYgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAABGwAAAAABGwAAAAACVwAAAAAASgAAAAABSgAAAAABSgAAAAADVwAAAAAAVwAAAAABSgAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAIAAAAAAAIAAAAAAAIAAAAAABVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAACVwAAAAADdgAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAYQAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAIAAAAAACIAAAAAABZwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAIAAAAAAAIAAAAAACIAAAAAACVwAAAAACIAAAAAACIAAAAAAAIAAAAAABdgAAAAAAIAAAAAADIAAAAAADZwAAAAADdgAAAAAAVwAAAAABVwAAAAABVwAAAAADdgAAAAAAVwAAAAACVwAAAAAAVwAAAAABVwAAAAADVwAAAAABVwAAAAADVwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAGwAAAAAAGwAAAAAAVwAAAAADdgAAAAAAVwAAAAAAVwAAAAACVwAAAAABVwAAAAABVwAAAAADVwAAAAAAVwAAAAADdgAAAAAAVwAAAAAAVwAAAAACZgAAAAAAdgAAAAAAGwAAAAAAGwAAAAACVwAAAAAAYQAAAAADVwAAAAAAVwAAAAADVwAAAAADVwAAAAADVwAAAAAAVwAAAAAAVwAAAAAAdgAAAAAAVwAAAAABVwAAAAAC
+ tiles: VwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAADVwAAAAACVwAAAAACYgAAAAAAVwAAAAACVwAAAAABVwAAAAAAVwAAAAACVwAAAAAAVwAAAAACVwAAAAAAVwAAAAABYgAAAAACYgAAAAADYgAAAAAAYgAAAAADYgAAAAADYgAAAAADYgAAAAADYgAAAAACYgAAAAABYgAAAAADSgAAAAACSgAAAAABYgAAAAACSgAAAAAASgAAAAAAYgAAAAACVwAAAAACVwAAAAABVwAAAAACVwAAAAACVwAAAAACVwAAAAABVwAAAAAAYgAAAAACVwAAAAACVwAAAAACVwAAAAAAVwAAAAABVwAAAAADVwAAAAAAVwAAAAABVwAAAAAAGwAAAAAAdwAAAAAAGwAAAAADdwAAAAAAVwAAAAABdwAAAAAAVwAAAAABdwAAAAAAdwAAAAAAVwAAAAABVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAABGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAdwAAAAAAYgAAAAAAYgAAAAACVwAAAAAAVwAAAAADdwAAAAAAGwAAAAACGwAAAAADGwAAAAABGwAAAAABGwAAAAACGwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAVwAAAAADYgAAAAADYgAAAAAAYgAAAAABVwAAAAABVwAAAAAAdwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAADGwAAAAACGwAAAAADdwAAAAAAaAAAAAABdwAAAAAAIAAAAAADdwAAAAAAYgAAAAADYgAAAAADVwAAAAACIAAAAAABdwAAAAAAGwAAAAABGwAAAAACGwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAdwAAAAAAaAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAYgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAdwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAdwAAAAAAaAAAAAADdwAAAAAAGwAAAAAAGwAAAAABGwAAAAADVwAAAAAAVwAAAAAAVwAAAAABVwAAAAADVwAAAAADVwAAAAAAVwAAAAABYwAAAAAAYwAAAAAAYwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAACGwAAAAABVwAAAAABSgAAAAACSgAAAAABSgAAAAABVwAAAAAAVwAAAAABSgAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAIAAAAAAAIAAAAAABIAAAAAACVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAABVwAAAAADdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAYgAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAIAAAAAABIAAAAAABaAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAIAAAAAACIAAAAAAAIAAAAAADVwAAAAAAIAAAAAACIAAAAAABIAAAAAACdwAAAAAAIAAAAAAAIAAAAAAAaAAAAAADdwAAAAAAVwAAAAABVwAAAAADVwAAAAADdwAAAAAAVwAAAAACVwAAAAABVwAAAAACVwAAAAADVwAAAAABVwAAAAACVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAGwAAAAADGwAAAAADVwAAAAACdwAAAAAAVwAAAAADVwAAAAACVwAAAAADVwAAAAABVwAAAAADVwAAAAABVwAAAAACdwAAAAAAVwAAAAABVwAAAAACZwAAAAAAdwAAAAAAGwAAAAADGwAAAAADVwAAAAABYgAAAAABVwAAAAAAVwAAAAADVwAAAAADVwAAAAABVwAAAAADVwAAAAADVwAAAAACdwAAAAAAVwAAAAAAVwAAAAAC
version: 6
0,-2:
ind: 0,-2
- tiles: YQAAAAACYQAAAAAAVwAAAAADVwAAAAAAYQAAAAAAVwAAAAADVwAAAAABVwAAAAABYQAAAAABVwAAAAADYQAAAAAAVwAAAAAAVwAAAAACVwAAAAADVwAAAAACVwAAAAACSgAAAAABSgAAAAABYQAAAAACYQAAAAAAYQAAAAABYQAAAAABYQAAAAAAYQAAAAAAYQAAAAADVwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAADVwAAAAAAVwAAAAACVwAAAAACYQAAAAABVwAAAAADVwAAAAABVwAAAAAAVwAAAAAAVwAAAAABdgAAAAAAGwAAAAADIAAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABVwAAAAADVwAAAAABVwAAAAABVwAAAAAAdgAAAAAAGwAAAAADIAAAAAADdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAAAdgAAAAAAIAAAAAAAcwAAAAABdgAAAAAAGwAAAAADGwAAAAABGwAAAAACGwAAAAAAIAAAAAAAdgAAAAAAGwAAAAACIAAAAAADdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAACGwAAAAAAcwAAAAACcwAAAAAAdgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAABGwAAAAACdgAAAAAAGwAAAAAAIAAAAAACdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAACdgAAAAAAcwAAAAABcwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAAAIAAAAAADIAAAAAABIAAAAAADIAAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACVwAAAAADYQAAAAADVwAAAAACGwAAAAADdgAAAAAAGwAAAAADIAAAAAACIAAAAAACIAAAAAADIAAAAAABVwAAAAABVwAAAAADIAAAAAAAdgAAAAAAIAAAAAABYQAAAAAAYQAAAAACYQAAAAAAVwAAAAABGwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAAAdgAAAAAASgAAAAAASgAAAAABIAAAAAACdgAAAAAAYQAAAAABYQAAAAAAYQAAAAACYQAAAAAAVwAAAAACGwAAAAABGwAAAAAAGwAAAAABGwAAAAADGwAAAAAAGwAAAAABGwAAAAACVwAAAAADVwAAAAABVwAAAAAAYQAAAAADYQAAAAACYQAAAAAAYQAAAAABYQAAAAAAVwAAAAABGwAAAAAAGwAAAAABGwAAAAAAGwAAAAABVwAAAAABVwAAAAABYQAAAAAAVwAAAAACVwAAAAACVwAAAAAAdgAAAAAAYQAAAAAAYQAAAAABYQAAAAAAYQAAAAADVwAAAAABGwAAAAADGwAAAAADdgAAAAAAGwAAAAACVwAAAAADVwAAAAABYQAAAAABGwAAAAABGwAAAAADGwAAAAACdgAAAAAAYQAAAAACYQAAAAACYQAAAAABYQAAAAABVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAYQAAAAAAYQAAAAADYQAAAAACYQAAAAADVwAAAAACdgAAAAAAIAAAAAACIAAAAAADIAAAAAABVwAAAAACVwAAAAABYQAAAAAAVwAAAAAAVwAAAAAAVwAAAAABdgAAAAAAVwAAAAAAVwAAAAADVwAAAAABVwAAAAAAVwAAAAACdgAAAAAAIAAAAAACGwAAAAACGwAAAAADVwAAAAABVwAAAAACYQAAAAADVwAAAAACVwAAAAADVwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAIAAAAAABGwAAAAAAGwAAAAADVwAAAAABVwAAAAABYQAAAAAB
+ tiles: YgAAAAACYgAAAAADVwAAAAABVwAAAAACYgAAAAAAVwAAAAAAVwAAAAADVwAAAAABYgAAAAACVwAAAAADYgAAAAADVwAAAAACVwAAAAADVwAAAAAAVwAAAAADVwAAAAACSgAAAAAASgAAAAACYgAAAAADYgAAAAABYgAAAAADYgAAAAAAYgAAAAABYgAAAAABYgAAAAABVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAADVwAAAAAAVwAAAAADYgAAAAACVwAAAAAAVwAAAAADVwAAAAADVwAAAAABVwAAAAAAdwAAAAAAGwAAAAAAIAAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAGwAAAAABIAAAAAABdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADdwAAAAAAIAAAAAADdAAAAAABdwAAAAAAGwAAAAABGwAAAAACGwAAAAACGwAAAAACIAAAAAABdwAAAAAAGwAAAAACIAAAAAABdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABGwAAAAABdAAAAAACdAAAAAACdwAAAAAAGwAAAAACGwAAAAADGwAAAAADGwAAAAACGwAAAAADdwAAAAAAGwAAAAAAIAAAAAACdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADdwAAAAAAdAAAAAAAdAAAAAABdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABIAAAAAAAIAAAAAADIAAAAAAAIAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADVwAAAAAAYgAAAAACVwAAAAABGwAAAAACdwAAAAAAGwAAAAACIAAAAAAAIAAAAAADIAAAAAAAIAAAAAABVwAAAAADVwAAAAADIAAAAAADdwAAAAAAIAAAAAADYgAAAAADYgAAAAABYgAAAAACVwAAAAACGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACdwAAAAAASgAAAAABSgAAAAAAIAAAAAABdwAAAAAAYgAAAAABYgAAAAADYgAAAAABYgAAAAAAVwAAAAACGwAAAAADGwAAAAAAGwAAAAABGwAAAAADGwAAAAACGwAAAAABGwAAAAABVwAAAAACVwAAAAABVwAAAAADYgAAAAADYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAACVwAAAAACGwAAAAACGwAAAAAAGwAAAAADGwAAAAAAVwAAAAADVwAAAAADYgAAAAAAVwAAAAADVwAAAAADVwAAAAACdwAAAAAAYgAAAAABYgAAAAAAYgAAAAADYgAAAAABVwAAAAABGwAAAAACGwAAAAADdwAAAAAAGwAAAAADVwAAAAACVwAAAAACYgAAAAAAGwAAAAAAGwAAAAADGwAAAAAAdwAAAAAAYgAAAAABYgAAAAAAYgAAAAADYgAAAAAAVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAYgAAAAABYgAAAAAAYgAAAAACYgAAAAADVwAAAAACdwAAAAAAIAAAAAACIAAAAAACIAAAAAAAVwAAAAAAVwAAAAAAYgAAAAABVwAAAAADVwAAAAADVwAAAAABdwAAAAAAVwAAAAACVwAAAAACVwAAAAABVwAAAAACVwAAAAACdwAAAAAAIAAAAAAAGwAAAAABGwAAAAAAVwAAAAABVwAAAAACYgAAAAACVwAAAAADVwAAAAACVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAIAAAAAABGwAAAAABGwAAAAABVwAAAAACVwAAAAABYgAAAAAB
version: 6
1,-2:
ind: 1,-2
- tiles: VwAAAAACVwAAAAABYQAAAAACVwAAAAADYQAAAAAAVwAAAAABdgAAAAAAGwAAAAACYQAAAAACYQAAAAAAYQAAAAABYQAAAAAAYQAAAAABGwAAAAADdgAAAAAAGwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAADYQAAAAADVwAAAAACdgAAAAAAGwAAAAABYQAAAAACYQAAAAACYQAAAAADYQAAAAABYQAAAAADGwAAAAABdgAAAAAAGwAAAAAAIAAAAAAAGwAAAAACdgAAAAAAVwAAAAADYQAAAAADVwAAAAACdgAAAAAAGwAAAAADYQAAAAABYQAAAAACYQAAAAAAVwAAAAABYQAAAAAAGwAAAAAAGwAAAAAAGwAAAAABIAAAAAABGwAAAAAAdgAAAAAAVwAAAAAAYQAAAAABVwAAAAACdgAAAAAAGwAAAAAAYQAAAAAAYQAAAAACYQAAAAABYQAAAAAAYQAAAAADGwAAAAACdgAAAAAAGwAAAAAAIAAAAAAAGwAAAAADdgAAAAAAYQAAAAABYQAAAAACYQAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAADIAAAAAABGwAAAAAAdgAAAAAAVwAAAAADYQAAAAAAVwAAAAAAIAAAAAACVwAAAAACVwAAAAABVwAAAAABVwAAAAAAVwAAAAACVwAAAAACVwAAAAADdgAAAAAAdgAAAAAAIAAAAAABGwAAAAACdgAAAAAAVwAAAAACYQAAAAACYQAAAAACYQAAAAAAYQAAAAAAYQAAAAACYQAAAAACYQAAAAADYQAAAAACYQAAAAADVwAAAAABdgAAAAAAGwAAAAACIAAAAAACGwAAAAACdgAAAAAAVwAAAAADVwAAAAABVwAAAAACVwAAAAADVwAAAAADVwAAAAACVwAAAAACVwAAAAABVwAAAAACYQAAAAACVwAAAAADdgAAAAAAVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABVwAAAAADVwAAAAACdgAAAAAAVwAAAAABdgAAAAAALwAAAAAALwAAAAAAVwAAAAACYQAAAAADVwAAAAACdgAAAAAAVwAAAAAAdgAAAAAAGwAAAAACGwAAAAADVwAAAAAAVwAAAAABVwAAAAABdgAAAAAAVwAAAAADdgAAAAAALwAAAAAALwAAAAAAVwAAAAABYQAAAAADVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAAAGwAAAAABVwAAAAACVwAAAAADVwAAAAADVwAAAAABVwAAAAAAdgAAAAAALwAAAAAALwAAAAAAVwAAAAAAYQAAAAABVwAAAAABdgAAAAAAVwAAAAACdgAAAAAAGwAAAAAAIAAAAAABVwAAAAADVwAAAAAAVwAAAAADdgAAAAAAGwAAAAAAdgAAAAAALwAAAAAALwAAAAAAVwAAAAAAYQAAAAABVwAAAAADYQAAAAAAVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABYQAAAAACYQAAAAABYQAAAAADYQAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAAAGwAAAAACGwAAAAACGwAAAAAAdgAAAAAAVwAAAAAAVwAAAAADVwAAAAABYQAAAAADVwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAACGwAAAAADGwAAAAAAGwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAABGwAAAAAAGwAAAAACGwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAA
+ tiles: VwAAAAAAVwAAAAADYgAAAAABVwAAAAAAYgAAAAADVwAAAAADdwAAAAAAGwAAAAADYgAAAAABYgAAAAABYgAAAAABYgAAAAABYgAAAAABGwAAAAAAdwAAAAAAGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACYgAAAAACVwAAAAAAdwAAAAAAGwAAAAADYgAAAAAAYgAAAAABYgAAAAABYgAAAAABYgAAAAACGwAAAAABdwAAAAAAGwAAAAABIAAAAAABGwAAAAADdwAAAAAAVwAAAAADYgAAAAAAVwAAAAAAdwAAAAAAGwAAAAADYgAAAAACYgAAAAACYgAAAAAAVwAAAAAAYgAAAAABGwAAAAAAGwAAAAAAGwAAAAADIAAAAAAAGwAAAAADdwAAAAAAVwAAAAAAYgAAAAAAVwAAAAAAdwAAAAAAGwAAAAAAYgAAAAADYgAAAAADYgAAAAAAYgAAAAAAYgAAAAACGwAAAAADdwAAAAAAGwAAAAACIAAAAAADGwAAAAABdwAAAAAAYgAAAAAAYgAAAAADYgAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABIAAAAAADGwAAAAADdwAAAAAAVwAAAAAAYgAAAAABVwAAAAADIAAAAAABVwAAAAABVwAAAAADVwAAAAACVwAAAAABVwAAAAADVwAAAAADVwAAAAABdwAAAAAAdwAAAAAAIAAAAAAAGwAAAAACdwAAAAAAVwAAAAACYgAAAAABYgAAAAADYgAAAAAAYgAAAAABYgAAAAADYgAAAAACYgAAAAADYgAAAAAAYgAAAAAAVwAAAAABdwAAAAAAGwAAAAADIAAAAAAAGwAAAAADdwAAAAAAVwAAAAADVwAAAAAAVwAAAAAAVwAAAAADVwAAAAAAVwAAAAAAVwAAAAADVwAAAAABVwAAAAAAYgAAAAABVwAAAAAAdwAAAAAAVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAABdwAAAAAAVwAAAAABdwAAAAAALwAAAAAALwAAAAAAVwAAAAACYgAAAAAAVwAAAAADdwAAAAAAVwAAAAACdwAAAAAAGwAAAAAAGwAAAAAAVwAAAAADVwAAAAADVwAAAAACdwAAAAAAVwAAAAABdwAAAAAALwAAAAAALwAAAAAAVwAAAAAAYgAAAAADVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACGwAAAAADVwAAAAABVwAAAAACVwAAAAACVwAAAAAAVwAAAAAAdwAAAAAALwAAAAAALwAAAAAAVwAAAAABYgAAAAAAVwAAAAADdwAAAAAAVwAAAAADdwAAAAAAGwAAAAAAIAAAAAABVwAAAAAAVwAAAAACVwAAAAAAdwAAAAAAGwAAAAAAdwAAAAAALwAAAAAALwAAAAAAVwAAAAAAYgAAAAACVwAAAAACYgAAAAADVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABYgAAAAAAYgAAAAACYgAAAAADYgAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADGwAAAAAAGwAAAAABGwAAAAAAdwAAAAAAVwAAAAADVwAAAAACVwAAAAAAYgAAAAAAVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAACGwAAAAADGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAABGwAAAAADGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAA
version: 6
1,-1:
ind: 1,-1
- tiles: dgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAASwAAAAAAdgAAAAAASwAAAAAAdgAAAAAASwAAAAAAdgAAAAAASwAAAAAAdgAAAAAASwAAAAAAdgAAAAAASwAAAAAAdgAAAAAAZgAAAAAAeAAAAAAAeAAAAAAAZgAAAAAASwAAAAAAdgAAAAAASwAAAAAAdgAAAAAASwAAAAAAdgAAAAAASwAAAAAAdgAAAAAASwAAAAAAdgAAAAAASwAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAASwAAAAAAdgAAAAAASwAAAAAAdgAAAAAASwAAAAAAdgAAAAAASwAAAAAAdgAAAAAASwAAAAAAdgAAAAAASwAAAAAAdgAAAAAAZwAAAAAAdgAAAAAAIAAAAAAAIAAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZwAAAAAAdgAAAAAAIAAAAAABIAAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZwAAAAACdgAAAAAAGwAAAAACGwAAAAAB
+ tiles: dwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAASwAAAAAAdwAAAAAASwAAAAAAdwAAAAAASwAAAAAAdwAAAAAASwAAAAAAdwAAAAAASwAAAAAAdwAAAAAASwAAAAAAdwAAAAAAZwAAAAAAeQAAAAAAeQAAAAAAZwAAAAAASwAAAAAAdwAAAAAASwAAAAAAdwAAAAAASwAAAAAAdwAAAAAASwAAAAAAdwAAAAAASwAAAAAAdwAAAAAASwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAASwAAAAAAdwAAAAAASwAAAAAAdwAAAAAASwAAAAAAdwAAAAAASwAAAAAAdwAAAAAASwAAAAAAdwAAAAAASwAAAAAAdwAAAAAAaAAAAAACdwAAAAAAIAAAAAACIAAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAaAAAAAACdwAAAAAAIAAAAAAAIAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAaAAAAAACdwAAAAAAGwAAAAACGwAAAAAA
version: 6
-2,-2:
ind: -2,-2
- tiles: EAAAAAACVwAAAAAAcwAAAAAAcwAAAAABVwAAAAAAdgAAAAAAIAAAAAADVwAAAAABVwAAAAABVwAAAAABVwAAAAABVwAAAAABYQAAAAADVwAAAAACVwAAAAACVwAAAAAAEAAAAAABVwAAAAADcwAAAAACcwAAAAACVwAAAAADdgAAAAAAVwAAAAABSgAAAAABSgAAAAAAYQAAAAABSgAAAAAAYQAAAAACYQAAAAADYQAAAAABYQAAAAACYQAAAAACEAAAAAAAVwAAAAACcwAAAAAAcwAAAAADVwAAAAAAdgAAAAAAVwAAAAACSgAAAAABVwAAAAACVwAAAAACVwAAAAADVwAAAAAAYQAAAAADVwAAAAAAVwAAAAACVwAAAAACEAAAAAABVwAAAAAAcwAAAAABcwAAAAADVwAAAAACYQAAAAABVwAAAAADYQAAAAADVwAAAAAAVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAAAGwAAAAAAEAAAAAABVwAAAAADcwAAAAABcwAAAAAAVwAAAAADYQAAAAABVwAAAAACSgAAAAAAVwAAAAADVwAAAAACdgAAAAAAGwAAAAACGwAAAAAAIgAAAAAAIgAAAAACIgAAAAAAEAAAAAADVwAAAAAAcwAAAAABcwAAAAAAVwAAAAABdgAAAAAAVwAAAAABSgAAAAACVwAAAAACVwAAAAADdgAAAAAAGwAAAAACGwAAAAAASgAAAAADSgAAAAABSgAAAAAAVwAAAAADVwAAAAABJAAAAAAAJAAAAAADVwAAAAACdgAAAAAAVwAAAAAAYQAAAAAAVwAAAAADVwAAAAAAdgAAAAAAGwAAAAADGwAAAAABIgAAAAADIgAAAAADIgAAAAACJAAAAAABJAAAAAABJAAAAAACJAAAAAABVwAAAAABdgAAAAAAVwAAAAAAYQAAAAACVwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACYQAAAAACVwAAAAAAdgAAAAAAPAAAAAAAPAAAAAAAdgAAAAAAPAAAAAAAPAAAAAAAdgAAAAAAZwAAAAACeAAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAVwAAAAACVwAAAAADYQAAAAADVwAAAAADdgAAAAAAPAAAAAAAPAAAAAAAdgAAAAAAPAAAAAAAPAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAYQAAAAAAYQAAAAABYQAAAAAAdgAAAAAAdgAAAAAAcwAAAAAAdgAAAAAAcwAAAAADdgAAAAAAdgAAAAAAPwAAAAAAdgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAdgAAAAAAVwAAAAAAYQAAAAACVwAAAAABdgAAAAAAcwAAAAADcwAAAAACcwAAAAADcwAAAAADcwAAAAADdgAAAAAAPwAAAAAAdgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAdgAAAAAAVwAAAAACYQAAAAABVwAAAAABdgAAAAAAcwAAAAACcwAAAAADcwAAAAACcwAAAAACcwAAAAACdgAAAAAAPwAAAAAAdgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAdgAAAAAAVwAAAAABYQAAAAACVwAAAAABcwAAAAADcwAAAAAAcwAAAAACcwAAAAACcwAAAAABcwAAAAABdgAAAAAAPwAAAAAAdgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAdgAAAAAAVwAAAAACYQAAAAABVwAAAAAAcwAAAAACcwAAAAABcwAAAAADcwAAAAADcwAAAAABcwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAYQAAAAACVwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAcwAAAAAAdgAAAAAAdgAAAAAA
+ tiles: EAAAAAADVwAAAAADdAAAAAACdAAAAAACVwAAAAADdwAAAAAAIAAAAAAAVwAAAAADVwAAAAABVwAAAAACVwAAAAAAVwAAAAACYgAAAAAAVwAAAAADVwAAAAACVwAAAAACEAAAAAADVwAAAAABdAAAAAABdAAAAAACVwAAAAAAdwAAAAAAVwAAAAABSgAAAAADSgAAAAAAYgAAAAADSgAAAAADYgAAAAAAYgAAAAADYgAAAAACYgAAAAADYgAAAAADEAAAAAADVwAAAAABdAAAAAADdAAAAAACVwAAAAABdwAAAAAAVwAAAAABSgAAAAADVwAAAAABVwAAAAACVwAAAAABVwAAAAACYgAAAAACVwAAAAABVwAAAAABVwAAAAABEAAAAAADVwAAAAADdAAAAAADdAAAAAAAVwAAAAACYgAAAAABVwAAAAACYgAAAAADVwAAAAABVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAAAEAAAAAABVwAAAAAAdAAAAAADdAAAAAAAVwAAAAAAYgAAAAADVwAAAAAASgAAAAACVwAAAAAAVwAAAAAAYgAAAAABGwAAAAAAGwAAAAAAIgAAAAACIgAAAAABIgAAAAACEAAAAAADVwAAAAADdAAAAAABdAAAAAACVwAAAAAAdwAAAAAAVwAAAAAASgAAAAADVwAAAAABVwAAAAABYgAAAAAAGwAAAAACGwAAAAAASgAAAAACSgAAAAAASgAAAAADVwAAAAACVwAAAAADJAAAAAACJAAAAAACVwAAAAADdwAAAAAAVwAAAAADYgAAAAADVwAAAAACVwAAAAACYgAAAAACGwAAAAAAGwAAAAAAIgAAAAABIgAAAAADIgAAAAACJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAACVwAAAAABdwAAAAAAVwAAAAABYgAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABYgAAAAAAVwAAAAACdwAAAAAAPAAAAAAAPAAAAAAAdwAAAAAAPAAAAAAAPAAAAAAAdwAAAAAAaAAAAAADeQAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAVwAAAAABVwAAAAAAYgAAAAADVwAAAAACdwAAAAAAPAAAAAAAPAAAAAAAdwAAAAAAPAAAAAAAPAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAYgAAAAACYgAAAAABYgAAAAABdwAAAAAAdwAAAAAAdAAAAAABdwAAAAAAdAAAAAADdwAAAAAAdwAAAAAAPwAAAAAAdwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAdwAAAAAAVwAAAAACYgAAAAACVwAAAAAAdwAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAABdAAAAAAAdwAAAAAAPwAAAAAAdwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAdwAAAAAAVwAAAAADYgAAAAAAVwAAAAAAdwAAAAAAdAAAAAAAdAAAAAACdAAAAAABdAAAAAADdAAAAAADdwAAAAAAPwAAAAAAdwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAdwAAAAAAVwAAAAADYgAAAAAAVwAAAAABdAAAAAACdAAAAAABdAAAAAABdAAAAAAAdAAAAAAAdAAAAAAAdwAAAAAAPwAAAAAAdwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAdwAAAAAAVwAAAAABYgAAAAAAVwAAAAADdAAAAAADdAAAAAABdAAAAAABdAAAAAABdAAAAAAAdAAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABYgAAAAAAVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAADdwAAAAAAdwAAAAAA
version: 6
-2,-1:
ind: -2,-1
- tiles: cwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAACYQAAAAAAVwAAAAADYQAAAAABVwAAAAACdgAAAAAAcwAAAAACcwAAAAABcwAAAAABcwAAAAABcwAAAAAAdgAAAAAASgAAAAACSgAAAAABJAAAAAADSgAAAAABSgAAAAADYQAAAAACVwAAAAACYQAAAAACVwAAAAABdgAAAAAAcwAAAAAAcwAAAAABcwAAAAACcwAAAAADcwAAAAAAdgAAAAAASgAAAAADSgAAAAAAJAAAAAABSgAAAAAASgAAAAACYQAAAAACVwAAAAACYQAAAAADVwAAAAACdgAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAABcwAAAAABdgAAAAAAcwAAAAABcwAAAAABcwAAAAABcwAAAAAAcwAAAAACYQAAAAACVwAAAAADYQAAAAADVwAAAAABdgAAAAAAcwAAAAABcwAAAAADcwAAAAADcwAAAAABcwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAcwAAAAABdgAAAAAAdgAAAAAAYQAAAAABYQAAAAACYQAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAcwAAAAAAdgAAAAAAcwAAAAADcwAAAAAAcwAAAAADdgAAAAAAVwAAAAACYQAAAAADVwAAAAAAVwAAAAADdgAAAAAAGwAAAAAAGwAAAAADGwAAAAACPAAAAAAAdgAAAAAAJAAAAAACdgAAAAAAJAAAAAADJAAAAAABJAAAAAACdgAAAAAAVwAAAAADYQAAAAACYQAAAAACVwAAAAABdgAAAAAAGwAAAAACGwAAAAACGwAAAAAAPAAAAAAAPAAAAAAAJAAAAAADdgAAAAAAJAAAAAACJAAAAAADJAAAAAAAdgAAAAAAVwAAAAABVwAAAAABYQAAAAAAVwAAAAAAdgAAAAAAGwAAAAADGwAAAAADGwAAAAADPAAAAAAAPAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAYQAAAAADYQAAAAACYQAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAZgAAAAAAZwAAAAADZwAAAAADdgAAAAAAdgAAAAAAYQAAAAADYQAAAAADYQAAAAAAYQAAAAAAYQAAAAADdgAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAYQAAAAABYQAAAAAAYQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAWQAAAAABWQAAAAABIAAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACVwAAAAADVwAAAAAAVwAAAAAAYQAAAAABcwAAAAADcwAAAAACcwAAAAACcwAAAAACcwAAAAADGwAAAAAAGwAAAAABWQAAAAABGwAAAAACGwAAAAACGwAAAAABGwAAAAACVwAAAAAAVwAAAAADVwAAAAADYQAAAAADcwAAAAACcwAAAAABcwAAAAAAcwAAAAABcwAAAAADGwAAAAACGwAAAAADWQAAAAAAGwAAAAABGwAAAAACGwAAAAADGwAAAAABVwAAAAABVwAAAAADVwAAAAACYQAAAAABcwAAAAADcwAAAAAAcwAAAAABcwAAAAACcwAAAAABGwAAAAABGwAAAAABWQAAAAACGwAAAAADGwAAAAACGwAAAAAAGwAAAAADVwAAAAACVwAAAAADVwAAAAACYQAAAAADcwAAAAADcwAAAAACcwAAAAAAcwAAAAAAdgAAAAAAVwAAAAAAVwAAAAADVwAAAAAAVwAAAAABVwAAAAAAVwAAAAACVwAAAAACVwAAAAABVwAAAAACVwAAAAACYQAAAAAAcwAAAAABcwAAAAACcwAAAAADcwAAAAAAcwAAAAAB
+ tiles: dAAAAAADdAAAAAADdAAAAAACdAAAAAABdAAAAAADYgAAAAABVwAAAAADYgAAAAAAVwAAAAACdwAAAAAAdAAAAAADdAAAAAABdAAAAAADdAAAAAAAdAAAAAACdwAAAAAASgAAAAAASgAAAAAAJAAAAAAASgAAAAADSgAAAAADYgAAAAABVwAAAAABYgAAAAAAVwAAAAADdwAAAAAAdAAAAAAAdAAAAAACdAAAAAACdAAAAAAAdAAAAAAAdwAAAAAASgAAAAAASgAAAAAAJAAAAAACSgAAAAADSgAAAAACYgAAAAAAVwAAAAADYgAAAAACVwAAAAADdwAAAAAAdAAAAAACdAAAAAADdAAAAAAAdAAAAAACdAAAAAADdwAAAAAAdAAAAAAAdAAAAAACdAAAAAACdAAAAAAAdAAAAAADYgAAAAACVwAAAAACYgAAAAAAVwAAAAACdwAAAAAAdAAAAAACdAAAAAACdAAAAAAAdAAAAAABdAAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAAAdwAAAAAAdwAAAAAAYgAAAAAAYgAAAAADYgAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAdAAAAAABdwAAAAAAdAAAAAACdAAAAAAAdAAAAAABdwAAAAAAVwAAAAADYgAAAAABVwAAAAADVwAAAAADdwAAAAAAGwAAAAABGwAAAAACGwAAAAABPAAAAAAAdwAAAAAAJAAAAAAAdwAAAAAAJAAAAAAAJAAAAAACJAAAAAAAdwAAAAAAVwAAAAAAYgAAAAAAYgAAAAAAVwAAAAADdwAAAAAAGwAAAAADGwAAAAACGwAAAAAAPAAAAAAAPAAAAAAAJAAAAAAAdwAAAAAAJAAAAAAAJAAAAAADJAAAAAAAdwAAAAAAVwAAAAADVwAAAAADYgAAAAADVwAAAAACdwAAAAAAGwAAAAADGwAAAAABGwAAAAABPAAAAAAAPAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAYgAAAAAAYgAAAAADYgAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAZwAAAAAAaAAAAAADaAAAAAADdwAAAAAAdwAAAAAAYgAAAAAAYgAAAAADYgAAAAABYgAAAAABYgAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAYgAAAAABYgAAAAADYgAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAWQAAAAADWQAAAAACIAAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAAAVwAAAAABVwAAAAAAVwAAAAAAYgAAAAADdAAAAAAAdAAAAAACdAAAAAACdAAAAAABdAAAAAACGwAAAAACGwAAAAADWQAAAAACGwAAAAABGwAAAAADGwAAAAADGwAAAAADVwAAAAABVwAAAAAAVwAAAAACYgAAAAADdAAAAAACdAAAAAACdAAAAAAAdAAAAAADdAAAAAAAGwAAAAAAGwAAAAAAWQAAAAACGwAAAAACGwAAAAADGwAAAAACGwAAAAADVwAAAAAAVwAAAAACVwAAAAAAYgAAAAAAdAAAAAADdAAAAAADdAAAAAAAdAAAAAABdAAAAAACGwAAAAAAGwAAAAABWQAAAAAAGwAAAAADGwAAAAAAGwAAAAAAGwAAAAACVwAAAAADVwAAAAADVwAAAAADYgAAAAADdAAAAAACdAAAAAABdAAAAAADdAAAAAABdwAAAAAAVwAAAAAAVwAAAAACVwAAAAADVwAAAAABVwAAAAAAVwAAAAABVwAAAAADVwAAAAABVwAAAAADVwAAAAACYgAAAAADdAAAAAAAdAAAAAAAdAAAAAACdAAAAAADdAAAAAAD
version: 6
1,0:
ind: 1,0
- tiles: dgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAADGwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAYQAAAAADYQAAAAADYQAAAAABYQAAAAAAYQAAAAAALwAAAAAALwAAAAAALwAAAAAAdgAAAAAAVwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeAAAAAAAdgAAAAAAVwAAAAACVwAAAAAAVwAAAAACVwAAAAAAVwAAAAAAVwAAAAABVwAAAAABVwAAAAACVwAAAAAAVwAAAAADYQAAAAADVwAAAAABVwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAASgAAAAACSgAAAAADYQAAAAADYQAAAAACZgAAAAAAZgAAAAAAZgAAAAAAYQAAAAAAYQAAAAADYQAAAAABYQAAAAADYQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAASgAAAAABVwAAAAAAVwAAAAABVwAAAAACVwAAAAAAVwAAAAACVwAAAAACVwAAAAACVwAAAAABYQAAAAACVwAAAAABVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACYQAAAAABVwAAAAADdgAAAAAAdgAAAAAAYQAAAAAAYQAAAAACYQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAYQAAAAADYQAAAAACYQAAAAADdgAAAAAAIAAAAAABIAAAAAADIAAAAAABVwAAAAACVwAAAAADVwAAAAABdgAAAAAAVwAAAAACVwAAAAADdgAAAAAAZQAAAAAAdgAAAAAAVwAAAAAAYQAAAAABVwAAAAADdgAAAAAAIAAAAAAAIAAAAAADIAAAAAADVwAAAAABVwAAAAABVwAAAAABVwAAAAACVwAAAAAAVwAAAAACdgAAAAAAZQAAAAAAdgAAAAAAVwAAAAADYQAAAAADVwAAAAACdgAAAAAAIAAAAAADIAAAAAABIAAAAAAAVwAAAAAAVwAAAAAAVwAAAAACdgAAAAAAVwAAAAACVwAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAVwAAAAACYQAAAAAAVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACVwAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAVwAAAAACYQAAAAABVwAAAAADVwAAAAABVwAAAAADVwAAAAACVwAAAAAAVwAAAAADVwAAAAACVwAAAAABdgAAAAAAVwAAAAACVwAAAAABdgAAAAAAeAAAAAAAdgAAAAAAVwAAAAAAYQAAAAABVwAAAAADYQAAAAACYQAAAAAAdgAAAAAAYQAAAAACYQAAAAADVwAAAAACVwAAAAADdgAAAAAAVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACYQAAAAAAVwAAAAABYQAAAAACYQAAAAACdgAAAAAAYQAAAAADYQAAAAAAVwAAAAABVwAAAAAAdgAAAAAAVwAAAAABVwAAAAABdgAAAAAAeAAAAAAAdgAAAAAAVwAAAAACYQAAAAADVwAAAAAAYQAAAAAAYQAAAAACVwAAAAACYQAAAAAAYQAAAAADVwAAAAACVwAAAAABdgAAAAAAVwAAAAACVwAAAAADZQAAAAAAZgAAAAAAdgAAAAAAVwAAAAAAYQAAAAADVwAAAAAAYQAAAAAAYQAAAAABVwAAAAADYQAAAAACYQAAAAABVwAAAAABVwAAAAACdgAAAAAAVwAAAAADVwAAAAACZQAAAAAAZQAAAAAAdgAAAAAAVwAAAAADYQAAAAACVwAAAAADYQAAAAAAYQAAAAACdgAAAAAAYQAAAAABYQAAAAACVwAAAAADVwAAAAACdgAAAAAAVwAAAAADVwAAAAAA
+ tiles: dwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAYgAAAAAAYgAAAAADYgAAAAACYgAAAAABYgAAAAABLwAAAAAALwAAAAAALwAAAAAAdwAAAAAAVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAeQAAAAAAdwAAAAAAVwAAAAADVwAAAAACVwAAAAAAVwAAAAACVwAAAAABVwAAAAACVwAAAAADVwAAAAACVwAAAAAAVwAAAAABYgAAAAADVwAAAAADVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACSgAAAAACSgAAAAADYgAAAAACYgAAAAABZwAAAAAAZwAAAAAAZwAAAAAAYgAAAAADYgAAAAADYgAAAAADYgAAAAABYgAAAAADdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACSgAAAAADVwAAAAABVwAAAAABVwAAAAACVwAAAAACVwAAAAAAVwAAAAABVwAAAAAAVwAAAAACYgAAAAADVwAAAAACVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABYgAAAAACVwAAAAAAdwAAAAAAdwAAAAAAYgAAAAACYgAAAAADYgAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAYgAAAAABYgAAAAADYgAAAAAAdwAAAAAAIAAAAAADIAAAAAACIAAAAAABVwAAAAAAVwAAAAACVwAAAAAAdwAAAAAAVwAAAAADVwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAVwAAAAACYgAAAAAAVwAAAAADdwAAAAAAIAAAAAACIAAAAAABIAAAAAAAVwAAAAADVwAAAAACVwAAAAADVwAAAAADVwAAAAACVwAAAAACdwAAAAAAZgAAAAAAdwAAAAAAVwAAAAABYgAAAAAAVwAAAAABdwAAAAAAIAAAAAACIAAAAAADIAAAAAAAVwAAAAABVwAAAAACVwAAAAAAdwAAAAAAVwAAAAACVwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAVwAAAAADYgAAAAADVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADVwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAVwAAAAACYgAAAAABVwAAAAADVwAAAAABVwAAAAAAVwAAAAACVwAAAAABVwAAAAABVwAAAAABVwAAAAACdwAAAAAAVwAAAAACVwAAAAACdwAAAAAAeQAAAAAAdwAAAAAAVwAAAAABYgAAAAABVwAAAAADYgAAAAADYgAAAAAAdwAAAAAAYgAAAAADYgAAAAADVwAAAAAAVwAAAAACdwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAYgAAAAADVwAAAAADYgAAAAACYgAAAAACdwAAAAAAYgAAAAACYgAAAAADVwAAAAADVwAAAAAAdwAAAAAAVwAAAAABVwAAAAADdwAAAAAAeQAAAAAAdwAAAAAAVwAAAAAAYgAAAAACVwAAAAACYgAAAAACYgAAAAABVwAAAAABYgAAAAADYgAAAAAAVwAAAAADVwAAAAABdwAAAAAAVwAAAAAAVwAAAAABZgAAAAAAZwAAAAAAdwAAAAAAVwAAAAABYgAAAAABVwAAAAADYgAAAAADYgAAAAADVwAAAAABYgAAAAADYgAAAAABVwAAAAABVwAAAAACdwAAAAAAVwAAAAADVwAAAAACZgAAAAAAZgAAAAAAdwAAAAAAVwAAAAAAYgAAAAACVwAAAAADYgAAAAADYgAAAAAAdwAAAAAAYgAAAAAAYgAAAAADVwAAAAACVwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAB
version: 6
2,-2:
ind: 2,-2
- tiles: GwAAAAACGwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAADGwAAAAADGwAAAAABdgAAAAAAGwAAAAABGwAAAAABcwAAAAACdgAAAAAAcwAAAAABGwAAAAABGwAAAAACLwAAAAAAGwAAAAABGwAAAAABcwAAAAABdgAAAAAAGwAAAAAAGwAAAAADGwAAAAAAGwAAAAACGwAAAAACGwAAAAADcwAAAAAAcwAAAAABcwAAAAABGwAAAAACGwAAAAAALwAAAAAAGwAAAAACGwAAAAAAcwAAAAABdgAAAAAAGwAAAAADGwAAAAADGwAAAAABdgAAAAAAGwAAAAAAGwAAAAABcwAAAAACdgAAAAAAcwAAAAADGwAAAAAAGwAAAAADGwAAAAABGwAAAAAAGwAAAAACcwAAAAABdgAAAAAAGwAAAAABGwAAAAACGwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAIAAAAAAAcwAAAAABcwAAAAACcwAAAAABcwAAAAABcwAAAAABcwAAAAAAdgAAAAAAGwAAAAADGwAAAAABGwAAAAACdgAAAAAAcwAAAAACcwAAAAADcwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAABGwAAAAAAGwAAAAAAVwAAAAAAcwAAAAACcwAAAAAAcwAAAAABdgAAAAAAGwAAAAABGwAAAAACGwAAAAABVwAAAAADVwAAAAAAcwAAAAAAIAAAAAAAdgAAAAAAGwAAAAABVwAAAAABVwAAAAAAVwAAAAAAcwAAAAACcwAAAAADcwAAAAADGwAAAAADGwAAAAABGwAAAAADGwAAAAADVwAAAAACVwAAAAABVwAAAAAAVwAAAAACdgAAAAAAVwAAAAAAVwAAAAACVwAAAAABVwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAAAGwAAAAABGwAAAAACVwAAAAABVwAAAAADVwAAAAABVwAAAAABdgAAAAAAVwAAAAADVwAAAAADVwAAAAABdgAAAAAAaQAAAAADaQAAAAAAaQAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABVwAAAAABVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABVwAAAAAAVwAAAAAAVwAAAAACVwAAAAADVwAAAAABVwAAAAAAdgAAAAAAVwAAAAAAVwAAAAABVwAAAAADVwAAAAABVwAAAAABVwAAAAABVwAAAAADYQAAAAADVwAAAAACVwAAAAAAVwAAAAAAVwAAAAADVwAAAAAAVwAAAAADVwAAAAADYQAAAAACVwAAAAABSgAAAAABSgAAAAACYQAAAAADSgAAAAADSgAAAAADYQAAAAADYQAAAAAASgAAAAABYQAAAAADSgAAAAADSgAAAAADSgAAAAADYQAAAAACSgAAAAABYQAAAAAAYQAAAAACVwAAAAACVwAAAAACVwAAAAABVwAAAAACVwAAAAACVwAAAAADYQAAAAADVwAAAAAAVwAAAAACVwAAAAACYQAAAAADVwAAAAAAVwAAAAACVwAAAAADYQAAAAABVwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABYQAAAAACVwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAVwAAAAAAVwAAAAACVwAAAAAAdgAAAAAAVwAAAAABYQAAAAACVwAAAAACdgAAAAAAdgAAAAAAZgAAAAAAZgAAAAAA
+ tiles: GwAAAAABGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACGwAAAAAAGwAAAAACdwAAAAAAGwAAAAABGwAAAAADdAAAAAABdwAAAAAAdAAAAAAAGwAAAAAAGwAAAAADLwAAAAAAGwAAAAAAGwAAAAAAdAAAAAADdwAAAAAAGwAAAAABGwAAAAABGwAAAAAAGwAAAAACGwAAAAADGwAAAAABdAAAAAAAdAAAAAADdAAAAAACGwAAAAABGwAAAAABLwAAAAAAGwAAAAAAGwAAAAADdAAAAAADdwAAAAAAGwAAAAABGwAAAAADGwAAAAABdwAAAAAAGwAAAAABGwAAAAAAdAAAAAABdwAAAAAAdAAAAAABGwAAAAABGwAAAAACGwAAAAABGwAAAAACGwAAAAAAdAAAAAABdwAAAAAAGwAAAAACGwAAAAABGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAIAAAAAADdAAAAAACdAAAAAACdAAAAAACdAAAAAACdAAAAAACdAAAAAACdwAAAAAAGwAAAAAAGwAAAAADGwAAAAADdwAAAAAAdAAAAAABdAAAAAADdAAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAAAGwAAAAACVwAAAAABdAAAAAADdAAAAAACdAAAAAADdwAAAAAAGwAAAAABGwAAAAABGwAAAAABVwAAAAADVwAAAAABdAAAAAADIAAAAAABdwAAAAAAGwAAAAACVwAAAAABVwAAAAACVwAAAAAAdAAAAAAAdAAAAAACdAAAAAADGwAAAAADGwAAAAAAGwAAAAAAGwAAAAABVwAAAAACVwAAAAAAVwAAAAADVwAAAAADdwAAAAAAVwAAAAACVwAAAAACVwAAAAACVwAAAAABdwAAAAAAIAAAAAABdwAAAAAAdwAAAAAAGwAAAAABGwAAAAADGwAAAAACVwAAAAACVwAAAAACVwAAAAAAVwAAAAACdwAAAAAAVwAAAAABVwAAAAAAVwAAAAADdwAAAAAAagAAAAACagAAAAABagAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAACVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAABVwAAAAAAVwAAAAABVwAAAAACVwAAAAABVwAAAAABdwAAAAAAVwAAAAADVwAAAAAAVwAAAAABVwAAAAACVwAAAAACVwAAAAABVwAAAAACYgAAAAADVwAAAAAAVwAAAAABVwAAAAADVwAAAAABVwAAAAADVwAAAAABVwAAAAADYgAAAAACVwAAAAAASgAAAAADSgAAAAABYgAAAAADSgAAAAADSgAAAAADYgAAAAADYgAAAAAASgAAAAABYgAAAAACSgAAAAACSgAAAAAASgAAAAACYgAAAAABSgAAAAAAYgAAAAAAYgAAAAABVwAAAAABVwAAAAAAVwAAAAADVwAAAAADVwAAAAACVwAAAAAAYgAAAAACVwAAAAADVwAAAAAAVwAAAAAAYgAAAAACVwAAAAACVwAAAAABVwAAAAABYgAAAAADVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAYgAAAAADVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAVwAAAAADVwAAAAACVwAAAAADdwAAAAAAVwAAAAAAYgAAAAACVwAAAAACdwAAAAAAdwAAAAAAZwAAAAAAZwAAAAAA
version: 6
2,-1:
ind: 2,-1
- tiles: dQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAVwAAAAAAVwAAAAACVwAAAAADVwAAAAACVwAAAAABYQAAAAABVwAAAAADdgAAAAAAeAAAAAAAZQAAAAAAdgAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAdgAAAAAAVwAAAAACYQAAAAACVwAAAAABdgAAAAAAeAAAAAAAZwAAAAAAdgAAAAAAdgAAAAAASwAAAAAASwAAAAAASwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAYQAAAAABYQAAAAABYQAAAAABdgAAAAAAdgAAAAAAZwAAAAACdgAAAAAAdgAAAAAASwAAAAAASwAAAAAASwAAAAAAdgAAAAAAZgAAAAAAeAAAAAAAdgAAAAAAYQAAAAACYQAAAAAAYQAAAAACYQAAAAAAYQAAAAACdgAAAAAAZwAAAAABdgAAAAAAdgAAAAAASwAAAAAASwAAAAAASwAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACYQAAAAACVwAAAAACdgAAAAAAdgAAAAAAZwAAAAADdgAAAAAAdgAAAAAASwAAAAAASwAAAAAASwAAAAAAdgAAAAAAZgAAAAAAeAAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAYQAAAAACVwAAAAADdgAAAAAAdgAAAAAAeAAAAAAAdgAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAIAAAAAAAYQAAAAACVwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAZwAAAAABeAAAAAAAdgAAAAAAVwAAAAABYQAAAAAAVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAZgAAAAAAZwAAAAAAeAAAAAAAdgAAAAAAVwAAAAADYQAAAAABVwAAAAACdgAAAAAAbgAAAAABbgAAAAABdgAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAZgAAAAAAZwAAAAACdgAAAAAAdgAAAAAAVwAAAAAAYQAAAAADVwAAAAACdgAAAAAAbgAAAAAAbgAAAAADaQAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAADYQAAAAABVwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZwAAAAABZwAAAAADZwAAAAABdgAAAAAAVwAAAAABVwAAAAACVwAAAAADVwAAAAABdgAAAAAAVwAAAAABYQAAAAAAVwAAAAABdgAAAAAAbgAAAAADbgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAADVwAAAAACVwAAAAADVwAAAAACVwAAAAABVwAAAAABYQAAAAAAVwAAAAABdgAAAAAAbgAAAAABbgAAAAAAaQAAAAAAIAAAAAADIAAAAAADIAAAAAACdgAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAdgAAAAAAVwAAAAACSgAAAAACVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAIAAAAAABIAAAAAADIAAAAAAAdgAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAdgAAAAAAVwAAAAAASgAAAAACVwAAAAACdgAAAAAAbgAAAAABbgAAAAADdgAAAAAAGwAAAAADGwAAAAACGwAAAAADdgAAAAAAYQAAAAAAYQAAAAABYQAAAAACYQAAAAACdgAAAAAAVwAAAAACYQAAAAABVwAAAAACdgAAAAAAbgAAAAAAbgAAAAAAaQAAAAAA
+ tiles: dgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAVwAAAAABVwAAAAACVwAAAAAAVwAAAAADVwAAAAADYgAAAAADVwAAAAACdwAAAAAAeQAAAAAAZgAAAAAAdwAAAAAAdgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdwAAAAAAVwAAAAAAVwAAAAABVwAAAAABdwAAAAAAVwAAAAABYgAAAAAAVwAAAAACdwAAAAAAeQAAAAAAaAAAAAACdwAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAYgAAAAACYgAAAAABYgAAAAAAdwAAAAAAdwAAAAAAaAAAAAABdwAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAZwAAAAAAeQAAAAAAdwAAAAAAYgAAAAACYgAAAAACYgAAAAACYgAAAAACYgAAAAABdwAAAAAAaAAAAAACdwAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAYgAAAAAAVwAAAAADdwAAAAAAdwAAAAAAaAAAAAAAdwAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAZwAAAAAAeQAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAYgAAAAAAVwAAAAACdwAAAAAAdwAAAAAAeQAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAIAAAAAABYgAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAaAAAAAADeQAAAAAAdwAAAAAAVwAAAAAAYgAAAAAAVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZwAAAAAAaAAAAAABeQAAAAAAdwAAAAAAVwAAAAADYgAAAAADVwAAAAACdwAAAAAAbwAAAAADbwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZwAAAAAAaAAAAAACdwAAAAAAdwAAAAAAVwAAAAABYgAAAAADVwAAAAABdwAAAAAAbwAAAAACbwAAAAADagAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACYgAAAAAAVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAaAAAAAADaAAAAAAAaAAAAAAAdwAAAAAAVwAAAAABVwAAAAAAVwAAAAABVwAAAAACdwAAAAAAVwAAAAADYgAAAAADVwAAAAADdwAAAAAAbwAAAAADbwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAAAVwAAAAAAVwAAAAACVwAAAAACVwAAAAABYgAAAAABVwAAAAADdwAAAAAAbwAAAAAAbwAAAAADagAAAAAAIAAAAAAAIAAAAAADIAAAAAABdwAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAdwAAAAAAVwAAAAADSgAAAAADVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAIAAAAAADIAAAAAACIAAAAAACdwAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAdwAAAAAAVwAAAAADSgAAAAACVwAAAAAAdwAAAAAAbwAAAAACbwAAAAAAdwAAAAAAGwAAAAAAGwAAAAACGwAAAAADdwAAAAAAYgAAAAADYgAAAAAAYgAAAAABYgAAAAACdwAAAAAAVwAAAAADYgAAAAADVwAAAAABdwAAAAAAbwAAAAABbwAAAAACagAAAAAD
version: 6
-2,0:
ind: -2,0
- tiles: YQAAAAAAYQAAAAABYQAAAAAAVwAAAAACVwAAAAAAVwAAAAAAVwAAAAADVwAAAAACVwAAAAADVwAAAAABYQAAAAADcwAAAAADcwAAAAACcwAAAAADcwAAAAAAcwAAAAADYQAAAAAAYQAAAAACWQAAAAADVwAAAAABVwAAAAACVwAAAAABVwAAAAADVwAAAAADVwAAAAAAVwAAAAADYQAAAAADcwAAAAACcwAAAAADcwAAAAACcwAAAAABcwAAAAADYQAAAAACYQAAAAACWQAAAAADVwAAAAADVwAAAAACVwAAAAAAVwAAAAAAVwAAAAADVwAAAAACVwAAAAABYQAAAAADcwAAAAACcwAAAAACcwAAAAABcwAAAAABcwAAAAAAYQAAAAAAYQAAAAAAYQAAAAACVwAAAAADVwAAAAABVwAAAAABVwAAAAABVwAAAAABVwAAAAAAVwAAAAACYQAAAAADcwAAAAAAcwAAAAACcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAADcwAAAAACVwAAAAABVwAAAAABVwAAAAAAVwAAAAAAVwAAAAACVwAAAAAALwAAAAAAcwAAAAACcwAAAAAAcwAAAAAAcwAAAAABVwAAAAADVwAAAAABVwAAAAADGwAAAAAAcwAAAAACLwAAAAAALwAAAAAALwAAAAAAVwAAAAAAVwAAAAAAVwAAAAABLwAAAAAAcwAAAAABGwAAAAAAGwAAAAADGwAAAAADdgAAAAAAIAAAAAADGwAAAAACGwAAAAAAcwAAAAAALwAAAAAALwAAAAAALwAAAAAAVwAAAAACVwAAAAACVwAAAAABLwAAAAAAcwAAAAACIAAAAAADIAAAAAAAIAAAAAABdgAAAAAAIAAAAAADGwAAAAAAGwAAAAADcwAAAAADLwAAAAAALwAAAAAALwAAAAAAVwAAAAACVwAAAAADVwAAAAABLwAAAAAAcwAAAAADIAAAAAACIAAAAAADIAAAAAABdgAAAAAAIAAAAAADGwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAADYQAAAAADYQAAAAACYQAAAAAAYQAAAAAAYQAAAAABYQAAAAABYQAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACVwAAAAACYQAAAAAAYQAAAAABYQAAAAAAYQAAAAAAYQAAAAADYQAAAAAAYQAAAAABYQAAAAAAdgAAAAAAeAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAYQAAAAABYQAAAAADYQAAAAABdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAcwAAAAADcwAAAAAAcwAAAAADcwAAAAACVwAAAAACVwAAAAACYQAAAAACVwAAAAAAcgAAAAAAcgAAAAABcgAAAAADcgAAAAADcgAAAAACcgAAAAABKgAAAAAAKgAAAAAAcwAAAAABcwAAAAADcwAAAAACIAAAAAABdgAAAAAAVwAAAAACYQAAAAAAVwAAAAADdgAAAAAAIAAAAAAAcgAAAAADcgAAAAADcgAAAAADcgAAAAADdgAAAAAAKgAAAAAAcwAAAAAAcwAAAAADcwAAAAADcwAAAAAAVwAAAAACVwAAAAABYQAAAAADVwAAAAADVwAAAAACWgAAAAABWgAAAAADWgAAAAADWgAAAAAAWgAAAAAAdgAAAAAAKgAAAAAAYQAAAAAAYQAAAAACYQAAAAACYQAAAAACVwAAAAABVwAAAAACYQAAAAABVwAAAAAAVwAAAAADWgAAAAADWgAAAAADWgAAAAACWgAAAAADWgAAAAADdgAAAAAAKgAAAAAAOAAAAAAAOAAAAAAAVwAAAAABVwAAAAABdgAAAAAAVwAAAAACYQAAAAACVwAAAAABdgAAAAAAWgAAAAABWgAAAAABWgAAAAACWgAAAAAAWgAAAAADdgAAAAAAdgAAAAAA
+ tiles: YgAAAAABYgAAAAAAYgAAAAABVwAAAAABVwAAAAAAVwAAAAADVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAABYgAAAAAAdAAAAAADdAAAAAABdAAAAAACdAAAAAACdAAAAAAAYgAAAAAAYgAAAAAAWQAAAAACVwAAAAACVwAAAAADVwAAAAAAVwAAAAAAVwAAAAACVwAAAAADVwAAAAAAYgAAAAACdAAAAAAAdAAAAAACdAAAAAAAdAAAAAACdAAAAAAAYgAAAAADYgAAAAACWQAAAAADVwAAAAADVwAAAAAAVwAAAAACVwAAAAADVwAAAAADVwAAAAACVwAAAAADYgAAAAAAdAAAAAACdAAAAAABdAAAAAADdAAAAAADdAAAAAAAYgAAAAAAYgAAAAADYgAAAAACVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAABVwAAAAABVwAAAAADVwAAAAAAYgAAAAACdAAAAAAAdAAAAAADdAAAAAABdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAVwAAAAAAVwAAAAABVwAAAAACVwAAAAACVwAAAAACVwAAAAABLwAAAAAAdAAAAAABdAAAAAAAdAAAAAAAdAAAAAADVwAAAAAAVwAAAAAAVwAAAAACGwAAAAADdAAAAAACLwAAAAAALwAAAAAALwAAAAAAVwAAAAACVwAAAAACVwAAAAADLwAAAAAAdAAAAAABGwAAAAAAGwAAAAACGwAAAAABdwAAAAAAIAAAAAABGwAAAAACGwAAAAABdAAAAAAALwAAAAAALwAAAAAALwAAAAAAVwAAAAABVwAAAAACVwAAAAABLwAAAAAAdAAAAAACIAAAAAACIAAAAAACIAAAAAACdwAAAAAAIAAAAAADGwAAAAACGwAAAAABdAAAAAABLwAAAAAALwAAAAAALwAAAAAAVwAAAAABVwAAAAAAVwAAAAAALwAAAAAAdAAAAAACIAAAAAACIAAAAAABIAAAAAAAdwAAAAAAIAAAAAADGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACYgAAAAABYgAAAAAAYgAAAAACYgAAAAACYgAAAAACYgAAAAADYgAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAYgAAAAACYgAAAAACYgAAAAADYgAAAAADYgAAAAABYgAAAAACYgAAAAADYgAAAAADdwAAAAAAeQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAYgAAAAABYgAAAAABYgAAAAAAdwAAAAAAbwAAAAAAVwAAAAABVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAAAdAAAAAABdAAAAAAAdAAAAAAAVwAAAAACVwAAAAADYgAAAAABVwAAAAAAcwAAAAACcwAAAAAAcwAAAAAAcwAAAAADcwAAAAACcwAAAAABKgAAAAAAKgAAAAAAdAAAAAAAdAAAAAABdAAAAAACIAAAAAACdwAAAAAAVwAAAAABYgAAAAACVwAAAAAAdwAAAAAAIAAAAAABcwAAAAABcwAAAAAAcwAAAAABcwAAAAADdwAAAAAAKgAAAAAAdAAAAAABdAAAAAABdAAAAAADdAAAAAACVwAAAAACVwAAAAACYgAAAAADVwAAAAABVwAAAAAAWgAAAAABWgAAAAADWgAAAAADWgAAAAACWgAAAAABdwAAAAAAKgAAAAAAYgAAAAAAYgAAAAACYgAAAAABYgAAAAACVwAAAAADVwAAAAABYgAAAAACVwAAAAABVwAAAAADWgAAAAAAWgAAAAABWgAAAAACWgAAAAADWgAAAAACdwAAAAAAKgAAAAAAOAAAAAAAOAAAAAAAVwAAAAABVwAAAAACdwAAAAAAVwAAAAADYgAAAAADVwAAAAAAdwAAAAAAWgAAAAAAWgAAAAAAWgAAAAACWgAAAAABWgAAAAABdwAAAAAAdwAAAAAA
version: 6
1,-3:
ind: 1,-3
- tiles: ZgAAAAAAdgAAAAAAIAAAAAAAIAAAAAABdgAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAIAAAAAABIAAAAAACdgAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAZgAAAAAAGwAAAAADGwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAIAAAAAADIAAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAIAAAAAACIAAAAAACZgAAAAAAZgAAAAAAIAAAAAAAIAAAAAAAdgAAAAAAdgAAAAAAGwAAAAACGwAAAAADGwAAAAAAGwAAAAABGwAAAAACGwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAZgAAAAAAIAAAAAAAIAAAAAADdgAAAAAAdgAAAAAAGwAAAAABGwAAAAABGwAAAAAAGwAAAAADGwAAAAABGwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAZgAAAAAAIAAAAAAAIAAAAAABdgAAAAAAdgAAAAAAGwAAAAAAdgAAAAAAGwAAAAAAGwAAAAACdgAAAAAAGwAAAAADdgAAAAAAdgAAAAAAIAAAAAABIAAAAAAAZgAAAAAAZgAAAAAAIAAAAAAAIAAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAZgAAAAAAGwAAAAAAGwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeAAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAIAAAAAADIAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAACGwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAADVwAAAAADVwAAAAADVwAAAAADIAAAAAADIAAAAAACIAAAAAABIAAAAAAAdgAAAAAAGwAAAAADGwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAAAVwAAAAADVwAAAAAAGwAAAAABGwAAAAAAGwAAAAABGwAAAAAAdgAAAAAAGwAAAAABGwAAAAACdgAAAAAAIAAAAAABdgAAAAAAeAAAAAAAdgAAAAAAVwAAAAABVwAAAAAAVwAAAAABVwAAAAAAGwAAAAAAGwAAAAABGwAAAAABGwAAAAADIAAAAAADIAAAAAAAIAAAAAACIAAAAAACIAAAAAADdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAADVwAAAAADVwAAAAAAVwAAAAAAIAAAAAAAIAAAAAADIAAAAAACIAAAAAACdgAAAAAAGwAAAAADGwAAAAAAdgAAAAAAIAAAAAABdgAAAAAAVwAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAIAAAAAADVwAAAAABVwAAAAAAYQAAAAABVwAAAAABVwAAAAADVwAAAAADdgAAAAAAGwAAAAABYQAAAAABYQAAAAABYQAAAAACYQAAAAAAYQAAAAABGwAAAAABdgAAAAAAGwAAAAABSgAAAAABYQAAAAACYQAAAAACYQAAAAABYQAAAAADVwAAAAAAdgAAAAAAGwAAAAADYQAAAAABYQAAAAABYQAAAAADYQAAAAADYQAAAAABGwAAAAADdgAAAAAAGwAAAAAA
+ tiles: ZwAAAAAAdwAAAAAAIAAAAAADIAAAAAACdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAIAAAAAACIAAAAAACdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAZwAAAAAAGwAAAAACGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAIAAAAAAAIAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAIAAAAAACIAAAAAABZwAAAAAAZwAAAAAAIAAAAAAAIAAAAAABdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAACGwAAAAADGwAAAAABGwAAAAADGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAZwAAAAAAIAAAAAABIAAAAAAAdwAAAAAAdwAAAAAAGwAAAAADGwAAAAACGwAAAAAAGwAAAAADGwAAAAADGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAZwAAAAAAIAAAAAAAIAAAAAABdwAAAAAAdwAAAAAAGwAAAAACdwAAAAAAGwAAAAABGwAAAAAAdwAAAAAAGwAAAAACdwAAAAAAdwAAAAAAIAAAAAABIAAAAAACZwAAAAAAZwAAAAAAIAAAAAACIAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAZwAAAAAAGwAAAAABGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAeQAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAIAAAAAADIAAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAADVwAAAAAAVwAAAAACIAAAAAACIAAAAAACIAAAAAAAIAAAAAACdwAAAAAAGwAAAAACGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAACVwAAAAAAVwAAAAACGwAAAAABGwAAAAABGwAAAAADGwAAAAADdwAAAAAAGwAAAAADGwAAAAADdwAAAAAAIAAAAAABdwAAAAAAeQAAAAAAdwAAAAAAVwAAAAADVwAAAAADVwAAAAACVwAAAAABGwAAAAADGwAAAAABGwAAAAABGwAAAAABIAAAAAAAIAAAAAAAIAAAAAADIAAAAAACIAAAAAACdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAADVwAAAAACIAAAAAACIAAAAAAAIAAAAAAAIAAAAAABdwAAAAAAGwAAAAADGwAAAAAAdwAAAAAAIAAAAAABdwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAIAAAAAACVwAAAAADVwAAAAACYgAAAAAAVwAAAAACVwAAAAAAVwAAAAADdwAAAAAAGwAAAAABYgAAAAACYgAAAAABYgAAAAABYgAAAAABYgAAAAADGwAAAAAAdwAAAAAAGwAAAAADSgAAAAACYgAAAAACYgAAAAABYgAAAAACYgAAAAADVwAAAAAAdwAAAAAAGwAAAAACYgAAAAACYgAAAAAAYgAAAAABYgAAAAADYgAAAAABGwAAAAABdwAAAAAAGwAAAAAC
version: 6
0,-3:
ind: 0,-3
- tiles: dQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdgAAAAAADwAAAAAADwAAAAAADwAAAAAAdgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdgAAAAAADwAAAAAADwAAAAAADwAAAAAAdgAAAAAAdgAAAAAAGwAAAAABGwAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAGwAAAAACGwAAAAAAGwAAAAADdgAAAAAAdgAAAAAAIAAAAAAAIAAAAAABdgAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAZwAAAAACZwAAAAABdgAAAAAAZQAAAAAAZQAAAAAAeAAAAAAAdgAAAAAAZgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAeAAAAAAAdgAAAAAAVwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAVwAAAAACVwAAAAAAIAAAAAACIAAAAAAAIAAAAAADdgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAVwAAAAABVwAAAAADYQAAAAAAYQAAAAABIAAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAVwAAAAABVwAAAAABYQAAAAAAYQAAAAACIAAAAAADdgAAAAAAVwAAAAABVwAAAAAAGwAAAAACGwAAAAADGwAAAAADIAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAIAAAAAADIAAAAAAAIAAAAAACIAAAAAABIAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAAAGwAAAAADGwAAAAACIAAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACVwAAAAADVwAAAAABVwAAAAADdgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAeAAAAAAAdgAAAAAAZwAAAAADZwAAAAABZwAAAAAAdgAAAAAAdgAAAAAAeAAAAAAAVwAAAAAAVwAAAAAAVwAAAAACVwAAAAACdgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACVwAAAAACVwAAAAACYQAAAAACVwAAAAACVwAAAAAAVwAAAAADVwAAAAABVwAAAAAAVwAAAAABVwAAAAAAVwAAAAADdgAAAAAAdgAAAAAAVwAAAAADdgAAAAAAVwAAAAACYQAAAAAAYQAAAAADYQAAAAABYQAAAAACSgAAAAADYQAAAAADSgAAAAAAYQAAAAAC
+ tiles: dgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAADwAAAAAADwAAAAAADwAAAAAAdwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAADwAAAAAADwAAAAAADwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACGwAAAAADdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAGwAAAAADGwAAAAADGwAAAAABdwAAAAAAdwAAAAAAIAAAAAACIAAAAAABdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAaAAAAAABaAAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAeQAAAAAAdwAAAAAAZwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAeQAAAAAAdwAAAAAAVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAVwAAAAACVwAAAAAAIAAAAAADIAAAAAADIAAAAAABdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAYgAAAAACYgAAAAADIAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAVwAAAAAAVwAAAAADYgAAAAADYgAAAAAAIAAAAAABdwAAAAAAVwAAAAACVwAAAAABGwAAAAABGwAAAAAAGwAAAAABIAAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAIAAAAAAAIAAAAAACIAAAAAACIAAAAAADIAAAAAADdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABGwAAAAACGwAAAAADIAAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAABVwAAAAABVwAAAAACdwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAeQAAAAAAdwAAAAAAaAAAAAABaAAAAAACaAAAAAAAdwAAAAAAdwAAAAAAeQAAAAAAVwAAAAACVwAAAAAAVwAAAAAAVwAAAAADdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAABVwAAAAAAYgAAAAAAVwAAAAABVwAAAAADVwAAAAABVwAAAAABVwAAAAACVwAAAAABVwAAAAAAVwAAAAACdwAAAAAAdwAAAAAAVwAAAAAAdwAAAAAAVwAAAAABYgAAAAADYgAAAAADYgAAAAADYgAAAAADSgAAAAABYgAAAAACSgAAAAACYgAAAAAA
version: 6
1,1:
ind: 1,1
- tiles: ZQAAAAAAZQAAAAAAdgAAAAAAVwAAAAADYQAAAAABVwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACVwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAYQAAAAACYQAAAAACYQAAAAAAdgAAAAAAVwAAAAADVwAAAAAAVwAAAAAAVwAAAAABVwAAAAADVwAAAAAAIAAAAAACVwAAAAAAVwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAYQAAAAABVwAAAAADdgAAAAAAVwAAAAABVwAAAAACVwAAAAABVwAAAAACVwAAAAADVwAAAAACVwAAAAADVwAAAAABVwAAAAADVwAAAAAAYQAAAAADVwAAAAADVwAAAAABYQAAAAADVwAAAAAAdgAAAAAAVwAAAAADYQAAAAADYQAAAAAAYQAAAAADVwAAAAACYQAAAAABYQAAAAABYQAAAAAAVwAAAAABYQAAAAACYQAAAAABYQAAAAABYQAAAAAAYQAAAAAAVwAAAAAAdgAAAAAAVwAAAAADYQAAAAAAYQAAAAACYQAAAAADVwAAAAADYQAAAAABYQAAAAADYQAAAAADVwAAAAAAVwAAAAABYQAAAAABVwAAAAACVwAAAAADVwAAAAACIAAAAAAAdgAAAAAAVwAAAAADYQAAAAAAYQAAAAAAYQAAAAABVwAAAAAAYQAAAAACYQAAAAADYQAAAAADVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAADVwAAAAADVwAAAAAAVwAAAAACVwAAAAABVwAAAAACVwAAAAACVwAAAAACbgAAAAAAbQAAAAADdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAVwAAAAABVwAAAAABVwAAAAADVwAAAAACVwAAAAADVwAAAAAAVwAAAAADVwAAAAAAVwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAbgAAAAABbQAAAAABdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: ZgAAAAAAZgAAAAAAdwAAAAAAVwAAAAAAYgAAAAACVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAYgAAAAABYgAAAAAAYgAAAAABdwAAAAAAVwAAAAABVwAAAAACVwAAAAACVwAAAAABVwAAAAACVwAAAAACIAAAAAADVwAAAAABVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABYgAAAAAAVwAAAAABdwAAAAAAVwAAAAADVwAAAAADVwAAAAADVwAAAAADVwAAAAABVwAAAAAAVwAAAAAAVwAAAAABVwAAAAACVwAAAAABYgAAAAACVwAAAAABVwAAAAAAYgAAAAAAVwAAAAACdwAAAAAAVwAAAAAAYgAAAAAAYgAAAAADYgAAAAADVwAAAAAAYgAAAAABYgAAAAABYgAAAAADVwAAAAADYgAAAAADYgAAAAACYgAAAAACYgAAAAADYgAAAAACVwAAAAACdwAAAAAAVwAAAAACYgAAAAABYgAAAAABYgAAAAADVwAAAAACYgAAAAAAYgAAAAACYgAAAAABVwAAAAAAVwAAAAACYgAAAAABVwAAAAADVwAAAAACVwAAAAAAIAAAAAADdwAAAAAAVwAAAAABYgAAAAABYgAAAAACYgAAAAABVwAAAAAAYgAAAAADYgAAAAADYgAAAAAAVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADVwAAAAACVwAAAAACVwAAAAABVwAAAAAAVwAAAAAAVwAAAAABVwAAAAACVwAAAAADbwAAAAAAbgAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAVwAAAAABVwAAAAABVwAAAAABVwAAAAADVwAAAAACVwAAAAACVwAAAAAAVwAAAAABVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAbwAAAAAAbgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
0,1:
ind: 0,1
- tiles: dgAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZwAAAAACZwAAAAADZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAeAAAAAAAdgAAAAAAeAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABVwAAAAADVwAAAAAAVwAAAAABYQAAAAABVwAAAAACVwAAAAAAVwAAAAABVwAAAAADVwAAAAABVwAAAAACVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAABVwAAAAADYQAAAAAAYQAAAAACYQAAAAABYQAAAAACYQAAAAABYQAAAAABYQAAAAABYQAAAAABYQAAAAABYQAAAAAAYQAAAAABYQAAAAACYQAAAAACYQAAAAADYQAAAAAAYQAAAAADVwAAAAABVwAAAAABVwAAAAAAYQAAAAACVwAAAAAAVwAAAAADVwAAAAABVwAAAAAAVwAAAAADVwAAAAACVwAAAAAAVwAAAAACVwAAAAADVwAAAAACVwAAAAADVwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAABVwAAAAACGwAAAAACGwAAAAAAGwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAbgAAAAADaQAAAAAAaQAAAAABbgAAAAABbQAAAAABbQAAAAACbQAAAAACVwAAAAACVwAAAAAAVwAAAAABGwAAAAABGwAAAAACGwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAbgAAAAABaQAAAAABaQAAAAACbgAAAAABbQAAAAADbQAAAAABbQAAAAAAdgAAAAAAVwAAAAAAVwAAAAADGwAAAAAAGwAAAAACGwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAbQAAAAAAbQAAAAAAbQAAAAACdgAAAAAAdgAAAAAAGwAAAAAAGwAAAAADGwAAAAADGwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAeAAAAAAAZwAAAAADZwAAAAAAdgAAAAAAbgAAAAABbgAAAAAAbgAAAAAAdgAAAAAAGwAAAAADGwAAAAADGwAAAAABGwAAAAAAGwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAABGwAAAAADGwAAAAADGwAAAAADGwAAAAADGwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeAAAAAAAdgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAKgAAAAAAKgAAAAAAVwAAAAABdgAAAAAAGwAAAAACGwAAAAABGwAAAAADGwAAAAADGwAAAAADSwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeAAAAAAAdgAAAAAAeAAAAAAAaQAAAAABaQAAAAADVwAAAAAAdgAAAAAAGwAAAAABGwAAAAABGwAAAAABGwAAAAACGwAAAAAASwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAKgAAAAAAdgAAAAAAKgAAAAAA
+ tiles: dwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAaAAAAAABaAAAAAABZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAeQAAAAAAdwAAAAAAeQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAeQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAAAVwAAAAABVwAAAAABYgAAAAABVwAAAAACVwAAAAABVwAAAAADVwAAAAABVwAAAAAAVwAAAAADVwAAAAABVwAAAAADVwAAAAACVwAAAAABVwAAAAAAVwAAAAABYgAAAAACYgAAAAADYgAAAAABYgAAAAADYgAAAAABYgAAAAACYgAAAAACYgAAAAACYgAAAAAAYgAAAAACYgAAAAABYgAAAAADYgAAAAADYgAAAAABYgAAAAAAYgAAAAAAVwAAAAACVwAAAAACVwAAAAACYgAAAAABVwAAAAAAVwAAAAACVwAAAAABVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAACVwAAAAAAVwAAAAAAVwAAAAACVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAdwAAAAAAVwAAAAABVwAAAAAAVwAAAAADGwAAAAADGwAAAAADGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAbwAAAAABagAAAAACagAAAAAAbwAAAAAAbgAAAAACbgAAAAABbgAAAAABVwAAAAADVwAAAAADVwAAAAADGwAAAAADGwAAAAADGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAbwAAAAADagAAAAADagAAAAACbwAAAAABbgAAAAABbgAAAAACbgAAAAABdwAAAAAAVwAAAAADVwAAAAAAGwAAAAABGwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAbgAAAAABbgAAAAADbgAAAAAAdwAAAAAAdwAAAAAAGwAAAAABGwAAAAACGwAAAAADGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAeQAAAAAAaAAAAAABaAAAAAADdwAAAAAAbwAAAAADbwAAAAACbwAAAAADdwAAAAAAGwAAAAABGwAAAAADGwAAAAADGwAAAAABGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADGwAAAAAAGwAAAAADGwAAAAADGwAAAAACGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAeQAAAAAAdwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAKgAAAAAAKgAAAAAAVwAAAAACdwAAAAAAGwAAAAAAGwAAAAABGwAAAAAAGwAAAAACGwAAAAABSwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAeQAAAAAAdwAAAAAAeQAAAAAAagAAAAABagAAAAADVwAAAAABdwAAAAAAGwAAAAACGwAAAAADGwAAAAABGwAAAAADGwAAAAABSwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAKgAAAAAAdwAAAAAAKgAAAAAA
version: 6
-1,1:
ind: -1,1
- tiles: ZQAAAAAAdgAAAAAAeAAAAAAAZgAAAAAAZgAAAAAAeAAAAAAAdgAAAAAAZwAAAAABZQAAAAAAZQAAAAAAeAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAZgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAADVwAAAAADVwAAAAABVwAAAAABVwAAAAADVwAAAAACVwAAAAACYQAAAAACVwAAAAAAVwAAAAAAVwAAAAACVwAAAAAAVwAAAAADVwAAAAABVwAAAAACVwAAAAABYQAAAAACYQAAAAADYQAAAAABYQAAAAABYQAAAAABYQAAAAACYQAAAAACYQAAAAAAYQAAAAACYQAAAAABSgAAAAACSgAAAAABYQAAAAAASgAAAAAASgAAAAADYQAAAAAAVwAAAAADVwAAAAADVwAAAAABVwAAAAAAVwAAAAACVwAAAAACVwAAAAADYQAAAAABVwAAAAACVwAAAAAAVwAAAAADVwAAAAABVwAAAAABVwAAAAABVwAAAAACVwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAACGwAAAAAAdgAAAAAAVwAAAAADVwAAAAAAVwAAAAABdgAAAAAAVwAAAAACVwAAAAACVwAAAAABdgAAAAAAVwAAAAABVwAAAAABVwAAAAABdgAAAAAAVwAAAAABGwAAAAAAGwAAAAACVwAAAAABVwAAAAACVwAAAAAAVwAAAAACdgAAAAAAVwAAAAAAVwAAAAACVwAAAAABdgAAAAAAVwAAAAADVwAAAAACVwAAAAABdgAAAAAAVwAAAAACGwAAAAADGwAAAAADVwAAAAACdgAAAAAAdgAAAAAAGwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAABdgAAAAAAVwAAAAAAIAAAAAADIAAAAAACVwAAAAACGwAAAAABGwAAAAABGwAAAAABGwAAAAACGwAAAAABGwAAAAADGwAAAAABGwAAAAACGwAAAAAAGwAAAAAAGwAAAAADdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAADdgAAAAAAGwAAAAADSgAAAAABSgAAAAAAGwAAAAABSgAAAAACSgAAAAAASgAAAAAAGwAAAAABSgAAAAABSgAAAAACGwAAAAAAVwAAAAADVwAAAAACVwAAAAADVwAAAAADIAAAAAAAGwAAAAABGwAAAAABGwAAAAADGwAAAAABGwAAAAADGwAAAAACGwAAAAACGwAAAAAAGwAAAAADGwAAAAAAGwAAAAAAVwAAAAABVwAAAAABVwAAAAAAVwAAAAABVwAAAAADGwAAAAABGwAAAAADGwAAAAAAGwAAAAADGwAAAAACVwAAAAADVwAAAAACVwAAAAAAVwAAAAADVwAAAAAAVwAAAAACVwAAAAADVwAAAAADVwAAAAACVwAAAAABVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAADVwAAAAABdgAAAAAAGwAAAAADGwAAAAAAGwAAAAABGwAAAAAAVwAAAAADVwAAAAAAVwAAAAADVwAAAAAAVwAAAAADIAAAAAAAIAAAAAADdgAAAAAAVwAAAAACVwAAAAABVwAAAAAB
+ tiles: ZgAAAAAAdwAAAAAAeQAAAAAAZwAAAAAAZwAAAAAAeQAAAAAAdwAAAAAAaAAAAAADZgAAAAAAZgAAAAAAeQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAZwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAeQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAABVwAAAAADVwAAAAAAVwAAAAACVwAAAAADVwAAAAABYgAAAAACVwAAAAADVwAAAAADVwAAAAABVwAAAAACVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAYgAAAAADYgAAAAADYgAAAAACYgAAAAADYgAAAAADYgAAAAACYgAAAAADYgAAAAAAYgAAAAACYgAAAAACSgAAAAAASgAAAAACYgAAAAADSgAAAAACSgAAAAABYgAAAAADVwAAAAAAVwAAAAACVwAAAAACVwAAAAACVwAAAAABVwAAAAAAVwAAAAACYgAAAAACVwAAAAAAVwAAAAADVwAAAAAAVwAAAAAAVwAAAAABVwAAAAAAVwAAAAADVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACGwAAAAABdwAAAAAAVwAAAAABVwAAAAADVwAAAAADdwAAAAAAVwAAAAAAVwAAAAABVwAAAAAAdwAAAAAAVwAAAAACVwAAAAABVwAAAAABdwAAAAAAVwAAAAABGwAAAAABGwAAAAADVwAAAAABVwAAAAAAVwAAAAAAVwAAAAADdwAAAAAAVwAAAAACVwAAAAACVwAAAAABdwAAAAAAVwAAAAABVwAAAAABVwAAAAADdwAAAAAAVwAAAAADGwAAAAADGwAAAAAAVwAAAAABdwAAAAAAdwAAAAAAGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAdwAAAAAAVwAAAAADIAAAAAABIAAAAAADVwAAAAABGwAAAAADGwAAAAAAGwAAAAAAGwAAAAADGwAAAAABGwAAAAADGwAAAAAAGwAAAAABGwAAAAAAGwAAAAADGwAAAAADdwAAAAAAdwAAAAAAVwAAAAABVwAAAAACdwAAAAAAGwAAAAABSgAAAAACSgAAAAABGwAAAAABSgAAAAAASgAAAAABSgAAAAABGwAAAAADSgAAAAACSgAAAAACGwAAAAADVwAAAAADVwAAAAAAVwAAAAAAVwAAAAACIAAAAAAAGwAAAAADGwAAAAAAGwAAAAADGwAAAAADGwAAAAABGwAAAAAAGwAAAAABGwAAAAADGwAAAAADGwAAAAABGwAAAAABVwAAAAACVwAAAAAAVwAAAAACVwAAAAABVwAAAAADGwAAAAADGwAAAAAAGwAAAAADGwAAAAACGwAAAAACVwAAAAAAVwAAAAAAVwAAAAADVwAAAAABVwAAAAABVwAAAAABVwAAAAADVwAAAAADVwAAAAADVwAAAAAAVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAABVwAAAAABdwAAAAAAGwAAAAAAGwAAAAACGwAAAAAAGwAAAAADVwAAAAABVwAAAAAAVwAAAAACVwAAAAAAVwAAAAAAIAAAAAACIAAAAAACdwAAAAAAVwAAAAACVwAAAAABVwAAAAAA
version: 6
-2,1:
ind: -2,1
- tiles: OAAAAAAAOAAAAAAAVwAAAAACVwAAAAADdgAAAAAAVwAAAAACYQAAAAADVwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZwAAAAABOAAAAAAAOAAAAAAAVwAAAAABVwAAAAABdgAAAAAAVwAAAAABYQAAAAABVwAAAAABJAAAAAABJAAAAAABJAAAAAABJAAAAAABJAAAAAACJAAAAAABdgAAAAAAZwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABYQAAAAAAVwAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAADdgAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAeAAAAAAAdgAAAAAAVwAAAAABVwAAAAAAYQAAAAADYQAAAAAAYQAAAAABYQAAAAACYQAAAAADYQAAAAADYQAAAAACYQAAAAADYQAAAAADYQAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAYQAAAAACYQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAACYQAAAAACYQAAAAABdgAAAAAAeAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABVwAAAAABIAAAAAABJAAAAAAAJAAAAAABJAAAAAABJAAAAAAAJAAAAAABJAAAAAADVwAAAAABYQAAAAABeAAAAAAAZwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAZwAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAeAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZwAAAAABZwAAAAACZwAAAAABdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAcwAAAAAAcwAAAAAAdgAAAAAAcwAAAAADcwAAAAABcwAAAAACdgAAAAAAeAAAAAAAdgAAAAAAGwAAAAABGwAAAAAAGwAAAAACGwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAcwAAAAAAcwAAAAADcwAAAAAAcwAAAAACcwAAAAADcwAAAAABcwAAAAAAZwAAAAADdgAAAAAAIAAAAAADIAAAAAABIAAAAAADGwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAcwAAAAACcwAAAAAAdgAAAAAAcwAAAAABcwAAAAADcwAAAAACdgAAAAAAZwAAAAABdgAAAAAAIAAAAAACIAAAAAAAIAAAAAACGwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACVwAAAAACVwAAAAACdgAAAAAAeAAAAAAAdgAAAAAAIAAAAAACIAAAAAADIAAAAAACGwAAAAAAGwAAAAAAdgAAAAAAdgAAAAAAZwAAAAAAZwAAAAACdgAAAAAAVwAAAAACVwAAAAABVwAAAAABdgAAAAAAZgAAAAAAdgAAAAAAGwAAAAABGwAAAAADGwAAAAADGwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZwAAAAABdgAAAAAAIAAAAAADVwAAAAACVwAAAAABdgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAADGwAAAAAD
+ tiles: OAAAAAAAOAAAAAAAVwAAAAAAVwAAAAACdwAAAAAAVwAAAAACYgAAAAADVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAaAAAAAAAOAAAAAAAOAAAAAAAVwAAAAAAVwAAAAACdwAAAAAAVwAAAAABYgAAAAABVwAAAAACJAAAAAADJAAAAAACJAAAAAACJAAAAAACJAAAAAABJAAAAAABdwAAAAAAaAAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADYgAAAAAAVwAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAADdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAeQAAAAAAdwAAAAAAVwAAAAABVwAAAAADYgAAAAADYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAACYgAAAAAAYgAAAAACYgAAAAABYgAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAYgAAAAABYgAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACYgAAAAABYgAAAAABdwAAAAAAeQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAADIAAAAAAAJAAAAAAAJAAAAAADJAAAAAABJAAAAAABJAAAAAADJAAAAAACVwAAAAADYgAAAAABeQAAAAAAaAAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAaAAAAAACZgAAAAAAZgAAAAAAdwAAAAAAeQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAaAAAAAACaAAAAAADaAAAAAADdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAaAAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAADdAAAAAABdwAAAAAAdAAAAAADdAAAAAACdAAAAAADdwAAAAAAeQAAAAAAdwAAAAAAGwAAAAACGwAAAAAAGwAAAAADGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAACdAAAAAABdAAAAAABdAAAAAACdAAAAAAAdAAAAAACdAAAAAAAaAAAAAADdwAAAAAAIAAAAAABIAAAAAACIAAAAAACGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAABdAAAAAAAdwAAAAAAdAAAAAABdAAAAAADdAAAAAAAdwAAAAAAaAAAAAADdwAAAAAAIAAAAAADIAAAAAADIAAAAAABGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAAAVwAAAAADdwAAAAAAeQAAAAAAdwAAAAAAIAAAAAAAIAAAAAABIAAAAAADGwAAAAABGwAAAAAAdwAAAAAAdwAAAAAAaAAAAAAAaAAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAABdwAAAAAAZwAAAAAAdwAAAAAAGwAAAAAAGwAAAAADGwAAAAABGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAaAAAAAABdwAAAAAAIAAAAAAAVwAAAAADVwAAAAACdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABGwAAAAAB
version: 6
-1,-3:
ind: -1,-3
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACVwAAAAAAVwAAAAACWAAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZwAAAAADeAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAWAAAAAAAWwAAAAAEWAAAAAABVwAAAAACVwAAAAABdgAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZwAAAAAAdgAAAAAAeAAAAAAAdgAAAAAAdgAAAAAAeAAAAAAAWAAAAAAAWwAAAAAEVwAAAAACWAAAAAABdgAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAWAAAAAAAVwAAAAACVwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZwAAAAADdgAAAAAAdgAAAAAAYQAAAAACYQAAAAABYQAAAAADdgAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZwAAAAACeAAAAAAAdgAAAAAAVwAAAAAAVwAAAAAAVwAAAAADVwAAAAABVwAAAAACVwAAAAAAZgAAAAAAZgAAAAAAZwAAAAACZwAAAAADeAAAAAAAdgAAAAAAdgAAAAAAZwAAAAADZwAAAAADdgAAAAAAVwAAAAACVwAAAAABVwAAAAABdgAAAAAAYQAAAAADYQAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAYQAAAAABYQAAAAACYQAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAD
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAACVwAAAAAAWAAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAaAAAAAADeQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAWAAAAAABWwAAAAACWAAAAAABVwAAAAACVwAAAAADdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAaAAAAAABdwAAAAAAeQAAAAAAdwAAAAAAdwAAAAAAeQAAAAAAWAAAAAABWwAAAAABVwAAAAABWAAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAWAAAAAAAVwAAAAACVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAaAAAAAABdwAAAAAAdwAAAAAAYgAAAAAAYgAAAAABYgAAAAACdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAaAAAAAAAeQAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAADVwAAAAABVwAAAAAAVwAAAAABZwAAAAAAZwAAAAAAaAAAAAABaAAAAAADeQAAAAAAdwAAAAAAdwAAAAAAaAAAAAAAaAAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAABdwAAAAAAYgAAAAADYgAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAYgAAAAABYgAAAAABYgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAB
version: 6
2,-3:
ind: 2,-3
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAADGwAAAAAAIAAAAAACIAAAAAABIAAAAAACIAAAAAADIAAAAAABIAAAAAAAIAAAAAABIAAAAAADIAAAAAADIAAAAAABIAAAAAAAIAAAAAAAIAAAAAABIAAAAAADIAAAAAADIAAAAAABIAAAAAACIAAAAAACIAAAAAADIAAAAAACIAAAAAAAIAAAAAAAIAAAAAABIAAAAAADIAAAAAAAIAAAAAABIAAAAAABIAAAAAACIAAAAAACIAAAAAACIAAAAAABIAAAAAABIAAAAAABIgAAAAACIgAAAAADIgAAAAABIgAAAAAAIgAAAAAAIgAAAAADIgAAAAAAIgAAAAADIgAAAAABIgAAAAAAIgAAAAABIgAAAAADIAAAAAAAIAAAAAADIAAAAAABIgAAAAACIgAAAAAAGwAAAAACGwAAAAAAGwAAAAACGwAAAAADGwAAAAADGwAAAAAAGwAAAAAAGwAAAAADGwAAAAADIgAAAAACIgAAAAACIAAAAAAAIAAAAAADIAAAAAACIgAAAAACIgAAAAABGwAAAAADGwAAAAADGwAAAAADGwAAAAACGwAAAAAAGwAAAAADGwAAAAACGwAAAAAAGwAAAAABIgAAAAADIgAAAAACIAAAAAACGwAAAAADGwAAAAABIAAAAAADIAAAAAAAGwAAAAAAGwAAAAAAIAAAAAADIAAAAAADIAAAAAAAIAAAAAAAIAAAAAABGwAAAAABGwAAAAABIAAAAAADIAAAAAADGwAAAAACGwAAAAADGwAAAAAAIgAAAAAAIAAAAAADIAAAAAAAIAAAAAAAIAAAAAACIAAAAAABIAAAAAABIAAAAAADIAAAAAADIAAAAAABIAAAAAACIAAAAAADIgAAAAABGwAAAAAC
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADGwAAAAAAIAAAAAADIAAAAAAAIAAAAAAAIAAAAAADIAAAAAAAIAAAAAACIAAAAAABIAAAAAACIAAAAAABIAAAAAABIAAAAAABIAAAAAADIAAAAAABIAAAAAABIAAAAAAAIAAAAAADIAAAAAADIAAAAAABIAAAAAAAIAAAAAABIAAAAAABIAAAAAABIAAAAAADIAAAAAAAIAAAAAACIAAAAAADIAAAAAABIAAAAAAAIAAAAAADIAAAAAABIAAAAAACIAAAAAADIAAAAAABIgAAAAABIgAAAAACIgAAAAADIgAAAAAAIgAAAAACIgAAAAADIgAAAAACIgAAAAACIgAAAAABIgAAAAAAIgAAAAABIgAAAAAAIAAAAAABIAAAAAACIAAAAAABIgAAAAACIgAAAAABGwAAAAADGwAAAAADGwAAAAADGwAAAAAAGwAAAAABGwAAAAABGwAAAAAAGwAAAAAAGwAAAAABIgAAAAACIgAAAAABIAAAAAABIAAAAAADIAAAAAACIgAAAAACIgAAAAADGwAAAAABGwAAAAADGwAAAAAAGwAAAAAAGwAAAAABGwAAAAABGwAAAAABGwAAAAACGwAAAAAAIgAAAAACIgAAAAADIAAAAAADGwAAAAABGwAAAAACIAAAAAABIAAAAAACGwAAAAACGwAAAAADIAAAAAAAIAAAAAABIAAAAAABIAAAAAACIAAAAAAAGwAAAAABGwAAAAACIAAAAAADIAAAAAABGwAAAAACGwAAAAABGwAAAAADIgAAAAAAIAAAAAAAIAAAAAACIAAAAAAAIAAAAAABIAAAAAABIAAAAAABIAAAAAADIAAAAAABIAAAAAAAIAAAAAABIAAAAAACIgAAAAAAGwAAAAAB
version: 6
3,-2:
ind: 3,-2
- tiles: GwAAAAADGwAAAAAAdgAAAAAAGwAAAAAAGwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAADVwAAAAADGwAAAAACGwAAAAABdgAAAAAAGwAAAAACGwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAADVwAAAAABVwAAAAADGwAAAAAAGwAAAAADdgAAAAAAGwAAAAAAGwAAAAACGwAAAAAAGwAAAAADGwAAAAADGwAAAAACGwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAABGwAAAAABdgAAAAAAVwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAeAAAAAAAZgAAAAAAZgAAAAAAGwAAAAADGwAAAAAAdgAAAAAAVwAAAAABVwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAACdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAYQAAAAACVwAAAAADGwAAAAAAGwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAYQAAAAAAVwAAAAADVwAAAAACVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAYQAAAAAAYQAAAAAAVwAAAAACVwAAAAABVwAAAAAAdgAAAAAAdgAAAAAAVwAAAAABVwAAAAAAVwAAAAACVwAAAAACVwAAAAADVwAAAAABVwAAAAAAVwAAAAABVwAAAAADVwAAAAABVwAAAAACVwAAAAACVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAYQAAAAADLwAAAAAALwAAAAAALwAAAAAALwAAAAAAYQAAAAABVwAAAAACVwAAAAABVwAAAAABVwAAAAABVwAAAAADVwAAAAADIAAAAAAAdgAAAAAAdgAAAAAAVwAAAAADYQAAAAADLwAAAAAALwAAAAAALwAAAAAALwAAAAAAYQAAAAACVwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACVwAAAAAAVwAAAAAAVwAAAAACVwAAAAAAVwAAAAABYQAAAAADLwAAAAAALwAAAAAALwAAAAAALwAAAAAAYQAAAAACVwAAAAADVwAAAAACIAAAAAACdgAAAAAAVwAAAAAASgAAAAADSgAAAAABYQAAAAADSgAAAAADSgAAAAABYQAAAAABYQAAAAACYQAAAAACYQAAAAACYQAAAAADYQAAAAADVwAAAAADVwAAAAABVwAAAAABVwAAAAADVwAAAAADVwAAAAADVwAAAAAAVwAAAAACVwAAAAAAVwAAAAAAVwAAAAABVwAAAAADVwAAAAADVwAAAAAAVwAAAAADVwAAAAACVwAAAAADVwAAAAADVwAAAAADdgAAAAAAVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAABVwAAAAABVwAAAAADVwAAAAACVwAAAAABVwAAAAACZgAAAAAAZgAAAAAAZgAAAAAAeAAAAAAAZwAAAAAAZwAAAAACZwAAAAACdgAAAAAAdgAAAAAAVwAAAAACVwAAAAADVwAAAAAAVwAAAAACVwAAAAABdgAAAAAAVwAAAAAC
+ tiles: GwAAAAABGwAAAAADdwAAAAAAGwAAAAACGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAACVwAAAAACGwAAAAACGwAAAAABdwAAAAAAGwAAAAABGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAACVwAAAAABGwAAAAACGwAAAAAAdwAAAAAAGwAAAAABGwAAAAADGwAAAAAAGwAAAAACGwAAAAABGwAAAAACGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABGwAAAAAAdwAAAAAAVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAeQAAAAAAZwAAAAAAZwAAAAAAGwAAAAABGwAAAAABdwAAAAAAVwAAAAACVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAYgAAAAADVwAAAAABGwAAAAAAGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAYgAAAAADVwAAAAAAVwAAAAABVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAYgAAAAACYgAAAAADVwAAAAADVwAAAAACVwAAAAABdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAADVwAAAAACVwAAAAADVwAAAAADVwAAAAACVwAAAAADVwAAAAAAVwAAAAAAVwAAAAABVwAAAAAAVwAAAAADVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADYgAAAAADLwAAAAAALwAAAAAALwAAAAAALwAAAAAAYgAAAAADVwAAAAAAVwAAAAACVwAAAAACVwAAAAABVwAAAAABVwAAAAACIAAAAAABdwAAAAAAdwAAAAAAVwAAAAADYgAAAAADLwAAAAAALwAAAAAALwAAAAAALwAAAAAAYgAAAAABVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAADVwAAAAACVwAAAAABVwAAAAACVwAAAAACYgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAYgAAAAADVwAAAAACVwAAAAADIAAAAAADdwAAAAAAVwAAAAACSgAAAAAASgAAAAABYgAAAAABSgAAAAADSgAAAAACYgAAAAAAYgAAAAACYgAAAAABYgAAAAACYgAAAAAAYgAAAAACVwAAAAAAVwAAAAABVwAAAAADVwAAAAABVwAAAAABVwAAAAACVwAAAAABVwAAAAACVwAAAAAAVwAAAAABVwAAAAAAVwAAAAACVwAAAAADVwAAAAADVwAAAAACVwAAAAAAVwAAAAABVwAAAAACVwAAAAAAdwAAAAAAVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAACVwAAAAACVwAAAAABVwAAAAAAVwAAAAAAVwAAAAADZwAAAAAAZwAAAAAAZwAAAAAAeQAAAAAAaAAAAAACaAAAAAACaAAAAAACdwAAAAAAdwAAAAAAVwAAAAACVwAAAAADVwAAAAACVwAAAAAAVwAAAAACdwAAAAAAVwAAAAAD
version: 6
3,-3:
ind: 3,-3
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdgAAAAAAdwAAAAAABwAAAAAABwAAAAAJBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAABwAAAAAKBwAAAAAABwAAAAAIBwAAAAALBwAAAAAAdwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAAIAAAAAAAdgAAAAAAdgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAAIAAAAAADIAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAABwAAAAAABwAAAAAABwAAAAAAIAAAAAAAIAAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAABwAAAAAGBwAAAAAABwAAAAAAIAAAAAADIAAAAAADGwAAAAACGwAAAAACGwAAAAACdgAAAAAAGwAAAAAAGwAAAAACNAAAAAAANAAAAAAANAAAAAAAdgAAAAAAdgAAAAAABwAAAAAABwAAAAAAdwAAAAAAIAAAAAAAIAAAAAACdgAAAAAAGwAAAAADGwAAAAACdgAAAAAAGwAAAAAAGwAAAAADNAAAAAAAGwAAAAACNAAAAAAAdgAAAAAAdgAAAAAABwAAAAAABwAAAAAABwAAAAAAGwAAAAADGwAAAAADdgAAAAAAGwAAAAAAGwAAAAABGwAAAAADGwAAAAAAGwAAAAABNAAAAAAANAAAAAAANAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAACGwAAAAACdgAAAAAAGwAAAAADGwAAAAABdgAAAAAAGwAAAAADGwAAAAAAGwAAAAAAGwAAAAADGwAAAAACdgAAAAAAdgAAAAAAVwAAAAADVwAAAAAAVwAAAAAC
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAdwAAAAAAeAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAIAAAAAABdwAAAAAAdwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAGIAAAAAABIAAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAABwAAAAAABwAAAAAABwAAAAAAIAAAAAABIAAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAABwAAAAAABwAAAAAABwAAAAAAIAAAAAABIAAAAAAAGwAAAAACGwAAAAABGwAAAAAAdwAAAAAAGwAAAAADGwAAAAACNAAAAAAANAAAAAAANAAAAAAAdwAAAAAAdwAAAAAABwAAAAAEBwAAAAAAeAAAAAAAIAAAAAADIAAAAAAAdwAAAAAAGwAAAAADGwAAAAACdwAAAAAAGwAAAAADGwAAAAAANAAAAAAAGwAAAAACNAAAAAAAdwAAAAAAdwAAAAAABwAAAAAABwAAAAAABwAAAAAAGwAAAAADGwAAAAAAdwAAAAAAGwAAAAADGwAAAAABGwAAAAADGwAAAAACGwAAAAABNAAAAAAANAAAAAAANAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAABdwAAAAAAGwAAAAADGwAAAAADdwAAAAAAGwAAAAABGwAAAAADGwAAAAACGwAAAAACGwAAAAABdwAAAAAAdwAAAAAAVwAAAAACVwAAAAACVwAAAAAA
version: 6
-2,-3:
ind: -2,-3
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAcwAAAAAAdAAAAAADdgAAAAAAdAAAAAACeAAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeAAAAAAAdgAAAAAAEQAAAAAGdAAAAAAAdAAAAAACdgAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAEQAAAAAAeAAAAAAAdAAAAAACdAAAAAADdAAAAAACdgAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeAAAAAAAdgAAAAAAeAAAAAAAdgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdgAAAAAAeAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZwAAAAACVwAAAAACJAAAAAABJAAAAAADVwAAAAAAVwAAAAACVwAAAAADVwAAAAAAVwAAAAADVwAAAAACVwAAAAABVwAAAAABVwAAAAADVwAAAAACVwAAAAAAdgAAAAAAZwAAAAACVwAAAAACJAAAAAADdgAAAAAAcwAAAAADcwAAAAABcwAAAAAAcwAAAAABcwAAAAABcwAAAAACcwAAAAABcwAAAAAAcwAAAAACcwAAAAAAcwAAAAABdgAAAAAAZwAAAAADcwAAAAAAcwAAAAACdgAAAAAAcwAAAAACcwAAAAADcwAAAAABJAAAAAADJAAAAAABJAAAAAADJAAAAAABJAAAAAADJAAAAAABJAAAAAABJAAAAAACdgAAAAAAZgAAAAAAcwAAAAACcwAAAAABdgAAAAAAcwAAAAABcwAAAAADcwAAAAABJAAAAAADJAAAAAACJAAAAAABJAAAAAABJAAAAAABJAAAAAABJAAAAAAAJAAAAAABdgAAAAAAZgAAAAAAcwAAAAABcwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAJAAAAAAAJAAAAAACJAAAAAABJAAAAAADJAAAAAAAJAAAAAABJAAAAAACJAAAAAADdgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAcwAAAAABcwAAAAAAcwAAAAACcwAAAAACcwAAAAADcwAAAAABcwAAAAADIAAAAAAAdgAAAAAAZgAAAAAAJAAAAAAAJAAAAAAAJAAAAAADJAAAAAADVwAAAAACdgAAAAAAVwAAAAABVwAAAAABVwAAAAAAVwAAAAADVwAAAAADVwAAAAADVwAAAAAAVwAAAAACdgAAAAAAdgAAAAAAVwAAAAACVwAAAAACJAAAAAABJAAAAAAAVwAAAAAAdgAAAAAAdgAAAAAAVwAAAAABVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAC
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAADdQAAAAACdwAAAAAAdQAAAAACeQAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAeQAAAAAAdwAAAAAAEQAAAAAAdQAAAAAAdQAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAEQAAAAADeQAAAAAAdQAAAAACdQAAAAADdQAAAAACdwAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAeQAAAAAAdwAAAAAAeQAAAAAAdwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAdwAAAAAAeQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAaAAAAAAAVwAAAAABJAAAAAACJAAAAAABVwAAAAACVwAAAAADVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAADVwAAAAADVwAAAAACVwAAAAABVwAAAAADdwAAAAAAaAAAAAAAVwAAAAAAJAAAAAADdwAAAAAAdAAAAAABdAAAAAAAdAAAAAABdAAAAAAAdAAAAAADdAAAAAAAdAAAAAAAdAAAAAADdAAAAAACdAAAAAACdAAAAAABdwAAAAAAaAAAAAADdAAAAAABdAAAAAAAdwAAAAAAdAAAAAADdAAAAAAAdAAAAAABJAAAAAABJAAAAAADJAAAAAACJAAAAAADJAAAAAAAJAAAAAAAJAAAAAACJAAAAAADdwAAAAAAZwAAAAAAdAAAAAAAdAAAAAADdwAAAAAAdAAAAAADdAAAAAACdAAAAAABJAAAAAABJAAAAAABJAAAAAACJAAAAAABJAAAAAACJAAAAAAAJAAAAAACJAAAAAADdwAAAAAAZwAAAAAAdAAAAAAAdAAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAJAAAAAABJAAAAAABJAAAAAABJAAAAAADJAAAAAADJAAAAAACJAAAAAAAJAAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAADdAAAAAACdAAAAAABdAAAAAABdAAAAAAAdAAAAAAAdAAAAAAAIAAAAAABdwAAAAAAZwAAAAAAJAAAAAADJAAAAAACJAAAAAABJAAAAAABVwAAAAADdwAAAAAAVwAAAAADVwAAAAACVwAAAAAAVwAAAAAAVwAAAAACVwAAAAADVwAAAAADVwAAAAADdwAAAAAAdwAAAAAAVwAAAAABVwAAAAABJAAAAAADJAAAAAAAVwAAAAACdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAC
version: 6
-3,-1:
ind: -3,-1
- tiles: GwAAAAABdgAAAAAAcwAAAAABcwAAAAABcwAAAAADdgAAAAAAZQAAAAAAZwAAAAADdgAAAAAAcwAAAAADcwAAAAAAcwAAAAADcwAAAAACcwAAAAABcwAAAAADcwAAAAAAGwAAAAAAGwAAAAADGwAAAAAAGwAAAAAAGwAAAAAAdgAAAAAAZQAAAAAAZwAAAAACdgAAAAAAcwAAAAADSgAAAAABSgAAAAABJAAAAAACSgAAAAABSgAAAAAAJAAAAAABGwAAAAADdgAAAAAAGwAAAAADGwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAZwAAAAADdgAAAAAAcwAAAAADSgAAAAADSgAAAAAAJAAAAAAASgAAAAABSgAAAAABJAAAAAADGwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAcwAAAAAAcwAAAAAAcwAAAAACcwAAAAACcwAAAAABcwAAAAADcwAAAAACdgAAAAAAdgAAAAAAeAAAAAAAdgAAAAAAdgAAAAAAeAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAcwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAcwAAAAACZQAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAXwAAAAABXwAAAAACdgAAAAAAcwAAAAAAcwAAAAADcwAAAAACdgAAAAAAcwAAAAAAcwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAXwAAAAACXwAAAAACdgAAAAAAJAAAAAACJAAAAAACJAAAAAACdgAAAAAAJAAAAAABJAAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAXwAAAAABXwAAAAACdgAAAAAAJAAAAAADJAAAAAABJAAAAAAAdgAAAAAAJAAAAAAAJAAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZwAAAAADZwAAAAAAZwAAAAACZQAAAAAAeAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAADVwAAAAAAVwAAAAAAVwAAAAAAdgAAAAAAVwAAAAABVwAAAAADdgAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAABIAAAAAABWQAAAAACWQAAAAACVwAAAAACVwAAAAAAVwAAAAABVwAAAAAAVwAAAAAAVwAAAAADVwAAAAABdgAAAAAAWQAAAAACGwAAAAAAGwAAAAACGwAAAAABGwAAAAAAWQAAAAACGwAAAAADGwAAAAADIAAAAAABIAAAAAAAIAAAAAADIAAAAAADIAAAAAAAVwAAAAACVwAAAAACdgAAAAAAWQAAAAACGwAAAAACGwAAAAACGwAAAAACGwAAAAABWQAAAAAAGwAAAAADGwAAAAACLwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAVwAAAAADVwAAAAABdgAAAAAAWQAAAAACGwAAAAAAGwAAAAAAGwAAAAACGwAAAAACWQAAAAABGwAAAAADGwAAAAABIAAAAAADIAAAAAAAIAAAAAABIAAAAAABIAAAAAADVwAAAAAAVwAAAAABdgAAAAAAVwAAAAACVwAAAAADVwAAAAAAVwAAAAAAVwAAAAADVwAAAAADVwAAAAADVwAAAAAD
+ tiles: GwAAAAAAdwAAAAAAdAAAAAADdAAAAAABdAAAAAABdwAAAAAAZgAAAAAAaAAAAAACdwAAAAAAdAAAAAACdAAAAAACdAAAAAADdAAAAAADdAAAAAACdAAAAAACdAAAAAACGwAAAAACGwAAAAADGwAAAAABGwAAAAADGwAAAAAAdwAAAAAAZgAAAAAAaAAAAAACdwAAAAAAdAAAAAADSgAAAAABSgAAAAACJAAAAAAASgAAAAABSgAAAAACJAAAAAABGwAAAAABdwAAAAAAGwAAAAABGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAaAAAAAACdwAAAAAAdAAAAAAASgAAAAAASgAAAAAAJAAAAAAASgAAAAADSgAAAAACJAAAAAACGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAACdAAAAAADdAAAAAACdAAAAAACdAAAAAABdAAAAAABdAAAAAACdwAAAAAAdwAAAAAAeQAAAAAAdwAAAAAAdwAAAAAAeQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAXwAAAAABXwAAAAAAdwAAAAAAdAAAAAADdAAAAAABdAAAAAAAdwAAAAAAdAAAAAADdAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAXwAAAAAAXwAAAAABdwAAAAAAJAAAAAADJAAAAAADJAAAAAADdwAAAAAAJAAAAAACJAAAAAACLQAAAAAALQAAAAAALQAAAAAALQAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAXwAAAAADXwAAAAACdwAAAAAAJAAAAAACJAAAAAABJAAAAAABdwAAAAAAJAAAAAACJAAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAaAAAAAACaAAAAAADaAAAAAADZgAAAAAAeQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAAAVwAAAAADVwAAAAABdwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAACIAAAAAACWQAAAAAAWQAAAAABVwAAAAAAVwAAAAADVwAAAAADVwAAAAAAVwAAAAACVwAAAAABVwAAAAABdwAAAAAAWQAAAAADGwAAAAADGwAAAAADGwAAAAADGwAAAAABWQAAAAAAGwAAAAAAGwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAABIAAAAAACVwAAAAABVwAAAAABdwAAAAAAWQAAAAABGwAAAAABGwAAAAACGwAAAAACGwAAAAACWQAAAAADGwAAAAACGwAAAAACLwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAVwAAAAABVwAAAAACdwAAAAAAWQAAAAADGwAAAAACGwAAAAADGwAAAAADGwAAAAABWQAAAAACGwAAAAACGwAAAAAAIAAAAAACIAAAAAAAIAAAAAADIAAAAAADIAAAAAABVwAAAAAAVwAAAAAAdwAAAAAAVwAAAAACVwAAAAADVwAAAAAAVwAAAAACVwAAAAAAVwAAAAABVwAAAAABVwAAAAAA
version: 6
-3,0:
ind: -3,0
- tiles: XwAAAAADXwAAAAAAXwAAAAADXwAAAAACXwAAAAAAVwAAAAABYQAAAAAAYQAAAAADVwAAAAABVwAAAAACYQAAAAAAYQAAAAADYQAAAAACYQAAAAACYQAAAAACVwAAAAABSgAAAAADSgAAAAACYQAAAAAASgAAAAADSgAAAAADYQAAAAABYQAAAAACYQAAAAAAVwAAAAACVwAAAAAAWQAAAAABYQAAAAADYQAAAAACYQAAAAADWQAAAAADYQAAAAACXwAAAAADXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAVwAAAAACYQAAAAAAYQAAAAAAVwAAAAAAVwAAAAADWQAAAAAAYQAAAAACYQAAAAAAYQAAAAACWQAAAAACYQAAAAACIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAACVwAAAAACVwAAAAACdgAAAAAAVwAAAAACVwAAAAAAYQAAAAABYQAAAAADYQAAAAAAYQAAAAACYQAAAAADYQAAAAADLwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAVwAAAAACVwAAAAACdgAAAAAAVwAAAAAAVwAAAAABVwAAAAACcwAAAAABcwAAAAAAcwAAAAAAcwAAAAABcwAAAAACIAAAAAACIAAAAAABIAAAAAACIAAAAAAAIAAAAAADVwAAAAACVwAAAAAAdgAAAAAALwAAAAAALwAAAAAALwAAAAAAcwAAAAAAGwAAAAACGwAAAAACGwAAAAACGwAAAAADVwAAAAACVwAAAAACVwAAAAABVwAAAAABVwAAAAADVwAAAAACVwAAAAABdgAAAAAALwAAAAAALwAAAAAALwAAAAAAcwAAAAAAGwAAAAAAGwAAAAACGwAAAAAAGwAAAAAAVwAAAAACVwAAAAAAVwAAAAABVwAAAAACdgAAAAAAVwAAAAACVwAAAAACdgAAAAAALwAAAAAALwAAAAAALwAAAAAAcwAAAAACGwAAAAADGwAAAAAAGwAAAAAAGwAAAAABGwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAgAAAAAAGwAAAAADGwAAAAACGwAAAAACGwAAAAADdgAAAAAAeAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZwAAAAAAeAAAAAAAZwAAAAAAZQAAAAAAZgAAAAAAdgAAAAAAAgAAAAAAIAAAAAACIAAAAAADIAAAAAADIAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGwAAAAAAGwAAAAABGwAAAAACGwAAAAAAZgAAAAAAdgAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAdgAAAAAAOAAAAAAAOAAAAAAAYQAAAAABAgAAAAAAIAAAAAAAIAAAAAAAGwAAAAABGwAAAAACGwAAAAADdgAAAAAAZgAAAAAAdgAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAdgAAAAAAOAAAAAAAOAAAAAAAYQAAAAACAgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAABGwAAAAAAdgAAAAAAeAAAAAAAdgAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAdgAAAAAAOAAAAAAAOAAAAAAAYQAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABVwAAAAAAVwAAAAADVwAAAAADVwAAAAADVwAAAAABYQAAAAACdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAVwAAAAACeQAAAAACdgAAAAAAZwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAOAAAAAAAOAAAAAAAVwAAAAAA
+ tiles: XwAAAAACXwAAAAACXwAAAAACXwAAAAABXwAAAAAAVwAAAAADYgAAAAADYgAAAAAAVwAAAAABVwAAAAACYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAABYgAAAAADVwAAAAADSgAAAAADSgAAAAABYgAAAAACSgAAAAADSgAAAAADYgAAAAABYgAAAAAAYgAAAAABVwAAAAAAVwAAAAACWQAAAAAAYgAAAAACYgAAAAACYgAAAAAAWQAAAAABYgAAAAAAXwAAAAABXwAAAAADXwAAAAAAXwAAAAADXwAAAAAAVwAAAAABYgAAAAAAYgAAAAACVwAAAAACVwAAAAADWQAAAAACYgAAAAABYgAAAAABYgAAAAABWQAAAAACYgAAAAABIAAAAAACIAAAAAACIAAAAAAAIAAAAAAAIAAAAAACVwAAAAACVwAAAAABdwAAAAAAVwAAAAACVwAAAAADYgAAAAADYgAAAAADYgAAAAABYgAAAAAAYgAAAAABYgAAAAACLwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAVwAAAAAAVwAAAAADdwAAAAAAVwAAAAACVwAAAAADVwAAAAABdAAAAAACdAAAAAACdAAAAAABdAAAAAADdAAAAAACIAAAAAABIAAAAAABIAAAAAACIAAAAAACIAAAAAABVwAAAAACVwAAAAAAdwAAAAAALwAAAAAALwAAAAAALwAAAAAAdAAAAAACGwAAAAACGwAAAAADGwAAAAADGwAAAAADVwAAAAAAVwAAAAADVwAAAAAAVwAAAAADVwAAAAADVwAAAAACVwAAAAACdwAAAAAALwAAAAAALwAAAAAALwAAAAAAdAAAAAAAGwAAAAABGwAAAAACGwAAAAABGwAAAAAAVwAAAAADVwAAAAADVwAAAAABVwAAAAAAdwAAAAAAVwAAAAABVwAAAAADdwAAAAAALwAAAAAALwAAAAAALwAAAAAAdAAAAAABGwAAAAADGwAAAAAAGwAAAAACGwAAAAACGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAeQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAgAAAAAAGwAAAAABGwAAAAABGwAAAAAAGwAAAAABdwAAAAAAeQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAaAAAAAABeQAAAAAAaAAAAAACZgAAAAAAZwAAAAAAdwAAAAAAAgAAAAAAIAAAAAABIAAAAAAAIAAAAAACIAAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGwAAAAACGwAAAAABGwAAAAABGwAAAAADZwAAAAAAdwAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAdwAAAAAAOAAAAAAAOAAAAAAAYgAAAAAAAgAAAAAAIAAAAAABIAAAAAAAGwAAAAABGwAAAAAAGwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAdwAAAAAAOAAAAAAAOAAAAAAAYgAAAAADAgAAAAAAGwAAAAAAGwAAAAACGwAAAAADGwAAAAABGwAAAAABdwAAAAAAeQAAAAAAdwAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAdwAAAAAAOAAAAAAAOAAAAAAAYgAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAAAVwAAAAADVwAAAAAAVwAAAAAAVwAAAAAAYgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAVwAAAAADegAAAAAAdwAAAAAAaAAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAOAAAAAAAOAAAAAAAVwAAAAAD
version: 6
-3,1:
ind: -3,1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAVwAAAAADeAAAAAAAdgAAAAAAZwAAAAABeAAAAAAAeAAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAOAAAAAAAOAAAAAAAVwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAVwAAAAAAVwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAOAAAAAAAOAAAAAAAVwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAZwAAAAABZwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdgAAAAAAcwAAAAADcwAAAAACcwAAAAABcwAAAAACcwAAAAABdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdgAAAAAAcwAAAAAAcwAAAAADcwAAAAABcwAAAAADcwAAAAABdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdgAAAAAAcwAAAAABdgAAAAAAcwAAAAAAcwAAAAACcwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdgAAAAAAeAAAAAAAEQAAAAACeAAAAAAAcwAAAAABcwAAAAABdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdQAAAAAAeAAAAAAAeQAAAAAAEQAAAAADcwAAAAACdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAABcwAAAAADdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAeAAAAAAAeAAAAAAAeQAAAAACeAAAAAAAEQAAAAABdgAAAAAAcwAAAAADdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAEQAAAAACdgAAAAAAeAAAAAAAcwAAAAADcwAAAAAAcwAAAAAAcwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAeQAAAAAAEQAAAAAAcwAAAAACcwAAAAACdgAAAAAAcwAAAAADcwAAAAABdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAVwAAAAADeQAAAAAAdwAAAAAAaAAAAAACeQAAAAAAeQAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAOAAAAAAAOAAAAAAAVwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAVwAAAAACVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAOAAAAAAAOAAAAAAAVwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAaAAAAAABaAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdAAAAAACdAAAAAACdAAAAAADdAAAAAAAdAAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAHwAAAAACdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdAAAAAAAdAAAAAABdAAAAAAAdAAAAAADdAAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAHwAAAAABQQAAAAAAHwAAAAABdwAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdAAAAAADdwAAAAAAdAAAAAADdAAAAAACdAAAAAACdwAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAHwAAAAADdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAeQAAAAAAEQAAAAAGeQAAAAAAdAAAAAADdAAAAAACdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAeQAAAAAAegAAAAABEQAAAAABdAAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdgAAAAAAegAAAAACeQAAAAAAeQAAAAAAeQAAAAAAegAAAAABdAAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAEQAAAAAGdwAAAAAAdAAAAAACdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAEQAAAAAGdwAAAAAAeQAAAAAAdAAAAAABdAAAAAADdAAAAAAAdAAAAAABdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAegAAAAABEQAAAAAGdAAAAAAAdAAAAAACdwAAAAAAdAAAAAAAdAAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAA
version: 6
-3,-2:
ind: -3,-2
- tiles: YQAAAAABYQAAAAADYQAAAAACYQAAAAAAVwAAAAADVwAAAAADdgAAAAAAVwAAAAABcwAAAAAAcwAAAAABVwAAAAADEAAAAAADEAAAAAAAEAAAAAACEAAAAAADEAAAAAABdgAAAAAAdgAAAAAAIAAAAAABYQAAAAACVwAAAAAAVwAAAAAAdgAAAAAAVwAAAAADcwAAAAADcwAAAAABVwAAAAACEAAAAAADEAAAAAACEAAAAAADEAAAAAADEAAAAAAALwAAAAAALwAAAAAAIAAAAAABYQAAAAADVwAAAAACVwAAAAACdgAAAAAAVwAAAAACcwAAAAABcwAAAAABVwAAAAAAEAAAAAACEAAAAAACEAAAAAAAEAAAAAAAEAAAAAAALwAAAAAALwAAAAAAIAAAAAAAYQAAAAADYQAAAAACVwAAAAABYQAAAAAAVwAAAAABcwAAAAADcwAAAAADVwAAAAABEAAAAAAAEAAAAAADEAAAAAADEAAAAAAAEAAAAAAALwAAAAAALwAAAAAAIAAAAAABYQAAAAACYQAAAAADVwAAAAAAYQAAAAABVwAAAAABcwAAAAADcwAAAAACVwAAAAAAEAAAAAABEAAAAAADEAAAAAABEAAAAAABEAAAAAADLwAAAAAALwAAAAAAIAAAAAABYQAAAAACVwAAAAADVwAAAAADdgAAAAAAVwAAAAADcwAAAAADcwAAAAABVwAAAAAAEAAAAAACEAAAAAACEAAAAAACEAAAAAAAEAAAAAABdgAAAAAAdgAAAAAAIAAAAAAAYQAAAAAAVwAAAAADVwAAAAACdgAAAAAAVwAAAAAAJAAAAAACJAAAAAACVwAAAAAAVwAAAAACVwAAAAAAVwAAAAAAVwAAAAABVwAAAAAAYQAAAAACYQAAAAADYQAAAAACYQAAAAADVwAAAAAAVwAAAAADdgAAAAAAVwAAAAADJAAAAAAAJAAAAAADJAAAAAADJAAAAAACJAAAAAADJAAAAAADJAAAAAADJAAAAAAAYQAAAAADYQAAAAADVwAAAAABVwAAAAACVwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAYQAAAAADYQAAAAADVwAAAAAAVwAAAAADVwAAAAABdgAAAAAAZwAAAAABZwAAAAABZwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAeAAAAAAAdgAAAAAAZgAAAAAAZwAAAAABYQAAAAADYQAAAAACVwAAAAABVwAAAAAAVwAAAAAAdgAAAAAAZwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAYQAAAAADYQAAAAADVwAAAAABVwAAAAAAVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAcwAAAAACcwAAAAADcwAAAAABJwAAAAAAdgAAAAAAYgAAAAAAYgAAAAAAPwAAAAAAVwAAAAACVwAAAAADVwAAAAAAVwAAAAAAVwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAcwAAAAABcwAAAAADcwAAAAAAJwAAAAAAdgAAAAAAYgAAAAAAYgAAAAAAPwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAcwAAAAAAcwAAAAADcwAAAAADJwAAAAAAdgAAAAAAYgAAAAAAYgAAAAAAPwAAAAAAVwAAAAAAdgAAAAAAcwAAAAABcwAAAAABcwAAAAAAdgAAAAAAeAAAAAAAdgAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAdgAAAAAAYgAAAAAAYgAAAAAAPwAAAAAAVwAAAAACdgAAAAAAcwAAAAABcwAAAAABcwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAA
+ tiles: YgAAAAABYgAAAAADYgAAAAABYgAAAAABVwAAAAADVwAAAAAAdwAAAAAAVwAAAAACdAAAAAADdAAAAAABVwAAAAACEAAAAAABEAAAAAABEAAAAAACEAAAAAACEAAAAAACdwAAAAAAdwAAAAAAIAAAAAADYgAAAAABVwAAAAADVwAAAAABdwAAAAAAVwAAAAAAdAAAAAACdAAAAAAAVwAAAAACEAAAAAACEAAAAAACEAAAAAADEAAAAAADEAAAAAABLwAAAAAALwAAAAAAIAAAAAAAYgAAAAABVwAAAAAAVwAAAAABdwAAAAAAVwAAAAAAdAAAAAABdAAAAAADVwAAAAACEAAAAAACEAAAAAACEAAAAAACEAAAAAABEAAAAAABLwAAAAAALwAAAAAAIAAAAAAAYgAAAAABYgAAAAAAVwAAAAACYgAAAAADVwAAAAABdAAAAAAAdAAAAAACVwAAAAABEAAAAAABEAAAAAACEAAAAAADEAAAAAABEAAAAAACLwAAAAAALwAAAAAAIAAAAAACYgAAAAACYgAAAAACVwAAAAABYgAAAAABVwAAAAABdAAAAAABdAAAAAABVwAAAAAAEAAAAAACEAAAAAADEAAAAAADEAAAAAAAEAAAAAABLwAAAAAALwAAAAAAIAAAAAADYgAAAAADVwAAAAADVwAAAAABdwAAAAAAVwAAAAABdAAAAAACdAAAAAAAVwAAAAAAEAAAAAADEAAAAAABEAAAAAADEAAAAAAAEAAAAAABdwAAAAAAdwAAAAAAIAAAAAAAYgAAAAAAVwAAAAABVwAAAAAAdwAAAAAAVwAAAAACJAAAAAADJAAAAAABVwAAAAACVwAAAAADVwAAAAAAVwAAAAACVwAAAAAAVwAAAAADYgAAAAADYgAAAAACYgAAAAADYgAAAAACVwAAAAAAVwAAAAAAdwAAAAAAVwAAAAADJAAAAAACJAAAAAABJAAAAAADJAAAAAAAJAAAAAACJAAAAAABJAAAAAADJAAAAAABYgAAAAACYgAAAAACVwAAAAAAVwAAAAABVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAYgAAAAADYgAAAAABVwAAAAACVwAAAAACVwAAAAACdwAAAAAAaAAAAAABaAAAAAACaAAAAAACdwAAAAAAdwAAAAAAdwAAAAAAeQAAAAAAdwAAAAAAZwAAAAAAaAAAAAABYgAAAAAAYgAAAAADVwAAAAADVwAAAAACVwAAAAACdwAAAAAAaAAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAYgAAAAADYgAAAAACVwAAAAADVwAAAAABVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAACdAAAAAAAdAAAAAACJwAAAAAAdwAAAAAAYwAAAAAAYwAAAAAAPwAAAAAAVwAAAAAAVwAAAAABVwAAAAADVwAAAAAAVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAAAdAAAAAACdAAAAAABJwAAAAAAdwAAAAAAYwAAAAAAYwAAAAAAPwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAADdAAAAAADdAAAAAACJwAAAAAAdwAAAAAAYwAAAAAAYwAAAAAAPwAAAAAAVwAAAAADdwAAAAAAdAAAAAABdAAAAAABdAAAAAACdwAAAAAAeQAAAAAAdwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAdwAAAAAAYwAAAAAAYwAAAAAAPwAAAAAAVwAAAAAAdwAAAAAAdAAAAAABdAAAAAACdAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAA
version: 6
-3,-3:
ind: -3,-3
- tiles: VwAAAAADVwAAAAADVwAAAAADVwAAAAAAVwAAAAACVwAAAAAAVwAAAAABYQAAAAACVwAAAAACdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAASgAAAAABSgAAAAACYQAAAAAASgAAAAAASgAAAAACYQAAAAAAYQAAAAACYQAAAAABVwAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAABwAAAAAAdgAAAAAAdgAAAAAAYQAAAAAAVwAAAAADVwAAAAADVwAAAAAAVwAAAAACVwAAAAADVwAAAAADVwAAAAADVwAAAAAAdgAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAAdgAAAAAAdgAAAAAAYQAAAAADYQAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAAdgAAAAAAdgAAAAAAYQAAAAAAVwAAAAACdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAJdgAAAAAAdgAAAAAASgAAAAACVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAABwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAASgAAAAADVwAAAAADdgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAdgAAAAAAZgAAAAAAeAAAAAAAdgAAAAAAdgAAAAAAeAAAAAAAYQAAAAADVwAAAAADdgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAASgAAAAACVwAAAAABdgAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAADdgAAAAAAZgAAAAAAZwAAAAADdgAAAAAAJAAAAAADVwAAAAADSgAAAAADVwAAAAACdgAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAJBwAAAAAJdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZwAAAAADdgAAAAAAJAAAAAABVwAAAAADYQAAAAACVwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAADVwAAAAADdgAAAAAAeAAAAAAAdgAAAAAAdgAAAAAAcwAAAAACSgAAAAAAVwAAAAADVwAAAAACdgAAAAAAeAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAcwAAAAABSgAAAAACVwAAAAADdgAAAAAAdgAAAAAAZwAAAAAAZgAAAAAAZgAAAAAAeAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAcwAAAAACYQAAAAAAVwAAAAACdgAAAAAAdgAAAAAAZwAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAYQAAAAAAYQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABJAAAAAADJAAAAAAAJAAAAAACJAAAAAAAJAAAAAACJAAAAAADJAAAAAAAJAAAAAACYQAAAAACVwAAAAABVwAAAAABdgAAAAAAdgAAAAAAVwAAAAADdgAAAAAAVwAAAAABJAAAAAACJAAAAAADVwAAAAADVwAAAAAAVwAAAAACVwAAAAAAVwAAAAABVwAAAAAC
+ tiles: VwAAAAAAVwAAAAABVwAAAAACVwAAAAABVwAAAAAAVwAAAAAAVwAAAAACYgAAAAACVwAAAAABdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAASgAAAAADSgAAAAAAYgAAAAAASgAAAAABSgAAAAACYgAAAAAAYgAAAAADYgAAAAADVwAAAAABdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAABwAAAAAAdwAAAAAAdwAAAAAAYgAAAAAAVwAAAAACVwAAAAADVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAACVwAAAAADdwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAEdwAAAAAAdwAAAAAAYgAAAAAAYgAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAAdwAAAAAAdwAAAAAAYgAAAAABVwAAAAADdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAKdwAAAAAAdwAAAAAASgAAAAABVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAABwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAASgAAAAACVwAAAAABdwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALdwAAAAAAZwAAAAAAeQAAAAAAdwAAAAAAdwAAAAAAeQAAAAAAYgAAAAABVwAAAAAAdwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAASgAAAAADVwAAAAAAdwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAdwAAAAAAZwAAAAAAaAAAAAACdwAAAAAAJAAAAAAAVwAAAAABSgAAAAADVwAAAAADdwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAaAAAAAADdwAAAAAAJAAAAAABVwAAAAACYgAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAADdwAAAAAAeQAAAAAAdwAAAAAAdwAAAAAAdAAAAAACSgAAAAACVwAAAAABVwAAAAACdwAAAAAAeQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAAASgAAAAABVwAAAAAAdwAAAAAAdwAAAAAAaAAAAAAAZwAAAAAAZwAAAAAAeQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAADYgAAAAADVwAAAAAAdwAAAAAAdwAAAAAAaAAAAAACZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAYgAAAAADYgAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAJAAAAAACJAAAAAAAJAAAAAADJAAAAAABJAAAAAAAJAAAAAACJAAAAAADJAAAAAABYgAAAAABVwAAAAAAVwAAAAADdwAAAAAAdwAAAAAAVwAAAAAAdwAAAAAAVwAAAAAAJAAAAAABJAAAAAADVwAAAAACVwAAAAABVwAAAAAAVwAAAAACVwAAAAABVwAAAAAD
version: 6
-4,0:
ind: -4,0
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAYQAAAAAAYQAAAAAAVwAAAAAAVwAAAAADXwAAAAABXwAAAAADXwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAYQAAAAADYQAAAAACYQAAAAADYQAAAAADSgAAAAACSgAAAAACYQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAYQAAAAADYQAAAAABVwAAAAAAVwAAAAABXwAAAAADXwAAAAADXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACYQAAAAAAVwAAAAABIAAAAAABIAAAAAADIAAAAAACIAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAYQAAAAADYQAAAAABVwAAAAAAVwAAAAAALwAAAAAALwAAAAAALwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACYQAAAAACVwAAAAACVwAAAAABIAAAAAADIAAAAAADIAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAYQAAAAAAYQAAAAABVwAAAAADVwAAAAADVwAAAAAAVwAAAAADVwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAADVwAAAAABVwAAAAADdgAAAAAAVwAAAAACVwAAAAACVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAVwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAVwAAAAADVwAAAAACVwAAAAADdgAAAAAAGwAAAAADGwAAAAADGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAVwAAAAABVwAAAAACVwAAAAACdgAAAAAAIAAAAAAAIAAAAAABIAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAACAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAIAAAAAADIAAAAAADIAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAGwAAAAAAGwAAAAABGwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAYgAAAAADYgAAAAACVwAAAAADVwAAAAAAXwAAAAABXwAAAAACXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAYgAAAAABYgAAAAADYgAAAAACYgAAAAAASgAAAAABSgAAAAABYgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAYgAAAAABYgAAAAADVwAAAAAAVwAAAAADXwAAAAADXwAAAAADXwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACYgAAAAACVwAAAAABIAAAAAAAIAAAAAABIAAAAAABIAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAYgAAAAAAYgAAAAACVwAAAAABVwAAAAACLwAAAAAALwAAAAAALwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABYgAAAAABVwAAAAAAVwAAAAAAIAAAAAABIAAAAAACIAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAYgAAAAAAYgAAAAABVwAAAAABVwAAAAACVwAAAAADVwAAAAACVwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAABVwAAAAABdwAAAAAAVwAAAAABVwAAAAABVwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAVwAAAAABVwAAAAABVwAAAAADdwAAAAAAGwAAAAAAGwAAAAAAGwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAVwAAAAACVwAAAAADVwAAAAAAdwAAAAAAIAAAAAADIAAAAAADIAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAIAAAAAABIAAAAAADIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAGwAAAAAAGwAAAAABGwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAA
version: 6
-4,-1:
ind: -4,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAVwAAAAABSgAAAAABVwAAAAACdgAAAAAAGwAAAAABGwAAAAADGwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAVwAAAAACSgAAAAABVwAAAAABdgAAAAAAGwAAAAABGwAAAAABGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAVwAAAAABYQAAAAADVwAAAAABdgAAAAAAGwAAAAAAGwAAAAABGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAVwAAAAAASgAAAAABVwAAAAAAdgAAAAAAGwAAAAAAGwAAAAADGwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAVwAAAAACSgAAAAAAVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAVwAAAAACSgAAAAACVwAAAAADVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAVwAAAAAAYQAAAAAAVwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAVwAAAAADSgAAAAACVwAAAAACdgAAAAAALQAAAAAALQAAAAAALQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAVwAAAAABSgAAAAADVwAAAAAAdgAAAAAALQAAAAAALQAAAAAALQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAVwAAAAABYQAAAAABVwAAAAADdgAAAAAALQAAAAAALQAAAAAALQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAVwAAAAACYQAAAAACVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAYQAAAAABYQAAAAABYQAAAAACdgAAAAAAVwAAAAACVwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAYQAAAAABYQAAAAACVwAAAAAAVwAAAAADVwAAAAACVwAAAAADVwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACYQAAAAACVwAAAAADVwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAYQAAAAADYQAAAAABVwAAAAAAVwAAAAADLwAAAAAALwAAAAAALwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACYQAAAAABVwAAAAADIAAAAAABIAAAAAAAIAAAAAABIAAAAAAD
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAVwAAAAAASgAAAAADVwAAAAAAdwAAAAAAGwAAAAAAGwAAAAACGwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAVwAAAAABSgAAAAAAVwAAAAABdwAAAAAAGwAAAAAAGwAAAAACGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAVwAAAAACYgAAAAACVwAAAAACdwAAAAAAGwAAAAACGwAAAAADGwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAVwAAAAACSgAAAAACVwAAAAADdwAAAAAAGwAAAAACGwAAAAADGwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAVwAAAAAASgAAAAACVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAVwAAAAAASgAAAAACVwAAAAAAVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAVwAAAAABYgAAAAACVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAVwAAAAABSgAAAAABVwAAAAAAdwAAAAAALQAAAAAALQAAAAAALQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAVwAAAAABSgAAAAAAVwAAAAAAdwAAAAAALQAAAAAALQAAAAAALQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAVwAAAAACYgAAAAABVwAAAAACdwAAAAAALQAAAAAALQAAAAAALQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAVwAAAAACYgAAAAAAVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAYgAAAAAAYgAAAAABYgAAAAABdwAAAAAAVwAAAAACVwAAAAAAVwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAYgAAAAAAYgAAAAADVwAAAAADVwAAAAAAVwAAAAADVwAAAAACVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABYgAAAAAAVwAAAAACVwAAAAABIAAAAAABIAAAAAABIAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAYgAAAAAAYgAAAAADVwAAAAADVwAAAAABLwAAAAAALwAAAAAALwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAYgAAAAADVwAAAAADIAAAAAABIAAAAAABIAAAAAADIAAAAAAD
version: 6
-4,-2:
ind: -4,-2
- tiles: dgAAAAAAdgAAAAAAZgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZwAAAAABZwAAAAAAZwAAAAAAdgAAAAAAdgAAAAAAVwAAAAADYQAAAAADYQAAAAADYQAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAYQAAAAADIAAAAAADdgAAAAAAZwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAABGwAAAAADGwAAAAACGwAAAAAAdgAAAAAAVwAAAAABYQAAAAADIAAAAAAALwAAAAAAeAAAAAAAdgAAAAAAIAAAAAAAGwAAAAADGwAAAAACGwAAAAACdgAAAAAAGwAAAAABGwAAAAADGwAAAAADGwAAAAAAdgAAAAAAVwAAAAAAYQAAAAABIAAAAAACLwAAAAAAdgAAAAAAdgAAAAAAcwAAAAAAcwAAAAACcwAAAAACGwAAAAADGwAAAAABGwAAAAAAGwAAAAABGwAAAAAAGwAAAAABdgAAAAAAVwAAAAAAYQAAAAAAIAAAAAABLwAAAAAAeAAAAAAAdgAAAAAAcwAAAAADcwAAAAADcwAAAAACGwAAAAAAdgAAAAAAVwAAAAAAVwAAAAACVwAAAAADVwAAAAADdgAAAAAAVwAAAAACYQAAAAACIAAAAAACLwAAAAAAdgAAAAAAdgAAAAAAcwAAAAAAcwAAAAABcwAAAAABGwAAAAADdgAAAAAAYQAAAAACYQAAAAABYQAAAAACYQAAAAACYQAAAAACVwAAAAAAYQAAAAABIAAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAGwAAAAABGwAAAAACGwAAAAADGwAAAAACdgAAAAAAYQAAAAADYQAAAAACYQAAAAACYQAAAAABYQAAAAADVwAAAAACYQAAAAADYQAAAAAAYQAAAAACZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAAAVwAAAAABVwAAAAACdgAAAAAAVwAAAAABVwAAAAACVwAAAAACYQAAAAABZwAAAAADZwAAAAABZwAAAAABdgAAAAAAdgAAAAAAeAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAAAVwAAAAACYQAAAAADdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAADdgAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAVwAAAAAAVwAAAAADVwAAAAABVwAAAAADVwAAAAAAVwAAAAABVwAAAAACYQAAAAABdgAAAAAAdgAAAAAAVwAAAAACVwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACYQAAAAADYQAAAAABYQAAAAACYQAAAAACYQAAAAADYQAAAAADdQAAAAAAdgAAAAAAVwAAAAAAVwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdgAAAAAAVwAAAAAAYQAAAAAAVwAAAAAAVwAAAAACVwAAAAADVwAAAAADVwAAAAACAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdgAAAAAAYQAAAAAAYQAAAAABYQAAAAADdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAABAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAVwAAAAAAYQAAAAADVwAAAAABdgAAAAAAVwAAAAAAVwAAAAAAVwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAVwAAAAACYQAAAAAAVwAAAAACdgAAAAAAVwAAAAADVwAAAAACVwAAAAAC
+ tiles: dwAAAAAAdwAAAAAAZwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAaAAAAAAAaAAAAAABaAAAAAABdwAAAAAAdwAAAAAAVwAAAAADYgAAAAACYgAAAAADYgAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACYgAAAAACIAAAAAABdwAAAAAAaAAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACGwAAAAAAGwAAAAACGwAAAAACdwAAAAAAVwAAAAAAYgAAAAACIAAAAAABLwAAAAAAeQAAAAAAdwAAAAAAIAAAAAAAGwAAAAACGwAAAAAAGwAAAAAAdwAAAAAAGwAAAAAAGwAAAAABGwAAAAABGwAAAAAAdwAAAAAAVwAAAAAAYgAAAAABIAAAAAAALwAAAAAAdwAAAAAAdwAAAAAAdAAAAAABdAAAAAAAdAAAAAADGwAAAAADGwAAAAAAGwAAAAAAGwAAAAADGwAAAAADGwAAAAABdwAAAAAAVwAAAAAAYgAAAAAAIAAAAAABLwAAAAAAeQAAAAAAdwAAAAAAdAAAAAABdAAAAAAAdAAAAAAAGwAAAAACdwAAAAAAVwAAAAAAVwAAAAADVwAAAAABVwAAAAACdwAAAAAAVwAAAAAAYgAAAAADIAAAAAABLwAAAAAAdwAAAAAAdwAAAAAAdAAAAAADdAAAAAACdAAAAAADGwAAAAACdwAAAAAAYgAAAAAAYgAAAAAAYgAAAAACYgAAAAACYgAAAAAAVwAAAAADYgAAAAABIAAAAAADdwAAAAAAZwAAAAAAdwAAAAAAGwAAAAAAGwAAAAABGwAAAAACGwAAAAAAdwAAAAAAYgAAAAAAYgAAAAADYgAAAAADYgAAAAADYgAAAAADVwAAAAAAYgAAAAABYgAAAAAAYgAAAAADZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAAAVwAAAAADVwAAAAACdwAAAAAAVwAAAAADVwAAAAADVwAAAAACYgAAAAAAaAAAAAACaAAAAAAAaAAAAAAAdwAAAAAAdwAAAAAAeQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAAAVwAAAAACYgAAAAADdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAABVwAAAAABVwAAAAAAVwAAAAABVwAAAAAAYgAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADYgAAAAACYgAAAAAAYgAAAAACYgAAAAABYgAAAAACYgAAAAADdgAAAAAAdwAAAAAAVwAAAAACVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAVwAAAAAAYgAAAAABVwAAAAACVwAAAAACVwAAAAABVwAAAAACVwAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAYgAAAAABYgAAAAACYgAAAAABdwAAAAAAdwAAAAAAVwAAAAACVwAAAAABAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAVwAAAAACYgAAAAADVwAAAAACdwAAAAAAVwAAAAACVwAAAAABVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAVwAAAAAAYgAAAAACVwAAAAABdwAAAAAAVwAAAAACVwAAAAADVwAAAAAD
version: 6
-4,-3:
ind: -4,-3
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAVwAAAAACYQAAAAADVwAAAAAAVwAAAAABVwAAAAAAVwAAAAADVwAAAAAAVwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAVwAAAAAAYQAAAAAAYQAAAAACYQAAAAACSgAAAAABSgAAAAADYQAAAAACSgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAVwAAAAAAVwAAAAACVwAAAAABVwAAAAACVwAAAAABVwAAAAADVwAAAAACVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAYQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAVwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAVwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAVwAAAAACAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAVwAAAAABAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAVwAAAAACAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAVwAAAAACVwAAAAABWAAAAAABVwAAAAABVwAAAAACVwAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAVwAAAAADVwAAAAADAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAVwAAAAAAVwAAAAAAVwAAAAABVwAAAAACWAAAAAABVwAAAAACdgAAAAAAeAAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAVwAAAAACWAAAAAAAWAAAAAABVwAAAAACVwAAAAABdgAAAAAAdgAAAAAAZwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAVwAAAAACWwAAAAAEWwAAAAAEWAAAAAAAVwAAAAACdgAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAYQAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAWwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAeAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAADVwAAAAAD
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAVwAAAAAAYgAAAAACVwAAAAABVwAAAAADVwAAAAADVwAAAAAAVwAAAAACVwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAVwAAAAACYgAAAAAAYgAAAAACYgAAAAACSgAAAAABSgAAAAACYgAAAAABSgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAVwAAAAAAVwAAAAABVwAAAAABVwAAAAADVwAAAAADVwAAAAABVwAAAAABVwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAYgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAVwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAVwAAAAACAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAVwAAAAADAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAVwAAAAABVwAAAAABWAAAAAAAVwAAAAAAVwAAAAABVwAAAAADdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAVwAAAAADVwAAAAABAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAVwAAAAACVwAAAAACVwAAAAADVwAAAAACWAAAAAABVwAAAAABdwAAAAAAeQAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAVwAAAAADWAAAAAABWAAAAAAAVwAAAAADVwAAAAADdwAAAAAAdwAAAAAAaAAAAAABdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAVwAAAAADWwAAAAACWwAAAAABWAAAAAAAVwAAAAADdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAYgAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAWwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAeQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAA
version: 6
2,0:
ind: 2,0
- tiles: GwAAAAACGwAAAAACGwAAAAADdgAAAAAAYQAAAAAAYQAAAAABYQAAAAACdgAAAAAAdgAAAAAAYQAAAAADYQAAAAABYQAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAYQAAAAAAVwAAAAAAYQAAAAAAVwAAAAACbgAAAAADbgAAAAADbgAAAAACdgAAAAAAVwAAAAACVwAAAAABVwAAAAADIAAAAAABVwAAAAAAVwAAAAADVwAAAAAAYQAAAAACVwAAAAAAVwAAAAADSgAAAAADVwAAAAABbgAAAAACbgAAAAACbgAAAAABdgAAAAAAYQAAAAABYQAAAAAAYQAAAAADYQAAAAABSgAAAAABSgAAAAADYQAAAAAAYQAAAAADYQAAAAAASgAAAAAASgAAAAACVwAAAAACbgAAAAACbgAAAAAAYQAAAAAAdgAAAAAAVwAAAAABVwAAAAABVwAAAAABVwAAAAAAVwAAAAADVwAAAAABVwAAAAADYQAAAAAAVwAAAAACVwAAAAAAVwAAAAADVwAAAAADbgAAAAAAbgAAAAACbgAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAaQAAAAADaQAAAAADaQAAAAADaQAAAAAAaQAAAAACaQAAAAABaQAAAAADdgAAAAAAVwAAAAADVwAAAAACVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAdgAAAAAAVwAAAAADdgAAAAAAaQAAAAABaQAAAAAAaQAAAAABdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACVwAAAAABVwAAAAAAdgAAAAAAZwAAAAAAdgAAAAAAVwAAAAADdgAAAAAAbgAAAAABbgAAAAADaQAAAAAAaQAAAAADaQAAAAACaQAAAAAAaQAAAAAAbgAAAAACVwAAAAACVwAAAAAAVwAAAAACdgAAAAAAZwAAAAACdgAAAAAAVwAAAAADdgAAAAAAbgAAAAACbgAAAAABSgAAAAACaQAAAAAAbgAAAAAAaQAAAAADSgAAAAABbgAAAAADVwAAAAABVwAAAAAAVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAbgAAAAADaQAAAAAAaQAAAAACaQAAAAADaQAAAAACaQAAAAAAbgAAAAADVwAAAAACVwAAAAACVwAAAAACdgAAAAAAeAAAAAAAeAAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAaQAAAAABdgAAAAAAdgAAAAAAdgAAAAAAaQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAaQAAAAADaQAAAAAAaQAAAAACIAAAAAABaQAAAAABaQAAAAABaQAAAAABdgAAAAAAVwAAAAAAcwAAAAADcwAAAAAAcwAAAAABcwAAAAABdgAAAAAAZQAAAAAAdgAAAAAAaQAAAAADaQAAAAADaQAAAAAAaQAAAAACaQAAAAABaQAAAAADIAAAAAAAVwAAAAAAVwAAAAABcwAAAAAAcwAAAAACcwAAAAAAcwAAAAABdgAAAAAAZQAAAAAAdgAAAAAAaQAAAAADaQAAAAACaQAAAAAAaQAAAAACaQAAAAABaQAAAAACaQAAAAAAdgAAAAAAVwAAAAABcwAAAAACcwAAAAACcwAAAAADcwAAAAABdgAAAAAAZwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAASwAAAAAASwAAAAAASwAAAAAAdgAAAAAAVwAAAAADcwAAAAAAcwAAAAACcwAAAAABcwAAAAACdgAAAAAAZwAAAAADeAAAAAAAdgAAAAAAdgAAAAAAeAAAAAAAdgAAAAAASwAAAAAASwAAAAAASwAAAAAA
+ tiles: GwAAAAAAGwAAAAAAGwAAAAACdwAAAAAAYgAAAAACYgAAAAABYgAAAAABdwAAAAAAdwAAAAAAYgAAAAACYgAAAAADYgAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAYgAAAAACVwAAAAADYgAAAAACVwAAAAAAbwAAAAADbwAAAAAAbwAAAAADdwAAAAAAVwAAAAAAVwAAAAABVwAAAAADIAAAAAABVwAAAAACVwAAAAABVwAAAAADYgAAAAAAVwAAAAABVwAAAAAASgAAAAACVwAAAAACbwAAAAABbwAAAAABbwAAAAABdwAAAAAAYgAAAAACYgAAAAACYgAAAAADYgAAAAAASgAAAAABSgAAAAACYgAAAAAAYgAAAAAAYgAAAAAASgAAAAAASgAAAAAAVwAAAAABbwAAAAADbwAAAAACYgAAAAADdwAAAAAAVwAAAAABVwAAAAADVwAAAAACVwAAAAAAVwAAAAACVwAAAAADVwAAAAACYgAAAAACVwAAAAADVwAAAAABVwAAAAACVwAAAAABbwAAAAADbwAAAAAAbwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAagAAAAABagAAAAACagAAAAACagAAAAAAagAAAAACagAAAAAAagAAAAADdwAAAAAAVwAAAAABVwAAAAACVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABdwAAAAAAVwAAAAACdwAAAAAAagAAAAAAagAAAAACagAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAACVwAAAAAAdwAAAAAAaAAAAAADdwAAAAAAVwAAAAADdwAAAAAAbwAAAAAAbwAAAAADagAAAAADagAAAAACagAAAAABagAAAAACagAAAAABbwAAAAAAVwAAAAADVwAAAAAAVwAAAAABdwAAAAAAaAAAAAABdwAAAAAAVwAAAAABdwAAAAAAbwAAAAABbwAAAAAASgAAAAADagAAAAACbwAAAAADagAAAAAASgAAAAABbwAAAAAAVwAAAAADVwAAAAABVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAbwAAAAAAagAAAAADagAAAAACagAAAAADagAAAAABagAAAAACbwAAAAADVwAAAAACVwAAAAAAVwAAAAABdwAAAAAAeQAAAAAAeQAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAagAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAagAAAAABagAAAAACagAAAAAAIAAAAAAAagAAAAADagAAAAAAagAAAAABdwAAAAAAVwAAAAACdAAAAAACdAAAAAAAdAAAAAABdAAAAAABdwAAAAAAZgAAAAAAdwAAAAAAagAAAAADagAAAAAAagAAAAAAagAAAAADagAAAAACagAAAAADIAAAAAACVwAAAAACVwAAAAABdAAAAAAAdAAAAAACdAAAAAACdAAAAAABdwAAAAAAZgAAAAAAdwAAAAAAagAAAAAAagAAAAACagAAAAABagAAAAAAagAAAAABagAAAAACagAAAAADdwAAAAAAVwAAAAAAdAAAAAADdAAAAAACdAAAAAAAdAAAAAAAdwAAAAAAaAAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAVwAAAAAAdAAAAAABdAAAAAAAdAAAAAACdAAAAAACdwAAAAAAaAAAAAADeQAAAAAAdwAAAAAAdwAAAAAAeQAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAA
version: 6
-5,-2:
ind: -5,-2
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAeAAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAeAAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAADAAAAAAADAAAAAACeAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAADAAAAAABDAAAAAABDAAAAAABdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAeQAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAeQAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAADAAAAAACDAAAAAAAeQAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAADAAAAAABDAAAAAABDAAAAAADdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
0,2:
ind: 0,2
- tiles: dgAAAAAAdgAAAAAASwAAAAAAGwAAAAABGwAAAAADGwAAAAABGwAAAAAASwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAdgAAAAAAdgAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAGwAAAAADGwAAAAACGwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAAAGwAAAAADGwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAACGwAAAAADGwAAAAACVwAAAAABdgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdgAAAAAAeAAAAAAAdgAAAAAAZwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAAAGwAAAAACGwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAdgAAAAAAdQAAAAAAdgAAAAAAGwAAAAABGwAAAAACGwAAAAABdgAAAAAAbQAAAAABbQAAAAAAbgAAAAAAdgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAdgAAAAAAdQAAAAAAdgAAAAAAGwAAAAADGwAAAAACGwAAAAAAdgAAAAAAdgAAAAAAGwAAAAAAdgAAAAAAdgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAdgAAAAAAdQAAAAAAdgAAAAAAGwAAAAABGwAAAAACGwAAAAADdgAAAAAAGwAAAAACGwAAAAACGwAAAAABdgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAdgAAAAAAdQAAAAAAdgAAAAAAGwAAAAABGwAAAAACGwAAAAABdgAAAAAAGwAAAAACGwAAAAACGwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAACdgAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAACGwAAAAAAGwAAAAAAGwAAAAAAdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAACGwAAAAABGwAAAAACGwAAAAABdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAADGwAAAAAAGwAAAAACGwAAAAAAdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: dwAAAAAAdwAAAAAASwAAAAAAGwAAAAABGwAAAAAAGwAAAAABGwAAAAADSwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAdwAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAGwAAAAAAGwAAAAABGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAADGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADGwAAAAADGwAAAAAAVwAAAAAAdwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAdwAAAAAAeQAAAAAAdwAAAAAAaAAAAAABdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABGwAAAAABGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAGwAAAAADGwAAAAACGwAAAAACdwAAAAAAbgAAAAADbgAAAAABbwAAAAACdwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAGwAAAAACGwAAAAADGwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACdwAAAAAAdwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAGwAAAAABGwAAAAACGwAAAAADdwAAAAAAGwAAAAABGwAAAAAAGwAAAAAAdwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAGwAAAAADGwAAAAACGwAAAAABdwAAAAAAGwAAAAAAGwAAAAABGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAGwAAAAABGwAAAAABGwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAGwAAAAACGwAAAAAAGwAAAAADdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAABGwAAAAAAGwAAAAADGwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-1,2:
ind: -1,2
- tiles: GwAAAAABGwAAAAAAcwAAAAAAcwAAAAAAcwAAAAABVwAAAAADVwAAAAAAVwAAAAABVwAAAAACVwAAAAAAIAAAAAADIAAAAAAAdgAAAAAAVwAAAAADVwAAAAAAVwAAAAACdgAAAAAAGwAAAAACcwAAAAACcwAAAAACcwAAAAACVwAAAAAAVwAAAAABVwAAAAACVwAAAAABVwAAAAACGwAAAAAAGwAAAAADdgAAAAAAGwAAAAAAGwAAAAACGwAAAAAAdgAAAAAAGwAAAAAAcwAAAAABcwAAAAACcwAAAAACVwAAAAADVwAAAAABVwAAAAADVwAAAAACVwAAAAAAGwAAAAACGwAAAAABdgAAAAAAGwAAAAADGwAAAAADGwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAADdgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZwAAAAACdgAAAAAAeAAAAAAAdgAAAAAAeAAAAAAAdgAAAAAAeAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABGwAAAAACVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAABGwAAAAABVwAAAAAAeAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdgAAAAAAVwAAAAABGwAAAAABVwAAAAAAdgAAAAAAGwAAAAABdgAAAAAAGwAAAAAAGwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAAAdgAAAAAAGwAAAAAAGwAAAAABGwAAAAADGwAAAAACGwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAbgAAAAABbQAAAAACbQAAAAAAdgAAAAAAGwAAAAACGwAAAAACGwAAAAAAGwAAAAADeAAAAAAAGwAAAAACGwAAAAABGwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAADdgAAAAAAdgAAAAAAIAAAAAADIAAAAAACIAAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAGwAAAAABGwAAAAAAGwAAAAAAdgAAAAAAVwAAAAADVwAAAAAAVwAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAGwAAAAAAGwAAAAAAGwAAAAACdgAAAAAAVwAAAAABVwAAAAAAVwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAGwAAAAADdgAAAAAAdgAAAAAAVwAAAAACdgAAAAAAVwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdgAAAAAAGwAAAAAAGwAAAAABGwAAAAACVwAAAAADVwAAAAADVwAAAAADVwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdgAAAAAAGwAAAAACGwAAAAADGwAAAAACVwAAAAACVwAAAAADVwAAAAAAVwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdgAAAAAAGwAAAAADGwAAAAACGwAAAAACVwAAAAACVwAAAAADVwAAAAABVwAAAAAD
+ tiles: GwAAAAACGwAAAAACdAAAAAADdAAAAAAAdAAAAAACVwAAAAAAVwAAAAADVwAAAAACVwAAAAAAVwAAAAADIAAAAAACIAAAAAABdwAAAAAAVwAAAAADVwAAAAABVwAAAAABdwAAAAAAGwAAAAABdAAAAAADdAAAAAADdAAAAAABVwAAAAABVwAAAAACVwAAAAABVwAAAAABVwAAAAADGwAAAAABGwAAAAACdwAAAAAAGwAAAAADGwAAAAAAGwAAAAADdwAAAAAAGwAAAAABdAAAAAABdAAAAAADdAAAAAAAVwAAAAACVwAAAAABVwAAAAABVwAAAAAAVwAAAAADGwAAAAABGwAAAAACdwAAAAAAGwAAAAADGwAAAAADGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAaAAAAAADdwAAAAAAeQAAAAAAdwAAAAAAeQAAAAAAdwAAAAAAeQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABGwAAAAABVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAADGwAAAAACVwAAAAADeQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAdwAAAAAAVwAAAAABGwAAAAABVwAAAAABdwAAAAAAGwAAAAABdwAAAAAAGwAAAAABGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAdwAAAAAAGwAAAAABGwAAAAAAGwAAAAACGwAAAAABGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAbwAAAAAAbgAAAAABbgAAAAADdwAAAAAAGwAAAAABGwAAAAACGwAAAAABGwAAAAADeQAAAAAAGwAAAAACGwAAAAADGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAIAAAAAADIAAAAAADIAAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAGwAAAAABGwAAAAABGwAAAAAAdwAAAAAAVwAAAAACVwAAAAACVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAGwAAAAACGwAAAAADGwAAAAAAdwAAAAAAVwAAAAADVwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACdwAAAAAAVwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAGwAAAAACGwAAAAADGwAAAAADVwAAAAABVwAAAAADVwAAAAABVwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAGwAAAAABGwAAAAAAGwAAAAAAVwAAAAAAVwAAAAABVwAAAAABVwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAGwAAAAACGwAAAAADGwAAAAABVwAAAAADVwAAAAABVwAAAAACVwAAAAAD
version: 6
-2,2:
ind: -2,2
- tiles: dQAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAZwAAAAABeAAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAGwAAAAABGwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAGwAAAAACGwAAAAADVwAAAAAAdgAAAAAAGwAAAAABGwAAAAAAGwAAAAAAGwAAAAABGwAAAAAAGwAAAAADdgAAAAAAVwAAAAADVwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABdgAAAAAAGwAAAAADGwAAAAADGwAAAAABGwAAAAADGwAAAAADGwAAAAACdgAAAAAAVwAAAAAAVwAAAAABdgAAAAAAeAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAADdgAAAAAAVwAAAAAAVwAAAAABVwAAAAADVwAAAAADVwAAAAABVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAVwAAAAABVwAAAAACVwAAAAADVwAAAAABVwAAAAADVwAAAAABVwAAAAAAVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAADdgAAAAAAVwAAAAACVwAAAAAAVwAAAAABVwAAAAABVwAAAAABVwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAGwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAeAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: dgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAaAAAAAAAeQAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAGwAAAAAAGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADdwAAAAAAZgAAAAAAdwAAAAAAGwAAAAADGwAAAAACVwAAAAAAdwAAAAAAGwAAAAABGwAAAAACGwAAAAADGwAAAAABGwAAAAADGwAAAAADdwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADdwAAAAAAGwAAAAABGwAAAAAAGwAAAAACGwAAAAACGwAAAAAAGwAAAAABdwAAAAAAVwAAAAAAVwAAAAACdwAAAAAAeQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACdwAAAAAAVwAAAAABVwAAAAACVwAAAAADVwAAAAACVwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAVwAAAAAAVwAAAAADVwAAAAAAVwAAAAACVwAAAAAAVwAAAAABVwAAAAABVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAACVwAAAAACVwAAAAADVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAGwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-1,3:
ind: -1,3
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAGwAAAAADGwAAAAAAIAAAAAAAVwAAAAADVwAAAAAAVwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAADVwAAAAABdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdgAAAAAAVwAAAAADVwAAAAACVwAAAAADVwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAVwAAAAACVwAAAAAAVwAAAAABVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdgAAAAAAVwAAAAAAGwAAAAACGwAAAAAAVwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAGwAAAAADGwAAAAABVwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAGwAAAAABGwAAAAAAIAAAAAABVwAAAAABVwAAAAABVwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAABdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAVwAAAAABVwAAAAADVwAAAAADVwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAVwAAAAAAVwAAAAACVwAAAAABVwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAVwAAAAACGwAAAAAAGwAAAAADVwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAGwAAAAACGwAAAAABVwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
0,3:
ind: 0,3
- tiles: VwAAAAABGwAAAAACGwAAAAABGwAAAAADdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAACVwAAAAACVwAAAAABVwAAAAADdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAABVwAAAAAAVwAAAAAAVwAAAAADdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAGwAAAAABGwAAAAADVwAAAAADdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAACGwAAAAACGwAAAAABdgAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: VwAAAAADGwAAAAADGwAAAAABGwAAAAADdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAACVwAAAAAAVwAAAAAAVwAAAAADdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAABVwAAAAABVwAAAAADVwAAAAABdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAABGwAAAAADGwAAAAACVwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAGwAAAAAAGwAAAAADdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
2,1:
ind: 2,1
- tiles: dgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeAAAAAAAdgAAAAAASwAAAAAASwAAAAAASwAAAAAAdgAAAAAAIAAAAAAAGwAAAAADGwAAAAAAGwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAABGwAAAAABGwAAAAABGwAAAAADGwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdgAAAAAAZgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZwAAAAABdgAAAAAAGwAAAAACSgAAAAACSgAAAAACGwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAGwAAAAADSgAAAAACSgAAAAACGwAAAAADdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAGwAAAAAAGwAAAAACVwAAAAABGwAAAAADGwAAAAACGwAAAAACGwAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAALAAAAAAALAAAAAAAdgAAAAAAGwAAAAABGwAAAAACGwAAAAABGwAAAAADdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: dwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAeQAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAIAAAAAACGwAAAAADGwAAAAADGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADGwAAAAACGwAAAAABGwAAAAACGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAZwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAaAAAAAABdwAAAAAAGwAAAAABSgAAAAAASgAAAAAAGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACGwAAAAABSgAAAAADSgAAAAADGwAAAAABdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAGwAAAAAAGwAAAAACVwAAAAABGwAAAAADGwAAAAACGwAAAAABGwAAAAADdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAALAAAAAAALAAAAAAAdwAAAAAAGwAAAAADGwAAAAABGwAAAAADGwAAAAACdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
3,0:
ind: 3,0
- tiles: dgAAAAAAbgAAAAACbgAAAAABbgAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAaQAAAAABaQAAAAAAdgAAAAAAbgAAAAABbgAAAAACbgAAAAAAaQAAAAADbgAAAAABaQAAAAACdgAAAAAAaQAAAAADaQAAAAADbgAAAAAAbgAAAAAAbgAAAAACdgAAAAAAaQAAAAABbgAAAAACbgAAAAADbgAAAAADbgAAAAACbgAAAAACaQAAAAACbgAAAAABaQAAAAADaQAAAAACaQAAAAADaQAAAAACbgAAAAACbgAAAAABbgAAAAAAbgAAAAABbgAAAAADbgAAAAABaQAAAAADaQAAAAAAaQAAAAADbgAAAAADaQAAAAABbgAAAAABaQAAAAADaQAAAAAAaQAAAAADaQAAAAACbgAAAAACbgAAAAAAbgAAAAACdgAAAAAAaQAAAAABbgAAAAAAbgAAAAABbgAAAAAAbgAAAAADbgAAAAABaQAAAAABbgAAAAABaQAAAAAAdgAAAAAAaQAAAAACaQAAAAAAbgAAAAACbgAAAAACbgAAAAADdgAAAAAAaQAAAAADaQAAAAAAdgAAAAAAbgAAAAABbgAAAAADbgAAAAACaQAAAAABbgAAAAACIAAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAaQAAAAAAbgAAAAAAaQAAAAABdgAAAAAAaQAAAAABaQAAAAACaQAAAAAAaQAAAAADdgAAAAAAZgAAAAAAeAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAbgAAAAAAaQAAAAAAbgAAAAACaQAAAAACaQAAAAABaQAAAAABbgAAAAAAbgAAAAAAbgAAAAAAdgAAAAAAZwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAbgAAAAABbgAAAAACbgAAAAABaQAAAAACdgAAAAAAaQAAAAACbgAAAAABbgAAAAABbgAAAAACdgAAAAAAZwAAAAACZwAAAAADZQAAAAAAZQAAAAAAdgAAAAAAVwAAAAAAbgAAAAABaQAAAAADbgAAAAAAaQAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAVwAAAAAAVwAAAAADdgAAAAAAaQAAAAACbgAAAAABaQAAAAACdgAAAAAAIAAAAAADGwAAAAABGwAAAAADGwAAAAACGwAAAAACcwAAAAABcwAAAAADdgAAAAAAZQAAAAAAdgAAAAAAVwAAAAADdgAAAAAAaQAAAAAAbgAAAAACaQAAAAADaQAAAAADaQAAAAAAGwAAAAACGwAAAAAAGwAAAAACdgAAAAAAcwAAAAADcwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAaQAAAAACbgAAAAABaQAAAAACdgAAAAAAaQAAAAADGwAAAAAAGwAAAAABGwAAAAACdgAAAAAAcwAAAAABcwAAAAACdgAAAAAAdgAAAAAAeAAAAAAAdgAAAAAAaQAAAAABaQAAAAACbgAAAAAAaQAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAbgAAAAAAbgAAAAACbgAAAAABbgAAAAAAaQAAAAABaQAAAAABaQAAAAADbgAAAAADaQAAAAABaQAAAAACaQAAAAADaQAAAAADaQAAAAABdgAAAAAAZgAAAAAAdgAAAAAAbgAAAAADbgAAAAAAbgAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAIAAAAAAAbgAAAAABbgAAAAADbgAAAAAAaQAAAAAAdgAAAAAAZgAAAAAA
+ tiles: dwAAAAAAbwAAAAACbwAAAAACbwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAABagAAAAABdwAAAAAAbwAAAAACbwAAAAABbwAAAAADagAAAAABbwAAAAAAagAAAAACdwAAAAAAagAAAAABagAAAAABbwAAAAADbwAAAAADbwAAAAACdwAAAAAAagAAAAADbwAAAAADbwAAAAABbwAAAAADbwAAAAADbwAAAAADagAAAAAAbwAAAAAAagAAAAACagAAAAADagAAAAAAagAAAAACbwAAAAAAbwAAAAABbwAAAAACbwAAAAADbwAAAAABbwAAAAABagAAAAACagAAAAADagAAAAABbwAAAAADagAAAAACbwAAAAADagAAAAABagAAAAAAagAAAAADagAAAAABbwAAAAADbwAAAAACbwAAAAABdwAAAAAAagAAAAACbwAAAAAAbwAAAAAAbwAAAAACbwAAAAABbwAAAAADagAAAAACbwAAAAACagAAAAAAdwAAAAAAagAAAAACagAAAAADbwAAAAADbwAAAAADbwAAAAADdwAAAAAAagAAAAACagAAAAACdwAAAAAAbwAAAAACbwAAAAABbwAAAAADagAAAAABbwAAAAAAIAAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAAAbwAAAAABagAAAAABdwAAAAAAagAAAAACagAAAAADagAAAAAAagAAAAADdwAAAAAAZwAAAAAAeQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAbwAAAAAAagAAAAADbwAAAAAAagAAAAAAagAAAAAAagAAAAACbwAAAAADbwAAAAABbwAAAAACdwAAAAAAaAAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAbwAAAAABbwAAAAABbwAAAAAAagAAAAAAdwAAAAAAagAAAAACbwAAAAACbwAAAAADbwAAAAACdwAAAAAAaAAAAAADaAAAAAABZgAAAAAAZgAAAAAAdwAAAAAAVwAAAAABbwAAAAACagAAAAACbwAAAAABagAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAVwAAAAADVwAAAAADdwAAAAAAagAAAAADbwAAAAAAagAAAAACdwAAAAAAIAAAAAAAGwAAAAADGwAAAAACGwAAAAADGwAAAAAAdAAAAAACdAAAAAABdwAAAAAAZgAAAAAAdwAAAAAAVwAAAAAAdwAAAAAAagAAAAABbwAAAAAAagAAAAADagAAAAACagAAAAACGwAAAAACGwAAAAAAGwAAAAADdwAAAAAAdAAAAAABdAAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAACbwAAAAACagAAAAABdwAAAAAAagAAAAABGwAAAAABGwAAAAADGwAAAAACdwAAAAAAdAAAAAACdAAAAAACdwAAAAAAdwAAAAAAeQAAAAAAdwAAAAAAagAAAAADagAAAAABbwAAAAACagAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAbwAAAAADbwAAAAACbwAAAAADbwAAAAACagAAAAADagAAAAADagAAAAADbwAAAAADagAAAAACagAAAAAAagAAAAADagAAAAABagAAAAABdwAAAAAAZwAAAAAAdwAAAAAAbwAAAAACbwAAAAADbwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAIAAAAAADbwAAAAAAbwAAAAACbwAAAAAAagAAAAAAdwAAAAAAZwAAAAAA
version: 6
3,1:
ind: 3,1
- tiles: dgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAaQAAAAAAbgAAAAAAbgAAAAAAbgAAAAABaQAAAAADdgAAAAAAeAAAAAAAdgAAAAAAdgAAAAAAeAAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAaQAAAAACaQAAAAACaQAAAAADaQAAAAAAaQAAAAABdgAAAAAAeAAAAAAAZwAAAAABZwAAAAABeAAAAAAAdgAAAAAAeAAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAdgAAAAAALwAAAAAAcwAAAAAAcwAAAAACcwAAAAADcwAAAAABdgAAAAAAZwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZwAAAAADdgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAACgAAAAAAdgAAAAAAZwAAAAAAGwAAAAAAdgAAAAAAWAAAAAABXgAAAAAAVwAAAAABVwAAAAAAdgAAAAAAZwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZwAAAAADLAAAAAAAdgAAAAAAXgAAAAAAVwAAAAAAWAAAAAAAXgAAAAAAdgAAAAAAZwAAAAADZwAAAAACdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAeAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAeAAAAAAAeAAAAAAAdgAAAAAAeAAAAAAAdgAAAAAAeAAAAAAAdgAAAAAAeAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeAAAAAAAdgAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAeAAAAAAAdgAAAAAAeAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAcwAAAAACdgAAAAAAcwAAAAACcwAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAcwAAAAADdgAAAAAAcwAAAAAAcwAAAAADdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAcwAAAAACcwAAAAABcwAAAAABdgAAAAAAcwAAAAACcwAAAAACdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: dwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAABbwAAAAAAbwAAAAACbwAAAAADagAAAAADdwAAAAAAeQAAAAAAdwAAAAAAdwAAAAAAeQAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAagAAAAACagAAAAABagAAAAACagAAAAADagAAAAAAdwAAAAAAeQAAAAAAaAAAAAACaAAAAAABeQAAAAAAdwAAAAAAeQAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAALwAAAAAAdAAAAAACdAAAAAAAdAAAAAAAdAAAAAADdwAAAAAAaAAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAaAAAAAABdwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAACgAAAAAAdwAAAAAAaAAAAAACGwAAAAABdwAAAAAAWAAAAAABXgAAAAAAVwAAAAAAVwAAAAADdwAAAAAAaAAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAaAAAAAADLAAAAAAAdwAAAAAAXgAAAAAAVwAAAAAAWAAAAAABXgAAAAAAdwAAAAAAaAAAAAACaAAAAAADdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAeQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAaAAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAeQAAAAAAeQAAAAAAdwAAAAAAeQAAAAAAdwAAAAAAeQAAAAAAdwAAAAAAeQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAeQAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAeQAAAAAAdwAAAAAAeQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAAAdwAAAAAAdAAAAAABdAAAAAABdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAABdwAAAAAAdAAAAAAAdAAAAAADdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdAAAAAADdAAAAAADdAAAAAABdwAAAAAAdAAAAAAAdAAAAAADdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-4,-4:
ind: -4,-4
- tiles: AAAAAAAAdQAAAAAAAAAAAAAAdgAAAAAAIAAAAAABGwAAAAADGwAAAAAAGwAAAAABGwAAAAACIAAAAAACIAAAAAABdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdgAAAAAAIAAAAAABGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAABIAAAAAADIAAAAAABdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdgAAAAAAIAAAAAABGwAAAAACGwAAAAACGwAAAAADGwAAAAABIAAAAAABIAAAAAABdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdgAAAAAAGwAAAAACGwAAAAABGwAAAAABGwAAAAADGwAAAAADIAAAAAAAIAAAAAABdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdgAAAAAAIAAAAAAAGwAAAAABGwAAAAABGwAAAAAAGwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdgAAAAAAIAAAAAABGwAAAAACGwAAAAACGwAAAAABGwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdgAAAAAAIAAAAAABGwAAAAADGwAAAAADGwAAAAAAGwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdgAAAAAAGwAAAAAAGwAAAAADGwAAAAABGwAAAAAAGwAAAAACGwAAAAACIAAAAAABdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAIAAAAAABIAAAAAACIAAAAAACdgAAAAAAGwAAAAAAGwAAAAADGwAAAAACdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAIAAAAAAAIAAAAAACIAAAAAADdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAVwAAAAACYQAAAAACVwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAVwAAAAABSgAAAAACVwAAAAACdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAVwAAAAACSgAAAAADVwAAAAABdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAVwAAAAABSgAAAAABVwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAVwAAAAACYQAAAAADVwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAYQAAAAABYQAAAAACYQAAAAACdgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAA
+ tiles: AAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAIAAAAAAAGwAAAAADGwAAAAADGwAAAAADGwAAAAACIAAAAAAAIAAAAAABdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAIAAAAAADGwAAAAADGwAAAAADGwAAAAADGwAAAAABIAAAAAABIAAAAAADdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAIAAAAAAAGwAAAAADGwAAAAAAGwAAAAADGwAAAAADIAAAAAACIAAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAGwAAAAACGwAAAAABGwAAAAACGwAAAAAAGwAAAAABIAAAAAAAIAAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAIAAAAAADGwAAAAACGwAAAAACGwAAAAAAGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAIAAAAAADGwAAAAABGwAAAAAAGwAAAAACGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAIAAAAAACGwAAAAADGwAAAAAAGwAAAAABGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAGwAAAAABGwAAAAABGwAAAAABGwAAAAACGwAAAAABGwAAAAADIAAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAIAAAAAABIAAAAAABIAAAAAADdwAAAAAAGwAAAAABGwAAAAADGwAAAAADdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAIAAAAAADIAAAAAADIAAAAAACdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAVwAAAAAAYgAAAAAAVwAAAAADdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAVwAAAAABSgAAAAAAVwAAAAACdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAVwAAAAADSgAAAAAAVwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAVwAAAAABSgAAAAABVwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAVwAAAAADYgAAAAADVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAYgAAAAADYgAAAAADYgAAAAABdwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAA
version: 6
-3,-4:
ind: -3,-4
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAIAAAAAACIAAAAAABGwAAAAAAGwAAAAABGwAAAAADGwAAAAACIAAAAAAAdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAIAAAAAADIAAAAAABGwAAAAABGwAAAAAAGwAAAAADGwAAAAADIAAAAAABdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAIAAAAAAAIAAAAAAAGwAAAAADGwAAAAADGwAAAAADGwAAAAADIAAAAAABdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAIAAAAAABIAAAAAAAGwAAAAAAGwAAAAACGwAAAAABGwAAAAADIAAAAAABdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAADGwAAAAADGwAAAAAAGwAAAAABIAAAAAACdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAACGwAAAAADGwAAAAADGwAAAAABIAAAAAACdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAABGwAAAAACGwAAAAABGwAAAAADIAAAAAADdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAIAAAAAAAIAAAAAAAGwAAAAABGwAAAAAAGwAAAAABGwAAAAABGwAAAAABdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAGwAAAAACGwAAAAADGwAAAAABdgAAAAAAIAAAAAABIAAAAAAAIAAAAAADdgAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAIAAAAAACIAAAAAABIAAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAVwAAAAAAYQAAAAACVwAAAAABdgAAAAAAVwAAAAACVwAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAVwAAAAACSgAAAAAAVwAAAAABVwAAAAADVwAAAAACVwAAAAADdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAVwAAAAADSgAAAAACVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAVwAAAAACSgAAAAADVwAAAAABdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABYQAAAAADVwAAAAACdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAdgAAAAAAYQAAAAAAYQAAAAACYQAAAAACdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAIAAAAAAAIAAAAAACGwAAAAAAGwAAAAABGwAAAAABGwAAAAABIAAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAIAAAAAACIAAAAAAAGwAAAAACGwAAAAACGwAAAAAAGwAAAAACIAAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAIAAAAAABIAAAAAAAGwAAAAABGwAAAAABGwAAAAAAGwAAAAAAIAAAAAADdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAIAAAAAACIAAAAAAAGwAAAAAAGwAAAAABGwAAAAADGwAAAAABIAAAAAACdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACGwAAAAAAGwAAAAAAGwAAAAAAIAAAAAADdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABGwAAAAACGwAAAAAAGwAAAAACIAAAAAACdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAADGwAAAAAAGwAAAAAAIAAAAAABdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAIAAAAAADIAAAAAADGwAAAAACGwAAAAADGwAAAAACGwAAAAADGwAAAAACdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAGwAAAAACGwAAAAACGwAAAAABdwAAAAAAIAAAAAAAIAAAAAACIAAAAAABdwAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAIAAAAAACIAAAAAACIAAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAVwAAAAABYgAAAAACVwAAAAADdwAAAAAAVwAAAAAAVwAAAAACdwAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAVwAAAAACSgAAAAACVwAAAAACVwAAAAADVwAAAAADVwAAAAABdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAVwAAAAABSgAAAAACVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAVwAAAAADSgAAAAAAVwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABYgAAAAABVwAAAAACdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAdwAAAAAAYgAAAAACYgAAAAACYgAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAA
version: 6
-4,-5:
ind: -4,-5
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAGwAAAAAAGwAAAAACGwAAAAADGwAAAAABGwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdgAAAAAAGwAAAAABGwAAAAABGwAAAAACGwAAAAABGwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAGwAAAAACGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAACGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-3,-5:
ind: -3,-5
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAADGwAAAAADdgAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAADGwAAAAACGwAAAAACGwAAAAABGwAAAAADdgAAAAAAAAAAAAAAdQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACGwAAAAAAGwAAAAABGwAAAAACGwAAAAABdwAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADGwAAAAACGwAAAAAAGwAAAAACGwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAA
version: 6
3,-1:
ind: 3,-1
- tiles: dgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeAAAAAAAdgAAAAAAdgAAAAAAVwAAAAABVwAAAAACVwAAAAACdgAAAAAAdgAAAAAAVwAAAAADGwAAAAAAGwAAAAABGwAAAAACGwAAAAADGwAAAAACGwAAAAACdgAAAAAAZQAAAAAAdgAAAAAAIAAAAAADVwAAAAACVwAAAAABVwAAAAACVwAAAAAAdgAAAAAAVwAAAAACGwAAAAABGwAAAAABGwAAAAABGwAAAAACGwAAAAABGwAAAAAAdgAAAAAAZwAAAAAAdgAAAAAAVwAAAAADVwAAAAACVwAAAAABVwAAAAABVwAAAAACdgAAAAAAVwAAAAADGwAAAAABGwAAAAADGwAAAAACGwAAAAADGwAAAAACGwAAAAAAdgAAAAAAZwAAAAABdgAAAAAAVwAAAAADVwAAAAAAVwAAAAADVwAAAAADVwAAAAABVwAAAAACVwAAAAAAGwAAAAADGwAAAAAAGwAAAAABGwAAAAADGwAAAAABGwAAAAACdgAAAAAAZwAAAAACdgAAAAAAVwAAAAACVwAAAAADVwAAAAABVwAAAAACVwAAAAABdgAAAAAAVwAAAAAAIAAAAAABIAAAAAADIAAAAAABIAAAAAABIAAAAAABIAAAAAADdgAAAAAAZwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAIAAAAAACIAAAAAACIAAAAAADIAAAAAADIAAAAAABIAAAAAACdgAAAAAAeAAAAAAAZwAAAAAAZwAAAAAAZwAAAAADZQAAAAAAZQAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdgAAAAAAGwAAAAACdgAAAAAAGwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAaQAAAAADbgAAAAACbgAAAAABbgAAAAADaQAAAAABdgAAAAAAbgAAAAADbgAAAAACdgAAAAAAaQAAAAABaQAAAAACaQAAAAABaQAAAAACaQAAAAABaQAAAAABdgAAAAAAaQAAAAABaQAAAAABbgAAAAADaQAAAAAAaQAAAAACaQAAAAADbgAAAAAAbgAAAAADdgAAAAAAaQAAAAABaQAAAAABaQAAAAAAaQAAAAAAaQAAAAACaQAAAAACdgAAAAAAaQAAAAACaQAAAAAAbgAAAAADaQAAAAAAaQAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAaQAAAAADbgAAAAAAbgAAAAACbgAAAAAAbgAAAAABbgAAAAAAdgAAAAAAaQAAAAAAbgAAAAADbgAAAAADbgAAAAABaQAAAAABaQAAAAADaQAAAAABaQAAAAACaQAAAAADaQAAAAABbgAAAAADbgAAAAAAbgAAAAACbgAAAAADbgAAAAABdgAAAAAAaQAAAAABaQAAAAACbgAAAAACaQAAAAAAaQAAAAACaQAAAAAAaQAAAAACaQAAAAAAaQAAAAABaQAAAAACbgAAAAADbgAAAAABbgAAAAADbgAAAAADbgAAAAADdgAAAAAAaQAAAAADaQAAAAADbgAAAAABaQAAAAABaQAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAaQAAAAACbgAAAAADbgAAAAABbgAAAAABaQAAAAACdgAAAAAAbgAAAAADbgAAAAADdgAAAAAAeQAAAAACeAAAAAAAdgAAAAAAdgAAAAAAeAAAAAAAZQAAAAAAZQAAAAAAaQAAAAAAbgAAAAAAbgAAAAACbgAAAAADaQAAAAACaQAAAAABbgAAAAAAbgAAAAACdgAAAAAAZwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAA
+ tiles: dwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAeQAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAACVwAAAAADdwAAAAAAdwAAAAAAVwAAAAABGwAAAAABGwAAAAADGwAAAAADGwAAAAABGwAAAAABGwAAAAABdwAAAAAAZgAAAAAAdwAAAAAAIAAAAAADVwAAAAAAVwAAAAADVwAAAAACVwAAAAACdwAAAAAAVwAAAAAAGwAAAAAAGwAAAAABGwAAAAAAGwAAAAABGwAAAAADGwAAAAAAdwAAAAAAaAAAAAAAdwAAAAAAVwAAAAADVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAACdwAAAAAAVwAAAAACGwAAAAACGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAADGwAAAAAAdwAAAAAAaAAAAAABdwAAAAAAVwAAAAABVwAAAAADVwAAAAADVwAAAAACVwAAAAACVwAAAAADVwAAAAAAGwAAAAACGwAAAAADGwAAAAACGwAAAAAAGwAAAAADGwAAAAACdwAAAAAAaAAAAAACdwAAAAAAVwAAAAACVwAAAAADVwAAAAAAVwAAAAADVwAAAAABdwAAAAAAVwAAAAAAIAAAAAAAIAAAAAABIAAAAAACIAAAAAAAIAAAAAAAIAAAAAADdwAAAAAAaAAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAIAAAAAADIAAAAAAAIAAAAAADIAAAAAABIAAAAAAAIAAAAAADdwAAAAAAeQAAAAAAaAAAAAADaAAAAAADaAAAAAACZgAAAAAAZgAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAdwAAAAAAGwAAAAACdwAAAAAAGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAADbwAAAAABbwAAAAACbwAAAAABagAAAAABdwAAAAAAbwAAAAACbwAAAAABdwAAAAAAagAAAAABagAAAAAAagAAAAABagAAAAACagAAAAABagAAAAADdwAAAAAAagAAAAADagAAAAABbwAAAAACagAAAAACagAAAAADagAAAAABbwAAAAABbwAAAAADdwAAAAAAagAAAAAAagAAAAADagAAAAAAagAAAAADagAAAAACagAAAAABdwAAAAAAagAAAAADagAAAAABbwAAAAAAagAAAAACagAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAABbwAAAAADbwAAAAADbwAAAAAAbwAAAAABbwAAAAACdwAAAAAAagAAAAADbwAAAAAAbwAAAAAAbwAAAAADagAAAAAAagAAAAACagAAAAADagAAAAABagAAAAABagAAAAABbwAAAAACbwAAAAAAbwAAAAADbwAAAAAAbwAAAAABdwAAAAAAagAAAAAAagAAAAADbwAAAAABagAAAAAAagAAAAAAagAAAAABagAAAAADagAAAAAAagAAAAACagAAAAACbwAAAAAAbwAAAAABbwAAAAAAbwAAAAABbwAAAAABdwAAAAAAagAAAAADagAAAAADbwAAAAADagAAAAAAagAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAADbwAAAAADbwAAAAAAbwAAAAAAagAAAAADdwAAAAAAbwAAAAACbwAAAAAAdwAAAAAAegAAAAACeQAAAAAAdwAAAAAAdwAAAAAAeQAAAAAAZgAAAAAAZgAAAAAAagAAAAABbwAAAAABbwAAAAAAbwAAAAADagAAAAADagAAAAADbwAAAAABbwAAAAAAdwAAAAAAaAAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAA
version: 6
4,0:
ind: 4,0
- tiles: dgAAAAAAZwAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAeAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAZwAAAAABdgAAAAAAZQAAAAAAZgAAAAAAeAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAZwAAAAADdgAAAAAAeAAAAAAAZgAAAAAAdgAAAAAAeAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAZwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAZwAAAAAAdgAAAAAAZwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZwAAAAACeAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAADVwAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAACdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAABVwAAAAABdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: dwAAAAAAaAAAAAADdwAAAAAAZgAAAAAAZgAAAAAAeQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAaAAAAAAAdwAAAAAAZgAAAAAAZwAAAAAAeQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAaAAAAAACdwAAAAAAeQAAAAAAZwAAAAAAdwAAAAAAeQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAaAAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAaAAAAAAAdwAAAAAAaAAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAaAAAAAACeQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAABVwAAAAACdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAACVwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAADVwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
4,-1:
ind: 4,-1
- tiles: VwAAAAACVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAASgAAAAAAVwAAAAADdgAAAAAAYQAAAAADYQAAAAAAYQAAAAACYQAAAAACYQAAAAAAdgAAAAAAVwAAAAACZgAAAAAAVwAAAAAAVwAAAAADVwAAAAAAdgAAAAAAdgAAAAAASgAAAAADVwAAAAAAdgAAAAAAYQAAAAAAYQAAAAACYQAAAAABYQAAAAABYQAAAAAAdgAAAAAAVwAAAAABZgAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAdgAAAAAAdgAAAAAAVwAAAAABVwAAAAABVwAAAAAAYQAAAAACYQAAAAADYQAAAAACYQAAAAAAYQAAAAABdgAAAAAAZQAAAAAAZQAAAAAAVwAAAAADVwAAAAACVwAAAAADdgAAAAAAdgAAAAAAVwAAAAADVwAAAAADdgAAAAAAYQAAAAADYQAAAAADYQAAAAABYQAAAAAAYQAAAAABdgAAAAAAZQAAAAAAZQAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAYQAAAAABVwAAAAAAVwAAAAADVwAAAAACYQAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeAAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAeAAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeAAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZwAAAAADdgAAAAAAZgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZwAAAAABZgAAAAAAdgAAAAAAdgAAAAAAZwAAAAABeAAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZQAAAAAAZQAAAAAAeAAAAAAAeAAAAAAAZwAAAAACZwAAAAACdgAAAAAAZQAAAAAAZQAAAAAAZwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZwAAAAACdgAAAAAAeAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAAAeAAAAAAAdgAAAAAAZQAAAAAAZwAAAAADdgAAAAAAeAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAZwAAAAAAeAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: VwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAASgAAAAAAVwAAAAABdwAAAAAAYgAAAAABYgAAAAACYgAAAAADYgAAAAADYgAAAAAAdwAAAAAAVwAAAAAAZwAAAAAAVwAAAAABVwAAAAACVwAAAAADdwAAAAAAdwAAAAAASgAAAAAAVwAAAAABdwAAAAAAYgAAAAACYgAAAAAAYgAAAAABYgAAAAAAYgAAAAABdwAAAAAAVwAAAAAAZwAAAAAAVwAAAAACVwAAAAAAVwAAAAACdwAAAAAAdwAAAAAAVwAAAAACVwAAAAABVwAAAAADYgAAAAACYgAAAAAAYgAAAAADYgAAAAAAYgAAAAACdwAAAAAAZgAAAAAAZgAAAAAAVwAAAAABVwAAAAADVwAAAAADdwAAAAAAdwAAAAAAVwAAAAABVwAAAAADdwAAAAAAYgAAAAACYgAAAAAAYgAAAAADYgAAAAAAYgAAAAACdwAAAAAAZgAAAAAAZgAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAYgAAAAAAVwAAAAABVwAAAAACVwAAAAAAYgAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAeQAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAeQAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAeQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAeQAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAaAAAAAACdwAAAAAAZwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAaAAAAAABZwAAAAAAdwAAAAAAdwAAAAAAaAAAAAADeQAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZgAAAAAAZgAAAAAAeQAAAAAAeQAAAAAAaAAAAAACaAAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAaAAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAaAAAAAACdwAAAAAAeQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAeQAAAAAAdwAAAAAAZgAAAAAAaAAAAAADdwAAAAAAeQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAaAAAAAAAeQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
4,1:
ind: 4,1
- tiles: dgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: dwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
4,-2:
ind: 4,-2
- tiles: dgAAAAAAZwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAZgAAAAAAZgAAAAAAdgAAAAAAZwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZwAAAAAAdgAAAAAAdgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAADGwAAAAABGwAAAAAAGwAAAAAAZgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAABGwAAAAABIAAAAAAAGwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAABGwAAAAAAGwAAAAABGwAAAAABdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAGwAAAAADIAAAAAABIAAAAAACIAAAAAAAVwAAAAACVwAAAAADVwAAAAAAdgAAAAAAVwAAAAADVwAAAAAAVwAAAAABVwAAAAADdgAAAAAAdgAAAAAAZwAAAAACdgAAAAAAGwAAAAABGwAAAAABIAAAAAABGwAAAAADVwAAAAAAVwAAAAACVwAAAAAAdgAAAAAAVwAAAAAAVwAAAAACVwAAAAADVwAAAAACdgAAAAAAdgAAAAAAZwAAAAABdgAAAAAAGwAAAAAAGwAAAAABGwAAAAAAGwAAAAADVwAAAAADVwAAAAADVwAAAAADdgAAAAAAdgAAAAAAVwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZwAAAAAAdgAAAAAAcwAAAAADcwAAAAAAcwAAAAAAcwAAAAAAVwAAAAADVwAAAAAAVwAAAAAAdgAAAAAAYQAAAAADVwAAAAACcwAAAAAAcwAAAAADdgAAAAAAdgAAAAAAeAAAAAAAdgAAAAAAcwAAAAABcwAAAAADcwAAAAADcwAAAAABVwAAAAACVwAAAAABIAAAAAAAdgAAAAAAYQAAAAAAVwAAAAABcwAAAAACcwAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAcwAAAAACcwAAAAABcwAAAAADcwAAAAAAdgAAAAAAVwAAAAACdgAAAAAAdgAAAAAAYQAAAAAAVwAAAAACIAAAAAADcwAAAAADdgAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAADVwAAAAAAVwAAAAAAVwAAAAACVwAAAAAAVwAAAAABcwAAAAAAcwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeAAAAAAAZwAAAAAAZwAAAAACZwAAAAADZQAAAAAASgAAAAACVwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAASgAAAAAAVwAAAAACVwAAAAACVwAAAAADVwAAAAABVwAAAAABVwAAAAACVwAAAAABVwAAAAADVwAAAAADZgAAAAAAVwAAAAAAVwAAAAABVwAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAACVwAAAAADVwAAAAACVwAAAAADVwAAAAADVwAAAAACVwAAAAACVwAAAAABVwAAAAACZgAAAAAAVwAAAAADVwAAAAACVwAAAAADdgAAAAAAdgAAAAAASgAAAAAAVwAAAAADVwAAAAADVwAAAAABVwAAAAADVwAAAAACVwAAAAACVwAAAAACVwAAAAAAVwAAAAABZgAAAAAAVwAAAAACVwAAAAADVwAAAAABdgAAAAAAdgAAAAAA
+ tiles: dwAAAAAAaAAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZwAAAAAAZwAAAAAAdwAAAAAAaAAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAeQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAaAAAAAADdwAAAAAAdwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABGwAAAAAAGwAAAAACGwAAAAACZwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABGwAAAAABIAAAAAABGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAADGwAAAAADGwAAAAACdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAGwAAAAADIAAAAAAAIAAAAAABIAAAAAADVwAAAAABVwAAAAADVwAAAAABdwAAAAAAVwAAAAABVwAAAAABVwAAAAABVwAAAAADdwAAAAAAdwAAAAAAaAAAAAACdwAAAAAAGwAAAAAAGwAAAAAAIAAAAAAAGwAAAAACVwAAAAAAVwAAAAABVwAAAAADdwAAAAAAVwAAAAADVwAAAAACVwAAAAADVwAAAAADdwAAAAAAdwAAAAAAaAAAAAAAdwAAAAAAGwAAAAAAGwAAAAAAGwAAAAACGwAAAAADVwAAAAAAVwAAAAACVwAAAAACdwAAAAAAdwAAAAAAVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAaAAAAAADdwAAAAAAdAAAAAABdAAAAAADdAAAAAAAdAAAAAABVwAAAAADVwAAAAABVwAAAAAAdwAAAAAAYgAAAAAAVwAAAAABdAAAAAAAdAAAAAABdwAAAAAAdwAAAAAAeQAAAAAAdwAAAAAAdAAAAAACdAAAAAABdAAAAAACdAAAAAABVwAAAAADVwAAAAADIAAAAAAAdwAAAAAAYgAAAAABVwAAAAACdAAAAAABdAAAAAADdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdAAAAAACdAAAAAACdAAAAAAAdAAAAAACdwAAAAAAVwAAAAACdwAAAAAAdwAAAAAAYgAAAAABVwAAAAAAIAAAAAAAdAAAAAACdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAAAVwAAAAABVwAAAAABVwAAAAABVwAAAAADdAAAAAABdAAAAAABdwAAAAAAdwAAAAAAdwAAAAAAeQAAAAAAaAAAAAACaAAAAAABaAAAAAABZgAAAAAASgAAAAAAVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAASgAAAAAAVwAAAAACVwAAAAAAVwAAAAAAVwAAAAABVwAAAAADVwAAAAACVwAAAAADVwAAAAAAVwAAAAACZwAAAAAAVwAAAAABVwAAAAAAVwAAAAABdwAAAAAAdwAAAAAAVwAAAAABVwAAAAABVwAAAAACVwAAAAAAVwAAAAADVwAAAAADVwAAAAAAVwAAAAAAVwAAAAADVwAAAAAAZwAAAAAAVwAAAAAAVwAAAAABVwAAAAADdwAAAAAAdwAAAAAASgAAAAADVwAAAAACVwAAAAACVwAAAAADVwAAAAAAVwAAAAADVwAAAAACVwAAAAAAVwAAAAACVwAAAAADZwAAAAAAVwAAAAAAVwAAAAABVwAAAAADdwAAAAAAdwAAAAAA
version: 6
5,-1:
ind: 5,-1
- tiles: dgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZwAAAAADdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdgAAAAAAeAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAeAAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZwAAAAAAZwAAAAADdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAALwAAAAAALwAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAALwAAAAAALwAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAALwAAAAAALwAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: dwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAaAAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAeQAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAeQAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAaAAAAAABaAAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAALwAAAAAALwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAALwAAAAAALwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAALwAAAAAALwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
5,-2:
ind: 5,-2
- tiles: ZgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADdgAAAAAAdgAAAAAAZwAAAAACdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADdgAAAAAAdgAAAAAAZwAAAAADdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAACdgAAAAAAdgAAAAAAZwAAAAACdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADdgAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAACcwAAAAADdgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAADcwAAAAACdgAAAAAAZgAAAAAAdgAAAAAALAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAAAeAAAAAAAeAAAAAAAZgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdgAAAAAAZwAAAAACdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdgAAAAAAZwAAAAACdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdgAAAAAAZwAAAAABdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: ZwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAABdwAAAAAAdwAAAAAAaAAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAABdwAAAAAAdwAAAAAAaAAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAABdwAAAAAAdwAAAAAAaAAAAAADdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAAABdAAAAAABdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAAADdAAAAAABdwAAAAAAZwAAAAAAdwAAAAAALAAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAeQAAAAAAeQAAAAAAZwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAaAAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAaAAAAAACdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAaAAAAAADdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
4,-3:
ind: 4,-3
- tiles: CwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAABwAAAAAMBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAABwAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAeAAAAAAAZQAAAAAAZQAAAAAAZgAAAAAAZgAAAAAAZwAAAAADZwAAAAABZwAAAAADZQAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAA
+ tiles: CwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAeAAAAAAABwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAeQAAAAAAZgAAAAAAZgAAAAAAZwAAAAAAZwAAAAAAaAAAAAADaAAAAAACaAAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAA
version: 6
1,-4:
ind: 1,-4
- tiles: dQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAdgAAAAAAIAAAAAABIAAAAAAAdgAAAAAADwAAAAAADwAAAAAAdgAAAAAAdgAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAABdgAAAAAAGwAAAAAAGwAAAAACdgAAAAAAGwAAAAABDwAAAAAAdgAAAAAAdgAAAAAABwAAAAAABwAAAAAABwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAADGwAAAAACGwAAAAADGwAAAAABGwAAAAABDwAAAAAAdgAAAAAAdgAAAAAABwAAAAAHBwAAAAAAdwAAAAAAdgAAAAAACwAAAAAAdQAAAAAAdQAAAAAAGwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAAADwAAAAAAdgAAAAAAdgAAAAAABwAAAAAABwAAAAAABwAAAAAAdwAAAAAABwAAAAAFAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAADwAAAAAADwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAACDwAAAAAAdgAAAAAAdgAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAABBwAAAAAEAAAAAAAAAAAAAAAAGwAAAAADGwAAAAACGwAAAAACGwAAAAAAGwAAAAAAGwAAAAABDwAAAAAAdgAAAAAAdgAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAHdwAAAAAAAAAAAAAADwAAAAAADwAAAAAAGwAAAAAAGwAAAAADDwAAAAAADwAAAAAADwAAAAAAdgAAAAAAdgAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAAdwAAAAAAdgAAAAAACwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAdwAAAAAABwAAAAAAdgAAAAAAdgAAAAAAGwAAAAADGwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAdgAAAAAAdgAAAAAAIAAAAAACIAAAAAADdgAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAABwAAAAAAdgAAAAAAdgAAAAAAIAAAAAAAIAAAAAACdgAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAA
+ tiles: dgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAdwAAAAAAIAAAAAACIAAAAAABdwAAAAAADwAAAAAADwAAAAAAdwAAAAAAdwAAAAAABwAAAAABBwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAABdwAAAAAAGwAAAAABGwAAAAADdwAAAAAAGwAAAAAADwAAAAAAdwAAAAAAdwAAAAAABwAAAAAABwAAAAAABwAAAAAHeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADGwAAAAAAGwAAAAADGwAAAAACGwAAAAAAGwAAAAABDwAAAAAAdwAAAAAAdwAAAAAABwAAAAAKBwAAAAAAeAAAAAAAdwAAAAAACwAAAAAAdgAAAAAAdgAAAAAAGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADDwAAAAAAdwAAAAAAdwAAAAAABwAAAAAEBwAAAAAABwAAAAABeAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAADwAAAAAADwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAFAAAAAAAAAAAAAAAAGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACDwAAAAAAdwAAAAAAdwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAACGwAAAAADGwAAAAADGwAAAAABGwAAAAADDwAAAAAAdwAAAAAAdwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAAAAAAAAADwAAAAAADwAAAAAAGwAAAAACGwAAAAADDwAAAAAADwAAAAAADwAAAAAAdwAAAAAAdwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAdwAAAAAACwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAABwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAAdwAAAAAAdwAAAAAAIAAAAAADIAAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAABwAAAAAAdwAAAAAAdwAAAAAAIAAAAAAAIAAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAA
version: 6
0,-4:
ind: 0,-4
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdgAAAAAADwAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdgAAAAAADwAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdgAAAAAADwAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdgAAAAAADwAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdgAAAAAADwAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdgAAAAAADwAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdgAAAAAADwAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAIAAAAAACdgAAAAAAdgAAAAAAIAAAAAABdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAIAAAAAABdgAAAAAAdgAAAAAAIAAAAAAD
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAADwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAADwAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAADwAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAADwAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAADwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAADwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAADwAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAIAAAAAACdwAAAAAAdwAAAAAAIAAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAIAAAAAABdwAAAAAAdwAAAAAAIAAAAAAD
version: 6
-5,-3:
ind: -5,-3
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAA
version: 6
-3,2:
ind: -3,2
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdgAAAAAAVwAAAAADVwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdgAAAAAAVwAAAAAAVwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdgAAAAAAVwAAAAACVwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdgAAAAAAVwAAAAAAVwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdgAAAAAAVwAAAAAAVwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAVwAAAAACVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAVwAAAAACVwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAVwAAAAAAVwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAVwAAAAADVwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAVwAAAAADVwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-1,-4:
ind: -1,-4
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAA
version: 6
-2,3:
ind: -2,3
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
5,-3:
ind: 5,-3
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAHVQAAAAAAVQAAAAAAVQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAHegAAAAAAegAAAAAAPAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAewAAAAAAewAAAAAAPAAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
1,2:
ind: 1,2
- tiles: dgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAACdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAACdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAABdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: dwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAABdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAACdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAACdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-2,-4:
ind: -2,-4
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
2,-4:
ind: 2,-4
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAACwAAAAAAdgAAAAAAdwAAAAAABwAAAAADBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAdwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAKBwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAdwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAACwAAAAAAdgAAAAAAdwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAGBwAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAALdwAAAAAABwAAAAAGBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAGdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAACwAAAAAAdwAAAAAAeAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAMBwAAAAAABwAAAAACBwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAHBwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeAAAAAAABwAAAAAKBwAAAAAKBwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAACwAAAAAAdwAAAAAAeAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
3,-4:
ind: 3,-4
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAdwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAALdwAAAAAABwAAAAAABwAAAAAAdwAAAAAABwAAAAAACwAAAAAACwAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAACwAAAAAAdgAAAAAAdwAAAAAABwAAAAADBwAAAAAAdwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAIBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAHdwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAHBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAALBwAAAAAAdwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAdwAAAAAAdgAAAAAACwAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAACwAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAKBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeAAAAAAABwAAAAAABwAAAAAAeAAAAAAABwAAAAAACwAAAAAACwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAACwAAAAAAdwAAAAAAeAAAAAAABwAAAAABBwAAAAAAeAAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeAAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAABeAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAAeAAAAAAAdwAAAAAACwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAACwAAAAAA
version: 6
4,-4:
ind: 4,-4
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAcwAAAAACcwAAAAACcwAAAAABdgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAcwAAAAADcwAAAAACcwAAAAACdgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAGwAAAAABGwAAAAABGwAAAAAAdgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAGwAAAAAAGwAAAAACdgAAAAAAdgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAPgAAAAAAPgAAAAAAdgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdAAAAAADdAAAAAACdAAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdAAAAAAAdAAAAAACdAAAAAABdwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdAAAAAABdAAAAAACdAAAAAACdwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAGwAAAAADGwAAAAACGwAAAAADdwAAAAAABwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAGwAAAAADGwAAAAABdwAAAAAAdwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAPgAAAAAAPgAAAAAAdwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
type: MapGrid
- type: Broadphase
@@ -364,20 +366,20 @@ entities:
color: '#32CD32FF'
id: Arrows
decals:
- 1965: 53,14
+ 1964: 53,14
- node:
angle: 1.5707963267948966 rad
color: '#32CD32FF'
id: Arrows
decals:
- 1966: 55,14
+ 1965: 55,14
- node:
angle: 4.71238898038469 rad
color: '#DE3A3A96'
id: Arrows
decals:
- 1203: 3,31
- 1204: 3,30
+ 1202: 3,31
+ 1203: 3,30
- node:
angle: 1.5707963267948966 rad
color: '#EFB34196'
@@ -389,59 +391,67 @@ entities:
color: '#FFFFFFFF'
id: Arrows
decals:
- 2128: 69,-28
- 2129: 70,-28
- 2379: 7.759592,-44.793304
- 2380: 8.236585,-44.781075
+ 2127: 69,-28
+ 2128: 70,-28
+ 2378: 7.759592,-44.793304
+ 2379: 8.236585,-44.781075
+ 6645: -44.266167,24.17379
+ 6646: -43.71579,24.16156
- node:
angle: 1.5707963267948966 rad
color: '#FFFFFFFF'
id: Arrows
decals:
352: 44,-22
- 1280: 22,15
- 1338: -18,28
- 2022: 62,-25
- 2023: 62,-24
- 2195: 61,-18
- 2196: 61,-20
- 2220: 22,-38
- 2221: 22,-37
+ 1279: 22,15
+ 1337: -18,28
+ 2021: 62,-25
+ 2022: 62,-24
+ 2194: 61,-18
+ 2195: 61,-20
+ 2219: 22,-38
+ 2220: 22,-37
+ 6643: -45.159,22.681658
+ 6644: -45.17123,23.256496
- node:
cleanable: True
angle: 1.5707963267948966 rad
color: '#FFFFFFFF'
id: Arrows
decals:
- 3252: -25,37
+ 3251: -25,37
- node:
angle: 3.141592653589793 rad
color: '#FFFFFFFF'
id: Arrows
decals:
- 1284: 25,23
- 1285: 29,23
- 2049: 68.96644,-11.160069
- 2050: 69.96644,-11.15081
- 2051: 67.97107,-11.15544
+ 1283: 25,23
+ 1284: 29,23
+ 2048: 68.96644,-11.160069
+ 2049: 69.96644,-11.15081
+ 2050: 67.97107,-11.15544
+ 6641: -43.71579,21.837746
+ 6642: -44.32732,21.837746
- node:
angle: 4.71238898038469 rad
color: '#FFFFFFFF'
id: Arrows
decals:
- 1283: 25,12
+ 1282: 25,12
+ 6639: -42.87188,22.669428
+ 6640: -42.85965,23.219805
- node:
color: '#FFFFFFFF'
id: Basalt1
decals:
311: 26,-21
- 2501: 26,1
+ 2500: 26,1
- node:
cleanable: True
color: '#FFFFFFFF'
id: Basalt1
decals:
- 3298: 80.98914,-5.89228
+ 3297: 80.98914,-5.89228
- node:
color: '#FFFFFFFF'
id: Basalt2
@@ -452,60 +462,60 @@ entities:
color: '#FFFFFFFF'
id: Basalt2
decals:
- 3300: 79.36655,-6.805498
+ 3299: 79.36655,-6.805498
- node:
color: '#FFFFFFFF'
id: Basalt3
decals:
314: 26,-24
- 1979: 57,19
+ 1978: 57,19
- node:
cleanable: True
color: '#FFFFFFFF'
id: Basalt3
decals:
- 3297: 80.410225,-6.9767265
+ 3296: 80.410225,-6.9767265
- node:
color: '#FFFFFFFF'
id: Basalt4
decals:
317: 26,-24
- 947: -48,-27
- 2180: 56,-23
+ 946: -48,-27
+ 2179: 56,-23
- node:
color: '#FFFFFFFF'
id: Basalt5
decals:
313: 26,-22
316: 25,-23
- 946: -48,-28
- 2178: 54,-21
- 2502: 25,1
+ 945: -48,-28
+ 2177: 54,-21
+ 2501: 25,1
- node:
color: '#FFFFFFFF'
id: Basalt6
decals:
- 945: -48,-29
+ 944: -48,-29
- node:
color: '#FFFFFFFF'
id: Basalt7
decals:
312: 25,-22
- 944: -49,-29
- 1980: 57,18
- 2179: 57,-23
+ 943: -49,-29
+ 1979: 57,18
+ 2178: 57,-23
- node:
cleanable: True
color: '#FFFFFFFF'
id: Basalt7
decals:
- 3299: 80.88314,-7.8817906
+ 3298: 80.88314,-7.8817906
- node:
color: '#FFFFFFFF'
id: Basalt8
decals:
34: -4,-12
- 948: -47,-30
+ 947: -47,-30
- node:
color: '#FFFFFFFF'
id: Basalt9
@@ -517,25 +527,25 @@ entities:
color: '#FFFFFFFF'
id: Basalt9
decals:
- 3301: 79.17086,-7.824714
+ 3300: 79.17086,-7.824714
- node:
color: '#D4D4D428'
id: Bot
decals:
- 2456: -36,-58
- 2457: -36,-59
- 2458: -36,-60
- 2459: -36,-61
- 2460: -36,-62
- 2461: -36,-63
- 2462: -36,-64
- 2463: -60,-58
- 2464: -60,-59
- 2465: -60,-60
- 2466: -60,-61
- 2467: -60,-62
- 2468: -60,-63
- 2469: -60,-64
+ 2455: -36,-58
+ 2456: -36,-59
+ 2457: -36,-60
+ 2458: -36,-61
+ 2459: -36,-62
+ 2460: -36,-63
+ 2461: -36,-64
+ 2462: -60,-58
+ 2463: -60,-59
+ 2464: -60,-60
+ 2465: -60,-61
+ 2466: -60,-62
+ 2467: -60,-63
+ 2468: -60,-64
- node:
color: '#EFB34196'
id: Bot
@@ -596,7 +606,7 @@ entities:
290: 18,-21
291: 15,-22
292: 15,-21
- 1497: 46,15
+ 1496: 46,15
- node:
color: '#EFB341FF'
id: Bot
@@ -610,18 +620,18 @@ entities:
color: '#EFB341FF'
id: Bot
decals:
- 6568: 15,41
+ 6563: 15,41
- node:
angle: -1.5707963267948966 rad
color: '#FFFFFFFF'
id: Bot
decals:
- 2024: 63,-25
- 2025: 63,-24
- 2026: 65,-25
- 2027: 65,-24
- 2420: -10,-41
- 2421: -10,-40
+ 2023: 63,-25
+ 2024: 63,-24
+ 2025: 65,-25
+ 2026: 65,-24
+ 2419: -10,-41
+ 2420: -10,-40
- node:
color: '#FFFFFFFF'
id: Bot
@@ -640,349 +650,349 @@ entities:
416: -21,-26
481: -35,-5
482: -30,-5
- 587: -29,12
- 748: -38,-34
- 749: -37,-34
- 750: -36,-34
- 793: -19,-35
- 891: -52,3
- 892: -52,-1
- 1090: 33,-3
- 1091: 34,-3
- 1092: 33,-2
- 1093: 34,-2
- 1117: 39,-28
- 1118: -26,-32
- 1119: 49,-22
- 1120: 35,2
- 1121: 21,21
- 1122: 34,-37
- 1123: -62,-29
- 1133: -5,31
- 1134: -6,31
- 1135: -6,32
- 1136: -5,32
- 1139: 2,26
- 1240: -1,27
- 1241: 7,30
- 1242: 7,31
- 1243: 7,32
- 1244: 7,33
- 1245: 6,33
- 1246: 2,32
- 1260: -4,48
- 1277: 23,15
- 1278: 23,13
- 1286: 23,8
- 1287: 23,7
- 1288: 23,6
- 1289: 24,6
- 1290: 24,7
- 1291: 24,8
- 1292: 25,6
- 1299: 25,7
- 1300: 25,8
- 1301: 26,20
- 1302: 25,20
- 1303: 24,20
- 1304: 24,19
- 1305: 25,19
- 1306: 26,19
- 1307: 28,20
- 1308: 29,20
- 1309: 30,20
- 1310: 28,19
- 1311: 29,19
- 1312: 30,19
- 1319: 29,17
- 1330: -10,34
- 1331: -9,34
- 1332: -8,34
- 1333: -7,34
- 1337: -18,25
- 1340: 33,17
- 1442: 58,-33
- 1449: 57,-35
- 1464: 47,12
- 1506: 44,11
- 2004: 61,-12
- 2005: 57,-15
- 2006: 57,-14
- 2010: 64,-24
- 2011: 64,-25
- 2046: 71,-11
- 2047: 71,-12
- 2048: 71,-13
- 2108: 63,-19
- 2113: 70,-22
- 2142: 69,-13
- 2194: 61,-21
- 2200: 22,-39
- 2219: 22,-36
- 2260: 28,-36
- 2261: 29,-36
- 2262: 28,-47
- 2317: 12,-46
- 2318: 13,-46
- 2365: -2,-35
- 2366: -1,-35
- 2367: 3,-38
- 2368: 3,-37
- 2388: 9,-46
- 2389: 9,-47
- 2390: 7,-47
- 2391: 7,-46
- 2392: 10,-41
- 2398: 12,-38
- 2417: -6,-34
- 2418: -5,-34
- 2419: -4,-34
- 2473: 41,-10
- 2474: -23,12
- 3090: 66,-23
- 3091: 51,5
- 3123: -27,30
- 3136: 57,15
- 3425: 75,-13
- 3426: 75,-15
- 3431: 75,-19
- 3432: 75,-17
- 3433: 55,8
- 3434: 56,8
+ 586: -29,12
+ 747: -38,-34
+ 748: -37,-34
+ 749: -36,-34
+ 792: -19,-35
+ 890: -52,3
+ 891: -52,-1
+ 1089: 33,-3
+ 1090: 34,-3
+ 1091: 33,-2
+ 1092: 34,-2
+ 1116: 39,-28
+ 1117: -26,-32
+ 1118: 49,-22
+ 1119: 35,2
+ 1120: 21,21
+ 1121: 34,-37
+ 1122: -62,-29
+ 1132: -5,31
+ 1133: -6,31
+ 1134: -6,32
+ 1135: -5,32
+ 1138: 2,26
+ 1239: -1,27
+ 1240: 7,30
+ 1241: 7,31
+ 1242: 7,32
+ 1243: 7,33
+ 1244: 6,33
+ 1245: 2,32
+ 1259: -4,48
+ 1276: 23,15
+ 1277: 23,13
+ 1285: 23,8
+ 1286: 23,7
+ 1287: 23,6
+ 1288: 24,6
+ 1289: 24,7
+ 1290: 24,8
+ 1291: 25,6
+ 1298: 25,7
+ 1299: 25,8
+ 1300: 26,20
+ 1301: 25,20
+ 1302: 24,20
+ 1303: 24,19
+ 1304: 25,19
+ 1305: 26,19
+ 1306: 28,20
+ 1307: 29,20
+ 1308: 30,20
+ 1309: 28,19
+ 1310: 29,19
+ 1311: 30,19
+ 1318: 29,17
+ 1329: -10,34
+ 1330: -9,34
+ 1331: -8,34
+ 1332: -7,34
+ 1336: -18,25
+ 1339: 33,17
+ 1441: 58,-33
+ 1448: 57,-35
+ 1463: 47,12
+ 1505: 44,11
+ 2003: 61,-12
+ 2004: 57,-15
+ 2005: 57,-14
+ 2009: 64,-24
+ 2010: 64,-25
+ 2045: 71,-11
+ 2046: 71,-12
+ 2047: 71,-13
+ 2107: 63,-19
+ 2112: 70,-22
+ 2141: 69,-13
+ 2193: 61,-21
+ 2199: 22,-39
+ 2218: 22,-36
+ 2259: 28,-36
+ 2260: 29,-36
+ 2261: 28,-47
+ 2316: 12,-46
+ 2317: 13,-46
+ 2364: -2,-35
+ 2365: -1,-35
+ 2366: 3,-38
+ 2367: 3,-37
+ 2387: 9,-46
+ 2388: 9,-47
+ 2389: 7,-47
+ 2390: 7,-46
+ 2391: 10,-41
+ 2397: 12,-38
+ 2416: -6,-34
+ 2417: -5,-34
+ 2418: -4,-34
+ 2472: 41,-10
+ 2473: -23,12
+ 3089: 66,-23
+ 3090: 51,5
+ 3122: -27,30
+ 3135: 57,15
+ 3424: 75,-13
+ 3425: 75,-15
+ 3430: 75,-19
+ 3431: 75,-17
+ 3432: 55,8
+ 3433: 56,8
- node:
cleanable: True
color: '#FFFFFFFF'
id: Bot
decals:
- 1771: 53,10
- 1908: 48,-10
- 3220: -25,34
- 3221: -25,35
- 3222: -30,35
- 3223: -30,34
- 3249: -23,38
- 3250: -10,38
- 3251: -9,38
- 3302: 78,-8
- 3303: 79,-8
+ 1770: 53,10
+ 1907: 48,-10
+ 3219: -25,34
+ 3220: -25,35
+ 3221: -30,35
+ 3222: -30,34
+ 3248: -23,38
+ 3249: -10,38
+ 3250: -9,38
+ 3301: 78,-8
+ 3302: 79,-8
- node:
color: '#32CD32FF'
id: BotGreyscale
decals:
- 1973: 59,17
+ 1972: 59,17
- node:
color: '#52B4E996'
id: BotGreyscale
decals:
+ 3436: 55,8
3437: 55,8
3438: 55,8
3439: 55,8
3440: 55,8
- 3441: 55,8
+ 3441: 56,8
3442: 56,8
3443: 56,8
3444: 56,8
3445: 56,8
3446: 56,8
3447: 56,8
- 3448: 56,8
+ 3448: 55,8
3449: 55,8
3450: 55,8
3451: 55,8
3452: 55,8
- 3453: 55,8
+ 3453: 56,8
3454: 56,8
3455: 56,8
3456: 56,8
3457: 56,8
- 3458: 56,8
+ 3458: 55,8
3459: 55,8
3460: 55,8
3461: 55,8
3462: 55,8
- 3463: 55,8
- node:
color: '#85FFFFFF'
id: BotGreyscale
decals:
- 1765: 55,4
- 1766: 56,4
- 1767: 57,4
+ 1764: 55,4
+ 1765: 56,4
+ 1766: 57,4
- node:
cleanable: True
color: '#85FFFFFF'
id: BotGreyscale
decals:
- 1769: 57,1
- 1770: 56,1
+ 1768: 57,1
+ 1769: 56,1
- node:
cleanable: True
color: '#D4D4D428'
id: BotGreyscale
decals:
- 3272: 76,-28
- 3273: 80,-28
- 3274: 78,-30
- 3275: 78,-26
+ 3271: 76,-28
+ 3272: 80,-28
+ 3273: 78,-30
+ 3274: 78,-26
- node:
color: '#D4D4D496'
id: BotGreyscale
decals:
- 1507: 34,19
- 1508: 34,20
- 1509: 35,20
- 1510: 35,19
- 1511: -8,27
- 1512: -7,27
- 1513: -10,27
- 1514: -11,27
- 1515: -12,27
- 1516: -14,27
- 1517: -15,27
- 1518: -6,-23
- 1519: -5,-23
- 1520: -4,-23
- 1521: -6,-23
- 1522: -5,-23
- 1523: -4,-23
- 1524: -1,-23
- 1525: 1,-23
- 1526: 0,-23
+ 1506: 34,19
+ 1507: 34,20
+ 1508: 35,20
+ 1509: 35,19
+ 1510: -8,27
+ 1511: -7,27
+ 1512: -10,27
+ 1513: -11,27
+ 1514: -12,27
+ 1515: -14,27
+ 1516: -15,27
+ 1517: -6,-23
+ 1518: -5,-23
+ 1519: -4,-23
+ 1520: -6,-23
+ 1521: -5,-23
+ 1522: -4,-23
+ 1523: -1,-23
+ 1524: 1,-23
+ 1525: 0,-23
- node:
color: '#FFFFFFFF'
id: BotGreyscale
decals:
- 3435: 55,8
- 3436: 56,8
+ 3434: 55,8
+ 3435: 56,8
- node:
cleanable: True
color: '#EFB341FF'
id: BotLeft
decals:
- 6564: 6,-14
- 6566: 6,-14
+ 6559: 6,-14
+ 6561: 6,-14
- node:
color: '#FFFFFFFF'
id: BotLeft
decals:
- 2106: 74,-13
- 2107: 74,-12
- 2201: 23,-39
- 2202: 24,-39
- 2203: 25,-39
- 2396: 12,-39
+ 2105: 74,-13
+ 2106: 74,-12
+ 2200: 23,-39
+ 2201: 24,-39
+ 2202: 25,-39
+ 2395: 12,-39
- node:
cleanable: True
color: '#FFFFFFFF'
id: BotLeft
decals:
- 6561: 6,-14
+ 6556: 6,-14
- node:
cleanable: True
color: '#EFB341FF'
id: BotLeftGreyscale
decals:
- 6565: 6,-14
+ 6560: 6,-14
- node:
cleanable: True
color: '#EFB341FF'
id: BotRight
decals:
- 6567: 6,-15
+ 6562: 6,-15
- node:
color: '#FFFFFFFF'
id: BotRight
decals:
- 2104: 73,-12
- 2105: 73,-13
- 2204: 23,-36
- 2205: 24,-36
- 2206: 25,-36
- 2397: 12,-40
+ 2103: 73,-12
+ 2104: 73,-13
+ 2203: 23,-36
+ 2204: 24,-36
+ 2205: 25,-36
+ 2396: 12,-40
- node:
cleanable: True
color: '#FFFFFFFF'
id: BotRight
decals:
- 6562: 6,-15
+ 6557: 6,-15
- node:
cleanable: True
color: '#EFB341FF'
id: BotRightGreyscale
decals:
- 6563: 6,-15
+ 6558: 6,-15
- node:
color: '#FFFFFFFF'
id: Box
decals:
- 1094: 33,0
- 1095: 34,0
- 1124: -57,-24
- 1125: -56,-24
- 2234: 19,-37
- 2235: 19,-36
+ 1093: 33,0
+ 1094: 34,0
+ 1123: -57,-24
+ 1124: -56,-24
+ 2233: 19,-37
+ 2234: 19,-36
- node:
color: '#FFFFFFFF'
id: BrickTileDarkBox
decals:
- 2361: 18,-56
- 2362: 19,-56
+ 2360: 18,-56
+ 2361: 19,-56
- node:
color: '#FFFFFFFF'
id: BrickTileDarkCornerNe
decals:
- 801: -31,-36
- 1073: 28,-29
- 1441: 58,-34
- 2121: 69,-29
- 2343: 22,-53
+ 800: -31,-36
+ 1072: 28,-29
+ 1440: 58,-34
+ 2120: 69,-29
+ 2342: 22,-53
- node:
color: '#FFFFFFFF'
id: BrickTileDarkCornerNw
decals:
128: 0,-21
- 800: -33,-36
- 1071: 24,-29
- 1438: 56,-34
- 2120: 70,-29
- 2346: 15,-53
+ 799: -33,-36
+ 1070: 24,-29
+ 1437: 56,-34
+ 2119: 70,-29
+ 2345: 15,-53
- node:
color: '#FFFFFFFF'
id: BrickTileDarkCornerSe
decals:
- 799: -31,-38
- 1000: 46,-34
- 1072: 28,-34
- 1439: 58,-36
- 2123: 69,-30
- 2319: 17,-53
- 2345: 22,-60
+ 798: -31,-38
+ 999: 46,-34
+ 1071: 28,-34
+ 1438: 58,-36
+ 2122: 69,-30
+ 2318: 17,-53
+ 2344: 22,-60
- node:
color: '#FFFFFFFF'
id: BrickTileDarkCornerSw
decals:
- 798: -33,-38
- 999: 34,-34
- 1074: 24,-34
- 1440: 56,-36
- 2122: 70,-30
- 2320: 20,-53
- 2344: 15,-60
+ 797: -33,-38
+ 998: 34,-34
+ 1073: 24,-34
+ 1439: 56,-36
+ 2121: 70,-30
+ 2319: 20,-53
+ 2343: 15,-60
- node:
color: '#FFFFFFFF'
id: BrickTileDarkInnerNe
decals:
119: -4,-16
- 632: -39,-16
- 1160: -4,21
- 1433: 56,-36
- 2045: 70,-11
- 2100: 74,-17
- 2103: 74,-14
- 2337: 15,-60
- 2342: 22,-53
- 2349: 21,-53
- 2350: 22,-54
+ 631: -39,-16
+ 1159: -4,21
+ 1432: 56,-36
+ 2044: 70,-11
+ 2099: 74,-17
+ 2102: 74,-14
+ 2336: 15,-60
+ 2341: 22,-53
+ 2348: 21,-53
+ 2349: 22,-54
- node:
color: '#FFFFFFFF'
id: BrickTileDarkInnerNw
@@ -990,37 +1000,37 @@ entities:
46: -12,-19
81: -5,-15
233: 0,-22
- 1159: -1,21
- 1432: 58,-36
- 2044: 68,-11
- 2338: 22,-60
- 2341: 15,-53
- 2347: 16,-53
- 2348: 15,-54
+ 1158: -1,21
+ 1431: 58,-36
+ 2043: 68,-11
+ 2337: 22,-60
+ 2340: 15,-53
+ 2346: 16,-53
+ 2347: 15,-54
- node:
color: '#FFFFFFFF'
id: BrickTileDarkInnerSe
decals:
- 631: -39,-13
- 1165: -4,27
- 1431: 56,-34
- 2101: 74,-15
- 2102: 74,-19
- 2336: 15,-53
- 2339: 22,-60
- 2351: 22,-59
- 2352: 21,-60
+ 630: -39,-13
+ 1164: -4,27
+ 1430: 56,-34
+ 2100: 74,-15
+ 2101: 74,-19
+ 2335: 15,-53
+ 2338: 22,-60
+ 2350: 22,-59
+ 2351: 21,-60
- node:
color: '#FFFFFFFF'
id: BrickTileDarkInnerSw
decals:
45: -12,-14
480: -25,-1
- 1430: 58,-34
- 2335: 22,-53
- 2340: 15,-60
- 2353: 15,-59
- 2354: 16,-60
+ 1429: 58,-34
+ 2334: 22,-53
+ 2339: 15,-60
+ 2352: 15,-59
+ 2353: 16,-60
- node:
color: '#FFFFFFFF'
id: BrickTileDarkLineE
@@ -1054,84 +1064,84 @@ entities:
494: -34,2
495: -34,1
502: -30,2
- 615: -39,-15
- 616: -39,-14
- 710: -41,-34
- 711: -41,-33
- 712: -41,-32
- 713: -41,-31
- 714: -41,-30
- 715: -41,-29
- 716: -41,-28
- 717: -41,-27
- 718: -41,-26
- 719: -41,-25
- 738: -37,-15
- 739: -37,-14
- 740: -34,-15
- 741: -34,-14
- 742: -31,-15
- 743: -31,-14
- 744: -28,-15
- 745: -28,-14
- 788: -27,-38
- 789: -27,-37
- 796: -32,-40
- 797: -32,-39
- 805: -31,-37
- 806: -52,-2
- 807: -52,-3
- 808: -52,4
- 809: -52,5
- 926: -48,12
- 927: -48,13
- 974: -48,9
- 975: -48,10
- 976: -46,11
- 1053: 42,-34
- 1057: 28,-33
- 1058: 28,-32
- 1059: 28,-31
- 1064: 28,-30
- 1155: -4,23
+ 614: -39,-15
+ 615: -39,-14
+ 709: -41,-34
+ 710: -41,-33
+ 711: -41,-32
+ 712: -41,-31
+ 713: -41,-30
+ 714: -41,-29
+ 715: -41,-28
+ 716: -41,-27
+ 717: -41,-26
+ 718: -41,-25
+ 737: -37,-15
+ 738: -37,-14
+ 739: -34,-15
+ 740: -34,-14
+ 741: -31,-15
+ 742: -31,-14
+ 743: -28,-15
+ 744: -28,-14
+ 787: -27,-38
+ 788: -27,-37
+ 795: -32,-40
+ 796: -32,-39
+ 804: -31,-37
+ 805: -52,-2
+ 806: -52,-3
+ 807: -52,4
+ 808: -52,5
+ 925: -48,12
+ 926: -48,13
+ 973: -48,9
+ 974: -48,10
+ 975: -46,11
+ 1052: 42,-34
+ 1056: 28,-33
+ 1057: 28,-32
+ 1058: 28,-31
+ 1063: 28,-30
+ 1154: -4,23
+ 1155: -4,24
1156: -4,24
- 1157: -4,24
- 1158: -4,25
- 1177: -3,36
- 1178: -3,37
- 1179: -3,38
- 1253: 0,45
- 1254: 0,46
- 1255: 0,47
- 1266: 0,48
- 1427: 56,-35
- 1434: 58,-35
- 1768: 53,11
- 2116: 69,-30
- 2117: 69,-29
- 2197: 22,-39
- 2198: 22,-38
- 2199: 22,-37
- 2240: 27,-47
- 2241: 27,-46
- 2242: 27,-45
- 2243: 27,-44
- 2244: 27,-43
- 2245: 27,-42
- 2330: 15,-59
- 2331: 15,-58
- 2332: 15,-57
- 2333: 15,-55
- 2334: 15,-54
- 2359: 16,-60
- 2381: 9,-47
- 2382: 9,-46
+ 1157: -4,25
+ 1176: -3,36
+ 1177: -3,37
+ 1178: -3,38
+ 1252: 0,45
+ 1253: 0,46
+ 1254: 0,47
+ 1265: 0,48
+ 1426: 56,-35
+ 1433: 58,-35
+ 1767: 53,11
+ 2115: 69,-30
+ 2116: 69,-29
+ 2196: 22,-39
+ 2197: 22,-38
+ 2198: 22,-37
+ 2239: 27,-47
+ 2240: 27,-46
+ 2241: 27,-45
+ 2242: 27,-44
+ 2243: 27,-43
+ 2244: 27,-42
+ 2329: 15,-59
+ 2330: 15,-58
+ 2331: 15,-57
+ 2332: 15,-55
+ 2333: 15,-54
+ 2358: 16,-60
+ 2380: 9,-47
+ 2381: 9,-46
- node:
cleanable: True
color: '#FFFFFFFF'
id: BrickTileDarkLineE
decals:
- 1907: 53,12
+ 1906: 53,12
- node:
color: '#FFFFFFFF'
id: BrickTileDarkLineN
@@ -1155,79 +1165,79 @@ entities:
249: 8,-29
250: 9,-29
251: 23,-22
- 604: -38,-16
- 605: -37,-16
- 606: -36,-16
- 607: -35,-16
- 608: -34,-16
- 609: -32,-16
- 610: -33,-16
- 611: -31,-16
- 612: -29,-16
- 613: -30,-16
- 614: -28,-16
- 802: -32,-36
- 987: 35,-38
- 988: 36,-38
- 989: 37,-38
- 990: 38,-38
- 991: 39,-38
- 992: 40,-38
- 993: 41,-38
- 994: 42,-38
- 995: 43,-38
- 996: 44,-38
- 1020: 46,-38
- 1025: 31,-35
- 1026: 32,-35
- 1027: 33,-35
- 1028: 47,-35
- 1029: 48,-35
- 1030: 49,-35
- 1068: 25,-29
- 1069: 26,-29
- 1070: 27,-29
- 1087: 30,-2
- 1088: 31,-2
- 1089: 32,-2
- 1106: -46,-16
- 1107: -45,-16
- 1108: -44,-16
- 1161: -2,21
- 1162: -3,21
- 1256: -3,51
- 1257: -2,51
- 1258: 1,51
- 1259: 2,51
- 1429: 57,-36
- 1436: 57,-34
- 1546: -52,-49
- 1547: -51,-49
- 1548: -50,-49
- 1549: -48,-49
- 1550: -49,-49
+ 603: -38,-16
+ 604: -37,-16
+ 605: -36,-16
+ 606: -35,-16
+ 607: -34,-16
+ 608: -32,-16
+ 609: -33,-16
+ 610: -31,-16
+ 611: -29,-16
+ 612: -30,-16
+ 613: -28,-16
+ 801: -32,-36
+ 986: 35,-38
+ 987: 36,-38
+ 988: 37,-38
+ 989: 38,-38
+ 990: 39,-38
+ 991: 40,-38
+ 992: 41,-38
+ 993: 42,-38
+ 994: 43,-38
+ 995: 44,-38
+ 1019: 46,-38
+ 1024: 31,-35
+ 1025: 32,-35
+ 1026: 33,-35
+ 1027: 47,-35
+ 1028: 48,-35
+ 1029: 49,-35
+ 1067: 25,-29
+ 1068: 26,-29
+ 1069: 27,-29
+ 1086: 30,-2
+ 1087: 31,-2
+ 1088: 32,-2
+ 1105: -46,-16
+ 1106: -45,-16
+ 1107: -44,-16
+ 1160: -2,21
+ 1161: -3,21
+ 1255: -3,51
+ 1256: -2,51
+ 1257: 1,51
+ 1258: 2,51
+ 1428: 57,-36
+ 1435: 57,-34
+ 1545: -52,-49
+ 1546: -51,-49
+ 1547: -50,-49
+ 1548: -48,-49
+ 1549: -49,-49
+ 1550: -48,-49
1551: -48,-49
- 1552: -48,-49
- 1553: -47,-49
- 1554: -46,-49
- 1555: -45,-49
- 1556: -44,-49
- 2042: 67,-11
- 2043: 71,-11
- 2126: 71,-29
- 2127: 68,-29
- 2254: 28,-43
- 2255: 29,-43
- 2323: 16,-60
- 2324: 21,-60
- 2355: 15,-57
- 2356: 22,-57
- 2373: 7,-46
- 2374: 9,-46
- 2375: 8,-46
- 6549: -14,-23
- 6550: -15,-23
- 6551: -16,-23
+ 1552: -47,-49
+ 1553: -46,-49
+ 1554: -45,-49
+ 1555: -44,-49
+ 2041: 67,-11
+ 2042: 71,-11
+ 2125: 71,-29
+ 2126: 68,-29
+ 2253: 28,-43
+ 2254: 29,-43
+ 2322: 16,-60
+ 2323: 21,-60
+ 2354: 15,-57
+ 2355: 22,-57
+ 2372: 7,-46
+ 2373: 9,-46
+ 2374: 8,-46
+ 6546: -14,-23
+ 6547: -15,-23
+ 6548: -16,-23
- node:
color: '#FFFFFFFF'
id: BrickTileDarkLineS
@@ -1257,86 +1267,86 @@ entities:
478: -27,-1
479: -26,-1
490: -37,-1
- 601: -29,-18
- 602: -30,-18
- 603: -28,-18
- 617: -38,-13
- 618: -37,-13
- 619: -35,-13
- 620: -36,-13
- 621: -35,-13
- 622: -34,-13
- 623: -33,-13
- 624: -32,-13
+ 600: -29,-18
+ 601: -30,-18
+ 602: -28,-18
+ 616: -38,-13
+ 617: -37,-13
+ 618: -35,-13
+ 619: -36,-13
+ 620: -35,-13
+ 621: -34,-13
+ 622: -33,-13
+ 623: -32,-13
+ 624: -31,-13
625: -31,-13
- 626: -31,-13
- 627: -30,-13
+ 626: -30,-13
+ 627: -28,-13
628: -28,-13
- 629: -28,-13
- 630: -29,-13
- 803: -32,-38
- 978: 31,-25
- 979: 32,-25
- 980: 33,-25
- 981: 47,-25
- 982: 49,-25
- 983: 48,-25
- 997: 35,-34
- 998: 45,-34
- 1010: 39,-35
- 1065: 25,-34
- 1066: 26,-34
- 1067: 27,-34
- 1126: -57,-27
- 1127: -56,-27
- 1128: -55,-27
- 1129: -54,-27
- 1163: -3,27
- 1164: -2,27
- 1247: -3,42
- 1248: -2,42
- 1249: -1,42
- 1428: 57,-34
- 1437: 57,-36
- 1557: -56,-54
- 1558: -55,-54
- 1559: -54,-54
- 1560: -41,-54
- 1561: -40,-54
- 2124: 68,-30
- 2125: 71,-30
- 2256: 28,-46
- 2257: 29,-46
- 2321: 16,-53
- 2322: 21,-53
- 2357: 22,-55
- 2358: 15,-55
- 2385: 8,-47
- 2386: 7,-47
- 2387: 9,-47
- 2403: 10,-40
- 2404: 11,-40
- 2472: -42,-54
- 6546: -14,-25
- 6547: -15,-25
- 6548: -16,-25
+ 629: -29,-13
+ 802: -32,-38
+ 977: 31,-25
+ 978: 32,-25
+ 979: 33,-25
+ 980: 47,-25
+ 981: 49,-25
+ 982: 48,-25
+ 996: 35,-34
+ 997: 45,-34
+ 1009: 39,-35
+ 1064: 25,-34
+ 1065: 26,-34
+ 1066: 27,-34
+ 1125: -57,-27
+ 1126: -56,-27
+ 1127: -55,-27
+ 1128: -54,-27
+ 1162: -3,27
+ 1163: -2,27
+ 1246: -3,42
+ 1247: -2,42
+ 1248: -1,42
+ 1427: 57,-34
+ 1436: 57,-36
+ 1556: -56,-54
+ 1557: -55,-54
+ 1558: -54,-54
+ 1559: -41,-54
+ 1560: -40,-54
+ 2123: 68,-30
+ 2124: 71,-30
+ 2255: 28,-46
+ 2256: 29,-46
+ 2320: 16,-53
+ 2321: 21,-53
+ 2356: 22,-55
+ 2357: 15,-55
+ 2384: 8,-47
+ 2385: 7,-47
+ 2386: 9,-47
+ 2402: 10,-40
+ 2403: 11,-40
+ 2471: -42,-54
+ 6543: -14,-25
+ 6544: -15,-25
+ 6545: -16,-25
- node:
cleanable: True
color: '#FFFFFFFF'
id: BrickTileDarkLineS
decals:
- 1936: 49,-11
- 1937: 52,-11
- 3224: -30,36
- 3225: -29,36
- 3226: -28,36
- 3227: -27,36
- 3228: -26,36
- 3248: -30,36
- 3268: 76,-25
- 3269: 77,-25
- 3270: 78,-25
- 3271: 79,-25
+ 1935: 49,-11
+ 1936: 52,-11
+ 3223: -30,36
+ 3224: -29,36
+ 3225: -28,36
+ 3226: -27,36
+ 3227: -26,36
+ 3247: -30,36
+ 3267: 76,-25
+ 3268: 77,-25
+ 3269: 78,-25
+ 3270: 79,-25
- node:
color: '#FFFFFFFF'
id: BrickTileDarkLineW
@@ -1369,100 +1379,100 @@ entities:
499: -34,2
500: -30,1
501: -30,2
- 720: -28,-34
- 721: -28,-33
- 722: -28,-32
- 723: -28,-31
- 724: -28,-30
- 725: -28,-29
+ 719: -28,-34
+ 720: -28,-33
+ 721: -28,-32
+ 722: -28,-31
+ 723: -28,-30
+ 724: -28,-29
+ 725: -28,-28
726: -28,-28
727: -28,-28
- 728: -28,-28
- 729: -28,-27
- 730: -28,-26
- 731: -28,-25
- 732: -35,-15
- 733: -35,-14
- 734: -32,-15
- 735: -32,-14
- 736: -29,-15
- 737: -29,-14
- 746: -38,-15
- 747: -38,-14
- 794: -33,-40
- 795: -33,-39
- 804: -33,-37
- 814: -43,3
- 815: -43,4
- 816: -43,5
- 817: -43,-1
- 818: -43,-2
- 819: -43,-3
- 923: -48,10
- 924: -48,12
- 925: -48,13
- 973: -48,9
- 977: -50,11
- 1052: 38,-34
- 1060: 24,-33
- 1061: 24,-32
- 1062: 24,-31
- 1063: 24,-30
- 1152: -1,23
- 1153: -1,24
- 1154: -1,25
- 1174: -1,36
- 1175: -1,37
- 1176: -1,38
- 1250: -4,45
- 1251: -4,46
- 1252: -4,47
- 1296: 26,6
- 1297: 26,7
- 1298: 26,8
- 1426: 58,-35
- 1435: 56,-35
- 2118: 70,-30
- 2119: 70,-29
- 2325: 22,-59
- 2326: 22,-58
- 2327: 22,-57
- 2328: 22,-55
- 2329: 22,-54
- 2360: 21,-60
- 2383: 7,-47
- 2384: 7,-46
+ 728: -28,-27
+ 729: -28,-26
+ 730: -28,-25
+ 731: -35,-15
+ 732: -35,-14
+ 733: -32,-15
+ 734: -32,-14
+ 735: -29,-15
+ 736: -29,-14
+ 745: -38,-15
+ 746: -38,-14
+ 793: -33,-40
+ 794: -33,-39
+ 803: -33,-37
+ 813: -43,3
+ 814: -43,4
+ 815: -43,5
+ 816: -43,-1
+ 817: -43,-2
+ 818: -43,-3
+ 922: -48,10
+ 923: -48,12
+ 924: -48,13
+ 972: -48,9
+ 976: -50,11
+ 1051: 38,-34
+ 1059: 24,-33
+ 1060: 24,-32
+ 1061: 24,-31
+ 1062: 24,-30
+ 1151: -1,23
+ 1152: -1,24
+ 1153: -1,25
+ 1173: -1,36
+ 1174: -1,37
+ 1175: -1,38
+ 1249: -4,45
+ 1250: -4,46
+ 1251: -4,47
+ 1295: 26,6
+ 1296: 26,7
+ 1297: 26,8
+ 1425: 58,-35
+ 1434: 56,-35
+ 2117: 70,-30
+ 2118: 70,-29
+ 2324: 22,-59
+ 2325: 22,-58
+ 2326: 22,-57
+ 2327: 22,-55
+ 2328: 22,-54
+ 2359: 21,-60
+ 2382: 7,-47
+ 2383: 7,-46
- node:
color: '#FFFFFFFF'
id: BrickTileSteelCornerNe
decals:
215: 7,-19
- 1166: -6,28
+ 1165: -6,28
- node:
color: '#FFFFFFFF'
id: BrickTileSteelInnerNe
decals:
- 709: -39,-34
- 2189: 57,-21
+ 708: -39,-34
+ 2188: 57,-21
- node:
color: '#FFFFFFFF'
id: BrickTileSteelInnerNw
decals:
- 708: -30,-34
- 2188: 54,-21
+ 707: -30,-34
+ 2187: 54,-21
- node:
color: '#FFFFFFFF'
id: BrickTileSteelInnerSe
decals:
- 707: -39,-25
- 2190: 57,-23
+ 706: -39,-25
+ 2189: 57,-23
- node:
color: '#FFFFFFFF'
id: BrickTileSteelInnerSw
decals:
- 706: -30,-25
- 1425: 44,5
- 2191: 54,-23
+ 705: -30,-25
+ 1424: 44,5
+ 2190: 54,-23
- node:
color: '#FFFFFFFF'
id: BrickTileSteelLineE
@@ -1473,30 +1483,30 @@ entities:
212: 7,-22
213: 7,-21
214: 7,-20
- 590: -34,-21
- 591: -34,-20
- 592: -34,-19
- 593: -34,-18
- 668: -39,-33
- 669: -39,-32
- 670: -39,-31
- 671: -39,-30
+ 589: -34,-21
+ 590: -34,-20
+ 591: -34,-19
+ 592: -34,-18
+ 667: -39,-33
+ 668: -39,-32
+ 669: -39,-31
+ 670: -39,-30
+ 671: -39,-29
672: -39,-29
- 673: -39,-29
- 674: -39,-28
- 675: -39,-27
- 676: -39,-26
- 759: -39,-33
- 760: -39,-26
- 810: -52,0
- 811: -52,2
- 1172: -6,27
- 1173: -6,26
- 2095: 74,-15
- 2096: 74,-14
- 2097: 74,-17
- 2098: 74,-18
- 2099: 74,-19
+ 673: -39,-28
+ 674: -39,-27
+ 675: -39,-26
+ 758: -39,-33
+ 759: -39,-26
+ 809: -52,0
+ 810: -52,2
+ 1171: -6,27
+ 1172: -6,26
+ 2094: 74,-15
+ 2095: 74,-14
+ 2096: 74,-17
+ 2097: 74,-18
+ 2098: 74,-19
- node:
color: '#FFFFFFFF'
id: BrickTileSteelLineN
@@ -1507,423 +1517,423 @@ entities:
388: -21,12
389: -20,12
390: -19,12
+ 698: -35,-34
699: -35,-34
- 700: -35,-34
- 701: -34,-34
- 702: -33,-34
- 703: -32,-34
+ 700: -34,-34
+ 701: -33,-34
+ 702: -32,-34
+ 703: -31,-34
704: -31,-34
- 705: -31,-34
- 949: -50,-26
- 950: -46,-26
- 967: -50,-26
- 968: -46,-26
- 1080: 37,-4
- 1081: 38,-4
- 1082: 39,-4
- 1083: 36,-4
- 1167: -7,28
- 1168: -8,28
- 1169: -9,28
- 1170: -10,28
- 1171: -11,28
- 2114: 69,-28
- 2115: 70,-28
- 2363: 0,-37
- 2364: 1,-37
- 2369: 2,-37
- 3120: -27,27
- 3121: -26,27
- 3122: -25,27
+ 948: -50,-26
+ 949: -46,-26
+ 966: -50,-26
+ 967: -46,-26
+ 1079: 37,-4
+ 1080: 38,-4
+ 1081: 39,-4
+ 1082: 36,-4
+ 1166: -7,28
+ 1167: -8,28
+ 1168: -9,28
+ 1169: -10,28
+ 1170: -11,28
+ 2113: 69,-28
+ 2114: 70,-28
+ 2362: 0,-37
+ 2363: 1,-37
+ 2368: 2,-37
+ 3119: -27,27
+ 3120: -26,27
+ 3121: -25,27
- node:
cleanable: True
color: '#FFFFFF35'
id: BrickTileSteelLineS
decals:
- 6591: 83,-35
+ 6584: 83,-35
- node:
color: '#FFFFFFFF'
id: BrickTileSteelLineS
decals:
- 689: -38,-25
+ 688: -38,-25
+ 689: -36,-25
690: -36,-25
- 691: -36,-25
- 692: -37,-25
- 693: -36,-25
- 694: -35,-25
- 695: -34,-25
- 696: -33,-25
- 697: -31,-25
- 698: -32,-25
- 951: -50,-31
- 952: -46,-31
- 965: -50,-31
- 966: -46,-31
- 1077: 36,-1
- 1078: 37,-1
- 1079: 39,-1
- 1084: 38,-1
- 1109: -48,-16
- 1110: -49,-16
- 1111: -50,-16
- 1112: -51,-16
- 1422: 40,5
- 1423: 42,5
- 1424: 43,5
- 1501: 41,5
- 3307: 51,22
- 3308: 50,22
- 3309: 52,22
+ 691: -37,-25
+ 692: -36,-25
+ 693: -35,-25
+ 694: -34,-25
+ 695: -33,-25
+ 696: -31,-25
+ 697: -32,-25
+ 950: -50,-31
+ 951: -46,-31
+ 964: -50,-31
+ 965: -46,-31
+ 1076: 36,-1
+ 1077: 37,-1
+ 1078: 39,-1
+ 1083: 38,-1
+ 1108: -48,-16
+ 1109: -49,-16
+ 1110: -50,-16
+ 1111: -51,-16
+ 1421: 40,5
+ 1422: 42,5
+ 1423: 43,5
+ 1500: 41,5
+ 3306: 51,22
+ 3307: 50,22
+ 3308: 52,22
- node:
cleanable: True
color: '#FFFFFF35'
id: BrickTileSteelLineW
decals:
- 6590: 81,-34
+ 6583: 81,-34
- node:
color: '#FFFFFFFF'
id: BrickTileSteelLineW
decals:
- 677: -30,-33
- 678: -30,-32
+ 676: -30,-33
+ 677: -30,-32
+ 678: -30,-31
679: -30,-31
- 680: -30,-31
+ 680: -30,-30
681: -30,-30
- 682: -30,-30
+ 682: -30,-29
683: -30,-29
- 684: -30,-29
- 685: -30,-28
+ 684: -30,-28
+ 685: -30,-27
686: -30,-27
- 687: -30,-27
- 688: -30,-26
- 761: -30,-26
- 762: -30,-33
- 812: -43,0
- 813: -43,2
- 1130: 3,23
- 1131: 3,24
- 1132: 3,25
- 1137: -6,33
- 1138: -6,34
- 1419: 44,1
- 1420: 44,2
- 1421: 44,3
- 1461: 44,4
+ 687: -30,-26
+ 760: -30,-26
+ 761: -30,-33
+ 811: -43,0
+ 812: -43,2
+ 1129: 3,23
+ 1130: 3,24
+ 1131: 3,25
+ 1136: -6,33
+ 1137: -6,34
+ 1418: 44,1
+ 1419: 44,2
+ 1420: 44,3
+ 1460: 44,4
- node:
color: '#A4610696'
id: BrickTileWhiteCornerNe
decals:
- 1360: 28,15
- 1393: 28,8
- 1410: 36,22
- 1411: 27,14
+ 1359: 28,15
+ 1392: 28,8
+ 1409: 36,22
+ 1410: 27,14
- node:
color: '#D381C996'
id: BrickTileWhiteCornerNe
decals:
- 2030: 60,-13
- 2052: 70,-12
+ 2029: 60,-13
+ 2051: 70,-12
- node:
color: '#EFB34196'
id: BrickTileWhiteCornerNe
decals:
- 3097: -4,14
+ 3096: -4,14
- node:
cleanable: True
color: '#EFB34196'
id: BrickTileWhiteCornerNe
decals:
- 3233: -25,38
+ 3232: -25,38
- node:
color: '#A4610696'
id: BrickTileWhiteCornerNw
decals:
- 1409: 33,22
- 1414: 26,14
+ 1408: 33,22
+ 1413: 26,14
- node:
color: '#D381C996'
id: BrickTileWhiteCornerNw
decals:
- 2031: 58,-13
- 2055: 68,-12
+ 2030: 58,-13
+ 2054: 68,-12
- node:
color: '#EFB34196'
id: BrickTileWhiteCornerNw
decals:
- 2452: -54,9
- 3096: -2,14
+ 2451: -54,9
+ 3095: -2,14
- node:
cleanable: True
color: '#EFB34196'
id: BrickTileWhiteCornerNw
decals:
- 3232: -30,38
+ 3231: -30,38
- node:
color: '#A4610696'
id: BrickTileWhiteCornerSe
decals:
- 1359: 28,10
- 1392: 28,6
- 1408: 36,17
- 1412: 27,11
+ 1358: 28,10
+ 1391: 28,6
+ 1407: 36,17
+ 1411: 27,11
- node:
color: '#D381C996'
id: BrickTileWhiteCornerSe
decals:
- 2032: 60,-14
- 2053: 70,-14
+ 2031: 60,-14
+ 2052: 70,-14
- node:
color: '#A4610696'
id: BrickTileWhiteCornerSw
decals:
- 1413: 26,11
+ 1412: 26,11
- node:
color: '#D381C996'
id: BrickTileWhiteCornerSw
decals:
- 2033: 58,-14
- 2054: 68,-14
+ 2032: 58,-14
+ 2053: 68,-14
- node:
color: '#EFB34196'
id: BrickTileWhiteEndE
decals:
- 3119: 63,9
+ 3118: 63,9
- node:
color: '#334E6DC8'
id: BrickTileWhiteInnerNe
decals:
- 1019: 46,-38
- 1021: 46,-38
- 1056: 37,-34
+ 1018: 46,-38
+ 1020: 46,-38
+ 1055: 37,-34
- node:
color: '#52B4E996'
id: BrickTileWhiteInnerNe
decals:
- 1503: 41,5
- 1983: 49,-7
- 1993: 57,-7
+ 1502: 41,5
+ 1982: 49,-7
+ 1992: 57,-7
- node:
cleanable: True
color: '#52B4E996'
id: BrickTileWhiteInnerNe
decals:
- 1881: 48,-1
+ 1880: 48,-1
- node:
color: '#A4610696'
id: BrickTileWhiteInnerNe
decals:
- 1395: 26,8
+ 1394: 26,8
- node:
color: '#DE3A3A96'
id: BrickTileWhiteInnerNe
decals:
- 1336: -18,27
+ 1335: -18,27
- node:
color: '#EFB34196'
id: BrickTileWhiteInnerNe
decals:
- 1478: 41,11
+ 1477: 41,11
- node:
color: '#334E6DC8'
id: BrickTileWhiteInnerNw
decals:
- 1051: 43,-34
+ 1050: 43,-34
- node:
color: '#52B4E996'
id: BrickTileWhiteInnerNw
decals:
- 1502: 45,5
- 1984: 51,-7
+ 1501: 45,5
+ 1983: 51,-7
- node:
cleanable: True
color: '#52B4E996'
id: BrickTileWhiteInnerNw
decals:
- 1880: 52,-1
+ 1879: 52,-1
- node:
color: '#EFB34196'
id: BrickTileWhiteInnerNw
decals:
- 1477: 47,11
+ 1476: 47,11
- node:
color: '#334E6DC8'
id: BrickTileWhiteInnerSe
decals:
- 1014: 46,-37
+ 1013: 46,-37
- node:
color: '#52B4E996'
id: BrickTileWhiteInnerSe
decals:
- 1505: 45,4
+ 1504: 45,4
- node:
cleanable: True
color: '#52B4E996'
id: BrickTileWhiteInnerSe
decals:
- 1882: 48,-8
- 1883: 50,-8
- 1887: 49,-2
+ 1881: 48,-8
+ 1882: 50,-8
+ 1886: 49,-2
- node:
color: '#A4610696'
id: BrickTileWhiteInnerSe
decals:
- 1390: 31,23
- 1394: 26,6
+ 1389: 31,23
+ 1393: 26,6
- node:
color: '#DE3A3A96'
id: BrickTileWhiteInnerSe
decals:
- 1219: -15,26
- 1220: -11,26
- 1221: -7,26
- 1265: -4,45
- 1335: -18,29
+ 1218: -15,26
+ 1219: -11,26
+ 1220: -7,26
+ 1264: -4,45
+ 1334: -18,29
- node:
color: '#EFB34196'
id: BrickTileWhiteInnerSe
decals:
- 1476: 41,13
+ 1475: 41,13
- node:
cleanable: True
color: '#52B4E996'
id: BrickTileWhiteInnerSw
decals:
- 1884: 50,-8
- 1885: 52,-8
- 1886: 51,-2
+ 1883: 50,-8
+ 1884: 52,-8
+ 1885: 51,-2
- node:
color: '#A4610696'
id: BrickTileWhiteInnerSw
decals:
- 1391: 30,17
+ 1390: 30,17
- node:
color: '#DE3A3A96'
id: BrickTileWhiteInnerSw
decals:
- 1217: -13,26
- 1218: -9,26
- 1264: 0,45
+ 1216: -13,26
+ 1217: -9,26
+ 1263: 0,45
- node:
color: '#EFB34196'
id: BrickTileWhiteInnerSw
decals:
183: 5,-24
- 1475: 47,13
+ 1474: 47,13
- node:
color: '#334E6DC8'
id: BrickTileWhiteLineE
decals:
- 1015: 46,-37
- 1016: 46,-36
- 1017: 46,-35
- 1018: 46,-34
+ 1014: 46,-37
+ 1015: 46,-36
+ 1016: 46,-35
+ 1017: 46,-34
- node:
color: '#52B4E996'
id: BrickTileWhiteLineE
decals:
- 1990: 57,-6
- 1991: 57,-5
- 1992: 57,-4
- 2002: 52,-5
- 2003: 52,-4
+ 1989: 57,-6
+ 1990: 57,-5
+ 1991: 57,-4
+ 2001: 52,-5
+ 2002: 52,-4
- node:
cleanable: True
color: '#52B4E996'
id: BrickTileWhiteLineE
decals:
- 1820: 42,9
- 1821: 42,7
- 1824: 47,7
- 1825: 47,8
- 1826: 47,9
- 1845: 51,1
- 1846: 51,2
- 1847: 51,3
- 1848: 51,4
- 1849: 51,6
- 1850: 51,7
- 1851: 51,8
- 1852: 51,9
- 1853: 51,10
- 1854: 51,11
- 1863: 52,-6
- 1864: 52,-7
- 1865: 52,-3
- 1866: 52,-2
- 1867: 52,-1
- 1868: 49,-3
- 1869: 49,-5
- 1870: 49,-4
- 1871: 49,-6
- 1876: 52,-8
- 1898: 56,6
- 1899: 56,7
- 1900: 56,8
- 1904: 56,10
- 1905: 56,11
- 1906: 56,12
- 1942: 51,12
- 1943: 51,15
- 1944: 51,13
+ 1819: 42,9
+ 1820: 42,7
+ 1823: 47,7
+ 1824: 47,8
+ 1825: 47,9
+ 1844: 51,1
+ 1845: 51,2
+ 1846: 51,3
+ 1847: 51,4
+ 1848: 51,6
+ 1849: 51,7
+ 1850: 51,8
+ 1851: 51,9
+ 1852: 51,10
+ 1853: 51,11
+ 1862: 52,-6
+ 1863: 52,-7
+ 1864: 52,-3
+ 1865: 52,-2
+ 1866: 52,-1
+ 1867: 49,-3
+ 1868: 49,-5
+ 1869: 49,-4
+ 1870: 49,-6
+ 1875: 52,-8
+ 1897: 56,6
+ 1898: 56,7
+ 1899: 56,8
+ 1903: 56,10
+ 1904: 56,11
+ 1905: 56,12
+ 1941: 51,12
+ 1942: 51,15
+ 1943: 51,13
- node:
color: '#9FED5896'
id: BrickTileWhiteLineE
decals:
- 1967: 61,17
- 1968: 61,16
- 1969: 61,15
- 1970: 61,14
+ 1966: 61,17
+ 1967: 61,16
+ 1968: 61,15
+ 1969: 61,14
- node:
color: '#A4610696'
id: BrickTileWhiteLineE
decals:
- 1343: 28,7
- 1352: 28,14
- 1353: 28,13
- 1354: 28,12
- 1355: 28,11
- 1372: 31,22
- 1373: 31,21
- 1374: 31,20
- 1375: 31,19
- 1376: 31,18
- 1377: 31,17
- 1378: 31,16
- 1379: 31,15
- 1380: 31,14
- 1381: 31,13
- 1382: 31,12
- 1398: 36,19
- 1399: 36,20
- 1400: 36,21
- 1405: 36,18
- 1415: 27,13
- 1416: 27,12
+ 1342: 28,7
+ 1351: 28,14
+ 1352: 28,13
+ 1353: 28,12
+ 1354: 28,11
+ 1371: 31,22
+ 1372: 31,21
+ 1373: 31,20
+ 1374: 31,19
+ 1375: 31,18
+ 1376: 31,17
+ 1377: 31,16
+ 1378: 31,15
+ 1379: 31,14
+ 1380: 31,13
+ 1381: 31,12
+ 1397: 36,19
+ 1398: 36,20
+ 1399: 36,21
+ 1404: 36,18
+ 1414: 27,13
+ 1415: 27,12
- node:
color: '#D381C996'
id: BrickTileWhiteLineE
decals:
- 2056: 70,-13
- 2060: 65,-21
- 2061: 65,-20
- 2062: 65,-19
- 2063: 65,-18
- 2064: 65,-17
- 2065: 65,-16
- 2066: 65,-15
- 2067: 65,-14
- 2068: 65,-13
- 2069: 65,-12
- 2143: 71,-27
- 2144: 71,-26
+ 2055: 70,-13
+ 2059: 65,-21
+ 2060: 65,-20
+ 2061: 65,-19
+ 2062: 65,-18
+ 2063: 65,-17
+ 2064: 65,-16
+ 2065: 65,-15
+ 2066: 65,-14
+ 2067: 65,-13
+ 2068: 65,-12
+ 2142: 71,-27
+ 2143: 71,-26
- node:
color: '#DE3A3A96'
id: BrickTileWhiteLineE
decals:
- 1142: -1,23
- 1143: -1,24
- 1150: -1,25
- 1334: -18,28
+ 1141: -1,23
+ 1142: -1,24
+ 1149: -1,25
+ 1333: -18,28
- node:
color: '#EFB34196'
id: BrickTileWhiteLineE
@@ -1931,87 +1941,87 @@ entities:
177: 2,-22
237: 10,-23
238: 10,-22
- 1474: 41,12
- 1484: 47,13
- 1485: 47,11
- 2425: -4,-37
- 2426: -4,-35
- 3134: -39,-38
+ 1473: 41,12
+ 1483: 47,13
+ 1484: 47,11
+ 2424: -4,-37
+ 2425: -4,-35
+ 3133: -39,-38
- node:
cleanable: True
color: '#EFB34196'
id: BrickTileWhiteLineE
decals:
- 3231: -25,37
- 3238: -32,38
- 3239: -32,37
- 3240: -32,36
- 3241: -32,35
- 3242: -32,34
+ 3230: -25,37
+ 3237: -32,38
+ 3238: -32,37
+ 3239: -32,36
+ 3240: -32,35
+ 3241: -32,34
- node:
color: '#FFFFFFFF'
id: BrickTileWhiteLineE
decals:
- 1275: 2,40
+ 1274: 2,40
- node:
color: '#334E6DC8'
id: BrickTileWhiteLineN
decals:
- 1022: 39,-34
- 1023: 40,-34
- 1024: 41,-34
- 1054: 38,-34
- 1055: 42,-34
- 1456: 51,-30
- 1457: 52,-30
- 2213: 19,-36
- 2214: 20,-36
- 2218: 21,-36
- 2248: 24,-46
+ 1021: 39,-34
+ 1022: 40,-34
+ 1023: 41,-34
+ 1053: 38,-34
+ 1054: 42,-34
+ 1455: 51,-30
+ 1456: 52,-30
+ 2212: 19,-36
+ 2213: 20,-36
+ 2217: 21,-36
+ 2247: 24,-46
- node:
color: '#474F52A7'
id: BrickTileWhiteLineN
decals:
- 1222: -16,24
- 1223: -15,24
- 1224: -14,24
- 1225: -12,24
- 1226: -11,24
- 1227: -10,24
- 1228: -8,24
- 1229: -7,24
- 1230: -6,24
+ 1221: -16,24
+ 1222: -15,24
+ 1223: -14,24
+ 1224: -12,24
+ 1225: -11,24
+ 1226: -10,24
+ 1227: -8,24
+ 1228: -7,24
+ 1229: -6,24
- node:
color: '#52B4E996'
id: BrickTileWhiteLineN
decals:
- 1498: 43,5
- 1499: 42,5
- 1500: 44,5
- 1951: 59,4
- 1952: 60,4
- 1985: 58,-7
- 1986: 59,-7
- 1987: 60,-7
- 1988: 61,-7
- 1989: 62,-7
+ 1497: 43,5
+ 1498: 42,5
+ 1499: 44,5
+ 1950: 59,4
+ 1951: 60,4
+ 1984: 58,-7
+ 1985: 59,-7
+ 1986: 60,-7
+ 1987: 61,-7
+ 1988: 62,-7
- node:
cleanable: True
color: '#52B4E996'
id: BrickTileWhiteLineN
decals:
- 1810: 48,7
- 1877: 49,-1
- 1878: 50,-1
- 1879: 51,-1
- 1888: 53,3
- 1889: 54,3
- 1890: 55,3
- 1891: 56,3
- 1892: 57,3
- 1909: 49,-10
- 1910: 51,-10
- 1911: 50,-10
+ 1809: 48,7
+ 1876: 49,-1
+ 1877: 50,-1
+ 1878: 51,-1
+ 1887: 53,3
+ 1888: 54,3
+ 1889: 55,3
+ 1890: 56,3
+ 1891: 57,3
+ 1908: 49,-10
+ 1909: 51,-10
+ 1910: 50,-10
- node:
color: '#79150096'
id: BrickTileWhiteLineN
@@ -2021,49 +2031,49 @@ entities:
color: '#9FED5896'
id: BrickTileWhiteLineN
decals:
- 1273: -1,53
- 1274: 0,53
- 2246: 24,-43
+ 1272: -1,53
+ 1273: 0,53
+ 2245: 24,-43
- node:
color: '#A4610696'
id: BrickTileWhiteLineN
decals:
- 1341: 27,8
- 1349: 25,15
- 1350: 26,15
- 1351: 27,15
- 1406: 34,22
- 1407: 35,22
+ 1340: 27,8
+ 1348: 25,15
+ 1349: 26,15
+ 1350: 27,15
+ 1405: 34,22
+ 1406: 35,22
- node:
color: '#D381C996'
id: BrickTileWhiteLineN
decals:
- 2012: 63,-23
- 2013: 64,-23
- 2014: 65,-23
- 2019: 61,-23
- 2020: 62,-23
- 2034: 59,-13
- 2058: 69,-12
- 2081: 77,-13
- 2082: 75,-13
- 2083: 77,-17
- 2084: 75,-17
- 3427: 76,-13
- 3430: 76,-17
+ 2011: 63,-23
+ 2012: 64,-23
+ 2013: 65,-23
+ 2018: 61,-23
+ 2019: 62,-23
+ 2033: 59,-13
+ 2057: 69,-12
+ 2080: 77,-13
+ 2081: 75,-13
+ 2082: 77,-17
+ 2083: 75,-17
+ 3426: 76,-13
+ 3429: 76,-17
- node:
color: '#D4D4D496'
id: BrickTileWhiteLineN
decals:
- 2247: 25,-43
+ 2246: 25,-43
- node:
color: '#DE3A3A96'
id: BrickTileWhiteLineN
decals:
- 1211: -3,32
- 1212: -2,32
- 1213: -1,32
- 2249: 25,-46
+ 1210: -3,32
+ 1211: -2,32
+ 1212: -1,32
+ 2248: 25,-46
- node:
color: '#EFB34196'
id: BrickTileWhiteLineN
@@ -2080,31 +2090,32 @@ entities:
286: 19,-21
287: 20,-21
288: 21,-21
- 1465: 42,11
- 1466: 43,11
- 1467: 46,11
- 1468: 45,11
- 2422: 0,-35
- 2423: 1,-35
- 2453: -53,9
- 3132: -62,-21
- 3133: -61,-21
+ 1464: 42,11
+ 1465: 43,11
+ 1466: 46,11
+ 1467: 45,11
+ 2421: 0,-35
+ 2422: 1,-35
+ 2452: -53,9
+ 3131: -62,-21
+ 3132: -61,-21
- node:
cleanable: True
color: '#EFB34196'
id: BrickTileWhiteLineN
decals:
- 3234: -29,38
- 3235: -28,38
- 3236: -27,38
- 3237: -26,38
+ 3233: -29,38
+ 3234: -28,38
+ 3235: -27,38
+ 3236: -26,38
- node:
color: '#FFFFFFFF'
id: BrickTileWhiteLineN
decals:
- 2483: 13,25
- 2484: 14,25
- 2485: 15,25
+ 2482: 13,25
+ 2483: 14,25
+ 2484: 15,25
+ 6629: 14,22
- node:
color: '#334E6DC8'
id: BrickTileWhiteLineS
@@ -2115,49 +2126,49 @@ entities:
358: 47,-22
359: 48,-22
360: 49,-22
- 1454: 51,-36
- 1455: 52,-36
- 2215: 19,-39
- 2216: 20,-39
- 2217: 21,-39
+ 1453: 51,-36
+ 1454: 52,-36
+ 2214: 19,-39
+ 2215: 20,-39
+ 2216: 21,-39
- node:
color: '#474F52A7'
id: BrickTileWhiteLineS
decals:
- 1231: -12,23
- 1232: -11,23
- 1233: -10,23
- 1234: -14,23
- 1235: -15,23
- 1236: -16,23
- 1237: -8,23
- 1238: -6,23
- 1239: -7,23
+ 1230: -12,23
+ 1231: -11,23
+ 1232: -10,23
+ 1233: -14,23
+ 1234: -15,23
+ 1235: -16,23
+ 1236: -8,23
+ 1237: -6,23
+ 1238: -7,23
- node:
color: '#52B4E996'
id: BrickTileWhiteLineS
decals:
- 1504: 46,4
- 1949: 60,0
- 1950: 59,0
- 1981: 49,-8
- 1982: 51,-8
- 2252: 24,-46
+ 1503: 46,4
+ 1948: 60,0
+ 1949: 59,0
+ 1980: 49,-8
+ 1981: 51,-8
+ 2251: 24,-46
- node:
cleanable: True
color: '#52B4E996'
id: BrickTileWhiteLineS
decals:
- 1809: 48,9
- 1893: 53,2
- 1894: 55,2
- 1895: 54,2
- 1896: 56,2
- 1897: 57,2
- 1912: 48,-11
- 1913: 50,-11
- 1914: 51,-11
- 1915: 53,-11
+ 1808: 48,9
+ 1892: 53,2
+ 1893: 55,2
+ 1894: 54,2
+ 1895: 56,2
+ 1896: 57,2
+ 1911: 48,-11
+ 1912: 50,-11
+ 1913: 51,-11
+ 1914: 53,-11
- node:
color: '#79150096'
id: BrickTileWhiteLineS
@@ -2167,59 +2178,59 @@ entities:
color: '#9FED5896'
id: BrickTileWhiteLineS
decals:
- 1267: -3,50
- 1268: -1,50
- 1269: -2,50
- 1270: 0,50
- 1271: 1,50
- 1272: 2,50
+ 1266: -3,50
+ 1267: -1,50
+ 1268: -2,50
+ 1269: 0,50
+ 1270: 1,50
+ 1271: 2,50
- node:
color: '#A4610696'
id: BrickTileWhiteLineS
decals:
- 1342: 27,6
- 1356: 25,10
- 1357: 26,10
- 1358: 27,10
- 1361: 23,17
- 1362: 24,17
- 1363: 25,17
- 1364: 26,17
- 1365: 27,17
- 1366: 28,17
- 1396: 34,17
- 1397: 35,17
- 2250: 24,-43
+ 1341: 27,6
+ 1355: 25,10
+ 1356: 26,10
+ 1357: 27,10
+ 1360: 23,17
+ 1361: 24,17
+ 1362: 25,17
+ 1363: 26,17
+ 1364: 27,17
+ 1365: 28,17
+ 1395: 34,17
+ 1396: 35,17
+ 2249: 24,-43
- node:
color: '#D381C996'
id: BrickTileWhiteLineS
decals:
- 2015: 63,-27
- 2016: 64,-27
- 2017: 65,-27
- 2018: 66,-27
- 2035: 59,-14
- 2036: 58,-15
- 2037: 59,-15
- 2038: 60,-15
- 2057: 69,-14
- 2085: 75,-19
- 2086: 77,-19
- 2087: 75,-15
- 2088: 77,-15
- 2253: 25,-43
- 3428: 76,-15
- 3429: 76,-19
+ 2014: 63,-27
+ 2015: 64,-27
+ 2016: 65,-27
+ 2017: 66,-27
+ 2034: 59,-14
+ 2035: 58,-15
+ 2036: 59,-15
+ 2037: 60,-15
+ 2056: 69,-14
+ 2084: 75,-19
+ 2085: 77,-19
+ 2086: 75,-15
+ 2087: 77,-15
+ 2252: 25,-43
+ 3427: 76,-15
+ 3428: 76,-19
- node:
color: '#DE3A3A96'
id: BrickTileWhiteLineS
decals:
- 1214: -10,26
- 1215: -14,26
- 1216: -6,26
- 1261: -3,45
- 1262: -2,45
- 1263: -1,45
+ 1213: -10,26
+ 1214: -14,26
+ 1215: -6,26
+ 1260: -3,45
+ 1261: -2,45
+ 1262: -1,45
- node:
color: '#EFB34196'
id: BrickTileWhiteLineS
@@ -2239,141 +2250,141 @@ entities:
239: 7,-25
284: 21,-23
285: 20,-23
- 1469: 42,13
- 1470: 43,13
- 1471: 44,13
- 1472: 45,13
- 1473: 46,13
- 2251: 25,-46
- 2395: 9,-41
- 3108: 61,-31
- 3109: 62,-31
- 3110: 63,-31
+ 1468: 42,13
+ 1469: 43,13
+ 1470: 44,13
+ 1471: 45,13
+ 1472: 46,13
+ 2250: 25,-46
+ 2394: 9,-41
+ 3107: 61,-31
+ 3108: 62,-31
+ 3109: 63,-31
- node:
color: '#FFFFFFFF'
id: BrickTileWhiteLineS
decals:
- 1458: 45,4
- 1459: 46,4
- 1460: 44,4
+ 1457: 45,4
+ 1458: 46,4
+ 1459: 44,4
- node:
color: '#334E6DC8'
id: BrickTileWhiteLineW
decals:
- 1011: 34,-34
- 1012: 34,-35
- 1013: 34,-36
- 1450: 54,-36
- 1451: 54,-35
- 1452: 54,-34
- 1453: 54,-33
+ 1010: 34,-34
+ 1011: 34,-35
+ 1012: 34,-36
+ 1449: 54,-36
+ 1450: 54,-35
+ 1451: 54,-34
+ 1452: 54,-33
- node:
cleanable: True
color: '#52B4E996'
id: BrickTileWhiteLineW
decals:
- 1822: 46,7
- 1823: 46,9
- 1827: 41,7
- 1828: 41,8
- 1829: 41,9
- 1830: 49,15
- 1831: 49,14
- 1832: 49,13
- 1833: 49,12
- 1834: 49,11
- 1835: 49,10
- 1836: 49,9
- 1837: 49,8
- 1838: 49,7
- 1839: 49,6
- 1840: 49,5
- 1841: 49,4
- 1842: 49,3
- 1843: 49,2
- 1844: 49,1
- 1855: 48,-8
- 1856: 48,-7
- 1857: 48,-6
- 1858: 48,-5
- 1859: 48,-4
- 1860: 48,-3
- 1861: 48,-2
- 1862: 48,-1
- 1872: 51,-6
- 1873: 51,-5
- 1874: 51,-4
- 1875: 51,-3
- 1901: 53,6
- 1902: 53,7
- 1903: 53,8
+ 1821: 46,7
+ 1822: 46,9
+ 1826: 41,7
+ 1827: 41,8
+ 1828: 41,9
+ 1829: 49,15
+ 1830: 49,14
+ 1831: 49,13
+ 1832: 49,12
+ 1833: 49,11
+ 1834: 49,10
+ 1835: 49,9
+ 1836: 49,8
+ 1837: 49,7
+ 1838: 49,6
+ 1839: 49,5
+ 1840: 49,4
+ 1841: 49,3
+ 1842: 49,2
+ 1843: 49,1
+ 1854: 48,-8
+ 1855: 48,-7
+ 1856: 48,-6
+ 1857: 48,-5
+ 1858: 48,-4
+ 1859: 48,-3
+ 1860: 48,-2
+ 1861: 48,-1
+ 1871: 51,-6
+ 1872: 51,-5
+ 1873: 51,-4
+ 1874: 51,-3
+ 1900: 53,6
+ 1901: 53,7
+ 1902: 53,8
- node:
color: '#9FED5896'
id: BrickTileWhiteLineW
decals:
- 1971: 57,16
- 1972: 57,17
+ 1970: 57,16
+ 1971: 57,17
- node:
color: '#A4610696'
id: BrickTileWhiteLineW
decals:
- 1344: 30,7
- 1345: 30,8
- 1346: 30,9
- 1347: 30,10
- 1348: 30,6
- 1367: 30,16
- 1368: 30,15
- 1369: 30,14
- 1370: 30,13
- 1371: 30,12
- 1383: 33,15
- 1384: 33,14
- 1385: 33,13
- 1386: 33,12
- 1401: 33,18
- 1402: 33,19
- 1403: 33,20
- 1404: 33,21
- 1417: 26,12
- 1418: 26,13
+ 1343: 30,7
+ 1344: 30,8
+ 1345: 30,9
+ 1346: 30,10
+ 1347: 30,6
+ 1366: 30,16
+ 1367: 30,15
+ 1368: 30,14
+ 1369: 30,13
+ 1370: 30,12
+ 1382: 33,15
+ 1383: 33,14
+ 1384: 33,13
+ 1385: 33,12
+ 1400: 33,18
+ 1401: 33,19
+ 1402: 33,20
+ 1403: 33,21
+ 1416: 26,12
+ 1417: 26,13
- node:
color: '#D381C996'
id: BrickTileWhiteLineW
decals:
- 2059: 68,-13
- 2070: 63,-21
- 2071: 63,-20
- 2072: 63,-19
- 2073: 63,-17
- 2074: 63,-18
- 2075: 63,-16
- 2076: 63,-15
- 2077: 63,-14
- 2078: 63,-13
- 2079: 63,-12
- 2138: 68,-23
- 2139: 68,-22
- 2140: 68,-21
- 2141: 68,-24
- 2145: 68,-27
- 2146: 68,-26
+ 2058: 68,-13
+ 2069: 63,-21
+ 2070: 63,-20
+ 2071: 63,-19
+ 2072: 63,-17
+ 2073: 63,-18
+ 2074: 63,-16
+ 2075: 63,-15
+ 2076: 63,-14
+ 2077: 63,-13
+ 2078: 63,-12
+ 2137: 68,-23
+ 2138: 68,-22
+ 2139: 68,-21
+ 2140: 68,-24
+ 2144: 68,-27
+ 2145: 68,-26
- node:
color: '#DE3A3A96'
id: BrickTileWhiteLineW
decals:
- 1140: -4,23
- 1141: -4,24
- 1151: -4,25
+ 1139: -4,23
+ 1140: -4,24
+ 1150: -4,25
- node:
cleanable: True
color: '#EFB3413B'
id: BrickTileWhiteLineW
decals:
- 6586: 14,39
- 6587: 14,40
- 6588: 14,41
- 6589: 14,42
+ 6579: 14,39
+ 6580: 14,40
+ 6581: 14,41
+ 6582: 14,42
- node:
color: '#EFB34196'
id: BrickTileWhiteLineW
@@ -2387,256 +2398,256 @@ entities:
182: 5,-25
218: 4,-19
222: 4,-22
- 1486: 41,11
- 1487: 41,12
- 1488: 41,13
- 2393: 8,-40
- 2394: 8,-39
- 2424: -2,-36
- 2427: -6,-37
- 2428: -6,-36
- 2429: -6,-35
- 2442: 39,-15
- 2443: 39,-17
- 2444: 39,-16
- 3126: -22,34
- 3127: -22,35
+ 1485: 41,11
+ 1486: 41,12
+ 1487: 41,13
+ 2392: 8,-40
+ 2393: 8,-39
+ 2423: -2,-36
+ 2426: -6,-37
+ 2427: -6,-36
+ 2428: -6,-35
+ 2441: 39,-15
+ 2442: 39,-17
+ 2443: 39,-16
+ 3125: -22,34
+ 3126: -22,35
- node:
cleanable: True
color: '#EFB34196'
id: BrickTileWhiteLineW
decals:
- 3229: -30,36
- 3230: -30,37
- 3243: -34,34
- 3244: -34,35
- 3245: -34,36
- 3246: -34,37
- 3247: -34,38
+ 3228: -30,36
+ 3229: -30,37
+ 3242: -34,34
+ 3243: -34,35
+ 3244: -34,36
+ 3245: -34,37
+ 3246: -34,38
- node:
color: '#FFFFFFFF'
id: BrickTileWhiteLineW
decals:
- 1276: -6,40
+ 1275: -6,40
- node:
color: '#FFFFFFFF'
id: BushAOne
decals:
- 562: -24,5
- 870: -48,4
- 876: -51,-2
- 1532: -52,-49
- 1957: 59,19
- 1976: 57,18
+ 561: -24,5
+ 869: -48,4
+ 875: -51,-2
+ 1531: -52,-49
+ 1956: 59,19
+ 1975: 57,18
- node:
color: '#FFFFFFFF'
id: BushAThree
decals:
- 529: -39,7
- 871: -50,-2
- 934: -49,-30
+ 528: -39,7
+ 870: -50,-2
+ 933: -49,-30
- node:
color: '#FFFFFFFF'
id: BushCOne
decals:
- 868: -45,4
- 2170: 56,-21
+ 867: -45,4
+ 2169: 56,-21
- node:
color: '#FFFFFFFF'
id: BushCThree
decals:
322: 26,-24
- 530: -40,6
- 872: -48,-2
- 1113: 42,-30
- 1528: -49,-49
- 2497: 24,1
+ 529: -40,6
+ 871: -48,-2
+ 1112: 42,-30
+ 1527: -49,-49
+ 2496: 24,1
- node:
color: '#FFFFFFFF'
id: BushCTwo
decals:
36: -4,-12
323: 26,-23
- 528: -38,6
- 1529: -46,-49
- 2171: 56,-22
+ 527: -38,6
+ 1528: -46,-49
+ 2170: 56,-22
- node:
cleanable: True
color: '#FFFFFFFF'
id: BushCTwo
decals:
- 3278: 81,-8
+ 3277: 81,-8
- node:
color: '#FFFFFFFF'
id: BushDTwo
decals:
- 877: -49,4
+ 876: -49,4
- node:
color: '#FFFFFFFF'
id: Busha1
decals:
- 526: -39,5
- 931: -48,-28
- 2173: 57,-23
- 2192: 54,-23
+ 525: -39,5
+ 930: -48,-28
+ 2172: 57,-23
+ 2191: 54,-23
- node:
cleanable: True
color: '#FFFFFFFF'
id: Busha1
decals:
- 3279: 82,-6
+ 3278: 82,-6
- node:
color: '#FFFFFFFF'
id: Busha2
decals:
- 534: -30,7
- 932: -47,-29
- 1956: 58,19
- 2172: 55,-23
+ 533: -30,7
+ 931: -47,-29
+ 1955: 58,19
+ 2171: 55,-23
- node:
color: '#FFFFFFFF'
id: Busha3
decals:
321: 25,-24
- 532: -30,5
- 869: -47,4
- 1531: -44,-49
+ 531: -30,5
+ 868: -47,4
+ 1530: -44,-49
- node:
color: '#FFFFFFFF'
id: Bushb1
decals:
318: 25,-21
- 874: -46,-2
- 875: -44,-2
+ 873: -46,-2
+ 874: -44,-2
- node:
cleanable: True
color: '#FFFFFFFF'
id: Bushb1
decals:
- 3276: 81,-7
+ 3275: 81,-7
- node:
color: '#FFFFFFFF'
id: Bushb2
decals:
- 561: -24,7
- 922: -47,-8
- 1975: 57,19
- 2168: 54,-21
+ 560: -24,7
+ 921: -47,-8
+ 1974: 57,19
+ 2167: 54,-21
- node:
color: '#FFFFFFFF'
id: Bushb3
decals:
319: 26,-22
- 867: -50,4
- 933: -48,-30
+ 866: -50,4
+ 932: -48,-30
- node:
color: '#FFFFFFFF'
id: Bushc1
decals:
320: 25,-23
- 527: -39,6
- 533: -29,6
- 873: -45,-2
- 935: -49,-27
- 2169: 55,-22
+ 526: -39,6
+ 532: -29,6
+ 872: -45,-2
+ 934: -49,-27
+ 2168: 55,-22
- node:
cleanable: True
color: '#FFFFFFFF'
id: Bushc1
decals:
- 3277: 82,-7
+ 3276: 82,-7
- node:
color: '#FFFFFFFF'
id: Bushc2
decals:
- 531: -28,6
- 1530: -47,-49
- 2499: 25,1
+ 530: -28,6
+ 1529: -47,-49
+ 2498: 25,1
- node:
color: '#FFFFFFFF'
id: Bushc3
decals:
35: -5,-12
- 1527: -51,-49
- 2498: 26,1
+ 1526: -51,-49
+ 2497: 26,1
- node:
color: '#FFFFFFFF'
id: Bushd2
decals:
- 879: -49,-2
+ 878: -49,-2
- node:
color: '#FFFFFFFF'
id: Bushd4
decals:
- 878: -44,4
+ 877: -44,4
- node:
color: '#FFFFFFFF'
id: Bushh1
decals:
- 539: -28,7
+ 538: -28,7
- node:
color: '#FFFFFFFF'
id: Bushh3
decals:
- 538: -40,5
- 540: -28,5
+ 537: -40,5
+ 539: -28,5
- node:
color: '#FFFFFFFF'
id: Bushi1
decals:
- 537: -29,5
- 563: -24,4
- 881: -47,-2
- 936: -48,-29
- 1534: -48,-49
- 1958: 60,19
+ 536: -29,5
+ 562: -24,4
+ 880: -47,-2
+ 935: -48,-29
+ 1533: -48,-49
+ 1957: 60,19
- node:
cleanable: True
color: '#FFFFFFFF'
id: Bushi1
decals:
- 3282: 80,-7
+ 3281: 80,-7
- node:
color: '#FFFFFFFF'
id: Bushi2
decals:
324: 25,-22
- 882: -51,4
- 919: -48,-8
- 920: -51,-9
- 2174: 54,-22
- 2193: 53.45864,-23.10261
- 2500: 24,1
+ 881: -51,4
+ 918: -48,-8
+ 919: -51,-9
+ 2173: 54,-22
+ 2192: 53.45864,-23.10261
+ 2499: 24,1
- node:
color: '#FFFFFFFF'
id: Bushi3
decals:
- 535: -38,5
- 937: -47,-27
- 1533: -50,-49
+ 534: -38,5
+ 936: -47,-27
+ 1532: -50,-49
- node:
cleanable: True
color: '#FFFFFFFF'
id: Bushi3
decals:
- 3280: 82,-8
+ 3279: 82,-8
- node:
color: '#FFFFFFFF'
id: Bushi4
decals:
- 536: -40,7
- 880: -46,4
- 921: -46,-7
- 1114: 42,-31
- 1535: -45,-49
- 2175: 56,-23
- 2181: 57.568016,-22.290323
+ 535: -40,7
+ 879: -46,4
+ 920: -46,-7
+ 1113: 42,-31
+ 1534: -45,-49
+ 2174: 56,-23
+ 2180: 57.568016,-22.290323
- node:
cleanable: True
color: '#FFFFFFFF'
id: Bushi4
decals:
- 3281: 81,-6
+ 3280: 81,-6
- node:
color: '#FFFFFFFF'
id: Bushj3
@@ -2651,76 +2662,76 @@ entities:
color: '#FFFFFFFF'
id: Bushm4
decals:
- 541: -38,7
+ 540: -38,7
- node:
color: '#FFFFFFFF'
id: Caution
decals:
- 2226: 24,-37
- 2230: 23,-37
- 2231: 25,-37
+ 2225: 24,-37
+ 2229: 23,-37
+ 2230: 25,-37
- node:
angle: 3.141592653589793 rad
color: '#FFFFFFFF'
id: Caution
decals:
- 2227: 24,-38
- 2228: 23,-38
- 2229: 25,-38
+ 2226: 24,-38
+ 2227: 23,-38
+ 2228: 25,-38
- node:
color: '#EFB34196'
id: CheckerNESW
decals:
- 1479: 42,12
- 1480: 43,12
- 1481: 44,12
- 1482: 45,12
- 1483: 46,12
+ 1478: 42,12
+ 1479: 43,12
+ 1480: 44,12
+ 1481: 45,12
+ 1482: 46,12
- node:
color: '#334E6DC8'
id: CheckerNWSE
decals:
- 2222: 20,-37
- 2223: 21,-37
- 2224: 21,-38
- 2225: 20,-38
+ 2221: 20,-37
+ 2222: 21,-37
+ 2223: 21,-38
+ 2224: 20,-38
- node:
color: '#474F528F'
id: CheckerNWSE
decals:
- 2475: -17,11
- 2476: -16,11
- 2477: -16,12
- 2478: -17,12
- 2479: -17,13
- 2480: -16,13
- 2481: -16,14
- 2482: -17,14
+ 2474: -17,11
+ 2475: -16,11
+ 2476: -16,12
+ 2477: -17,12
+ 2478: -17,13
+ 2479: -16,13
+ 2480: -16,14
+ 2481: -17,14
- node:
color: '#52B4E996'
id: CheckerNWSE
decals:
- 1996: 55,-5
- 1997: 55,-4
- 1998: 56,-4
- 1999: 56,-5
- 2000: 53,-5
- 2001: 53,-4
+ 1995: 55,-5
+ 1996: 55,-4
+ 1997: 56,-4
+ 1998: 56,-5
+ 1999: 53,-5
+ 2000: 53,-4
- node:
color: '#D381C996'
id: CheckerNWSE
decals:
- 2080: 66,-21
+ 2079: 66,-21
- node:
cleanable: True
color: '#EFB34125'
id: CheckerNWSE
decals:
- 6581: 15,40
- 6582: 13,42
- 6583: 13,41
- 6584: 13,40
- 6585: 13,39
+ 6574: 15,40
+ 6575: 13,42
+ 6576: 13,41
+ 6577: 13,40
+ 6578: 13,39
- node:
color: '#EFB34196'
id: CheckerNWSE
@@ -2731,61 +2742,61 @@ entities:
149: -2,-27
150: -3,-27
151: -3,-28
- 2433: 51,-28
- 2434: 52,-28
- 2435: 52,-27
- 2436: 51,-27
- 2437: 37,-15
- 2438: 37,-16
- 2439: 37,-17
- 2440: 38,-16
- 2441: 38,-15
- 2445: 38,-17
- 2446: 38,6
- 2447: 38,7
- 2448: -54,10
- 2449: -53,10
- 2450: -55,10
- 2451: -55,9
- 3092: -4,15
- 3093: -3,15
- 3094: -2,15
- 3095: -3,14
- 3098: -38,-54
- 3099: -38,-53
- 3100: -37,-53
- 3101: -37,-54
- 3102: 61,-32
- 3103: 62,-32
- 3104: 63,-32
- 3105: 63,-33
- 3106: 62,-33
- 3107: 61,-33
- 3111: 63,10
- 3112: 64,10
- 3113: 65,10
- 3114: 65,9
- 3115: 65,8
- 3116: 64,8
- 3117: 63,8
- 3118: 64,9
- 3124: -23,34
- 3125: -23,35
- 3128: 14,-39
- 3129: 15,-39
- 3130: -61,-20
- 3131: -62,-20
- 3135: -38,-38
+ 2432: 51,-28
+ 2433: 52,-28
+ 2434: 52,-27
+ 2435: 51,-27
+ 2436: 37,-15
+ 2437: 37,-16
+ 2438: 37,-17
+ 2439: 38,-16
+ 2440: 38,-15
+ 2444: 38,-17
+ 2445: 38,6
+ 2446: 38,7
+ 2447: -54,10
+ 2448: -53,10
+ 2449: -55,10
+ 2450: -55,9
+ 3091: -4,15
+ 3092: -3,15
+ 3093: -2,15
+ 3094: -3,14
+ 3097: -38,-54
+ 3098: -38,-53
+ 3099: -37,-53
+ 3100: -37,-54
+ 3101: 61,-32
+ 3102: 62,-32
+ 3103: 63,-32
+ 3104: 63,-33
+ 3105: 62,-33
+ 3106: 61,-33
+ 3110: 63,10
+ 3111: 64,10
+ 3112: 65,10
+ 3113: 65,9
+ 3114: 65,8
+ 3115: 64,8
+ 3116: 63,8
+ 3117: 64,9
+ 3123: -23,34
+ 3124: -23,35
+ 3127: 14,-39
+ 3128: 15,-39
+ 3129: -61,-20
+ 3130: -62,-20
+ 3134: -38,-38
- node:
color: '#DE3A3A96'
id: Delivery
decals:
- 1144: -3,25
- 1145: -2,25
- 1207: 4,31
- 1208: 5,31
- 1209: 2,31
- 1210: 2,30
+ 1143: -3,25
+ 1144: -2,25
+ 1206: 4,31
+ 1207: 5,31
+ 1208: 2,31
+ 1209: 2,30
- node:
color: '#EFB34196'
id: Delivery
@@ -2829,3687 +2840,3687 @@ entities:
411: -23,-28
412: -23,-27
413: -23,-26
- 1279: 23,14
- 1281: 24,12
- 1293: 25,6
- 1294: 24,6
- 1295: 23,6
- 1313: 24,21
- 1314: 25,21
- 1315: 26,21
- 1316: 28,21
- 1317: 29,21
- 1318: 30,21
+ 1278: 23,14
+ 1280: 24,12
+ 1292: 25,6
+ 1293: 24,6
+ 1294: 23,6
+ 1312: 24,21
+ 1313: 25,21
+ 1314: 26,21
+ 1315: 28,21
+ 1316: 29,21
+ 1317: 30,21
+ 1461: 46,3
1462: 46,3
- 1463: 46,3
- 2007: 60,-12
- 2232: 26,-37
- 2233: 26,-38
- 2236: 31,-37
- 2237: 31,-38
- 2405: 8,-41
- 3321: 3,20
- 3322: -9,19
- 3323: -9,20
- 3324: -9,21
- 3325: -17,21
- 3326: -17,20
- 3327: -17,19
- 3328: 3,21
- 3329: 3,19
- 3330: 17,19
- 3331: 17,20
- 3332: 17,21
- 3333: 19,17
- 3334: 21,17
- 3335: 20,17
- 3336: 21,6
- 3337: 20,6
- 3338: 19,6
- 3339: 29,2
- 3340: 29,4
- 3341: 29,3
- 3342: 39,2
- 3343: 39,3
- 3344: 39,4
- 3345: 43,0
- 3346: 42,0
- 3347: 41,0
- 3348: 43,-14
- 3349: 42,-14
- 3350: 41,-14
- 3351: 46,-21
- 3352: 46,-19
- 3353: 46,-20
- 3354: 38,-19
- 3355: 38,-21
- 3356: 38,-20
- 3357: 30,-21
- 3358: 30,-20
- 3359: 30,-19
- 3360: 30,-20
- 3361: 21,-28
- 3362: 20,-28
- 3363: 19,-28
- 3364: 18,-32
- 3365: 18,-33
- 3366: 18,-34
- 3367: 10,-34
- 3368: 10,-33
- 3369: 10,-32
- 3370: 4,-32
- 3371: 4,-31
- 3372: 4,-30
- 3373: -9,-32
- 3374: -9,-31
- 3375: -9,-30
- 3376: -20,-32
- 3377: -20,-30
- 3378: -20,-31
- 3379: -24,-22
- 3380: -25,-22
- 3381: -26,-22
- 3382: -42,-29
- 3383: -42,-28
- 3384: -27,-29
- 3385: -27,-28
- 3386: -26,-12
- 3387: -25,-12
- 3388: -24,-12
- 3389: -23,-6
- 3390: -24,-6
- 3391: -25,-6
- 3392: -25,10
- 3393: -26,10
- 3394: -27,10
- 3395: -42,0
- 3396: -42,1
- 3397: -42,2
- 3398: -53,-5
- 3399: -54,-5
- 3400: -55,-5
- 3401: -55,-19
- 3402: -54,-19
- 3403: -53,-19
- 3404: -49,-34
- 3405: -47,-34
- 3406: -48,-34
- 3407: -47,-45
- 3408: -48,-45
- 3409: -49,-45
- 3410: -41,-49
- 3411: -42,-49
- 3412: -40,-49
- 3413: -54,-49
- 3414: -55,-49
- 3415: -56,-49
- 3416: -56,-55
- 3417: -55,-55
- 3418: -54,-55
- 3419: -42,-55
- 3420: -41,-55
- 3421: -40,-55
+ 2006: 60,-12
+ 2231: 26,-37
+ 2232: 26,-38
+ 2235: 31,-37
+ 2236: 31,-38
+ 2404: 8,-41
+ 3320: 3,20
+ 3321: -9,19
+ 3322: -9,20
+ 3323: -9,21
+ 3324: -17,21
+ 3325: -17,20
+ 3326: -17,19
+ 3327: 3,21
+ 3328: 3,19
+ 3329: 17,19
+ 3330: 17,20
+ 3331: 17,21
+ 3332: 19,17
+ 3333: 21,17
+ 3334: 20,17
+ 3335: 21,6
+ 3336: 20,6
+ 3337: 19,6
+ 3338: 29,2
+ 3339: 29,4
+ 3340: 29,3
+ 3341: 39,2
+ 3342: 39,3
+ 3343: 39,4
+ 3344: 43,0
+ 3345: 42,0
+ 3346: 41,0
+ 3347: 43,-14
+ 3348: 42,-14
+ 3349: 41,-14
+ 3350: 46,-21
+ 3351: 46,-19
+ 3352: 46,-20
+ 3353: 38,-19
+ 3354: 38,-21
+ 3355: 38,-20
+ 3356: 30,-21
+ 3357: 30,-20
+ 3358: 30,-19
+ 3359: 30,-20
+ 3360: 21,-28
+ 3361: 20,-28
+ 3362: 19,-28
+ 3363: 18,-32
+ 3364: 18,-33
+ 3365: 18,-34
+ 3366: 10,-34
+ 3367: 10,-33
+ 3368: 10,-32
+ 3369: 4,-32
+ 3370: 4,-31
+ 3371: 4,-30
+ 3372: -9,-32
+ 3373: -9,-31
+ 3374: -9,-30
+ 3375: -20,-32
+ 3376: -20,-30
+ 3377: -20,-31
+ 3378: -24,-22
+ 3379: -25,-22
+ 3380: -26,-22
+ 3381: -42,-29
+ 3382: -42,-28
+ 3383: -27,-29
+ 3384: -27,-28
+ 3385: -26,-12
+ 3386: -25,-12
+ 3387: -24,-12
+ 3388: -23,-6
+ 3389: -24,-6
+ 3390: -25,-6
+ 3391: -25,10
+ 3392: -26,10
+ 3393: -27,10
+ 3394: -42,0
+ 3395: -42,1
+ 3396: -42,2
+ 3397: -53,-5
+ 3398: -54,-5
+ 3399: -55,-5
+ 3400: -55,-19
+ 3401: -54,-19
+ 3402: -53,-19
+ 3403: -49,-34
+ 3404: -47,-34
+ 3405: -48,-34
+ 3406: -47,-45
+ 3407: -48,-45
+ 3408: -49,-45
+ 3409: -41,-49
+ 3410: -42,-49
+ 3411: -40,-49
+ 3412: -54,-49
+ 3413: -55,-49
+ 3414: -56,-49
+ 3415: -56,-55
+ 3416: -55,-55
+ 3417: -54,-55
+ 3418: -42,-55
+ 3419: -41,-55
+ 3420: -40,-55
- node:
cleanable: True
angle: 1.5707963267948966 rad
color: '#FFFFFFFF'
id: Delivery
decals:
- 3253: 24,5
- 3254: 25,5
- 3255: 26,5
- 3256: 14,1
- 3257: 14,-12
- 3258: 0,14
- 3259: -6,14
+ 3252: 24,5
+ 3253: 25,5
+ 3254: 26,5
+ 3255: 14,1
+ 3256: 14,-12
+ 3257: 0,14
+ 3258: -6,14
- node:
color: '#52B4E996'
id: DeliveryGreyscale
decals:
- 1994: 59,-5
- 1995: 61,-5
+ 1993: 59,-5
+ 1994: 61,-5
- node:
color: '#85FFFFFF'
id: DeliveryGreyscale
decals:
- 1763: 48,2
- 1764: 48,1
+ 1762: 48,2
+ 1763: 48,1
- node:
color: '#DE3A3A96'
id: DeliveryGreyscale
decals:
- 1205: 4,31
- 1206: 5,31
+ 1204: 4,31
+ 1205: 5,31
- node:
color: '#FFFFFFFF'
id: DeliveryGreyscale
decals:
- 2486: 9,23
- 2487: 9,24
+ 2485: 9,23
+ 2486: 9,24
- node:
cleanable: True
color: '#835432FF'
id: Dirt
decals:
- 3138: -37,28
- 3139: -36,27
- 3140: -37,27
- 3141: -37,25
- 3142: -37,24
- 3143: -36,25
- 3144: -36,24
- 3145: -36,25
- 3146: -38,28
- 3147: -39,29
- 3148: -40,28
- 3149: -38,28
- 3150: -37,27
- 3151: -37,28
- 3152: -37,27
- 3153: -36,25
- 3154: -36,24
- 3155: -34,24
- 3156: -34,23
- 3157: -34,22
- 3158: -36,22
- 3159: -37,22
- 3160: -36,24
- 3161: -37,24
- 3162: -36,23
- 3163: -37,25
- 3164: -36,25
- 3165: -37,26
- 3166: -38,27
- 3167: -38,28
- 3168: -39,27
+ 3137: -37,28
+ 3138: -36,27
+ 3139: -37,27
+ 3140: -37,25
+ 3141: -37,24
+ 3142: -36,25
+ 3143: -36,24
+ 3144: -36,25
+ 3145: -38,28
+ 3146: -39,29
+ 3147: -40,28
+ 3148: -38,28
+ 3149: -37,27
+ 3150: -37,28
+ 3151: -37,27
+ 3152: -36,25
+ 3153: -36,24
+ 3154: -34,24
+ 3155: -34,23
+ 3156: -34,22
+ 3157: -36,22
+ 3158: -37,22
+ 3159: -36,24
+ 3160: -37,24
+ 3161: -36,23
+ 3162: -37,25
+ 3163: -36,25
+ 3164: -37,26
+ 3165: -38,27
+ 3166: -38,28
+ 3167: -39,27
+ 3168: -39,26
3169: -39,26
- 3170: -39,26
- node:
cleanable: True
color: '#A4610696'
id: Dirt
decals:
- 5856: -34,-26
- 5857: -37,-25
- 5858: -39,-28
- 5859: -40,-28
- 5860: -40,-31
- 5861: -39,-33
- 5862: -37,-33
- 5863: -32,-33
- 5864: -29,-33
- 5865: -29,-31
- 5866: -30,-28
- 5867: -29,-27
- 5868: -25,-30
- 5869: -25,-27
- 5870: -25,-26
- 5871: -25,-23
- 5872: -24,-21
- 5873: -25,-18
- 5874: -29,-20
- 5875: -29,-19
- 5876: -33,-19
- 5877: -33,-20
- 5878: -31,-14
- 5879: -29,-15
- 5880: -33,-16
- 5881: -29,-13
- 5882: -29,-11
- 5883: -34,-10
- 5884: -38,-11
- 5885: -37,-15
- 5886: -36,-16
- 5887: -40,-10
- 5888: -38,-17
- 5889: -47,-8
- 5890: -45,0
- 5891: -47,0
- 5892: -44,2
- 5893: -48,-2
- 5894: -47,-1
- 5895: -49,3
- 5896: -50,-1
- 5897: -45,1
- 5898: -53,4
- 5899: -48,5
- 5900: -50,6
- 5901: -47,1
- 5902: -38,-1
- 5903: -36,1
- 5904: -35,-1
- 5905: -32,-1
- 5906: -33,0
- 5907: -33,-3
- 5908: -24,-2
- 5909: -28,3
- 5910: -26,3
- 5911: -26,8
- 5912: -27,13
- 5913: -26,14
- 5914: -26,18
- 5915: -33,13
- 5916: -32,15
- 5917: -32,14
- 5918: -22,13
- 5919: -20,12
- 5920: -22,13
- 5921: -24,19
- 5922: -20,20
- 5923: -18,19
- 5924: -16,20
- 5925: -13,19
- 5926: -15,24
- 5927: -14,24
+ 5853: -34,-26
+ 5854: -37,-25
+ 5855: -39,-28
+ 5856: -40,-28
+ 5857: -40,-31
+ 5858: -39,-33
+ 5859: -37,-33
+ 5860: -32,-33
+ 5861: -29,-33
+ 5862: -29,-31
+ 5863: -30,-28
+ 5864: -29,-27
+ 5865: -25,-30
+ 5866: -25,-27
+ 5867: -25,-26
+ 5868: -25,-23
+ 5869: -24,-21
+ 5870: -25,-18
+ 5871: -29,-20
+ 5872: -29,-19
+ 5873: -33,-19
+ 5874: -33,-20
+ 5875: -31,-14
+ 5876: -29,-15
+ 5877: -33,-16
+ 5878: -29,-13
+ 5879: -29,-11
+ 5880: -34,-10
+ 5881: -38,-11
+ 5882: -37,-15
+ 5883: -36,-16
+ 5884: -40,-10
+ 5885: -38,-17
+ 5886: -47,-8
+ 5887: -45,0
+ 5888: -47,0
+ 5889: -44,2
+ 5890: -48,-2
+ 5891: -47,-1
+ 5892: -49,3
+ 5893: -50,-1
+ 5894: -45,1
+ 5895: -53,4
+ 5896: -48,5
+ 5897: -50,6
+ 5898: -47,1
+ 5899: -38,-1
+ 5900: -36,1
+ 5901: -35,-1
+ 5902: -32,-1
+ 5903: -33,0
+ 5904: -33,-3
+ 5905: -24,-2
+ 5906: -28,3
+ 5907: -26,3
+ 5908: -26,8
+ 5909: -27,13
+ 5910: -26,14
+ 5911: -26,18
+ 5912: -33,13
+ 5913: -32,15
+ 5914: -32,14
+ 5915: -22,13
+ 5916: -20,12
+ 5917: -22,13
+ 5918: -24,19
+ 5919: -20,20
+ 5920: -18,19
+ 5921: -16,20
+ 5922: -13,19
+ 5923: -15,24
+ 5924: -14,24
+ 5925: -13,27
+ 5926: -11,27
+ 5927: -14,28
5928: -13,27
- 5929: -11,27
- 5930: -14,28
- 5931: -13,27
- 5932: -10,27
- 5933: -5,28
- 5934: -20,28
- 5935: -18,25
- 5936: -13,31
- 5937: -15,32
- 5938: -14,34
- 5939: -17,32
- 5940: -8,32
- 5941: -8,32
- 5942: -6,33
- 5943: -6,27
- 5944: -3,28
- 5945: -1,30
- 5946: -2,33
- 5947: -2,33
- 5948: -2,36
- 5949: -2,43
- 5950: -2,41
- 5951: -7,42
- 5952: -5,45
- 5953: -3,47
- 5954: 0,45
- 5955: -2,47
- 5956: -1,47
- 5957: -2,51
- 5958: 1,51
- 5959: -1,52
- 5960: 1,52
- 5961: 2,45
- 5962: 2,47
- 5963: 2,42
- 5964: 1,40
- 5965: 6,41
- 5966: 8,39
- 5967: 6,41
- 5968: 5,31
- 5969: 3,31
- 5970: 5,30
- 5971: 4,30
- 5972: 3,26
- 5973: 2,27
- 5974: 4,25
- 5975: 3,23
- 5976: 2,24
- 5977: 1,23
- 5978: -2,24
- 5979: 1,21
- 5980: -1,19
- 5981: 4,20
- 5982: 9,20
- 5983: 9,20
- 5984: 15,19
- 5985: 11,24
- 5986: 14,23
- 5987: 14,25
- 5988: 15,24
- 5989: 14,29
- 5990: 14,31
- 5991: 17,25
- 5992: 17,23
- 5993: 16,20
- 5994: 20,20
- 5995: 20,18
- 5996: 20,15
- 5997: 21,15
- 5998: 20,12
- 5999: 22,12
- 6000: 20,11
- 6001: 27,12
- 6002: 27,11
- 6003: 26,14
- 6004: 25,19
- 6005: 30,19
- 6006: 31,16
- 6007: 31,12
- 6008: 34,20
- 6009: 34,19
- 6010: 35,14
- 6011: 35,14
- 6012: 35,14
- 6013: 32,8
- 6014: 34,9
- 6015: 32,7
- 6016: 26,7
- 6017: 24,7
- 6018: 24,3
- 6019: 24,2
- 6020: 23,2
- 6021: 20,6
- 6022: 20,9
- 6023: 23,3
- 6024: 32,3
- 6025: 34,2
- 6026: 32,-2
- 6027: 32,-2
- 6028: 32,-4
- 6029: 38,-3
- 6030: 37,-4
- 6031: 37,-2
- 6032: 36,3
- 6033: 42,2
- 6034: 37,-3
- 6035: 38,-2
- 6036: 37,-2
- 6037: 42,-5
- 6038: 42,-2
- 6039: 42,-4
- 6040: 43,2
- 6041: 43,3
- 6042: 43,6
- 6043: 43,8
- 6044: 48,8
- 6045: 49,8
+ 5929: -10,27
+ 5930: -5,28
+ 5931: -20,28
+ 5932: -18,25
+ 5933: -13,31
+ 5934: -15,32
+ 5935: -14,34
+ 5936: -17,32
+ 5937: -8,32
+ 5938: -8,32
+ 5939: -6,33
+ 5940: -6,27
+ 5941: -3,28
+ 5942: -1,30
+ 5943: -2,33
+ 5944: -2,33
+ 5945: -2,36
+ 5946: -2,43
+ 5947: -2,41
+ 5948: -7,42
+ 5949: -5,45
+ 5950: -3,47
+ 5951: 0,45
+ 5952: -2,47
+ 5953: -1,47
+ 5954: -2,51
+ 5955: 1,51
+ 5956: -1,52
+ 5957: 1,52
+ 5958: 2,45
+ 5959: 2,47
+ 5960: 2,42
+ 5961: 1,40
+ 5962: 6,41
+ 5963: 8,39
+ 5964: 6,41
+ 5965: 5,31
+ 5966: 3,31
+ 5967: 5,30
+ 5968: 4,30
+ 5969: 3,26
+ 5970: 2,27
+ 5971: 4,25
+ 5972: 3,23
+ 5973: 2,24
+ 5974: 1,23
+ 5975: -2,24
+ 5976: 1,21
+ 5977: -1,19
+ 5978: 4,20
+ 5979: 9,20
+ 5980: 9,20
+ 5981: 15,19
+ 5982: 11,24
+ 5983: 14,23
+ 5984: 14,25
+ 5985: 15,24
+ 5986: 14,29
+ 5987: 14,31
+ 5988: 17,25
+ 5989: 17,23
+ 5990: 16,20
+ 5991: 20,20
+ 5992: 20,18
+ 5993: 20,15
+ 5994: 21,15
+ 5995: 20,12
+ 5996: 22,12
+ 5997: 20,11
+ 5998: 27,12
+ 5999: 27,11
+ 6000: 26,14
+ 6001: 25,19
+ 6002: 30,19
+ 6003: 31,16
+ 6004: 31,12
+ 6005: 34,20
+ 6006: 34,19
+ 6007: 35,14
+ 6008: 35,14
+ 6009: 35,14
+ 6010: 32,8
+ 6011: 34,9
+ 6012: 32,7
+ 6013: 26,7
+ 6014: 24,7
+ 6015: 24,3
+ 6016: 24,2
+ 6017: 23,2
+ 6018: 20,6
+ 6019: 20,9
+ 6020: 23,3
+ 6021: 32,3
+ 6022: 34,2
+ 6023: 32,-2
+ 6024: 32,-2
+ 6025: 32,-4
+ 6026: 38,-3
+ 6027: 37,-4
+ 6028: 37,-2
+ 6029: 36,3
+ 6030: 42,2
+ 6031: 37,-3
+ 6032: 38,-2
+ 6033: 37,-2
+ 6034: 42,-5
+ 6035: 42,-2
+ 6036: 42,-4
+ 6037: 43,2
+ 6038: 43,3
+ 6039: 43,6
+ 6040: 43,8
+ 6041: 48,8
+ 6042: 49,8
+ 6043: 44,12
+ 6044: 43,11
+ 6045: 46,12
6046: 44,12
- 6047: 43,11
- 6048: 46,12
- 6049: 44,12
- 6050: 52,12
- 6051: 51,13
- 6052: 50,14
- 6053: 50,7
- 6054: 50,8
- 6055: 53,14
- 6056: 57,14
- 6057: 59,15
- 6058: 60,17
- 6059: 55,7
- 6060: 54,7
- 6061: 50,7
- 6062: 50,1
- 6063: 51,-1
- 6064: 49,0
- 6065: 51,-2
- 6066: 48,-1
- 6067: 45,-1
- 6068: 46,-5
- 6069: 46,-8
- 6070: 49,-7
- 6071: 51,-8
- 6072: 51,-6
- 6073: 50,-4
- 6074: 50,-7
- 6075: 55,-5
- 6076: 53,-5
- 6077: 52,-11
- 6078: 52,-13
- 6079: 52,-11
- 6080: 50,-11
- 6081: 58,-6
- 6082: 61,-5
- 6083: 59,-7
- 6084: 59,-7
- 6085: 60,-6
- 6086: 59,-14
- 6087: 60,-14
- 6088: 59,-14
- 6089: 59,-18
- 6090: 59,-20
- 6091: 60,-18
- 6092: 60,-17
- 6093: 64,-13
- 6094: 64,-17
- 6095: 65,-19
- 6096: 64,-19
- 6097: 64,-25
- 6098: 65,-24
- 6099: 63,-26
- 6100: 63,-24
- 6101: 62,-26
- 6102: 64,-26
- 6103: 70,-28
- 6104: 71,-26
- 6105: 69,-27
- 6106: 69,-23
- 6107: 70,-24
- 6108: 69,-22
- 6109: 66,-18
- 6110: 70,-18
- 6111: 71,-17
- 6112: 69,-13
- 6113: 71,-14
- 6114: 69,-12
- 6115: 70,-14
- 6116: 76,-17
- 6117: 77,-18
- 6118: 74,-15
- 6119: 76,-14
- 6120: 74,-14
- 6121: 68,-8
- 6122: 70,-10
- 6123: 76,-6
- 6124: 48,-25
- 6125: 48,-26
- 6126: 48,-27
- 6127: 48,-30
- 6128: 48,-31
- 6129: 47,-31
- 6130: 49,-34
- 6131: 47,-36
- 6132: 46,-36
- 6133: 44,-37
- 6134: 42,-35
- 6135: 42,-36
- 6136: 38,-36
- 6137: 38,-35
- 6138: 37,-37
- 6139: 32,-35
- 6140: 32,-36
- 6141: 32,-33
- 6142: 33,-31
- 6143: 32,-31
- 6144: 33,-27
- 6145: 32,-25
- 6146: 33,-24
- 6147: 35,-26
- 6148: 37,-26
- 6149: 41,-25
- 6150: 40,-26
- 6151: 41,-29
- 6152: 40,-29
- 6153: 40,-31
- 6154: 43,-29
- 6155: 44,-31
- 6156: 45,-30
- 6157: 27,-34
- 6158: 25,-34
- 6159: 24,-32
- 6160: 26,-29
- 6161: 23,-29
- 6162: 23,-31
- 6163: 25,-38
- 6164: 24,-37
- 6165: 22,-38
- 6166: 21,-37
- 6167: 21,-38
- 6168: 29,-39
- 6169: 28,-41
- 6170: 29,-44
- 6171: 28,-42
- 6172: 28,-45
- 6173: 26,-45
- 6174: 27,-44
- 6175: 24,-43
- 6176: 25,-46
- 6177: 27,-45
- 6178: 25,-46
- 6179: 32,-30
- 6180: 33,-28
- 6181: 36,-26
- 6182: 35,-26
- 6183: 36,-23
- 6184: 36,-30
- 6185: 42,-28
- 6186: 43,-29
- 6187: 51,-28
- 6188: 51,-27
- 6189: 52,-31
- 6190: 52,-35
- 6191: 52,-36
- 6192: 55,-29
- 6193: 55,-30
- 6194: 57,-30
- 6195: 55,-34
- 6196: 55,-34
- 6197: 55,-36
- 6198: 57,-34
- 6199: 20,-45
- 6200: 17,-44
- 6201: 18,-45
- 6202: 19,-46
- 6203: 18,-48
- 6204: 19,-49
- 6205: 18,-50
- 6206: 20,-53
- 6207: 18,-54
- 6208: 17,-54
- 6209: 16,-54
- 6210: 16,-58
- 6211: 16,-59
- 6212: 19,-58
- 6213: 21,-58
- 6214: 21,-59
- 6215: 13,-47
- 6216: 14,-47
- 6217: 13,-48
- 6218: 13,-45
- 6219: 12,-45
- 6220: 9,-45
- 6221: 8,-45
- 6222: 10,-39
- 6223: 11,-39
- 6224: 0,-37
+ 6047: 52,12
+ 6048: 51,13
+ 6049: 50,14
+ 6050: 50,7
+ 6051: 50,8
+ 6052: 53,14
+ 6053: 57,14
+ 6054: 59,15
+ 6055: 60,17
+ 6056: 55,7
+ 6057: 54,7
+ 6058: 50,7
+ 6059: 50,1
+ 6060: 51,-1
+ 6061: 49,0
+ 6062: 51,-2
+ 6063: 48,-1
+ 6064: 45,-1
+ 6065: 46,-5
+ 6066: 46,-8
+ 6067: 49,-7
+ 6068: 51,-8
+ 6069: 51,-6
+ 6070: 50,-4
+ 6071: 50,-7
+ 6072: 55,-5
+ 6073: 53,-5
+ 6074: 52,-11
+ 6075: 52,-13
+ 6076: 52,-11
+ 6077: 50,-11
+ 6078: 58,-6
+ 6079: 61,-5
+ 6080: 59,-7
+ 6081: 59,-7
+ 6082: 60,-6
+ 6083: 59,-14
+ 6084: 60,-14
+ 6085: 59,-14
+ 6086: 59,-18
+ 6087: 59,-20
+ 6088: 60,-18
+ 6089: 60,-17
+ 6090: 64,-13
+ 6091: 64,-17
+ 6092: 65,-19
+ 6093: 64,-19
+ 6094: 64,-25
+ 6095: 65,-24
+ 6096: 63,-26
+ 6097: 63,-24
+ 6098: 62,-26
+ 6099: 64,-26
+ 6100: 70,-28
+ 6101: 71,-26
+ 6102: 69,-27
+ 6103: 69,-23
+ 6104: 70,-24
+ 6105: 69,-22
+ 6106: 66,-18
+ 6107: 70,-18
+ 6108: 71,-17
+ 6109: 69,-13
+ 6110: 71,-14
+ 6111: 69,-12
+ 6112: 70,-14
+ 6113: 76,-17
+ 6114: 77,-18
+ 6115: 74,-15
+ 6116: 76,-14
+ 6117: 74,-14
+ 6118: 68,-8
+ 6119: 70,-10
+ 6120: 76,-6
+ 6121: 48,-25
+ 6122: 48,-26
+ 6123: 48,-27
+ 6124: 48,-30
+ 6125: 48,-31
+ 6126: 47,-31
+ 6127: 49,-34
+ 6128: 47,-36
+ 6129: 46,-36
+ 6130: 44,-37
+ 6131: 42,-35
+ 6132: 42,-36
+ 6133: 38,-36
+ 6134: 38,-35
+ 6135: 37,-37
+ 6136: 32,-35
+ 6137: 32,-36
+ 6138: 32,-33
+ 6139: 33,-31
+ 6140: 32,-31
+ 6141: 33,-27
+ 6142: 32,-25
+ 6143: 33,-24
+ 6144: 35,-26
+ 6145: 37,-26
+ 6146: 41,-25
+ 6147: 40,-26
+ 6148: 41,-29
+ 6149: 40,-29
+ 6150: 40,-31
+ 6151: 43,-29
+ 6152: 44,-31
+ 6153: 45,-30
+ 6154: 27,-34
+ 6155: 25,-34
+ 6156: 24,-32
+ 6157: 26,-29
+ 6158: 23,-29
+ 6159: 23,-31
+ 6160: 25,-38
+ 6161: 24,-37
+ 6162: 22,-38
+ 6163: 21,-37
+ 6164: 21,-38
+ 6165: 29,-39
+ 6166: 28,-41
+ 6167: 29,-44
+ 6168: 28,-42
+ 6169: 28,-45
+ 6170: 26,-45
+ 6171: 27,-44
+ 6172: 24,-43
+ 6173: 25,-46
+ 6174: 27,-45
+ 6175: 25,-46
+ 6176: 32,-30
+ 6177: 33,-28
+ 6178: 36,-26
+ 6179: 35,-26
+ 6180: 36,-23
+ 6181: 36,-30
+ 6182: 42,-28
+ 6183: 43,-29
+ 6184: 51,-28
+ 6185: 51,-27
+ 6186: 52,-31
+ 6187: 52,-35
+ 6188: 52,-36
+ 6189: 55,-29
+ 6190: 55,-30
+ 6191: 57,-30
+ 6192: 55,-34
+ 6193: 55,-34
+ 6194: 55,-36
+ 6195: 57,-34
+ 6196: 20,-45
+ 6197: 17,-44
+ 6198: 18,-45
+ 6199: 19,-46
+ 6200: 18,-48
+ 6201: 19,-49
+ 6202: 18,-50
+ 6203: 20,-53
+ 6204: 18,-54
+ 6205: 17,-54
+ 6206: 16,-54
+ 6207: 16,-58
+ 6208: 16,-59
+ 6209: 19,-58
+ 6210: 21,-58
+ 6211: 21,-59
+ 6212: 13,-47
+ 6213: 14,-47
+ 6214: 13,-48
+ 6215: 13,-45
+ 6216: 12,-45
+ 6217: 9,-45
+ 6218: 8,-45
+ 6219: 10,-39
+ 6220: 11,-39
+ 6221: 0,-37
+ 6222: 0,-36
+ 6223: 1,-36
+ 6224: 2,-38
6225: 0,-36
- 6226: 1,-36
- 6227: 2,-38
- 6228: 0,-36
- 6229: -1,-37
- 6230: -2,-36
- 6231: -5,-36
- 6232: -4,-36
- 6233: -6,-36
- 6234: -7,-32
- 6235: -8,-32
- 6236: -7,-30
- 6237: -11,-31
- 6238: -12,-32
- 6239: -15,-32
- 6240: -16,-32
- 6241: -13,-30
- 6242: -16,-30
- 6243: -17,-30
- 6244: -22,-30
- 6245: -23,-30
- 6246: -24,-30
- 6247: -24,-29
- 6248: -24,-28
- 6249: -22,-32
- 6250: -24,-32
- 6251: -25,-32
- 6252: -26,-30
- 6253: -26,-28
- 6254: -26,-26
- 6255: -26,-24
- 6256: -24,-24
- 6257: -24,-22
- 6258: -24,-19
- 6259: -26,-21
- 6260: -26,-18
- 6261: -26,-17
- 6262: -24,-14
- 6263: -25,-15
- 6264: -27,-15
- 6265: -30,-15
- 6266: -30,-15
- 6267: -34,-15
- 6268: -35,-14
- 6269: -37,-15
- 6270: -38,-14
- 6271: -35,-15
- 6272: -34,-14
- 6273: -37,-10
- 6274: -38,-10
- 6275: -36,-9
- 6276: -33,-10
- 6277: -34,-11
- 6278: -32,-10
- 6279: -29,-10
- 6280: -29,-11
- 6281: -33,-20
- 6282: -34,-20
+ 6226: -1,-37
+ 6227: -2,-36
+ 6228: -5,-36
+ 6229: -4,-36
+ 6230: -6,-36
+ 6231: -7,-32
+ 6232: -8,-32
+ 6233: -7,-30
+ 6234: -11,-31
+ 6235: -12,-32
+ 6236: -15,-32
+ 6237: -16,-32
+ 6238: -13,-30
+ 6239: -16,-30
+ 6240: -17,-30
+ 6241: -22,-30
+ 6242: -23,-30
+ 6243: -24,-30
+ 6244: -24,-29
+ 6245: -24,-28
+ 6246: -22,-32
+ 6247: -24,-32
+ 6248: -25,-32
+ 6249: -26,-30
+ 6250: -26,-28
+ 6251: -26,-26
+ 6252: -26,-24
+ 6253: -24,-24
+ 6254: -24,-22
+ 6255: -24,-19
+ 6256: -26,-21
+ 6257: -26,-18
+ 6258: -26,-17
+ 6259: -24,-14
+ 6260: -25,-15
+ 6261: -27,-15
+ 6262: -30,-15
+ 6263: -30,-15
+ 6264: -34,-15
+ 6265: -35,-14
+ 6266: -37,-15
+ 6267: -38,-14
+ 6268: -35,-15
+ 6269: -34,-14
+ 6270: -37,-10
+ 6271: -38,-10
+ 6272: -36,-9
+ 6273: -33,-10
+ 6274: -34,-11
+ 6275: -32,-10
+ 6276: -29,-10
+ 6277: -29,-11
+ 6278: -33,-20
+ 6279: -34,-20
+ 6280: -33,-18
+ 6281: -32,-20
+ 6282: -34,-19
6283: -33,-18
- 6284: -32,-20
- 6285: -34,-19
- 6286: -33,-18
- 6287: -29,-19
- 6288: -30,-21
- 6289: -29,-19
- 6290: -30,-20
- 6291: -37,-18
- 6292: -40,-18
- 6293: -39,-20
- 6294: -37,-19
- 6295: -39,-19
- 6296: -32,-26
- 6297: -35,-25
- 6298: -39,-26
- 6299: -39,-26
- 6300: -39,-27
- 6301: -40,-28
- 6302: -38,-30
- 6303: -39,-32
- 6304: -39,-33
- 6305: -37,-33
- 6306: -34,-33
- 6307: -31,-33
- 6308: -34,-34
- 6309: -30,-33
- 6310: -30,-31
- 6311: -31,-28
- 6312: -29,-27
- 6313: -29,-30
- 6314: -43,-30
- 6315: -44,-28
- 6316: -45,-31
- 6317: -46,-27
- 6318: -45,-25
- 6319: -45,-25
- 6320: -47,-25
- 6321: -49,-25
- 6322: -51,-26
- 6323: -50,-29
- 6324: -51,-30
- 6325: -51,-30
- 6326: -50,-32
- 6327: -47,-32
- 6328: -48,-33
- 6329: -44,-31
- 6330: -44,-29
- 6331: -55,-25
- 6332: -56,-25
- 6333: -55,-29
- 6334: -56,-29
- 6335: -55,-29
- 6336: -60,-27
- 6337: -60,-29
- 6338: -62,-27
- 6339: -61,-21
- 6340: -61,-21
- 6341: -54,-21
- 6342: -54,-21
- 6343: -55,-16
- 6344: -53,-14
- 6345: -54,-13
- 6346: -53,-10
- 6347: -54,-7
- 6348: -53,-5
- 6349: -55,-2
- 6350: -54,0
- 6351: -53,1
- 6352: -53,-4
- 6353: -54,-3
- 6354: -54,-4
- 6355: -54,-9
- 6356: -46,-4
- 6357: -47,-4
- 6358: -48,-3
- 6359: -50,0
- 6360: -45,1
- 6361: -47,1
- 6362: -44,1
- 6363: -47,1
- 6364: -46,7
- 6365: -49,7
- 6366: -49,11
- 6367: -46,11
- 6368: -49,10
- 6369: -48,13
- 6370: -45,11
- 6371: -54,10
- 6372: -54,9
- 6373: -53,10
- 6374: -39,1
- 6375: -37,0
- 6376: -39,-1
- 6377: -34,-1
- 6378: -37,-1
- 6379: -36,0
- 6380: -35,2
- 6381: -31,2
- 6382: -31,2
- 6383: -33,1
- 6384: -28,0
- 6385: -30,-1
- 6386: -27,-1
- 6387: -33,-4
- 6388: -27,-5
- 6389: -24,-3
- 6390: -24,1
- 6391: -22,3
- 6392: -23,-2
- 6393: -22,-3
- 6394: -17,-3
- 6395: -19,-3
- 6396: -17,-3
- 6397: -18,-4
- 6398: -14,-4
- 6399: -18,-4
- 6400: -17,-4
- 6401: -17,-4
- 6402: -19,-4
- 6403: -19,-2
- 6404: -19,-2
- 6405: -20,-3
- 6406: -20,-5
- 6407: -16,0
- 6408: -16,1
- 6409: -16,3
- 6410: -15,0
- 6411: -15,6
- 6412: -17,5
- 6413: -15,7
- 6414: -21,5
- 6415: -21,6
- 6416: -20,7
- 6417: -22,8
- 6418: -24,9
- 6419: -21,9
- 6420: -23,8
- 6421: -22,8
- 6422: -23,8
- 6423: -21,13
- 6424: -22,11
- 6425: -20,13
- 6426: -22,14
- 6427: -26,12
- 6428: -26,16
- 6429: -26,17
- 6430: -26,20
- 6431: -19,20
- 6432: -25,20
- 6433: -22,19
- 6434: -24,26
- 6435: -25,26
+ 6284: -29,-19
+ 6285: -30,-21
+ 6286: -29,-19
+ 6287: -30,-20
+ 6288: -37,-18
+ 6289: -40,-18
+ 6290: -39,-20
+ 6291: -37,-19
+ 6292: -39,-19
+ 6293: -32,-26
+ 6294: -35,-25
+ 6295: -39,-26
+ 6296: -39,-26
+ 6297: -39,-27
+ 6298: -40,-28
+ 6299: -38,-30
+ 6300: -39,-32
+ 6301: -39,-33
+ 6302: -37,-33
+ 6303: -34,-33
+ 6304: -31,-33
+ 6305: -34,-34
+ 6306: -30,-33
+ 6307: -30,-31
+ 6308: -31,-28
+ 6309: -29,-27
+ 6310: -29,-30
+ 6311: -43,-30
+ 6312: -44,-28
+ 6313: -45,-31
+ 6314: -46,-27
+ 6315: -45,-25
+ 6316: -45,-25
+ 6317: -47,-25
+ 6318: -49,-25
+ 6319: -51,-26
+ 6320: -50,-29
+ 6321: -51,-30
+ 6322: -51,-30
+ 6323: -50,-32
+ 6324: -47,-32
+ 6325: -48,-33
+ 6326: -44,-31
+ 6327: -44,-29
+ 6328: -55,-25
+ 6329: -56,-25
+ 6330: -55,-29
+ 6331: -56,-29
+ 6332: -55,-29
+ 6333: -60,-27
+ 6334: -60,-29
+ 6335: -62,-27
+ 6336: -61,-21
+ 6337: -61,-21
+ 6338: -54,-21
+ 6339: -54,-21
+ 6340: -55,-16
+ 6341: -53,-14
+ 6342: -54,-13
+ 6343: -53,-10
+ 6344: -54,-7
+ 6345: -53,-5
+ 6346: -55,-2
+ 6347: -54,0
+ 6348: -53,1
+ 6349: -53,-4
+ 6350: -54,-3
+ 6351: -54,-4
+ 6352: -54,-9
+ 6353: -46,-4
+ 6354: -47,-4
+ 6355: -48,-3
+ 6356: -50,0
+ 6357: -45,1
+ 6358: -47,1
+ 6359: -44,1
+ 6360: -47,1
+ 6361: -46,7
+ 6362: -49,7
+ 6363: -49,11
+ 6364: -46,11
+ 6365: -49,10
+ 6366: -48,13
+ 6367: -45,11
+ 6368: -54,10
+ 6369: -54,9
+ 6370: -53,10
+ 6371: -39,1
+ 6372: -37,0
+ 6373: -39,-1
+ 6374: -34,-1
+ 6375: -37,-1
+ 6376: -36,0
+ 6377: -35,2
+ 6378: -31,2
+ 6379: -31,2
+ 6380: -33,1
+ 6381: -28,0
+ 6382: -30,-1
+ 6383: -27,-1
+ 6384: -33,-4
+ 6385: -27,-5
+ 6386: -24,-3
+ 6387: -24,1
+ 6388: -22,3
+ 6389: -23,-2
+ 6390: -22,-3
+ 6391: -17,-3
+ 6392: -19,-3
+ 6393: -17,-3
+ 6394: -18,-4
+ 6395: -14,-4
+ 6396: -18,-4
+ 6397: -17,-4
+ 6398: -17,-4
+ 6399: -19,-4
+ 6400: -19,-2
+ 6401: -19,-2
+ 6402: -20,-3
+ 6403: -20,-5
+ 6404: -16,0
+ 6405: -16,1
+ 6406: -16,3
+ 6407: -15,0
+ 6408: -15,6
+ 6409: -17,5
+ 6410: -15,7
+ 6411: -21,5
+ 6412: -21,6
+ 6413: -20,7
+ 6414: -22,8
+ 6415: -24,9
+ 6416: -21,9
+ 6417: -23,8
+ 6418: -22,8
+ 6419: -23,8
+ 6420: -21,13
+ 6421: -22,11
+ 6422: -20,13
+ 6423: -22,14
+ 6424: -26,12
+ 6425: -26,16
+ 6426: -26,17
+ 6427: -26,20
+ 6428: -19,20
+ 6429: -25,20
+ 6430: -22,19
+ 6431: -24,26
+ 6432: -25,26
+ 6433: -26,26
+ 6434: -25,29
+ 6435: -26,29
6436: -26,26
- 6437: -25,29
- 6438: -26,29
- 6439: -26,26
- 6440: -26,27
- 6441: -25,29
- 6442: -29,26
- 6443: -29,26
- 6444: -19,26
- 6445: -21,26
- 6446: -19,28
- 6447: -18,26
- 6448: -14,28
- 6449: -14,26
- 6450: -13,28
- 6451: -11,27
- 6452: -8,27
- 6453: -11,23
- 6454: -7,32
- 6455: -9,32
- 6456: -14,32
- 6457: -15,33
- 6458: -18,32
- 6459: -3,28
- 6460: -4,27
- 6461: -1,29
- 6462: -2,23
- 6463: -1,19
- 6464: -3,14
- 6465: -3,14
- 6466: -2,15
- 6467: -4,15
- 6468: -3,15
- 6469: 2,-14
- 6470: 2,-16
- 6471: -1,-17
- 6472: -2,-14
- 6473: -7,-17
- 6474: -6,-16
- 6475: -7,-19
- 6476: -7,-19
- 6477: -6,-23
- 6478: -7,-23
- 6479: 0,-23
- 6480: -1,-24
- 6481: 4,-20
- 6482: 6,-23
- 6483: 6,-20
- 6484: 7,-22
- 6485: 7,-20
- 6486: 11,-18
- 6487: 13,-18
- 6488: 13,-22
- 6489: 13,-22
- 6490: 12,-22
- 6491: 15,-26
- 6492: 12,-26
- 6493: 12,-29
- 6494: 7,-30
- 6495: 8,-32
- 6496: 7,-32
- 6497: 10,-34
- 6498: 13,-33
- 6499: 16,-32
- 6500: 21,-37
- 6501: 20,-38
- 6502: 24,-38
- 6503: 25,-37
- 6504: 28,-34
- 6505: 25,-34
- 6506: 27,-29
- 6507: 24,-29
- 6508: 33,-34
- 6509: 32,-37
- 6510: 35,-37
- 6511: 38,-36
- 6512: 40,-36
- 6513: 39,-30
- 6514: 44,-25
- 6515: 43,-25
- 6516: 42,-20
- 6517: 42,-18
- 6518: 41,-16
- 6519: 38,-16
- 6520: 37,-17
- 6521: 37,-15
- 6522: 37,-17
- 6523: 37,-16
- 6524: 37,-16
- 6525: 37,-16
- 6526: 49,-7
- 6527: 50,-8
- 6528: 52,-7
- 6529: 38,-3
- 6530: 38,-4
- 6531: 33,-3
- 6532: 33,-3
- 6533: 33,-2
- 6534: 38,7
- 6535: 36,13
- 6536: 37,13
- 6537: 35,13
- 6538: 34,13
+ 6437: -26,27
+ 6438: -25,29
+ 6439: -29,26
+ 6440: -29,26
+ 6441: -19,26
+ 6442: -21,26
+ 6443: -19,28
+ 6444: -18,26
+ 6445: -14,28
+ 6446: -14,26
+ 6447: -13,28
+ 6448: -11,27
+ 6449: -8,27
+ 6450: -11,23
+ 6451: -7,32
+ 6452: -9,32
+ 6453: -14,32
+ 6454: -15,33
+ 6455: -18,32
+ 6456: -3,28
+ 6457: -4,27
+ 6458: -1,29
+ 6459: -2,23
+ 6460: -1,19
+ 6461: -3,14
+ 6462: -3,14
+ 6463: -2,15
+ 6464: -4,15
+ 6465: -3,15
+ 6466: 2,-14
+ 6467: 2,-16
+ 6468: -1,-17
+ 6469: -2,-14
+ 6470: -7,-17
+ 6471: -6,-16
+ 6472: -7,-19
+ 6473: -7,-19
+ 6474: -6,-23
+ 6475: -7,-23
+ 6476: 0,-23
+ 6477: -1,-24
+ 6478: 4,-20
+ 6479: 6,-23
+ 6480: 6,-20
+ 6481: 7,-22
+ 6482: 7,-20
+ 6483: 11,-18
+ 6484: 13,-18
+ 6485: 13,-22
+ 6486: 13,-22
+ 6487: 12,-22
+ 6488: 15,-26
+ 6489: 12,-26
+ 6490: 12,-29
+ 6491: 7,-30
+ 6492: 8,-32
+ 6493: 7,-32
+ 6494: 10,-34
+ 6495: 13,-33
+ 6496: 16,-32
+ 6497: 21,-37
+ 6498: 20,-38
+ 6499: 24,-38
+ 6500: 25,-37
+ 6501: 28,-34
+ 6502: 25,-34
+ 6503: 27,-29
+ 6504: 24,-29
+ 6505: 33,-34
+ 6506: 32,-37
+ 6507: 35,-37
+ 6508: 38,-36
+ 6509: 40,-36
+ 6510: 39,-30
+ 6511: 44,-25
+ 6512: 43,-25
+ 6513: 42,-20
+ 6514: 42,-18
+ 6515: 41,-16
+ 6516: 38,-16
+ 6517: 37,-17
+ 6518: 37,-15
+ 6519: 37,-17
+ 6520: 37,-16
+ 6521: 37,-16
+ 6522: 37,-16
+ 6523: 49,-7
+ 6524: 50,-8
+ 6525: 52,-7
+ 6526: 38,-3
+ 6527: 38,-4
+ 6528: 33,-3
+ 6529: 33,-3
+ 6530: 33,-2
+ 6531: 38,7
+ 6532: 36,13
+ 6533: 37,13
+ 6534: 35,13
+ 6535: 34,13
+ 6536: 34,14
+ 6537: 36,13
+ 6538: 36,13
6539: 34,14
- 6540: 36,13
- 6541: 36,13
- 6542: 34,14
- 6543: 35,18
- 6544: 36,18
- 6545: 34,19
+ 6540: 35,18
+ 6541: 36,18
+ 6542: 34,19
- node:
cleanable: True
color: '#FFFFFFFF'
id: Dirt
decals:
- 6559: 51,20
- 6560: 50,21
- 6619: 81,-34
- 6620: 83,-35
- 6621: 81,-34
- 6623: 81,-34
- 6624: 83,-35
- 6626: 81,-35
- 6627: 82,-35
- 6628: 82,-35
- 6629: 80,-35
- 6630: 83,-36
- 6636: 82,-34
+ 6554: 51,20
+ 6555: 50,21
+ 6612: 81,-34
+ 6613: 83,-35
+ 6614: 81,-34
+ 6615: 81,-34
+ 6616: 83,-35
+ 6617: 81,-35
+ 6618: 82,-35
+ 6619: 82,-35
+ 6620: 80,-35
+ 6621: 83,-36
+ 6626: 82,-34
- node:
cleanable: True
angle: 1.5707963267948966 rad
color: '#FFFFFFFF'
id: Dirt
decals:
- 3264: -44,16
- 3265: -43,17
- 3266: -41,14
+ 3263: -44,16
+ 3264: -43,17
+ 3265: -41,14
- node:
cleanable: True
color: '#1D1D21FF'
id: DirtHeavy
decals:
- 3189: -39,26
- 3190: -40,29
- 3191: -38,28
- 3192: -36,29
- 3193: -35,27
+ 3188: -39,26
+ 3189: -40,29
+ 3190: -38,28
+ 3191: -36,29
+ 3192: -35,27
+ 3193: -35,26
3194: -35,26
- 3195: -35,26
+ 3195: -37,26
3196: -37,26
- 3197: -37,26
- 3198: -37,25
- 3199: -39,26
+ 3197: -37,25
+ 3198: -39,26
+ 3199: -34,25
3200: -34,25
- 3201: -34,25
- 3202: -36,24
+ 3201: -36,24
- node:
cleanable: True
color: '#835432FF'
id: DirtHeavy
decals:
- 3181: -36,26
- 3182: -35,27
- 3183: -37,26
- 3184: -37,27
- 3185: -37,25
- 3186: -39,26
- 3187: -38,27
- 3188: -38,28
+ 3180: -36,26
+ 3181: -35,27
+ 3182: -37,26
+ 3183: -37,27
+ 3184: -37,25
+ 3185: -39,26
+ 3186: -38,27
+ 3187: -38,28
- node:
cleanable: True
color: '#FFFFFFFF'
id: DirtHeavy
decals:
- 3209: -8,-40
- 3210: -7,-39
- 3211: -5,-40
- 3212: -6,-42
- 3213: -4,-39
+ 3208: -8,-40
+ 3209: -7,-39
+ 3210: -5,-40
+ 3211: -6,-42
+ 3212: -4,-39
+ 3213: -6,-40
3214: -6,-40
- 3215: -6,-40
- 3216: -7,-40
+ 3215: -7,-40
+ 3216: -7,-39
3217: -7,-39
- 3218: -7,-39
- 3219: -8,-39
- 3960: -60,-66
- 3961: -59,-65
- 3962: -59,-63
- 3963: -59,-61
- 3964: -59,-59
- 3965: -59,-57
- 3966: -60,-57
- 3967: -57,-57
- 3968: -58,-58
- 3969: -56,-57
- 3970: -56,-58
- 3971: -56,-60
- 3972: -56,-62
- 3973: -56,-64
- 3974: -56,-66
- 3975: -58,-66
- 3976: -55,-56
- 3977: -54,-54
- 3978: -54,-52
- 3979: -54,-50
- 3980: -56,-53
- 3981: -56,-52
- 3982: -56,-47
- 3983: -53,-48
- 3984: -52,-46
- 3985: -54,-46
- 3986: -51,-46
- 3987: -50,-48
- 3988: -47,-48
- 3989: -45,-48
- 3990: -43,-46
- 3991: -45,-46
- 3992: -43,-48
- 3993: -42,-48
- 3994: -40,-48
- 3995: -40,-50
- 3996: -40,-52
- 3997: -40,-54
- 3998: -42,-51
- 3999: -42,-53
- 4000: -42,-54
- 4001: -41,-56
- 4002: -39,-57
- 4003: -40,-58
- 4004: -37,-57
- 4005: -37,-58
- 4006: -37,-61
- 4007: -37,-64
- 4008: -37,-65
- 4009: -36,-65
- 4010: -36,-66
- 4011: -39,-66
- 4012: -40,-65
- 4013: -40,-63
- 4014: -40,-60
- 4015: -47,-44
- 4016: -47,-42
- 4017: -47,-39
- 4018: -47,-35
- 4019: -47,-33
- 4020: -49,-33
- 4021: -49,-37
- 4022: -49,-39
- 4023: -49,-41
- 4024: -49,-44
- 4025: -49,-44
- 4026: -49,-43
- 4027: -44,-32
- 4028: -44,-30
- 4029: -43,-31
- 4030: -43,-27
- 4031: -44,-26
- 4032: -43,-26
- 4033: -44,-25
- 4034: -52,-32
- 4035: -52,-30
- 4036: -52,-29
- 4037: -52,-25
- 4038: -52,-22
- 4039: -54,-22
- 4040: -55,-22
- 4041: -52,-20
- 4042: -50,-20
- 4043: -47,-20
- 4044: -46,-20
- 4045: -45,-20
- 4046: -44,-20
- 4047: -44,-22
- 4048: -51,-18
- 4049: -51,-17
- 4050: -49,-17
- 4051: -48,-15
- 4052: -48,-13
- 4053: -50,-13
- 4054: -51,-14
- 4055: -51,-15
- 4056: -44,-15
- 4057: -46,-15
- 4058: -46,-14
- 4059: -54,-24
- 4060: -56,-24
- 4061: -54,-30
- 4062: -56,-29
- 4063: -57,-28
- 4064: -54,-28
- 4065: -61,-29
- 4066: -59,-29
- 4067: -59,-27
- 4068: -59,-25
- 4069: -61,-25
- 4070: -55,-17
- 4071: -55,-15
- 4072: -55,-13
- 4073: -55,-10
- 4074: -53,-17
- 4075: -53,-14
- 4076: -53,-12
- 4077: -53,-11
- 4078: -53,-9
- 4079: -53,-7
- 4080: -53,-6
- 4081: -53,-4
- 4082: -55,-3
- 4083: -55,-7
- 4084: -55,-8
- 4085: -53,0
- 4086: -53,-2
- 4087: -51,-4
- 4088: -49,-4
- 4089: -50,-5
- 4090: -48,-5
- 4099: -53,2
- 4100: -53,4
- 4101: -53,6
- 4102: -53,7
- 4103: -55,7
- 4104: -55,5
- 4105: -55,-1
- 4106: -51,6
- 4107: -50,7
- 4108: -47,7
- 4109: -48,6
- 4110: -46,6
- 4111: -45,7
- 4112: -47,9
- 4113: -45,9
- 4114: -44,9
- 4115: -50,9
- 4116: -50,9
- 4117: -51,11
- 4118: -51,13
- 4119: -50,13
- 4120: -48,13
- 4121: -46,13
- 4122: -48,12
- 4123: -43,11
- 4124: -44,12
- 4125: -43,13
- 4126: -43,12
- 4127: -54,10
- 4128: -53,9
- 4129: -54,9
- 4152: -43,1
- 4153: -40,2
- 4154: -39,1
- 4155: -39,1
- 4156: -40,-1
- 4157: -38,-1
- 4158: -40,-2
- 4159: -39,-2
- 4160: -40,-4
- 4161: -39,-5
- 4162: -38,-5
- 4163: -37,-5
- 4164: -36,-5
- 4165: -38,-4
- 4166: -36,-3
- 4167: -36,-2
- 4168: -36,-4
- 4169: -34,-3
- 4170: -32,-4
- 4171: -34,-1
- 4172: -32,0
- 4173: -35,0
- 4175: -39,3
- 4176: -40,4
- 4177: -38,4
- 4178: -33,1
- 4179: -31,2
- 4180: -31,-1
- 4181: -29,0
- 4182: -32,-2
- 4183: -31,-3
- 4184: -33,-4
- 4185: -32,-5
- 4186: -31,-4
- 4187: -30,-3
- 4188: -28,-3
- 4189: -28,-4
- 4190: -26,-5
- 4191: -27,-2
- 4192: -27,-3
- 4193: -29,0
- 4194: -27,0
- 4195: -27,2
- 4196: -28,3
- 4197: -27,3
- 4198: -27,1
- 4199: -26,-1
- 4200: -32,-1
- 4201: -28,4
- 4202: -26,5
- 4203: -26,6
- 4204: -26,3
- 4205: -26,3
- 4206: -24,2
- 4207: -23,1
- 4208: -25,0
- 4209: -23,-2
- 4210: -25,-3
- 4211: -23,-3
- 4212: -25,-4
- 4213: -23,-5
- 4214: -25,-5
- 4215: -24,-1
- 4216: -25,-1
- 4217: -23,3
- 4218: -15,-1
- 4219: -16,-1
- 4220: -15,0
- 4221: -16,1
- 4222: -16,3
- 4223: -15,3
- 4224: -15,2
- 4225: -15,1
- 4226: -15,1
- 4227: -27,6
- 4228: -27,7
- 4229: -27,9
- 4230: -20,5
- 4231: -21,5
- 4236: -17,5
- 4237: -16,5
- 4238: -16,5
- 4239: -22,11
- 4240: -21,11
- 4241: -22,13
+ 3218: -8,-39
+ 3958: -60,-66
+ 3959: -59,-65
+ 3960: -59,-63
+ 3961: -59,-61
+ 3962: -59,-59
+ 3963: -59,-57
+ 3964: -60,-57
+ 3965: -57,-57
+ 3966: -58,-58
+ 3967: -56,-57
+ 3968: -56,-58
+ 3969: -56,-60
+ 3970: -56,-62
+ 3971: -56,-64
+ 3972: -56,-66
+ 3973: -58,-66
+ 3974: -55,-56
+ 3975: -54,-54
+ 3976: -54,-52
+ 3977: -54,-50
+ 3978: -56,-53
+ 3979: -56,-52
+ 3980: -56,-47
+ 3981: -53,-48
+ 3982: -52,-46
+ 3983: -54,-46
+ 3984: -51,-46
+ 3985: -50,-48
+ 3986: -47,-48
+ 3987: -45,-48
+ 3988: -43,-46
+ 3989: -45,-46
+ 3990: -43,-48
+ 3991: -42,-48
+ 3992: -40,-48
+ 3993: -40,-50
+ 3994: -40,-52
+ 3995: -40,-54
+ 3996: -42,-51
+ 3997: -42,-53
+ 3998: -42,-54
+ 3999: -41,-56
+ 4000: -39,-57
+ 4001: -40,-58
+ 4002: -37,-57
+ 4003: -37,-58
+ 4004: -37,-61
+ 4005: -37,-64
+ 4006: -37,-65
+ 4007: -36,-65
+ 4008: -36,-66
+ 4009: -39,-66
+ 4010: -40,-65
+ 4011: -40,-63
+ 4012: -40,-60
+ 4013: -47,-44
+ 4014: -47,-42
+ 4015: -47,-39
+ 4016: -47,-35
+ 4017: -47,-33
+ 4018: -49,-33
+ 4019: -49,-37
+ 4020: -49,-39
+ 4021: -49,-41
+ 4022: -49,-44
+ 4023: -49,-44
+ 4024: -49,-43
+ 4025: -44,-32
+ 4026: -44,-30
+ 4027: -43,-31
+ 4028: -43,-27
+ 4029: -44,-26
+ 4030: -43,-26
+ 4031: -44,-25
+ 4032: -52,-32
+ 4033: -52,-30
+ 4034: -52,-29
+ 4035: -52,-25
+ 4036: -52,-22
+ 4037: -54,-22
+ 4038: -55,-22
+ 4039: -52,-20
+ 4040: -50,-20
+ 4041: -47,-20
+ 4042: -46,-20
+ 4043: -45,-20
+ 4044: -44,-20
+ 4045: -44,-22
+ 4046: -51,-18
+ 4047: -51,-17
+ 4048: -49,-17
+ 4049: -48,-15
+ 4050: -48,-13
+ 4051: -50,-13
+ 4052: -51,-14
+ 4053: -51,-15
+ 4054: -44,-15
+ 4055: -46,-15
+ 4056: -46,-14
+ 4057: -54,-24
+ 4058: -56,-24
+ 4059: -54,-30
+ 4060: -56,-29
+ 4061: -57,-28
+ 4062: -54,-28
+ 4063: -61,-29
+ 4064: -59,-29
+ 4065: -59,-27
+ 4066: -59,-25
+ 4067: -61,-25
+ 4068: -55,-17
+ 4069: -55,-15
+ 4070: -55,-13
+ 4071: -55,-10
+ 4072: -53,-17
+ 4073: -53,-14
+ 4074: -53,-12
+ 4075: -53,-11
+ 4076: -53,-9
+ 4077: -53,-7
+ 4078: -53,-6
+ 4079: -53,-4
+ 4080: -55,-3
+ 4081: -55,-7
+ 4082: -55,-8
+ 4083: -53,0
+ 4084: -53,-2
+ 4085: -51,-4
+ 4086: -49,-4
+ 4087: -50,-5
+ 4088: -48,-5
+ 4097: -53,2
+ 4098: -53,4
+ 4099: -53,6
+ 4100: -53,7
+ 4101: -55,7
+ 4102: -55,5
+ 4103: -55,-1
+ 4104: -51,6
+ 4105: -50,7
+ 4106: -47,7
+ 4107: -48,6
+ 4108: -46,6
+ 4109: -45,7
+ 4110: -47,9
+ 4111: -45,9
+ 4112: -44,9
+ 4113: -50,9
+ 4114: -50,9
+ 4115: -51,11
+ 4116: -51,13
+ 4117: -50,13
+ 4118: -48,13
+ 4119: -46,13
+ 4120: -48,12
+ 4121: -43,11
+ 4122: -44,12
+ 4123: -43,13
+ 4124: -43,12
+ 4125: -54,10
+ 4126: -53,9
+ 4127: -54,9
+ 4150: -43,1
+ 4151: -40,2
+ 4152: -39,1
+ 4153: -39,1
+ 4154: -40,-1
+ 4155: -38,-1
+ 4156: -40,-2
+ 4157: -39,-2
+ 4158: -40,-4
+ 4159: -39,-5
+ 4160: -38,-5
+ 4161: -37,-5
+ 4162: -36,-5
+ 4163: -38,-4
+ 4164: -36,-3
+ 4165: -36,-2
+ 4166: -36,-4
+ 4167: -34,-3
+ 4168: -32,-4
+ 4169: -34,-1
+ 4170: -32,0
+ 4171: -35,0
+ 4172: -39,3
+ 4173: -40,4
+ 4174: -38,4
+ 4175: -33,1
+ 4176: -31,2
+ 4177: -31,-1
+ 4178: -29,0
+ 4179: -32,-2
+ 4180: -31,-3
+ 4181: -33,-4
+ 4182: -32,-5
+ 4183: -31,-4
+ 4184: -30,-3
+ 4185: -28,-3
+ 4186: -28,-4
+ 4187: -26,-5
+ 4188: -27,-2
+ 4189: -27,-3
+ 4190: -29,0
+ 4191: -27,0
+ 4192: -27,2
+ 4193: -28,3
+ 4194: -27,3
+ 4195: -27,1
+ 4196: -26,-1
+ 4197: -32,-1
+ 4198: -28,4
+ 4199: -26,5
+ 4200: -26,6
+ 4201: -26,3
+ 4202: -26,3
+ 4203: -24,2
+ 4204: -23,1
+ 4205: -25,0
+ 4206: -23,-2
+ 4207: -25,-3
+ 4208: -23,-3
+ 4209: -25,-4
+ 4210: -23,-5
+ 4211: -25,-5
+ 4212: -24,-1
+ 4213: -25,-1
+ 4214: -23,3
+ 4215: -15,-1
+ 4216: -16,-1
+ 4217: -15,0
+ 4218: -16,1
+ 4219: -16,3
+ 4220: -15,3
+ 4221: -15,2
+ 4222: -15,1
+ 4223: -15,1
+ 4224: -27,6
+ 4225: -27,7
+ 4226: -27,9
+ 4227: -20,5
+ 4228: -21,5
+ 4233: -17,5
+ 4234: -16,5
+ 4235: -16,5
+ 4236: -22,11
+ 4237: -21,11
+ 4238: -22,13
+ 4239: -20,14
+ 4240: -22,13
+ 4241: -22,15
4242: -20,14
- 4243: -22,13
- 4244: -22,15
- 4245: -20,14
- 4246: -20,13
- 4247: -20,12
- 4248: -19,11
- 4249: -22,14
- 4250: -23,14
- 4251: -17,11
- 4252: -17,11
- 4253: -17,12
- 4254: -16,11
- 4255: -16,12
- 4256: -17,13
- 4257: -16,14
- 4258: -17,14
- 4259: -16,12
- 4260: -17,12
- 4261: -17,11
- 4264: -34,12
- 4265: -35,12
- 4266: -34,14
- 4267: -35,15
- 4268: -34,16
- 4269: -34,17
- 4270: -33,16
- 4271: -32,15
- 4272: -31,17
- 4273: -32,17
- 4274: -33,16
- 4275: -34,15
- 4276: -34,15
- 4277: -37,14
- 4278: -38,14
- 4279: -39,14
- 4280: -39,12
- 4281: -39,11
- 4282: -38,11
- 4283: -38,11
- 4284: -27,11
- 4285: -27,13
- 4286: -27,16
- 4287: -27,17
- 4288: -27,19
- 4289: -27,20
- 4290: -27,21
- 4291: -25,18
- 4292: -25,16
- 4293: -25,14
- 4294: -25,12
- 4295: -25,11
- 4296: -24,18
- 4297: -22,18
- 4298: -23,17
- 4299: -21,17
- 4300: -20,18
- 4301: -19,17
- 4302: -20,20
- 4303: -22,20
- 4304: -24,20
- 4305: -20,21
- 4306: -17,19
- 4307: -16,19
- 4308: -14,19
- 4309: -17,21
- 4310: -15,21
- 4311: -13,21
- 4312: -11,21
- 4313: -13,19
- 4314: -10,19
- 4315: -8,19
- 4316: -6,19
- 4317: -9,21
- 4318: -7,21
- 4319: -5,21
- 4320: -3,21
- 4321: 0,21
- 4322: -5,19
- 4323: -2,19
- 4324: 0,19
- 4325: 0,21
- 4326: 2,21
- 4327: 5,21
- 4328: 6,21
- 4329: 2,19
- 4330: 4,19
- 4331: 7,19
- 4332: 10,19
- 4333: 8,21
- 4334: 10,21
- 4335: 11,21
- 4336: 13,21
- 4337: 12,19
- 4338: 14,19
- 4339: 15,19
- 4340: 17,19
- 4341: 15,23
- 4342: 14,23
- 4343: 13,24
- 4344: 15,25
- 4345: 15,24
- 4346: 11,23
- 4347: 10,23
- 4348: 11,24
- 4349: 17,23
- 4350: 17,25
- 4351: 17,25
- 4352: 16,23
- 4353: 18,19
- 4354: 19,19
- 4355: 19,21
- 4356: 17,21
- 4357: 16,21
- 4358: 21,20
- 4359: 21,18
- 4360: 21,17
- 4361: 19,18
- 4362: 19,15
- 4363: 19,12
- 4364: 19,11
- 4365: 21,16
- 4366: 21,13
- 4367: 21,12
- 4368: 21,10
- 4369: 21,8
- 4370: 21,7
- 4371: 19,9
- 4372: 19,7
- 4373: 19,6
- 4374: 23,10
- 4375: 24,10
- 4376: 26,10
- 4377: 27,10
- 4378: 28,7
- 4379: 27,8
- 4380: 27,6
- 4381: 28,6
- 4382: 30,6
- 4383: 30,8
- 4384: 30,9
- 4385: 30,10
- 4386: 33,10
- 4387: 34,10
- 4388: 31,12
- 4389: 31,13
- 4390: 30,14
- 4391: 31,17
- 4392: 30,17
- 4393: 31,19
- 4394: 31,20
- 4395: 31,22
- 4396: 30,22
- 4397: 28,22
- 4398: 29,23
- 4399: 26,22
- 4400: 24,22
- 4401: 23,22
- 4402: 23,23
- 4403: 23,20
- 4404: 23,18
- 4405: 25,18
- 4406: 25,17
- 4407: 26,18
- 4408: 27,17
- 4409: 26,19
- 4410: 27,20
- 4411: 29,18
- 4412: 27,18
- 4413: 30,17
- 4414: 33,22
- 4415: 35,22
- 4416: 33,19
- 4417: 33,18
- 4418: 35,18
- 4419: 36,17
- 4420: 34,17
- 4421: 35,17
- 4422: 33,13
- 4423: 33,15
- 4424: 33,15
- 4425: 32,13
- 4426: 26,7
- 4427: 23,2
- 4428: 26,2
- 4429: 20,2
- 4430: 21,2
- 4431: 19,4
- 4437: 31,2
- 4438: 33,2
- 4439: 33,4
- 4440: 32,4
- 4441: 35,4
- 4442: 37,4
- 4443: 37,2
- 4444: 41,4
- 4445: 42,4
- 4446: 43,4
- 4447: 40,2
- 4448: 41,2
- 4449: 41,1
- 4450: 38,2
- 4451: 43,2
- 4452: 43,1
- 4453: 37,-2
- 4454: 38,-3
- 4455: 39,-2
- 4456: 39,-4
- 4457: 37,-4
- 4458: 39,-5
- 4459: 33,-1
- 4460: 31,-1
- 4461: 31,0
- 4462: 33,0
- 4463: 32,1
- 4464: 38,7
- 4465: 42,9
- 4466: 42,7
- 4467: 44,9
- 4468: 44,7
- 4469: 46,7
- 4470: 49,6
- 4471: 49,4
- 4472: 49,1
- 4473: 51,1
- 4474: 51,3
- 4475: 51,7
- 4476: 51,9
- 4477: 51,12
- 4478: 51,13
- 4479: 49,13
- 4480: 49,10
- 4481: 46,11
- 4482: 47,13
- 4483: 44,11
- 4484: 44,13
- 4485: 42,12
- 4486: 43,13
- 4487: 42,11
- 4488: 44,12
- 4489: 54,14
- 4490: 58,14
- 4491: 59,14
- 4492: 60,14
- 4493: 58,16
- 4494: 56,10
- 4495: 55,10
- 4496: 55,12
- 4497: 54,12
- 4498: 53,11
- 4499: 56,6
- 4500: 54,6
- 4501: 53,6
- 4502: 53,7
- 4503: 54,3
- 4504: 53,2
- 4505: 59,3
- 4506: 60,4
- 4507: 59,0
- 4508: 52,-3
- 4509: 52,-4
- 4510: 52,-6
- 4511: 52,-7
- 4512: 48,-7
- 4513: 48,-4
- 4514: 48,-3
- 4515: 48,-1
- 4516: 55,-5
- 4517: 56,-4
- 4518: 57,-5
- 4519: 58,-7
- 4520: 59,-8
- 4521: 60,-7
- 4522: 62,-8
- 4523: 62,-7
- 4524: 52,-12
- 4525: 52,-14
- 4526: 52,-15
- 4527: 49,-12
- 4528: 49,-14
- 4529: 49,-15
- 4530: 43,-1
- 4531: 43,-3
- 4532: 43,-7
- 4533: 43,-8
- 4534: 41,-1
- 4535: 41,-3
- 4536: 41,-5
- 4537: 41,-7
- 4538: 41,-10
- 4539: 41,-11
- 4540: 43,-8
- 4541: 43,-10
- 4542: 43,-12
- 4543: 43,-14
- 4544: 43,-16
- 4545: 43,-17
- 4546: 41,-15
- 4547: 41,-16
- 4548: 41,-17
- 4549: 41,-19
- 4550: 40,-19
- 4551: 40,-21
- 4552: 42,-21
- 4553: 43,-21
- 4554: 45,-21
- 4559: 45,-19
- 4560: 47,-19
- 4561: 48,-19
- 4562: 51,-19
- 4563: 47,-21
- 4564: 49,-21
- 4565: 47,-22
- 4566: 51,-21
- 4567: 52,-21
- 4568: 52,-23
- 4569: 53,-24
- 4570: 56,-24
- 4571: 57,-24
- 4572: 58,-24
- 4573: 58,-23
- 4574: 59,-21
- 4575: 60,-21
- 4576: 61,-20
- 4577: 59,-19
- 4578: 61,-19
- 4579: 60,-17
- 4580: 60,-17
- 4581: 58,-18
- 4582: 58,-19
- 4583: 56,-19
- 4584: 55,-19
- 4585: 53,-19
- 4586: 60,-15
- 4587: 58,-15
- 4588: 59,-14
- 4589: 57,-13
- 4590: 57,-12
- 4591: 60,-13
- 4592: 60,-12
- 4593: 60,-14
- 4594: 61,-13
- 4595: 63,-13
- 4596: 64,-12
- 4597: 65,-14
- 4598: 63,-14
- 4599: 63,-16
- 4600: 65,-16
- 4601: 65,-18
- 4602: 65,-20
- 4603: 63,-18
- 4604: 63,-20
- 4605: 63,-21
- 4606: 65,-21
- 4607: 62,-23
- 4608: 61,-24
- 4609: 64,-24
- 4610: 63,-25
- 4611: 64,-26
- 4612: 65,-27
- 4613: 66,-26
- 4614: 65,-24
- 4615: 65,-23
- 4616: 65,-23
- 4620: 68,-21
- 4621: 69,-21
- 4622: 69,-23
- 4623: 69,-24
- 4625: 69,-27
- 4626: 70,-26
- 4627: 70,-26
- 4628: 71,-27
- 4629: 71,-28
- 4630: 70,-28
- 4631: 68,-28
- 4632: 69,-29
- 4633: 70,-30
- 4634: 69,-30
- 4635: 70,-29
- 4636: 70,-29
- 4637: 70,-29
- 4638: 71,-30
- 4639: 71,-17
- 4640: 68,-17
- 4641: 67,-19
- 4642: 70,-17
- 4643: 70,-19
- 4644: 71,-18
- 4645: 68,-18
- 4646: 69,-19
- 4666: 69,-9
- 4667: 68,-9
- 4668: 67,-9
- 4669: 70,-10
+ 4243: -20,13
+ 4244: -20,12
+ 4245: -19,11
+ 4246: -22,14
+ 4247: -23,14
+ 4248: -17,11
+ 4249: -17,11
+ 4250: -17,12
+ 4251: -16,11
+ 4252: -16,12
+ 4253: -17,13
+ 4254: -16,14
+ 4255: -17,14
+ 4256: -16,12
+ 4257: -17,12
+ 4258: -17,11
+ 4261: -34,12
+ 4262: -35,12
+ 4263: -34,14
+ 4264: -35,15
+ 4265: -34,16
+ 4266: -34,17
+ 4267: -33,16
+ 4268: -32,15
+ 4269: -31,17
+ 4270: -32,17
+ 4271: -33,16
+ 4272: -34,15
+ 4273: -34,15
+ 4274: -37,14
+ 4275: -38,14
+ 4276: -39,14
+ 4277: -39,12
+ 4278: -39,11
+ 4279: -38,11
+ 4280: -38,11
+ 4281: -27,11
+ 4282: -27,13
+ 4283: -27,16
+ 4284: -27,17
+ 4285: -27,19
+ 4286: -27,20
+ 4287: -27,21
+ 4288: -25,18
+ 4289: -25,16
+ 4290: -25,14
+ 4291: -25,12
+ 4292: -25,11
+ 4293: -24,18
+ 4294: -22,18
+ 4295: -23,17
+ 4296: -21,17
+ 4297: -20,18
+ 4298: -19,17
+ 4299: -20,20
+ 4300: -22,20
+ 4301: -24,20
+ 4302: -20,21
+ 4303: -17,19
+ 4304: -16,19
+ 4305: -14,19
+ 4306: -17,21
+ 4307: -15,21
+ 4308: -13,21
+ 4309: -11,21
+ 4310: -13,19
+ 4311: -10,19
+ 4312: -8,19
+ 4313: -6,19
+ 4314: -9,21
+ 4315: -7,21
+ 4316: -5,21
+ 4317: -3,21
+ 4318: 0,21
+ 4319: -5,19
+ 4320: -2,19
+ 4321: 0,19
+ 4322: 0,21
+ 4323: 2,21
+ 4324: 5,21
+ 4325: 6,21
+ 4326: 2,19
+ 4327: 4,19
+ 4328: 7,19
+ 4329: 10,19
+ 4330: 8,21
+ 4331: 10,21
+ 4332: 11,21
+ 4333: 13,21
+ 4334: 12,19
+ 4335: 14,19
+ 4336: 15,19
+ 4337: 17,19
+ 4338: 15,23
+ 4339: 14,23
+ 4340: 13,24
+ 4341: 15,25
+ 4342: 15,24
+ 4343: 11,23
+ 4344: 10,23
+ 4345: 11,24
+ 4346: 17,23
+ 4347: 17,25
+ 4348: 17,25
+ 4349: 16,23
+ 4350: 18,19
+ 4351: 19,19
+ 4352: 19,21
+ 4353: 17,21
+ 4354: 16,21
+ 4355: 21,20
+ 4356: 21,18
+ 4357: 21,17
+ 4358: 19,18
+ 4359: 19,15
+ 4360: 19,12
+ 4361: 19,11
+ 4362: 21,16
+ 4363: 21,13
+ 4364: 21,12
+ 4365: 21,10
+ 4366: 21,8
+ 4367: 21,7
+ 4368: 19,9
+ 4369: 19,7
+ 4370: 19,6
+ 4371: 23,10
+ 4372: 24,10
+ 4373: 26,10
+ 4374: 27,10
+ 4375: 28,7
+ 4376: 27,8
+ 4377: 27,6
+ 4378: 28,6
+ 4379: 30,6
+ 4380: 30,8
+ 4381: 30,9
+ 4382: 30,10
+ 4383: 33,10
+ 4384: 34,10
+ 4385: 31,12
+ 4386: 31,13
+ 4387: 30,14
+ 4388: 31,17
+ 4389: 30,17
+ 4390: 31,19
+ 4391: 31,20
+ 4392: 31,22
+ 4393: 30,22
+ 4394: 28,22
+ 4395: 29,23
+ 4396: 26,22
+ 4397: 24,22
+ 4398: 23,22
+ 4399: 23,23
+ 4400: 23,20
+ 4401: 23,18
+ 4402: 25,18
+ 4403: 25,17
+ 4404: 26,18
+ 4405: 27,17
+ 4406: 26,19
+ 4407: 27,20
+ 4408: 29,18
+ 4409: 27,18
+ 4410: 30,17
+ 4411: 33,22
+ 4412: 35,22
+ 4413: 33,19
+ 4414: 33,18
+ 4415: 35,18
+ 4416: 36,17
+ 4417: 34,17
+ 4418: 35,17
+ 4419: 33,13
+ 4420: 33,15
+ 4421: 33,15
+ 4422: 32,13
+ 4423: 26,7
+ 4424: 23,2
+ 4425: 26,2
+ 4426: 20,2
+ 4427: 21,2
+ 4428: 19,4
+ 4434: 31,2
+ 4435: 33,2
+ 4436: 33,4
+ 4437: 32,4
+ 4438: 35,4
+ 4439: 37,4
+ 4440: 37,2
+ 4441: 41,4
+ 4442: 42,4
+ 4443: 43,4
+ 4444: 40,2
+ 4445: 41,2
+ 4446: 41,1
+ 4447: 38,2
+ 4448: 43,2
+ 4449: 43,1
+ 4450: 37,-2
+ 4451: 38,-3
+ 4452: 39,-2
+ 4453: 39,-4
+ 4454: 37,-4
+ 4455: 39,-5
+ 4456: 33,-1
+ 4457: 31,-1
+ 4458: 31,0
+ 4459: 33,0
+ 4460: 32,1
+ 4461: 38,7
+ 4462: 42,9
+ 4463: 42,7
+ 4464: 44,9
+ 4465: 44,7
+ 4466: 46,7
+ 4467: 49,6
+ 4468: 49,4
+ 4469: 49,1
+ 4470: 51,1
+ 4471: 51,3
+ 4472: 51,7
+ 4473: 51,9
+ 4474: 51,12
+ 4475: 51,13
+ 4476: 49,13
+ 4477: 49,10
+ 4478: 46,11
+ 4479: 47,13
+ 4480: 44,11
+ 4481: 44,13
+ 4482: 42,12
+ 4483: 43,13
+ 4484: 42,11
+ 4485: 44,12
+ 4486: 54,14
+ 4487: 58,14
+ 4488: 59,14
+ 4489: 60,14
+ 4490: 58,16
+ 4491: 56,10
+ 4492: 55,10
+ 4493: 55,12
+ 4494: 54,12
+ 4495: 53,11
+ 4496: 56,6
+ 4497: 54,6
+ 4498: 53,6
+ 4499: 53,7
+ 4500: 54,3
+ 4501: 53,2
+ 4502: 59,3
+ 4503: 60,4
+ 4504: 59,0
+ 4505: 52,-3
+ 4506: 52,-4
+ 4507: 52,-6
+ 4508: 52,-7
+ 4509: 48,-7
+ 4510: 48,-4
+ 4511: 48,-3
+ 4512: 48,-1
+ 4513: 55,-5
+ 4514: 56,-4
+ 4515: 57,-5
+ 4516: 58,-7
+ 4517: 59,-8
+ 4518: 60,-7
+ 4519: 62,-8
+ 4520: 62,-7
+ 4521: 52,-12
+ 4522: 52,-14
+ 4523: 52,-15
+ 4524: 49,-12
+ 4525: 49,-14
+ 4526: 49,-15
+ 4527: 43,-1
+ 4528: 43,-3
+ 4529: 43,-7
+ 4530: 43,-8
+ 4531: 41,-1
+ 4532: 41,-3
+ 4533: 41,-5
+ 4534: 41,-7
+ 4535: 41,-10
+ 4536: 41,-11
+ 4537: 43,-8
+ 4538: 43,-10
+ 4539: 43,-12
+ 4540: 43,-14
+ 4541: 43,-16
+ 4542: 43,-17
+ 4543: 41,-15
+ 4544: 41,-16
+ 4545: 41,-17
+ 4546: 41,-19
+ 4547: 40,-19
+ 4548: 40,-21
+ 4549: 42,-21
+ 4550: 43,-21
+ 4551: 45,-21
+ 4556: 45,-19
+ 4557: 47,-19
+ 4558: 48,-19
+ 4559: 51,-19
+ 4560: 47,-21
+ 4561: 49,-21
+ 4562: 47,-22
+ 4563: 51,-21
+ 4564: 52,-21
+ 4565: 52,-23
+ 4566: 53,-24
+ 4567: 56,-24
+ 4568: 57,-24
+ 4569: 58,-24
+ 4570: 58,-23
+ 4571: 59,-21
+ 4572: 60,-21
+ 4573: 61,-20
+ 4574: 59,-19
+ 4575: 61,-19
+ 4576: 60,-17
+ 4577: 60,-17
+ 4578: 58,-18
+ 4579: 58,-19
+ 4580: 56,-19
+ 4581: 55,-19
+ 4582: 53,-19
+ 4583: 60,-15
+ 4584: 58,-15
+ 4585: 59,-14
+ 4586: 57,-13
+ 4587: 57,-12
+ 4588: 60,-13
+ 4589: 60,-12
+ 4590: 60,-14
+ 4591: 61,-13
+ 4592: 63,-13
+ 4593: 64,-12
+ 4594: 65,-14
+ 4595: 63,-14
+ 4596: 63,-16
+ 4597: 65,-16
+ 4598: 65,-18
+ 4599: 65,-20
+ 4600: 63,-18
+ 4601: 63,-20
+ 4602: 63,-21
+ 4603: 65,-21
+ 4604: 62,-23
+ 4605: 61,-24
+ 4606: 64,-24
+ 4607: 63,-25
+ 4608: 64,-26
+ 4609: 65,-27
+ 4610: 66,-26
+ 4611: 65,-24
+ 4612: 65,-23
+ 4613: 65,-23
+ 4617: 68,-21
+ 4618: 69,-21
+ 4619: 69,-23
+ 4620: 69,-24
+ 4622: 69,-27
+ 4623: 70,-26
+ 4624: 70,-26
+ 4625: 71,-27
+ 4626: 71,-28
+ 4627: 70,-28
+ 4628: 68,-28
+ 4629: 69,-29
+ 4630: 70,-30
+ 4631: 69,-30
+ 4632: 70,-29
+ 4633: 70,-29
+ 4634: 70,-29
+ 4635: 71,-30
+ 4636: 71,-17
+ 4637: 68,-17
+ 4638: 67,-19
+ 4639: 70,-17
+ 4640: 70,-19
+ 4641: 71,-18
+ 4642: 68,-18
+ 4643: 69,-19
+ 4663: 69,-9
+ 4664: 68,-9
+ 4665: 67,-9
+ 4666: 70,-10
+ 4667: 77,-18
+ 4668: 75,-18
+ 4669: 76,-19
4670: 77,-18
- 4671: 75,-18
- 4672: 76,-19
- 4673: 77,-18
- 4674: 76,-17
- 4675: 76,-15
- 4676: 75,-15
- 4677: 76,-13
- 4678: 77,-14
- 4679: 74,-14
- 4680: 74,-16
- 4681: 73,-14
- 4682: 74,-17
- 4683: 74,-18
- 4684: 72,-17
- 4685: 73,-19
- 4686: 73,-17
- 4687: 74,-16
- 4688: 73,-15
- 4689: 74,-16
- 4690: 74,-15
- 4691: 76,-18
+ 4671: 76,-17
+ 4672: 76,-15
+ 4673: 75,-15
+ 4674: 76,-13
+ 4675: 77,-14
+ 4676: 74,-14
+ 4677: 74,-16
+ 4678: 73,-14
+ 4679: 74,-17
+ 4680: 74,-18
+ 4681: 72,-17
+ 4682: 73,-19
+ 4683: 73,-17
+ 4684: 74,-16
+ 4685: 73,-15
+ 4686: 74,-16
+ 4687: 74,-15
+ 4688: 76,-18
+ 4689: 79,-14
+ 4690: 80,-13
+ 4691: 81,-14
4692: 79,-14
- 4693: 80,-13
- 4694: 81,-14
- 4695: 79,-14
- 4696: 80,-15
- 4697: 81,-13
+ 4693: 80,-15
+ 4694: 81,-13
+ 4695: 80,-19
+ 4696: 79,-18
+ 4697: 80,-18
4698: 80,-19
- 4699: 79,-18
- 4700: 80,-18
- 4701: 80,-19
- 4702: 79,-19
- 4703: 80,-19
- 4704: 81,-19
- 4705: 80,-17
- 4706: 80,-18
- 4707: 79,-19
- 4708: 52,-13
- 4709: 52,-12
- 4710: 52,-14
- 4711: 52,-14
- 4712: 49,-13
- 4713: 49,-14
- 4714: 50,-13
- 4715: 51,-14
- 4716: 50,-13
- 4717: 51,-13
- 4718: 50,-14
- 4719: 50,-14
- 4720: 48,-13
- 4721: 48,-14
- 4722: 48,-13
- 4723: 53,-13
- 4724: 53,-14
- 4725: 53,-12
- 4726: 53,-14
- 4727: 53,-13
- 4728: 53,-14
- 4729: 50,-15
- 4730: 51,-15
- 4731: 50,-14
- 4732: 51,-13
- 4733: 50,-12
+ 4699: 79,-19
+ 4700: 80,-19
+ 4701: 81,-19
+ 4702: 80,-17
+ 4703: 80,-18
+ 4704: 79,-19
+ 4705: 52,-13
+ 4706: 52,-12
+ 4707: 52,-14
+ 4708: 52,-14
+ 4709: 49,-13
+ 4710: 49,-14
+ 4711: 50,-13
+ 4712: 51,-14
+ 4713: 50,-13
+ 4714: 51,-13
+ 4715: 50,-14
+ 4716: 50,-14
+ 4717: 48,-13
+ 4718: 48,-14
+ 4719: 48,-13
+ 4720: 53,-13
+ 4721: 53,-14
+ 4722: 53,-12
+ 4723: 53,-14
+ 4724: 53,-13
+ 4725: 53,-14
+ 4726: 50,-15
+ 4727: 51,-15
+ 4728: 50,-14
+ 4729: 51,-13
+ 4730: 50,-12
+ 4731: 50,-12
+ 4732: 48,-12
+ 4733: 49,-14
4734: 50,-12
- 4735: 48,-12
- 4736: 49,-14
- 4737: 50,-12
- 4738: 51,-13
- 4744: 47,-24
+ 4735: 51,-13
+ 4741: 47,-24
+ 4742: 49,-25
+ 4743: 48,-26
+ 4744: 47,-25
4745: 49,-25
- 4746: 48,-26
- 4747: 47,-25
- 4748: 49,-25
- 4749: 48,-23
- 4750: 47,-28
- 4751: 49,-29
- 4752: 47,-30
- 4753: 48,-32
- 4754: 49,-31
- 4755: 48,-33
- 4756: 47,-33
- 4757: 49,-33
- 4758: 48,-34
- 4759: 47,-34
- 4760: 43,-36
- 4761: 40,-36
- 4762: 37,-35
- 4763: 36,-35
- 4764: 37,-36
- 4765: 40,-36
+ 4746: 48,-23
+ 4747: 47,-28
+ 4748: 49,-29
+ 4749: 47,-30
+ 4750: 48,-32
+ 4751: 49,-31
+ 4752: 48,-33
+ 4753: 47,-33
+ 4754: 49,-33
+ 4755: 48,-34
+ 4756: 47,-34
+ 4757: 43,-36
+ 4758: 40,-36
+ 4759: 37,-35
+ 4760: 36,-35
+ 4761: 37,-36
+ 4762: 40,-36
+ 4763: 43,-35
+ 4764: 43,-35
+ 4765: 41,-35
4766: 43,-35
- 4767: 43,-35
- 4768: 41,-35
- 4769: 43,-35
- 4770: 43,-34
- 4796: 33,-34
- 4797: 31,-34
- 4798: 33,-32
- 4799: 32,-32
- 4800: 32,-31
- 4801: 32,-30
- 4802: 33,-28
- 4803: 31,-29
- 4804: 33,-31
- 4805: 33,-31
- 4806: 35,-30
- 4807: 36,-30
- 4808: 36,-29
- 4809: 33,-25
- 4810: 31,-25
- 4811: 33,-25
+ 4767: 43,-34
+ 4793: 33,-34
+ 4794: 31,-34
+ 4795: 33,-32
+ 4796: 32,-32
+ 4797: 32,-31
+ 4798: 32,-30
+ 4799: 33,-28
+ 4800: 31,-29
+ 4801: 33,-31
+ 4802: 33,-31
+ 4803: 35,-30
+ 4804: 36,-30
+ 4805: 36,-29
+ 4806: 33,-25
+ 4807: 31,-25
+ 4808: 33,-25
+ 4809: 31,-25
+ 4810: 33,-25
+ 4811: 32,-26
4812: 31,-25
- 4813: 33,-25
- 4814: 32,-26
- 4815: 31,-25
- 4816: 32,-24
- 4817: 32,-25
- 4818: 31,-24
- 4819: 40,-25
- 4820: 39,-24
- 4821: 40,-26
+ 4813: 32,-24
+ 4814: 32,-25
+ 4815: 31,-24
+ 4816: 40,-25
+ 4817: 39,-24
+ 4818: 40,-26
+ 4819: 42,-25
+ 4820: 42,-25
+ 4821: 44,-24
4822: 42,-25
- 4823: 42,-25
- 4824: 44,-24
- 4825: 42,-25
- 4826: 44,-25
- 4827: 45,-25
- 4828: 42,-26
- 4829: 43,-25
- 4830: 43,-25
- 4831: 41,-25
- 4832: 40,-25
- 4833: 40,-25
- 4834: 40,-24
+ 4823: 44,-25
+ 4824: 45,-25
+ 4825: 42,-26
+ 4826: 43,-25
+ 4827: 43,-25
+ 4828: 41,-25
+ 4829: 40,-25
+ 4830: 40,-25
+ 4831: 40,-24
+ 4832: 35,-23
+ 4833: 37,-23
+ 4834: 36,-23
4835: 35,-23
- 4836: 37,-23
- 4837: 36,-23
- 4838: 35,-23
- 4839: 38,-21
- 4840: 35,-21
- 4841: 33,-21
- 4842: 33,-22
- 4843: 32,-22
- 4844: 32,-21
- 4845: 37,-19
- 4846: 34,-19
- 4847: 32,-19
- 4848: 31,-19
- 4849: 28,-19
- 4850: 27,-19
- 4851: 27,-20
- 4852: 27,-21
- 4853: 30,-21
- 4854: 29,-21
- 4855: 29,-23
- 4856: 29,-24
- 4857: 29,-25
- 4858: 29,-26
- 4859: 27,-22
- 4860: 27,-24
- 4861: 27,-25
- 4862: 26,-25
- 4863: 25,-25
- 4864: 29,-27
- 4865: 27,-27
- 4866: 25,-27
- 4867: 24,-27
- 4868: 21,-27
- 4869: 21,-25
- 4870: 20,-25
- 4871: 19,-25
- 4872: 19,-26
- 4873: 19,-28
- 4874: 19,-28
- 4875: 19,-30
- 4876: 19,-31
- 4877: 19,-32
- 4878: 21,-30
- 4879: 21,-33
- 4880: 21,-34
- 4881: 21,-34
- 4882: 19,-34
- 4883: 20,-36
- 4884: 20,-37
- 4885: 19,-37
- 4886: 20,-39
- 4887: 21,-38
- 4888: 22,-39
- 4889: 21,-37
- 4890: 24,-37
- 4891: 23,-38
- 4892: 25,-37
- 4893: 25,-38
- 4894: 24,-38
- 4895: 25,-38
- 4896: 17,-34
- 4897: 17,-35
- 4898: 16,-34
- 4899: 14,-34
- 4900: 17,-32
- 4901: 15,-32
- 4902: 13,-32
- 4903: 11,-32
- 4904: 10,-32
- 4905: 12,-34
- 4906: 9,-34
- 4907: 8,-34
- 4908: 7,-34
- 4909: 7,-32
- 4910: 7,-32
- 4911: 6,-32
- 4912: 9,-30
- 4913: 8,-29
- 4914: 7,-29
- 4915: 7,-29
- 4916: 6,-28
- 4917: 8,-27
- 4918: 9,-27
- 4919: 7,-28
- 4920: 6,-27
- 4921: 5,-29
- 4922: 7,-30
- 4923: 9,-30
- 4924: 3,-30
- 4925: 1,-30
- 4926: 3,-32
- 4927: 2,-32
- 4928: 2,-33
- 4929: 0,-33
- 4930: -1,-33
- 4931: -1,-32
- 4932: 0,-30
- 4933: -3,-30
- 4934: -4,-30
- 4935: -6,-30
- 4936: -7,-30
- 4937: -9,-30
- 4938: -6,-32
- 4939: -5,-32
- 4940: -3,-32
- 4941: -8,-32
- 4942: -8,-33
- 4943: -9,-32
- 4944: -10,-32
- 4945: -11,-32
- 4946: -13,-32
- 4947: -10,-30
- 4948: -11,-30
- 4949: -13,-30
- 4950: -15,-30
- 4951: -16,-30
- 4952: -12,-29
- 4953: -12,-30
- 4954: -16,-32
- 4955: -17,-33
- 4956: -17,-32
- 4957: -19,-32
- 4958: -18,-30
- 4959: -20,-30
- 4960: -22,-30
- 4961: -23,-30
- 4962: -23,-29
- 4963: -22,-32
- 4964: -24,-32
- 4965: -24,-32
- 4966: -26,-30
- 4967: -26,-29
- 4968: -26,-27
- 4969: -26,-25
- 4970: -24,-27
- 4971: -24,-26
- 4972: -24,-25
- 4973: -24,-24
- 4974: -26,-23
- 4975: -26,-22
- 4976: -26,-20
- 4977: -24,-21
- 4978: -24,-19
- 4979: -24,-18
- 4980: -24,-16
- 4981: -26,-17
- 4982: -26,-16
- 4983: -26,-14
- 4984: -26,-13
- 4985: -26,-12
- 4986: -26,-10
- 4987: -26,-9
- 4988: -25,-9
- 4989: -24,-11
- 4990: -23,-11
- 4991: -23,-10
- 4992: -23,-9
- 4993: -24,-5
- 4994: -24,-4
- 4995: -24,-2
- 4996: -19,-11
- 4997: -19,-10
- 4998: -20,-10
- 4999: -20,-9
- 5000: -19,-9
- 5001: -30,-21
- 5002: -30,-19
- 5003: -29,-19
- 5004: -30,-18
- 5005: -32,-21
- 5006: -32,-19
- 5007: -33,-18
- 5008: -34,-18
- 5009: -36,-15
- 5010: -36,-14
- 5011: -33,-14
- 5012: -33,-14
- 5013: -33,-15
- 5014: -30,-14
- 5015: -33,-10
- 5016: -34,-10
- 5017: -36,-10
- 5018: -37,-9
- 5019: -37,-10
- 5020: -32,-9
- 5021: -34,-9
- 5022: -29,-10
- 5023: -30,-11
- 5024: -30,-9
- 5025: -28,-10
- 5026: -40,-11
+ 4836: 38,-21
+ 4837: 35,-21
+ 4838: 33,-21
+ 4839: 33,-22
+ 4840: 32,-22
+ 4841: 32,-21
+ 4842: 37,-19
+ 4843: 34,-19
+ 4844: 32,-19
+ 4845: 31,-19
+ 4846: 28,-19
+ 4847: 27,-19
+ 4848: 27,-20
+ 4849: 27,-21
+ 4850: 30,-21
+ 4851: 29,-21
+ 4852: 29,-23
+ 4853: 29,-24
+ 4854: 29,-25
+ 4855: 29,-26
+ 4856: 27,-22
+ 4857: 27,-24
+ 4858: 27,-25
+ 4859: 26,-25
+ 4860: 25,-25
+ 4861: 29,-27
+ 4862: 27,-27
+ 4863: 25,-27
+ 4864: 24,-27
+ 4865: 21,-27
+ 4866: 21,-25
+ 4867: 20,-25
+ 4868: 19,-25
+ 4869: 19,-26
+ 4870: 19,-28
+ 4871: 19,-28
+ 4872: 19,-30
+ 4873: 19,-31
+ 4874: 19,-32
+ 4875: 21,-30
+ 4876: 21,-33
+ 4877: 21,-34
+ 4878: 21,-34
+ 4879: 19,-34
+ 4880: 20,-36
+ 4881: 20,-37
+ 4882: 19,-37
+ 4883: 20,-39
+ 4884: 21,-38
+ 4885: 22,-39
+ 4886: 21,-37
+ 4887: 24,-37
+ 4888: 23,-38
+ 4889: 25,-37
+ 4890: 25,-38
+ 4891: 24,-38
+ 4892: 25,-38
+ 4893: 17,-34
+ 4894: 17,-35
+ 4895: 16,-34
+ 4896: 14,-34
+ 4897: 17,-32
+ 4898: 15,-32
+ 4899: 13,-32
+ 4900: 11,-32
+ 4901: 10,-32
+ 4902: 12,-34
+ 4903: 9,-34
+ 4904: 8,-34
+ 4905: 7,-34
+ 4906: 7,-32
+ 4907: 7,-32
+ 4908: 6,-32
+ 4909: 9,-30
+ 4910: 8,-29
+ 4911: 7,-29
+ 4912: 7,-29
+ 4913: 6,-28
+ 4914: 8,-27
+ 4915: 9,-27
+ 4916: 7,-28
+ 4917: 6,-27
+ 4918: 5,-29
+ 4919: 7,-30
+ 4920: 9,-30
+ 4921: 3,-30
+ 4922: 1,-30
+ 4923: 3,-32
+ 4924: 2,-32
+ 4925: 2,-33
+ 4926: 0,-33
+ 4927: -1,-33
+ 4928: -1,-32
+ 4929: 0,-30
+ 4930: -3,-30
+ 4931: -4,-30
+ 4932: -6,-30
+ 4933: -7,-30
+ 4934: -9,-30
+ 4935: -6,-32
+ 4936: -5,-32
+ 4937: -3,-32
+ 4938: -8,-32
+ 4939: -8,-33
+ 4940: -9,-32
+ 4941: -10,-32
+ 4942: -11,-32
+ 4943: -13,-32
+ 4944: -10,-30
+ 4945: -11,-30
+ 4946: -13,-30
+ 4947: -15,-30
+ 4948: -16,-30
+ 4949: -12,-29
+ 4950: -12,-30
+ 4951: -16,-32
+ 4952: -17,-33
+ 4953: -17,-32
+ 4954: -19,-32
+ 4955: -18,-30
+ 4956: -20,-30
+ 4957: -22,-30
+ 4958: -23,-30
+ 4959: -23,-29
+ 4960: -22,-32
+ 4961: -24,-32
+ 4962: -24,-32
+ 4963: -26,-30
+ 4964: -26,-29
+ 4965: -26,-27
+ 4966: -26,-25
+ 4967: -24,-27
+ 4968: -24,-26
+ 4969: -24,-25
+ 4970: -24,-24
+ 4971: -26,-23
+ 4972: -26,-22
+ 4973: -26,-20
+ 4974: -24,-21
+ 4975: -24,-19
+ 4976: -24,-18
+ 4977: -24,-16
+ 4978: -26,-17
+ 4979: -26,-16
+ 4980: -26,-14
+ 4981: -26,-13
+ 4982: -26,-12
+ 4983: -26,-10
+ 4984: -26,-9
+ 4985: -25,-9
+ 4986: -24,-11
+ 4987: -23,-11
+ 4988: -23,-10
+ 4989: -23,-9
+ 4990: -24,-5
+ 4991: -24,-4
+ 4992: -24,-2
+ 4993: -19,-11
+ 4994: -19,-10
+ 4995: -20,-10
+ 4996: -20,-9
+ 4997: -19,-9
+ 4998: -30,-21
+ 4999: -30,-19
+ 5000: -29,-19
+ 5001: -30,-18
+ 5002: -32,-21
+ 5003: -32,-19
+ 5004: -33,-18
+ 5005: -34,-18
+ 5006: -36,-15
+ 5007: -36,-14
+ 5008: -33,-14
+ 5009: -33,-14
+ 5010: -33,-15
+ 5011: -30,-14
+ 5012: -33,-10
+ 5013: -34,-10
+ 5014: -36,-10
+ 5015: -37,-9
+ 5016: -37,-10
+ 5017: -32,-9
+ 5018: -34,-9
+ 5019: -29,-10
+ 5020: -30,-11
+ 5021: -30,-9
+ 5022: -28,-10
+ 5023: -40,-11
+ 5024: -41,-10
+ 5025: -41,-9
+ 5026: -40,-9
5027: -41,-10
- 5028: -41,-9
- 5029: -40,-9
- 5030: -41,-10
- 5031: -41,-10
- 5032: -49,-18
- 5033: -38,-33
- 5034: -36,-33
- 5035: -33,-33
- 5036: -32,-33
- 5037: -31,-33
- 5038: -31,-31
- 5039: -31,-29
- 5040: -31,-28
- 5041: -31,-26
- 5042: -33,-26
- 5043: -35,-26
- 5044: -36,-26
- 5045: -37,-26
- 5046: -38,-26
- 5047: -38,-27
+ 5028: -41,-10
+ 5029: -49,-18
+ 5030: -38,-33
+ 5031: -36,-33
+ 5032: -33,-33
+ 5033: -32,-33
+ 5034: -31,-33
+ 5035: -31,-31
+ 5036: -31,-29
+ 5037: -31,-28
+ 5038: -31,-26
+ 5039: -33,-26
+ 5040: -35,-26
+ 5041: -36,-26
+ 5042: -37,-26
+ 5043: -38,-26
+ 5044: -38,-27
+ 5045: -38,-29
+ 5046: -38,-30
+ 5047: -38,-31
5048: -38,-29
- 5049: -38,-30
- 5050: -38,-31
- 5051: -38,-29
- 5052: -38,-26
- 5053: -40,-26
- 5054: -40,-25
- 5055: -41,-25
- 5056: -41,-26
- 5057: -41,-28
- 5058: -41,-29
- 5059: -41,-30
- 5060: -41,-32
- 5061: -41,-33
- 5062: -41,-34
- 5063: -39,-33
- 5064: -40,-34
- 5065: -35,-34
- 5066: -34,-34
- 5067: -32,-34
- 5068: -31,-34
- 5069: -30,-34
- 5070: -30,-33
- 5071: -28,-34
- 5072: -28,-32
- 5073: -28,-31
- 5074: -28,-29
- 5075: -28,-27
- 5076: -28,-26
- 5077: -29,-25
- 5078: -30,-25
- 5079: -30,-26
- 5080: -32,-25
- 5081: -33,-26
- 5082: -35,-25
- 5083: -32,6
- 5084: -32,7
- 5085: -32,6
- 5086: -36,6
- 5087: -36,5
- 5088: -36,7
- 5089: -34,6
- 5090: -34,5
- 5091: -35,6
- 5092: -33,6
- 5093: -35,-4
- 5094: -35,-2
- 5095: -36,-5
- 5096: -35,-2
- 5097: -34,-2
- 5098: -35,-1
- 5110: -25,28
- 5111: -26,28
+ 5049: -38,-26
+ 5050: -40,-26
+ 5051: -40,-25
+ 5052: -41,-25
+ 5053: -41,-26
+ 5054: -41,-28
+ 5055: -41,-29
+ 5056: -41,-30
+ 5057: -41,-32
+ 5058: -41,-33
+ 5059: -41,-34
+ 5060: -39,-33
+ 5061: -40,-34
+ 5062: -35,-34
+ 5063: -34,-34
+ 5064: -32,-34
+ 5065: -31,-34
+ 5066: -30,-34
+ 5067: -30,-33
+ 5068: -28,-34
+ 5069: -28,-32
+ 5070: -28,-31
+ 5071: -28,-29
+ 5072: -28,-27
+ 5073: -28,-26
+ 5074: -29,-25
+ 5075: -30,-25
+ 5076: -30,-26
+ 5077: -32,-25
+ 5078: -33,-26
+ 5079: -35,-25
+ 5080: -32,6
+ 5081: -32,7
+ 5082: -32,6
+ 5083: -36,6
+ 5084: -36,5
+ 5085: -36,7
+ 5086: -34,6
+ 5087: -34,5
+ 5088: -35,6
+ 5089: -33,6
+ 5090: -35,-4
+ 5091: -35,-2
+ 5092: -36,-5
+ 5093: -35,-2
+ 5094: -34,-2
+ 5095: -35,-1
+ 5107: -25,28
+ 5108: -26,28
+ 5109: -18,32
+ 5110: -17,31
+ 5111: -17,33
5112: -18,32
- 5113: -17,31
- 5114: -17,33
- 5115: -18,32
- 5116: -15,34
- 5117: -15,32
- 5118: -15,31
- 5119: -13,31
- 5120: -12,31
- 5121: -15,34
- 5122: -15,34
- 5123: -12,39
- 5124: -13,40
- 5125: -14,40
- 5126: -15,40
- 5127: -16,40
- 5128: -16,40
- 5129: -13,40
- 5130: -12,40
- 5131: -12,38
- 5132: -12,40
- 5138: -5,40
- 5139: -6,40
- 5140: -6,42
- 5141: -6,43
- 5142: -5,42
- 5143: -6,43
- 5144: -6,45
- 5145: -6,46
- 5146: -6,47
- 5147: -5,46
- 5148: -4,48
- 5149: -5,46
- 5150: -2,48
- 5151: -4,46
- 5152: -1,47
- 5153: -3,45
- 5154: 0,46
- 5155: -3,47
- 5156: -1,45
- 5157: -3,46
- 5158: 1,45
- 5159: 1,47
- 5160: 0,46
- 5161: 1,48
- 5162: 2,48
- 5163: 3,47
- 5164: 2,45
- 5165: 2,44
- 5166: 2,43
- 5167: 2,42
- 5168: 1,42
- 5169: 3,42
- 5170: -1,42
- 5171: -2,43
- 5172: -2,42
- 5173: -1,41
- 5174: -3,40
- 5175: -3,40
- 5176: -3,42
- 5177: 1,51
- 5178: -2,50
- 5179: -3,50
+ 5113: -15,34
+ 5114: -15,32
+ 5115: -15,31
+ 5116: -13,31
+ 5117: -12,31
+ 5118: -15,34
+ 5119: -15,34
+ 5120: -12,39
+ 5121: -13,40
+ 5122: -14,40
+ 5123: -15,40
+ 5124: -16,40
+ 5125: -16,40
+ 5126: -13,40
+ 5127: -12,40
+ 5128: -12,38
+ 5129: -12,40
+ 5135: -5,40
+ 5136: -6,40
+ 5137: -6,42
+ 5138: -6,43
+ 5139: -5,42
+ 5140: -6,43
+ 5141: -6,45
+ 5142: -6,46
+ 5143: -6,47
+ 5144: -5,46
+ 5145: -4,48
+ 5146: -5,46
+ 5147: -2,48
+ 5148: -4,46
+ 5149: -1,47
+ 5150: -3,45
+ 5151: 0,46
+ 5152: -3,47
+ 5153: -1,45
+ 5154: -3,46
+ 5155: 1,45
+ 5156: 1,47
+ 5157: 0,46
+ 5158: 1,48
+ 5159: 2,48
+ 5160: 3,47
+ 5161: 2,45
+ 5162: 2,44
+ 5163: 2,43
+ 5164: 2,42
+ 5165: 1,42
+ 5166: 3,42
+ 5167: -1,42
+ 5168: -2,43
+ 5169: -2,42
+ 5170: -1,41
+ 5171: -3,40
+ 5172: -3,40
+ 5173: -3,42
+ 5174: 1,51
+ 5175: -2,50
+ 5176: -3,50
+ 5177: -2,51
+ 5178: 0,51
+ 5179: -1,52
5180: -2,51
- 5181: 0,51
- 5182: -1,52
- 5183: -2,51
- 5184: -2,53
- 5185: 1,53
- 5186: 2,51
- 5187: 2,50
- 5188: 0,50
- 5189: -4,45
- 5190: -4,47
- 5217: 6,42
- 5218: 5,41
- 5219: 5,39
- 5220: 7,39
- 5221: 8,39
- 5222: 9,41
- 5223: 9,40
- 5224: 8,42
- 5225: 8,41
- 5226: 15,37
- 5227: 14,37
- 5228: 14,35
- 5229: 14,34
- 5230: 13,35
- 5231: 13,36
+ 5181: -2,53
+ 5182: 1,53
+ 5183: 2,51
+ 5184: 2,50
+ 5185: 0,50
+ 5186: -4,45
+ 5187: -4,47
+ 5214: 6,42
+ 5215: 5,41
+ 5216: 5,39
+ 5217: 7,39
+ 5218: 8,39
+ 5219: 9,41
+ 5220: 9,40
+ 5221: 8,42
+ 5222: 8,41
+ 5223: 15,37
+ 5224: 14,37
+ 5225: 14,35
+ 5226: 14,34
+ 5227: 13,35
+ 5228: 13,36
+ 5229: 15,34
+ 5230: 16,35
+ 5231: 15,36
5232: 15,34
- 5233: 16,35
- 5234: 15,36
- 5235: 15,34
- 5236: 15,35
- 5237: 15,37
- 5238: 14,37
- 5239: 15,30
+ 5233: 15,35
+ 5234: 15,37
+ 5235: 14,37
+ 5236: 15,30
+ 5237: 14,29
+ 5238: 14,29
+ 5239: 15,28
5240: 14,29
- 5241: 14,29
- 5242: 15,28
- 5243: 14,29
- 5244: 14,32
- 5245: 13,32
- 5246: 15,24
- 5270: 2,24
- 5271: 1,24
- 5272: 1,24
- 5273: 2,23
- 5274: 4,23
- 5275: 4,24
- 5276: 3,26
- 5277: 4,28
- 5278: 2,27
- 5279: 2,27
- 5280: 3,27
- 5281: -2,25
- 5282: -3,25
- 5283: -3,23
- 5284: -2,24
- 5285: -4,23
- 5286: -4,25
- 5326: -14,28
- 5327: -15,28
- 5328: -15,27
- 5329: -14,29
- 5330: -13,26
- 5331: -12,27
- 5332: -10,26
- 5333: -9,27
- 5334: -10,28
- 5335: -7,28
- 5336: -8,26
- 5337: -5,28
- 5338: -7,24
- 5339: -8,24
+ 5241: 14,32
+ 5242: 13,32
+ 5243: 15,24
+ 5267: 2,24
+ 5268: 1,24
+ 5269: 1,24
+ 5270: 2,23
+ 5271: 4,23
+ 5272: 4,24
+ 5273: 3,26
+ 5274: 4,28
+ 5275: 2,27
+ 5276: 2,27
+ 5277: 3,27
+ 5278: -2,25
+ 5279: -3,25
+ 5280: -3,23
+ 5281: -2,24
+ 5282: -4,23
+ 5283: -4,25
+ 5323: -14,28
+ 5324: -15,28
+ 5325: -15,27
+ 5326: -14,29
+ 5327: -13,26
+ 5328: -12,27
+ 5329: -10,26
+ 5330: -9,27
+ 5331: -10,28
+ 5332: -7,28
+ 5333: -8,26
+ 5334: -5,28
+ 5335: -7,24
+ 5336: -8,24
+ 5337: -7,23
+ 5338: -6,24
+ 5339: -6,23
5340: -7,23
- 5341: -6,24
- 5342: -6,23
- 5343: -7,23
- 5344: -8,23
- 5345: -8,23
- 5346: -12,23
- 5347: -11,24
- 5348: -10,23
- 5349: -10,24
- 5350: -10,24
- 5351: -12,24
- 5352: -12,24
+ 5341: -8,23
+ 5342: -8,23
+ 5343: -12,23
+ 5344: -11,24
+ 5345: -10,23
+ 5346: -10,24
+ 5347: -10,24
+ 5348: -12,24
+ 5349: -12,24
+ 5350: -14,24
+ 5351: -14,23
+ 5352: -16,24
5353: -14,24
- 5354: -14,23
+ 5354: -15,23
5355: -16,24
- 5356: -14,24
- 5357: -15,23
- 5358: -16,24
- 5359: -14,25
- 5360: -10,25
- 5361: -7,25
- 5362: -1,28
- 5363: -3,27
- 5364: -1,30
- 5365: -1,33
- 5366: -1,34
+ 5356: -14,25
+ 5357: -10,25
+ 5358: -7,25
+ 5359: -1,28
+ 5360: -3,27
+ 5361: -1,30
+ 5362: -1,33
+ 5363: -1,34
+ 5364: -1,37
+ 5365: -3,37
+ 5366: -3,38
5367: -1,37
- 5368: -3,37
- 5369: -3,38
- 5370: -1,37
- 5371: -2,37
- 5372: -1,40
- 5373: -3,41
- 5374: -2,42
- 5375: -3,43
- 5376: -2,43
- 5377: -20,25
- 5378: -21,25
- 5379: -19,25
- 5380: -21,25
- 5381: -22,17
- 5382: -23,17
- 5383: -22,5
- 5384: -22,5
- 5385: -22,5
- 5386: -19,-28
- 5387: -16,-28
- 5388: -16,-27
+ 5368: -2,37
+ 5369: -1,40
+ 5370: -3,41
+ 5371: -2,42
+ 5372: -3,43
+ 5373: -2,43
+ 5374: -20,25
+ 5375: -21,25
+ 5376: -19,25
+ 5377: -21,25
+ 5378: -22,17
+ 5379: -23,17
+ 5380: -22,5
+ 5381: -22,5
+ 5382: -22,5
+ 5383: -19,-28
+ 5384: -16,-28
+ 5385: -16,-27
+ 5386: -15,-28
+ 5387: -16,-26
+ 5388: -15,-27
5389: -15,-28
- 5390: -16,-26
- 5391: -15,-27
- 5392: -15,-28
- 5393: -15,-26
- 5394: -15,-26
- 5395: -14,-26
- 5406: -25,-34
- 5407: -23,-34
- 5408: -22,-34
- 5409: -21,-34
- 5410: -20,-34
- 5411: -20,-37
- 5412: -20,-36
- 5413: -19,-38
- 5414: -19,-36
- 5415: -22,-37
- 5416: -23,-37
- 5417: -23,-38
- 5418: -23,-36
- 5419: -24,-37
- 5420: -26,-37
- 5421: -26,-36
- 5422: -26,-37
- 5423: -28,-40
- 5424: -27,-40
- 5425: -25,-40
- 5426: -24,-40
- 5427: -23,-40
- 5428: -21,-40
- 5429: -19,-40
- 5430: -21,-40
- 5431: -24,-40
- 5432: -26,-40
- 5433: -32,-40
- 5434: -31,-40
- 5435: -33,-39
- 5436: -33,-40
- 5437: -32,-39
- 5438: -31,-39
- 5439: -34,-39
- 5440: -33,-40
- 5441: -39,-38
- 5442: -38,-38
- 5443: -29,-46
- 5444: -30,-45
- 5445: -30,-45
- 5446: -30,-44
- 5447: -28,-45
- 5448: -28,-44
- 5449: -29,-45
- 5450: -30,-45
- 5451: -28,-45
- 5452: -30,-44
- 5453: -29,-45
- 5454: -38,-53
- 5455: -38,-54
- 5456: -37,-53
- 5457: -37,-54
- 5458: -14,-39
- 5459: -13,-38
+ 5390: -15,-26
+ 5391: -15,-26
+ 5392: -14,-26
+ 5403: -25,-34
+ 5404: -23,-34
+ 5405: -22,-34
+ 5406: -21,-34
+ 5407: -20,-34
+ 5408: -20,-37
+ 5409: -20,-36
+ 5410: -19,-38
+ 5411: -19,-36
+ 5412: -22,-37
+ 5413: -23,-37
+ 5414: -23,-38
+ 5415: -23,-36
+ 5416: -24,-37
+ 5417: -26,-37
+ 5418: -26,-36
+ 5419: -26,-37
+ 5420: -28,-40
+ 5421: -27,-40
+ 5422: -25,-40
+ 5423: -24,-40
+ 5424: -23,-40
+ 5425: -21,-40
+ 5426: -19,-40
+ 5427: -21,-40
+ 5428: -24,-40
+ 5429: -26,-40
+ 5430: -32,-40
+ 5431: -31,-40
+ 5432: -33,-39
+ 5433: -33,-40
+ 5434: -32,-39
+ 5435: -31,-39
+ 5436: -34,-39
+ 5437: -33,-40
+ 5438: -39,-38
+ 5439: -38,-38
+ 5440: -29,-46
+ 5441: -30,-45
+ 5442: -30,-45
+ 5443: -30,-44
+ 5444: -28,-45
+ 5445: -28,-44
+ 5446: -29,-45
+ 5447: -30,-45
+ 5448: -28,-45
+ 5449: -30,-44
+ 5450: -29,-45
+ 5451: -38,-53
+ 5452: -38,-54
+ 5453: -37,-53
+ 5454: -37,-54
+ 5455: -14,-39
+ 5456: -13,-38
+ 5457: -13,-39
+ 5458: -13,-40
+ 5459: -13,-41
5460: -13,-39
5461: -13,-40
5462: -13,-41
5463: -13,-39
5464: -13,-40
- 5465: -13,-41
- 5466: -13,-39
- 5467: -13,-40
- 5468: -13,-39
- 5469: -13,-40
- 5472: -5,-41
- 5473: -5,-40
- 5474: -6,-42
- 5475: -5,-36
- 5476: -6,-36
- 5477: -4,-35
- 5478: -4,-36
- 5479: 0,-36
- 5480: -2,-36
- 5481: 1,-35
- 5482: 1,-37
- 5483: 1,-38
- 5484: 2,-37
- 5485: 2,-38
- 5486: 0,-37
- 5487: 3,-37
- 5488: -1,-36
- 5492: -6,-28
- 5493: -6,-27
- 5494: -5,-27
- 5495: -6,-26
- 5496: -2,-27
- 5497: -3,-26
- 5498: -2,-28
- 5499: -1,-27
- 5500: 0,-27
- 5501: 0,-27
- 5502: -2,-27
- 5503: -2,-27
- 5504: 0,-24
- 5505: -2,-24
- 5506: -2,-23
- 5507: 0,-22
- 5508: 1,-22
- 5509: 1,-21
- 5510: -4,-19
- 5511: -5,-19
- 5512: -7,-19
- 5513: -9,-19
- 5514: -6,-19
- 5515: -7,-17
- 5516: -8,-17
- 5517: -9,-16
- 5518: -9,-16
- 5519: -5,-16
- 5520: -4,-14
- 5521: -5,-15
- 5522: -8,-16
- 5523: -8,-15
- 5524: -14,-14
- 5525: -12,-14
- 5526: -12,-16
- 5527: -13,-18
- 5528: -14,-16
- 5529: -13,-16
- 5530: -13,-19
- 5531: -14,-19
- 5532: -2,-17
- 5533: -2,-15
- 5534: -2,-13
- 5535: -2,-12
- 5536: -1,-15
- 5537: -1,-16
- 5538: -1,-17
- 5539: 1,-17
- 5540: -1,-18
- 5541: 2,-18
- 5542: 2,-16
- 5543: 2,-15
- 5544: 2,-13
- 5545: 1,-12
- 5546: 1,-14
- 5547: -1,-13
- 5548: 0,-14
- 5549: 2,-16
- 5550: -4,-14
- 5551: -7,-24
- 5552: -7,-22
- 5553: -8,-23
- 5554: -10,-23
- 5555: -9,-23
- 5556: -1,-24
- 5557: 8,-23
- 5558: 8,-22
- 5559: 10,-22
- 5560: 9,-23
- 5561: 8,-25
- 5562: 8,-21
- 5563: 8,-19
- 5564: 8,-18
- 5565: 6,-18
- 5566: 5,-18
- 5567: 0,-27
- 5568: 2,-27
- 5569: 10,-23
- 5570: 13,-23
- 5571: 12,-23
- 5572: 13,-21
- 5573: 14,-22
- 5574: 13,-18
- 5575: 14,-18
- 5576: 14,-17
- 5577: 12,-18
- 5578: 11,-18
- 5579: 11,-16
- 5580: 13,-17
- 5581: 11,-30
- 5582: 11,-28
- 5583: 11,-27
- 5584: 11,-26
- 5585: 17,-26
- 5586: 17,-28
- 5587: 17,-28
- 5588: 17,-30
- 5589: 17,-30
- 5590: 18,-23
- 5591: 20,-22
- 5592: 21,-23
- 5593: 19,-22
- 5594: 21,-22
- 5595: 20,-21
- 5596: 24,-22
- 5597: 23,-23
- 5598: 23,-21
- 5599: 23,-23
- 5600: 17,-16
- 5601: 19,-14
- 5602: 18,-13
- 5603: 20,-13
- 5604: 19,-12
- 5605: 22,-11
- 5606: 22,-13
- 5607: 20,-11
- 5608: 24,-13
- 5609: 26,-11
- 5610: 21,-11
- 5611: 20,-11
- 5612: 25,-13
- 5613: 22,-13
- 5614: 23,-12
- 5615: 26,-12
- 5616: 19,-12
- 5617: 23,-13
- 5618: 23,-11
- 5619: 19,-10
- 5620: 26,-11
- 5621: 28,-12
- 5622: 25,-12
- 5623: 23,-16
- 5624: 23,-16
- 5625: 13,-19
- 5626: 23,-34
- 5627: 23,-31
- 5628: 23,-30
- 5629: 23,-29
- 5630: 23,-32
- 5631: 29,-34
- 5632: 29,-33
- 5633: 29,-32
- 5634: 29,-30
- 5635: 29,-29
- 5636: 32,-34
- 5637: 32,-31
- 5638: 32,-30
- 5639: 36,-30
- 5640: 35,-29
- 5641: 33,-26
- 5642: 36,-21
- 5643: 38,-16
- 5644: 37,-15
- 5645: 39,-16
- 5646: 38,-17
- 5647: 38,-15
- 5648: 37,-15
- 5649: 62,-31
- 5650: 62,-33
- 5651: 61,-31
- 5652: 63,-33
- 5653: 63,-33
- 5654: 63,-32
- 5655: 62,-32
- 5656: 62,-32
- 5657: 51,-28
- 5658: 51,-27
- 5659: 52,-28
+ 5465: -13,-39
+ 5466: -13,-40
+ 5469: -5,-41
+ 5470: -5,-40
+ 5471: -6,-42
+ 5472: -5,-36
+ 5473: -6,-36
+ 5474: -4,-35
+ 5475: -4,-36
+ 5476: 0,-36
+ 5477: -2,-36
+ 5478: 1,-35
+ 5479: 1,-37
+ 5480: 1,-38
+ 5481: 2,-37
+ 5482: 2,-38
+ 5483: 0,-37
+ 5484: 3,-37
+ 5485: -1,-36
+ 5489: -6,-28
+ 5490: -6,-27
+ 5491: -5,-27
+ 5492: -6,-26
+ 5493: -2,-27
+ 5494: -3,-26
+ 5495: -2,-28
+ 5496: -1,-27
+ 5497: 0,-27
+ 5498: 0,-27
+ 5499: -2,-27
+ 5500: -2,-27
+ 5501: 0,-24
+ 5502: -2,-24
+ 5503: -2,-23
+ 5504: 0,-22
+ 5505: 1,-22
+ 5506: 1,-21
+ 5507: -4,-19
+ 5508: -5,-19
+ 5509: -7,-19
+ 5510: -9,-19
+ 5511: -6,-19
+ 5512: -7,-17
+ 5513: -8,-17
+ 5514: -9,-16
+ 5515: -9,-16
+ 5516: -5,-16
+ 5517: -4,-14
+ 5518: -5,-15
+ 5519: -8,-16
+ 5520: -8,-15
+ 5521: -14,-14
+ 5522: -12,-14
+ 5523: -12,-16
+ 5524: -13,-18
+ 5525: -14,-16
+ 5526: -13,-16
+ 5527: -13,-19
+ 5528: -14,-19
+ 5529: -2,-17
+ 5530: -2,-15
+ 5531: -2,-13
+ 5532: -2,-12
+ 5533: -1,-15
+ 5534: -1,-16
+ 5535: -1,-17
+ 5536: 1,-17
+ 5537: -1,-18
+ 5538: 2,-18
+ 5539: 2,-16
+ 5540: 2,-15
+ 5541: 2,-13
+ 5542: 1,-12
+ 5543: 1,-14
+ 5544: -1,-13
+ 5545: 0,-14
+ 5546: 2,-16
+ 5547: -4,-14
+ 5548: -7,-24
+ 5549: -7,-22
+ 5550: -8,-23
+ 5551: -10,-23
+ 5552: -9,-23
+ 5553: -1,-24
+ 5554: 8,-23
+ 5555: 8,-22
+ 5556: 10,-22
+ 5557: 9,-23
+ 5558: 8,-25
+ 5559: 8,-21
+ 5560: 8,-19
+ 5561: 8,-18
+ 5562: 6,-18
+ 5563: 5,-18
+ 5564: 0,-27
+ 5565: 2,-27
+ 5566: 10,-23
+ 5567: 13,-23
+ 5568: 12,-23
+ 5569: 13,-21
+ 5570: 14,-22
+ 5571: 13,-18
+ 5572: 14,-18
+ 5573: 14,-17
+ 5574: 12,-18
+ 5575: 11,-18
+ 5576: 11,-16
+ 5577: 13,-17
+ 5578: 11,-30
+ 5579: 11,-28
+ 5580: 11,-27
+ 5581: 11,-26
+ 5582: 17,-26
+ 5583: 17,-28
+ 5584: 17,-28
+ 5585: 17,-30
+ 5586: 17,-30
+ 5587: 18,-23
+ 5588: 20,-22
+ 5589: 21,-23
+ 5590: 19,-22
+ 5591: 21,-22
+ 5592: 20,-21
+ 5593: 24,-22
+ 5594: 23,-23
+ 5595: 23,-21
+ 5596: 23,-23
+ 5597: 17,-16
+ 5598: 19,-14
+ 5599: 18,-13
+ 5600: 20,-13
+ 5601: 19,-12
+ 5602: 22,-11
+ 5603: 22,-13
+ 5604: 20,-11
+ 5605: 24,-13
+ 5606: 26,-11
+ 5607: 21,-11
+ 5608: 20,-11
+ 5609: 25,-13
+ 5610: 22,-13
+ 5611: 23,-12
+ 5612: 26,-12
+ 5613: 19,-12
+ 5614: 23,-13
+ 5615: 23,-11
+ 5616: 19,-10
+ 5617: 26,-11
+ 5618: 28,-12
+ 5619: 25,-12
+ 5620: 23,-16
+ 5621: 23,-16
+ 5622: 13,-19
+ 5623: 23,-34
+ 5624: 23,-31
+ 5625: 23,-30
+ 5626: 23,-29
+ 5627: 23,-32
+ 5628: 29,-34
+ 5629: 29,-33
+ 5630: 29,-32
+ 5631: 29,-30
+ 5632: 29,-29
+ 5633: 32,-34
+ 5634: 32,-31
+ 5635: 32,-30
+ 5636: 36,-30
+ 5637: 35,-29
+ 5638: 33,-26
+ 5639: 36,-21
+ 5640: 38,-16
+ 5641: 37,-15
+ 5642: 39,-16
+ 5643: 38,-17
+ 5644: 38,-15
+ 5645: 37,-15
+ 5646: 62,-31
+ 5647: 62,-33
+ 5648: 61,-31
+ 5649: 63,-33
+ 5650: 63,-33
+ 5651: 63,-32
+ 5652: 62,-32
+ 5653: 62,-32
+ 5654: 51,-28
+ 5655: 51,-27
+ 5656: 52,-28
+ 5657: 64,8
+ 5658: 63,9
+ 5659: 65,9
5660: 64,8
- 5661: 63,9
- 5662: 65,9
- 5663: 64,8
- 5664: 64,9
- 5665: 64,10
- 5666: 67,6
- 5667: 68,4
- 5668: 68,6
- 5669: 67,5
- 5670: 68,0
- 5671: 68,1
- 5672: 68,2
- 5673: 67,0
- 5674: 68,-2
- 5675: 67,-3
- 5676: 68,-4
- 5677: 68,-3
- 5678: 68,-3
- 5679: 76,-6
- 5685: 54,-30
- 5686: 52,-31
- 5687: 51,-31
- 5688: 52,-33
- 5689: 52,-34
- 5690: 52,-36
+ 5661: 64,9
+ 5662: 64,10
+ 5663: 67,6
+ 5664: 68,4
+ 5665: 68,6
+ 5666: 67,5
+ 5667: 68,0
+ 5668: 68,1
+ 5669: 68,2
+ 5670: 67,0
+ 5671: 68,-2
+ 5672: 67,-3
+ 5673: 68,-4
+ 5674: 68,-3
+ 5675: 68,-3
+ 5676: 76,-6
+ 5682: 54,-30
+ 5683: 52,-31
+ 5684: 51,-31
+ 5685: 52,-33
+ 5686: 52,-34
+ 5687: 52,-36
+ 5688: 51,-33
+ 5689: 51,-32
+ 5690: 52,-35
5691: 51,-33
- 5692: 51,-32
+ 5692: 51,-31
5693: 52,-35
- 5694: 51,-33
- 5695: 51,-31
- 5696: 52,-35
- 5697: 52,-35
- 5698: 55,-35
- 5699: 54,-34
- 5700: 56,-33
- 5701: 57,-33
+ 5694: 52,-35
+ 5695: 55,-35
+ 5696: 54,-34
+ 5697: 56,-33
+ 5698: 57,-33
+ 5699: 55,-34
+ 5700: 55,-36
+ 5701: 54,-35
5702: 55,-34
- 5703: 55,-36
- 5704: 54,-35
+ 5703: 54,-35
+ 5704: 55,-35
5705: 55,-34
- 5706: 54,-35
- 5707: 55,-35
- 5708: 55,-34
- 5709: 40,-31
- 5710: 40,-30
- 5711: 40,-30
- 5712: 41,-31
- 5713: 41,-29
- 5714: 42,-29
- 5715: 43,-29
- 5716: 44,-29
- 5717: 44,-31
- 5718: 43,-30
- 5719: 33,-29
- 5720: 15,-39
- 5721: 14,-39
- 5722: 14,-39
- 5723: 9,-40
- 5724: 9,-39
- 5725: 9,-41
- 5726: 8,-40
- 5727: 9,-45
- 5728: 8,-45
- 5729: 8,-45
- 5730: 19,-45
- 5731: 17,-45
- 5732: 16,-44
- 5733: 16,-45
- 5734: 16,-43
- 5735: 19,-45
- 5736: 20,-44
- 5737: 20,-45
- 5738: 18,-44
- 5739: 21,-45
- 5740: 21,-43
- 5741: 15,-48
+ 5706: 40,-31
+ 5707: 40,-30
+ 5708: 40,-30
+ 5709: 41,-31
+ 5710: 41,-29
+ 5711: 42,-29
+ 5712: 43,-29
+ 5713: 44,-29
+ 5714: 44,-31
+ 5715: 43,-30
+ 5716: 33,-29
+ 5717: 15,-39
+ 5718: 14,-39
+ 5719: 14,-39
+ 5720: 9,-40
+ 5721: 9,-39
+ 5722: 9,-41
+ 5723: 8,-40
+ 5724: 9,-45
+ 5725: 8,-45
+ 5726: 8,-45
+ 5727: 19,-45
+ 5728: 17,-45
+ 5729: 16,-44
+ 5730: 16,-45
+ 5731: 16,-43
+ 5732: 19,-45
+ 5733: 20,-44
+ 5734: 20,-45
+ 5735: 18,-44
+ 5736: 21,-45
+ 5737: 21,-43
+ 5738: 15,-48
+ 5739: 14,-48
+ 5740: 12,-47
+ 5741: 12,-48
5742: 14,-48
- 5743: 12,-47
- 5744: 12,-48
- 5745: 14,-48
- 5746: 16,-47
- 5747: 14,-48
- 5748: 13,-48
- 5749: 15,-47
- 5756: 21,-54
- 5757: 20,-54
- 5758: 18,-54
- 5759: 16,-54
- 5760: 16,-55
- 5761: 18,-53
- 5762: 19,-53
- 5763: 21,-55
- 5764: 21,-58
- 5765: 21,-59
- 5766: 20,-58
- 5767: 18,-58
- 5768: 17,-58
- 5769: 16,-58
- 5770: 16,-59
- 5771: 19,-59
- 5772: 19,-59
- 5773: 18,-59
- 5774: 27,-46
- 5775: 26,-45
- 5776: 26,-44
- 5777: 27,-45
- 5778: 27,-45
- 5779: 28,-42
- 5780: 29,-42
- 5781: 29,-40
- 5782: 28,-39
- 5783: 28,-39
- 5784: 28,-40
- 5785: 29,-47
- 5786: 28,-47
- 5787: 66,-52
- 5788: 65,-51
- 5789: 66,-52
- 5790: 66,-51
- 5791: 65,-52
- 5792: 66,-51
- 5793: 27,15
- 5794: 28,15
- 5795: 27,14
- 5796: 27,12
- 5797: -23,34
- 5798: -23,35
- 5799: -22,34
- 5800: -27,36
- 5801: -27,34
- 5802: -28,35
- 5803: -27,35
- 5804: -29,36
- 5805: -30,37
- 5806: -30,38
- 5807: -28,35
- 5808: -28,34
- 5809: -29,35
- 5810: -26,36
- 5811: -25,38
- 5812: -26,37
- 5813: -32,36
- 5814: -33,35
- 5815: -33,37
+ 5743: 16,-47
+ 5744: 14,-48
+ 5745: 13,-48
+ 5746: 15,-47
+ 5753: 21,-54
+ 5754: 20,-54
+ 5755: 18,-54
+ 5756: 16,-54
+ 5757: 16,-55
+ 5758: 18,-53
+ 5759: 19,-53
+ 5760: 21,-55
+ 5761: 21,-58
+ 5762: 21,-59
+ 5763: 20,-58
+ 5764: 18,-58
+ 5765: 17,-58
+ 5766: 16,-58
+ 5767: 16,-59
+ 5768: 19,-59
+ 5769: 19,-59
+ 5770: 18,-59
+ 5771: 27,-46
+ 5772: 26,-45
+ 5773: 26,-44
+ 5774: 27,-45
+ 5775: 27,-45
+ 5776: 28,-42
+ 5777: 29,-42
+ 5778: 29,-40
+ 5779: 28,-39
+ 5780: 28,-39
+ 5781: 28,-40
+ 5782: 29,-47
+ 5783: 28,-47
+ 5784: 66,-52
+ 5785: 65,-51
+ 5786: 66,-52
+ 5787: 66,-51
+ 5788: 65,-52
+ 5789: 66,-51
+ 5790: 27,15
+ 5791: 28,15
+ 5792: 27,14
+ 5793: 27,12
+ 5794: -23,34
+ 5795: -23,35
+ 5796: -22,34
+ 5797: -27,36
+ 5798: -27,34
+ 5799: -28,35
+ 5800: -27,35
+ 5801: -29,36
+ 5802: -30,37
+ 5803: -30,38
+ 5804: -28,35
+ 5805: -28,34
+ 5806: -29,35
+ 5807: -26,36
+ 5808: -25,38
+ 5809: -26,37
+ 5810: -32,36
+ 5811: -33,35
+ 5812: -33,37
+ 5813: -33,35
+ 5814: -34,36
+ 5815: -33,38
5816: -33,35
- 5817: -34,36
- 5818: -33,38
- 5819: -33,35
- 5820: -36,5
- 5821: -42,6
- 5822: -43,4
- 5823: -43,6
- 5824: -42,7
- 5825: -51,9
- 5826: -49,13
- 5827: -42,-5
- 5828: -43,-5
- 5829: -42,-3
- 5830: -45,-4
- 5831: -45,-5
- 5832: -46,-4
- 5833: -43,-3
- 5834: -43,-2
- 5835: -42,-2
- 5836: -60,-29
- 5837: -60,-29
- 5838: -57,-36
- 5839: -58,-36
- 5840: -59,-36
- 5841: -57,-37
- 5842: -58,-35
+ 5817: -36,5
+ 5818: -42,6
+ 5819: -43,4
+ 5820: -43,6
+ 5821: -42,7
+ 5822: -51,9
+ 5823: -49,13
+ 5824: -42,-5
+ 5825: -43,-5
+ 5826: -42,-3
+ 5827: -45,-4
+ 5828: -45,-5
+ 5829: -46,-4
+ 5830: -43,-3
+ 5831: -43,-2
+ 5832: -42,-2
+ 5833: -60,-29
+ 5834: -60,-29
+ 5835: -57,-36
+ 5836: -58,-36
+ 5837: -59,-36
+ 5838: -57,-37
+ 5839: -58,-35
+ 5840: -58,-34
+ 5841: -57,-35
+ 5842: -59,-34
5843: -58,-34
- 5844: -57,-35
- 5845: -59,-34
- 5846: -58,-34
- 5847: -59,-34
- 5848: -60,-34
- 5849: -60,-35
- 5850: -61,-21
- 5851: -62,-21
- 5852: -62,-20
- 5853: -61,-20
- 5854: -61,-20
- 5855: 13,35
- 6553: 52,20
- 6554: 51,21
- 6557: 53,20
- 6558: 53,21
+ 5844: -59,-34
+ 5845: -60,-34
+ 5846: -60,-35
+ 5847: -61,-21
+ 5848: -62,-21
+ 5849: -62,-20
+ 5850: -61,-20
+ 5851: -61,-20
+ 5852: 13,35
+ 6550: 52,20
+ 6551: 51,21
+ 6552: 53,20
+ 6553: 53,21
- node:
cleanable: True
angle: 1.5707963267948966 rad
color: '#FFFFFFFF'
id: DirtHeavy
decals:
- 3263: -43,17
+ 3262: -43,17
- node:
cleanable: True
color: '#835432FF'
id: DirtHeavyMonotile
decals:
- 3171: -38,29
- 3172: -36,28
- 3173: -34,26
- 3174: -34,24
- 3175: -36,22
- 3176: -37,25
- 3177: -37,26
- 3178: -37,27
- 3179: -38,27
- 3180: -36,26
+ 3170: -38,29
+ 3171: -36,28
+ 3172: -34,26
+ 3173: -34,24
+ 3174: -36,22
+ 3175: -37,25
+ 3176: -37,26
+ 3177: -37,27
+ 3178: -38,27
+ 3179: -36,26
- node:
cleanable: True
color: '#FFFFFFFF'
id: DirtHeavyMonotile
decals:
- 3464: 4,-31
- 3465: 0,-31
- 3466: -4,-31
- 3467: -8,-31
- 3468: -10,-31
- 3469: -13,-31
- 3470: -17,-31
- 3471: -18,-31
- 3472: -21,-31
- 3473: -25,-31
- 3474: -25,-27
- 3475: -25,-24
- 3476: -25,-22
- 3477: -25,-19
- 3478: -25,-18
- 3479: -25,-13
- 3480: -25,-11
- 3481: -24,-10
- 3482: -24,-8
- 3483: -22,-2
- 3484: -22,0
- 3485: -22,3
- 3486: -20,8
- 3487: -22,9
- 3488: -24,8
- 3489: -25,9
- 3490: -26,8
- 3491: -26,12
- 3492: -26,15
- 3493: -26,17
- 3494: -25,20
- 3495: -23,19
- 3496: -20,19
- 3497: -18,20
- 3498: -15,20
- 3499: -12,20
- 3500: -7,20
- 3501: -3,20
- 3502: -1,20
- 3503: 2,20
- 3504: 6,20
- 3505: 9,20
- 3506: 11,20
- 3507: 14,20
- 3508: 17,20
- 3509: 20,19
- 3510: 20,17
- 3511: 20,15
- 3512: 20,11
- 3513: 20,9
- 3514: 20,6
- 3515: 20,3
- 3516: 22,3
- 3517: 25,3
- 3518: 27,3
- 3519: 30,3
- 3520: 33,3
- 3521: 36,3
- 3522: 41,3
- 3523: 42,2
- 3524: 42,0
- 3525: 42,-3
- 3526: 42,-6
- 3527: 42,-9
- 3528: 42,-11
- 3529: 42,-15
- 3530: 42,-18
- 3531: 42,-20
- 3532: 44,-20
- 3533: 42,-13
- 3534: 42,-10
- 3535: 42,-7
- 3536: 42,-5
- 3537: 42,-2
- 3538: 42,1
- 3539: 39,3
- 3540: 37,3
- 3541: 35,3
- 3542: 32,3
- 3543: 31,3
- 3544: 26,3
- 3545: 22,3
- 3546: 20,6
- 3547: 20,9
- 3548: 20,12
- 3549: 20,15
- 3550: 20,19
- 3551: 19,20
- 3552: 12,20
- 3553: 8,20
- 3554: 5,20
- 3555: 2,20
- 3556: -1,20
- 3557: -5,20
- 3558: -9,20
- 3559: -12,20
- 3560: -16,20
- 3562: -19,19
- 3563: -26,20
- 3564: -26,16
- 3565: -26,11
- 3566: -26,8
- 3567: -23,8
- 3568: -22,9
- 3569: -21,8
- 3570: -20,9
- 3571: -22,3
- 3572: -22,0
- 3573: -22,-3
- 3574: -22,-5
- 3575: -23,-7
- 3576: -25,-7
- 3577: -23,-8
+ 3463: 4,-31
+ 3464: 0,-31
+ 3465: -4,-31
+ 3466: -8,-31
+ 3467: -10,-31
+ 3468: -13,-31
+ 3469: -17,-31
+ 3470: -18,-31
+ 3471: -21,-31
+ 3472: -25,-31
+ 3473: -25,-27
+ 3474: -25,-24
+ 3475: -25,-22
+ 3476: -25,-19
+ 3477: -25,-18
+ 3478: -25,-13
+ 3479: -25,-11
+ 3480: -24,-10
+ 3481: -24,-8
+ 3482: -22,-2
+ 3483: -22,0
+ 3484: -22,3
+ 3485: -20,8
+ 3486: -22,9
+ 3487: -24,8
+ 3488: -25,9
+ 3489: -26,8
+ 3490: -26,12
+ 3491: -26,15
+ 3492: -26,17
+ 3493: -25,20
+ 3494: -23,19
+ 3495: -20,19
+ 3496: -18,20
+ 3497: -15,20
+ 3498: -12,20
+ 3499: -7,20
+ 3500: -3,20
+ 3501: -1,20
+ 3502: 2,20
+ 3503: 6,20
+ 3504: 9,20
+ 3505: 11,20
+ 3506: 14,20
+ 3507: 17,20
+ 3508: 20,19
+ 3509: 20,17
+ 3510: 20,15
+ 3511: 20,11
+ 3512: 20,9
+ 3513: 20,6
+ 3514: 20,3
+ 3515: 22,3
+ 3516: 25,3
+ 3517: 27,3
+ 3518: 30,3
+ 3519: 33,3
+ 3520: 36,3
+ 3521: 41,3
+ 3522: 42,2
+ 3523: 42,0
+ 3524: 42,-3
+ 3525: 42,-6
+ 3526: 42,-9
+ 3527: 42,-11
+ 3528: 42,-15
+ 3529: 42,-18
+ 3530: 42,-20
+ 3531: 44,-20
+ 3532: 42,-13
+ 3533: 42,-10
+ 3534: 42,-7
+ 3535: 42,-5
+ 3536: 42,-2
+ 3537: 42,1
+ 3538: 39,3
+ 3539: 37,3
+ 3540: 35,3
+ 3541: 32,3
+ 3542: 31,3
+ 3543: 26,3
+ 3544: 22,3
+ 3545: 20,6
+ 3546: 20,9
+ 3547: 20,12
+ 3548: 20,15
+ 3549: 20,19
+ 3550: 19,20
+ 3551: 12,20
+ 3552: 8,20
+ 3553: 5,20
+ 3554: 2,20
+ 3555: -1,20
+ 3556: -5,20
+ 3557: -9,20
+ 3558: -12,20
+ 3559: -16,20
+ 3561: -19,19
+ 3562: -26,20
+ 3563: -26,16
+ 3564: -26,11
+ 3565: -26,8
+ 3566: -23,8
+ 3567: -22,9
+ 3568: -21,8
+ 3569: -20,9
+ 3570: -22,3
+ 3571: -22,0
+ 3572: -22,-3
+ 3573: -22,-5
+ 3574: -23,-7
+ 3575: -25,-7
+ 3576: -23,-8
+ 3577: -25,-10
3578: -25,-10
- 3579: -25,-10
- 3580: -25,-14
- 3581: -25,-18
- 3582: -25,-21
- 3583: -25,-25
- 3584: -25,-28
- 3585: -23,-31
- 3586: -20,-31
- 3587: -15,-31
- 3588: -9,-31
- 3589: -5,-31
- 3590: 1,-31
- 3591: 1,-32
- 3592: 7,-31
- 3593: 5,-31
- 3594: 8,-32
- 3595: 9,-33
- 3596: 12,-33
- 3597: 15,-33
- 3598: 18,-33
- 3599: 19,-33
- 3600: 20,-29
- 3601: 20,-27
- 3602: 21,-26
- 3603: 24,-26
- 3604: 27,-26
- 3605: 28,-26
- 3606: 28,-22
- 3607: 28,-21
- 3608: 28,-20
- 3609: 32,-20
- 3610: 35,-20
- 3611: 39,-20
- 3612: 42,-20
- 3613: 40,-20
- 3614: 42,-17
- 3615: 42,-19
- 3616: 49,-20
- 3617: 52,-20
- 3618: 47,-20
- 3619: 53,-20
- 3620: 53,-22
- 3621: 53,-23
- 3622: 54,-20
- 3623: 56,-20
+ 3579: -25,-14
+ 3580: -25,-18
+ 3581: -25,-21
+ 3582: -25,-25
+ 3583: -25,-28
+ 3584: -23,-31
+ 3585: -20,-31
+ 3586: -15,-31
+ 3587: -9,-31
+ 3588: -5,-31
+ 3589: 1,-31
+ 3590: 1,-32
+ 3591: 7,-31
+ 3592: 5,-31
+ 3593: 8,-32
+ 3594: 9,-33
+ 3595: 12,-33
+ 3596: 15,-33
+ 3597: 18,-33
+ 3598: 19,-33
+ 3599: 20,-29
+ 3600: 20,-27
+ 3601: 21,-26
+ 3602: 24,-26
+ 3603: 27,-26
+ 3604: 28,-26
+ 3605: 28,-22
+ 3606: 28,-21
+ 3607: 28,-20
+ 3608: 32,-20
+ 3609: 35,-20
+ 3610: 39,-20
+ 3611: 42,-20
+ 3612: 40,-20
+ 3613: 42,-17
+ 3614: 42,-19
+ 3615: 49,-20
+ 3616: 52,-20
+ 3617: 47,-20
+ 3618: 53,-20
+ 3619: 53,-22
+ 3620: 53,-23
+ 3621: 54,-20
+ 3622: 56,-20
+ 3623: 58,-20
3624: 58,-20
- 3625: 58,-20
- 3626: 58,-22
- 3627: 58,-23
- 3628: 58,-22
- 3629: 49,-20
- 3630: 50,-20
- 3631: 44,-13
- 3632: 41,-13
- 3633: 39,-1
- 3634: 37,-1
- 3635: 36,-1
- 3636: 47,9
- 3637: 47,7
- 3638: 50,10
- 3639: 50,6
- 3640: 50,2
- 3641: 50,14
- 3642: 51,14
- 3643: 49,15
- 3644: 49,8
- 3645: 51,-1
- 3646: 49,-2
- 3647: 51,-3
- 3648: 51,-5
- 3649: 51,-7
- 3650: 49,-8
- 3651: 51,-8
- 3652: 50,-1
- 3653: 51,-10
- 3654: 49,-10
- 3655: 51,-11
- 3656: 48,-11
- 3657: 46,-7
- 3658: 45,-8
- 3659: 46,-4
- 3660: 46,-5
- 3661: 45,-1
- 3662: 46,-2
- 3663: 54,-1
- 3664: 55,-1
- 3665: 55,-7
- 3666: 58,-4
- 3667: 59,-6
- 3668: 60,-5
- 3669: 62,-6
- 3670: 61,-6
- 3671: 55,3
- 3672: 56,2
- 3673: 56,3
- 3674: 55,7
- 3675: 54,7
- 3676: 56,8
- 3677: 59,15
- 3678: 58,15
- 3679: 60,16
- 3680: 60,3
- 3681: 60,1
- 3682: 63,1
- 3683: 62,1
- 3684: 62,0
- 3685: 62,3
- 3686: 62,4
+ 3625: 58,-22
+ 3626: 58,-23
+ 3627: 58,-22
+ 3628: 49,-20
+ 3629: 50,-20
+ 3630: 44,-13
+ 3631: 41,-13
+ 3632: 39,-1
+ 3633: 37,-1
+ 3634: 36,-1
+ 3635: 47,9
+ 3636: 47,7
+ 3637: 50,10
+ 3638: 50,6
+ 3639: 50,2
+ 3640: 50,14
+ 3641: 51,14
+ 3642: 49,15
+ 3643: 49,8
+ 3644: 51,-1
+ 3645: 49,-2
+ 3646: 51,-3
+ 3647: 51,-5
+ 3648: 51,-7
+ 3649: 49,-8
+ 3650: 51,-8
+ 3651: 50,-1
+ 3652: 51,-10
+ 3653: 49,-10
+ 3654: 51,-11
+ 3655: 48,-11
+ 3656: 46,-7
+ 3657: 45,-8
+ 3658: 46,-4
+ 3659: 46,-5
+ 3660: 45,-1
+ 3661: 46,-2
+ 3662: 54,-1
+ 3663: 55,-1
+ 3664: 55,-7
+ 3665: 58,-4
+ 3666: 59,-6
+ 3667: 60,-5
+ 3668: 62,-6
+ 3669: 61,-6
+ 3670: 55,3
+ 3671: 56,2
+ 3672: 56,3
+ 3673: 55,7
+ 3674: 54,7
+ 3675: 56,8
+ 3676: 59,15
+ 3677: 58,15
+ 3678: 60,16
+ 3679: 60,3
+ 3680: 60,1
+ 3681: 63,1
+ 3682: 62,1
+ 3683: 62,0
+ 3684: 62,3
+ 3685: 62,4
+ 3686: 28,3
3687: 28,3
- 3688: 28,3
- 3689: 24,8
- 3690: 24,6
- 3691: 23,8
- 3692: 25,7
- 3693: 24,7
- 3694: 24,6
- 3695: 25,11
- 3696: 25,13
- 3697: 25,14
- 3698: 23,15
- 3699: 22,12
- 3700: 23,12
- 3701: 23,14
- 3702: 23,11
- 3703: 26,19
- 3704: 24,20
- 3705: 25,21
- 3706: 26,19
- 3707: 25,20
- 3708: 29,20
- 3709: 29,19
- 3710: 30,19
- 3711: 29,21
+ 3688: 24,8
+ 3689: 24,6
+ 3690: 23,8
+ 3691: 25,7
+ 3692: 24,7
+ 3693: 24,6
+ 3694: 25,11
+ 3695: 25,13
+ 3696: 25,14
+ 3697: 23,15
+ 3698: 22,12
+ 3699: 23,12
+ 3700: 23,14
+ 3701: 23,11
+ 3702: 26,19
+ 3703: 24,20
+ 3704: 25,21
+ 3705: 26,19
+ 3706: 25,20
+ 3707: 29,20
+ 3708: 29,19
+ 3709: 30,19
+ 3710: 29,21
+ 3711: 34,20
3712: 34,20
- 3713: 34,20
- 3714: 35,19
- 3715: -19,26
- 3716: -21,28
- 3717: -20,26
- 3718: -20,28
- 3719: -7,40
- 3720: 3,40
- 3721: -26,19
- 3722: -17,11
- 3723: -16,11
- 3724: -16,13
- 3725: -17,13
- 3726: -33,11
- 3727: -33,13
- 3728: -33,14
- 3729: -32,14
- 3730: -30,14
- 3731: -29,14
- 3732: -31,14
- 3733: -30,3
- 3734: -32,3
- 3736: -37,3
- 3737: -36,2
- 3738: -35,2
- 3739: -37,1
- 3740: -33,1
- 3741: -32,2
- 3742: -32,1
- 3743: -31,2
- 3744: -33,2
- 3745: -38,0
- 3746: -37,0
- 3747: -34,0
- 3748: -33,0
- 3749: -31,0
- 3750: -30,0
- 3751: -55,6
- 3752: -54,6
- 3753: -54,4
- 3754: -54,2
- 3755: -56,5
- 3756: -55,4
- 3757: -53,1
- 3758: -51,1
- 3759: -49,1
- 3760: -47,1
- 3761: -45,1
- 3762: -44,1
- 3763: -43,1
- 3764: -54,1
- 3765: -54,-4
- 3766: -55,-4
- 3767: -54,-8
- 3768: -54,-10
- 3769: -54,-12
- 3770: -54,-14
- 3771: -54,-16
- 3772: -54,-19
- 3773: -53,-21
- 3774: -51,-21
- 3775: -54,-21
- 3776: -54,-20
- 3777: -54,-18
- 3778: -48,-21
- 3779: -48,-23
- 3780: -48,-24
- 3781: -50,-25
- 3782: -47,-25
- 3783: -45,-25
- 3784: -45,-26
- 3785: -45,-29
- 3786: -44,-28
- 3787: -43,-28
- 3788: -45,-31
- 3789: -48,-32
- 3790: -49,-32
- 3791: -51,-32
- 3792: -51,-30
- 3793: -51,-28
- 3794: -51,-26
- 3795: -48,-33
- 3796: -54,-26
- 3797: -56,-25
- 3798: -55,-25
- 3799: -56,-26
- 3800: -57,-26
- 3801: -55,-26
- 3802: -56,-25
- 3803: -48,-36
- 3804: -48,-38
- 3805: -48,-40
- 3806: -48,-42
- 3807: -48,-44
- 3808: -48,-47
- 3809: -49,-47
- 3810: -51,-47
- 3811: -53,-47
- 3812: -54,-47
- 3813: -45,-47
- 3814: -45,-47
- 3815: -43,-47
- 3816: -41,-47
- 3817: -41,-47
- 3818: -41,-50
- 3819: -41,-51
- 3820: -41,-54
- 3821: -36,-58
- 3822: -36,-60
- 3823: -36,-63
- 3824: -36,-64
- 3825: -36,-56
- 3826: -37,-56
- 3827: -41,-61
- 3828: -42,-62
- 3829: -41,-64
- 3830: -41,-64
- 3831: -42,-62
- 3832: -41,-48
- 3833: -53,-47
- 3834: -55,-47
- 3835: -55,-49
- 3836: -55,-52
- 3837: -55,-54
- 3838: -60,-58
- 3839: -60,-60
- 3840: -60,-62
- 3841: -60,-63
- 3842: -60,-64
- 3843: -58,-56
- 3844: -60,-56
- 3845: -55,-64
- 3846: -55,-62
- 3847: -54,-61
- 3848: -54,-63
- 3849: -54,-64
- 3850: -8,-28
- 3851: -7,-26
- 3852: -8,-27
- 3853: -8,-27
- 3854: 7,-22
- 3855: 5,-22
- 3856: 4,-23
- 3857: 4,-20
- 3858: 4,-19
- 3859: 7,-20
- 3860: 7,-21
- 3861: 7,-24
- 3862: 7,-25
- 3863: 10,-16
- 3864: 10,-18
- 3865: 10,-18
- 3866: 12,-29
- 3867: 12,-28
- 3868: 12,-26
- 3869: 13,-25
- 3870: 14,-25
- 3871: 14,-26
- 3872: 15,-25
- 3873: 16,-26
- 3874: 16,-29
- 3875: 16,-30
- 3876: -4,-36
- 3877: -4,-37
- 3878: -6,-37
- 3879: 34,-2
- 3880: 33,-2
- 3881: 34,-3
- 3882: 32,-2
- 3883: 32,-3
- 3884: 31,-2
- 3885: 31,-3
- 3886: 31,-35
- 3887: 33,-35
- 3888: 32,-37
- 3889: 33,-36
- 3890: 33,-38
- 3891: 32,-36
- 3892: 31,-38
- 3893: 47,-36
- 3894: 47,-35
- 3895: 49,-35
- 3896: 49,-37
- 3897: 47,-37
- 3898: 47,-38
- 3899: 49,-38
- 3900: 47,-39
- 3901: 24,-29
- 3902: 26,-29
- 3903: 27,-29
- 3904: 28,-29
- 3905: 25,-34
- 3906: 27,-34
- 3907: 28,-34
- 3908: 26,-34
- 3909: 28,-43
- 3910: 29,-43
- 3911: 28,-45
- 3912: 29,-45
- 3913: 28,-46
- 3914: 29,-46
- 3915: 19,-46
- 3916: 18,-46
- 3917: 18,-47
- 3918: 19,-49
- 3919: 19,-49
- 3920: 18,-50
- 3921: 19,-50
- 3922: 18,-48
- 3923: 16,-48
- 3924: 14,-48
- 3925: 12,-47
- 3926: 10,-40
- 3927: 11,-39
- 3928: 11,-40
- 3929: 11,-40
- 3930: 8,-31
- 3931: 8,-31
- 3932: 5,-14
- 3933: 6,-14
- 3934: 6,-15
- 3935: 5,-15
- 3936: 4,-15
- 3937: 4,-15
- 3938: 25,7
- 3939: 20,16
- 3940: 20,18
- 3941: 15,26
- 3942: 14,26
- 3943: 13,26
- 3944: 13,26
- 3945: -44,10
- 3946: -45,10
- 3947: -46,10
- 3948: -47,10
- 3949: -49,10
- 3950: -50,10
- 3951: -50,12
- 3952: -47,12
- 3953: -48,1
- 3954: -47,1
- 3955: -48,-41
- 3956: -38,-56
- 3957: -38,-56
- 3958: -42,-57
- 3959: -55,-57
- 4091: -50,0
- 4092: -50,2
- 4093: -48,2
- 4094: -46,2
- 4095: -45,2
- 4096: -44,0
- 4097: -46,0
- 4098: -48,0
- 4130: -51,3
- 4131: -49,3
- 4132: -47,3
- 4133: -45,3
- 4134: -44,5
- 4135: -46,5
- 4136: -48,5
- 4137: -50,5
- 4138: -50,-1
- 4139: -49,-1
- 4140: -47,-1
- 4141: -46,-1
- 4142: -44,-1
- 4143: -44,-3
- 4144: -46,-3
- 4145: -47,-3
- 4146: -49,-3
- 4147: -50,-3
- 4148: -48,-3
- 4149: -46,-3
- 4150: -48,3
- 4151: -46,3
- 4232: -21,6
- 4233: -21,7
- 4234: -22,6
- 4235: -21,7
- 4432: 19,1
- 4433: 21,1
- 4434: 22,1
- 4435: 23,1
- 4436: 23,1
- 4555: 40,-22
- 4556: 41,-22
- 4557: 43,-22
- 4558: 44,-22
- 4617: 61,-25
- 4618: 62,-25
- 4619: 62,-26
- 4624: 68,-23
- 4647: 68,-15
- 4648: 68,-13
- 4649: 68,-14
- 4650: 67,-12
- 4651: 70,-12
+ 3713: 35,19
+ 3714: -19,26
+ 3715: -21,28
+ 3716: -20,26
+ 3717: -20,28
+ 3718: -7,40
+ 3719: 3,40
+ 3720: -26,19
+ 3721: -17,11
+ 3722: -16,11
+ 3723: -16,13
+ 3724: -17,13
+ 3725: -33,11
+ 3726: -33,13
+ 3727: -33,14
+ 3728: -32,14
+ 3729: -30,14
+ 3730: -29,14
+ 3731: -31,14
+ 3732: -30,3
+ 3733: -32,3
+ 3734: -37,3
+ 3735: -36,2
+ 3736: -35,2
+ 3737: -37,1
+ 3738: -33,1
+ 3739: -32,2
+ 3740: -32,1
+ 3741: -31,2
+ 3742: -33,2
+ 3743: -38,0
+ 3744: -37,0
+ 3745: -34,0
+ 3746: -33,0
+ 3747: -31,0
+ 3748: -30,0
+ 3749: -55,6
+ 3750: -54,6
+ 3751: -54,4
+ 3752: -54,2
+ 3753: -56,5
+ 3754: -55,4
+ 3755: -53,1
+ 3756: -51,1
+ 3757: -49,1
+ 3758: -47,1
+ 3759: -45,1
+ 3760: -44,1
+ 3761: -43,1
+ 3762: -54,1
+ 3763: -54,-4
+ 3764: -55,-4
+ 3765: -54,-8
+ 3766: -54,-10
+ 3767: -54,-12
+ 3768: -54,-14
+ 3769: -54,-16
+ 3770: -54,-19
+ 3771: -53,-21
+ 3772: -51,-21
+ 3773: -54,-21
+ 3774: -54,-20
+ 3775: -54,-18
+ 3776: -48,-21
+ 3777: -48,-23
+ 3778: -48,-24
+ 3779: -50,-25
+ 3780: -47,-25
+ 3781: -45,-25
+ 3782: -45,-26
+ 3783: -45,-29
+ 3784: -44,-28
+ 3785: -43,-28
+ 3786: -45,-31
+ 3787: -48,-32
+ 3788: -49,-32
+ 3789: -51,-32
+ 3790: -51,-30
+ 3791: -51,-28
+ 3792: -51,-26
+ 3793: -48,-33
+ 3794: -54,-26
+ 3795: -56,-25
+ 3796: -55,-25
+ 3797: -56,-26
+ 3798: -57,-26
+ 3799: -55,-26
+ 3800: -56,-25
+ 3801: -48,-36
+ 3802: -48,-38
+ 3803: -48,-40
+ 3804: -48,-42
+ 3805: -48,-44
+ 3806: -48,-47
+ 3807: -49,-47
+ 3808: -51,-47
+ 3809: -53,-47
+ 3810: -54,-47
+ 3811: -45,-47
+ 3812: -45,-47
+ 3813: -43,-47
+ 3814: -41,-47
+ 3815: -41,-47
+ 3816: -41,-50
+ 3817: -41,-51
+ 3818: -41,-54
+ 3819: -36,-58
+ 3820: -36,-60
+ 3821: -36,-63
+ 3822: -36,-64
+ 3823: -36,-56
+ 3824: -37,-56
+ 3825: -41,-61
+ 3826: -42,-62
+ 3827: -41,-64
+ 3828: -41,-64
+ 3829: -42,-62
+ 3830: -41,-48
+ 3831: -53,-47
+ 3832: -55,-47
+ 3833: -55,-49
+ 3834: -55,-52
+ 3835: -55,-54
+ 3836: -60,-58
+ 3837: -60,-60
+ 3838: -60,-62
+ 3839: -60,-63
+ 3840: -60,-64
+ 3841: -58,-56
+ 3842: -60,-56
+ 3843: -55,-64
+ 3844: -55,-62
+ 3845: -54,-61
+ 3846: -54,-63
+ 3847: -54,-64
+ 3848: -8,-28
+ 3849: -7,-26
+ 3850: -8,-27
+ 3851: -8,-27
+ 3852: 7,-22
+ 3853: 5,-22
+ 3854: 4,-23
+ 3855: 4,-20
+ 3856: 4,-19
+ 3857: 7,-20
+ 3858: 7,-21
+ 3859: 7,-24
+ 3860: 7,-25
+ 3861: 10,-16
+ 3862: 10,-18
+ 3863: 10,-18
+ 3864: 12,-29
+ 3865: 12,-28
+ 3866: 12,-26
+ 3867: 13,-25
+ 3868: 14,-25
+ 3869: 14,-26
+ 3870: 15,-25
+ 3871: 16,-26
+ 3872: 16,-29
+ 3873: 16,-30
+ 3874: -4,-36
+ 3875: -4,-37
+ 3876: -6,-37
+ 3877: 34,-2
+ 3878: 33,-2
+ 3879: 34,-3
+ 3880: 32,-2
+ 3881: 32,-3
+ 3882: 31,-2
+ 3883: 31,-3
+ 3884: 31,-35
+ 3885: 33,-35
+ 3886: 32,-37
+ 3887: 33,-36
+ 3888: 33,-38
+ 3889: 32,-36
+ 3890: 31,-38
+ 3891: 47,-36
+ 3892: 47,-35
+ 3893: 49,-35
+ 3894: 49,-37
+ 3895: 47,-37
+ 3896: 47,-38
+ 3897: 49,-38
+ 3898: 47,-39
+ 3899: 24,-29
+ 3900: 26,-29
+ 3901: 27,-29
+ 3902: 28,-29
+ 3903: 25,-34
+ 3904: 27,-34
+ 3905: 28,-34
+ 3906: 26,-34
+ 3907: 28,-43
+ 3908: 29,-43
+ 3909: 28,-45
+ 3910: 29,-45
+ 3911: 28,-46
+ 3912: 29,-46
+ 3913: 19,-46
+ 3914: 18,-46
+ 3915: 18,-47
+ 3916: 19,-49
+ 3917: 19,-49
+ 3918: 18,-50
+ 3919: 19,-50
+ 3920: 18,-48
+ 3921: 16,-48
+ 3922: 14,-48
+ 3923: 12,-47
+ 3924: 10,-40
+ 3925: 11,-39
+ 3926: 11,-40
+ 3927: 11,-40
+ 3928: 8,-31
+ 3929: 8,-31
+ 3930: 5,-14
+ 3931: 6,-14
+ 3932: 6,-15
+ 3933: 5,-15
+ 3934: 4,-15
+ 3935: 4,-15
+ 3936: 25,7
+ 3937: 20,16
+ 3938: 20,18
+ 3939: 15,26
+ 3940: 14,26
+ 3941: 13,26
+ 3942: 13,26
+ 3943: -44,10
+ 3944: -45,10
+ 3945: -46,10
+ 3946: -47,10
+ 3947: -49,10
+ 3948: -50,10
+ 3949: -50,12
+ 3950: -47,12
+ 3951: -48,1
+ 3952: -47,1
+ 3953: -48,-41
+ 3954: -38,-56
+ 3955: -38,-56
+ 3956: -42,-57
+ 3957: -55,-57
+ 4089: -50,0
+ 4090: -50,2
+ 4091: -48,2
+ 4092: -46,2
+ 4093: -45,2
+ 4094: -44,0
+ 4095: -46,0
+ 4096: -48,0
+ 4128: -51,3
+ 4129: -49,3
+ 4130: -47,3
+ 4131: -45,3
+ 4132: -44,5
+ 4133: -46,5
+ 4134: -48,5
+ 4135: -50,5
+ 4136: -50,-1
+ 4137: -49,-1
+ 4138: -47,-1
+ 4139: -46,-1
+ 4140: -44,-1
+ 4141: -44,-3
+ 4142: -46,-3
+ 4143: -47,-3
+ 4144: -49,-3
+ 4145: -50,-3
+ 4146: -48,-3
+ 4147: -46,-3
+ 4148: -48,3
+ 4149: -46,3
+ 4229: -21,6
+ 4230: -21,7
+ 4231: -22,6
+ 4232: -21,7
+ 4429: 19,1
+ 4430: 21,1
+ 4431: 22,1
+ 4432: 23,1
+ 4433: 23,1
+ 4552: 40,-22
+ 4553: 41,-22
+ 4554: 43,-22
+ 4555: 44,-22
+ 4614: 61,-25
+ 4615: 62,-25
+ 4616: 62,-26
+ 4621: 68,-23
+ 4644: 68,-15
+ 4645: 68,-13
+ 4646: 68,-14
+ 4647: 67,-12
+ 4648: 70,-12
+ 4649: 70,-14
+ 4650: 68,-11
+ 4651: 71,-12
4652: 70,-14
- 4653: 68,-11
- 4654: 71,-12
- 4655: 70,-14
- 4656: 70,-15
- 4657: 71,-13
- 4658: 69,-13
- 4659: 69,-12
- 4660: 68,-10
- 4661: 67,-10
- 4662: 68,-8
- 4663: 69,-8
- 4664: 70,-9
- 4665: 70,-10
- 4739: 50,-10
- 4740: 49,-11
- 4741: 49,-10
- 4742: 50,-11
- 4743: 51,-11
- 4771: 39,-34
+ 4653: 70,-15
+ 4654: 71,-13
+ 4655: 69,-13
+ 4656: 69,-12
+ 4657: 68,-10
+ 4658: 67,-10
+ 4659: 68,-8
+ 4660: 69,-8
+ 4661: 70,-9
+ 4662: 70,-10
+ 4736: 50,-10
+ 4737: 49,-11
+ 4738: 49,-10
+ 4739: 50,-11
+ 4740: 51,-11
+ 4768: 39,-34
+ 4769: 40,-34
+ 4770: 39,-34
+ 4771: 42,-34
4772: 40,-34
- 4773: 39,-34
- 4774: 42,-34
- 4775: 40,-34
- 4776: 41,-33
- 4777: 34,-36
- 4778: 34,-35
- 4779: 35,-36
- 4780: 38,-37
- 4781: 43,-37
- 4782: 43,-37
- 4783: 46,-37
- 4784: 46,-35
- 4785: 46,-37
- 4786: 47,-37
- 4787: 48,-36
- 4788: 48,-37
- 4789: 46,-39
- 4790: 44,-39
- 4791: 41,-39
- 4792: 37,-39
- 4793: 35,-39
- 4794: 39,-38
- 4795: 33,-38
- 5099: -20,6
- 5100: -20,7
- 5101: -21,6
- 5102: -20,7
- 5103: -20,6
- 5104: -21,12
- 5105: -25,29
- 5106: -25,28
- 5107: -26,30
- 5108: -26,28
- 5109: -26,29
- 5133: -16,40
- 5134: -17,41
- 5135: -15,39
- 5136: -13,41
- 5137: -12,39
- 5191: -2,46
- 5192: -4,46
- 5193: -1,48
- 5194: 0,47
- 5195: -3,50
- 5196: 0,51
- 5197: 2,47
- 5198: 2,45
- 5199: 2,43
- 5200: 2,40
- 5201: -6,40
- 5202: -7,40
- 5203: -7,40
- 5204: -4,46
- 5205: -5,45
- 5206: -6,46
- 5207: 7,41
- 5208: 6,42
- 5209: 9,40
- 5210: 6,39
- 5211: 8,40
- 5212: 6,39
- 5213: 8,39
- 5214: 7,42
- 5215: 7,41
- 5216: 5,41
- 5247: 14,34
- 5248: 13,36
- 5249: 14,37
- 5250: 16,37
- 5251: 14,36
- 5252: 5,30
- 5253: 4,30
- 5254: 3,32
- 5255: 5,32
- 5256: 5,32
- 5257: 4,31
- 5258: 4,31
- 5259: 3,32
- 5260: 3,28
- 5261: 2,27
- 5262: 1,28
- 5263: 3,27
- 5264: 4,26
- 5265: 3,25
- 5266: 4,24
- 5267: 3,23
- 5268: 1,24
- 5269: 2,23
- 5287: -3,25
- 5288: -4,23
- 5289: -2,23
- 5290: -3,24
- 5291: 0,24
- 5292: 0,23
- 5293: -16,29
- 5294: -15,27
- 5295: -15,26
- 5296: -15,28
- 5297: -13,28
- 5298: -14,27
- 5299: -13,29
- 5300: -12,27
- 5301: -9,28
- 5302: -12,27
- 5303: -10,26
- 5304: -9,27
- 5305: -11,28
- 5306: -8,29
- 5307: -9,26
- 5308: -6,27
- 5309: -6,26
- 5310: -6,28
+ 4773: 41,-33
+ 4774: 34,-36
+ 4775: 34,-35
+ 4776: 35,-36
+ 4777: 38,-37
+ 4778: 43,-37
+ 4779: 43,-37
+ 4780: 46,-37
+ 4781: 46,-35
+ 4782: 46,-37
+ 4783: 47,-37
+ 4784: 48,-36
+ 4785: 48,-37
+ 4786: 46,-39
+ 4787: 44,-39
+ 4788: 41,-39
+ 4789: 37,-39
+ 4790: 35,-39
+ 4791: 39,-38
+ 4792: 33,-38
+ 5096: -20,6
+ 5097: -20,7
+ 5098: -21,6
+ 5099: -20,7
+ 5100: -20,6
+ 5101: -21,12
+ 5102: -25,29
+ 5103: -25,28
+ 5104: -26,30
+ 5105: -26,28
+ 5106: -26,29
+ 5130: -16,40
+ 5131: -17,41
+ 5132: -15,39
+ 5133: -13,41
+ 5134: -12,39
+ 5188: -2,46
+ 5189: -4,46
+ 5190: -1,48
+ 5191: 0,47
+ 5192: -3,50
+ 5193: 0,51
+ 5194: 2,47
+ 5195: 2,45
+ 5196: 2,43
+ 5197: 2,40
+ 5198: -6,40
+ 5199: -7,40
+ 5200: -7,40
+ 5201: -4,46
+ 5202: -5,45
+ 5203: -6,46
+ 5204: 7,41
+ 5205: 6,42
+ 5206: 9,40
+ 5207: 6,39
+ 5208: 8,40
+ 5209: 6,39
+ 5210: 8,39
+ 5211: 7,42
+ 5212: 7,41
+ 5213: 5,41
+ 5244: 14,34
+ 5245: 13,36
+ 5246: 14,37
+ 5247: 16,37
+ 5248: 14,36
+ 5249: 5,30
+ 5250: 4,30
+ 5251: 3,32
+ 5252: 5,32
+ 5253: 5,32
+ 5254: 4,31
+ 5255: 4,31
+ 5256: 3,32
+ 5257: 3,28
+ 5258: 2,27
+ 5259: 1,28
+ 5260: 3,27
+ 5261: 4,26
+ 5262: 3,25
+ 5263: 4,24
+ 5264: 3,23
+ 5265: 1,24
+ 5266: 2,23
+ 5284: -3,25
+ 5285: -4,23
+ 5286: -2,23
+ 5287: -3,24
+ 5288: 0,24
+ 5289: 0,23
+ 5290: -16,29
+ 5291: -15,27
+ 5292: -15,26
+ 5293: -15,28
+ 5294: -13,28
+ 5295: -14,27
+ 5296: -13,29
+ 5297: -12,27
+ 5298: -9,28
+ 5299: -12,27
+ 5300: -10,26
+ 5301: -9,27
+ 5302: -11,28
+ 5303: -8,29
+ 5304: -9,26
+ 5305: -6,27
+ 5306: -6,26
+ 5307: -6,28
+ 5308: -3,29
+ 5309: -4,27
+ 5310: -1,28
5311: -3,29
- 5312: -4,27
- 5313: -1,28
- 5314: -3,29
- 5315: -2,30
- 5316: -3,32
- 5317: -2,33
- 5318: -2,34
- 5319: -8,33
- 5320: -7,32
- 5321: -8,32
- 5322: -9,33
- 5323: -6,34
- 5324: -6,33
- 5325: -13,34
- 5396: -17,-28
- 5397: -19,-28
- 5398: -20,-27
- 5399: -20,-26
- 5400: -20,-27
- 5401: -15,-28
- 5402: -14,-28
- 5403: -14,-27
- 5404: -14,-29
- 5405: -17,-29
- 5470: -14,-38
- 5471: -14,-38
- 5489: -6,-37
- 5490: -5,-37
- 5491: -4,-37
- 5680: 78,-28
- 5681: 79,-28
- 5682: 78,-28
- 5683: 78,-27
- 5684: 78,-29
- 5750: 13,-45
- 5751: 12,-45
- 5752: 12,-50
- 5753: 12,-49
- 5754: 16,-49
- 5755: 15,-49
- 6632: 81,-34
- 6633: 82,-35
- 6634: 81,-35
- 6635: 81,-35
+ 5312: -2,30
+ 5313: -3,32
+ 5314: -2,33
+ 5315: -2,34
+ 5316: -8,33
+ 5317: -7,32
+ 5318: -8,32
+ 5319: -9,33
+ 5320: -6,34
+ 5321: -6,33
+ 5322: -13,34
+ 5393: -17,-28
+ 5394: -19,-28
+ 5395: -20,-27
+ 5396: -20,-26
+ 5397: -20,-27
+ 5398: -15,-28
+ 5399: -14,-28
+ 5400: -14,-27
+ 5401: -14,-29
+ 5402: -17,-29
+ 5467: -14,-38
+ 5468: -14,-38
+ 5486: -6,-37
+ 5487: -5,-37
+ 5488: -4,-37
+ 5677: 78,-28
+ 5678: 79,-28
+ 5679: 78,-28
+ 5680: 78,-27
+ 5681: 78,-29
+ 5747: 13,-45
+ 5748: 12,-45
+ 5749: 12,-50
+ 5750: 12,-49
+ 5751: 16,-49
+ 5752: 15,-49
+ 6622: 81,-34
+ 6623: 82,-35
+ 6624: 81,-35
+ 6625: 81,-35
- node:
cleanable: True
angle: 1.5707963267948966 rad
color: '#FFFFFFFF'
id: DirtHeavyMonotile
decals:
- 3262: -44,17
+ 3261: -44,17
- node:
cleanable: True
angle: 1.5707963267948966 rad
color: '#FFFFFFFF'
id: DirtLight
decals:
- 3261: -44,16
+ 3260: -44,16
- node:
cleanable: True
color: '#FFFFFFFF'
id: DirtMedium
decals:
- 4262: -16,11
- 4263: -17,12
+ 4259: -16,11
+ 4260: -17,12
- node:
cleanable: True
angle: 1.5707963267948966 rad
color: '#FFFFFFFF'
id: DirtMedium
decals:
- 3260: -44,15
+ 3259: -44,15
- node:
color: '#FFFFFFFF'
id: FlowersBROne
decals:
- 886: -47,-2
- 913: -50,-7
- 2177: 56,-22
+ 885: -47,-2
+ 912: -50,-7
+ 2176: 56,-22
- node:
color: '#FFFFFFFF'
id: FlowersBRThree
decals:
- 544: -30,5
+ 543: -30,5
- node:
cleanable: True
color: '#FFFFFFFF'
id: FlowersBRThree
decals:
- 3294: 80.70172,-6.173584
+ 3293: 80.70172,-6.173584
- node:
color: '#FFFFFFFF'
id: FlowersBRTwo
decals:
- 565: -24,6
- 884: -45,4
+ 564: -24,6
+ 883: -45,4
- node:
color: '#FFFFFFFF'
id: Flowersbr1
decals:
- 917: -45,-7
- 938: -49,-29
- 1543: -51,-49
+ 916: -45,-7
+ 937: -49,-29
+ 1542: -51,-49
- node:
color: '#FFFFFFFF'
id: Flowersbr3
decals:
- 1116: 42,-31
+ 1115: 42,-31
- node:
color: '#FFFFFFFF'
id: Flowerspv1
decals:
- 885: -49,-2
- 918: -51,-7
- 1544: -49,-49
+ 884: -49,-2
+ 917: -51,-7
+ 1543: -49,-49
- node:
cleanable: True
color: '#FFFFFFFF'
id: Flowerspv1
decals:
- 3295: 80.04127,-7.0725327
+ 3294: 80.04127,-7.0725327
- node:
color: '#FFFFFFFF'
id: Flowerspv3
decals:
- 543: -39,6
- 564: -24,4
- 915: -48,-9
- 1115: 42,-30
- 1977: 57,18
+ 542: -39,6
+ 563: -24,4
+ 914: -48,-9
+ 1114: 42,-30
+ 1976: 57,18
- node:
color: '#FFFFFFFF'
id: Flowersy1
decals:
- 2176: 55,-23
+ 2175: 55,-23
- node:
color: '#FFFFFFFF'
id: Flowersy2
decals:
- 542: -38,5
- 916: -45,-9
- 939: -48,-30
- 1545: -46,-49
+ 541: -38,5
+ 915: -45,-9
+ 938: -48,-30
+ 1544: -46,-49
- node:
cleanable: True
color: '#FFFFFFFF'
id: Flowersy2
decals:
- 3296: 81.08699,-7.6962934
+ 3295: 81.08699,-7.6962934
- node:
color: '#FFFFFFFF'
id: Flowersy3
decals:
- 883: -50,4
- 914: -47,-7
- 2503: 25,1
+ 882: -50,4
+ 913: -47,-7
+ 2502: 25,1
- node:
color: '#FFFFFFFF'
id: Flowersy4
decals:
- 545: -28,7
- 1959: 59,19
+ 544: -28,7
+ 1958: 59,19
- node:
cleanable: True
color: '#FFFFFFFF'
id: Grassa2
decals:
- 3284: 80,-6
+ 3283: 80,-6
- node:
color: '#FFFFFFFF'
id: Grassa3
decals:
- 905: -51,-7
+ 904: -51,-7
- node:
color: '#FFFFFFFF'
id: Grassa4
decals:
- 1537: -47,-49
- 2183: 53.52114,-21.634073
+ 1536: -47,-49
+ 2182: 53.52114,-21.634073
- node:
cleanable: True
color: '#FFFFFFFF'
id: Grassa4
decals:
- 3283: 80,-8
+ 3282: 80,-8
- node:
color: '#FFFFFFFF'
id: Grassa5
decals:
- 904: -49,-7
- 1538: -45,-49
- 2184: 57.536766,-22.899698
+ 903: -49,-7
+ 1537: -45,-49
+ 2183: 57.536766,-22.899698
- node:
color: '#FFFFFFFF'
id: Grassb1
decals:
- 908: -45,-8
+ 907: -45,-8
- node:
color: '#FFFFFFFF'
id: Grassb2
decals:
- 943: -49,-28
- 1960: 60,19
+ 942: -49,-28
+ 1959: 60,19
- node:
color: '#FFFFFFFF'
id: Grassb3
decals:
- 906: -51,-8
- 907: -45,-7
+ 905: -51,-8
+ 906: -45,-7
- node:
color: '#FFFFFFFF'
id: Grassb4
decals:
- 903: -48,-9
- 1536: -50,-49
- 2182: 54.661766,-23.446573
+ 902: -48,-9
+ 1535: -50,-49
+ 2181: 54.661766,-23.446573
- node:
color: '#FFFFFFFF'
id: Grassb5
decals:
- 909: -50,-9
+ 908: -50,-9
- node:
color: '#FFFFFFFF'
id: Grassc1
decals:
- 902: -46,-8
+ 901: -46,-8
- node:
cleanable: True
color: '#FFFFFFFF'
id: Grassc1
decals:
- 3286: 79.637665,-6.118546
+ 3285: 79.637665,-6.118546
- node:
color: '#FFFFFFFF'
id: Grassc2
decals:
- 901: -47,-7
+ 900: -47,-7
- node:
cleanable: True
color: '#FFFFFFFF'
id: Grassc2
decals:
- 3287: 81.362175,-7.1642623
+ 3286: 81.362175,-7.1642623
- node:
color: '#FFFFFFFF'
id: Grassc4
decals:
- 899: -51,-9
- 900: -49,-8
+ 898: -51,-9
+ 899: -49,-8
- node:
cleanable: True
color: '#FFFFFFFF'
id: Grassc4
decals:
- 3285: 79.56428,-7.366067
+ 3284: 79.56428,-7.366067
- node:
color: '#FFFFFFFF'
id: Grassd1
decals:
- 895: -50,-8
- 898: -47,-9
+ 894: -50,-8
+ 897: -47,-9
- node:
cleanable: True
color: '#FFFFFFFF'
id: Grassd1
decals:
- 3288: 79.14232,-8.063211
+ 3287: 79.14232,-8.063211
- node:
color: '#FFFFFFFF'
id: Grassd2
decals:
- 897: -45,-9
- 2186: 53.52114,-22.368448
+ 896: -45,-9
+ 2185: 53.52114,-22.368448
- node:
color: '#FFFFFFFF'
id: Grassd3
decals:
- 896: -48,-7
- 941: -48,-27
- 2187: 57.73989,-21.884073
+ 895: -48,-7
+ 940: -48,-27
+ 2186: 57.73989,-21.884073
- node:
cleanable: True
color: '#FFFFFFFF'
id: Grassd3
decals:
- 3289: 79.05059,-6.320351
- 3290: 80.53661,-6.6872687
+ 3288: 79.05059,-6.320351
+ 3289: 80.53661,-6.6872687
- node:
color: '#FFFFFFFF'
id: Grasse1
decals:
- 894: -46,-7
- 942: -47,-28
+ 893: -46,-7
+ 941: -47,-28
- node:
cleanable: True
color: '#FFFFFFFF'
id: Grasse1
decals:
- 3293: 81.784134,-6.4304266
+ 3292: 81.784134,-6.4304266
- node:
cleanable: True
color: '#FFFFFFFF'
id: Grasse2
decals:
- 3291: 80.518265,-8.02652
+ 3290: 80.518265,-8.02652
- node:
color: '#FFFFFFFF'
id: Grasse3
decals:
- 893: -50,-7
- 940: -47,-30
- 1978: 57,19
- 2185: 55.95864,-23.352823
+ 892: -50,-7
+ 939: -47,-30
+ 1977: 57,19
+ 2184: 55.95864,-23.352823
- node:
cleanable: True
color: '#FFFFFFFF'
id: Grasse3
decals:
- 3292: 80.72007,-6.0451627
+ 3291: 80.72007,-6.0451627
- node:
cleanable: True
color: '#52B4E996'
id: HalfTileOverlayGreyscale
decals:
- 1811: 44,7
+ 1810: 44,7
- node:
color: '#A4610696'
id: HalfTileOverlayGreyscale
decals:
- 582: -39,13
- 583: -38,13
- 584: -37,13
+ 581: -39,13
+ 582: -38,13
+ 583: -37,13
- node:
color: '#DE3A3A96'
id: HalfTileOverlayGreyscale
decals:
- 1195: 4,30
- 1196: 5,30
+ 1194: 4,30
+ 1195: 5,30
- node:
color: '#EFB34196'
id: HalfTileOverlayGreyscale
@@ -6521,42 +6532,42 @@ entities:
color: '#334E6DC8'
id: HalfTileOverlayGreyscale180
decals:
- 1031: 39,-35
- 1032: 36,-36
- 1033: 37,-36
- 1034: 38,-36
- 1035: 39,-36
- 1036: 40,-36
- 1037: 42,-36
- 1038: 41,-36
- 1039: 43,-36
- 1040: 44,-36
- 1043: 38,-35
- 1044: 37,-35
- 1045: 36,-35
- 1046: 41,-35
- 1047: 40,-35
- 1048: 42,-35
- 1049: 43,-35
- 1050: 44,-35
+ 1030: 39,-35
+ 1031: 36,-36
+ 1032: 37,-36
+ 1033: 38,-36
+ 1034: 39,-36
+ 1035: 40,-36
+ 1036: 42,-36
+ 1037: 41,-36
+ 1038: 43,-36
+ 1039: 44,-36
+ 1042: 38,-35
+ 1043: 37,-35
+ 1044: 36,-35
+ 1045: 41,-35
+ 1046: 40,-35
+ 1047: 42,-35
+ 1048: 43,-35
+ 1049: 44,-35
- node:
cleanable: True
color: '#52B4E996'
id: HalfTileOverlayGreyscale180
decals:
- 1814: 44,9
+ 1813: 44,9
- node:
color: '#A4610696'
id: HalfTileOverlayGreyscale180
decals:
- 568: -33,15
- 569: -32,15
+ 567: -33,15
+ 568: -32,15
- node:
color: '#DE3A3A96'
id: HalfTileOverlayGreyscale180
decals:
- 1197: 4,32
- 1198: 5,32
+ 1196: 4,32
+ 1197: 5,32
- node:
color: '#EFB34196'
id: HalfTileOverlayGreyscale180
@@ -6569,12 +6580,12 @@ entities:
color: '#52B4E996'
id: HalfTileOverlayGreyscale270
decals:
- 1812: 45,8
+ 1811: 45,8
- node:
color: '#DE3A3A96'
id: HalfTileOverlayGreyscale270
decals:
- 1194: 6,31
+ 1193: 6,31
- node:
color: '#EFB34196'
id: HalfTileOverlayGreyscale270
@@ -6585,22 +6596,22 @@ entities:
color: '#52B4E996'
id: HalfTileOverlayGreyscale90
decals:
- 1813: 43,8
+ 1812: 43,8
- node:
color: '#A4610696'
id: HalfTileOverlayGreyscale90
decals:
- 566: -34,14
- 567: -34,13
- 570: -31,16
- 571: -31,17
- 588: -34,11
- 589: -34,12
+ 565: -34,14
+ 566: -34,13
+ 569: -31,16
+ 570: -31,17
+ 587: -34,11
+ 588: -34,12
- node:
color: '#DE3A3A96'
id: HalfTileOverlayGreyscale90
decals:
- 1193: 3,31
+ 1192: 3,31
- node:
color: '#EFB34196'
id: HalfTileOverlayGreyscale90
@@ -6631,1209 +6642,1213 @@ entities:
color: '#FFFFFFFF'
id: LoadingArea
decals:
- 2028: 58,-24
- 2029: 58,-23
- 2432: -4,-36
- 2454: -56,-59
- 2455: -56,-66
+ 2027: 58,-24
+ 2028: 58,-23
+ 2431: -4,-36
+ 2453: -56,-59
+ 2454: -56,-66
- node:
color: '#FFFFFFFF'
id: LoadingArea
decals:
354: 39,-22
- 3423: 25,22
- 3424: 29,22
+ 3422: 25,22
+ 3423: 29,22
+ 6635: -44,24
- node:
angle: 1.5707963267948966 rad
color: '#FFFFFFFF'
id: LoadingArea
decals:
- 2470: -40,-59
- 2471: -40,-66
+ 2469: -40,-59
+ 2470: -40,-66
+ 6636: -45,23
- node:
angle: 3.141592653589793 rad
color: '#FFFFFFFF'
id: LoadingArea
decals:
353: 45,-22
- 2009: 63,-26
+ 2008: 63,-26
+ 6637: -44,22
- node:
angle: 4.71238898038469 rad
color: '#FFFFFFFF'
id: LoadingArea
decals:
- 1282: 23,12
+ 1281: 23,12
+ 6638: -43,23
- node:
color: '#52B4E996'
id: MiniTileCheckerAOverlay
decals:
- 2488: 13,25
- 2489: 14,25
- 2490: 15,25
- 2491: 15,24
- 2492: 15,23
- 2493: 14,23
- 2494: 14,24
- 2495: 13,24
- 2496: 13,23
+ 2487: 13,25
+ 2488: 14,25
+ 2489: 15,25
+ 2490: 15,24
+ 2491: 15,23
+ 2492: 14,23
+ 2493: 14,24
+ 2494: 13,24
+ 2495: 13,23
- node:
color: '#FFFFFFFF'
id: MiniTileDarkLineN
decals:
- 550: -24,20
- 551: -23,20
- 552: -22,20
- 553: -21,20
- 554: -20,20
+ 549: -24,20
+ 550: -23,20
+ 551: -22,20
+ 552: -21,20
+ 553: -20,20
- node:
cleanable: True
color: '#FFFFFFFF'
id: MiniTileDarkLineN
decals:
- 3561: -19,20
+ 3560: -19,20
- node:
color: '#FFFFFFFF'
id: MiniTileDarkLineS
decals:
- 555: -24,18
- 556: -23,18
- 557: -22,18
- 558: -20,18
- 559: -21,18
- 560: -19,18
+ 554: -24,18
+ 555: -23,18
+ 556: -22,18
+ 557: -20,18
+ 558: -21,18
+ 559: -19,18
- node:
color: '#9D9D97FF'
id: MiniTileWhiteCornerNe
decals:
- 2674: -43,-25
- 2760: -40,-46
+ 2673: -43,-25
+ 2759: -40,-46
- node:
color: '#9D9D97FF'
id: MiniTileWhiteCornerNw
decals:
- 2574: -26,-9
- 2618: -55,7
- 2759: -56,-46
- 2860: 27,-19
- 3070: -27,21
+ 2573: -26,-9
+ 2617: -55,7
+ 2758: -56,-46
+ 2859: 27,-19
+ 3069: -27,21
- node:
color: '#9D9D97FF'
id: MiniTileWhiteCornerSe
decals:
- 2562: -23,-11
- 2686: -46,-33
- 2690: -43,-32
+ 2561: -23,-11
+ 2685: -46,-33
+ 2689: -43,-32
- node:
color: '#9D9D97FF'
id: MiniTileWhiteCornerSw
decals:
- 2682: -52,-32
- 2685: -50,-33
- 2836: 7,-34
- 2940: 40,1
- 2969: 19,2
+ 2681: -52,-32
+ 2684: -50,-33
+ 2835: 7,-34
+ 2939: 40,1
+ 2968: 19,2
- node:
color: '#9D9D97FF'
id: MiniTileWhiteInnerNe
decals:
- 2537: -23,-30
- 2586: -25,9
- 2675: -44,-25
- 2805: -28,-30
- 3088: 77,-19
- 3089: 77,-15
+ 2536: -23,-30
+ 2585: -25,9
+ 2674: -44,-25
+ 2804: -28,-30
+ 3087: 77,-19
+ 3088: 77,-15
- node:
color: '#9D9D97FF'
id: MiniTileWhiteInnerNw
decals:
- 2575: -25,-9
- 2804: -41,-30
- 2852: 27,-25
- 2904: 57,-19
+ 2574: -25,-9
+ 2803: -41,-30
+ 2851: 27,-25
+ 2903: 57,-19
- node:
color: '#9D9D97FF'
id: MiniTileWhiteInnerSe
decals:
- 2561: -24,-11
- 2687: -46,-32
- 2693: -47,-33
- 2758: -54,-48
- 2803: -28,-27
- 2908: 59,-21
- 3086: 77,-13
- 3087: 77,-17
+ 2560: -24,-11
+ 2686: -46,-32
+ 2692: -47,-33
+ 2757: -54,-48
+ 2802: -28,-27
+ 2907: 59,-21
+ 3085: 77,-13
+ 3086: 77,-17
- node:
color: '#9D9D97FF'
id: MiniTileWhiteInnerSw
decals:
- 2684: -50,-32
- 2694: -49,-33
- 2757: -42,-48
- 2802: -41,-27
- 2834: 7,-32
- 2913: 52,-21
- 2939: 41,1
- 2941: 40,2
- 3009: 19,19
+ 2683: -50,-32
+ 2693: -49,-33
+ 2756: -42,-48
+ 2801: -41,-27
+ 2833: 7,-32
+ 2912: 52,-21
+ 2938: 41,1
+ 2940: 40,2
+ 3008: 19,19
- node:
color: '#9D9D97FF'
id: MiniTileWhiteLineE
decals:
- 2538: -23,-29
- 2539: -24,-25
- 2540: -24,-24
+ 2537: -23,-29
+ 2538: -24,-25
+ 2539: -24,-24
+ 2540: -24,-23
2541: -24,-23
- 2542: -24,-23
+ 2542: -24,-20
2543: -24,-20
2544: -24,-20
- 2545: -24,-20
+ 2545: -24,-21
2546: -24,-21
- 2547: -24,-21
- 2548: -24,-20
+ 2547: -24,-20
+ 2548: -24,-19
2549: -24,-19
2550: -24,-19
- 2551: -24,-19
+ 2551: -24,-17
2552: -24,-17
- 2553: -24,-17
+ 2553: -24,-16
2554: -24,-16
2555: -24,-16
- 2556: -24,-16
- 2557: -24,-15
+ 2556: -24,-15
+ 2557: -24,-14
2558: -24,-14
- 2559: -24,-14
- 2560: -24,-13
- 2563: -23,-10
- 2564: -23,-9
- 2565: -23,-8
- 2576: -25,4
- 2577: -25,5
- 2578: -25,6
- 2579: -25,7
- 2591: -43,0
- 2592: -43,1
- 2593: -43,2
- 2594: -43,3
- 2595: -43,-1
- 2634: -53,-6
+ 2559: -24,-13
+ 2562: -23,-10
+ 2563: -23,-9
+ 2564: -23,-8
+ 2575: -25,4
+ 2576: -25,5
+ 2577: -25,6
+ 2578: -25,7
+ 2590: -43,0
+ 2591: -43,1
+ 2592: -43,2
+ 2593: -43,3
+ 2594: -43,-1
+ 2633: -53,-6
+ 2634: -53,-7
2635: -53,-7
- 2636: -53,-7
- 2637: -53,-8
+ 2636: -53,-8
+ 2637: -53,-9
2638: -53,-9
- 2639: -53,-9
- 2640: -53,-10
- 2641: -53,-12
+ 2639: -53,-10
+ 2640: -53,-12
+ 2648: -53,-13
2649: -53,-13
- 2650: -53,-13
+ 2650: -53,-15
2651: -53,-15
2652: -53,-15
- 2653: -53,-15
- 2655: -53,-14
- 2656: -53,-16
- 2657: -53,-17
- 2658: -53,-18
- 2664: -44,-20
- 2665: -44,-21
+ 2654: -53,-14
+ 2655: -53,-16
+ 2656: -53,-17
+ 2657: -53,-18
+ 2663: -44,-20
+ 2664: -44,-21
+ 2665: -44,-22
2666: -44,-22
- 2667: -44,-22
+ 2667: -44,-23
2668: -44,-23
- 2669: -44,-23
- 2670: -44,-24
- 2671: -43,-25
- 2672: -43,-26
- 2673: -43,-27
- 2691: -43,-31
- 2692: -43,-30
- 2697: -47,-35
+ 2669: -44,-24
+ 2670: -43,-25
+ 2671: -43,-26
+ 2672: -43,-27
+ 2690: -43,-31
+ 2691: -43,-30
+ 2696: -47,-35
+ 2697: -47,-36
2698: -47,-36
- 2699: -47,-36
- 2700: -47,-38
- 2701: -47,-39
- 2702: -47,-40
- 2713: -47,-41
+ 2699: -47,-38
+ 2700: -47,-39
+ 2701: -47,-40
+ 2712: -47,-41
+ 2713: -47,-42
2714: -47,-42
- 2715: -47,-42
- 2716: -47,-43
+ 2715: -47,-43
+ 2716: -47,-44
2717: -47,-44
- 2718: -47,-44
- 2769: -40,-47
- 2770: -40,-48
+ 2768: -40,-47
+ 2769: -40,-48
+ 2770: -40,-50
2771: -40,-50
- 2772: -40,-50
+ 2772: -40,-51
2773: -40,-51
2774: -40,-51
- 2775: -40,-51
- 2776: -40,-52
+ 2775: -40,-52
+ 2776: -40,-53
2777: -40,-53
2778: -40,-53
- 2779: -40,-53
- 2780: -40,-54
+ 2779: -40,-54
+ 2780: -54,-51
2781: -54,-51
- 2782: -54,-51
+ 2782: -54,-52
2783: -54,-52
- 2784: -54,-52
+ 2784: -54,-53
2785: -54,-53
- 2786: -54,-53
- 2787: -54,-54
- 2798: -28,-29
- 2799: -28,-28
- 2909: 59,-22
- 2914: 43,-17
- 2915: 43,-16
+ 2786: -54,-54
+ 2797: -28,-29
+ 2798: -28,-28
+ 2908: 59,-22
+ 2913: 43,-17
+ 2914: 43,-16
+ 2915: 43,-15
2916: 43,-15
- 2917: 43,-15
- 2923: 43,-12
- 2924: 43,-11
- 2989: 21,10
+ 2922: 43,-12
+ 2923: 43,-11
+ 2988: 21,10
+ 2989: 21,11
2990: 21,11
- 2991: 21,11
+ 2991: 21,12
2992: 21,12
2993: 21,12
- 2994: 21,12
- 2995: 21,13
- 2996: 21,14
- 2997: 21,15
- 3084: 77,-14
- 3085: 77,-18
- 3422: -54,-50
+ 2994: 21,13
+ 2995: 21,14
+ 2996: 21,15
+ 3083: 77,-14
+ 3084: 77,-18
+ 3421: -54,-50
- node:
color: '#9D9D97FF'
id: MiniTileWhiteLineN
decals:
- 2531: -22,-30
- 2532: -21,-30
+ 2530: -22,-30
+ 2531: -21,-30
+ 2532: -20,-30
2533: -20,-30
- 2534: -20,-30
- 2535: -18,-30
- 2536: -19,-30
- 2580: -19,9
- 2581: -20,9
- 2582: -21,9
- 2583: -22,9
- 2584: -24,9
- 2585: -23,9
- 2605: -51,7
- 2606: -50,7
- 2607: -49,7
- 2608: -48,7
+ 2534: -18,-30
+ 2535: -19,-30
+ 2579: -19,9
+ 2580: -20,9
+ 2581: -21,9
+ 2582: -22,9
+ 2583: -24,9
+ 2584: -23,9
+ 2604: -51,7
+ 2605: -50,7
+ 2606: -49,7
+ 2607: -48,7
+ 2608: -47,7
2609: -47,7
- 2610: -47,7
- 2611: -46,7
- 2612: -45,7
- 2613: -42,7
- 2614: -43,7
- 2615: -54,7
- 2616: -55,7
- 2617: -53,7
- 2719: -54,-46
- 2720: -51,-46
+ 2610: -46,7
+ 2611: -45,7
+ 2612: -42,7
+ 2613: -43,7
+ 2614: -54,7
+ 2615: -55,7
+ 2616: -53,7
+ 2718: -54,-46
+ 2719: -51,-46
+ 2720: -50,-46
2721: -50,-46
- 2722: -50,-46
- 2723: -51,-46
- 2724: -53,-46
+ 2722: -51,-46
+ 2723: -53,-46
+ 2724: -54,-46
2725: -54,-46
- 2726: -54,-46
- 2727: -53,-46
- 2728: -52,-46
- 2729: -54,-46
- 2730: -55,-46
- 2731: -46,-46
+ 2726: -53,-46
+ 2727: -52,-46
+ 2728: -54,-46
+ 2729: -55,-46
+ 2730: -46,-46
+ 2731: -45,-46
2732: -45,-46
- 2733: -45,-46
+ 2733: -44,-46
2734: -44,-46
- 2735: -44,-46
+ 2735: -43,-46
2736: -43,-46
- 2737: -43,-46
+ 2737: -42,-46
2738: -42,-46
- 2739: -42,-46
- 2740: -41,-46
- 2824: -11,-30
+ 2739: -41,-46
+ 2823: -11,-30
+ 2824: -10,-30
2825: -10,-30
- 2826: -10,-30
- 2850: 25,-25
- 2851: 26,-25
- 2861: 28,-19
+ 2849: 25,-25
+ 2850: 26,-25
+ 2860: 28,-19
+ 2861: 29,-19
2862: 29,-19
- 2863: 29,-19
+ 2863: 31,-19
2864: 31,-19
- 2865: 31,-19
+ 2865: 32,-19
2866: 32,-19
2867: 32,-19
- 2868: 32,-19
+ 2868: 34,-19
2869: 34,-19
2870: 34,-19
- 2871: 34,-19
- 2872: 33,-19
+ 2871: 33,-19
+ 2872: 35,-19
2873: 35,-19
- 2874: 35,-19
+ 2874: 36,-19
2875: 36,-19
- 2876: 36,-19
+ 2876: 37,-19
2877: 37,-19
- 2878: 37,-19
+ 2878: 39,-19
2879: 39,-19
- 2880: 39,-19
+ 2880: 40,-19
2881: 40,-19
2882: 40,-19
- 2883: 40,-19
- 2884: 41,-19
+ 2883: 41,-19
+ 2884: 42,-19
2885: 42,-19
- 2886: 42,-19
- 2887: 43,-19
+ 2886: 43,-19
+ 2887: 44,-19
2888: 44,-19
- 2889: 44,-19
- 2890: 45,-19
+ 2889: 45,-19
+ 2890: 47,-19
2891: 47,-19
- 2892: 47,-19
- 2893: 48,-19
+ 2892: 48,-19
+ 2893: 49,-19
2894: 49,-19
- 2895: 49,-19
- 2896: 50,-19
- 2897: 51,-19
+ 2895: 50,-19
+ 2896: 51,-19
+ 2897: 52,-19
2898: 52,-19
- 2899: 52,-19
- 2900: 54,-19
- 2901: 55,-19
- 2902: 56,-19
- 2903: 53,-19
- 2946: 37,4
- 2947: 35,4
- 2948: 34,4
- 2949: 33,4
+ 2899: 54,-19
+ 2900: 55,-19
+ 2901: 56,-19
+ 2902: 53,-19
+ 2945: 37,4
+ 2946: 35,4
+ 2947: 34,4
+ 2948: 33,4
+ 2949: 32,4
2950: 32,4
- 2951: 32,4
- 2952: 31,4
- 3012: 20,21
+ 2951: 31,4
+ 3011: 20,21
+ 3012: 19,21
3013: 19,21
- 3014: 19,21
- 3015: 18,21
+ 3014: 18,21
+ 3015: 16,21
3016: 16,21
3017: 16,21
3018: 16,21
- 3019: 16,21
- 3020: 15,21
+ 3019: 15,21
+ 3020: 13,21
3021: 13,21
- 3022: 13,21
- 3023: 12,21
- 3024: 11,21
+ 3022: 12,21
+ 3023: 11,21
+ 3024: 10,21
3025: 10,21
- 3026: 10,21
- 3027: 9,21
- 3028: 8,21
- 3067: -26,21
- 3077: 66,-17
- 3078: 68,-17
- 3079: 67,-17
- 3080: 69,-17
+ 3026: 9,21
+ 3027: 8,21
+ 3066: -26,21
+ 3076: 66,-17
+ 3077: 68,-17
+ 3078: 67,-17
+ 3079: 69,-17
+ 3080: 70,-17
3081: 70,-17
- 3082: 70,-17
- 3083: 71,-17
+ 3082: 71,-17
- node:
color: '#9D9D97FF'
id: MiniTileWhiteLineS
decals:
- 2521: -25,-32
- 2522: -23,-32
- 2523: -24,-32
+ 2520: -25,-32
+ 2521: -23,-32
+ 2522: -24,-32
+ 2523: -22,-32
2524: -22,-32
- 2525: -22,-32
- 2526: -21,-32
+ 2525: -21,-32
+ 2526: -19,-32
2527: -19,-32
- 2528: -19,-32
+ 2528: -18,-32
2529: -18,-32
- 2530: -18,-32
- 2596: -45,-5
- 2597: -46,-5
- 2598: -47,-5
+ 2595: -45,-5
+ 2596: -46,-5
+ 2597: -47,-5
+ 2598: -48,-5
2599: -48,-5
- 2600: -48,-5
+ 2600: -50,-5
2601: -50,-5
- 2602: -50,-5
- 2603: -49,-5
- 2604: -51,-5
- 2683: -51,-32
- 2688: -45,-32
- 2689: -44,-32
- 2741: -53,-48
- 2742: -52,-48
- 2743: -51,-48
+ 2602: -49,-5
+ 2603: -51,-5
+ 2682: -51,-32
+ 2687: -45,-32
+ 2688: -44,-32
+ 2740: -53,-48
+ 2741: -52,-48
+ 2742: -51,-48
+ 2743: -50,-48
2744: -50,-48
- 2745: -50,-48
- 2746: -49,-48
+ 2745: -49,-48
+ 2746: -50,-48
2747: -50,-48
- 2748: -50,-48
+ 2748: -48,-48
2749: -48,-48
- 2750: -48,-48
+ 2750: -47,-48
2751: -47,-48
- 2752: -47,-48
- 2753: -46,-48
- 2754: -45,-48
- 2755: -44,-48
- 2756: -43,-48
- 2806: -16,-32
+ 2752: -46,-48
+ 2753: -45,-48
+ 2754: -44,-48
+ 2755: -43,-48
+ 2805: -16,-32
+ 2806: -14,-32
2807: -14,-32
2808: -14,-32
- 2809: -14,-32
- 2810: -15,-32
+ 2809: -15,-32
+ 2810: -14,-32
2811: -14,-32
- 2812: -14,-32
- 2813: -13,-32
+ 2812: -13,-32
+ 2813: -12,-32
2814: -12,-32
- 2815: -12,-32
+ 2815: -11,-32
2816: -11,-32
- 2817: -11,-32
+ 2817: -10,-32
2818: -10,-32
- 2819: -10,-32
- 2820: -7,-32
- 2821: -6,-32
+ 2819: -7,-32
+ 2820: -6,-32
+ 2821: -5,-32
2822: -5,-32
- 2823: -5,-32
- 2827: -4,-32
+ 2826: -4,-32
+ 2827: -3,-32
2828: -3,-32
2829: -3,-32
- 2830: -3,-32
- 2831: -2,-32
- 2832: 3,-32
- 2833: 6,-32
- 2837: 8,-34
+ 2830: -2,-32
+ 2831: 3,-32
+ 2832: 6,-32
+ 2836: 8,-34
+ 2837: 9,-34
2838: 9,-34
- 2839: 9,-34
+ 2839: 11,-34
2840: 11,-34
- 2841: 11,-34
+ 2841: 12,-34
2842: 12,-34
- 2843: 12,-34
+ 2843: 13,-34
2844: 13,-34
- 2845: 13,-34
- 2846: 14,-34
+ 2845: 14,-34
+ 2846: 15,-34
2847: 15,-34
- 2848: 15,-34
- 2849: 16,-34
- 2907: 60,-21
- 2942: 38,2
- 2943: 36,2
- 2944: 37,2
- 2945: 38,2
- 2953: 34,2
- 2954: 33,2
- 2955: 32,2
+ 2848: 16,-34
+ 2906: 60,-21
+ 2941: 38,2
+ 2942: 36,2
+ 2943: 37,2
+ 2944: 38,2
+ 2952: 34,2
+ 2953: 33,2
+ 2954: 32,2
+ 2955: 31,2
2956: 31,2
- 2957: 31,2
- 2958: 27,2
+ 2957: 27,2
+ 2958: 26,2
2959: 26,2
- 2960: 26,2
- 2961: 25,2
- 2962: 24,2
+ 2960: 25,2
+ 2961: 24,2
+ 2962: 23,2
2963: 23,2
- 2964: 23,2
+ 2964: 21,2
2965: 21,2
- 2966: 21,2
- 2967: 22,2
- 2968: 20,2
- 3010: 18,19
- 3011: 16,19
- 3029: 14,19
- 3030: 13,19
- 3031: 12,19
- 3032: 11,19
+ 2966: 22,2
+ 2967: 20,2
+ 3009: 18,19
+ 3010: 16,19
+ 3028: 14,19
+ 3029: 13,19
+ 3030: 12,19
+ 3031: 11,19
+ 3032: 10,19
3033: 10,19
- 3034: 10,19
+ 3034: 9,19
3035: 9,19
- 3036: 9,19
- 3037: 8,19
+ 3036: 8,19
+ 3037: 6,19
3038: 6,19
- 3039: 6,19
- 3040: 7,19
- 3041: 5,19
+ 3039: 7,19
+ 3040: 5,19
+ 3041: 0,19
3042: 0,19
- 3043: 0,19
+ 3043: -1,19
3044: -1,19
- 3045: -1,19
- 3046: -2,19
+ 3045: -2,19
+ 3046: -3,19
3047: -3,19
- 3048: -3,19
- 3049: -4,19
- 3050: -5,19
+ 3048: -4,19
+ 3049: -5,19
+ 3050: -6,19
3051: -6,19
- 3052: -6,19
+ 3052: -7,19
3053: -7,19
- 3054: -7,19
+ 3054: -8,19
3055: -8,19
3056: -8,19
- 3057: -8,19
+ 3057: -11,19
3058: -11,19
- 3059: -11,19
+ 3059: -13,19
3060: -13,19
- 3061: -13,19
- 3062: -14,19
- 3063: -12,19
+ 3061: -14,19
+ 3062: -12,19
+ 3063: -16,19
3064: -16,19
- 3065: -16,19
- 3066: -18,19
- 3071: 66,-19
- 3072: 67,-19
- 3073: 68,-19
- 3074: 69,-19
- 3075: 70,-19
- 3076: 71,-19
- 3319: 1,19
- 3320: 2,19
+ 3065: -18,19
+ 3070: 66,-19
+ 3071: 67,-19
+ 3072: 68,-19
+ 3073: 69,-19
+ 3074: 70,-19
+ 3075: 71,-19
+ 3318: 1,19
+ 3319: 2,19
- node:
color: '#9D9D97FF'
id: MiniTileWhiteLineW
decals:
- 2504: -26,-21
- 2505: -26,-20
- 2506: -26,-18
- 2507: -26,-19
- 2508: -26,-17
- 2513: -26,-25
- 2514: -26,-24
- 2515: -26,-27
- 2516: -26,-26
- 2517: -26,-28
- 2518: -26,-29
- 2519: -26,-30
- 2520: -26,-31
- 2566: -25,-8
- 2567: -26,-10
- 2568: -26,-11
- 2569: -26,-16
+ 2503: -26,-21
+ 2504: -26,-20
+ 2505: -26,-18
+ 2506: -26,-19
+ 2507: -26,-17
+ 2512: -26,-25
+ 2513: -26,-24
+ 2514: -26,-27
+ 2515: -26,-26
+ 2516: -26,-28
+ 2517: -26,-29
+ 2518: -26,-30
+ 2519: -26,-31
+ 2565: -25,-8
+ 2566: -26,-10
+ 2567: -26,-11
+ 2568: -26,-16
+ 2569: -26,-15
2570: -26,-15
- 2571: -26,-15
- 2572: -26,-14
- 2573: -26,-13
- 2587: -27,7
- 2588: -27,8
- 2589: -27,6
- 2590: -27,5
- 2619: -55,5
- 2620: -55,3
- 2621: -55,2
- 2622: -55,1
- 2623: -55,0
- 2624: -55,-1
- 2625: -55,-3
+ 2571: -26,-14
+ 2572: -26,-13
+ 2586: -27,7
+ 2587: -27,8
+ 2588: -27,6
+ 2589: -27,5
+ 2618: -55,5
+ 2619: -55,3
+ 2620: -55,2
+ 2621: -55,1
+ 2622: -55,0
+ 2623: -55,-1
+ 2624: -55,-3
+ 2625: -55,-6
2626: -55,-6
- 2627: -55,-6
+ 2627: -55,-7
2628: -55,-7
- 2629: -55,-7
- 2630: -55,-8
+ 2629: -55,-8
+ 2630: -55,-9
2631: -55,-9
- 2632: -55,-9
- 2633: -55,-11
- 2642: -55,-10
- 2643: -55,-11
- 2644: -55,-12
+ 2632: -55,-11
+ 2641: -55,-10
+ 2642: -55,-11
+ 2643: -55,-12
+ 2644: -55,-13
2645: -55,-13
- 2646: -55,-13
+ 2646: -55,-15
2647: -55,-15
- 2648: -55,-15
- 2654: -55,-14
- 2659: -55,-16
- 2660: -55,-17
- 2661: -55,-18
- 2662: -55,-20
- 2663: -55,-21
- 2676: -52,-28
- 2677: -52,-29
+ 2653: -55,-14
+ 2658: -55,-16
+ 2659: -55,-17
+ 2660: -55,-18
+ 2661: -55,-20
+ 2662: -55,-21
+ 2675: -52,-28
+ 2676: -52,-29
+ 2677: -52,-30
2678: -52,-30
- 2679: -52,-30
- 2680: -52,-31
- 2681: -52,-32
- 2695: -49,-35
- 2696: -49,-36
+ 2679: -52,-31
+ 2680: -52,-32
+ 2694: -49,-35
+ 2695: -49,-36
+ 2702: -49,-38
2703: -49,-38
- 2704: -49,-38
- 2705: -49,-39
+ 2704: -49,-39
+ 2705: -49,-40
2706: -49,-40
- 2707: -49,-40
- 2708: -49,-41
- 2709: -49,-42
+ 2707: -49,-41
+ 2708: -49,-42
+ 2709: -49,-43
2710: -49,-43
- 2711: -49,-43
- 2712: -49,-44
+ 2711: -49,-44
+ 2760: -42,-50
2761: -42,-50
- 2762: -42,-50
+ 2762: -42,-51
2763: -42,-51
- 2764: -42,-51
+ 2764: -42,-52
2765: -42,-52
- 2766: -42,-52
- 2767: -42,-53
- 2768: -42,-54
- 2788: -56,-54
- 2789: -56,-53
+ 2766: -42,-53
+ 2767: -42,-54
+ 2787: -56,-54
+ 2788: -56,-53
+ 2789: -56,-52
2790: -56,-52
- 2791: -56,-52
+ 2791: -56,-51
2792: -56,-51
- 2793: -56,-51
+ 2793: -56,-48
2794: -56,-48
- 2795: -56,-48
- 2796: -56,-47
- 2797: -56,-50
- 2800: -41,-29
- 2801: -41,-28
- 2835: 7,-33
+ 2795: -56,-47
+ 2796: -56,-50
+ 2799: -41,-29
+ 2800: -41,-28
+ 2834: 7,-33
+ 2852: 27,-23
2853: 27,-23
2854: 27,-23
- 2855: 27,-23
- 2856: 27,-22
- 2857: 27,-24
- 2858: 27,-21
- 2859: 27,-20
- 2905: 57,-18
- 2906: 57,-17
- 2910: 52,-24
- 2911: 52,-23
- 2912: 52,-22
- 2918: 41,-17
- 2919: 41,-16
- 2920: 41,-15
- 2921: 41,-12
- 2922: 41,-11
- 2925: 41,-9
- 2926: 41,-8
+ 2855: 27,-22
+ 2856: 27,-24
+ 2857: 27,-21
+ 2858: 27,-20
+ 2904: 57,-18
+ 2905: 57,-17
+ 2909: 52,-24
+ 2910: 52,-23
+ 2911: 52,-22
+ 2917: 41,-17
+ 2918: 41,-16
+ 2919: 41,-15
+ 2920: 41,-12
+ 2921: 41,-11
+ 2924: 41,-9
+ 2925: 41,-8
+ 2926: 41,-7
2927: 41,-7
- 2928: 41,-7
- 2929: 41,-6
+ 2928: 41,-6
+ 2929: 41,-5
2930: 41,-5
- 2931: 41,-5
- 2932: 41,-4
+ 2931: 41,-4
+ 2932: 41,-3
2933: 41,-3
- 2934: 41,-3
+ 2934: 41,-1
2935: 41,-1
2936: 41,-1
- 2937: 41,-1
- 2938: 41,-2
- 2970: 19,3
+ 2937: 41,-2
+ 2969: 19,3
+ 2970: 19,4
2971: 19,4
2972: 19,4
- 2973: 19,4
+ 2973: 19,5
2974: 19,5
- 2975: 19,5
- 2976: 19,7
+ 2975: 19,7
+ 2976: 19,8
2977: 19,8
2978: 19,8
- 2979: 19,8
+ 2979: 19,10
2980: 19,10
- 2981: 19,10
- 2982: 19,11
+ 2981: 19,11
+ 2982: 19,10
2983: 19,10
- 2984: 19,10
- 2985: 19,12
- 2986: 19,10
+ 2984: 19,12
+ 2985: 19,10
+ 2986: 19,9
2987: 19,9
- 2988: 19,9
- 2998: 19,13
+ 2997: 19,13
+ 2998: 19,14
2999: 19,14
3000: 19,14
- 3001: 19,14
+ 3001: 19,15
3002: 19,15
3003: 19,15
- 3004: 19,15
+ 3004: 19,16
3005: 19,16
- 3006: 19,16
+ 3006: 19,18
3007: 19,18
- 3008: 19,18
- 3068: -27,20
- 3069: -27,18
+ 3067: -27,20
+ 3068: -27,18
- node:
cleanable: True
color: '#52B4E996'
id: MonoOverlay
decals:
- 1815: 44,8
+ 1814: 44,8
- node:
color: '#334E6DC8'
id: QuarterTileOverlayGreyscale
decals:
- 1041: 36,-36
+ 1040: 36,-36
- node:
cleanable: True
color: '#52B4E996'
id: QuarterTileOverlayGreyscale
decals:
- 1819: 43,9
+ 1818: 43,9
- node:
color: '#9FED5896'
id: QuarterTileOverlayGreyscale
decals:
- 1568: -27,11
- 1569: -27,15
- 1570: -27,16
- 1571: -27,12
- 1572: -27,13
- 1573: -27,14
- 1679: -52,-26
- 1680: -52,-27
- 1681: -52,-25
- 1682: -52,-24
+ 1567: -27,11
+ 1568: -27,15
+ 1569: -27,16
+ 1570: -27,12
+ 1571: -27,13
+ 1572: -27,14
+ 1678: -52,-26
+ 1679: -52,-27
+ 1680: -52,-25
+ 1681: -52,-24
- node:
color: '#D4D4D428'
id: QuarterTileOverlayGreyscale
decals:
- 1593: -17,-30
- 1594: -16,-30
- 1595: -15,-30
- 1596: -14,-30
- 1597: -13,-30
- 1659: 5,-27
- 1660: 5,-28
- 1661: 5,-29
- 1662: 5,-30
- 1663: 3,-30
- 1664: 2,-30
- 1665: 1,-30
- 1666: 0,-30
- 1667: -1,-30
- 1668: -3,-30
- 1669: -2,-30
- 1670: -4,-30
- 1671: -5,-30
- 1672: -6,-30
- 1673: -7,-30
- 1674: -8,-30
- 1711: 6,21
- 1712: 5,21
- 1713: 2,21
- 1714: 1,21
- 1715: 0,21
- 1716: -1,21
- 1717: -4,21
- 1718: -5,21
- 1719: -6,21
- 1720: -7,21
- 1721: -8,21
- 1722: -11,21
- 1723: -12,21
- 1724: -13,21
- 1725: -14,21
- 1726: -15,21
- 1727: -16,21
- 1741: 28,4
- 1742: 27,4
- 1743: 23,4
- 1744: 22,4
- 2155: 57,-17
- 2156: 58,-17
- 2157: 59,-17
- 2158: 60,-17
- 2159: 61,-17
- 2415: -1,-33
+ 1592: -17,-30
+ 1593: -16,-30
+ 1594: -15,-30
+ 1595: -14,-30
+ 1596: -13,-30
+ 1658: 5,-27
+ 1659: 5,-28
+ 1660: 5,-29
+ 1661: 5,-30
+ 1662: 3,-30
+ 1663: 2,-30
+ 1664: 1,-30
+ 1665: 0,-30
+ 1666: -1,-30
+ 1667: -3,-30
+ 1668: -2,-30
+ 1669: -4,-30
+ 1670: -5,-30
+ 1671: -6,-30
+ 1672: -7,-30
+ 1673: -8,-30
+ 1710: 6,21
+ 1711: 5,21
+ 1712: 2,21
+ 1713: 1,21
+ 1714: 0,21
+ 1715: -1,21
+ 1716: -4,21
+ 1717: -5,21
+ 1718: -6,21
+ 1719: -7,21
+ 1720: -8,21
+ 1721: -11,21
+ 1722: -12,21
+ 1723: -13,21
+ 1724: -14,21
+ 1725: -15,21
+ 1726: -16,21
+ 1740: 28,4
+ 1741: 27,4
+ 1742: 23,4
+ 1743: 22,4
+ 2154: 57,-17
+ 2155: 58,-17
+ 2156: 59,-17
+ 2157: 60,-17
+ 2158: 61,-17
+ 2414: -1,-33
- node:
cleanable: True
color: '#D4D4D428'
id: QuarterTileOverlayGreyscale
decals:
- 1790: 38,4
- 1791: 40,4
- 1792: 41,4
- 1793: 42,4
- 1794: 43,4
+ 1789: 38,4
+ 1790: 40,4
+ 1791: 41,4
+ 1792: 42,4
+ 1793: 43,4
- node:
color: '#DE3A3A96'
id: QuarterTileOverlayGreyscale
decals:
- 1201: 6,30
- 1675: -51,-20
- 1676: -50,-20
- 1677: -49,-20
- 1678: -48,-20
+ 1200: 6,30
+ 1674: -51,-20
+ 1675: -50,-20
+ 1676: -49,-20
+ 1677: -48,-20
- node:
color: '#EFB34196'
id: QuarterTileOverlayGreyscale
decals:
- 1617: 12,-32
- 1618: 11,-32
- 1619: 13,-32
- 1620: 14,-32
- 1621: 15,-32
- 1622: 16,-32
- 1623: 17,-32
- 1624: 19,-32
- 1625: 19,-30
- 1626: 19,-29
- 1627: 19,-27
- 1628: 19,-26
- 1629: 19,-25
- 1630: 20,-25
- 1631: 21,-25
- 1632: 22,-25
- 1633: 23,-25
- 1634: 24,-25
- 1646: 19,-31
+ 1616: 12,-32
+ 1617: 11,-32
+ 1618: 13,-32
+ 1619: 14,-32
+ 1620: 15,-32
+ 1621: 16,-32
+ 1622: 17,-32
+ 1623: 19,-32
+ 1624: 19,-30
+ 1625: 19,-29
+ 1626: 19,-27
+ 1627: 19,-26
+ 1628: 19,-25
+ 1629: 20,-25
+ 1630: 21,-25
+ 1631: 22,-25
+ 1632: 23,-25
+ 1633: 24,-25
+ 1645: 19,-31
- node:
color: '#334E6DC8'
id: QuarterTileOverlayGreyscale180
decals:
- 1753: 37,-21
- 1754: 50,-21
- 1755: 34,-21
- 1756: 36,-21
- 1757: 35,-21
- 2166: 51,-21
- 2263: 29,-21
- 2264: 29,-22
- 2265: 29,-23
- 2266: 29,-24
- 2267: 29,-25
- 2268: 29,-26
- 2269: 29,-27
- 2270: 28,-27
- 2271: 27,-27
- 2272: 26,-27
- 2273: 25,-27
- 2274: 24,-27
- 2275: 23,-27
- 2276: 21,-27
- 2277: 21,-29
- 2278: 21,-30
- 2279: 21,-31
- 2280: 21,-32
- 2281: 21,-33
- 2282: 21,-34
- 2283: 20,-34
- 2284: 19,-34
+ 1752: 37,-21
+ 1753: 50,-21
+ 1754: 34,-21
+ 1755: 36,-21
+ 1756: 35,-21
+ 2165: 51,-21
+ 2262: 29,-21
+ 2263: 29,-22
+ 2264: 29,-23
+ 2265: 29,-24
+ 2266: 29,-25
+ 2267: 29,-26
+ 2268: 29,-27
+ 2269: 28,-27
+ 2270: 27,-27
+ 2271: 26,-27
+ 2272: 25,-27
+ 2273: 24,-27
+ 2274: 23,-27
+ 2275: 21,-27
+ 2276: 21,-29
+ 2277: 21,-30
+ 2278: 21,-31
+ 2279: 21,-32
+ 2280: 21,-33
+ 2281: 21,-34
+ 2282: 20,-34
+ 2283: 19,-34
- node:
cleanable: True
color: '#52B4E996'
id: QuarterTileOverlayGreyscale180
decals:
- 1818: 45,7
+ 1817: 45,7
- node:
color: '#A4610696'
id: QuarterTileOverlayGreyscale180
decals:
- 586: -34,15
+ 585: -34,15
- node:
color: '#D4D4D428'
id: QuarterTileOverlayGreyscale180
decals:
- 1581: -25,11
- 1582: -25,12
- 1583: -25,13
- 1584: -25,14
- 1585: -25,15
- 1586: -25,16
- 1587: -25,17
- 1745: 21,5
- 1746: 21,7
- 1747: 21,8
- 1748: 21,9
- 1749: 21,16
- 1750: 21,18
- 1751: 21,19
- 1752: 21,20
- 2160: 61,-17
- 2161: 61,-18
- 2162: 61,-19
- 2163: 61,-20
- 2164: 61,-21
- 2411: -1,-33
- 2412: 0,-33
- 2413: 1,-33
- 2414: 2,-33
+ 1580: -25,11
+ 1581: -25,12
+ 1582: -25,13
+ 1583: -25,14
+ 1584: -25,15
+ 1585: -25,16
+ 1586: -25,17
+ 1744: 21,5
+ 1745: 21,7
+ 1746: 21,8
+ 1747: 21,9
+ 1748: 21,16
+ 1749: 21,18
+ 1750: 21,19
+ 1751: 21,20
+ 2159: 61,-17
+ 2160: 61,-18
+ 2161: 61,-19
+ 2162: 61,-20
+ 2163: 61,-21
+ 2410: -1,-33
+ 2411: 0,-33
+ 2412: 1,-33
+ 2413: 2,-33
- node:
cleanable: True
color: '#D4D4D428'
id: QuarterTileOverlayGreyscale180
decals:
- 1795: 43,4
- 1796: 43,3
- 1797: 43,2
- 1798: 43,1
- 1799: 43,-1
- 1800: 43,-2
- 1801: 43,-3
- 1802: 43,-4
- 1803: 43,-5
- 1804: 43,-6
- 1805: 43,-7
- 1806: 43,-9
- 1807: 43,-8
- 1808: 43,-10
+ 1794: 43,4
+ 1795: 43,3
+ 1796: 43,2
+ 1797: 43,1
+ 1798: 43,-1
+ 1799: 43,-2
+ 1800: 43,-3
+ 1801: 43,-4
+ 1802: 43,-5
+ 1803: 43,-6
+ 1804: 43,-7
+ 1805: 43,-9
+ 1806: 43,-8
+ 1807: 43,-10
- node:
color: '#DE3A3A96'
id: QuarterTileOverlayGreyscale180
decals:
- 1202: 3,32
+ 1201: 3,32
- node:
color: '#EFB34196'
id: QuarterTileOverlayGreyscale180
decals:
- 1613: 9,-27
- 1614: 9,-29
- 1615: 9,-30
- 1616: 9,-31
+ 1612: 9,-27
+ 1613: 9,-29
+ 1614: 9,-30
+ 1615: 9,-31
- node:
color: '#52B4E996'
id: QuarterTileOverlayGreyscale270
decals:
- 1640: 19,-25
- 1641: 19,-26
- 1642: 19,-27
- 1643: 19,-29
- 1644: 19,-30
+ 1639: 19,-25
+ 1640: 19,-26
+ 1641: 19,-27
+ 1642: 19,-29
+ 1643: 19,-30
- node:
cleanable: True
color: '#52B4E996'
id: QuarterTileOverlayGreyscale270
decals:
- 1817: 43,7
+ 1816: 43,7
- node:
color: '#D4D4D428'
id: QuarterTileOverlayGreyscale270
decals:
- 1574: -27,11
- 1575: -27,12
- 1576: -27,13
- 1577: -27,14
- 1578: -27,15
- 1579: -27,16
- 1580: -27,17
- 1645: 19,-31
- 1683: -52,-27
- 1684: -52,-26
- 1685: -52,-25
- 1686: -52,-24
- 1687: -52,-23
- 1758: 34,-21
- 1759: 35,-21
- 1760: 36,-21
- 1761: 37,-21
- 1762: 50,-21
- 2167: 51,-21
- 2285: 19,-34
- 2286: 20,-34
- 2287: 21,-34
- 2294: 23,-27
- 2295: 24,-27
- 2296: 25,-27
- 2297: 26,-27
- 2298: 27,-27
- 2299: 28,-27
- 2300: 29,-27
+ 1573: -27,11
+ 1574: -27,12
+ 1575: -27,13
+ 1576: -27,14
+ 1577: -27,15
+ 1578: -27,16
+ 1579: -27,17
+ 1644: 19,-31
+ 1682: -52,-27
+ 1683: -52,-26
+ 1684: -52,-25
+ 1685: -52,-24
+ 1686: -52,-23
+ 1757: 34,-21
+ 1758: 35,-21
+ 1759: 36,-21
+ 1760: 37,-21
+ 1761: 50,-21
+ 2166: 51,-21
+ 2284: 19,-34
+ 2285: 20,-34
+ 2286: 21,-34
+ 2293: 23,-27
+ 2294: 24,-27
+ 2295: 25,-27
+ 2296: 26,-27
+ 2297: 27,-27
+ 2298: 28,-27
+ 2299: 29,-27
- node:
color: '#DE3A3A96'
id: QuarterTileOverlayGreyscale270
decals:
- 1199: 6,32
+ 1198: 6,32
- node:
color: '#EFB34196'
id: QuarterTileOverlayGreyscale270
decals:
- 1610: 5,-29
- 1611: 5,-28
- 1612: 5,-27
- 2406: -1,-33
- 2407: 1,-33
- 2408: 0,-33
- 2409: 2,-33
+ 1609: 5,-29
+ 1610: 5,-28
+ 1611: 5,-27
+ 2405: -1,-33
+ 2406: 1,-33
+ 2407: 0,-33
+ 2408: 2,-33
- node:
color: '#334E6DC8'
id: QuarterTileOverlayGreyscale90
decals:
- 1042: 44,-36
+ 1041: 44,-36
- node:
color: '#52B4E996'
id: QuarterTileOverlayGreyscale90
decals:
- 1635: 19,-25
- 1636: 20,-25
- 1637: 21,-25
- 1638: 22,-25
- 1639: 23,-25
+ 1634: 19,-25
+ 1635: 20,-25
+ 1636: 21,-25
+ 1637: 22,-25
+ 1638: 23,-25
- node:
cleanable: True
color: '#52B4E996'
id: QuarterTileOverlayGreyscale90
decals:
- 1772: 43,3
- 1773: 43,2
- 1774: 43,1
- 1775: 43,-1
- 1776: 43,-2
- 1777: 43,-3
- 1778: 43,-4
- 1779: 43,-5
- 1780: 43,-6
- 1781: 43,-7
- 1782: 43,-8
- 1783: 43,-9
- 1784: 43,-10
- 1785: 43,4
- 1786: 41,4
- 1787: 42,4
- 1788: 40,4
- 1789: 38,4
- 1816: 45,9
+ 1771: 43,3
+ 1772: 43,2
+ 1773: 43,1
+ 1774: 43,-1
+ 1775: 43,-2
+ 1776: 43,-3
+ 1777: 43,-4
+ 1778: 43,-5
+ 1779: 43,-6
+ 1780: 43,-7
+ 1781: 43,-8
+ 1782: 43,-9
+ 1783: 43,-10
+ 1784: 43,4
+ 1785: 41,4
+ 1786: 42,4
+ 1787: 40,4
+ 1788: 38,4
+ 1815: 45,9
- node:
color: '#79150096'
id: QuarterTileOverlayGreyscale90
decals:
- 1562: -25,11
- 1563: -25,12
- 1564: -25,13
- 1565: -25,15
- 1566: -25,14
- 1567: -25,16
+ 1561: -25,11
+ 1562: -25,12
+ 1563: -25,13
+ 1564: -25,15
+ 1565: -25,14
+ 1566: -25,16
- node:
color: '#9FED5896'
id: QuarterTileOverlayGreyscale90
decals:
- 1588: -16,-30
- 1589: -15,-30
- 1590: -14,-30
- 1591: -13,-30
- 1592: -17,-30
+ 1587: -16,-30
+ 1588: -15,-30
+ 1589: -14,-30
+ 1590: -13,-30
+ 1591: -17,-30
- node:
color: '#A4610696'
id: QuarterTileOverlayGreyscale90
decals:
- 1728: 21,20
- 1729: 21,19
- 1730: 21,18
- 1731: 21,16
- 1732: 21,9
- 1733: 21,8
- 1734: 21,7
- 1735: 21,5
- 1736: 21,4
- 1737: 22,4
- 1738: 23,4
- 1739: 27,4
- 1740: 28,4
+ 1727: 21,20
+ 1728: 21,19
+ 1729: 21,18
+ 1730: 21,16
+ 1731: 21,9
+ 1732: 21,8
+ 1733: 21,7
+ 1734: 21,5
+ 1735: 21,4
+ 1736: 22,4
+ 1737: 23,4
+ 1738: 27,4
+ 1739: 28,4
- node:
color: '#D381C996'
id: QuarterTileOverlayGreyscale90
decals:
- 2147: 61,-17
- 2148: 60,-17
- 2149: 59,-17
- 2150: 58,-17
- 2151: 61,-18
- 2152: 61,-19
- 2153: 61,-20
- 2154: 61,-21
- 2165: 57,-17
+ 2146: 61,-17
+ 2147: 60,-17
+ 2148: 59,-17
+ 2149: 58,-17
+ 2150: 61,-18
+ 2151: 61,-19
+ 2152: 61,-20
+ 2153: 61,-21
+ 2164: 57,-17
- node:
color: '#D4D4D428'
id: QuarterTileOverlayGreyscale90
decals:
- 1647: 17,-32
- 1648: 16,-32
- 1649: 15,-32
- 1650: 14,-32
- 1651: 13,-32
- 1652: 12,-32
- 1653: 11,-32
- 1654: 9,-32
- 1655: 9,-31
- 1656: 9,-30
- 1657: 9,-29
- 1658: 9,-27
- 1688: -51,-20
- 1689: -50,-20
- 1690: -49,-20
- 1691: -48,-20
- 1692: -52,-20
- 1693: -62,-22
- 2288: 21,-34
- 2289: 21,-33
- 2290: 21,-32
- 2291: 21,-31
- 2292: 21,-30
- 2293: 21,-29
- 2301: 29,-27
- 2302: 29,-26
- 2303: 29,-25
- 2304: 29,-24
- 2305: 29,-23
- 2306: 29,-22
+ 1646: 17,-32
+ 1647: 16,-32
+ 1648: 15,-32
+ 1649: 14,-32
+ 1650: 13,-32
+ 1651: 12,-32
+ 1652: 11,-32
+ 1653: 9,-32
+ 1654: 9,-31
+ 1655: 9,-30
+ 1656: 9,-29
+ 1657: 9,-27
+ 1687: -51,-20
+ 1688: -50,-20
+ 1689: -49,-20
+ 1690: -48,-20
+ 1691: -52,-20
+ 1692: -62,-22
+ 2287: 21,-34
+ 2288: 21,-33
+ 2289: 21,-32
+ 2290: 21,-31
+ 2291: 21,-30
+ 2292: 21,-29
+ 2300: 29,-27
+ 2301: 29,-26
+ 2302: 29,-25
+ 2303: 29,-24
+ 2304: 29,-23
+ 2305: 29,-22
- node:
color: '#DE3A3A96'
id: QuarterTileOverlayGreyscale90
decals:
- 1200: 3,30
- 1694: -16,21
- 1695: -15,21
- 1696: -14,21
- 1697: -13,21
- 1698: -12,21
- 1699: -11,21
- 1700: -8,21
- 1701: -7,21
- 1702: -6,21
- 1703: -5,21
- 1704: -4,21
- 1705: -1,21
- 1706: 0,21
- 1707: 1,21
- 1708: 2,21
- 1709: 5,21
- 1710: 6,21
+ 1199: 3,30
+ 1693: -16,21
+ 1694: -15,21
+ 1695: -14,21
+ 1696: -13,21
+ 1697: -12,21
+ 1698: -11,21
+ 1699: -8,21
+ 1700: -7,21
+ 1701: -6,21
+ 1702: -5,21
+ 1703: -4,21
+ 1704: -1,21
+ 1705: 0,21
+ 1706: 1,21
+ 1707: 2,21
+ 1708: 5,21
+ 1709: 6,21
- node:
color: '#EFB34196'
id: QuarterTileOverlayGreyscale90
decals:
- 1598: -8,-30
- 1599: -7,-30
- 1600: -6,-30
- 1601: -5,-30
- 1602: -4,-30
- 1603: -3,-30
- 1604: -2,-30
- 1605: 0,-30
- 1606: -1,-30
- 1607: 1,-30
- 1608: 2,-30
- 1609: 3,-30
- 2410: 2,-33
+ 1597: -8,-30
+ 1598: -7,-30
+ 1599: -6,-30
+ 1600: -5,-30
+ 1601: -4,-30
+ 1602: -3,-30
+ 1603: -2,-30
+ 1604: 0,-30
+ 1605: -1,-30
+ 1606: 1,-30
+ 1607: 2,-30
+ 1608: 3,-30
+ 2409: 2,-33
- node:
color: '#FFFFFFFF'
id: Rock01
decals:
- 1539: -52,-49
+ 1538: -52,-49
- node:
color: '#FFFFFFFF'
id: Rock03
decals:
- 910: -49,-9
- 1540: -47,-49
+ 909: -49,-9
+ 1539: -47,-49
- node:
color: '#FFFFFFFF'
id: Rock04
decals:
- 888: -47,4
+ 887: -47,4
- node:
color: '#FFFFFFFF'
id: Rock05
decals:
- 887: -49,-2
+ 886: -49,-2
- node:
color: '#FFFFFFFF'
id: Rock06
decals:
- 890: -51,4
- 912: -46,-7
- 1542: -46,-49
- 1961: 58,19
+ 889: -51,4
+ 911: -46,-7
+ 1541: -46,-49
+ 1960: 58,19
- node:
color: '#FFFFFFFF'
id: Rock07
decals:
- 889: -46,-2
- 911: -50,-8
- 1541: -51,-49
- 1962: 61,19
+ 888: -46,-2
+ 910: -50,-8
+ 1540: -51,-49
+ 1961: 61,19
- node:
cleanable: True
color: '#FFFFFFFF'
id: Rust
decals:
- 3203: -5,-39
- 3204: -7,-40
- 3205: -6,-41
- 3206: -7,-41
- 3207: -8,-39
- 3208: -8,-42
+ 3202: -5,-39
+ 3203: -7,-40
+ 3204: -6,-41
+ 3205: -7,-41
+ 3206: -8,-39
+ 3207: -8,-42
- node:
color: '#FFFFFFFF'
id: SpaceStationSign1
@@ -7873,7 +7888,7 @@ entities:
color: '#DE3A3A96'
id: ThreeQuarterTileOverlayGreyscale
decals:
- 1149: -3,24
+ 1148: -3,24
- node:
color: '#EFB34196'
id: ThreeQuarterTileOverlayGreyscale
@@ -7883,12 +7898,12 @@ entities:
color: '#A4610696'
id: ThreeQuarterTileOverlayGreyscale180
decals:
- 572: -31,15
+ 571: -31,15
- node:
color: '#DE3A3A96'
id: ThreeQuarterTileOverlayGreyscale180
decals:
- 1148: -2,23
+ 1147: -2,23
- node:
color: '#EFB34196'
id: ThreeQuarterTileOverlayGreyscale180
@@ -7898,7 +7913,7 @@ entities:
color: '#DE3A3A96'
id: ThreeQuarterTileOverlayGreyscale270
decals:
- 1147: -3,23
+ 1146: -3,23
- node:
color: '#EFB34196'
id: ThreeQuarterTileOverlayGreyscale270
@@ -7908,7 +7923,7 @@ entities:
color: '#DE3A3A96'
id: ThreeQuarterTileOverlayGreyscale90
decals:
- 1146: -2,24
+ 1145: -2,24
- node:
color: '#EFB34196'
id: ThreeQuarterTileOverlayGreyscale90
@@ -7918,53 +7933,53 @@ entities:
color: '#FFFFFFB1'
id: VentSmall
decals:
- 3137: -36,22
+ 3136: -36,22
- node:
color: '#EFB34196'
id: WarnCornerNE
decals:
- 1492: 47,16
+ 1491: 47,16
- node:
color: '#FFFFFFFF'
id: WarnCornerNE
decals:
- 1190: 6,32
+ 1189: 6,32
- node:
color: '#EFB34196'
id: WarnCornerNW
decals:
- 1491: 45,16
+ 1490: 45,16
- node:
color: '#FFFFFFFF'
id: WarnCornerNW
decals:
- 1189: 3,32
+ 1188: 3,32
- node:
color: '#EFB34196'
id: WarnCornerSE
decals:
280: 29,-14
- 1490: 47,14
+ 1489: 47,14
- node:
color: '#EFB34196'
id: WarnCornerSW
decals:
219: 13,-22
- 1489: 45,14
+ 1488: 45,14
- node:
cleanable: True
color: '#52B4E996'
id: WarnCornerSmallGreyscaleSE
decals:
- 1934: 49,-11
- 1935: 52,-11
+ 1933: 49,-11
+ 1934: 52,-11
- node:
cleanable: True
color: '#52B4E996'
id: WarnCornerSmallGreyscaleSW
decals:
- 1932: 49,-11
- 1933: 52,-11
+ 1931: 49,-11
+ 1932: 52,-11
- node:
color: '#EFB34196'
id: WarnCornerSmallNE
@@ -7975,21 +7990,21 @@ entities:
color: '#EFB341A1'
id: WarnCornerSmallNE
decals:
- 6578: 14,39
+ 6572: 14,39
- node:
color: '#FFFFFFFF'
id: WarnCornerSmallNE
decals:
- 1326: 25,23
- 1327: 29,23
- 2315: 11,-47
+ 1325: 25,23
+ 1326: 29,23
+ 2314: 11,-47
- node:
cleanable: True
color: '#FFFFFFFF'
id: WarnCornerSmallNE
decals:
- 1941: 51,-11
- 1947: 51,13
+ 1940: 51,-11
+ 1946: 51,13
- node:
color: '#EFB34196'
id: WarnCornerSmallNW
@@ -8001,15 +8016,15 @@ entities:
color: '#EFB341A1'
id: WarnCornerSmallNW
decals:
- 6579: 16,39
+ 6573: 16,39
- node:
color: '#FFFFFFFF'
id: WarnCornerSmallNW
decals:
- 1086: 39,-1
- 1328: 25,23
- 1329: 29,23
- 2316: 14,-47
+ 1085: 39,-1
+ 1327: 25,23
+ 1328: 29,23
+ 2315: 14,-47
- node:
color: '#EFB34196'
id: WarnCornerSmallSE
@@ -8023,18 +8038,18 @@ entities:
color: '#EFB341A1'
id: WarnCornerSmallSE
decals:
- 6577: 14,42
+ 6571: 14,42
- node:
color: '#FFFFFFFF'
id: WarnCornerSmallSE
decals:
- 1448: 55,-33
+ 1447: 55,-33
- node:
cleanable: True
color: '#FFFFFFFF'
id: WarnCornerSmallSE
decals:
- 1946: 51,15
+ 1945: 51,15
- node:
color: '#EFB34196'
id: WarnCornerSmallSW
@@ -8046,7 +8061,7 @@ entities:
color: '#EFB341A1'
id: WarnCornerSmallSW
decals:
- 6576: 16,42
+ 6570: 16,42
- node:
color: '#EFB34196'
id: WarnLineE
@@ -8075,62 +8090,63 @@ entities:
281: 29,-13
282: 29,-12
283: 29,-11
- 1496: 47,15
+ 1495: 47,15
- node:
cleanable: True
color: '#EFB341A1'
id: WarnLineE
decals:
- 6574: 14,41
- 6575: 14,40
+ 6568: 14,41
+ 6569: 14,40
- node:
color: '#FFFFFFFF'
id: WarnLineE
decals:
- 1191: 6,31
- 1192: 6,30
- 1443: 55,-36
- 1444: 55,-34
- 1445: 55,-35
- 2089: 73,-14
- 2090: 73,-15
- 2091: 73,-17
- 2092: 73,-16
- 2093: 73,-18
- 2094: 73,-19
+ 1190: 6,31
+ 1191: 6,30
+ 1442: 55,-36
+ 1443: 55,-34
+ 1444: 55,-35
+ 2088: 73,-14
+ 2089: 73,-15
+ 2090: 73,-17
+ 2091: 73,-16
+ 2092: 73,-18
+ 2093: 73,-19
+ 6634: -45,23
- node:
cleanable: True
color: '#FFFFFFFF'
id: WarnLineE
decals:
- 1940: 51,-10
- 1945: 51,14
+ 1939: 51,-10
+ 1944: 51,14
- node:
cleanable: True
color: '#52B4E996'
id: WarnLineGreyscaleE
decals:
- 1916: 49,-12
- 1917: 49,-13
- 1918: 49,-14
- 1919: 49,-15
- 1920: 52,-12
- 1921: 52,-13
- 1922: 52,-14
- 1923: 52,-15
+ 1915: 49,-12
+ 1916: 49,-13
+ 1917: 49,-14
+ 1918: 49,-15
+ 1919: 52,-12
+ 1920: 52,-13
+ 1921: 52,-14
+ 1922: 52,-15
- node:
cleanable: True
color: '#52B4E996'
id: WarnLineGreyscaleW
decals:
- 1924: 52,-12
- 1925: 52,-13
- 1926: 52,-14
- 1927: 52,-15
- 1928: 49,-12
- 1929: 49,-13
- 1930: 49,-15
- 1931: 49,-14
+ 1923: 52,-12
+ 1924: 52,-13
+ 1925: 52,-14
+ 1926: 52,-15
+ 1927: 49,-12
+ 1928: 49,-13
+ 1929: 49,-15
+ 1930: 49,-14
- node:
color: '#EFB34196'
id: WarnLineN
@@ -8148,38 +8164,39 @@ entities:
273: 26,-14
274: 27,-14
275: 28,-14
- 1493: 46,14
+ 1492: 46,14
- node:
cleanable: True
color: '#EFB341A1'
id: WarnLineN
decals:
- 6573: 15,42
+ 6567: 15,42
- node:
color: '#FFFFFFFF'
id: WarnLineN
decals:
- 1446: 56,-33
- 1447: 57,-33
- 2134: 69,-30
- 2135: 68,-30
- 2136: 70,-30
- 2137: 71,-30
- 2210: 23,-38
- 2211: 24,-38
- 2212: 25,-38
- 2307: 11,-48
- 2308: 12,-48
- 2309: 14,-48
- 2310: 13,-48
- 2311: 15,-48
- 2312: 16,-48
- 2370: 0,-38
- 2371: 1,-38
- 2372: 2,-38
- 2376: 7,-45
- 2377: 8,-45
- 2378: 9,-45
+ 1445: 56,-33
+ 1446: 57,-33
+ 2133: 69,-30
+ 2134: 68,-30
+ 2135: 70,-30
+ 2136: 71,-30
+ 2209: 23,-38
+ 2210: 24,-38
+ 2211: 25,-38
+ 2306: 11,-48
+ 2307: 12,-48
+ 2308: 14,-48
+ 2309: 13,-48
+ 2310: 15,-48
+ 2311: 16,-48
+ 2369: 0,-38
+ 2370: 1,-38
+ 2371: 2,-38
+ 2375: 7,-45
+ 2376: 8,-45
+ 2377: 9,-45
+ 6631: -44,24
- node:
color: '#EFB34196'
id: WarnLineS
@@ -8208,28 +8225,29 @@ entities:
277: 16,-11
278: 16,-10
279: 16,-9
- 1494: 45,15
+ 1493: 45,15
- node:
cleanable: True
color: '#EFB341A1'
id: WarnLineS
decals:
- 6570: 16,40
- 6571: 16,41
+ 6565: 16,40
+ 6566: 16,41
- node:
color: '#FFFFFFFF'
id: WarnLineS
decals:
- 2008: 61,-24
- 2021: 61,-23
- 2238: 26,-43
- 2239: 26,-46
+ 2007: 61,-24
+ 2020: 61,-23
+ 2237: 26,-43
+ 2238: 26,-46
+ 6632: -43,23
- node:
cleanable: True
color: '#FFFFFFFF'
id: WarnLineS
decals:
- 1948: 57,14
+ 1947: 57,14
- node:
color: '#EFB34196'
id: WarnLineW
@@ -8242,76 +8260,82 @@ entities:
27: 6,-14
234: -2,-22
235: -1,-22
- 1495: 46,16
+ 1494: 46,16
- node:
cleanable: True
color: '#EFB341A1'
id: WarnLineW
decals:
- 6569: 15,39
+ 6564: 15,39
- node:
color: '#FFFFFFFF'
id: WarnLineW
decals:
- 1075: 36,-1
- 1076: 37,-1
- 1085: 38,-1
- 1187: 4,32
- 1188: 5,32
- 1320: 30,23
- 1321: 31,23
- 1322: 23,23
- 1323: 24,23
- 1324: 26,23
- 1325: 28,23
- 2039: 68,-11
- 2040: 69,-11
- 2041: 70,-11
- 2130: 68,-29
- 2131: 70,-29
- 2132: 69,-29
- 2133: 71,-29
- 2207: 23,-37
- 2208: 25,-37
- 2209: 24,-37
- 2258: 28,-38
- 2259: 29,-38
- 2313: 12,-47
- 2314: 13,-47
- 2399: 9,-39
- 2400: 10,-39
- 2401: 8,-39
- 2402: 11,-39
- 2416: -5,-35
- 2430: -6,-35
- 2431: -4,-35
+ 1074: 36,-1
+ 1075: 37,-1
+ 1084: 38,-1
+ 1186: 4,32
+ 1187: 5,32
+ 1319: 30,23
+ 1320: 31,23
+ 1321: 23,23
+ 1322: 24,23
+ 1323: 26,23
+ 1324: 28,23
+ 2038: 68,-11
+ 2039: 69,-11
+ 2040: 70,-11
+ 2129: 68,-29
+ 2130: 70,-29
+ 2131: 69,-29
+ 2132: 71,-29
+ 2206: 23,-37
+ 2207: 25,-37
+ 2208: 24,-37
+ 2257: 28,-38
+ 2258: 29,-38
+ 2312: 12,-47
+ 2313: 13,-47
+ 2398: 9,-39
+ 2399: 10,-39
+ 2400: 8,-39
+ 2401: 11,-39
+ 2415: -5,-35
+ 2429: -6,-35
+ 2430: -4,-35
+ 6633: -44,22
- node:
cleanable: True
color: '#FFFFFFFF'
id: WarnLineW
decals:
- 1938: 52,-11
- 1939: 53,-11
+ 1937: 52,-11
+ 1938: 53,-11
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinBox
+ decals:
+ 6630: -44,23
- node:
color: '#FFFFFFFF'
id: WoodTrimThinCornerNe
decals:
404: -18,-13
- 1002: 44,-29
+ 1001: 44,-29
- node:
color: '#FFFFFFFF'
id: WoodTrimThinCornerNw
decals:
381: -22,7
- 1001: 40,-29
- 3311: -28,-46
+ 1000: 40,-29
+ 3310: -28,-46
- node:
color: '#FFFFFFFF'
id: WoodTrimThinCornerSe
decals:
403: -18,-16
503: -32,5
- 3315: -31,-45
+ 3314: -31,-45
- node:
color: '#FFFFFFFF'
id: WoodTrimThinCornerSw
@@ -8328,11 +8352,11 @@ entities:
463: -35,-5
464: -30,-5
465: -40,-5
- 524: -38,3
- 658: -39,-16
- 864: -52,5
- 1186: -15,31
- 1964: 60,18
+ 523: -38,3
+ 657: -39,-16
+ 863: -52,5
+ 1185: -15,31
+ 1963: 60,18
- node:
color: '#FFFFFFFF'
id: WoodTrimThinInnerNw
@@ -8340,11 +8364,11 @@ entities:
429: -30,5
461: -35,-5
462: -30,-5
- 523: -30,3
- 525: -25,-5
- 862: -43,-1
- 863: -43,5
- 1105: -59,-29
+ 522: -30,3
+ 524: -25,-5
+ 861: -43,-1
+ 862: -43,5
+ 1104: -59,-29
- node:
color: '#FFFFFFFF'
id: WoodTrimThinInnerSe
@@ -8352,22 +8376,22 @@ entities:
346: 43,-25
365: -24,8
386: -22,-1
- 581: -33,14
- 657: -39,-13
- 861: -52,-3
+ 580: -33,14
+ 656: -39,-13
+ 860: -52,-3
- node:
color: '#FFFFFFFF'
id: WoodTrimThinInnerSw
decals:
- 580: -28,14
- 600: -37,-18
- 859: -43,3
- 860: -43,-3
- 969: -50.00212,-30.877844
- 970: -45.158802,-30.877844
- 971: -45.158802,-25.282345
- 972: -50.020466,-25.282345
- 1104: -59,-25
+ 579: -28,14
+ 599: -37,-18
+ 858: -43,3
+ 859: -43,-3
+ 968: -50.00212,-30.877844
+ 969: -45.158802,-30.877844
+ 970: -45.158802,-25.282345
+ 971: -50.020466,-25.282345
+ 1103: -59,-25
- node:
color: '#FFFFFFFF'
id: WoodTrimThinLineE
@@ -8397,37 +8421,37 @@ entities:
511: -32,7
514: -38,5
515: -38,4
- 547: -19,17
- 548: -19,21
- 573: -33,12
- 574: -33,13
- 585: -33,11
- 644: -39,-15
- 645: -39,-14
- 959: -46,-26
- 960: -46,-27
- 961: -46,-28
- 962: -46,-29
- 963: -46,-30
- 964: -46,-31
- 984: 36,-31
- 985: 36,-30
- 986: 36,-29
- 1008: 44,-31
- 1009: 44,-30
- 1180: -15,32
- 1181: -15,33
- 1182: -15,34
- 1339: 33,15
- 1387: 33,12
- 1388: 33,13
- 1389: 33,14
- 1963: 60,19
- 2109: 69,-24
- 2110: 69,-23
- 2111: 69,-22
- 2112: 69,-21
- 3312: -30,-46
+ 546: -19,17
+ 547: -19,21
+ 572: -33,12
+ 573: -33,13
+ 584: -33,11
+ 643: -39,-15
+ 644: -39,-14
+ 958: -46,-26
+ 959: -46,-27
+ 960: -46,-28
+ 961: -46,-29
+ 962: -46,-30
+ 963: -46,-31
+ 983: 36,-31
+ 984: 36,-30
+ 985: 36,-29
+ 1007: 44,-31
+ 1008: 44,-30
+ 1179: -15,32
+ 1180: -15,33
+ 1181: -15,34
+ 1338: 33,15
+ 1386: 33,12
+ 1387: 33,13
+ 1388: 33,14
+ 1962: 60,19
+ 2108: 69,-24
+ 2109: 69,-23
+ 2110: 69,-22
+ 2111: 69,-21
+ 3311: -30,-46
- node:
color: '#FFFFFFFF'
id: WoodTrimThinLineN
@@ -8461,78 +8485,79 @@ entities:
460: -39,-5
516: -37,3
517: -36,3
- 519: -33,3
- 520: -34,3
- 521: -32,3
- 522: -31,3
- 633: -38,-16
- 634: -37,-16
- 635: -36,-16
- 636: -35,-16
- 637: -34,-16
- 638: -33,-16
- 639: -32,-16
- 640: -31,-16
- 641: -29,-16
- 642: -30,-16
- 643: -28,-16
- 755: -40,-33
- 756: -39,-33
- 757: -30,-33
- 758: -29,-33
- 763: -26,-40
- 764: -25,-40
- 765: -24,-40
- 766: -23,-40
- 767: -21,-40
- 768: -22,-40
+ 518: -33,3
+ 519: -34,3
+ 520: -32,3
+ 521: -31,3
+ 632: -38,-16
+ 633: -37,-16
+ 634: -36,-16
+ 635: -35,-16
+ 636: -34,-16
+ 637: -33,-16
+ 638: -32,-16
+ 639: -31,-16
+ 640: -29,-16
+ 641: -30,-16
+ 642: -28,-16
+ 754: -40,-33
+ 755: -39,-33
+ 756: -30,-33
+ 757: -29,-33
+ 762: -26,-40
+ 763: -25,-40
+ 764: -24,-40
+ 765: -23,-40
+ 766: -21,-40
+ 767: -22,-40
+ 768: -20,-40
769: -20,-40
- 770: -20,-40
- 779: -19,-40
- 780: -26,-36
- 781: -23,-36
- 782: -20,-36
- 783: -19,-36
- 790: -27,-40
- 791: -28,-40
- 792: -29,-40
- 820: -51,-1
- 821: -50,-1
- 822: -49,-1
- 823: -48,-1
- 824: -47,-1
+ 778: -19,-40
+ 779: -26,-36
+ 780: -23,-36
+ 781: -20,-36
+ 782: -19,-36
+ 789: -27,-40
+ 790: -28,-40
+ 791: -29,-40
+ 819: -51,-1
+ 820: -50,-1
+ 821: -49,-1
+ 822: -48,-1
+ 823: -47,-1
+ 824: -45,-1
825: -45,-1
- 826: -45,-1
- 827: -46,-1
- 828: -44,-1
- 829: -44,5
+ 826: -46,-1
+ 827: -44,-1
+ 828: -44,5
+ 829: -46,5
830: -46,5
- 831: -46,5
+ 831: -45,5
832: -45,5
- 833: -45,5
- 834: -47,5
+ 833: -47,5
+ 834: -48,5
835: -48,5
- 836: -48,5
- 837: -49,5
+ 836: -49,5
+ 837: -50,5
838: -50,5
- 839: -50,5
- 840: -51,5
- 1003: 41,-29
- 1004: 42,-29
- 1005: 43,-29
- 1099: -61,-29
- 1100: -60,-29
- 1183: -14,31
- 1184: -13,31
- 1185: -12,31
- 3310: -30,-45
- 6552: -35,3
+ 839: -51,5
+ 1002: 41,-29
+ 1003: 42,-29
+ 1004: 43,-29
+ 1098: -61,-29
+ 1099: -60,-29
+ 1182: -14,31
+ 1183: -13,31
+ 1184: -12,31
+ 3309: -30,-45
+ 6549: -35,3
+ 6628: 36,-24
- node:
cleanable: True
color: '#FFFFFFFF'
id: WoodTrimThinLineN
decals:
- 3267: 80,-25
+ 3266: 80,-25
- node:
color: '#FFFFFFFF'
id: WoodTrimThinLineS
@@ -8550,79 +8575,80 @@ entities:
505: -35,5
506: -34,5
507: -33,5
- 575: -32,14
- 576: -31,14
- 577: -30,14
- 578: -29,14
- 597: -40,-18
- 598: -39,-18
- 599: -38,-18
- 646: -38,-13
- 647: -37,-13
- 648: -36,-13
- 649: -35,-13
- 650: -34,-13
- 651: -33,-13
- 652: -32,-13
- 653: -31,-13
- 654: -29,-13
- 655: -28,-13
- 656: -30,-13
- 659: -38,-10
- 660: -37,-10
- 661: -36,-10
- 662: -33,-10
- 663: -34,-10
- 664: -32,-10
- 665: -30,-10
- 666: -29,-10
- 667: -28,-10
- 751: -40,-26
- 752: -39,-26
- 753: -30,-26
- 754: -29,-26
- 771: -26,-34
- 772: -25,-34
- 773: -24,-34
- 774: -22,-34
- 775: -21,-34
- 776: -20,-34
- 777: -19,-34
- 778: -23,-34
- 784: -26,-38
- 785: -23,-38
- 786: -20,-38
- 787: -19,-38
- 841: -51,3
+ 574: -32,14
+ 575: -31,14
+ 576: -30,14
+ 577: -29,14
+ 596: -40,-18
+ 597: -39,-18
+ 598: -38,-18
+ 645: -38,-13
+ 646: -37,-13
+ 647: -36,-13
+ 648: -35,-13
+ 649: -34,-13
+ 650: -33,-13
+ 651: -32,-13
+ 652: -31,-13
+ 653: -29,-13
+ 654: -28,-13
+ 655: -30,-13
+ 658: -38,-10
+ 659: -37,-10
+ 660: -36,-10
+ 661: -33,-10
+ 662: -34,-10
+ 663: -32,-10
+ 664: -30,-10
+ 665: -29,-10
+ 666: -28,-10
+ 750: -40,-26
+ 751: -39,-26
+ 752: -30,-26
+ 753: -29,-26
+ 770: -26,-34
+ 771: -25,-34
+ 772: -24,-34
+ 773: -22,-34
+ 774: -21,-34
+ 775: -20,-34
+ 776: -19,-34
+ 777: -23,-34
+ 783: -26,-38
+ 784: -23,-38
+ 785: -20,-38
+ 786: -19,-38
+ 840: -51,3
+ 841: -50,3
842: -50,3
- 843: -50,3
- 844: -49,3
- 845: -48,3
- 846: -47,3
- 847: -46,3
- 848: -45,3
- 849: -44,3
- 850: -44,-3
- 851: -45,-3
+ 843: -49,3
+ 844: -48,3
+ 845: -47,3
+ 846: -46,3
+ 847: -45,3
+ 848: -44,3
+ 849: -44,-3
+ 850: -45,-3
+ 851: -46,-3
852: -46,-3
- 853: -46,-3
- 854: -47,-3
+ 853: -47,-3
+ 854: -49,-3
855: -49,-3
- 856: -49,-3
+ 856: -51,-3
857: -51,-3
- 858: -51,-3
- 865: -50,-3
- 866: -48,-3
- 1101: -62,-25
- 1102: -61,-25
- 1103: -60,-25
- 1953: 58,19
- 1954: 59,19
- 1955: 60,19
- 3313: -31,-45
- 3316: 65,-52
- 3317: 66,-52
- 3318: 67,-52
+ 864: -50,-3
+ 865: -48,-3
+ 1100: -62,-25
+ 1101: -61,-25
+ 1102: -60,-25
+ 1952: 58,19
+ 1953: 59,19
+ 1954: 60,19
+ 3312: -31,-45
+ 3315: 65,-52
+ 3316: 66,-52
+ 3317: 67,-52
+ 6627: 36,-24
- node:
color: '#FFFFFFFF'
id: WoodTrimThinLineW
@@ -8654,193 +8680,193 @@ entities:
509: -36,7
512: -30,5
513: -30,4
- 546: -24,17
- 549: -24,21
- 579: -28,13
- 594: -37,-21
- 595: -37,-20
- 596: -37,-19
- 953: -50,-27
- 954: -50,-28
- 955: -50,-29
- 956: -50,-30
- 957: -50,-31
- 958: -50,-26
- 1006: 40,-31
- 1007: 40,-30
- 1096: -59,-28
- 1097: -59,-27
- 1098: -59,-26
- 1974: 58,19
- 2509: -27,-16
- 2510: -27,-15
- 2511: -27,-14
- 2512: -27,-13
- 3314: -31,-44
+ 545: -24,17
+ 548: -24,21
+ 578: -28,13
+ 593: -37,-21
+ 594: -37,-20
+ 595: -37,-19
+ 952: -50,-27
+ 953: -50,-28
+ 954: -50,-29
+ 955: -50,-30
+ 956: -50,-31
+ 957: -50,-26
+ 1005: 40,-31
+ 1006: 40,-30
+ 1095: -59,-28
+ 1096: -59,-27
+ 1097: -59,-26
+ 1973: 58,19
+ 2508: -27,-16
+ 2509: -27,-15
+ 2510: -27,-14
+ 2511: -27,-13
+ 3313: -31,-44
- node:
cleanable: True
color: '#FFFFFFFF'
id: bushsnowa1
decals:
- 6592: 80.134224,-34.739353
+ 6585: 80.134224,-34.739353
- node:
cleanable: True
color: '#FFFFFFFF'
id: bushsnowa2
decals:
- 6593: 81.98104,-35.791183
+ 6586: 81.98104,-35.791183
- node:
cleanable: True
color: '#FFFFFFFF'
id: bushsnowa3
decals:
- 6594: 80.43999,-36.158104
+ 6587: 80.43999,-36.158104
- node:
cleanable: True
color: '#FFFFFFFF'
id: bushsnowb1
decals:
- 6595: 83.2041,-35.583263
+ 6588: 83.2041,-35.583263
- node:
cleanable: True
color: '#FFFFFFFF'
id: bushsnowb3
decals:
- 6596: 83.020645,-36.060257
+ 6589: 83.020645,-36.060257
- node:
color: '#FFFFFFFF'
id: e
decals:
- 929: -40.4296,-9.97279
+ 928: -40.4296,-9.97279
- node:
cleanable: True
color: '#FFFFFFFF'
id: grasssnow01
decals:
- 6609: 83.460945,-36.10918
- 6610: 80.01192,-34.201206
+ 6602: 83.460945,-36.10918
+ 6603: 80.01192,-34.201206
- node:
cleanable: True
color: '#FFFFFFFF'
id: grasssnow03
decals:
- 6606: 81.7242,-35.840107
+ 6599: 81.7242,-35.840107
- node:
cleanable: True
color: '#FFFFFFFF'
id: grasssnow05
decals:
- 6611: 81.07172,-34.84943
+ 6604: 81.07172,-34.84943
- node:
cleanable: True
color: '#FFFFFFFF'
id: grasssnow06
decals:
- 6615: 80.39903,-34.335743
+ 6608: 80.39903,-34.335743
- node:
cleanable: True
color: '#FFFFFFFF'
id: grasssnow07
decals:
- 6604: 80.04861,-36.219257
+ 6597: 80.04861,-36.219257
- node:
cleanable: True
color: '#FFFFFFFF'
id: grasssnow08
decals:
- 6605: 80.8436,-35.974644
+ 6598: 80.8436,-35.974644
- node:
cleanable: True
color: '#FFFFFFFF'
id: grasssnow09
decals:
- 6607: 82.201195,-35.974644
- 6614: 81.98901,-35.155193
+ 6600: 82.201195,-35.974644
+ 6607: 81.98901,-35.155193
- node:
cleanable: True
color: '#FFFFFFFF'
id: grasssnow10
decals:
- 6602: 80.02415,-34.922813
+ 6595: 80.02415,-34.922813
- node:
cleanable: True
color: '#FFFFFFFF'
id: grasssnow11
decals:
- 6603: 80.42776,-35.546574
- 6608: 83.24079,-35.7178
+ 6596: 80.42776,-35.546574
+ 6601: 83.24079,-35.7178
- node:
cleanable: True
color: '#FFFFFFFF'
id: grasssnow12
decals:
- 6612: 82.99192,-34.910583
+ 6605: 82.99192,-34.910583
- node:
cleanable: True
color: '#FFFFFFFF'
id: grasssnow13
decals:
- 6613: 82.56385,-34.88612
+ 6606: 82.56385,-34.88612
- node:
cleanable: True
color: '#FFFFFFFF'
id: grasssnowa1
decals:
- 6599: 82.82495,-35.571033
+ 6592: 82.82495,-35.571033
- node:
cleanable: True
color: '#FFFFFFFF'
id: grasssnowa2
decals:
- 6618: 83.059845,-34.91084
+ 6611: 83.059845,-34.91084
- node:
cleanable: True
color: '#FFFFFFFF'
id: grasssnowa3
decals:
- 6597: 79.9263,-35.46096
+ 6590: 79.9263,-35.46096
- node:
cleanable: True
color: '#FFFFFFFF'
id: grasssnowb2
decals:
- 6598: 81.369514,-35.70557
- 6616: 80.8828,-34.87415
+ 6591: 81.369514,-35.70557
+ 6609: 80.8828,-34.87415
- node:
cleanable: True
color: '#FFFFFFFF'
id: grasssnowb3
decals:
- 6617: 79.87989,-33.993546
+ 6610: 79.87989,-33.993546
- node:
cleanable: True
color: '#FFFFFFFF'
id: grasssnowc2
decals:
- 6601: 79.79176,-36.060257
+ 6594: 79.79176,-36.060257
- node:
cleanable: True
color: '#FFFFFFFF'
id: grasssnowc3
decals:
- 6600: 81.10044,-36.13364
+ 6593: 81.10044,-36.13364
- node:
color: '#FFFFFFFF'
id: h
decals:
- 930: -40.486675,-10.812624
+ 929: -40.486675,-10.812624
- node:
color: '#FFFF0066'
id: shop
decals:
- 3304: 50.31763,23.128677
- 3305: 51.239506,23.738052
- 3306: 52.00513,23.034927
+ 3303: 50.31763,23.128677
+ 3304: 51.239506,23.738052
+ 3305: 52.00513,23.034927
- node:
color: '#FFFFFFFF'
id: w
decals:
- 928: -40.502983,-9.132956
+ 927: -40.502983,-9.132956
type: DecalGrid
- version: 2
data:
@@ -9401,6 +9427,7 @@ entities:
0: 65535
-10,5:
0: 61166
+ 3: 4352
-9,4:
0: 65535
-9,5:
@@ -9779,10 +9806,12 @@ entities:
0: 65535
-1,13:
0: 4095
+ 3: 4096
0,12:
0: 65535
0,13:
0: 4095
+ 3: 32768
1,12:
0: 21845
1,13:
@@ -10233,10 +10262,12 @@ entities:
0: 61936
-11,6:
0: 34952
+ 3: 887
-11,7:
0: 34952
-10,6:
0: 65518
+ 3: 1
-10,7:
0: 65535
-16,-9:
@@ -10267,6 +10298,7 @@ entities:
0: 34952
-11,5:
0: 34952
+ 3: 30579
-4,10:
0: 65535
-3,10:
@@ -10336,7 +10368,7 @@ entities:
21,-7:
0: 30037
19,-9:
- 0: 65280
+ 0: 65416
0,-15:
0: 13090
0,-14:
@@ -10370,9 +10402,9 @@ entities:
-5,13:
0: 1
20,-9:
- 0: 65280
+ 0: 65535
21,-9:
- 0: 4352
+ 0: 4369
4,7:
0: 13107
8,-11:
@@ -10547,6 +10579,20 @@ entities:
0: 4403
-16,-13:
0: 2
+ 3,10:
+ 0: 65535
+ 19,-10:
+ 0: 32768
+ 20,-10:
+ 0: 61440
+ 21,-10:
+ 0: 4096
+ 4,10:
+ 0: 13107
+ -12,5:
+ 3: 61128
+ -12,6:
+ 3: 2254
uniqueMixes:
- volume: 2500
temperature: 293.15
@@ -10972,12 +11018,8 @@ entities:
parent: 2
type: Transform
- ShutdownSubscribers:
- - 8726
- - 8725
- - 8724
- - 19902
- - 19901
- - 19900
+ - 16937
+ - 16936
type: DeviceNetwork
- devices:
- 8726
@@ -10986,6 +11028,8 @@ entities:
- 19902
- 19901
- 19900
+ - 16937
+ - 16936
type: DeviceList
- uid: 8379
components:
@@ -14538,11 +14582,6 @@ entities:
type: Transform
- proto: AirlockEngineering
entities:
- - uid: 64
- components:
- - pos: 38.5,8.5
- parent: 2
- type: Transform
- uid: 4217
components:
- pos: 32.5,1.5
@@ -14649,6 +14688,12 @@ entities:
pos: -0.5,14.5
parent: 2
type: Transform
+ - uid: 64
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 38.5,8.5
+ parent: 2
+ type: Transform
- uid: 3565
components:
- rot: -1.5707963267948966 rad
@@ -15222,7 +15267,7 @@ entities:
- pos: -16.5,19.5
parent: 2
type: Transform
- - secondsUntilStateChange: -1959.6976
+ - secondsUntilStateChange: -6877.6543
state: Opening
type: Door
- uid: 4196
@@ -17753,10 +17798,6 @@ entities:
pos: 74.5,-15.5
parent: 2
type: Transform
- - ShutdownSubscribers:
- - 17601
- - 8378
- type: DeviceNetwork
- uid: 19909
components:
- rot: 3.141592653589793 rad
@@ -18170,21 +18211,6 @@ entities:
- pos: 16.69675,-24.555443
parent: 2
type: Transform
- - uid: 4400
- components:
- - pos: 30.514841,-1.8634262
- parent: 2
- type: Transform
- - uid: 4401
- components:
- - pos: 30.514841,-2.046885
- parent: 2
- type: Transform
- - uid: 4402
- components:
- - pos: 30.514841,-2.3037276
- parent: 2
- type: Transform
- proto: AnomalyLocatorUnpowered
entities:
- uid: 7240
@@ -18425,18 +18451,6 @@ entities:
pos: -26.5,33.5
parent: 2
type: Transform
-- proto: APCElectronics
- entities:
- - uid: 8177
- components:
- - pos: 12.685621,-40.27469
- parent: 2
- type: Transform
- - uid: 8178
- components:
- - pos: 12.697851,-40.49484
- parent: 2
- type: Transform
- proto: APCHighCapacity
entities:
- uid: 10502
@@ -18625,6 +18639,31 @@ entities:
- pos: 26.5,-2.5
parent: 2
type: Transform
+ - uid: 20548
+ components:
+ - pos: -43.5,23.5
+ parent: 2
+ type: Transform
+ - uid: 20549
+ components:
+ - pos: -44.5,23.5
+ parent: 2
+ type: Transform
+ - uid: 20550
+ components:
+ - pos: -43.5,24.5
+ parent: 2
+ type: Transform
+ - uid: 20551
+ components:
+ - pos: -42.5,23.5
+ parent: 2
+ type: Transform
+ - uid: 20552
+ components:
+ - pos: -43.5,22.5
+ parent: 2
+ type: Transform
- proto: AtmosFixNitrogenMarker
entities:
- uid: 118
@@ -18893,9 +18932,9 @@ entities:
type: Transform
- proto: BaseBallBat
entities:
- - uid: 16655
+ - uid: 16925
components:
- - pos: 13.609257,37.58537
+ - pos: 16.505302,36.673454
parent: 2
type: Transform
- proto: Bed
@@ -19428,6 +19467,14 @@ entities:
- links:
- 7937
type: DeviceLinkSink
+ - uid: 16939
+ components:
+ - pos: 33.5,-14.5
+ parent: 2
+ type: Transform
+ - links:
+ - 2076
+ type: DeviceLinkSink
- proto: BlastDoorOpen
entities:
- uid: 4719
@@ -19929,9 +19976,9 @@ entities:
type: Transform
- proto: BrbSign
entities:
- - uid: 182
+ - uid: 20495
components:
- - pos: 41.08787,-23.448395
+ - pos: 44.464745,-23.457548
parent: 2
type: Transform
- proto: BrigTimer
@@ -20018,6 +20065,11 @@ entities:
- pos: -42.58287,17.491003
parent: 2
type: Transform
+ - uid: 16919
+ components:
+ - pos: -19.974792,15.597592
+ parent: 2
+ type: Transform
- proto: CableApcExtension
entities:
- uid: 184
@@ -20425,6 +20477,26 @@ entities:
- pos: -1.5,-15.5
parent: 2
type: Transform
+ - uid: 1434
+ components:
+ - pos: 36.5,-37.5
+ parent: 2
+ type: Transform
+ - uid: 1469
+ components:
+ - pos: 40.5,-37.5
+ parent: 2
+ type: Transform
+ - uid: 1476
+ components:
+ - pos: 44.5,-37.5
+ parent: 2
+ type: Transform
+ - uid: 1528
+ components:
+ - pos: 44.5,-38.5
+ parent: 2
+ type: Transform
- uid: 1574
components:
- pos: 0.5,-40.5
@@ -30450,36 +30522,16 @@ entities:
- pos: 40.5,-35.5
parent: 2
type: Transform
- - uid: 12723
- components:
- - pos: 40.5,-37.5
- parent: 2
- type: Transform
- uid: 12724
components:
- pos: 40.5,-38.5
parent: 2
type: Transform
- - uid: 12725
- components:
- - pos: 36.5,-37.5
- parent: 2
- type: Transform
- uid: 12726
components:
- pos: 36.5,-38.5
parent: 2
type: Transform
- - uid: 12727
- components:
- - pos: 44.5,-37.5
- parent: 2
- type: Transform
- - uid: 12728
- components:
- - pos: 44.5,-38.5
- parent: 2
- type: Transform
- uid: 12729
components:
- pos: 30.5,-29.5
@@ -35700,11 +35752,6 @@ entities:
- pos: 72.5,-35.5
parent: 2
type: Transform
- - uid: 16844
- components:
- - pos: -6.5,52.5
- parent: 2
- type: Transform
- uid: 16893
components:
- pos: -10.5,39.5
@@ -35725,226 +35772,6 @@ entities:
- pos: -8.5,40.5
parent: 2
type: Transform
- - uid: 16897
- components:
- - pos: -8.5,41.5
- parent: 2
- type: Transform
- - uid: 16898
- components:
- - pos: -8.5,42.5
- parent: 2
- type: Transform
- - uid: 16899
- components:
- - pos: -8.5,43.5
- parent: 2
- type: Transform
- - uid: 16900
- components:
- - pos: -9.5,43.5
- parent: 2
- type: Transform
- - uid: 16901
- components:
- - pos: -9.5,44.5
- parent: 2
- type: Transform
- - uid: 16902
- components:
- - pos: -9.5,45.5
- parent: 2
- type: Transform
- - uid: 16903
- components:
- - pos: -9.5,46.5
- parent: 2
- type: Transform
- - uid: 16904
- components:
- - pos: -9.5,47.5
- parent: 2
- type: Transform
- - uid: 16905
- components:
- - pos: -9.5,48.5
- parent: 2
- type: Transform
- - uid: 16906
- components:
- - pos: -9.5,49.5
- parent: 2
- type: Transform
- - uid: 16907
- components:
- - pos: -9.5,50.5
- parent: 2
- type: Transform
- - uid: 16908
- components:
- - pos: -9.5,51.5
- parent: 2
- type: Transform
- - uid: 16909
- components:
- - pos: -8.5,51.5
- parent: 2
- type: Transform
- - uid: 16910
- components:
- - pos: -7.5,51.5
- parent: 2
- type: Transform
- - uid: 16911
- components:
- - pos: -6.5,51.5
- parent: 2
- type: Transform
- - uid: 16912
- components:
- - pos: -6.5,53.5
- parent: 2
- type: Transform
- - uid: 16913
- components:
- - pos: -6.5,54.5
- parent: 2
- type: Transform
- - uid: 16914
- components:
- - pos: -6.5,55.5
- parent: 2
- type: Transform
- - uid: 16915
- components:
- - pos: -5.5,55.5
- parent: 2
- type: Transform
- - uid: 16916
- components:
- - pos: -5.5,56.5
- parent: 2
- type: Transform
- - uid: 16917
- components:
- - pos: -4.5,56.5
- parent: 2
- type: Transform
- - uid: 16918
- components:
- - pos: 5.5,55.5
- parent: 2
- type: Transform
- - uid: 16919
- components:
- - pos: -3.5,56.5
- parent: 2
- type: Transform
- - uid: 16920
- components:
- - pos: -2.5,56.5
- parent: 2
- type: Transform
- - uid: 16921
- components:
- - pos: -1.5,56.5
- parent: 2
- type: Transform
- - uid: 16922
- components:
- - pos: 0.5,56.5
- parent: 2
- type: Transform
- - uid: 16923
- components:
- - pos: -0.5,56.5
- parent: 2
- type: Transform
- - uid: 16924
- components:
- - pos: 1.5,56.5
- parent: 2
- type: Transform
- - uid: 16925
- components:
- - pos: 2.5,56.5
- parent: 2
- type: Transform
- - uid: 16926
- components:
- - pos: 3.5,56.5
- parent: 2
- type: Transform
- - uid: 16927
- components:
- - pos: 4.5,56.5
- parent: 2
- type: Transform
- - uid: 16928
- components:
- - pos: 5.5,56.5
- parent: 2
- type: Transform
- - uid: 16929
- components:
- - pos: 6.5,55.5
- parent: 2
- type: Transform
- - uid: 16931
- components:
- - pos: 6.5,54.5
- parent: 2
- type: Transform
- - uid: 16932
- components:
- - pos: 6.5,53.5
- parent: 2
- type: Transform
- - uid: 16933
- components:
- - pos: 6.5,52.5
- parent: 2
- type: Transform
- - uid: 16934
- components:
- - pos: 6.5,51.5
- parent: 2
- type: Transform
- - uid: 16935
- components:
- - pos: 6.5,50.5
- parent: 2
- type: Transform
- - uid: 16936
- components:
- - pos: 6.5,49.5
- parent: 2
- type: Transform
- - uid: 16937
- components:
- - pos: 6.5,48.5
- parent: 2
- type: Transform
- - uid: 16938
- components:
- - pos: 6.5,47.5
- parent: 2
- type: Transform
- - uid: 16939
- components:
- - pos: 6.5,46.5
- parent: 2
- type: Transform
- - uid: 16940
- components:
- - pos: 6.5,45.5
- parent: 2
- type: Transform
- - uid: 16941
- components:
- - pos: 6.5,44.5
- parent: 2
- type: Transform
- uid: 17279
components:
- pos: 67.5,-50.5
@@ -36090,6 +35917,11 @@ entities:
- pos: 14.5,39.5
parent: 2
type: Transform
+ - uid: 20444
+ components:
+ - pos: -23.5,32.5
+ parent: 2
+ type: Transform
- proto: CableApcStack
entities:
- uid: 264
@@ -40764,6 +40596,21 @@ entities:
- pos: -24.5,44.5
parent: 2
type: Transform
+ - uid: 20445
+ components:
+ - pos: -26.5,38.5
+ parent: 2
+ type: Transform
+ - uid: 20446
+ components:
+ - pos: -9.5,-17.5
+ parent: 2
+ type: Transform
+ - uid: 20447
+ components:
+ - pos: -8.5,-17.5
+ parent: 2
+ type: Transform
- proto: CableHVStack
entities:
- uid: 336
@@ -41323,6 +41170,146 @@ entities:
- pos: -9.5,7.5
parent: 2
type: Transform
+ - uid: 999
+ components:
+ - pos: 6.5,54.5
+ parent: 2
+ type: Transform
+ - uid: 1096
+ components:
+ - pos: 6.5,53.5
+ parent: 2
+ type: Transform
+ - uid: 1227
+ components:
+ - pos: 36.5,-39.5
+ parent: 2
+ type: Transform
+ - uid: 1549
+ components:
+ - pos: -9.5,48.5
+ parent: 2
+ type: Transform
+ - uid: 1755
+ components:
+ - pos: 6.5,55.5
+ parent: 2
+ type: Transform
+ - uid: 1871
+ components:
+ - pos: -5.5,55.5
+ parent: 2
+ type: Transform
+ - uid: 1872
+ components:
+ - pos: 5.5,55.5
+ parent: 2
+ type: Transform
+ - uid: 2050
+ components:
+ - pos: 5.5,56.5
+ parent: 2
+ type: Transform
+ - uid: 2051
+ components:
+ - pos: -5.5,56.5
+ parent: 2
+ type: Transform
+ - uid: 2147
+ components:
+ - pos: -6.5,55.5
+ parent: 2
+ type: Transform
+ - uid: 2148
+ components:
+ - pos: -6.5,54.5
+ parent: 2
+ type: Transform
+ - uid: 2149
+ components:
+ - pos: -6.5,53.5
+ parent: 2
+ type: Transform
+ - uid: 2848
+ components:
+ - pos: -6.5,52.5
+ parent: 2
+ type: Transform
+ - uid: 3520
+ components:
+ - pos: -6.5,51.5
+ parent: 2
+ type: Transform
+ - uid: 3521
+ components:
+ - pos: -7.5,51.5
+ parent: 2
+ type: Transform
+ - uid: 3768
+ components:
+ - pos: -8.5,51.5
+ parent: 2
+ type: Transform
+ - uid: 4400
+ components:
+ - pos: -9.5,51.5
+ parent: 2
+ type: Transform
+ - uid: 4401
+ components:
+ - pos: -9.5,50.5
+ parent: 2
+ type: Transform
+ - uid: 4402
+ components:
+ - pos: -9.5,49.5
+ parent: 2
+ type: Transform
+ - uid: 5076
+ components:
+ - pos: -9.5,47.5
+ parent: 2
+ type: Transform
+ - uid: 5080
+ components:
+ - pos: -9.5,46.5
+ parent: 2
+ type: Transform
+ - uid: 5240
+ components:
+ - pos: -9.5,45.5
+ parent: 2
+ type: Transform
+ - uid: 7046
+ components:
+ - pos: -9.5,44.5
+ parent: 2
+ type: Transform
+ - uid: 7047
+ components:
+ - pos: -9.5,43.5
+ parent: 2
+ type: Transform
+ - uid: 7451
+ components:
+ - pos: -9.5,42.5
+ parent: 2
+ type: Transform
+ - uid: 7452
+ components:
+ - pos: -13.5,36.5
+ parent: 2
+ type: Transform
+ - uid: 7453
+ components:
+ - pos: -8.5,42.5
+ parent: 2
+ type: Transform
+ - uid: 7454
+ components:
+ - pos: -8.5,41.5
+ parent: 2
+ type: Transform
- uid: 9894
components:
- pos: 2.5,-17.5
@@ -44848,6 +44835,31 @@ entities:
- pos: 7.5,-30.5
parent: 2
type: Transform
+ - uid: 12544
+ components:
+ - pos: -8.5,40.5
+ parent: 2
+ type: Transform
+ - uid: 12723
+ components:
+ - pos: -10.5,39.5
+ parent: 2
+ type: Transform
+ - uid: 12725
+ components:
+ - pos: -9.5,39.5
+ parent: 2
+ type: Transform
+ - uid: 12727
+ components:
+ - pos: -11.5,39.5
+ parent: 2
+ type: Transform
+ - uid: 12728
+ components:
+ - pos: -12.5,39.5
+ parent: 2
+ type: Transform
- uid: 12898
components:
- pos: -52.5,-21.5
@@ -44913,6 +44925,111 @@ entities:
- pos: -61.5,-20.5
parent: 2
type: Transform
+ - uid: 15007
+ components:
+ - pos: -12.5,38.5
+ parent: 2
+ type: Transform
+ - uid: 15008
+ components:
+ - pos: -12.5,37.5
+ parent: 2
+ type: Transform
+ - uid: 15036
+ components:
+ - pos: -12.5,36.5
+ parent: 2
+ type: Transform
+ - uid: 15611
+ components:
+ - pos: -14.5,36.5
+ parent: 2
+ type: Transform
+ - uid: 16639
+ components:
+ - pos: -15.5,36.5
+ parent: 2
+ type: Transform
+ - uid: 16655
+ components:
+ - pos: -16.5,36.5
+ parent: 2
+ type: Transform
+ - uid: 16844
+ components:
+ - pos: -17.5,36.5
+ parent: 2
+ type: Transform
+ - uid: 16897
+ components:
+ - pos: -18.5,36.5
+ parent: 2
+ type: Transform
+ - uid: 16898
+ components:
+ - pos: -19.5,36.5
+ parent: 2
+ type: Transform
+ - uid: 16899
+ components:
+ - pos: -19.5,34.5
+ parent: 2
+ type: Transform
+ - uid: 16900
+ components:
+ - pos: -19.5,33.5
+ parent: 2
+ type: Transform
+ - uid: 16901
+ components:
+ - pos: -19.5,32.5
+ parent: 2
+ type: Transform
+ - uid: 16902
+ components:
+ - pos: -20.5,32.5
+ parent: 2
+ type: Transform
+ - uid: 16903
+ components:
+ - pos: -8.5,39.5
+ parent: 2
+ type: Transform
+ - uid: 16904
+ components:
+ - pos: 2.5,56.5
+ parent: 2
+ type: Transform
+ - uid: 16907
+ components:
+ - pos: 6.5,52.5
+ parent: 2
+ type: Transform
+ - uid: 16928
+ components:
+ - pos: 36.5,-37.5
+ parent: 2
+ type: Transform
+ - uid: 16929
+ components:
+ - pos: 36.5,-38.5
+ parent: 2
+ type: Transform
+ - uid: 16931
+ components:
+ - pos: 6.5,50.5
+ parent: 2
+ type: Transform
+ - uid: 16932
+ components:
+ - pos: 6.5,51.5
+ parent: 2
+ type: Transform
+ - uid: 16934
+ components:
+ - pos: -19.5,35.5
+ parent: 2
+ type: Transform
- uid: 17276
components:
- pos: 66.5,-49.5
@@ -44948,6 +45065,171 @@ entities:
- pos: -26.5,33.5
parent: 2
type: Transform
+ - uid: 20422
+ components:
+ - pos: 6.5,49.5
+ parent: 2
+ type: Transform
+ - uid: 20423
+ components:
+ - pos: 6.5,48.5
+ parent: 2
+ type: Transform
+ - uid: 20424
+ components:
+ - pos: 6.5,47.5
+ parent: 2
+ type: Transform
+ - uid: 20425
+ components:
+ - pos: 6.5,46.5
+ parent: 2
+ type: Transform
+ - uid: 20426
+ components:
+ - pos: 6.5,45.5
+ parent: 2
+ type: Transform
+ - uid: 20427
+ components:
+ - pos: 6.5,44.5
+ parent: 2
+ type: Transform
+ - uid: 20428
+ components:
+ - pos: 4.5,56.5
+ parent: 2
+ type: Transform
+ - uid: 20429
+ components:
+ - pos: 3.5,56.5
+ parent: 2
+ type: Transform
+ - uid: 20430
+ components:
+ - pos: -4.5,56.5
+ parent: 2
+ type: Transform
+ - uid: 20431
+ components:
+ - pos: -3.5,56.5
+ parent: 2
+ type: Transform
+ - uid: 20432
+ components:
+ - pos: 1.5,56.5
+ parent: 2
+ type: Transform
+ - uid: 20433
+ components:
+ - pos: 0.5,56.5
+ parent: 2
+ type: Transform
+ - uid: 20434
+ components:
+ - pos: -0.5,56.5
+ parent: 2
+ type: Transform
+ - uid: 20435
+ components:
+ - pos: -1.5,56.5
+ parent: 2
+ type: Transform
+ - uid: 20436
+ components:
+ - pos: -2.5,56.5
+ parent: 2
+ type: Transform
+ - uid: 20496
+ components:
+ - pos: 44.5,-37.5
+ parent: 2
+ type: Transform
+ - uid: 20497
+ components:
+ - pos: 44.5,-38.5
+ parent: 2
+ type: Transform
+ - uid: 20498
+ components:
+ - pos: 44.5,-39.5
+ parent: 2
+ type: Transform
+ - uid: 20499
+ components:
+ - pos: 45.5,-39.5
+ parent: 2
+ type: Transform
+ - uid: 20500
+ components:
+ - pos: 46.5,-39.5
+ parent: 2
+ type: Transform
+ - uid: 20501
+ components:
+ - pos: 47.5,-39.5
+ parent: 2
+ type: Transform
+ - uid: 20502
+ components:
+ - pos: 48.5,-39.5
+ parent: 2
+ type: Transform
+ - uid: 20503
+ components:
+ - pos: 43.5,-39.5
+ parent: 2
+ type: Transform
+ - uid: 20504
+ components:
+ - pos: 42.5,-39.5
+ parent: 2
+ type: Transform
+ - uid: 20505
+ components:
+ - pos: 41.5,-39.5
+ parent: 2
+ type: Transform
+ - uid: 20506
+ components:
+ - pos: 40.5,-39.5
+ parent: 2
+ type: Transform
+ - uid: 20507
+ components:
+ - pos: 39.5,-39.5
+ parent: 2
+ type: Transform
+ - uid: 20508
+ components:
+ - pos: 38.5,-39.5
+ parent: 2
+ type: Transform
+ - uid: 20509
+ components:
+ - pos: 37.5,-39.5
+ parent: 2
+ type: Transform
+ - uid: 20510
+ components:
+ - pos: 35.5,-39.5
+ parent: 2
+ type: Transform
+ - uid: 20511
+ components:
+ - pos: 34.5,-39.5
+ parent: 2
+ type: Transform
+ - uid: 20512
+ components:
+ - pos: 33.5,-39.5
+ parent: 2
+ type: Transform
+ - uid: 20513
+ components:
+ - pos: 32.5,-39.5
+ parent: 2
+ type: Transform
- proto: CableMVStack
entities:
- uid: 446
@@ -45053,6 +45335,13 @@ entities:
- pos: 77.0262,-24.459164
parent: 2
type: Transform
+- proto: CandyBowl
+ entities:
+ - uid: 20483
+ components:
+ - pos: 42.491714,10.446698
+ parent: 2
+ type: Transform
- proto: CannabisSeeds
entities:
- uid: 5271
@@ -51050,6 +51339,102 @@ entities:
- pos: 63.5,-53.5
parent: 2
type: Transform
+ - uid: 20437
+ components:
+ - pos: -44.5,19.5
+ parent: 2
+ type: Transform
+ - uid: 20448
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 1.5,31.5
+ parent: 2
+ type: Transform
+ - uid: 20450
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 1.5,30.5
+ parent: 2
+ type: Transform
+ - uid: 20518
+ components:
+ - pos: -40.5,23.5
+ parent: 2
+ type: Transform
+ - uid: 20519
+ components:
+ - pos: -40.5,22.5
+ parent: 2
+ type: Transform
+ - uid: 20522
+ components:
+ - pos: -40.5,24.5
+ parent: 2
+ type: Transform
+ - uid: 20523
+ components:
+ - pos: -42.5,20.5
+ parent: 2
+ type: Transform
+ - uid: 20524
+ components:
+ - pos: -43.5,20.5
+ parent: 2
+ type: Transform
+ - uid: 20525
+ components:
+ - pos: -44.5,20.5
+ parent: 2
+ type: Transform
+ - uid: 20526
+ components:
+ - pos: -39.5,22.5
+ parent: 2
+ type: Transform
+ - uid: 20527
+ components:
+ - pos: -39.5,23.5
+ parent: 2
+ type: Transform
+ - uid: 20528
+ components:
+ - pos: -39.5,24.5
+ parent: 2
+ type: Transform
+ - uid: 20565
+ components:
+ - pos: -43.5,19.5
+ parent: 2
+ type: Transform
+ - uid: 20566
+ components:
+ - pos: -42.5,19.5
+ parent: 2
+ type: Transform
+ - uid: 20569
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -41.5,21.5
+ parent: 2
+ type: Transform
+ - uid: 20570
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -41.5,25.5
+ parent: 2
+ type: Transform
+ - uid: 20571
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -45.5,25.5
+ parent: 2
+ type: Transform
+ - uid: 20572
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -45.5,21.5
+ parent: 2
+ type: Transform
- proto: Chair
entities:
- uid: 678
@@ -52702,12 +53087,6 @@ entities:
- pos: 66.5,-25.5
parent: 2
type: Transform
- - uid: 7229
- components:
- - rot: 1.5707963267948966 rad
- pos: 67.5,-10.5
- parent: 2
- type: Transform
- uid: 7230
components:
- rot: 1.5707963267948966 rad
@@ -53909,13 +54288,31 @@ entities:
- pos: 16.5,37.5
parent: 2
type: Transform
+ - air:
+ volume: 200
+ immutable: False
+ temperature: 293.14673
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ type: EntityStorage
- containers:
entity_storage: !type:Container
showEnts: False
occludes: True
ents:
- - 16651
- 16652
+ - 16651
paper_label: !type:ContainerSlot
showEnts: False
occludes: True
@@ -55288,6 +55685,11 @@ entities:
- pos: 9.518227,39.757885
parent: 2
type: Transform
+ - uid: 16909
+ components:
+ - pos: -30.494411,6.9449363
+ parent: 2
+ type: Transform
- proto: ClothingShoesWizard
entities:
- uid: 17264
@@ -56118,6 +56520,18 @@ entities:
- pos: -15.5,3.5
parent: 2
type: Transform
+ - uid: 20492
+ components:
+ - pos: -37.5,23.5
+ parent: 2
+ type: Transform
+- proto: CondenserMachineCircuitBoard
+ entities:
+ - uid: 16933
+ components:
+ - pos: 17.875872,-18.445808
+ parent: 2
+ type: Transform
- proto: ContainmentFieldGenerator
entities:
- uid: 925
@@ -56515,6 +56929,13 @@ entities:
- pos: 39.5,-37.5
parent: 2
type: Transform
+- proto: CrateSecurityTrackingMindshieldImplants
+ entities:
+ - uid: 182
+ components:
+ - pos: 4.5,27.5
+ parent: 2
+ type: Transform
- proto: CrateServiceJanitorialSupplies
entities:
- uid: 937
@@ -60984,23 +61405,6 @@ entities:
pos: 63.5,-15.5
parent: 2
type: Transform
-- proto: DoorElectronics
- entities:
- - uid: 8174
- components:
- - pos: 12.061861,-40.29915
- parent: 2
- type: Transform
- - uid: 8175
- components:
- - pos: 12.061861,-40.421455
- parent: 2
- type: Transform
- - uid: 8176
- components:
- - pos: 12.074091,-40.555992
- parent: 2
- type: Transform
- proto: DoubleEmergencyOxygenTankFilled
entities:
- uid: 6831
@@ -62245,14 +62649,6 @@ entities:
- destinationAddress: Atmospherics
name: Atmospherics
type: FaxMachine
- - uid: 999
- components:
- - pos: 45.5,-23.5
- parent: 2
- type: Transform
- - destinationAddress: Head of Personel
- name: Head of Personel
- type: FaxMachine
- uid: 4498
components:
- pos: -50.5,-15.5
@@ -62333,21 +62729,29 @@ entities:
- destinationAddress: Detective
name: Detective
type: FaxMachine
- - uid: 15611
+ - uid: 16527
components:
- - pos: 50.5,-2.5
+ - pos: 44.5,-32.5
+ parent: 2
+ type: Transform
+ - destinationAddress: Bridge
+ name: Bridge
+ type: FaxMachine
+ - uid: 20485
+ components:
+ - pos: 50.5,-5.5
parent: 2
type: Transform
- destinationAddress: Medical
name: Medical
type: FaxMachine
- - uid: 16527
+ - uid: 20494
components:
- - pos: 44.5,-32.5
+ - pos: 41.5,-23.5
parent: 2
type: Transform
- - destinationAddress: Bridge
- name: Bridge
+ - destinationAddress: Head of Personel
+ name: Head of Personel
type: FaxMachine
- proto: FaxMachineCaptain
entities:
@@ -63273,13 +63677,16 @@ entities:
parent: 2
type: Transform
- ShutdownSubscribers:
- - 19902
+ - 16937
+ - 16936
type: DeviceNetwork
- devices:
- 8726
- 8725
- 8724
- 19902
+ - 16937
+ - 16936
type: DeviceList
- uid: 17602
components:
@@ -66329,6 +66736,26 @@ entities:
pos: 70.5,5.5
parent: 2
type: Transform
+ - uid: 16936
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 77.5,-17.5
+ parent: 2
+ type: Transform
+ - ShutdownSubscribers:
+ - 8378
+ - 17601
+ type: DeviceNetwork
+ - uid: 16937
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 77.5,-13.5
+ parent: 2
+ type: Transform
+ - ShutdownSubscribers:
+ - 8378
+ - 17601
+ type: DeviceNetwork
- uid: 17610
components:
- rot: -1.5707963267948966 rad
@@ -68412,7 +68839,6 @@ entities:
- ShutdownSubscribers:
- 20221
- 20220
- - 8378
type: DeviceNetwork
- uid: 8725
components:
@@ -68423,7 +68849,6 @@ entities:
- ShutdownSubscribers:
- 20221
- 20220
- - 8378
type: DeviceNetwork
- uid: 8726
components:
@@ -68434,7 +68859,6 @@ entities:
- ShutdownSubscribers:
- 20221
- 20220
- - 8378
type: DeviceNetwork
- uid: 8727
components:
@@ -69710,6 +70134,18 @@ entities:
pos: 80.5,-14.5
parent: 2
type: Transform
+ - uid: 16911
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 33.5,-12.5
+ parent: 2
+ type: Transform
+ - uid: 16912
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 33.5,-11.5
+ parent: 2
+ type: Transform
- proto: GasPipeBend
entities:
- uid: 1113
@@ -71401,6 +71837,11 @@ entities:
type: Transform
- color: '#0335FCFF'
type: AtmosPipeColor
+ - uid: 20516
+ components:
+ - pos: 61.5,-3.5
+ parent: 2
+ type: Transform
- proto: GasPipeFourway
entities:
- uid: 7044
@@ -71998,12 +72439,6 @@ entities:
pos: 76.5,-12.5
parent: 2
type: Transform
- - uid: 7046
- components:
- - rot: 1.5707963267948966 rad
- pos: 60.5,-3.5
- parent: 2
- type: Transform
- uid: 7367
components:
- rot: 1.5707963267948966 rad
@@ -76203,14 +76638,6 @@ entities:
type: Transform
- color: '#FF1212FF'
type: AtmosPipeColor
- - uid: 18471
- components:
- - rot: -1.5707963267948966 rad
- pos: 57.5,-3.5
- parent: 2
- type: Transform
- - color: '#FF1212FF'
- type: AtmosPipeColor
- uid: 18476
components:
- rot: -1.5707963267948966 rad
@@ -84934,6 +85361,12 @@ entities:
type: Transform
- color: '#0335FCFF'
type: AtmosPipeColor
+ - uid: 20515
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 57.5,-3.5
+ parent: 2
+ type: Transform
- proto: GasPipeTJunction
entities:
- uid: 575
@@ -86808,6 +87241,11 @@ entities:
type: Transform
- color: '#0335FCFF'
type: AtmosPipeColor
+ - uid: 20514
+ components:
+ - pos: 59.5,-3.5
+ parent: 2
+ type: Transform
- proto: GasPort
entities:
- uid: 1198
@@ -87001,14 +87439,6 @@ entities:
type: Transform
- color: '#0335FCFF'
type: AtmosPipeColor
- - uid: 7047
- components:
- - rot: -1.5707963267948966 rad
- pos: 58.5,-3.5
- parent: 2
- type: Transform
- - color: '#FF1212FF'
- type: AtmosPipeColor
- uid: 7048
components:
- rot: 3.141592653589793 rad
@@ -87039,6 +87469,12 @@ entities:
pos: 77.5,-14.5
parent: 2
type: Transform
+ - uid: 16908
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 58.5,-3.5
+ parent: 2
+ type: Transform
- proto: GasThermoMachineFreezer
entities:
- uid: 1220
@@ -87065,6 +87501,8 @@ entities:
- pos: -15.5,14.5
parent: 2
type: Transform
+ - targetTemperature: 270
+ type: GasThermoMachine
- proto: GasThermoMachineHeater
entities:
- uid: 9260
@@ -87089,18 +87527,6 @@ entities:
type: Transform
- proto: GasVentPump
entities:
- - uid: 1226
- components:
- - rot: -1.5707963267948966 rad
- pos: 33.5,-11.5
- parent: 2
- type: Transform
- - uid: 1227
- components:
- - rot: -1.5707963267948966 rad
- pos: 33.5,-12.5
- parent: 2
- type: Transform
- uid: 9034
components:
- rot: 3.141592653589793 rad
@@ -88399,9 +88825,6 @@ entities:
- pos: 74.5,-16.5
parent: 2
type: Transform
- - ShutdownSubscribers:
- - 8378
- type: DeviceNetwork
- color: '#0335FCFF'
type: AtmosPipeColor
- uid: 19907
@@ -89831,9 +90254,6 @@ entities:
pos: 74.5,-14.5
parent: 2
type: Transform
- - ShutdownSubscribers:
- - 8378
- type: DeviceNetwork
- color: '#FF1212FF'
type: AtmosPipeColor
- uid: 19908
@@ -92603,12 +93023,6 @@ entities:
pos: -34.5,30.5
parent: 2
type: Transform
- - uid: 15008
- components:
- - rot: -1.5707963267948966 rad
- pos: -38.5,24.5
- parent: 2
- type: Transform
- uid: 15058
components:
- pos: -22.5,39.5
@@ -93408,6 +93822,11 @@ entities:
- pos: 6.5,44.5
parent: 2
type: Transform
+ - uid: 16914
+ components:
+ - pos: -38.5,25.5
+ parent: 2
+ type: Transform
- uid: 16930
components:
- pos: -57.5,-39.5
@@ -94009,13 +94428,28 @@ entities:
- pos: 82.5,-36.5
parent: 2
type: Transform
-- proto: GrilleBroken
- entities:
- - uid: 15036
+ - uid: 20557
components:
- - pos: -38.5,25.5
+ - pos: -45.5,23.5
+ parent: 2
+ type: Transform
+ - uid: 20558
+ components:
+ - pos: -43.5,25.5
+ parent: 2
+ type: Transform
+ - uid: 20559
+ components:
+ - pos: -41.5,23.5
+ parent: 2
+ type: Transform
+ - uid: 20560
+ components:
+ - pos: -43.5,21.5
parent: 2
type: Transform
+- proto: GrilleBroken
+ entities:
- uid: 15037
components:
- pos: -39.5,26.5
@@ -94808,16 +95242,16 @@ entities:
type: Transform
- proto: GunSafeDisabler
entities:
- - uid: 5076
+ - uid: 16916
components:
- - pos: 7.5,33.5
+ - pos: 6.5,33.5
parent: 2
type: Transform
-- proto: GunSafePistolMk58
+- proto: GunSafeRifleLecter
entities:
- - uid: 5080
+ - uid: 16915
components:
- - pos: 6.5,33.5
+ - pos: 7.5,33.5
parent: 2
type: Transform
- proto: GyroscopeUnanchored
@@ -94850,11 +95284,6 @@ entities:
type: Transform
- proto: HandLabeler
entities:
- - uid: 1434
- components:
- - pos: 44.804237,-23.430048
- parent: 2
- type: Transform
- uid: 5754
components:
- pos: 28.47453,10.806109
@@ -94865,6 +95294,11 @@ entities:
- pos: 71.5145,-14.448126
parent: 2
type: Transform
+ - uid: 16923
+ components:
+ - pos: 45.65519,-23.522778
+ parent: 2
+ type: Transform
- proto: HarmonicaInstrument
entities:
- uid: 5250
@@ -95419,12 +95853,6 @@ entities:
pos: -39.5,27.5
parent: 2
type: Transform
- - uid: 15007
- components:
- - rot: 3.141592653589793 rad
- pos: -37.5,24.5
- parent: 2
- type: Transform
- uid: 15027
components:
- rot: 3.141592653589793 rad
@@ -95493,6 +95921,210 @@ entities:
- canCollide: False
type: Physics
- type: InsideEntityStorage
+- proto: IntercomCommand
+ entities:
+ - uid: 16922
+ components:
+ - pos: 31.5,-26.5
+ parent: 2
+ type: Transform
+ - uid: 20451
+ components:
+ - pos: 49.5,-26.5
+ parent: 2
+ type: Transform
+- proto: IntercomCommon
+ entities:
+ - uid: 20452
+ components:
+ - pos: 49.5,-17.5
+ parent: 2
+ type: Transform
+ - uid: 20453
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 40.5,-8.5
+ parent: 2
+ type: Transform
+ - uid: 20454
+ components:
+ - pos: 23.5,5.5
+ parent: 2
+ type: Transform
+ - uid: 20455
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 9.5,18.5
+ parent: 2
+ type: Transform
+ - uid: 20456
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -3.5,18.5
+ parent: 2
+ type: Transform
+ - uid: 20457
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -27.5,-5.5
+ parent: 2
+ type: Transform
+ - uid: 20458
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -51.5,-7.5
+ parent: 2
+ type: Transform
+ - uid: 20459
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -52.5,-30.5
+ parent: 2
+ type: Transform
+ - uid: 20460
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -36.5,-34.5
+ parent: 2
+ type: Transform
+ - uid: 20461
+ components:
+ - pos: 3.5,-28.5
+ parent: 2
+ type: Transform
+ - uid: 20475
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -3.5,42.5
+ parent: 2
+ type: Transform
+ - uid: 20476
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 0.5,42.5
+ parent: 2
+ type: Transform
+- proto: IntercomEngineering
+ entities:
+ - uid: 20462
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -10.5,-22.5
+ parent: 2
+ type: Transform
+ - uid: 20463
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 3.5,-16.5
+ parent: 2
+ type: Transform
+ - uid: 20464
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -6.5,-34.5
+ parent: 2
+ type: Transform
+- proto: IntercomMedical
+ entities:
+ - uid: 20480
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 47.5,3.5
+ parent: 2
+ type: Transform
+ - uid: 20481
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 58.5,0.5
+ parent: 2
+ type: Transform
+ - uid: 20482
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 60.5,-8.5
+ parent: 2
+ type: Transform
+- proto: IntercomSecurity
+ entities:
+ - uid: 20473
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -3.5,34.5
+ parent: 2
+ type: Transform
+ - uid: 20474
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -8.5,25.5
+ parent: 2
+ type: Transform
+ - uid: 20477
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 3.5,22.5
+ parent: 2
+ type: Transform
+- proto: IntercomService
+ entities:
+ - uid: 20465
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -12.5,7.5
+ parent: 2
+ type: Transform
+ - uid: 20466
+ components:
+ - pos: -33.5,18.5
+ parent: 2
+ type: Transform
+ - uid: 20467
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -14.5,12.5
+ parent: 2
+ type: Transform
+ - uid: 20468
+ components:
+ - pos: -21.5,-11.5
+ parent: 2
+ type: Transform
+ - uid: 20469
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -35.5,-20.5
+ parent: 2
+ type: Transform
+ - uid: 20470
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -30.5,-20.5
+ parent: 2
+ type: Transform
+ - uid: 20471
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -26.5,-20.5
+ parent: 2
+ type: Transform
+- proto: IntercomSupply
+ entities:
+ - uid: 20472
+ components:
+ - pos: -32.5,-23.5
+ parent: 2
+ type: Transform
+ - uid: 20478
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 22.5,23.5
+ parent: 2
+ type: Transform
+ - uid: 20479
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 29.5,10.5
+ parent: 2
+ type: Transform
- proto: JetpackBlueFilled
entities:
- uid: 1468
@@ -95507,6 +96139,11 @@ entities:
type: Transform
- proto: JetpackMini
entities:
+ - uid: 1226
+ components:
+ - pos: 36.498608,20.255413
+ parent: 2
+ type: Transform
- uid: 7626
components:
- pos: 26.518127,-38.265408
@@ -95517,13 +96154,6 @@ entities:
- pos: 26.518127,-38.461094
parent: 2
type: Transform
-- proto: KitchenKnife
- entities:
- - uid: 1469
- components:
- - pos: -19.950123,15.5458765
- parent: 2
- type: Transform
- proto: KitchenMicrowave
entities:
- uid: 1470
@@ -95683,12 +96313,6 @@ entities:
type: Transform
- proto: LampGold
entities:
- - uid: 1476
- components:
- - rot: 1.5707963267948966 rad
- pos: -18.509325,-23.08205
- parent: 2
- type: Transform
- uid: 1477
components:
- rot: -1.5707963267948966 rad
@@ -96031,43 +96655,16 @@ entities:
- pos: -15.5,13.5
parent: 2
type: Transform
- - uid: 2902
+ - uid: 16469
components:
- - pos: 54.5,-32.5
+ - pos: -55.5,-33.5
parent: 2
type: Transform
- - air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- type: EntityStorage
- - containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 2904
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- type: ContainerContainer
- - uid: 16469
+- proto: LockerFreezerVaultFilled
+ entities:
+ - uid: 5446
components:
- - pos: -55.5,-33.5
+ - pos: 54.5,-32.5
parent: 2
type: Transform
- proto: LockerHeadOfPersonnelFilled
@@ -96659,44 +97256,44 @@ entities:
type: Transform
- proto: MachineParticleAcceleratorEmitterForeCircuitboard
entities:
- - uid: 8181
+ - uid: 5491
components:
- - pos: 9.065365,-37.2415
+ - pos: 11.49338,-40.45608
parent: 2
type: Transform
- proto: MachineParticleAcceleratorEmitterPortCircuitboard
entities:
- - uid: 8183
+ - uid: 5459
components:
- - pos: 9.065365,-37.535034
+ - pos: 12.035046,-40.29983
parent: 2
type: Transform
- proto: MachineParticleAcceleratorEmitterStarboardCircuitboard
entities:
- - uid: 8185
+ - uid: 5461
components:
- - pos: 9.530128,-37.498344
+ - pos: 12.066296,-40.70608
parent: 2
type: Transform
- proto: MachineParticleAcceleratorEndCapCircuitboard
entities:
- - uid: 8180
+ - uid: 5439
components:
- - pos: 8.514988,-37.522804
+ - pos: 11.482964,-40.24775
parent: 2
type: Transform
- proto: MachineParticleAcceleratorFuelChamberCircuitboard
entities:
- - uid: 8182
+ - uid: 5493
components:
- - pos: 9.065365,-37.363808
+ - pos: 11.514214,-40.654
parent: 2
type: Transform
- proto: MachineParticleAcceleratorPowerBoxCircuitboard
entities:
- - uid: 8184
+ - uid: 5460
components:
- - pos: 9.530128,-37.26596
+ - pos: 12.045464,-40.476917
parent: 2
type: Transform
- proto: MagazinePistolSubMachineGunTopMounted
@@ -96933,9 +97530,9 @@ entities:
type: Transform
- proto: MedkitAdvancedFilled
entities:
- - uid: 5240
+ - uid: 20484
components:
- - pos: 50.505863,-5.465599
+ - pos: 50.532883,-2.98625
parent: 2
type: Transform
- proto: MedkitBruteFilled
@@ -97537,9 +98134,9 @@ entities:
type: Transform
- proto: NoticeBoard
entities:
- - uid: 12544
+ - uid: 20449
components:
- - pos: -22.5,10.5
+ - pos: -19.5,10.5
parent: 2
type: Transform
- proto: NuclearBomb
@@ -97561,6 +98158,8 @@ entities:
entities:
- uid: 20385
components:
+ - desc: Upon closer inspection, you see a small icon symbolising the syndicate faction. This is clearly a joke.
+ type: MetaData
- pos: 15.507942,40.560833
parent: 2
type: Transform
@@ -97794,6 +98393,72 @@ entities:
- pos: -55.888382,-26.473818
parent: 2
type: Transform
+ - uid: 5454
+ components:
+ - pos: 1.74702,-14.689409
+ parent: 2
+ type: Transform
+ - stampState: paper_stamp-centcom
+ stampedBy:
+ - stampedColor: '#006600FF'
+ stampedName: stamp-component-stamped-name-centcom
+ - stampedColor: '#00BE00FF'
+ stampedName: stamp-component-stamped-name-approved
+ content: >-
+ [head=3]NX Core: Singularity[/head]
+
+
+ After several simulations where Superconducting Magnetic Energy Storage units were drained from the main system from [italic]SEVERAL[/italic] methods of shenanigan's user errors, it has been determined that the Singularity should be put on its own power loop, disconnected from the main station, the upsides of this include but are not limited to:
+
+ --------------------------------------------------------------------------------------
+
+ [bold]1.[/bold] Limited external forces from the containments power.
+
+ [bold]2.[/bold] An "early warning" system, if you see JUST the PA room run out of power, you know there is an issue.
+
+ [bold]3.[/bold] Due to being on its own small loop, its much easier to spot faults in the system.
+
+
+ While we have listed the upsides we also acknowledge the downside, for it being on its own loop you will need an external force if the system "runs out of juice". Our recommendation for this is simply attaching a generator to said SMES and letting it get to full charge before continuing operations but as said from another of our technicians... "just attach it to the main grid for like, a hot moment, and kickstart the thing!"
+
+
+ We are leaving this in your qualified hands and to your discretion,
+
+ [italic]Best of wishes, [bold]NanoTrasen technical build team.[/bold][/italic]
+ type: Paper
+ - uid: 5458
+ components:
+ - pos: -2.5050802,15.474933
+ parent: 2
+ type: Transform
+ - stampState: paper_stamp-centcom
+ stampedBy:
+ - stampedColor: '#006600FF'
+ stampedName: stamp-component-stamped-name-centcom
+ - stampedColor: '#00BE00FF'
+ stampedName: stamp-component-stamped-name-approved
+ content: >-
+ Dear [bold]engineering team[/bold],
+
+
+ During the production of this station we have overlooked this substation, and as a result does not power any APCs. Please pretend that this was not an oversight, but instead an intended decision.
+
+
+ [italics]It is now a spare substation for any case where one becomes damaged or wear out over time.[/italics]
+
+
+ [italic]Best wishes, [bold]CentComm.[/bold][/italic]
+ type: Paper
+ - uid: 5476
+ components:
+ - pos: 22.587116,14.608842
+ parent: 2
+ type: Transform
+ - uid: 5518
+ components:
+ - pos: 22.430866,14.483842
+ parent: 2
+ type: Transform
- uid: 6466
components:
- pos: -38.467358,-61.580452
@@ -97841,11 +98506,6 @@ entities:
- pos: 17.5,-21.5
parent: 2
type: Transform
- - uid: 1528
- components:
- - pos: 44.5,-23.5
- parent: 2
- type: Transform
- uid: 1529
components:
- rot: -1.5707963267948966 rad
@@ -97904,6 +98564,11 @@ entities:
- pos: 79.5,-24.5
parent: 2
type: Transform
+ - uid: 20493
+ components:
+ - pos: 45.5,-23.5
+ parent: 2
+ type: Transform
- proto: PaperOffice
entities:
- uid: 1530
@@ -97970,9 +98635,9 @@ entities:
type: Transform
- proto: ParticleAcceleratorComputerCircuitboard
entities:
- - uid: 8179
+ - uid: 5471
components:
- - pos: 8.502758,-37.290424
+ - pos: 12.628796,-40.414417
parent: 2
type: Transform
- proto: ParticleAcceleratorControlBoxUnfinished
@@ -98204,14 +98869,14 @@ entities:
type: Transform
- proto: PlasmaCanister
entities:
- - uid: 1549
+ - uid: 1550
components:
- - pos: 24.5,-2.5
+ - pos: 23.5,-16.5
parent: 2
type: Transform
- - uid: 1550
+ - uid: 16924
components:
- - pos: 23.5,-16.5
+ - pos: 24.5,-2.5
parent: 2
type: Transform
- proto: PlasmaReinforcedWindowDirectional
@@ -98246,6 +98911,29 @@ entities:
pos: 56.5,-33.5
parent: 2
type: Transform
+ - uid: 20561
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -44.5,23.5
+ parent: 2
+ type: Transform
+ - uid: 20562
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -43.5,24.5
+ parent: 2
+ type: Transform
+ - uid: 20563
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -42.5,23.5
+ parent: 2
+ type: Transform
+ - uid: 20564
+ components:
+ - pos: -43.5,22.5
+ parent: 2
+ type: Transform
- proto: PlasticFlapsAirtightClear
entities:
- uid: 1551
@@ -98336,6 +99024,13 @@ entities:
- pos: 47.55265,21.70006
parent: 2
type: Transform
+- proto: PlushieLamp
+ entities:
+ - uid: 16920
+ components:
+ - pos: -18.530083,-23.239492
+ parent: 2
+ type: Transform
- proto: PlushieLizard
entities:
- uid: 1556
@@ -98443,6 +99138,13 @@ entities:
- pos: -40.180298,-10.129335
parent: 2
type: Transform
+- proto: PlushieMoth
+ entities:
+ - uid: 20574
+ components:
+ - pos: 5.5258007,44.45198
+ parent: 2
+ type: Transform
- proto: PlushieRGBee
entities:
- uid: 3739
@@ -98474,6 +99176,14 @@ entities:
- pos: 66.48072,-57.55628
parent: 2
type: Transform
+- proto: PonderingOrb
+ entities:
+ - uid: 20547
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -43.563236,23.507605
+ parent: 2
+ type: Transform
- proto: PortableFlasher
entities:
- uid: 5104
@@ -98601,6 +99311,27 @@ entities:
- pos: 4.5,41.5
parent: 2
type: Transform
+- proto: PosterContrabandVoteWeh
+ entities:
+ - uid: 20521
+ components:
+ - pos: -40.5,-11.5
+ parent: 2
+ type: Transform
+- proto: PosterContrabandWehWatches
+ entities:
+ - uid: 20520
+ components:
+ - pos: -41.5,-10.5
+ parent: 2
+ type: Transform
+- proto: PosterLegitSafetyMothEpi
+ entities:
+ - uid: 20517
+ components:
+ - pos: 60.5,-2.5
+ parent: 2
+ type: Transform
- proto: PotatoAIChip
entities:
- uid: 17525
@@ -99172,13 +99903,6 @@ entities:
type: Transform
- canCollide: False
type: Physics
-- proto: PowerComputerCircuitboard
- entities:
- - uid: 8186
- components:
- - pos: 10.104965,-37.28575
- parent: 2
- type: Transform
- proto: Poweredlight
entities:
- uid: 1043
@@ -100774,6 +101498,19 @@ entities:
- pos: 81.5,-33.5
parent: 2
type: Transform
+- proto: PoweredSmallLightEmpty
+ entities:
+ - uid: 16926
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 81.5,-18.5
+ parent: 2
+ type: Transform
+ - uid: 16935
+ components:
+ - pos: 81.5,-12.5
+ parent: 2
+ type: Transform
- proto: PresentRandom
entities:
- uid: 20306
@@ -101170,6 +101907,11 @@ entities:
pos: 9.5,39.5
parent: 2
type: Transform
+ - uid: 16938
+ components:
+ - pos: 16.5,36.5
+ parent: 2
+ type: Transform
- uid: 17230
components:
- pos: 65.5,-54.5
@@ -101321,12 +102063,6 @@ entities:
- pos: -9.5,-4.5
parent: 2
type: Transform
- - uid: 1755
- components:
- - rot: -1.5707963267948966 rad
- pos: 0.5,-17.5
- parent: 2
- type: Transform
- uid: 1756
components:
- rot: -1.5707963267948966 rad
@@ -102167,6 +102903,58 @@ entities:
pos: 26.5,1.5
parent: 2
type: Transform
+ - uid: 16927
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 0.5,-17.5
+ parent: 2
+ type: Transform
+ - uid: 20541
+ components:
+ - pos: -40.5,22.5
+ parent: 2
+ type: Transform
+ - uid: 20542
+ components:
+ - pos: -39.5,22.5
+ parent: 2
+ type: Transform
+ - uid: 20543
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -40.5,24.5
+ parent: 2
+ type: Transform
+ - uid: 20544
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -39.5,24.5
+ parent: 2
+ type: Transform
+ - uid: 20545
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -44.5,20.5
+ parent: 2
+ type: Transform
+ - uid: 20546
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -42.5,20.5
+ parent: 2
+ type: Transform
+ - uid: 20567
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -44.5,19.5
+ parent: 2
+ type: Transform
+ - uid: 20568
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -42.5,19.5
+ parent: 2
+ type: Transform
- proto: RailingCorner
entities:
- uid: 1866
@@ -102217,18 +103005,6 @@ entities:
type: Transform
- proto: RailingCornerSmall
entities:
- - uid: 1871
- components:
- - rot: 3.141592653589793 rad
- pos: -0.5,-16.5
- parent: 2
- type: Transform
- - uid: 1872
- components:
- - rot: 1.5707963267948966 rad
- pos: 0.5,-16.5
- parent: 2
- type: Transform
- uid: 1873
components:
- pos: -9.5,-14.5
@@ -102460,6 +103236,28 @@ entities:
- pos: 80.5,-13.5
parent: 2
type: Transform
+- proto: RandomBoard
+ entities:
+ - uid: 2902
+ components:
+ - pos: 9.5,-37.5
+ parent: 2
+ type: Transform
+ - uid: 2904
+ components:
+ - pos: 10.5,-37.5
+ parent: 2
+ type: Transform
+ - uid: 5430
+ components:
+ - pos: 8.5,-37.5
+ parent: 2
+ type: Transform
+ - uid: 5436
+ components:
+ - pos: 11.5,-37.5
+ parent: 2
+ type: Transform
- proto: RandomDrinkBottle
entities:
- uid: 1893
@@ -104812,6 +105610,26 @@ entities:
- pos: 19.5,-61.5
parent: 2
type: Transform
+ - uid: 20553
+ components:
+ - pos: -43.5,21.5
+ parent: 2
+ type: Transform
+ - uid: 20554
+ components:
+ - pos: -45.5,23.5
+ parent: 2
+ type: Transform
+ - uid: 20555
+ components:
+ - pos: -43.5,25.5
+ parent: 2
+ type: Transform
+ - uid: 20556
+ components:
+ - pos: -41.5,23.5
+ parent: 2
+ type: Transform
- proto: ReinforcedWindow
entities:
- uid: 1963
@@ -106999,26 +107817,26 @@ entities:
type: Transform
- proto: RubberStampApproved
entities:
- - uid: 2050
+ - uid: 16307
components:
- - pos: 41.49148,-23.33832
+ - pos: 28.655685,10.5061245
parent: 2
type: Transform
- - uid: 16307
+ - uid: 16905
components:
- - pos: 28.655685,10.5061245
+ - pos: 44.978428,-23.253704
parent: 2
type: Transform
- proto: RubberStampDenied
entities:
- - uid: 2051
+ - uid: 16306
components:
- - pos: 41.49148,-23.521778
+ - pos: 28.325459,10.518355
parent: 2
type: Transform
- - uid: 16306
+ - uid: 16917
components:
- - pos: 28.325459,10.518355
+ - pos: 44.978428,-23.482008
parent: 2
type: Transform
- proto: SalvageMagnet
@@ -107179,6 +107997,13 @@ entities:
- pos: 13.535873,34.51549
parent: 2
type: Transform
+- proto: SheetSteel10
+ entities:
+ - uid: 20573
+ components:
+ - pos: -38.542088,26.524464
+ parent: 2
+ type: Transform
- proto: SheetUranium
entities:
- uid: 20347
@@ -107273,12 +108098,18 @@ entities:
pos: 62.5,28.5
parent: 2
type: Transform
+ - links:
+ - 16149
+ type: DeviceLinkSink
- uid: 16147
components:
- rot: 3.141592653589793 rad
pos: 56.5,28.5
parent: 2
type: Transform
+ - links:
+ - 16148
+ type: DeviceLinkSink
- proto: ShuttersNormalOpen
entities:
- uid: 2064
@@ -107549,30 +108380,36 @@ entities:
pos: 40.5,-22.5
parent: 2
type: Transform
+ - links:
+ - 8185
+ type: DeviceLinkSink
- uid: 8688
components:
- rot: 3.141592653589793 rad
pos: 41.5,-22.5
parent: 2
type: Transform
+ - links:
+ - 8185
+ type: DeviceLinkSink
- uid: 8689
components:
- rot: 3.141592653589793 rad
pos: 42.5,-22.5
parent: 2
type: Transform
- - uid: 8690
- components:
- - rot: 3.141592653589793 rad
- pos: 43.5,-22.5
- parent: 2
- type: Transform
+ - links:
+ - 8185
+ type: DeviceLinkSink
- uid: 8691
components:
- rot: 3.141592653589793 rad
pos: 44.5,-22.5
parent: 2
type: Transform
+ - links:
+ - 8185
+ type: DeviceLinkSink
- uid: 8744
components:
- pos: 48.5,-39.5
@@ -108080,6 +108917,8 @@ entities:
- Pressed: Toggle
157:
- Pressed: Toggle
+ 16939:
+ - Pressed: Toggle
type: DeviceLinkSource
- uid: 2077
components:
@@ -108231,6 +109070,22 @@ entities:
7934:
- Pressed: Toggle
type: DeviceLinkSource
+ - uid: 8185
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 44.5,-26.5
+ parent: 2
+ type: Transform
+ - linkedPorts:
+ 8691:
+ - Pressed: Toggle
+ 8689:
+ - Pressed: Toggle
+ 8688:
+ - Pressed: Toggle
+ 8687:
+ - Pressed: Toggle
+ type: DeviceLinkSource
- uid: 8530
components:
- pos: 17.5,26.5
@@ -108311,11 +109166,19 @@ entities:
- pos: 57.5,28.5
parent: 2
type: Transform
+ - linkedPorts:
+ 16147:
+ - Pressed: Toggle
+ type: DeviceLinkSource
- uid: 16149
components:
- pos: 61.5,28.5
parent: 2
type: Transform
+ - linkedPorts:
+ 16146:
+ - Pressed: Toggle
+ type: DeviceLinkSource
- uid: 16628
components:
- rot: 1.5707963267948966 rad
@@ -108791,6 +109654,11 @@ entities:
pos: -21.511724,-32.217175
parent: 2
type: Transform
+ - uid: 20489
+ components:
+ - pos: -25.510857,-5.767983
+ parent: 2
+ type: Transform
- proto: SignDirectionalEvac
entities:
- uid: 13613
@@ -108900,6 +109768,31 @@ entities:
pos: -9.5,18.5
parent: 2
type: Transform
+- proto: SignDirectionalMed
+ entities:
+ - uid: 20486
+ components:
+ - pos: -25.5,-5.5
+ parent: 2
+ type: Transform
+ - uid: 20487
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -23.499676,16.214537
+ parent: 2
+ type: Transform
+ - uid: 20490
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 16.495012,18.771885
+ parent: 2
+ type: Transform
+ - uid: 20491
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 18.508957,-25.217173
+ parent: 2
+ type: Transform
- proto: SignDirectionalSalvage
entities:
- uid: 13630
@@ -109003,6 +109896,12 @@ entities:
pos: 14.515841,18.759907
parent: 2
type: Transform
+ - uid: 20488
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -25.510857,-5.235952
+ parent: 2
+ type: Transform
- proto: SignDirectionalWash
entities:
- uid: 13645
@@ -109596,6 +110495,18 @@ entities:
- pos: 85.054985,-7.3956304
parent: 2
type: Transform
+- proto: SmartFridge
+ entities:
+ - uid: 5992
+ components:
+ - pos: 44.5,10.5
+ parent: 2
+ type: Transform
+ - uid: 16940
+ components:
+ - pos: -22.5,10.5
+ parent: 2
+ type: Transform
- proto: SMESBasic
entities:
- uid: 2095
@@ -109660,16 +110571,6 @@ entities:
- pos: 57.541435,-29.677723
parent: 2
type: Transform
- - uid: 8191
- components:
- - pos: 11.501194,-37.22003
- parent: 2
- type: Transform
- - uid: 8192
- components:
- - pos: 11.513424,-37.55026
- parent: 2
- type: Transform
- proto: soda_dispenser
entities:
- uid: 2102
@@ -109690,13 +110591,6 @@ entities:
pos: 5.5,40.5
parent: 2
type: Transform
-- proto: SolarControlComputerCircuitboard
- entities:
- - uid: 8187
- components:
- - pos: 10.104965,-37.48144
- parent: 2
- type: Transform
- proto: SolarPanel
entities:
- uid: 3207
@@ -110804,34 +111698,6 @@ entities:
- pos: -7.5,33.5
parent: 2
type: Transform
-- proto: SpawnPointSeniorEngineer
- entities:
- - uid: 7453
- components:
- - pos: -0.5,-22.5
- parent: 2
- type: Transform
-- proto: SpawnPointSeniorOfficer
- entities:
- - uid: 7454
- components:
- - pos: -8.5,32.5
- parent: 2
- type: Transform
-- proto: SpawnPointSeniorPhysician
- entities:
- - uid: 7452
- components:
- - pos: 44.5,8.5
- parent: 2
- type: Transform
-- proto: SpawnPointSeniorResearcher
- entities:
- - uid: 7451
- components:
- - pos: 69.5,-11.5
- parent: 2
- type: Transform
- proto: SpawnPointServiceWorker
entities:
- uid: 2126
@@ -110971,24 +111837,6 @@ entities:
pos: -20.5,1.5
parent: 2
type: Transform
- - uid: 2147
- components:
- - rot: -1.5707963267948966 rad
- pos: -21.5,-27.5
- parent: 2
- type: Transform
- - uid: 2148
- components:
- - rot: -1.5707963267948966 rad
- pos: -21.5,-26.5
- parent: 2
- type: Transform
- - uid: 2149
- components:
- - rot: -1.5707963267948966 rad
- pos: -21.5,-25.5
- parent: 2
- type: Transform
- uid: 2682
components:
- pos: -46.5,-45.5
@@ -111179,6 +112027,42 @@ entities:
pos: 8.5,-34.5
parent: 2
type: Transform
+ - uid: 20438
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 3.5,-19.5
+ parent: 2
+ type: Transform
+ - uid: 20439
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 50.5,-28.5
+ parent: 2
+ type: Transform
+ - uid: 20440
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 66.5,-14.5
+ parent: 2
+ type: Transform
+ - uid: 20441
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 48.5,14.5
+ parent: 2
+ type: Transform
+ - uid: 20442
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 0.5,32.5
+ parent: 2
+ type: Transform
+ - uid: 20443
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 29.5,9.5
+ parent: 2
+ type: Transform
- proto: StoolBar
entities:
- uid: 2152
@@ -111250,6 +112134,11 @@ entities:
pos: 16.5,34.5
parent: 2
type: Transform
+ - uid: 16918
+ components:
+ - pos: -37.5,24.5
+ parent: 2
+ type: Transform
- proto: StorageCanister
entities:
- uid: 2157
@@ -111444,21 +112333,6 @@ entities:
- pos: 57.529205,-29.518724
parent: 2
type: Transform
- - uid: 8188
- components:
- - pos: 10.704265,-37.191784
- parent: 2
- type: Transform
- - uid: 8189
- components:
- - pos: 10.692034,-37.363014
- parent: 2
- type: Transform
- - uid: 8190
- components:
- - pos: 10.7164955,-37.54647
- parent: 2
- type: Transform
- proto: SuitStorageAtmos
entities:
- uid: 2168
@@ -113723,6 +114597,13 @@ entities:
- pos: 15.512184,29.873684
parent: 2
type: Transform
+- proto: SyringeAmbuzol
+ entities:
+ - uid: 16910
+ components:
+ - pos: 61.447414,17.072186
+ parent: 2
+ type: Transform
- proto: Table
entities:
- uid: 1413
@@ -116297,18 +117178,6 @@ entities:
occludes: True
ents: []
type: ContainerContainer
-- proto: TelecomServerCircuitboard
- entities:
- - uid: 8172
- components:
- - pos: 11.499254,-40.29915
- parent: 2
- type: Transform
- - uid: 8173
- components:
- - pos: 11.499254,-40.531532
- parent: 2
- type: Transform
- proto: Thruster
entities:
- uid: 15142
@@ -116728,14 +117597,16 @@ entities:
- pos: -37.5,21.5
parent: 2
type: Transform
- - uid: 16639
+ - uid: 20296
components:
- - pos: 16.5,36.5
+ - pos: -15.5,-0.5
parent: 2
type: Transform
- - uid: 20296
+- proto: VendingMachineCargoDrobe
+ entities:
+ - uid: 16906
components:
- - pos: -15.5,-0.5
+ - pos: 23.5,22.5
parent: 2
type: Transform
- proto: VendingMachineCart
@@ -116978,9 +117849,9 @@ entities:
type: Transform
- proto: VendingMachineSciDrobe
entities:
- - uid: 7444
+ - uid: 4277
components:
- - pos: 67.5,-8.5
+ - pos: 67.5,-10.5
parent: 2
type: Transform
- proto: VendingMachineSec
@@ -117016,13 +117887,6 @@ entities:
- pos: 80.5,-7.5
parent: 2
type: Transform
-- proto: VendingMachineSmartFridge
- entities:
- - uid: 5992
- components:
- - pos: 44.5,10.5
- parent: 2
- type: Transform
- proto: VendingMachineSustenance
entities:
- uid: 5168
@@ -119352,12 +120216,6 @@ entities:
- pos: 22.5,-32.5
parent: 2
type: Transform
- - uid: 2848
- components:
- - rot: 1.5707963267948966 rad
- pos: 33.5,-14.5
- parent: 2
- type: Transform
- uid: 2849
components:
- rot: 1.5707963267948966 rad
@@ -120704,12 +121562,6 @@ entities:
- pos: 27.5,5.5
parent: 2
type: Transform
- - uid: 4277
- components:
- - rot: -1.5707963267948966 rad
- pos: 27.5,9.5
- parent: 2
- type: Transform
- uid: 4278
components:
- pos: 23.5,5.5
@@ -122055,12 +122907,6 @@ entities:
pos: 24.5,11.5
parent: 2
type: Transform
- - uid: 5430
- components:
- - rot: -1.5707963267948966 rad
- pos: 25.5,9.5
- parent: 2
- type: Transform
- uid: 5431
components:
- rot: -1.5707963267948966 rad
@@ -122082,72 +122928,22 @@ entities:
- pos: 10.5,36.5
parent: 2
type: Transform
- - uid: 5436
- components:
- - pos: 28.5,16.5
- parent: 2
- type: Transform
- - uid: 5439
- components:
- - pos: 25.5,16.5
- parent: 2
- type: Transform
- - uid: 5446
- components:
- - pos: 29.5,15.5
- parent: 2
- type: Transform
- uid: 5451
components:
- rot: -1.5707963267948966 rad
pos: 24.5,9.5
parent: 2
type: Transform
- - uid: 5454
- components:
- - pos: 29.5,13.5
- parent: 2
- type: Transform
- uid: 5455
components:
- pos: -44.5,-37.5
parent: 2
type: Transform
- - uid: 5458
- components:
- - pos: 29.5,14.5
- parent: 2
- type: Transform
- - uid: 5459
- components:
- - pos: 29.5,12.5
- parent: 2
- type: Transform
- - uid: 5460
- components:
- - pos: 29.5,10.5
- parent: 2
- type: Transform
- - uid: 5461
- components:
- - pos: 29.5,9.5
- parent: 2
- type: Transform
- uid: 5470
components:
- pos: 32.5,16.5
parent: 2
type: Transform
- - uid: 5471
- components:
- - pos: 32.5,17.5
- parent: 2
- type: Transform
- - uid: 5476
- components:
- - pos: 32.5,22.5
- parent: 2
- type: Transform
- uid: 5477
components:
- pos: 32.5,23.5
@@ -122193,16 +122989,6 @@ entities:
- pos: 35.5,7.5
parent: 2
type: Transform
- - uid: 5491
- components:
- - pos: 29.5,11.5
- parent: 2
- type: Transform
- - uid: 5493
- components:
- - pos: 31.5,11.5
- parent: 2
- type: Transform
- uid: 5494
components:
- pos: 32.5,11.5
@@ -122294,21 +123080,16 @@ entities:
pos: -56.5,-51.5
parent: 2
type: Transform
- - uid: 5518
- components:
- - rot: 3.141592653589793 rad
- pos: 30.5,24.5
- parent: 2
- type: Transform
- uid: 5532
components:
- rot: 3.141592653589793 rad
- pos: 24.5,24.5
+ pos: 27.5,9.5
parent: 2
type: Transform
- uid: 5559
components:
- - pos: 29.5,16.5
+ - rot: 3.141592653589793 rad
+ pos: 25.5,9.5
parent: 2
type: Transform
- uid: 5569
@@ -122373,12 +123154,6 @@ entities:
- pos: 36.5,11.5
parent: 2
type: Transform
- - uid: 5652
- components:
- - rot: -1.5707963267948966 rad
- pos: 27.5,24.5
- parent: 2
- type: Transform
- uid: 5659
components:
- rot: 3.141592653589793 rad
@@ -123002,11 +123777,6 @@ entities:
pos: -38.5,-50.5
parent: 2
type: Transform
- - uid: 5950
- components:
- - pos: 48.5,6.5
- parent: 2
- type: Transform
- uid: 5951
components:
- pos: 39.5,8.5
@@ -123996,30 +124766,6 @@ entities:
pos: -39.5,-66.5
parent: 2
type: Transform
- - uid: 6463
- components:
- - rot: 1.5707963267948966 rad
- pos: 45.5,-2.5
- parent: 2
- type: Transform
- - uid: 6483
- components:
- - rot: 1.5707963267948966 rad
- pos: 46.5,-2.5
- parent: 2
- type: Transform
- - uid: 6484
- components:
- - rot: 1.5707963267948966 rad
- pos: 45.5,-5.5
- parent: 2
- type: Transform
- - uid: 6485
- components:
- - rot: 1.5707963267948966 rad
- pos: 46.5,-5.5
- parent: 2
- type: Transform
- uid: 6486
components:
- rot: 1.5707963267948966 rad
@@ -124038,30 +124784,12 @@ entities:
pos: 58.5,-8.5
parent: 2
type: Transform
- - uid: 6489
- components:
- - rot: 1.5707963267948966 rad
- pos: 52.5,0.5
- parent: 2
- type: Transform
- uid: 6490
components:
- rot: 1.5707963267948966 rad
pos: 52.5,-8.5
parent: 2
type: Transform
- - uid: 6492
- components:
- - rot: 1.5707963267948966 rad
- pos: 53.5,0.5
- parent: 2
- type: Transform
- - uid: 6493
- components:
- - rot: 1.5707963267948966 rad
- pos: 54.5,0.5
- parent: 2
- type: Transform
- uid: 6494
components:
- rot: -1.5707963267948966 rad
@@ -124074,42 +124802,6 @@ entities:
pos: 56.5,-8.5
parent: 2
type: Transform
- - uid: 6496
- components:
- - rot: 1.5707963267948966 rad
- pos: 54.5,-2.5
- parent: 2
- type: Transform
- - uid: 6497
- components:
- - rot: -1.5707963267948966 rad
- pos: 56.5,-5.5
- parent: 2
- type: Transform
- - uid: 6498
- components:
- - rot: -1.5707963267948966 rad
- pos: 55.5,-5.5
- parent: 2
- type: Transform
- - uid: 6499
- components:
- - rot: 1.5707963267948966 rad
- pos: 54.5,-5.5
- parent: 2
- type: Transform
- - uid: 6500
- components:
- - rot: -1.5707963267948966 rad
- pos: 56.5,-6.5
- parent: 2
- type: Transform
- - uid: 6501
- components:
- - rot: -1.5707963267948966 rad
- pos: 56.5,-7.5
- parent: 2
- type: Transform
- uid: 6502
components:
- rot: 1.5707963267948966 rad
@@ -124122,18 +124814,6 @@ entities:
pos: 53.5,-8.5
parent: 2
type: Transform
- - uid: 6504
- components:
- - rot: 1.5707963267948966 rad
- pos: 53.5,-5.5
- parent: 2
- type: Transform
- - uid: 6505
- components:
- - rot: 1.5707963267948966 rad
- pos: 53.5,-2.5
- parent: 2
- type: Transform
- uid: 6507
components:
- rot: 1.5707963267948966 rad
@@ -124175,12 +124855,6 @@ entities:
pos: 56.5,0.5
parent: 2
type: Transform
- - uid: 6525
- components:
- - rot: -1.5707963267948966 rad
- pos: 55.5,-2.5
- parent: 2
- type: Transform
- uid: 6527
components:
- rot: 3.141592653589793 rad
@@ -124199,12 +124873,6 @@ entities:
pos: 54.5,-15.5
parent: 2
type: Transform
- - uid: 6530
- components:
- - rot: -1.5707963267948966 rad
- pos: 55.5,0.5
- parent: 2
- type: Transform
- uid: 6531
components:
- rot: -1.5707963267948966 rad
@@ -124223,18 +124891,6 @@ entities:
pos: 56.5,-0.5
parent: 2
type: Transform
- - uid: 6552
- components:
- - rot: -1.5707963267948966 rad
- pos: 47.5,-2.5
- parent: 2
- type: Transform
- - uid: 6553
- components:
- - rot: -1.5707963267948966 rad
- pos: 47.5,-5.5
- parent: 2
- type: Transform
- uid: 6563
components:
- rot: 3.141592653589793 rad
@@ -124247,48 +124903,6 @@ entities:
pos: 60.5,-2.5
parent: 2
type: Transform
- - uid: 6570
- components:
- - rot: 3.141592653589793 rad
- pos: 52.5,6.5
- parent: 2
- type: Transform
- - uid: 6571
- components:
- - rot: 3.141592653589793 rad
- pos: 52.5,5.5
- parent: 2
- type: Transform
- - uid: 6574
- components:
- - rot: 3.141592653589793 rad
- pos: 52.5,9.5
- parent: 2
- type: Transform
- - uid: 6618
- components:
- - rot: 1.5707963267948966 rad
- pos: 53.5,5.5
- parent: 2
- type: Transform
- - uid: 6619
- components:
- - rot: 1.5707963267948966 rad
- pos: 54.5,5.5
- parent: 2
- type: Transform
- - uid: 6620
- components:
- - rot: 1.5707963267948966 rad
- pos: 55.5,5.5
- parent: 2
- type: Transform
- - uid: 6621
- components:
- - rot: 1.5707963267948966 rad
- pos: 56.5,5.5
- parent: 2
- type: Transform
- uid: 6622
components:
- rot: 1.5707963267948966 rad
@@ -124301,24 +124915,6 @@ entities:
pos: 58.5,5.5
parent: 2
type: Transform
- - uid: 6624
- components:
- - rot: 1.5707963267948966 rad
- pos: 58.5,4.5
- parent: 2
- type: Transform
- - uid: 6625
- components:
- - rot: 1.5707963267948966 rad
- pos: 58.5,3.5
- parent: 2
- type: Transform
- - uid: 6627
- components:
- - rot: 1.5707963267948966 rad
- pos: 58.5,1.5
- parent: 2
- type: Transform
- uid: 6628
components:
- rot: 1.5707963267948966 rad
@@ -124361,18 +124957,6 @@ entities:
pos: 56.5,9.5
parent: 2
type: Transform
- - uid: 6635
- components:
- - rot: 1.5707963267948966 rad
- pos: 54.5,9.5
- parent: 2
- type: Transform
- - uid: 6636
- components:
- - rot: 1.5707963267948966 rad
- pos: 53.5,9.5
- parent: 2
- type: Transform
- uid: 6637
components:
- rot: 1.5707963267948966 rad
@@ -127441,6 +128025,24 @@ entities:
- pos: 15.5,-39.5
parent: 2
type: Transform
+ - uid: 8174
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 52.5,9.5
+ parent: 2
+ type: Transform
+ - uid: 8182
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 54.5,9.5
+ parent: 2
+ type: Transform
+ - uid: 8183
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 53.5,9.5
+ parent: 2
+ type: Transform
- uid: 8200
components:
- pos: -2.5,-42.5
@@ -128940,6 +129542,11 @@ entities:
- pos: -6.5,51.5
parent: 2
type: Transform
+ - uid: 16913
+ components:
+ - pos: -38.5,24.5
+ parent: 2
+ type: Transform
- uid: 17070
components:
- pos: 39.5,-52.5
@@ -129122,6 +129729,66 @@ entities:
- pos: 81.5,-36.5
parent: 2
type: Transform
+ - uid: 20529
+ components:
+ - pos: -41.5,22.5
+ parent: 2
+ type: Transform
+ - uid: 20530
+ components:
+ - pos: -42.5,22.5
+ parent: 2
+ type: Transform
+ - uid: 20531
+ components:
+ - pos: -42.5,21.5
+ parent: 2
+ type: Transform
+ - uid: 20532
+ components:
+ - pos: -44.5,21.5
+ parent: 2
+ type: Transform
+ - uid: 20533
+ components:
+ - pos: -44.5,22.5
+ parent: 2
+ type: Transform
+ - uid: 20534
+ components:
+ - pos: -45.5,22.5
+ parent: 2
+ type: Transform
+ - uid: 20535
+ components:
+ - pos: -45.5,24.5
+ parent: 2
+ type: Transform
+ - uid: 20536
+ components:
+ - pos: -44.5,24.5
+ parent: 2
+ type: Transform
+ - uid: 20537
+ components:
+ - pos: -44.5,25.5
+ parent: 2
+ type: Transform
+ - uid: 20538
+ components:
+ - pos: -42.5,25.5
+ parent: 2
+ type: Transform
+ - uid: 20539
+ components:
+ - pos: -42.5,24.5
+ parent: 2
+ type: Transform
+ - uid: 20540
+ components:
+ - pos: -41.5,24.5
+ parent: 2
+ type: Transform
- proto: WallRock
entities:
- uid: 16705
@@ -132048,11 +132715,6 @@ entities:
- pos: -51.5,7.5
parent: 2
type: Transform
- - uid: 3768
- components:
- - pos: -22.5,10.5
- parent: 2
- type: Transform
- uid: 3770
components:
- pos: -45.5,-9.5
@@ -132467,6 +133129,12 @@ entities:
- pos: 12.5,26.5
parent: 2
type: Transform
+ - uid: 5652
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 28.5,16.5
+ parent: 2
+ type: Transform
- uid: 5766
components:
- pos: 12.5,25.5
@@ -132488,6 +133156,12 @@ entities:
- pos: -56.5,-32.5
parent: 2
type: Transform
+ - uid: 5950
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 25.5,16.5
+ parent: 2
+ type: Transform
- uid: 6050
components:
- pos: -64.5,-23.5
@@ -132535,11 +133209,113 @@ entities:
- pos: -44.5,-32.5
parent: 2
type: Transform
+ - uid: 6484
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 29.5,14.5
+ parent: 2
+ type: Transform
+ - uid: 6485
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 29.5,12.5
+ parent: 2
+ type: Transform
+ - uid: 6489
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 29.5,10.5
+ parent: 2
+ type: Transform
+ - uid: 6493
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 32.5,17.5
+ parent: 2
+ type: Transform
+ - uid: 6496
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 32.5,22.5
+ parent: 2
+ type: Transform
+ - uid: 6498
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 31.5,11.5
+ parent: 2
+ type: Transform
+ - uid: 6499
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 30.5,24.5
+ parent: 2
+ type: Transform
+ - uid: 6500
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 24.5,24.5
+ parent: 2
+ type: Transform
+ - uid: 6525
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 45.5,-2.5
+ parent: 2
+ type: Transform
- uid: 6544
components:
- pos: -15.5,-36.5
parent: 2
type: Transform
+ - uid: 6553
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 46.5,-5.5
+ parent: 2
+ type: Transform
+ - uid: 6571
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 53.5,0.5
+ parent: 2
+ type: Transform
+ - uid: 6618
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 54.5,-2.5
+ parent: 2
+ type: Transform
+ - uid: 6619
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 56.5,-5.5
+ parent: 2
+ type: Transform
+ - uid: 6620
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 55.5,-5.5
+ parent: 2
+ type: Transform
+ - uid: 6624
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 56.5,-6.5
+ parent: 2
+ type: Transform
+ - uid: 6627
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 53.5,-5.5
+ parent: 2
+ type: Transform
+ - uid: 6635
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 53.5,-2.5
+ parent: 2
+ type: Transform
- uid: 6667
components:
- pos: -15.5,-38.5
@@ -132638,6 +133414,18 @@ entities:
- pos: 55.5,-17.5
parent: 2
type: Transform
+ - uid: 7229
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 55.5,0.5
+ parent: 2
+ type: Transform
+ - uid: 7444
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 47.5,-5.5
+ parent: 2
+ type: Transform
- uid: 7456
components:
- pos: 58.5,24.5
@@ -132771,6 +133559,42 @@ entities:
- pos: -8.5,-40.5
parent: 2
type: Transform
+ - uid: 8173
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 52.5,5.5
+ parent: 2
+ type: Transform
+ - uid: 8176
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 54.5,5.5
+ parent: 2
+ type: Transform
+ - uid: 8178
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 56.5,5.5
+ parent: 2
+ type: Transform
+ - uid: 8179
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 58.5,4.5
+ parent: 2
+ type: Transform
+ - uid: 8180
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 58.5,3.5
+ parent: 2
+ type: Transform
+ - uid: 8181
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 58.5,1.5
+ parent: 2
+ type: Transform
- uid: 8223
components:
- pos: 16.5,24.5
@@ -134474,18 +135298,102 @@ entities:
pos: -45.5,-35.5
parent: 2
type: Transform
+ - uid: 6463
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 29.5,15.5
+ parent: 2
+ type: Transform
+ - uid: 6483
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 29.5,13.5
+ parent: 2
+ type: Transform
+ - uid: 6492
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 29.5,9.5
+ parent: 2
+ type: Transform
+ - uid: 6497
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 29.5,11.5
+ parent: 2
+ type: Transform
+ - uid: 6501
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 29.5,16.5
+ parent: 2
+ type: Transform
+ - uid: 6504
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 27.5,24.5
+ parent: 2
+ type: Transform
+ - uid: 6505
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 48.5,6.5
+ parent: 2
+ type: Transform
- uid: 6519
components:
- rot: 1.5707963267948966 rad
pos: -15.5,-35.5
parent: 2
type: Transform
+ - uid: 6530
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 46.5,-2.5
+ parent: 2
+ type: Transform
+ - uid: 6552
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 45.5,-5.5
+ parent: 2
+ type: Transform
+ - uid: 6570
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 52.5,0.5
+ parent: 2
+ type: Transform
+ - uid: 6574
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 54.5,0.5
+ parent: 2
+ type: Transform
- uid: 6610
components:
- rot: 1.5707963267948966 rad
pos: -15.5,-37.5
parent: 2
type: Transform
+ - uid: 6621
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 54.5,-5.5
+ parent: 2
+ type: Transform
+ - uid: 6625
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 56.5,-7.5
+ parent: 2
+ type: Transform
+ - uid: 6636
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 55.5,-2.5
+ parent: 2
+ type: Transform
- uid: 6937
components:
- pos: 47.5,19.5
@@ -134549,6 +135457,12 @@ entities:
- pos: 12.5,37.5
parent: 2
type: Transform
+ - uid: 7258
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 47.5,-2.5
+ parent: 2
+ type: Transform
- uid: 7272
components:
- pos: 56.5,24.5
@@ -134661,6 +135575,24 @@ entities:
pos: -8.5,-39.5
parent: 2
type: Transform
+ - uid: 8172
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 52.5,6.5
+ parent: 2
+ type: Transform
+ - uid: 8175
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 53.5,5.5
+ parent: 2
+ type: Transform
+ - uid: 8177
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 55.5,5.5
+ parent: 2
+ type: Transform
- uid: 8210
components:
- pos: 66.5,6.5
@@ -135408,17 +136340,6 @@ entities:
- pos: 3.53751,33.53506
parent: 2
type: Transform
-- proto: WeaponRevolverDeckard
- entities:
- - uid: 2904
- components:
- - flags: InContainer
- type: MetaData
- - parent: 2902
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- proto: WeaponShotgunKammerer
entities:
- uid: 5091
@@ -135756,6 +136677,18 @@ entities:
- pos: 53.5,22.5
parent: 2
type: Transform
+ - uid: 16941
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -37.5,4.5
+ parent: 2
+ type: Transform
+ - uid: 18471
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -29.5,4.5
+ parent: 2
+ type: Transform
- proto: WindoorBarLocked
entities:
- uid: 16648
@@ -136190,6 +137123,12 @@ entities:
pos: 71.5,-9.5
parent: 2
type: Transform
+ - uid: 8184
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 67.5,-8.5
+ parent: 2
+ type: Transform
- proto: WindoorSecureSecurityLocked
entities:
- uid: 9186
@@ -136223,18 +137162,6 @@ entities:
pos: -19.5,4.5
parent: 2
type: Transform
- - uid: 3520
- components:
- - rot: -1.5707963267948966 rad
- pos: -29.5,4.5
- parent: 2
- type: Transform
- - uid: 3521
- components:
- - rot: 1.5707963267948966 rad
- pos: -37.5,4.5
- parent: 2
- type: Transform
- proto: WindowDirectional
entities:
- uid: 3522
@@ -136743,12 +137670,6 @@ entities:
pos: 71.5,-7.5
parent: 2
type: Transform
- - uid: 7258
- components:
- - rot: -1.5707963267948966 rad
- pos: 67.5,-8.5
- parent: 2
- type: Transform
- uid: 7434
components:
- rot: 3.141592653589793 rad
diff --git a/Resources/Maps/marathon.yml b/Resources/Maps/marathon.yml
index b1d34621dc1..aa6be9a7e8e 100644
--- a/Resources/Maps/marathon.yml
+++ b/Resources/Maps/marathon.yml
@@ -17,6 +17,7 @@ tilemap:
34: FloorDarkPavement
35: FloorDarkPavementVertical
36: FloorDarkPlastic
+ 38: FloorDirt
39: FloorEighties
42: FloorFreezer
43: FloorGlass
@@ -31,7 +32,6 @@ tilemap:
59: FloorLaundry
60: FloorLino
63: FloorMime
- 67: FloorMono
72: FloorPlanetGrass
73: FloorPlastic
74: FloorRGlass
@@ -45,6 +45,7 @@ tilemap:
92: FloorSteelDiagonal
94: FloorSteelDirty
95: FloorSteelHerringbone
+ 96: FloorSteelLime
97: FloorSteelMini
100: FloorSteelPavement
101: FloorSteelPavementVertical
@@ -72,159 +73,159 @@ entities:
- chunks:
-1,0:
ind: -1,0
- tiles: dwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAABVwAAAAAAdwAAAAAAVwAAAAAAVwAAAAACVwAAAAAAVwAAAAADVwAAAAABVwAAAAABVwAAAAADVwAAAAACVwAAAAADVwAAAAACVwAAAAACVwAAAAACVwAAAAACVwAAAAACVwAAAAACVwAAAAADVwAAAAABVwAAAAADVwAAAAAAVwAAAAAAVwAAAAACVwAAAAABVwAAAAABVwAAAAADVwAAAAADVwAAAAACVwAAAAACVwAAAAABVwAAAAABVwAAAAABVwAAAAACVwAAAAACVwAAAAACVwAAAAAAVwAAAAACVwAAAAADVwAAAAADVwAAAAADVwAAAAAAVwAAAAADVwAAAAAAVwAAAAACVwAAAAADVwAAAAADVwAAAAABVwAAAAABVwAAAAADVwAAAAADVwAAAAADVwAAAAADVwAAAAACVwAAAAABVwAAAAADVwAAAAACVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADVwAAAAACVwAAAAACVwAAAAAAVwAAAAADVwAAAAABVwAAAAABdwAAAAAAVwAAAAACVwAAAAABVwAAAAADdwAAAAAAWgAAAAACWgAAAAADWgAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAVwAAAAADGwAAAAABdwAAAAAAWgAAAAABWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAACdwAAAAAAVwAAAAAAGwAAAAABVwAAAAABGwAAAAACVwAAAAADGwAAAAAAVwAAAAACGwAAAAADVwAAAAABGwAAAAACWgAAAAABWgAAAAACWgAAAAACWgAAAAACWgAAAAADdwAAAAAAGwAAAAADVwAAAAABGwAAAAADVwAAAAABGwAAAAABVwAAAAADGwAAAAADVwAAAAADGwAAAAAAVwAAAAABWgAAAAADWgAAAAADWgAAAAAAWgAAAAAAWgAAAAABdwAAAAAAVwAAAAACGwAAAAABVwAAAAAAGwAAAAACVwAAAAADGwAAAAABVwAAAAAAGwAAAAACVwAAAAACGwAAAAADWgAAAAADWgAAAAACWgAAAAABWgAAAAABWgAAAAABdwAAAAAAGwAAAAABVwAAAAADGwAAAAAAVwAAAAADGwAAAAAAVwAAAAAAGwAAAAADVwAAAAADGwAAAAADVwAAAAACWgAAAAADWgAAAAACWgAAAAACWgAAAAAAWgAAAAABdwAAAAAAVwAAAAACGwAAAAABVwAAAAADGwAAAAADVwAAAAACGwAAAAACVwAAAAACGwAAAAABVwAAAAABGwAAAAABWgAAAAAAWgAAAAADWgAAAAACWgAAAAADWgAAAAABdwAAAAAAGwAAAAADVwAAAAABGwAAAAABVwAAAAABGwAAAAABVwAAAAACGwAAAAAAVwAAAAADGwAAAAABVwAAAAACdwAAAAAAdwAAAAAAGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACdwAAAAAAGwAAAAABGwAAAAACGwAAAAAAGwAAAAACGwAAAAACGwAAAAACKgAAAAAAdwAAAAAAGwAAAAABGwAAAAABGwAAAAADGwAAAAAAGwAAAAACGwAAAAAAGwAAAAAAdwAAAAAAdAAAAAACdAAAAAACdAAAAAACdAAAAAACdAAAAAAAdAAAAAACKgAAAAAAdwAAAAAAGwAAAAABGwAAAAACGwAAAAABGwAAAAAAGwAAAAADGwAAAAAAGwAAAAAAGwAAAAADdAAAAAACdAAAAAAAdAAAAAACdAAAAAADdAAAAAABdAAAAAACKgAAAAAAdwAAAAAAVwAAAAABdwAAAAAAdwAAAAAAGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACGwAAAAABGwAAAAACGwAAAAADGwAAAAACGwAAAAAC
+ tiles: dwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADVwAAAAACVwAAAAACdwAAAAAAVwAAAAAAVwAAAAACVwAAAAABVwAAAAADVwAAAAAAVwAAAAACVwAAAAACVwAAAAADVwAAAAAAVwAAAAAAVwAAAAABVwAAAAACVwAAAAAAVwAAAAAAVwAAAAACVwAAAAAAVwAAAAABVwAAAAABVwAAAAADVwAAAAACVwAAAAABVwAAAAACVwAAAAACVwAAAAAAVwAAAAACVwAAAAABVwAAAAADVwAAAAAAVwAAAAADVwAAAAAAVwAAAAABVwAAAAABVwAAAAACVwAAAAACVwAAAAABVwAAAAADVwAAAAAAVwAAAAACVwAAAAADVwAAAAABVwAAAAADVwAAAAACVwAAAAABVwAAAAACVwAAAAACVwAAAAABVwAAAAACVwAAAAACVwAAAAAAVwAAAAADVwAAAAAAVwAAAAAAVwAAAAABVwAAAAADVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADVwAAAAADVwAAAAADVwAAAAADVwAAAAACVwAAAAADVwAAAAACdwAAAAAAVwAAAAACVwAAAAADVwAAAAAAdwAAAAAAWgAAAAACWgAAAAACWgAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACVwAAAAACGwAAAAAAdwAAAAAAWgAAAAAAWgAAAAAAWgAAAAABWgAAAAACWgAAAAAAdwAAAAAAVwAAAAACGwAAAAADVwAAAAACGwAAAAABVwAAAAADGwAAAAABVwAAAAACGwAAAAABVwAAAAAAGwAAAAABWgAAAAADWgAAAAACWgAAAAABWgAAAAADWgAAAAABdwAAAAAAGwAAAAABVwAAAAACGwAAAAADVwAAAAABGwAAAAABVwAAAAABGwAAAAACVwAAAAABGwAAAAABVwAAAAAAWgAAAAADWgAAAAAAWgAAAAAAWgAAAAACWgAAAAAAdwAAAAAAVwAAAAABGwAAAAACVwAAAAADGwAAAAACVwAAAAABGwAAAAACVwAAAAABGwAAAAACVwAAAAACGwAAAAAAWgAAAAAAWgAAAAADWgAAAAACWgAAAAABWgAAAAABdwAAAAAAGwAAAAACVwAAAAAAGwAAAAADVwAAAAAAGwAAAAAAVwAAAAADGwAAAAABVwAAAAACGwAAAAADVwAAAAADWgAAAAAAWgAAAAADWgAAAAADWgAAAAADWgAAAAABdwAAAAAAVwAAAAAAGwAAAAACVwAAAAADGwAAAAADVwAAAAAAGwAAAAADVwAAAAADGwAAAAADVwAAAAADGwAAAAACWgAAAAADWgAAAAADWgAAAAABWgAAAAAAWgAAAAACdwAAAAAAGwAAAAADVwAAAAABGwAAAAACVwAAAAACGwAAAAADVwAAAAABGwAAAAABVwAAAAAAGwAAAAABVwAAAAACdwAAAAAAdwAAAAAAGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABdwAAAAAAGwAAAAABGwAAAAACGwAAAAACGwAAAAACGwAAAAACGwAAAAACKgAAAAAAdwAAAAAAGwAAAAADGwAAAAABGwAAAAADGwAAAAACGwAAAAABGwAAAAABGwAAAAADdwAAAAAAdAAAAAACdAAAAAABdAAAAAACdAAAAAADdAAAAAAAdAAAAAACKgAAAAAAdwAAAAAAGwAAAAAAGwAAAAADGwAAAAAAGwAAAAABGwAAAAACGwAAAAACGwAAAAADGwAAAAACdAAAAAADdAAAAAABdAAAAAADdAAAAAACdAAAAAAAdAAAAAACKgAAAAAAdwAAAAAAVwAAAAADdwAAAAAAdwAAAAAAGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADGwAAAAADGwAAAAADGwAAAAACGwAAAAADGwAAAAAA
version: 6
0,0:
ind: 0,0
- tiles: VwAAAAADVwAAAAABdwAAAAAAVwAAAAADVwAAAAAAVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAVwAAAAABVwAAAAAAVwAAAAADVwAAAAADVwAAAAAAVwAAAAAAVwAAAAACVwAAAAAAVwAAAAAAVwAAAAACVwAAAAABVwAAAAACVwAAAAABVwAAAAABVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAADVwAAAAAAVwAAAAACVwAAAAABVwAAAAACVwAAAAAAVwAAAAAAVwAAAAADVwAAAAADVwAAAAAAVwAAAAADVwAAAAACVwAAAAADVwAAAAADdwAAAAAAVwAAAAABVwAAAAABVwAAAAAAVwAAAAACVwAAAAAAVwAAAAABVwAAAAABVwAAAAADVwAAAAABVwAAAAADVwAAAAACVwAAAAAAVwAAAAACVwAAAAAAVwAAAAABdwAAAAAAdwAAAAAAVwAAAAADVwAAAAACVwAAAAABVwAAAAACVwAAAAABVwAAAAADVwAAAAACdwAAAAAAVwAAAAADVwAAAAADVwAAAAADVwAAAAAAVwAAAAACVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADVwAAAAACdwAAAAAAdwAAAAAAVwAAAAABVwAAAAABVwAAAAABdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABGwAAAAADVwAAAAAAGwAAAAADVwAAAAACGwAAAAABVwAAAAADdwAAAAAAVwAAAAADVwAAAAADVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABVwAAAAACGwAAAAAAVwAAAAAAGwAAAAADVwAAAAACGwAAAAACVwAAAAACVwAAAAAAVwAAAAADVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABGwAAAAABVwAAAAADGwAAAAAAVwAAAAABGwAAAAACVwAAAAABVwAAAAACVwAAAAADVwAAAAADVwAAAAABdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAGwAAAAACVwAAAAADGwAAAAAAdwAAAAAAGwAAAAABVwAAAAABGwAAAAAAdwAAAAAAVwAAAAADVwAAAAACVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABGwAAAAACVwAAAAADdwAAAAAAVwAAAAACGwAAAAACVwAAAAACdwAAAAAAVwAAAAADVwAAAAADVwAAAAACdwAAAAAAGwAAAAACGwAAAAACGwAAAAACGwAAAAACGwAAAAADVwAAAAABGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADVwAAAAADVwAAAAACdwAAAAAAGwAAAAADGwAAAAADGwAAAAACGwAAAAAAGwAAAAAAdwAAAAAAGwAAAAABdwAAAAAAGwAAAAACGwAAAAABGwAAAAADdwAAAAAAVwAAAAAAVwAAAAABVwAAAAACdwAAAAAAGwAAAAACGwAAAAAAGwAAAAAAGwAAAAAAdAAAAAABdwAAAAAAFwAAAAAAFwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAdwAAAAAAVwAAAAACVwAAAAABVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAADdwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAPwAAAAAAPwAAAAAAdwAAAAAAVwAAAAAAVwAAAAABVwAAAAADdwAAAAAAGwAAAAAAGwAAAAADGwAAAAADGwAAAAACGwAAAAABdwAAAAAAGwAAAAACGwAAAAABGwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAABVwAAAAADVwAAAAACVwAAAAAAGwAAAAAA
+ tiles: VwAAAAAAVwAAAAABdwAAAAAAVwAAAAADVwAAAAACVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADVwAAAAABVwAAAAAAdwAAAAAAVwAAAAACVwAAAAABVwAAAAACVwAAAAABVwAAAAAAVwAAAAABVwAAAAADVwAAAAADVwAAAAACVwAAAAACVwAAAAAAVwAAAAADVwAAAAACVwAAAAABVwAAAAACVwAAAAABVwAAAAABVwAAAAABVwAAAAAAVwAAAAADVwAAAAAAVwAAAAACVwAAAAAAVwAAAAACVwAAAAACVwAAAAADVwAAAAADVwAAAAADVwAAAAADVwAAAAACVwAAAAAAdwAAAAAAVwAAAAABVwAAAAACVwAAAAACVwAAAAACVwAAAAAAVwAAAAABVwAAAAAAVwAAAAACVwAAAAABVwAAAAADVwAAAAABVwAAAAADVwAAAAADVwAAAAADVwAAAAABdwAAAAAAdwAAAAAAVwAAAAADVwAAAAAAVwAAAAACVwAAAAAAVwAAAAADVwAAAAACVwAAAAAAdwAAAAAAVwAAAAAAVwAAAAACVwAAAAACVwAAAAADVwAAAAACVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAADdwAAAAAAdwAAAAAAVwAAAAABVwAAAAACVwAAAAABdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADGwAAAAABVwAAAAABGwAAAAABVwAAAAAAGwAAAAACVwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADVwAAAAADGwAAAAADVwAAAAAAGwAAAAABVwAAAAACGwAAAAACVwAAAAADVwAAAAADVwAAAAABVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACGwAAAAABVwAAAAADGwAAAAAAVwAAAAABGwAAAAADVwAAAAABVwAAAAADVwAAAAABVwAAAAAAVwAAAAADdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAGwAAAAABVwAAAAACGwAAAAADdwAAAAAAGwAAAAABVwAAAAABGwAAAAABdwAAAAAAVwAAAAADVwAAAAAAVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAGwAAAAADVwAAAAACdwAAAAAAVwAAAAADGwAAAAABVwAAAAACdwAAAAAAVwAAAAACVwAAAAACVwAAAAABdwAAAAAAGwAAAAAAGwAAAAADGwAAAAAAGwAAAAACGwAAAAADVwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADVwAAAAACVwAAAAABdwAAAAAAGwAAAAABGwAAAAACGwAAAAADGwAAAAABGwAAAAAAdwAAAAAAGwAAAAABdwAAAAAAGwAAAAABGwAAAAADGwAAAAACdwAAAAAAVwAAAAACVwAAAAABVwAAAAACdwAAAAAAGwAAAAAAGwAAAAADGwAAAAADGwAAAAABdAAAAAABdwAAAAAAFwAAAAAAFwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAdwAAAAAAVwAAAAACVwAAAAABVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAADdwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAPwAAAAAAPwAAAAAAdwAAAAAAVwAAAAADVwAAAAAAVwAAAAADdwAAAAAAGwAAAAADGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAACdwAAAAAAGwAAAAACGwAAAAADGwAAAAADdwAAAAAAZwAAAAAAdwAAAAAAVwAAAAABVwAAAAACVwAAAAABVwAAAAABVwAAAAADVwAAAAADVwAAAAADGwAAAAAC
version: 6
-1,-1:
ind: -1,-1
- tiles: agAAAAABagAAAAAAagAAAAABagAAAAADagAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAagAAAAABagAAAAABagAAAAAAagAAAAADagAAAAACZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAACagAAAAACagAAAAAAagAAAAAAagAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAAAagAAAAADagAAAAACagAAAAACagAAAAADdwAAAAAAagAAAAABagAAAAABagAAAAAAagAAAAAASwAAAAAASwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAADagAAAAAAagAAAAAAagAAAAACSwAAAAAASwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAADagAAAAADagAAAAACagAAAAADagAAAAABdwAAAAAAagAAAAAAagAAAAADagAAAAABagAAAAABagAAAAADagAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAAAagAAAAACagAAAAACagAAAAAAagAAAAACagAAAAABagAAAAADagAAAAACagAAAAADagAAAAACagAAAAABagAAAAADdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADagAAAAAAagAAAAACagAAAAAAagAAAAACagAAAAADdwAAAAAAagAAAAACagAAAAACagAAAAAAagAAAAABagAAAAADagAAAAABdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAagAAAAABagAAAAACdwAAAAAAagAAAAABagAAAAAAagAAAAAAagAAAAACagAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAagAAAAADagAAAAACdwAAAAAAagAAAAABagAAAAADdwAAAAAAagAAAAAAagAAAAADagAAAAAAagAAAAACagAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAagAAAAABagAAAAAAagAAAAADagAAAAADagAAAAACdwAAAAAAdwAAAAAAagAAAAACdwAAAAAAagAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAagAAAAAAagAAAAACagAAAAADagAAAAABagAAAAACagAAAAABagAAAAADagAAAAAAagAAAAACagAAAAACagAAAAADdwAAAAAAVwAAAAABVwAAAAACVwAAAAABdwAAAAAAdwAAAAAAagAAAAAAagAAAAAAagAAAAACagAAAAACagAAAAABagAAAAADagAAAAADagAAAAABagAAAAABagAAAAABVwAAAAADVwAAAAABVwAAAAABVwAAAAABVwAAAAAAdwAAAAAAagAAAAADagAAAAACagAAAAADagAAAAADagAAAAADagAAAAAAagAAAAAAagAAAAABagAAAAADagAAAAADVwAAAAAAVwAAAAADVwAAAAADVwAAAAACVwAAAAABdwAAAAAAagAAAAADagAAAAACagAAAAABagAAAAAAagAAAAAAagAAAAADagAAAAADagAAAAABagAAAAACagAAAAACdwAAAAAAVwAAAAABVwAAAAADVwAAAAAAdwAAAAAAdwAAAAAAagAAAAAAagAAAAABagAAAAAAagAAAAACagAAAAAAagAAAAAAagAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAACVwAAAAADdwAAAAAA
+ tiles: agAAAAADagAAAAABagAAAAADagAAAAABagAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAagAAAAACagAAAAAAagAAAAADagAAAAAAagAAAAABZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAAAagAAAAABagAAAAACagAAAAABagAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAACagAAAAADagAAAAABagAAAAADagAAAAABdwAAAAAAagAAAAAAagAAAAAAagAAAAADagAAAAAASwAAAAAASwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAADagAAAAADagAAAAACagAAAAAASwAAAAAASwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAABagAAAAADagAAAAABagAAAAABagAAAAADdwAAAAAAagAAAAACagAAAAACagAAAAADagAAAAABagAAAAABagAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAABagAAAAACagAAAAADagAAAAACagAAAAADagAAAAAAagAAAAADagAAAAADagAAAAACagAAAAAAagAAAAAAagAAAAADdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADagAAAAAAagAAAAACagAAAAABagAAAAABagAAAAABdwAAAAAAagAAAAADagAAAAAAagAAAAADagAAAAAAagAAAAABagAAAAABdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAagAAAAABagAAAAACdwAAAAAAagAAAAABagAAAAADagAAAAAAagAAAAADagAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACagAAAAACagAAAAACdwAAAAAAagAAAAADagAAAAACdwAAAAAAagAAAAABagAAAAABagAAAAABagAAAAACagAAAAACdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAagAAAAADagAAAAADagAAAAABagAAAAACagAAAAACdwAAAAAAdwAAAAAAagAAAAACdwAAAAAAagAAAAACdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAagAAAAADagAAAAAAagAAAAAAagAAAAADagAAAAABagAAAAAAagAAAAAAagAAAAADagAAAAACagAAAAAAagAAAAACdwAAAAAAVwAAAAADVwAAAAABVwAAAAADdwAAAAAAdwAAAAAAagAAAAADagAAAAADagAAAAACagAAAAACagAAAAAAagAAAAADagAAAAABagAAAAAAagAAAAACagAAAAAAVwAAAAABVwAAAAADVwAAAAADVwAAAAADVwAAAAABdwAAAAAAagAAAAACagAAAAABagAAAAACagAAAAADagAAAAABagAAAAABagAAAAABagAAAAABagAAAAABagAAAAADVwAAAAADVwAAAAACVwAAAAADVwAAAAABVwAAAAADdwAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAACagAAAAABagAAAAACagAAAAABagAAAAACagAAAAACagAAAAABdwAAAAAAVwAAAAADVwAAAAACVwAAAAADdwAAAAAAdwAAAAAAagAAAAACagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAACagAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAADVwAAAAABdwAAAAAA
version: 6
0,-1:
ind: 0,-1
- tiles: dwAAAAAAdwAAAAAAZgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdwAAAAAAdAAAAAADdAAAAAABdAAAAAAAdwAAAAAAVwAAAAACVwAAAAABVwAAAAABGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdwAAAAAAdAAAAAADdAAAAAABdAAAAAAAdwAAAAAAVwAAAAACVwAAAAADVwAAAAADGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdwAAAAAAdAAAAAACdAAAAAAAdAAAAAACdwAAAAAAVwAAAAABVwAAAAACVwAAAAABGwAAAAACdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAAAVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACdwAAAAAAdAAAAAADdAAAAAADdAAAAAACLwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAADVwAAAAAAVwAAAAAAGwAAAAABdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAAAdAAAAAAAdAAAAAAAdAAAAAACIgAAAAACVwAAAAAAVwAAAAADVwAAAAADVwAAAAABVwAAAAABVwAAAAAAVwAAAAAAGwAAAAAAVwAAAAADGwAAAAABGwAAAAADGwAAAAABdAAAAAADdAAAAAACdAAAAAADIgAAAAADVwAAAAAAVwAAAAACVwAAAAADVwAAAAACVwAAAAAAVwAAAAACVwAAAAADGwAAAAAAdwAAAAAAGwAAAAADGwAAAAADGwAAAAABdAAAAAAAdAAAAAACdAAAAAACIgAAAAADVwAAAAABVwAAAAAAVwAAAAABdwAAAAAAVwAAAAACVwAAAAAAVwAAAAABdwAAAAAAdwAAAAAAGwAAAAACGwAAAAABdwAAAAAAdAAAAAAAdAAAAAADdAAAAAAALwAAAAAAVwAAAAABVwAAAAAAVwAAAAACdwAAAAAAVwAAAAACVwAAAAABVwAAAAADVwAAAAADVwAAAAABGwAAAAADGwAAAAADdwAAAAAAdAAAAAACdAAAAAAAdAAAAAABLwAAAAAAVwAAAAABVwAAAAACVwAAAAABdwAAAAAAVwAAAAAAVwAAAAADVwAAAAACVwAAAAADVwAAAAADGwAAAAAAdwAAAAAAdwAAAAAAdAAAAAAAdAAAAAABdAAAAAABdwAAAAAAVwAAAAACVwAAAAACVwAAAAABdwAAAAAAVwAAAAACVwAAAAAAVwAAAAACVwAAAAADVwAAAAADDAAAAAACDAAAAAADDAAAAAADLwAAAAAAIgAAAAABLwAAAAAALwAAAAAAVwAAAAADVwAAAAADVwAAAAADdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAABVwAAAAABVwAAAAABVwAAAAABVwAAAAABVwAAAAADVwAAAAABVwAAAAACVwAAAAACVwAAAAADVwAAAAADVwAAAAACdwAAAAAAVwAAAAADVwAAAAABVwAAAAACVwAAAAAAVwAAAAACVwAAAAACVwAAAAABVwAAAAADVwAAAAADVwAAAAABVwAAAAADVwAAAAABVwAAAAABVwAAAAAAVwAAAAAAdwAAAAAAVwAAAAACVwAAAAAAVwAAAAADVwAAAAADVwAAAAAAVwAAAAABVwAAAAABVwAAAAADVwAAAAAAVwAAAAABVwAAAAAAVwAAAAABVwAAAAACVwAAAAAAVwAAAAABdwAAAAAAVwAAAAAAVwAAAAABVwAAAAABVwAAAAADVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAACVwAAAAACVwAAAAABGwAAAAADGwAAAAABGwAAAAADdwAAAAAAVwAAAAABVwAAAAACVwAAAAADdwAAAAAAdwAAAAAA
+ tiles: dwAAAAAAdwAAAAAAZgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdwAAAAAAdAAAAAACdAAAAAAAdAAAAAAAdwAAAAAAVwAAAAADVwAAAAAAVwAAAAABGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdwAAAAAAdAAAAAABdAAAAAADdAAAAAAAdwAAAAAAVwAAAAADVwAAAAADVwAAAAADGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdwAAAAAAdAAAAAACdAAAAAADdAAAAAACdwAAAAAAVwAAAAAAVwAAAAADVwAAAAAAGwAAAAADdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADVwAAAAACVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABdwAAAAAAdAAAAAACdAAAAAACdAAAAAAALwAAAAAAVwAAAAACVwAAAAACVwAAAAACVwAAAAADVwAAAAACVwAAAAADVwAAAAACGwAAAAACdwAAAAAAdwAAAAAAGwAAAAACGwAAAAAAdAAAAAACdAAAAAACdAAAAAAAIgAAAAACVwAAAAACVwAAAAADVwAAAAACVwAAAAACVwAAAAAAVwAAAAADVwAAAAABGwAAAAADVwAAAAAAGwAAAAADGwAAAAADGwAAAAACdAAAAAAAdAAAAAACdAAAAAACIgAAAAACVwAAAAADVwAAAAACVwAAAAABVwAAAAADVwAAAAACVwAAAAAAVwAAAAABGwAAAAABdwAAAAAAGwAAAAABGwAAAAAAGwAAAAAAdAAAAAADdAAAAAACdAAAAAAAIgAAAAABVwAAAAACVwAAAAADVwAAAAACdwAAAAAAVwAAAAABVwAAAAADVwAAAAABdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAACdwAAAAAAdAAAAAACdAAAAAACdAAAAAAALwAAAAAAVwAAAAAAVwAAAAADVwAAAAABdwAAAAAAVwAAAAAAVwAAAAADVwAAAAABVwAAAAABVwAAAAACGwAAAAAAGwAAAAACdwAAAAAAdAAAAAAAdAAAAAAAdAAAAAAALwAAAAAAVwAAAAABVwAAAAABVwAAAAABdwAAAAAAVwAAAAADVwAAAAABVwAAAAADVwAAAAADVwAAAAACGwAAAAACdwAAAAAAdwAAAAAAdAAAAAACdAAAAAAAdAAAAAAAdwAAAAAAVwAAAAABVwAAAAACVwAAAAADdwAAAAAAVwAAAAACVwAAAAACVwAAAAACVwAAAAABVwAAAAAADAAAAAADDAAAAAABDAAAAAAALwAAAAAAIgAAAAAALwAAAAAALwAAAAAAVwAAAAADVwAAAAADVwAAAAACdwAAAAAAVwAAAAADVwAAAAABVwAAAAADVwAAAAACVwAAAAACVwAAAAACVwAAAAABVwAAAAACVwAAAAACVwAAAAAAVwAAAAADVwAAAAADVwAAAAADVwAAAAABVwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAADVwAAAAAAVwAAAAABVwAAAAACVwAAAAABVwAAAAAAVwAAAAADVwAAAAACVwAAAAAAVwAAAAAAVwAAAAABVwAAAAABdwAAAAAAVwAAAAAAVwAAAAADVwAAAAABVwAAAAABVwAAAAADVwAAAAADVwAAAAAAVwAAAAABVwAAAAAAVwAAAAADVwAAAAADVwAAAAADVwAAAAAAVwAAAAABVwAAAAABdwAAAAAAVwAAAAACVwAAAAABVwAAAAAAVwAAAAABVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAABVwAAAAABVwAAAAABGwAAAAAAGwAAAAAAGwAAAAAAdwAAAAAAVwAAAAABVwAAAAAAVwAAAAADdwAAAAAAdwAAAAAA
version: 6
-2,0:
ind: -2,0
- tiles: dwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADdwAAAAAAdwAAAAAAVwAAAAABVwAAAAAAVwAAAAADVwAAAAACVwAAAAADVwAAAAAAVwAAAAACVwAAAAACVwAAAAACVwAAAAADVwAAAAACVwAAAAACVwAAAAADVwAAAAACVwAAAAABVwAAAAABVwAAAAADVwAAAAACVwAAAAABVwAAAAACVwAAAAABVwAAAAACVwAAAAABVwAAAAAAVwAAAAADVwAAAAADVwAAAAADVwAAAAAAVwAAAAACVwAAAAACVwAAAAABVwAAAAACVwAAAAACVwAAAAAAVwAAAAAAVwAAAAABVwAAAAAAVwAAAAACVwAAAAAAVwAAAAACVwAAAAACVwAAAAACVwAAAAACVwAAAAABVwAAAAAAVwAAAAACVwAAAAADVwAAAAABVwAAAAACVwAAAAABdwAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAdwAAAAAAVwAAAAACVwAAAAADVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAdwAAAAAAVwAAAAAAVwAAAAABVwAAAAAAdwAAAAAAWgAAAAACWgAAAAADGwAAAAABGwAAAAACdwAAAAAASQAAAAACSQAAAAABSQAAAAAASQAAAAABSQAAAAAASQAAAAAAVwAAAAABVwAAAAADVwAAAAAAVwAAAAACVwAAAAADWgAAAAABWgAAAAAAIAAAAAAAGwAAAAACdwAAAAAAOAAAAAAASQAAAAAAZAAAAAADZAAAAAADZAAAAAADSQAAAAACdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAACdwAAAAAAWgAAAAACWgAAAAABIAAAAAAAGwAAAAAAdwAAAAAAOAAAAAAASQAAAAABZAAAAAADZAAAAAACZAAAAAACSQAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAWgAAAAABWgAAAAABIAAAAAABGwAAAAADdwAAAAAAOAAAAAAASQAAAAADZAAAAAACZAAAAAABZAAAAAADSQAAAAACSQAAAAAAVwAAAAADVwAAAAAAVwAAAAADdwAAAAAAWgAAAAAAWgAAAAAAGwAAAAABGwAAAAADdwAAAAAAOAAAAAAASQAAAAABZAAAAAABZAAAAAABZAAAAAACSQAAAAAASQAAAAABVwAAAAABVwAAAAAAVwAAAAAAVwAAAAABWgAAAAABWgAAAAAAGwAAAAADdwAAAAAAdwAAAAAAOAAAAAAASQAAAAADZAAAAAABZAAAAAACZAAAAAAASQAAAAADSQAAAAACVwAAAAAAVwAAAAADVwAAAAACdwAAAAAAWgAAAAADWgAAAAAAGwAAAAABGwAAAAADdwAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAABSQAAAAACSQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAdwAAAAAAdwAAAAAAGwAAAAABGwAAAAAAGwAAAAADdwAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAASQAAAAAAOAAAAAAAOAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAKgAAAAAAKgAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAIgAAAAABdwAAAAAAdwAAAAAAdwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAIgAAAAACOAAAAAAAOAAAAAAAdwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA
+ tiles: dwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAABVwAAAAAAVwAAAAACVwAAAAABVwAAAAABVwAAAAACVwAAAAAAVwAAAAABVwAAAAADVwAAAAAAVwAAAAABVwAAAAABVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAABVwAAAAACVwAAAAADVwAAAAADVwAAAAACVwAAAAADVwAAAAADVwAAAAADVwAAAAADVwAAAAAAVwAAAAADVwAAAAACVwAAAAAAVwAAAAADVwAAAAADVwAAAAACVwAAAAABVwAAAAABVwAAAAADVwAAAAABVwAAAAADVwAAAAAAVwAAAAABVwAAAAAAVwAAAAABVwAAAAABVwAAAAABVwAAAAABVwAAAAADVwAAAAAAVwAAAAABVwAAAAADVwAAAAAAVwAAAAAAdwAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAdwAAAAAAVwAAAAACVwAAAAACVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAdwAAAAAAVwAAAAACVwAAAAACVwAAAAAAdwAAAAAAWgAAAAAAWgAAAAADGwAAAAAAGwAAAAABdwAAAAAASQAAAAABSQAAAAADSQAAAAACSQAAAAADSQAAAAAASQAAAAABVwAAAAABVwAAAAACVwAAAAADVwAAAAACVwAAAAABWgAAAAADWgAAAAAAIAAAAAACGwAAAAABdwAAAAAAOAAAAAAASQAAAAACZAAAAAACZAAAAAACZAAAAAADSQAAAAACdwAAAAAAVwAAAAACVwAAAAACVwAAAAACdwAAAAAAWgAAAAABWgAAAAADIAAAAAADGwAAAAAAdwAAAAAAOAAAAAAASQAAAAAAZAAAAAAAZAAAAAADZAAAAAABSQAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAWgAAAAAAWgAAAAABIAAAAAACGwAAAAACdwAAAAAAOAAAAAAASQAAAAADZAAAAAAAZAAAAAACZAAAAAABSQAAAAACSQAAAAAAVwAAAAAAVwAAAAACVwAAAAAAdwAAAAAAWgAAAAAAWgAAAAADGwAAAAADGwAAAAAAdwAAAAAAOAAAAAAASQAAAAADZAAAAAABZAAAAAADZAAAAAACSQAAAAAASQAAAAABVwAAAAADVwAAAAABVwAAAAADVwAAAAAAWgAAAAACWgAAAAACGwAAAAAAdwAAAAAAdwAAAAAAOAAAAAAASQAAAAACZAAAAAAAZAAAAAACZAAAAAABSQAAAAAASQAAAAACVwAAAAACVwAAAAACVwAAAAABdwAAAAAAWgAAAAABWgAAAAABGwAAAAACGwAAAAABdwAAAAAASQAAAAAASQAAAAACSQAAAAADSQAAAAACSQAAAAADSQAAAAADOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAdwAAAAAAdwAAAAAAGwAAAAABGwAAAAAAGwAAAAACdwAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAASQAAAAACOAAAAAAAOAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAKgAAAAAAKgAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAIgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAIgAAAAACOAAAAAAAOAAAAAAAdwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA
version: 6
0,1:
ind: 0,1
- tiles: dwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAACVwAAAAADVwAAAAABVwAAAAADVwAAAAACVwAAAAAAGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAVwAAAAABVwAAAAAAVwAAAAAAVwAAAAADVwAAAAAAVwAAAAAAVwAAAAADGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAVwAAAAABVwAAAAACVwAAAAADdwAAAAAAVwAAAAADVwAAAAACVwAAAAABGwAAAAAAGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAAAVwAAAAADdwAAAAAAdwAAAAAAVwAAAAADdwAAAAAAdwAAAAAAGwAAAAABdwAAAAAAVwAAAAADVwAAAAACGwAAAAABVwAAAAADVwAAAAAAdwAAAAAAVwAAAAABVwAAAAABVwAAAAAAdwAAAAAAVwAAAAADVwAAAAADVwAAAAACdwAAAAAAGwAAAAADdwAAAAAAVwAAAAACGwAAAAACGwAAAAADGwAAAAADVwAAAAACdwAAAAAAVwAAAAADVwAAAAACVwAAAAAAdwAAAAAAVwAAAAACJAAAAAAAVwAAAAACVwAAAAAAGwAAAAADGwAAAAABGwAAAAAAGwAAAAACGwAAAAACGwAAAAABGwAAAAAAdwAAAAAAVwAAAAACVwAAAAABVwAAAAACdwAAAAAAVwAAAAAAJAAAAAACVwAAAAABdwAAAAAAGwAAAAACdwAAAAAAVwAAAAAAVwAAAAADGwAAAAADVwAAAAACVwAAAAADdwAAAAAAVwAAAAACVwAAAAABVwAAAAACdwAAAAAAVwAAAAABVwAAAAAAVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAACVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAADVwAAAAAAVwAAAAACVwAAAAADVwAAAAADVwAAAAADVwAAAAACVwAAAAACVwAAAAADVwAAAAABVwAAAAAAVwAAAAAAVwAAAAACVwAAAAADVwAAAAADVwAAAAACVwAAAAACVwAAAAAAVwAAAAADVwAAAAABVwAAAAADVwAAAAACVwAAAAADVwAAAAAASQAAAAABVwAAAAACVwAAAAACVwAAAAAAVwAAAAAAVwAAAAACVwAAAAAAVwAAAAADVwAAAAADVwAAAAADVwAAAAABVwAAAAACVwAAAAABVwAAAAACVwAAAAAAVwAAAAAAVwAAAAADVwAAAAABVwAAAAACVwAAAAAAVwAAAAADVwAAAAAAVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAASQAAAAACdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADVwAAAAABVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAASQAAAAAASQAAAAABSQAAAAACSQAAAAABSQAAAAAASQAAAAAAdwAAAAAAVwAAAAADVwAAAAACVwAAAAACVwAAAAACVwAAAAADdwAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADVwAAAAABVwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdAAAAAABdAAAAAADdAAAAAADdAAAAAADdAAAAAACdAAAAAACdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAABVwAAAAACVwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAdwAAAAAA
+ tiles: dwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAADVwAAAAACVwAAAAAAVwAAAAACVwAAAAACVwAAAAADGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAVwAAAAACVwAAAAAAVwAAAAACVwAAAAACVwAAAAACVwAAAAAAVwAAAAADGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAVwAAAAAAVwAAAAACVwAAAAADdwAAAAAAVwAAAAABVwAAAAABVwAAAAABGwAAAAABGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAADVwAAAAACdwAAAAAAdwAAAAAAVwAAAAADdwAAAAAAdwAAAAAAGwAAAAACdwAAAAAAVwAAAAACVwAAAAABGwAAAAACVwAAAAADVwAAAAAAdwAAAAAAVwAAAAABVwAAAAABVwAAAAADdwAAAAAAVwAAAAAAVwAAAAADVwAAAAACdwAAAAAAGwAAAAABdwAAAAAAVwAAAAACGwAAAAADGwAAAAAAGwAAAAADVwAAAAAAdwAAAAAAVwAAAAACVwAAAAABVwAAAAACdwAAAAAAVwAAAAADJAAAAAADVwAAAAADVwAAAAAAGwAAAAABGwAAAAACGwAAAAAAGwAAAAABGwAAAAADGwAAAAABGwAAAAAAdwAAAAAAVwAAAAADVwAAAAAAVwAAAAACdwAAAAAAVwAAAAABJAAAAAABVwAAAAACdwAAAAAAGwAAAAADdwAAAAAAVwAAAAADVwAAAAACGwAAAAACVwAAAAACVwAAAAADdwAAAAAAVwAAAAAAVwAAAAACVwAAAAACdwAAAAAAVwAAAAABVwAAAAAAVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAADVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAADVwAAAAABVwAAAAABVwAAAAACVwAAAAABVwAAAAACVwAAAAACVwAAAAABVwAAAAAAVwAAAAACVwAAAAACVwAAAAABVwAAAAACVwAAAAAAVwAAAAAAVwAAAAABVwAAAAACVwAAAAADVwAAAAACVwAAAAAAVwAAAAAAVwAAAAADVwAAAAADVwAAAAABSQAAAAACVwAAAAABVwAAAAADVwAAAAAAVwAAAAADVwAAAAACVwAAAAABVwAAAAADVwAAAAADVwAAAAAAVwAAAAADVwAAAAACVwAAAAADVwAAAAADVwAAAAADVwAAAAACVwAAAAAAVwAAAAABVwAAAAACVwAAAAABVwAAAAADVwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAASQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAACVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAASQAAAAACSQAAAAADSQAAAAABSQAAAAACSQAAAAADSQAAAAADdwAAAAAAVwAAAAABVwAAAAABVwAAAAABVwAAAAADVwAAAAACdwAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAAAVwAAAAAAVwAAAAADVwAAAAACdwAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdAAAAAACdAAAAAAAdAAAAAADdAAAAAAAdAAAAAAAdAAAAAABdwAAAAAAdwAAAAAAVwAAAAACVwAAAAADVwAAAAABVwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAdwAAAAAA
version: 6
-1,1:
ind: -1,1
- tiles: KgAAAAAAdwAAAAAAVwAAAAACdwAAAAAAGwAAAAABdAAAAAAAdAAAAAABdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAKgAAAAAAVwAAAAABVwAAAAAAdwAAAAAAGwAAAAABdAAAAAADdAAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACdwAAAAAAGwAAAAAAdAAAAAAAdAAAAAAAdAAAAAABdAAAAAADZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAGwAAAAAAGwAAAAADGwAAAAABGwAAAAACdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAGwAAAAABVwAAAAACVwAAAAABVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADVwAAAAAAVwAAAAAAVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACVwAAAAAAVwAAAAACVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACVwAAAAAAVwAAAAACVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAALwAAAAAALgAAAAAAMAAAAAADLwAAAAAALwAAAAAAMAAAAAADLgAAAAABdwAAAAAAdwAAAAAAGwAAAAAAVwAAAAABVwAAAAABVwAAAAACdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACdwAAAAAAVwAAAAAAVwAAAAABVwAAAAACVwAAAAABVwAAAAAAVwAAAAAAVwAAAAACVwAAAAABVwAAAAACVwAAAAABVwAAAAAAVwAAAAACVwAAAAABVwAAAAACVwAAAAADVwAAAAABVwAAAAAAVwAAAAAAVwAAAAABSQAAAAABVwAAAAABSQAAAAADSQAAAAADSQAAAAADSQAAAAADSQAAAAAAVwAAAAABSQAAAAADVwAAAAADVwAAAAABVwAAAAAAVwAAAAACVwAAAAACVwAAAAACVwAAAAACVwAAAAAAVwAAAAAAVwAAAAABVwAAAAACVwAAAAAAVwAAAAABVwAAAAACVwAAAAACVwAAAAAAVwAAAAABVwAAAAADVwAAAAAAVwAAAAACVwAAAAAAGwAAAAABGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADGwAAAAACdwAAAAAAdwAAAAAASQAAAAAAGwAAAAADGwAAAAADdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAJAAAAAADGwAAAAADdwAAAAAASQAAAAABSQAAAAACGwAAAAACGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAACdwAAAAAAGwAAAAAAGwAAAAABGwAAAAADGwAAAAABGwAAAAABGwAAAAABGwAAAAAAdwAAAAAAGwAAAAADGwAAAAADdwAAAAAAGwAAAAAAdAAAAAAD
+ tiles: KgAAAAAAdwAAAAAAVwAAAAADdwAAAAAAGwAAAAAAdAAAAAACdAAAAAADdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAKgAAAAAAVwAAAAADVwAAAAABdwAAAAAAGwAAAAACdAAAAAABdAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAdwAAAAAAGwAAAAAAdAAAAAABdAAAAAADdAAAAAABdAAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAGwAAAAADGwAAAAADGwAAAAAAGwAAAAABdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAGwAAAAACVwAAAAACVwAAAAABVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACVwAAAAADVwAAAAACVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAVwAAAAABVwAAAAACVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACVwAAAAADVwAAAAACVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAALwAAAAAALgAAAAACMAAAAAADLwAAAAAALwAAAAAAMAAAAAACLgAAAAACdwAAAAAAdwAAAAAAGwAAAAAAVwAAAAABVwAAAAABVwAAAAABdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACdwAAAAAAVwAAAAACVwAAAAACVwAAAAAAVwAAAAACVwAAAAAAVwAAAAABVwAAAAAAVwAAAAABVwAAAAACVwAAAAABVwAAAAABVwAAAAACVwAAAAADVwAAAAADVwAAAAADVwAAAAABVwAAAAACVwAAAAABVwAAAAABSQAAAAAAVwAAAAACSQAAAAACSQAAAAAASQAAAAAASQAAAAADSQAAAAAAVwAAAAABSQAAAAAAVwAAAAABVwAAAAADVwAAAAAAVwAAAAACVwAAAAACVwAAAAADVwAAAAABVwAAAAACVwAAAAADVwAAAAABVwAAAAAAVwAAAAACVwAAAAACVwAAAAAAVwAAAAAAVwAAAAACVwAAAAADVwAAAAAAVwAAAAADVwAAAAADVwAAAAADGwAAAAABGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADGwAAAAACdwAAAAAAdwAAAAAASQAAAAAAGwAAAAAAGwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAJAAAAAAAGwAAAAABdwAAAAAASQAAAAADSQAAAAACGwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAAAdwAAAAAAGwAAAAACGwAAAAACGwAAAAACGwAAAAABGwAAAAABGwAAAAACGwAAAAADdwAAAAAAGwAAAAAAGwAAAAADdwAAAAAAGwAAAAACdAAAAAAC
version: 6
-2,1:
ind: -2,1
- tiles: dwAAAAAAZgAAAAAAdwAAAAAAOAAAAAAAIgAAAAACIgAAAAADIgAAAAACIgAAAAAAIgAAAAAAOAAAAAAAdwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAKgAAAAAAKgAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAADdAAAAAABdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAACdAAAAAACdwAAAAAAXAAAAAADXAAAAAADXAAAAAACXAAAAAACdwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAABdAAAAAACdwAAAAAAXAAAAAADXAAAAAABXAAAAAAAXAAAAAAAdwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAADAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAKgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAABVwAAAAAAVwAAAAACVwAAAAACVwAAAAACVwAAAAABVwAAAAADVwAAAAABVwAAAAADVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAADVwAAAAADSQAAAAACVwAAAAABVwAAAAADVwAAAAAAVwAAAAADVwAAAAADSQAAAAACVwAAAAAAVwAAAAABVwAAAAAAVwAAAAACVwAAAAAAVwAAAAACVwAAAAACVwAAAAABVwAAAAAAVwAAAAAAVwAAAAADVwAAAAACVwAAAAABVwAAAAABVwAAAAACVwAAAAADVwAAAAABVwAAAAAAVwAAAAABVwAAAAAAVwAAAAADVwAAAAAAVwAAAAADVwAAAAAAVwAAAAABVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADVwAAAAABVwAAAAACVwAAAAABVwAAAAADVwAAAAABVwAAAAACVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAACVwAAAAAAVwAAAAADVwAAAAAAVwAAAAABVwAAAAADVwAAAAACdwAAAAAAdwAAAAAAdAAAAAABdAAAAAABdAAAAAAAdAAAAAACdAAAAAABdwAAAAAAVwAAAAAAVwAAAAACVwAAAAACVwAAAAAAVwAAAAACVwAAAAACVwAAAAADVwAAAAABdwAAAAAAdwAAAAAAdAAAAAAAdAAAAAABdAAAAAAAdAAAAAABdAAAAAADdwAAAAAA
+ tiles: dwAAAAAAZgAAAAAAdwAAAAAAOAAAAAAAIgAAAAADIgAAAAADIgAAAAABIgAAAAACIgAAAAABOAAAAAAAdwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAKgAAAAAAKgAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAACdAAAAAACdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAAAdAAAAAACdwAAAAAAXAAAAAAAXAAAAAABXAAAAAAAXAAAAAACdwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAABdAAAAAABdwAAAAAAXAAAAAAAXAAAAAADXAAAAAACXAAAAAAAdwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAADAAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAKgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAADVwAAAAAAVwAAAAACVwAAAAACVwAAAAAAVwAAAAADVwAAAAABVwAAAAACVwAAAAADVwAAAAAAVwAAAAAAVwAAAAADVwAAAAADVwAAAAAAVwAAAAABSQAAAAACVwAAAAADVwAAAAADVwAAAAACVwAAAAAAVwAAAAABSQAAAAACVwAAAAADVwAAAAACVwAAAAABVwAAAAAAVwAAAAACVwAAAAAAVwAAAAADVwAAAAADVwAAAAABVwAAAAABVwAAAAACVwAAAAAAVwAAAAACVwAAAAADVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAABVwAAAAACVwAAAAADVwAAAAADVwAAAAABVwAAAAACVwAAAAACVwAAAAADVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAACVwAAAAACVwAAAAADVwAAAAADVwAAAAABVwAAAAAAVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADVwAAAAAAVwAAAAABVwAAAAABVwAAAAAAVwAAAAAAVwAAAAACVwAAAAADdwAAAAAAdwAAAAAAdAAAAAADdAAAAAABdAAAAAACdAAAAAABdAAAAAAAdwAAAAAAVwAAAAACVwAAAAAAVwAAAAACVwAAAAADVwAAAAADVwAAAAADVwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdAAAAAADdAAAAAABdAAAAAAAdAAAAAADdAAAAAAAdwAAAAAA
version: 6
-3,0:
ind: -3,0
- tiles: AAAAAAAAdwAAAAAAVwAAAAACVwAAAAACdwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdwAAAAAAGwAAAAADGwAAAAABGwAAAAAAGwAAAAABdwAAAAAAAAAAAAAAdwAAAAAAVwAAAAADVwAAAAABdwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdwAAAAAAVwAAAAABVwAAAAAAVwAAAAADVwAAAAADVwAAAAAAAAAAAAAAdwAAAAAAVwAAAAAAVwAAAAACdwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdwAAAAAAVwAAAAADVwAAAAAAVwAAAAADVwAAAAAAVwAAAAADAAAAAAAAdwAAAAAAVwAAAAACVwAAAAADdwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdwAAAAAAVwAAAAACVwAAAAABVwAAAAACVwAAAAABVwAAAAADAAAAAAAAdwAAAAAAVwAAAAAAVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAACVwAAAAAAVwAAAAACVwAAAAAAAAAAAAAAdwAAAAAAVwAAAAACVwAAAAADVwAAAAABVwAAAAAAVwAAAAABVwAAAAABVwAAAAAAVwAAAAACVwAAAAACVwAAAAACVwAAAAAAVwAAAAABdwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAACVwAAAAACVwAAAAACVwAAAAAAVwAAAAADVwAAAAABVwAAAAADVwAAAAAAVwAAAAADVwAAAAABVwAAAAADdwAAAAAAGwAAAAADVwAAAAAAVwAAAAADVwAAAAADVwAAAAABVwAAAAABVwAAAAACVwAAAAACVwAAAAABVwAAAAAAVwAAAAADVwAAAAABVwAAAAABVwAAAAADVwAAAAAAGwAAAAABGwAAAAACVwAAAAADVwAAAAADVwAAAAACVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAADVwAAAAAAGwAAAAAAGwAAAAABVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADVwAAAAACVwAAAAAAVwAAAAACVwAAAAACdwAAAAAAVwAAAAADVwAAAAABVwAAAAAAdwAAAAAAGwAAAAADVwAAAAAAZwAAAAAAdwAAAAAAVwAAAAADdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAACVwAAAAABVwAAAAACVwAAAAAAVwAAAAAAVwAAAAACVwAAAAABdwAAAAAAGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAADVwAAAAADVwAAAAABVwAAAAAAdwAAAAAAVwAAAAACVwAAAAABVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACGwAAAAADGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAACVwAAAAABdwAAAAAAGwAAAAAAVwAAAAABVwAAAAADVwAAAAABVwAAAAABVwAAAAACVwAAAAAAVwAAAAACVwAAAAABVwAAAAACVwAAAAADVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAADdwAAAAAAGwAAAAAAVwAAAAACVwAAAAACVwAAAAABVwAAAAADVwAAAAABVwAAAAACVwAAAAACVwAAAAABVwAAAAABVwAAAAAAVwAAAAADVwAAAAADVwAAAAACVwAAAAADdwAAAAAAdwAAAAAAVwAAAAABVwAAAAAAVwAAAAACVwAAAAADVwAAAAADVwAAAAADVwAAAAAAVwAAAAACVwAAAAACVwAAAAACVwAAAAABVwAAAAACVwAAAAABVwAAAAADZwAAAAAAdwAAAAAA
+ tiles: AAAAAAAAdwAAAAAAVwAAAAADVwAAAAAAdwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdwAAAAAAGwAAAAADGwAAAAAAGwAAAAADGwAAAAABdwAAAAAAAAAAAAAAdwAAAAAAVwAAAAABVwAAAAACdwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdwAAAAAAVwAAAAACVwAAAAABVwAAAAACVwAAAAAAVwAAAAACAAAAAAAAdwAAAAAAVwAAAAADVwAAAAAAdwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdwAAAAAAVwAAAAADVwAAAAAAVwAAAAAAVwAAAAACVwAAAAACAAAAAAAAdwAAAAAAVwAAAAADVwAAAAAAdwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdwAAAAAAVwAAAAAAVwAAAAACVwAAAAABVwAAAAACVwAAAAACdwAAAAAAdwAAAAAAVwAAAAABVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAAAVwAAAAACVwAAAAABVwAAAAAAVwAAAAADVwAAAAABVwAAAAADVwAAAAACVwAAAAABVwAAAAADVwAAAAABVwAAAAADVwAAAAABVwAAAAABVwAAAAACVwAAAAABVwAAAAACVwAAAAACdwAAAAAAGwAAAAADVwAAAAABVwAAAAAAVwAAAAABVwAAAAACVwAAAAABVwAAAAAAVwAAAAADVwAAAAACVwAAAAABVwAAAAADVwAAAAAAVwAAAAABVwAAAAADVwAAAAABdwAAAAAAGwAAAAAAVwAAAAACVwAAAAAAVwAAAAACVwAAAAAAVwAAAAAAVwAAAAACVwAAAAACVwAAAAACVwAAAAAAVwAAAAACVwAAAAAAVwAAAAABVwAAAAAAVwAAAAABGwAAAAAAGwAAAAADVwAAAAACVwAAAAADVwAAAAAAVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAADVwAAAAACGwAAAAADGwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAAAVwAAAAABVwAAAAADVwAAAAABdwAAAAAAVwAAAAACVwAAAAAAVwAAAAABdwAAAAAAGwAAAAABVwAAAAACZwAAAAAAdwAAAAAAVwAAAAABdwAAAAAAVwAAAAABVwAAAAADVwAAAAADVwAAAAAAVwAAAAACVwAAAAAAVwAAAAACVwAAAAAAVwAAAAADdwAAAAAAGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAACVwAAAAADVwAAAAACVwAAAAADdwAAAAAAVwAAAAAAVwAAAAADVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACGwAAAAABGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADVwAAAAACVwAAAAAAdwAAAAAAGwAAAAACVwAAAAACVwAAAAACVwAAAAADVwAAAAAAVwAAAAABVwAAAAAAVwAAAAACVwAAAAADVwAAAAACVwAAAAAAVwAAAAADVwAAAAACVwAAAAAAVwAAAAABdwAAAAAAGwAAAAACVwAAAAAAVwAAAAABVwAAAAABVwAAAAAAVwAAAAAAVwAAAAADVwAAAAADVwAAAAACVwAAAAADVwAAAAACVwAAAAADVwAAAAACVwAAAAACVwAAAAADdwAAAAAAdwAAAAAAVwAAAAABVwAAAAADVwAAAAACVwAAAAADVwAAAAADVwAAAAACVwAAAAACVwAAAAACVwAAAAACVwAAAAADVwAAAAACVwAAAAAAVwAAAAACVwAAAAADZwAAAAAAdwAAAAAA
version: 6
-3,1:
ind: -3,1
- tiles: dwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAABVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAVwAAAAAAVwAAAAABVwAAAAACVwAAAAADVwAAAAADdwAAAAAAGwAAAAAAVwAAAAACVwAAAAAAVwAAAAACGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAVwAAAAACVwAAAAADVwAAAAADVwAAAAAAVwAAAAACVwAAAAADdwAAAAAAGwAAAAABVwAAAAACVwAAAAACVwAAAAADGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAVwAAAAADVwAAAAADVwAAAAADVwAAAAAAVwAAAAACdwAAAAAAGwAAAAABVwAAAAABVwAAAAAAVwAAAAADGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADVwAAAAAAVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAADdAAAAAADdAAAAAADdAAAAAACdAAAAAACdAAAAAADdwAAAAAAVwAAAAABVwAAAAADVwAAAAACdwAAAAAAdAAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAAAdAAAAAAAdAAAAAABdAAAAAADdAAAAAAAdwAAAAAAVwAAAAADVwAAAAADVwAAAAAAdwAAAAAAdAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAADVwAAAAAAdwAAAAAAdAAAAAADdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAdwAAAAAAVwAAAAAAVwAAAAACVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAABVwAAAAABVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAdwAAAAAAVwAAAAACVwAAAAABVwAAAAAAVwAAAAACVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADVwAAAAADVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdwAAAAAALQAAAAAALQAAAAAAdwAAAAAAVwAAAAAAVwAAAAABVwAAAAAAdwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdAAAAAABdAAAAAACdAAAAAABdAAAAAADdwAAAAAALQAAAAAALQAAAAAAdwAAAAAAVwAAAAAAVwAAAAABVwAAAAABdwAAAAAAVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAABdAAAAAACdAAAAAAAdAAAAAAAdwAAAAAALQAAAAAALQAAAAAAdwAAAAAAVwAAAAABVwAAAAADVwAAAAADdwAAAAAAVwAAAAAC
+ tiles: dwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADVwAAAAADVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAVwAAAAACVwAAAAAAVwAAAAADVwAAAAABVwAAAAADdwAAAAAAGwAAAAADVwAAAAAAVwAAAAAAVwAAAAADGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAVwAAAAACVwAAAAADVwAAAAADVwAAAAADVwAAAAACVwAAAAAAdwAAAAAAGwAAAAABVwAAAAACVwAAAAABVwAAAAABGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAVwAAAAACVwAAAAABVwAAAAADVwAAAAABVwAAAAAAdwAAAAAAGwAAAAABVwAAAAADVwAAAAABVwAAAAACGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADVwAAAAACVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAADdAAAAAAAdAAAAAABdAAAAAAAdAAAAAADdAAAAAACdwAAAAAAVwAAAAAAVwAAAAABVwAAAAADdwAAAAAAdAAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAADdAAAAAACdAAAAAABdAAAAAADdAAAAAAAdwAAAAAAVwAAAAACVwAAAAAAVwAAAAAAdwAAAAAAdAAAAAABdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAABVwAAAAABdwAAAAAAdAAAAAADdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAdwAAAAAAVwAAAAADVwAAAAAAVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAJAAAAAAADwAAAAAADwAAAAAADwAAAAAAJAAAAAAAJAAAAAAAVwAAAAABVwAAAAADVwAAAAADVwAAAAAAVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAJAAAAAAADwAAAAAADwAAAAAADwAAAAAAJAAAAAAAdwAAAAAAVwAAAAADVwAAAAADVwAAAAACVwAAAAACVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAdwAAAAAAVwAAAAAAVwAAAAADVwAAAAACVwAAAAACVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADVwAAAAACVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAAAdAAAAAADdAAAAAAAdAAAAAAAdwAAAAAALQAAAAAALQAAAAAAdwAAAAAAVwAAAAABVwAAAAACVwAAAAABdwAAAAAAVwAAAAADdwAAAAAAdwAAAAAAZwAAAAAAdAAAAAADdAAAAAADdAAAAAADdAAAAAAAdwAAAAAALQAAAAAALQAAAAAAdwAAAAAAVwAAAAAAVwAAAAABVwAAAAACdwAAAAAAVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAAAdAAAAAABdAAAAAABdAAAAAAAdwAAAAAALQAAAAAALQAAAAAAdwAAAAAAVwAAAAACVwAAAAAAVwAAAAACdwAAAAAAVwAAAAAB
version: 6
-4,0:
ind: -4,0
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAVwAAAAADVwAAAAACVwAAAAAAVwAAAAAAVwAAAAACVwAAAAAAVwAAAAADVwAAAAABVwAAAAADVwAAAAADVwAAAAABVwAAAAADAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAVwAAAAABVwAAAAADVwAAAAADVwAAAAABVwAAAAACVwAAAAAAVwAAAAACVwAAAAAAVwAAAAACVwAAAAAAVwAAAAAAVwAAAAACAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAABVwAAAAABVwAAAAADVwAAAAACVwAAAAACVwAAAAABVwAAAAACVwAAAAABVwAAAAADAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAVwAAAAABVwAAAAADVwAAAAACVwAAAAABVwAAAAAAVwAAAAACVwAAAAADVwAAAAAAVwAAAAABVwAAAAABAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAADVwAAAAAAVwAAAAACVwAAAAACVwAAAAABVwAAAAACVwAAAAABVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAASQAAAAACVwAAAAADVwAAAAAAVwAAAAABVwAAAAABVwAAAAAAVwAAAAAAVwAAAAADVwAAAAABVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAASQAAAAAAVwAAAAAAVwAAAAAALgAAAAABVwAAAAABMAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAASQAAAAAAVwAAAAACVwAAAAABVwAAAAAAVwAAAAADVwAAAAACVwAAAAAAVwAAAAAAVwAAAAABVwAAAAAB
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADVwAAAAAAVwAAAAACAAAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAVwAAAAABVwAAAAAAVwAAAAAAVwAAAAABdwAAAAAAZwAAAAAAdwAAAAAAVwAAAAADVwAAAAAAVwAAAAABAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAVwAAAAABVwAAAAADVwAAAAAAVwAAAAABVwAAAAACVwAAAAABVwAAAAAAVwAAAAADVwAAAAAAVwAAAAAAVwAAAAABVwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAVwAAAAABVwAAAAABVwAAAAABVwAAAAABVwAAAAADVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAADVwAAAAADVwAAAAACAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADVwAAAAACVwAAAAABVwAAAAAAVwAAAAACVwAAAAAAVwAAAAACVwAAAAAAVwAAAAABVwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAVwAAAAADVwAAAAADVwAAAAAAVwAAAAACVwAAAAACVwAAAAACVwAAAAACVwAAAAAAVwAAAAACVwAAAAACAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAACVwAAAAACVwAAAAABVwAAAAADVwAAAAADVwAAAAADVwAAAAABVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAASQAAAAABVwAAAAADVwAAAAADVwAAAAACVwAAAAABVwAAAAABVwAAAAACVwAAAAACVwAAAAACVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAASQAAAAACVwAAAAACVwAAAAACLgAAAAAAVwAAAAABMAAAAAACVwAAAAABVwAAAAAAVwAAAAACVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAASQAAAAABVwAAAAABVwAAAAACVwAAAAAAVwAAAAADVwAAAAADVwAAAAADVwAAAAADVwAAAAAAVwAAAAAC
version: 6
-3,-1:
ind: -3,-1
- tiles: dwAAAAAAGwAAAAACGwAAAAACGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAALQAAAAAALQAAAAAALQAAAAAAdwAAAAAAGwAAAAAAKwAAAAAAGwAAAAADdwAAAAAAbQAAAAADbQAAAAADdwAAAAAAcwAAAAACSQAAAAADSQAAAAACSQAAAAADcwAAAAAALQAAAAAALQAAAAAALQAAAAAAdwAAAAAAGwAAAAAAGwAAAAACGwAAAAACdwAAAAAAbQAAAAAAbQAAAAAAcwAAAAABcwAAAAABSQAAAAABSQAAAAAASQAAAAACcwAAAAACLQAAAAAALQAAAAAALQAAAAAAdwAAAAAAGwAAAAADKwAAAAAAGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAcwAAAAAAcwAAAAAAcwAAAAACcwAAAAAAcwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABGwAAAAADGwAAAAAAdwAAAAAAbQAAAAABbQAAAAADdwAAAAAAcwAAAAADcwAAAAAAcwAAAAACcwAAAAADcwAAAAAAdwAAAAAASQAAAAABSQAAAAAAdwAAAAAAdwAAAAAAGwAAAAADGwAAAAACdwAAAAAAbQAAAAAAbQAAAAABcwAAAAADcwAAAAAAcwAAAAACcwAAAAACcwAAAAADcwAAAAACSQAAAAACSQAAAAABSQAAAAAAdwAAAAAAdwAAAAAAVwAAAAADVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAcwAAAAAAcwAAAAAAcwAAAAACcwAAAAADcwAAAAABdwAAAAAASQAAAAAASQAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAACZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAcwAAAAACcwAAAAAAcwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAACdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAcwAAAAAAcwAAAAACcwAAAAACdwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAVwAAAAABVwAAAAAAVwAAAAADVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAcwAAAAADcwAAAAAAcwAAAAACdwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAVwAAAAAAVwAAAAADVwAAAAADVwAAAAACVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAAAdAAAAAABdAAAAAAAdwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAVwAAAAABVwAAAAADVwAAAAADVwAAAAACVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAAAdAAAAAACdAAAAAADdwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAABVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABdwAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAVwAAAAADVwAAAAADVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAVwAAAAAAVwAAAAADGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAagAAAAADAAAAAAAAdwAAAAAAVwAAAAABVwAAAAACdwAAAAAAdwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACdwAAAAAAdwAAAAAA
+ tiles: dwAAAAAAGwAAAAABGwAAAAABGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAALQAAAAAALQAAAAAALQAAAAAAdwAAAAAAGwAAAAAAKwAAAAABGwAAAAACdwAAAAAAbQAAAAACbQAAAAAAdwAAAAAAcwAAAAABSQAAAAACSQAAAAAASQAAAAACcwAAAAACLQAAAAAALQAAAAAALQAAAAAAdwAAAAAAGwAAAAADGwAAAAACGwAAAAADdwAAAAAAbQAAAAADbQAAAAABcwAAAAABcwAAAAABSQAAAAABSQAAAAABSQAAAAAAcwAAAAABLQAAAAAALQAAAAAALQAAAAAAdwAAAAAAGwAAAAADKwAAAAACGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAcwAAAAACcwAAAAACcwAAAAABcwAAAAACcwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACGwAAAAAAGwAAAAAAdwAAAAAAbQAAAAABbQAAAAABdwAAAAAAcwAAAAABcwAAAAAAcwAAAAADcwAAAAABcwAAAAAAdwAAAAAASQAAAAAASQAAAAADdwAAAAAAGwAAAAABGwAAAAABGwAAAAACdwAAAAAAbQAAAAABbQAAAAACcwAAAAABcwAAAAACcwAAAAACcwAAAAACcwAAAAADcwAAAAACSQAAAAABSQAAAAADSQAAAAAAGwAAAAACVwAAAAABVwAAAAACVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAcwAAAAAAcwAAAAABcwAAAAAAcwAAAAAAcwAAAAABdwAAAAAASQAAAAACSQAAAAABGwAAAAADVwAAAAAAVwAAAAACVwAAAAABZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAcwAAAAABcwAAAAABcwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADVwAAAAABdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAdwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAAAAAAAAAdwAAAAAAVwAAAAACVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAcwAAAAABcwAAAAABcwAAAAACdwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAAAAAAAAAdwAAAAAAVwAAAAABVwAAAAACVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAACdAAAAAACdAAAAAAAdwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAAAAAAAAAdwAAAAAAVwAAAAABVwAAAAAAVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAABdAAAAAABdAAAAAADdwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAAAAAAAAAdwAAAAAAVwAAAAADVwAAAAADVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADdwAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAVwAAAAACVwAAAAADVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAVwAAAAABVwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAagAAAAAAAAAAAAAAdwAAAAAAVwAAAAADVwAAAAAAdwAAAAAAdwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACdwAAAAAAdwAAAAAA
version: 6
-4,-1:
ind: -4,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAVwAAAAADVwAAAAACVwAAAAACVwAAAAABVwAAAAADVwAAAAADVwAAAAABVwAAAAACVwAAAAABVwAAAAABVwAAAAACVwAAAAACAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAVwAAAAACVwAAAAADVwAAAAADVwAAAAACVwAAAAACVwAAAAADVwAAAAAAVwAAAAABVwAAAAADVwAAAAAAVwAAAAADVwAAAAADAAAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-2,-1:
ind: -2,-1
- tiles: LQAAAAAAdwAAAAAAZgAAAAAAagAAAAADagAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAABbwAAAAACagAAAAADdwAAAAAALQAAAAAAdwAAAAAAZgAAAAAAagAAAAAAagAAAAAAdwAAAAAAVwAAAAADagAAAAAAagAAAAACagAAAAADagAAAAACdwAAAAAAagAAAAADcwAAAAADagAAAAAAagAAAAABLQAAAAAAdwAAAAAAdwAAAAAAagAAAAAAdwAAAAAAdwAAAAAAVwAAAAADbwAAAAABbwAAAAACagAAAAACagAAAAADagAAAAADagAAAAAAcwAAAAADagAAAAADdwAAAAAAdwAAAAAAdwAAAAAAagAAAAADagAAAAADagAAAAACdwAAAAAAVwAAAAABagAAAAACbwAAAAADagAAAAACagAAAAADdwAAAAAAagAAAAAAagAAAAAAagAAAAACdwAAAAAASQAAAAADdwAAAAAAagAAAAAAbwAAAAABagAAAAAAdwAAAAAAdwAAAAAAagAAAAACagAAAAABdwAAAAAAdwAAAAAAdwAAAAAAagAAAAABagAAAAACagAAAAABdwAAAAAASQAAAAABSQAAAAADagAAAAADagAAAAADagAAAAADdwAAAAAAagAAAAABagAAAAADagAAAAADagAAAAAAagAAAAABdwAAAAAAagAAAAACbwAAAAADagAAAAACagAAAAADSQAAAAAAdwAAAAAAagAAAAABagAAAAABagAAAAADagAAAAACcwAAAAACcwAAAAACcwAAAAACcwAAAAAAcwAAAAABagAAAAABagAAAAACagAAAAADagAAAAABagAAAAADdwAAAAAAdwAAAAAAagAAAAADagAAAAAAagAAAAACagAAAAABcwAAAAADcwAAAAABcwAAAAAAcwAAAAACcwAAAAADagAAAAACagAAAAABbwAAAAACagAAAAADagAAAAAAPAAAAAAAdwAAAAAAagAAAAACbwAAAAADagAAAAAAdwAAAAAAVwAAAAADVwAAAAABVwAAAAABVwAAAAADVwAAAAADdwAAAAAAagAAAAAAagAAAAACagAAAAAAdwAAAAAAPAAAAAAAVwAAAAAAagAAAAAAbwAAAAACagAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAACagAAAAAAagAAAAACdwAAAAAAPAAAAAAAdwAAAAAAagAAAAADagAAAAAAagAAAAACGwAAAAABGwAAAAABGwAAAAACGwAAAAABGwAAAAACGwAAAAACGwAAAAACagAAAAAAagAAAAABagAAAAABagAAAAABPAAAAAAAdwAAAAAAdwAAAAAAcwAAAAABdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAADGwAAAAACGwAAAAADGwAAAAADdwAAAAAAagAAAAADagAAAAABagAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAADdAAAAAADdAAAAAADdwAAAAAAGwAAAAACGwAAAAACGwAAAAACGwAAAAACGwAAAAABdwAAAAAAdwAAAAAAVwAAAAADdwAAAAAAdwAAAAAAWQAAAAACWQAAAAADdAAAAAADdAAAAAABdAAAAAACdwAAAAAAGwAAAAACGwAAAAACGwAAAAADGwAAAAADGwAAAAADdwAAAAAAVwAAAAADVwAAAAACVwAAAAADVwAAAAAAWQAAAAADWQAAAAAAdAAAAAADdAAAAAADdAAAAAACdwAAAAAAGwAAAAADGwAAAAABGwAAAAAAGwAAAAACGwAAAAACdwAAAAAAVwAAAAADVwAAAAADVwAAAAAAVwAAAAADWQAAAAADWQAAAAACdAAAAAACdAAAAAACdAAAAAACGwAAAAABGwAAAAABGwAAAAADGwAAAAABGwAAAAAAGwAAAAABdwAAAAAAVwAAAAAAVwAAAAADVwAAAAADVwAAAAAC
+ tiles: LQAAAAAAdwAAAAAAZgAAAAAAagAAAAAAagAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAADbwAAAAAAagAAAAACdwAAAAAALQAAAAAAdwAAAAAAZgAAAAAAagAAAAADagAAAAAAdwAAAAAAVwAAAAAAagAAAAAAagAAAAADagAAAAACagAAAAAAdwAAAAAAagAAAAACcwAAAAACagAAAAACagAAAAABLQAAAAAAdwAAAAAAdwAAAAAAagAAAAADdwAAAAAAdwAAAAAAVwAAAAACbwAAAAABbwAAAAADagAAAAADagAAAAAAagAAAAAAagAAAAACcwAAAAACagAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAADagAAAAABagAAAAADdwAAAAAAVwAAAAADagAAAAACbwAAAAADagAAAAABagAAAAAAdwAAAAAAagAAAAADagAAAAAAagAAAAACdwAAAAAASQAAAAABdwAAAAAAagAAAAADbwAAAAABagAAAAAAdwAAAAAAdwAAAAAAagAAAAAAagAAAAABdwAAAAAAdwAAAAAAdwAAAAAAagAAAAABagAAAAACagAAAAADdwAAAAAASQAAAAACSQAAAAAAagAAAAABagAAAAACagAAAAAAdwAAAAAAagAAAAAAagAAAAAAagAAAAADagAAAAAAagAAAAADdwAAAAAAagAAAAADbwAAAAABagAAAAAAagAAAAADSQAAAAADdwAAAAAAagAAAAABagAAAAACagAAAAABagAAAAADcwAAAAABcwAAAAADcwAAAAACcwAAAAADcwAAAAAAagAAAAABagAAAAABagAAAAACagAAAAADagAAAAADdwAAAAAAdwAAAAAAagAAAAABagAAAAAAagAAAAADagAAAAADcwAAAAAAcwAAAAADcwAAAAACcwAAAAADcwAAAAAAagAAAAACagAAAAACbwAAAAACagAAAAADagAAAAAAPAAAAAAAdwAAAAAAagAAAAAAbwAAAAACagAAAAACdwAAAAAAVwAAAAAAVwAAAAACVwAAAAABVwAAAAACVwAAAAADdwAAAAAAagAAAAABagAAAAABagAAAAABdwAAAAAAPAAAAAAAVwAAAAACagAAAAAAbwAAAAADagAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAAAagAAAAABagAAAAABdwAAAAAAPAAAAAAAdwAAAAAAagAAAAADagAAAAADagAAAAABGwAAAAACGwAAAAACGwAAAAACGwAAAAACGwAAAAABGwAAAAACGwAAAAACagAAAAACagAAAAABagAAAAAAagAAAAADPAAAAAAAdwAAAAAAdwAAAAAAcwAAAAACdwAAAAAAdwAAAAAAGwAAAAABGwAAAAABGwAAAAADGwAAAAADGwAAAAAAdwAAAAAAagAAAAABagAAAAACagAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAACdAAAAAADdAAAAAADdwAAAAAAGwAAAAADGwAAAAAAGwAAAAABGwAAAAABGwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACdwAAAAAAdwAAAAAAWQAAAAAAWQAAAAACdAAAAAABdAAAAAABdAAAAAACdwAAAAAAGwAAAAACGwAAAAABGwAAAAAAGwAAAAADGwAAAAADdwAAAAAAVwAAAAAAVwAAAAADVwAAAAABVwAAAAABWQAAAAABWQAAAAABdAAAAAABdAAAAAADdAAAAAADdwAAAAAAGwAAAAACGwAAAAAAGwAAAAACGwAAAAACGwAAAAABdwAAAAAAVwAAAAACVwAAAAAAVwAAAAAAVwAAAAADWQAAAAABWQAAAAAAdAAAAAACdAAAAAAAdAAAAAACGwAAAAAAGwAAAAACGwAAAAAAGwAAAAACGwAAAAADGwAAAAACdwAAAAAAVwAAAAACVwAAAAAAVwAAAAADVwAAAAAD
version: 6
-2,2:
ind: -2,2
- tiles: VwAAAAADVwAAAAACVwAAAAADVwAAAAACVwAAAAAAVwAAAAAAVwAAAAADVwAAAAAAdwAAAAAAdwAAAAAAdAAAAAADdAAAAAACdAAAAAABIgAAAAACdAAAAAADdwAAAAAAVwAAAAACVwAAAAABVwAAAAADVwAAAAADVwAAAAAAVwAAAAAAVwAAAAABVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAJAAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAAAdAAAAAABdAAAAAADdAAAAAADdAAAAAADdAAAAAAAdwAAAAAAVwAAAAACVwAAAAACVwAAAAAAdwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdwAAAAAAdAAAAAACdAAAAAABdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAACdwAAAAAAVwAAAAADVwAAAAABVwAAAAACdwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdwAAAAAAdAAAAAACdAAAAAAAdAAAAAACdAAAAAADdAAAAAADdAAAAAADdwAAAAAAVwAAAAADVwAAAAADVwAAAAAAdwAAAAAAGwAAAAACGwAAAAAAGwAAAAACGwAAAAAAGwAAAAADGwAAAAADGwAAAAADGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAABGwAAAAADGwAAAAABGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAJAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADGwAAAAACdwAAAAAAbgAAAAABbQAAAAACbgAAAAAAbgAAAAADdwAAAAAAZgAAAAAAdwAAAAAAZwAAAAAAGwAAAAADGwAAAAACGwAAAAACGwAAAAAAIAAAAAABGwAAAAABGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABGwAAAAAAGwAAAAACdwAAAAAAIAAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABGwAAAAACGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAADdwAAAAAAGwAAAAACGwAAAAADGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAASQAAAAAASQAAAAAASQAAAAACdgAAAAAAdwAAAAAAVwAAAAABVwAAAAADGwAAAAACGwAAAAABGwAAAAABGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAVwAAAAABVwAAAAABdwAAAAAAGwAAAAABGwAAAAACGwAAAAADdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAVwAAAAADVwAAAAAAVwAAAAACZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAVwAAAAABVwAAAAAAVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAA
+ tiles: VwAAAAACVwAAAAACVwAAAAACVwAAAAACVwAAAAABVwAAAAADVwAAAAAAVwAAAAACdwAAAAAAdwAAAAAAdAAAAAABdAAAAAADdAAAAAAAIgAAAAACdAAAAAADdwAAAAAAVwAAAAAAVwAAAAABVwAAAAABVwAAAAABVwAAAAAAVwAAAAAAVwAAAAADVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAJAAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAABdAAAAAADdAAAAAADdAAAAAABdAAAAAACdAAAAAAAdwAAAAAAVwAAAAAAVwAAAAABVwAAAAAAdwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdwAAAAAAdAAAAAADdAAAAAAAdAAAAAACdAAAAAAAdAAAAAABdAAAAAACdwAAAAAAVwAAAAABVwAAAAAAVwAAAAAAdwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdwAAAAAAdAAAAAADdAAAAAABdAAAAAACdAAAAAADdAAAAAACdAAAAAADdwAAAAAAVwAAAAADVwAAAAADVwAAAAABdwAAAAAAGwAAAAACGwAAAAABGwAAAAADGwAAAAABGwAAAAABGwAAAAADGwAAAAACGwAAAAABGwAAAAADGwAAAAACGwAAAAABGwAAAAABGwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAJAAAAAABdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAABdwAAAAAAbgAAAAADbQAAAAABbgAAAAACbgAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAZwAAAAAAGwAAAAACGwAAAAAAGwAAAAAAGwAAAAABIAAAAAAAGwAAAAABGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADGwAAAAACGwAAAAABdwAAAAAAIAAAAAACGwAAAAABdwAAAAAAdwAAAAAAGwAAAAABGwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADVwAAAAACdwAAAAAAGwAAAAAAGwAAAAABGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAASQAAAAACSQAAAAABSQAAAAABdgAAAAAAdwAAAAAAVwAAAAABVwAAAAABGwAAAAADGwAAAAADGwAAAAAAGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAVwAAAAADVwAAAAABdwAAAAAAGwAAAAABGwAAAAACGwAAAAADdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAVwAAAAABVwAAAAABVwAAAAABZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAVwAAAAABVwAAAAABVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAA
version: 6
-3,2:
ind: -3,2
- tiles: dwAAAAAAdwAAAAAAdwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdwAAAAAALQAAAAAALQAAAAAAdwAAAAAAVwAAAAABVwAAAAAAVwAAAAABdwAAAAAAVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdwAAAAAALQAAAAAALQAAAAAAdwAAAAAAVwAAAAADVwAAAAAAVwAAAAABdwAAAAAAVwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAPAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADVwAAAAAAVwAAAAADVwAAAAADVwAAAAADVwAAAAACVwAAAAAAVwAAAAACVwAAAAACVwAAAAADVwAAAAAAVwAAAAABVwAAAAAAVwAAAAADVwAAAAABVwAAAAACVwAAAAABVwAAAAAAVwAAAAACVwAAAAAAVwAAAAACVwAAAAAAVwAAAAADVwAAAAABVwAAAAABVwAAAAACVwAAAAAAVwAAAAAAVwAAAAABVwAAAAACVwAAAAADVwAAAAABVwAAAAAAVwAAAAADVwAAAAAAVwAAAAAAVwAAAAADVwAAAAACVwAAAAAAVwAAAAABVwAAAAABVwAAAAACVwAAAAABVwAAAAADVwAAAAABVwAAAAABVwAAAAABVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADdwAAAAAAGwAAAAACdwAAAAAAGwAAAAADVwAAAAAAVwAAAAACdwAAAAAAVwAAAAAAVwAAAAADVwAAAAADdwAAAAAAVwAAAAABVwAAAAADVwAAAAADdwAAAAAAGwAAAAACVwAAAAACGwAAAAADGwAAAAADGwAAAAADVwAAAAADVwAAAAAAdwAAAAAAVwAAAAABVwAAAAAAVwAAAAADdwAAAAAAVwAAAAABVwAAAAAAVwAAAAADdwAAAAAAGwAAAAADVwAAAAAAGwAAAAACGwAAAAAAGwAAAAABVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADdwAAAAAAdwAAAAAAGwAAAAAAdwAAAAAAGwAAAAABdwAAAAAAdwAAAAAAVwAAAAADVwAAAAADVwAAAAABVwAAAAAAVwAAAAABVwAAAAAAVwAAAAACVwAAAAACVwAAAAAAVwAAAAACVwAAAAAAVwAAAAADVwAAAAABVwAAAAADVwAAAAABVwAAAAACVwAAAAACVwAAAAAAVwAAAAACVwAAAAADVwAAAAADVwAAAAABVwAAAAACVwAAAAAAVwAAAAACVwAAAAABVwAAAAAAVwAAAAABVwAAAAAAVwAAAAADVwAAAAABVwAAAAACVwAAAAAAVwAAAAADVwAAAAAAVwAAAAACVwAAAAADVwAAAAACVwAAAAACVwAAAAACVwAAAAAAVwAAAAAAVwAAAAACVwAAAAACVwAAAAADVwAAAAADVwAAAAABVwAAAAAAVwAAAAABVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAATgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAACdwAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAdwAAAAAAVwAAAAAAVwAAAAADVwAAAAABVwAAAAAAVwAAAAAAVwAAAAABdwAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAVwAAAAAAVwAAAAADVwAAAAABVwAAAAAD
+ tiles: dwAAAAAAdwAAAAAAdwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdwAAAAAALQAAAAAALQAAAAAAdwAAAAAAVwAAAAACVwAAAAACVwAAAAABdwAAAAAAVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdwAAAAAALQAAAAAALQAAAAAAdwAAAAAAVwAAAAAAVwAAAAADVwAAAAADdwAAAAAAVwAAAAABdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAPAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADVwAAAAABVwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAACVwAAAAACVwAAAAABVwAAAAACVwAAAAADVwAAAAAAVwAAAAACVwAAAAACVwAAAAABVwAAAAACVwAAAAADVwAAAAADVwAAAAABVwAAAAAAVwAAAAACVwAAAAACVwAAAAACVwAAAAABVwAAAAAAVwAAAAACVwAAAAABVwAAAAABVwAAAAADVwAAAAABVwAAAAACVwAAAAACVwAAAAACVwAAAAADVwAAAAADVwAAAAADVwAAAAAAVwAAAAADVwAAAAAAVwAAAAABVwAAAAACVwAAAAACVwAAAAAAVwAAAAABVwAAAAABVwAAAAADVwAAAAAAVwAAAAADVwAAAAACVwAAAAADVwAAAAABVwAAAAADVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAdwAAAAAAGwAAAAABdwAAAAAAGwAAAAABVwAAAAADVwAAAAACdwAAAAAAVwAAAAAAVwAAAAADVwAAAAADdwAAAAAAVwAAAAACVwAAAAABVwAAAAACdwAAAAAAGwAAAAABVwAAAAACGwAAAAABGwAAAAACGwAAAAAAVwAAAAABVwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAADdwAAAAAAVwAAAAAAVwAAAAABVwAAAAABdwAAAAAAGwAAAAADVwAAAAAAGwAAAAACGwAAAAACGwAAAAAAVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABdwAAAAAAdwAAAAAAGwAAAAAAdwAAAAAAGwAAAAACdwAAAAAAdwAAAAAAVwAAAAADVwAAAAACVwAAAAADVwAAAAAAVwAAAAACVwAAAAABVwAAAAABVwAAAAACVwAAAAADVwAAAAABVwAAAAAAVwAAAAACVwAAAAACVwAAAAADVwAAAAABVwAAAAADVwAAAAABVwAAAAABVwAAAAAAVwAAAAABVwAAAAAAVwAAAAAAVwAAAAADVwAAAAADVwAAAAACVwAAAAADVwAAAAAAVwAAAAADVwAAAAAAVwAAAAADVwAAAAABVwAAAAABVwAAAAABVwAAAAAAVwAAAAADVwAAAAABVwAAAAADVwAAAAAAVwAAAAADVwAAAAACVwAAAAADVwAAAAADVwAAAAACVwAAAAAAVwAAAAABVwAAAAABVwAAAAAAVwAAAAACVwAAAAABVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAATgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAAAVwAAAAAAdwAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAdwAAAAAAVwAAAAADVwAAAAADVwAAAAAAVwAAAAACVwAAAAABVwAAAAAAdwAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAVwAAAAADVwAAAAAAVwAAAAADVwAAAAAD
version: 6
-4,1:
ind: -4,1
- tiles: dwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAACVwAAAAABVwAAAAACVwAAAAACVwAAAAABVwAAAAAAVwAAAAABVwAAAAADdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAVwAAAAAAVwAAAAADVwAAAAABLQAAAAAALQAAAAAALQAAAAAAVwAAAAADVwAAAAACVwAAAAADGwAAAAABdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAVwAAAAABVwAAAAACVwAAAAADLQAAAAAALQAAAAAALQAAAAAAVwAAAAABVwAAAAABVwAAAAADGwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAVwAAAAACVwAAAAADVwAAAAADLQAAAAAALQAAAAAALQAAAAAAVwAAAAACVwAAAAADVwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAABVwAAAAAAVwAAAAABVwAAAAABVwAAAAABVwAAAAACVwAAAAACVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAASQAAAAAAVwAAAAABVwAAAAACVwAAAAABVwAAAAACVwAAAAACVwAAAAAAVwAAAAAAVwAAAAAAGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAASQAAAAAAVwAAAAABVwAAAAACMAAAAAAAVwAAAAACLQAAAAAAVwAAAAABVwAAAAAAVwAAAAABGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAASQAAAAACVwAAAAAAVwAAAAABVwAAAAABVwAAAAAAVwAAAAABVwAAAAABVwAAAAADVwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAAAVwAAAAADVwAAAAACVwAAAAADVwAAAAABVwAAAAADVwAAAAADVwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAGwAAAAADGwAAAAACGwAAAAACGwAAAAADGwAAAAAAGwAAAAADGwAAAAABGwAAAAAAGwAAAAABdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdAAAAAADdAAAAAABdAAAAAAAdAAAAAAAdAAAAAADdAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdAAAAAAAdAAAAAABdAAAAAACdAAAAAACdAAAAAABdAAAAAACAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdAAAAAACdAAAAAABdAAAAAAAdAAAAAAAdAAAAAABdAAAAAAA
+ tiles: dwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADVwAAAAACVwAAAAACVwAAAAACVwAAAAACVwAAAAADVwAAAAACVwAAAAABVwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAVwAAAAACVwAAAAABVwAAAAABLQAAAAAALQAAAAAALQAAAAAAVwAAAAACVwAAAAACVwAAAAADGwAAAAABdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAVwAAAAACVwAAAAACVwAAAAADLQAAAAAALQAAAAAALQAAAAAAVwAAAAAAVwAAAAACVwAAAAAAGwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAVwAAAAADVwAAAAACVwAAAAAALQAAAAAALQAAAAAALQAAAAAAVwAAAAACVwAAAAABVwAAAAAAGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAADVwAAAAADVwAAAAACVwAAAAADVwAAAAABVwAAAAABVwAAAAABVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAASQAAAAABVwAAAAADVwAAAAABVwAAAAABVwAAAAADVwAAAAABVwAAAAABVwAAAAACVwAAAAAAGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAASQAAAAACVwAAAAACVwAAAAACMAAAAAACVwAAAAABLQAAAAAAVwAAAAACVwAAAAAAVwAAAAADGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAASQAAAAADVwAAAAADVwAAAAACVwAAAAAAVwAAAAABVwAAAAADVwAAAAABVwAAAAAAVwAAAAAAGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAABVwAAAAAAVwAAAAACVwAAAAAAVwAAAAABVwAAAAAAVwAAAAACVwAAAAACdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAGwAAAAABGwAAAAADGwAAAAADGwAAAAADGwAAAAADGwAAAAACGwAAAAADGwAAAAABGwAAAAADdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdAAAAAABdAAAAAADdAAAAAAAdAAAAAACdAAAAAACdAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdAAAAAAAdAAAAAABdAAAAAADdAAAAAADdAAAAAADdAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdAAAAAABdAAAAAACdAAAAAABdAAAAAABdAAAAAACdAAAAAAA
version: 6
-4,2:
ind: -4,2
- tiles: AAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZwAAAAAAdAAAAAABdAAAAAAAdAAAAAADdAAAAAADdAAAAAABdAAAAAACAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAGwAAAAACGwAAAAAAGwAAAAABGwAAAAABGwAAAAABGwAAAAACAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADdwAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAVwAAAAADVwAAAAABVwAAAAACAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAVwAAAAACVwAAAAADVwAAAAADAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAVwAAAAABAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAXgAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAXgAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAVwAAAAACdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAD
+ tiles: AAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZwAAAAAAdAAAAAACdAAAAAACdAAAAAAAdAAAAAACdAAAAAACdAAAAAACAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAGwAAAAABGwAAAAAAGwAAAAACGwAAAAABGwAAAAADGwAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADdwAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAVwAAAAABVwAAAAABVwAAAAADAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAVwAAAAADVwAAAAACVwAAAAADAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAVwAAAAADAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAXgAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAXgAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAVwAAAAADdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAA
version: 6
-4,3:
ind: -4,3
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADagAAAAAAagAAAAADagAAAAACVwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADagAAAAADagAAAAACagAAAAAAVwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAACagAAAAABagAAAAADagAAAAAAVwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAAAagAAAAABagAAAAADagAAAAADVwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAGwAAAAAAGwAAAAADGwAAAAAAdwAAAAAAVwAAAAABAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAVwAAAAACVwAAAAABVwAAAAAAVwAAAAAAVwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAALAAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAVwAAAAABVwAAAAACVwAAAAABVwAAAAACVwAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAVwAAAAABVwAAAAACVwAAAAABVwAAAAACVwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAACVwAAAAADdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAVwAAAAABVwAAAAADVwAAAAADVwAAAAACVwAAAAAC
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAagAAAAADagAAAAACagAAAAAAVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACagAAAAACagAAAAACagAAAAACVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAABagAAAAABagAAAAACagAAAAABVwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAABagAAAAADagAAAAABagAAAAABVwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAGwAAAAABGwAAAAAAGwAAAAABdwAAAAAAVwAAAAADAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAVwAAAAADVwAAAAABVwAAAAADVwAAAAABVwAAAAACdgAAAAAAdwAAAAAAdwAAAAAALAAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAVwAAAAABVwAAAAACVwAAAAAAVwAAAAADVwAAAAACAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAVwAAAAABVwAAAAADVwAAAAACVwAAAAACVwAAAAACAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAVwAAAAADVwAAAAAAVwAAAAABdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAAAVwAAAAADdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAVwAAAAABVwAAAAAAVwAAAAADVwAAAAACVwAAAAAC
version: 6
-3,3:
ind: -3,3
- tiles: VwAAAAAAVwAAAAABdwAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAdwAAAAAAVwAAAAABVwAAAAAAVwAAAAACVwAAAAAAVwAAAAADVwAAAAACdwAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAdwAAAAAAVwAAAAABVwAAAAADVwAAAAABVwAAAAAAVwAAAAADVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADdwAAAAAAGwAAAAACdwAAAAAAdwAAAAAAVwAAAAACVwAAAAADVwAAAAADVwAAAAACVwAAAAADVwAAAAABGwAAAAABGwAAAAABdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAACGwAAAAAAGwAAAAAAGwAAAAAAdwAAAAAAVwAAAAADVwAAAAAAVwAAAAABVwAAAAADVwAAAAACVwAAAAADGwAAAAADGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAASwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAADVwAAAAADVwAAAAACVwAAAAACVwAAAAADGwAAAAADGwAAAAACdwAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAVwAAAAADVwAAAAABVwAAAAABVwAAAAACVwAAAAAAVwAAAAADGwAAAAADGwAAAAABdwAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAVwAAAAAAVwAAAAADVwAAAAADVwAAAAAAVwAAAAACVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAATgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAADVwAAAAADVwAAAAADdwAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAVwAAAAABVwAAAAAAVwAAAAABVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAVwAAAAABVwAAAAACVwAAAAABVwAAAAACdwAAAAAAdwAAAAAAVwAAAAADdwAAAAAAVwAAAAAATgAAAAAATgAAAAAAdwAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAdwAAAAAAVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACdwAAAAAATgAAAAAATgAAAAAAKgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAVwAAAAAAVwAAAAADVwAAAAACdwAAAAAAKgAAAAAAdwAAAAAAVwAAAAABdwAAAAAAVwAAAAACTgAAAAAATgAAAAAAdwAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAVwAAAAACVwAAAAADVwAAAAABdwAAAAAAKgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABdwAAAAAAdwAAAAAAKgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAACVwAAAAABVwAAAAACKgAAAAAAKgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAA
+ tiles: VwAAAAADVwAAAAADdwAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAdwAAAAAAVwAAAAADVwAAAAACVwAAAAACVwAAAAAAVwAAAAACVwAAAAACdwAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAdwAAAAAAVwAAAAACVwAAAAAAVwAAAAACVwAAAAACVwAAAAACVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAdwAAAAAAGwAAAAABdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAACVwAAAAABVwAAAAACVwAAAAACVwAAAAABGwAAAAAAGwAAAAADdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAADGwAAAAAAGwAAAAAAGwAAAAADdwAAAAAAVwAAAAACVwAAAAADVwAAAAADVwAAAAABVwAAAAADVwAAAAACGwAAAAAAGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAASwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAACVwAAAAACVwAAAAACVwAAAAAAVwAAAAABGwAAAAADGwAAAAADdwAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAVwAAAAACVwAAAAABVwAAAAABVwAAAAADVwAAAAABVwAAAAAAGwAAAAABGwAAAAADdwAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAVwAAAAABVwAAAAAAVwAAAAAAVwAAAAADVwAAAAABVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAATgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAACVwAAAAABVwAAAAABdwAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAVwAAAAAAVwAAAAACVwAAAAADVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAVwAAAAABVwAAAAADVwAAAAACVwAAAAACdwAAAAAAdwAAAAAAVwAAAAACdwAAAAAAVwAAAAABTgAAAAAATgAAAAAAdwAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAdwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACdwAAAAAATgAAAAAATgAAAAAAKgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAVwAAAAACVwAAAAADVwAAAAAAdwAAAAAAKgAAAAAAdwAAAAAAVwAAAAACdwAAAAAAVwAAAAAATgAAAAAATgAAAAAAdwAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAVwAAAAAAVwAAAAAAVwAAAAACdwAAAAAAKgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABdwAAAAAAdwAAAAAAKgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAACVwAAAAABVwAAAAADKgAAAAAAKgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAA
version: 6
-2,3:
ind: -2,3
- tiles: VwAAAAABVwAAAAAAVwAAAAACGwAAAAAAdwAAAAAAGwAAAAABGwAAAAACGwAAAAADGwAAAAAAGwAAAAACGwAAAAABdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAABVwAAAAABVwAAAAACGwAAAAABdwAAAAAAGwAAAAAAGwAAAAACGwAAAAABGwAAAAACGwAAAAABGwAAAAACdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAACVwAAAAACVwAAAAACGwAAAAABGwAAAAABGwAAAAACGwAAAAACGwAAAAADGwAAAAACGwAAAAAAGwAAAAADdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAADVwAAAAAAVwAAAAABGwAAAAACdwAAAAAAGwAAAAADGwAAAAADGwAAAAACGwAAAAACGwAAAAADGwAAAAABdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAABVwAAAAACGwAAAAAAdwAAAAAAGwAAAAACGwAAAAABGwAAAAABGwAAAAAAGwAAAAAAGwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAACVwAAAAABVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAACdAAAAAACdAAAAAADdAAAAAABdAAAAAACdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAACVwAAAAAAVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAATgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: VwAAAAACVwAAAAADVwAAAAAAGwAAAAADdwAAAAAAGwAAAAABGwAAAAAAGwAAAAAAGwAAAAACGwAAAAACGwAAAAACdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAADVwAAAAABVwAAAAADGwAAAAADdwAAAAAAGwAAAAABGwAAAAABGwAAAAABGwAAAAACGwAAAAAAGwAAAAACdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAADVwAAAAADVwAAAAACGwAAAAADGwAAAAACGwAAAAAAGwAAAAADGwAAAAABGwAAAAABGwAAAAACGwAAAAABdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAADVwAAAAABVwAAAAAAGwAAAAABdwAAAAAAGwAAAAABGwAAAAACGwAAAAACGwAAAAADGwAAAAADGwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAADVwAAAAAAVwAAAAADGwAAAAADdwAAAAAAGwAAAAABGwAAAAACGwAAAAAAGwAAAAADGwAAAAACGwAAAAADdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAACVwAAAAACVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAAAdAAAAAAAdAAAAAABdAAAAAACdAAAAAACdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAACVwAAAAABVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAATgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-3,4:
ind: -3,4
- tiles: VwAAAAABVwAAAAABVwAAAAAAKgAAAAAAKgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAACVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAABVwAAAAAAOwAAAAAAOwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAAAVwAAAAABOwAAAAAAOwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: VwAAAAACVwAAAAACVwAAAAADKgAAAAAAKgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAACVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAABVwAAAAABOwAAAAAAOwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAADVwAAAAADOwAAAAAAOwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-4,4:
ind: -4,4
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAVwAAAAABVwAAAAABVwAAAAABVwAAAAAAVwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAVwAAAAADVwAAAAADVwAAAAADVwAAAAAAVwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAVwAAAAADVwAAAAABVwAAAAADVwAAAAADVwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAVwAAAAAAVwAAAAADVwAAAAAAVwAAAAACVwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAVwAAAAACVwAAAAAAVwAAAAACVwAAAAACVwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAABVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAADVwAAAAABVwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAVwAAAAADVwAAAAAAVwAAAAACVwAAAAAAVwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-1,2:
ind: -1,2
- tiles: GwAAAAABGwAAAAADGwAAAAABPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAGwAAAAAAGwAAAAABGwAAAAAAIAAAAAACGwAAAAADdAAAAAAAGwAAAAADGwAAAAABdwAAAAAAPAAAAAAAdAAAAAADdAAAAAADdAAAAAABdAAAAAAAdAAAAAACPAAAAAAAdwAAAAAAGwAAAAAAGwAAAAADdwAAAAAAGwAAAAADdAAAAAAAGwAAAAAAGwAAAAABdwAAAAAAPAAAAAAAdAAAAAABKwAAAAACKwAAAAACKwAAAAADdAAAAAABPAAAAAAAdwAAAAAAGwAAAAABGwAAAAACdwAAAAAAdwAAAAAAGwAAAAABGwAAAAADGwAAAAABdwAAAAAAPAAAAAAAdAAAAAACdAAAAAACdAAAAAACdAAAAAAAdAAAAAAAPAAAAAAAdwAAAAAAGwAAAAAAGwAAAAABdwAAAAAAdAAAAAABdAAAAAADGwAAAAACGwAAAAABdwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdwAAAAAAGwAAAAADGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACGwAAAAACGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABGwAAAAADGwAAAAADZgAAAAAAdwAAAAAAGwAAAAAAGwAAAAAAGwAAAAACGwAAAAADdwAAAAAAdwAAAAAAGwAAAAABdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAADGwAAAAAAGwAAAAADdwAAAAAAZgAAAAAAdwAAAAAAGwAAAAADGwAAAAADGwAAAAADGwAAAAAAGwAAAAADGwAAAAABGwAAAAAAGwAAAAADGwAAAAABGwAAAAADGwAAAAADGwAAAAADGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACGwAAAAAAIAAAAAADGwAAAAAAGwAAAAACGwAAAAADGwAAAAAAGwAAAAACGwAAAAAAGwAAAAADIAAAAAABGwAAAAABGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACGwAAAAADGwAAAAAAGwAAAAACGwAAAAAALQAAAAAALQAAAAAALQAAAAAAGwAAAAADGwAAAAADGwAAAAACGwAAAAABGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABGwAAAAABGwAAAAACGwAAAAACGwAAAAAAGwAAAAABGwAAAAACGwAAAAAAGwAAAAACGwAAAAACGwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAGwAAAAAAGwAAAAACGwAAAAAAGwAAAAACGwAAAAABIAAAAAADGwAAAAADGwAAAAACGwAAAAACGwAAAAACGwAAAAACdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABGwAAAAACGwAAAAADGwAAAAACGwAAAAABGwAAAAADGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAGwAAAAABGwAAAAACGwAAAAADGwAAAAABGwAAAAACGwAAAAADGwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAGwAAAAACGwAAAAABGwAAAAADGwAAAAADGwAAAAADGwAAAAACGwAAAAADdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAA
+ tiles: GwAAAAACGwAAAAABGwAAAAACPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAGwAAAAADGwAAAAAAGwAAAAAAIAAAAAACGwAAAAADdAAAAAACGwAAAAABGwAAAAADdwAAAAAAPAAAAAAAdAAAAAACdAAAAAAAdAAAAAACdAAAAAACdAAAAAADPAAAAAAAdwAAAAAAGwAAAAABGwAAAAADdwAAAAAAGwAAAAACdAAAAAABGwAAAAABGwAAAAACdwAAAAAAPAAAAAAAdAAAAAABKwAAAAADKwAAAAADKwAAAAABdAAAAAADPAAAAAAAdwAAAAAAGwAAAAABGwAAAAADdwAAAAAAdwAAAAAAGwAAAAABGwAAAAABGwAAAAACdwAAAAAAPAAAAAAAdAAAAAACdAAAAAADdAAAAAAAdAAAAAABdAAAAAADPAAAAAAAdwAAAAAAGwAAAAABGwAAAAABdwAAAAAAdAAAAAACdAAAAAACGwAAAAABGwAAAAACdwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdwAAAAAAGwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABGwAAAAACGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADGwAAAAABGwAAAAACZgAAAAAAdwAAAAAAGwAAAAACGwAAAAABGwAAAAADGwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABdwAAAAAAdwAAAAAAGwAAAAACGwAAAAABGwAAAAABGwAAAAACdwAAAAAAZgAAAAAAdwAAAAAAGwAAAAADGwAAAAADGwAAAAAAGwAAAAADGwAAAAAAGwAAAAADGwAAAAAAGwAAAAADGwAAAAADGwAAAAADGwAAAAADGwAAAAAAGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADGwAAAAABIAAAAAACGwAAAAADGwAAAAACGwAAAAADGwAAAAAAGwAAAAACGwAAAAABGwAAAAABIAAAAAABGwAAAAADGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADGwAAAAABGwAAAAABGwAAAAADGwAAAAACLQAAAAAALQAAAAAALQAAAAAAGwAAAAAAGwAAAAAAGwAAAAADGwAAAAADGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABGwAAAAACGwAAAAACGwAAAAAAGwAAAAADGwAAAAACGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAACGwAAAAACdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAGwAAAAAAGwAAAAAAGwAAAAACGwAAAAABGwAAAAACIAAAAAAAGwAAAAAAGwAAAAAAGwAAAAABGwAAAAACGwAAAAACdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADGwAAAAACGwAAAAACGwAAAAACGwAAAAABGwAAAAACGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAGwAAAAACGwAAAAABGwAAAAADGwAAAAABGwAAAAADGwAAAAAAGwAAAAADdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAGwAAAAACGwAAAAADGwAAAAACGwAAAAABGwAAAAAAGwAAAAACGwAAAAACdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAA
version: 6
0,2:
ind: 0,2
- tiles: dAAAAAABdAAAAAAAdAAAAAADdAAAAAACdAAAAAADdAAAAAAAdwAAAAAAVwAAAAADVwAAAAACVwAAAAAAVwAAAAACVwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdAAAAAAAdAAAAAABdAAAAAACdAAAAAACdAAAAAACdAAAAAABJAAAAAAAVwAAAAADVwAAAAACVwAAAAAAVwAAAAAAVwAAAAADdwAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACGwAAAAADGwAAAAABGwAAAAAAdwAAAAAAVwAAAAACVwAAAAADVwAAAAACVwAAAAADVwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdAAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAADVwAAAAABVwAAAAAAVwAAAAABdwAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAVwAAAAABdwAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAVwAAAAADVwAAAAAAVwAAAAADVwAAAAADVwAAAAADVwAAAAAAVwAAAAAAVwAAAAADVwAAAAACdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAGwAAAAABGwAAAAADGwAAAAABGwAAAAACGwAAAAADdwAAAAAAVwAAAAABVwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAGwAAAAACNAAAAAAANAAAAAAANAAAAAAAGwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAGwAAAAACNAAAAAAAGwAAAAAANAAAAAAAGwAAAAABdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAGwAAAAAANAAAAAAANAAAAAAANAAAAAAAGwAAAAABdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAA
+ tiles: dAAAAAABdAAAAAACdAAAAAAAdAAAAAACdAAAAAAAdAAAAAAAdwAAAAAAVwAAAAABVwAAAAADVwAAAAABVwAAAAABVwAAAAADdwAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdAAAAAADdAAAAAABdAAAAAAAdAAAAAABdAAAAAADdAAAAAABJAAAAAAAVwAAAAACVwAAAAACVwAAAAADVwAAAAABVwAAAAADdwAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADGwAAAAADGwAAAAADGwAAAAACdwAAAAAAVwAAAAAAVwAAAAABVwAAAAADVwAAAAACVwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAAAVwAAAAACVwAAAAAAVwAAAAABdwAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAVwAAAAACVwAAAAABVwAAAAAAVwAAAAABVwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAABVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAVwAAAAADVwAAAAABVwAAAAADVwAAAAADVwAAAAADVwAAAAACVwAAAAABVwAAAAABVwAAAAADdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAABVwAAAAABVwAAAAACVwAAAAAAVwAAAAABVwAAAAABVwAAAAABdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAGwAAAAABGwAAAAADGwAAAAACGwAAAAACGwAAAAADdwAAAAAAVwAAAAADVwAAAAABVwAAAAACdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAGwAAAAAANAAAAAAANAAAAAAANAAAAAAAGwAAAAADdwAAAAAAVwAAAAADVwAAAAABVwAAAAABdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAGwAAAAAANAAAAAAAGwAAAAABNAAAAAAAGwAAAAABdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAGwAAAAACNAAAAAAANAAAAAAANAAAAAAAGwAAAAADdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAA
version: 6
-1,3:
ind: -1,3
- tiles: AAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAGwAAAAABdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACGwAAAAAAGwAAAAAC
+ tiles: AAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAGwAAAAACdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABGwAAAAACGwAAAAAB
version: 6
1,1:
ind: 1,1
- tiles: dwAAAAAAcwAAAAAAcwAAAAACdwAAAAAAGwAAAAAAGwAAAAADGwAAAAACGwAAAAADdwAAAAAAdAAAAAABdAAAAAACdAAAAAAAdAAAAAADdAAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACGwAAAAADGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADdwAAAAAAdwAAAAAAVwAAAAAAdwAAAAAAcwAAAAACcwAAAAACcwAAAAADcwAAAAACVwAAAAABVwAAAAADVwAAAAABVwAAAAAAVwAAAAABGwAAAAADGwAAAAADGwAAAAACGwAAAAACGwAAAAADGwAAAAADdwAAAAAAcwAAAAACcwAAAAAAcwAAAAABcwAAAAAAVwAAAAADVwAAAAAAVwAAAAADVwAAAAACVwAAAAABGwAAAAABGwAAAAABGwAAAAAAGwAAAAAAGwAAAAADGwAAAAACGwAAAAADGwAAAAABGwAAAAABVwAAAAADVwAAAAABVwAAAAADVwAAAAACVwAAAAADVwAAAAADVwAAAAACGwAAAAABGwAAAAACGwAAAAADGwAAAAAAGwAAAAAAGwAAAAADGwAAAAACGwAAAAABGwAAAAABVwAAAAABVwAAAAAAVwAAAAACVwAAAAACVwAAAAAAVwAAAAABVwAAAAABagAAAAABIAAAAAADIAAAAAAAIAAAAAADSQAAAAACSQAAAAABGwAAAAABGwAAAAACGwAAAAAAVwAAAAADVwAAAAAAVwAAAAAAVwAAAAABVwAAAAABVwAAAAADVwAAAAADdwAAAAAAIAAAAAABIAAAAAAAIAAAAAAASQAAAAABSQAAAAABGwAAAAABGwAAAAACGwAAAAABVwAAAAABVwAAAAADVwAAAAADVwAAAAABVwAAAAADVwAAAAADVwAAAAADdwAAAAAAIAAAAAABIAAAAAAAIAAAAAABSQAAAAACSQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAVwAAAAADVwAAAAACVwAAAAABVwAAAAAAVwAAAAABVwAAAAACVwAAAAAAVwAAAAABVwAAAAABdwAAAAAAagAAAAACbQAAAAADDgAAAAAADgAAAAAAdwAAAAAAZgAAAAAAVwAAAAACVwAAAAAAVwAAAAADVwAAAAACVwAAAAAAVwAAAAAAVwAAAAABVwAAAAACVwAAAAACagAAAAACagAAAAABbgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAACVwAAAAACVwAAAAAAVwAAAAADVwAAAAAAVwAAAAADVwAAAAACVwAAAAADdwAAAAAAagAAAAABbgAAAAABdwAAAAAADgAAAAAAdwAAAAAADgAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAABVwAAAAABdwAAAAAAdwAAAAAAagAAAAADbQAAAAACdwAAAAAADgAAAAAAdwAAAAAADgAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAVwAAAAADVwAAAAACVwAAAAABdwAAAAAAagAAAAADagAAAAADbgAAAAAAbQAAAAACbgAAAAAAbgAAAAAAbQAAAAABdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAZwAAAAAAVwAAAAABVwAAAAABVwAAAAACdwAAAAAAagAAAAADagAAAAACbQAAAAAAbgAAAAABbQAAAAADbQAAAAADbgAAAAACdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAABVwAAAAABdwAAAAAAagAAAAAAagAAAAADagAAAAABdwAAAAAAagAAAAAAagAAAAABagAAAAAB
+ tiles: dwAAAAAAcwAAAAADcwAAAAABdwAAAAAAGwAAAAACGwAAAAACGwAAAAADGwAAAAAAdwAAAAAAdAAAAAAAdAAAAAADdAAAAAADdAAAAAACdAAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADGwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACdwAAAAAAdwAAAAAAVwAAAAABdwAAAAAAcwAAAAACcwAAAAABcwAAAAABcwAAAAACVwAAAAAAVwAAAAADVwAAAAADVwAAAAACVwAAAAAAGwAAAAADGwAAAAABGwAAAAAAGwAAAAADGwAAAAAAGwAAAAADdwAAAAAAcwAAAAAAcwAAAAAAcwAAAAACcwAAAAAAVwAAAAABVwAAAAACVwAAAAAAVwAAAAACVwAAAAABGwAAAAAAGwAAAAAAGwAAAAABGwAAAAABGwAAAAACGwAAAAAAGwAAAAADGwAAAAABGwAAAAAAVwAAAAAAVwAAAAAAVwAAAAABVwAAAAADVwAAAAAAVwAAAAABVwAAAAADGwAAAAAAGwAAAAAAGwAAAAABGwAAAAABGwAAAAADGwAAAAAAGwAAAAAAGwAAAAACGwAAAAAAVwAAAAAAVwAAAAADVwAAAAAAVwAAAAABVwAAAAACVwAAAAACVwAAAAABagAAAAAAIAAAAAABIAAAAAABIAAAAAACSQAAAAACSQAAAAACGwAAAAACGwAAAAAAGwAAAAABVwAAAAABVwAAAAADVwAAAAABVwAAAAADVwAAAAAAVwAAAAACVwAAAAACdwAAAAAAIAAAAAADIAAAAAABIAAAAAADSQAAAAAASQAAAAABGwAAAAABGwAAAAABGwAAAAABVwAAAAABVwAAAAADVwAAAAADVwAAAAABVwAAAAACVwAAAAABVwAAAAADdwAAAAAAIAAAAAADIAAAAAAAIAAAAAABSQAAAAADSQAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAVwAAAAADVwAAAAADVwAAAAAAVwAAAAAAVwAAAAABVwAAAAAAVwAAAAABVwAAAAADVwAAAAAAdwAAAAAAagAAAAAAbQAAAAADDgAAAAAADgAAAAAAdwAAAAAAZgAAAAAAVwAAAAACVwAAAAABVwAAAAAAVwAAAAACVwAAAAAAVwAAAAADVwAAAAACVwAAAAAAVwAAAAABagAAAAAAagAAAAACbgAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAABVwAAAAAAVwAAAAABVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAADdwAAAAAAagAAAAAAbgAAAAADdwAAAAAADgAAAAAAdwAAAAAADgAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAADVwAAAAADdwAAAAAAdwAAAAAAagAAAAAAbQAAAAABdwAAAAAADgAAAAAAdwAAAAAADgAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAVwAAAAADVwAAAAACVwAAAAADdwAAAAAAagAAAAACagAAAAADbgAAAAAAbQAAAAACbgAAAAABbgAAAAACbQAAAAACdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAZwAAAAAAVwAAAAAAVwAAAAADVwAAAAACdwAAAAAAagAAAAACagAAAAACbQAAAAADbgAAAAADbQAAAAADbQAAAAACbgAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAADVwAAAAADdwAAAAAAagAAAAACagAAAAAAagAAAAAAdwAAAAAAagAAAAADagAAAAACagAAAAAD
version: 6
1,2:
ind: 1,2
- tiles: dwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADVwAAAAADVwAAAAABdwAAAAAAdwAAAAAAagAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAVwAAAAAAVwAAAAADVwAAAAADVwAAAAADVwAAAAADVwAAAAACVwAAAAACVwAAAAABdwAAAAAAYQAAAAACYQAAAAABYQAAAAADPAAAAAAAPAAAAAAAPAAAAAAAdwAAAAAAVwAAAAABVwAAAAACVwAAAAACVwAAAAACVwAAAAABVwAAAAACVwAAAAADVwAAAAACdwAAAAAAYQAAAAABYQAAAAABYQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAAAVwAAAAACVwAAAAABVwAAAAACVwAAAAABVwAAAAAAVwAAAAACdwAAAAAAVwAAAAABVwAAAAACVwAAAAAAdAAAAAAAdAAAAAABdAAAAAACdAAAAAAAVwAAAAADVwAAAAACVwAAAAADVwAAAAABVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAABVwAAAAABVwAAAAABVwAAAAACVwAAAAABdAAAAAACdAAAAAADdAAAAAABdwAAAAAAVwAAAAACVwAAAAAAVwAAAAABVwAAAAAAVwAAAAADVwAAAAABVwAAAAACVwAAAAACVwAAAAABVwAAAAABVwAAAAACVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAABVwAAAAABVwAAAAABVwAAAAABVwAAAAAAVwAAAAAAdwAAAAAAVwAAAAADVwAAAAAAVwAAAAADdAAAAAABdAAAAAABdAAAAAABdAAAAAADVwAAAAAAVwAAAAACVwAAAAADVwAAAAADVwAAAAAAVwAAAAABVwAAAAAAVwAAAAABdwAAAAAAYQAAAAAAYQAAAAADYQAAAAAAdAAAAAACdAAAAAACdAAAAAABdwAAAAAAVwAAAAACVwAAAAABVwAAAAABVwAAAAACVwAAAAACVwAAAAABVwAAAAADVwAAAAABdwAAAAAAdwAAAAAAKgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAOwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAZgAAAAAAdwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAdwAAAAAAZwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAA
+ tiles: dwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAADVwAAAAABdwAAAAAAdwAAAAAAagAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAVwAAAAABVwAAAAADVwAAAAACVwAAAAADVwAAAAABVwAAAAAAVwAAAAABVwAAAAABdwAAAAAAYQAAAAABYQAAAAADYQAAAAABPAAAAAAAPAAAAAAAPAAAAAAAdwAAAAAAVwAAAAAAVwAAAAADVwAAAAACVwAAAAABVwAAAAABVwAAAAAAVwAAAAABVwAAAAAAdwAAAAAAYQAAAAABYQAAAAACYQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAACVwAAAAACVwAAAAABVwAAAAAAVwAAAAADVwAAAAADVwAAAAACdwAAAAAAVwAAAAAAVwAAAAADVwAAAAACdAAAAAADdAAAAAABdAAAAAABdAAAAAADVwAAAAACVwAAAAAAVwAAAAAAVwAAAAACVwAAAAAAVwAAAAADVwAAAAAAVwAAAAACVwAAAAABVwAAAAABVwAAAAAAVwAAAAAAdAAAAAAAdAAAAAADdAAAAAAAdwAAAAAAVwAAAAABVwAAAAADVwAAAAACVwAAAAABVwAAAAACVwAAAAABVwAAAAADVwAAAAAAVwAAAAABVwAAAAABVwAAAAABVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAACVwAAAAADVwAAAAAAVwAAAAAAVwAAAAADVwAAAAAAVwAAAAABdwAAAAAAVwAAAAACVwAAAAADVwAAAAACdAAAAAACdAAAAAACdAAAAAABdAAAAAABVwAAAAABVwAAAAAAVwAAAAAAVwAAAAABVwAAAAAAVwAAAAAAVwAAAAABVwAAAAABdwAAAAAAYQAAAAADYQAAAAABYQAAAAAAdAAAAAADdAAAAAADdAAAAAABdwAAAAAAVwAAAAADVwAAAAACVwAAAAADVwAAAAABVwAAAAABVwAAAAADVwAAAAACVwAAAAACdwAAAAAAdwAAAAAAKgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAZgAAAAAAdwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAdwAAAAAAZwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAA
version: 6
2,2:
ind: 2,2
- tiles: dwAAAAAASwAAAAAAdwAAAAAAGwAAAAACIgAAAAACIgAAAAAAIgAAAAAAIgAAAAACIgAAAAAAIgAAAAADIgAAAAACGwAAAAACdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAIgAAAAAAIgAAAAADGwAAAAAAGwAAAAABGwAAAAABGwAAAAABGwAAAAACIgAAAAACIgAAAAAAdwAAAAAAVwAAAAAAGwAAAAADdwAAAAAAYQAAAAAAYQAAAAACdwAAAAAAIgAAAAABGwAAAAACGwAAAAACGwAAAAADGwAAAAAAGwAAAAACGwAAAAADGwAAAAAAIgAAAAABGwAAAAABGwAAAAABVwAAAAADdwAAAAAAVwAAAAAAVwAAAAACVwAAAAACIgAAAAAAGwAAAAAAGwAAAAABGwAAAAADGwAAAAACGwAAAAADGwAAAAACGwAAAAACIgAAAAABdwAAAAAAVwAAAAAAGwAAAAACdwAAAAAAVwAAAAABVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACVwAAAAABdwAAAAAAVwAAAAACVwAAAAACdwAAAAAAGwAAAAABdAAAAAABdAAAAAADdAAAAAABdAAAAAADdAAAAAADdAAAAAABdAAAAAADdAAAAAACdwAAAAAAVwAAAAAAGwAAAAADdwAAAAAAVwAAAAACVwAAAAAAGwAAAAABGwAAAAABdAAAAAAAdAAAAAACdAAAAAACdAAAAAADdAAAAAAAdAAAAAABdAAAAAACdAAAAAABGwAAAAACGwAAAAACVwAAAAADdwAAAAAAYQAAAAACYQAAAAAAdwAAAAAAGwAAAAAAdAAAAAABdAAAAAABdAAAAAACdAAAAAAAdAAAAAADdAAAAAAAdAAAAAABdAAAAAAAdwAAAAAAVwAAAAACGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADdAAAAAABdAAAAAAAdAAAAAABdAAAAAAAdAAAAAABdAAAAAAAdAAAAAABdAAAAAABdwAAAAAAdwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABdAAAAAAAdAAAAAAAdAAAAAACdAAAAAACdAAAAAABdAAAAAADdAAAAAADGwAAAAACVwAAAAABVwAAAAAAVwAAAAABdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAAAdwAAAAAAdwAAAAAAdAAAAAACdwAAAAAAdAAAAAADdAAAAAACdAAAAAADdwAAAAAAdAAAAAAAdwAAAAAAdAAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAACdwAAAAAAdwAAAAAAdAAAAAACdAAAAAADdwAAAAAAdwAAAAAAdAAAAAABdAAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAABdAAAAAADdAAAAAAAdwAAAAAAdAAAAAABdwAAAAAAdwAAAAAAdAAAAAABdAAAAAABdwAAAAAAdAAAAAABdwAAAAAAdAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAA
+ tiles: dwAAAAAASwAAAAAAdwAAAAAAGwAAAAACIgAAAAAAIgAAAAAAIgAAAAACIgAAAAACIgAAAAADIgAAAAABIgAAAAACGwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAIgAAAAAAIgAAAAADGwAAAAACGwAAAAACGwAAAAABGwAAAAABGwAAAAACIgAAAAACIgAAAAAAdwAAAAAAVwAAAAADGwAAAAAAdwAAAAAAYQAAAAABYQAAAAADdwAAAAAAIgAAAAABGwAAAAACGwAAAAADGwAAAAABGwAAAAABGwAAAAADGwAAAAACGwAAAAABIgAAAAAAGwAAAAACGwAAAAADVwAAAAADdwAAAAAAVwAAAAACVwAAAAABVwAAAAACIgAAAAAAGwAAAAABGwAAAAABGwAAAAACGwAAAAADGwAAAAACGwAAAAAAGwAAAAABIgAAAAADdwAAAAAAVwAAAAADGwAAAAABdwAAAAAAVwAAAAABVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADVwAAAAAAdwAAAAAAVwAAAAABVwAAAAAAdwAAAAAAGwAAAAAAdAAAAAABdAAAAAACdAAAAAABdAAAAAAAdAAAAAABdAAAAAAAdAAAAAADdAAAAAADdwAAAAAAVwAAAAABGwAAAAACdwAAAAAAVwAAAAACVwAAAAABGwAAAAADGwAAAAACdAAAAAABdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAACdAAAAAACdAAAAAAAdAAAAAAAGwAAAAAAGwAAAAAAVwAAAAADdwAAAAAAYQAAAAADYQAAAAADdwAAAAAAGwAAAAAAdAAAAAABdAAAAAABdAAAAAAAdAAAAAACdAAAAAABdAAAAAACdAAAAAADdAAAAAADdwAAAAAAVwAAAAABGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACdAAAAAACdAAAAAABdAAAAAABdAAAAAABdAAAAAADdAAAAAABdAAAAAADdAAAAAABdwAAAAAAdwAAAAAAVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACdAAAAAADdAAAAAACdAAAAAAAdAAAAAACdAAAAAACdAAAAAACdAAAAAADGwAAAAABVwAAAAAAVwAAAAABVwAAAAABdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAAAdwAAAAAAdwAAAAAAdAAAAAACdwAAAAAAdAAAAAAAdAAAAAABdAAAAAABdwAAAAAAdAAAAAAAdwAAAAAAdAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAABdwAAAAAAdwAAAAAAdAAAAAAAdAAAAAAAdwAAAAAAdwAAAAAAdAAAAAAAdAAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAADdAAAAAACdAAAAAABdwAAAAAAdAAAAAADdwAAAAAAdwAAAAAAdAAAAAADdAAAAAAAdwAAAAAAdAAAAAABdwAAAAAAdAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAA
version: 6
2,1:
ind: 2,1
- tiles: dwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAGwAAAAADGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAXgAAAAAAXgAAAAAAdwAAAAAASQAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAXgAAAAAAXgAAAAAAdwAAAAAASQAAAAACdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAXgAAAAAAZgAAAAAAdwAAAAAASQAAAAADdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAdwAAAAAAdwAAAAAAbQAAAAADbgAAAAADdwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAADbgAAAAAAbQAAAAACdwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAbgAAAAABbgAAAAABdwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAA
+ tiles: dwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAGwAAAAACGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAXgAAAAAAXgAAAAAAdwAAAAAASQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAXgAAAAAAXgAAAAAAdwAAAAAASQAAAAACdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAXgAAAAAAZgAAAAAAdwAAAAAASQAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAdwAAAAAAdwAAAAAAbQAAAAADbgAAAAABdwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAADbgAAAAAAbQAAAAABdwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAbgAAAAAAbgAAAAABdwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAA
version: 6
1,0:
ind: 1,0
- tiles: VwAAAAACVwAAAAADVwAAAAAAVwAAAAAAVwAAAAABVwAAAAACdwAAAAAAdAAAAAAAdAAAAAACdAAAAAABdAAAAAACVwAAAAABdwAAAAAAVwAAAAABVwAAAAABVwAAAAADVwAAAAACVwAAAAACVwAAAAACVwAAAAACVwAAAAACVwAAAAADdwAAAAAAdAAAAAADdAAAAAACdAAAAAABdAAAAAACVwAAAAACVwAAAAABVwAAAAAAVwAAAAABVwAAAAABVwAAAAACVwAAAAACVwAAAAABVwAAAAABVwAAAAACVwAAAAACdwAAAAAAdAAAAAABdAAAAAADdAAAAAAAdAAAAAADVwAAAAACdwAAAAAAVwAAAAACVwAAAAAAVwAAAAABdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAAAGwAAAAABagAAAAACagAAAAADagAAAAABagAAAAADagAAAAADagAAAAAAGwAAAAACGwAAAAADZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAACGwAAAAADagAAAAABagAAAAABagAAAAACagAAAAAAagAAAAABagAAAAACGwAAAAAAGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABGwAAAAABGwAAAAACagAAAAADagAAAAACVwAAAAAAVwAAAAAAVwAAAAACagAAAAAAdwAAAAAAGwAAAAABGwAAAAAAGwAAAAACGwAAAAADGwAAAAAAGwAAAAAAGwAAAAACGwAAAAAAGwAAAAAAagAAAAAAagAAAAACVwAAAAAAVwAAAAADVwAAAAABagAAAAABdwAAAAAAdwAAAAAAGwAAAAABGwAAAAADGwAAAAADGwAAAAAAGwAAAAAAGwAAAAADGwAAAAAAGwAAAAABagAAAAABagAAAAACagAAAAACagAAAAABagAAAAAAagAAAAABdwAAAAAAGwAAAAADGwAAAAABGwAAAAADGwAAAAACGwAAAAAAGwAAAAAAGwAAAAADGwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACGwAAAAACGwAAAAACdwAAAAAAdAAAAAABdAAAAAACdAAAAAAAdAAAAAADdAAAAAADdwAAAAAAdwAAAAAAdwAAAAAAcwAAAAABZgAAAAAAdwAAAAAAGwAAAAACGwAAAAACGwAAAAACGwAAAAADdwAAAAAAdAAAAAABdAAAAAABdAAAAAAAdAAAAAACdAAAAAABdwAAAAAADwAAAAAAGwAAAAACGwAAAAACGwAAAAABGwAAAAACGwAAAAAAGwAAAAACGwAAAAADGwAAAAACdwAAAAAAdAAAAAADdAAAAAACdAAAAAACdAAAAAADdAAAAAACdwAAAAAADwAAAAAA
+ tiles: VwAAAAABVwAAAAACVwAAAAACVwAAAAADVwAAAAADVwAAAAACdwAAAAAAdAAAAAABdAAAAAAAdAAAAAAAdAAAAAABVwAAAAADdwAAAAAAVwAAAAACVwAAAAACVwAAAAAAVwAAAAAAVwAAAAACVwAAAAABVwAAAAADVwAAAAAAVwAAAAACdwAAAAAAdAAAAAAAdAAAAAABdAAAAAABdAAAAAAAVwAAAAADVwAAAAACVwAAAAADVwAAAAADVwAAAAACVwAAAAADVwAAAAAAVwAAAAACVwAAAAADVwAAAAABVwAAAAAAdwAAAAAAdAAAAAADdAAAAAABdAAAAAACdAAAAAAAVwAAAAADdwAAAAAAVwAAAAADVwAAAAADVwAAAAABdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACGwAAAAACGwAAAAABagAAAAADagAAAAACagAAAAACagAAAAABagAAAAADagAAAAAAGwAAAAAAGwAAAAADZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADGwAAAAAAGwAAAAABagAAAAACagAAAAADagAAAAAAagAAAAADagAAAAABagAAAAAAGwAAAAADGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAAAGwAAAAACagAAAAACagAAAAACVwAAAAABVwAAAAABVwAAAAADagAAAAABdwAAAAAAGwAAAAADGwAAAAADGwAAAAAAGwAAAAABGwAAAAACGwAAAAACGwAAAAADGwAAAAABGwAAAAABagAAAAAAagAAAAABVwAAAAABVwAAAAAAVwAAAAADagAAAAAAdwAAAAAAdwAAAAAAGwAAAAABGwAAAAACGwAAAAABGwAAAAAAGwAAAAACGwAAAAADGwAAAAADGwAAAAABagAAAAABagAAAAAAagAAAAADagAAAAAAagAAAAACagAAAAADdwAAAAAAGwAAAAACGwAAAAAAGwAAAAADGwAAAAACGwAAAAAAGwAAAAAAGwAAAAADGwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACGwAAAAADGwAAAAADdwAAAAAAdAAAAAADdAAAAAADdAAAAAADdAAAAAABdAAAAAADdwAAAAAAdwAAAAAAdwAAAAAAcwAAAAACZgAAAAAAdwAAAAAAGwAAAAADGwAAAAABGwAAAAAAGwAAAAABdwAAAAAAdAAAAAADdAAAAAADdAAAAAACdAAAAAABdAAAAAABdwAAAAAADwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAABGwAAAAABGwAAAAAAGwAAAAABGwAAAAABdwAAAAAAdAAAAAACdAAAAAABdAAAAAACdAAAAAABdAAAAAACdwAAAAAADwAAAAAA
version: 6
1,-1:
ind: 1,-1
- tiles: dgAAAAAAdwAAAAAAGwAAAAAAGwAAAAABGwAAAAABGwAAAAACGwAAAAACdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAADdwAAAAAAVwAAAAAAVwAAAAACVwAAAAADdwAAAAAAVwAAAAABVwAAAAAAVwAAAAADVwAAAAADVwAAAAABVwAAAAADVwAAAAADVwAAAAADVwAAAAABVwAAAAAAVwAAAAACVwAAAAADVwAAAAABVwAAAAADVwAAAAAAVwAAAAABVwAAAAABVwAAAAABVwAAAAADVwAAAAABVwAAAAACVwAAAAACVwAAAAACVwAAAAACVwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAVwAAAAAAVwAAAAABVwAAAAABdwAAAAAAVwAAAAAAVwAAAAACVwAAAAAAVwAAAAACVwAAAAAAVwAAAAABVwAAAAACVwAAAAACVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAABVwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADVwAAAAAAVwAAAAADdwAAAAAAVwAAAAACVwAAAAAAVwAAAAAAVwAAAAACVwAAAAADVwAAAAAAVwAAAAABVwAAAAAAVwAAAAABVwAAAAADVwAAAAAAVwAAAAABVwAAAAACVwAAAAAAVwAAAAACVwAAAAACVwAAAAADVwAAAAADVwAAAAADVwAAAAACVwAAAAAAVwAAAAACVwAAAAAAVwAAAAABVwAAAAACVwAAAAAAVwAAAAABVwAAAAABVwAAAAABVwAAAAADVwAAAAACdwAAAAAAVwAAAAACVwAAAAACVwAAAAADdwAAAAAAVwAAAAACVwAAAAABVwAAAAAAVwAAAAACVwAAAAABVwAAAAACVwAAAAAAVwAAAAAAVwAAAAACVwAAAAACVwAAAAAAdwAAAAAAVwAAAAADVwAAAAABVwAAAAACdwAAAAAAVwAAAAABVwAAAAADVwAAAAAAVwAAAAABVwAAAAABVwAAAAACVwAAAAADVwAAAAACVwAAAAACVwAAAAABVwAAAAACdwAAAAAAVwAAAAADVwAAAAACVwAAAAACdwAAAAAAVwAAAAAAVwAAAAABVwAAAAACVwAAAAABVwAAAAADVwAAAAADVwAAAAACVwAAAAAAVwAAAAACVwAAAAAAVwAAAAABdwAAAAAAVwAAAAACVwAAAAABVwAAAAACVwAAAAACVwAAAAAAVwAAAAACVwAAAAAAVwAAAAAAVwAAAAACVwAAAAAAVwAAAAAAVwAAAAACVwAAAAABVwAAAAACVwAAAAAAdwAAAAAAVwAAAAADVwAAAAAAVwAAAAACVwAAAAACVwAAAAADVwAAAAABVwAAAAACVwAAAAACVwAAAAABVwAAAAAAVwAAAAAAVwAAAAABVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAdwAAAAAA
+ tiles: dgAAAAAAdwAAAAAAGwAAAAABGwAAAAABGwAAAAABGwAAAAADGwAAAAABdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAABdwAAAAAAVwAAAAAAVwAAAAABVwAAAAABdwAAAAAAVwAAAAADVwAAAAAAVwAAAAADVwAAAAAAVwAAAAABVwAAAAAAVwAAAAACVwAAAAACVwAAAAADVwAAAAACVwAAAAABVwAAAAAAVwAAAAACVwAAAAADVwAAAAABVwAAAAAAVwAAAAADVwAAAAAAVwAAAAAAVwAAAAACVwAAAAAAVwAAAAACVwAAAAAAVwAAAAACVwAAAAADZgAAAAAAZgAAAAAAdwAAAAAAVwAAAAABVwAAAAADVwAAAAADdwAAAAAAVwAAAAACVwAAAAAAVwAAAAABVwAAAAADVwAAAAAAVwAAAAABVwAAAAABVwAAAAADVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAACVwAAAAABdwAAAAAAdwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAACVwAAAAADdwAAAAAAVwAAAAACVwAAAAADVwAAAAACVwAAAAAAVwAAAAADVwAAAAADVwAAAAADVwAAAAACVwAAAAACVwAAAAABVwAAAAABVwAAAAABVwAAAAABVwAAAAACVwAAAAADVwAAAAACVwAAAAAAVwAAAAADVwAAAAADVwAAAAABVwAAAAAAVwAAAAACVwAAAAADVwAAAAADVwAAAAACVwAAAAABVwAAAAACVwAAAAAAVwAAAAABVwAAAAABVwAAAAABdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAABdwAAAAAAVwAAAAABVwAAAAACVwAAAAACVwAAAAACVwAAAAABVwAAAAAAVwAAAAABVwAAAAACVwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAVwAAAAAAVwAAAAABVwAAAAAAdwAAAAAAVwAAAAADVwAAAAAAVwAAAAACVwAAAAADVwAAAAABVwAAAAADVwAAAAADVwAAAAAAVwAAAAAAVwAAAAADVwAAAAACdwAAAAAAVwAAAAABVwAAAAACVwAAAAADdwAAAAAAVwAAAAADVwAAAAADVwAAAAAAVwAAAAABVwAAAAAAVwAAAAADVwAAAAADVwAAAAADVwAAAAAAVwAAAAAAVwAAAAADdwAAAAAAVwAAAAAAVwAAAAABVwAAAAADVwAAAAADVwAAAAAAVwAAAAAAVwAAAAACVwAAAAABVwAAAAABVwAAAAACVwAAAAADVwAAAAADVwAAAAABVwAAAAADVwAAAAABdwAAAAAAVwAAAAADVwAAAAABVwAAAAADVwAAAAADVwAAAAADVwAAAAAAVwAAAAACVwAAAAADVwAAAAAAVwAAAAADVwAAAAADVwAAAAACVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACdwAAAAAA
version: 6
-1,-2:
ind: -1,-2
- tiles: GwAAAAADdwAAAAAAVwAAAAADVwAAAAADVwAAAAADVwAAAAAAVwAAAAAAVwAAAAADVwAAAAADVwAAAAACVwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABdwAAAAAAdwAAAAAAGwAAAAADdwAAAAAAVwAAAAACVwAAAAABVwAAAAACVwAAAAADVwAAAAACVwAAAAABVwAAAAAAVwAAAAACVwAAAAACdwAAAAAAVwAAAAABVwAAAAACVwAAAAACVwAAAAAAGwAAAAADGwAAAAADVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAACVwAAAAABVwAAAAABVwAAAAAAVwAAAAACGwAAAAADdwAAAAAAVwAAAAACVwAAAAADVwAAAAABVwAAAAACVwAAAAABVwAAAAADVwAAAAACVwAAAAAAVwAAAAACdwAAAAAAVwAAAAADVwAAAAADVwAAAAADVwAAAAACdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAABVwAAAAABVwAAAAACVwAAAAABVwAAAAABVwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAVwAAAAABVwAAAAACVwAAAAADVwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAACVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAVwAAAAADVwAAAAADVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAACagAAAAADagAAAAADagAAAAACagAAAAADdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAABVwAAAAACdwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAdwAAAAAAcwAAAAAAcwAAAAAAagAAAAABcwAAAAADcwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAACVwAAAAABdwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAdwAAAAAAagAAAAABagAAAAABagAAAAACagAAAAABagAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADVwAAAAACVwAAAAACdwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAGwAAAAABGwAAAAACGwAAAAAAGwAAAAADGwAAAAAAGwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAABVwAAAAACVwAAAAACKgAAAAAAKgAAAAAAKgAAAAAAdwAAAAAAGwAAAAADGwAAAAABGwAAAAADGwAAAAABGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADVwAAAAACVwAAAAAAVwAAAAABKgAAAAAAKgAAAAAAKgAAAAAAdwAAAAAAGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAADVwAAAAACVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABGwAAAAADGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAagAAAAACagAAAAAAagAAAAADagAAAAAAagAAAAADGwAAAAADGwAAAAACGwAAAAADGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAA
+ tiles: GwAAAAACdwAAAAAAVwAAAAAAVwAAAAABVwAAAAACVwAAAAACVwAAAAADVwAAAAAAVwAAAAADVwAAAAAAVwAAAAABdwAAAAAAdwAAAAAAVwAAAAADdwAAAAAAdwAAAAAAGwAAAAACdwAAAAAAVwAAAAACVwAAAAADVwAAAAABVwAAAAACVwAAAAACVwAAAAACVwAAAAABVwAAAAADVwAAAAADdwAAAAAAVwAAAAAAVwAAAAADVwAAAAAAVwAAAAABGwAAAAACGwAAAAACVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAACVwAAAAABVwAAAAACVwAAAAACVwAAAAACGwAAAAADdwAAAAAAVwAAAAADVwAAAAAAVwAAAAADVwAAAAADVwAAAAAAVwAAAAADVwAAAAACVwAAAAACVwAAAAABdwAAAAAAVwAAAAAAVwAAAAADVwAAAAAAVwAAAAABdwAAAAAAdwAAAAAAVwAAAAABVwAAAAADVwAAAAADVwAAAAAAVwAAAAAAVwAAAAADVwAAAAABVwAAAAAAVwAAAAABdwAAAAAAVwAAAAADVwAAAAACVwAAAAADVwAAAAADZgAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADVwAAAAACVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAACVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAVwAAAAABVwAAAAAAVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAACagAAAAAAagAAAAADagAAAAAAagAAAAADdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAADVwAAAAAAdwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAdwAAAAAAcwAAAAABcwAAAAABagAAAAADcwAAAAAAcwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAAAVwAAAAACdwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAdwAAAAAAagAAAAADagAAAAAAagAAAAABagAAAAAAagAAAAACdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAABVwAAAAABdwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAGwAAAAADGwAAAAAAGwAAAAABGwAAAAADGwAAAAAAGwAAAAABZwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAADVwAAAAABVwAAAAACKgAAAAAAKgAAAAAAKgAAAAAAdwAAAAAAGwAAAAADGwAAAAADGwAAAAADGwAAAAADGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAADVwAAAAADVwAAAAACKgAAAAAAKgAAAAAAKgAAAAAAdwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAACVwAAAAAAVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACGwAAAAACGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAagAAAAAAagAAAAACagAAAAADagAAAAADagAAAAAAGwAAAAADGwAAAAAAGwAAAAABGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAA
version: 6
-2,-2:
ind: -2,-2
- tiles: dwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAABdAAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAACdwAAAAAAdAAAAAACdAAAAAABdAAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAACagAAAAABdwAAAAAAagAAAAADagAAAAAAagAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAagAAAAAAagAAAAADdwAAAAAAagAAAAABagAAAAACagAAAAACagAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAABagAAAAACagAAAAACdwAAAAAAagAAAAAAagAAAAACdwAAAAAAagAAAAADagAAAAAAagAAAAAAagAAAAABdwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAagAAAAADcwAAAAABagAAAAACdwAAAAAAagAAAAACdwAAAAAAdwAAAAAAagAAAAACagAAAAACagAAAAABagAAAAADdwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAdwAAAAAAagAAAAABagAAAAAAagAAAAAAdwAAAAAAagAAAAADagAAAAADagAAAAACagAAAAADagAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAAAcwAAAAACagAAAAACKgAAAAAAagAAAAACagAAAAABagAAAAADagAAAAADagAAAAACdwAAAAAAagAAAAABagAAAAACagAAAAADagAAAAABagAAAAAAdwAAAAAAagAAAAABagAAAAACagAAAAACdwAAAAAAKgAAAAAAdwAAAAAAagAAAAADagAAAAACagAAAAAAdwAAAAAAagAAAAADagAAAAADagAAAAACagAAAAACagAAAAADagAAAAACagAAAAABcwAAAAAAagAAAAADdwAAAAAATgAAAAAAdwAAAAAAdwAAAAAAagAAAAACdwAAAAAAdwAAAAAAagAAAAACagAAAAADagAAAAAAagAAAAACagAAAAAAagAAAAAAagAAAAACcwAAAAAAagAAAAACdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAagAAAAACagAAAAABdwAAAAAAagAAAAAAagAAAAAAagAAAAACagAAAAACagAAAAACdwAAAAAAagAAAAACagAAAAAAagAAAAADdwAAAAAA
+ tiles: dwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAAAdAAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAABdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAACdwAAAAAAdAAAAAABdAAAAAAAdAAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAABagAAAAADdwAAAAAAagAAAAACagAAAAAAagAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAagAAAAAAagAAAAACdwAAAAAAagAAAAADagAAAAACagAAAAAAagAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAABagAAAAADagAAAAADdwAAAAAAagAAAAADagAAAAACdwAAAAAAagAAAAACagAAAAADagAAAAAAagAAAAACdwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAagAAAAADcwAAAAADagAAAAAAdwAAAAAAagAAAAAAdwAAAAAAdwAAAAAAagAAAAACagAAAAAAagAAAAADagAAAAACdwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAdwAAAAAAagAAAAAAagAAAAAAagAAAAACdwAAAAAAagAAAAABagAAAAADagAAAAAAagAAAAACagAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAADcwAAAAADagAAAAAAKgAAAAAAagAAAAAAagAAAAABagAAAAACagAAAAACagAAAAAAdwAAAAAAagAAAAABagAAAAADagAAAAADagAAAAADagAAAAACdwAAAAAAagAAAAADagAAAAABagAAAAAAdwAAAAAAKgAAAAAAdwAAAAAAagAAAAAAagAAAAABagAAAAABdwAAAAAAagAAAAADagAAAAADagAAAAABagAAAAAAagAAAAAAagAAAAACagAAAAACcwAAAAADagAAAAACdwAAAAAATgAAAAAAdwAAAAAAdwAAAAAAagAAAAAAdwAAAAAAdwAAAAAAagAAAAAAagAAAAACagAAAAABagAAAAADagAAAAACagAAAAACagAAAAAAcwAAAAADagAAAAACdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAagAAAAADagAAAAAAdwAAAAAAagAAAAACagAAAAABagAAAAAAagAAAAABagAAAAADdwAAAAAAagAAAAADagAAAAACagAAAAADdwAAAAAA
version: 6
-3,-2:
ind: -3,-2
- tiles: dgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAGwAAAAACGwAAAAABGwAAAAACGwAAAAADGwAAAAACGwAAAAABGwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADGwAAAAADGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAAAagAAAAADdwAAAAAAGwAAAAADGwAAAAAAGwAAAAADGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAAAagAAAAADdwAAAAAAdwAAAAAAGwAAAAABGwAAAAACGwAAAAACdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAAAagAAAAACdwAAAAAAdwAAAAAAGwAAAAACGwAAAAACGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAAAdwAAAAAAdwAAAAAAGwAAAAABKwAAAAAAGwAAAAADdwAAAAAAdAAAAAABdwAAAAAAVQAAAAACdwAAAAAAdAAAAAACdwAAAAAAdwAAAAAAdwAAAAAAagAAAAACagAAAAADagAAAAACdwAAAAAAGwAAAAACGwAAAAADGwAAAAAAdwAAAAAAVQAAAAACdwAAAAAAVQAAAAAEVQAAAAAKdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAAAagAAAAADagAAAAAAdwAAAAAAGwAAAAADKwAAAAAAGwAAAAACdwAAAAAAdAAAAAABVQAAAAAAVQAAAAAIVQAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAKgAAAAAAKgAAAAAATgAAAAAAdwAAAAAAGwAAAAACGwAAAAABGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAATgAAAAAAKgAAAAAAKgAAAAAAdwAAAAAAGwAAAAAAKwAAAAADGwAAAAADZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAA
+ tiles: dgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAGwAAAAADGwAAAAABGwAAAAADGwAAAAABGwAAAAABGwAAAAAAGwAAAAABdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACGwAAAAACGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAADagAAAAABdwAAAAAAGwAAAAAAGwAAAAAAGwAAAAADGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAADagAAAAACdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAABGwAAAAABdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAAAagAAAAADdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAABGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAADdwAAAAAAdwAAAAAAGwAAAAADKwAAAAADGwAAAAADdwAAAAAAdAAAAAAAdwAAAAAAVQAAAAAAdwAAAAAAdAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAADagAAAAABagAAAAACdwAAAAAAGwAAAAABGwAAAAADGwAAAAABdwAAAAAAVQAAAAAAdwAAAAAAVQAAAAAIVQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAAAagAAAAADagAAAAACdwAAAAAAGwAAAAADKwAAAAAAGwAAAAADdwAAAAAAdAAAAAADVQAAAAAAVQAAAAAAVQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAKgAAAAAAKgAAAAAATgAAAAAAdwAAAAAAGwAAAAACGwAAAAACGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAATgAAAAAAKgAAAAAAKgAAAAAAdwAAAAAAGwAAAAADKwAAAAAAGwAAAAABZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAA
version: 6
0,-2:
ind: 0,-2
- tiles: dwAAAAAAVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAVwAAAAACVwAAAAABVwAAAAACVwAAAAABdwAAAAAAdwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAAAVwAAAAACVwAAAAAAVwAAAAABVwAAAAADVwAAAAADVwAAAAADdwAAAAAAVwAAAAAAVwAAAAADVwAAAAAAVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADVwAAAAAAVwAAAAADVwAAAAAAdwAAAAAAVwAAAAADVwAAAAACVwAAAAAAdwAAAAAAVwAAAAAAVwAAAAABVwAAAAAAVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADVwAAAAAAVwAAAAACVwAAAAAAdwAAAAAAVwAAAAACVwAAAAACVwAAAAADdwAAAAAAVwAAAAACVwAAAAACVwAAAAABVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAACVwAAAAADdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAALQAAAAAALQAAAAAALQAAAAAACwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAABdwAAAAAAVwAAAAAAVwAAAAACVwAAAAACVwAAAAAAVwAAAAACZgAAAAAAdwAAAAAALQAAAAAALQAAAAAALQAAAAAACwAAAAAAdwAAAAAAVwAAAAACVwAAAAABVwAAAAABVwAAAAAAVwAAAAAAVwAAAAABVwAAAAAAVwAAAAAAVwAAAAAAZgAAAAAAdwAAAAAALQAAAAAALQAAAAAALQAAAAAACwAAAAAAdwAAAAAAVwAAAAADVwAAAAACVwAAAAADVwAAAAABVwAAAAADVwAAAAACVwAAAAACVwAAAAADVwAAAAAAZgAAAAAAdwAAAAAALQAAAAAALQAAAAAALQAAAAAACwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACdwAAAAAAdwAAAAAAVwAAAAADVwAAAAACVwAAAAAAVwAAAAACVwAAAAACZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAABGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADVwAAAAAAVwAAAAADVwAAAAABVwAAAAABVwAAAAAAVwAAAAACVwAAAAADVwAAAAADVwAAAAADVwAAAAAAVwAAAAABVwAAAAACVwAAAAACdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAACVwAAAAABVwAAAAAAVwAAAAADVwAAAAAAVwAAAAACVwAAAAACVwAAAAADVwAAAAABVwAAAAAAVwAAAAABVwAAAAABGwAAAAACdwAAAAAAVwAAAAABVwAAAAADVwAAAAACVwAAAAACVwAAAAADVwAAAAADVwAAAAAAVwAAAAADVwAAAAAAVwAAAAABVwAAAAABVwAAAAADVwAAAAACVwAAAAACGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAJAAAAAABdwAAAAAAdwAAAAAAVwAAAAADVwAAAAABVwAAAAAAGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdwAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdwAAAAAAVwAAAAABVwAAAAADVwAAAAABGwAAAAACdwAAAAAA
+ tiles: dwAAAAAAVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAVwAAAAABVwAAAAAAVwAAAAADVwAAAAACdwAAAAAAdwAAAAAAVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAABVwAAAAAAVwAAAAABVwAAAAABVwAAAAACVwAAAAACVwAAAAADdwAAAAAAVwAAAAAAVwAAAAABVwAAAAADVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADVwAAAAADVwAAAAABVwAAAAADdwAAAAAAVwAAAAABVwAAAAADVwAAAAADdwAAAAAAVwAAAAACVwAAAAABVwAAAAAAVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAACVwAAAAAAVwAAAAABdwAAAAAAVwAAAAABVwAAAAABVwAAAAABdwAAAAAAVwAAAAADVwAAAAACVwAAAAAAVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAVwAAAAACVwAAAAABVwAAAAACdwAAAAAAVwAAAAACVwAAAAADVwAAAAABVwAAAAAAVwAAAAACZgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAVwAAAAAAVwAAAAACVwAAAAADVwAAAAACVwAAAAAAVwAAAAAAVwAAAAABVwAAAAAAVwAAAAADZgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAVwAAAAABVwAAAAADVwAAAAACVwAAAAACVwAAAAADVwAAAAADVwAAAAADVwAAAAACVwAAAAACZgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAVwAAAAABdwAAAAAAdwAAAAAAVwAAAAADVwAAAAAAVwAAAAAAVwAAAAADVwAAAAABZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABGwAAAAADGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAACVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAADVwAAAAADVwAAAAABVwAAAAAAVwAAAAABVwAAAAABVwAAAAACVwAAAAABVwAAAAADdwAAAAAAdwAAAAAAVwAAAAADVwAAAAACVwAAAAABVwAAAAADVwAAAAADVwAAAAABVwAAAAACVwAAAAACVwAAAAACVwAAAAABVwAAAAAAVwAAAAADVwAAAAABVwAAAAADGwAAAAADdwAAAAAAVwAAAAAAVwAAAAACVwAAAAACVwAAAAABVwAAAAABVwAAAAADVwAAAAAAVwAAAAADVwAAAAACVwAAAAAAVwAAAAABVwAAAAADVwAAAAAAVwAAAAADGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAJAAAAAAAdwAAAAAAdwAAAAAAVwAAAAADVwAAAAAAVwAAAAABGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdwAAAAAAdAAAAAADdAAAAAAAdAAAAAADdwAAAAAAVwAAAAACVwAAAAABVwAAAAADGwAAAAABdwAAAAAA
version: 6
1,-2:
ind: 1,-2
- tiles: dwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAASwAAAAAAGwAAAAADGwAAAAAASwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAGwAAAAAAGwAAAAACGwAAAAAAGwAAAAACGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAAGwAAAAABGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAAGwAAAAADGwAAAAABdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: dwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADGwAAAAADdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAASwAAAAAAGwAAAAAAGwAAAAADSwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAGwAAAAACGwAAAAAAGwAAAAACGwAAAAACGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAAGwAAAAAAGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAAGwAAAAACGwAAAAABdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
2,-1:
ind: 2,-1
- tiles: dwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAADVwAAAAAAVwAAAAACdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAABVwAAAAADVwAAAAABVwAAAAADdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAABVwAAAAADVwAAAAAAVwAAAAACdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAVwAAAAACVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAADVwAAAAADVwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAADVwAAAAADVwAAAAACVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAADVwAAAAADVwAAAAABVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAADVwAAAAAAVwAAAAACVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAADVwAAAAADVwAAAAACVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAABVwAAAAACVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: dwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAADVwAAAAAAVwAAAAACVwAAAAACdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAABVwAAAAABVwAAAAADdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAADVwAAAAAAVwAAAAAAVwAAAAADdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAADVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAADVwAAAAACVwAAAAADVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAABVwAAAAABVwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAABVwAAAAAAVwAAAAACVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAADVwAAAAABVwAAAAACVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAADVwAAAAADVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAACVwAAAAACVwAAAAAAVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAABVwAAAAADVwAAAAABVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
0,-3:
ind: 0,-3
- tiles: dwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAABGwAAAAABGwAAAAADGwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAACGwAAAAACGwAAAAACGwAAAAACdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAABGwAAAAADGwAAAAADGwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAVwAAAAADVwAAAAABdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAVwAAAAADVwAAAAAAVwAAAAABVwAAAAADdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAVwAAAAADVwAAAAAAVwAAAAACVwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACVwAAAAADVwAAAAACVwAAAAADdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAVwAAAAADVwAAAAACVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAdgAAAAAAVwAAAAACVwAAAAADVwAAAAACdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAVwAAAAABVwAAAAABVwAAAAAAVwAAAAABdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACVwAAAAAAVwAAAAACVwAAAAAAVwAAAAABZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADVwAAAAACVwAAAAABVwAAAAADdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAA
+ tiles: dwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAVwAAAAABVwAAAAADVwAAAAABVwAAAAADdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAVwAAAAACVwAAAAACVwAAAAABVwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAVwAAAAABVwAAAAAAVwAAAAADVwAAAAACdwAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACVwAAAAABVwAAAAABVwAAAAABdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAVwAAAAADVwAAAAAAVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAdgAAAAAAVwAAAAACVwAAAAADVwAAAAACdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAVwAAAAACVwAAAAACVwAAAAAAVwAAAAACdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAACVwAAAAABVwAAAAADVwAAAAACZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAABVwAAAAABVwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAA
version: 6
1,-3:
ind: 1,-3
@@ -232,23 +233,23 @@ entities:
version: 6
-1,-3:
ind: -1,-3
- tiles: dwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABGwAAAAABGwAAAAADGwAAAAACGwAAAAADGwAAAAABGwAAAAADGwAAAAABGwAAAAAAGwAAAAABGwAAAAACGwAAAAAAGwAAAAAAdwAAAAAAVwAAAAAAdwAAAAAAVwAAAAABVwAAAAADVwAAAAACVwAAAAACVwAAAAABVwAAAAACVwAAAAADVwAAAAACVwAAAAACVwAAAAAAVwAAAAABVwAAAAACVwAAAAACdwAAAAAAVwAAAAACdwAAAAAAVwAAAAABVwAAAAABVwAAAAADVwAAAAAAVwAAAAAAVwAAAAADVwAAAAABVwAAAAACVwAAAAADVwAAAAAAVwAAAAADVwAAAAABVwAAAAABdwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAADVwAAAAACVwAAAAAAVwAAAAABVwAAAAAAVwAAAAAAVwAAAAACVwAAAAADVwAAAAACVwAAAAACVwAAAAAAVwAAAAADVwAAAAADVwAAAAAAVwAAAAADVwAAAAADVwAAAAABVwAAAAACVwAAAAAAVwAAAAABVwAAAAABSgAAAAACSgAAAAABSgAAAAAASgAAAAAASgAAAAAAVwAAAAACVwAAAAADVwAAAAACVwAAAAADVwAAAAADVwAAAAACVwAAAAABVwAAAAAAVwAAAAACVwAAAAACVwAAAAADVwAAAAADVwAAAAACVwAAAAADVwAAAAADVwAAAAADVwAAAAACVwAAAAABVwAAAAADVwAAAAAAVwAAAAABVwAAAAACdwAAAAAAVwAAAAABVwAAAAADVwAAAAAAVwAAAAADVwAAAAACVwAAAAAAVwAAAAACVwAAAAADVwAAAAAAVwAAAAACVwAAAAADVwAAAAACVwAAAAABVwAAAAACdwAAAAAAdwAAAAAAGwAAAAADGwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADGwAAAAADGwAAAAABdwAAAAAAGwAAAAADdwAAAAAAdwAAAAAAGwAAAAACdwAAAAAAdwAAAAAAGwAAAAADGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAADdwAAAAAAdwAAAAAAVwAAAAABdwAAAAAAdwAAAAAAGwAAAAACdwAAAAAAGwAAAAADGwAAAAADGwAAAAAAdwAAAAAAGwAAAAADGwAAAAADGwAAAAADGwAAAAABGwAAAAABdwAAAAAAVwAAAAADVwAAAAACVwAAAAAAdwAAAAAAGwAAAAACdwAAAAAAGwAAAAACGwAAAAADGwAAAAABdwAAAAAAGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAdwAAAAAAVwAAAAABSQAAAAABVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADGwAAAAACGwAAAAADGwAAAAABGwAAAAAAGwAAAAABGwAAAAADGwAAAAAAGwAAAAABdwAAAAAAVwAAAAACSQAAAAADVwAAAAACVwAAAAADGwAAAAADdwAAAAAAGwAAAAABGwAAAAACGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAAAVwAAAAAAdwAAAAAA
+ tiles: dwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACGwAAAAADGwAAAAAAGwAAAAACGwAAAAAAGwAAAAABGwAAAAABGwAAAAADGwAAAAAAGwAAAAACGwAAAAAAGwAAAAABGwAAAAABdwAAAAAAVwAAAAABdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAACVwAAAAADVwAAAAACVwAAAAADVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAADVwAAAAABVwAAAAADdwAAAAAAVwAAAAAAdwAAAAAAVwAAAAADVwAAAAADVwAAAAABVwAAAAABVwAAAAAAVwAAAAAAVwAAAAACVwAAAAAAVwAAAAADVwAAAAACVwAAAAACVwAAAAABVwAAAAADdwAAAAAAVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAADVwAAAAADVwAAAAAAVwAAAAABVwAAAAABVwAAAAADVwAAAAADVwAAAAAAVwAAAAAAVwAAAAACVwAAAAADVwAAAAADVwAAAAAAVwAAAAAAVwAAAAACVwAAAAACVwAAAAABVwAAAAACVwAAAAADVwAAAAABVwAAAAADSgAAAAACSgAAAAACSgAAAAAASgAAAAACSgAAAAACVwAAAAAAVwAAAAABVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAACVwAAAAADVwAAAAACVwAAAAADVwAAAAAAVwAAAAACVwAAAAAAVwAAAAABVwAAAAADVwAAAAACVwAAAAACVwAAAAADVwAAAAABVwAAAAABVwAAAAABVwAAAAADVwAAAAAAdwAAAAAAVwAAAAAAVwAAAAACVwAAAAAAVwAAAAACVwAAAAADVwAAAAAAVwAAAAABVwAAAAACVwAAAAABVwAAAAADVwAAAAADVwAAAAACVwAAAAACVwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABGwAAAAADGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABGwAAAAACGwAAAAACdwAAAAAAGwAAAAADdwAAAAAAdwAAAAAAGwAAAAADdwAAAAAAdwAAAAAAGwAAAAABGwAAAAADGwAAAAABGwAAAAACGwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADdwAAAAAAdwAAAAAAGwAAAAACdwAAAAAAGwAAAAADGwAAAAABGwAAAAABdwAAAAAAGwAAAAACGwAAAAAAGwAAAAADGwAAAAADGwAAAAAAdwAAAAAAVwAAAAABVwAAAAACVwAAAAABdwAAAAAAGwAAAAAAdwAAAAAAGwAAAAABGwAAAAACGwAAAAAAdwAAAAAAGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACdwAAAAAAVwAAAAADSQAAAAADVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABGwAAAAACGwAAAAABGwAAAAABGwAAAAACGwAAAAABGwAAAAACGwAAAAAAGwAAAAAAdwAAAAAAVwAAAAACSQAAAAADVwAAAAACVwAAAAADGwAAAAABdwAAAAAAGwAAAAACGwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAAAVwAAAAABdwAAAAAA
version: 6
-2,-3:
ind: -2,-3
- tiles: dwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADdwAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAGwAAAAABGwAAAAACGwAAAAADdwAAAAAAdwAAAAAAVwAAAAAAdwAAAAAAVwAAAAADdwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAGwAAAAAAGwAAAAAAGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACVwAAAAABVwAAAAAAVwAAAAABVwAAAAABdwAAAAAAVwAAAAABVwAAAAABVwAAAAACVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAGwAAAAADVwAAAAACVwAAAAABVwAAAAAAVwAAAAACdwAAAAAAVwAAAAADVwAAAAAAVwAAAAADVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAGwAAAAACVwAAAAACVwAAAAACVwAAAAADVwAAAAABVwAAAAABVwAAAAACVwAAAAAAVwAAAAADVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZwAAAAAAVwAAAAACVwAAAAACVwAAAAAAVwAAAAADVwAAAAAAVwAAAAACVwAAAAAAVwAAAAACVwAAAAACVwAAAAADdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAVwAAAAADVwAAAAADVwAAAAACVwAAAAADVwAAAAABdwAAAAAAVwAAAAADVwAAAAAAVwAAAAADVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAGwAAAAAAGwAAAAABGwAAAAAAGwAAAAABGwAAAAABdwAAAAAAVwAAAAACVwAAAAACVwAAAAADVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADVwAAAAADVwAAAAADVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAXgAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAGwAAAAADGwAAAAABGwAAAAADGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADGwAAAAABGwAAAAADGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAADdwAAAAAAGwAAAAABGwAAAAABGwAAAAABGwAAAAABGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAABdAAAAAADdwAAAAAAdAAAAAAAdAAAAAAAdwAAAAAAdAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAADdAAAAAAAdAAAAAACdwAAAAAAdAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAAA
+ tiles: dwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACdwAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAGwAAAAADGwAAAAACGwAAAAACdwAAAAAAdwAAAAAAVwAAAAABdwAAAAAAVwAAAAABdwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAGwAAAAABGwAAAAABGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADdwAAAAAAdwAAAAAAVwAAAAABVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAdwAAAAAAVwAAAAAAVwAAAAABVwAAAAAAVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAGwAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAdwAAAAAAVwAAAAACVwAAAAAAVwAAAAACVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAGwAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAVwAAAAADVwAAAAACVwAAAAAAVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAVwAAAAACVwAAAAACVwAAAAADVwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAdwAAAAAAVwAAAAABVwAAAAACVwAAAAABVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAGwAAAAAAGwAAAAAAGwAAAAACGwAAAAADGwAAAAACdwAAAAAAVwAAAAABVwAAAAACVwAAAAAAVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAADVwAAAAAAVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAXgAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAGwAAAAACGwAAAAABGwAAAAADGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABGwAAAAAAGwAAAAACGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAACdwAAAAAAGwAAAAACGwAAAAADGwAAAAABGwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAADdAAAAAABdwAAAAAAdAAAAAABdAAAAAADdwAAAAAAdAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAABdAAAAAAAdAAAAAADdwAAAAAAdAAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABGwAAAAAC
version: 6
-2,-4:
ind: -2,-4
- tiles: VwAAAAADVwAAAAADVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdgAAAAAAVwAAAAACVwAAAAACVwAAAAAAdwAAAAAAdwAAAAAATQAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdgAAAAAAGwAAAAADVwAAAAADVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAVwAAAAADVwAAAAADdwAAAAAAVwAAAAAAVwAAAAADVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAVwAAAAAAVwAAAAADVwAAAAABVwAAAAADVwAAAAAAVwAAAAACVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAVwAAAAACVwAAAAAAVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAGwAAAAABGwAAAAACGwAAAAAB
+ tiles: VwAAAAADVwAAAAACVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdgAAAAAAVwAAAAACVwAAAAACVwAAAAABdwAAAAAAdwAAAAAATQAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdgAAAAAAGwAAAAACVwAAAAADVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAVwAAAAABVwAAAAADdwAAAAAAVwAAAAACVwAAAAACVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAVwAAAAAAVwAAAAACVwAAAAABVwAAAAACVwAAAAABVwAAAAAAVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAVwAAAAAAVwAAAAACVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAGwAAAAACGwAAAAAAGwAAAAAB
version: 6
-1,-4:
ind: -1,-4
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAA
version: 6
0,-4:
ind: 0,-4
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAABGwAAAAABdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAABGwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAACGwAAAAADdwAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAABGwAAAAADdwAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADGwAAAAADdwAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADGwAAAAACdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAABGwAAAAACdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAABGwAAAAACdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAABGwAAAAACdwAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAABGwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAABGwAAAAACdwAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAACGwAAAAACdwAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAACGwAAAAACdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-2,-5:
ind: -2,-5
@@ -268,7 +269,7 @@ entities:
version: 6
2,0:
ind: 2,0
- tiles: dwAAAAAAdAAAAAACdAAAAAADdAAAAAABdAAAAAACdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAdwAAAAAAdAAAAAABdAAAAAABdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdAAAAAACdwAAAAAAdAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAGwAAAAADGwAAAAABdwAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAADagAAAAAAagAAAAACdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAGwAAAAACGwAAAAAAagAAAAABagAAAAADagAAAAACagAAAAABagAAAAACagAAAAABagAAAAACdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAGwAAAAADGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAADagAAAAACdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAACagAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAGwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAASQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAGwAAAAAAGwAAAAABdwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAASQAAAAACSQAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAGwAAAAADdwAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASQAAAAACSQAAAAAASQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAGwAAAAABDwAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAASQAAAAACSQAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAGwAAAAACDwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAA
+ tiles: dwAAAAAAdAAAAAADdAAAAAACdAAAAAAAdAAAAAADdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAdwAAAAAAdAAAAAADdAAAAAACdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAADdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdAAAAAACdwAAAAAAdAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAGwAAAAABGwAAAAABdwAAAAAAagAAAAADagAAAAAAagAAAAAAagAAAAAAagAAAAADagAAAAADdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAGwAAAAABGwAAAAADagAAAAADagAAAAADagAAAAAAagAAAAACagAAAAAAagAAAAACagAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAGwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAAAagAAAAABdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAADagAAAAABdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAGwAAAAADGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAASQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAGwAAAAABGwAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAASQAAAAADSQAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAGwAAAAACdwAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASQAAAAABSQAAAAACSQAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAGwAAAAABDwAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAASQAAAAADSQAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAGwAAAAAADwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAA
version: 6
2,-3:
ind: 2,-3
@@ -280,15 +281,15 @@ entities:
version: 6
2,-4:
ind: 2,-4
- tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAACQAAAAAHCQAAAAAGCQAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAECQAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAABCQAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAdwAAAAAABwAAAAAABwAAAAAAeAAAAAAABwAAAAAABwAAAAAAdwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: BwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAMCQAAAAAACQAAAAAACQAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAEBwAAAAAJAAAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAACQAAAAAACQAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAACQAAAAAFBwAAAAAABwAAAAAEBwAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAECQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAACQAAAAABCQAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAEBwAAAAAAdwAAAAAABwAAAAAABwAAAAAAeAAAAAAABwAAAAAABwAAAAAMdwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
1,3:
ind: 1,3
- tiles: dwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAAACdAAAAAADdwAAAAAAXgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAAADdAAAAAACdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAAACdAAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: dwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAAADdAAAAAACdwAAAAAAXgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAAAAdAAAAAADdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAAADdAAAAAACdwAAAAAAXgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAACGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
0,3:
ind: 0,3
- tiles: dgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdAAAAAAAdAAAAAAAdAAAAAADdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdAAAAAACdAAAAAACdAAAAAADdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdAAAAAACdAAAAAABdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAAAdAAAAAABdAAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdAAAAAAAdAAAAAACdAAAAAACdAAAAAADdAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdAAAAAACdAAAAAAAdAAAAAAAdAAAAAABdAAAAAACdgAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdAAAAAACdAAAAAAAdAAAAAAAdwAAAAAAdAAAAAADdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdAAAAAADdAAAAAABdwAAAAAAGwAAAAACGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdAAAAAABdAAAAAABdwAAAAAAGwAAAAAAGwAAAAAAdwAAAAAAGwAAAAABdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAA
+ tiles: dgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdAAAAAADdAAAAAABdAAAAAADdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdAAAAAADdAAAAAAAdAAAAAADdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdAAAAAAAdAAAAAABdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAAAdAAAAAABdAAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdAAAAAABdAAAAAACdAAAAAADdAAAAAADdAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdAAAAAABdAAAAAAAdAAAAAABdAAAAAACdAAAAAABdgAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdAAAAAABdAAAAAADdAAAAAACdwAAAAAAdAAAAAADdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdAAAAAADdAAAAAAAdwAAAAAAGwAAAAABGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdAAAAAACdAAAAAADdwAAAAAAGwAAAAADGwAAAAACdwAAAAAAGwAAAAACdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAA
version: 6
3,2:
ind: 3,2
@@ -300,7 +301,7 @@ entities:
version: 6
4,1:
ind: 4,1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAKwAAAAADdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAKwAAAAABdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAA
version: 6
4,2:
ind: 4,2
@@ -316,7 +317,7 @@ entities:
version: 6
-6,2:
ind: -6,2
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAKwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAdgAAAAAAdwAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAKwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAdgAAAAAAdwAAAAAA
version: 6
-6,3:
ind: -6,3
@@ -324,71 +325,71 @@ entities:
version: 6
-4,-2:
ind: -4,-2
- tiles: BwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAABwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAACwAAAAAABwAAAAAABwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAGwAAAAACGwAAAAAAdwAAAAAACwAAAAAABwAAAAAABwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAVwAAAAABVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABGwAAAAAAGwAAAAADVwAAAAABdwAAAAAAGwAAAAABGwAAAAABGwAAAAABdwAAAAAASgAAAAABSgAAAAABSgAAAAABSgAAAAABSgAAAAADSgAAAAACSgAAAAAAVwAAAAAAGwAAAAAAGwAAAAADVwAAAAAAdwAAAAAAGwAAAAACGwAAAAABGwAAAAABGwAAAAABGwAAAAADGwAAAAACGwAAAAAAGwAAAAABGwAAAAAAGwAAAAABGwAAAAADGwAAAAAAVwAAAAADVwAAAAABGwAAAAABGwAAAAABGwAAAAAAGwAAAAAAGwAAAAADdwAAAAAASgAAAAACSgAAAAABSgAAAAABSgAAAAADSgAAAAABSgAAAAABSgAAAAABGwAAAAABGwAAAAADGwAAAAACGwAAAAACdwAAAAAAGwAAAAACGwAAAAACGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAA
+ tiles: BwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAABwAAAAAHCwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAABwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAACdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAACwAAAAAABwAAAAAABwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAGwAAAAAAGwAAAAADdwAAAAAACwAAAAAABwAAAAAKBwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAVwAAAAABVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADGwAAAAAAGwAAAAABVwAAAAAAdwAAAAAAGwAAAAABGwAAAAAAGwAAAAABdwAAAAAASgAAAAABSgAAAAADSgAAAAAASgAAAAAASgAAAAAASgAAAAABSgAAAAACVwAAAAAAGwAAAAABGwAAAAABVwAAAAABdwAAAAAAGwAAAAADGwAAAAACGwAAAAAAGwAAAAAAGwAAAAACGwAAAAACGwAAAAADGwAAAAACGwAAAAACGwAAAAACGwAAAAACGwAAAAAAVwAAAAACVwAAAAADGwAAAAABGwAAAAAAGwAAAAABGwAAAAABGwAAAAAAdwAAAAAASgAAAAACSgAAAAADSgAAAAACSgAAAAABSgAAAAAASgAAAAABSgAAAAABGwAAAAABGwAAAAADGwAAAAAAGwAAAAADdwAAAAAAGwAAAAABGwAAAAAAGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAA
version: 6
-5,-2:
ind: -5,-2
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAABwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAABwAAAAAIBwAAAAAKBwAAAAALBwAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAABwAAAAAKBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAABwAAAAAABwAAAAAABwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdwAAAAAABwAAAAAABwAAAAAABwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAABwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-5,-3:
ind: -5,-3
- tiles: GwAAAAACGwAAAAACGwAAAAADGwAAAAACGwAAAAADdwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADGwAAAAABGwAAAAACGwAAAAACGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADGwAAAAADdwAAAAAAdwAAAAAAGwAAAAACGwAAAAAAGwAAAAADGwAAAAACGwAAAAABGwAAAAADGwAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAAGwAAAAAAGwAAAAABGwAAAAABGwAAAAADGwAAAAAAGwAAAAADGwAAAAACGwAAAAABGwAAAAACGwAAAAABGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACGwAAAAADdwAAAAAAGwAAAAAAGwAAAAACGwAAAAADGwAAAAADGwAAAAADGwAAAAAAGwAAAAACdwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAdwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAeAAAAAAABwAAAAAABwAAAAAABwAAAAAAdwAAAAAAGwAAAAACGwAAAAAAdwAAAAAAGwAAAAADGwAAAAADdwAAAAAAGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAeAAAAAAABwAAAAAABwAAAAAABwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAADGwAAAAAAGwAAAAADPAAAAAAAPAAAAAAAPAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAeAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAdwAAAAAAGwAAAAADGwAAAAAAGwAAAAABGwAAAAAAPAAAAAAAPAAAAAAAGwAAAAADdwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACGwAAAAAAPAAAAAAAPAAAAAAAGwAAAAAAdwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAdwAAAAAAGwAAAAADGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAdwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA
+ tiles: GwAAAAAAGwAAAAACGwAAAAACGwAAAAADGwAAAAADdwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEdwAAAAAAdwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABGwAAAAAAGwAAAAADGwAAAAAAGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADGwAAAAADdwAAAAAAdwAAAAAAGwAAAAABGwAAAAABGwAAAAAAGwAAAAABGwAAAAADGwAAAAAAGwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAGwAAAAABGwAAAAABGwAAAAAAGwAAAAACGwAAAAADGwAAAAAAGwAAAAACGwAAAAADGwAAAAADGwAAAAACGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAABdwAAAAAAGwAAAAADGwAAAAABGwAAAAACGwAAAAADGwAAAAABGwAAAAAAGwAAAAADdwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAdwAAAAAAGwAAAAABdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAAAGwAAAAACGwAAAAABGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAeAAAAAAABwAAAAADBwAAAAAABwAAAAALdwAAAAAAGwAAAAAAGwAAAAAAdwAAAAAAGwAAAAABGwAAAAADdwAAAAAAGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAeAAAAAAABwAAAAAABwAAAAAABwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADGwAAAAACGwAAAAAAGwAAAAADPAAAAAAAPAAAAAAAPAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAeAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABdwAAAAAAGwAAAAACGwAAAAABGwAAAAABGwAAAAACPAAAAAAAPAAAAAAAGwAAAAABdwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAADPAAAAAAAPAAAAAAAGwAAAAACdwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAdwAAAAAAGwAAAAADGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAABwAAAAALBwAAAAAFBwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAEBwAAAAAABwAAAAAEdwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAdwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAABwAAAAAABwAAAAAGBwAAAAAHBwAAAAAJBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAADBwAAAAAA
version: 6
-4,-3:
ind: -4,-3
- tiles: dwAAAAAAGwAAAAABGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAABwAAAAAACwAAAAAABwAAAAAAdwAAAAAAGwAAAAABGwAAAAAAGwAAAAABGwAAAAADGwAAAAAAGwAAAAACdwAAAAAAGwAAAAAAGwAAAAACGwAAAAACGwAAAAABdwAAAAAABwAAAAAACwAAAAAABwAAAAAAdwAAAAAAGwAAAAAAGwAAAAABGwAAAAADGwAAAAABGwAAAAADGwAAAAACGwAAAAAAGwAAAAAAGwAAAAADGwAAAAADGwAAAAACdwAAAAAABwAAAAAACwAAAAAABwAAAAAAdwAAAAAAGwAAAAAAGwAAAAABGwAAAAAAGwAAAAADGwAAAAACGwAAAAACdwAAAAAAdwAAAAAAGwAAAAACGwAAAAABdwAAAAAAdwAAAAAABwAAAAAACwAAAAAABwAAAAAAdwAAAAAAGwAAAAABGwAAAAADGwAAAAAAGwAAAAABGwAAAAACGwAAAAACGwAAAAABdwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAAdwAAAAAAGwAAAAABGwAAAAAAGwAAAAACGwAAAAACGwAAAAABGwAAAAABGwAAAAABdwAAAAAABwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAdwAAAAAAGwAAAAABGwAAAAAAGwAAAAACGwAAAAADGwAAAAAAGwAAAAABdwAAAAAAdwAAAAAABwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAdwAAAAAAGwAAAAAAGwAAAAABGwAAAAACGwAAAAACGwAAAAAAGwAAAAAAGwAAAAADdwAAAAAABwAAAAAACwAAAAAACwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABGwAAAAACGwAAAAABGwAAAAAAGwAAAAAAGwAAAAADGwAAAAACdwAAAAAABwAAAAAACwAAAAAACwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAGwAAAAAAGwAAAAABGwAAAAABGwAAAAAAGwAAAAACGwAAAAAAdwAAAAAAdwAAAAAABwAAAAAACwAAAAAACwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAGwAAAAACGwAAAAADGwAAAAABGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAABwAAAAAABwAAAAAACwAAAAAABwAAAAAABwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAGwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAABwAAAAAABwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAABwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAA
+ tiles: dwAAAAAAGwAAAAADGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAABwAAAAAACwAAAAAABwAAAAAAdwAAAAAAGwAAAAAAGwAAAAABGwAAAAACGwAAAAADGwAAAAADGwAAAAAAdwAAAAAAGwAAAAADGwAAAAADGwAAAAACGwAAAAADdwAAAAAABwAAAAAACwAAAAAABwAAAAAAdwAAAAAAGwAAAAADGwAAAAAAGwAAAAAAGwAAAAADGwAAAAAAGwAAAAAAGwAAAAACGwAAAAADGwAAAAACGwAAAAADGwAAAAACdwAAAAAABwAAAAAMCwAAAAAABwAAAAAKdwAAAAAAGwAAAAADGwAAAAACGwAAAAACGwAAAAABGwAAAAABGwAAAAADdwAAAAAAdwAAAAAAGwAAAAABGwAAAAACdwAAAAAAdwAAAAAABwAAAAAICwAAAAAABwAAAAAAdwAAAAAAGwAAAAADGwAAAAAAGwAAAAABGwAAAAAAGwAAAAADGwAAAAACGwAAAAAAdwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAAdwAAAAAAGwAAAAAAGwAAAAADGwAAAAAAGwAAAAACGwAAAAABGwAAAAADGwAAAAAAdwAAAAAABwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAAdwAAAAAAGwAAAAADGwAAAAAAGwAAAAADGwAAAAACGwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAABwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAdwAAAAAAGwAAAAAAGwAAAAADGwAAAAABGwAAAAAAGwAAAAABGwAAAAADGwAAAAACdwAAAAAABwAAAAAACwAAAAAACwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAACGwAAAAAAGwAAAAACGwAAAAABGwAAAAABGwAAAAAAdwAAAAAABwAAAAAACwAAAAAACwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAGwAAAAABGwAAAAACGwAAAAACGwAAAAADGwAAAAADGwAAAAABdwAAAAAAdwAAAAAABwAAAAAACwAAAAAACwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAGwAAAAABGwAAAAABGwAAAAACGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAABwAAAAAABwAAAAAACwAAAAAABwAAAAAABwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAGwAAAAABGwAAAAAAdwAAAAAAdwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJCwAAAAAABwAAAAAABwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAABwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAA
version: 6
-4,-4:
ind: -4,-4
- tiles: ZgAAAAAAZgAAAAAAdwAAAAAAGwAAAAACGwAAAAADGwAAAAABGwAAAAACGwAAAAAAGwAAAAAAGwAAAAACdwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAGwAAAAABGwAAAAACGwAAAAAAGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAIgAAAAABIgAAAAADIgAAAAADIgAAAAACIgAAAAAAIgAAAAADIgAAAAADIgAAAAADHgAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAABwAAAAAABwAAAAAABwAAAAAAZAAAAAABZAAAAAADZAAAAAACZAAAAAADZAAAAAADZAAAAAADZAAAAAADXwAAAAABIwAAAAABGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAABwAAAAAABwAAAAAABwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZQAAAAADIwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAASAAAAAABSAAAAAACSAAAAAABSAAAAAADSAAAAAAASAAAAAABdwAAAAAAZQAAAAACIwAAAAAAdwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdwAAAAAAKgAAAAAAdwAAAAAASAAAAAAASAAAAAABSAAAAAADSAAAAAAASAAAAAACSAAAAAACdwAAAAAAZQAAAAAAIwAAAAACPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAKgAAAAAAKgAAAAAAdwAAAAAASAAAAAADSAAAAAAASAAAAAACSAAAAAABSAAAAAADSAAAAAACdwAAAAAAZQAAAAAAIwAAAAADdwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdwAAAAAAKgAAAAAAdwAAAAAASAAAAAABSAAAAAABSAAAAAAASAAAAAACSAAAAAACSAAAAAABGwAAAAABZQAAAAACIwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAASAAAAAADSAAAAAABSAAAAAACSAAAAAABSAAAAAAASAAAAAADdwAAAAAAZQAAAAABIwAAAAACdwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdwAAAAAAKgAAAAAAdwAAAAAASAAAAAACSAAAAAADSAAAAAADSAAAAAABSAAAAAADSAAAAAABdwAAAAAAZQAAAAADIwAAAAACPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAKgAAAAAAKgAAAAAAdwAAAAAASAAAAAABSAAAAAAASAAAAAADSAAAAAACSAAAAAACSAAAAAAAdwAAAAAAZQAAAAACIwAAAAACdwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdwAAAAAAKgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZQAAAAACIwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZAAAAAACZAAAAAABZAAAAAAAZAAAAAAAZAAAAAACZAAAAAADZAAAAAACXwAAAAACIwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAACwAAAAAACwAAAAAACwAAAAAAdwAAAAAAIgAAAAACIgAAAAABIgAAAAACIgAAAAADIgAAAAACIgAAAAADIgAAAAADIgAAAAABHgAAAAABdwAAAAAAdwAAAAAAdwAAAAAABwAAAAAACwAAAAAABwAAAAAAdwAAAAAA
+ tiles: ZgAAAAAAZgAAAAAAdwAAAAAAGwAAAAAAGwAAAAAAGwAAAAABGwAAAAACGwAAAAACGwAAAAADGwAAAAABdwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAGwAAAAABGwAAAAABGwAAAAACGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAIgAAAAABIgAAAAADIgAAAAACIgAAAAAAIgAAAAACIgAAAAABIgAAAAABIgAAAAACHgAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAABwAAAAAABwAAAAAABwAAAAAAZAAAAAAAZAAAAAACZAAAAAACZAAAAAADZAAAAAACZAAAAAACZAAAAAABXwAAAAABIwAAAAACGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAABwAAAAAABwAAAAAABwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZQAAAAABIwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAADSAAAAAAASAAAAAACdwAAAAAAZQAAAAABIwAAAAACdwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdwAAAAAAKgAAAAAAdwAAAAAASAAAAAABJgAAAAAASAAAAAAASAAAAAABSAAAAAADSAAAAAACdwAAAAAAZQAAAAACIwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAKgAAAAAAKgAAAAAAdwAAAAAASAAAAAABJgAAAAAASAAAAAADSAAAAAACSAAAAAAASAAAAAAAdwAAAAAAZQAAAAABIwAAAAADdwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdwAAAAAAKgAAAAAAdwAAAAAAJgAAAAACJgAAAAAAJgAAAAAAJgAAAAADJgAAAAABJgAAAAACGwAAAAADZQAAAAADIwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAASAAAAAAASAAAAAABJgAAAAADSAAAAAADSAAAAAAASAAAAAADdwAAAAAAZQAAAAABIwAAAAACdwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdwAAAAAAKgAAAAAAdwAAAAAASAAAAAABSAAAAAACSAAAAAABSAAAAAABSAAAAAABSAAAAAAAdwAAAAAAZQAAAAAAIwAAAAACPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAKgAAAAAAKgAAAAAAdwAAAAAASAAAAAACSAAAAAABSAAAAAADSAAAAAACSAAAAAAASAAAAAAAdwAAAAAAZQAAAAADIwAAAAADdwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdwAAAAAAKgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZQAAAAADIwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZAAAAAABZAAAAAAAZAAAAAABZAAAAAACZAAAAAACZAAAAAAAZAAAAAADXwAAAAAAIwAAAAACdwAAAAAAdwAAAAAAdwAAAAAACwAAAAAACwAAAAAACwAAAAAAdwAAAAAAIgAAAAABIgAAAAAAIgAAAAADIgAAAAAAIgAAAAABIgAAAAACIgAAAAACIgAAAAACHgAAAAABdwAAAAAAdwAAAAAAdwAAAAAABwAAAAAACwAAAAAABwAAAAABdwAAAAAA
version: 6
-3,-3:
ind: -3,-3
- tiles: dgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACGwAAAAABGwAAAAADdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAGwAAAAABGwAAAAAAGwAAAAABdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAGwAAAAADGwAAAAAAGwAAAAABdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAGwAAAAADGwAAAAABGwAAAAADdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAGwAAAAADGwAAAAABGwAAAAAB
+ tiles: dgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACGwAAAAABGwAAAAACdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAGwAAAAAAGwAAAAAAGwAAAAADdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAGwAAAAACGwAAAAACGwAAAAABdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAGwAAAAACGwAAAAABGwAAAAADdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAGwAAAAAAGwAAAAACGwAAAAAB
version: 6
-5,-4:
ind: -5,-4
- tiles: dwAAAAAAGwAAAAACGwAAAAACGwAAAAACGwAAAAACGwAAAAABGwAAAAADGwAAAAAAGwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAGwAAAAACGwAAAAADGwAAAAAAGwAAAAAAGwAAAAADGwAAAAACGwAAAAADGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACGwAAAAABGwAAAAABGwAAAAACGwAAAAACGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACGwAAAAADGwAAAAACGwAAAAADGwAAAAACGwAAAAABGwAAAAAAGwAAAAACGwAAAAACGwAAAAACGwAAAAABdwAAAAAAHgAAAAABIgAAAAABIgAAAAABIgAAAAAAIgAAAAABGwAAAAAAdwAAAAAAGwAAAAAAGwAAAAAAGwAAAAACGwAAAAAAGwAAAAAAGwAAAAABdwAAAAAAGwAAAAACdwAAAAAAIwAAAAABXwAAAAADZAAAAAAAZAAAAAADZAAAAAACGwAAAAABdwAAAAAAGwAAAAADGwAAAAACGwAAAAABGwAAAAADGwAAAAABGwAAAAABdwAAAAAAGwAAAAACGwAAAAACIwAAAAAAZQAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAIwAAAAACZQAAAAAAdwAAAAAASAAAAAADSAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAdwAAAAAAdAAAAAABdAAAAAAAdAAAAAACdAAAAAABdwAAAAAAIwAAAAABZQAAAAAAdwAAAAAASAAAAAAASAAAAAACOgAAAAAAVwAAAAAAVwAAAAACVwAAAAACVwAAAAACdwAAAAAAdAAAAAACdAAAAAADdAAAAAADdAAAAAADdwAAAAAAIwAAAAABZQAAAAAAdwAAAAAASAAAAAADSAAAAAADdwAAAAAAVwAAAAAAVwAAAAABVwAAAAAAVwAAAAADGwAAAAAAdAAAAAACdAAAAAACdAAAAAABdAAAAAAAGwAAAAABIwAAAAAAZQAAAAABGwAAAAADSAAAAAABSAAAAAABOAAAAAAAVwAAAAACVwAAAAAAVwAAAAAAVwAAAAADdwAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAACdwAAAAAAIwAAAAABZQAAAAACdwAAAAAASAAAAAADSAAAAAAAOAAAAAAAVwAAAAADVwAAAAACVwAAAAABVwAAAAACdwAAAAAAdAAAAAAAdAAAAAAAdAAAAAABdAAAAAADdwAAAAAAIwAAAAABZQAAAAACdwAAAAAASAAAAAAASAAAAAADOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAdwAAAAAAdAAAAAACdAAAAAADdAAAAAADdAAAAAACdwAAAAAAIwAAAAACZQAAAAABdwAAAAAASAAAAAAASAAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAIwAAAAAAZQAAAAABdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABGwAAAAAAdwAAAAAAdwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAdwAAAAAAIwAAAAACXwAAAAABZAAAAAADZAAAAAAAZAAAAAADGwAAAAACGwAAAAACGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAdwAAAAAAHgAAAAAAIgAAAAACIgAAAAACIgAAAAACIgAAAAAD
+ tiles: dwAAAAAAGwAAAAACGwAAAAABGwAAAAACGwAAAAADGwAAAAABGwAAAAADGwAAAAABGwAAAAABdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAABGwAAAAADGwAAAAACGwAAAAABGwAAAAABGwAAAAADGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAABGwAAAAAAGwAAAAABGwAAAAACGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADGwAAAAADGwAAAAAAGwAAAAACGwAAAAADGwAAAAAAGwAAAAABGwAAAAABGwAAAAADGwAAAAACGwAAAAABdwAAAAAAHgAAAAACIgAAAAACIgAAAAACIgAAAAAAIgAAAAADGwAAAAAAdwAAAAAAGwAAAAAAGwAAAAACGwAAAAADGwAAAAAAGwAAAAACGwAAAAACdwAAAAAAGwAAAAABdwAAAAAAIwAAAAABXwAAAAADZAAAAAAAZAAAAAAAZAAAAAACGwAAAAABdwAAAAAAGwAAAAACGwAAAAADGwAAAAAAGwAAAAAAGwAAAAACGwAAAAADdwAAAAAAGwAAAAAAGwAAAAADIwAAAAAAZQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAIwAAAAACZQAAAAAAdwAAAAAASAAAAAADSAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAdwAAAAAAdAAAAAAAdAAAAAADdAAAAAABdAAAAAABdwAAAAAAIwAAAAAAZQAAAAADdwAAAAAASAAAAAADSAAAAAAAOgAAAAAAVwAAAAABVwAAAAACVwAAAAABVwAAAAACdwAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAABdwAAAAAAIwAAAAABZQAAAAADdwAAAAAASAAAAAACSAAAAAADdwAAAAAAVwAAAAACVwAAAAADVwAAAAACVwAAAAABGwAAAAAAdAAAAAAAdAAAAAAAdAAAAAABdAAAAAABGwAAAAADIwAAAAAAZQAAAAADGwAAAAAAJgAAAAADJgAAAAACOAAAAAAAVwAAAAACVwAAAAABVwAAAAABVwAAAAADdwAAAAAAdAAAAAAAdAAAAAACdAAAAAACdAAAAAAAdwAAAAAAIwAAAAAAZQAAAAADdwAAAAAASAAAAAAASAAAAAADOAAAAAAAVwAAAAAAVwAAAAAAVwAAAAADVwAAAAABdwAAAAAAdAAAAAADdAAAAAABdAAAAAACdAAAAAABdwAAAAAAIwAAAAAAZQAAAAABdwAAAAAASAAAAAAASAAAAAABOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAdwAAAAAAdAAAAAADdAAAAAADdAAAAAACdAAAAAACdwAAAAAAIwAAAAADZQAAAAABdwAAAAAASAAAAAABSAAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAIwAAAAAAZQAAAAABdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAACdwAAAAAAdwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAdwAAAAAAIwAAAAAAXwAAAAACZAAAAAADZAAAAAADZAAAAAABGwAAAAAAGwAAAAACGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAdwAAAAAAHgAAAAACIgAAAAABIgAAAAAAIgAAAAAAIgAAAAAB
version: 6
-6,-4:
ind: -6,-4
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACGwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADGwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAdwAAAAAAGwAAAAADGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAGwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACGwAAAAAC
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADGwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADGwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAdwAAAAAAGwAAAAABGwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAKdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAEBwAAAAAABwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAGwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAAD
version: 6
-6,-3:
ind: -6,-3
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAGwAAAAABGwAAAAACGwAAAAADGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAGwAAAAAAGwAAAAABGwAAAAADGwAAAAAAGwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAGwAAAAADGwAAAAABGwAAAAADGwAAAAACGwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAGwAAAAADGwAAAAAAGwAAAAACGwAAAAAAGwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAACGwAAAAACGwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAdwAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAdwAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAGwAAAAADGwAAAAADGwAAAAADGwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAGwAAAAADGwAAAAADGwAAAAAAGwAAAAADGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAGwAAAAABGwAAAAAAGwAAAAADGwAAAAACGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAGwAAAAACGwAAAAABGwAAAAABGwAAAAABGwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAACGwAAAAADGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAKdwAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAdwAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-5,-5:
ind: -5,-5
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAABwAAAAAABwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAABwAAAAAAdwAAAAAAGwAAAAACGwAAAAAAGwAAAAAAGwAAAAABGwAAAAABGwAAAAAAdwAAAAAABwAAAAAABwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABGwAAAAACGwAAAAAAGwAAAAABGwAAAAAAGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAABwAAAAAABwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAABwAAAAAAdwAAAAAAGwAAAAACGwAAAAACGwAAAAADGwAAAAACGwAAAAAAGwAAAAACdwAAAAAABwAAAAAABwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADGwAAAAABGwAAAAABGwAAAAACGwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAA
version: 6
-4,-5:
ind: -4,-5
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAdwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAACGwAAAAADGwAAAAAAGwAAAAABdwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABGwAAAAAAGwAAAAACGwAAAAAAGwAAAAACGwAAAAABGwAAAAAAdwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAGwAAAAAAGwAAAAADGwAAAAABGwAAAAADGwAAAAABGwAAAAADGwAAAAABdwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAGwAAAAABGwAAAAAAGwAAAAACGwAAAAACGwAAAAACGwAAAAABGwAAAAADdwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABdwAAAAAAdwAAAAAAGwAAAAADGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAdwAAAAAAGwAAAAAAGwAAAAADGwAAAAABGwAAAAACGwAAAAADGwAAAAADGwAAAAADdwAAAAAABwAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABGwAAAAADGwAAAAACGwAAAAAAGwAAAAABGwAAAAADGwAAAAACdwAAAAAABwAAAAAJBwAAAAAJBwAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAGwAAAAAAGwAAAAACGwAAAAACGwAAAAABGwAAAAACGwAAAAADGwAAAAABdwAAAAAABwAAAAAGBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAGwAAAAAAGwAAAAACGwAAAAABGwAAAAACGwAAAAAAGwAAAAABGwAAAAACdwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAA
version: 6
-6,-5:
ind: -6,-5
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAADBwAAAAAA
version: 6
-3,-4:
ind: -3,-4
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAGwAAAAADDwAAAAAAGwAAAAAADwAAAAAADwAAAAAAGwAAAAABDwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAGwAAAAACDwAAAAAAGwAAAAAADwAAAAAADwAAAAAAGwAAAAABDwAAAAAAGwAAAAACDwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAGwAAAAACDwAAAAAAGwAAAAABGwAAAAABGwAAAAAAGwAAAAABDwAAAAAAGwAAAAADdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAGwAAAAACGwAAAAABGwAAAAABDwAAAAAADwAAAAAAGwAAAAACGwAAAAABGwAAAAACGwAAAAABGwAAAAACdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAGwAAAAACDwAAAAAAGwAAAAABGwAAAAADGwAAAAADGwAAAAABDwAAAAAAGwAAAAACdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAGwAAAAABDwAAAAAAGwAAAAABDwAAAAAADwAAAAAAGwAAAAAADwAAAAAAGwAAAAABDwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAGwAAAAABDwAAAAAAGwAAAAADDwAAAAAADwAAAAAAGwAAAAABDwAAAAAAGwAAAAADdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdwAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAGwAAAAAADwAAAAAAGwAAAAACDwAAAAAADwAAAAAAGwAAAAACDwAAAAAAGwAAAAADdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAGwAAAAABDwAAAAAAGwAAAAADDwAAAAAADwAAAAAAGwAAAAADDwAAAAAAGwAAAAABDwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAGwAAAAADDwAAAAAAGwAAAAAAGwAAAAAAGwAAAAACGwAAAAAADwAAAAAAGwAAAAACdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAGwAAAAACGwAAAAAAGwAAAAAADwAAAAAADwAAAAAAGwAAAAAAGwAAAAABGwAAAAACGwAAAAACGwAAAAABdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAGwAAAAABDwAAAAAAGwAAAAADGwAAAAAAGwAAAAADGwAAAAACDwAAAAAAGwAAAAADdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAGwAAAAAADwAAAAAAGwAAAAAADwAAAAAADwAAAAAAGwAAAAAADwAAAAAAGwAAAAABDwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAGwAAAAABDwAAAAAAGwAAAAABDwAAAAAADwAAAAAAGwAAAAAADwAAAAAAGwAAAAADdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdwAAAAAA
version: 6
0,4:
ind: 0,4
- tiles: GwAAAAADGwAAAAABdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAGwAAAAABGwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAACGwAAAAABZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAACGwAAAAAAGwAAAAADGwAAAAACGwAAAAACdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAASwAAAAAAGwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: GwAAAAACGwAAAAADdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAACdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAACGwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAABGwAAAAACGwAAAAABGwAAAAADGwAAAAACdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAASwAAAAAAGwAAAAADdwAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-1,4:
ind: -1,4
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABGwAAAAACGwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADGwAAAAADGwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAGwAAAAACGwAAAAACGwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAGwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAGwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAGwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACGwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAGwAAAAAAGwAAAAABGwAAAAACGwAAAAABGwAAAAABGwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAGwAAAAAASwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACGwAAAAAAGwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABGwAAAAACGwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAGwAAAAADGwAAAAACGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAGwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAGwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAGwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAGwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAGwAAAAADGwAAAAAAGwAAAAAAGwAAAAABGwAAAAADGwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAGwAAAAACSwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAA
version: 6
-1,5:
ind: -1,5
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAGwAAAAADDwAAAAAADwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAGwAAAAAADwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAGwAAAAAADwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAASwAAAAAADwAAAAAAGwAAAAADGwAAAAAAGwAAAAADGwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAGwAAAAAADwAAAAAAdwAAAAAAdwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAGwAAAAACDwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAGwAAAAADDwAAAAAADwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAGwAAAAAASwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAGwAAAAADGwAAAAABGwAAAAAAGwAAAAADGwAAAAACGwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAGwAAAAABDwAAAAAADwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAGwAAAAABDwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAGwAAAAAADwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAASwAAAAAADwAAAAAAGwAAAAABGwAAAAACGwAAAAADGwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAGwAAAAACDwAAAAAAdwAAAAAAdwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAGwAAAAACDwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAGwAAAAADDwAAAAAADwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAGwAAAAADSwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAGwAAAAADGwAAAAABGwAAAAADGwAAAAACGwAAAAADGwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
0,5:
ind: 0,5
- tiles: dwAAAAAAdwAAAAAADwAAAAAADwAAAAAAGwAAAAABdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAADwAAAAAAGwAAAAABdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAADwAAAAAAGwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAACGwAAAAABGwAAAAADDwAAAAAASwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAdwAAAAAAdwAAAAAADwAAAAAAGwAAAAADdwAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAADwAAAAAAGwAAAAADdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAADwAAAAAADwAAAAAAGwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAASwAAAAAAGwAAAAACdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAABGwAAAAABdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABGwAAAAADdwAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: dwAAAAAAdwAAAAAADwAAAAAADwAAAAAAGwAAAAADdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAADwAAAAAAGwAAAAADdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAADwAAAAAAGwAAAAABdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAACGwAAAAACDwAAAAAASwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAdwAAAAAAdwAAAAAADwAAAAAAGwAAAAADdwAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAADwAAAAAAGwAAAAACdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAADwAAAAAADwAAAAAAGwAAAAABdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAASwAAAAAAGwAAAAADdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADGwAAAAACGwAAAAADGwAAAAADGwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACGwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
2,3:
ind: 2,3
@@ -396,7 +397,7 @@ entities:
version: 6
2,-5:
ind: 2,-5
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAACQAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAADBwAAAAAABwAAAAAABwAAAAAAeAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAACCQAAAAAGeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAHBwAAAAAABwAAAAAAeAAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAABwAAAAAACQAAAAAEBwAAAAADCQAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAHCQAAAAAFCQAAAAAFBwAAAAAACQAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAJBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAIBwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFBwAAAAAACQAAAAAABwAAAAADBwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAMBwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAAeAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAACBwAAAAACCQAAAAAEBwAAAAAABwAAAAAABwAAAAAAeAAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAACQAAAAAICQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAGBwAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAAAeAAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAEBwAAAAAGBwAAAAAAeAAAAAAABwAAAAAACQAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAACQAAAAALCQAAAAAIBwAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAA
version: 6
1,-5:
ind: 1,-5
@@ -404,7 +405,7 @@ entities:
version: 6
1,-4:
ind: 1,-4
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
3,0:
ind: 3,0
@@ -463,14 +464,14 @@ entities:
id: Arrows
decals:
2384: 5,-30
- 3075: -3,-55
- 3109: 20,-24
- 3110: 20,-26
- 3111: 20,-28
- 3112: 20,-30
- 3113: 20,-32
- 3114: 20,-34
- 3115: 20,-36
+ 3016: -3,-55
+ 3050: 20,-24
+ 3051: 20,-26
+ 3052: 20,-28
+ 3053: 20,-30
+ 3054: 20,-32
+ 3055: 20,-34
+ 3056: 20,-36
- node:
color: '#FFFFFFFF'
id: Arrows
@@ -478,33 +479,24 @@ entities:
1552: 23,25
1553: 21,25
2037: 31,21
- 3041: -53,-5
- 3042: -60,-5
- node:
angle: 1.5707963267948966 rad
color: '#FFFFFFFF'
id: Arrows
decals:
1386: 33,-3
- 3102: 21,-35
- 3103: 21,-33
- 3104: 21,-31
- 3105: 21,-29
- 3106: 21,-27
- 3107: 21,-25
- 3108: 21,-23
- - node:
- angle: 3.141592653589793 rad
- color: '#FFFFFFFF'
- id: Arrows
- decals:
- 3043: -53,7
- 3044: -60,7
+ 3043: 21,-35
+ 3044: 21,-33
+ 3045: 21,-31
+ 3046: 21,-29
+ 3047: 21,-27
+ 3048: 21,-25
+ 3049: 21,-23
- node:
color: '#FFFFFFFF'
id: ArrowsGreyscale
decals:
- 3127: -19,-67
+ 3068: -19,-67
- node:
color: '#FFFFFFFF'
id: Bot
@@ -607,15 +599,22 @@ entities:
2747: 41,12
2748: 41,13
2749: 41,14
- 2761: 7,35
- 2813: 32,39
- 2814: 24,33
- 3004: -34,-12
- 3009: -40,-10
- 3010: -40,-9
- 3099: -15,-49
- 3100: -15,-48
- 3101: -15,-47
+ 2811: 32,39
+ 2812: 24,33
+ 2967: -34,-12
+ 2972: -40,-10
+ 2973: -40,-9
+ 3040: -15,-49
+ 3041: -15,-48
+ 3042: -15,-47
+ 3075: 15,-22
+ 3087: 7,35
+ 3136: -4,-29
+ 3137: -8,-20
+ 3138: -33,10
+ 3139: -26,13
+ 3140: -14,5
+ 3141: 6,6
- node:
angle: 3.141592653589793 rad
color: '#FFFFFFFF'
@@ -626,22 +625,22 @@ entities:
color: '#52B4E996'
id: BotGreyscale
decals:
- 3071: -4,-52
- 3072: -5,-52
+ 3012: -4,-52
+ 3013: -5,-52
- node:
color: '#DE3A3A96'
id: BotGreyscale
decals:
- 3073: -11,-52
- 3074: -12,-52
+ 3014: -11,-52
+ 3015: -12,-52
- node:
color: '#FFFFFFFF'
id: BotGreyscale
decals:
2605: -22,-1
- 3123: -18,-69
- 3124: -18,-68
- 3125: -18,-67
+ 3064: -18,-69
+ 3065: -18,-68
+ 3066: -18,-67
- node:
color: '#FFFFFFFF'
id: BotLeft
@@ -660,9 +659,9 @@ entities:
2732: 33,20
2733: 33,19
2750: 40,14
- 3096: -15,-52
- 3097: -15,-51
- 3098: -15,-50
+ 3037: -15,-52
+ 3038: -15,-51
+ 3039: -15,-50
- node:
color: '#FFFFFFFF'
id: BotRight
@@ -677,8 +676,8 @@ entities:
color: '#FFFFFFFF'
id: BotRightGreyscale
decals:
- 2950: -24,-5
- 3126: -19,-68
+ 2913: -24,-5
+ 3067: -19,-68
- node:
color: '#FFFFFFFF'
id: Box
@@ -690,9 +689,9 @@ entities:
color: '#FFFFFFFF'
id: BoxGreyscale
decals:
- 3120: -19,-70
- 3121: -18,-70
- 3122: -17,-70
+ 3061: -19,-70
+ 3062: -18,-70
+ 3063: -17,-70
- node:
color: '#FFFFFFFF'
id: BrickTileDarkBox
@@ -836,7 +835,7 @@ entities:
color: '#52B4E996'
id: BrickTileSteelBox
decals:
- 3030: -12,-19
+ 2993: -12,-19
- node:
color: '#9FED5896'
id: BrickTileSteelBox
@@ -861,7 +860,7 @@ entities:
id: BrickTileSteelCornerNe
decals:
2625: -62,-24
- 2827: -25,11
+ 2825: -25,11
- node:
color: '#9FED5896'
id: BrickTileSteelCornerNw
@@ -879,7 +878,7 @@ entities:
id: BrickTileSteelCornerNw
decals:
2626: -63,-24
- 2826: -27,11
+ 2824: -27,11
- node:
color: '#9FED5896'
id: BrickTileSteelCornerSe
@@ -896,7 +895,7 @@ entities:
id: BrickTileSteelCornerSe
decals:
2627: -62,-25
- 2828: -25,7
+ 2826: -25,7
- node:
color: '#9FED5896'
id: BrickTileSteelCornerSw
@@ -914,7 +913,7 @@ entities:
id: BrickTileSteelCornerSw
decals:
2624: -63,-25
- 2825: -27,7
+ 2823: -27,7
- node:
color: '#9FED5896'
id: BrickTileSteelEndS
@@ -968,9 +967,9 @@ entities:
1881: -69,-57
1882: -69,-56
1884: -69,-54
- 2833: -25,8
- 2834: -25,9
- 2835: -25,10
+ 2831: -25,8
+ 2832: -25,9
+ 2833: -25,10
- node:
color: '#334E6DC8'
id: BrickTileSteelLineN
@@ -988,11 +987,11 @@ entities:
color: '#52B4E996'
id: BrickTileSteelLineN
decals:
- 3025: -8,-20
- 3026: -9,-20
- 3027: -10,-20
- 3028: -11,-20
- 3029: -12,-20
+ 2988: -8,-20
+ 2989: -9,-20
+ 2990: -10,-20
+ 2991: -11,-20
+ 2992: -12,-20
- node:
color: '#9FED5896'
id: BrickTileSteelLineN
@@ -1004,7 +1003,7 @@ entities:
decals:
1832: 26,32
1867: -62,-61
- 2836: -26,11
+ 2834: -26,11
- node:
color: '#9FED5896'
id: BrickTileSteelLineS
@@ -1017,7 +1016,7 @@ entities:
decals:
1830: -27,24
1911: 8,-18
- 2832: -26,7
+ 2830: -26,7
- node:
color: '#9FED5896'
id: BrickTileSteelLineW
@@ -1037,20 +1036,20 @@ entities:
decals:
1831: 25,26
1874: -56,-53
- 2829: -27,8
- 2830: -27,9
- 2831: -27,10
+ 2827: -27,8
+ 2828: -27,9
+ 2829: -27,10
- node:
color: '#334E6DC8'
id: BrickTileWhiteCornerNe
decals:
- 2815: -19,40
+ 2813: -19,40
- node:
color: '#52B4E996'
id: BrickTileWhiteCornerNe
decals:
- 3013: -11,-22
- 3014: -8,-22
+ 2976: -11,-22
+ 2977: -8,-22
- node:
color: '#DE3A3A96'
id: BrickTileWhiteCornerNe
@@ -1067,13 +1066,13 @@ entities:
color: '#334E6DC8'
id: BrickTileWhiteCornerNw
decals:
- 2816: -21,40
+ 2814: -21,40
- node:
color: '#52B4E996'
id: BrickTileWhiteCornerNw
decals:
- 3011: -12,-22
- 3012: -9,-22
+ 2974: -12,-22
+ 2975: -9,-22
- node:
color: '#DE3A3A96'
id: BrickTileWhiteCornerNw
@@ -1092,7 +1091,7 @@ entities:
color: '#52B4E996'
id: BrickTileWhiteCornerSe
decals:
- 3016: -8,-24
+ 2979: -8,-24
- node:
color: '#DE3A3A96'
id: BrickTileWhiteCornerSe
@@ -1112,7 +1111,7 @@ entities:
id: BrickTileWhiteCornerSw
decals:
2652: -37,0
- 3020: -12,-24
+ 2983: -12,-24
- node:
color: '#DE3A3A96'
id: BrickTileWhiteCornerSw
@@ -1137,12 +1136,12 @@ entities:
color: '#52B4E996'
id: BrickTileWhiteInnerNe
decals:
- 3024: -11,-23
+ 2987: -11,-23
- node:
color: '#D381C996'
id: BrickTileWhiteInnerNe
decals:
- 2847: 12,20
+ 2845: 12,20
- node:
color: '#EFB34196'
id: BrickTileWhiteInnerNe
@@ -1158,7 +1157,7 @@ entities:
color: '#52B4E996'
id: BrickTileWhiteInnerNw
decals:
- 3023: -9,-23
+ 2986: -9,-23
- node:
color: '#79150096'
id: BrickTileWhiteInnerNw
@@ -1168,7 +1167,7 @@ entities:
color: '#D381C996'
id: BrickTileWhiteInnerNw
decals:
- 2846: 14,20
+ 2844: 14,20
- node:
color: '#EFB34196'
id: BrickTileWhiteInnerNw
@@ -1185,7 +1184,7 @@ entities:
color: '#D381C996'
id: BrickTileWhiteInnerSe
decals:
- 2845: 12,23
+ 2843: 12,23
- node:
color: '#EFB34196'
id: BrickTileWhiteInnerSe
@@ -1208,7 +1207,7 @@ entities:
color: '#D381C996'
id: BrickTileWhiteInnerSw
decals:
- 2844: 14,23
+ 2842: 14,23
- node:
color: '#EFB34196'
id: BrickTileWhiteInnerSw
@@ -1230,55 +1229,55 @@ entities:
1714: -15,33
1715: -15,35
1793: -12,41
- 2856: -40,-61
+ 2854: -40,-61
- node:
color: '#52B4E996'
id: BrickTileWhiteLineE
decals:
- 2859: -40,-63
- 3015: -8,-23
+ 2857: -40,-63
+ 2978: -8,-23
- node:
color: '#9FED5896'
id: BrickTileWhiteLineE
decals:
- 2868: -37,-60
- 2869: -37,-59
- 2870: -37,-58
+ 2866: -37,-60
+ 2867: -37,-59
+ 2868: -37,-58
- node:
color: '#A4610696'
id: BrickTileWhiteLineE
decals:
- 2855: -40,-59
+ 2853: -40,-59
- node:
color: '#D381C996'
id: BrickTileWhiteLineE
decals:
- 2839: 12,21
- 2840: 12,22
- 2860: -40,-64
+ 2837: 12,21
+ 2838: 12,22
+ 2858: -40,-64
- node:
color: '#D4D4D428'
id: BrickTileWhiteLineE
decals:
- 2880: -42,-60
- 2881: -42,-59
- 2882: -42,-58
+ 2878: -42,-60
+ 2879: -42,-59
+ 2880: -42,-58
- node:
color: '#D4D4D496'
id: BrickTileWhiteLineE
decals:
- 2877: -42,-64
- 2878: -42,-63
- 2879: -42,-62
+ 2875: -42,-64
+ 2876: -42,-63
+ 2877: -42,-62
- node:
color: '#DE3A3A96'
id: BrickTileWhiteLineE
decals:
2373: -2,-35
2374: -2,-34
- 2865: -37,-64
- 2866: -37,-63
- 2867: -37,-62
+ 2863: -37,-64
+ 2864: -37,-63
+ 2865: -37,-62
- node:
color: '#EFB34196'
id: BrickTileWhiteLineE
@@ -1301,7 +1300,7 @@ entities:
2487: -6,-31
2488: -6,-30
2489: -6,-29
- 2852: -40,-58
+ 2850: -40,-58
- node:
color: '#334E6DC8'
id: BrickTileWhiteLineN
@@ -1322,14 +1321,14 @@ entities:
color: '#52B4E996'
id: BrickTileWhiteLineN
decals:
- 3022: -10,-23
+ 2985: -10,-23
- node:
color: '#D381C996'
id: BrickTileWhiteLineN
decals:
2735: 17,16
2736: 18,16
- 2837: 13,20
+ 2835: 13,20
- node:
color: '#DE3A3A96'
id: BrickTileWhiteLineN
@@ -1383,9 +1382,9 @@ entities:
decals:
2650: -34,0
2651: -36,0
- 3017: -9,-24
- 3018: -10,-24
- 3019: -11,-24
+ 2980: -9,-24
+ 2981: -10,-24
+ 2982: -11,-24
- node:
color: '#79150096'
id: BrickTileWhiteLineS
@@ -1398,7 +1397,7 @@ entities:
id: BrickTileWhiteLineS
decals:
2734: 17,14
- 2838: 13,23
+ 2836: 13,23
- node:
color: '#DE3A3A96'
id: BrickTileWhiteLineS
@@ -1449,13 +1448,13 @@ entities:
1719: -5,33
1720: -5,35
1794: -8,41
- 2857: -37,-61
+ 2855: -37,-61
- node:
color: '#52B4E996'
id: BrickTileWhiteLineW
decals:
- 2858: -37,-63
- 3021: -12,-23
+ 2856: -37,-63
+ 2984: -12,-23
- node:
color: '#79150096'
id: BrickTileWhiteLineW
@@ -1469,44 +1468,44 @@ entities:
color: '#9FED5896'
id: BrickTileWhiteLineW
decals:
- 2871: -35,-60
- 2872: -35,-59
- 2873: -35,-58
+ 2869: -35,-60
+ 2870: -35,-59
+ 2871: -35,-58
- node:
color: '#A4610696'
id: BrickTileWhiteLineW
decals:
- 2854: -37,-59
+ 2852: -37,-59
- node:
color: '#D381C996'
id: BrickTileWhiteLineW
decals:
- 2842: 14,21
- 2843: 14,22
- 2861: -37,-64
+ 2840: 14,21
+ 2841: 14,22
+ 2859: -37,-64
- node:
color: '#D4D4D428'
id: BrickTileWhiteLineW
decals:
- 2883: -40,-60
- 2884: -40,-59
- 2885: -40,-58
+ 2881: -40,-60
+ 2882: -40,-59
+ 2883: -40,-58
- node:
color: '#D4D4D496'
id: BrickTileWhiteLineW
decals:
- 2874: -40,-64
- 2875: -40,-63
- 2876: -40,-62
+ 2872: -40,-64
+ 2873: -40,-63
+ 2874: -40,-62
- node:
color: '#DE3A3A96'
id: BrickTileWhiteLineW
decals:
2371: -4,-35
2372: -4,-34
- 2862: -35,-64
- 2863: -35,-63
- 2864: -35,-62
+ 2860: -35,-64
+ 2861: -35,-63
+ 2862: -35,-62
- node:
color: '#EFB34196'
id: BrickTileWhiteLineW
@@ -1529,13 +1528,13 @@ entities:
2442: -20,-40
2497: -14,-31
2498: -14,-29
- 2853: -37,-58
+ 2851: -37,-58
- node:
color: '#FFFFFFFF'
id: BrickTileWhiteLineW
decals:
- 2992: -35,-15
- 2993: -35,-14
+ 2955: -35,-15
+ 2956: -35,-14
- node:
color: '#FFFFFFFF'
id: Busha1
@@ -1601,7 +1600,7 @@ entities:
decals:
373: -39.11635,29.006437
1216: -65.91299,-37.046043
- 2990: -33.95476,-14.128889
+ 2953: -33.95476,-14.128889
- node:
color: '#FFFFFFFF'
id: Bushd3
@@ -1618,7 +1617,7 @@ entities:
decals:
1202: -65.58819,-29.014542
1261: -28.454376,3.9517245
- 2989: -34.282887,-16.06639
+ 2952: -34.282887,-16.06639
- node:
color: '#FFFFFFFF'
id: Bushe2
@@ -1633,7 +1632,7 @@ entities:
1205: -65.26006,-35.280167
1206: -59.36944,-31.748917
1265: -24.141876,3.9673495
- 2988: -33.95476,-16.050764
+ 2951: -33.95476,-16.050764
- node:
color: '#FFFFFFFF'
id: Bushe4
@@ -1657,16 +1656,6 @@ entities:
id: Bushf3
decals:
1201: -65.27569,-35.350544
- - node:
- color: '#FFFFFFFF'
- id: Bushg2
- decals:
- 748: 1.6603951,-25.388582
- - node:
- color: '#FFFFFFFF'
- id: Bushg4
- decals:
- 752: 0.55303955,-25.07197
- node:
color: '#FFFFFFFF'
id: Bushh2
@@ -1692,9 +1681,9 @@ entities:
decals:
379: -40.131973,32.52206
1229: 5.9999943,-7.451386
- 2985: -31.876637,-14.785139
- 2986: -31.907887,-15.472639
- 2987: -33.595387,-15.160139
+ 2948: -31.876637,-14.785139
+ 2949: -31.907887,-15.472639
+ 2950: -33.595387,-15.160139
- node:
color: '#FFFFFFFF'
id: Bushi3
@@ -1732,7 +1721,6 @@ entities:
decals:
366: -39.256973,30.272062
368: -39.9601,29.068937
- 747: 0.19164515,-23.341707
- node:
color: '#FFFFFFFF'
id: Bushk3
@@ -1761,11 +1749,6 @@ entities:
id: Bushm3
decals:
1020: -65.91838,-51.868042
- - node:
- color: '#FFFFFFFF'
- id: Bushm4
- decals:
- 751: 0.45727015,-23.544832
- node:
color: '#FFFFFFFF'
id: Bushn1
@@ -1816,12 +1799,12 @@ entities:
511: -12,-16
512: -12,-17
551: -11,-2
- 3053: -39,-12
- 3054: -38,-12
- 3055: -37,-12
- 3056: -37,-11
- 3057: -38,-11
- 3058: -39,-11
+ 2994: -39,-12
+ 2995: -38,-12
+ 2996: -37,-12
+ 2997: -37,-11
+ 2998: -38,-11
+ 2999: -39,-11
- node:
color: '#D4D4D496'
id: CheckerNESW
@@ -1958,18 +1941,16 @@ entities:
2470: -1,-42
2471: -1,-41
2472: -1,-40
- 2928: -49,-6
- 2929: -49,-5
- 2951: -21,-10
- 2952: -21,-9
- 2953: -27,-10
- 2954: -27,-9
- 2955: -20,-12
- 2956: -19,-12
- 2957: -18,-12
- 2958: -17,-11
- 2959: -17,-10
- 2960: -17,-9
+ 2914: -21,-10
+ 2915: -21,-9
+ 2916: -27,-10
+ 2917: -27,-9
+ 2918: -20,-12
+ 2919: -19,-12
+ 2920: -18,-12
+ 2921: -17,-11
+ 2922: -17,-10
+ 2923: -17,-9
- node:
color: '#FFFFFFFF'
id: DiagonalCheckerAOverlay
@@ -2272,13 +2253,11 @@ entities:
75: -55,17
76: -53,18
77: -54.752693,18.73386
- 746: 1.3791451,-24.388582
1010: -59.152756,-56.526844
- node:
color: '#FFFFFFFF'
id: Flowersbr2
decals:
- 745: -0.011479855,-25.497957
1005: -64.66838,-52.26122
1006: -65.559006,-53.82372
1007: -64.94963,-56.339344
@@ -2340,13 +2319,12 @@ entities:
1002: -62.69963,-52.51122
1258: -28.032501,3.9985995
1760: -9.9456415,40.993107
- 2980: -32.126637,-14.222639
+ 2943: -32.126637,-14.222639
- node:
color: '#FFFFFFFF'
id: Flowersy3
decals:
382: -39.4601,29.881437
- 749: 1.7228951,-23.216707
1004: -65.652756,-52.401844
1072: -7.856325,22.931343
- node:
@@ -2359,12 +2337,12 @@ entities:
1073: -10.293825,23.009468
1074: -11.18445,22.978218
1259: -28.938751,3.9985995
- 2979: -34.251637,-15.222639
+ 2942: -34.251637,-15.222639
- node:
color: '#334E6DC8'
id: FullTileOverlayGreyscale
decals:
- 2902: -30,-62
+ 2900: -30,-62
- node:
color: '#4A8F37B1'
id: FullTileOverlayGreyscale
@@ -2471,7 +2449,7 @@ entities:
1196: -67.18431,-28.324245
1252: -29.016876,3.9360995
1896: -53.955444,-43.088474
- 2996: -35,-16
+ 2959: -35,-16
- node:
color: '#FFFFFFFF'
id: Grassb3
@@ -2485,7 +2463,7 @@ entities:
1066: -8.387402,22.973469
1191: -70.92052,-43.057198
1898: -52.942307,-42.899807
- 2978: -33.782887,-15.988264
+ 2941: -33.782887,-15.988264
- node:
color: '#FFFFFFFF'
id: Grassb5
@@ -2494,7 +2472,7 @@ entities:
376: -40.0851,28.850187
1065: -12.856152,23.020344
1192: -73.10302,-35.91218
- 2991: -32.032887,-13.910139
+ 2954: -32.032887,-13.910139
- node:
color: '#FFFFFFFF'
id: Grassd1
@@ -2511,7 +2489,6 @@ entities:
362: -39.2726,29.881437
363: -39.694473,32.58456
364: -39.163223,31.818935
- 742: 0.66039515,-25.576082
994: -65.69963,-54.183094
995: -59.934006,-54.276844
996: -60.98088,-57.745594
@@ -2522,9 +2499,6 @@ entities:
decals:
83: -53.596443,17.79636
361: -39.7726,29.178312
- 741: 1.4416451,-26.060457
- 744: 0.83227015,-24.888582
- 750: 0.051020145,-22.997957
976: -65.01213,-58.04247
977: -62.29338,-52.69872
978: -61.684006,-53.433094
@@ -2533,7 +2507,7 @@ entities:
1060: -12.746777,23.114094
1061: -6.8249016,22.957844
1249: -24.048126,4.0298495
- 2977: -33.11101,-15.941389
+ 2940: -33.11101,-15.941389
- node:
color: '#FFFFFFFF'
id: Grassd3
@@ -2545,13 +2519,12 @@ entities:
985: -59.41838,-56.79247
1062: -9.168652,22.942219
1063: -10.309277,23.067219
- 2976: -33.782887,-14.628889
- 2984: -32.20476,-14.097639
+ 2939: -33.782887,-14.628889
+ 2947: -32.20476,-14.097639
- node:
color: '#FFFFFFFF'
id: Grasse1
decals:
- 739: 1,-23
986: -65.652756,-52.41747
987: -58.98088,-57.97997
988: -64.69963,-56.44872
@@ -2559,14 +2532,13 @@ entities:
1222: 6,-7
1223: 3,-5
1248: -27.532501,4.0298495
- 2975: -34.657887,-15.035139
- 2983: -33.282887,-14.144514
+ 2938: -34.657887,-15.035139
+ 2946: -33.282887,-14.144514
- node:
color: '#FFFFFFFF'
id: Grasse2
decals:
365: -39.881973,31.74081
- 740: 1.5353951,-23.607332
1058: -11.340527,23.020344
1059: -7.8092766,22.989094
1218: 6,-8
@@ -2575,14 +2547,13 @@ entities:
1251: -25.938751,4.0923495
1757: -9,41
1758: -10.480507,40.958054
- 2974: -33.845387,-15.582014
- 2981: -34.626637,-13.957014
- 2982: -32.01726,-15.972639
+ 2937: -33.845387,-15.582014
+ 2944: -34.626637,-13.957014
+ 2945: -32.01726,-15.972639
- node:
color: '#FFFFFFFF'
id: Grasse3
decals:
- 743: 0.019770145,-24.841707
990: -60.277756,-56.558094
991: -63.340256,-52.22997
992: -65.82463,-53.29247
@@ -2596,7 +2567,7 @@ entities:
1755: -11,41
1756: -10,41
1759: -9.464882,40.926804
- 2995: -35,-16
+ 2958: -35,-16
- node:
color: '#334E6DC8'
id: HalfTileOverlayGreyscale
@@ -2613,7 +2584,7 @@ entities:
1091: -1,66
1729: -3,27
1731: -17,27
- 2900: -31,-63
+ 2898: -31,-63
- node:
color: '#33666DC8'
id: HalfTileOverlayGreyscale
@@ -2650,11 +2621,11 @@ entities:
635: -26,-17
645: -22,-13
646: -23,-13
- 2961: -22,-9
- 2962: -23,-9
- 2963: -24,-9
- 2964: -26,-9
- 2965: -25,-9
+ 2924: -22,-9
+ 2925: -23,-9
+ 2926: -24,-9
+ 2927: -26,-9
+ 2928: -25,-9
- node:
color: '#79150096'
id: HalfTileOverlayGreyscale
@@ -2809,12 +2780,12 @@ entities:
807: -11,-39
2463: -12,-39
2464: -14,-39
- 2887: -31,-58
+ 2885: -31,-58
- node:
color: '#334E6DC8'
id: HalfTileOverlayGreyscale180
decals:
- 2901: -31,-64
+ 2899: -31,-64
- node:
color: '#33666DC8'
id: HalfTileOverlayGreyscale180
@@ -2903,9 +2874,9 @@ entities:
1161: -27,-25
1162: -28,-25
1163: -29,-25
- 3116: -20,9
- 3117: -21,9
- 3118: -22,9
+ 3057: -20,9
+ 3058: -21,9
+ 3059: -22,9
- node:
color: '#A4610696'
id: HalfTileOverlayGreyscale180
@@ -3048,9 +3019,9 @@ entities:
87: -42,17
88: -43,17
89: -44,17
- 2903: -28,-60
- 2904: -27,-60
- 2905: -26,-60
+ 2901: -28,-60
+ 2902: -27,-60
+ 2903: -26,-60
- node:
color: '#334E6DC8'
id: HalfTileOverlayGreyscale270
@@ -3172,7 +3143,7 @@ entities:
832: -10,-36
833: -10,-35
834: -10,-34
- 2886: -31,-60
+ 2884: -31,-60
- node:
color: '#334E6DC8'
id: HalfTileOverlayGreyscale90
@@ -3295,7 +3266,7 @@ entities:
470: -17,-3
471: -17,-2
472: -17,-1
- 2841: 14,21
+ 2839: 14,21
- node:
color: '#EDD75E93'
id: HalfTileOverlayGreyscale90
@@ -3318,8 +3289,8 @@ entities:
836: -6,-36
837: -6,-35
838: -6,-34
- 2888: -30,-60
- 2889: -30,-59
+ 2886: -30,-60
+ 2887: -30,-59
- node:
color: '#FFFFFFFF'
id: HatchSmall
@@ -3339,23 +3310,12 @@ entities:
1292: 16,-4
1387: 34,-7
2385: 3,-30
- 3005: -32,-11
+ 2968: -32,-11
- node:
color: '#FFFFFFFF'
id: LoadingArea
decals:
384: 4,28
- - node:
- angle: 1.5707963267948966 rad
- color: '#FFFFFFFF'
- id: LoadingArea
- decals:
- 3045: -55,7
- 3046: -51,7
- 3047: -58,7
- 3048: -58,-5
- 3049: -55,-5
- 3050: -51,-5
- node:
color: '#FFFFFFFF'
id: MiniTileDarkLineE
@@ -3411,22 +3371,16 @@ entities:
2726: 29,23
2727: 27,23
2728: 27,21
- - node:
- color: '#FFFFFFFF'
- id: North
- decals:
- 3051: -56,-5
- 3052: -56,7
- node:
color: '#52B4E996'
id: OffsetCheckerBOverlay
decals:
- 3128: -22,-23
- 3129: -22,-22
- 3130: -23,-22
- 3131: -23,-23
- 3132: -24,-23
- 3133: -24,-22
+ 3069: -22,-23
+ 3070: -22,-22
+ 3071: -23,-22
+ 3072: -23,-23
+ 3073: -24,-23
+ 3074: -24,-22
- node:
color: '#334E6DC8'
id: QuarterTileOverlayGreyscale
@@ -3577,33 +3531,46 @@ entities:
2353: -37,16
2354: -37,15
2355: -38,15
- 2752: 7,35
- 2753: 7,34
- 2762: 13,27
- 2763: 14,27
- 2764: 15,27
- 2765: 16,27
- 2766: 17,27
- 2767: 18,27
- 2768: 19,27
- 2769: 20,27
- 2770: 21,27
- 2771: 21,28
- 2772: 21,29
- 2773: 21,30
- 2774: 21,31
- 2785: 24,40
- 2786: 23,40
- 2787: 22,40
- 2788: 21,40
- 2789: 20,40
- 2790: 20,39
- 2791: 20,38
- 2792: 20,37
- 2793: 20,36
- 2794: 20,35
- 2795: 20,34
- 2796: 20,33
+ 2752: 7,34
+ 2760: 13,27
+ 2761: 14,27
+ 2762: 15,27
+ 2763: 16,27
+ 2764: 17,27
+ 2765: 18,27
+ 2766: 19,27
+ 2767: 20,27
+ 2768: 21,27
+ 2769: 21,28
+ 2770: 21,29
+ 2771: 21,30
+ 2772: 21,31
+ 2783: 24,40
+ 2784: 23,40
+ 2785: 22,40
+ 2786: 21,40
+ 2787: 20,40
+ 2788: 20,39
+ 2789: 20,38
+ 2790: 20,37
+ 2791: 20,36
+ 2792: 20,35
+ 2793: 20,34
+ 2794: 20,33
+ 3084: 7,35
+ 3085: 7,36
+ 3094: -58,9
+ 3095: -58,8
+ 3096: -59,8
+ 3097: -60,8
+ 3126: -46,-3
+ 3127: -46,-5
+ 3128: -46,-4
+ 3129: -46,-6
+ 3130: -46,-7
+ 3131: -46,-8
+ 3132: -46,-9
+ 3133: -47,-9
- node:
color: '#D4D4D496'
id: QuarterTileOverlayGreyscale
@@ -3649,6 +3616,13 @@ entities:
1271: 1,-28
1272: 0,-28
1273: -1,-28
+ - node:
+ color: '#334E6DC8'
+ id: QuarterTileOverlayGreyscale180
+ decals:
+ 3081: 11,38
+ 3082: 12,38
+ 3083: 12,39
- node:
color: '#52B4E996'
id: QuarterTileOverlayGreyscale180
@@ -3708,7 +3682,7 @@ entities:
color: '#9FED5896'
id: QuarterTileOverlayGreyscale180
decals:
- 3119: -23,9
+ 3060: -23,9
- node:
color: '#A4610696'
id: QuarterTileOverlayGreyscale180
@@ -3724,7 +3698,7 @@ entities:
932: 13,2
933: 13,3
934: 13,4
- 2824: 5,1
+ 2822: 5,1
- node:
color: '#D381C996'
id: QuarterTileOverlayGreyscale180
@@ -3794,7 +3768,6 @@ entities:
2168: -42,5
2169: -43,5
2170: -44,5
- 2171: -45,5
2172: -45,4
2173: -45,3
2174: -45,2
@@ -3818,32 +3791,21 @@ entities:
2647: -31,1
2648: -32,1
2649: -33,1
- 2797: 24,33
- 2798: 25,33
- 2799: 26,33
- 2800: 27,33
- 2801: 27,34
- 2802: 27,35
- 2803: 33,35
- 2804: 32,35
- 2805: 31,35
- 2806: 30,35
- 2807: 29,35
- - node:
- color: '#D4D4D496'
- id: QuarterTileOverlayGreyscale180
- decals:
- 2917: -50,-6
- 2918: -51,-6
- 2919: -52,-6
- 2920: -53,-6
- 2921: -55,-6
- 2922: -54,-6
- 2923: -56,-6
- 2924: -57,-6
- 2925: -58,-6
- 2926: -59,-6
- 2927: -60,-6
+ 2795: 24,33
+ 2796: 25,33
+ 2797: 26,33
+ 2798: 27,33
+ 2799: 27,34
+ 2800: 27,35
+ 2801: 33,35
+ 2802: 32,35
+ 2803: 31,35
+ 2804: 30,35
+ 2805: 29,35
+ 3108: -54,7
+ 3109: -55,7
+ 3110: -55,6
+ 3111: -56,6
- node:
color: '#DE3A3A96'
id: QuarterTileOverlayGreyscale180
@@ -3899,21 +3861,11 @@ entities:
2120: -2,25
2121: -1,25
2122: 0,25
- - node:
- color: '#52B4E93E'
- id: QuarterTileOverlayGreyscale270
- decals:
- 2906: -60,-6
- 2907: -59,-6
- 2908: -58,-6
- 2909: -57,-6
- 2910: -56,-6
- 2911: -55,-6
- 2912: -54,-6
- 2913: -53,-6
- 2914: -51,-6
- 2915: -52,-6
- 2916: -50,-6
+ 3076: 4,39
+ 3077: 4,38
+ 3078: 5,38
+ 3079: 6,38
+ 3080: 7,38
- node:
color: '#52B4E996'
id: QuarterTileOverlayGreyscale270
@@ -3934,12 +3886,12 @@ entities:
608: -20,-12
611: -20,-13
630: -20,-19
- 3062: -39,-10
- 3063: -38,-10
- 3064: -37,-10
- 3065: -36,-12
- 3066: -36,-11
- 3067: -36,-10
+ 3003: -39,-10
+ 3004: -38,-10
+ 3005: -37,-10
+ 3006: -36,-12
+ 3007: -36,-11
+ 3008: -36,-10
- node:
color: '#79150096'
id: QuarterTileOverlayGreyscale270
@@ -3957,10 +3909,10 @@ entities:
680: 3,0
699: 11,0
1314: 32,-12
- 2820: 8,1
- 2821: 9,1
- 2822: 10,1
- 2823: 11,1
+ 2818: 8,1
+ 2819: 9,1
+ 2820: 10,1
+ 2821: 11,1
- node:
color: '#D381C93B'
id: QuarterTileOverlayGreyscale270
@@ -4007,26 +3959,27 @@ entities:
2313: 10,-12
2314: 9,-12
2315: 8,-12
- 2930: -57,7
- 2931: -56,7
- 2932: -55,7
- 2933: -54,7
- 2934: -50,7
- 2935: -49,7
- 2936: -48,7
- 2937: -47,7
- 2938: -46,7
- 2939: -46,6
- 2940: -46,5
- 2941: -46,4
- 2942: -46,3
- 2943: -46,2
- 2944: -46,1
- 2945: -46,0
- 2946: -46,-1
- 2947: -46,-2
- 2948: -46,-3
- 2949: -46,-4
+ 2904: -46,4
+ 2905: -46,3
+ 2906: -46,2
+ 2907: -46,1
+ 2908: -46,0
+ 2909: -46,-1
+ 2910: -46,-2
+ 3099: -46,5
+ 3100: -47,5
+ 3101: -48,5
+ 3102: -49,5
+ 3103: -51,5
+ 3104: -50,5
+ 3105: -51,6
+ 3106: -51,7
+ 3107: -52,7
+ 3116: -57,6
+ 3117: -58,6
+ 3118: -58,7
+ 3119: -59,7
+ 3121: -60,7
- node:
color: '#D4D4D496'
id: QuarterTileOverlayGreyscale270
@@ -4109,7 +4062,7 @@ entities:
2500: -14,-35
2501: -14,-34
2502: -14,-33
- 2893: -31,-59
+ 2891: -31,-59
- node:
color: '#334E6DC8'
id: QuarterTileOverlayGreyscale90
@@ -4157,12 +4110,12 @@ entities:
596: -15,-9
597: -14,-9
653: -28,-12
- 3059: -37,-13
- 3060: -38,-13
- 3061: -39,-13
- 3068: -40,-13
- 3069: -40,-12
- 3070: -40,-11
+ 3000: -37,-13
+ 3001: -38,-13
+ 3002: -39,-13
+ 3009: -40,-13
+ 3010: -40,-12
+ 3011: -40,-11
- node:
color: '#9FED5896'
id: QuarterTileOverlayGreyscale90
@@ -4273,28 +4226,29 @@ entities:
2620: -45,8
2621: -46,8
2622: -47,8
- 2754: 11,35
- 2755: 11,34
- 2756: 11,33
- 2757: 11,32
- 2758: 11,31
- 2759: 11,30
- 2760: 11,29
- 2775: 24,27
- 2776: 23,27
- 2777: 23,28
- 2778: 23,29
- 2779: 23,30
- 2780: 23,31
- 2781: 27,40
- 2782: 27,38
- 2783: 27,39
- 2784: 26,40
- 2808: 33,38
- 2809: 32,38
- 2810: 31,38
- 2811: 30,38
- 2812: 29,38
+ 2753: 11,35
+ 2754: 11,34
+ 2755: 11,33
+ 2756: 11,32
+ 2757: 11,31
+ 2758: 11,30
+ 2759: 11,29
+ 2773: 24,27
+ 2774: 23,27
+ 2775: 23,28
+ 2776: 23,29
+ 2777: 23,30
+ 2778: 23,31
+ 2779: 27,40
+ 2780: 27,38
+ 2781: 27,39
+ 2782: 26,40
+ 2806: 33,38
+ 2807: 32,38
+ 2808: 31,38
+ 2809: 30,38
+ 2810: 29,38
+ 3086: 11,36
- node:
color: '#D4D4D496'
id: QuarterTileOverlayGreyscale90
@@ -4384,13 +4338,13 @@ entities:
color: '#334E6DC8'
id: StandClearGreyscale
decals:
- 2999: -41,-14
- 3000: -41,-11
+ 2962: -41,-14
+ 2963: -41,-11
- node:
color: '#334E6DC8'
id: ThreeQuarterTileOverlayGreyscale
decals:
- 2898: -32,-63
+ 2896: -32,-63
- node:
color: '#9FED5896'
id: ThreeQuarterTileOverlayGreyscale
@@ -4401,12 +4355,12 @@ entities:
color: '#EFB34196'
id: ThreeQuarterTileOverlayGreyscale
decals:
- 2890: -32,-58
+ 2888: -32,-58
- node:
color: '#334E6DC8'
id: ThreeQuarterTileOverlayGreyscale180
decals:
- 2896: -30,-64
+ 2894: -30,-64
- node:
color: '#D381C93B'
id: ThreeQuarterTileOverlayGreyscale180
@@ -4421,23 +4375,23 @@ entities:
color: '#EFB34196'
id: ThreeQuarterTileOverlayGreyscale180
decals:
- 2895: -30,-61
+ 2893: -30,-61
- node:
color: '#334E6DC8'
id: ThreeQuarterTileOverlayGreyscale270
decals:
- 2899: -32,-64
+ 2897: -32,-64
- node:
color: '#EFB34196'
id: ThreeQuarterTileOverlayGreyscale270
decals:
- 2892: -32,-59
- 2894: -31,-61
+ 2890: -32,-59
+ 2892: -31,-61
- node:
color: '#334E6DC8'
id: ThreeQuarterTileOverlayGreyscale90
decals:
- 2897: -30,-63
+ 2895: -30,-63
- node:
color: '#9FED5896'
id: ThreeQuarterTileOverlayGreyscale90
@@ -4448,7 +4402,7 @@ entities:
color: '#EFB34196'
id: ThreeQuarterTileOverlayGreyscale90
decals:
- 2891: -30,-58
+ 2889: -30,-58
- node:
color: '#FFFFFFFF'
id: VentSmall
@@ -4462,7 +4416,7 @@ entities:
color: '#FFFFFFFF'
id: WarnBox
decals:
- 2851: -19,-48
+ 2849: -19,-48
- node:
angle: -3.141592653589793 rad
color: '#FFFFFFFF'
@@ -4529,7 +4483,7 @@ entities:
id: WarnCornerSmallNE
decals:
2389: -10,-36
- 3094: -10,-52
+ 3035: -10,-52
- node:
color: '#FFFFFFFF'
id: WarnCornerSmallNW
@@ -4537,7 +4491,7 @@ entities:
1439: 21,-19
1998: -58,19
2388: -6,-36
- 3093: -6,-52
+ 3034: -6,-52
- node:
color: '#FFFFFFFF'
id: WarnCornerSmallSE
@@ -4545,7 +4499,7 @@ entities:
1441: 20,-19
2041: 5,22
2559: -10,-34
- 3092: -10,-50
+ 3033: -10,-50
- node:
color: '#FFFFFFFF'
id: WarnCornerSmallSW
@@ -4556,7 +4510,7 @@ entities:
1997: -58,17
2042: 3,22
2558: -6,-34
- 3095: -6,-50
+ 3036: -6,-50
- node:
angle: -3.141592653589793 rad
color: '#FFFFFFFF'
@@ -4574,7 +4528,7 @@ entities:
decals:
2364: -31,-11
2654: -35,-1
- 2994: -35,-11
+ 2957: -35,-11
- node:
color: '#D381C996'
id: WarnFullGreyscale
@@ -4609,12 +4563,12 @@ entities:
2387: -10,-35
2399: 2,-34
2607: -2,-1
- 3090: -10,-51
+ 3031: -10,-51
- node:
color: '#334E6DC8'
id: WarnLineGreyscaleE
decals:
- 2818: -19,39
+ 2816: -19,39
- node:
color: '#D381C996'
id: WarnLineGreyscaleE
@@ -4630,7 +4584,7 @@ entities:
color: '#334E6DC8'
id: WarnLineGreyscaleN
decals:
- 2819: -20,40
+ 2817: -20,40
- node:
color: '#D381C996'
id: WarnLineGreyscaleN
@@ -4648,11 +4602,11 @@ entities:
decals:
2455: -19,-39
2475: -13,-39
- 2966: -26,-9
- 2967: -25,-9
- 2968: -24,-9
- 2969: -23,-9
- 2970: -22,-9
+ 2929: -26,-9
+ 2930: -25,-9
+ 2931: -24,-9
+ 2932: -23,-9
+ 2933: -22,-9
- node:
color: '#52B4E996'
id: WarnLineGreyscaleS
@@ -4687,7 +4641,7 @@ entities:
color: '#334E6DC8'
id: WarnLineGreyscaleW
decals:
- 2817: -21,39
+ 2815: -21,39
- node:
color: '#52B4E996'
id: WarnLineGreyscaleW
@@ -4701,8 +4655,8 @@ entities:
2454: -20,-42
2637: -33,7
2638: -33,8
- 2997: -41,-11
- 2998: -41,-14
+ 2960: -41,-11
+ 2961: -41,-14
- node:
color: '#FFFFFFFF'
id: WarnLineN
@@ -4726,17 +4680,12 @@ entities:
2360: -20,43
2361: -19,43
2400: 1,-35
- 2848: -26,-58
- 2849: -27,-58
- 2850: -28,-58
- 3031: -52,7
- 3032: -53,7
- 3033: -54,7
- 3034: -59,7
- 3035: -60,7
- 3087: -7,-50
- 3088: -8,-50
- 3089: -9,-50
+ 2846: -26,-58
+ 2847: -27,-58
+ 2848: -28,-58
+ 3028: -7,-50
+ 3029: -8,-50
+ 3030: -9,-50
- node:
color: '#FFFFFFFF'
id: WarnLineS
@@ -4766,7 +4715,9 @@ entities:
2721: 14,-25
2722: 14,-24
2723: 14,-23
- 3091: -6,-51
+ 3032: -6,-51
+ 3134: -47,-10
+ 3135: -47,-9
- node:
color: '#FFFFFFFF'
id: WarnLineW
@@ -4797,25 +4748,20 @@ entities:
2391: -8,-36
2392: -9,-36
2394: 1,-33
- 3001: -32,-10
- 3002: -33,-10
- 3003: -34,-10
- 3036: -52,-5
- 3037: -53,-5
- 3038: -54,-5
- 3039: -59,-5
- 3040: -60,-5
- 3076: -6,-58
- 3077: -12,-58
- 3078: -5,-58
- 3079: -4,-58
- 3080: -13,-58
- 3081: -3,-58
- 3082: -10,-58
- 3083: -11,-58
- 3084: -9,-52
- 3085: -8,-52
- 3086: -7,-52
+ 2964: -32,-10
+ 2965: -33,-10
+ 2966: -34,-10
+ 3017: -6,-58
+ 3018: -12,-58
+ 3019: -5,-58
+ 3020: -4,-58
+ 3021: -13,-58
+ 3022: -3,-58
+ 3023: -10,-58
+ 3024: -11,-58
+ 3025: -9,-52
+ 3026: -8,-52
+ 3027: -7,-52
- node:
angle: -3.141592653589793 rad
color: '#FFFFFFFF'
@@ -5083,9 +5029,9 @@ entities:
1927: -21,35
1933: 25,14
1934: 25,15
- 2971: -31,-3
- 2972: -31,-2
- 2973: -31,-1
+ 2934: -31,-3
+ 2935: -31,-2
+ 2936: -31,-1
- node:
color: '#334E6DC8'
id: WoodTrimThinLineN
@@ -5122,9 +5068,9 @@ entities:
1930: 26,13
1931: 27,13
1932: 28,13
- 3006: -38,-7
- 3007: -39,-7
- 3008: -40,-7
+ 2969: -38,-7
+ 2970: -39,-7
+ 2971: -40,-7
- node:
color: '#334E6DC8'
id: WoodTrimThinLineS
@@ -5299,8 +5245,7 @@ entities:
0: 65535
-4,3:
0: 61167
- 1: 4112
- 2: 256
+ 1: 4368
-3,0:
0: 65535
-3,1:
@@ -5437,7 +5382,7 @@ entities:
-5,6:
0: 65535
-12,1:
- 0: 65519
+ 0: 65535
-12,2:
0: 65535
-12,3:
@@ -5507,7 +5452,7 @@ entities:
-15,2:
0: 61183
-15,1:
- 0: 65519
+ 0: 65535
-14,1:
0: 65535
-14,2:
@@ -5541,19 +5486,19 @@ entities:
-9,-1:
0: 65535
-15,-2:
- 0: 65520
+ 0: 65535
-15,-1:
0: 35055
-14,-2:
- 0: 65520
+ 0: 65535
-14,-1:
0: 65535
-13,-2:
- 0: 65528
+ 0: 65535
-13,-1:
0: 65535
-13,-3:
- 0: 34952
+ 0: 65528
-8,-1:
0: 65535
-7,-1:
@@ -5833,15 +5778,15 @@ entities:
0,8:
0: 65535
0,9:
- 0: 40723
+ 0: 40851
0,10:
- 0: 52733
+ 0: 53245
0,11:
0: 35068
1,8:
0: 65535
1,9:
- 0: 65422
+ 0: 65534
1,10:
0: 65535
1,11:
@@ -5857,7 +5802,7 @@ entities:
3,8:
0: 64989
3,9:
- 0: 65501
+ 0: 65533
3,10:
0: 65535
3,11:
@@ -5970,7 +5915,7 @@ entities:
0: 65535
-9,-3:
0: 65531
- 3: 4
+ 2: 4
-9,-2:
0: 65535
-8,-4:
@@ -6231,15 +6176,15 @@ entities:
0: 65535
6,-8:
0: 7967
- 4: 224
- 5: 57344
+ 3: 224
+ 4: 57344
6,-7:
0: 7967
- 5: 224
- 6: 57344
+ 4: 224
+ 5: 57344
6,-6:
0: 65311
- 7: 224
+ 6: 224
6,-5:
0: 65535
7,-8:
@@ -6288,7 +6233,7 @@ entities:
0: 65535
6,-9:
0: 7967
- 5: 57568
+ 4: 57568
7,-9:
0: 13107
-4,-12:
@@ -6376,8 +6321,7 @@ entities:
-3,-13:
0: 65535
-2,-16:
- 0: 65423
- 5: 16
+ 0: 65439
-2,-15:
0: 65535
-2,-14:
@@ -6413,8 +6357,7 @@ entities:
-7,-19:
0: 17487
-7,-18:
- 0: 8959
- 5: 52224
+ 0: 61183
-7,-17:
0: 62543
-7,-20:
@@ -6422,8 +6365,7 @@ entities:
-6,-19:
0: 15
-6,-18:
- 0: 255
- 5: 65280
+ 0: 65535
-6,-20:
0: 12
-5,-20:
@@ -6439,29 +6381,23 @@ entities:
-4,-19:
0: 15
-4,-18:
- 0: 4607
- 5: 60928
+ 0: 65535
-4,-17:
- 0: 273
- 5: 14
+ 0: 287
-3,-19:
0: 17487
-3,-18:
- 0: 35071
- 5: 30464
+ 0: 65535
-3,-20:
0: 17476
-3,-17:
- 0: 12
- 5: 3
+ 0: 15
-2,-19:
0: 52431
-2,-18:
- 0: 127
- 5: 4352
+ 0: 4479
-2,-17:
- 0: 7
- 5: 4368
+ 0: 4375
-2,-20:
0: 52428
-1,-19:
@@ -6888,7 +6824,7 @@ entities:
0: 65280
-16,14:
0: 52862
- 4: 128
+ 3: 128
-16,15:
0: 3976
-16,13:
@@ -6900,11 +6836,9 @@ entities:
-15,15:
0: 35584
-10,16:
- 0: 4369
- 5: 61166
+ 0: 65535
-10,17:
- 0: 17
- 5: 238
+ 0: 255
-15,16:
0: 34952
-15,17:
@@ -7446,8 +7380,7 @@ entities:
-7,-14:
0: 13286
-6,-14:
- 0: 50288
- 5: 8718
+ 0: 59006
-11,-12:
0: 36744
-11,-13:
@@ -7535,8 +7468,7 @@ entities:
-6,-15:
0: 65535
-6,-17:
- 0: 3
- 5: 12
+ 0: 15
-12,-17:
0: 34952
-11,-17:
@@ -7564,35 +7496,35 @@ entities:
-9,-14:
0: 3908
-16,1:
- 0: 34816
- 5: 9728
+ 0: 44680
-16,2:
- 0: 136
- 5: 8738
+ 0: 8874
-16,-2:
- 0: 34944
- 5: 8736
+ 0: 43692
-16,-1:
- 0: 8
- 5: 6
+ 0: 14
-17,3:
- 0: 34952
- 5: 17476
+ 0: 52428
-17,4:
- 0: 8
- 5: 4
+ 0: 12
-17,5:
- 0: 34952
- 5: 17476
+ 0: 52428
-17,6:
- 0: 8
- 5: 4
+ 0: 12
-9,16:
- 5: 32767
+ 0: 32767
-9,17:
- 5: 3
+ 0: 3
-8,16:
- 5: 17
+ 0: 17
+ -16,0:
+ 0: 32768
+ -16,-3:
+ 0: 52416
+ -15,-3:
+ 0: 65520
+ -14,-3:
+ 0: 65520
uniqueMixes:
- volume: 2500
temperature: 293.15
@@ -7624,26 +7556,11 @@ entities:
- 0
- 0
- 0
- - volume: 2500
- temperature: 235
- moles:
- - 23.246532
- - 87.451256
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- volume: 2500
temperature: 293.15
moles:
- - 21.556696
- - 81.09423
+ - 21.803423
+ - 82.02241
- 0
- 0
- 0
@@ -7749,6 +7666,16 @@ entities:
- pos: -19.30925,-35.362278
parent: 30
type: Transform
+- proto: ActionToggleLight
+ entities:
+ - uid: 3117
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 5704
+ type: Transform
+ - container: 5704
+ type: InstantAction
- proto: AdvancedCapacitorStockPart
entities:
- uid: 20974
@@ -7820,8 +7747,6 @@ entities:
type: Transform
- devices:
- 17227
- - 20359
- - 20360
- 18435
- 18436
- 18437
@@ -8436,8 +8361,6 @@ entities:
parent: 30
type: Transform
- devices:
- - 4882
- - 4881
- 1101
- 1100
- 1099
@@ -8514,8 +8437,6 @@ entities:
- 1405
- 1406
- 1407
- - 4882
- - 4881
- 3317
- 3323
- 3318
@@ -8875,7 +8796,6 @@ entities:
- 6090
- 6089
- 22036
- - 6285
- 12490
- 12491
type: DeviceList
@@ -9347,21 +9267,49 @@ entities:
- pos: -36.5,38.5
parent: 30
type: Transform
+ - links:
+ - 1695
+ type: DeviceLinkSink
+ - linkedPorts:
+ 1695:
+ - DoorStatus: Close
+ type: DeviceLinkSource
- uid: 1657
components:
- pos: -34.5,38.5
parent: 30
type: Transform
+ - links:
+ - 1696
+ type: DeviceLinkSink
+ - linkedPorts:
+ 1696:
+ - DoorStatus: Close
+ type: DeviceLinkSource
- uid: 1695
components:
- pos: -36.5,41.5
parent: 30
type: Transform
+ - links:
+ - 1656
+ type: DeviceLinkSink
+ - linkedPorts:
+ 1656:
+ - DoorStatus: Close
+ type: DeviceLinkSource
- uid: 1696
components:
- pos: -34.5,41.5
parent: 30
type: Transform
+ - links:
+ - 1657
+ type: DeviceLinkSink
+ - linkedPorts:
+ 1657:
+ - DoorStatus: Close
+ type: DeviceLinkSource
- uid: 1740
components:
- pos: -29.5,43.5
@@ -9843,6 +9791,13 @@ entities:
- pos: 26.5,-18.5
parent: 30
type: Transform
+ - links:
+ - 8595
+ type: DeviceLinkSink
+ - linkedPorts:
+ 8595:
+ - DoorStatus: DoorBolt
+ type: DeviceLinkSource
- proto: AirlockExternalEngineeringLocked
entities:
- uid: 22631
@@ -9851,14 +9806,38 @@ entities:
pos: -24.5,-58.5
parent: 30
type: Transform
+ - links:
+ - 22632
+ type: DeviceLinkSink
+ - linkedPorts:
+ 22632:
+ - DoorStatus: DoorBolt
+ type: DeviceLinkSource
- uid: 22632
components:
- rot: -1.5707963267948966 rad
pos: -21.5,-58.5
parent: 30
type: Transform
+ - links:
+ - 22631
+ type: DeviceLinkSink
+ - linkedPorts:
+ 22631:
+ - DoorStatus: DoorBolt
+ type: DeviceLinkSource
- proto: AirlockExternalGlass
entities:
+ - uid: 838
+ components:
+ - pos: -47.5,-8.5
+ parent: 30
+ type: Transform
+ - uid: 951
+ components:
+ - pos: -47.5,-9.5
+ parent: 30
+ type: Transform
- uid: 1144
components:
- pos: -58.5,15.5
@@ -9884,9 +9863,14 @@ entities:
- pos: 25.5,41.5
parent: 30
type: Transform
- - uid: 3711
+ - uid: 8810
components:
- - pos: -46.5,-8.5
+ - pos: -52.5,6.5
+ parent: 30
+ type: Transform
+ - uid: 9661
+ components:
+ - pos: -59.5,6.5
parent: 30
type: Transform
- proto: AirlockExternalGlassAtmosphericsLocked
@@ -9896,6 +9880,13 @@ entities:
- pos: 23.5,-18.5
parent: 30
type: Transform
+ - links:
+ - 9254
+ type: DeviceLinkSink
+ - linkedPorts:
+ 9254:
+ - DoorStatus: DoorBolt
+ type: DeviceLinkSource
- proto: AirlockExternalGlassCargoLocked
entities:
- uid: 11658
@@ -9903,6 +9894,13 @@ entities:
- pos: 34.5,-15.5
parent: 30
type: Transform
+ - links:
+ - 11800
+ type: DeviceLinkSink
+ - linkedPorts:
+ 11800:
+ - DoorStatus: DoorBolt
+ type: DeviceLinkSource
- uid: 11710
components:
- pos: 36.5,-3.5
@@ -9913,6 +9911,13 @@ entities:
- pos: 34.5,-12.5
parent: 30
type: Transform
+ - links:
+ - 11658
+ type: DeviceLinkSink
+ - linkedPorts:
+ 11658:
+ - DoorStatus: DoorBolt
+ type: DeviceLinkSource
- uid: 12083
components:
- pos: 36.5,-5.5
@@ -9943,43 +9948,104 @@ entities:
- pos: -17.5,-52.5
parent: 30
type: Transform
+ - links:
+ - 10136
+ type: DeviceLinkSink
+ - linkedPorts:
+ 10136:
+ - DoorStatus: DoorBolt
+ type: DeviceLinkSource
- uid: 10136
components:
- pos: -17.5,-49.5
parent: 30
type: Transform
+ - links:
+ - 10135
+ type: DeviceLinkSink
+ - linkedPorts:
+ 10135:
+ - DoorStatus: DoorBolt
+ type: DeviceLinkSource
- uid: 20059
components:
- pos: -0.5,60.5
parent: 30
type: Transform
+ - links:
+ - 20060
+ type: DeviceLinkSink
+ - linkedPorts:
+ 20060:
+ - DoorStatus: DoorBolt
+ type: DeviceLinkSource
- uid: 20060
components:
- pos: -0.5,62.5
parent: 30
type: Transform
+ - links:
+ - 20059
+ type: DeviceLinkSink
+ - linkedPorts:
+ 20059:
+ - DoorStatus: DoorBolt
+ type: DeviceLinkSource
- proto: AirlockExternalGlassLocked
entities:
+ - uid: 386
+ components:
+ - pos: -63.5,-18.5
+ parent: 30
+ type: Transform
- uid: 5391
components:
- pos: -0.5,39.5
parent: 30
type: Transform
+ - links:
+ - 5390
+ type: DeviceLinkSink
+ - linkedPorts:
+ 5390:
+ - DoorStatus: DoorBolt
+ type: DeviceLinkSource
- uid: 5822
components:
- pos: 15.5,30.5
parent: 30
type: Transform
+ - links:
+ - 6299
+ type: DeviceLinkSink
+ - linkedPorts:
+ 6299:
+ - DoorStatus: DoorBolt
+ type: DeviceLinkSource
- uid: 15334
components:
- pos: 54.5,30.5
parent: 30
type: Transform
+ - links:
+ - 15335
+ type: DeviceLinkSink
+ - linkedPorts:
+ 15335:
+ - DoorStatus: DoorBolt
+ type: DeviceLinkSource
- uid: 15335
components:
- pos: 52.5,30.5
parent: 30
type: Transform
+ - links:
+ - 15334
+ type: DeviceLinkSink
+ - linkedPorts:
+ 15334:
+ - DoorStatus: DoorBolt
+ type: DeviceLinkSource
- uid: 17342
components:
- pos: -63.5,-20.5
@@ -9990,6 +10056,13 @@ entities:
- pos: -35.5,-39.5
parent: 30
type: Transform
+ - links:
+ - 21047
+ type: DeviceLinkSink
+ - linkedPorts:
+ 21047:
+ - DoorStatus: DoorBolt
+ type: DeviceLinkSource
- uid: 18172
components:
- pos: -82.5,-60.5
@@ -10005,38 +10078,59 @@ entities:
- pos: -37.5,-39.5
parent: 30
type: Transform
+ - links:
+ - 18018
+ type: DeviceLinkSink
+ - linkedPorts:
+ 18018:
+ - DoorStatus: DoorBolt
+ type: DeviceLinkSource
- uid: 21116
components:
- pos: -52.5,-39.5
parent: 30
type: Transform
+ - links:
+ - 21117
+ type: DeviceLinkSink
+ - linkedPorts:
+ 21117:
+ - DoorStatus: DoorBolt
+ type: DeviceLinkSource
- uid: 21117
components:
- pos: -50.5,-39.5
parent: 30
type: Transform
+ - links:
+ - 21116
+ type: DeviceLinkSink
+ - linkedPorts:
+ 21116:
+ - DoorStatus: DoorBolt
+ type: DeviceLinkSource
- proto: AirlockExternalGlassShuttleArrivals
entities:
- - uid: 875
+ - uid: 1299
components:
- - pos: -59.5,6.5
+ - rot: 3.141592653589793 rad
+ pos: -52.5,-7.5
parent: 30
type: Transform
- - uid: 877
+ - uid: 1304
components:
- - pos: -52.5,6.5
+ - rot: 3.141592653589793 rad
+ pos: -59.5,-7.5
parent: 30
type: Transform
- - uid: 9809
+ - uid: 3188
components:
- - rot: 3.141592653589793 rad
- pos: -52.5,-3.5
+ - pos: -52.5,3.5
parent: 30
type: Transform
- - uid: 9811
+ - uid: 3189
components:
- - rot: 3.141592653589793 rad
- pos: -59.5,-3.5
+ - pos: -59.5,3.5
parent: 30
type: Transform
- proto: AirlockExternalGlassShuttleEmergencyLocked
@@ -10067,10 +10161,9 @@ entities:
type: Transform
- proto: AirlockExternalGlassShuttleEscape
entities:
- - uid: 1307
+ - uid: 1083
components:
- - rot: -1.5707963267948966 rad
- pos: -48.5,-8.5
+ - pos: -52.5,-10.5
parent: 30
type: Transform
- uid: 3701
@@ -10079,14 +10172,13 @@ entities:
pos: 25.5,43.5
parent: 30
type: Transform
-- proto: AirlockExternalGlassShuttleLocked
- entities:
- - uid: 4353
+ - uid: 9041
components:
- - rot: 3.141592653589793 rad
- pos: -63.5,-18.5
+ - pos: -59.5,-10.5
parent: 30
type: Transform
+- proto: AirlockExternalGlassShuttleLocked
+ entities:
- uid: 11864
components:
- rot: 1.5707963267948966 rad
@@ -10111,11 +10203,25 @@ entities:
- pos: -0.5,41.5
parent: 30
type: Transform
+ - links:
+ - 5391
+ type: DeviceLinkSink
+ - linkedPorts:
+ 5391:
+ - DoorStatus: DoorBolt
+ type: DeviceLinkSource
- uid: 6299
components:
- pos: 17.5,30.5
parent: 30
type: Transform
+ - links:
+ - 5822
+ type: DeviceLinkSink
+ - linkedPorts:
+ 5822:
+ - DoorStatus: DoorBolt
+ type: DeviceLinkSource
- uid: 15829
components:
- pos: 45.5,16.5
@@ -10131,11 +10237,25 @@ entities:
- pos: -66.5,43.5
parent: 30
type: Transform
+ - links:
+ - 16279
+ type: DeviceLinkSink
+ - linkedPorts:
+ 16279:
+ - DoorStatus: DoorBolt
+ type: DeviceLinkSource
- uid: 16279
components:
- pos: -68.5,43.5
parent: 30
type: Transform
+ - links:
+ - 16278
+ type: DeviceLinkSink
+ - linkedPorts:
+ 16278:
+ - DoorStatus: DoorBolt
+ type: DeviceLinkSource
- uid: 18174
components:
- pos: -78.5,-60.5
@@ -10200,11 +10320,6 @@ entities:
- pos: -26.5,24.5
parent: 30
type: Transform
- - uid: 931
- components:
- - pos: -48.5,-4.5
- parent: 30
- type: Transform
- uid: 1006
components:
- pos: -40.5,4.5
@@ -10255,21 +10370,6 @@ entities:
- pos: -47.5,15.5
parent: 30
type: Transform
- - uid: 1295
- components:
- - pos: -48.5,-5.5
- parent: 30
- type: Transform
- - uid: 1331
- components:
- - pos: -45.5,-10.5
- parent: 30
- type: Transform
- - uid: 1332
- components:
- - pos: -44.5,-10.5
- parent: 30
- type: Transform
- uid: 1362
components:
- pos: -34.5,29.5
@@ -10365,14 +10465,19 @@ entities:
- pos: 12.5,-0.5
parent: 30
type: Transform
- - uid: 8400
+ - uid: 12063
components:
- - pos: 2.5,-21.5
+ - pos: -44.5,-10.5
parent: 30
type: Transform
- - uid: 8401
+ - uid: 12091
components:
- - pos: 2.5,-26.5
+ - pos: -45.5,-10.5
+ parent: 30
+ type: Transform
+ - uid: 13387
+ components:
+ - pos: -46.5,-10.5
parent: 30
type: Transform
- uid: 13738
@@ -10601,6 +10706,26 @@ entities:
- pos: -13.5,12.5
parent: 30
type: Transform
+- proto: AirlockMaint
+ entities:
+ - uid: 6716
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -4.5,-14.5
+ parent: 30
+ type: Transform
+ - uid: 6894
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -37.5,-30.5
+ parent: 30
+ type: Transform
+ - uid: 8312
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -31.5,-33.5
+ parent: 30
+ type: Transform
- proto: AirlockMaintBarLocked
entities:
- uid: 501
@@ -10792,11 +10917,6 @@ entities:
- pos: 3.5,-12.5
parent: 30
type: Transform
- - uid: 8312
- components:
- - pos: -4.5,-14.5
- parent: 30
- type: Transform
- uid: 8625
components:
- pos: -2.5,-17.5
@@ -10882,16 +11002,6 @@ entities:
- pos: -60.5,31.5
parent: 30
type: Transform
- - uid: 18055
- components:
- - pos: -31.5,-33.5
- parent: 30
- type: Transform
- - uid: 18065
- components:
- - pos: -37.5,-30.5
- parent: 30
- type: Transform
- uid: 19687
components:
- pos: -19.5,-27.5
@@ -11219,11 +11329,25 @@ entities:
- pos: -50.5,62.5
parent: 30
type: Transform
+ - links:
+ - 840
+ type: DeviceLinkSink
+ - linkedPorts:
+ 840:
+ - DoorStatus: DoorBolt
+ type: DeviceLinkSource
- uid: 2313
components:
- pos: -46.5,62.5
parent: 30
type: Transform
+ - links:
+ - 839
+ type: DeviceLinkSink
+ - linkedPorts:
+ 839:
+ - DoorStatus: DoorBolt
+ type: DeviceLinkSource
- proto: AirlockSecurityGlassLocked
entities:
- uid: 325
@@ -11266,16 +11390,6 @@ entities:
- pos: -48.5,55.5
parent: 30
type: Transform
- - uid: 2314
- components:
- - pos: -50.5,59.5
- parent: 30
- type: Transform
- - uid: 2315
- components:
- - pos: -46.5,59.5
- parent: 30
- type: Transform
- uid: 6565
components:
- pos: 13.5,19.5
@@ -11315,6 +11429,30 @@ entities:
type: Transform
- proto: AirlockSecurityLocked
entities:
+ - uid: 839
+ components:
+ - pos: -46.5,59.5
+ parent: 30
+ type: Transform
+ - links:
+ - 2313
+ type: DeviceLinkSink
+ - linkedPorts:
+ 2313:
+ - DoorStatus: DoorBolt
+ type: DeviceLinkSource
+ - uid: 840
+ components:
+ - pos: -50.5,59.5
+ parent: 30
+ type: Transform
+ - links:
+ - 2312
+ type: DeviceLinkSink
+ - linkedPorts:
+ 2312:
+ - DoorStatus: DoorBolt
+ type: DeviceLinkSource
- uid: 1057
components:
- pos: -37.5,10.5
@@ -11925,19 +12063,19 @@ entities:
type: Transform
- proto: AmePart
entities:
- - uid: 10205
+ - uid: 841
components:
- - pos: -13.345474,-35.57658
+ - pos: -17.338675,-32.512775
parent: 30
type: Transform
- - uid: 10206
+ - uid: 842
components:
- - pos: -13.454849,-35.45158
+ - pos: -17.44805,-32.356525
parent: 30
type: Transform
- - uid: 10208
+ - uid: 865
components:
- - pos: -13.611099,-35.310955
+ - pos: -17.6043,-32.2784
parent: 30
type: Transform
- proto: AmplifierSubspaceStockPart
@@ -12222,18 +12360,6 @@ entities:
pos: -28.5,-60.5
parent: 30
type: Transform
-- proto: APCElectronics
- entities:
- - uid: 11293
- components:
- - pos: -15.557688,-42.35106
- parent: 30
- type: Transform
- - uid: 11294
- components:
- - pos: -15.463938,-42.50731
- parent: 30
- type: Transform
- proto: APCSuperCapacity
entities:
- uid: 9259
@@ -12248,16 +12374,6 @@ entities:
- pos: -45.484833,69.54325
parent: 30
type: Transform
- - uid: 8370
- components:
- - pos: 0.47603655,-23.56604
- parent: 30
- type: Transform
- - uid: 12003
- components:
- - pos: 0.47603655,-25.581665
- parent: 30
- type: Transform
- uid: 19555
components:
- pos: -60.5,-51.5
@@ -12919,14 +13035,19 @@ entities:
type: Transform
- proto: AtmosDeviceFanTiny
entities:
- - uid: 873
+ - uid: 380
components:
- - pos: -52.5,6.5
+ - pos: -59.5,-7.5
parent: 30
type: Transform
- - uid: 874
+ - uid: 868
components:
- - pos: -52.5,-3.5
+ - pos: -59.5,-10.5
+ parent: 30
+ type: Transform
+ - uid: 1290
+ components:
+ - pos: -52.5,3.5
parent: 30
type: Transform
- uid: 3707
@@ -12936,7 +13057,12 @@ entities:
type: Transform
- uid: 3712
components:
- - pos: -48.5,-8.5
+ - pos: -59.5,3.5
+ parent: 30
+ type: Transform
+ - uid: 4353
+ components:
+ - pos: -52.5,-10.5
parent: 30
type: Transform
- uid: 9121
@@ -12959,14 +13085,9 @@ entities:
- pos: -19.5,17.5
parent: 30
type: Transform
- - uid: 9805
- components:
- - pos: -59.5,6.5
- parent: 30
- type: Transform
- - uid: 9807
+ - uid: 9798
components:
- - pos: -59.5,-3.5
+ - pos: -52.5,-7.5
parent: 30
type: Transform
- uid: 16402
@@ -13376,6 +13497,13 @@ entities:
- pos: -0.5,-10.5
parent: 30
type: Transform
+- proto: BaseGasCondenser
+ entities:
+ - uid: 9809
+ components:
+ - pos: 15.5,-21.5
+ parent: 30
+ type: Transform
- proto: Beaker
entities:
- uid: 10424
@@ -13445,6 +13573,26 @@ entities:
- pos: -45.5,61.5
parent: 30
type: Transform
+ - uid: 3161
+ components:
+ - pos: -31.5,-17.5
+ parent: 30
+ type: Transform
+ - uid: 3162
+ components:
+ - pos: -33.5,-17.5
+ parent: 30
+ type: Transform
+ - uid: 3167
+ components:
+ - pos: -34.5,-22.5
+ parent: 30
+ type: Transform
+ - uid: 3175
+ components:
+ - pos: -30.5,-22.5
+ parent: 30
+ type: Transform
- uid: 4985
components:
- pos: -17.5,31.5
@@ -13490,11 +13638,6 @@ entities:
- pos: -13.5,-22.5
parent: 30
type: Transform
- - uid: 9664
- components:
- - pos: -28.5,-0.5
- parent: 30
- type: Transform
- uid: 11628
components:
- pos: 23.5,0.5
@@ -13690,6 +13833,16 @@ entities:
type: Transform
- proto: BedsheetSpawner
entities:
+ - uid: 1723
+ components:
+ - pos: 29.5,42.5
+ parent: 30
+ type: Transform
+ - uid: 5482
+ components:
+ - pos: 29.5,41.5
+ parent: 30
+ type: Transform
- uid: 6438
components:
- pos: 16.5,34.5
@@ -13823,8 +13976,8 @@ entities:
parent: 30
type: Transform
- links:
- - 10288
- - 10141
+ - 8609
+ - 8393
type: DeviceLinkSink
- uid: 9405
components:
@@ -13832,8 +13985,8 @@ entities:
parent: 30
type: Transform
- links:
- - 10288
- - 10141
+ - 8609
+ - 8393
type: DeviceLinkSink
- uid: 9825
components:
@@ -13905,7 +14058,7 @@ entities:
parent: 30
type: Transform
- links:
- - 11994
+ - 8610
type: DeviceLinkSink
- uid: 11995
components:
@@ -13913,7 +14066,7 @@ entities:
parent: 30
type: Transform
- links:
- - 11994
+ - 8863
type: DeviceLinkSink
- uid: 12059
components:
@@ -13921,7 +14074,7 @@ entities:
parent: 30
type: Transform
- links:
- - 12063
+ - 8863
type: DeviceLinkSink
- uid: 12099
components:
@@ -13929,7 +14082,7 @@ entities:
parent: 30
type: Transform
- links:
- - 12063
+ - 8610
type: DeviceLinkSink
- uid: 13347
components:
@@ -13995,7 +14148,7 @@ entities:
parent: 30
type: Transform
- links:
- - 11701
+ - 9184
type: DeviceLinkSink
- uid: 9189
components:
@@ -14003,7 +14156,7 @@ entities:
parent: 30
type: Transform
- links:
- - 11701
+ - 9184
type: DeviceLinkSink
- uid: 9190
components:
@@ -14011,7 +14164,7 @@ entities:
parent: 30
type: Transform
- links:
- - 11701
+ - 9184
type: DeviceLinkSink
- proto: BlockGameArcade
entities:
@@ -14121,11 +14274,6 @@ entities:
- pos: 29.5,13.5
parent: 30
type: Transform
- - uid: 21466
- components:
- - pos: 7.5,-13.5
- parent: 30
- type: Transform
- proto: BookshelfFilled
entities:
- uid: 1998
@@ -14148,6 +14296,11 @@ entities:
- pos: -29.5,-3.5
parent: 30
type: Transform
+ - uid: 8370
+ components:
+ - pos: 7.5,-13.5
+ parent: 30
+ type: Transform
- uid: 10016
components:
- pos: -38.5,-4.5
@@ -14367,11 +14520,6 @@ entities:
type: Transform
- proto: BoxFolderBlack
entities:
- - uid: 380
- components:
- - pos: 2.948793,31.313263
- parent: 30
- type: Transform
- uid: 5050
components:
- pos: -22.461006,35.471382
@@ -14399,11 +14547,6 @@ entities:
- pos: -49.812614,30.586998
parent: 30
type: Transform
- - uid: 5702
- components:
- - pos: 2.6936703,31.527428
- parent: 30
- type: Transform
- uid: 21541
components:
- pos: 41.545937,38.59172
@@ -14428,11 +14571,6 @@ entities:
type: Transform
- proto: BoxFolderRed
entities:
- - uid: 386
- components:
- - pos: 2.808168,31.438263
- parent: 30
- type: Transform
- uid: 1520
components:
- pos: -49.281364,30.586998
@@ -14754,9 +14892,44 @@ entities:
- pos: -12.5,-55.5
parent: 30
type: Transform
- - uid: 908
+ - uid: 878
+ components:
+ - pos: -52.5,5.5
+ parent: 30
+ type: Transform
+ - uid: 883
+ components:
+ - pos: -58.5,7.5
+ parent: 30
+ type: Transform
+ - uid: 885
+ components:
+ - pos: -59.5,7.5
+ parent: 30
+ type: Transform
+ - uid: 917
+ components:
+ - pos: -52.5,6.5
+ parent: 30
+ type: Transform
+ - uid: 918
+ components:
+ - pos: -52.5,7.5
+ parent: 30
+ type: Transform
+ - uid: 931
+ components:
+ - pos: -59.5,6.5
+ parent: 30
+ type: Transform
+ - uid: 945
components:
- - pos: -47.5,-4.5
+ - pos: -59.5,5.5
+ parent: 30
+ type: Transform
+ - uid: 961
+ components:
+ - pos: -59.5,4.5
parent: 30
type: Transform
- uid: 988
@@ -14809,66 +14982,16 @@ entities:
- pos: -37.5,61.5
parent: 30
type: Transform
- - uid: 3175
- components:
- - pos: -49.5,-4.5
- parent: 30
- type: Transform
- - uid: 3177
- components:
- - pos: -48.5,-4.5
- parent: 30
- type: Transform
- - uid: 3178
- components:
- - pos: -51.5,-4.5
- parent: 30
- type: Transform
- - uid: 3186
- components:
- - pos: -50.5,-4.5
- parent: 30
- type: Transform
- - uid: 3188
- components:
- - pos: -52.5,-4.5
- parent: 30
- type: Transform
- uid: 3193
components:
- pos: -57.5,8.5
parent: 30
type: Transform
- - uid: 3199
- components:
- - pos: -57.5,-4.5
- parent: 30
- type: Transform
- - uid: 3200
- components:
- - pos: -55.5,-4.5
- parent: 30
- type: Transform
- - uid: 3201
- components:
- - pos: -56.5,-4.5
- parent: 30
- type: Transform
- uid: 3202
components:
- pos: -57.5,7.5
parent: 30
type: Transform
- - uid: 3506
- components:
- - pos: -53.5,-4.5
- parent: 30
- type: Transform
- - uid: 3508
- components:
- - pos: -54.5,-4.5
- parent: 30
- type: Transform
- uid: 3509
components:
- pos: -51.5,7.5
@@ -14879,21 +15002,6 @@ entities:
- pos: -51.5,8.5
parent: 30
type: Transform
- - uid: 3513
- components:
- - pos: -58.5,-4.5
- parent: 30
- type: Transform
- - uid: 3596
- components:
- - pos: -59.5,-4.5
- parent: 30
- type: Transform
- - uid: 3620
- components:
- - pos: -58.5,7.5
- parent: 30
- type: Transform
- uid: 3627
components:
- pos: -50.5,11.5
@@ -15189,11 +15297,6 @@ entities:
- pos: -45.5,-4.5
parent: 30
type: Transform
- - uid: 3695
- components:
- - pos: -46.5,-4.5
- parent: 30
- type: Transform
- uid: 3713
components:
- pos: -48.5,20.5
@@ -21739,6 +21842,11 @@ entities:
- pos: -10.5,-55.5
parent: 30
type: Transform
+ - uid: 9802
+ components:
+ - pos: -52.5,4.5
+ parent: 30
+ type: Transform
- uid: 9821
components:
- pos: -3.5,-58.5
@@ -21764,6 +21872,66 @@ entities:
- pos: -37.5,-10.5
parent: 30
type: Transform
+ - uid: 10048
+ components:
+ - pos: -48.5,-8.5
+ parent: 30
+ type: Transform
+ - uid: 10055
+ components:
+ - pos: -49.5,-8.5
+ parent: 30
+ type: Transform
+ - uid: 10056
+ components:
+ - pos: -50.5,-8.5
+ parent: 30
+ type: Transform
+ - uid: 10057
+ components:
+ - pos: -51.5,-8.5
+ parent: 30
+ type: Transform
+ - uid: 10060
+ components:
+ - pos: -52.5,-8.5
+ parent: 30
+ type: Transform
+ - uid: 10061
+ components:
+ - pos: -53.5,-8.5
+ parent: 30
+ type: Transform
+ - uid: 10062
+ components:
+ - pos: -54.5,-8.5
+ parent: 30
+ type: Transform
+ - uid: 10063
+ components:
+ - pos: -55.5,-8.5
+ parent: 30
+ type: Transform
+ - uid: 10064
+ components:
+ - pos: -56.5,-8.5
+ parent: 30
+ type: Transform
+ - uid: 10065
+ components:
+ - pos: -57.5,-8.5
+ parent: 30
+ type: Transform
+ - uid: 10066
+ components:
+ - pos: -58.5,-8.5
+ parent: 30
+ type: Transform
+ - uid: 10067
+ components:
+ - pos: -59.5,-8.5
+ parent: 30
+ type: Transform
- uid: 10503
components:
- pos: -7.5,-52.5
@@ -22399,21 +22567,11 @@ entities:
- pos: 2.5,-27.5
parent: 30
type: Transform
- - uid: 10738
- components:
- - pos: 2.5,-26.5
- parent: 30
- type: Transform
- uid: 10740
components:
- pos: 2.5,-20.5
parent: 30
type: Transform
- - uid: 10743
- components:
- - pos: 2.5,-21.5
- parent: 30
- type: Transform
- uid: 10744
components:
- pos: -0.5,-29.5
@@ -31244,11 +31402,6 @@ entities:
- pos: -0.5,41.5
parent: 30
type: Transform
- - uid: 22101
- components:
- - pos: 2.5,-21.5
- parent: 30
- type: Transform
- uid: 22107
components:
- pos: -82.5,-43.5
@@ -44278,6 +44431,56 @@ entities:
pos: -14.5,23.5
parent: 30
type: Transform
+ - uid: 869
+ components:
+ - pos: -54.5,-8.5
+ parent: 30
+ type: Transform
+ - uid: 881
+ components:
+ - pos: -53.5,-8.5
+ parent: 30
+ type: Transform
+ - uid: 887
+ components:
+ - pos: -59.5,-9.5
+ parent: 30
+ type: Transform
+ - uid: 896
+ components:
+ - pos: -52.5,-9.5
+ parent: 30
+ type: Transform
+ - uid: 929
+ components:
+ - pos: -59.5,5.5
+ parent: 30
+ type: Transform
+ - uid: 937
+ components:
+ - pos: -52.5,5.5
+ parent: 30
+ type: Transform
+ - uid: 1077
+ components:
+ - pos: -59.5,4.5
+ parent: 30
+ type: Transform
+ - uid: 1079
+ components:
+ - pos: -51.5,-8.5
+ parent: 30
+ type: Transform
+ - uid: 1310
+ components:
+ - pos: -49.5,-8.5
+ parent: 30
+ type: Transform
+ - uid: 3115
+ components:
+ - pos: -52.5,4.5
+ parent: 30
+ type: Transform
- uid: 4852
components:
- rot: 1.5707963267948966 rad
@@ -44446,6 +44649,16 @@ entities:
pos: 6.5,17.5
parent: 30
type: Transform
+ - uid: 4881
+ components:
+ - pos: -59.5,-8.5
+ parent: 30
+ type: Transform
+ - uid: 4955
+ components:
+ - pos: -58.5,-8.5
+ parent: 30
+ type: Transform
- uid: 4987
components:
- pos: -20.5,-58.5
@@ -44487,6 +44700,16 @@ entities:
pos: -0.5,37.5
parent: 30
type: Transform
+ - uid: 5431
+ components:
+ - pos: -56.5,-8.5
+ parent: 30
+ type: Transform
+ - uid: 5492
+ components:
+ - pos: -50.5,-8.5
+ parent: 30
+ type: Transform
- uid: 5655
components:
- pos: -22.5,46.5
@@ -44517,6 +44740,11 @@ entities:
- pos: -22.5,42.5
parent: 30
type: Transform
+ - uid: 5701
+ components:
+ - pos: -57.5,-8.5
+ parent: 30
+ type: Transform
- uid: 5737
components:
- rot: 1.5707963267948966 rad
@@ -44708,6 +44936,21 @@ entities:
- pos: -6.5,-29.5
parent: 30
type: Transform
+ - uid: 10073
+ components:
+ - pos: -55.5,-8.5
+ parent: 30
+ type: Transform
+ - uid: 10205
+ components:
+ - pos: -52.5,-8.5
+ parent: 30
+ type: Transform
+ - uid: 10206
+ components:
+ - pos: -48.5,-8.5
+ parent: 30
+ type: Transform
- uid: 11314
components:
- pos: 23.5,-34.5
@@ -47174,15 +47417,15 @@ entities:
pos: -27.5,23.5
parent: 30
type: Transform
- - uid: 928
+ - uid: 894
components:
- - pos: -49.5,10.5
+ - rot: 1.5707963267948966 rad
+ pos: -60.5,-9.5
parent: 30
type: Transform
- - uid: 929
+ - uid: 928
components:
- - rot: 1.5707963267948966 rad
- pos: -46.5,-6.5
+ - pos: -49.5,10.5
parent: 30
type: Transform
- uid: 956
@@ -47405,12 +47648,6 @@ entities:
- pos: -50.5,31.5
parent: 30
type: Transform
- - uid: 1723
- components:
- - rot: 3.141592653589793 rad
- pos: -26.5,42.5
- parent: 30
- type: Transform
- uid: 1724
components:
- pos: -27.5,44.5
@@ -47532,18 +47769,6 @@ entities:
pos: -17.5,-15.5
parent: 30
type: Transform
- - uid: 9183
- components:
- - rot: -1.5707963267948966 rad
- pos: 3.5,-24.5
- parent: 30
- type: Transform
- - uid: 9184
- components:
- - rot: -1.5707963267948966 rad
- pos: 3.5,-23.5
- parent: 30
- type: Transform
- uid: 9228
components:
- pos: -21.5,-24.5
@@ -47742,17 +47967,59 @@ entities:
pos: -51.5,-47.5
parent: 30
type: Transform
+ - uid: 18055
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -57.5,6.5
+ parent: 30
+ type: Transform
+ - uid: 18065
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -56.5,6.5
+ parent: 30
+ type: Transform
- uid: 18180
components:
- rot: -1.5707963267948966 rad
pos: -80.5,-61.5
parent: 30
type: Transform
+ - uid: 18846
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -55.5,6.5
+ parent: 30
+ type: Transform
- uid: 19069
components:
- pos: -51.5,-45.5
parent: 30
type: Transform
+ - uid: 19395
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -50.5,5.5
+ parent: 30
+ type: Transform
+ - uid: 19396
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -50.5,6.5
+ parent: 30
+ type: Transform
+ - uid: 19397
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -48.5,5.5
+ parent: 30
+ type: Transform
+ - uid: 19398
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -48.5,6.5
+ parent: 30
+ type: Transform
- uid: 19584
components:
- pos: -27.5,-42.5
@@ -48021,6 +48288,14 @@ entities:
pos: 15.5,18.5
parent: 30
type: Transform
+- proto: ChairGreyscale
+ entities:
+ - uid: 904
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -26.5,42.5
+ parent: 30
+ type: Transform
- proto: ChairOfficeDark
entities:
- uid: 438
@@ -49030,9 +49305,9 @@ entities:
type: Transform
- proto: ChemistryHotplate
entities:
- - uid: 22312
+ - uid: 9180
components:
- - pos: -9.5,-10.5
+ - pos: -7.5,-7.5
parent: 30
type: Transform
- proto: ChessBoard
@@ -49140,8 +49415,8 @@ entities:
immutable: False
temperature: 293.1495
moles:
- - 1.8744951
- - 7.051672
+ - 1.8959498
+ - 7.1323833
- 0
- 0
- 0
@@ -49158,25 +49433,25 @@ entities:
showEnts: False
occludes: True
ents:
- - 1951
- - 9848
- - 1950
- - 9849
- - 1934
- - 9850
- - 1945
- - 9851
- - 9852
- - 9853
- - 9854
- - 9855
- - 9856
- - 9857
- - 9858
- - 9859
- - 9860
- - 9861
- 9864
+ - 9861
+ - 9860
+ - 9859
+ - 9858
+ - 9857
+ - 9856
+ - 9855
+ - 9854
+ - 9853
+ - 9852
+ - 9851
+ - 1945
+ - 9850
+ - 1934
+ - 9849
+ - 1950
+ - 9848
+ - 1951
paper_label: !type:ContainerSlot
showEnts: False
occludes: True
@@ -49385,6 +49660,11 @@ entities:
type: EntityStorage
- proto: ClosetEmergencyFilledRandom
entities:
+ - uid: 893
+ components:
+ - pos: -60.5,-8.5
+ parent: 30
+ type: Transform
- uid: 1275
components:
- pos: -48.5,19.5
@@ -49891,6 +50171,11 @@ entities:
- 0
- 0
type: EntityStorage
+ - uid: 19394
+ components:
+ - pos: -54.5,6.5
+ parent: 30
+ type: Transform
- uid: 19625
components:
- pos: -34.5,-38.5
@@ -51742,7 +52027,7 @@ entities:
entities:
- uid: 16772
components:
- - pos: -56.500008,9.748728
+ - pos: -57.48945,10.619459
parent: 30
type: Transform
- proto: ClothingHeadHelmetWizardHelm
@@ -52437,13 +52722,6 @@ entities:
- pos: -52.643486,-53.879913
parent: 30
type: Transform
-- proto: ClothingUnderSocksBee
- entities:
- - uid: 15116
- components:
- - pos: 3.4159074,-25.481888
- parent: 30
- type: Transform
- proto: ClothingUnderSocksCoder
entities:
- uid: 19756
@@ -53826,9 +54104,9 @@ entities:
type: EntityStorage
- proto: CrateEngineeringAMEShielding
entities:
- - uid: 9341
+ - uid: 9478
components:
- - pos: -17.5,-32.5
+ - pos: -16.5,-32.5
parent: 30
type: Transform
- air:
@@ -53836,8 +54114,8 @@ entities:
immutable: False
temperature: 293.1496
moles:
- - 3.4430928
- - 12.952587
+ - 2.0214376
+ - 7.6044564
- 0
- 0
- 0
@@ -53849,11 +54127,17 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 9478
+- proto: CrateEngineeringCableBulk
+ entities:
+ - uid: 3520
components:
- - pos: -16.5,-32.5
+ - pos: -43.5,19.5
parent: 30
type: Transform
+ - containers:
+ - EntityStorageComponent
+ - entity_storage
+ type: Construction
- air:
volume: 200
immutable: False
@@ -53872,38 +54156,9 @@ entities:
- 0
- 0
type: EntityStorage
-- proto: CrateEngineeringCableBulk
- entities:
- - uid: 3520
+ - uid: 9578
components:
- - pos: -43.5,19.5
- parent: 30
- type: Transform
- - containers:
- - EntityStorageComponent
- - entity_storage
- type: Construction
- - air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 3.4430928
- - 12.952587
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- type: EntityStorage
- - uid: 9578
- components:
- - pos: -22.5,-44.5
+ - pos: -22.5,-44.5
parent: 30
type: Transform
- containers:
@@ -54194,6 +54449,13 @@ entities:
- pos: 17.5,18.5
parent: 30
type: Transform
+- proto: CrateMindShieldImplants
+ entities:
+ - uid: 8278
+ components:
+ - pos: -41.5,56.5
+ parent: 30
+ type: Transform
- proto: CrateNPCCow
entities:
- uid: 494
@@ -54596,11 +54858,6 @@ entities:
- pos: -8.5,-18.5
parent: 30
type: Transform
- - uid: 6716
- components:
- - pos: -27.5,34.5
- parent: 30
- type: Transform
- uid: 7262
components:
- pos: -23.5,-6.5
@@ -60199,6 +60456,11 @@ entities:
- pos: 4.5,34.5
parent: 30
type: Transform
+ - uid: 19437
+ components:
+ - pos: 26.5,2.5
+ parent: 30
+ type: Transform
- proto: DonkpocketBoxSpawner
entities:
- uid: 9177
@@ -60218,16 +60480,6 @@ entities:
- pos: -27.536026,33.455597
parent: 30
type: Transform
- - uid: 11295
- components:
- - pos: -15.510813,-42.88231
- parent: 30
- type: Transform
- - uid: 11296
- components:
- - pos: -15.432688,-43.054184
- parent: 30
- type: Transform
- uid: 15078
components:
- pos: 19.405787,54.643536
@@ -60388,7 +60640,7 @@ entities:
entities:
- uid: 19761
components:
- - pos: 2.7591581,32.29665
+ - pos: 2.7829165,31.588726
parent: 30
type: Transform
- tags: []
@@ -60507,12 +60759,12 @@ entities:
entities:
- uid: 6722
components:
- - pos: -7.461857,-7.0850453
+ - pos: -4.5064716,-10.59094
parent: 30
type: Transform
- uid: 6723
components:
- - pos: -7.461857,-7.2412953
+ - pos: -4.3776336,-10.526808
parent: 30
type: Transform
- uid: 11465
@@ -61239,6 +61491,13 @@ entities:
type: Transform
- proto: FaxMachineBase
entities:
+ - uid: 5493
+ components:
+ - pos: 2.5,32.5
+ parent: 30
+ type: Transform
+ - name: HoP
+ type: FaxMachine
- uid: 7456
components:
- pos: -31.5,-4.5
@@ -61416,15 +61675,23 @@ entities:
- pos: -44.5,9.5
parent: 30
type: Transform
+ - ShutdownSubscribers:
+ - 15117
+ - 15116
+ - 13644
+ - 17059
+ - 17625
+ type: DeviceNetwork
- devices:
- 1099
- 1100
- 1101
- 21865
- - 4882
- - 4881
- - 20359
- - 20360
+ - 15117
+ - 15116
+ - 13644
+ - 17059
+ - 17625
type: DeviceList
- uid: 4908
components:
@@ -61455,10 +61722,16 @@ entities:
pos: -47.5,-16.5
parent: 30
type: Transform
+ - ShutdownSubscribers:
+ - 15117
+ - 15116
+ - 13644
+ type: DeviceNetwork
- devices:
- 17227
- - 20359
- - 20360
+ - 15117
+ - 15116
+ - 13644
type: DeviceList
- uid: 20334
components:
@@ -61876,16 +62149,6 @@ entities:
- 20347
- 20348
type: DeviceList
- - uid: 21860
- components:
- - rot: 3.141592653589793 rad
- pos: -47.5,-7.5
- parent: 30
- type: Transform
- - devices:
- - 20359
- - 20360
- type: DeviceList
- uid: 21866
components:
- pos: -42.5,8.5
@@ -61943,8 +62206,6 @@ entities:
- 1405
- 1406
- 1407
- - 4882
- - 4881
type: DeviceList
- uid: 21880
components:
@@ -62183,9 +62444,16 @@ entities:
- pos: 7.5,40.5
parent: 30
type: Transform
+ - ShutdownSubscribers:
+ - 1538
+ - 5441
+ - 923
+ type: DeviceNetwork
- devices:
- - 6285
+ - 1538
- 22032
+ - 5441
+ - 923
type: DeviceList
- uid: 22034
components:
@@ -62193,12 +62461,19 @@ entities:
pos: 12.5,35.5
parent: 30
type: Transform
+ - ShutdownSubscribers:
+ - 1538
+ - 5441
+ - 923
+ type: DeviceNetwork
- devices:
- 6091
- 6090
- 6089
- 22036
- - 6285
+ - 1538
+ - 5441
+ - 923
type: DeviceList
- uid: 22037
components:
@@ -62387,18 +62662,6 @@ entities:
- 600
- 22086
type: DeviceList
-- proto: FireAlarmElectronics
- entities:
- - uid: 11297
- components:
- - pos: -15.432688,-43.397934
- parent: 30
- type: Transform
- - uid: 11298
- components:
- - pos: -15.338938,-43.585434
- parent: 30
- type: Transform
- proto: FireAxeCabinetFilled
entities:
- uid: 5846
@@ -62569,18 +62832,6 @@ entities:
pos: -45.5,63.5
parent: 30
type: Transform
- - uid: 4881
- components:
- - rot: 3.141592653589793 rad
- pos: -52.5,10.5
- parent: 30
- type: Transform
- - uid: 4882
- components:
- - rot: 3.141592653589793 rad
- pos: -51.5,10.5
- parent: 30
- type: Transform
- uid: 4890
components:
- rot: 3.141592653589793 rad
@@ -62707,16 +62958,6 @@ entities:
pos: -55.5,-45.5
parent: 30
type: Transform
- - uid: 20359
- components:
- - pos: -45.5,-9.5
- parent: 30
- type: Transform
- - uid: 20360
- components:
- - pos: -44.5,-9.5
- parent: 30
- type: Transform
- uid: 20361
components:
- rot: 3.141592653589793 rad
@@ -62928,6 +63169,15 @@ entities:
- pos: 0.5,12.5
parent: 30
type: Transform
+ - uid: 923
+ components:
+ - pos: 10.5,37.5
+ parent: 30
+ type: Transform
+ - ShutdownSubscribers:
+ - 22033
+ - 22034
+ type: DeviceNetwork
- uid: 954
components:
- pos: 31.5,-8.5
@@ -62993,6 +63243,15 @@ entities:
- pos: -42.5,45.5
parent: 30
type: Transform
+ - uid: 1538
+ components:
+ - pos: 8.5,37.5
+ parent: 30
+ type: Transform
+ - ShutdownSubscribers:
+ - 22033
+ - 22034
+ type: DeviceNetwork
- uid: 2005
components:
- pos: -40.5,50.5
@@ -63081,6 +63340,15 @@ entities:
- pos: -50.5,62.5
parent: 30
type: Transform
+ - uid: 5441
+ components:
+ - pos: 9.5,37.5
+ parent: 30
+ type: Transform
+ - ShutdownSubscribers:
+ - 22033
+ - 22034
+ type: DeviceNetwork
- uid: 5647
components:
- pos: -22.5,43.5
@@ -63161,11 +63429,6 @@ entities:
- pos: -6.5,27.5
parent: 30
type: Transform
- - uid: 6285
- components:
- - pos: 9.5,36.5
- parent: 30
- type: Transform
- uid: 6286
components:
- pos: 6.5,33.5
@@ -63629,6 +63892,15 @@ entities:
- pos: 30.5,8.5
parent: 30
type: Transform
+ - uid: 13644
+ components:
+ - pos: -44.5,-10.5
+ parent: 30
+ type: Transform
+ - ShutdownSubscribers:
+ - 17226
+ - 4354
+ type: DeviceNetwork
- uid: 14955
components:
- pos: 16.5,45.5
@@ -63664,6 +63936,24 @@ entities:
- pos: 37.5,5.5
parent: 30
type: Transform
+ - uid: 15116
+ components:
+ - pos: -45.5,-10.5
+ parent: 30
+ type: Transform
+ - ShutdownSubscribers:
+ - 17226
+ - 4354
+ type: DeviceNetwork
+ - uid: 15117
+ components:
+ - pos: -46.5,-10.5
+ parent: 30
+ type: Transform
+ - ShutdownSubscribers:
+ - 17226
+ - 4354
+ type: DeviceNetwork
- uid: 16029
components:
- pos: 22.5,4.5
@@ -63689,11 +63979,27 @@ entities:
- pos: -60.5,38.5
parent: 30
type: Transform
+ - uid: 17059
+ components:
+ - pos: -51.5,11.5
+ parent: 30
+ type: Transform
+ - ShutdownSubscribers:
+ - 4354
+ type: DeviceNetwork
- uid: 17085
components:
- pos: -54.5,43.5
parent: 30
type: Transform
+ - uid: 17625
+ components:
+ - pos: -52.5,11.5
+ parent: 30
+ type: Transform
+ - ShutdownSubscribers:
+ - 4354
+ type: DeviceNetwork
- uid: 18069
components:
- pos: -30.5,-37.5
@@ -64730,6 +65036,24 @@ entities:
pos: -15.5,16.5
parent: 30
type: Transform
+ - uid: 3125
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -4.5,-57.5
+ parent: 30
+ type: Transform
+ - uid: 3126
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -4.5,-58.5
+ parent: 30
+ type: Transform
+ - uid: 3221
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -4.5,-59.5
+ parent: 30
+ type: Transform
- uid: 7099
components:
- rot: 1.5707963267948966 rad
@@ -64827,6 +65151,30 @@ entities:
type: Transform
- proto: GasPipeBend
entities:
+ - uid: 866
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -11.5,-59.5
+ parent: 30
+ type: Transform
+ - uid: 867
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -12.5,-59.5
+ parent: 30
+ type: Transform
+ - uid: 906
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -12.5,-56.5
+ parent: 30
+ type: Transform
+ - uid: 916
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -5.5,-59.5
+ parent: 30
+ type: Transform
- uid: 939
components:
- rot: 3.141592653589793 rad
@@ -65026,6 +65374,11 @@ entities:
type: Transform
- color: '#0335FCFF'
type: AtmosPipeColor
+ - uid: 3152
+ components:
+ - pos: -2.5,-56.5
+ parent: 30
+ type: Transform
- uid: 3271
components:
- rot: -1.5707963267948966 rad
@@ -65288,6 +65641,18 @@ entities:
type: Transform
- color: '#FF1212FF'
type: AtmosPipeColor
+ - uid: 7146
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -2.5,-59.5
+ parent: 30
+ type: Transform
+ - uid: 7148
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -3.5,-59.5
+ parent: 30
+ type: Transform
- uid: 7217
components:
- rot: -1.5707963267948966 rad
@@ -66292,13 +66657,6 @@ entities:
type: AtmosPipeColor
- proto: GasPipeFourway
entities:
- - uid: 948
- components:
- - pos: -45.5,-5.5
- parent: 30
- type: Transform
- - color: '#FF1212FF'
- type: AtmosPipeColor
- uid: 2101
components:
- pos: 32.5,8.5
@@ -66519,16 +66877,14 @@ entities:
type: Transform
- color: '#FF1212FF'
type: AtmosPipeColor
-- proto: GasPipeHalf
+- proto: GasPipeStraight
entities:
- - uid: 7105
+ - uid: 239
components:
- - rot: 3.141592653589793 rad
- pos: -11.5,-59.5
+ - rot: -1.5707963267948966 rad
+ pos: -50.5,-8.5
parent: 30
type: Transform
-- proto: GasPipeStraight
- entities:
- uid: 475
components:
- rot: 1.5707963267948966 rad
@@ -66542,46 +66898,40 @@ entities:
- pos: -9.5,-56.5
parent: 30
type: Transform
- - uid: 880
+ - uid: 874
components:
- rot: -1.5707963267948966 rad
- pos: -49.5,-4.5
+ pos: -52.5,-9.5
parent: 30
type: Transform
- - color: '#0335FCFF'
- type: AtmosPipeColor
- - uid: 891
+ - uid: 875
components:
- rot: -1.5707963267948966 rad
- pos: -50.5,-4.5
+ pos: -50.5,-9.5
parent: 30
type: Transform
- - color: '#0335FCFF'
- type: AtmosPipeColor
- - uid: 894
+ - uid: 877
components:
- rot: -1.5707963267948966 rad
- pos: -51.5,-4.5
+ pos: -51.5,-9.5
parent: 30
type: Transform
- - color: '#0335FCFF'
- type: AtmosPipeColor
- - uid: 923
+ - uid: 908
components:
- - rot: -1.5707963267948966 rad
- pos: -53.5,-4.5
+ - pos: -12.5,-58.5
parent: 30
type: Transform
- - color: '#0335FCFF'
- type: AtmosPipeColor
- - uid: 924
+ - uid: 909
components:
- rot: -1.5707963267948966 rad
- pos: -46.5,-5.5
+ pos: -48.5,-8.5
+ parent: 30
+ type: Transform
+ - uid: 915
+ components:
+ - pos: -12.5,-57.5
parent: 30
type: Transform
- - color: '#FF1212FF'
- type: AtmosPipeColor
- uid: 935
components:
- rot: 1.5707963267948966 rad
@@ -66620,14 +66970,29 @@ entities:
type: Transform
- color: '#FF1212FF'
type: AtmosPipeColor
- - uid: 952
+ - uid: 964
+ components:
+ - pos: -44.5,-4.5
+ parent: 30
+ type: Transform
+ - uid: 1076
components:
- rot: -1.5707963267948966 rad
- pos: -47.5,-4.5
+ pos: -47.5,-8.5
+ parent: 30
+ type: Transform
+ - uid: 1307
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -52.5,-8.5
+ parent: 30
+ type: Transform
+ - uid: 1308
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -51.5,-8.5
parent: 30
type: Transform
- - color: '#0335FCFF'
- type: AtmosPipeColor
- uid: 1415
components:
- pos: -47.5,9.5
@@ -70358,22 +70723,6 @@ entities:
type: Transform
- color: '#0335FCFF'
type: AtmosPipeColor
- - uid: 3125
- components:
- - rot: -1.5707963267948966 rad
- pos: -50.5,-5.5
- parent: 30
- type: Transform
- - color: '#FF1212FF'
- type: AtmosPipeColor
- - uid: 3126
- components:
- - rot: -1.5707963267948966 rad
- pos: -51.5,-5.5
- parent: 30
- type: Transform
- - color: '#FF1212FF'
- type: AtmosPipeColor
- uid: 3127
components:
- rot: -1.5707963267948966 rad
@@ -70398,14 +70747,6 @@ entities:
type: Transform
- color: '#0335FCFF'
type: AtmosPipeColor
- - uid: 3130
- components:
- - rot: -1.5707963267948966 rad
- pos: -54.5,-5.5
- parent: 30
- type: Transform
- - color: '#FF1212FF'
- type: AtmosPipeColor
- uid: 3132
components:
- rot: 1.5707963267948966 rad
@@ -70499,22 +70840,11 @@ entities:
type: Transform
- color: '#FF1212FF'
type: AtmosPipeColor
- - uid: 3152
- components:
- - rot: -1.5707963267948966 rad
- pos: -52.5,-5.5
- parent: 30
- type: Transform
- - color: '#FF1212FF'
- type: AtmosPipeColor
- - uid: 3155
+ - uid: 3153
components:
- - rot: -1.5707963267948966 rad
- pos: -53.5,-5.5
+ - pos: -5.5,-56.5
parent: 30
type: Transform
- - color: '#FF1212FF'
- type: AtmosPipeColor
- uid: 3156
components:
- pos: -44.5,-5.5
@@ -70550,22 +70880,6 @@ entities:
type: Transform
- color: '#0335FCFF'
type: AtmosPipeColor
- - uid: 3161
- components:
- - rot: -1.5707963267948966 rad
- pos: -45.5,-4.5
- parent: 30
- type: Transform
- - color: '#0335FCFF'
- type: AtmosPipeColor
- - uid: 3162
- components:
- - rot: -1.5707963267948966 rad
- pos: -46.5,-4.5
- parent: 30
- type: Transform
- - color: '#0335FCFF'
- type: AtmosPipeColor
- uid: 3164
components:
- rot: 3.141592653589793 rad
@@ -70582,38 +70896,18 @@ entities:
type: Transform
- color: '#FF1212FF'
type: AtmosPipeColor
- - uid: 3179
- components:
- - rot: -1.5707963267948966 rad
- pos: -48.5,-4.5
- parent: 30
- type: Transform
- - color: '#0335FCFF'
- type: AtmosPipeColor
- - uid: 3183
- components:
- - rot: -1.5707963267948966 rad
- pos: -48.5,-5.5
- parent: 30
- type: Transform
- - color: '#FF1212FF'
- type: AtmosPipeColor
- - uid: 3184
+ - uid: 3178
components:
- rot: -1.5707963267948966 rad
- pos: -49.5,-5.5
+ pos: -49.5,-9.5
parent: 30
type: Transform
- - color: '#FF1212FF'
- type: AtmosPipeColor
- - uid: 3189
+ - uid: 3179
components:
- rot: -1.5707963267948966 rad
- pos: -52.5,-4.5
+ pos: -48.5,-9.5
parent: 30
type: Transform
- - color: '#0335FCFF'
- type: AtmosPipeColor
- uid: 3190
components:
- pos: -51.5,10.5
@@ -70659,14 +70953,6 @@ entities:
type: Transform
- color: '#FF1212FF'
type: AtmosPipeColor
- - uid: 3208
- components:
- - rot: 3.141592653589793 rad
- pos: -45.5,-9.5
- parent: 30
- type: Transform
- - color: '#FF1212FF'
- type: AtmosPipeColor
- uid: 3209
components:
- rot: 3.141592653589793 rad
@@ -72197,14 +72483,6 @@ entities:
type: Transform
- color: '#FF1212FF'
type: AtmosPipeColor
- - uid: 3655
- components:
- - rot: -1.5707963267948966 rad
- pos: -47.5,-5.5
- parent: 30
- type: Transform
- - color: '#FF1212FF'
- type: AtmosPipeColor
- uid: 5006
components:
- pos: -19.5,33.5
@@ -72219,6 +72497,30 @@ entities:
type: Transform
- color: '#FF1212FF'
type: AtmosPipeColor
+ - uid: 5418
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -47.5,-9.5
+ parent: 30
+ type: Transform
+ - uid: 5427
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -53.5,-8.5
+ parent: 30
+ type: Transform
+ - uid: 5428
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -46.5,-9.5
+ parent: 30
+ type: Transform
+ - uid: 5494
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -53.5,-9.5
+ parent: 30
+ type: Transform
- uid: 5892
components:
- rot: -1.5707963267948966 rad
@@ -73187,6 +73489,12 @@ entities:
- pos: -11.5,-56.5
parent: 30
type: Transform
+ - uid: 7105
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -2.5,-58.5
+ parent: 30
+ type: Transform
- uid: 7216
components:
- pos: -27.5,-8.5
@@ -75915,6 +76223,12 @@ entities:
type: Transform
- color: '#0335FCFF'
type: AtmosPipeColor
+ - uid: 9341
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -49.5,-8.5
+ parent: 30
+ type: Transform
- uid: 9623
components:
- rot: -1.5707963267948966 rad
@@ -76320,6 +76634,18 @@ entities:
type: Transform
- color: '#0335FCFF'
type: AtmosPipeColor
+ - uid: 9806
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -2.5,-57.5
+ parent: 30
+ type: Transform
+ - uid: 9810
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -54.5,-9.5
+ parent: 30
+ type: Transform
- uid: 9863
components:
- rot: 1.5707963267948966 rad
@@ -83248,6 +83574,24 @@ entities:
type: AtmosPipeColor
- proto: GasPipeTJunction
entities:
+ - uid: 924
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -45.5,-5.5
+ parent: 30
+ type: Transform
+ - uid: 925
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -11.5,-56.5
+ parent: 30
+ type: Transform
+ - uid: 962
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -45.5,-9.5
+ parent: 30
+ type: Transform
- uid: 2431
components:
- rot: -1.5707963267948966 rad
@@ -84013,6 +84357,18 @@ entities:
type: Transform
- color: '#FF1212FF'
type: AtmosPipeColor
+ - uid: 3130
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -5.5,-57.5
+ parent: 30
+ type: Transform
+ - uid: 3131
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -3.5,-56.5
+ parent: 30
+ type: Transform
- uid: 3134
components:
- rot: 3.141592653589793 rad
@@ -84037,14 +84393,6 @@ entities:
type: Transform
- color: '#FF1212FF'
type: AtmosPipeColor
- - uid: 3153
- components:
- - rot: -1.5707963267948966 rad
- pos: -44.5,-4.5
- parent: 30
- type: Transform
- - color: '#0335FCFF'
- type: AtmosPipeColor
- uid: 3154
components:
- rot: -1.5707963267948966 rad
@@ -84299,6 +84647,12 @@ entities:
type: Transform
- color: '#FF1212FF'
type: AtmosPipeColor
+ - uid: 5444
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -5.5,-58.5
+ parent: 30
+ type: Transform
- uid: 6110
components:
- rot: 3.141592653589793 rad
@@ -86351,6 +86705,22 @@ entities:
type: GasValve
- color: '#FF1212FF'
type: AtmosPipeColor
+ - uid: 9807
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -5.5,-55.5
+ parent: 30
+ type: Transform
+ - open: False
+ type: GasValve
+ - uid: 9808
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -3.5,-55.5
+ parent: 30
+ type: Transform
+ - open: False
+ type: GasValve
- uid: 21274
components:
- name: emergency wastenet valve
@@ -86645,14 +87015,6 @@ entities:
type: Transform
- color: '#0335FCFF'
type: AtmosPipeColor
- - uid: 3131
- components:
- - rot: 1.5707963267948966 rad
- pos: -54.5,-4.5
- parent: 30
- type: Transform
- - color: '#0335FCFF'
- type: AtmosPipeColor
- uid: 3135
components:
- rot: 3.141592653589793 rad
@@ -86677,14 +87039,6 @@ entities:
type: Transform
- color: '#0335FCFF'
type: AtmosPipeColor
- - uid: 3221
- components:
- - rot: 1.5707963267948966 rad
- pos: -47.5,-8.5
- parent: 30
- type: Transform
- - color: '#0335FCFF'
- type: AtmosPipeColor
- uid: 3228
components:
- rot: -1.5707963267948966 rad
@@ -87102,6 +87456,12 @@ entities:
pos: -37.5,-7.5
parent: 30
type: Transform
+ - uid: 9811
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -54.5,-8.5
+ parent: 30
+ type: Transform
- uid: 11153
components:
- rot: 1.5707963267948966 rad
@@ -88158,14 +88518,6 @@ entities:
type: Transform
- color: '#FF1212FF'
type: AtmosPipeColor
- - uid: 3167
- components:
- - rot: 1.5707963267948966 rad
- pos: -55.5,-5.5
- parent: 30
- type: Transform
- - color: '#FF1212FF'
- type: AtmosPipeColor
- uid: 3170
components:
- rot: -1.5707963267948966 rad
@@ -88567,6 +88919,12 @@ entities:
pos: -37.5,-10.5
parent: 30
type: Transform
+ - uid: 10039
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -55.5,-9.5
+ parent: 30
+ type: Transform
- uid: 11094
components:
- rot: 1.5707963267948966 rad
@@ -89480,31 +89838,6 @@ entities:
- pos: 5.5,24.5
parent: 30
type: Transform
- - uid: 839
- components:
- - pos: -55.5,-6.5
- parent: 30
- type: Transform
- - uid: 841
- components:
- - pos: -57.5,-6.5
- parent: 30
- type: Transform
- - uid: 842
- components:
- - pos: -56.5,-6.5
- parent: 30
- type: Transform
- - uid: 865
- components:
- - pos: -58.5,-6.5
- parent: 30
- type: Transform
- - uid: 866
- components:
- - pos: -59.5,-6.5
- parent: 30
- type: Transform
- uid: 871
components:
- pos: -46.5,0.5
@@ -89515,31 +89848,6 @@ entities:
- pos: -59.5,9.5
parent: 30
type: Transform
- - uid: 881
- components:
- - pos: -54.5,-3.5
- parent: 30
- type: Transform
- - uid: 883
- components:
- - pos: -56.5,-3.5
- parent: 30
- type: Transform
- - uid: 884
- components:
- - pos: -55.5,-3.5
- parent: 30
- type: Transform
- - uid: 885
- components:
- - pos: -49.5,-3.5
- parent: 30
- type: Transform
- - uid: 887
- components:
- - pos: -47.5,-3.5
- parent: 30
- type: Transform
- uid: 888
components:
- pos: -46.5,-2.5
@@ -89560,14 +89868,9 @@ entities:
- pos: -46.5,2.5
parent: 30
type: Transform
- - uid: 893
- components:
- - pos: -46.5,4.5
- parent: 30
- type: Transform
- uid: 895
components:
- - pos: -46.5,5.5
+ - pos: -48.5,-7.5
parent: 30
type: Transform
- uid: 898
@@ -89575,71 +89878,16 @@ entities:
- pos: -64.5,14.5
parent: 30
type: Transform
- - uid: 915
- components:
- - pos: -55.5,6.5
- parent: 30
- type: Transform
- - uid: 916
- components:
- - pos: -56.5,6.5
- parent: 30
- type: Transform
- - uid: 917
- components:
- - pos: -47.5,6.5
- parent: 30
- type: Transform
- - uid: 918
- components:
- - pos: -48.5,6.5
- parent: 30
- type: Transform
- - uid: 919
- components:
- - pos: -49.5,6.5
- parent: 30
- type: Transform
- - uid: 920
- components:
- - pos: -54.5,6.5
- parent: 30
- type: Transform
- uid: 921
components:
- pos: -60.5,7.5
parent: 30
type: Transform
- - uid: 937
- components:
- - pos: -50.5,-6.5
- parent: 30
- type: Transform
- - uid: 945
- components:
- - pos: -51.5,-6.5
- parent: 30
- type: Transform
- - uid: 951
- components:
- - pos: -53.5,-6.5
- parent: 30
- type: Transform
- - uid: 962
- components:
- - pos: -52.5,-6.5
- parent: 30
- type: Transform
- uid: 963
components:
- pos: -60.5,8.5
parent: 30
type: Transform
- - uid: 964
- components:
- - pos: -60.5,9.5
- parent: 30
- type: Transform
- uid: 966
components:
- pos: -58.5,9.5
@@ -89720,6 +89968,11 @@ entities:
- pos: -58.5,20.5
parent: 30
type: Transform
+ - uid: 1167
+ components:
+ - pos: -61.5,-8.5
+ parent: 30
+ type: Transform
- uid: 1197
components:
- pos: -58.5,12.5
@@ -89860,34 +90113,24 @@ entities:
- pos: -62.5,24.5
parent: 30
type: Transform
- - uid: 1291
- components:
- - pos: -49.5,-6.5
- parent: 30
- type: Transform
- uid: 1292
components:
- - pos: -54.5,-6.5
- parent: 30
- type: Transform
- - uid: 1304
- components:
- - pos: -48.5,-9.5
+ - pos: -46.5,-4.5
parent: 30
type: Transform
- - uid: 1305
+ - uid: 1293
components:
- - pos: -47.5,-9.5
+ - pos: -46.5,-6.5
parent: 30
type: Transform
- - uid: 1306
+ - uid: 1311
components:
- - pos: -46.5,-9.5
+ - pos: 13.5,37.5
parent: 30
type: Transform
- - uid: 1311
+ - uid: 1312
components:
- - pos: -50.5,6.5
+ - pos: 6.5,36.5
parent: 30
type: Transform
- uid: 1321
@@ -89910,6 +90153,16 @@ entities:
- pos: -47.5,-11.5
parent: 30
type: Transform
+ - uid: 1331
+ components:
+ - pos: 7.5,37.5
+ parent: 30
+ type: Transform
+ - uid: 1332
+ components:
+ - pos: 4.5,37.5
+ parent: 30
+ type: Transform
- uid: 1344
components:
- pos: -43.5,16.5
@@ -90243,11 +90496,6 @@ entities:
- pos: 35.5,49.5
parent: 30
type: Transform
- - uid: 1954
- components:
- - pos: -62.5,-4.5
- parent: 30
- type: Transform
- uid: 1957
components:
- pos: 36.5,49.5
@@ -90475,6 +90723,11 @@ entities:
- pos: -40.5,30.5
parent: 30
type: Transform
+ - uid: 4409
+ components:
+ - pos: -46.5,-5.5
+ parent: 30
+ type: Transform
- uid: 4412
components:
- rot: -1.5707963267948966 rad
@@ -90542,6 +90795,11 @@ entities:
- pos: 41.5,22.5
parent: 30
type: Transform
+ - uid: 4882
+ components:
+ - pos: -60.5,5.5
+ parent: 30
+ type: Transform
- uid: 5018
components:
- pos: -23.5,36.5
@@ -90577,6 +90835,11 @@ entities:
- pos: -21.5,45.5
parent: 30
type: Transform
+ - uid: 5249
+ components:
+ - pos: -61.5,-9.5
+ parent: 30
+ type: Transform
- uid: 5254
components:
- pos: -7.5,28.5
@@ -90702,120 +90965,119 @@ entities:
- pos: 13.5,39.5
parent: 30
type: Transform
- - uid: 5482
- components:
- - pos: 12.5,38.5
- parent: 30
- type: Transform
- uid: 5483
components:
- - pos: 11.5,38.5
+ - pos: 11.5,37.5
parent: 30
type: Transform
- uid: 5484
components:
- - pos: 10.5,38.5
+ - pos: 3.5,38.5
parent: 30
type: Transform
- uid: 5485
components:
- - pos: 10.5,37.5
+ - pos: 5.5,37.5
parent: 30
type: Transform
- uid: 5486
components:
- - pos: 10.5,36.5
+ - pos: 6.5,37.5
parent: 30
type: Transform
- uid: 5487
components:
- - pos: 11.5,36.5
+ - pos: 13.5,38.5
parent: 30
type: Transform
- - uid: 5488
+ - uid: 5495
components:
- - pos: 7.5,36.5
+ - pos: 3.5,39.5
parent: 30
type: Transform
- - uid: 5489
+ - uid: 5496
components:
- - pos: 8.5,36.5
+ - pos: 12.5,33.5
parent: 30
type: Transform
- - uid: 5490
+ - uid: 5497
components:
- - pos: 8.5,37.5
+ - pos: 12.5,34.5
parent: 30
type: Transform
- - uid: 5491
+ - uid: 5498
components:
- - pos: 8.5,38.5
+ - pos: 12.5,29.5
parent: 30
type: Transform
- - uid: 5492
+ - uid: 5499
components:
- - pos: 7.5,38.5
+ - pos: 12.5,30.5
parent: 30
type: Transform
- - uid: 5493
+ - uid: 5504
components:
- - pos: 5.5,38.5
+ - pos: 9.5,46.5
parent: 30
type: Transform
- - uid: 5494
+ - uid: 5505
components:
- - pos: 4.5,38.5
+ - pos: 11.5,46.5
parent: 30
type: Transform
- - uid: 5495
+ - uid: 5559
components:
- - pos: 3.5,39.5
+ - pos: -5.5,50.5
parent: 30
type: Transform
- - uid: 5496
+ - uid: 5599
components:
- - pos: 12.5,33.5
+ - pos: -48.5,4.5
parent: 30
type: Transform
- - uid: 5497
+ - uid: 5600
components:
- - pos: 12.5,34.5
+ - pos: -57.5,5.5
parent: 30
type: Transform
- - uid: 5498
+ - uid: 5636
components:
- - pos: 12.5,29.5
+ - pos: 4.5,-40.5
parent: 30
type: Transform
- - uid: 5499
+ - uid: 5692
components:
- - pos: 12.5,30.5
+ - pos: -56.5,5.5
parent: 30
type: Transform
- - uid: 5504
+ - uid: 5693
components:
- - pos: 9.5,46.5
+ - pos: -60.5,4.5
parent: 30
type: Transform
- - uid: 5505
+ - uid: 5694
components:
- - pos: 11.5,46.5
+ - pos: -49.5,4.5
parent: 30
type: Transform
- - uid: 5559
+ - uid: 5695
components:
- - pos: -5.5,50.5
+ - pos: -47.5,4.5
parent: 30
type: Transform
- - uid: 5600
+ - uid: 5696
components:
- - rot: -1.5707963267948966 rad
- pos: 11.5,40.5
+ - pos: -54.5,5.5
parent: 30
type: Transform
- - uid: 5636
+ - uid: 5697
components:
- - pos: 4.5,-40.5
+ - pos: -55.5,5.5
+ parent: 30
+ type: Transform
+ - uid: 5699
+ components:
+ - pos: -50.5,4.5
parent: 30
type: Transform
- uid: 5732
@@ -91483,39 +91745,34 @@ entities:
- pos: 10.5,-1.5
parent: 30
type: Transform
- - uid: 8393
- components:
- - pos: 3.5,-26.5
- parent: 30
- type: Transform
- - uid: 8394
- components:
- - pos: 0.5,-26.5
- parent: 30
- type: Transform
- - uid: 8395
+ - uid: 8386
components:
- - pos: -0.5,-25.5
+ - rot: 1.5707963267948966 rad
+ pos: 3.5,-21.5
parent: 30
type: Transform
- - uid: 8396
+ - uid: 8387
components:
- - pos: -0.5,-23.5
+ - rot: 1.5707963267948966 rad
+ pos: 0.5,-21.5
parent: 30
type: Transform
- - uid: 8397
+ - uid: 8388
components:
- - pos: -0.5,-24.5
+ - rot: 1.5707963267948966 rad
+ pos: -0.5,-25.5
parent: 30
type: Transform
- - uid: 8398
+ - uid: 8389
components:
- - pos: 0.5,-21.5
+ - rot: 1.5707963267948966 rad
+ pos: -0.5,-23.5
parent: 30
type: Transform
- - uid: 8399
+ - uid: 8392
components:
- - pos: 3.5,-21.5
+ - rot: 1.5707963267948966 rad
+ pos: 1.5,-26.5
parent: 30
type: Transform
- uid: 8418
@@ -91689,11 +91946,6 @@ entities:
- pos: 5.5,-37.5
parent: 30
type: Transform
- - uid: 8810
- components:
- - pos: -50.5,-3.5
- parent: 30
- type: Transform
- uid: 8830
components:
- pos: -63.5,12.5
@@ -91942,6 +92194,11 @@ entities:
- pos: -2.5,-56.5
parent: 30
type: Transform
+ - uid: 9185
+ components:
+ - pos: 4.5,-24.5
+ parent: 30
+ type: Transform
- uid: 9201
components:
- pos: 47.5,11.5
@@ -92019,7 +92276,7 @@ entities:
type: Transform
- uid: 9662
components:
- - pos: -57.5,-3.5
+ - pos: 12.5,37.5
parent: 30
type: Transform
- uid: 9682
@@ -92027,29 +92284,14 @@ entities:
- pos: 1.5,-55.5
parent: 30
type: Transform
- - uid: 9800
- components:
- - pos: -36.5,-7.5
- parent: 30
- type: Transform
- - uid: 9802
- components:
- - pos: -60.5,-6.5
- parent: 30
- type: Transform
- - uid: 9803
- components:
- - pos: -60.5,-5.5
- parent: 30
- type: Transform
- - uid: 9804
+ - uid: 9719
components:
- - pos: -60.5,-4.5
+ - pos: 12.5,36.5
parent: 30
type: Transform
- - uid: 9810
+ - uid: 9800
components:
- - pos: -57.5,6.5
+ - pos: -36.5,-7.5
parent: 30
type: Transform
- uid: 9814
@@ -92157,6 +92399,41 @@ entities:
- pos: -4.5,-42.5
parent: 30
type: Transform
+ - uid: 10068
+ components:
+ - pos: -48.5,-10.5
+ parent: 30
+ type: Transform
+ - uid: 10069
+ components:
+ - pos: -49.5,-10.5
+ parent: 30
+ type: Transform
+ - uid: 10070
+ components:
+ - pos: -50.5,-10.5
+ parent: 30
+ type: Transform
+ - uid: 10074
+ components:
+ - pos: -54.5,-10.5
+ parent: 30
+ type: Transform
+ - uid: 10075
+ components:
+ - pos: -55.5,-10.5
+ parent: 30
+ type: Transform
+ - uid: 10076
+ components:
+ - pos: -56.5,-10.5
+ parent: 30
+ type: Transform
+ - uid: 10077
+ components:
+ - pos: -57.5,-10.5
+ parent: 30
+ type: Transform
- uid: 10137
components:
- pos: -18.5,-49.5
@@ -92237,11 +92514,6 @@ entities:
- pos: -62.5,8.5
parent: 30
type: Transform
- - uid: 10226
- components:
- - pos: -62.5,-5.5
- parent: 30
- type: Transform
- uid: 10227
components:
- pos: -37.5,66.5
@@ -92279,7 +92551,7 @@ entities:
type: Transform
- uid: 10234
components:
- - pos: -62.5,-3.5
+ - pos: -57.5,-7.5
parent: 30
type: Transform
- uid: 10235
@@ -92297,6 +92569,12 @@ entities:
- pos: -33.5,65.5
parent: 30
type: Transform
+ - uid: 10288
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 2.5,-21.5
+ parent: 30
+ type: Transform
- uid: 10396
components:
- pos: 23.5,-16.5
@@ -92337,15 +92615,21 @@ entities:
- pos: -32.5,-67.5
parent: 30
type: Transform
- - uid: 11197
+ - uid: 10738
components:
- rot: 1.5707963267948966 rad
- pos: 26.5,-12.5
+ pos: 2.5,-26.5
parent: 30
type: Transform
- - uid: 11228
+ - uid: 11194
components:
- - pos: -0.5,-22.5
+ - pos: -56.5,-7.5
+ parent: 30
+ type: Transform
+ - uid: 11197
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 26.5,-12.5
parent: 30
type: Transform
- uid: 11257
@@ -92358,6 +92642,44 @@ entities:
- pos: -16.5,-45.5
parent: 30
type: Transform
+ - uid: 11293
+ components:
+ - pos: -55.5,-7.5
+ parent: 30
+ type: Transform
+ - uid: 11294
+ components:
+ - pos: -54.5,-7.5
+ parent: 30
+ type: Transform
+ - uid: 11295
+ components:
+ - pos: -50.5,-7.5
+ parent: 30
+ type: Transform
+ - uid: 11296
+ components:
+ - pos: -49.5,-7.5
+ parent: 30
+ type: Transform
+ - uid: 11297
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 1.5,-21.5
+ parent: 30
+ type: Transform
+ - uid: 11298
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -0.5,-22.5
+ parent: 30
+ type: Transform
+ - uid: 11580
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -0.5,-24.5
+ parent: 30
+ type: Transform
- uid: 11605
components:
- pos: 24.5,-0.5
@@ -92383,6 +92705,12 @@ entities:
- pos: 33.5,-15.5
parent: 30
type: Transform
+ - uid: 11680
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 3.5,-26.5
+ parent: 30
+ type: Transform
- uid: 11688
components:
- pos: 23.5,-8.5
@@ -92420,6 +92748,12 @@ entities:
- pos: 37.5,-4.5
parent: 30
type: Transform
+ - uid: 11994
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 0.5,-26.5
+ parent: 30
+ type: Transform
- uid: 12025
components:
- pos: 36.5,-4.5
@@ -95567,12 +95901,6 @@ entities:
- pos: 47.5,10.5
parent: 30
type: Transform
- - uid: 10223
- components:
- - rot: 3.141592653589793 rad
- pos: -62.5,-6.5
- parent: 30
- type: Transform
- uid: 10225
components:
- pos: -62.5,9.5
@@ -95898,7 +96226,7 @@ entities:
type: Transform
- uid: 21004
components:
- - pos: -7.4859223,-7.4193463
+ - pos: -7.5315413,-7.0166345
parent: 30
type: Transform
- uid: 21005
@@ -95913,11 +96241,6 @@ entities:
- pos: -10.514338,35.553673
parent: 30
type: Transform
- - uid: 13387
- components:
- - pos: -19.510832,-44.583042
- parent: 30
- type: Transform
- proto: HandLabeler
entities:
- uid: 5691
@@ -95959,6 +96282,16 @@ entities:
type: Transform
- proto: HeatExchanger
entities:
+ - uid: 3118
+ components:
+ - pos: -3.5,-58.5
+ parent: 30
+ type: Transform
+ - uid: 3155
+ components:
+ - pos: -3.5,-57.5
+ parent: 30
+ type: Transform
- uid: 7104
components:
- pos: -11.5,-58.5
@@ -96014,11 +96347,21 @@ entities:
type: Transform
- proto: HospitalCurtainsOpen
entities:
+ - uid: 1771
+ components:
+ - pos: 29.5,42.5
+ parent: 30
+ type: Transform
- uid: 5030
components:
- pos: -28.5,39.5
parent: 30
type: Transform
+ - uid: 5490
+ components:
+ - pos: 29.5,41.5
+ parent: 30
+ type: Transform
- uid: 7740
components:
- pos: 9.5,-17.5
@@ -96067,16 +96410,6 @@ entities:
type: Transform
- proto: hydroponicsSoil
entities:
- - uid: 9179
- components:
- - pos: 0.5,-25.5
- parent: 30
- type: Transform
- - uid: 9180
- components:
- - pos: 0.5,-23.5
- parent: 30
- type: Transform
- uid: 17963
components:
- pos: -65.5,-57.5
@@ -98193,9 +98526,25 @@ entities:
type: Transform
- uid: 5704
components:
- - pos: 2.4749203,32.371178
+ - pos: 2.4391665,31.963726
parent: 30
type: Transform
+ - toggleActionEntity: 3117
+ type: HandheldLight
+ - containers:
+ cell_slot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ actions: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 3117
+ type: ContainerContainer
+ - canCollide: True
+ type: Physics
+ - type: ActionsContainer
- uid: 7472
components:
- rot: -1.5707963267948966 rad
@@ -99801,50 +100150,6 @@ entities:
- pos: -22.54349,53.796127
parent: 30
type: Transform
-- proto: MagazineRifle
- entities:
- - uid: 239
- components:
- - pos: -41.470932,56.67169
- parent: 30
- type: Transform
- - uid: 1167
- components:
- - pos: -41.627182,56.67169
- parent: 30
- type: Transform
- - uid: 1559
- components:
- - pos: -41.330307,56.67169
- parent: 30
- type: Transform
- - uid: 1995
- components:
- - pos: -41.736557,56.67169
- parent: 30
- type: Transform
-- proto: MagazineRifleRubber
- entities:
- - uid: 9361
- components:
- - pos: -41.564682,56.406067
- parent: 30
- type: Transform
- - uid: 17059
- components:
- - pos: -41.705307,56.406067
- parent: 30
- type: Transform
- - uid: 22313
- components:
- - pos: -41.392807,56.42169
- parent: 30
- type: Transform
- - uid: 22314
- components:
- - pos: -41.267807,56.42169
- parent: 30
- type: Transform
- proto: MaintenanceFluffSpawner
entities:
- uid: 9199
@@ -99897,6 +100202,11 @@ entities:
- pos: -59.5,34.5
parent: 30
type: Transform
+ - uid: 19434
+ components:
+ - pos: -49.5,5.5
+ parent: 30
+ type: Transform
- uid: 19617
components:
- pos: -27.5,-39.5
@@ -100103,26 +100413,6 @@ entities:
- pos: -21.5,-14.5
parent: 30
type: Transform
- - uid: 7146
- components:
- - pos: -31.5,-17.5
- parent: 30
- type: Transform
- - uid: 7148
- components:
- - pos: -33.5,-17.5
- parent: 30
- type: Transform
- - uid: 8273
- components:
- - pos: -34.5,-22.5
- parent: 30
- type: Transform
- - uid: 8278
- components:
- - pos: -30.5,-22.5
- parent: 30
- type: Transform
- uid: 9717
components:
- pos: -7.5,-16.5
@@ -101140,56 +101430,6 @@ entities:
- pos: -8.522221,33.58804
parent: 30
type: Transform
- - uid: 5692
- components:
- - pos: 2.5061703,31.621178
- parent: 30
- type: Transform
- - uid: 5693
- components:
- - pos: 2.5374203,31.621178
- parent: 30
- type: Transform
- - uid: 5694
- components:
- - pos: 2.5686703,31.605553
- parent: 30
- type: Transform
- - uid: 5695
- components:
- - pos: 2.5686703,31.605553
- parent: 30
- type: Transform
- - uid: 5696
- components:
- - pos: 2.5686703,31.605553
- parent: 30
- type: Transform
- - uid: 5697
- components:
- - pos: 2.5686703,31.605553
- parent: 30
- type: Transform
- - uid: 5698
- components:
- - pos: 2.5686703,31.605553
- parent: 30
- type: Transform
- - uid: 5699
- components:
- - pos: 2.5686703,31.605553
- parent: 30
- type: Transform
- - uid: 5700
- components:
- - pos: 2.5686703,31.605553
- parent: 30
- type: Transform
- - uid: 5701
- components:
- - pos: 2.5686703,31.605553
- parent: 30
- type: Transform
- uid: 6761
components:
- pos: -16.600266,-2.3333893
@@ -101710,7 +101950,7 @@ entities:
- pos: 48.5,24.5
parent: 30
type: Transform
- - uid: 8605
+ - uid: 11228
components:
- pos: 4.5,-29.5
parent: 30
@@ -101755,13 +101995,6 @@ entities:
- pos: 39.5,12.5
parent: 30
type: Transform
-- proto: PlushieBee
- entities:
- - uid: 15117
- components:
- - pos: 1.7007709,-24.502272
- parent: 30
- type: Transform
- proto: PlushieCarp
entities:
- uid: 17654
@@ -102192,6 +102425,13 @@ entities:
- pos: -42.5,23.5
parent: 30
type: Transform
+- proto: PosterLegitJustAWeekAway
+ entities:
+ - uid: 1995
+ components:
+ - pos: -12.5,-21.5
+ parent: 30
+ type: Transform
- proto: PosterLegitMime
entities:
- uid: 15203
@@ -102389,14 +102629,15 @@ entities:
- pos: -24.5,-38.5
parent: 30
type: Transform
- - uid: 10088
+ - uid: 8608
components:
- - pos: -0.5,-46.5
+ - rot: 1.5707963267948966 rad
+ pos: 10.5,-21.5
parent: 30
type: Transform
- - uid: 10089
+ - uid: 10088
components:
- - pos: 4.5,-24.5
+ - pos: -0.5,-46.5
parent: 30
type: Transform
- proto: PosterLegitSafetyReport
@@ -102515,6 +102756,11 @@ entities:
type: Transform
- proto: PottedPlant21
entities:
+ - uid: 1566
+ components:
+ - pos: 7.5,36.5
+ parent: 30
+ type: Transform
- uid: 11444
components:
- pos: -26.5,-24.5
@@ -102532,6 +102778,13 @@ entities:
- pos: -10.5,37.5
parent: 30
type: Transform
+- proto: PottedPlant23
+ entities:
+ - uid: 10141
+ components:
+ - pos: -3.5,-18.5
+ parent: 30
+ type: Transform
- proto: PottedPlant5
entities:
- uid: 927
@@ -102544,6 +102797,11 @@ entities:
- pos: 0.5,33.5
parent: 30
type: Transform
+ - uid: 19433
+ components:
+ - pos: -47.5,5.5
+ parent: 30
+ type: Transform
- proto: PottedPlantBioluminscent
entities:
- uid: 3163
@@ -102741,6 +102999,11 @@ entities:
- containers:
stash: !type:ContainerSlot {}
type: ContainerContainer
+ - uid: 5443
+ components:
+ - pos: 11.5,36.5
+ parent: 30
+ type: Transform
- uid: 6529
components:
- pos: 24.5,25.5
@@ -103066,6 +103329,12 @@ entities:
- pos: 5.5,-26.5
parent: 30
type: Transform
+ - uid: 8400
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 4.5,-27.5
+ parent: 30
+ type: Transform
- uid: 10311
components:
- pos: -41.5,27.5
@@ -103096,11 +103365,6 @@ entities:
- pos: -15.5,-43.5
parent: 30
type: Transform
- - uid: 13644
- components:
- - pos: 4.5,-27.5
- parent: 30
- type: Transform
- uid: 13645
components:
- pos: 16.5,23.5
@@ -103200,6 +103464,23 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
+ - uid: 880
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -51.5,-9.5
+ parent: 30
+ type: Transform
+ - uid: 884
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -58.5,-9.5
+ parent: 30
+ type: Transform
+ - uid: 948
+ components:
+ - pos: -46.5,8.5
+ parent: 30
+ type: Transform
- uid: 3203
components:
- pos: -54.5,10.5
@@ -103465,13 +103746,6 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 4409
- components:
- - pos: -47.5,-8.5
- parent: 30
- type: Transform
- - powerLoad: 0
- type: ApcPowerReceiver
- uid: 4410
components:
- rot: -1.5707963267948966 rad
@@ -104078,6 +104352,12 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
+ - uid: 6682
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -3.5,-30.5
+ parent: 30
+ type: Transform
- uid: 7015
components:
- rot: 1.5707963267948966 rad
@@ -104327,6 +104607,12 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
+ - uid: 8397
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 3.5,-30.5
+ parent: 30
+ type: Transform
- uid: 9049
components:
- pos: -32.5,-4.5
@@ -104425,24 +104711,7 @@ entities:
type: Transform
- uid: 10072
components:
- - pos: -58.5,-4.5
- parent: 30
- type: Transform
- - uid: 10073
- components:
- - pos: -51.5,-4.5
- parent: 30
- type: Transform
- - uid: 10074
- components:
- - rot: 3.141592653589793 rad
- pos: -58.5,7.5
- parent: 30
- type: Transform
- - uid: 10075
- components:
- - rot: 3.141592653589793 rad
- pos: -51.5,7.5
+ - pos: -56.5,10.5
parent: 30
type: Transform
- uid: 10092
@@ -104655,13 +104924,6 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 10999
- components:
- - pos: 1.5,-27.5
- parent: 30
- type: Transform
- - powerLoad: 0
- type: ApcPowerReceiver
- uid: 11000
components:
- pos: 0.5,-32.5
@@ -104823,14 +105085,6 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 11232
- components:
- - rot: 1.5707963267948966 rad
- pos: -3.5,-28.5
- parent: 30
- type: Transform
- - powerLoad: 0
- type: ApcPowerReceiver
- uid: 11233
components:
- rot: -1.5707963267948966 rad
@@ -104916,13 +105170,6 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 11580
- components:
- - pos: 1.5,-22.5
- parent: 30
- type: Transform
- - powerLoad: 0
- type: ApcPowerReceiver
- uid: 11769
components:
- rot: 3.141592653589793 rad
@@ -105368,20 +105615,6 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 19571
- components:
- - pos: -53.5,-22.5
- parent: 30
- type: Transform
- - powerLoad: 0
- type: ApcPowerReceiver
- - uid: 19572
- components:
- - pos: -49.5,-22.5
- parent: 30
- type: Transform
- - powerLoad: 0
- type: ApcPowerReceiver
- uid: 19573
components:
- rot: -1.5707963267948966 rad
@@ -105414,14 +105647,6 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 19809
- components:
- - rot: 1.5707963267948966 rad
- pos: -46.5,-16.5
- parent: 30
- type: Transform
- - powerLoad: 0
- type: ApcPowerReceiver
- uid: 19810
components:
- rot: 1.5707963267948966 rad
@@ -105698,6 +105923,18 @@ entities:
pos: -9.5,-59.5
parent: 30
type: Transform
+ - uid: 3201
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -59.5,5.5
+ parent: 30
+ type: Transform
+ - uid: 3208
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -52.5,5.5
+ parent: 30
+ type: Transform
- uid: 4237
components:
- rot: -1.5707963267948966 rad
@@ -105851,14 +106088,6 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 4834
- components:
- - rot: 3.141592653589793 rad
- pos: -27.5,41.5
- parent: 30
- type: Transform
- - powerLoad: 0
- type: ApcPowerReceiver
- uid: 4839
components:
- rot: -1.5707963267948966 rad
@@ -107168,6 +107397,13 @@ entities:
- Wood
- Gold
type: MaterialStorage
+- proto: PsychBed
+ entities:
+ - uid: 6285
+ components:
+ - pos: -28.5,-0.5
+ parent: 30
+ type: Transform
- proto: Rack
entities:
- uid: 693
@@ -107180,6 +107416,11 @@ entities:
- pos: -3.5,22.5
parent: 30
type: Transform
+ - uid: 905
+ components:
+ - pos: -17.5,-32.5
+ parent: 30
+ type: Transform
- uid: 1353
components:
- pos: -38.5,24.5
@@ -107518,105 +107759,6 @@ entities:
pos: 7.5,-6.5
parent: 30
type: Transform
- - uid: 9706
- components:
- - pos: -56.5,8.5
- parent: 30
- type: Transform
- - uid: 9718
- components:
- - pos: -58.5,8.5
- parent: 30
- type: Transform
- - uid: 9719
- components:
- - pos: -57.5,8.5
- parent: 30
- type: Transform
- - uid: 10039
- components:
- - pos: -59.5,8.5
- parent: 30
- type: Transform
- - uid: 10048
- components:
- - pos: -55.5,8.5
- parent: 30
- type: Transform
- - uid: 10055
- components:
- - pos: -54.5,8.5
- parent: 30
- type: Transform
- - uid: 10056
- components:
- - pos: -53.5,8.5
- parent: 30
- type: Transform
- - uid: 10057
- components:
- - pos: -52.5,8.5
- parent: 30
- type: Transform
- - uid: 10060
- components:
- - pos: -51.5,8.5
- parent: 30
- type: Transform
- - uid: 10061
- components:
- - rot: 3.141592653589793 rad
- pos: -59.5,-5.5
- parent: 30
- type: Transform
- - uid: 10062
- components:
- - rot: 3.141592653589793 rad
- pos: -58.5,-5.5
- parent: 30
- type: Transform
- - uid: 10063
- components:
- - rot: 3.141592653589793 rad
- pos: -57.5,-5.5
- parent: 30
- type: Transform
- - uid: 10064
- components:
- - rot: 3.141592653589793 rad
- pos: -56.5,-5.5
- parent: 30
- type: Transform
- - uid: 10065
- components:
- - rot: 3.141592653589793 rad
- pos: -55.5,-5.5
- parent: 30
- type: Transform
- - uid: 10066
- components:
- - rot: 3.141592653589793 rad
- pos: -54.5,-5.5
- parent: 30
- type: Transform
- - uid: 10067
- components:
- - rot: 3.141592653589793 rad
- pos: -53.5,-5.5
- parent: 30
- type: Transform
- - uid: 10068
- components:
- - rot: 3.141592653589793 rad
- pos: -52.5,-5.5
- parent: 30
- type: Transform
- - uid: 10069
- components:
- - rot: 3.141592653589793 rad
- pos: -51.5,-5.5
- parent: 30
- type: Transform
- uid: 11435
components:
- pos: 5.5,-3.5
@@ -107652,17 +107794,6 @@ entities:
type: Transform
- proto: RailingCornerSmall
entities:
- - uid: 10070
- components:
- - rot: 1.5707963267948966 rad
- pos: -50.5,8.5
- parent: 30
- type: Transform
- - uid: 10071
- components:
- - pos: -50.5,-5.5
- parent: 30
- type: Transform
- uid: 21325
components:
- rot: 1.5707963267948966 rad
@@ -108787,6 +108918,11 @@ entities:
- pos: -22.5,7.5
parent: 30
type: Transform
+ - uid: 379
+ components:
+ - pos: -56.5,5.5
+ parent: 30
+ type: Transform
- uid: 479
components:
- pos: -64.5,12.5
@@ -108797,16 +108933,6 @@ entities:
- pos: -33.5,-61.5
parent: 30
type: Transform
- - uid: 837
- components:
- - pos: -55.5,-3.5
- parent: 30
- type: Transform
- - uid: 838
- components:
- - pos: -47.5,-3.5
- parent: 30
- type: Transform
- uid: 843
components:
- pos: -46.5,-1.5
@@ -108817,19 +108943,9 @@ entities:
- pos: -46.5,0.5
parent: 30
type: Transform
- - uid: 867
- components:
- - pos: -54.5,6.5
- parent: 30
- type: Transform
- - uid: 868
- components:
- - pos: -55.5,6.5
- parent: 30
- type: Transform
- - uid: 869
+ - uid: 872
components:
- - pos: -48.5,6.5
+ - pos: -54.5,5.5
parent: 30
type: Transform
- uid: 876
@@ -108837,11 +108953,6 @@ entities:
- pos: -60.5,8.5
parent: 30
type: Transform
- - uid: 878
- components:
- - pos: -60.5,9.5
- parent: 30
- type: Transform
- uid: 897
components:
- pos: -60.5,7.5
@@ -108849,32 +108960,12 @@ entities:
type: Transform
- uid: 902
components:
- - pos: -46.5,4.5
+ - pos: -48.5,4.5
parent: 30
type: Transform
- uid: 903
components:
- - pos: -56.5,6.5
- parent: 30
- type: Transform
- - uid: 904
- components:
- - pos: -46.5,5.5
- parent: 30
- type: Transform
- - uid: 905
- components:
- - pos: -47.5,6.5
- parent: 30
- type: Transform
- - uid: 906
- components:
- - pos: -49.5,6.5
- parent: 30
- type: Transform
- - uid: 909
- components:
- - pos: -54.5,-3.5
+ - pos: -46.5,-5.5
parent: 30
type: Transform
- uid: 911
@@ -108892,6 +108983,11 @@ entities:
- pos: -46.5,-2.5
parent: 30
type: Transform
+ - uid: 930
+ components:
+ - pos: -46.5,-4.5
+ parent: 30
+ type: Transform
- uid: 932
components:
- pos: -59.5,9.5
@@ -108902,9 +108998,9 @@ entities:
- pos: -46.5,2.5
parent: 30
type: Transform
- - uid: 961
+ - uid: 952
components:
- - pos: -59.5,-6.5
+ - pos: -46.5,-6.5
parent: 30
type: Transform
- uid: 965
@@ -108947,6 +109043,21 @@ entities:
- pos: -41.5,8.5
parent: 30
type: Transform
+ - uid: 1078
+ components:
+ - pos: -56.5,-7.5
+ parent: 30
+ type: Transform
+ - uid: 1080
+ components:
+ - pos: -50.5,-7.5
+ parent: 30
+ type: Transform
+ - uid: 1082
+ components:
+ - pos: -57.5,-10.5
+ parent: 30
+ type: Transform
- uid: 1111
components:
- pos: -58.5,16.5
@@ -109102,29 +109213,14 @@ entities:
- pos: -58.5,20.5
parent: 30
type: Transform
- - uid: 1290
- components:
- - pos: -57.5,6.5
- parent: 30
- type: Transform
- - uid: 1298
- components:
- - pos: -48.5,-9.5
- parent: 30
- type: Transform
- - uid: 1299
- components:
- - pos: -46.5,-9.5
- parent: 30
- type: Transform
- - uid: 1300
+ - uid: 1291
components:
- - pos: -47.5,-9.5
+ - pos: -60.5,5.5
parent: 30
type: Transform
- - uid: 1303
+ - uid: 1305
components:
- - pos: -57.5,-3.5
+ - pos: -54.5,-7.5
parent: 30
type: Transform
- uid: 1322
@@ -109204,11 +109300,6 @@ entities:
- pos: -48.5,34.5
parent: 30
type: Transform
- - uid: 1538
- components:
- - pos: -50.5,-6.5
- parent: 30
- type: Transform
- uid: 1549
components:
- rot: 1.5707963267948966 rad
@@ -109242,14 +109333,14 @@ entities:
- pos: -61.5,28.5
parent: 30
type: Transform
- - uid: 1565
+ - uid: 1559
components:
- - pos: -55.5,-6.5
+ - pos: 12.5,36.5
parent: 30
type: Transform
- - uid: 1566
+ - uid: 1565
components:
- - pos: -56.5,-6.5
+ - pos: 11.5,37.5
parent: 30
type: Transform
- uid: 1662
@@ -109347,6 +109438,11 @@ entities:
- pos: -29.5,44.5
parent: 30
type: Transform
+ - uid: 1772
+ components:
+ - pos: 3.5,38.5
+ parent: 30
+ type: Transform
- uid: 1776
components:
- pos: -31.5,45.5
@@ -109491,6 +109587,16 @@ entities:
- pos: -63.5,16.5
parent: 30
type: Transform
+ - uid: 1941
+ components:
+ - pos: 6.5,37.5
+ parent: 30
+ type: Transform
+ - uid: 1954
+ components:
+ - pos: 6.5,36.5
+ parent: 30
+ type: Transform
- uid: 1964
components:
- pos: 35.5,36.5
@@ -109567,19 +109673,9 @@ entities:
- pos: -50.5,70.5
parent: 30
type: Transform
- - uid: 3115
- components:
- - pos: -49.5,-6.5
- parent: 30
- type: Transform
- - uid: 3117
- components:
- - pos: -53.5,-6.5
- parent: 30
- type: Transform
- - uid: 3118
+ - uid: 2314
components:
- - pos: -54.5,-6.5
+ - pos: -55.5,-10.5
parent: 30
type: Transform
- uid: 3168
@@ -109587,34 +109683,24 @@ entities:
- pos: -63.5,12.5
parent: 30
type: Transform
- - uid: 3180
- components:
- - pos: -56.5,-3.5
- parent: 30
- type: Transform
- - uid: 3181
+ - uid: 3186
components:
- - pos: -51.5,-6.5
+ - pos: -48.5,-10.5
parent: 30
type: Transform
- - uid: 3182
+ - uid: 3199
components:
- - pos: -52.5,-6.5
+ - pos: -47.5,4.5
parent: 30
type: Transform
- - uid: 3185
+ - uid: 3513
components:
- - pos: -49.5,-3.5
+ - pos: -50.5,4.5
parent: 30
type: Transform
- uid: 3514
components:
- - pos: -57.5,-6.5
- parent: 30
- type: Transform
- - uid: 3530
- components:
- - pos: -58.5,-6.5
+ - pos: -49.5,4.5
parent: 30
type: Transform
- uid: 4824
@@ -109682,6 +109768,17 @@ entities:
- pos: -21.5,45.5
parent: 30
type: Transform
+ - uid: 5248
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 2.5,-21.5
+ parent: 30
+ type: Transform
+ - uid: 5250
+ components:
+ - pos: -56.5,-10.5
+ parent: 30
+ type: Transform
- uid: 5277
components:
- pos: -6.5,30.5
@@ -109772,6 +109869,11 @@ entities:
- pos: 0.5,38.5
parent: 30
type: Transform
+ - uid: 5417
+ components:
+ - pos: -60.5,4.5
+ parent: 30
+ type: Transform
- uid: 5423
components:
- pos: 12.5,29.5
@@ -109792,59 +109894,29 @@ entities:
- pos: 12.5,34.5
parent: 30
type: Transform
- - uid: 5427
- components:
- - pos: 11.5,36.5
- parent: 30
- type: Transform
- - uid: 5428
- components:
- - pos: 10.5,36.5
- parent: 30
- type: Transform
- - uid: 5429
- components:
- - pos: 7.5,36.5
- parent: 30
- type: Transform
- uid: 5430
components:
- - pos: 8.5,36.5
- parent: 30
- type: Transform
- - uid: 5431
- components:
- - pos: 8.5,37.5
- parent: 30
- type: Transform
- - uid: 5432
- components:
- - pos: 8.5,38.5
+ - pos: -57.5,-7.5
parent: 30
type: Transform
- uid: 5433
components:
- - pos: 7.5,38.5
+ - pos: -49.5,-7.5
parent: 30
type: Transform
- uid: 5434
components:
- - pos: 10.5,37.5
- parent: 30
- type: Transform
- - uid: 5435
- components:
- - pos: 10.5,38.5
+ - pos: -55.5,-7.5
parent: 30
type: Transform
- uid: 5436
components:
- - pos: 11.5,38.5
+ - pos: -61.5,-9.5
parent: 30
type: Transform
- uid: 5437
components:
- - pos: 12.5,38.5
+ - pos: -61.5,-8.5
parent: 30
type: Transform
- uid: 5438
@@ -109859,12 +109931,12 @@ entities:
type: Transform
- uid: 5440
components:
- - pos: 5.5,38.5
+ - pos: 12.5,37.5
parent: 30
type: Transform
- - uid: 5441
+ - uid: 5442
components:
- - pos: 4.5,38.5
+ - pos: 5.5,37.5
parent: 30
type: Transform
- uid: 5466
@@ -109877,10 +109949,14 @@ entities:
- pos: 9.5,46.5
parent: 30
type: Transform
- - uid: 5599
+ - uid: 5488
components:
- - rot: -1.5707963267948966 rad
- pos: 11.5,40.5
+ - pos: 7.5,37.5
+ parent: 30
+ type: Transform
+ - uid: 5491
+ components:
+ - pos: -54.5,-10.5
parent: 30
type: Transform
- uid: 5625
@@ -110341,6 +110417,11 @@ entities:
- pos: 38.5,16.5
parent: 30
type: Transform
+ - uid: 8273
+ components:
+ - pos: -48.5,-7.5
+ parent: 30
+ type: Transform
- uid: 8289
components:
- pos: -29.5,-24.5
@@ -110356,16 +110437,63 @@ entities:
- pos: -32.5,-61.5
parent: 30
type: Transform
+ - uid: 8377
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -0.5,-24.5
+ parent: 30
+ type: Transform
- uid: 8378
components:
- pos: 4.5,-23.5
parent: 30
type: Transform
+ - uid: 8381
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -0.5,-23.5
+ parent: 30
+ type: Transform
+ - uid: 8382
+ components:
+ - pos: 4.5,-24.5
+ parent: 30
+ type: Transform
- uid: 8385
components:
- pos: 4.5,-25.5
parent: 30
type: Transform
+ - uid: 8390
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 0.5,-21.5
+ parent: 30
+ type: Transform
+ - uid: 8391
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -0.5,-22.5
+ parent: 30
+ type: Transform
+ - uid: 8395
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -0.5,-25.5
+ parent: 30
+ type: Transform
+ - uid: 8398
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 3.5,-26.5
+ parent: 30
+ type: Transform
+ - uid: 8401
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 2.5,-26.5
+ parent: 30
+ type: Transform
- uid: 8408
components:
- pos: 15.5,-18.5
@@ -110577,6 +110705,12 @@ entities:
- pos: 5.5,-37.5
parent: 30
type: Transform
+ - uid: 8605
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 1.5,-26.5
+ parent: 30
+ type: Transform
- uid: 8829
components:
- pos: -63.5,22.5
@@ -110678,14 +110812,14 @@ entities:
pos: 6.5,-37.5
parent: 30
type: Transform
- - uid: 9041
+ - uid: 9042
components:
- - pos: -50.5,-3.5
+ - pos: -55.5,5.5
parent: 30
type: Transform
- - uid: 9042
+ - uid: 9043
components:
- - pos: -60.5,-6.5
+ - pos: -50.5,-10.5
parent: 30
type: Transform
- uid: 9092
@@ -110745,6 +110879,11 @@ entities:
- pos: -8.5,-37.5
parent: 30
type: Transform
+ - uid: 9361
+ components:
+ - pos: -49.5,-10.5
+ parent: 30
+ type: Transform
- uid: 9585
components:
- pos: -17.5,-37.5
@@ -110840,11 +110979,26 @@ entities:
- pos: -4.5,-42.5
parent: 30
type: Transform
+ - uid: 9664
+ components:
+ - pos: 4.5,37.5
+ parent: 30
+ type: Transform
- uid: 9666
components:
- pos: -20.5,-21.5
parent: 30
type: Transform
+ - uid: 9706
+ components:
+ - pos: 13.5,37.5
+ parent: 30
+ type: Transform
+ - uid: 9718
+ components:
+ - pos: 13.5,38.5
+ parent: 30
+ type: Transform
- uid: 9723
components:
- pos: -63.5,14.5
@@ -110852,7 +111006,7 @@ entities:
type: Transform
- uid: 9801
components:
- - pos: -50.5,6.5
+ - pos: -57.5,5.5
parent: 30
type: Transform
- uid: 9813
@@ -110875,14 +111029,10 @@ entities:
- pos: -30.5,-5.5
parent: 30
type: Transform
- - uid: 10076
- components:
- - pos: -60.5,-5.5
- parent: 30
- type: Transform
- - uid: 10077
+ - uid: 10089
components:
- - pos: -60.5,-4.5
+ - rot: 1.5707963267948966 rad
+ pos: 0.5,-26.5
parent: 30
type: Transform
- uid: 10090
@@ -110972,6 +111122,12 @@ entities:
- pos: 23.5,-16.5
parent: 30
type: Transform
+ - uid: 10743
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 3.5,-21.5
+ parent: 30
+ type: Transform
- uid: 11438
components:
- pos: -64.5,16.5
@@ -111025,6 +111181,12 @@ entities:
- pos: 18.5,-2.5
parent: 30
type: Transform
+ - uid: 11760
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 1.5,-21.5
+ parent: 30
+ type: Transform
- uid: 11782
components:
- pos: 33.5,-12.5
@@ -112402,20 +112564,6 @@ entities:
- pos: 39.487907,-67.53489
parent: 30
type: Transform
-- proto: RubberStampApproved
- entities:
- - uid: 379
- components:
- - pos: 2.323793,32.782013
- parent: 30
- type: Transform
-- proto: RubberStampDenied
- entities:
- - uid: 20402
- components:
- - pos: 2.683168,32.813263
- parent: 30
- type: Transform
- proto: SalvageMagnet
entities:
- uid: 2040
@@ -112612,6 +112760,11 @@ entities:
- pos: -37.50003,55.530113
parent: 30
type: Transform
+ - uid: 8384
+ components:
+ - pos: 14.431295,-25.50531
+ parent: 30
+ type: Transform
- uid: 9246
components:
- pos: 14.418909,-25.502102
@@ -112642,6 +112795,11 @@ entities:
- pos: 0.5099411,-42.56803
parent: 30
type: Transform
+ - uid: 11701
+ components:
+ - pos: 14.431295,-25.50531
+ parent: 30
+ type: Transform
- uid: 11735
components:
- pos: 19.908981,2.569995
@@ -112909,66 +113067,61 @@ entities:
- links:
- 7673
type: DeviceLinkSink
- - uid: 1076
+ - uid: 3176
components:
- - pos: -40.5,8.5
+ - pos: -42.5,38.5
parent: 30
type: Transform
- links:
- - 385
+ - 3180
type: DeviceLinkSink
- - uid: 1077
- components:
- - pos: -40.5,12.5
- parent: 30
- type: Transform
- - uid: 1078
+ - uid: 3177
components:
- - pos: -39.5,12.5
+ - pos: -40.5,38.5
parent: 30
type: Transform
- links:
- - 385
+ - 3180
type: DeviceLinkSink
- - uid: 1079
+ - uid: 3181
components:
- - pos: -41.5,12.5
+ - pos: -48.5,38.5
parent: 30
type: Transform
- links:
- - 385
+ - 3180
type: DeviceLinkSink
- - uid: 1080
+ - uid: 3182
components:
- - pos: -41.5,8.5
+ - pos: -47.5,38.5
parent: 30
type: Transform
- links:
- - 385
+ - 3180
type: DeviceLinkSink
- - uid: 1081
+ - uid: 3183
components:
- - pos: -39.5,8.5
+ - pos: -46.5,38.5
parent: 30
type: Transform
- links:
- - 385
+ - 3180
type: DeviceLinkSink
- - uid: 1082
+ - uid: 3184
components:
- - pos: -37.5,9.5
+ - pos: -44.5,38.5
parent: 30
type: Transform
- links:
- - 385
+ - 3180
type: DeviceLinkSink
- - uid: 1083
+ - uid: 3185
components:
- - pos: -37.5,11.5
+ - pos: -43.5,38.5
parent: 30
type: Transform
- links:
- - 385
+ - 3180
type: DeviceLinkSink
- uid: 3405
components:
@@ -113020,13 +113173,21 @@ entities:
- links:
- 583
type: DeviceLinkSink
- - uid: 4955
+ - uid: 5698
components:
- - pos: -22.5,40.5
+ - pos: -39.5,38.5
parent: 30
type: Transform
- links:
- - 20391
+ - 3180
+ type: DeviceLinkSink
+ - uid: 5700
+ components:
+ - pos: -38.5,38.5
+ parent: 30
+ type: Transform
+ - links:
+ - 3180
type: DeviceLinkSink
- uid: 5733
components:
@@ -113058,7 +113219,7 @@ entities:
parent: 30
type: Transform
- links:
- - 6894
+ - 8607
type: DeviceLinkSink
- uid: 6929
components:
@@ -113155,15 +113316,6 @@ entities:
- links:
- 11008
type: DeviceLinkSink
- - uid: 11680
- components:
- - rot: -1.5707963267948966 rad
- pos: 4.5,-28.5
- parent: 30
- type: Transform
- - links:
- - 11701
- type: DeviceLinkSink
- uid: 11716
components:
- pos: 26.5,-0.5
@@ -113172,15 +113324,6 @@ entities:
- links:
- 12029
type: DeviceLinkSink
- - uid: 11760
- components:
- - rot: -1.5707963267948966 rad
- pos: 4.5,-27.5
- parent: 30
- type: Transform
- - links:
- - 11701
- type: DeviceLinkSink
- uid: 11822
components:
- pos: 24.5,-0.5
@@ -113326,33 +113469,6 @@ entities:
- links:
- 21721
type: DeviceLinkSink
- - uid: 21765
- components:
- - rot: -1.5707963267948966 rad
- pos: 4.5,-29.5
- parent: 30
- type: Transform
- - links:
- - 11701
- type: DeviceLinkSink
- - uid: 21766
- components:
- - rot: -1.5707963267948966 rad
- pos: 4.5,-25.5
- parent: 30
- type: Transform
- - links:
- - 11701
- type: DeviceLinkSink
- - uid: 21767
- components:
- - rot: -1.5707963267948966 rad
- pos: 4.5,-23.5
- parent: 30
- type: Transform
- - links:
- - 11701
- type: DeviceLinkSink
- uid: 22280
components:
- pos: -13.5,-11.5
@@ -113486,27 +113602,6 @@ entities:
395:
- Pressed: Toggle
type: DeviceLinkSource
- - uid: 385
- components:
- - pos: -43.5,10.5
- parent: 30
- type: Transform
- - linkedPorts:
- 1079:
- - Pressed: Toggle
- 1078:
- - Pressed: Toggle
- 1083:
- - Pressed: Toggle
- 1082:
- - Pressed: Toggle
- 1080:
- - Pressed: Toggle
- 1076:
- - Pressed: Toggle
- 1081:
- - Pressed: Toggle
- type: DeviceLinkSource
- uid: 544
components:
- pos: -32.5,11.5
@@ -113552,15 +113647,6 @@ entities:
- pos: -39.5,9.5
parent: 30
type: Transform
- - uid: 6894
- components:
- - pos: -30.5,-3.5
- parent: 30
- type: Transform
- - linkedPorts:
- 6882:
- - Pressed: Toggle
- type: DeviceLinkSource
- uid: 8570
components:
- pos: 13.5,-38.5
@@ -113628,28 +113714,6 @@ entities:
7661:
- Pressed: Toggle
type: DeviceLinkSource
- - uid: 10141
- components:
- - pos: -17.5,-33.5
- parent: 30
- type: Transform
- - linkedPorts:
- 9405:
- - Pressed: Toggle
- 9404:
- - Pressed: Toggle
- type: DeviceLinkSource
- - uid: 10288
- components:
- - pos: -22.5,-45.5
- parent: 30
- type: Transform
- - linkedPorts:
- 9405:
- - Pressed: Toggle
- 9404:
- - Pressed: Toggle
- type: DeviceLinkSource
- uid: 11008
components:
- pos: -44.5,33.5
@@ -113683,17 +113747,6 @@ entities:
11682:
- Pressed: Toggle
type: DeviceLinkSource
- - uid: 11994
- components:
- - pos: 37.5,-4.5
- parent: 30
- type: Transform
- - linkedPorts:
- 11923:
- - Pressed: Toggle
- 11995:
- - Pressed: Toggle
- type: DeviceLinkSource
- uid: 12029
components:
- pos: 25.5,1.5
@@ -113707,17 +113760,6 @@ entities:
11716:
- Pressed: Toggle
type: DeviceLinkSource
- - uid: 12063
- components:
- - pos: 36.5,-1.5
- parent: 30
- type: Transform
- - linkedPorts:
- 12099:
- - Pressed: Toggle
- 12059:
- - Pressed: Toggle
- type: DeviceLinkSource
- uid: 12915
components:
- pos: 39.5,11.5
@@ -113801,15 +113843,6 @@ entities:
14512:
- Pressed: Toggle
type: DeviceLinkSource
- - uid: 20391
- components:
- - pos: -21.5,38.5
- parent: 30
- type: Transform
- - linkedPorts:
- 4955:
- - Pressed: Toggle
- type: DeviceLinkSource
- uid: 20392
components:
- pos: -13.5,37.5
@@ -113888,6 +113921,31 @@ entities:
type: DeviceLinkSource
- proto: SignalButtonDirectional
entities:
+ - uid: 3180
+ components:
+ - pos: -37.5,45.5
+ parent: 30
+ type: Transform
+ - linkedPorts:
+ 5700:
+ - Pressed: Toggle
+ 5698:
+ - Pressed: Toggle
+ 3177:
+ - Pressed: Toggle
+ 3176:
+ - Pressed: Toggle
+ 3185:
+ - Pressed: Toggle
+ 3184:
+ - Pressed: Toggle
+ 3183:
+ - Pressed: Toggle
+ 3182:
+ - Pressed: Toggle
+ 3181:
+ - Pressed: Toggle
+ type: DeviceLinkSource
- uid: 7673
components:
- rot: 3.141592653589793 rad
@@ -113908,6 +113966,80 @@ entities:
899:
- Pressed: Toggle
type: DeviceLinkSource
+ - uid: 8393
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -26.5,-48.5
+ parent: 30
+ type: Transform
+ - linkedPorts:
+ 9404:
+ - Pressed: Toggle
+ 9405:
+ - Pressed: Toggle
+ type: DeviceLinkSource
+ - uid: 8607
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -26.5,-1.5
+ parent: 30
+ type: Transform
+ - linkedPorts:
+ 6882:
+ - Pressed: Toggle
+ type: DeviceLinkSource
+ - uid: 8609
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -22.5,-45.5
+ parent: 30
+ type: Transform
+ - state: True
+ type: SignalSwitch
+ - linkedPorts:
+ 9405:
+ - Pressed: Toggle
+ 9404:
+ - Pressed: Toggle
+ type: DeviceLinkSource
+ - type: ItemCooldown
+ - uid: 8610
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 36.5,-1.5
+ parent: 30
+ type: Transform
+ - linkedPorts:
+ 12099:
+ - Pressed: Toggle
+ 11923:
+ - Pressed: Toggle
+ type: DeviceLinkSource
+ - uid: 8863
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 36.5,-7.5
+ parent: 30
+ type: Transform
+ - linkedPorts:
+ 12059:
+ - Pressed: Toggle
+ 11995:
+ - Pressed: Toggle
+ type: DeviceLinkSource
+ - uid: 9184
+ components:
+ - pos: 7.5,-22.5
+ parent: 30
+ type: Transform
+ - linkedPorts:
+ 9190:
+ - Pressed: Toggle
+ 9189:
+ - Pressed: Toggle
+ 9188:
+ - Pressed: Toggle
+ type: DeviceLinkSource
- uid: 16041
components:
- rot: -1.5707963267948966 rad
@@ -114021,14 +114153,14 @@ entities:
type: Transform
- proto: SignChapel
entities:
- - uid: 17624
+ - uid: 9179
components:
- - pos: -63.5,-36.5
+ - pos: -47.5,-10.5
parent: 30
type: Transform
- - uid: 17625
+ - uid: 17624
components:
- - pos: -46.5,-10.5
+ - pos: -63.5,-36.5
parent: 30
type: Transform
- proto: SignChem
@@ -114156,6 +114288,11 @@ entities:
pos: -47.5,-21.5
parent: 30
type: Transform
+ - uid: 19436
+ components:
+ - pos: -47.5,-12.5
+ parent: 30
+ type: Transform
- proto: SignDirectionalCryo
entities:
- uid: 15234
@@ -114596,14 +114733,14 @@ entities:
type: Transform
- proto: SignEscapePods
entities:
- - uid: 1308
+ - uid: 3699
components:
- - pos: -47.5,-10.5
+ - pos: 26.5,41.5
parent: 30
type: Transform
- - uid: 3699
+ - uid: 19435
components:
- - pos: 26.5,41.5
+ - pos: -47.5,-20.5
parent: 30
type: Transform
- proto: SignEVA
@@ -114625,11 +114762,6 @@ entities:
- pos: -20.5,-23.5
parent: 30
type: Transform
- - uid: 9798
- components:
- - pos: -29.5,-4.5
- parent: 30
- type: Transform
- uid: 16966
components:
- pos: -20.5,-11.5
@@ -114818,6 +114950,13 @@ entities:
- pos: -30.5,-9.5
parent: 30
type: Transform
+- proto: SignPsychology
+ entities:
+ - uid: 873
+ components:
+ - pos: -29.5,-4.5
+ parent: 30
+ type: Transform
- proto: SignRadiationMed
entities:
- uid: 5666
@@ -115029,6 +115168,21 @@ entities:
type: Transform
- proto: SignSpace
entities:
+ - uid: 385
+ components:
+ - pos: -51.5,6.5
+ parent: 30
+ type: Transform
+ - uid: 1294
+ components:
+ - pos: -58.5,-7.5
+ parent: 30
+ type: Transform
+ - uid: 1306
+ components:
+ - pos: -51.5,-7.5
+ parent: 30
+ type: Transform
- uid: 3501
components:
- pos: -58.5,12.5
@@ -115054,6 +115208,11 @@ entities:
- pos: -29.5,-21.5
parent: 30
type: Transform
+ - uid: 10071
+ components:
+ - pos: -58.5,6.5
+ parent: 30
+ type: Transform
- uid: 11863
components:
- pos: 36.5,-4.5
@@ -115183,12 +115342,6 @@ entities:
pos: -25.5,-17.5
parent: 30
type: Transform
- - uid: 9185
- components:
- - rot: -1.5707963267948966 rad
- pos: 3.5,-22.5
- parent: 30
- type: Transform
- uid: 11029
components:
- rot: 1.5707963267948966 rad
@@ -115290,6 +115443,36 @@ entities:
pos: 18.5,14.5
parent: 30
type: Transform
+- proto: SmartFridge
+ entities:
+ - uid: 315
+ components:
+ - flags: SessionSpecific
+ type: MetaData
+ - pos: -18.5,9.5
+ parent: 30
+ type: Transform
+ - uid: 6666
+ components:
+ - flags: SessionSpecific
+ type: MetaData
+ - pos: -10.5,-10.5
+ parent: 30
+ type: Transform
+ - uid: 7149
+ components:
+ - flags: SessionSpecific
+ type: MetaData
+ - pos: -25.5,-21.5
+ parent: 30
+ type: Transform
+ - uid: 9667
+ components:
+ - flags: SessionSpecific
+ type: MetaData
+ - pos: -9.5,-21.5
+ parent: 30
+ type: Transform
- proto: SMESBasic
entities:
- uid: 5472
@@ -116871,6 +117054,13 @@ entities:
- pos: -22.5,-5.5
parent: 30
type: Transform
+- proto: SpawnMobRaccoonMorticia
+ entities:
+ - uid: 8383
+ components:
+ - pos: 26.5,1.5
+ parent: 30
+ type: Transform
- proto: SpawnMobShiva
entities:
- uid: 4405
@@ -117327,34 +117517,6 @@ entities:
- pos: -31.5,59.5
parent: 30
type: Transform
-- proto: SpawnPointSeniorEngineer
- entities:
- - uid: 20795
- components:
- - pos: -23.5,-40.5
- parent: 30
- type: Transform
-- proto: SpawnPointSeniorOfficer
- entities:
- - uid: 20797
- components:
- - pos: -28.5,59.5
- parent: 30
- type: Transform
-- proto: SpawnPointSeniorPhysician
- entities:
- - uid: 20796
- components:
- - pos: -25.5,-18.5
- parent: 30
- type: Transform
-- proto: SpawnPointSeniorResearcher
- entities:
- - uid: 20794
- components:
- - pos: 21.5,12.5
- parent: 30
- type: Transform
- proto: SpawnPointServiceWorker
entities:
- uid: 20889
@@ -120408,6 +120570,16 @@ entities:
- pos: -51.5,-46.5
parent: 30
type: Transform
+ - uid: 19399
+ components:
+ - pos: -49.5,5.5
+ parent: 30
+ type: Transform
+ - uid: 19400
+ components:
+ - pos: -49.5,6.5
+ parent: 30
+ type: Transform
- uid: 19528
components:
- pos: -79.5,-55.5
@@ -120683,11 +120855,6 @@ entities:
- pos: -50.5,53.5
parent: 30
type: Transform
- - uid: 6682
- components:
- - pos: -9.5,-10.5
- parent: 30
- type: Transform
- uid: 6688
components:
- pos: -7.5,-6.5
@@ -120967,11 +121134,6 @@ entities:
- pos: -39.5,56.5
parent: 30
type: Transform
- - uid: 1941
- components:
- - pos: -41.5,56.5
- parent: 30
- type: Transform
- uid: 2011
components:
- pos: -44.5,46.5
@@ -121112,6 +121274,11 @@ entities:
- pos: -36.5,-6.5
parent: 30
type: Transform
+ - uid: 8396
+ components:
+ - pos: 4.5,-28.5
+ parent: 30
+ type: Transform
- uid: 8469
components:
- pos: 16.5,-0.5
@@ -121127,14 +121294,14 @@ entities:
- pos: 18.5,-1.5
parent: 30
type: Transform
- - uid: 8609
+ - uid: 8774
components:
- - pos: 4.5,-28.5
+ - pos: -26.5,43.5
parent: 30
type: Transform
- - uid: 8610
+ - uid: 8809
components:
- - pos: 4.5,-27.5
+ - pos: -27.5,43.5
parent: 30
type: Transform
- uid: 9326
@@ -121167,6 +121334,21 @@ entities:
- pos: -31.5,-8.5
parent: 30
type: Transform
+ - uid: 9803
+ components:
+ - pos: -27.5,41.5
+ parent: 30
+ type: Transform
+ - uid: 9804
+ components:
+ - pos: -28.5,41.5
+ parent: 30
+ type: Transform
+ - uid: 9805
+ components:
+ - pos: -26.5,41.5
+ parent: 30
+ type: Transform
- uid: 10002
components:
- pos: -1.5,-45.5
@@ -121217,6 +121399,11 @@ entities:
- pos: -42.5,27.5
parent: 30
type: Transform
+ - uid: 10999
+ components:
+ - pos: 4.5,-27.5
+ parent: 30
+ type: Transform
- uid: 12699
components:
- pos: 14.5,13.5
@@ -121229,16 +121416,6 @@ entities:
type: Transform
- proto: TableReinforcedGlass
entities:
- - uid: 1771
- components:
- - pos: -26.5,43.5
- parent: 30
- type: Transform
- - uid: 1772
- components:
- - pos: -27.5,43.5
- parent: 30
- type: Transform
- uid: 2113
components:
- pos: -31.5,58.5
@@ -122685,45 +122862,6 @@ entities:
- Right: Reverse
- Middle: Off
type: DeviceLinkSource
- - uid: 11701
- components:
- - pos: 7.5,-26.5
- parent: 30
- type: Transform
- - linkedPorts:
- 9190:
- - Left: Open
- - Right: Open
- - Middle: Close
- 9189:
- - Left: Open
- - Right: Open
- - Middle: Close
- 9188:
- - Left: Open
- - Right: Open
- - Middle: Close
- 11760:
- - Left: Open
- - Right: Open
- - Middle: Close
- 11680:
- - Left: Open
- - Right: Open
- - Middle: Close
- 21765:
- - Left: Open
- - Right: Open
- - Middle: Close
- 21766:
- - Left: Open
- - Right: Open
- - Middle: Close
- 21767:
- - Left: Open
- - Right: Open
- - Middle: Close
- type: DeviceLinkSource
- uid: 11717
components:
- pos: 20.5,-2.5
@@ -123232,13 +123370,6 @@ entities:
- pos: -31.5,54.5
parent: 30
type: Transform
- - uid: 3176
- components:
- - flags: SessionSpecific
- type: MetaData
- - pos: -47.5,-6.5
- parent: 30
- type: Transform
- uid: 5333
components:
- flags: SessionSpecific
@@ -123313,16 +123444,6 @@ entities:
- pos: -77.5,-54.5
parent: 30
type: Transform
-- proto: VendingMachineDonut
- entities:
- - uid: 21682
- components:
- - flags: SessionSpecific
- name: Donut
- type: MetaData
- - pos: -46.5,-11.5
- parent: 30
- type: Transform
- proto: VendingMachineEngiDrobe
entities:
- uid: 9432
@@ -123528,36 +123649,6 @@ entities:
- pos: -51.5,68.5
parent: 30
type: Transform
-- proto: VendingMachineSmartFridge
- entities:
- - uid: 315
- components:
- - flags: SessionSpecific
- type: MetaData
- - pos: -18.5,9.5
- parent: 30
- type: Transform
- - uid: 6666
- components:
- - flags: SessionSpecific
- type: MetaData
- - pos: -10.5,-10.5
- parent: 30
- type: Transform
- - uid: 7149
- components:
- - flags: SessionSpecific
- type: MetaData
- - pos: -25.5,-21.5
- parent: 30
- type: Transform
- - uid: 9667
- components:
- - flags: SessionSpecific
- type: MetaData
- - pos: -9.5,-21.5
- parent: 30
- type: Transform
- proto: VendingMachineSovietSoda
entities:
- uid: 16926
@@ -123928,9 +124019,9 @@ entities:
- pos: -6.5,-16.5
parent: 30
type: Transform
- - uid: 840
+ - uid: 837
components:
- - pos: -46.5,6.5
+ - pos: -47.5,-7.5
parent: 30
type: Transform
- uid: 844
@@ -124028,11 +124119,6 @@ entities:
- pos: -50.5,11.5
parent: 30
type: Transform
- - uid: 872
- components:
- - pos: -60.5,-3.5
- parent: 30
- type: Transform
- uid: 882
components:
- pos: -65.5,24.5
@@ -124040,12 +124126,12 @@ entities:
type: Transform
- uid: 886
components:
- - pos: -48.5,-3.5
+ - pos: -51.5,3.5
parent: 30
type: Transform
- - uid: 896
+ - uid: 891
components:
- - pos: -60.5,6.5
+ - pos: -60.5,3.5
parent: 30
type: Transform
- uid: 900
@@ -124058,20 +124144,20 @@ entities:
- pos: -46.5,-3.5
parent: 30
type: Transform
- - uid: 925
+ - uid: 919
components:
- - pos: -48.5,-6.5
+ - pos: -58.5,3.5
parent: 30
type: Transform
- - uid: 926
+ - uid: 920
components:
- - rot: 3.141592653589793 rad
- pos: -36.5,-15.5
+ - pos: -53.5,3.5
parent: 30
type: Transform
- - uid: 930
+ - uid: 926
components:
- - pos: -48.5,-7.5
+ - rot: 3.141592653589793 rad
+ pos: -36.5,-15.5
parent: 30
type: Transform
- uid: 938
@@ -124139,6 +124225,11 @@ entities:
- pos: -42.5,12.5
parent: 30
type: Transform
+ - uid: 1081
+ components:
+ - pos: -61.5,-10.5
+ parent: 30
+ type: Transform
- uid: 1140
components:
- pos: -60.5,22.5
@@ -124174,29 +124265,29 @@ entities:
- pos: -58.5,26.5
parent: 30
type: Transform
- - uid: 1293
+ - uid: 1295
components:
- - pos: -46.5,-7.5
+ - pos: -51.5,-10.5
parent: 30
type: Transform
- - uid: 1294
+ - uid: 1298
components:
- - pos: -47.5,-7.5
+ - pos: -51.5,-7.5
parent: 30
type: Transform
- - uid: 1309
+ - uid: 1300
components:
- - pos: -47.5,-10.5
+ - pos: -46.5,-7.5
parent: 30
type: Transform
- - uid: 1310
+ - uid: 1303
components:
- - pos: -46.5,-10.5
+ - pos: -60.5,9.5
parent: 30
type: Transform
- - uid: 1312
+ - uid: 1309
components:
- - pos: -53.5,-3.5
+ - pos: -47.5,-10.5
parent: 30
type: Transform
- uid: 1320
@@ -125349,6 +125440,26 @@ entities:
- pos: -42.5,63.5
parent: 30
type: Transform
+ - uid: 2315
+ components:
+ - pos: -51.5,6.5
+ parent: 30
+ type: Transform
+ - uid: 3200
+ components:
+ - pos: -51.5,5.5
+ parent: 30
+ type: Transform
+ - uid: 3506
+ components:
+ - pos: -51.5,4.5
+ parent: 30
+ type: Transform
+ - uid: 3508
+ components:
+ - pos: -46.5,4.5
+ parent: 30
+ type: Transform
- uid: 3524
components:
- pos: -51.5,46.5
@@ -125364,16 +125475,51 @@ entities:
- pos: -51.5,48.5
parent: 30
type: Transform
+ - uid: 3530
+ components:
+ - pos: -58.5,4.5
+ parent: 30
+ type: Transform
+ - uid: 3596
+ components:
+ - pos: -58.5,5.5
+ parent: 30
+ type: Transform
- uid: 3598
components:
- pos: -46.5,-0.5
parent: 30
type: Transform
+ - uid: 3620
+ components:
+ - pos: -53.5,4.5
+ parent: 30
+ type: Transform
+ - uid: 3655
+ components:
+ - pos: -53.5,5.5
+ parent: 30
+ type: Transform
+ - uid: 3695
+ components:
+ - pos: -60.5,6.5
+ parent: 30
+ type: Transform
+ - uid: 3711
+ components:
+ - pos: -58.5,6.5
+ parent: 30
+ type: Transform
- uid: 4411
components:
- pos: 41.5,20.5
parent: 30
type: Transform
+ - uid: 4834
+ components:
+ - pos: -53.5,6.5
+ parent: 30
+ type: Transform
- uid: 4896
components:
- pos: -22.5,29.5
@@ -125915,16 +126061,6 @@ entities:
- pos: 0.5,36.5
parent: 30
type: Transform
- - uid: 5417
- components:
- - pos: 6.5,36.5
- parent: 30
- type: Transform
- - uid: 5418
- components:
- - pos: 12.5,36.5
- parent: 30
- type: Transform
- uid: 5419
components:
- pos: 12.5,35.5
@@ -125945,19 +126081,19 @@ entities:
- pos: 12.5,32.5
parent: 30
type: Transform
- - uid: 5442
+ - uid: 5429
components:
- - pos: 3.5,38.5
+ - pos: -58.5,-7.5
parent: 30
type: Transform
- - uid: 5443
+ - uid: 5432
components:
- - pos: 6.5,38.5
+ - pos: -53.5,-7.5
parent: 30
type: Transform
- - uid: 5444
+ - uid: 5435
components:
- - pos: 13.5,38.5
+ - pos: -60.5,-7.5
parent: 30
type: Transform
- uid: 5445
@@ -126105,6 +126241,11 @@ entities:
- pos: 12.5,44.5
parent: 30
type: Transform
+ - uid: 5489
+ components:
+ - pos: 3.5,37.5
+ parent: 30
+ type: Transform
- uid: 5503
components:
- pos: 10.5,46.5
@@ -126130,6 +126271,11 @@ entities:
- pos: -16.5,41.5
parent: 30
type: Transform
+ - uid: 5702
+ components:
+ - pos: -53.5,-10.5
+ parent: 30
+ type: Transform
- uid: 5746
components:
- pos: -16.5,42.5
@@ -127193,11 +127339,6 @@ entities:
- pos: 4.5,-26.5
parent: 30
type: Transform
- - uid: 8377
- components:
- - pos: 4.5,-24.5
- parent: 30
- type: Transform
- uid: 8379
components:
- pos: 4.5,-22.5
@@ -127208,6 +127349,12 @@ entities:
- pos: 4.5,-21.5
parent: 30
type: Transform
+ - uid: 8399
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -0.5,-21.5
+ parent: 30
+ type: Transform
- uid: 8412
components:
- pos: 17.5,-12.5
@@ -127710,11 +127857,6 @@ entities:
- pos: 25.5,-35.5
parent: 30
type: Transform
- - uid: 8809
- components:
- - pos: -53.5,6.5
- parent: 30
- type: Transform
- uid: 8823
components:
- rot: 1.5707963267948966 rad
@@ -127745,11 +127887,6 @@ entities:
pos: 16.5,-33.5
parent: 30
type: Transform
- - uid: 9043
- components:
- - pos: -58.5,-3.5
- parent: 30
- type: Transform
- uid: 9069
components:
- pos: 11.5,-38.5
@@ -127938,6 +128075,12 @@ entities:
- pos: -4.5,-29.5
parent: 30
type: Transform
+ - uid: 9183
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -0.5,-26.5
+ parent: 30
+ type: Transform
- uid: 9255
components:
- pos: 23.5,-17.5
@@ -128438,11 +128581,6 @@ entities:
- pos: -18.5,-33.5
parent: 30
type: Transform
- - uid: 9661
- components:
- - pos: -58.5,6.5
- parent: 30
- type: Transform
- uid: 9663
components:
- pos: -10.5,-5.5
@@ -128471,16 +128609,6 @@ entities:
pos: -7.5,-59.5
parent: 30
type: Transform
- - uid: 9806
- components:
- - pos: -51.5,-3.5
- parent: 30
- type: Transform
- - uid: 9808
- components:
- - pos: -51.5,6.5
- parent: 30
- type: Transform
- uid: 9832
components:
- rot: 3.141592653589793 rad
@@ -128920,6 +129048,21 @@ entities:
- pos: -15.5,-52.5
parent: 30
type: Transform
+ - uid: 10208
+ components:
+ - pos: -60.5,-10.5
+ parent: 30
+ type: Transform
+ - uid: 10223
+ components:
+ - pos: -61.5,-7.5
+ parent: 30
+ type: Transform
+ - uid: 10226
+ components:
+ - pos: -58.5,-10.5
+ parent: 30
+ type: Transform
- uid: 10268
components:
- pos: -32.5,-64.5
@@ -135691,26 +135834,6 @@ entities:
- pos: 10.5,-2.5
parent: 30
type: Transform
- - uid: 8381
- components:
- - pos: 1.5,-26.5
- parent: 30
- type: Transform
- - uid: 8382
- components:
- - pos: -0.5,-26.5
- parent: 30
- type: Transform
- - uid: 8383
- components:
- - pos: -0.5,-21.5
- parent: 30
- type: Transform
- - uid: 8384
- components:
- - pos: 1.5,-21.5
- parent: 30
- type: Transform
- uid: 8403
components:
- pos: 2.5,-12.5
@@ -139395,6 +139518,26 @@ entities:
pos: -42.5,45.5
parent: 30
type: Transform
+- proto: WindoorSecureAtmosphericsLocked
+ entities:
+ - uid: 8394
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 4.5,-27.5
+ parent: 30
+ type: Transform
+ - uid: 11232
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 3.5,-29.5
+ parent: 30
+ type: Transform
+ - uid: 12003
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 4.5,-28.5
+ parent: 30
+ type: Transform
- proto: WindoorSecureBrigLocked
entities:
- uid: 2013
@@ -139453,26 +139596,6 @@ entities:
- pos: -13.5,16.5
parent: 30
type: Transform
-- proto: WindoorSecureEngineeringLocked
- entities:
- - uid: 8607
- components:
- - rot: -1.5707963267948966 rad
- pos: 4.5,-27.5
- parent: 30
- type: Transform
- - uid: 8608
- components:
- - rot: -1.5707963267948966 rad
- pos: 4.5,-28.5
- parent: 30
- type: Transform
- - uid: 22537
- components:
- - rot: -1.5707963267948966 rad
- pos: 5.5,-29.5
- parent: 30
- type: Transform
- proto: WindoorSecureHeadOfPersonnelLocked
entities:
- uid: 5409
@@ -139630,12 +139753,6 @@ entities:
pos: -49.5,52.5
parent: 30
type: Transform
- - uid: 5250
- components:
- - rot: 3.141592653589793 rad
- pos: -28.5,41.5
- parent: 30
- type: Transform
- proto: Window
entities:
- uid: 5
@@ -139913,46 +140030,6 @@ entities:
- pos: 10.5,-6.5
parent: 30
type: Transform
- - uid: 8386
- components:
- - pos: -0.5,-25.5
- parent: 30
- type: Transform
- - uid: 8387
- components:
- - pos: -0.5,-24.5
- parent: 30
- type: Transform
- - uid: 8388
- components:
- - pos: -0.5,-23.5
- parent: 30
- type: Transform
- - uid: 8389
- components:
- - pos: 0.5,-26.5
- parent: 30
- type: Transform
- - uid: 8390
- components:
- - pos: 0.5,-21.5
- parent: 30
- type: Transform
- - uid: 8391
- components:
- - pos: 3.5,-26.5
- parent: 30
- type: Transform
- - uid: 8392
- components:
- - pos: 3.5,-21.5
- parent: 30
- type: Transform
- - uid: 8863
- components:
- - pos: -0.5,-22.5
- parent: 30
- type: Transform
- uid: 9368
components:
- pos: -20.5,-40.5
@@ -140193,18 +140270,6 @@ entities:
pos: -5.5,23.5
parent: 30
type: Transform
- - uid: 5248
- components:
- - rot: 3.141592653589793 rad
- pos: -27.5,41.5
- parent: 30
- type: Transform
- - uid: 5249
- components:
- - rot: 3.141592653589793 rad
- pos: -26.5,41.5
- parent: 30
- type: Transform
- uid: 9669
components:
- rot: 3.141592653589793 rad
@@ -141066,11 +141131,6 @@ entities:
pos: -18.5,42.5
parent: 30
type: Transform
- - uid: 22540
- components:
- - pos: 4.5,-28.5
- parent: 30
- type: Transform
- proto: Wirecutter
entities:
- uid: 21096
diff --git a/Resources/Maps/nukieplanet.yml b/Resources/Maps/nukieplanet.yml
index ba5caace349..b6927d38087 100644
--- a/Resources/Maps/nukieplanet.yml
+++ b/Resources/Maps/nukieplanet.yml
@@ -15,11 +15,11 @@ tilemap:
82: FloorShuttleRed
85: FloorSnow
87: FloorSteel
- 101: FloorTechMaint
- 105: FloorWhite
- 115: FloorWood
- 117: Lattice
- 118: Plating
+ 102: FloorTechMaint
+ 106: FloorWhite
+ 116: FloorWood
+ 118: Lattice
+ 119: Plating
entities:
- proto: ""
entities:
@@ -36,31 +36,31 @@ entities:
- chunks:
-1,-1:
ind: -1,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAATQAAAAAATQAAAAAATQAAAAAAVQAAAAAKVQAAAAAAdgAAAAAAGwAAAAACaQAAAAADaQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAATQAAAAAATQAAAAAATQAAAAAAVQAAAAAAVQAAAAAAdgAAAAAAGwAAAAABaQAAAAADVwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAATQAAAAAATQAAAAAATQAAAAAAVQAAAAAAVQAAAAAAdgAAAAAAGwAAAAAAaQAAAAACaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAATQAAAAAATQAAAAAATQAAAAAAVQAAAAAAVQAAAAAAdgAAAAAAGwAAAAAAGwAAAAADGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAATQAAAAAATQAAAAAATQAAAAAAVQAAAAAAVQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAATQAAAAAATQAAAAAATQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAATQAAAAAATQAAAAAATQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAATQAAAAAATQAAAAAATQAAAAAAVQAAAAADVQAAAAAEVQAAAAAAVQAAAAAEDAAAAAACcwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAATQAAAAAATQAAAAAATQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAADAAAAAACcwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAATQAAAAAATQAAAAAATQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAADAAAAAACcwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAATQAAAAAATQAAAAAATQAAAAAAGwAAAAADVQAAAAAAVQAAAAAAVQAAAAALDAAAAAAADAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAATQAAAAAATQAAAAAATQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAADAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAATQAAAAAATQAAAAAATQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAADAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAATQAAAAAATQAAAAAATQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAATQAAAAAATQAAAAAATQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAADAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAATQAAAAAATQAAAAAATQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAFVQAAAAAIdgAAAAAADAAAAAAB
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAATQAAAAAATQAAAAAATQAAAAAAVQAAAAAKVQAAAAAAdwAAAAAAGwAAAAACagAAAAADagAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAATQAAAAAATQAAAAAATQAAAAAAVQAAAAAAVQAAAAAAdwAAAAAAGwAAAAABagAAAAADVwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAATQAAAAAATQAAAAAATQAAAAAAVQAAAAAAVQAAAAAAdwAAAAAAGwAAAAAAagAAAAACagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAATQAAAAAATQAAAAAATQAAAAAAVQAAAAAAVQAAAAAAdwAAAAAAGwAAAAAAGwAAAAADGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAATQAAAAAATQAAAAAATQAAAAAAVQAAAAAAVQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAATQAAAAAATQAAAAAATQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAATQAAAAAATQAAAAAATQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAATQAAAAAATQAAAAAATQAAAAAAVQAAAAADVQAAAAAEVQAAAAAAVQAAAAAEDAAAAAACdAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAATQAAAAAATQAAAAAATQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAADAAAAAACdAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAATQAAAAAATQAAAAAATQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAADAAAAAACdAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAATQAAAAAATQAAAAAATQAAAAAAGwAAAAADVQAAAAAAVQAAAAAAVQAAAAALDAAAAAAADAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAATQAAAAAATQAAAAAATQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAADAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAATQAAAAAATQAAAAAATQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAADAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAATQAAAAAATQAAAAAATQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAATQAAAAAATQAAAAAATQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAADAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAATQAAAAAATQAAAAAATQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAFVQAAAAAIdwAAAAAADAAAAAAB
version: 6
0,-1:
ind: 0,-1
- tiles: aQAAAAAAaQAAAAADdgAAAAAAaQAAAAAAaQAAAAACaQAAAAACaQAAAAADaQAAAAABGwAAAAAAGwAAAAABGwAAAAABGwAAAAABGwAAAAABGwAAAAAAGwAAAAADGwAAAAACVwAAAAAAaQAAAAADaQAAAAADaQAAAAADaQAAAAACaQAAAAAAaQAAAAADaQAAAAADGwAAAAADUgAAAAAAGwAAAAACUgAAAAAAGwAAAAADUgAAAAAAGwAAAAADGwAAAAADaQAAAAAAaQAAAAACdgAAAAAAaQAAAAADaQAAAAACaQAAAAADaQAAAAACaQAAAAACGwAAAAADUgAAAAAAGwAAAAADUgAAAAAAGwAAAAABUgAAAAAAGwAAAAABGwAAAAAAGwAAAAABGwAAAAADGwAAAAAAVwAAAAADVwAAAAACVwAAAAADaQAAAAADaQAAAAACGwAAAAABGwAAAAAAGwAAAAAAGwAAAAABGwAAAAABGwAAAAABGwAAAAAAGwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABVwAAAAABVwAAAAACaQAAAAADaQAAAAACDAAAAAACGwAAAAADGwAAAAAAGwAAAAADGwAAAAADGwAAAAACGwAAAAAAGwAAAAADVQAAAAAAVQAAAAAAaQAAAAAAVwAAAAABVwAAAAAAVwAAAAAAaQAAAAACaQAAAAAAVQAAAAAAGwAAAAADGwAAAAADUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAADAAAAAABDAAAAAADDAAAAAACDAAAAAAADAAAAAADdgAAAAAAGwAAAAABdgAAAAAADAAAAAADDAAAAAACDAAAAAAADAAAAAACDAAAAAAAGwAAAAABGwAAAAADGwAAAAABUgAAAAAAUgAAAAAAcwAAAAACcwAAAAACcwAAAAADGwAAAAAAGwAAAAABGwAAAAABGwAAAAAAGwAAAAADGwAAAAACdgAAAAAAGwAAAAACGwAAAAACGwAAAAADGwAAAAABcwAAAAAAcwAAAAACcwAAAAACcwAAAAADcwAAAAADGwAAAAAAGwAAAAAAGwAAAAACGwAAAAAAGwAAAAACGwAAAAACGwAAAAABGwAAAAADGwAAAAABGwAAAAACGwAAAAABcwAAAAAAcwAAAAABcwAAAAAAcwAAAAADcwAAAAADGwAAAAAAGwAAAAAAGwAAAAADGwAAAAAAGwAAAAABGwAAAAADdgAAAAAAGwAAAAACGwAAAAABGwAAAAABGwAAAAACDAAAAAACDAAAAAAADAAAAAACDAAAAAADDAAAAAACDAAAAAABDAAAAAACDAAAAAAADAAAAAAADAAAAAACDAAAAAADDAAAAAAADAAAAAABGwAAAAAAGwAAAAACGwAAAAACDAAAAAAADAAAAAABDAAAAAACDAAAAAAADAAAAAABDAAAAAABDAAAAAADDAAAAAAADAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAADAAAAAACcwAAAAAAcwAAAAADcwAAAAABDAAAAAACDAAAAAACDAAAAAAADAAAAAAADAAAAAADDAAAAAAADAAAAAAAUgAAAAAADAAAAAACKgAAAAAAKgAAAAAAKgAAAAAADAAAAAADcwAAAAABcwAAAAABcwAAAAADDAAAAAADDAAAAAABDAAAAAADDAAAAAACDAAAAAADDAAAAAAADAAAAAAAUgAAAAAADAAAAAAATgAAAAAAKgAAAAAADAAAAAAADAAAAAACGwAAAAAAGwAAAAACdgAAAAAADAAAAAACDAAAAAACDAAAAAACDAAAAAAADAAAAAADDAAAAAABDAAAAAACUgAAAAAADAAAAAADTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAADAAAAAAADAAAAAADDAAAAAACDAAAAAACDAAAAAACDAAAAAABDAAAAAABDAAAAAAADAAAAAACTgAAAAAATgAAAAAAKgAAAAAATgAAAAAATgAAAAAAdgAAAAAAdgAAAAAA
+ tiles: agAAAAAAagAAAAADdwAAAAAAagAAAAAAagAAAAACagAAAAACagAAAAADagAAAAABGwAAAAAAGwAAAAABGwAAAAABGwAAAAABGwAAAAABGwAAAAAAGwAAAAADGwAAAAACVwAAAAAAagAAAAADagAAAAADagAAAAADagAAAAACagAAAAAAagAAAAADagAAAAADGwAAAAADUgAAAAAAGwAAAAACUgAAAAAAGwAAAAADUgAAAAAAGwAAAAADGwAAAAADagAAAAAAagAAAAACdwAAAAAAagAAAAADagAAAAACagAAAAADagAAAAACagAAAAACGwAAAAADUgAAAAAAGwAAAAADUgAAAAAAGwAAAAABUgAAAAAAGwAAAAABGwAAAAAAGwAAAAABGwAAAAADGwAAAAAAVwAAAAADVwAAAAACVwAAAAADagAAAAADagAAAAACGwAAAAABGwAAAAAAGwAAAAAAGwAAAAABGwAAAAABGwAAAAABGwAAAAAAGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAABVwAAAAACagAAAAADagAAAAACDAAAAAACGwAAAAADGwAAAAAAGwAAAAADGwAAAAADGwAAAAACGwAAAAAAGwAAAAADVQAAAAAAVQAAAAAAagAAAAAAVwAAAAABVwAAAAAAVwAAAAAAagAAAAACagAAAAAAVQAAAAAAGwAAAAADGwAAAAADUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAADAAAAAABDAAAAAADDAAAAAACDAAAAAAADAAAAAADdwAAAAAAGwAAAAABdwAAAAAADAAAAAADDAAAAAACDAAAAAAADAAAAAACDAAAAAAAGwAAAAABGwAAAAADGwAAAAABUgAAAAAAUgAAAAAAdAAAAAACdAAAAAACdAAAAAADGwAAAAAAGwAAAAABGwAAAAABGwAAAAAAGwAAAAADGwAAAAACdwAAAAAAGwAAAAACGwAAAAACGwAAAAADGwAAAAABdAAAAAAAdAAAAAACdAAAAAACdAAAAAADdAAAAAADGwAAAAAAGwAAAAAAGwAAAAACGwAAAAAAGwAAAAACGwAAAAACGwAAAAABGwAAAAADGwAAAAABGwAAAAACGwAAAAABdAAAAAAAdAAAAAABdAAAAAAAdAAAAAADdAAAAAADGwAAAAAAGwAAAAAAGwAAAAADGwAAAAAAGwAAAAABGwAAAAADdwAAAAAAGwAAAAACGwAAAAABGwAAAAABGwAAAAACDAAAAAACDAAAAAAADAAAAAACDAAAAAADDAAAAAACDAAAAAABDAAAAAACDAAAAAAADAAAAAAADAAAAAACDAAAAAADDAAAAAAADAAAAAABGwAAAAAAGwAAAAACGwAAAAACDAAAAAAADAAAAAABDAAAAAACDAAAAAAADAAAAAABDAAAAAABDAAAAAADDAAAAAAADAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAADAAAAAACdAAAAAAAdAAAAAADdAAAAAABDAAAAAACDAAAAAACDAAAAAAADAAAAAAADAAAAAADDAAAAAAADAAAAAAAUgAAAAAADAAAAAACKgAAAAAAKgAAAAAAKgAAAAAADAAAAAADdAAAAAABdAAAAAABdAAAAAADDAAAAAADDAAAAAABDAAAAAADDAAAAAACDAAAAAADDAAAAAAADAAAAAAAUgAAAAAADAAAAAAATgAAAAAAKgAAAAAADAAAAAAADAAAAAACGwAAAAAAGwAAAAACdwAAAAAADAAAAAACDAAAAAACDAAAAAACDAAAAAAADAAAAAADDAAAAAABDAAAAAACUgAAAAAADAAAAAADTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAADAAAAAAADAAAAAADDAAAAAACDAAAAAACDAAAAAACDAAAAAABDAAAAAABDAAAAAAADAAAAAACTgAAAAAATgAAAAAAKgAAAAAATgAAAAAATgAAAAAAdwAAAAAAdwAAAAAA
version: 6
0,0:
ind: 0,0
- tiles: GwAAAAADGwAAAAACGwAAAAACDAAAAAAADAAAAAABDAAAAAABDAAAAAABDAAAAAACDAAAAAADTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAdgAAAAAAVQAAAAAGdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAACdgAAAAAADAAAAAAADAAAAAABDAAAAAABDAAAAAACDAAAAAABDAAAAAAADAAAAAACDAAAAAACVQAAAAAAVQAAAAADVQAAAAAAVQAAAAAAVQAAAAAAdgAAAAAATQAAAAAAdgAAAAAAVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAAAVQAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAAAdgAAAAAATQAAAAAAdgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAATQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAATQAAAAAATQAAAAAAVQAAAAAFVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAMVQAAAAAAVQAAAAAFVQAAAAAAVQAAAAAAVQAAAAAATQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAOQAAAAAAVQAAAAAIVQAAAAAAVQAAAAACVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAAVQAAAAAAVQAAAAAFVQAAAAAIVQAAAAAAVQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAVQAAAAAKVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAOQAAAAAAOQAAAAAAVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAATQAAAAAATQAAAAAATQAAAAAAVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAJVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAATQAAAAAATQAAAAAATQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAGVQAAAAAATQAAAAAATQAAAAAATQAAAAAAVQAAAAAMVQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAACVQAAAAAATQAAAAAATQAAAAAATQAAAAAAVQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAAJVQAAAAAAVQAAAAAFTQAAAAAATQAAAAAATQAAAAAAVQAAAAAAVQAAAAAAOQAAAAAAOQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAFVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAHVQAAAAAHVQAAAAAKVQAAAAAFVQAAAAAAVQAAAAALVQAAAAAA
+ tiles: GwAAAAADGwAAAAACGwAAAAACDAAAAAAADAAAAAABDAAAAAABDAAAAAABDAAAAAACDAAAAAADTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAdwAAAAAAVQAAAAAGdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACdwAAAAAADAAAAAAADAAAAAABDAAAAAABDAAAAAACDAAAAAABDAAAAAAADAAAAAACDAAAAAACVQAAAAAAVQAAAAADVQAAAAAAVQAAAAAAVQAAAAAAdwAAAAAATQAAAAAAdwAAAAAAVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAAAVQAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAAAdwAAAAAATQAAAAAAdwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAATQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAATQAAAAAATQAAAAAAVQAAAAAFVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAMVQAAAAAAVQAAAAAFVQAAAAAAVQAAAAAAVQAAAAAATQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAOQAAAAAAVQAAAAAIVQAAAAAAVQAAAAACVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAAVQAAAAAAVQAAAAAFVQAAAAAIVQAAAAAAVQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAVQAAAAAKVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAOQAAAAAAOQAAAAAAVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAATQAAAAAATQAAAAAATQAAAAAAVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAJVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAATQAAAAAATQAAAAAATQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAGVQAAAAAATQAAAAAATQAAAAAATQAAAAAAVQAAAAAMVQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAACVQAAAAAATQAAAAAATQAAAAAATQAAAAAAVQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAAJVQAAAAAAVQAAAAAFTQAAAAAATQAAAAAATQAAAAAAVQAAAAAAVQAAAAAAOQAAAAAAOQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAFVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAHVQAAAAAHVQAAAAAKVQAAAAAFVQAAAAAAVQAAAAALVQAAAAAA
version: 6
-1,0:
ind: -1,0
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAATQAAAAAATQAAAAAATQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAATQAAAAAATQAAAAAATQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAATQAAAAAATQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAMVQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAATQAAAAAATQAAAAAAVQAAAAAKVQAAAAAIVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAATQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAFVQAAAAAKVQAAAAAAVQAAAAAEVQAAAAAAVQAAAAAGGwAAAAADGwAAAAADGwAAAAAAdgAAAAAAGwAAAAAAGwAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAALVQAAAAAAVQAAAAAAVQAAAAAKVQAAAAAIdgAAAAAAGwAAAAABGwAAAAACGwAAAAACGwAAAAADGwAAAAACGwAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAdgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAdgAAAAAAGwAAAAABGwAAAAABVQAAAAAJVQAAAAAAVQAAAAAAVQAAAAALVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAAGTQAAAAAAGwAAAAABGwAAAAAAdgAAAAAAdgAAAAAATQAAAAAATQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAIVQAAAAADVQAAAAAATQAAAAAATQAAAAAATQAAAAAAdgAAAAAAdgAAAAAATQAAAAAATQAAAAAATQAAAAAAOQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAFdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAATQAAAAAATQAAAAAATQAAAAAAOQAAAAAAVQAAAAAAVQAAAAAEVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAMVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAATQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAMVQAAAAAAVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAATQAAAAAAVQAAAAAAVQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAGVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAATQAAAAAAVQAAAAAAVQAAAAAAOQAAAAAAOQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAKTQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAJVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAATQAAAAAATQAAAAAATQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAATQAAAAAATQAAAAAATQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAATQAAAAAATQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAMVQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAATQAAAAAATQAAAAAAVQAAAAAKVQAAAAAIVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAATQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAFVQAAAAAKVQAAAAAAVQAAAAAEVQAAAAAAVQAAAAAGGwAAAAADGwAAAAADGwAAAAAAdwAAAAAAGwAAAAAAGwAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAALVQAAAAAAVQAAAAAAVQAAAAAKVQAAAAAIdwAAAAAAGwAAAAABGwAAAAACGwAAAAACGwAAAAADGwAAAAACGwAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAdwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAdwAAAAAAGwAAAAABGwAAAAABVQAAAAAJVQAAAAAAVQAAAAAAVQAAAAALVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAAGTQAAAAAAGwAAAAABGwAAAAAAdwAAAAAAdwAAAAAATQAAAAAATQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAIVQAAAAADVQAAAAAATQAAAAAATQAAAAAATQAAAAAAdwAAAAAAdwAAAAAATQAAAAAATQAAAAAATQAAAAAAOQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAFdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAATQAAAAAATQAAAAAATQAAAAAAOQAAAAAAVQAAAAAAVQAAAAAEVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAMVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAATQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAMVQAAAAAAVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAATQAAAAAAVQAAAAAAVQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAGVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAATQAAAAAAVQAAAAAAVQAAAAAAOQAAAAAAOQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAKTQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAJVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAA
version: 6
1,-1:
ind: 1,-1
- tiles: GwAAAAADGwAAAAADGwAAAAACGwAAAAACGwAAAAAASwAAAAAASwAAAAAASwAAAAAAGwAAAAADGwAAAAACGwAAAAACGwAAAAACdgAAAAAAVQAAAAAAVQAAAAABVQAAAAACGwAAAAADGwAAAAADGwAAAAADGwAAAAAAGwAAAAADSwAAAAAASwAAAAAASwAAAAAAGwAAAAADGwAAAAACGwAAAAADGwAAAAACdgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAGwAAAAABGwAAAAADGwAAAAAAGwAAAAABGwAAAAACGwAAAAAAGwAAAAADGwAAAAADGwAAAAAAGwAAAAADGwAAAAABGwAAAAACdgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAGwAAAAADGwAAAAAAGwAAAAAAGwAAAAADGwAAAAADGwAAAAABGwAAAAACGwAAAAADGwAAAAADGwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAVQAAAAAMVQAAAAAHVQAAAAAAGwAAAAABGwAAAAAAGwAAAAADGwAAAAABGwAAAAACGwAAAAAAGwAAAAADGwAAAAACGwAAAAACGwAAAAABVQAAAAAAVQAAAAADVQAAAAAAVQAAAAACVQAAAAAAAAAAAAAAGwAAAAAAGwAAAAABGwAAAAABGwAAAAADGwAAAAABGwAAAAABGwAAAAABGwAAAAADGwAAAAABGwAAAAACVQAAAAAFVQAAAAAATQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAGwAAAAADGwAAAAABUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAGwAAAAACGwAAAAACGwAAAAACVQAAAAAAVQAAAAADVQAAAAAAVQAAAAAAVQAAAAACAAAAAAAAdgAAAAAAGwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAGwAAAAADGwAAAAADGwAAAAACVQAAAAAETQAAAAAAVQAAAAAEVQAAAAAAVQAAAAAAAAAAAAAAGwAAAAAAGwAAAAABUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAGwAAAAACGwAAAAADGwAAAAACVQAAAAAATQAAAAAATQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAdgAAAAAAGwAAAAACUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAGwAAAAAAGwAAAAADGwAAAAACVQAAAAAATQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAJVQAAAAAAdgAAAAAAGwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAGwAAAAAAGwAAAAABGwAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAdgAAAAAAGwAAAAABGwAAAAADGwAAAAAAGwAAAAAAGwAAAAABGwAAAAAAGwAAAAACGwAAAAABGwAAAAABVQAAAAAATQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAdgAAAAAAGwAAAAABGwAAAAADGwAAAAACGwAAAAACGwAAAAADGwAAAAADGwAAAAACGwAAAAAAGwAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAJVQAAAAAAVQAAAAAAdgAAAAAAdgAAAAAAGwAAAAAAGwAAAAACGwAAAAACGwAAAAAAGwAAAAABGwAAAAADGwAAAAAAGwAAAAABVQAAAAAATQAAAAAATQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAGdgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAEVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAdgAAAAAAVQAAAAAATQAAAAAAVQAAAAAEVQAAAAAAVQAAAAAATQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAATQAAAAAATQAAAAAAVQAAAAAAVQAAAAAEVQAAAAAAVQAAAAAA
+ tiles: GwAAAAADGwAAAAADGwAAAAACGwAAAAACGwAAAAAASwAAAAAASwAAAAAASwAAAAAAGwAAAAADGwAAAAACGwAAAAACGwAAAAACdwAAAAAAVQAAAAAAVQAAAAABVQAAAAACGwAAAAADGwAAAAADGwAAAAADGwAAAAAAGwAAAAADSwAAAAAASwAAAAAASwAAAAAAGwAAAAADGwAAAAACGwAAAAADGwAAAAACdwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAGwAAAAABGwAAAAADGwAAAAAAGwAAAAABGwAAAAACGwAAAAAAGwAAAAADGwAAAAADGwAAAAAAGwAAAAADGwAAAAABGwAAAAACdwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAGwAAAAADGwAAAAAAGwAAAAAAGwAAAAADGwAAAAADGwAAAAABGwAAAAACGwAAAAADGwAAAAADGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAVQAAAAAMVQAAAAAHVQAAAAAAGwAAAAABGwAAAAAAGwAAAAADGwAAAAABGwAAAAACGwAAAAAAGwAAAAADGwAAAAACGwAAAAACGwAAAAABVQAAAAAAVQAAAAADVQAAAAAAVQAAAAACVQAAAAAAAAAAAAAAGwAAAAAAGwAAAAABGwAAAAABGwAAAAADGwAAAAABGwAAAAABGwAAAAABGwAAAAADGwAAAAABGwAAAAACVQAAAAAFVQAAAAAATQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAGwAAAAADGwAAAAABUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAGwAAAAACGwAAAAACGwAAAAACVQAAAAAAVQAAAAADVQAAAAAAVQAAAAAAVQAAAAACAAAAAAAAdwAAAAAAGwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAGwAAAAADGwAAAAADGwAAAAACVQAAAAAETQAAAAAAVQAAAAAEVQAAAAAAVQAAAAAAAAAAAAAAGwAAAAAAGwAAAAABUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAGwAAAAACGwAAAAADGwAAAAACVQAAAAAATQAAAAAATQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAdwAAAAAAGwAAAAACUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAGwAAAAAAGwAAAAADGwAAAAACVQAAAAAATQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAJVQAAAAAAdwAAAAAAGwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAGwAAAAAAGwAAAAABGwAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAdwAAAAAAGwAAAAABGwAAAAADGwAAAAAAGwAAAAAAGwAAAAABGwAAAAAAGwAAAAACGwAAAAABGwAAAAABVQAAAAAATQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAdwAAAAAAGwAAAAABGwAAAAADGwAAAAACGwAAAAACGwAAAAADGwAAAAADGwAAAAACGwAAAAAAGwAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAJVQAAAAAAVQAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAACGwAAAAACGwAAAAAAGwAAAAABGwAAAAADGwAAAAAAGwAAAAABVQAAAAAATQAAAAAATQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAGdwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAEVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAdwAAAAAAVQAAAAAATQAAAAAAVQAAAAAEVQAAAAAAVQAAAAAATQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAATQAAAAAATQAAAAAAVQAAAAAAVQAAAAAEVQAAAAAAVQAAAAAA
version: 6
0,-2:
ind: 0,-2
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAKVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAACVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAFVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAAVQAAAAAAVQAAAAALVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAAVQAAAAAATQAAAAAAVQAAAAAAVQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAGVQAAAAAAVQAAAAAAVQAAAAACVQAAAAAAdgAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAdgAAAAAAVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAdgAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAdgAAAAAAVQAAAAAAVQAAAAAGVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAdgAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAdgAAAAAAVQAAAAAKVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAdgAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAdgAAAAAAVQAAAAAAVQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAAAVwAAAAABVwAAAAAAVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAVQAAAAAAaQAAAAAAaQAAAAADaQAAAAADaQAAAAADaQAAAAAAdgAAAAAAZQAAAAAAVwAAAAACVwAAAAADVwAAAAABVwAAAAABVwAAAAADdgAAAAAAGwAAAAAAGwAAAAABVQAAAAAAaQAAAAABaQAAAAABaQAAAAADaQAAAAADaQAAAAAAZQAAAAAAZQAAAAAAVwAAAAADVwAAAAAAVwAAAAABVwAAAAABVwAAAAAAdgAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAKVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAACVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAFVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAAVQAAAAAAVQAAAAALVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAAVQAAAAAATQAAAAAAVQAAAAAAVQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAGVQAAAAAAVQAAAAAAVQAAAAACVQAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAVQAAAAAAVQAAAAAGVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAVQAAAAAKVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAVQAAAAAAVQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAABVwAAAAAAVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAVQAAAAAAagAAAAAAagAAAAADagAAAAADagAAAAADagAAAAAAdwAAAAAAZgAAAAAAVwAAAAACVwAAAAADVwAAAAABVwAAAAABVwAAAAADdwAAAAAAGwAAAAAAGwAAAAABVQAAAAAAagAAAAABagAAAAABagAAAAADagAAAAADagAAAAAAZgAAAAAAZgAAAAAAVwAAAAADVwAAAAAAVwAAAAABVwAAAAABVwAAAAAAdwAAAAAA
version: 6
-1,-2:
ind: -1,-2
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAEVQAAAAAAVQAAAAAAVQAAAAAEVQAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAFVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAEVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAFVQAAAAAAVQAAAAAFVQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAATQAAAAAATQAAAAAATQAAAAAAGwAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAATQAAAAAATQAAAAAATQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAGVQAAAAAAVQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAATQAAAAAATQAAAAAATQAAAAAAVQAAAAALVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAATQAAAAAATQAAAAAATQAAAAAAVQAAAAAFVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAATQAAAAAATQAAAAAATQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAKVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAATQAAAAAATQAAAAAATQAAAAAAVQAAAAAAVQAAAAAEVQAAAAAAVQAAAAAAVQAAAAAEVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAATQAAAAAATQAAAAAATQAAAAAAVQAAAAAAVQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAATQAAAAAATQAAAAAATQAAAAAAVQAAAAAAVQAAAAAAdgAAAAAAGwAAAAABGwAAAAAAGwAAAAAC
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAEVQAAAAAAVQAAAAAAVQAAAAAEVQAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAFVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAEVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAFVQAAAAAAVQAAAAAFVQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAATQAAAAAATQAAAAAATQAAAAAAGwAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAATQAAAAAATQAAAAAATQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAGVQAAAAAAVQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAATQAAAAAATQAAAAAATQAAAAAAVQAAAAALVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAATQAAAAAATQAAAAAATQAAAAAAVQAAAAAFVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAATQAAAAAATQAAAAAATQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAKVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAATQAAAAAATQAAAAAATQAAAAAAVQAAAAAAVQAAAAAEVQAAAAAAVQAAAAAAVQAAAAAEVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAATQAAAAAATQAAAAAATQAAAAAAVQAAAAAAVQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAATQAAAAAATQAAAAAATQAAAAAAVQAAAAAAVQAAAAAAdwAAAAAAGwAAAAABGwAAAAAAGwAAAAAC
version: 6
-1,1:
ind: -1,1
@@ -68,7 +68,7 @@ entities:
version: 6
0,1:
ind: 0,1
- tiles: VQAAAAAAVQAAAAAEVQAAAAAEVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAACVQAAAAAAVQAAAAAJVQAAAAAAVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAAJVQAAAAAGVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAKVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAAAVQAAAAALVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAATQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAATQAAAAAAVQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAVQAAAAAAVQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAALVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAACVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAFVQAAAAAAVQAAAAAAVQAAAAAMVQAAAAAIVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAJVQAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAGVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAKVQAAAAACVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAADVQAAAAAJVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAA
+ tiles: VQAAAAAAVQAAAAAEVQAAAAAEVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAACVQAAAAAAVQAAAAAJVQAAAAAAVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAAJVQAAAAAGVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAKVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAAAVQAAAAALVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAATQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAATQAAAAAAVQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAVQAAAAAAVQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAALVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAACVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAFVQAAAAAAVQAAAAAAVQAAAAAMVQAAAAAIVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAJVQAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAGVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAKVQAAAAACVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAADVQAAAAAJVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAA
version: 6
1,1:
ind: 1,1
@@ -80,11 +80,11 @@ entities:
version: 6
1,-2:
ind: 1,-2
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAAVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAFVQAAAAABVQAAAAAAVQAAAAAAAAAAAAAAVQAAAAAAVQAAAAADVQAAAAAAVQAAAAAAVQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAVQAAAAAMVQAAAAAAVQAAAAALVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAKVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAFVQAAAAAAVQAAAAADVQAAAAAAVQAAAAAEVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAACVQAAAAAMVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAdgAAAAAAZQAAAAAAGwAAAAACGwAAAAADGwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAAAGwAAAAACGwAAAAABZQAAAAAAdgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAJdgAAAAAAZQAAAAAAGwAAAAADGwAAAAACGwAAAAADGwAAAAACGwAAAAACGwAAAAADGwAAAAABGwAAAAABGwAAAAABZQAAAAAAdgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAdgAAAAAAZQAAAAAAGwAAAAAAGwAAAAABGwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAACGwAAAAADGwAAAAACZQAAAAAAdgAAAAAAVQAAAAALVQAAAAAAVQAAAAAAVQAAAAAEGwAAAAACGwAAAAACGwAAAAABGwAAAAABSwAAAAAASwAAAAAASwAAAAAAGwAAAAABGwAAAAADGwAAAAACGwAAAAAAdgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAD
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAAVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAFVQAAAAABVQAAAAAAVQAAAAAAAAAAAAAAVQAAAAAAVQAAAAADVQAAAAAAVQAAAAAAVQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAVQAAAAAMVQAAAAAAVQAAAAALVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAKVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAFVQAAAAAAVQAAAAADVQAAAAAAVQAAAAAEVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAACVQAAAAAMVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAdwAAAAAAZgAAAAAAGwAAAAACGwAAAAADGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAACGwAAAAABZgAAAAAAdwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAJdwAAAAAAZgAAAAAAGwAAAAADGwAAAAACGwAAAAADGwAAAAACGwAAAAACGwAAAAADGwAAAAABGwAAAAABGwAAAAABZgAAAAAAdwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAdwAAAAAAZgAAAAAAGwAAAAAAGwAAAAABGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACGwAAAAADGwAAAAACZgAAAAAAdwAAAAAAVQAAAAALVQAAAAAAVQAAAAAAVQAAAAAEGwAAAAACGwAAAAACGwAAAAABGwAAAAABSwAAAAAASwAAAAAASwAAAAAAGwAAAAABGwAAAAADGwAAAAACGwAAAAAAdwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAD
version: 6
-2,0:
ind: -2,0
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAEVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAABTQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAFVQAAAAAATQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAETQAAAAAATQAAAAAATQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAALVQAAAAAAVQAAAAALVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAALVQAAAAAAVQAAAAAAVQAAAAABVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAEVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAEVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAABTQAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAFVQAAAAAATQAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAETQAAAAAATQAAAAAATQAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAALVQAAAAAAVQAAAAALVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAALVQAAAAAAVQAAAAAAVQAAAAABVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAEVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAA
version: 6
-2,1:
ind: -2,1
@@ -92,7 +92,7 @@ entities:
version: 6
-2,-2:
ind: -2,-2
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
2,0:
ind: 2,0
@@ -112,7 +112,7 @@ entities:
version: 6
-3,-2:
ind: -3,-2
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
0,2:
ind: 0,2
@@ -124,7 +124,7 @@ entities:
version: 6
-3,0:
ind: -3,0
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
type: MapGrid
- type: Broadphase
@@ -11048,6 +11048,13 @@ entities:
- pos: 24.5,-16.5
parent: 104
type: Transform
+- proto: PhoneInstrumentSyndicate
+ entities:
+ - uid: 1684
+ components:
+ - pos: 1.4424791,-6.340748
+ parent: 104
+ type: Transform
- proto: PianoInstrument
entities:
- uid: 2430
diff --git a/Resources/Maps/origin.yml b/Resources/Maps/origin.yml
index 14edeae3957..da4f2fde851 100644
--- a/Resources/Maps/origin.yml
+++ b/Resources/Maps/origin.yml
@@ -10,6 +10,7 @@ tilemap:
11: FloorAsteroidTile
12: FloorBar
15: FloorBlueCircuit
+ 16: FloorBoxing
18: FloorCarpetClown
23: FloorClown
27: FloorDark
@@ -26,7 +27,6 @@ tilemap:
45: FloorGrass
52: FloorGreenCircuit
56: FloorHydro
- 57: FloorIce
58: FloorKitchen
59: FloorLaundry
60: FloorLino
@@ -45,23 +45,23 @@ tilemap:
92: FloorSteelDiagonal
94: FloorSteelDirty
95: FloorSteelHerringbone
- 96: FloorSteelMini
- 97: FloorSteelMono
- 99: FloorSteelPavement
- 100: FloorSteelPavementVertical
- 101: FloorTechMaint
- 102: FloorTechMaint2
- 103: FloorTechMaint3
- 105: FloorWhite
- 108: FloorWhiteHerringbone
- 109: FloorWhiteMini
- 110: FloorWhiteMono
- 114: FloorWhitePlastic
- 115: FloorWood
- 116: FloorWoodTile
- 117: Lattice
- 118: Plating
- 119: PlatingAsteroid
+ 97: FloorSteelMini
+ 98: FloorSteelMono
+ 100: FloorSteelPavement
+ 101: FloorSteelPavementVertical
+ 102: FloorTechMaint
+ 103: FloorTechMaint2
+ 104: FloorTechMaint3
+ 106: FloorWhite
+ 109: FloorWhiteHerringbone
+ 110: FloorWhiteMini
+ 111: FloorWhiteMono
+ 115: FloorWhitePlastic
+ 116: FloorWood
+ 117: FloorWoodTile
+ 118: Lattice
+ 119: Plating
+ 120: PlatingAsteroid
entities:
- proto: ""
entities:
@@ -87,447 +87,447 @@ entities:
- chunks:
-1,-1:
ind: -1,-1
- tiles: XgAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAdgAAAAAAZAAAAAABYQAAAAABZAAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAGwAAAAACdgAAAAAAZgAAAAAAZgAAAAAAXgAAAAAAZwAAAAAAZAAAAAABYQAAAAAAZAAAAAAAdgAAAAAAXgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAGwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZwAAAAADdgAAAAAAZAAAAAADYQAAAAACZAAAAAAAZwAAAAABdgAAAAAAXgAAAAAAZQAAAAAAdgAAAAAAZQAAAAAAXgAAAAAAZwAAAAAAXgAAAAAAZQAAAAAAZQAAAAAAZwAAAAADdgAAAAAAZAAAAAABYQAAAAACZAAAAAADZQAAAAAAdgAAAAAAZwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZwAAAAABdgAAAAAAZAAAAAADYQAAAAAAZAAAAAADZQAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAZwAAAAADZwAAAAABZwAAAAAAZwAAAAAAdgAAAAAAXgAAAAAAXgAAAAAAZQAAAAAAZwAAAAADZAAAAAABYQAAAAABZAAAAAACdgAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZwAAAAABZAAAAAABYQAAAAAAZAAAAAAAGwAAAAABdgAAAAAAXgAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAZgAAAAAAZgAAAAAAXgAAAAAAZgAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAZAAAAAAAYQAAAAADZAAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAACdgAAAAAAZAAAAAAAYQAAAAACZAAAAAADdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAADXgAAAAAAVwAAAAABCwAAAAAAdgAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAdgAAAAAAZAAAAAACYQAAAAADZAAAAAAAGwAAAAABcwAAAAACcwAAAAABSgAAAAADYQAAAAAAYQAAAAAACwAAAAAAdgAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAdgAAAAAAZAAAAAABYQAAAAAAZAAAAAADGwAAAAAAcwAAAAAAcwAAAAACVwAAAAABVwAAAAACYQAAAAACCwAAAAAAdgAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAdgAAAAAAZAAAAAABYQAAAAACZAAAAAAAdgAAAAAAcwAAAAADcwAAAAADdgAAAAAAVwAAAAADYQAAAAAAVwAAAAAAdgAAAAAAJwAAAAAAJwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZAAAAAABYQAAAAACZAAAAAABdgAAAAAAcwAAAAABcwAAAAAAdgAAAAAAVwAAAAACYQAAAAABVwAAAAADdgAAAAAAdgAAAAAAGwAAAAADdgAAAAAAZwAAAAAAdgAAAAAAGwAAAAADGwAAAAAAGwAAAAAAdgAAAAAAdgAAAAAAGwAAAAACdgAAAAAAVwAAAAABSgAAAAADVwAAAAACVwAAAAAAVwAAAAAAVwAAAAACVwAAAAACVwAAAAACVwAAAAAAVwAAAAAAVwAAAAACXgAAAAAAVwAAAAADVwAAAAABVwAAAAACdgAAAAAAVwAAAAACYQAAAAADVwAAAAADVwAAAAAAVwAAAAABVwAAAAACVwAAAAADVwAAAAAAVwAAAAABVwAAAAADVwAAAAAAVwAAAAADVwAAAAADVwAAAAACVwAAAAAD
+ tiles: XgAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAdwAAAAAAZQAAAAAAYgAAAAACZQAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAdwAAAAAAZwAAAAAAZwAAAAAAXgAAAAAAaAAAAAADZQAAAAABYgAAAAAAZQAAAAABdwAAAAAAXgAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAaAAAAAADdwAAAAAAZQAAAAADYgAAAAADZQAAAAABaAAAAAACdwAAAAAAXgAAAAAAZgAAAAAAdwAAAAAAZgAAAAAAXgAAAAAAaAAAAAACXgAAAAAAZgAAAAAAZgAAAAAAaAAAAAAAdwAAAAAAZQAAAAABYgAAAAADZQAAAAABZgAAAAAAdwAAAAAAaAAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAaAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAaAAAAAABdwAAAAAAZQAAAAAAYgAAAAABZQAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAaAAAAAADaAAAAAABaAAAAAABaAAAAAACdwAAAAAAXgAAAAAAXgAAAAAAZgAAAAAAaAAAAAADZQAAAAABYgAAAAADZQAAAAADdwAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAaAAAAAAAZQAAAAACYgAAAAABZQAAAAAAGwAAAAACdwAAAAAAXgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAZwAAAAAAZwAAAAAAXgAAAAAAZwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAZQAAAAAAYgAAAAABZQAAAAABdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADdwAAAAAAZQAAAAABYgAAAAAAZQAAAAABdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABXgAAAAAAVwAAAAABCwAAAAAAdwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAdwAAAAAAZQAAAAACYgAAAAAAZQAAAAACGwAAAAAAdAAAAAADdAAAAAAASgAAAAADYgAAAAACYgAAAAAACwAAAAAAdwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAdwAAAAAAZQAAAAAAYgAAAAAAZQAAAAADGwAAAAABdAAAAAADdAAAAAADVwAAAAABVwAAAAABYgAAAAABCwAAAAAAdwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAdwAAAAAAZQAAAAADYgAAAAADZQAAAAADdwAAAAAAdAAAAAAAdAAAAAACdwAAAAAAVwAAAAAAYgAAAAAAVwAAAAABdwAAAAAAJwAAAAAAJwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZQAAAAAAYgAAAAABZQAAAAADdwAAAAAAdAAAAAACdAAAAAADdwAAAAAAVwAAAAABYgAAAAACVwAAAAADdwAAAAAAdwAAAAAAGwAAAAADdwAAAAAAaAAAAAABdwAAAAAAGwAAAAADGwAAAAACGwAAAAABdwAAAAAAdwAAAAAAGwAAAAADdwAAAAAAVwAAAAABSgAAAAACVwAAAAACVwAAAAADVwAAAAABVwAAAAAAVwAAAAAAVwAAAAABVwAAAAACVwAAAAABVwAAAAABXgAAAAAAVwAAAAABVwAAAAABVwAAAAABdwAAAAAAVwAAAAADYgAAAAADVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAADVwAAAAABVwAAAAAAVwAAAAACVwAAAAADVwAAAAABVwAAAAADVwAAAAAAVwAAAAADVwAAAAAA
version: 6
0,-1:
ind: 0,-1
- tiles: dgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAGwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAcwAAAAABcwAAAAADcwAAAAACcwAAAAADcwAAAAACcwAAAAACdgAAAAAAZwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAcwAAAAAAcwAAAAACcwAAAAAAcwAAAAACGwAAAAADcwAAAAABcwAAAAABcwAAAAABcwAAAAABcwAAAAABcwAAAAABQwAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAcwAAAAACcwAAAAAAcwAAAAACcwAAAAACdgAAAAAAcwAAAAACcwAAAAACcwAAAAABcwAAAAADcwAAAAADcwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAcwAAAAAAcwAAAAACcwAAAAABcwAAAAABdgAAAAAAcwAAAAAAcwAAAAADcwAAAAACcwAAAAADcwAAAAADdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAGwAAAAAAdgAAAAAAGwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAcwAAAAACcwAAAAADcwAAAAAAcwAAAAABcwAAAAAAcwAAAAACdgAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAABdgAAAAAAGwAAAAAAcwAAAAABcwAAAAACcwAAAAACcwAAAAADcwAAAAADcwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAcwAAAAAAcwAAAAADcwAAAAAAcwAAAAADcwAAAAABdgAAAAAAcwAAAAACcwAAAAABcwAAAAABcwAAAAABcwAAAAACcwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAAAcwAAAAABcwAAAAABcwAAAAABcwAAAAAAcwAAAAABdgAAAAAAcwAAAAADcwAAAAACcwAAAAACcwAAAAACcwAAAAABcwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAcwAAAAACcwAAAAAAcwAAAAACcwAAAAACcwAAAAABdgAAAAAAcwAAAAAAcwAAAAAAcwAAAAACcwAAAAACcwAAAAABcwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAcwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAcwAAAAADcwAAAAACcwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAABGwAAAAACGwAAAAADGwAAAAADdgAAAAAAPgAAAAAAZQAAAAAAPgAAAAAAdgAAAAAAGwAAAAABGwAAAAABdgAAAAAAdgAAAAAAGwAAAAAAdgAAAAAAVwAAAAAAVwAAAAADVwAAAAADVwAAAAABVwAAAAACVwAAAAADVwAAAAADXgAAAAAAVwAAAAADVwAAAAABVwAAAAABVwAAAAADVwAAAAACVwAAAAADVwAAAAADVwAAAAAAVwAAAAABVwAAAAACVwAAAAABVwAAAAADSgAAAAABVwAAAAADVwAAAAACVwAAAAADVwAAAAABVwAAAAAASgAAAAABVwAAAAAAVwAAAAAAVwAAAAADVwAAAAAAVwAAAAAD
+ tiles: dwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAACdAAAAAACdAAAAAACdAAAAAACdAAAAAACdAAAAAACdwAAAAAAaAAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAABdAAAAAACdAAAAAAAdAAAAAABGwAAAAADdAAAAAAAdAAAAAABdAAAAAAAdAAAAAABdAAAAAABdAAAAAACQwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdAAAAAACdAAAAAACdAAAAAADdAAAAAACdwAAAAAAdAAAAAABdAAAAAADdAAAAAACdAAAAAAAdAAAAAABdAAAAAABdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdAAAAAAAdAAAAAAAdAAAAAACdAAAAAAAdwAAAAAAdAAAAAADdAAAAAAAdAAAAAACdAAAAAADdAAAAAACdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAGwAAAAADdwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAADdAAAAAAAdAAAAAADdAAAAAABdAAAAAABdAAAAAACdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdAAAAAADdAAAAAABdAAAAAABdAAAAAABdwAAAAAAGwAAAAACdAAAAAADdAAAAAABdAAAAAAAdAAAAAACdAAAAAADdAAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAACdAAAAAABdAAAAAADdAAAAAABdAAAAAACdwAAAAAAdAAAAAAAdAAAAAACdAAAAAABdAAAAAAAdAAAAAACdAAAAAADdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABdAAAAAADdAAAAAAAdAAAAAABdAAAAAABdAAAAAACdwAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAACdAAAAAABdAAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAABdAAAAAACdAAAAAADdAAAAAADdAAAAAABdwAAAAAAdAAAAAADdAAAAAACdAAAAAAAdAAAAAAAdAAAAAADdAAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAACdAAAAAADdAAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACGwAAAAADGwAAAAAAGwAAAAAAdwAAAAAAPgAAAAAAZgAAAAAAPgAAAAAAdwAAAAAAGwAAAAABGwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACdwAAAAAAVwAAAAACVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAACVwAAAAABVwAAAAABXgAAAAAAVwAAAAABVwAAAAAAVwAAAAABVwAAAAADVwAAAAAAVwAAAAABVwAAAAADVwAAAAABVwAAAAABVwAAAAACVwAAAAADVwAAAAAASgAAAAAAVwAAAAADVwAAAAADVwAAAAABVwAAAAADVwAAAAABSgAAAAADVwAAAAADVwAAAAADVwAAAAACVwAAAAADVwAAAAAD
version: 6
-1,0:
ind: -1,0
- tiles: dgAAAAAAVwAAAAADYQAAAAABVwAAAAADdgAAAAAAGwAAAAADGwAAAAADGwAAAAACGwAAAAAAGwAAAAABGwAAAAACGwAAAAACGwAAAAABGwAAAAACdgAAAAAAGwAAAAAAdgAAAAAAVwAAAAADYQAAAAACVwAAAAADdgAAAAAAGwAAAAABGwAAAAADGwAAAAADGwAAAAABGwAAAAABGwAAAAABGwAAAAACGwAAAAABGwAAAAABdgAAAAAAGwAAAAADdgAAAAAAVwAAAAACYQAAAAADVwAAAAADVwAAAAADVwAAAAABVwAAAAAAVwAAAAACVwAAAAACVwAAAAACVwAAAAACVwAAAAACVwAAAAABVwAAAAACVwAAAAAAVwAAAAACdgAAAAAAVwAAAAACSgAAAAAAXgAAAAAAVwAAAAABVwAAAAABVwAAAAAAVwAAAAACVwAAAAACVwAAAAABVwAAAAACVwAAAAADVwAAAAABVwAAAAADVwAAAAACVwAAAAACdgAAAAAAVwAAAAACYQAAAAACVwAAAAACdgAAAAAAGwAAAAADdgAAAAAAVwAAAAACVwAAAAACVwAAAAADdgAAAAAALQAAAAAALQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACYQAAAAABXgAAAAAAdgAAAAAAVwAAAAADVwAAAAACVwAAAAABVwAAAAAAXgAAAAAAVwAAAAAAVwAAAAAAVwAAAAADVwAAAAACdgAAAAAAOgAAAAAAVwAAAAABVwAAAAADYQAAAAACVwAAAAACLQAAAAAAVwAAAAABVwAAAAABVwAAAAADXgAAAAAAVwAAAAADVwAAAAABVwAAAAABXgAAAAAAVwAAAAADdgAAAAAAOgAAAAAASgAAAAADYQAAAAABYQAAAAADVwAAAAAALQAAAAAAOAAAAAAAVwAAAAADOAAAAAAAVwAAAAAAOAAAAAAAVwAAAAADOAAAAAAAVwAAAAABVwAAAAACOAAAAAAAOgAAAAAAVwAAAAAAVwAAAAADVwAAAAACVwAAAAACVwAAAAAAOAAAAAAAVwAAAAAAOAAAAAAAVwAAAAACOAAAAAAAVwAAAAACOAAAAAAAVwAAAAADVwAAAAADdgAAAAAAOgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAABOAAAAAAAVwAAAAAAOAAAAAAAVwAAAAACOAAAAAAAdgAAAAAAdgAAAAAAGwAAAAAAdgAAAAAAdgAAAAAAOgAAAAAAZQAAAAAAZQAAAAAAZwAAAAACZQAAAAAAVwAAAAAAOAAAAAAAXgAAAAAAOAAAAAAAVwAAAAAAOAAAAAAAdgAAAAAAVwAAAAABVwAAAAADVwAAAAADdgAAAAAAdgAAAAAAZwAAAAACdgAAAAAAZgAAAAAAdgAAAAAAVwAAAAADOAAAAAAAVwAAAAADOAAAAAAAVwAAAAABOAAAAAAAdgAAAAAAVwAAAAAAXgAAAAAAVwAAAAADdgAAAAAAKgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAOAAAAAAAVwAAAAAAOAAAAAAAVwAAAAACOAAAAAAAdgAAAAAAVwAAAAABVwAAAAABVwAAAAACdgAAAAAAKgAAAAAAZgAAAAAAdgAAAAAAZwAAAAADdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAADdgAAAAAAdgAAAAAAGwAAAAAAdgAAAAAAdgAAAAAAKgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACVwAAAAAAOAAAAAAAVwAAAAACVwAAAAACOAAAAAAAVwAAAAAAGwAAAAACKgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAXgAAAAAAdgAAAAAAdgAAAAAA
+ tiles: dwAAAAAAVwAAAAACYgAAAAADVwAAAAAAdwAAAAAAGwAAAAAAGwAAAAADGwAAAAABGwAAAAABGwAAAAADGwAAAAADGwAAAAAAGwAAAAAAGwAAAAACdwAAAAAAGwAAAAAAdwAAAAAAVwAAAAABYgAAAAABVwAAAAABdwAAAAAAGwAAAAACGwAAAAAAGwAAAAACGwAAAAADGwAAAAACGwAAAAACGwAAAAACGwAAAAACGwAAAAAAdwAAAAAAGwAAAAABdwAAAAAAVwAAAAADYgAAAAAAVwAAAAACVwAAAAAAVwAAAAACVwAAAAACVwAAAAABVwAAAAACVwAAAAACVwAAAAACVwAAAAACVwAAAAADVwAAAAABVwAAAAACVwAAAAACdwAAAAAAVwAAAAADSgAAAAAAXgAAAAAAVwAAAAABVwAAAAAAVwAAAAACVwAAAAABVwAAAAAAVwAAAAADVwAAAAABVwAAAAADVwAAAAADVwAAAAADVwAAAAACVwAAAAACdwAAAAAAVwAAAAAAYgAAAAADVwAAAAAAdwAAAAAAGwAAAAACdwAAAAAAVwAAAAAAVwAAAAABVwAAAAABdwAAAAAALQAAAAAALQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABYgAAAAADXgAAAAAAdwAAAAAAVwAAAAACVwAAAAABVwAAAAABVwAAAAAAXgAAAAAAVwAAAAABVwAAAAABVwAAAAAAVwAAAAABdwAAAAAAOgAAAAAAVwAAAAADVwAAAAADYgAAAAAAVwAAAAACLQAAAAAAVwAAAAACVwAAAAABVwAAAAACXgAAAAAAVwAAAAACVwAAAAADVwAAAAADXgAAAAAAVwAAAAAAdwAAAAAAOgAAAAAASgAAAAACYgAAAAACYgAAAAADVwAAAAAALQAAAAAAOAAAAAAAVwAAAAAAOAAAAAAAVwAAAAACOAAAAAAAVwAAAAAAOAAAAAAAVwAAAAAAVwAAAAACOAAAAAAAOgAAAAAAVwAAAAADVwAAAAADVwAAAAABVwAAAAACVwAAAAACOAAAAAAAVwAAAAADOAAAAAAAVwAAAAABOAAAAAAAVwAAAAACOAAAAAAAVwAAAAAAVwAAAAABdwAAAAAAOgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADVwAAAAABOAAAAAAAVwAAAAABOAAAAAAAVwAAAAAAOAAAAAAAdwAAAAAAdwAAAAAAGwAAAAABdwAAAAAAdwAAAAAAOgAAAAAAZgAAAAAAZgAAAAAAaAAAAAAAZgAAAAAAVwAAAAAAOAAAAAAAXgAAAAAAOAAAAAAAVwAAAAAAOAAAAAAAdwAAAAAAVwAAAAACVwAAAAAAVwAAAAABdwAAAAAAdwAAAAAAaAAAAAACdwAAAAAAZwAAAAAAdwAAAAAAVwAAAAACOAAAAAAAVwAAAAAAOAAAAAAAVwAAAAABOAAAAAAAdwAAAAAAVwAAAAADXgAAAAAAVwAAAAADdwAAAAAAKgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAOAAAAAAAVwAAAAACOAAAAAAAVwAAAAAAOAAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAABdwAAAAAAKgAAAAAAZwAAAAAAdwAAAAAAaAAAAAACdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADdwAAAAAAdwAAAAAAKgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAABOAAAAAAAVwAAAAABVwAAAAABOAAAAAAAVwAAAAAAGwAAAAAAKgAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAXgAAAAAAdwAAAAAAdwAAAAAA
version: 6
0,0:
ind: 0,0
- tiles: GwAAAAABGwAAAAACGwAAAAAAGwAAAAAAGwAAAAADVQAAAAAAVQAAAAAEVQAAAAAATgAAAAAATgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAGwAAAAADGwAAAAACdgAAAAAAGwAAAAADGwAAAAABGwAAAAADGwAAAAAAGwAAAAACVQAAAAAAVQAAAAAAVQAAAAALTgAAAAAATgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAGwAAAAABGwAAAAADdgAAAAAAVwAAAAADVwAAAAABVwAAAAACVwAAAAABSgAAAAACXgAAAAAAVwAAAAADVwAAAAAAVwAAAAADVwAAAAAASgAAAAAAVwAAAAACXgAAAAAAVwAAAAABVwAAAAADVwAAAAACVwAAAAABVwAAAAABVwAAAAACVwAAAAACXgAAAAAAVwAAAAADVwAAAAADVwAAAAACVwAAAAABVwAAAAAAVwAAAAABVwAAAAAAVwAAAAACVwAAAAADVwAAAAACVwAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAdgAAAAAAdgAAAAAAGwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAABGwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAdgAAAAAAcwAAAAABcwAAAAADcwAAAAAAcwAAAAAAcwAAAAABcwAAAAADcwAAAAAAdgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAdgAAAAAAcwAAAAACcwAAAAABcwAAAAACcwAAAAACcwAAAAABcwAAAAABcwAAAAADGwAAAAACOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcwAAAAACcwAAAAAAcwAAAAABcwAAAAABcwAAAAABcwAAAAABcwAAAAADGwAAAAADOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcwAAAAABcwAAAAABcwAAAAAAcwAAAAAAcwAAAAADcwAAAAACcwAAAAACdgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcwAAAAACcwAAAAADcwAAAAABcwAAAAAAcwAAAAADcwAAAAACcwAAAAACdAAAAAACGwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAdgAAAAAAcwAAAAACcwAAAAAAcwAAAAAAcwAAAAACcwAAAAAAcwAAAAABcwAAAAABdAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAdgAAAAAAGwAAAAADGwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAcwAAAAAAcwAAAAABcwAAAAAAcwAAAAABcwAAAAABdAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAdgAAAAAAGwAAAAACGwAAAAADGwAAAAADGwAAAAABGwAAAAACdgAAAAAAcwAAAAADcwAAAAADcwAAAAABcwAAAAADcwAAAAAAdAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAdgAAAAAAGwAAAAACGwAAAAADGwAAAAADGwAAAAABGwAAAAAAdgAAAAAAcwAAAAAAcwAAAAAAcwAAAAADcwAAAAABcwAAAAAAdAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAdgAAAAAAGwAAAAABGwAAAAABGwAAAAADGwAAAAABGwAAAAADdgAAAAAAcwAAAAAAcwAAAAABcwAAAAABcwAAAAADcwAAAAABdAAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAADGwAAAAACGwAAAAABGwAAAAADGwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAA
+ tiles: GwAAAAAAGwAAAAABGwAAAAAAGwAAAAADGwAAAAACVQAAAAAAVQAAAAAAVQAAAAAATgAAAAAATgAAAAAAVQAAAAAAVQAAAAACVQAAAAAIGwAAAAADGwAAAAABdwAAAAAAGwAAAAADGwAAAAAAGwAAAAADGwAAAAAAGwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAATgAAAAAATgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAGwAAAAAAGwAAAAABdwAAAAAAVwAAAAABVwAAAAACVwAAAAABVwAAAAACSgAAAAAAXgAAAAAAVwAAAAADVwAAAAABVwAAAAACVwAAAAADSgAAAAADVwAAAAABXgAAAAAAVwAAAAADVwAAAAADVwAAAAAAVwAAAAABVwAAAAABVwAAAAACVwAAAAABXgAAAAAAVwAAAAABVwAAAAAAVwAAAAABVwAAAAABVwAAAAAAVwAAAAACVwAAAAABVwAAAAACVwAAAAAAVwAAAAADVwAAAAACOgAAAAAAOgAAAAAAOgAAAAAAdwAAAAAAdwAAAAAAGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAdwAAAAAAdAAAAAAAdAAAAAADdAAAAAADdAAAAAACdAAAAAADdAAAAAADdAAAAAACdwAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAdwAAAAAAdAAAAAADdAAAAAABdAAAAAADdAAAAAACdAAAAAACdAAAAAAAdAAAAAAAGwAAAAABOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAdAAAAAABdAAAAAACdAAAAAABdAAAAAABdAAAAAADdAAAAAACdAAAAAACGwAAAAACOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAdAAAAAABdAAAAAABdAAAAAABdAAAAAABdAAAAAADdAAAAAAAdAAAAAADdwAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAdAAAAAACdAAAAAABdAAAAAAAdAAAAAABdAAAAAABdAAAAAABdAAAAAACdQAAAAADGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAdwAAAAAAdAAAAAABdAAAAAABdAAAAAACdAAAAAAAdAAAAAAAdAAAAAABdAAAAAACdQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAdwAAAAAAGwAAAAACGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAABdAAAAAAAdAAAAAADdAAAAAABdAAAAAABdQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAdwAAAAAAGwAAAAADGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAADdwAAAAAAdAAAAAACdAAAAAACdAAAAAACdAAAAAAAdAAAAAADdQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAdwAAAAAAGwAAAAACGwAAAAAAGwAAAAADGwAAAAAAGwAAAAADdwAAAAAAdAAAAAADdAAAAAADdAAAAAABdAAAAAABdAAAAAAAdQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAdwAAAAAAGwAAAAABGwAAAAAAGwAAAAAAGwAAAAADGwAAAAACdwAAAAAAdAAAAAACdAAAAAAAdAAAAAAAdAAAAAACdAAAAAACdQAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACGwAAAAAAGwAAAAACGwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAA
version: 6
-2,-1:
ind: -2,-1
- tiles: VwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABVwAAAAABVwAAAAAAVwAAAAACdgAAAAAAVwAAAAACYQAAAAAAVwAAAAACdgAAAAAAZgAAAAAAVwAAAAACdgAAAAAAVwAAAAABVwAAAAACVwAAAAAAGwAAAAACVwAAAAACVwAAAAAAVwAAAAABVwAAAAACdgAAAAAAVwAAAAABYQAAAAABVwAAAAABZQAAAAAAdgAAAAAAVwAAAAACdgAAAAAAVwAAAAAAVwAAAAADVwAAAAAAdgAAAAAAVwAAAAACVwAAAAABVwAAAAACVwAAAAADdgAAAAAAVwAAAAAAYQAAAAAAVwAAAAAAdgAAAAAAZQAAAAAAVwAAAAADdgAAAAAAVwAAAAACVwAAAAADVwAAAAAAVwAAAAADVwAAAAADVwAAAAACVwAAAAACVwAAAAABGwAAAAAAVwAAAAAAYQAAAAACVwAAAAAAdgAAAAAAdgAAAAAAVwAAAAADdgAAAAAAVwAAAAACVwAAAAABVwAAAAADdgAAAAAAVwAAAAAAVwAAAAADVwAAAAACVwAAAAABGwAAAAACVwAAAAACYQAAAAAAVwAAAAADdgAAAAAAdgAAAAAAVwAAAAACGwAAAAADVwAAAAABVwAAAAACVwAAAAABdgAAAAAAVwAAAAABVwAAAAADVwAAAAACVwAAAAABdgAAAAAAVwAAAAADYQAAAAADVwAAAAAAdgAAAAAAZQAAAAAAVwAAAAAAdgAAAAAAVwAAAAACVwAAAAACVwAAAAACdgAAAAAAVwAAAAADXgAAAAAAVwAAAAADVwAAAAAAdgAAAAAAVwAAAAABYQAAAAADVwAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAABVwAAAAAAVwAAAAADdgAAAAAAVwAAAAADYQAAAAABVwAAAAACdgAAAAAAZgAAAAAAaQAAAAACaQAAAAACaQAAAAABUwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAAAGwAAAAAAGwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAaQAAAAABdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABVwAAAAABCwAAAAAAVwAAAAADVwAAAAACVwAAAAAAVwAAAAACYQAAAAABVwAAAAABXgAAAAAAVwAAAAACaQAAAAADaQAAAAAAaQAAAAADUwAAAAAAdgAAAAAAVwAAAAABYQAAAAACYQAAAAAASgAAAAAAYQAAAAADYQAAAAADYQAAAAACSgAAAAABYQAAAAADYQAAAAAAYQAAAAACdgAAAAAAaQAAAAADdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACYQAAAAAAVwAAAAADVwAAAAABVwAAAAABVwAAAAAAVwAAAAAAVwAAAAACVwAAAAADVwAAAAABVwAAAAACaQAAAAADaQAAAAABaQAAAAABaQAAAAABdgAAAAAAVwAAAAAAYQAAAAADVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAaQAAAAABaQAAAAABaQAAAAADaQAAAAACdgAAAAAAVwAAAAABYQAAAAADVwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAGwAAAAABdgAAAAAAdgAAAAAAVwAAAAACSgAAAAABVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAACVwAAAAACVwAAAAAAGwAAAAACVwAAAAADYQAAAAABVwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAA
+ tiles: VwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADVwAAAAABVwAAAAADVwAAAAAAdwAAAAAAVwAAAAABYgAAAAADVwAAAAACdwAAAAAAZwAAAAAAVwAAAAAAdwAAAAAAVwAAAAACVwAAAAACVwAAAAABGwAAAAAAVwAAAAADVwAAAAACVwAAAAACVwAAAAADdwAAAAAAVwAAAAACYgAAAAABVwAAAAAAZgAAAAAAdwAAAAAAVwAAAAAAdwAAAAAAVwAAAAABVwAAAAADVwAAAAABdwAAAAAAVwAAAAACVwAAAAABVwAAAAAAVwAAAAADdwAAAAAAVwAAAAAAYgAAAAACVwAAAAABdwAAAAAAZgAAAAAAVwAAAAADdwAAAAAAVwAAAAADVwAAAAAAVwAAAAADVwAAAAACVwAAAAABVwAAAAAAVwAAAAAAVwAAAAAAGwAAAAADVwAAAAACYgAAAAADVwAAAAABdwAAAAAAdwAAAAAAVwAAAAADdwAAAAAAVwAAAAACVwAAAAAAVwAAAAACdwAAAAAAVwAAAAACVwAAAAACVwAAAAAAVwAAAAADGwAAAAADVwAAAAADYgAAAAACVwAAAAACdwAAAAAAdwAAAAAAVwAAAAAAGwAAAAACVwAAAAACVwAAAAACVwAAAAABdwAAAAAAVwAAAAAAVwAAAAABVwAAAAAAVwAAAAADdwAAAAAAVwAAAAADYgAAAAADVwAAAAACdwAAAAAAZgAAAAAAVwAAAAACdwAAAAAAVwAAAAACVwAAAAABVwAAAAABdwAAAAAAVwAAAAABXgAAAAAAVwAAAAAAVwAAAAABdwAAAAAAVwAAAAAAYgAAAAABVwAAAAACdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADVwAAAAABVwAAAAABVwAAAAAAdwAAAAAAVwAAAAADYgAAAAAAVwAAAAABdwAAAAAAZwAAAAAAagAAAAADagAAAAABagAAAAABUwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAABGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAagAAAAABdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADVwAAAAAACwAAAAAAVwAAAAAAVwAAAAADVwAAAAAAVwAAAAAAYgAAAAADVwAAAAACXgAAAAAAVwAAAAABagAAAAACagAAAAABagAAAAAAUwAAAAAAdwAAAAAAVwAAAAABYgAAAAAAYgAAAAACSgAAAAADYgAAAAADYgAAAAAAYgAAAAACSgAAAAACYgAAAAADYgAAAAACYgAAAAABdwAAAAAAagAAAAACdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACYgAAAAACVwAAAAABVwAAAAABVwAAAAACVwAAAAAAVwAAAAAAVwAAAAADVwAAAAACVwAAAAAAVwAAAAACagAAAAACagAAAAADagAAAAACagAAAAAAdwAAAAAAVwAAAAADYgAAAAAAVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAagAAAAAAagAAAAADagAAAAADagAAAAACdwAAAAAAVwAAAAADYgAAAAAAVwAAAAABdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAGwAAAAACdwAAAAAAdwAAAAAAVwAAAAABSgAAAAACVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADVwAAAAADVwAAAAADVwAAAAADGwAAAAAAVwAAAAADYgAAAAADVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAA
version: 6
-2,0:
ind: -2,0
- tiles: YQAAAAADYQAAAAABYQAAAAACYQAAAAABGwAAAAACYQAAAAACYQAAAAACVwAAAAACdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAADVwAAAAAAVwAAAAACVwAAAAAAGwAAAAACVwAAAAABYQAAAAABVwAAAAACdgAAAAAAVwAAAAADVwAAAAACGwAAAAADGwAAAAACGwAAAAADVwAAAAAAVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAADYQAAAAABVwAAAAAAdgAAAAAAVwAAAAAAVwAAAAADGwAAAAADGwAAAAABGwAAAAABVwAAAAAAVwAAAAADLQAAAAAALQAAAAAALQAAAAAALQAAAAAAdgAAAAAAVwAAAAADSgAAAAABVwAAAAADdgAAAAAAVwAAAAABVwAAAAADGwAAAAABGwAAAAACGwAAAAADVwAAAAABVwAAAAABLQAAAAAALQAAAAAALQAAAAAALQAAAAAAdgAAAAAAVwAAAAAAYQAAAAABVwAAAAADdgAAAAAAVwAAAAABVwAAAAADVwAAAAABVwAAAAADVwAAAAABVwAAAAACVwAAAAACLQAAAAAALQAAAAAALQAAAAAAdgAAAAAAdgAAAAAAVwAAAAADYQAAAAAAVwAAAAACdgAAAAAAdgAAAAAAVwAAAAADVwAAAAABVwAAAAADdgAAAAAAdgAAAAAAdgAAAAAALQAAAAAALQAAAAAALQAAAAAAdgAAAAAAXgAAAAAAVwAAAAADYQAAAAADVwAAAAAAVwAAAAAAVwAAAAABVwAAAAADVwAAAAABVwAAAAACVwAAAAACVwAAAAAAVwAAAAACdgAAAAAAGwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAYQAAAAAAYQAAAAAASgAAAAAAYQAAAAADYQAAAAACYQAAAAADSgAAAAACYQAAAAAAYQAAAAADYQAAAAAAIAAAAAAAHwAAAAACGwAAAAADGwAAAAACdgAAAAAAVwAAAAABVwAAAAABVwAAAAACVwAAAAAAVwAAAAACVwAAAAABVwAAAAACYQAAAAADVwAAAAABVwAAAAACVwAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAYQAAAAABVwAAAAADVwAAAAADVwAAAAACIAAAAAADHwAAAAACHwAAAAAAHwAAAAABdgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdgAAAAAAXgAAAAAAYQAAAAACVwAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAGwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdgAAAAAAVwAAAAACYQAAAAABVwAAAAAAZQAAAAAAdgAAAAAAHgAAAAAAHgAAAAACHgAAAAADdgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdgAAAAAAVwAAAAACYQAAAAABXgAAAAAAdgAAAAAAZQAAAAAAHgAAAAADHgAAAAAAHgAAAAADdgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdgAAAAAAVwAAAAAAYQAAAAADXgAAAAAAdgAAAAAAdgAAAAAAHgAAAAAAHgAAAAABHgAAAAAAdgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAADGwAAAAACGwAAAAABdgAAAAAAdgAAAAAAHgAAAAABHgAAAAACHgAAAAAAdgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAGwAAAAABVwAAAAABYQAAAAABVwAAAAACdgAAAAAAZQAAAAAA
+ tiles: YgAAAAABYgAAAAAAYgAAAAAAYgAAAAAAGwAAAAAAYgAAAAABYgAAAAACVwAAAAACdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAABVwAAAAACVwAAAAACGwAAAAABVwAAAAACYgAAAAABVwAAAAAAdwAAAAAAVwAAAAADVwAAAAAAGwAAAAABGwAAAAAAGwAAAAADVwAAAAADVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAYgAAAAACVwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAGwAAAAACGwAAAAADGwAAAAACVwAAAAABVwAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAdwAAAAAAVwAAAAAASgAAAAACVwAAAAADdwAAAAAAVwAAAAAAVwAAAAABGwAAAAABGwAAAAABGwAAAAADVwAAAAABVwAAAAACLQAAAAAALQAAAAAALQAAAAAALQAAAAAAdwAAAAAAVwAAAAABYgAAAAAAVwAAAAADdwAAAAAAVwAAAAABVwAAAAABVwAAAAAAVwAAAAADVwAAAAABVwAAAAADVwAAAAAALQAAAAAALQAAAAAALQAAAAAAdwAAAAAAdwAAAAAAVwAAAAADYgAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADVwAAAAABVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAALQAAAAAALQAAAAAALQAAAAAAdwAAAAAAXgAAAAAAVwAAAAABYgAAAAADVwAAAAABVwAAAAACVwAAAAADVwAAAAAAVwAAAAABVwAAAAABVwAAAAADVwAAAAABVwAAAAABdwAAAAAAGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAYgAAAAAAYgAAAAACSgAAAAABYgAAAAADYgAAAAACYgAAAAABSgAAAAADYgAAAAAAYgAAAAAAYgAAAAACIAAAAAABHwAAAAACGwAAAAACGwAAAAAAdwAAAAAAVwAAAAADVwAAAAAAVwAAAAADVwAAAAABVwAAAAADVwAAAAABVwAAAAADYgAAAAAAVwAAAAADVwAAAAADVwAAAAADHwAAAAACHwAAAAABHwAAAAAAHwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAYgAAAAABVwAAAAAAVwAAAAACVwAAAAABIAAAAAAAHwAAAAAAHwAAAAABHwAAAAADdwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdwAAAAAAXgAAAAAAYgAAAAAAVwAAAAABZgAAAAAAZgAAAAAAdwAAAAAAGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdwAAAAAAVwAAAAAAYgAAAAABVwAAAAABZgAAAAAAdwAAAAAAHgAAAAAAHgAAAAADHgAAAAABdwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdwAAAAAAVwAAAAAAYgAAAAADXgAAAAAAdwAAAAAAZgAAAAAAHgAAAAABHgAAAAABHgAAAAADdwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdwAAAAAAVwAAAAACYgAAAAABXgAAAAAAdwAAAAAAdwAAAAAAHgAAAAACHgAAAAADHgAAAAAAdwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAADGwAAAAACdwAAAAAAdwAAAAAAHgAAAAACHgAAAAACHgAAAAACdwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAGwAAAAADVwAAAAABYgAAAAABVwAAAAABdwAAAAAAZgAAAAAA
version: 6
1,-1:
ind: 1,-1
- tiles: dgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABGwAAAAACVwAAAAACdgAAAAAAdgAAAAAAGwAAAAABGwAAAAADGwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAHgAAAAAAHgAAAAAAHgAAAAACHgAAAAABHgAAAAABHgAAAAABdgAAAAAAXgAAAAAAYQAAAAADVwAAAAACdgAAAAAAXgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAHgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdgAAAAAAVwAAAAADYQAAAAADVwAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAVwAAAAAAdgAAAAAAHgAAAAADPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdgAAAAAAVwAAAAACYQAAAAAAVwAAAAABXgAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAVwAAAAADdgAAAAAAHgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdgAAAAAAVwAAAAAAYQAAAAACVwAAAAACXgAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAVwAAAAACdgAAAAAAHgAAAAABHgAAAAACHgAAAAADHgAAAAAAHgAAAAACHgAAAAABdgAAAAAAVwAAAAACYQAAAAADXgAAAAAAXgAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACYQAAAAACXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAVwAAAAADYQAAAAACVwAAAAABdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABYQAAAAAAVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABVwAAAAAAVwAAAAABGwAAAAABVwAAAAABVwAAAAABVwAAAAACVwAAAAADVwAAAAABYQAAAAAAVwAAAAABVwAAAAACVwAAAAABVwAAAAACVwAAAAAAGwAAAAADVwAAAAADVwAAAAADVwAAAAABGwAAAAAAYQAAAAABYQAAAAABYQAAAAAAYQAAAAACYQAAAAAAYQAAAAACYQAAAAAAYQAAAAACYQAAAAAAYQAAAAABYQAAAAACGwAAAAABVwAAAAABVwAAAAAAVwAAAAADGwAAAAABVwAAAAAAVwAAAAAAVwAAAAABVwAAAAACVwAAAAADVwAAAAADVwAAAAAAVwAAAAADXgAAAAAAVwAAAAACVwAAAAAAGwAAAAAAVwAAAAADVwAAAAAAVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAVwAAAAACVwAAAAABVwAAAAADdgAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADVwAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAXgAAAAAAVwAAAAACVwAAAAACdgAAAAAAYAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAYAAAAAABVwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAVwAAAAAAVwAAAAAAdgAAAAAAYAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAYAAAAAADVwAAAAABVwAAAAABVwAAAAADdgAAAAAA
+ tiles: dwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAGwAAAAACVwAAAAABdwAAAAAAdwAAAAAAGwAAAAABGwAAAAACGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAHgAAAAACHgAAAAACHgAAAAABHgAAAAACHgAAAAABHgAAAAACdwAAAAAAXgAAAAAAYgAAAAACVwAAAAACdwAAAAAAXgAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAHgAAAAABPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdwAAAAAAVwAAAAACYgAAAAABVwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAVwAAAAADdwAAAAAAHgAAAAABPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdwAAAAAAVwAAAAAAYgAAAAABVwAAAAABXgAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAVwAAAAADdwAAAAAAHgAAAAABPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdwAAAAAAVwAAAAAAYgAAAAAAVwAAAAABXgAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAVwAAAAADdwAAAAAAHgAAAAADHgAAAAADHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAACdwAAAAAAVwAAAAACYgAAAAAAXgAAAAAAXgAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAYgAAAAABXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAVwAAAAADYgAAAAACVwAAAAACdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABYgAAAAADVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAACVwAAAAADGwAAAAAAVwAAAAACVwAAAAADVwAAAAACVwAAAAADVwAAAAADYgAAAAAAVwAAAAABVwAAAAADVwAAAAAAVwAAAAACVwAAAAABGwAAAAADVwAAAAABVwAAAAADVwAAAAAAGwAAAAAAYgAAAAABYgAAAAABYgAAAAADYgAAAAACYgAAAAACYgAAAAABYgAAAAAAYgAAAAADYgAAAAABYgAAAAAAYgAAAAABGwAAAAAAVwAAAAACVwAAAAADVwAAAAACGwAAAAAAVwAAAAACVwAAAAADVwAAAAADVwAAAAACVwAAAAABVwAAAAABVwAAAAAAVwAAAAADXgAAAAAAVwAAAAACVwAAAAADGwAAAAACVwAAAAADVwAAAAADVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAVwAAAAACVwAAAAABVwAAAAACdwAAAAAAYQAAAAABYQAAAAAAYQAAAAAAYQAAAAACYQAAAAADYQAAAAABYQAAAAADYQAAAAADVwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAXgAAAAAAVwAAAAAAVwAAAAABdwAAAAAAYQAAAAACEAAAAAAAEAAAAAACEAAAAAADEAAAAAACEAAAAAADEAAAAAAAYQAAAAADVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAVwAAAAACVwAAAAACdwAAAAAAYQAAAAABEAAAAAABEAAAAAACEAAAAAADEAAAAAAAEAAAAAABEAAAAAADYQAAAAAAVwAAAAAAVwAAAAABVwAAAAADdwAAAAAA
version: 6
1,0:
ind: 1,0
- tiles: VwAAAAADVwAAAAAAVwAAAAAAdgAAAAAAYAAAAAADOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAYAAAAAADVwAAAAABVwAAAAABXgAAAAAAdgAAAAAAVwAAAAADVwAAAAAAVwAAAAACdgAAAAAAYAAAAAADOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAYAAAAAACVwAAAAABVwAAAAADVwAAAAAAGwAAAAABVwAAAAADVwAAAAACVwAAAAABdgAAAAAAYAAAAAACOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAYAAAAAACVwAAAAABXgAAAAAAVwAAAAAAdgAAAAAAVwAAAAABVwAAAAAAVwAAAAACdgAAAAAAYAAAAAADOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAYAAAAAABVwAAAAABVwAAAAACVwAAAAACdgAAAAAAVwAAAAACVwAAAAAAVwAAAAAAdgAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAABVwAAAAABVwAAAAACVwAAAAACdgAAAAAAVwAAAAABVwAAAAACVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAADdgAAAAAAVwAAAAABVwAAAAADVwAAAAADGwAAAAACVwAAAAABVwAAAAABVwAAAAACVwAAAAACVwAAAAAAVwAAAAADVwAAAAABVwAAAAACVwAAAAACVwAAAAAAVwAAAAADGwAAAAACXgAAAAAAVwAAAAADVwAAAAACGwAAAAAAVwAAAAADVwAAAAAAVwAAAAADVwAAAAABVwAAAAAAVwAAAAAAVwAAAAADVwAAAAADVwAAAAADVwAAAAABXgAAAAAAGwAAAAAAXgAAAAAAXgAAAAAAVwAAAAAAGwAAAAADVwAAAAABVwAAAAACVwAAAAACCwAAAAAAXgAAAAAAVwAAAAADVwAAAAABVwAAAAADXgAAAAAAVwAAAAABXgAAAAAAGwAAAAADcwAAAAACcwAAAAABcwAAAAABdgAAAAAAdgAAAAAAGwAAAAACdgAAAAAAdgAAAAAAGwAAAAACHwAAAAADGwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAcwAAAAAAcwAAAAABcwAAAAADGwAAAAAAcwAAAAACcwAAAAACcwAAAAABdgAAAAAAGwAAAAACHwAAAAABGwAAAAAAdgAAAAAAVwAAAAACVwAAAAADdgAAAAAAVwAAAAAAcwAAAAAAcwAAAAABcwAAAAADGwAAAAAAcwAAAAABcwAAAAAAcwAAAAADdgAAAAAAGwAAAAADHwAAAAAAGwAAAAADdgAAAAAAXgAAAAAAVwAAAAACdgAAAAAAXgAAAAAAcwAAAAAAcwAAAAADcwAAAAABdgAAAAAAcwAAAAADcwAAAAABcwAAAAAAdgAAAAAAGwAAAAABHwAAAAAAGwAAAAACdgAAAAAAVwAAAAACVwAAAAAAdgAAAAAAVwAAAAADcwAAAAAAcwAAAAAAcwAAAAABdgAAAAAAcwAAAAADcwAAAAAAcwAAAAADdgAAAAAAGwAAAAADHwAAAAADGwAAAAADdgAAAAAAVwAAAAABVwAAAAABdgAAAAAAVwAAAAABcwAAAAADcwAAAAADcwAAAAADcwAAAAADcwAAAAAAcwAAAAACcwAAAAABdgAAAAAAGwAAAAAAGwAAAAADGwAAAAADdgAAAAAAIgAAAAACIgAAAAACIgAAAAAAIgAAAAAAdgAAAAAAcwAAAAACcwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAADGwAAAAADGwAAAAABdgAAAAAAIgAAAAACIgAAAAACIgAAAAABIgAAAAAC
+ tiles: VwAAAAABVwAAAAABVwAAAAACdwAAAAAAYQAAAAADEAAAAAAAEAAAAAAAEAAAAAADEAAAAAABEAAAAAAAEAAAAAAAYQAAAAABVwAAAAADVwAAAAABXgAAAAAAdwAAAAAAVwAAAAACVwAAAAACVwAAAAADdwAAAAAAYQAAAAABEAAAAAADEAAAAAADEAAAAAAAEAAAAAACEAAAAAADEAAAAAABYQAAAAABVwAAAAACVwAAAAAAVwAAAAADGwAAAAACVwAAAAADVwAAAAABVwAAAAABdwAAAAAAYQAAAAABEAAAAAACEAAAAAADEAAAAAACEAAAAAADEAAAAAACEAAAAAADYQAAAAABVwAAAAABXgAAAAAAVwAAAAADdwAAAAAAVwAAAAADVwAAAAACVwAAAAACdwAAAAAAYQAAAAACEAAAAAACEAAAAAAAEAAAAAADEAAAAAABEAAAAAABEAAAAAAAYQAAAAACVwAAAAABVwAAAAABVwAAAAACdwAAAAAAVwAAAAABVwAAAAACVwAAAAADdwAAAAAAYQAAAAACYQAAAAADYQAAAAAAYQAAAAADYQAAAAAAYQAAAAAAYQAAAAADYQAAAAABVwAAAAABVwAAAAABVwAAAAACdwAAAAAAVwAAAAAAVwAAAAACVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADdwAAAAAAVwAAAAABVwAAAAAAVwAAAAAAGwAAAAADVwAAAAACVwAAAAADVwAAAAABVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAADVwAAAAABVwAAAAABVwAAAAACVwAAAAABGwAAAAACXgAAAAAAVwAAAAACVwAAAAAAGwAAAAAAVwAAAAAAVwAAAAABVwAAAAACVwAAAAADVwAAAAADVwAAAAADVwAAAAAAVwAAAAACVwAAAAAAVwAAAAADXgAAAAAAGwAAAAAAXgAAAAAAXgAAAAAAVwAAAAADGwAAAAAAVwAAAAAAVwAAAAADVwAAAAADCwAAAAAAXgAAAAAAVwAAAAAAVwAAAAABVwAAAAACXgAAAAAAVwAAAAAAXgAAAAAAGwAAAAACdAAAAAAAdAAAAAABdAAAAAADdwAAAAAAdwAAAAAAGwAAAAACdwAAAAAAdwAAAAAAGwAAAAAAHwAAAAABGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAACdAAAAAACdAAAAAABGwAAAAABdAAAAAADdAAAAAAAdAAAAAACdwAAAAAAGwAAAAACHwAAAAAAGwAAAAACdwAAAAAAVwAAAAADVwAAAAAAdwAAAAAAVwAAAAABdAAAAAACdAAAAAABdAAAAAAAGwAAAAAAdAAAAAAAdAAAAAAAdAAAAAACdwAAAAAAGwAAAAACHwAAAAAAGwAAAAAAdwAAAAAAXgAAAAAAVwAAAAACdwAAAAAAXgAAAAAAdAAAAAADdAAAAAAAdAAAAAACdwAAAAAAdAAAAAACdAAAAAACdAAAAAAAdwAAAAAAGwAAAAADHwAAAAAAGwAAAAAAdwAAAAAAVwAAAAACVwAAAAABdwAAAAAAVwAAAAACdAAAAAABdAAAAAAAdAAAAAADdwAAAAAAdAAAAAACdAAAAAADdAAAAAACdwAAAAAAGwAAAAABHwAAAAAAGwAAAAACdwAAAAAAVwAAAAABVwAAAAADdwAAAAAAVwAAAAADdAAAAAABdAAAAAAAdAAAAAADdAAAAAAAdAAAAAAAdAAAAAABdAAAAAACdwAAAAAAGwAAAAABGwAAAAADGwAAAAABdwAAAAAAIgAAAAADIgAAAAABIgAAAAACIgAAAAACdwAAAAAAdAAAAAADdAAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACGwAAAAABGwAAAAABdwAAAAAAIgAAAAABIgAAAAAAIgAAAAADIgAAAAAA
version: 6
-1,1:
ind: -1,1
- tiles: dgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAVwAAAAABXgAAAAAAXgAAAAAAVwAAAAAAXgAAAAAAVwAAAAACdgAAAAAAHAAAAAABHAAAAAACdgAAAAAAFwAAAAAATQAAAAAATQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAALQAAAAAARwAAAAAALQAAAAAALQAAAAAARwAAAAAALQAAAAAAdgAAAAAAHAAAAAACHAAAAAAAFwAAAAAAdgAAAAAAVwAAAAACCwAAAAAAZQAAAAAAdgAAAAAAdgAAAAAALQAAAAAARwAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAdgAAAAAAHAAAAAABHAAAAAABXgAAAAAAZwAAAAABCwAAAAAAVwAAAAADdgAAAAAAZwAAAAADdgAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAdgAAAAAAHAAAAAAAHAAAAAACXgAAAAAAFwAAAAAAVwAAAAADCwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAHAAAAAAAHAAAAAADVwAAAAABdgAAAAAAFwAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAZgAAAAAAGwAAAAAAZQAAAAAAXgAAAAAAZwAAAAABXgAAAAAAXgAAAAAAdgAAAAAAHAAAAAAAHAAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAADXgAAAAAAXgAAAAAAZwAAAAADXgAAAAAAXgAAAAAAdgAAAAAAGwAAAAACdgAAAAAAHwAAAAACGwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAGwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAHwAAAAACGwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZwAAAAACXgAAAAAAXgAAAAAAHwAAAAAAGwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAHwAAAAADGwAAAAACZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAHwAAAAAAGwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAGwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAZQAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAVwAAAAADVwAAAAADdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAXgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAVwAAAAACVwAAAAABdgAAAAAAcwAAAAACcwAAAAAAcwAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAVwAAAAABVwAAAAACVwAAAAAB
+ tiles: dwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAVwAAAAAAXgAAAAAAXgAAAAAAVwAAAAACXgAAAAAAVwAAAAAAdwAAAAAAHAAAAAABHAAAAAAAdwAAAAAAFwAAAAAATQAAAAAATQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAALQAAAAAARwAAAAAALQAAAAAALQAAAAAARwAAAAAALQAAAAAAdwAAAAAAHAAAAAAAHAAAAAAAFwAAAAAAdwAAAAAAVwAAAAAACwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAALQAAAAAARwAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAdwAAAAAAHAAAAAADHAAAAAABXgAAAAAAaAAAAAABCwAAAAAAVwAAAAAAdwAAAAAAaAAAAAACdwAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAdwAAAAAAHAAAAAACHAAAAAACXgAAAAAAFwAAAAAAVwAAAAACCwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAHAAAAAABHAAAAAAAVwAAAAACdwAAAAAAFwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAZwAAAAAAGwAAAAACZgAAAAAAXgAAAAAAaAAAAAADXgAAAAAAXgAAAAAAdwAAAAAAHAAAAAACHAAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAXgAAAAAAXgAAAAAAaAAAAAACXgAAAAAAXgAAAAAAdwAAAAAAGwAAAAADdwAAAAAAHwAAAAABGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAHwAAAAABGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAaAAAAAADXgAAAAAAXgAAAAAAHwAAAAABGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAHwAAAAACGwAAAAADZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAHwAAAAACGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAZgAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAVwAAAAADVwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAXgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAVwAAAAADVwAAAAABdwAAAAAAdAAAAAABdAAAAAADdAAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAVwAAAAACVwAAAAACVwAAAAAB
version: 6
0,1:
ind: 0,1
- tiles: HAAAAAACHAAAAAAAHAAAAAACGwAAAAAAGwAAAAACGwAAAAABGwAAAAABGwAAAAACGwAAAAABGwAAAAADIgAAAAACIgAAAAACIgAAAAADIgAAAAAAGwAAAAACIgAAAAABHAAAAAAAHAAAAAACHAAAAAACGwAAAAADGwAAAAABGwAAAAADGwAAAAABGwAAAAABGwAAAAABGwAAAAAAIgAAAAABIgAAAAAAIgAAAAADIgAAAAACGwAAAAACIgAAAAACHAAAAAACHAAAAAACHAAAAAACdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAHAAAAAACHAAAAAAAHAAAAAADdgAAAAAAdAAAAAACdAAAAAABdAAAAAADdAAAAAADdAAAAAAAGwAAAAABXgAAAAAAVwAAAAABVwAAAAABdgAAAAAAHgAAAAAAHgAAAAADHAAAAAACHAAAAAABHAAAAAADdgAAAAAAdAAAAAACdAAAAAABdAAAAAACdAAAAAADdAAAAAABdgAAAAAAGwAAAAADVwAAAAADVwAAAAADdgAAAAAAHgAAAAAAHgAAAAACHAAAAAABHAAAAAACHAAAAAACdgAAAAAAdAAAAAADdAAAAAACdAAAAAABdAAAAAACdAAAAAABdgAAAAAAGwAAAAAAVwAAAAABVwAAAAACdgAAAAAAHgAAAAABHgAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdAAAAAADdAAAAAABdAAAAAACdAAAAAADdAAAAAACdgAAAAAAGwAAAAAAVwAAAAABVwAAAAABGwAAAAABHgAAAAACHgAAAAABZQAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAABGwAAAAABVwAAAAABdgAAAAAAHgAAAAAAHgAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAAQAAAAAAdgAAAAAAAQAAAAAAdgAAAAAAAQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAQAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAAQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAA
+ tiles: HAAAAAAAHAAAAAAAHAAAAAACGwAAAAABGwAAAAADGwAAAAABGwAAAAADGwAAAAACGwAAAAAAGwAAAAADIgAAAAABIgAAAAAAIgAAAAACIgAAAAAAGwAAAAAAIgAAAAADHAAAAAAAHAAAAAABHAAAAAADGwAAAAABGwAAAAAAGwAAAAABGwAAAAABGwAAAAACGwAAAAACGwAAAAACIgAAAAADIgAAAAACIgAAAAABIgAAAAACGwAAAAABIgAAAAADHAAAAAADHAAAAAAAHAAAAAACdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAHAAAAAABHAAAAAACHAAAAAAAdwAAAAAAdQAAAAADdQAAAAAAdQAAAAACdQAAAAADdQAAAAADGwAAAAADXgAAAAAAVwAAAAABVwAAAAAAdwAAAAAAHgAAAAAAHgAAAAACHAAAAAAAHAAAAAACHAAAAAABdwAAAAAAdQAAAAACdQAAAAAAdQAAAAABdQAAAAACdQAAAAACdwAAAAAAGwAAAAAAVwAAAAABVwAAAAAAdwAAAAAAHgAAAAACHgAAAAAAHAAAAAAAHAAAAAAAHAAAAAABdwAAAAAAdQAAAAABdQAAAAACdQAAAAAAdQAAAAABdQAAAAAAdwAAAAAAGwAAAAAAVwAAAAADVwAAAAADdwAAAAAAHgAAAAAAHgAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdQAAAAAAdQAAAAABdQAAAAADdQAAAAABdQAAAAABdwAAAAAAGwAAAAACVwAAAAACVwAAAAABGwAAAAACHgAAAAACHgAAAAABZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABGwAAAAAAVwAAAAAAdwAAAAAAHgAAAAACHgAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAAQAAAAAAdwAAAAAAAQAAAAAAdwAAAAAAAQAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAQAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAAQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAA
version: 6
1,1:
ind: 1,1
- tiles: IgAAAAAAIgAAAAABIgAAAAACGwAAAAAAGwAAAAADGwAAAAABGwAAAAACGwAAAAACGwAAAAADGwAAAAADGwAAAAABdgAAAAAAIgAAAAAAIgAAAAACIgAAAAABIgAAAAAAIgAAAAAAIgAAAAABIgAAAAADGwAAAAADGwAAAAADGwAAAAADGwAAAAAAGwAAAAADGwAAAAABGwAAAAAAGwAAAAADGwAAAAAAIwAAAAABIwAAAAAAIwAAAAADGwAAAAAAGwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAABGwAAAAADGwAAAAADGwAAAAADGwAAAAAAGwAAAAABGwAAAAABGwAAAAABIwAAAAACIwAAAAADIwAAAAADGwAAAAADHgAAAAADHgAAAAABHgAAAAADdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAADdgAAAAAAVwAAAAADVwAAAAAAVwAAAAACdgAAAAAAIwAAAAADIwAAAAABIwAAAAACGwAAAAACHgAAAAADHgAAAAABHgAAAAAAdgAAAAAAGwAAAAABGwAAAAACPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdgAAAAAAIwAAAAADIwAAAAACIwAAAAABdgAAAAAAHgAAAAAAHgAAAAAAHgAAAAABdgAAAAAAGwAAAAABGwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAGwAAAAACIwAAAAABIwAAAAAAIwAAAAADZgAAAAAAHgAAAAADHgAAAAADHgAAAAAAdgAAAAAAGwAAAAADGwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdgAAAAAAIwAAAAABIwAAAAADIwAAAAACdgAAAAAAHgAAAAADHgAAAAAAHgAAAAACdgAAAAAAGwAAAAADGwAAAAACGwAAAAABGwAAAAADGwAAAAABGwAAAAAAGwAAAAABdgAAAAAAGwAAAAACGwAAAAABGwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAABdgAAAAAAGwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAXgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAASwAAAAAASwAAAAAASwAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAcwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAADdgAAAAAAGwAAAAACdgAAAAAAdgAAAAAAVwAAAAADcwAAAAACdgAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAGwAAAAACGwAAAAADGwAAAAACGwAAAAAAGwAAAAABGwAAAAADXgAAAAAAXgAAAAAAcwAAAAACdgAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAGwAAAAADGwAAAAADGwAAAAAAGwAAAAAAGwAAAAACGwAAAAAAdgAAAAAAdgAAAAAAcwAAAAADdgAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAGwAAAAACGwAAAAABGwAAAAADGwAAAAACGwAAAAABGwAAAAADVwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAGwAAAAADGwAAAAAAGwAAAAADGwAAAAADGwAAAAACGwAAAAAAZgAAAAAAXgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAGwAAAAACGwAAAAAAGwAAAAABGwAAAAACGwAAAAABGwAAAAAC
+ tiles: IgAAAAADIgAAAAABIgAAAAAAGwAAAAACGwAAAAAAGwAAAAAAGwAAAAACGwAAAAABGwAAAAADGwAAAAAAGwAAAAACdwAAAAAAIgAAAAACIgAAAAABIgAAAAADIgAAAAABIgAAAAADIgAAAAAAIgAAAAADGwAAAAADGwAAAAAAGwAAAAAAGwAAAAACGwAAAAABGwAAAAABGwAAAAAAGwAAAAABGwAAAAADIwAAAAABIwAAAAABIwAAAAADGwAAAAACGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACGwAAAAACGwAAAAADGwAAAAACGwAAAAAAGwAAAAACGwAAAAADGwAAAAAAIwAAAAAAIwAAAAABIwAAAAADGwAAAAADHgAAAAADHgAAAAADHgAAAAACdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADdwAAAAAAVwAAAAABVwAAAAADVwAAAAABdwAAAAAAIwAAAAACIwAAAAACIwAAAAAAGwAAAAACHgAAAAABHgAAAAACHgAAAAAAdwAAAAAAGwAAAAADGwAAAAABPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdwAAAAAAIwAAAAAAIwAAAAABIwAAAAABdwAAAAAAHgAAAAADHgAAAAAAHgAAAAADdwAAAAAAGwAAAAACGwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAGwAAAAADIwAAAAAAIwAAAAABIwAAAAACZwAAAAAAHgAAAAACHgAAAAACHgAAAAAAdwAAAAAAGwAAAAACGwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdwAAAAAAIwAAAAACIwAAAAABIwAAAAABdwAAAAAAHgAAAAABHgAAAAAAHgAAAAAAdwAAAAAAGwAAAAAAGwAAAAADGwAAAAACGwAAAAADGwAAAAACGwAAAAABGwAAAAAAdwAAAAAAGwAAAAABGwAAAAADGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACdwAAAAAAGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAXgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAdAAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACdwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACdAAAAAADdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAAAGwAAAAABGwAAAAABGwAAAAAAGwAAAAABXgAAAAAAXgAAAAAAdAAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAABGwAAAAABGwAAAAADGwAAAAAAGwAAAAACdwAAAAAAdwAAAAAAdAAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAGwAAAAABGwAAAAABGwAAAAADGwAAAAABGwAAAAADGwAAAAACVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAGwAAAAADGwAAAAAAGwAAAAABGwAAAAADGwAAAAACGwAAAAABZwAAAAAAXgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAGwAAAAADGwAAAAABGwAAAAAAGwAAAAACGwAAAAAAGwAAAAAC
version: 6
-2,-2:
ind: -2,-2
- tiles: VwAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAXAAAAAAAXAAAAAAAXAAAAAADXAAAAAABdgAAAAAAVwAAAAABYQAAAAABVwAAAAADdgAAAAAAdgAAAAAAGwAAAAAAdgAAAAAAGwAAAAABGwAAAAADGwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAADYQAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAdgAAAAAAGwAAAAAAGwAAAAACGwAAAAADdgAAAAAAXgAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAVwAAAAABYQAAAAABXgAAAAAAGwAAAAAAdgAAAAAAVwAAAAADdgAAAAAAGwAAAAABGwAAAAACGwAAAAACdgAAAAAAXgAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAVwAAAAAAYQAAAAACXgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACYQAAAAABVwAAAAAAVwAAAAABVwAAAAADVwAAAAAAGwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAACXgAAAAAAYQAAAAACYQAAAAACYQAAAAAAYQAAAAABVwAAAAADdgAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAYQAAAAAAVwAAAAAAVwAAAAADVwAAAAAAVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAABVwAAAAACVwAAAAACVwAAAAAAdgAAAAAAGwAAAAADGwAAAAABGwAAAAADdgAAAAAAdgAAAAAAVwAAAAAAdgAAAAAAGwAAAAABGwAAAAACdgAAAAAAVwAAAAACXgAAAAAAXgAAAAAAXgAAAAAAVwAAAAADdgAAAAAAVwAAAAADYQAAAAAAVwAAAAABGwAAAAABGwAAAAABVwAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAGwAAAAACVwAAAAADXgAAAAAAXgAAAAAAXgAAAAAAVwAAAAAAdgAAAAAAVwAAAAABYQAAAAABVwAAAAABGwAAAAABGwAAAAABVwAAAAAAGwAAAAAAdgAAAAAAZQAAAAAAdgAAAAAACwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAVwAAAAABGwAAAAABXgAAAAAAYQAAAAAAVwAAAAAAdgAAAAAAGwAAAAACVwAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAVwAAAAABVwAAAAAAVwAAAAAAVwAAAAACVwAAAAACdgAAAAAAXgAAAAAAYQAAAAAAVwAAAAADdgAAAAAAGwAAAAADGwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACVwAAAAABVwAAAAADVwAAAAADdgAAAAAAdgAAAAAAXgAAAAAAYQAAAAABVwAAAAAAdgAAAAAAZwAAAAACVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAACYQAAAAADVwAAAAAAdgAAAAAAXgAAAAAAVwAAAAABVwAAAAACVwAAAAADVwAAAAAAVwAAAAADGwAAAAABVwAAAAADVwAAAAAAVwAAAAADdgAAAAAAVwAAAAABVwAAAAACYQAAAAAAVwAAAAABdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAACXgAAAAAAVwAAAAACXgAAAAAAGwAAAAAAXgAAAAAAXgAAAAAAVwAAAAAAdgAAAAAAdgAAAAAAVwAAAAABYQAAAAABVwAAAAABdgAAAAAAdgAAAAAA
+ tiles: VwAAAAABdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAXAAAAAADXAAAAAABXAAAAAAAXAAAAAAAdwAAAAAAVwAAAAABYgAAAAABVwAAAAABdwAAAAAAdwAAAAAAGwAAAAABdwAAAAAAGwAAAAACGwAAAAABGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABYgAAAAABXgAAAAAAdwAAAAAAdwAAAAAAVwAAAAACdwAAAAAAGwAAAAAAGwAAAAAAGwAAAAADdwAAAAAAXgAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAVwAAAAABYgAAAAABXgAAAAAAGwAAAAACdwAAAAAAVwAAAAACdwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAVwAAAAAAYgAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABYgAAAAADVwAAAAAAVwAAAAABVwAAAAABVwAAAAACGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACXgAAAAAAYgAAAAABYgAAAAABYgAAAAADYgAAAAACVwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAYgAAAAADVwAAAAABVwAAAAACVwAAAAABVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAADVwAAAAACVwAAAAABVwAAAAABdwAAAAAAGwAAAAABGwAAAAACGwAAAAADdwAAAAAAdwAAAAAAVwAAAAADdwAAAAAAGwAAAAAAGwAAAAACdwAAAAAAVwAAAAABXgAAAAAAXgAAAAAAXgAAAAAAVwAAAAACdwAAAAAAVwAAAAAAYgAAAAAAVwAAAAAAGwAAAAAAGwAAAAADVwAAAAACdwAAAAAAZgAAAAAAZgAAAAAAGwAAAAADVwAAAAACXgAAAAAAXgAAAAAAXgAAAAAAVwAAAAAAdwAAAAAAVwAAAAAAYgAAAAACVwAAAAACGwAAAAAAGwAAAAABVwAAAAADGwAAAAACdwAAAAAAZgAAAAAAdwAAAAAACwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAVwAAAAADGwAAAAADXgAAAAAAYgAAAAABVwAAAAABdwAAAAAAGwAAAAAAVwAAAAACdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAVwAAAAACVwAAAAADVwAAAAAAVwAAAAACVwAAAAADdwAAAAAAXgAAAAAAYgAAAAAAVwAAAAAAdwAAAAAAGwAAAAACGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAABVwAAAAAAVwAAAAABdwAAAAAAdwAAAAAAXgAAAAAAYgAAAAABVwAAAAAAdwAAAAAAaAAAAAAAVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAADYgAAAAACVwAAAAAAdwAAAAAAXgAAAAAAVwAAAAADVwAAAAAAVwAAAAADVwAAAAABVwAAAAAAGwAAAAAAVwAAAAADVwAAAAADVwAAAAAAdwAAAAAAVwAAAAADVwAAAAADYgAAAAAAVwAAAAABdwAAAAAAdwAAAAAAVwAAAAADVwAAAAADXgAAAAAAVwAAAAACXgAAAAAAGwAAAAADXgAAAAAAXgAAAAAAVwAAAAACdwAAAAAAdwAAAAAAVwAAAAAAYgAAAAAAVwAAAAACdwAAAAAAdwAAAAAA
version: 6
-1,-2:
ind: -1,-2
- tiles: dgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABYQAAAAACXgAAAAAAXgAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAZQAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAVwAAAAADYQAAAAAAVwAAAAABdgAAAAAAdQAAAAAAAAAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAGwAAAAACVwAAAAABYQAAAAAAVwAAAAABdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABYQAAAAACVwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAADVwAAAAADGwAAAAADVwAAAAABVwAAAAABVwAAAAAAXgAAAAAAXgAAAAAAVwAAAAAAVwAAAAAAYAAAAAADYAAAAAADYAAAAAAAVwAAAAABVwAAAAAAGwAAAAACYQAAAAADYQAAAAABGwAAAAADYQAAAAABYQAAAAAAYQAAAAAAYQAAAAACYQAAAAABYQAAAAACYQAAAAADYAAAAAABSgAAAAAAYAAAAAAAYQAAAAABYQAAAAADGwAAAAABVwAAAAACVwAAAAACGwAAAAABVwAAAAADVwAAAAAAVwAAAAAAVwAAAAABVwAAAAABVwAAAAADVwAAAAABYAAAAAADYAAAAAADYAAAAAADVwAAAAAAVwAAAAADGwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAACdgAAAAAAGwAAAAADGwAAAAACdgAAAAAAdgAAAAAAVwAAAAACYQAAAAABVwAAAAACdgAAAAAAGwAAAAAAdgAAAAAAGwAAAAABdgAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAdgAAAAAAVwAAAAABYQAAAAADVwAAAAABdgAAAAAAPwAAAAAAEgAAAAAAHwAAAAAAdgAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAdgAAAAAAGwAAAAABGwAAAAACGwAAAAACdgAAAAAAPwAAAAAAEgAAAAAAHwAAAAABdgAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAdgAAAAAAZAAAAAABYQAAAAADZAAAAAABdgAAAAAAPwAAAAAAEgAAAAAAHwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAAAdgAAAAAAdgAAAAAAZAAAAAABYQAAAAADZAAAAAAAGwAAAAAAPwAAAAAAEgAAAAAAXgAAAAAAXgAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAdgAAAAAAZgAAAAAAZgAAAAAAdgAAAAAAZAAAAAABYQAAAAABZAAAAAADdgAAAAAAPwAAAAAAEgAAAAAAXgAAAAAAdgAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAZAAAAAABYQAAAAABZAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAZAAAAAADYQAAAAAAZAAAAAAAGwAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZAAAAAABYQAAAAAAZAAAAAACdgAAAAAAdgAAAAAAZwAAAAAA
+ tiles: dwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADYgAAAAABXgAAAAAAXgAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAZgAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAVwAAAAABYgAAAAAAVwAAAAABdwAAAAAAdgAAAAAAAAAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAGwAAAAABVwAAAAAAYgAAAAABVwAAAAABdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACYgAAAAADVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAADGwAAAAADVwAAAAABVwAAAAADVwAAAAAAXgAAAAAAXgAAAAAAVwAAAAAAVwAAAAAAYQAAAAADYQAAAAAAYQAAAAABVwAAAAABVwAAAAABGwAAAAABYgAAAAADYgAAAAABGwAAAAACYgAAAAACYgAAAAACYgAAAAADYgAAAAADYgAAAAACYgAAAAAAYgAAAAABYQAAAAACSgAAAAADYQAAAAABYgAAAAADYgAAAAADGwAAAAABVwAAAAADVwAAAAABGwAAAAABVwAAAAAAVwAAAAABVwAAAAACVwAAAAADVwAAAAACVwAAAAACVwAAAAACYQAAAAADYQAAAAADYQAAAAABVwAAAAADVwAAAAABGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADdwAAAAAAGwAAAAADGwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAYgAAAAAAVwAAAAADdwAAAAAAGwAAAAACdwAAAAAAGwAAAAAAdwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAdwAAAAAAVwAAAAADYgAAAAAAVwAAAAAAdwAAAAAAPwAAAAAAEgAAAAAAHwAAAAABdwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAdwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAdwAAAAAAPwAAAAAAEgAAAAAAHwAAAAABdwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAdwAAAAAAZQAAAAACYgAAAAABZQAAAAABdwAAAAAAPwAAAAAAEgAAAAAAHwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADdwAAAAAAdwAAAAAAZQAAAAAAYgAAAAACZQAAAAACGwAAAAAAPwAAAAAAEgAAAAAAXgAAAAAAXgAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAdwAAAAAAZwAAAAAAZwAAAAAAdwAAAAAAZQAAAAABYgAAAAACZQAAAAACdwAAAAAAPwAAAAAAEgAAAAAAXgAAAAAAdwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAZQAAAAAAYgAAAAADZQAAAAABdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAZQAAAAABYgAAAAACZQAAAAAAGwAAAAABdwAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZQAAAAADYgAAAAACZQAAAAAAdwAAAAAAdwAAAAAAaAAAAAAA
version: 6
0,-2:
ind: 0,-2
- tiles: AAAAAAAAdgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAYAAAAAADVwAAAAAAYQAAAAAAAAAAAAAAdgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAADYQAAAAABAAAAAAAAdgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAdgAAAAAAZwAAAAABdgAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAVwAAAAAAYQAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABYQAAAAABVwAAAAADVwAAAAAAVwAAAAAAVwAAAAACVwAAAAACVwAAAAABVwAAAAADVwAAAAACVwAAAAACVwAAAAADGwAAAAACVwAAAAABVwAAAAABXgAAAAAAVwAAAAACYQAAAAABYQAAAAADYQAAAAACYQAAAAADSgAAAAADYQAAAAAAYQAAAAAASgAAAAACYQAAAAABYQAAAAABYQAAAAACGwAAAAABYQAAAAAAYQAAAAABYQAAAAADYQAAAAABYQAAAAABVwAAAAACVwAAAAADVwAAAAABVwAAAAAAVwAAAAABVwAAAAAAVwAAAAAAVwAAAAABVwAAAAAAVwAAAAADGwAAAAAAVwAAAAAAXgAAAAAAXgAAAAAAVwAAAAAAYQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAYQAAAAADEgAAAAAAEgAAAAAAEgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAGwAAAAADGwAAAAABGwAAAAADGwAAAAABGwAAAAADGwAAAAADdgAAAAAAVwAAAAADYQAAAAADEgAAAAAAEgAAAAAAEgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAGwAAAAABGwAAAAABGwAAAAADGwAAAAADGwAAAAADGwAAAAAAdgAAAAAAVwAAAAADYQAAAAADEgAAAAAAEgAAAAAAEgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAGwAAAAABNAAAAAAANAAAAAAANAAAAAAANAAAAAAAGwAAAAAAGwAAAAADVwAAAAAAYQAAAAACEgAAAAAAEgAAAAAAEgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAADGwAAAAAAGwAAAAAAGwAAAAACGwAAAAACGwAAAAADdgAAAAAAVwAAAAAAYQAAAAABEgAAAAAAEgAAAAAAEgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAABGwAAAAADGwAAAAADGwAAAAADGwAAAAAAGwAAAAAAdgAAAAAAGwAAAAAAGwAAAAAAGwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABYQAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAADYQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZwAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAVwAAAAACVwAAAAAC
+ tiles: AAAAAAAAdwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAYQAAAAACVwAAAAADYgAAAAABAAAAAAAAdwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAYgAAAAACAAAAAAAAdwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAdwAAAAAAaAAAAAABdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAVwAAAAADYgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAYgAAAAACVwAAAAAAVwAAAAABVwAAAAACVwAAAAACVwAAAAADVwAAAAADVwAAAAADVwAAAAADVwAAAAAAVwAAAAACGwAAAAAAVwAAAAAAVwAAAAACXgAAAAAAVwAAAAAAYgAAAAADYgAAAAACYgAAAAAAYgAAAAAASgAAAAABYgAAAAAAYgAAAAAASgAAAAACYgAAAAABYgAAAAAAYgAAAAAAGwAAAAADYgAAAAACYgAAAAACYgAAAAAAYgAAAAAAYgAAAAACVwAAAAACVwAAAAADVwAAAAACVwAAAAADVwAAAAADVwAAAAAAVwAAAAACVwAAAAADVwAAAAAAVwAAAAABGwAAAAAAVwAAAAADXgAAAAAAXgAAAAAAVwAAAAABYgAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAYgAAAAACEgAAAAAAEgAAAAAAEgAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAGwAAAAABGwAAAAADGwAAAAADGwAAAAADGwAAAAADGwAAAAACdwAAAAAAVwAAAAACYgAAAAABEgAAAAAAEgAAAAAAEgAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAADGwAAAAAAGwAAAAAAGwAAAAACGwAAAAAAdwAAAAAAVwAAAAACYgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAGwAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAGwAAAAACGwAAAAACVwAAAAACYgAAAAABEgAAAAAAEgAAAAAAEgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACGwAAAAAAGwAAAAABGwAAAAAAGwAAAAADGwAAAAACdwAAAAAAVwAAAAAAYgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADGwAAAAACGwAAAAAAGwAAAAADGwAAAAABGwAAAAADdwAAAAAAGwAAAAACGwAAAAAAGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACYgAAAAACdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADYgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAaAAAAAABdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAAA
version: 6
1,-2:
ind: 1,-2
- tiles: VwAAAAABdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAGwAAAAACdgAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdAAAAAACdAAAAAADdAAAAAAAdAAAAAABdAAAAAADdgAAAAAAZgAAAAAAdgAAAAAAdAAAAAABdAAAAAACdAAAAAADdAAAAAABVwAAAAADdgAAAAAAXgAAAAAAdgAAAAAAdAAAAAACdAAAAAABdAAAAAADdAAAAAABdAAAAAACdgAAAAAAZQAAAAAAdgAAAAAAdAAAAAADdAAAAAABdAAAAAAAdAAAAAAAVwAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdAAAAAABdAAAAAACdAAAAAADdAAAAAADdAAAAAACdgAAAAAAZgAAAAAAdgAAAAAAdAAAAAACdAAAAAADdAAAAAACdAAAAAABVwAAAAABdgAAAAAAXgAAAAAAdgAAAAAAdAAAAAADdAAAAAAAdAAAAAADdAAAAAACdAAAAAABdgAAAAAAZgAAAAAAdgAAAAAAdAAAAAACdAAAAAABdAAAAAAAdAAAAAABVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACGwAAAAACTQAAAAAAGwAAAAABVwAAAAAAVwAAAAACVwAAAAABVwAAAAAAVwAAAAADVwAAAAACVwAAAAACVwAAAAABVwAAAAABVwAAAAADVwAAAAACGwAAAAACVwAAAAAAGwAAAAACTQAAAAAAGwAAAAADVwAAAAACVwAAAAADVwAAAAABVwAAAAAAVwAAAAADVwAAAAADVwAAAAACVwAAAAABVwAAAAABVwAAAAABVwAAAAACGwAAAAACXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAACVwAAAAADVwAAAAADVwAAAAAAVwAAAAACVwAAAAADVwAAAAABVwAAAAADVwAAAAADVwAAAAACdgAAAAAAVwAAAAAAdgAAAAAAVwAAAAADVwAAAAACVwAAAAACVwAAAAABVwAAAAAAVwAAAAACVwAAAAADVwAAAAADVwAAAAACVwAAAAADVwAAAAAAVwAAAAABVwAAAAABVwAAAAADVwAAAAAAdgAAAAAAVwAAAAAAVwAAAAABVwAAAAADVwAAAAAAVwAAAAACVwAAAAACVwAAAAADVwAAAAABVwAAAAAAVwAAAAADVwAAAAABVwAAAAACVwAAAAACVwAAAAACVwAAAAAAdgAAAAAAVwAAAAACVwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAGwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAdgAAAAAAdgAAAAAAVwAAAAABVwAAAAACVwAAAAAAVwAAAAAAVwAAAAADYQAAAAAAYQAAAAACYQAAAAAAYQAAAAABYQAAAAACYQAAAAAAYQAAAAACYQAAAAAAYQAAAAADVwAAAAADVwAAAAABYQAAAAABYQAAAAAAYQAAAAADYQAAAAACYQAAAAABYQAAAAACYQAAAAAAYQAAAAABYQAAAAABYQAAAAABYQAAAAADYQAAAAABYQAAAAACYQAAAAABYQAAAAAAYQAAAAABVwAAAAACVwAAAAAAVwAAAAAAVwAAAAADVwAAAAABYQAAAAADYQAAAAAAYQAAAAACYQAAAAADYQAAAAAAYQAAAAADYQAAAAABYQAAAAAAYQAAAAAAVwAAAAAAVwAAAAAD
+ tiles: VwAAAAACdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdQAAAAABdQAAAAAAdQAAAAAAdQAAAAADdQAAAAADdwAAAAAAZwAAAAAAdwAAAAAAdQAAAAABdQAAAAADdQAAAAACdQAAAAABVwAAAAABdwAAAAAAXgAAAAAAdwAAAAAAdQAAAAAAdQAAAAADdQAAAAADdQAAAAAAdQAAAAADdwAAAAAAZgAAAAAAdwAAAAAAdQAAAAAAdQAAAAAAdQAAAAADdQAAAAABVwAAAAABdwAAAAAAZgAAAAAAdwAAAAAAdQAAAAADdQAAAAABdQAAAAACdQAAAAADdQAAAAACdwAAAAAAZwAAAAAAdwAAAAAAdQAAAAADdQAAAAACdQAAAAACdQAAAAABVwAAAAABdwAAAAAAXgAAAAAAdwAAAAAAdQAAAAAAdQAAAAAAdQAAAAADdQAAAAADdQAAAAADdwAAAAAAZwAAAAAAdwAAAAAAdQAAAAADdQAAAAABdQAAAAABdQAAAAADVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACGwAAAAABTQAAAAAAGwAAAAAAVwAAAAADVwAAAAAAVwAAAAACVwAAAAACVwAAAAABVwAAAAADVwAAAAACVwAAAAABVwAAAAADVwAAAAACVwAAAAACGwAAAAADVwAAAAACGwAAAAABTQAAAAAAGwAAAAACVwAAAAABVwAAAAAAVwAAAAACVwAAAAABVwAAAAABVwAAAAAAVwAAAAADVwAAAAAAVwAAAAAAVwAAAAABVwAAAAACGwAAAAABXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAADVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAABVwAAAAAAVwAAAAADVwAAAAABVwAAAAAAVwAAAAABdwAAAAAAVwAAAAABdwAAAAAAVwAAAAABVwAAAAAAVwAAAAABVwAAAAADVwAAAAACVwAAAAADVwAAAAADVwAAAAADVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAADVwAAAAAAVwAAAAAAVwAAAAABdwAAAAAAVwAAAAACVwAAAAABVwAAAAAAVwAAAAABVwAAAAAAVwAAAAABVwAAAAABVwAAAAACVwAAAAADVwAAAAACVwAAAAACVwAAAAADVwAAAAADVwAAAAADVwAAAAAAdwAAAAAAVwAAAAACVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAACVwAAAAADVwAAAAADVwAAAAAAYgAAAAABYgAAAAADYgAAAAADYgAAAAABYgAAAAADYgAAAAABYgAAAAADYgAAAAABYgAAAAACVwAAAAAAVwAAAAABYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAACYgAAAAAAYgAAAAACYgAAAAAAYgAAAAABYgAAAAACYgAAAAADYgAAAAAAYgAAAAAAYgAAAAACYgAAAAAAYgAAAAABYgAAAAABVwAAAAAAVwAAAAACVwAAAAABVwAAAAADVwAAAAABYgAAAAADYgAAAAABYgAAAAABYgAAAAABYgAAAAACYgAAAAADYgAAAAABYgAAAAABYgAAAAABVwAAAAACVwAAAAAA
version: 6
2,0:
ind: 2,0
- tiles: VwAAAAADYQAAAAAAVwAAAAACGwAAAAADVwAAAAABVwAAAAADVwAAAAADVwAAAAAAVwAAAAABVwAAAAACXgAAAAAAXgAAAAAAXgAAAAAAVwAAAAACVwAAAAACVwAAAAADVwAAAAABYQAAAAAAYQAAAAABGwAAAAADYQAAAAADYQAAAAACYQAAAAADYQAAAAAAYQAAAAABYQAAAAADYQAAAAABYQAAAAABYQAAAAADYQAAAAACYQAAAAABYQAAAAABVwAAAAACYQAAAAAAVwAAAAABGwAAAAAAXgAAAAAAVwAAAAABVwAAAAABVwAAAAAAVwAAAAABVwAAAAADVwAAAAADVwAAAAADVwAAAAADVwAAAAACVwAAAAADVwAAAAABXgAAAAAAYQAAAAACVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAACGwAAAAADdgAAAAAAdgAAAAAAGwAAAAAAdgAAAAAAdgAAAAAAVwAAAAACYQAAAAADVwAAAAAAdgAAAAAAVwAAAAACVwAAAAAAVwAAAAACVwAAAAAAIwAAAAABIwAAAAACIwAAAAAAdgAAAAAAaQAAAAACaQAAAAADaQAAAAADaQAAAAAAVwAAAAABYQAAAAACXgAAAAAAdgAAAAAAVwAAAAACXgAAAAAAVwAAAAABVwAAAAABIwAAAAAAIwAAAAADIwAAAAACdgAAAAAAaQAAAAAAaQAAAAABaQAAAAADaQAAAAAAVwAAAAAAYQAAAAAAVwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAIwAAAAAAIwAAAAACIwAAAAADGwAAAAACaQAAAAABUwAAAAAAaQAAAAAAaQAAAAAAYQAAAAAAYQAAAAABVwAAAAADdgAAAAAAVwAAAAADVwAAAAADVwAAAAADVwAAAAACIwAAAAAAIwAAAAAAIwAAAAADdgAAAAAAaQAAAAADaQAAAAABaQAAAAABaQAAAAABVwAAAAAAVwAAAAAAVwAAAAABdgAAAAAAVwAAAAABXgAAAAAAVwAAAAAAVwAAAAABIwAAAAADIwAAAAACIwAAAAACdgAAAAAAaQAAAAABaQAAAAAAaQAAAAACaQAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAIwAAAAACIwAAAAACIwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABdgAAAAAAVwAAAAAAVwAAAAACdgAAAAAAGwAAAAABGwAAAAAAdgAAAAAAIwAAAAADIwAAAAADIwAAAAABdgAAAAAAXgAAAAAAVwAAAAAAVwAAAAADVwAAAAABVwAAAAADdgAAAAAAXgAAAAAAVwAAAAAAdgAAAAAAGwAAAAABGwAAAAABGwAAAAAAIwAAAAABIwAAAAAAIwAAAAAAdgAAAAAAXgAAAAAAXgAAAAAAZwAAAAAAXgAAAAAAVwAAAAAAdgAAAAAAVwAAAAAAVwAAAAAAdgAAAAAAGwAAAAAAGwAAAAADdgAAAAAAIwAAAAAAIwAAAAAAIwAAAAADdgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAVwAAAAADdgAAAAAAVwAAAAABVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAIwAAAAAAIwAAAAADIwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAIgAAAAACIgAAAAADIgAAAAADIgAAAAADIgAAAAABIgAAAAACIgAAAAABIgAAAAABIgAAAAAAIgAAAAACIgAAAAABGwAAAAACGwAAAAACGwAAAAADGwAAAAABCwAAAAAAIgAAAAACIgAAAAADIgAAAAABIgAAAAACIgAAAAADIgAAAAABIgAAAAABIgAAAAABIgAAAAACIgAAAAABIgAAAAAAGwAAAAACGwAAAAAAGwAAAAABGwAAAAAACwAAAAAA
+ tiles: VwAAAAACYgAAAAADVwAAAAADGwAAAAABVwAAAAAAVwAAAAADVwAAAAABVwAAAAAAVwAAAAADVwAAAAADXgAAAAAAXgAAAAAAXgAAAAAAVwAAAAABVwAAAAABVwAAAAABVwAAAAADYgAAAAAAYgAAAAACGwAAAAACYgAAAAACYgAAAAACYgAAAAADYgAAAAACYgAAAAABYgAAAAADYgAAAAABYgAAAAAAYgAAAAADYgAAAAADYgAAAAABYgAAAAAAVwAAAAAAYgAAAAADVwAAAAABGwAAAAACXgAAAAAAVwAAAAABVwAAAAAAVwAAAAADVwAAAAACVwAAAAADVwAAAAACVwAAAAADVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAADXgAAAAAAYgAAAAAAVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAADdwAAAAAAdwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADYgAAAAAAVwAAAAABdwAAAAAAVwAAAAAAVwAAAAACVwAAAAABVwAAAAABIwAAAAABIwAAAAACIwAAAAADdwAAAAAAagAAAAAAagAAAAABagAAAAADagAAAAADVwAAAAABYgAAAAAAXgAAAAAAdwAAAAAAVwAAAAABXgAAAAAAVwAAAAABVwAAAAABIwAAAAACIwAAAAABIwAAAAABdwAAAAAAagAAAAAAagAAAAAAagAAAAADagAAAAACVwAAAAABYgAAAAADVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAIwAAAAADIwAAAAAAIwAAAAACGwAAAAABagAAAAAAUwAAAAAAagAAAAACagAAAAAAYgAAAAAAYgAAAAADVwAAAAADdwAAAAAAVwAAAAACVwAAAAADVwAAAAACVwAAAAADIwAAAAABIwAAAAABIwAAAAACdwAAAAAAagAAAAABagAAAAACagAAAAAAagAAAAACVwAAAAADVwAAAAADVwAAAAACdwAAAAAAVwAAAAAAXgAAAAAAVwAAAAAAVwAAAAACIwAAAAADIwAAAAABIwAAAAAAdwAAAAAAagAAAAACagAAAAABagAAAAADagAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAIwAAAAAAIwAAAAABIwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABdwAAAAAAVwAAAAABVwAAAAACdwAAAAAAGwAAAAACGwAAAAABdwAAAAAAIwAAAAACIwAAAAADIwAAAAABdwAAAAAAXgAAAAAAVwAAAAAAVwAAAAAAVwAAAAACVwAAAAADdwAAAAAAXgAAAAAAVwAAAAACdwAAAAAAGwAAAAADGwAAAAACGwAAAAABIwAAAAADIwAAAAADIwAAAAADdwAAAAAAXgAAAAAAXgAAAAAAaAAAAAACXgAAAAAAVwAAAAACdwAAAAAAVwAAAAADVwAAAAADdwAAAAAAGwAAAAABGwAAAAABdwAAAAAAIwAAAAAAIwAAAAADIwAAAAAAdwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAVwAAAAADdwAAAAAAVwAAAAADVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAIwAAAAACIwAAAAAAIwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAIgAAAAADIgAAAAADIgAAAAADIgAAAAADIgAAAAABIgAAAAADIgAAAAABIgAAAAABIgAAAAABIgAAAAACIgAAAAADGwAAAAACGwAAAAACGwAAAAABGwAAAAADCwAAAAAAIgAAAAACIgAAAAABIgAAAAAAIgAAAAADIgAAAAACIgAAAAACIgAAAAADIgAAAAAAIgAAAAAAIgAAAAADIgAAAAAAGwAAAAADGwAAAAABGwAAAAACGwAAAAABCwAAAAAA
version: 6
2,1:
ind: 2,1
- tiles: IgAAAAACIgAAAAACIgAAAAABIgAAAAABIgAAAAADIgAAAAACIgAAAAAAIgAAAAACIgAAAAAAIgAAAAAAIgAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAGwAAAAACdgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAGwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAcwAAAAADcwAAAAAAcwAAAAADcwAAAAACcwAAAAABdgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAGwAAAAABdgAAAAAAVwAAAAABVwAAAAABVwAAAAACdgAAAAAAcwAAAAACcwAAAAAAcwAAAAACcwAAAAABcwAAAAAAGwAAAAACXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAVwAAAAADVwAAAAAAVwAAAAADGwAAAAAAcwAAAAAAcwAAAAACcwAAAAAAcwAAAAACcwAAAAACGwAAAAADXgAAAAAAXgAAAAAACwAAAAAACwAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAcwAAAAAAcwAAAAABcwAAAAABcwAAAAABcwAAAAACdgAAAAAAXgAAAAAAXgAAAAAACwAAAAAAZwAAAAACZQAAAAAAZQAAAAAAZgAAAAAAZQAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAADVwAAAAABZQAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAVwAAAAAAVwAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAZQAAAAAAXgAAAAAAZQAAAAAAZQAAAAAAGwAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAACdgAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAGwAAAAADdgAAAAAAdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAXgAAAAAAVwAAAAABdgAAAAAAGwAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAVwAAAAACdgAAAAAAXgAAAAAAdgAAAAAAVwAAAAADdgAAAAAAGwAAAAABdgAAAAAAdgAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAXgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAA
+ tiles: IgAAAAAAIgAAAAAAIgAAAAACIgAAAAABIgAAAAACIgAAAAABIgAAAAADIgAAAAADIgAAAAADIgAAAAADIgAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAGwAAAAABdwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAACdAAAAAACdAAAAAAAdAAAAAADdAAAAAABdwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAGwAAAAACdwAAAAAAVwAAAAABVwAAAAABVwAAAAABdwAAAAAAdAAAAAACdAAAAAADdAAAAAABdAAAAAAAdAAAAAABGwAAAAABXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAABVwAAAAAAGwAAAAACdAAAAAAAdAAAAAACdAAAAAAAdAAAAAAAdAAAAAABGwAAAAAAXgAAAAAAXgAAAAAACwAAAAAACwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAACdAAAAAABdAAAAAACdAAAAAABdAAAAAABdwAAAAAAXgAAAAAAXgAAAAAACwAAAAAAaAAAAAADZgAAAAAAZgAAAAAAZwAAAAAAZgAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAACZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAVwAAAAAAVwAAAAADZgAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAZgAAAAAAXgAAAAAAZgAAAAAAZgAAAAAAGwAAAAADdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAGwAAAAADdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAXgAAAAAAVwAAAAACdwAAAAAAGwAAAAACdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAVwAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAVwAAAAABdwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAXgAAAAAAZwAAAAAAdwAAAAAAdwAAAAAA
version: 6
2,-1:
ind: 2,-1
- tiles: GwAAAAADdgAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAABXgAAAAAAVwAAAAACdgAAAAAAXgAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAcwAAAAABXgAAAAAAVwAAAAACVwAAAAADVwAAAAAAdgAAAAAAVwAAAAABdgAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAVwAAAAADVwAAAAACVwAAAAABdgAAAAAAcwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAYQAAAAAAYQAAAAACVwAAAAABdgAAAAAAcwAAAAACcwAAAAADcwAAAAAAdgAAAAAAdgAAAAAAcwAAAAACcwAAAAAAcwAAAAABcwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAYQAAAAACVwAAAAAAdgAAAAAAcwAAAAACcwAAAAAAcwAAAAACcwAAAAAAGwAAAAACcwAAAAACcwAAAAABcwAAAAAAcwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAYQAAAAABVwAAAAADGwAAAAAAcwAAAAABcwAAAAADcwAAAAAAcwAAAAAAdgAAAAAAcwAAAAAAcwAAAAACcwAAAAADcwAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAVwAAAAADYQAAAAACXgAAAAAAdgAAAAAAcwAAAAACcwAAAAABcwAAAAABcwAAAAABdgAAAAAAcwAAAAADcwAAAAACcwAAAAAAcwAAAAACdgAAAAAAZQAAAAAAZQAAAAAAXgAAAAAAYQAAAAAAXgAAAAAAdgAAAAAAcwAAAAACcwAAAAAAcwAAAAADcwAAAAABGwAAAAABcwAAAAADcwAAAAADcwAAAAABcwAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAXgAAAAAAYQAAAAAAVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAAAdgAAAAAA
+ tiles: GwAAAAACdwAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAAAXgAAAAAAVwAAAAABdwAAAAAAXgAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAACXgAAAAAAVwAAAAABVwAAAAABVwAAAAADdwAAAAAAVwAAAAACdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAVwAAAAAAVwAAAAABVwAAAAADdwAAAAAAdAAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAYgAAAAABYgAAAAADVwAAAAACdwAAAAAAdAAAAAABdAAAAAAAdAAAAAACdwAAAAAAdwAAAAAAdAAAAAACdAAAAAABdAAAAAACdAAAAAACdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACYgAAAAAAVwAAAAACdwAAAAAAdAAAAAADdAAAAAADdAAAAAAAdAAAAAACGwAAAAAAdAAAAAACdAAAAAACdAAAAAACdAAAAAACdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAYgAAAAABVwAAAAAAGwAAAAACdAAAAAAAdAAAAAAAdAAAAAADdAAAAAACdwAAAAAAdAAAAAABdAAAAAABdAAAAAADdAAAAAABdwAAAAAAZgAAAAAAZgAAAAAAVwAAAAACYgAAAAAAXgAAAAAAdwAAAAAAdAAAAAAAdAAAAAABdAAAAAABdAAAAAABdwAAAAAAdAAAAAADdAAAAAAAdAAAAAADdAAAAAACdwAAAAAAZgAAAAAAZgAAAAAAXgAAAAAAYgAAAAAAXgAAAAAAdwAAAAAAdAAAAAADdAAAAAAAdAAAAAABdAAAAAAAGwAAAAADdAAAAAABdAAAAAADdAAAAAABdAAAAAABdwAAAAAAZgAAAAAAZgAAAAAAXgAAAAAAYgAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACdwAAAAAA
version: 6
-2,1:
ind: -2,1
- tiles: dgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAADYQAAAAAAVwAAAAAAdgAAAAAAZQAAAAAAVwAAAAABVwAAAAACVwAAAAAAVwAAAAAAVwAAAAADdgAAAAAAVwAAAAAAVwAAAAADVwAAAAACVwAAAAAAdgAAAAAAVwAAAAACYQAAAAABVwAAAAADdgAAAAAAdgAAAAAAVwAAAAABVwAAAAACVwAAAAACVwAAAAACXgAAAAAAGwAAAAAAXgAAAAAAVwAAAAABVwAAAAABVwAAAAADdgAAAAAAVwAAAAACYQAAAAACVwAAAAACdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAADVwAAAAADVwAAAAADXgAAAAAAGwAAAAACXgAAAAAAVwAAAAAAVwAAAAAAVwAAAAABdgAAAAAAVwAAAAAAYQAAAAAAVwAAAAAAZwAAAAACXgAAAAAAVwAAAAAAVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACVwAAAAABVwAAAAACVwAAAAABGwAAAAAAVwAAAAACYQAAAAACVwAAAAACdgAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAdgAAAAAAVwAAAAABVwAAAAADdgAAAAAAVwAAAAACVwAAAAACVwAAAAADVwAAAAADGwAAAAADVwAAAAADYQAAAAACVwAAAAACdgAAAAAAVwAAAAACVwAAAAAAVwAAAAADGwAAAAADVwAAAAACVwAAAAADVwAAAAABVwAAAAAAVwAAAAADVwAAAAADVwAAAAADdgAAAAAAVwAAAAAAYQAAAAACVwAAAAABdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAADdgAAAAAAVwAAAAADVwAAAAACdgAAAAAAVwAAAAADVwAAAAAAVwAAAAAAVwAAAAAAdgAAAAAAVwAAAAAAYQAAAAADVwAAAAAAdgAAAAAAGwAAAAABVwAAAAAAVwAAAAADdgAAAAAAYQAAAAADVwAAAAADdgAAAAAAVwAAAAAAVwAAAAADVwAAAAADVwAAAAAAdgAAAAAAVwAAAAABYQAAAAAAVwAAAAAAdgAAAAAAGwAAAAABVwAAAAAAVwAAAAABCwAAAAAAVwAAAAACCwAAAAAAVwAAAAABCwAAAAAAVwAAAAAAVwAAAAABVwAAAAAAdgAAAAAAVwAAAAAAYQAAAAACVwAAAAABGwAAAAADGwAAAAACVwAAAAACVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACYQAAAAABVwAAAAACdgAAAAAAGwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACYQAAAAADVwAAAAABdgAAAAAAGwAAAAAAVwAAAAACVwAAAAAAGwAAAAADdgAAAAAAZgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACYQAAAAAAVwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAcwAAAAADcwAAAAADcwAAAAACdgAAAAAAVwAAAAAAYQAAAAAAVwAAAAADGwAAAAACVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZwAAAAADdgAAAAAAcwAAAAAAcwAAAAADcwAAAAAAGwAAAAACVwAAAAADYQAAAAAAVwAAAAACGwAAAAACVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAcwAAAAABcwAAAAABcwAAAAABdgAAAAAAVwAAAAACYQAAAAABVwAAAAADdgAAAAAAVwAAAAAD
+ tiles: dwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAYgAAAAAAVwAAAAAAdwAAAAAAZgAAAAAAVwAAAAACVwAAAAABVwAAAAADVwAAAAAAVwAAAAABdwAAAAAAVwAAAAADVwAAAAACVwAAAAAAVwAAAAAAdwAAAAAAVwAAAAABYgAAAAABVwAAAAADdwAAAAAAdwAAAAAAVwAAAAADVwAAAAACVwAAAAABVwAAAAAAXgAAAAAAGwAAAAABXgAAAAAAVwAAAAACVwAAAAADVwAAAAABdwAAAAAAVwAAAAABYgAAAAACVwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAABVwAAAAAAVwAAAAABXgAAAAAAGwAAAAADXgAAAAAAVwAAAAABVwAAAAAAVwAAAAACdwAAAAAAVwAAAAADYgAAAAABVwAAAAAAaAAAAAADXgAAAAAAVwAAAAADVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAABVwAAAAABVwAAAAACGwAAAAADVwAAAAAAYgAAAAADVwAAAAACdwAAAAAAVwAAAAACVwAAAAABVwAAAAAAdwAAAAAAVwAAAAACVwAAAAACdwAAAAAAVwAAAAAAVwAAAAABVwAAAAACVwAAAAAAGwAAAAADVwAAAAADYgAAAAADVwAAAAADdwAAAAAAVwAAAAABVwAAAAACVwAAAAAAGwAAAAAAVwAAAAACVwAAAAAAVwAAAAADVwAAAAACVwAAAAABVwAAAAACVwAAAAACdwAAAAAAVwAAAAAAYgAAAAACVwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADVwAAAAADdwAAAAAAVwAAAAADVwAAAAABdwAAAAAAVwAAAAADVwAAAAADVwAAAAACVwAAAAABdwAAAAAAVwAAAAABYgAAAAADVwAAAAADdwAAAAAAGwAAAAACVwAAAAAAVwAAAAAAdwAAAAAAYgAAAAABVwAAAAABdwAAAAAAVwAAAAABVwAAAAADVwAAAAACVwAAAAACdwAAAAAAVwAAAAACYgAAAAADVwAAAAACdwAAAAAAGwAAAAACVwAAAAACVwAAAAADCwAAAAAAVwAAAAAACwAAAAAAVwAAAAABCwAAAAAAVwAAAAADVwAAAAABVwAAAAAAdwAAAAAAVwAAAAACYgAAAAAAVwAAAAADGwAAAAADGwAAAAAAVwAAAAADVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAYgAAAAADVwAAAAADdwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAYgAAAAABVwAAAAACdwAAAAAAGwAAAAADVwAAAAABVwAAAAABGwAAAAAAdwAAAAAAZwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAYgAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAADdAAAAAADdAAAAAADdwAAAAAAVwAAAAACYgAAAAADVwAAAAAAGwAAAAADVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAaAAAAAADdwAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAGwAAAAADVwAAAAAAYgAAAAADVwAAAAACGwAAAAADVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAADdAAAAAAAdAAAAAABdwAAAAAAVwAAAAAAYgAAAAAAVwAAAAABdwAAAAAAVwAAAAAD
version: 6
3,1:
ind: 3,1
- tiles: XgAAAAAAXgAAAAAAXgAAAAAAVwAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAVwAAAAACXgAAAAAACwAAAAAAXgAAAAAAXgAAAAAAVwAAAAADVwAAAAADVwAAAAADdgAAAAAAdgAAAAAAXgAAAAAAXgAAAAAAVwAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAVwAAAAAAXgAAAAAAXgAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAVwAAAAADVwAAAAADVwAAAAABVwAAAAABVwAAAAABXgAAAAAAXgAAAAAAXgAAAAAAZwAAAAACVwAAAAAAVwAAAAAAVwAAAAACdgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAACwAAAAAAVwAAAAADVwAAAAACVwAAAAADVwAAAAABXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAVwAAAAADVwAAAAABVwAAAAAAdgAAAAAACwAAAAAACwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAACwAAAAAAZwAAAAABXgAAAAAACwAAAAAAZwAAAAAAXgAAAAAACwAAAAAAZwAAAAAAXgAAAAAAXgAAAAAAZwAAAAACaQAAAAABaQAAAAACaQAAAAADaQAAAAABdgAAAAAAVwAAAAABVwAAAAACdgAAAAAAVwAAAAACVwAAAAADdgAAAAAAVwAAAAADVwAAAAACdgAAAAAAVwAAAAACVwAAAAABdgAAAAAAaQAAAAABaQAAAAADaQAAAAACdgAAAAAAVwAAAAABVwAAAAACdgAAAAAAVwAAAAADVwAAAAACdgAAAAAAVwAAAAADVwAAAAAAdgAAAAAAVwAAAAACVwAAAAACdgAAAAAAaQAAAAACdgAAAAAAaQAAAAACdgAAAAAAVwAAAAACVwAAAAAAdgAAAAAAVwAAAAABVwAAAAADdgAAAAAAVwAAAAACVwAAAAADdgAAAAAAVwAAAAADVwAAAAABdgAAAAAAUwAAAAAAdgAAAAAAUwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAXgAAAAAAXgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAXgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAXgAAAAAAZQAAAAAAVwAAAAAAdgAAAAAAdgAAAAAAVwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAADVwAAAAACVwAAAAAAdgAAAAAAdgAAAAAAVwAAAAACVwAAAAADXgAAAAAAVwAAAAACdgAAAAAAVwAAAAABVwAAAAADZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAADVwAAAAACVwAAAAABdgAAAAAAdgAAAAAAVwAAAAADXgAAAAAAGwAAAAADGwAAAAACdgAAAAAAVwAAAAADVwAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAADXgAAAAAAdgAAAAAAZwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAPAAAAAAAPAAAAAAAXgAAAAAAXgAAAAAAcwAAAAACdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAGwAAAAAA
+ tiles: XgAAAAAAXgAAAAAAXgAAAAAAVwAAAAACOgAAAAAAOgAAAAAAOgAAAAAAVwAAAAADXgAAAAAACwAAAAAAXgAAAAAAXgAAAAAAVwAAAAACVwAAAAABVwAAAAACdwAAAAAAdwAAAAAAXgAAAAAAXgAAAAAAVwAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAVwAAAAAAXgAAAAAAXgAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAVwAAAAAAVwAAAAABVwAAAAADVwAAAAACVwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAaAAAAAACVwAAAAABVwAAAAABVwAAAAACdwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAACwAAAAAAVwAAAAACVwAAAAACVwAAAAABVwAAAAACXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAVwAAAAACVwAAAAABVwAAAAABdwAAAAAACwAAAAAACwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAACwAAAAAAaAAAAAACXgAAAAAACwAAAAAAaAAAAAAAXgAAAAAACwAAAAAAaAAAAAACXgAAAAAAXgAAAAAAaAAAAAABagAAAAAAagAAAAADagAAAAADagAAAAACdwAAAAAAVwAAAAADVwAAAAAAdwAAAAAAVwAAAAADVwAAAAADdwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAVwAAAAAAVwAAAAABdwAAAAAAagAAAAADagAAAAACagAAAAACdwAAAAAAVwAAAAABVwAAAAADdwAAAAAAVwAAAAACVwAAAAACdwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAVwAAAAACVwAAAAAAdwAAAAAAagAAAAAAdwAAAAAAagAAAAABdwAAAAAAVwAAAAAAVwAAAAACdwAAAAAAVwAAAAAAVwAAAAACdwAAAAAAVwAAAAACVwAAAAABdwAAAAAAVwAAAAADVwAAAAADdwAAAAAAUwAAAAAAdwAAAAAAUwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAXgAAAAAAXgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAXgAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAXgAAAAAAZgAAAAAAVwAAAAACdwAAAAAAdwAAAAAAVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADVwAAAAACVwAAAAABdwAAAAAAdwAAAAAAVwAAAAACVwAAAAADXgAAAAAAVwAAAAAAdwAAAAAAVwAAAAAAVwAAAAACZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAACVwAAAAABdwAAAAAAdwAAAAAAVwAAAAABXgAAAAAAGwAAAAAAGwAAAAADdwAAAAAAVwAAAAACVwAAAAADZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADXgAAAAAAdwAAAAAAaAAAAAABdwAAAAAAdwAAAAAAdwAAAAAAPAAAAAAAPAAAAAAAXgAAAAAAXgAAAAAAdAAAAAABdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAGwAAAAAA
version: 6
3,0:
ind: 3,0
- tiles: VwAAAAADVwAAAAADVwAAAAADVwAAAAABYQAAAAAAVwAAAAADVwAAAAADdgAAAAAAdgAAAAAAZwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAYQAAAAABYQAAAAACYQAAAAABYQAAAAAAYQAAAAAAVwAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZwAAAAABVwAAAAAAVwAAAAACVwAAAAAAVwAAAAAAVwAAAAAAXgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAZgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAGwAAAAABZQAAAAAAZQAAAAAAdgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAVwAAAAAAVwAAAAACCwAAAAAAVwAAAAACVwAAAAABXgAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAVwAAAAAAVwAAAAACXgAAAAAAVwAAAAAAVwAAAAABXgAAAAAAXgAAAAAAVwAAAAACVwAAAAADVwAAAAADVwAAAAAAVwAAAAAAXgAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAVwAAAAACVwAAAAABVwAAAAADVwAAAAADVwAAAAABCwAAAAAACwAAAAAAVwAAAAADVwAAAAADVwAAAAACVwAAAAAAXgAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAVwAAAAABVwAAAAABVwAAAAACVwAAAAACVwAAAAADVwAAAAACVwAAAAADVwAAAAADVwAAAAACVwAAAAAAVwAAAAADXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABVwAAAAABXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAdgAAAAAAaQAAAAAAUwAAAAAAVwAAAAADVwAAAAADXgAAAAAAdgAAAAAAdgAAAAAAGwAAAAACdgAAAAAAdgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAACwAAAAAACwAAAAAAdgAAAAAAaQAAAAABdgAAAAAAdgAAAAAAXgAAAAAAXgAAAAAAdgAAAAAAVwAAAAADVwAAAAAAVwAAAAADdgAAAAAAXgAAAAAAXgAAAAAAdgAAAAAAXgAAAAAAXgAAAAAAdgAAAAAAaQAAAAAAUwAAAAAAXgAAAAAAXgAAAAAAZwAAAAADdgAAAAAAVwAAAAACVwAAAAAAVwAAAAABdgAAAAAAZwAAAAACXgAAAAAAXgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAaQAAAAABdgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAdgAAAAAAVwAAAAABVwAAAAAAVwAAAAABdgAAAAAAZwAAAAAAZwAAAAADZwAAAAAAXgAAAAAAaQAAAAACaQAAAAADaQAAAAADUwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAACwAAAAAAXgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAASgAAAAADXgAAAAAAVwAAAAABVwAAAAABCwAAAAAAVwAAAAABVwAAAAADCwAAAAAASgAAAAABCwAAAAAAZwAAAAACVwAAAAACVwAAAAAAVwAAAAACdgAAAAAA
+ tiles: VwAAAAADVwAAAAADVwAAAAACVwAAAAABYgAAAAABVwAAAAABVwAAAAADdwAAAAAAdwAAAAAAaAAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAYgAAAAABYgAAAAACYgAAAAADYgAAAAAAYgAAAAABVwAAAAABXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAaAAAAAACVwAAAAACVwAAAAAAVwAAAAADVwAAAAADVwAAAAAAXgAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAGwAAAAACZgAAAAAAZgAAAAAAdwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAVwAAAAACVwAAAAABCwAAAAAAVwAAAAABVwAAAAABXgAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAVwAAAAAAVwAAAAADXgAAAAAAVwAAAAACVwAAAAADXgAAAAAAXgAAAAAAVwAAAAABVwAAAAACVwAAAAABVwAAAAACVwAAAAABXgAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAVwAAAAADVwAAAAAAVwAAAAACVwAAAAADVwAAAAACCwAAAAAACwAAAAAAVwAAAAADVwAAAAADVwAAAAACVwAAAAADXgAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAVwAAAAABVwAAAAACVwAAAAAAVwAAAAADVwAAAAABVwAAAAABVwAAAAACVwAAAAABVwAAAAAAVwAAAAAAVwAAAAACXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAABXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAdwAAAAAAagAAAAACUwAAAAAAVwAAAAABVwAAAAACXgAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAACwAAAAAACwAAAAAAdwAAAAAAagAAAAACdwAAAAAAdwAAAAAAXgAAAAAAXgAAAAAAdwAAAAAAVwAAAAABVwAAAAADVwAAAAABdwAAAAAAXgAAAAAAXgAAAAAAdwAAAAAAXgAAAAAAXgAAAAAAdwAAAAAAagAAAAACUwAAAAAAXgAAAAAAXgAAAAAAaAAAAAACdwAAAAAAVwAAAAACVwAAAAAAVwAAAAAAdwAAAAAAaAAAAAACXgAAAAAAXgAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAagAAAAABdwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAdwAAAAAAVwAAAAADVwAAAAACVwAAAAABdwAAAAAAaAAAAAABaAAAAAACaAAAAAABXgAAAAAAagAAAAABagAAAAADagAAAAABUwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAACwAAAAAAXgAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAASgAAAAABXgAAAAAAVwAAAAADVwAAAAACCwAAAAAAVwAAAAADVwAAAAABCwAAAAAASgAAAAADCwAAAAAAaAAAAAADVwAAAAADVwAAAAABVwAAAAADdwAAAAAA
version: 6
3,-1:
ind: 3,-1
- tiles: dgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAGwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAABdgAAAAAAVwAAAAABVwAAAAAAVwAAAAABVwAAAAADVwAAAAAAVwAAAAAAdgAAAAAAdgAAAAAAGwAAAAABdgAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAVwAAAAABVwAAAAADVwAAAAADVwAAAAAAVwAAAAAAVwAAAAADVwAAAAADVwAAAAAAXgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABXgAAAAAAVwAAAAAAVwAAAAACVwAAAAABVwAAAAABXgAAAAAAVwAAAAABVwAAAAABVwAAAAABVwAAAAAAXgAAAAAAVwAAAAADZQAAAAAAdgAAAAAAVQAAAAAAVwAAAAABVwAAAAADVwAAAAADVwAAAAADVwAAAAABVwAAAAADVwAAAAACVwAAAAABVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAVQAAAAAMVwAAAAADVwAAAAAAVwAAAAABVwAAAAABVwAAAAACVwAAAAABVwAAAAACVwAAAAAAVwAAAAACVwAAAAAAVwAAAAADVwAAAAABVwAAAAABdgAAAAAAVwAAAAABVwAAAAACVwAAAAABVwAAAAABVQAAAAAAVQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVQAAAAAAVQAAAAAIVwAAAAADVwAAAAADGwAAAAAAXgAAAAAAVwAAAAADVwAAAAACVwAAAAABVQAAAAAAVQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVQAAAAAEVQAAAAAAVwAAAAAAVwAAAAACdgAAAAAAXgAAAAAAXgAAAAAAVwAAAAAAVwAAAAAAVQAAAAAAVQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVQAAAAAAVQAAAAAAVwAAAAAAVwAAAAAAdgAAAAAAXgAAAAAAVQAAAAAAVwAAAAABVwAAAAABVwAAAAADXgAAAAAAVwAAAAACVwAAAAACVwAAAAACVwAAAAADVwAAAAAAVwAAAAADVwAAAAABVwAAAAADXgAAAAAAdgAAAAAAdgAAAAAAVQAAAAAAVwAAAAACVwAAAAAAVwAAAAADVwAAAAABVwAAAAADVwAAAAACVwAAAAACVwAAAAADVwAAAAACVwAAAAABVwAAAAADXgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAGwAAAAADGwAAAAADGwAAAAADdgAAAAAAZgAAAAAAZQAAAAAAZgAAAAAAdgAAAAAAcwAAAAAAcwAAAAACcwAAAAABcwAAAAACcwAAAAACZQAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAYQAAAAAAVwAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAcwAAAAACcwAAAAAAcwAAAAABcwAAAAACcwAAAAABZQAAAAAAdgAAAAAAVwAAAAACVwAAAAABYQAAAAACVwAAAAAAVwAAAAABdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAcwAAAAACcwAAAAACcwAAAAACcwAAAAABcwAAAAABdgAAAAAAdgAAAAAAVwAAAAACVwAAAAAAYQAAAAACVwAAAAADVwAAAAABGwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAcwAAAAACcwAAAAABcwAAAAACcwAAAAACcwAAAAAC
+ tiles: dwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABdwAAAAAAVwAAAAACVwAAAAABVwAAAAADVwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAVwAAAAADVwAAAAAAVwAAAAAAVwAAAAABVwAAAAADVwAAAAADVwAAAAACVwAAAAADXgAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABXgAAAAAAVwAAAAADVwAAAAABVwAAAAADVwAAAAADXgAAAAAAVwAAAAACVwAAAAADVwAAAAADVwAAAAABXgAAAAAAVwAAAAAAZgAAAAAAdwAAAAAAVQAAAAAAVwAAAAAAVwAAAAADVwAAAAABVwAAAAADVwAAAAACVwAAAAADVwAAAAACVwAAAAADVwAAAAACVwAAAAAAVwAAAAADVwAAAAABXgAAAAAAdwAAAAAAdwAAAAAAVQAAAAAFVwAAAAADVwAAAAAAVwAAAAAAVwAAAAABVwAAAAADVwAAAAAAVwAAAAABVwAAAAAAVwAAAAACVwAAAAABVwAAAAACVwAAAAAAVwAAAAACdwAAAAAAVwAAAAADVwAAAAADVwAAAAABVwAAAAABVQAAAAALVQAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVQAAAAACVQAAAAAAVwAAAAADVwAAAAACGwAAAAACXgAAAAAAVwAAAAABVwAAAAAAVwAAAAAAVQAAAAAAVQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVQAAAAAAVQAAAAAAVwAAAAABVwAAAAACdwAAAAAAXgAAAAAAXgAAAAAAVwAAAAAAVwAAAAADVQAAAAAAVQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVQAAAAAAVQAAAAAEVwAAAAADVwAAAAADdwAAAAAAXgAAAAAAVQAAAAAAVwAAAAABVwAAAAACVwAAAAABXgAAAAAAVwAAAAADVwAAAAACVwAAAAADVwAAAAABVwAAAAABVwAAAAACVwAAAAAAVwAAAAACXgAAAAAAdwAAAAAAdwAAAAAAVQAAAAAAVwAAAAACVwAAAAABVwAAAAABVwAAAAACVwAAAAAAVwAAAAADVwAAAAAAVwAAAAACVwAAAAADVwAAAAABVwAAAAAAXgAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAABGwAAAAAAdwAAAAAAZwAAAAAAZgAAAAAAZwAAAAAAdwAAAAAAdAAAAAAAdAAAAAADdAAAAAAAdAAAAAAAdAAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAVwAAAAADYgAAAAADVwAAAAADdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdAAAAAAAdAAAAAACdAAAAAADdAAAAAABdAAAAAACZgAAAAAAdwAAAAAAVwAAAAAAVwAAAAADYgAAAAACVwAAAAAAVwAAAAADdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdAAAAAABdAAAAAADdAAAAAABdAAAAAAAdAAAAAADdwAAAAAAdwAAAAAAVwAAAAACVwAAAAABYgAAAAAAVwAAAAACVwAAAAAAGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAABdAAAAAADdAAAAAACdAAAAAADdAAAAAAC
version: 6
2,-2:
ind: 2,-2
- tiles: dgAAAAAAdgAAAAAAXgAAAAAAYQAAAAABVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdAAAAAADdgAAAAAAVwAAAAADYQAAAAACVwAAAAADGwAAAAACZQAAAAAAZQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAdAAAAAABdgAAAAAAVwAAAAABYQAAAAABVwAAAAADdgAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAATgAAAAAANAAAAAAANAAAAAAANAAAAAAAdAAAAAADdgAAAAAAVwAAAAADYQAAAAACVwAAAAABdgAAAAAAXgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAATgAAAAAANAAAAAAANAAAAAAANAAAAAAAdAAAAAABdgAAAAAAVwAAAAADYQAAAAACVwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAASwAAAAAASwAAAAAAGwAAAAACTgAAAAAATgAAAAAATgAAAAAATgAAAAAAdgAAAAAAGwAAAAAAXgAAAAAAYQAAAAACVwAAAAADVwAAAAACVwAAAAADVwAAAAACVwAAAAACSwAAAAAASwAAAAAAdgAAAAAATgAAAAAATgAAAAAAdgAAAAAAdgAAAAAATQAAAAAAGwAAAAACXgAAAAAAYQAAAAAAVwAAAAADVwAAAAADVwAAAAAAVwAAAAADVwAAAAADSwAAAAAASwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAABTgAAAAAATQAAAAAAGwAAAAADVwAAAAADYQAAAAAAVwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAASwAAAAAASwAAAAAAGwAAAAADTgAAAAAATgAAAAAATgAAAAAATgAAAAAAdgAAAAAAdgAAAAAAVwAAAAADYQAAAAACXgAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAATgAAAAAANAAAAAAANAAAAAAANAAAAAAAVwAAAAACdgAAAAAAVwAAAAAAYQAAAAAAXgAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAATgAAAAAANAAAAAAANAAAAAAANAAAAAAAVwAAAAACdgAAAAAAVwAAAAABYQAAAAADVwAAAAADdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAVwAAAAACdgAAAAAAVwAAAAADYQAAAAADVwAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAADGwAAAAAAGwAAAAADdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAADVwAAAAABVwAAAAACYQAAAAADVwAAAAAAVwAAAAACdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAADYQAAAAAAYQAAAAADVwAAAAADVwAAAAABdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABVwAAAAADVwAAAAABVwAAAAAAVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAVwAAAAADdgAAAAAA
+ tiles: dwAAAAAAdwAAAAAAXgAAAAAAYgAAAAACVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdQAAAAABdwAAAAAAVwAAAAACYgAAAAABVwAAAAABGwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAdQAAAAACdwAAAAAAVwAAAAACYgAAAAAAVwAAAAACdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAATgAAAAAANAAAAAAANAAAAAAANAAAAAAAdQAAAAAAdwAAAAAAVwAAAAAAYgAAAAACVwAAAAADdwAAAAAAXgAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAATgAAAAAANAAAAAAANAAAAAAANAAAAAAAdQAAAAACdwAAAAAAVwAAAAACYgAAAAAAVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAASwAAAAAASwAAAAAAGwAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAdwAAAAAAGwAAAAACXgAAAAAAYgAAAAADVwAAAAABVwAAAAACVwAAAAABVwAAAAADVwAAAAACSwAAAAAASwAAAAAAdwAAAAAATgAAAAAATgAAAAAAdwAAAAAAdwAAAAAATQAAAAAAGwAAAAADXgAAAAAAYgAAAAACVwAAAAACVwAAAAABVwAAAAACVwAAAAABVwAAAAACSwAAAAAASwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADTgAAAAAATQAAAAAAGwAAAAAAVwAAAAABYgAAAAAAVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAASwAAAAAASwAAAAAAGwAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAdwAAAAAAdwAAAAAAVwAAAAACYgAAAAAAXgAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAATgAAAAAANAAAAAAANAAAAAAANAAAAAAAVwAAAAACdwAAAAAAVwAAAAADYgAAAAAAXgAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAATgAAAAAANAAAAAAANAAAAAAANAAAAAAAVwAAAAADdwAAAAAAVwAAAAACYgAAAAADVwAAAAADdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAVwAAAAAAdwAAAAAAVwAAAAADYgAAAAACVwAAAAACdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADGwAAAAACGwAAAAADdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAACVwAAAAACVwAAAAAAYgAAAAADVwAAAAACVwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAADYgAAAAABYgAAAAACYgAAAAADVwAAAAAAVwAAAAACdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAADVwAAAAAAVwAAAAABVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAVwAAAAAAdwAAAAAA
version: 6
-2,-3:
ind: -2,-3
- tiles: GwAAAAAAZgAAAAAAGwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAAANAAAAAAAGwAAAAACGwAAAAADdgAAAAAAbAAAAAACGwAAAAABGwAAAAADGwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAGwAAAAACNAAAAAAAGwAAAAAAGwAAAAADdgAAAAAAbAAAAAACZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAGwAAAAAANAAAAAAAGwAAAAADGwAAAAABdgAAAAAAbAAAAAACXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAZQAAAAAAdgAAAAAAXgAAAAAAVwAAAAABVwAAAAABVwAAAAADGwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAZgAAAAAAGwAAAAAAVwAAAAAAYQAAAAADYQAAAAADYQAAAAABGwAAAAABVwAAAAADdgAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAVwAAAAAAYQAAAAAAXgAAAAAAXgAAAAAAGwAAAAADVwAAAAADGwAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAADYQAAAAABVwAAAAABdgAAAAAAdgAAAAAAVwAAAAABdgAAAAAAVwAAAAABVwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAXgAAAAAAdgAAAAAAGwAAAAAAGwAAAAAAGwAAAAACdgAAAAAAcwAAAAADVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAXgAAAAAAdgAAAAAAXgAAAAAAYQAAAAACXgAAAAAAdgAAAAAAcwAAAAAAVwAAAAACXgAAAAAAdgAAAAAAXgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAYQAAAAACVwAAAAAAdgAAAAAAcwAAAAAAGwAAAAACdgAAAAAAdgAAAAAAXgAAAAAAXgAAAAAAdgAAAAAAXAAAAAAAXAAAAAACXAAAAAABXAAAAAACdgAAAAAAXgAAAAAAYQAAAAAAVwAAAAABdgAAAAAAdgAAAAAAVwAAAAABVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXAAAAAACXAAAAAADXAAAAAABXAAAAAAAdgAAAAAAVwAAAAABYQAAAAADVwAAAAABdgAAAAAAdgAAAAAAVwAAAAABVwAAAAADGwAAAAACZgAAAAAAVwAAAAAAGwAAAAADXAAAAAAAXAAAAAACXAAAAAACXAAAAAABVwAAAAACVwAAAAADYQAAAAABVwAAAAABdgAAAAAAZQAAAAAAXgAAAAAAVwAAAAAAGwAAAAAAVwAAAAABZgAAAAAAGwAAAAAAXAAAAAACXAAAAAADXAAAAAAAXAAAAAABdgAAAAAAVwAAAAABYQAAAAAAVwAAAAADdgAAAAAAZwAAAAADVwAAAAACVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXAAAAAACXAAAAAAAXAAAAAACXAAAAAAAGwAAAAAAVwAAAAAAYQAAAAABVwAAAAADdgAAAAAAdgAAAAAA
+ tiles: GwAAAAADZwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADNAAAAAAAGwAAAAABGwAAAAADdwAAAAAAbQAAAAADGwAAAAADGwAAAAACGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAGwAAAAABNAAAAAAAGwAAAAABGwAAAAABdwAAAAAAbQAAAAACZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAGwAAAAABNAAAAAAAGwAAAAABGwAAAAAAdwAAAAAAbQAAAAADXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAZgAAAAAAdwAAAAAAXgAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAZwAAAAAAGwAAAAADVwAAAAACYgAAAAAAYgAAAAABYgAAAAAAGwAAAAACVwAAAAADdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAVwAAAAABYgAAAAACXgAAAAAAXgAAAAAAGwAAAAAAVwAAAAABGwAAAAADZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAYgAAAAAAVwAAAAACdwAAAAAAdwAAAAAAVwAAAAABdwAAAAAAVwAAAAABVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAXgAAAAAAdwAAAAAAGwAAAAACGwAAAAACGwAAAAACdwAAAAAAdAAAAAAAVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAXgAAAAAAdwAAAAAAXgAAAAAAYgAAAAACXgAAAAAAdwAAAAAAdAAAAAACVwAAAAABXgAAAAAAdwAAAAAAXgAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAYgAAAAADVwAAAAABdwAAAAAAdAAAAAADGwAAAAADdwAAAAAAdwAAAAAAXgAAAAAAXgAAAAAAdwAAAAAAXAAAAAACXAAAAAAAXAAAAAADXAAAAAACdwAAAAAAXgAAAAAAYgAAAAACVwAAAAACdwAAAAAAdwAAAAAAVwAAAAACVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXAAAAAACXAAAAAABXAAAAAAAXAAAAAADdwAAAAAAVwAAAAABYgAAAAACVwAAAAADdwAAAAAAdwAAAAAAVwAAAAACVwAAAAAAGwAAAAABZwAAAAAAVwAAAAABGwAAAAABXAAAAAADXAAAAAACXAAAAAADXAAAAAABVwAAAAAAVwAAAAAAYgAAAAAAVwAAAAABdwAAAAAAZgAAAAAAXgAAAAAAVwAAAAADGwAAAAADVwAAAAADZwAAAAAAGwAAAAACXAAAAAADXAAAAAACXAAAAAACXAAAAAADdwAAAAAAVwAAAAADYgAAAAADVwAAAAABdwAAAAAAaAAAAAADVwAAAAADVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXAAAAAAAXAAAAAADXAAAAAABXAAAAAACGwAAAAABVwAAAAABYgAAAAABVwAAAAACdwAAAAAAdwAAAAAA
version: 6
-1,-3:
ind: -1,-3
- tiles: bAAAAAABbAAAAAAAbAAAAAABbAAAAAAAbAAAAAACdgAAAAAAaQAAAAABaQAAAAABaQAAAAABaQAAAAACaQAAAAADaQAAAAAAaQAAAAABaQAAAAACaQAAAAABaQAAAAABbAAAAAADbAAAAAADbAAAAAACbAAAAAADbAAAAAADVwAAAAABaQAAAAACaQAAAAACaQAAAAADaQAAAAADaQAAAAACaQAAAAAAaQAAAAABaQAAAAADaQAAAAACaQAAAAAAbAAAAAAAbAAAAAACbAAAAAADbAAAAAACbAAAAAAAdgAAAAAAaQAAAAAAaQAAAAADaQAAAAABaQAAAAABaQAAAAADaQAAAAABaQAAAAADaQAAAAABaQAAAAACaQAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACVwAAAAABVwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAABXgAAAAAAVwAAAAABXgAAAAAAVwAAAAAAVwAAAAACVwAAAAACXgAAAAAAXgAAAAAAXgAAAAAAXAAAAAAAXAAAAAAAXAAAAAACXAAAAAADXAAAAAABXgAAAAAAXgAAAAAAYQAAAAABYQAAAAAASgAAAAAAYQAAAAAAYQAAAAACYQAAAAABSgAAAAADYQAAAAADYQAAAAACXAAAAAAAXAAAAAABXAAAAAACXAAAAAABXAAAAAABYQAAAAACYQAAAAADXgAAAAAAXgAAAAAAVwAAAAAAVwAAAAADVwAAAAAAVwAAAAAAVwAAAAABVwAAAAABVwAAAAABXAAAAAADXAAAAAAAXAAAAAABXAAAAAADXAAAAAACVwAAAAACVwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAACdgAAAAAAXAAAAAAAXAAAAAABXAAAAAACXAAAAAABXAAAAAADdgAAAAAAdgAAAAAAcwAAAAACcwAAAAACdgAAAAAAcwAAAAAAcwAAAAADcwAAAAABcwAAAAADcwAAAAACdgAAAAAAdgAAAAAAGwAAAAABGwAAAAADGwAAAAADdgAAAAAAdgAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAGwAAAAAAcwAAAAAAcwAAAAABcwAAAAABcwAAAAAAcwAAAAABcwAAAAABdgAAAAAAVwAAAAACYQAAAAAAVwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAdgAAAAAAcwAAAAAAcwAAAAABcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAdgAAAAAAVwAAAAACYQAAAAAAVwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAcwAAAAABcwAAAAABcwAAAAAAcwAAAAAAcwAAAAADcwAAAAACdgAAAAAAVwAAAAAAYQAAAAAAVwAAAAABdgAAAAAAdQAAAAAAAAAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAcwAAAAABcwAAAAAAcwAAAAACcwAAAAABcwAAAAADdgAAAAAAdgAAAAAAVwAAAAADYQAAAAAAXgAAAAAAXgAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAZwAAAAABdgAAAAAAdgAAAAAAGwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAVwAAAAABYQAAAAACXgAAAAAAXgAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAXgAAAAAAZwAAAAABXgAAAAAAXgAAAAAAdgAAAAAAXgAAAAAAVwAAAAACYQAAAAAAXgAAAAAAXgAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAdgAAAAAAXgAAAAAAVwAAAAAAYQAAAAADXgAAAAAAXgAAAAAAdgAAAAAAAAAAAAAA
+ tiles: bQAAAAABbQAAAAACbQAAAAADbQAAAAABbQAAAAABdwAAAAAAagAAAAAAagAAAAACagAAAAADagAAAAADagAAAAACagAAAAAAagAAAAACagAAAAABagAAAAABagAAAAADbQAAAAAAbQAAAAACbQAAAAAAbQAAAAAAbQAAAAACVwAAAAABagAAAAAAagAAAAADagAAAAACagAAAAADagAAAAADagAAAAABagAAAAACagAAAAAAagAAAAABagAAAAAAbQAAAAADbQAAAAAAbQAAAAACbQAAAAAAbQAAAAAAdwAAAAAAagAAAAAAagAAAAAAagAAAAADagAAAAACagAAAAADagAAAAADagAAAAAAagAAAAAAagAAAAADagAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADVwAAAAABVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAAAXgAAAAAAVwAAAAADXgAAAAAAVwAAAAABVwAAAAAAVwAAAAADXgAAAAAAXgAAAAAAXgAAAAAAXAAAAAACXAAAAAABXAAAAAADXAAAAAAAXAAAAAABXgAAAAAAXgAAAAAAYgAAAAABYgAAAAACSgAAAAAAYgAAAAADYgAAAAADYgAAAAACSgAAAAADYgAAAAACYgAAAAAAXAAAAAAAXAAAAAADXAAAAAADXAAAAAADXAAAAAAAYgAAAAACYgAAAAABXgAAAAAAXgAAAAAAVwAAAAAAVwAAAAABVwAAAAABVwAAAAACVwAAAAABVwAAAAAAVwAAAAABXAAAAAACXAAAAAAAXAAAAAABXAAAAAAAXAAAAAABVwAAAAADVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAdwAAAAAAXAAAAAADXAAAAAABXAAAAAACXAAAAAACXAAAAAADdwAAAAAAdwAAAAAAdAAAAAAAdAAAAAACdwAAAAAAdAAAAAADdAAAAAAAdAAAAAAAdAAAAAACdAAAAAADdwAAAAAAdwAAAAAAGwAAAAACGwAAAAABGwAAAAACdwAAAAAAdwAAAAAAAAAAAAAAdAAAAAADdAAAAAABGwAAAAAAdAAAAAADdAAAAAABdAAAAAAAdAAAAAACdAAAAAADdAAAAAADdwAAAAAAVwAAAAABYgAAAAADVwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdAAAAAAAdAAAAAADdwAAAAAAdAAAAAABdAAAAAABdAAAAAAAdAAAAAACdAAAAAAAdAAAAAACdwAAAAAAVwAAAAADYgAAAAADVwAAAAACdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAAAdAAAAAAAdAAAAAABdAAAAAAAdAAAAAADdAAAAAACdwAAAAAAVwAAAAACYgAAAAABVwAAAAADdwAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdAAAAAABdAAAAAADdAAAAAADdAAAAAADdAAAAAABdwAAAAAAdwAAAAAAVwAAAAADYgAAAAABXgAAAAAAXgAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAaAAAAAABdwAAAAAAdwAAAAAAGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAVwAAAAAAYgAAAAACXgAAAAAAXgAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAXgAAAAAAaAAAAAAAXgAAAAAAXgAAAAAAdwAAAAAAXgAAAAAAVwAAAAABYgAAAAABXgAAAAAAXgAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAdwAAAAAAXgAAAAAAVwAAAAACYgAAAAABXgAAAAAAXgAAAAAAdwAAAAAAAAAAAAAA
version: 6
0,-3:
ind: 0,-3
- tiles: aQAAAAADdgAAAAAAaQAAAAACaQAAAAABaQAAAAABaQAAAAABaQAAAAACaQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAaQAAAAACaQAAAAAAaQAAAAABbQAAAAACaQAAAAABaQAAAAACaQAAAAABaQAAAAACdgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAGwAAAAAAdgAAAAAAaQAAAAAAdgAAAAAAaQAAAAABaQAAAAAAaQAAAAADaQAAAAACaQAAAAADaQAAAAABdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAABXgAAAAAAVwAAAAAAVwAAAAACXgAAAAAAVwAAAAACVwAAAAADVwAAAAAAGwAAAAACVwAAAAAAVwAAAAABVwAAAAACVwAAAAAAVwAAAAACVwAAAAABVwAAAAADVwAAAAAASgAAAAABYQAAAAAAYQAAAAABYQAAAAADSgAAAAABYQAAAAAAYQAAAAACGwAAAAAAYQAAAAADYQAAAAABYQAAAAADYQAAAAAAYQAAAAAAYQAAAAACYQAAAAAAYQAAAAADVwAAAAAAVwAAAAABVwAAAAACVwAAAAABVwAAAAADVwAAAAAAVwAAAAABGwAAAAABVwAAAAAAVwAAAAAAVwAAAAADVwAAAAAAVwAAAAACVwAAAAACVwAAAAADYQAAAAABdgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAYQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAVwAAAAADYQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAGwAAAAACGwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAVwAAAAACYQAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZwAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAYQAAAAACAAAAAAAAdgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAYAAAAAADVwAAAAADYQAAAAABAAAAAAAAdgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAYAAAAAACVwAAAAAASgAAAAAAAAAAAAAAdgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAYAAAAAAAVwAAAAAAYQAAAAABAAAAAAAAdgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAYAAAAAABVwAAAAAAYQAAAAAD
+ tiles: agAAAAADdwAAAAAAagAAAAADagAAAAACagAAAAAAagAAAAACagAAAAADagAAAAAAGwAAAAABKgAAAAAAKgAAAAAAKgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAagAAAAABagAAAAACagAAAAADbgAAAAADagAAAAADagAAAAAAagAAAAACagAAAAAAdwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAagAAAAACdwAAAAAAagAAAAABagAAAAADagAAAAADagAAAAABagAAAAABagAAAAADdwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACXgAAAAAAVwAAAAADVwAAAAABXgAAAAAAVwAAAAAAVwAAAAAAVwAAAAACGwAAAAAAVwAAAAACVwAAAAABVwAAAAADVwAAAAACVwAAAAADVwAAAAADVwAAAAAAVwAAAAAASgAAAAAAYgAAAAACYgAAAAADYgAAAAACSgAAAAABYgAAAAAAYgAAAAACGwAAAAACYgAAAAACYgAAAAABYgAAAAADYgAAAAACYgAAAAADYgAAAAADYgAAAAAAYgAAAAACVwAAAAAAVwAAAAACVwAAAAADVwAAAAAAVwAAAAABVwAAAAADVwAAAAABGwAAAAAAVwAAAAAAVwAAAAAAVwAAAAABVwAAAAABVwAAAAAAVwAAAAADVwAAAAADYgAAAAACdwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABYgAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAVwAAAAAAYgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAGwAAAAABGwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAVwAAAAACYgAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAaAAAAAACdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAVwAAAAACYgAAAAADAAAAAAAAdwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAYQAAAAABVwAAAAACYgAAAAACAAAAAAAAdwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAYQAAAAABVwAAAAAASgAAAAABAAAAAAAAdwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAYQAAAAAAVwAAAAABYgAAAAABAAAAAAAAdwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAYQAAAAABVwAAAAABYgAAAAAD
version: 6
1,-3:
ind: 1,-3
- tiles: dgAAAAAAXgAAAAAAdgAAAAAAGwAAAAAAGwAAAAAAGwAAAAACGwAAAAADdgAAAAAAVwAAAAADVwAAAAAAVwAAAAACdgAAAAAAdAAAAAAAdAAAAAACcwAAAAABcwAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAABdgAAAAAAXgAAAAAAVwAAAAAAVwAAAAABdgAAAAAAGwAAAAACcwAAAAABcwAAAAACGwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAABGwAAAAADGwAAAAABGwAAAAACdgAAAAAAXgAAAAAAXgAAAAAAVwAAAAACdgAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAADGwAAAAADGwAAAAADGwAAAAABdgAAAAAAGwAAAAAAGwAAAAABGwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAACVwAAAAADVwAAAAABVwAAAAABVwAAAAACVwAAAAABVwAAAAAAVwAAAAADVwAAAAADVwAAAAADVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAABVwAAAAADVwAAAAAAYQAAAAABYQAAAAABYQAAAAABYQAAAAABYQAAAAACYQAAAAAAYQAAAAACYQAAAAADYQAAAAABYQAAAAACYQAAAAABYQAAAAACYQAAAAABYQAAAAABYQAAAAABYQAAAAACVwAAAAADVwAAAAAAVwAAAAADVwAAAAADVwAAAAACVwAAAAAAVwAAAAAAVwAAAAADVwAAAAADVwAAAAADVwAAAAACVwAAAAABVwAAAAACVwAAAAADVwAAAAADVwAAAAACVwAAAAAAVwAAAAABVwAAAAACVwAAAAACVwAAAAAAVwAAAAABVwAAAAAAdgAAAAAAdgAAAAAAGwAAAAABdgAAAAAAdgAAAAAAVwAAAAACdgAAAAAAdgAAAAAAVQAAAAAAVwAAAAABVwAAAAACVwAAAAACVwAAAAADVwAAAAADdgAAAAAAcwAAAAACcwAAAAADcwAAAAAAcwAAAAADcwAAAAAAcwAAAAABcwAAAAACcwAAAAACdgAAAAAAVQAAAAAAGwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAcwAAAAAAcwAAAAACcwAAAAADcwAAAAAAcwAAAAADcwAAAAAAcwAAAAADcwAAAAADdgAAAAAAdgAAAAAAVwAAAAABdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAcwAAAAADcwAAAAAAcwAAAAADcwAAAAADcwAAAAACcwAAAAAAcwAAAAADcwAAAAACcwAAAAADdgAAAAAAAAAAAAAAVwAAAAADdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAcwAAAAACcwAAAAABcwAAAAACcwAAAAABcwAAAAAAcwAAAAACcwAAAAABcwAAAAADcwAAAAACdgAAAAAAAAAAAAAAVwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAcwAAAAADcwAAAAACcwAAAAACcwAAAAACcwAAAAACcwAAAAADcwAAAAADcwAAAAAAcwAAAAADdgAAAAAAAAAAAAAAVwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAcwAAAAABcwAAAAACcwAAAAAAcwAAAAABcwAAAAACcwAAAAAAcwAAAAABcwAAAAABcwAAAAABdgAAAAAAAAAAAAAAVwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAAAcwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACXgAAAAAAZQAAAAAAZgAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAZQAAAAAA
+ tiles: dwAAAAAAXgAAAAAAdwAAAAAAGwAAAAACGwAAAAADGwAAAAABGwAAAAADdwAAAAAAVwAAAAABVwAAAAABVwAAAAADdwAAAAAAdQAAAAABdQAAAAADdAAAAAABdAAAAAACdwAAAAAAXgAAAAAAdwAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAADdwAAAAAAXgAAAAAAVwAAAAABVwAAAAAAdwAAAAAAGwAAAAAAdAAAAAACdAAAAAAAGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACGwAAAAABGwAAAAAAGwAAAAADdwAAAAAAXgAAAAAAXgAAAAAAVwAAAAACdwAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAACdwAAAAAAGwAAAAABdwAAAAAAGwAAAAACGwAAAAAAGwAAAAABGwAAAAAAdwAAAAAAGwAAAAAAGwAAAAACGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADVwAAAAADVwAAAAACVwAAAAADVwAAAAADVwAAAAABVwAAAAABVwAAAAAAVwAAAAAAVwAAAAACVwAAAAACVwAAAAACVwAAAAADVwAAAAAAVwAAAAADVwAAAAACVwAAAAACYgAAAAAAYgAAAAAAYgAAAAADYgAAAAADYgAAAAADYgAAAAAAYgAAAAAAYgAAAAACYgAAAAACYgAAAAACYgAAAAACYgAAAAABYgAAAAADYgAAAAABYgAAAAAAYgAAAAACVwAAAAACVwAAAAAAVwAAAAABVwAAAAACVwAAAAACVwAAAAADVwAAAAABVwAAAAACVwAAAAACVwAAAAACVwAAAAACVwAAAAAAVwAAAAADVwAAAAACVwAAAAAAVwAAAAADVwAAAAABVwAAAAABVwAAAAABVwAAAAABVwAAAAACVwAAAAABVwAAAAACdwAAAAAAdwAAAAAAGwAAAAADdwAAAAAAdwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAVQAAAAAAVwAAAAAAVwAAAAACVwAAAAABVwAAAAADVwAAAAABdwAAAAAAdAAAAAADdAAAAAABdAAAAAADdAAAAAAAdAAAAAADdAAAAAABdAAAAAAAdAAAAAABdwAAAAAAVQAAAAAAGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAADdAAAAAADdAAAAAACdAAAAAABdAAAAAABdAAAAAADdAAAAAABdAAAAAACdwAAAAAAdwAAAAAAVwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdAAAAAADdAAAAAACdAAAAAABdAAAAAADdAAAAAACdAAAAAACdAAAAAACdAAAAAACdAAAAAABdwAAAAAAAAAAAAAAVwAAAAACdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdAAAAAADdAAAAAADdAAAAAAAdAAAAAACdAAAAAADdAAAAAACdAAAAAABdAAAAAADdAAAAAACdwAAAAAAAAAAAAAAVwAAAAABdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdAAAAAACdAAAAAACdAAAAAAAdAAAAAADdAAAAAACdAAAAAAAdAAAAAACdAAAAAABdAAAAAAAdwAAAAAAAAAAAAAAVwAAAAADdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdAAAAAADdAAAAAACdAAAAAADdAAAAAABdAAAAAABdAAAAAADdAAAAAACdAAAAAAAdAAAAAADdwAAAAAAAAAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAdAAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACXgAAAAAAZgAAAAAAZwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAZgAAAAAA
version: 6
2,-3:
ind: 2,-3
- tiles: cwAAAAADdAAAAAACdAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABVwAAAAADVwAAAAADVwAAAAABVwAAAAABVwAAAAACdgAAAAAAcwAAAAABGwAAAAAAcwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAVwAAAAADVwAAAAADVwAAAAADVwAAAAACVwAAAAACVwAAAAADGwAAAAACHwAAAAABHwAAAAAAHwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAVwAAAAADVwAAAAABVwAAAAADVwAAAAACVwAAAAADVwAAAAACGwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABVwAAAAABVwAAAAADVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAABVwAAAAACGwAAAAACYwAAAAABYwAAAAAAYwAAAAACYwAAAAAAYwAAAAADYwAAAAACGwAAAAAAYQAAAAADYQAAAAADYQAAAAADYQAAAAACYQAAAAADYQAAAAAAYQAAAAAAYQAAAAADGwAAAAAAYwAAAAABYwAAAAACYwAAAAADYwAAAAACYwAAAAAAYwAAAAABGwAAAAABVwAAAAACVwAAAAABVwAAAAAAYQAAAAAAVwAAAAACVwAAAAAAVwAAAAABVwAAAAAAGwAAAAABYwAAAAABYwAAAAADYwAAAAACYwAAAAADYwAAAAABYwAAAAADGwAAAAACVQAAAAAAVwAAAAACVwAAAAAAYQAAAAABVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAAAGwAAAAAAGwAAAAABGwAAAAACGwAAAAAAdgAAAAAAVQAAAAAAVwAAAAAAVwAAAAACYQAAAAABVwAAAAACdgAAAAAAVwAAAAADVwAAAAAAVwAAAAADVwAAAAABVwAAAAADVwAAAAABVwAAAAACVwAAAAAAVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAABGwAAAAADGwAAAAABdgAAAAAAVwAAAAABZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAVwAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAVwAAAAADYQAAAAACVwAAAAACdgAAAAAAVwAAAAABZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAVwAAAAACGwAAAAABAAAAAAAAdgAAAAAAVwAAAAABYQAAAAACVwAAAAABdgAAAAAAVwAAAAADZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAVwAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAVwAAAAAAYQAAAAADVwAAAAABdgAAAAAAVwAAAAADVwAAAAABVwAAAAADVwAAAAACVwAAAAABVwAAAAABVwAAAAAAVwAAAAACVwAAAAACdgAAAAAAAAAAAAAAdgAAAAAAVwAAAAABYQAAAAAAVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAYQAAAAACVwAAAAABZgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAXgAAAAAAXgAAAAAAYQAAAAABVwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZwAAAAAAZwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAA
+ tiles: dAAAAAADdQAAAAACdQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADVwAAAAAAVwAAAAACVwAAAAABVwAAAAACVwAAAAADdwAAAAAAdAAAAAADGwAAAAACdAAAAAACdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAVwAAAAACVwAAAAADVwAAAAACVwAAAAACVwAAAAAAVwAAAAABGwAAAAADHwAAAAABHwAAAAACHwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAVwAAAAADVwAAAAABVwAAAAABVwAAAAADVwAAAAAAVwAAAAABGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADVwAAAAABVwAAAAADVwAAAAADVwAAAAABVwAAAAABVwAAAAABVwAAAAACGwAAAAADZAAAAAABZAAAAAABZAAAAAADZAAAAAABZAAAAAAAZAAAAAACGwAAAAABYgAAAAACYgAAAAADYgAAAAACYgAAAAABYgAAAAADYgAAAAACYgAAAAACYgAAAAABGwAAAAABZAAAAAABZAAAAAABZAAAAAADZAAAAAABZAAAAAADZAAAAAADGwAAAAAAVwAAAAADVwAAAAABVwAAAAACYgAAAAAAVwAAAAABVwAAAAACVwAAAAABVwAAAAAAGwAAAAADZAAAAAACZAAAAAAAZAAAAAACZAAAAAAAZAAAAAADZAAAAAADGwAAAAABVQAAAAAAVwAAAAABVwAAAAAAYgAAAAABVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAABGwAAAAACGwAAAAACGwAAAAACdwAAAAAAVQAAAAAAVwAAAAADVwAAAAADYgAAAAABVwAAAAADdwAAAAAAVwAAAAAAVwAAAAABVwAAAAABVwAAAAAAVwAAAAACVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABGwAAAAACGwAAAAADdwAAAAAAVwAAAAABZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAVwAAAAADdwAAAAAAAAAAAAAAdwAAAAAAVwAAAAABYgAAAAABVwAAAAACdwAAAAAAVwAAAAACZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAVwAAAAACGwAAAAABAAAAAAAAdwAAAAAAVwAAAAACYgAAAAACVwAAAAAAdwAAAAAAVwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAVwAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAVwAAAAADYgAAAAAAVwAAAAADdwAAAAAAVwAAAAACVwAAAAADVwAAAAABVwAAAAACVwAAAAAAVwAAAAACVwAAAAADVwAAAAAAVwAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAVwAAAAABYgAAAAADVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAYgAAAAAAVwAAAAAAZwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAXgAAAAAAXgAAAAAAYgAAAAABVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAaAAAAAAAaAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAA
version: 6
2,2:
ind: 2,2
- tiles: dgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAZgAAAAAAVwAAAAAAdgAAAAAAdgAAAAAAGwAAAAABXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAXgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAABdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAXgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAZwAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAVwAAAAAAXgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAXgAAAAAAZQAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAcwAAAAABXgAAAAAAcwAAAAAAcwAAAAACDAAAAAAAdgAAAAAAdgAAAAAAVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAcwAAAAABcwAAAAABDAAAAAABVwAAAAACDAAAAAADcwAAAAADDAAAAAAAcwAAAAAAVwAAAAADcwAAAAADdgAAAAAAcwAAAAADdgAAAAAAVwAAAAACVwAAAAABdgAAAAAAcwAAAAADDAAAAAABVwAAAAADDAAAAAADVwAAAAACdgAAAAAAdgAAAAAAcwAAAAACcwAAAAACdgAAAAAAcwAAAAADVwAAAAAAVwAAAAACVwAAAAACVwAAAAACdgAAAAAAVwAAAAADdgAAAAAAdgAAAAAADAAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAdgAAAAAADAAAAAAAcwAAAAAAVwAAAAADdgAAAAAAVwAAAAABVwAAAAAAVwAAAAAAVwAAAAADDAAAAAABDAAAAAAADAAAAAAADAAAAAABdgAAAAAADAAAAAADcwAAAAABXgAAAAAAVwAAAAABVwAAAAACdgAAAAAAVwAAAAAAVwAAAAAAdgAAAAAA
+ tiles: dwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAZwAAAAAAVwAAAAACdwAAAAAAdwAAAAAAGwAAAAACXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAXgAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAXgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAaAAAAAACdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAVwAAAAAAXgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAXgAAAAAAZgAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAADXgAAAAAAdAAAAAABdAAAAAACDAAAAAADdwAAAAAAdwAAAAAAVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAAAdAAAAAADDAAAAAAAVwAAAAAADAAAAAABdAAAAAACDAAAAAADdAAAAAACVwAAAAABdAAAAAAAdwAAAAAAdAAAAAADdwAAAAAAVwAAAAAAVwAAAAACdwAAAAAAdAAAAAAADAAAAAACVwAAAAABDAAAAAAAVwAAAAABdwAAAAAAdwAAAAAAdAAAAAAAdAAAAAACdwAAAAAAdAAAAAACVwAAAAACVwAAAAADVwAAAAAAVwAAAAABdwAAAAAAVwAAAAABdwAAAAAAdwAAAAAADAAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAdwAAAAAADAAAAAADdAAAAAACVwAAAAACdwAAAAAAVwAAAAADVwAAAAAAVwAAAAAAVwAAAAADDAAAAAACDAAAAAAADAAAAAAADAAAAAADdwAAAAAADAAAAAAAdAAAAAADXgAAAAAAVwAAAAACVwAAAAACdwAAAAAAVwAAAAACVwAAAAACdwAAAAAA
version: 6
1,2:
ind: 1,2
- tiles: ZgAAAAAAXgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAABdgAAAAAAdgAAAAAAZgAAAAAAXgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAXgAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAVwAAAAABVwAAAAAAVwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAZgAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAZgAAAAAAVwAAAAABXgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAVwAAAAADVwAAAAAAXgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAGwAAAAACdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAGwAAAAABdgAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAGwAAAAAAdgAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAGwAAAAACdgAAAAAAdgAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAACBwAAAAAAdgAAAAAAGwAAAAACGwAAAAAAGwAAAAABGwAAAAABGwAAAAABdgAAAAAAVwAAAAACVwAAAAADVwAAAAACdgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAJdgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAGwAAAAAAVwAAAAAAVwAAAAACXgAAAAAAGwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAdgAAAAAAGwAAAAABGwAAAAAAGwAAAAACGwAAAAAAGwAAAAACdgAAAAAAVwAAAAABXgAAAAAAVwAAAAADdgAAAAAABwAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAVwAAAAAAVwAAAAACVwAAAAADdgAAAAAA
+ tiles: ZwAAAAAAXgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABdwAAAAAAdwAAAAAAZwAAAAAAXgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAXgAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACVwAAAAABVwAAAAACdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAZwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZwAAAAAAVwAAAAABXgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAVwAAAAABVwAAAAABXgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAGwAAAAADdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAGwAAAAAAdwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAGwAAAAACdwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAGwAAAAACdwAAAAAAdwAAAAAABwAAAAADCQAAAAAABwAAAAAABwAAAAAABwAAAAAAdwAAAAAAGwAAAAAAGwAAAAAAGwAAAAADGwAAAAADGwAAAAACdwAAAAAAVwAAAAADVwAAAAACVwAAAAADdwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAdwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAGwAAAAADVwAAAAAAVwAAAAADXgAAAAAAGwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAAdwAAAAAAGwAAAAADGwAAAAABGwAAAAADGwAAAAADGwAAAAADdwAAAAAAVwAAAAACXgAAAAAAVwAAAAADdwAAAAAABwAAAAAABwAAAAAJCQAAAAAABwAAAAAFBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAVwAAAAACVwAAAAABVwAAAAACdwAAAAAA
version: 6
0,-4:
ind: 0,-4
- tiles: aQAAAAAAdgAAAAAAaQAAAAACaQAAAAADaQAAAAACdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAaQAAAAACdgAAAAAAdgAAAAAAGwAAAAAAdgAAAAAAaQAAAAADaQAAAAABaQAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAdgAAAAAAaQAAAAACaQAAAAACaQAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAaQAAAAAAaQAAAAADaQAAAAABaQAAAAADaQAAAAADaQAAAAADaQAAAAABVwAAAAACaQAAAAAAaQAAAAACaQAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAaQAAAAAAKgAAAAAAKgAAAAAAaQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAdgAAAAAAaQAAAAABaQAAAAAAaQAAAAABdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABdgAAAAAAdgAAAAAAGwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAaQAAAAACaQAAAAACaQAAAAACdgAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAZgAAAAAAaQAAAAADdgAAAAAAGwAAAAABGwAAAAAAGwAAAAADaQAAAAADaQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAZgAAAAAAaQAAAAADdgAAAAAAGwAAAAADGwAAAAAAGwAAAAADaQAAAAABaQAAAAABdgAAAAAAGwAAAAADZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAaQAAAAABdgAAAAAAdgAAAAAAGwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAZQAAAAAAZwAAAAACdgAAAAAAdgAAAAAAaQAAAAACaQAAAAADaQAAAAAAaQAAAAABaQAAAAAAaQAAAAADaQAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAaQAAAAAAaQAAAAAAaQAAAAADaQAAAAACaQAAAAADaQAAAAABaQAAAAAAVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAaQAAAAABaQAAAAACaQAAAAADaQAAAAAAaQAAAAABaQAAAAABaQAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABdgAAAAAAdgAAAAAAVwAAAAAAdgAAAAAAVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACdgAAAAAAaQAAAAABaQAAAAACaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACaQAAAAADdgAAAAAAaQAAAAACaQAAAAADaQAAAAABaQAAAAACaQAAAAADaQAAAAACXgAAAAAAdgAAAAAAXgAAAAAAVwAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABaQAAAAACaQAAAAACaQAAAAADbQAAAAACaQAAAAACaQAAAAABaQAAAAABaQAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAA
+ tiles: agAAAAACdwAAAAAAagAAAAABagAAAAACagAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAABdwAAAAAAdwAAAAAAGwAAAAADdwAAAAAAagAAAAABagAAAAACagAAAAABdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAdwAAAAAAagAAAAACagAAAAACagAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAAAagAAAAAAagAAAAABagAAAAADagAAAAABagAAAAABagAAAAAAVwAAAAACagAAAAACagAAAAADagAAAAACdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAACKgAAAAAAKgAAAAAAagAAAAACKgAAAAAAKgAAAAAAKgAAAAAAdwAAAAAAagAAAAAAagAAAAADagAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABdwAAAAAAdwAAAAAAGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAABagAAAAACagAAAAACdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAZwAAAAAAagAAAAABdwAAAAAAGwAAAAADGwAAAAADGwAAAAACagAAAAACagAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAZwAAAAAAagAAAAAAdwAAAAAAGwAAAAACGwAAAAABGwAAAAADagAAAAADagAAAAAAdwAAAAAAGwAAAAACZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAABdwAAAAAAdwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAZgAAAAAAaAAAAAAAdwAAAAAAdwAAAAAAagAAAAABagAAAAACagAAAAABagAAAAADagAAAAAAagAAAAAAagAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAADagAAAAADagAAAAADagAAAAACagAAAAACagAAAAADagAAAAAAVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAABagAAAAABagAAAAACagAAAAAAagAAAAADagAAAAADagAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACdwAAAAAAdwAAAAAAVwAAAAABdwAAAAAAVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABdwAAAAAAagAAAAAAagAAAAAAagAAAAADagAAAAADagAAAAABagAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADagAAAAAAdwAAAAAAagAAAAACagAAAAACagAAAAACagAAAAADagAAAAACagAAAAABGwAAAAAAdwAAAAAAXgAAAAAAVwAAAAADXgAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAagAAAAAAagAAAAABagAAAAACbgAAAAABagAAAAABagAAAAAAagAAAAADagAAAAACdwAAAAAAdwAAAAAAGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADdwAAAAAA
version: 6
1,-4:
ind: 1,-4
- tiles: dgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAVwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAVwAAAAACXgAAAAAAVwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABVwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAVwAAAAACVwAAAAACVwAAAAADVwAAAAABVwAAAAACVwAAAAACVwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAVwAAAAACVwAAAAAAVwAAAAACVwAAAAACVwAAAAADVwAAAAAAVwAAAAADdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAVwAAAAABVwAAAAAAVwAAAAACVwAAAAAAVwAAAAAAVwAAAAAAXgAAAAAAdgAAAAAAdQAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAVwAAAAABVwAAAAABVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAVwAAAAABVwAAAAAAVwAAAAABdgAAAAAAdAAAAAACdAAAAAAAdAAAAAADdAAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAADVwAAAAACdgAAAAAAdAAAAAABdAAAAAAAdAAAAAADdAAAAAADdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAVwAAAAAAVwAAAAADVwAAAAAAdgAAAAAAdAAAAAADdAAAAAADdAAAAAADdAAAAAADZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAAAdgAAAAAAdgAAAAAAGwAAAAADVwAAAAABVwAAAAACXgAAAAAAdgAAAAAAdAAAAAABdAAAAAABdAAAAAAAdAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAVwAAAAADVwAAAAAAdgAAAAAAcwAAAAADcwAAAAADcwAAAAAAcwAAAAABdgAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACVwAAAAADVwAAAAACdgAAAAAAcwAAAAABcwAAAAADcwAAAAABcwAAAAACdgAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAGwAAAAABXgAAAAAAdgAAAAAAVwAAAAAAVwAAAAABVwAAAAAAdgAAAAAAcwAAAAAAcwAAAAACcwAAAAACcwAAAAACdgAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAVwAAAAAAVwAAAAAAVwAAAAACdgAAAAAAcwAAAAADcwAAAAAAcwAAAAABcwAAAAAAdgAAAAAAPgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAVwAAAAACVwAAAAABVwAAAAACdgAAAAAAdAAAAAAAdAAAAAADcwAAAAACcwAAAAAC
+ tiles: dwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAVwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAVwAAAAAAXgAAAAAAVwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAACVwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAVwAAAAADVwAAAAABVwAAAAAAVwAAAAABVwAAAAABVwAAAAADVwAAAAADdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAVwAAAAACVwAAAAACVwAAAAACVwAAAAADVwAAAAACVwAAAAAAVwAAAAADdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAVwAAAAADVwAAAAABVwAAAAADVwAAAAABVwAAAAADVwAAAAAAXgAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAVwAAAAACVwAAAAADVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAVwAAAAABVwAAAAABVwAAAAACdwAAAAAAdQAAAAACdQAAAAADdQAAAAABdQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAADVwAAAAADdwAAAAAAdQAAAAABdQAAAAAAdQAAAAAAdQAAAAABdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAVwAAAAADVwAAAAAAVwAAAAADdwAAAAAAdQAAAAABdQAAAAAAdQAAAAADdQAAAAADZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADdwAAAAAAdwAAAAAAGwAAAAABVwAAAAACVwAAAAACXgAAAAAAdwAAAAAAdQAAAAABdQAAAAAAdQAAAAACdQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAVwAAAAADVwAAAAABdwAAAAAAdAAAAAADdAAAAAADdAAAAAADdAAAAAADdwAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAABVwAAAAACdwAAAAAAdAAAAAAAdAAAAAABdAAAAAACdAAAAAACdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAGwAAAAACXgAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAdAAAAAACdAAAAAACdAAAAAACdAAAAAABdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAVwAAAAADVwAAAAABVwAAAAACdwAAAAAAdAAAAAADdAAAAAACdAAAAAABdAAAAAAAdwAAAAAAPgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAADVwAAAAACdwAAAAAAdQAAAAAAdQAAAAABdAAAAAAAdAAAAAAA
version: 6
2,-4:
ind: 2,-4
- tiles: dgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAVwAAAAADVwAAAAACVwAAAAACdgAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAVwAAAAABVwAAAAAAVwAAAAADdgAAAAAAVwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACVwAAAAAAVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAABVwAAAAADGwAAAAACVwAAAAADVwAAAAAAVwAAAAABVwAAAAADVwAAAAADXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAABXgAAAAAAGwAAAAABVwAAAAADVwAAAAAAVwAAAAADVwAAAAAAVwAAAAAAXgAAAAAAGwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABXgAAAAAAVwAAAAACGwAAAAAAVwAAAAADVwAAAAAAVwAAAAABVwAAAAACXgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAABdgAAAAAAdgAAAAAAGwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAdAAAAAADdAAAAAACdAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAADVwAAAAACCwAAAAAAdgAAAAAAZQAAAAAAGwAAAAABVwAAAAABVwAAAAADVwAAAAAAdAAAAAACdAAAAAACdAAAAAACdgAAAAAAZQAAAAAAdgAAAAAAVwAAAAACVwAAAAABVwAAAAAAVwAAAAACdgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAGwAAAAABdgAAAAAAdAAAAAADdAAAAAACdAAAAAADdgAAAAAAdgAAAAAAdgAAAAAACwAAAAAAVwAAAAACVwAAAAABVwAAAAAAdgAAAAAAVwAAAAACdgAAAAAAZgAAAAAAZQAAAAAAGwAAAAACdAAAAAAAdAAAAAAAdAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAABVwAAAAABVwAAAAACdgAAAAAAVwAAAAABdgAAAAAAZQAAAAAAZQAAAAAAGwAAAAADcwAAAAABcwAAAAAAcwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAZwAAAAACGwAAAAABcwAAAAADcwAAAAACcwAAAAADdgAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAGwAAAAADcwAAAAADcwAAAAAAcwAAAAACdgAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAcwAAAAABcwAAAAACcwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAXgAAAAAAdgAAAAAAVwAAAAADVwAAAAABVwAAAAACVwAAAAACVwAAAAABdgAAAAAAcwAAAAAAdAAAAAADdAAAAAACdgAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABVwAAAAABVwAAAAAAVwAAAAADVwAAAAABdgAAAAAA
+ tiles: dwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAVwAAAAADVwAAAAACVwAAAAADdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAVwAAAAADVwAAAAABVwAAAAACdwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAACVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAAAVwAAAAADGwAAAAABVwAAAAABVwAAAAACVwAAAAABVwAAAAAAVwAAAAACXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAABXgAAAAAAGwAAAAADVwAAAAADVwAAAAACVwAAAAACVwAAAAABVwAAAAACXgAAAAAAGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAXgAAAAAAVwAAAAABGwAAAAAAVwAAAAACVwAAAAADVwAAAAACVwAAAAACXgAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABdwAAAAAAdwAAAAAAGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAACVwAAAAABdQAAAAAAdQAAAAACdQAAAAABdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADVwAAAAAAVwAAAAABCwAAAAAAdwAAAAAAZgAAAAAAGwAAAAABVwAAAAAAVwAAAAAAVwAAAAADdQAAAAACdQAAAAADdQAAAAABdwAAAAAAZgAAAAAAdwAAAAAAVwAAAAADVwAAAAADVwAAAAADVwAAAAABdwAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAGwAAAAACdwAAAAAAdQAAAAAAdQAAAAADdQAAAAABdwAAAAAAdwAAAAAAdwAAAAAACwAAAAAAVwAAAAABVwAAAAADVwAAAAACdwAAAAAAVwAAAAAAdwAAAAAAZwAAAAAAZgAAAAAAGwAAAAACdQAAAAABdQAAAAADdQAAAAACdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAABVwAAAAABVwAAAAADdwAAAAAAVwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAGwAAAAABdAAAAAACdAAAAAAAdAAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAaAAAAAABGwAAAAACdAAAAAABdAAAAAADdAAAAAACdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAGwAAAAACdAAAAAACdAAAAAAAdAAAAAACdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAAAdAAAAAADdAAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAXgAAAAAAdwAAAAAAVwAAAAACVwAAAAACVwAAAAABVwAAAAABVwAAAAAAdwAAAAAAdAAAAAABdQAAAAAAdQAAAAADdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAADVwAAAAABVwAAAAABVwAAAAADdwAAAAAA
version: 6
-1,-4:
ind: -1,-4
- tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAGwAAAAADdgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAdgAAAAAAaQAAAAADaQAAAAABaQAAAAADaQAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAAAdgAAAAAAVwAAAAACVwAAAAACdgAAAAAAdgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAaQAAAAAAaQAAAAAAaQAAAAABaQAAAAAAaQAAAAAAaQAAAAACaQAAAAAAaQAAAAACaQAAAAADaQAAAAADaQAAAAACaQAAAAADaQAAAAADaQAAAAAAaQAAAAADaQAAAAAAaQAAAAACaQAAAAAAKgAAAAAAKgAAAAAAaQAAAAACKgAAAAAAKgAAAAAAaQAAAAAAKgAAAAAAKgAAAAAAaQAAAAADKgAAAAAAKgAAAAAAaQAAAAACKgAAAAAAKgAAAAAAVwAAAAAAVwAAAAADdgAAAAAAdgAAAAAAVwAAAAADdgAAAAAAdgAAAAAAVwAAAAACVwAAAAADdgAAAAAAVwAAAAABdgAAAAAAdgAAAAAAVwAAAAACdgAAAAAAdgAAAAAAaQAAAAACaQAAAAADdgAAAAAAaQAAAAAAaQAAAAADdgAAAAAAaQAAAAADaQAAAAABdgAAAAAAaQAAAAAAaQAAAAADdgAAAAAAaQAAAAACaQAAAAADdgAAAAAAaQAAAAABaQAAAAACaQAAAAABdgAAAAAAaQAAAAADaQAAAAACdgAAAAAAaQAAAAABaQAAAAAAdgAAAAAAaQAAAAADaQAAAAACdgAAAAAAaQAAAAACaQAAAAABdgAAAAAAaQAAAAABVwAAAAACVwAAAAAAdgAAAAAAdgAAAAAAaQAAAAABdgAAAAAAdgAAAAAAaQAAAAADdgAAAAAAdgAAAAAAaQAAAAAAdgAAAAAAGwAAAAAAaQAAAAAAdgAAAAAAGwAAAAACaQAAAAADaQAAAAACaQAAAAABaQAAAAABaQAAAAABaQAAAAADaQAAAAADaQAAAAADaQAAAAAAaQAAAAABaQAAAAACaQAAAAAAaQAAAAABaQAAAAABaQAAAAADaQAAAAABaQAAAAAAaQAAAAACaQAAAAAAaQAAAAACaQAAAAADaQAAAAAAaQAAAAAAUwAAAAAAaQAAAAACaQAAAAABaQAAAAADaQAAAAAAaQAAAAACaQAAAAAAaQAAAAAAUwAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAABaQAAAAAAaQAAAAAAaQAAAAADaQAAAAADaQAAAAABaQAAAAAAaQAAAAABaQAAAAAAaQAAAAAAaQAAAAACaQAAAAACaQAAAAABdgAAAAAAdgAAAAAAVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAADVwAAAAADVwAAAAAAdgAAAAAAdgAAAAAAVwAAAAABdgAAAAAAdgAAAAAAVwAAAAACVwAAAAABbAAAAAACbAAAAAADbAAAAAACbAAAAAACbAAAAAADdgAAAAAAVwAAAAADVwAAAAABVwAAAAADdgAAAAAAaQAAAAABaQAAAAACaQAAAAADdgAAAAAAVwAAAAADVwAAAAAAbAAAAAABbAAAAAADbAAAAAAAbAAAAAADbAAAAAAAdgAAAAAAaQAAAAABaQAAAAAAaQAAAAACaQAAAAAAaQAAAAABaQAAAAACaQAAAAADaQAAAAABaQAAAAADaQAAAAADbAAAAAABbAAAAAABbAAAAAACbAAAAAACbAAAAAADdgAAAAAAaQAAAAADaQAAAAACaQAAAAAAaQAAAAADaQAAAAACaQAAAAAAaQAAAAABaQAAAAADaQAAAAAAaQAAAAAD
+ tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAGwAAAAABdwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAdwAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAACdwAAAAAAdwAAAAAAVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADVwAAAAADdwAAAAAAVwAAAAADVwAAAAAAdwAAAAAAdwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAagAAAAAAagAAAAADagAAAAABagAAAAACagAAAAAAagAAAAABagAAAAAAagAAAAADagAAAAABagAAAAADagAAAAABagAAAAABagAAAAAAagAAAAACagAAAAACagAAAAADagAAAAABagAAAAAAKgAAAAAAKgAAAAAAagAAAAACKgAAAAAAKgAAAAAAagAAAAABKgAAAAAAKgAAAAAAagAAAAACKgAAAAAAKgAAAAAAagAAAAACKgAAAAAAKgAAAAAAVwAAAAACVwAAAAADdwAAAAAAdwAAAAAAVwAAAAACdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAADdwAAAAAAVwAAAAACdwAAAAAAdwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAagAAAAAAagAAAAACdwAAAAAAagAAAAABagAAAAABdwAAAAAAagAAAAACagAAAAAAdwAAAAAAagAAAAABagAAAAABdwAAAAAAagAAAAACagAAAAABdwAAAAAAagAAAAADagAAAAABagAAAAACdwAAAAAAagAAAAABagAAAAAAdwAAAAAAagAAAAADagAAAAACdwAAAAAAagAAAAADagAAAAAAdwAAAAAAagAAAAAAagAAAAAAdwAAAAAAagAAAAADVwAAAAABVwAAAAAAdwAAAAAAdwAAAAAAagAAAAACdwAAAAAAdwAAAAAAagAAAAAAdwAAAAAAdwAAAAAAagAAAAABdwAAAAAAGwAAAAAAagAAAAABdwAAAAAAGwAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAABagAAAAABagAAAAACagAAAAABagAAAAABagAAAAACagAAAAADagAAAAAAagAAAAAAagAAAAACagAAAAABagAAAAADagAAAAADagAAAAABagAAAAADagAAAAACagAAAAACagAAAAACagAAAAADUwAAAAAAagAAAAAAagAAAAAAagAAAAADagAAAAACagAAAAACagAAAAABagAAAAABUwAAAAAAagAAAAACagAAAAAAagAAAAABagAAAAACagAAAAABagAAAAADagAAAAACagAAAAADagAAAAADagAAAAACagAAAAACagAAAAADagAAAAACagAAAAABagAAAAACagAAAAADdwAAAAAAdwAAAAAAVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAABVwAAAAABdwAAAAAAdwAAAAAAVwAAAAADdwAAAAAAdwAAAAAAVwAAAAABVwAAAAABbQAAAAACbQAAAAACbQAAAAABbQAAAAABbQAAAAAAdwAAAAAAVwAAAAACVwAAAAAAVwAAAAADdwAAAAAAagAAAAACagAAAAADagAAAAAAdwAAAAAAVwAAAAADVwAAAAABbQAAAAABbQAAAAAAbQAAAAADbQAAAAAAbQAAAAAAdwAAAAAAagAAAAADagAAAAABagAAAAADagAAAAABagAAAAADagAAAAACagAAAAABagAAAAAAagAAAAABagAAAAADbQAAAAABbQAAAAAAbQAAAAACbQAAAAADbQAAAAACdwAAAAAAagAAAAAAagAAAAACagAAAAABagAAAAADagAAAAADagAAAAAAagAAAAACagAAAAAAagAAAAABagAAAAAC
version: 6
-2,-4:
ind: -2,-4
- tiles: GwAAAAAAGwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAaQAAAAACaQAAAAABaQAAAAACdgAAAAAAGwAAAAADXgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAaQAAAAADaQAAAAADaQAAAAAAaQAAAAAAdgAAAAAAdgAAAAAAVwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAXgAAAAAAXgAAAAAAaQAAAAABaQAAAAABaQAAAAADaQAAAAABaQAAAAAAdgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAaQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAaQAAAAABVwAAAAACKgAAAAAAaQAAAAABaQAAAAABaQAAAAACaQAAAAACdQAAAAAAdgAAAAAAZQAAAAAAZgAAAAAAdgAAAAAAaQAAAAADaQAAAAADbgAAAAAAaQAAAAABaQAAAAADdgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAZgAAAAAAZQAAAAAAaQAAAAADdgAAAAAAaQAAAAABdgAAAAAAaQAAAAABdgAAAAAAdgAAAAAAVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAZgAAAAAAdgAAAAAAaQAAAAACaQAAAAADaQAAAAACaQAAAAACaQAAAAABdgAAAAAAdAAAAAABdAAAAAABdAAAAAACdAAAAAACdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAGwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdAAAAAABdAAAAAACdAAAAAACdAAAAAAAVwAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAdgAAAAAAdAAAAAADdAAAAAADdAAAAAADdAAAAAADdAAAAAABdAAAAAADdgAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAdgAAAAAAdAAAAAABdAAAAAABdAAAAAAAdAAAAAADdAAAAAABdAAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAZwAAAAACXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAZwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAABZQAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAPgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAXgAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAbAAAAAAAdgAAAAAAGwAAAAACdgAAAAAAdgAAAAAAXgAAAAAAXgAAAAAAdgAAAAAAXgAAAAAAXgAAAAAAdgAAAAAAGwAAAAADdgAAAAAAdgAAAAAAGwAAAAACdgAAAAAAbAAAAAABGwAAAAADGwAAAAABGwAAAAACdgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAGwAAAAACNAAAAAAAdgAAAAAAGwAAAAABdgAAAAAAbAAAAAAA
+ tiles: GwAAAAACGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAADagAAAAAAagAAAAACdwAAAAAAGwAAAAADXgAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAagAAAAACagAAAAACagAAAAADagAAAAADdwAAAAAAdwAAAAAAVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAXgAAAAAAXgAAAAAAagAAAAABagAAAAAAagAAAAADagAAAAACagAAAAACdwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAagAAAAADdwAAAAAAdwAAAAAAdwAAAAAAagAAAAACVwAAAAAAKgAAAAAAagAAAAABagAAAAAAagAAAAACagAAAAABdgAAAAAAdwAAAAAAZgAAAAAAZwAAAAAAdwAAAAAAagAAAAAAagAAAAAAbwAAAAADagAAAAAAagAAAAABdwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZwAAAAAAZgAAAAAAagAAAAADdwAAAAAAagAAAAAAdwAAAAAAagAAAAACdwAAAAAAdwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZwAAAAAAdwAAAAAAagAAAAACagAAAAACagAAAAADagAAAAAAagAAAAADdwAAAAAAdQAAAAABdQAAAAABdQAAAAACdQAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdQAAAAAAdQAAAAADdQAAAAAAdQAAAAAAVwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAdwAAAAAAdQAAAAACdQAAAAACdQAAAAACdQAAAAABdQAAAAACdQAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAdwAAAAAAdQAAAAABdQAAAAAAdQAAAAADdQAAAAABdQAAAAACdQAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAaAAAAAABXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAaAAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAPgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAXgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAbQAAAAAAdwAAAAAAGwAAAAABdwAAAAAAdwAAAAAAXgAAAAAAXgAAAAAAdwAAAAAAXgAAAAAAXgAAAAAAdwAAAAAAGwAAAAACdwAAAAAAdwAAAAAAGwAAAAAAdwAAAAAAbQAAAAADGwAAAAADGwAAAAABGwAAAAACdwAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAGwAAAAADNAAAAAAAdwAAAAAAGwAAAAABdwAAAAAAbQAAAAAA
version: 6
-1,-5:
ind: -1,-5
- tiles: VwAAAAADVwAAAAACdgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAZgAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAXgAAAAAAVwAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAXgAAAAAAXgAAAAAAZQAAAAAAZgAAAAAAXgAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAXgAAAAAAXgAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAVwAAAAADVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAVwAAAAAAdgAAAAAAZgAAAAAAZgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAZgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAZQAAAAAAdgAAAAAAZgAAAAAAZgAAAAAAdgAAAAAAGwAAAAAAGwAAAAABGwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAZwAAAAACdgAAAAAAdgAAAAAAZgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAZgAAAAAAGwAAAAACdgAAAAAAZQAAAAAAdgAAAAAAXgAAAAAAZwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAZwAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAZgAAAAAAZwAAAAABGwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACVwAAAAADdgAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZwAAAAAAZQAAAAAAdgAAAAAAVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAAAdgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAdgAAAAAAdgAAAAAAVwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAaQAAAAACaQAAAAABaQAAAAADaQAAAAADKgAAAAAAGwAAAAADGwAAAAABKgAAAAAAGwAAAAAAdgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAdgAAAAAAaQAAAAACYAAAAAADYAAAAAABYAAAAAAAKgAAAAAAGwAAAAACGwAAAAADKgAAAAAAGwAAAAACdgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAdgAAAAAAaQAAAAABYAAAAAAAYAAAAAAAYAAAAAAAKgAAAAAAGwAAAAACGwAAAAAAKgAAAAAAGwAAAAACdgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAdgAAAAAAaQAAAAAAYAAAAAADYAAAAAAAYAAAAAAB
+ tiles: VwAAAAABVwAAAAABdwAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAXgAAAAAAVwAAAAADdwAAAAAAdwAAAAAAZgAAAAAAXgAAAAAAXgAAAAAAZgAAAAAAZwAAAAAAXgAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAXgAAAAAAXgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAVwAAAAADVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAVwAAAAADdwAAAAAAZwAAAAAAZwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAZwAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAZgAAAAAAdwAAAAAAZwAAAAAAZwAAAAAAdwAAAAAAGwAAAAABGwAAAAACGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAaAAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAZwAAAAAAGwAAAAACdwAAAAAAZgAAAAAAdwAAAAAAXgAAAAAAaAAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAaAAAAAACZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAZwAAAAAAaAAAAAADGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAADdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAaAAAAAABZgAAAAAAdwAAAAAAVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACdwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAADagAAAAAAagAAAAACagAAAAAAKgAAAAAAGwAAAAABGwAAAAABKgAAAAAAGwAAAAADdwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAdwAAAAAAagAAAAAAYQAAAAABYQAAAAABYQAAAAAAKgAAAAAAGwAAAAADGwAAAAADKgAAAAAAGwAAAAADdwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAdwAAAAAAagAAAAADYQAAAAABYQAAAAAAYQAAAAAAKgAAAAAAGwAAAAABGwAAAAADKgAAAAAAGwAAAAABdwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAdwAAAAAAagAAAAACYQAAAAABYQAAAAACYQAAAAAB
version: 6
-2,-5:
ind: -2,-5
- tiles: dgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAaQAAAAACaQAAAAAAaQAAAAABaQAAAAABaQAAAAACaQAAAAACdgAAAAAAaQAAAAABaQAAAAAAaQAAAAADaQAAAAABVwAAAAAAdgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAaQAAAAACaQAAAAADaQAAAAAAaQAAAAACaQAAAAADaQAAAAAAdgAAAAAAaQAAAAACaQAAAAADaQAAAAADaQAAAAADVwAAAAABdgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAaQAAAAAAaQAAAAACaQAAAAAAaQAAAAAAaQAAAAABaQAAAAACdgAAAAAAaQAAAAADaQAAAAACaQAAAAAAaQAAAAADVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAaQAAAAABaQAAAAAAaQAAAAAAaQAAAAAAdgAAAAAAaQAAAAADaQAAAAAAaQAAAAACaQAAAAADVwAAAAACaQAAAAAAaQAAAAABaQAAAAAAaQAAAAABaQAAAAACdgAAAAAAaQAAAAABaQAAAAADaQAAAAAAaQAAAAABdgAAAAAAaQAAAAABaQAAAAAAaQAAAAACaQAAAAABVwAAAAABaQAAAAADaQAAAAAAaQAAAAAAaQAAAAACaQAAAAACdgAAAAAAdgAAAAAAVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAdgAAAAAAdgAAAAAAaQAAAAACaQAAAAAAaQAAAAADaQAAAAADaQAAAAADVwAAAAADaQAAAAAAaQAAAAABaQAAAAACaQAAAAADaQAAAAAAaQAAAAABaQAAAAACaQAAAAAAaQAAAAACdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAaQAAAAAAaQAAAAADaQAAAAADaQAAAAAAaQAAAAADaQAAAAABaQAAAAAAaQAAAAAAaQAAAAAAdgAAAAAAbAAAAAABbAAAAAABbAAAAAADbAAAAAAAbAAAAAADdgAAAAAAaQAAAAAAaQAAAAAAaQAAAAABaQAAAAADaQAAAAAAaQAAAAABaQAAAAABaQAAAAACaQAAAAADdgAAAAAAbAAAAAAAbAAAAAADbAAAAAACbAAAAAAAbAAAAAABdgAAAAAAaQAAAAABaQAAAAADaQAAAAADaQAAAAADaQAAAAACaQAAAAAAaQAAAAAAaQAAAAADaQAAAAADdgAAAAAAbAAAAAADbAAAAAAAbAAAAAABbAAAAAAAbAAAAAAAdgAAAAAAaQAAAAABaQAAAAAAaQAAAAACaQAAAAACaQAAAAACaQAAAAAAaQAAAAABaQAAAAABaQAAAAADVwAAAAACdgAAAAAAGwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZwAAAAADdgAAAAAAdgAAAAAAXgAAAAAAZwAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAaQAAAAACaQAAAAAAaQAAAAADdgAAAAAAKgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAaQAAAAADaQAAAAABaQAAAAACdgAAAAAAGwAAAAABdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACdgAAAAAAdgAAAAAAGwAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAaQAAAAADaQAAAAACaQAAAAAAdgAAAAAAGwAAAAAA
+ tiles: dwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAagAAAAAAagAAAAAAagAAAAADagAAAAADagAAAAADagAAAAADdwAAAAAAagAAAAAAagAAAAADagAAAAABagAAAAAAVwAAAAAAdwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAagAAAAACagAAAAAAagAAAAABagAAAAADagAAAAACagAAAAADdwAAAAAAagAAAAACagAAAAABagAAAAADagAAAAACVwAAAAABdwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAagAAAAACagAAAAAAagAAAAACagAAAAABagAAAAACagAAAAACdwAAAAAAagAAAAADagAAAAAAagAAAAACagAAAAADVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAABagAAAAADagAAAAADagAAAAACdwAAAAAAagAAAAADagAAAAADagAAAAACagAAAAADVwAAAAAAagAAAAAAagAAAAADagAAAAAAagAAAAAAagAAAAACdwAAAAAAagAAAAABagAAAAADagAAAAAAagAAAAADdwAAAAAAagAAAAACagAAAAADagAAAAAAagAAAAADVwAAAAAAagAAAAACagAAAAAAagAAAAAAagAAAAAAagAAAAABdwAAAAAAdwAAAAAAVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAagAAAAABagAAAAACagAAAAABagAAAAACagAAAAACVwAAAAADagAAAAAAagAAAAADagAAAAACagAAAAABagAAAAADagAAAAAAagAAAAACagAAAAADagAAAAABdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAABagAAAAAAagAAAAADagAAAAADagAAAAACagAAAAADagAAAAADagAAAAAAagAAAAADdwAAAAAAbQAAAAABbQAAAAADbQAAAAACbQAAAAADbQAAAAAAdwAAAAAAagAAAAACagAAAAADagAAAAABagAAAAADagAAAAACagAAAAADagAAAAADagAAAAADagAAAAADdwAAAAAAbQAAAAADbQAAAAABbQAAAAABbQAAAAAAbQAAAAABdwAAAAAAagAAAAADagAAAAABagAAAAACagAAAAACagAAAAABagAAAAACagAAAAABagAAAAADagAAAAAAdwAAAAAAbQAAAAADbQAAAAACbQAAAAABbQAAAAABbQAAAAADdwAAAAAAagAAAAAAagAAAAADagAAAAABagAAAAAAagAAAAAAagAAAAADagAAAAAAagAAAAACagAAAAADVwAAAAACdwAAAAAAGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAaAAAAAABdwAAAAAAdwAAAAAAXgAAAAAAaAAAAAACZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAagAAAAABagAAAAABagAAAAADdwAAAAAAKgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAagAAAAABagAAAAAAagAAAAACdwAAAAAAGwAAAAACdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACdwAAAAAAdwAAAAAAGwAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAADagAAAAABagAAAAAAdwAAAAAAGwAAAAAA
version: 6
0,-5:
ind: 0,-5
- tiles: dgAAAAAAAAAAAAAAAAAAAAAAZQAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdAAAAAABdAAAAAABdAAAAAABdgAAAAAAAAAAAAAAAAAAAAAAZQAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAZQAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAdgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAXgAAAAAAdgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAADdgAAAAAAdQAAAAAAdgAAAAAAZgAAAAAAZQAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZwAAAAACZgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAGwAAAAADdgAAAAAAXgAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAaQAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAaQAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAXgAAAAAAaQAAAAABdgAAAAAAaQAAAAABaQAAAAABaQAAAAACdgAAAAAAZQAAAAAAdgAAAAAAZwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABXgAAAAAAaQAAAAABdgAAAAAAaQAAAAAAUwAAAAAAaQAAAAAAdgAAAAAAZQAAAAAAXgAAAAAAXgAAAAAAZwAAAAACZQAAAAAAZwAAAAADZwAAAAABdgAAAAAAdgAAAAAAXgAAAAAA
+ tiles: dwAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAZgAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAdwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAdwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAZwAAAAAAZgAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAaAAAAAABZwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADdwAAAAAAXgAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAagAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAXgAAAAAAagAAAAACdwAAAAAAagAAAAAAagAAAAADagAAAAADdwAAAAAAZgAAAAAAdwAAAAAAaAAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADXgAAAAAAagAAAAADdwAAAAAAagAAAAABUwAAAAAAagAAAAABdwAAAAAAZgAAAAAAXgAAAAAAXgAAAAAAaAAAAAABZgAAAAAAaAAAAAACaAAAAAACdwAAAAAAdwAAAAAAXgAAAAAA
version: 6
-1,-6:
ind: -1,-6
- tiles: dgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACVwAAAAADVwAAAAAAVwAAAAAAVwAAAAADVwAAAAACdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAABZgAAAAAAGwAAAAABdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAACZgAAAAAAGwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAZgAAAAAAGwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAABZgAAAAAAGwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAXgAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAZQAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAXgAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAZgAAAAAAZgAAAAAAZQAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAA
+ tiles: dwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAACVwAAAAADVwAAAAADVwAAAAACVwAAAAACdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADZwAAAAAAGwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADZwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAZwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAZwAAAAAAGwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAXgAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAZgAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAXgAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAZwAAAAAAZwAAAAAAZgAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAA
version: 6
-2,-6:
ind: -2,-6
- tiles: dgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAADVwAAAAADVwAAAAAAVwAAAAACVwAAAAADVwAAAAADVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAVwAAAAABVwAAAAAAVwAAAAAAVwAAAAADVwAAAAAAVwAAAAABVwAAAAACVwAAAAACdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAVwAAAAABXgAAAAAAVwAAAAABVwAAAAAAVwAAAAABVwAAAAABXgAAAAAAVwAAAAADdgAAAAAAdQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAVwAAAAADVwAAAAACVwAAAAAAVwAAAAACVwAAAAACVwAAAAABVwAAAAABVwAAAAAAdgAAAAAAdQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAbQAAAAADbQAAAAADbQAAAAAAbQAAAAACbQAAAAACbQAAAAADbQAAAAABbQAAAAACdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAbQAAAAACbQAAAAADbQAAAAAAbQAAAAADbQAAAAAAbQAAAAABbQAAAAAAbQAAAAADdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAbQAAAAABbQAAAAADbQAAAAABbQAAAAABbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAABdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAbQAAAAACbQAAAAACbQAAAAABbQAAAAAAbQAAAAACbQAAAAABbQAAAAABbQAAAAACdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAbQAAAAADbQAAAAAAdgAAAAAAVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAbQAAAAABbQAAAAADdgAAAAAAGwAAAAABdgAAAAAASwAAAAAASwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAACdgAAAAAAGwAAAAADdgAAAAAASwAAAAAASwAAAAAAdgAAAAAAdgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAaQAAAAACaQAAAAADaQAAAAAAaQAAAAADaQAAAAADaQAAAAABVwAAAAAAVwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAA
+ tiles: dwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAAAVwAAAAACVwAAAAAAVwAAAAACVwAAAAAAVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAVwAAAAABVwAAAAACVwAAAAABVwAAAAABVwAAAAAAVwAAAAAAVwAAAAADVwAAAAADdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAVwAAAAAAXgAAAAAAVwAAAAADVwAAAAADVwAAAAADVwAAAAACXgAAAAAAVwAAAAACdwAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAVwAAAAADVwAAAAADVwAAAAADVwAAAAAAVwAAAAADVwAAAAADVwAAAAACVwAAAAACdwAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAbgAAAAADbgAAAAACbgAAAAADbgAAAAAAbgAAAAACbgAAAAACbgAAAAABbgAAAAABdwAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAbgAAAAACbgAAAAABbgAAAAADbgAAAAAAbgAAAAAAbgAAAAACbgAAAAACbgAAAAADdwAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAbgAAAAADbgAAAAAAbgAAAAACbgAAAAACbgAAAAADbgAAAAAAbgAAAAACbgAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAbgAAAAAAbgAAAAADbgAAAAADbgAAAAADbgAAAAADbgAAAAABbgAAAAADbgAAAAABdwAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAbgAAAAACbgAAAAAAdwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAbgAAAAADbgAAAAAAdwAAAAAAGwAAAAABdwAAAAAASwAAAAAASwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAABdwAAAAAAGwAAAAABdwAAAAAASwAAAAAASwAAAAAAdwAAAAAAdwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAagAAAAAAagAAAAABagAAAAADagAAAAABagAAAAAAagAAAAACVwAAAAACVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAA
version: 6
0,-6:
ind: 0,-6
- tiles: AAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAABwAAAAAABwAAAAAACQAAAAAGBwAAAAABCQAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAABwAAAAAACQAAAAAABwAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdAAAAAAAdAAAAAADdAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAGwAAAAABdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAcwAAAAABcwAAAAAAcwAAAAACcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAGwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdAAAAAABcwAAAAAAYAAAAAABYAAAAAADYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAGwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdAAAAAAAcwAAAAAAYAAAAAACVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAZwAAAAADZQAAAAAAZQAAAAAAdgAAAAAAdAAAAAAAcwAAAAAAYAAAAAAAVQAAAAAKVQAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdAAAAAABcwAAAAAAYAAAAAAAVQAAAAAAVQAAAAABdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdAAAAAABcwAAAAACYAAAAAABYAAAAAACYAAAAAABdgAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAcwAAAAACcwAAAAABcwAAAAADcwAAAAAD
+ tiles: AAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAABwAAAAAABwAAAAAACQAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAABwAAAAAACQAAAAAABwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdQAAAAABdQAAAAADdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAGwAAAAABdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdAAAAAABdAAAAAADdAAAAAADdAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAGwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdQAAAAABdAAAAAABYQAAAAADYQAAAAADYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdQAAAAABdAAAAAADYQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAaAAAAAACZgAAAAAAZgAAAAAAdwAAAAAAdQAAAAAAdAAAAAACYQAAAAABVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdQAAAAACdAAAAAABYQAAAAABVQAAAAAAVQAAAAAGdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAdQAAAAADdAAAAAAAYQAAAAADYQAAAAAAYQAAAAABdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdAAAAAAAdAAAAAACdAAAAAADdAAAAAAA
version: 6
-3,-5:
ind: -3,-5
- tiles: VwAAAAACXgAAAAAACwAAAAAAVwAAAAADVwAAAAABVwAAAAACVwAAAAACVwAAAAAAVwAAAAAAdgAAAAAAVwAAAAADVwAAAAABdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAVwAAAAABVwAAAAADVwAAAAACcwAAAAADcwAAAAADcwAAAAADcwAAAAACVwAAAAAAVwAAAAACXgAAAAAAVwAAAAADdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAVwAAAAACXgAAAAAAcwAAAAAAcwAAAAABVwAAAAABcwAAAAAAcwAAAAABcwAAAAAAXgAAAAAAVwAAAAAAVwAAAAACdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAVwAAAAAAdgAAAAAAXgAAAAAAcwAAAAAAXgAAAAAAZwAAAAACXgAAAAAAXgAAAAAAcwAAAAACXgAAAAAAVwAAAAADVwAAAAADdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAACwAAAAAAVwAAAAACcwAAAAAAcwAAAAABVwAAAAAAcwAAAAACXgAAAAAAcwAAAAAAVwAAAAABdgAAAAAAVwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAACwAAAAAAXgAAAAAAVwAAAAADdgAAAAAAcwAAAAACcwAAAAABcwAAAAAAcwAAAAADdgAAAAAACwAAAAAAVwAAAAADVwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAVwAAAAABVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAACwAAAAAACwAAAAAAVwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAAAdgAAAAAAVwAAAAACCwAAAAAAZwAAAAACZwAAAAABCwAAAAAAVwAAAAADVwAAAAAAVwAAAAAACwAAAAAAVwAAAAACVwAAAAACdgAAAAAAGwAAAAADGwAAAAADGwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAACwAAAAAAVwAAAAABVwAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAACdgAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAVwAAAAADVwAAAAAACwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAGwAAAAACGwAAAAABGwAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAAAGwAAAAAAGwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABVwAAAAABdgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAACwAAAAAAVwAAAAACdgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAACwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAZgAAAAAAZgAAAAAAdgAAAAAAPgAAAAAAdgAAAAAAdgAAAAAA
+ tiles: VwAAAAADXgAAAAAACwAAAAAAVwAAAAADVwAAAAAAVwAAAAABVwAAAAAAVwAAAAAAVwAAAAACdwAAAAAAVwAAAAACVwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAVwAAAAAAVwAAAAAAVwAAAAADdAAAAAABdAAAAAABdAAAAAACdAAAAAAAVwAAAAAAVwAAAAABXgAAAAAAVwAAAAADdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAVwAAAAAAXgAAAAAAdAAAAAAAdAAAAAABVwAAAAACdAAAAAADdAAAAAACdAAAAAAAXgAAAAAAVwAAAAADVwAAAAACdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACdwAAAAAAXgAAAAAAdAAAAAAAXgAAAAAAaAAAAAABXgAAAAAAXgAAAAAAdAAAAAABXgAAAAAAVwAAAAADVwAAAAABdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAACwAAAAAAVwAAAAABdAAAAAADdAAAAAACVwAAAAABdAAAAAAAXgAAAAAAdAAAAAABVwAAAAAAdwAAAAAAVwAAAAACdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAACwAAAAAAXgAAAAAAVwAAAAABdwAAAAAAdAAAAAADdAAAAAABdAAAAAAAdAAAAAABdwAAAAAACwAAAAAAVwAAAAACVwAAAAADdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAACwAAAAAACwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACdwAAAAAAVwAAAAABCwAAAAAAaAAAAAADaAAAAAACCwAAAAAAVwAAAAAAVwAAAAADVwAAAAADCwAAAAAAVwAAAAABVwAAAAAAdwAAAAAAGwAAAAAAGwAAAAABGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAACwAAAAAAVwAAAAABVwAAAAACdwAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAAACwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAGwAAAAADGwAAAAAAGwAAAAABZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAAAGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAACdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAACwAAAAAAVwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADCwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAZwAAAAAAZwAAAAAAdwAAAAAAPgAAAAAAdwAAAAAAdwAAAAAA
version: 6
1,-6:
ind: 1,-6
- tiles: dQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAGwAAAAADdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdgAAAAAAGwAAAAADdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAGwAAAAACdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAXgAAAAAAYQAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAVwAAAAACYQAAAAACVwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAVwAAAAADYQAAAAAAVwAAAAABdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAVwAAAAACYQAAAAADYQAAAAABdgAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAVwAAAAABYQAAAAACVwAAAAAAdAAAAAABdAAAAAACdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAYQAAAAABXgAAAAAAcwAAAAAAcwAAAAACcwAAAAACdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAADVwAAAAADVwAAAAACYQAAAAAAVwAAAAACYAAAAAADYAAAAAADcwAAAAADcwAAAAADdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAXwAAAAACXwAAAAACYAAAAAAAVwAAAAABXgAAAAAAVwAAAAAAYQAAAAADVwAAAAABVQAAAAABYAAAAAAAcwAAAAADcwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXwAAAAADXwAAAAABYAAAAAABVwAAAAABVwAAAAABVwAAAAADYQAAAAADVwAAAAACVQAAAAAAYAAAAAABcwAAAAADcwAAAAACGwAAAAAAcgAAAAAAcgAAAAADGwAAAAABcgAAAAADcgAAAAACcgAAAAAAYQAAAAABYQAAAAAAYQAAAAACYQAAAAACVwAAAAACVQAAAAACYAAAAAAAcwAAAAADcwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXwAAAAABXwAAAAAAYAAAAAACVwAAAAAAXgAAAAAAVwAAAAADYQAAAAADYQAAAAABYAAAAAABYAAAAAACcwAAAAAAcwAAAAADdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAXwAAAAADXwAAAAACYAAAAAAAVwAAAAAAVwAAAAADXgAAAAAAYQAAAAAAVwAAAAADcwAAAAABcwAAAAACcwAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAADVwAAAAADVwAAAAAAYQAAAAAAVwAAAAAD
+ tiles: dgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAGwAAAAADdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAGwAAAAACdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAGwAAAAADdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAXgAAAAAAYgAAAAACXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAVwAAAAABYgAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAVwAAAAABYgAAAAADVwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAVwAAAAADYgAAAAABYgAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAVwAAAAABYgAAAAADVwAAAAABdQAAAAACdQAAAAADdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACYgAAAAADXgAAAAAAdAAAAAADdAAAAAACdAAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAACVwAAAAABYgAAAAAAVwAAAAABYQAAAAAAYQAAAAAAdAAAAAADdAAAAAABdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAXwAAAAAAXwAAAAAAYQAAAAAAVwAAAAADXgAAAAAAVwAAAAABYgAAAAACVwAAAAABVQAAAAAAYQAAAAABdAAAAAAAdAAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXwAAAAAAXwAAAAACYQAAAAADVwAAAAADVwAAAAADVwAAAAADYgAAAAABVwAAAAACVQAAAAAAYQAAAAACdAAAAAACdAAAAAABGwAAAAACcwAAAAACcwAAAAACGwAAAAAAcwAAAAACcwAAAAADcwAAAAAAYgAAAAABYgAAAAADYgAAAAACYgAAAAAAVwAAAAACVQAAAAAAYQAAAAAAdAAAAAACdAAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXwAAAAAAXwAAAAAAYQAAAAABVwAAAAABXgAAAAAAVwAAAAACYgAAAAABYgAAAAAAYQAAAAAAYQAAAAAAdAAAAAADdAAAAAABdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAXwAAAAABXwAAAAACYQAAAAACVwAAAAACVwAAAAABXgAAAAAAYgAAAAAAVwAAAAADdAAAAAACdAAAAAAAdAAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAABYgAAAAAAVwAAAAAC
version: 6
0,-7:
ind: 0,-7
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
1,-5:
ind: 1,-5
- tiles: dAAAAAACdAAAAAADdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACYQAAAAADVwAAAAABdgAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAVwAAAAAAYQAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAVwAAAAABYQAAAAAAVwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAGwAAAAAAGwAAAAABGwAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACYQAAAAABVwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAADVwAAAAAAXgAAAAAAVwAAAAACVwAAAAAAYQAAAAACVwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAXgAAAAAAVwAAAAADVwAAAAADVwAAAAACXgAAAAAAXgAAAAAAVwAAAAAAYQAAAAACVwAAAAAAZwAAAAADZgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAABVwAAAAAAVwAAAAABVwAAAAACVwAAAAAAVwAAAAABVwAAAAABYQAAAAACYQAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdgAAAAAAXgAAAAAAVwAAAAABVwAAAAABXgAAAAAAXgAAAAAAVwAAAAACVwAAAAACVwAAAAAAVwAAAAABVwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAVwAAAAAAVwAAAAABVwAAAAAAVwAAAAACVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAVwAAAAABVwAAAAABXgAAAAAAVwAAAAADdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAVwAAAAABdgAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAZQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAZQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAA
+ tiles: dQAAAAAAdQAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACYgAAAAABVwAAAAADdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAVwAAAAABYgAAAAACXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAVwAAAAACYgAAAAACVwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAGwAAAAADGwAAAAAAGwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADYgAAAAABVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAADXgAAAAAAVwAAAAAAVwAAAAABYgAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAXgAAAAAAVwAAAAABVwAAAAAAVwAAAAABXgAAAAAAXgAAAAAAVwAAAAACYgAAAAAAVwAAAAABaAAAAAABZwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAABVwAAAAACVwAAAAAAVwAAAAAAVwAAAAABVwAAAAAAVwAAAAACYgAAAAACYgAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAXgAAAAAAVwAAAAAAVwAAAAABXgAAAAAAXgAAAAAAVwAAAAAAVwAAAAADVwAAAAACVwAAAAAAVwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAVwAAAAABVwAAAAAAVwAAAAACVwAAAAABVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAXgAAAAAAVwAAAAACdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAVwAAAAABdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAA
version: 6
2,-5:
ind: 2,-5
- tiles: dgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAVwAAAAABdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAVwAAAAABdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAGwAAAAADdgAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAADVwAAAAACdgAAAAAAdgAAAAAAVwAAAAACGwAAAAAAVwAAAAACVwAAAAAAVwAAAAABVwAAAAADVwAAAAABVwAAAAABVwAAAAABVwAAAAABVwAAAAAAVwAAAAAAVwAAAAABXgAAAAAAXgAAAAAAGwAAAAACVwAAAAAAGwAAAAABVwAAAAAASgAAAAABVwAAAAACVwAAAAADVwAAAAADVwAAAAACVwAAAAABVwAAAAADVwAAAAACVwAAAAACVwAAAAAASgAAAAACXgAAAAAAGwAAAAABYQAAAAACGwAAAAACVwAAAAABXgAAAAAAVwAAAAABVwAAAAACVwAAAAACVwAAAAABVwAAAAAAVwAAAAABVwAAAAADVwAAAAADVwAAAAADVwAAAAABVwAAAAABGwAAAAABXgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAVwAAAAADVwAAAAABVwAAAAADVwAAAAACVwAAAAACVwAAAAABVwAAAAABVwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAAAGwAAAAADGwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAVwAAAAADVwAAAAAAVwAAAAABdgAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAVwAAAAADXgAAAAAAVwAAAAADdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAVwAAAAACSgAAAAACVwAAAAABdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAVwAAAAADVwAAAAAAVwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAZwAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAXgAAAAAASgAAAAADVwAAAAADZQAAAAAAZgAAAAAAZgAAAAAAZQAAAAAAZwAAAAACZQAAAAAAdgAAAAAA
+ tiles: dwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAVwAAAAADdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAVwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAGwAAAAABdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAADdwAAAAAAdwAAAAAAVwAAAAADGwAAAAAAVwAAAAACVwAAAAACVwAAAAABVwAAAAAAVwAAAAABVwAAAAADVwAAAAABVwAAAAABVwAAAAAAVwAAAAACVwAAAAADXgAAAAAAXgAAAAAAGwAAAAAAVwAAAAACGwAAAAACVwAAAAACSgAAAAADVwAAAAAAVwAAAAAAVwAAAAACVwAAAAAAVwAAAAABVwAAAAACVwAAAAABVwAAAAABVwAAAAADSgAAAAACXgAAAAAAGwAAAAADYgAAAAADGwAAAAAAVwAAAAABXgAAAAAAVwAAAAAAVwAAAAAAVwAAAAADVwAAAAAAVwAAAAADVwAAAAAAVwAAAAACVwAAAAADVwAAAAACVwAAAAADVwAAAAABGwAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAADVwAAAAAAVwAAAAAAVwAAAAADVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACGwAAAAACGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAVwAAAAAAVwAAAAABVwAAAAADdwAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAVwAAAAAAXgAAAAAAVwAAAAACdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAVwAAAAABSgAAAAAAVwAAAAADdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAVwAAAAABVwAAAAABVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAaAAAAAABdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAXgAAAAAASgAAAAACVwAAAAACZgAAAAAAZwAAAAAAZwAAAAAAZgAAAAAAaAAAAAABZgAAAAAAdwAAAAAA
version: 6
3,-2:
ind: 3,-2
- tiles: dgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABVwAAAAACVwAAAAACVwAAAAACTgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAZgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAASwAAAAAASwAAAAAASwAAAAAATgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAASwAAAAAASwAAAAAASwAAAAAATgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAZgAAAAAAdgAAAAAAdgAAAAAASwAAAAAASwAAAAAASwAAAAAATgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAGwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZwAAAAABZQAAAAAAdgAAAAAATgAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZwAAAAAAdgAAAAAATgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdgAAAAAAZQAAAAAAdgAAAAAATgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAATgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAATgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAGwAAAAACdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAA
+ tiles: dwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAADTgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAZwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAATgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAATgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZwAAAAAAdwAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAATgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAaAAAAAACZgAAAAAAdwAAAAAATgAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAaAAAAAABdwAAAAAATgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAZgAAAAAAdwAAAAAATgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAATgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAATgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAGwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAA
version: 6
0,2:
ind: 0,2
- tiles: XgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAAQAAAAAAAQAAAAAAXgAAAAAAAQAAAAAAAQAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAXgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAAQAAAAAAdgAAAAAAAQAAAAAAAQAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAVwAAAAADXgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAZgAAAAAAVwAAAAACdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAXgAAAAAAVwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAXgAAAAAAVwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAABwAAAAAABwAAAAAABwAAAAAECQAAAAAEBwAAAAAFBwAAAAAABwAAAAAABwAAAAAEBwAAAAALCQAAAAAABwAAAAADBwAAAAAABwAAAAAAVwAAAAAAVwAAAAABdgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAAVwAAAAABVwAAAAAAdgAAAAAABwAAAAAJBwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAVwAAAAABVwAAAAABdgAAAAAABwAAAAAGBwAAAAAABwAAAAAECQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAVwAAAAACVwAAAAADdgAAAAAABwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAMBwAAAAAA
+ tiles: XgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAAQAAAAAAAQAAAAAAXgAAAAAAAQAAAAAAAQAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAXgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAAQAAAAAAdwAAAAAAAQAAAAAAAQAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAVwAAAAAAXgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAZwAAAAAAVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAXgAAAAAAVwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAXgAAAAAAVwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAABwAAAAAABwAAAAACBwAAAAAACQAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAAVwAAAAACVwAAAAADdwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAADVwAAAAAAVwAAAAACdwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAVwAAAAABVwAAAAABdwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAVwAAAAADVwAAAAABdwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAA
version: 6
1,3:
ind: 1,3
- tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAGBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAMBwAAAAAABwAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: BwAAAAADBwAAAAAIBwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAMBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
0,3:
ind: 0,3
- tiles: VwAAAAABVwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAAVwAAAAACVwAAAAADdgAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALVwAAAAADVwAAAAACdgAAAAAABwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAAVwAAAAACVwAAAAADdgAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAVwAAAAABVwAAAAABdgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAALQAAAAAALQAAAAAALQAAAAAAJgAAAAAABwAAAAAABwAAAAAJBwAAAAAAGwAAAAACGwAAAAABdgAAAAAABwAAAAALBwAAAAAABwAAAAAHLQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAJgAAAAACBwAAAAAABwAAAAAAVwAAAAACVwAAAAADdgAAAAAABwAAAAAABwAAAAAABwAAAAAILQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAJgAAAAAAJgAAAAAABwAAAAAKVwAAAAABVwAAAAADdgAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAJgAAAAADBwAAAAAABwAAAAAABwAAAAAJVwAAAAAAVwAAAAABdgAAAAAAdgAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAJgAAAAACBwAAAAAHBwAAAAAABwAAAAAABwAAAAAAVwAAAAADVwAAAAACZgAAAAAAdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAAVwAAAAACVwAAAAABZgAAAAAAdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAAVwAAAAAAVwAAAAADZgAAAAAAdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAGBwAAAAAHBwAAAAAFdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: VwAAAAAAVwAAAAACdwAAAAAAeAAAAAAAeAAAAAAAZwAAAAAAZwAAAAAAeAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAAVwAAAAACVwAAAAABdwAAAAAAeAAAAAAAeAAAAAAAZwAAAAAAZwAAAAAAeAAAAAAABwAAAAAIBwAAAAAFBwAAAAAIBwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAMVwAAAAAAVwAAAAACdwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAVwAAAAAAVwAAAAADdwAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAALBwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAMBwAAAAAAVwAAAAADVwAAAAAAdwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAALQAAAAAALQAAAAAALQAAAAAAJgAAAAABBwAAAAAABwAAAAAABwAAAAAAGwAAAAADGwAAAAADdwAAAAAABwAAAAAABwAAAAAABwAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAJgAAAAAABwAAAAAABwAAAAAMVwAAAAAAVwAAAAABdwAAAAAABwAAAAAABwAAAAAABwAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAJgAAAAABJgAAAAACBwAAAAAAVwAAAAABVwAAAAAAdwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAJgAAAAADBwAAAAAABwAAAAAABwAAAAAAVwAAAAADVwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAJgAAAAABBwAAAAAIBwAAAAAEBwAAAAAABwAAAAAEVwAAAAACVwAAAAAAZwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAFBwAAAAALBwAAAAAABwAAAAAAVwAAAAABVwAAAAABZwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAHBwAAAAAKBwAAAAAABwAAAAAABwAAAAALBwAAAAAAVwAAAAACVwAAAAAAZwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAJdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-1,2:
ind: -1,2
- tiles: VwAAAAABVwAAAAABdgAAAAAAcwAAAAADcwAAAAACcwAAAAABdgAAAAAAXgAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAZQAAAAAAXgAAAAAAVwAAAAAAZgAAAAAAVwAAAAABVwAAAAABVwAAAAABdgAAAAAAcwAAAAACcwAAAAACdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAVwAAAAABVwAAAAADVwAAAAAAVwAAAAABVwAAAAADGwAAAAACcwAAAAAAcwAAAAACdgAAAAAAZgAAAAAAZgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAVwAAAAABVwAAAAADdgAAAAAAcwAAAAAAcwAAAAACdgAAAAAAZgAAAAAAZgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAACVwAAAAADGwAAAAAAVwAAAAADVwAAAAADVwAAAAACVwAAAAADVwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAADGwAAAAADVwAAAAABVwAAAAAAVwAAAAABVwAAAAAAVwAAAAACdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAVwAAAAACVwAAAAABGwAAAAADVwAAAAAAVwAAAAACVwAAAAAAVwAAAAADVwAAAAABdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAACVwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAACVwAAAAABGwAAAAABFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAABVwAAAAAAdgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAADVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAFwAAAAAAFwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAVwAAAAACVwAAAAACGwAAAAAAVwAAAAAAVwAAAAAAVwAAAAABVwAAAAACVwAAAAAAVwAAAAAAVwAAAAABVwAAAAAAVwAAAAADVwAAAAAAVwAAAAABVwAAAAABVwAAAAABVwAAAAACVwAAAAAAGwAAAAAAVwAAAAAAVwAAAAABVwAAAAAAVwAAAAADVwAAAAADVwAAAAABVwAAAAABVwAAAAAAVwAAAAADVwAAAAABVwAAAAABVwAAAAADVwAAAAAAVwAAAAAAVwAAAAACGwAAAAAAVwAAAAADVwAAAAACVwAAAAACVwAAAAADVwAAAAADVwAAAAAAVwAAAAACVwAAAAAAVwAAAAADVwAAAAADVwAAAAADVwAAAAAAVwAAAAACVwAAAAADVwAAAAACdgAAAAAAZwAAAAACZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAB
+ tiles: VwAAAAADVwAAAAAAdwAAAAAAdAAAAAABdAAAAAACdAAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAZgAAAAAAXgAAAAAAVwAAAAAAZwAAAAAAVwAAAAAAVwAAAAACVwAAAAADdwAAAAAAdAAAAAABdAAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAVwAAAAADVwAAAAAAVwAAAAACVwAAAAAAVwAAAAADGwAAAAAAdAAAAAADdAAAAAADdwAAAAAAZwAAAAAAZwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAVwAAAAAAVwAAAAACdwAAAAAAdAAAAAAAdAAAAAACdwAAAAAAZwAAAAAAZwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAADVwAAAAACGwAAAAAAVwAAAAADVwAAAAADVwAAAAABVwAAAAACVwAAAAACdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAACVwAAAAABGwAAAAADVwAAAAABVwAAAAABVwAAAAADVwAAAAABVwAAAAABdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABVwAAAAACGwAAAAADVwAAAAACVwAAAAABVwAAAAAAVwAAAAACVwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAACVwAAAAAAGwAAAAABFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAACVwAAAAABdwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAFwAAAAAAFwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAVwAAAAAAVwAAAAADGwAAAAAAVwAAAAACVwAAAAAAVwAAAAABVwAAAAAAVwAAAAACVwAAAAAAVwAAAAAAVwAAAAADVwAAAAADVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAACVwAAAAABVwAAAAACGwAAAAADVwAAAAACVwAAAAADVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAABVwAAAAACVwAAAAADVwAAAAADVwAAAAADVwAAAAAAVwAAAAAAVwAAAAACVwAAAAACVwAAAAAAGwAAAAAAVwAAAAABVwAAAAAAVwAAAAACVwAAAAADVwAAAAABVwAAAAAAVwAAAAACVwAAAAACVwAAAAADVwAAAAABVwAAAAABVwAAAAACVwAAAAAAVwAAAAAAVwAAAAADdwAAAAAAaAAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAD
version: 6
4,1:
ind: 4,1
- tiles: ZQAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAADdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAVwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAVwAAAAABdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAA
+ tiles: ZgAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAACdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAVwAAAAACdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAVwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAA
version: 6
4,0:
ind: 4,0
- tiles: dgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAZgAAAAAAVwAAAAACdgAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAZgAAAAAAVwAAAAACVwAAAAACdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAZQAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAXgAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAZQAAAAAAVwAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAXgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: dwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAZwAAAAAAVwAAAAADdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAZwAAAAAAVwAAAAAAVwAAAAABdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAZgAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAXgAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAZgAAAAAAVwAAAAABdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAXgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
4,-1:
ind: 4,-1
- tiles: AAAAAAAAAAAAAAAAdgAAAAAAGwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAABdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAADVwAAAAAAGwAAAAACGwAAAAAAGwAAAAAAGwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAACVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAADVwAAAAABGwAAAAADGwAAAAABGwAAAAADGwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAACVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAACVwAAAAAAVQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAACVwAAAAAAVQAAAAAEdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAACVwAAAAABVQAAAAAFdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAABVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAABGwAAAAAAGwAAAAADGwAAAAACGwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAADcwAAAAACGwAAAAABGwAAAAABGwAAAAACdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAADcwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAACdgAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAACcwAAAAACdgAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAdwAAAAAAGwAAAAADdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAADVwAAAAADGwAAAAACGwAAAAAAGwAAAAADGwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAADVwAAAAABGwAAAAAAGwAAAAACGwAAAAABGwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAADVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAADVwAAAAADVQAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAACVwAAAAABVQAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAADVwAAAAADVQAAAAAFdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAABVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAACVwAAAAACGwAAAAAAGwAAAAACGwAAAAABGwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAAAAdAAAAAABGwAAAAACGwAAAAADGwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAAADdAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAAACdAAAAAADdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAAACdAAAAAACdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
4,-3:
ind: 4,-3
- tiles: VwAAAAACVwAAAAACdgAAAAAAXgAAAAAAXgAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAABXgAAAAAAVwAAAAADVwAAAAAAVwAAAAACdgAAAAAAdQAAAAAAVwAAAAAAVwAAAAAAGwAAAAADGwAAAAADGwAAAAADGwAAAAAAGwAAAAADGwAAAAAAGwAAAAADGwAAAAACGwAAAAACGwAAAAAAVwAAAAAAXgAAAAAAdgAAAAAAdQAAAAAAVwAAAAABVwAAAAACGwAAAAABGwAAAAADGwAAAAAAGwAAAAACGwAAAAACGwAAAAACGwAAAAABGwAAAAACGwAAAAABGwAAAAADXgAAAAAAXgAAAAAAdgAAAAAAdQAAAAAAVwAAAAAAVwAAAAABdgAAAAAAVwAAAAAAVwAAAAACVwAAAAACXgAAAAAAVwAAAAABVwAAAAACVwAAAAAAGwAAAAADGwAAAAABXgAAAAAAXgAAAAAAdgAAAAAAdQAAAAAAVwAAAAAAVwAAAAAAdgAAAAAAVwAAAAADVwAAAAAAVwAAAAACVwAAAAAAVwAAAAADVwAAAAABVwAAAAAAGwAAAAACGwAAAAABXgAAAAAAXgAAAAAAdgAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAADGwAAAAACdgAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdgAAAAAAGwAAAAAAGwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdgAAAAAAGwAAAAAAGwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdgAAAAAAdgAAAAAASwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAACGwAAAAABdgAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdgAAAAAASwAAAAAASwAAAAAASwAAAAAAdgAAAAAAVwAAAAABVwAAAAABVwAAAAADVwAAAAACGwAAAAADGwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAASwAAAAAASwAAAAAASwAAAAAAGwAAAAABVwAAAAACVwAAAAACVwAAAAACVwAAAAAAGwAAAAABGwAAAAACGwAAAAAAGwAAAAABGwAAAAABGwAAAAAAVwAAAAADdgAAAAAAdgAAAAAASwAAAAAASwAAAAAAdgAAAAAAVwAAAAAAVwAAAAABGwAAAAACGwAAAAACGwAAAAADGwAAAAABGwAAAAAAGwAAAAACGwAAAAADGwAAAAAAVwAAAAABVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACXgAAAAAAGwAAAAADGwAAAAACGwAAAAAAGwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAAAGwAAAAACVwAAAAABVwAAAAACGwAAAAADVwAAAAADXgAAAAAAGwAAAAACGwAAAAABGwAAAAADGwAAAAAAGwAAAAADGwAAAAADGwAAAAADGwAAAAABSgAAAAAAVwAAAAACGwAAAAADVwAAAAADXgAAAAAAGwAAAAABVwAAAAABVwAAAAADVwAAAAACVwAAAAACGwAAAAABGwAAAAAAGwAAAAADGwAAAAABGwAAAAACGwAAAAADVwAAAAAAVwAAAAAAdgAAAAAAdgAAAAAAGwAAAAADdgAAAAAAVwAAAAADVwAAAAAAVwAAAAACVwAAAAABVwAAAAAAVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAA
+ tiles: VwAAAAADVwAAAAABdwAAAAAAXgAAAAAAXgAAAAAAYQAAAAABYQAAAAADYQAAAAABYQAAAAAAYQAAAAACXgAAAAAAVwAAAAADVwAAAAADVwAAAAABdwAAAAAAdgAAAAAAVwAAAAACVwAAAAADGwAAAAACGwAAAAABGwAAAAADGwAAAAACGwAAAAADGwAAAAADGwAAAAABGwAAAAABGwAAAAADGwAAAAADVwAAAAADXgAAAAAAdwAAAAAAdgAAAAAAVwAAAAADVwAAAAACGwAAAAADGwAAAAABGwAAAAABGwAAAAABGwAAAAAAGwAAAAAAGwAAAAABGwAAAAACGwAAAAADGwAAAAAAXgAAAAAAXgAAAAAAdwAAAAAAdgAAAAAAVwAAAAACVwAAAAADdwAAAAAAVwAAAAABVwAAAAAAVwAAAAAAXgAAAAAAVwAAAAACVwAAAAABVwAAAAACGwAAAAABGwAAAAADXgAAAAAAXgAAAAAAdwAAAAAAdgAAAAAAVwAAAAABVwAAAAABdwAAAAAAVwAAAAADVwAAAAABVwAAAAACVwAAAAABVwAAAAAAVwAAAAAAVwAAAAABGwAAAAADGwAAAAADXgAAAAAAXgAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADGwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAGwAAAAABGwAAAAADdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAGwAAAAABGwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdwAAAAAASwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADGwAAAAACdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAACVwAAAAADGwAAAAABGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAAGwAAAAADVwAAAAAAVwAAAAABVwAAAAABVwAAAAABGwAAAAAAGwAAAAAAGwAAAAABGwAAAAAAGwAAAAADGwAAAAACVwAAAAACdwAAAAAAdwAAAAAASwAAAAAASwAAAAAAdwAAAAAAVwAAAAABVwAAAAACGwAAAAACGwAAAAABGwAAAAACGwAAAAAAGwAAAAAAGwAAAAACGwAAAAAAGwAAAAACVwAAAAACVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADXgAAAAAAGwAAAAABGwAAAAACGwAAAAADGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADVwAAAAADGwAAAAACVwAAAAAAVwAAAAACGwAAAAADVwAAAAAAXgAAAAAAGwAAAAACGwAAAAADGwAAAAAAGwAAAAABGwAAAAADGwAAAAAAGwAAAAAAGwAAAAABSgAAAAABVwAAAAADGwAAAAADVwAAAAACXgAAAAAAGwAAAAABVwAAAAACVwAAAAABVwAAAAAAVwAAAAADGwAAAAABGwAAAAADGwAAAAADGwAAAAAAGwAAAAADGwAAAAADVwAAAAADVwAAAAADdwAAAAAAdwAAAAAAGwAAAAACdwAAAAAAVwAAAAACVwAAAAABVwAAAAADVwAAAAABVwAAAAADVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAA
version: 6
4,-2:
ind: 4,-2
- tiles: VwAAAAACdgAAAAAAdgAAAAAAVwAAAAACVwAAAAAAdgAAAAAAdgAAAAAAVwAAAAACVwAAAAACVwAAAAACVwAAAAABdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdgAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAdgAAAAAAdgAAAAAASwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAVwAAAAACSwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAASwAAAAAASwAAAAAASwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAVwAAAAADSwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAASwAAAAAASwAAAAAASwAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAdgAAAAAASwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAASwAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAGwAAAAABdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: VwAAAAABdwAAAAAAdwAAAAAAVwAAAAACVwAAAAABdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAADVwAAAAAAVwAAAAACdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAdwAAAAAASwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAVwAAAAAASwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAVwAAAAAASwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAASwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAASwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAGwAAAAADdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
3,-3:
ind: 3,-3
- tiles: VwAAAAADVwAAAAADVwAAAAABVwAAAAACdgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAdgAAAAAAVwAAAAACVwAAAAABVwAAAAAAHAAAAAACVwAAAAAAVwAAAAADVwAAAAAAVwAAAAAAVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAADVwAAAAACHAAAAAABHAAAAAAAHAAAAAADVwAAAAADVwAAAAADVwAAAAABVwAAAAADVwAAAAADVwAAAAAAGwAAAAACYwAAAAAAYwAAAAACYwAAAAADGwAAAAAAVwAAAAACVwAAAAADVwAAAAACHAAAAAAAVwAAAAADVwAAAAAAVwAAAAADVwAAAAADVwAAAAAAVwAAAAACVwAAAAAAGwAAAAADYwAAAAACYwAAAAAAYwAAAAACGwAAAAADVwAAAAABVwAAAAAAVwAAAAABVwAAAAAAVwAAAAAAVwAAAAACVwAAAAACVwAAAAABVwAAAAAAVwAAAAAAVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAAAdgAAAAAAVwAAAAABVwAAAAAAVwAAAAADVwAAAAACVwAAAAABVwAAAAAAVwAAAAACVwAAAAAAVwAAAAACVwAAAAABVwAAAAAAdgAAAAAAGwAAAAADGwAAAAAAVwAAAAADdgAAAAAAZgAAAAAAdgAAAAAAVwAAAAADVwAAAAAAVwAAAAACVwAAAAAAVwAAAAAAVwAAAAACVwAAAAACVwAAAAAAVwAAAAABGwAAAAACVwAAAAAAVwAAAAAAVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAACGwAAAAABdgAAAAAAVwAAAAADVwAAAAACVwAAAAACVwAAAAADVwAAAAADVwAAAAABdgAAAAAAGwAAAAAAGwAAAAAAGwAAAAACdgAAAAAAdgAAAAAAZwAAAAACVwAAAAACVwAAAAABdgAAAAAAVwAAAAACVwAAAAAAVwAAAAABVwAAAAACVwAAAAADVwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZwAAAAACVwAAAAACVwAAAAAAdgAAAAAAVwAAAAACVwAAAAAAVwAAAAADVwAAAAAAVwAAAAACVwAAAAABdgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZwAAAAABVwAAAAADVwAAAAACdgAAAAAAVwAAAAACVwAAAAAAVwAAAAADVwAAAAADVwAAAAADdgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAABGwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAZwAAAAADZwAAAAADZwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABVwAAAAADVwAAAAABVwAAAAADVwAAAAADdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAZwAAAAAAZQAAAAAAZwAAAAACdgAAAAAASwAAAAAASwAAAAAASwAAAAAAVwAAAAAAVwAAAAAAVwAAAAABVwAAAAAAdgAAAAAAVwAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAZwAAAAABZwAAAAADZwAAAAAAdgAAAAAASwAAAAAASwAAAAAASwAAAAAAVwAAAAACVwAAAAAASgAAAAACSgAAAAADZgAAAAAAZgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAASwAAAAAASwAAAAAASwAAAAAAVwAAAAADSgAAAAACVwAAAAACVwAAAAAAdgAAAAAAdgAAAAAAZwAAAAADZwAAAAACZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAASwAAAAAASwAAAAAASwAAAAAAVwAAAAACVwAAAAABSgAAAAAASgAAAAAC
+ tiles: VwAAAAABVwAAAAAAVwAAAAACVwAAAAABdwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAdwAAAAAAVwAAAAACVwAAAAABVwAAAAAAHAAAAAAAVwAAAAADVwAAAAADVwAAAAADVwAAAAACVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAACHAAAAAADHAAAAAACHAAAAAADVwAAAAABVwAAAAADVwAAAAAAVwAAAAABVwAAAAABVwAAAAACGwAAAAAAZAAAAAAAZAAAAAACZAAAAAABGwAAAAACVwAAAAACVwAAAAABVwAAAAABHAAAAAADVwAAAAABVwAAAAABVwAAAAABVwAAAAAAVwAAAAACVwAAAAABVwAAAAAAGwAAAAADZAAAAAADZAAAAAADZAAAAAAAGwAAAAACVwAAAAABVwAAAAACVwAAAAADVwAAAAAAVwAAAAABVwAAAAAAVwAAAAACVwAAAAAAVwAAAAABVwAAAAAAVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADdwAAAAAAVwAAAAACVwAAAAACVwAAAAADVwAAAAABVwAAAAACVwAAAAADVwAAAAABVwAAAAAAVwAAAAABVwAAAAACVwAAAAAAdwAAAAAAGwAAAAAAGwAAAAABVwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAVwAAAAAAVwAAAAACVwAAAAABVwAAAAADVwAAAAABVwAAAAAAVwAAAAACVwAAAAAAVwAAAAADGwAAAAACVwAAAAADVwAAAAACVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACGwAAAAADdwAAAAAAVwAAAAADVwAAAAABVwAAAAABVwAAAAAAVwAAAAAAVwAAAAADdwAAAAAAGwAAAAACGwAAAAAAGwAAAAACdwAAAAAAdwAAAAAAaAAAAAADVwAAAAADVwAAAAAAdwAAAAAAVwAAAAABVwAAAAABVwAAAAAAVwAAAAABVwAAAAABVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAaAAAAAADVwAAAAABVwAAAAAAdwAAAAAAVwAAAAABVwAAAAADVwAAAAABVwAAAAACVwAAAAABVwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAaAAAAAABVwAAAAABVwAAAAAAdwAAAAAAVwAAAAABVwAAAAACVwAAAAADVwAAAAACVwAAAAADdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAaAAAAAADaAAAAAABaAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADVwAAAAACVwAAAAAAVwAAAAACVwAAAAABdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAaAAAAAAAZgAAAAAAaAAAAAADdwAAAAAASwAAAAAASwAAAAAASwAAAAAAVwAAAAAAVwAAAAAAVwAAAAABVwAAAAACdwAAAAAAVwAAAAABdwAAAAAAZgAAAAAAdwAAAAAAaAAAAAADaAAAAAACaAAAAAABdwAAAAAASwAAAAAASwAAAAAASwAAAAAAVwAAAAACVwAAAAAASgAAAAABSgAAAAADZwAAAAAAZwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAAVwAAAAAASgAAAAACVwAAAAACVwAAAAACdwAAAAAAdwAAAAAAaAAAAAAAaAAAAAABZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAAVwAAAAADVwAAAAADSgAAAAABSgAAAAAA
version: 6
3,-4:
ind: 3,-4
- tiles: AAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAZwAAAAABdgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAGwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAZgAAAAAAZQAAAAAAZgAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAGwAAAAAAXgAAAAAAXgAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAADXgAAAAAAdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAADVwAAAAABVwAAAAAAVwAAAAABGwAAAAADVwAAAAACVwAAAAABVwAAAAADVwAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAVwAAAAABVwAAAAACVwAAAAABVwAAAAABGwAAAAABXgAAAAAAXgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAABVwAAAAACVwAAAAAAVwAAAAAAdgAAAAAAdgAAAAAAGwAAAAACGwAAAAACdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAGwAAAAABGwAAAAAAGwAAAAADVwAAAAADVwAAAAABVwAAAAAAVwAAAAACVwAAAAADdgAAAAAAZQAAAAAAZgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAATgAAAAAAZgAAAAAATgAAAAAAVwAAAAABVwAAAAAAVwAAAAADVwAAAAADVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAGwAAAAABTgAAAAAATgAAAAAAZgAAAAAATgAAAAAAVwAAAAADVwAAAAADVwAAAAACVwAAAAAAVwAAAAADVwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAVwAAAAACVwAAAAADVwAAAAADVwAAAAACVwAAAAADVwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAATgAAAAAAZgAAAAAATgAAAAAAZgAAAAAATgAAAAAAVwAAAAACVwAAAAADVwAAAAABVwAAAAADVwAAAAACVwAAAAABdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAZgAAAAAATgAAAAAAZgAAAAAATgAAAAAAZgAAAAAAVwAAAAABVwAAAAACVwAAAAADVwAAAAACVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAAAdgAAAAAAVwAAAAACVwAAAAAAVwAAAAABVwAAAAAAdgAAAAAAdgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAdgAAAAAAVwAAAAAAVwAAAAADVwAAAAABVwAAAAADVwAAAAACdgAAAAAAGwAAAAABGwAAAAAAdgAAAAAAdgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAGwAAAAADVwAAAAACVwAAAAACVwAAAAADVwAAAAADVwAAAAAC
+ tiles: AAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAaAAAAAADdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAZwAAAAAAZgAAAAAAZwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAGwAAAAAAXgAAAAAAXgAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACXgAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAABVwAAAAAAVwAAAAADVwAAAAACGwAAAAABVwAAAAAAVwAAAAADVwAAAAADVwAAAAACdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAABVwAAAAACVwAAAAAAGwAAAAACXgAAAAAAXgAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAADVwAAAAADVwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADGwAAAAADdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAGwAAAAAAGwAAAAABGwAAAAAAVwAAAAACVwAAAAACVwAAAAAAVwAAAAACVwAAAAACdwAAAAAAZgAAAAAAZwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAATgAAAAAAZwAAAAAATgAAAAAAVwAAAAAAVwAAAAAAVwAAAAABVwAAAAACVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAGwAAAAACTgAAAAAATgAAAAAAZwAAAAAATgAAAAAAVwAAAAABVwAAAAAAVwAAAAADVwAAAAAAVwAAAAACVwAAAAADdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAVwAAAAABVwAAAAACVwAAAAADVwAAAAAAVwAAAAACVwAAAAADdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAATgAAAAAAZwAAAAAATgAAAAAAZwAAAAAATgAAAAAAVwAAAAAAVwAAAAABVwAAAAACVwAAAAACVwAAAAACVwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAZwAAAAAATgAAAAAAZwAAAAAATgAAAAAAZwAAAAAAVwAAAAABVwAAAAACVwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACdwAAAAAAVwAAAAABVwAAAAADVwAAAAADVwAAAAAAdwAAAAAAdwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAdwAAAAAAVwAAAAACVwAAAAABVwAAAAADVwAAAAAAVwAAAAAAdwAAAAAAGwAAAAABGwAAAAADdwAAAAAAdwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAGwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAC
version: 6
4,-4:
ind: 4,-4
- tiles: ZgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAAdgAAAAAAdgAAAAAAZwAAAAABdgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAdgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAABdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAALBwAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAZwAAAAABZwAAAAACdgAAAAAAdgAAAAAABwAAAAAABwAAAAAABwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAABwAAAAAABwAAAAADBwAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAZwAAAAADdgAAAAAAdgAAAAAABwAAAAAABwAAAAAABwAAAAAATgAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAABwAAAAAABwAAAAAABwAAAAALTgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAABwAAAAAABwAAAAAABwAAAAAAZgAAAAAATgAAAAAAGwAAAAACdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAABwAAAAAABwAAAAAABwAAAAAATgAAAAAAZgAAAAAAGwAAAAABdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAABwAAAAAABwAAAAAABwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAABwAAAAAAdQAAAAAAVwAAAAAAVwAAAAACdgAAAAAAXgAAAAAAVwAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAAAXgAAAAAAVwAAAAAAXgAAAAAAdgAAAAAABwAAAAAAdQAAAAAAVwAAAAABVwAAAAAAGwAAAAAAVwAAAAADXgAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAXgAAAAAAVwAAAAAAVwAAAAAAdgAAAAAABwAAAAAAdQAAAAAA
+ tiles: ZwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAJBwAAAAAAdwAAAAAAdwAAAAAAaAAAAAABdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAaAAAAAACaAAAAAADdwAAAAAAdwAAAAAABwAAAAAHBwAAAAAABwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAABwAAAAAABwAAAAAABwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAaAAAAAADdwAAAAAAdwAAAAAABwAAAAAABwAAAAAABwAAAAAJTgAAAAAAGwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAABwAAAAAABwAAAAAABwAAAAALTgAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAABwAAAAAABwAAAAAABwAAAAALZwAAAAAATgAAAAAAGwAAAAADdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAABwAAAAACBwAAAAAABwAAAAAATgAAAAAAZwAAAAAAGwAAAAADdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAABwAAAAAABwAAAAAABwAAAAALdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAABwAAAAAAdgAAAAAAVwAAAAABVwAAAAABdwAAAAAAXgAAAAAAVwAAAAAAYQAAAAACYQAAAAACYQAAAAADYQAAAAABYQAAAAABXgAAAAAAVwAAAAABXgAAAAAAdwAAAAAABwAAAAAAdgAAAAAAVwAAAAAAVwAAAAABGwAAAAADVwAAAAADXgAAAAAAYQAAAAABYQAAAAABYQAAAAAAYQAAAAAAYQAAAAAAXgAAAAAAVwAAAAAAVwAAAAABdwAAAAAABwAAAAAAdgAAAAAA
version: 6
-3,-1:
ind: -3,-1
- tiles: GwAAAAACdgAAAAAAGwAAAAADVwAAAAADdgAAAAAAVwAAAAADVwAAAAAAVwAAAAABVwAAAAADdgAAAAAAVwAAAAADVwAAAAABVwAAAAAAVwAAAAABdgAAAAAAXgAAAAAAGwAAAAABdgAAAAAAGwAAAAACVwAAAAACdgAAAAAAdgAAAAAAGwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAGwAAAAABdgAAAAAAGwAAAAABVwAAAAAAdgAAAAAAZAAAAAAAZAAAAAACdgAAAAAAXgAAAAAAXgAAAAAAVwAAAAADXgAAAAAAVwAAAAADVwAAAAABdgAAAAAAXgAAAAAAGwAAAAAAdgAAAAAAGwAAAAAAVwAAAAADdgAAAAAAZAAAAAABZAAAAAADdgAAAAAAXgAAAAAAXgAAAAAAVwAAAAABVwAAAAABVwAAAAABVwAAAAAAdgAAAAAAVwAAAAABGwAAAAADdgAAAAAAGwAAAAABXgAAAAAAGwAAAAABZAAAAAABZAAAAAACGwAAAAACXgAAAAAAXgAAAAAAYAAAAAADYAAAAAABVwAAAAAAVwAAAAACGwAAAAAAVwAAAAABGwAAAAADdgAAAAAAGwAAAAABVwAAAAADGwAAAAABZAAAAAADZAAAAAADGwAAAAABVwAAAAADVwAAAAACYAAAAAABYAAAAAABXgAAAAAAVwAAAAADGwAAAAADVwAAAAADGwAAAAACdgAAAAAAGwAAAAAAVwAAAAACdgAAAAAAZAAAAAACZAAAAAADdgAAAAAAVwAAAAAAVwAAAAACYAAAAAACYAAAAAACVwAAAAABVwAAAAAAdgAAAAAAVwAAAAACGwAAAAABGwAAAAACGwAAAAABVwAAAAADdgAAAAAAVwAAAAABVwAAAAADdgAAAAAAVwAAAAAAVwAAAAAAYAAAAAABYAAAAAAAVwAAAAAAVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZAAAAAACZAAAAAADdgAAAAAAVwAAAAAAVwAAAAADYAAAAAADYAAAAAABVwAAAAACVwAAAAAAdgAAAAAAUwAAAAAAYwAAAAABYwAAAAABYwAAAAAAYwAAAAADGwAAAAADZAAAAAAAZAAAAAABGwAAAAABVwAAAAAAVwAAAAABYAAAAAACYAAAAAACVwAAAAACVwAAAAACdgAAAAAAdgAAAAAAYwAAAAACYwAAAAAAYwAAAAAAYwAAAAABGwAAAAAAZAAAAAABZAAAAAACGwAAAAAAVwAAAAAAVwAAAAACVwAAAAAAVwAAAAABVwAAAAABVwAAAAADdgAAAAAAUwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAXgAAAAAAZQAAAAAAXgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZwAAAAADZgAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACVwAAAAADVwAAAAADGwAAAAAAVwAAAAABVwAAAAABVwAAAAADVwAAAAADVwAAAAABVwAAAAABVwAAAAAAVwAAAAABVwAAAAAAVwAAAAADVwAAAAABVwAAAAAB
+ tiles: GwAAAAADdwAAAAAAGwAAAAACVwAAAAABdwAAAAAAVwAAAAADVwAAAAACVwAAAAADVwAAAAACdwAAAAAAVwAAAAACVwAAAAADVwAAAAABVwAAAAABdwAAAAAAXgAAAAAAGwAAAAACdwAAAAAAGwAAAAACVwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAGwAAAAABdwAAAAAAGwAAAAAAVwAAAAADdwAAAAAAZQAAAAABZQAAAAAAdwAAAAAAXgAAAAAAXgAAAAAAVwAAAAACXgAAAAAAVwAAAAABVwAAAAABdwAAAAAAXgAAAAAAGwAAAAADdwAAAAAAGwAAAAADVwAAAAADdwAAAAAAZQAAAAACZQAAAAADdwAAAAAAXgAAAAAAXgAAAAAAVwAAAAAAVwAAAAADVwAAAAACVwAAAAADdwAAAAAAVwAAAAAAGwAAAAAAdwAAAAAAGwAAAAACXgAAAAAAGwAAAAABZQAAAAADZQAAAAADGwAAAAADXgAAAAAAXgAAAAAAYQAAAAABYQAAAAACVwAAAAABVwAAAAABGwAAAAACVwAAAAADGwAAAAABdwAAAAAAGwAAAAACVwAAAAACGwAAAAACZQAAAAADZQAAAAAAGwAAAAAAVwAAAAABVwAAAAAAYQAAAAACYQAAAAADXgAAAAAAVwAAAAAAGwAAAAAAVwAAAAAAGwAAAAAAdwAAAAAAGwAAAAACVwAAAAABdwAAAAAAZQAAAAACZQAAAAABdwAAAAAAVwAAAAACVwAAAAAAYQAAAAAAYQAAAAACVwAAAAADVwAAAAABdwAAAAAAVwAAAAAAGwAAAAABGwAAAAACGwAAAAACVwAAAAADdwAAAAAAVwAAAAADVwAAAAAAdwAAAAAAVwAAAAABVwAAAAABYQAAAAADYQAAAAAAVwAAAAACVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZQAAAAACZQAAAAABdwAAAAAAVwAAAAABVwAAAAACYQAAAAAAYQAAAAAAVwAAAAABVwAAAAAAdwAAAAAAUwAAAAAAZAAAAAAAZAAAAAACZAAAAAADZAAAAAADGwAAAAAAZQAAAAACZQAAAAACGwAAAAADVwAAAAADVwAAAAABYQAAAAACYQAAAAACVwAAAAADVwAAAAABdwAAAAAAdwAAAAAAZAAAAAADZAAAAAAAZAAAAAADZAAAAAABGwAAAAABZQAAAAADZQAAAAADGwAAAAABVwAAAAABVwAAAAADVwAAAAACVwAAAAACVwAAAAAAVwAAAAAAdwAAAAAAUwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAXgAAAAAAZgAAAAAAXgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAaAAAAAABZwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADVwAAAAABVwAAAAACGwAAAAABVwAAAAAAVwAAAAACVwAAAAADVwAAAAAAVwAAAAADVwAAAAADVwAAAAACVwAAAAABVwAAAAABVwAAAAAAVwAAAAAAVwAAAAAA
version: 6
-3,-2:
ind: -3,-2
- tiles: dgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAADZQAAAAAAZQAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAGwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAZwAAAAABZwAAAAADZQAAAAAAdgAAAAAAXgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACdgAAAAAAdgAAAAAAZgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAXgAAAAAAXgAAAAAAZQAAAAAAdgAAAAAAVwAAAAABXgAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAGwAAAAADVwAAAAACVwAAAAAAZgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAABXgAAAAAAVwAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAPgAAAAAAVwAAAAABZQAAAAAAZgAAAAAAZQAAAAAAZgAAAAAAGwAAAAAAZgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAPgAAAAAAVwAAAAACZQAAAAAAZgAAAAAAZQAAAAAAZgAAAAAAdgAAAAAAZgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACZQAAAAAAVwAAAAACZQAAAAAAVwAAAAABdgAAAAAAZgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAVwAAAAADVwAAAAACVwAAAAABVwAAAAACVwAAAAACdgAAAAAAVwAAAAABVwAAAAABVwAAAAADVwAAAAABXgAAAAAAdgAAAAAAdgAAAAAAGwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAADVwAAAAADVwAAAAADVwAAAAAAdgAAAAAAGwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAADVwAAAAADVwAAAAAAVwAAAAAAdgAAAAAAVwAAAAAAVwAAAAABVwAAAAADVwAAAAACdgAAAAAAVwAAAAADGwAAAAAAGwAAAAACGwAAAAAAVwAAAAAAdgAAAAAAVwAAAAADVwAAAAABVwAAAAAAVwAAAAADdgAAAAAAVwAAAAABVwAAAAAAVwAAAAADVwAAAAACGwAAAAAAVwAAAAACGwAAAAAAdgAAAAAAGwAAAAACVwAAAAAAdgAAAAAAVwAAAAABVwAAAAAAVwAAAAABVwAAAAACdgAAAAAAVwAAAAABVwAAAAAAVwAAAAACVwAAAAABGwAAAAACVwAAAAAD
+ tiles: dwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACZgAAAAAAZgAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAaAAAAAADaAAAAAAAZgAAAAAAdwAAAAAAXgAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAVwAAAAABdwAAAAAAdwAAAAAAZwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAXgAAAAAAXgAAAAAAZgAAAAAAdwAAAAAAVwAAAAACXgAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAGwAAAAAAVwAAAAADVwAAAAADZwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAABXgAAAAAAVwAAAAADXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAPgAAAAAAVwAAAAAAZgAAAAAAZwAAAAAAZgAAAAAAZwAAAAAAGwAAAAADZwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAPgAAAAAAVwAAAAAAZgAAAAAAZwAAAAAAZgAAAAAAZwAAAAAAdwAAAAAAZwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABZgAAAAAAVwAAAAACZgAAAAAAVwAAAAABdwAAAAAAZwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADVwAAAAAAVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAACVwAAAAABVwAAAAADXgAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADVwAAAAACVwAAAAACVwAAAAAAdwAAAAAAVwAAAAACVwAAAAAAVwAAAAABVwAAAAACdwAAAAAAVwAAAAACGwAAAAACGwAAAAACGwAAAAABVwAAAAACdwAAAAAAVwAAAAACVwAAAAAAVwAAAAADVwAAAAADdwAAAAAAVwAAAAABVwAAAAACVwAAAAACVwAAAAADGwAAAAADVwAAAAAAGwAAAAACdwAAAAAAGwAAAAAAVwAAAAACdwAAAAAAVwAAAAADVwAAAAADVwAAAAABVwAAAAACdwAAAAAAVwAAAAAAVwAAAAACVwAAAAACVwAAAAAAGwAAAAACVwAAAAAB
version: 6
2,-6:
ind: 2,-6
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAVwAAAAABdgAAAAAAGwAAAAADdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAABGwAAAAABdgAAAAAAVwAAAAACGwAAAAABGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAACGwAAAAADYQAAAAADdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAALQAAAAAALQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAALQAAAAAALQAAAAAAVwAAAAADLQAAAAAALQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAALQAAAAAALQAAAAAAVwAAAAADLQAAAAAALQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAALQAAAAAALQAAAAAAVwAAAAACLQAAAAAALQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAALQAAAAAALQAAAAAAVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAGwAAAAAAGwAAAAACGwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAABGwAAAAABGwAAAAAAYQAAAAACdgAAAAAAGwAAAAADdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAGwAAAAACdgAAAAAAVwAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAVwAAAAAB
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAVwAAAAAAdwAAAAAAGwAAAAACdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAACGwAAAAABdwAAAAAAVwAAAAACGwAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAACGwAAAAABGwAAAAACYgAAAAABdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAALQAAAAAALQAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAALQAAAAAALQAAAAAAVwAAAAAALQAAAAAALQAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAALQAAAAAALQAAAAAAVwAAAAACLQAAAAAALQAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAALQAAAAAALQAAAAAAVwAAAAABLQAAAAAALQAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAALQAAAAAALQAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAGwAAAAACGwAAAAAAGwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAABGwAAAAADGwAAAAADYgAAAAABdwAAAAAAGwAAAAACdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAGwAAAAADdwAAAAAAVwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAVwAAAAAC
version: 6
3,-6:
ind: 3,-6
- tiles: GwAAAAABdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAACdgAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAACdgAAAAAAdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAABXgAAAAAAdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAABXgAAAAAAdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAACVwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAACYQAAAAAAGwAAAAAAGwAAAAACGwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAADVwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAACXgAAAAAAdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAVwAAAAACdgAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAACVwAAAAAAdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAADVwAAAAACdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAACVwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAACYQAAAAABGwAAAAABGwAAAAABGwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAABXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAACVwAAAAADdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: GwAAAAADdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAADXgAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAADXgAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAABYgAAAAABGwAAAAACGwAAAAABGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAACXgAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAADVwAAAAADdwAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAABVwAAAAABdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAVwAAAAADdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAACVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAYgAAAAAAGwAAAAACGwAAAAADGwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAABVwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
3,-5:
ind: 3,-5
- tiles: YQAAAAAAVwAAAAADdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAADVwAAAAABdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAACVwAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADGwAAAAABdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAVwAAAAAAdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAYQAAAAAAVwAAAAAAXgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAYQAAAAACXgAAAAAAVwAAAAACdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAVwAAAAADVwAAAAACVwAAAAADdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAZwAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZwAAAAAAZgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAXgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdgAAAAAAZQAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZwAAAAACdgAAAAAAdgAAAAAAZwAAAAADZgAAAAAAZwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdgAAAAAAZgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAA
+ tiles: YgAAAAADVwAAAAACdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAACVwAAAAABdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAVwAAAAADdwAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAACdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAADVwAAAAABdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAADXgAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAYgAAAAABVwAAAAADXgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAYgAAAAAAXgAAAAAAVwAAAAABdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAVwAAAAADVwAAAAABVwAAAAADdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAaAAAAAABZgAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAaAAAAAACZwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAXgAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAdwAAAAAAZgAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAaAAAAAABdwAAAAAAdwAAAAAAaAAAAAABZwAAAAAAaAAAAAACdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAdwAAAAAAZwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAA
version: 6
4,-5:
ind: 4,-5
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAABwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAJCQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAGBwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAABwAAAAAABwAAAAAAdgAAAAAAGwAAAAAAdgAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAdgAAAAAAdgAAAAAABwAAAAAAdgAAAAAAGwAAAAADdgAAAAAABwAAAAAABwAAAAAICQAAAAAABwAAAAAKBwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAABdgAAAAAAdgAAAAAAdgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAdgAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAdgAAAAAAdgAAAAAAZwAAAAACZwAAAAACZQAAAAAAZwAAAAADXgAAAAAAdgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAAZQAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAZQAAAAAAZgAAAAAAZwAAAAAAdgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAFBwAAAAAABwAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAACQAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAJAAAAAAAAAAAAAAAAdwAAAAAABwAAAAAABwAAAAAAdwAAAAAAGwAAAAACdwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAdwAAAAAAdwAAAAAABwAAAAAAdwAAAAAAGwAAAAACdwAAAAAABwAAAAAIBwAAAAAACQAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAdwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAABwAAAAAGBwAAAAABBwAAAAAABwAAAAAAdwAAAAAAdwAAAAAAaAAAAAAAaAAAAAABZgAAAAAAaAAAAAAAXgAAAAAAdwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAZgAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAZgAAAAAAZwAAAAAAaAAAAAACdwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJCQAAAAACBwAAAAAABwAAAAAH
version: 6
-3,-3:
ind: -3,-3
- tiles: dgAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAADVwAAAAACXgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAACwAAAAAAVwAAAAACVwAAAAACVwAAAAADdgAAAAAAdgAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAVwAAAAADVwAAAAABVwAAAAABVwAAAAABdgAAAAAAdgAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABVwAAAAABVwAAAAACXgAAAAAAVwAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABVwAAAAAAVwAAAAAAVwAAAAADVwAAAAADdgAAAAAAdgAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABVwAAAAADVwAAAAACVwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABVwAAAAAAVwAAAAABVwAAAAADVwAAAAACVwAAAAACVwAAAAABVwAAAAABGwAAAAABVwAAAAADGwAAAAABGwAAAAABGwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAABGwAAAAADGwAAAAACGwAAAAACdgAAAAAAVwAAAAABVwAAAAACGwAAAAABVwAAAAADGwAAAAAAGwAAAAAAGwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACdgAAAAAAVwAAAAABdgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAVwAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAVwAAAAABZgAAAAAAVwAAAAACdgAAAAAAVwAAAAAAVwAAAAAAVwAAAAACVwAAAAABVwAAAAACVwAAAAADdgAAAAAAdgAAAAAAGwAAAAAAdgAAAAAAdQAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAVwAAAAAAVwAAAAACVwAAAAAAVwAAAAAAXgAAAAAAVwAAAAAAdgAAAAAAVwAAAAABVwAAAAADdgAAAAAAAAAAAAAAGwAAAAACVwAAAAADZgAAAAAAVwAAAAACdgAAAAAAVwAAAAACVwAAAAAAXgAAAAAAXgAAAAAAVwAAAAABVwAAAAAAGwAAAAAAXgAAAAAAVwAAAAACdgAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAXgAAAAAAVwAAAAABVwAAAAAAVwAAAAABVwAAAAACGwAAAAACVwAAAAABVwAAAAADdgAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABVwAAAAABVwAAAAABVwAAAAACVwAAAAABVwAAAAACdgAAAAAAVwAAAAABVwAAAAAA
+ tiles: dwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAADXgAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAACwAAAAAAVwAAAAABVwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAVwAAAAABVwAAAAABVwAAAAAAVwAAAAADdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAACVwAAAAAAXgAAAAAAVwAAAAADdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAABVwAAAAAAVwAAAAADVwAAAAABdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAABVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADVwAAAAACVwAAAAABVwAAAAADVwAAAAAAVwAAAAAAVwAAAAACVwAAAAADGwAAAAABVwAAAAADGwAAAAACGwAAAAACGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAADGwAAAAABGwAAAAACdwAAAAAAVwAAAAADVwAAAAADGwAAAAAAVwAAAAABGwAAAAACGwAAAAABGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABdwAAAAAAVwAAAAACdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAVwAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAVwAAAAACZwAAAAAAVwAAAAABdwAAAAAAVwAAAAABVwAAAAABVwAAAAACVwAAAAABVwAAAAAAVwAAAAADdwAAAAAAdwAAAAAAGwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAADVwAAAAACXgAAAAAAVwAAAAADdwAAAAAAVwAAAAABVwAAAAABdwAAAAAAAAAAAAAAGwAAAAABVwAAAAAAZwAAAAAAVwAAAAAAdwAAAAAAVwAAAAABVwAAAAACXgAAAAAAXgAAAAAAVwAAAAABVwAAAAADGwAAAAADXgAAAAAAVwAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADXgAAAAAAVwAAAAADVwAAAAACVwAAAAABVwAAAAABGwAAAAAAVwAAAAAAVwAAAAABdwAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAADVwAAAAADdwAAAAAAVwAAAAABVwAAAAAA
version: 6
-3,-4:
ind: -3,-4
- tiles: dgAAAAAAVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAZgAAAAAAdgAAAAAAPgAAAAAAPgAAAAAAGwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACdgAAAAAAVwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAACCwAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAABVwAAAAADXgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACVwAAAAABVwAAAAABXgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAADVwAAAAAAdgAAAAAAXgAAAAAAVwAAAAADVwAAAAACVwAAAAABdgAAAAAAdgAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACVwAAAAAAdgAAAAAAVwAAAAADVwAAAAAAVwAAAAABVwAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACVwAAAAADdgAAAAAAdgAAAAAAVwAAAAACVwAAAAAAVwAAAAADdgAAAAAAdgAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAACwAAAAAAVwAAAAABVwAAAAADdgAAAAAAdgAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABVwAAAAAAVwAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACXgAAAAAAVwAAAAACdgAAAAAAdgAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAADVwAAAAADdgAAAAAA
+ tiles: dwAAAAAAVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAZwAAAAAAdwAAAAAAPgAAAAAAPgAAAAAAGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAdwAAAAAAVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAADCwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAADVwAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAABVwAAAAADXgAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAABdwAAAAAAXgAAAAAAVwAAAAAAVwAAAAABVwAAAAADdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAACdwAAAAAAVwAAAAADVwAAAAABVwAAAAACVwAAAAACdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAADdwAAAAAAdwAAAAAAVwAAAAADVwAAAAABVwAAAAADdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAACwAAAAAAVwAAAAAAVwAAAAACdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAXgAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADVwAAAAAAVwAAAAACdwAAAAAA
version: 6
-4,-3:
ind: -4,-3
- tiles: AAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAZwAAAAADZQAAAAAAZgAAAAAAZgAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAAAGwAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAZQAAAAAAXgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAXgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAZQAAAAAAXgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAXgAAAAAAZQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdgAAAAAAVwAAAAADXgAAAAAAVwAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAVwAAAAADVwAAAAACVwAAAAACVwAAAAAAdgAAAAAAdQAAAAAAdgAAAAAAXgAAAAAAVwAAAAACVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZwAAAAAAVwAAAAACVwAAAAAAVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABVwAAAAADdgAAAAAAZgAAAAAAZQAAAAAAZgAAAAAAZQAAAAAAZgAAAAAAGwAAAAACVwAAAAAAXgAAAAAAVwAAAAADVwAAAAAAVwAAAAAAZQAAAAAAGwAAAAACVwAAAAADXgAAAAAAdgAAAAAAZQAAAAAAZgAAAAAAZQAAAAAAZgAAAAAAZQAAAAAAGwAAAAABVwAAAAABVwAAAAACXgAAAAAAVwAAAAADGwAAAAABVwAAAAACGwAAAAACVwAAAAADVwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAADVwAAAAAAXgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAXgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAA
+ tiles: AAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAaAAAAAADZgAAAAAAZwAAAAAAZwAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACGwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAZgAAAAAAXgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAXgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAZgAAAAAAXgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAXgAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAVwAAAAADXgAAAAAAVwAAAAACdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAVwAAAAABVwAAAAACVwAAAAABVwAAAAACdwAAAAAAdgAAAAAAdwAAAAAAXgAAAAAAVwAAAAACVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAaAAAAAABVwAAAAACVwAAAAAAVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADVwAAAAADdwAAAAAAZwAAAAAAZgAAAAAAZwAAAAAAZgAAAAAAZwAAAAAAGwAAAAABVwAAAAAAXgAAAAAAVwAAAAABVwAAAAADVwAAAAACZgAAAAAAGwAAAAABVwAAAAACXgAAAAAAdwAAAAAAZgAAAAAAZwAAAAAAZgAAAAAAZwAAAAAAZgAAAAAAGwAAAAACVwAAAAACVwAAAAAAXgAAAAAAVwAAAAADGwAAAAADVwAAAAADGwAAAAAAVwAAAAADVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAABXgAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAXgAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAA
version: 6
-4,-4:
ind: -4,-4
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAVwAAAAADVwAAAAAAVwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAZwAAAAABdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdgAAAAAAVwAAAAACdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAVwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdgAAAAAAVwAAAAABGwAAAAADGwAAAAACGwAAAAADdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAdQAAAAAAGwAAAAAAGwAAAAAAGwAAAAABZQAAAAAAZQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAZQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAZgAAAAAAZgAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAZQAAAAAAXgAAAAAAZgAAAAAAZgAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAZgAAAAAAZgAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAaAAAAAACdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAdwAAAAAAVwAAAAACdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAdwAAAAAAVwAAAAACGwAAAAABGwAAAAADGwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAGwAAAAACGwAAAAABGwAAAAACZgAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZwAAAAAAZwAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAZgAAAAAAXgAAAAAAZwAAAAAAZwAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZwAAAAAAZwAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAA
version: 6
-3,0:
ind: -3,0
- tiles: VwAAAAACVwAAAAAAVwAAAAAAGwAAAAACYQAAAAABYQAAAAABYQAAAAABYQAAAAACYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAABYQAAAAAAYQAAAAACYQAAAAADYQAAAAACVwAAAAADVwAAAAABVwAAAAABGwAAAAABVwAAAAACVwAAAAADVwAAAAADXgAAAAAAVwAAAAACVwAAAAACVwAAAAABVwAAAAABVwAAAAABVwAAAAADVwAAAAACVwAAAAABGwAAAAACGwAAAAABGwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAADGwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAADVwAAAAABVwAAAAADVwAAAAACZgAAAAAAdgAAAAAALQAAAAAALQAAAAAALQAAAAAAZAAAAAACZAAAAAADLQAAAAAALQAAAAAALQAAAAAAdgAAAAAALQAAAAAAVwAAAAACVwAAAAACVwAAAAAAVwAAAAADZQAAAAAAdgAAAAAALQAAAAAALQAAAAAALQAAAAAAZAAAAAACZAAAAAADLQAAAAAALQAAAAAALQAAAAAAdgAAAAAALQAAAAAAVwAAAAAAVwAAAAABVwAAAAACVwAAAAADZQAAAAAAdgAAAAAALQAAAAAALQAAAAAALQAAAAAAZAAAAAAAZAAAAAAALQAAAAAALQAAAAAALQAAAAAAdgAAAAAALQAAAAAAVwAAAAAAVwAAAAACVwAAAAACVwAAAAAAZgAAAAAAdgAAAAAALQAAAAAALQAAAAAALQAAAAAAZAAAAAABZAAAAAADLQAAAAAALQAAAAAALQAAAAAAdgAAAAAALQAAAAAAVwAAAAADVwAAAAAAVwAAAAADVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAACGwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACVwAAAAAAVwAAAAADVwAAAAADdgAAAAAAcwAAAAABdgAAAAAAIAAAAAAAIAAAAAAAIAAAAAABIAAAAAADIAAAAAADIAAAAAAAdgAAAAAAGwAAAAAAGwAAAAADdgAAAAAAGwAAAAABGwAAAAAAdgAAAAAAdgAAAAAAcwAAAAADdgAAAAAAIAAAAAACIAAAAAABIAAAAAACIAAAAAABIAAAAAABIAAAAAAAdgAAAAAAHwAAAAABHwAAAAADVwAAAAABVwAAAAACVwAAAAAAdgAAAAAAcwAAAAACcwAAAAAAdgAAAAAAIAAAAAABIAAAAAADIAAAAAACIAAAAAABIAAAAAABIAAAAAAAdgAAAAAAHwAAAAABIAAAAAAAVwAAAAAAXgAAAAAAVwAAAAABGwAAAAABcwAAAAAAcwAAAAABdgAAAAAAIAAAAAAAIAAAAAADIAAAAAACIAAAAAADIAAAAAABIAAAAAAAdgAAAAAAHwAAAAACdgAAAAAAVwAAAAABVwAAAAAAVwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAIAAAAAACIAAAAAACIAAAAAADIAAAAAACIAAAAAABIAAAAAACdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABdgAAAAAAGwAAAAAAdgAAAAAAdgAAAAAAYQAAAAADdgAAAAAAIAAAAAACIAAAAAAAIAAAAAAAIAAAAAABIAAAAAAAIAAAAAADGwAAAAABGwAAAAAAdgAAAAAAVwAAAAAAVwAAAAABXgAAAAAAVwAAAAADZgAAAAAAYQAAAAACdgAAAAAAIAAAAAAAIAAAAAAAIAAAAAABIAAAAAACIAAAAAABIAAAAAABGwAAAAADGwAAAAAAGwAAAAAAVwAAAAADXgAAAAAAXgAAAAAAVwAAAAACdgAAAAAAYQAAAAABdgAAAAAAIAAAAAADIAAAAAAAIAAAAAADIAAAAAABIAAAAAACIAAAAAAAGwAAAAAAGwAAAAAAdgAAAAAA
+ tiles: VwAAAAADVwAAAAABVwAAAAADGwAAAAACYgAAAAACYgAAAAADYgAAAAABYgAAAAAAYgAAAAADYgAAAAAAYgAAAAABYgAAAAACYgAAAAADYgAAAAACYgAAAAACYgAAAAABVwAAAAAAVwAAAAABVwAAAAACGwAAAAADVwAAAAAAVwAAAAAAVwAAAAAAXgAAAAAAVwAAAAADVwAAAAABVwAAAAAAVwAAAAADVwAAAAADVwAAAAAAVwAAAAAAVwAAAAACGwAAAAADGwAAAAADGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAABVwAAAAACVwAAAAACZwAAAAAAdwAAAAAALQAAAAAALQAAAAAALQAAAAAAZQAAAAAAZQAAAAADLQAAAAAALQAAAAAALQAAAAAAdwAAAAAALQAAAAAAVwAAAAADVwAAAAABVwAAAAADVwAAAAADZgAAAAAAdwAAAAAALQAAAAAALQAAAAAALQAAAAAAZQAAAAADZQAAAAACLQAAAAAALQAAAAAALQAAAAAAdwAAAAAALQAAAAAAVwAAAAABVwAAAAACVwAAAAACVwAAAAAAZgAAAAAAdwAAAAAALQAAAAAALQAAAAAALQAAAAAAZQAAAAACZQAAAAAALQAAAAAALQAAAAAALQAAAAAAdwAAAAAALQAAAAAAVwAAAAADVwAAAAADVwAAAAAAVwAAAAAAZwAAAAAAdwAAAAAALQAAAAAALQAAAAAALQAAAAAAZQAAAAABZQAAAAAALQAAAAAALQAAAAAALQAAAAAAdwAAAAAALQAAAAAAVwAAAAADVwAAAAADVwAAAAAAVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAACVwAAAAACVwAAAAADdwAAAAAAdAAAAAADdwAAAAAAIAAAAAADIAAAAAACIAAAAAAAIAAAAAACIAAAAAABIAAAAAACdwAAAAAAGwAAAAABGwAAAAAAdwAAAAAAGwAAAAAAGwAAAAABdwAAAAAAdwAAAAAAdAAAAAAAdwAAAAAAIAAAAAACIAAAAAAAIAAAAAABIAAAAAADIAAAAAADIAAAAAACdwAAAAAAHwAAAAADHwAAAAAAVwAAAAACVwAAAAACVwAAAAAAdwAAAAAAdAAAAAABdAAAAAADdwAAAAAAIAAAAAACIAAAAAADIAAAAAACIAAAAAADIAAAAAACIAAAAAABdwAAAAAAHwAAAAACIAAAAAAAVwAAAAADXgAAAAAAVwAAAAAAGwAAAAADdAAAAAAAdAAAAAADdwAAAAAAIAAAAAAAIAAAAAADIAAAAAAAIAAAAAADIAAAAAABIAAAAAADdwAAAAAAHwAAAAADdwAAAAAAVwAAAAADVwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAIAAAAAABIAAAAAACIAAAAAAAIAAAAAADIAAAAAACIAAAAAABdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAdwAAAAAAGwAAAAADdwAAAAAAdwAAAAAAYgAAAAACdwAAAAAAIAAAAAAAIAAAAAABIAAAAAACIAAAAAACIAAAAAABIAAAAAADGwAAAAACGwAAAAACdwAAAAAAVwAAAAADVwAAAAABXgAAAAAAVwAAAAABZwAAAAAAYgAAAAAAdwAAAAAAIAAAAAABIAAAAAABIAAAAAABIAAAAAADIAAAAAACIAAAAAABGwAAAAABGwAAAAACGwAAAAACVwAAAAAAXgAAAAAAXgAAAAAAVwAAAAAAdwAAAAAAYgAAAAADdwAAAAAAIAAAAAAAIAAAAAABIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAGwAAAAACGwAAAAAAdwAAAAAA
version: 6
-3,1:
ind: -3,1
- tiles: XgAAAAAAVwAAAAACVwAAAAADVwAAAAABdgAAAAAAYQAAAAAAdgAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAABHwAAAAABHwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAADdgAAAAAAdgAAAAAAVwAAAAADYQAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAdgAAAAAAVwAAAAACVwAAAAACVwAAAAAAVwAAAAADVwAAAAACYQAAAAACYQAAAAADYQAAAAAAYQAAAAADYQAAAAAAYQAAAAADYQAAAAAAYQAAAAACYQAAAAADYQAAAAADdgAAAAAAVwAAAAADVwAAAAABVwAAAAABVwAAAAAAVwAAAAACYQAAAAAAIAAAAAADIAAAAAAAGwAAAAABIAAAAAABIAAAAAADGwAAAAAAIAAAAAADIAAAAAAAYQAAAAABdgAAAAAAVwAAAAABVwAAAAABVwAAAAACXAAAAAACXAAAAAABYQAAAAABIAAAAAAAIAAAAAABGwAAAAABIAAAAAABIAAAAAABGwAAAAACIAAAAAABIAAAAAADYQAAAAADdgAAAAAAVwAAAAADVwAAAAADVwAAAAACXAAAAAADXAAAAAACYQAAAAABGwAAAAADGwAAAAABGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAACGwAAAAAAGwAAAAABYQAAAAABGwAAAAACXgAAAAAAVwAAAAADVwAAAAACXAAAAAADXAAAAAACYQAAAAADIAAAAAADIAAAAAADGwAAAAABIAAAAAACIAAAAAADGwAAAAAAIAAAAAADIAAAAAAAYQAAAAABGwAAAAACXgAAAAAAVwAAAAADVwAAAAABVwAAAAAAVwAAAAACYQAAAAADIAAAAAADIAAAAAADGwAAAAACIAAAAAADIAAAAAAAGwAAAAAAIAAAAAACIAAAAAABYQAAAAACdgAAAAAAVwAAAAACVwAAAAADVwAAAAACVwAAAAADVwAAAAADYQAAAAAAYQAAAAABYQAAAAABYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAADYQAAAAADYQAAAAAAdgAAAAAAVwAAAAADVwAAAAAAVwAAAAABVwAAAAABVwAAAAACVwAAAAADVwAAAAAAVwAAAAACVwAAAAABVwAAAAAAVwAAAAACVwAAAAADVwAAAAACVwAAAAADVwAAAAAAVwAAAAABVwAAAAABVwAAAAABVwAAAAABXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAACwAAAAAAVwAAAAACVwAAAAADdgAAAAAAGwAAAAADGwAAAAADdgAAAAAAdgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAdgAAAAAAVwAAAAAAVwAAAAAAVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAADVwAAAAADXgAAAAAAXgAAAAAAVwAAAAAAVwAAAAACVwAAAAABVwAAAAACVwAAAAAAdgAAAAAAVwAAAAACVwAAAAADVwAAAAACdgAAAAAAVwAAAAABVwAAAAABVwAAAAADVwAAAAABVwAAAAABVwAAAAABVwAAAAABVwAAAAABVwAAAAABVwAAAAADVwAAAAADGwAAAAADVwAAAAADVwAAAAABVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAADYQAAAAACYQAAAAAAYQAAAAADYQAAAAAAYQAAAAACVwAAAAABdgAAAAAAVwAAAAACVwAAAAACVwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXAAAAAACXAAAAAAAYQAAAAADIAAAAAAAIAAAAAACIAAAAAABYQAAAAADVwAAAAADdgAAAAAAVwAAAAACVwAAAAADVwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAA
+ tiles: XgAAAAAAVwAAAAAAVwAAAAAAVwAAAAADdwAAAAAAYgAAAAACdwAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAABHwAAAAACHwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACYgAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABdwAAAAAAVwAAAAADVwAAAAADVwAAAAAAVwAAAAABVwAAAAADYgAAAAACYgAAAAACYgAAAAADYgAAAAADYgAAAAABYgAAAAADYgAAAAABYgAAAAAAYgAAAAACYgAAAAABdwAAAAAAVwAAAAACVwAAAAACVwAAAAAAVwAAAAADVwAAAAABYgAAAAACIAAAAAAAIAAAAAACGwAAAAABIAAAAAAAIAAAAAADGwAAAAADIAAAAAAAIAAAAAACYgAAAAABdwAAAAAAVwAAAAAAVwAAAAABVwAAAAADXAAAAAACXAAAAAABYgAAAAAAIAAAAAADIAAAAAACGwAAAAACIAAAAAAAIAAAAAACGwAAAAABIAAAAAABIAAAAAAAYgAAAAAAdwAAAAAAVwAAAAACVwAAAAADVwAAAAABXAAAAAADXAAAAAADYgAAAAACGwAAAAADGwAAAAACGwAAAAACGwAAAAABGwAAAAACGwAAAAACGwAAAAAAGwAAAAADYgAAAAABGwAAAAAAXgAAAAAAVwAAAAACVwAAAAADXAAAAAAAXAAAAAAAYgAAAAAAIAAAAAAAIAAAAAACGwAAAAAAIAAAAAAAIAAAAAABGwAAAAAAIAAAAAADIAAAAAADYgAAAAACGwAAAAADXgAAAAAAVwAAAAAAVwAAAAACVwAAAAADVwAAAAABYgAAAAABIAAAAAAAIAAAAAADGwAAAAABIAAAAAACIAAAAAADGwAAAAACIAAAAAACIAAAAAADYgAAAAADdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAABVwAAAAADVwAAAAADYgAAAAACYgAAAAADYgAAAAACYgAAAAACYgAAAAAAYgAAAAADYgAAAAABYgAAAAAAYgAAAAADYgAAAAAAdwAAAAAAVwAAAAACVwAAAAACVwAAAAAAVwAAAAACVwAAAAABVwAAAAACVwAAAAADVwAAAAABVwAAAAAAVwAAAAABVwAAAAACVwAAAAABVwAAAAACVwAAAAACVwAAAAACVwAAAAAAVwAAAAABVwAAAAADVwAAAAACXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAACwAAAAAAVwAAAAADVwAAAAACdwAAAAAAGwAAAAAAGwAAAAABdwAAAAAAdwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAdwAAAAAAVwAAAAABVwAAAAACVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABVwAAAAABXgAAAAAAXgAAAAAAVwAAAAAAVwAAAAABVwAAAAAAVwAAAAAAVwAAAAACdwAAAAAAVwAAAAABVwAAAAACVwAAAAABdwAAAAAAVwAAAAABVwAAAAAAVwAAAAABVwAAAAACVwAAAAAAVwAAAAADVwAAAAAAVwAAAAAAVwAAAAACVwAAAAADVwAAAAABGwAAAAADVwAAAAADVwAAAAADVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAABYgAAAAACYgAAAAAAYgAAAAAAYgAAAAACYgAAAAADVwAAAAABdwAAAAAAVwAAAAADVwAAAAACVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXAAAAAABXAAAAAABYgAAAAACIAAAAAABIAAAAAABIAAAAAADYgAAAAACVwAAAAAAdwAAAAAAVwAAAAADVwAAAAACVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAA
version: 6
-4,-1:
ind: -4,-1
- tiles: AAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAVwAAAAADVwAAAAABVwAAAAAAVwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAVwAAAAABVwAAAAADVwAAAAABVwAAAAADdgAAAAAAZwAAAAACZwAAAAAAVwAAAAACdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAVwAAAAADVwAAAAABVwAAAAAAVwAAAAACdgAAAAAAZwAAAAABZwAAAAABVwAAAAACAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAVwAAAAACVwAAAAACVwAAAAAAVwAAAAAAdgAAAAAAZwAAAAABZwAAAAADVwAAAAACAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAVwAAAAACVwAAAAABXgAAAAAAVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAVwAAAAACVwAAAAABVwAAAAABVwAAAAADVwAAAAACdgAAAAAAXgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABVwAAAAADXgAAAAAAVwAAAAAAVwAAAAABVwAAAAAAdgAAAAAAVwAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABVwAAAAABVwAAAAABGwAAAAABVwAAAAAAVwAAAAADdgAAAAAAVwAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAVwAAAAABVwAAAAABVwAAAAABVwAAAAABVwAAAAADVwAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAVwAAAAACVwAAAAAAXgAAAAAAVwAAAAACVwAAAAACVwAAAAACGwAAAAADYwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABVwAAAAADVwAAAAADVwAAAAAAVwAAAAAAGwAAAAACYwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAGwAAAAABdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAGwAAAAADGwAAAAAAGwAAAAADZQAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAA
+ tiles: AAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAACVwAAAAAAVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAVwAAAAADVwAAAAAAVwAAAAACVwAAAAABdwAAAAAAaAAAAAAAaAAAAAAAVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAAAVwAAAAADVwAAAAACdwAAAAAAaAAAAAACaAAAAAACVwAAAAABAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAAAVwAAAAACVwAAAAACdwAAAAAAaAAAAAAAaAAAAAAAVwAAAAACAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAAAXgAAAAAAVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAVwAAAAABVwAAAAADVwAAAAADVwAAAAACVwAAAAACdwAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAACXgAAAAAAVwAAAAADVwAAAAAAVwAAAAABdwAAAAAAVwAAAAACAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAADVwAAAAADGwAAAAAAVwAAAAABVwAAAAADdwAAAAAAVwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAACVwAAAAABVwAAAAACVwAAAAACVwAAAAADdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAACXgAAAAAAVwAAAAABVwAAAAADVwAAAAADGwAAAAAAZAAAAAACdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAACVwAAAAABGwAAAAACZAAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAGwAAAAACdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAAAGwAAAAADGwAAAAACZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAA
version: 6
-4,-2:
ind: -4,-2
- tiles: dgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAZwAAAAACXgAAAAAAdgAAAAAAGwAAAAADVwAAAAABVwAAAAAAVwAAAAADVwAAAAACVwAAAAABVwAAAAACdgAAAAAAVwAAAAACXgAAAAAAVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAADVwAAAAABXgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAZQAAAAAACwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABVwAAAAAAVwAAAAADdgAAAAAAXgAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAZQAAAAAACwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACVwAAAAAAVwAAAAADdgAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAADVwAAAAABXgAAAAAAVwAAAAADVwAAAAACVwAAAAABVwAAAAACVwAAAAAAVwAAAAADVwAAAAABVwAAAAABVwAAAAACVwAAAAABdgAAAAAAZgAAAAAAGwAAAAACXgAAAAAAVwAAAAACVwAAAAADVwAAAAAAVwAAAAACVwAAAAAAVwAAAAACVwAAAAABVwAAAAAAXgAAAAAAVwAAAAABVwAAAAABVwAAAAACdgAAAAAAdgAAAAAAGwAAAAAAVwAAAAACVwAAAAACVwAAAAADVwAAAAACVwAAAAACVwAAAAADVwAAAAAAVwAAAAACXgAAAAAAVwAAAAABVwAAAAACVwAAAAABVwAAAAADGwAAAAABVwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAABdgAAAAAAVwAAAAADVwAAAAAAVwAAAAADVwAAAAABVwAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAGwAAAAACGwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAVwAAAAACVwAAAAAAXgAAAAAAVwAAAAAAVwAAAAADVwAAAAAAVwAAAAADAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAXgAAAAAAVwAAAAADVwAAAAAAVwAAAAAAdgAAAAAAVwAAAAABAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAGwAAAAABGwAAAAACGwAAAAACVwAAAAAAXgAAAAAAVwAAAAADVwAAAAAAVwAAAAADXgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACVwAAAAADVwAAAAACVwAAAAAAVwAAAAADVwAAAAADGwAAAAACVwAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAADXgAAAAAAVwAAAAABVwAAAAADVwAAAAADGwAAAAAAVwAAAAAB
+ tiles: dwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAaAAAAAACXgAAAAAAdwAAAAAAGwAAAAAAVwAAAAADVwAAAAACVwAAAAADVwAAAAABVwAAAAABVwAAAAADdwAAAAAAVwAAAAAAXgAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAACXgAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAACwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAACVwAAAAACdwAAAAAAXgAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAACwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAADVwAAAAABdwAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAACXgAAAAAAVwAAAAADVwAAAAACVwAAAAACVwAAAAADVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAABVwAAAAABVwAAAAACdwAAAAAAZwAAAAAAGwAAAAACXgAAAAAAVwAAAAACVwAAAAADVwAAAAAAVwAAAAACVwAAAAADVwAAAAAAVwAAAAACVwAAAAAAXgAAAAAAVwAAAAADVwAAAAAAVwAAAAACdwAAAAAAdwAAAAAAGwAAAAAAVwAAAAAAVwAAAAADVwAAAAADVwAAAAADVwAAAAACVwAAAAADVwAAAAADVwAAAAACXgAAAAAAVwAAAAADVwAAAAADVwAAAAADVwAAAAAAGwAAAAACVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAdwAAAAAAVwAAAAABVwAAAAAAVwAAAAAAVwAAAAABVwAAAAABdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAGwAAAAAAGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAVwAAAAADVwAAAAACXgAAAAAAVwAAAAABVwAAAAAAVwAAAAAAVwAAAAACAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADXgAAAAAAVwAAAAABVwAAAAADVwAAAAAAdwAAAAAAVwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAGwAAAAAAGwAAAAAAGwAAAAADVwAAAAABXgAAAAAAVwAAAAACVwAAAAACVwAAAAACXgAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAACVwAAAAAAVwAAAAACVwAAAAAAVwAAAAACGwAAAAADVwAAAAADAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAABXgAAAAAAVwAAAAACVwAAAAABVwAAAAABGwAAAAADVwAAAAAB
version: 6
-5,-1:
ind: -5,-1
- tiles: dQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: dgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-5,-2:
ind: -5,-2
- tiles: dQAAAAAAdQAAAAAAGwAAAAACGwAAAAACGwAAAAAAZgAAAAAAVwAAAAAAZgAAAAAAVwAAAAACZgAAAAAAGwAAAAADGwAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAGwAAAAABdQAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAVwAAAAABZgAAAAAAVwAAAAAAZgAAAAAAdgAAAAAAGwAAAAACZQAAAAAAGwAAAAACZQAAAAAAGwAAAAADdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAZgAAAAAAVwAAAAAAZgAAAAAAVwAAAAABZgAAAAAAdgAAAAAAGwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAACdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAVwAAAAAAVwAAAAAAVwAAAAACVwAAAAACVwAAAAADdgAAAAAAXgAAAAAAGwAAAAABGwAAAAADGwAAAAAAXgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAGwAAAAAAGwAAAAACGwAAAAACXgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAVwAAAAACVwAAAAABVwAAAAAAVwAAAAADVwAAAAADdgAAAAAAXgAAAAAAGwAAAAABdgAAAAAAGwAAAAADXgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAVwAAAAACVwAAAAAAVwAAAAABVwAAAAACVwAAAAABdgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAVwAAAAABVwAAAAABVwAAAAADVwAAAAABVwAAAAADGwAAAAAAXgAAAAAAGwAAAAADGwAAAAABGwAAAAAAXgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAACVwAAAAADVwAAAAADVwAAAAADGwAAAAABXgAAAAAAGwAAAAADGwAAAAACGwAAAAADXgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAA
+ tiles: dgAAAAAAdgAAAAAAGwAAAAABGwAAAAADGwAAAAADZwAAAAAAVwAAAAABZwAAAAAAVwAAAAABZwAAAAAAGwAAAAACGwAAAAABZgAAAAAAZgAAAAAAZgAAAAAAGwAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAVwAAAAABZwAAAAAAVwAAAAABZwAAAAAAdwAAAAAAGwAAAAACZgAAAAAAGwAAAAABZgAAAAAAGwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAZwAAAAAAVwAAAAADZwAAAAAAVwAAAAADZwAAAAAAdwAAAAAAGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAVwAAAAADVwAAAAACVwAAAAADVwAAAAADVwAAAAADdwAAAAAAXgAAAAAAGwAAAAABGwAAAAADGwAAAAABXgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAGwAAAAADGwAAAAADGwAAAAADXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAACVwAAAAADVwAAAAABVwAAAAACdwAAAAAAXgAAAAAAGwAAAAABdwAAAAAAGwAAAAABXgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAVwAAAAADVwAAAAAAVwAAAAABVwAAAAADVwAAAAACdwAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAADVwAAAAABVwAAAAAAVwAAAAACGwAAAAAAXgAAAAAAGwAAAAACGwAAAAABGwAAAAAAXgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAADVwAAAAAAVwAAAAACGwAAAAAAXgAAAAAAGwAAAAADGwAAAAADGwAAAAAAXgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAA
version: 6
-5,-3:
ind: -5,-3
- tiles: dQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdgAAAAAAVwAAAAADZgAAAAAAVwAAAAACdgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdgAAAAAAZgAAAAAAZQAAAAAAZgAAAAAAdgAAAAAAZwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAADdQAAAAAAdgAAAAAAVwAAAAACZgAAAAAAVwAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAABdgAAAAAAdgAAAAAAdQAAAAAAdgAAAAAAVwAAAAACZgAAAAAAVwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAADdgAAAAAAdgAAAAAAdQAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdgAAAAAAVwAAAAADZgAAAAAAVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAADVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAVwAAAAABVwAAAAABVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAABdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAGwAAAAADGwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACXgAAAAAAVwAAAAABGwAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAVwAAAAACZgAAAAAAGwAAAAABZgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAZgAAAAAAVwAAAAACdgAAAAAAZgAAAAAAZgAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAGwAAAAACGwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACVwAAAAADVwAAAAABVwAAAAADVwAAAAABdgAAAAAAGwAAAAAAGwAAAAADGwAAAAADGwAAAAAAGwAAAAAC
+ tiles: dgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAVwAAAAABZwAAAAAAVwAAAAADdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAZwAAAAAAZgAAAAAAZwAAAAAAdwAAAAAAaAAAAAADdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADdgAAAAAAdwAAAAAAVwAAAAAAZwAAAAAAVwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAVwAAAAAAZwAAAAAAVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAVwAAAAAAZwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAABVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAVwAAAAABVwAAAAACVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAVwAAAAABVwAAAAACVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAGwAAAAAAGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAXgAAAAAAVwAAAAACGwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAVwAAAAAAZwAAAAAAGwAAAAACZwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAZwAAAAAAVwAAAAABdwAAAAAAZwAAAAAAZwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAGwAAAAADGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADVwAAAAADVwAAAAACVwAAAAADVwAAAAABdwAAAAAAGwAAAAADGwAAAAAAGwAAAAAAGwAAAAABGwAAAAAC
version: 6
-4,-5:
ind: -4,-5
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADGwAAAAADGwAAAAACVwAAAAACVwAAAAAAVwAAAAABCwAAAAAAVwAAAAABVwAAAAACdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAACwAAAAAAVwAAAAABVwAAAAAAXgAAAAAAVwAAAAABdgAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAZwAAAAADdgAAAAAAVwAAAAAAXgAAAAAAVwAAAAABVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAXgAAAAAACwAAAAAAVwAAAAADVwAAAAAACwAAAAAACwAAAAAAZgAAAAAAZgAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAXgAAAAAAVwAAAAADVwAAAAABdgAAAAAAVwAAAAACXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAXgAAAAAAVwAAAAAAVwAAAAADXgAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADGwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAABZwAAAAADXgAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAVwAAAAAAXgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAACGwAAAAACGwAAAAADVwAAAAADVwAAAAABVwAAAAADXgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAACwAAAAAACwAAAAAAVwAAAAACVwAAAAABdgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAXgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdgAAAAAAJgAAAAAAJgAAAAACJgAAAAADJgAAAAABJgAAAAACdgAAAAAAXgAAAAAAXgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAJgAAAAACJgAAAAAAJgAAAAAAJgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAJgAAAAAAJgAAAAABJgAAAAACJgAAAAADdgAAAAAAVwAAAAABVwAAAAABdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAVwAAAAABVwAAAAADdgAAAAAAZQAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAdgAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADGwAAAAAAGwAAAAABVwAAAAABVwAAAAADVwAAAAAACwAAAAAAVwAAAAABVwAAAAACdwAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAACwAAAAAAVwAAAAAAVwAAAAACXgAAAAAAVwAAAAABdwAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAaAAAAAABdwAAAAAAVwAAAAAAXgAAAAAAVwAAAAACVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAXgAAAAAACwAAAAAAVwAAAAADVwAAAAAACwAAAAAACwAAAAAAZwAAAAAAZwAAAAAAVwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAXgAAAAAAVwAAAAAAVwAAAAABdwAAAAAAVwAAAAACXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAXgAAAAAAVwAAAAACVwAAAAADXgAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAABGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAACaAAAAAAAXgAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAVwAAAAACXgAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAACGwAAAAABVwAAAAABVwAAAAAAVwAAAAABXgAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAACwAAAAAACwAAAAAAVwAAAAAAVwAAAAADdwAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAXgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAJgAAAAABJgAAAAACJgAAAAAAJgAAAAABJgAAAAAAdwAAAAAAXgAAAAAAXgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAJgAAAAAAJgAAAAACJgAAAAACJgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAJgAAAAABJgAAAAACJgAAAAABJgAAAAADdwAAAAAAVwAAAAACVwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAA
version: 6
-4,-6:
ind: -4,-6
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAGwAAAAAAHwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAUgAAAAAAGwAAAAABHwAAAAABdgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAUgAAAAAAGwAAAAAAHwAAAAAAHwAAAAABHwAAAAADHwAAAAADGwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAUgAAAAAAGwAAAAABHwAAAAABdgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAGwAAAAABHwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAACwAAAAAAdgAAAAAACwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADGwAAAAACGwAAAAADdgAAAAAACwAAAAAAVwAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACdgAAAAAAVwAAAAACVwAAAAABVwAAAAADdgAAAAAAdgAAAAAAAAAAAAAAdgAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAHwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAUgAAAAAAGwAAAAAAHwAAAAABdwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAUgAAAAAAGwAAAAAAHwAAAAACHwAAAAACHwAAAAACHwAAAAABGwAAAAABdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAUgAAAAAAGwAAAAABHwAAAAACdwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAHwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAACwAAAAAAdwAAAAAACwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADGwAAAAADGwAAAAADdwAAAAAACwAAAAAAVwAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACdwAAAAAAVwAAAAACVwAAAAADVwAAAAACdwAAAAAAdwAAAAAAAAAAAAAAdwAAAAAA
version: 6
-3,-6:
ind: -3,-6
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAVwAAAAADVwAAAAAAdgAAAAAAVwAAAAAAVwAAAAADVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAZwAAAAAAdgAAAAAAZwAAAAADdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAZwAAAAAAZQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAZQAAAAAAZwAAAAACXgAAAAAAZQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAXgAAAAAAZQAAAAAAVwAAAAADdgAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACVwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAVwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAXgAAAAAAVwAAAAACCwAAAAAAVwAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAdgAAAAAACwAAAAAAVwAAAAADXgAAAAAAVwAAAAADVwAAAAADCwAAAAAAVwAAAAACXgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAXgAAAAAAXgAAAAAACwAAAAAAVwAAAAADVwAAAAAAdgAAAAAAXgAAAAAAVwAAAAAAVwAAAAADVwAAAAACdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAdgAAAAAACwAAAAAAVwAAAAABVwAAAAABVwAAAAAAZwAAAAABCwAAAAAAVwAAAAACVwAAAAAAXgAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAVwAAAAAACwAAAAAAdgAAAAAAVwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAXgAAAAAAVwAAAAADVwAAAAABdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAACdwAAAAAAVwAAAAACVwAAAAAAVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAaAAAAAACdwAAAAAAaAAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAaAAAAAACZgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAZgAAAAAAaAAAAAABXgAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAXgAAAAAAZgAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAXgAAAAAAVwAAAAAACwAAAAAAVwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAdwAAAAAACwAAAAAAVwAAAAABXgAAAAAAVwAAAAACVwAAAAADCwAAAAAAVwAAAAABXgAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAXgAAAAAAXgAAAAAACwAAAAAAVwAAAAABVwAAAAAAdwAAAAAAXgAAAAAAVwAAAAACVwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAdwAAAAAACwAAAAAAVwAAAAAAVwAAAAAAVwAAAAACaAAAAAAACwAAAAAAVwAAAAAAVwAAAAABXgAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAADCwAAAAAAdwAAAAAAVwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAXgAAAAAAVwAAAAAAVwAAAAADdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-4,1:
ind: -4,1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAACGwAAAAACGwAAAAABGwAAAAAAGwAAAAACVwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAABGwAAAAADGwAAAAADGwAAAAADGwAAAAADXAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAABGwAAAAADGwAAAAABGwAAAAAAXAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAABGwAAAAADGwAAAAADGwAAAAAAGwAAAAABVwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAVwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAGwAAAAAAGwAAAAADdgAAAAAAVwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAGwAAAAADGwAAAAADGwAAAAACGwAAAAACVwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAGwAAAAABGwAAAAAAGwAAAAADGwAAAAAAXAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAACGwAAAAADGwAAAAAAGwAAAAADGwAAAAABVwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAACGwAAAAAAGwAAAAACGwAAAAABGwAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAABGwAAAAACGwAAAAADGwAAAAABXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADGwAAAAADGwAAAAAAGwAAAAABGwAAAAABVwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAGwAAAAACGwAAAAABdwAAAAAAVwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAGwAAAAACGwAAAAADGwAAAAAAGwAAAAACVwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAGwAAAAADGwAAAAADGwAAAAADGwAAAAACXAAAAAAB
version: 6
-4,0:
ind: -4,0
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAXgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAVwAAAAABVwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAVwAAAAABVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAADVwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAcwAAAAADcwAAAAADdgAAAAAAVwAAAAABVwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAcwAAAAAAcwAAAAAAdgAAAAAAVwAAAAADVwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAcwAAAAAAcwAAAAADdgAAAAAAVwAAAAACVwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAGwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAVwAAAAACVwAAAAABVwAAAAAAVwAAAAABVwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAVwAAAAACVwAAAAAAVwAAAAACVwAAAAACVwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAGwAAAAABdgAAAAAAVwAAAAABVwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAcwAAAAADcwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAcwAAAAACcwAAAAAAdgAAAAAAVwAAAAACVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAcwAAAAACcwAAAAADdgAAAAAAVwAAAAABXgAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAXgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAVwAAAAAAVwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAVwAAAAAAVwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdAAAAAABdAAAAAABdwAAAAAAVwAAAAAAVwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdAAAAAABdAAAAAADdwAAAAAAVwAAAAAAVwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdAAAAAABdAAAAAACdwAAAAAAVwAAAAACVwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAVwAAAAACVwAAAAABVwAAAAABVwAAAAACVwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAVwAAAAADVwAAAAACVwAAAAAAVwAAAAAAVwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAdwAAAAAAVwAAAAADVwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdAAAAAABdAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdAAAAAACdAAAAAADdwAAAAAAVwAAAAACVwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdAAAAAAAdAAAAAABdwAAAAAAVwAAAAACXgAAAAAA
version: 6
-2,2:
ind: -2,2
- tiles: dgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAZwAAAAABZQAAAAAAdgAAAAAAdgAAAAAAcwAAAAAAcwAAAAACcwAAAAAAcwAAAAAAdgAAAAAAVwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAGwAAAAABcwAAAAADcwAAAAADcwAAAAADcwAAAAADGwAAAAADVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAZgAAAAAAdgAAAAAAcwAAAAACcwAAAAABcwAAAAADcwAAAAABdgAAAAAAVwAAAAACZwAAAAADZwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAZgAAAAAAZgAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAdgAAAAAAZwAAAAADVwAAAAABcwAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAXgAAAAAAVwAAAAAAdgAAAAAAdgAAAAAAGwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAdgAAAAAAZgAAAAAAVwAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAZwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAZwAAAAAAZwAAAAADXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAABVwAAAAACAAAAAAAAdgAAAAAAZwAAAAABZwAAAAABVwAAAAADdgAAAAAAZQAAAAAAdgAAAAAAGwAAAAADcwAAAAACcwAAAAACcwAAAAACcwAAAAABVwAAAAAAVwAAAAACVwAAAAADAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAcwAAAAAAcwAAAAADcwAAAAAAcwAAAAAAVwAAAAADVwAAAAADVwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAcwAAAAACcwAAAAAAcwAAAAADcwAAAAABVwAAAAACVwAAAAACVwAAAAADAAAAAAAAAAAAAAAAdgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAcwAAAAACcwAAAAADcwAAAAAAdgAAAAAAVwAAAAABVwAAAAADVwAAAAACAAAAAAAAAAAAAAAAdgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAGwAAAAACdgAAAAAAdgAAAAAAcwAAAAABcwAAAAABcwAAAAACGwAAAAACVwAAAAADVwAAAAABVwAAAAABAAAAAAAAAAAAAAAAdgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABVwAAAAAAVwAAAAACAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAACcwAAAAABcwAAAAABcwAAAAAAdgAAAAAAVwAAAAABVwAAAAAAVwAAAAAA
+ tiles: dwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAaAAAAAADZgAAAAAAdwAAAAAAdwAAAAAAdAAAAAADdAAAAAAAdAAAAAADdAAAAAABdwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAGwAAAAACdAAAAAADdAAAAAACdAAAAAACdAAAAAADGwAAAAADVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZwAAAAAAdwAAAAAAdAAAAAACdAAAAAACdAAAAAABdAAAAAABdwAAAAAAVwAAAAAAaAAAAAAAaAAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAZwAAAAAAZwAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAdwAAAAAAaAAAAAAAVwAAAAADdAAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAXgAAAAAAVwAAAAADdwAAAAAAdwAAAAAAGwAAAAABEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAdwAAAAAAZwAAAAAAVwAAAAACdwAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAaAAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAaAAAAAABaAAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAAAVwAAAAADAAAAAAAAdwAAAAAAaAAAAAADaAAAAAAAVwAAAAACdwAAAAAAZgAAAAAAdwAAAAAAGwAAAAAAdAAAAAACdAAAAAAAdAAAAAACdAAAAAAAVwAAAAACVwAAAAABVwAAAAABAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAADdAAAAAABdAAAAAADdAAAAAACVwAAAAAAVwAAAAADVwAAAAADAAAAAAAAAAAAAAAAdwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAABdAAAAAAAdAAAAAABdAAAAAADVwAAAAAAVwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAAAdAAAAAABdAAAAAAAdwAAAAAAVwAAAAABVwAAAAACVwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAGwAAAAADdwAAAAAAdwAAAAAAdAAAAAABdAAAAAAAdAAAAAAAGwAAAAACVwAAAAAAVwAAAAADVwAAAAADAAAAAAAAAAAAAAAAdwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADVwAAAAABVwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACdAAAAAACdAAAAAACdAAAAAAAdwAAAAAAVwAAAAABVwAAAAABVwAAAAAB
version: 6
-2,3:
ind: -2,3
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAcwAAAAACcwAAAAAAcwAAAAADdgAAAAAAGwAAAAADGwAAAAADGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAADVwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAADVwAAAAACVwAAAAACVwAAAAABVwAAAAACVwAAAAAAVwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAZwAAAAACdgAAAAAAdgAAAAAAVwAAAAABVwAAAAAAVwAAAAACVwAAAAACVwAAAAAAVwAAAAADVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAZwAAAAADdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABVwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAZwAAAAAAdgAAAAAAdgAAAAAAVwAAAAADVwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAVwAAAAABVwAAAAACVwAAAAAAVwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAVwAAAAABVwAAAAADdgAAAAAAZwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAVwAAAAAAVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAVwAAAAABVwAAAAADdgAAAAAAZQAAAAAAZwAAAAAAZwAAAAACdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAVwAAAAACVwAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAVwAAAAADVwAAAAABdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAVwAAAAADVwAAAAADdgAAAAAAZQAAAAAAZgAAAAAAdgAAAAAAZQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAdAAAAAABdAAAAAAAdAAAAAACdwAAAAAAGwAAAAACGwAAAAADGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAADVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADVwAAAAABVwAAAAACVwAAAAACVwAAAAABVwAAAAABVwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAaAAAAAACdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAABVwAAAAACVwAAAAABVwAAAAACVwAAAAADVwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAaAAAAAABdwAAAAAAdwAAAAAAVwAAAAACVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAaAAAAAACdwAAAAAAdwAAAAAAVwAAAAADVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAAAVwAAAAABVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAVwAAAAABVwAAAAACdwAAAAAAaAAAAAACdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAVwAAAAAAVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAVwAAAAADVwAAAAAAdwAAAAAAZgAAAAAAaAAAAAADaAAAAAABdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAVwAAAAABVwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAVwAAAAAAVwAAAAADdwAAAAAAZgAAAAAAZwAAAAAAdwAAAAAAZgAAAAAA
version: 6
-1,3:
ind: -1,3
- tiles: dgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAJgAAAAADLQAAAAAALQAAAAAAdgAAAAAAVwAAAAABdgAAAAAAZQAAAAAAZwAAAAAAZQAAAAAAdgAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAJgAAAAABLQAAAAAALQAAAAAAdgAAAAAAVwAAAAABGwAAAAAAVwAAAAACVwAAAAACVwAAAAAAdgAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAJgAAAAADJgAAAAADLQAAAAAALQAAAAAAdgAAAAAAVwAAAAADGwAAAAABVwAAAAAAVwAAAAADVwAAAAACdgAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAJgAAAAABLQAAAAAALQAAAAAALQAAAAAAdgAAAAAAVwAAAAADdgAAAAAAdgAAAAAAVwAAAAABVwAAAAABGwAAAAAAJgAAAAACJgAAAAAAJgAAAAAAJgAAAAACJgAAAAABJgAAAAAALQAAAAAALQAAAAAALQAAAAAAdgAAAAAAVwAAAAABAAAAAAAAdgAAAAAAVwAAAAAAVwAAAAACdgAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAJgAAAAABLQAAAAAALQAAAAAALQAAAAAALQAAAAAAdgAAAAAAGwAAAAADAAAAAAAAdgAAAAAAVwAAAAADVwAAAAACdgAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAJgAAAAACLQAAAAAALQAAAAAALQAAAAAALQAAAAAAdgAAAAAAVwAAAAABAAAAAAAAdgAAAAAAVwAAAAAAVwAAAAADdgAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAJgAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAdgAAAAAAVwAAAAACAAAAAAAAdgAAAAAAVwAAAAAAVwAAAAACdgAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAJgAAAAABLQAAAAAALQAAAAAALQAAAAAALQAAAAAAdgAAAAAAVwAAAAADAAAAAAAAdgAAAAAAVwAAAAABVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACAAAAAAAAdgAAAAAAVwAAAAADVwAAAAADGwAAAAADVwAAAAAAVwAAAAABVwAAAAABVwAAAAAAVwAAAAACVwAAAAABVwAAAAAAVwAAAAAAVwAAAAADVwAAAAABVwAAAAAAdgAAAAAAdgAAAAAAVwAAAAADVwAAAAADGwAAAAADVwAAAAACVwAAAAACVwAAAAABVwAAAAACVwAAAAADVwAAAAADVwAAAAACVwAAAAABVwAAAAAAVwAAAAAAVwAAAAADZQAAAAAAdgAAAAAAVwAAAAACVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAVwAAAAADVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAGwAAAAACVwAAAAABGwAAAAADZgAAAAAAdgAAAAAAVwAAAAABVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAGwAAAAACVwAAAAAAGwAAAAAAZgAAAAAAdgAAAAAAVwAAAAADVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdgAAAAAAGwAAAAAAVwAAAAAAGwAAAAAA
+ tiles: dwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAJgAAAAACLQAAAAAALQAAAAAAdwAAAAAAVwAAAAACdwAAAAAAZgAAAAAAaAAAAAACZgAAAAAAdwAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAJgAAAAADLQAAAAAALQAAAAAAdwAAAAAAVwAAAAACGwAAAAABVwAAAAAAVwAAAAADVwAAAAADdwAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAJgAAAAADJgAAAAABLQAAAAAALQAAAAAAdwAAAAAAVwAAAAADGwAAAAACVwAAAAADVwAAAAADVwAAAAAAdwAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAJgAAAAABLQAAAAAALQAAAAAALQAAAAAAdwAAAAAAVwAAAAADdwAAAAAAdwAAAAAAVwAAAAABVwAAAAAAGwAAAAACJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAACJgAAAAABJgAAAAACLQAAAAAALQAAAAAALQAAAAAAdwAAAAAAVwAAAAADAAAAAAAAdwAAAAAAVwAAAAABVwAAAAAAdwAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAJgAAAAABLQAAAAAALQAAAAAALQAAAAAALQAAAAAAdwAAAAAAGwAAAAABAAAAAAAAdwAAAAAAVwAAAAADVwAAAAABdwAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAJgAAAAADLQAAAAAALQAAAAAALQAAAAAALQAAAAAAdwAAAAAAVwAAAAACAAAAAAAAdwAAAAAAVwAAAAACVwAAAAAAdwAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAJgAAAAABLQAAAAAALQAAAAAALQAAAAAALQAAAAAAdwAAAAAAVwAAAAABAAAAAAAAdwAAAAAAVwAAAAACVwAAAAAAdwAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAJgAAAAABLQAAAAAALQAAAAAALQAAAAAALQAAAAAAdwAAAAAAVwAAAAACAAAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABAAAAAAAAdwAAAAAAVwAAAAACVwAAAAADGwAAAAAAVwAAAAACVwAAAAADVwAAAAACVwAAAAACVwAAAAACVwAAAAACVwAAAAAAVwAAAAABVwAAAAAAVwAAAAADVwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAACGwAAAAADVwAAAAAAVwAAAAADVwAAAAAAVwAAAAABVwAAAAADVwAAAAACVwAAAAAAVwAAAAABVwAAAAAAVwAAAAAAVwAAAAABZgAAAAAAdwAAAAAAVwAAAAACVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABdwAAAAAAZgAAAAAAdwAAAAAAVwAAAAACVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAGwAAAAADVwAAAAADGwAAAAAAZwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAGwAAAAADVwAAAAADGwAAAAAAZwAAAAAAdwAAAAAAVwAAAAADVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAGwAAAAAAVwAAAAABGwAAAAAC
version: 6
-3,2:
ind: -3,2
- tiles: XAAAAAADXAAAAAADYQAAAAABIAAAAAAAIAAAAAACIAAAAAACYQAAAAACVwAAAAAAdgAAAAAAVwAAAAAAVwAAAAADVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXAAAAAADXAAAAAADYQAAAAACIAAAAAABIAAAAAAAIAAAAAABYQAAAAACVwAAAAABdgAAAAAAVwAAAAAAVwAAAAACVwAAAAACdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAVwAAAAADVwAAAAAAYQAAAAAAYQAAAAAAYQAAAAABYQAAAAACYQAAAAADVwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAADVwAAAAABVwAAAAADVwAAAAABVwAAAAACVwAAAAAAVwAAAAACVwAAAAADdgAAAAAAdgAAAAAAXgAAAAAAcwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACVwAAAAABVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAcwAAAAABdgAAAAAAdgAAAAAAZwAAAAAAZwAAAAACdgAAAAAAGwAAAAABGwAAAAACdgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAADVwAAAAABXgAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAcwAAAAABVwAAAAADXgAAAAAAVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAADVwAAAAACXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACXgAAAAAAVwAAAAADdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAGwAAAAADdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAADVwAAAAADVwAAAAABdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAGwAAAAABdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAADYQAAAAABYQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAGwAAAAABdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAACVwAAAAABVwAAAAACdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: XAAAAAAAXAAAAAACYgAAAAAAIAAAAAACIAAAAAAAIAAAAAABYgAAAAADVwAAAAADdwAAAAAAVwAAAAAAVwAAAAACVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXAAAAAADXAAAAAACYgAAAAAAIAAAAAADIAAAAAABIAAAAAABYgAAAAAAVwAAAAACdwAAAAAAVwAAAAABVwAAAAACVwAAAAABdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAVwAAAAADVwAAAAAAYgAAAAABYgAAAAADYgAAAAAAYgAAAAAAYgAAAAACVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAABVwAAAAADVwAAAAADVwAAAAAAVwAAAAADVwAAAAABVwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAdAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAABVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAdAAAAAAAdwAAAAAAdwAAAAAAaAAAAAABaAAAAAABdwAAAAAAGwAAAAACGwAAAAADdwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAADXgAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAADVwAAAAABXgAAAAAAVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAADXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADXgAAAAAAVwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAGwAAAAACdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAACVwAAAAAAVwAAAAADdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAGwAAAAACdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAABYgAAAAAAYgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAGwAAAAADdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAACVwAAAAABVwAAAAADdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-4,2:
ind: -4,2
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAGwAAAAABGwAAAAAAGwAAAAABGwAAAAAAXAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAGwAAAAADGwAAAAACGwAAAAABGwAAAAABVwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAGwAAAAADGwAAAAABdgAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADGwAAAAABGwAAAAACVwAAAAABVwAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAABGwAAAAAAGwAAAAACYQAAAAABYQAAAAAAYQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAVwAAAAACXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAGwAAAAADdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAGwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAGwAAAAACdgAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAGwAAAAAAGwAAAAADGwAAAAADGwAAAAABXAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAGwAAAAACGwAAAAADGwAAAAAAGwAAAAAAVwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAGwAAAAACGwAAAAADdwAAAAAAVwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADGwAAAAABGwAAAAABVwAAAAADVwAAAAABXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAADGwAAAAAAYgAAAAACYgAAAAACYgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAVwAAAAADXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAGwAAAAABdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAGwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAGwAAAAABdwAAAAAA
version: 6
-3,3:
ind: -3,3
- tiles: AAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAEBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAACQAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAALBwAAAAAMBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAdQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAdQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAMBwAAAAAABwAAAAAAAAAAAAAAdQAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAEBwAAAAAHBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAACQAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAFBwAAAAACBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAEBwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAABwAAAAAHBwAAAAACBwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAALBwAAAAACBwAAAAACCQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAABBwAAAAAABwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAA
version: 6
-4,3:
ind: -4,3
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAHAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAEAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAJBwAAAAAACQAAAAAABwAAAAAABwAAAAAMBwAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAIBwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAGBwAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFBwAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAKBwAAAAAABwAAAAAABwAAAAAKAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA
version: 6
-3,4:
ind: -3,4
- tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAdQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAKBwAAAAAABwAAAAAAAAAAAAAAdQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAMBwAAAAAAAAAAAAAAdQAAAAAAAAAAAAAABwAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAAAAAAAAAAAdQAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAABBwAAAAAABwAAAAAABwAAAAAFBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAAJBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: BwAAAAAABwAAAAAEBwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAABwAAAAAFBwAAAAAABwAAAAADBwAAAAAABwAAAAABBwAAAAAACQAAAAAABwAAAAAHBwAAAAAABwAAAAAEBwAAAAAABwAAAAAHBwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAABwAAAAACBwAAAAAACQAAAAAABwAAAAAHBwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAALAAAAAAAAdgAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAFBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-4,4:
ind: -4,4
- tiles: AAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAABAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAABwAAAAAABwAAAAAACQAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAADBwAAAAAACQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAAMBwAAAAAABwAAAAAABwAAAAAKBwAAAAAIBwAAAAAABwAAAAAIBwAAAAACAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAMBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAABBwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAABwAAAAACBwAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAECQAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAALAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAACBwAAAAAJBwAAAAAABwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAKBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
1,-7:
ind: 1,-7
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
3,2:
ind: 3,2
- tiles: XgAAAAAAZwAAAAABXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAcwAAAAAAPAAAAAAAPAAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAGwAAAAADZwAAAAACXgAAAAAAZwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAcwAAAAACcwAAAAACXgAAAAAAcwAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAZgAAAAAAZgAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAXgAAAAAAXgAAAAAAdgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZQAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAXgAAAAAAXgAAAAAAdgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZQAAAAAAZwAAAAADZgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAXgAAAAAAVwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAdgAAAAAAZwAAAAABdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAVwAAAAABVwAAAAABZQAAAAAAdgAAAAAAVwAAAAADXgAAAAAAXgAAAAAAXgAAAAAAZQAAAAAAdgAAAAAABwAAAAAAdgAAAAAAdgAAAAAABwAAAAAAAAAAAAAAdgAAAAAAVwAAAAABZQAAAAAAZQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAdgAAAAAAVwAAAAABZQAAAAAAdgAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAAVwAAAAAAVwAAAAABZgAAAAAAZwAAAAADZgAAAAAAZwAAAAADZgAAAAAAZwAAAAADZgAAAAAAZwAAAAACZgAAAAAAZwAAAAADZwAAAAAAdwAAAAAABwAAAAAABwAAAAAAVwAAAAADdgAAAAAAdgAAAAAAVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACdgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAdwAAAAAAdwAAAAAABwAAAAAMVwAAAAADVwAAAAAAZgAAAAAAZwAAAAACZgAAAAAAZwAAAAACZgAAAAAAZwAAAAADZgAAAAAAZwAAAAADZgAAAAAAZwAAAAACZwAAAAAAdwAAAAAABwAAAAAKCQAAAAAB
+ tiles: XgAAAAAAaAAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAABPAAAAAAAPAAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAGwAAAAADaAAAAAADXgAAAAAAaAAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAADdAAAAAAAXgAAAAAAdAAAAAACdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAZwAAAAAAZwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAXgAAAAAAXgAAAAAAdwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZgAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAXgAAAAAAdwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZgAAAAAAaAAAAAADZwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAXgAAAAAAVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAdwAAAAAAaAAAAAADdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAVwAAAAADVwAAAAACZgAAAAAAdwAAAAAAVwAAAAACXgAAAAAAXgAAAAAAXgAAAAAAZgAAAAAAdwAAAAAABwAAAAAAdwAAAAAAdwAAAAAABwAAAAALAAAAAAAAdwAAAAAAVwAAAAABZgAAAAAAZgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAdwAAAAAAVwAAAAAAZgAAAAAAdwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAVwAAAAADVwAAAAACZwAAAAAAaAAAAAAAZwAAAAAAaAAAAAAAZwAAAAAAaAAAAAAAZwAAAAAAaAAAAAADZwAAAAAAaAAAAAACaAAAAAAAeAAAAAAABwAAAAAABwAAAAAAVwAAAAADdwAAAAAAdwAAAAAAVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAXgAAAAAAeAAAAAAAeAAAAAAABwAAAAAIVwAAAAACVwAAAAADZwAAAAAAaAAAAAABZwAAAAAAaAAAAAAAZwAAAAAAaAAAAAABZwAAAAAAaAAAAAAAZwAAAAAAaAAAAAAAaAAAAAABeAAAAAAABwAAAAADCQAAAAAA
version: 6
2,3:
ind: 2,3
- tiles: dgAAAAAAdgAAAAAAdgAAAAAADAAAAAACDAAAAAAADAAAAAABDAAAAAACdgAAAAAAcwAAAAAAVwAAAAACVwAAAAAAVwAAAAAAdgAAAAAAVwAAAAAAVwAAAAADVwAAAAACAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAcwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAADVwAAAAABVwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAcwAAAAABcwAAAAAAdgAAAAAAdgAAAAAAcwAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAADcwAAAAADcwAAAAACcwAAAAACdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAASgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAASgAAAAAASgAAAAADSgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAASgAAAAADKwAAAAADKwAAAAACKwAAAAACSgAAAAABdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAASgAAAAAAKwAAAAADKwAAAAABKwAAAAABKwAAAAABKwAAAAAASgAAAAABdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAASgAAAAADKwAAAAAAKwAAAAADKwAAAAADKwAAAAACKwAAAAAASgAAAAACdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: dwAAAAAAdwAAAAAAdwAAAAAADAAAAAABDAAAAAAADAAAAAAADAAAAAADdwAAAAAAdAAAAAABVwAAAAABVwAAAAACVwAAAAABdwAAAAAAVwAAAAACVwAAAAACVwAAAAADAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAADdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdAAAAAADdAAAAAACdwAAAAAAdwAAAAAAdAAAAAACdwAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAVwAAAAADVwAAAAABdAAAAAADdAAAAAABdAAAAAACdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAASgAAAAACdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAASgAAAAABSgAAAAAASgAAAAADdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAASgAAAAABKwAAAAADKwAAAAADKwAAAAACSgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAASgAAAAABKwAAAAABKwAAAAACKwAAAAADKwAAAAAAKwAAAAAASgAAAAABdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAASgAAAAAAKwAAAAABKwAAAAABKwAAAAAAKwAAAAADKwAAAAACSgAAAAABdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
3,3:
ind: 3,3
- tiles: VwAAAAADdgAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAABwAAAAADBwAAAAAGBwAAAAAABwAAAAAIVwAAAAACdgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAXgAAAAAAXgAAAAAAdgAAAAAAVwAAAAABZQAAAAAAdgAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAAVwAAAAADdgAAAAAAdgAAAAAAZQAAAAAAXgAAAAAAZQAAAAAAXgAAAAAAVwAAAAACZQAAAAAAZQAAAAAAVwAAAAADdgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAZwAAAAABXgAAAAAAZwAAAAADdgAAAAAAVwAAAAAAVwAAAAADVwAAAAAAZQAAAAAAdgAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAZwAAAAADXgAAAAAAXgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAAAZQAAAAAAdgAAAAAABwAAAAAABwAAAAAIBwAAAAADBwAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAAAXgAAAAAAVwAAAAADZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAABwAAAAAIBwAAAAAHBwAAAAAABwAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAdgAAAAAAGwAAAAABdgAAAAAAVwAAAAADdgAAAAAAdgAAAAAAdQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAXgAAAAAAGwAAAAABdgAAAAAAXgAAAAAAVwAAAAAAZwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAZwAAAAABdgAAAAAAZwAAAAABVwAAAAADGwAAAAADXgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAZQAAAAAAXgAAAAAAVwAAAAABVwAAAAABZQAAAAAAZwAAAAACVwAAAAACXgAAAAAAZQAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAVwAAAAADZgAAAAAAZgAAAAAAZgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: VwAAAAADdwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAVwAAAAABdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAXgAAAAAAXgAAAAAAdwAAAAAAVwAAAAABZgAAAAAAdwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIVwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAXgAAAAAAZgAAAAAAXgAAAAAAVwAAAAAAZgAAAAAAZgAAAAAAVwAAAAADdwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAaAAAAAADXgAAAAAAaAAAAAAAdwAAAAAAVwAAAAACVwAAAAACVwAAAAADZgAAAAAAdwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAaAAAAAAAXgAAAAAAXgAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAADZgAAAAAAdwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAACXgAAAAAAVwAAAAABZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAVwAAAAABdwAAAAAAGwAAAAABdwAAAAAAVwAAAAABdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAABwAAAAAABwAAAAAMBwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAXgAAAAAAGwAAAAACdwAAAAAAXgAAAAAAVwAAAAACaAAAAAABdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAaAAAAAACdwAAAAAAaAAAAAACVwAAAAABGwAAAAABXgAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAZgAAAAAAXgAAAAAAVwAAAAABVwAAAAABZgAAAAAAaAAAAAADVwAAAAAAXgAAAAAAZgAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAVwAAAAABZwAAAAAAZwAAAAAAZwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-2,4:
ind: -2,4
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAVwAAAAAAVwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAVwAAAAAAVwAAAAADdgAAAAAAVwAAAAABVwAAAAABVwAAAAADVwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAVwAAAAACVwAAAAAAGwAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAVwAAAAADVwAAAAADdgAAAAAAZgAAAAAAZgAAAAAAYAAAAAABZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAVwAAAAACVwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAABdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAVwAAAAADVwAAAAABdgAAAAAAAAAAAAAAdgAAAAAAGwAAAAACdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAGwAAAAAAGwAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAGwAAAAACdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAGwAAAAACGwAAAAABdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAGwAAAAADGwAAAAABdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAZgAAAAAAZgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAGwAAAAAAGwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAGwAAAAAAGwAAAAABdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAVwAAAAAAVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAVwAAAAACVwAAAAAAdwAAAAAAVwAAAAACVwAAAAACVwAAAAABVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAVwAAAAAAVwAAAAABGwAAAAACYQAAAAAAYQAAAAADYQAAAAADYQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAVwAAAAACVwAAAAAAdwAAAAAAZwAAAAAAZwAAAAAAYQAAAAABZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAVwAAAAABVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAGwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAGwAAAAAAGwAAAAABdwAAAAAAAAAAAAAAdwAAAAAAGwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAGwAAAAADGwAAAAADdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAGwAAAAADGwAAAAADdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAZwAAAAAAZwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAGwAAAAAAGwAAAAACdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAGwAAAAADGwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-1,4:
ind: -1,4
- tiles: dgAAAAAAdgAAAAAAVwAAAAACVwAAAAACdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAADdgAAAAAAVwAAAAAAdgAAAAAAVwAAAAADVwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAHwAAAAACHwAAAAABGwAAAAACVwAAAAADGwAAAAAAYAAAAAABGwAAAAABVwAAAAADVwAAAAACdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAGwAAAAADGwAAAAABNAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAZgAAAAAAdgAAAAAAVwAAAAADVwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAGwAAAAACGwAAAAADGwAAAAACNAAAAAAAHgAAAAACHgAAAAAAHgAAAAABHgAAAAABdgAAAAAAdgAAAAAAVwAAAAADVwAAAAABdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAGwAAAAABVwAAAAADGwAAAAABNAAAAAAAHgAAAAACDwAAAAAADwAAAAAADwAAAAAAAAAAAAAAdgAAAAAAVwAAAAABVwAAAAADdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAGwAAAAAAVwAAAAACGwAAAAADNAAAAAAAHgAAAAADDwAAAAAAGwAAAAAADwAAAAAAAAAAAAAAdgAAAAAAGwAAAAADGwAAAAABdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAGwAAAAABVwAAAAABGwAAAAAANAAAAAAAHgAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAdgAAAAAAGwAAAAACGwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAGwAAAAACVwAAAAACVwAAAAABNAAAAAAAHgAAAAAAHgAAAAAAHgAAAAACHgAAAAABAAAAAAAAdgAAAAAAGwAAAAABGwAAAAACdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAGwAAAAADVwAAAAACNAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAAAAAAAAAdgAAAAAAZgAAAAAAZgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAVwAAAAACVwAAAAADVwAAAAADGwAAAAADdgAAAAAAGwAAAAAAAAAAAAAAdgAAAAAAGwAAAAAAGwAAAAADdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAGwAAAAAAGwAAAAACdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: dwAAAAAAdwAAAAAAVwAAAAACVwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAdwAAAAAAVwAAAAACdwAAAAAAVwAAAAAAVwAAAAADdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAHwAAAAAAHwAAAAAAGwAAAAAAVwAAAAACGwAAAAACYQAAAAACGwAAAAACVwAAAAAAVwAAAAACdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAGwAAAAADGwAAAAACNAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAZwAAAAAAdwAAAAAAVwAAAAABVwAAAAADdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAGwAAAAAAGwAAAAACGwAAAAADNAAAAAAAHgAAAAABHgAAAAADHgAAAAAAHgAAAAACdwAAAAAAdwAAAAAAVwAAAAABVwAAAAACdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAGwAAAAAAVwAAAAABGwAAAAAANAAAAAAAHgAAAAACDwAAAAAADwAAAAAADwAAAAAAAAAAAAAAdwAAAAAAVwAAAAABVwAAAAADdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAGwAAAAABVwAAAAADGwAAAAADNAAAAAAAHgAAAAACDwAAAAAAGwAAAAADDwAAAAAAAAAAAAAAdwAAAAAAGwAAAAAAGwAAAAACdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAGwAAAAAAVwAAAAABGwAAAAAANAAAAAAAHgAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAdwAAAAAAGwAAAAADGwAAAAACdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAGwAAAAAAVwAAAAABVwAAAAADNAAAAAAAHgAAAAABHgAAAAABHgAAAAACHgAAAAABAAAAAAAAdwAAAAAAGwAAAAAAGwAAAAADdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAGwAAAAACVwAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAAAAAAAAAdwAAAAAAZwAAAAAAZwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAADVwAAAAADGwAAAAADdwAAAAAAGwAAAAABAAAAAAAAdwAAAAAAGwAAAAAAGwAAAAACdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAGwAAAAAAGwAAAAACdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
4,3:
ind: 4,3
- tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAALBwAAAAAIBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFBwAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: BwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAALBwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAEBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
4,2:
ind: 4,2
- tiles: dgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAVwAAAAADVwAAAAADVwAAAAABVwAAAAABVwAAAAABdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAAAVwAAAAABVwAAAAACVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAGwAAAAABGwAAAAABGwAAAAAAVwAAAAABVwAAAAABVwAAAAAAVwAAAAACVwAAAAACGwAAAAACGwAAAAAAGwAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABVwAAAAACVwAAAAACVwAAAAAAVwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdgAAAAAAVwAAAAACVwAAAAACVwAAAAAAVwAAAAABVwAAAAADdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAABwAAAAAHBwAAAAAIBwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: dwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAVwAAAAACVwAAAAADVwAAAAAAVwAAAAABVwAAAAABdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAABVwAAAAACVwAAAAADVwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAADGwAAAAAAGwAAAAAAVwAAAAADVwAAAAADVwAAAAAAVwAAAAAAVwAAAAADGwAAAAADGwAAAAAAGwAAAAACdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADVwAAAAADVwAAAAABVwAAAAADVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAVwAAAAACVwAAAAACVwAAAAADVwAAAAACVwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAABwAAAAAABwAAAAAKBwAAAAAFBwAAAAAHBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAFBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
0,4:
ind: 0,4
- tiles: dgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACHwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAANAAAAAAAGwAAAAACGwAAAAACdgAAAAAAdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACNAAAAAAAGwAAAAADGwAAAAACGwAAAAABdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADNAAAAAAAGwAAAAACVwAAAAAAGwAAAAACdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADNAAAAAAAGwAAAAABVwAAAAACGwAAAAAAdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAANAAAAAAAGwAAAAACVwAAAAADGwAAAAACdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABNAAAAAAAVwAAAAABVwAAAAAAGwAAAAADdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAANAAAAAAAVwAAAAAAGwAAAAABdgAAAAAAdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAACVwAAAAADVwAAAAABdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: dwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADHwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAANAAAAAAAGwAAAAAAGwAAAAABdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABNAAAAAAAGwAAAAACGwAAAAACGwAAAAADdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADNAAAAAAAGwAAAAADVwAAAAACGwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABNAAAAAAAGwAAAAAAVwAAAAACGwAAAAACdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACNAAAAAAAGwAAAAACVwAAAAAAGwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABNAAAAAAAVwAAAAACVwAAAAACGwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAANAAAAAAAVwAAAAAAGwAAAAADdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAABVwAAAAABVwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
5,2:
ind: 5,2
- tiles: AAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
5,1:
ind: 5,1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAA
version: 6
-1,-7:
ind: -1,-7
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAVwAAAAADGwAAAAABVwAAAAAAVwAAAAADVwAAAAADdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAACGwAAAAAAGwAAAAADVwAAAAAAVwAAAAADVwAAAAADVwAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAXgAAAAAAXgAAAAAAdgAAAAAAVwAAAAABVwAAAAACVwAAAAADVwAAAAACVwAAAAADVwAAAAABXgAAAAAAVwAAAAAAVwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAABXgAAAAAAXgAAAAAAVwAAAAACVwAAAAAAVwAAAAABdgAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAZQAAAAAAZQAAAAAAdgAAAAAAVwAAAAAAVwAAAAACVwAAAAAAVwAAAAABVwAAAAACVwAAAAAAVwAAAAABVwAAAAADVwAAAAACdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAGwAAAAABVwAAAAAAVwAAAAADVwAAAAACdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAVwAAAAAAVwAAAAADVwAAAAACVwAAAAABdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAXgAAAAAAXgAAAAAAdwAAAAAAVwAAAAACVwAAAAACVwAAAAABVwAAAAACVwAAAAACVwAAAAADXgAAAAAAVwAAAAADVwAAAAACdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAVwAAAAABVwAAAAABVwAAAAADVwAAAAACXgAAAAAAXgAAAAAAVwAAAAACVwAAAAAAVwAAAAABdwAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAVwAAAAABVwAAAAABVwAAAAADVwAAAAAAVwAAAAAAVwAAAAACVwAAAAACVwAAAAADVwAAAAADdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAA
version: 6
-2,-7:
ind: -2,-7
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAADVwAAAAABVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAADVwAAAAADVwAAAAAAVwAAAAACVwAAAAAAVwAAAAAAVwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAXgAAAAAAVwAAAAADXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAVwAAAAADXgAAAAAAXgAAAAAAXgAAAAAAGwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAdgAAAAAAVwAAAAABXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAVwAAAAADdgAAAAAAXgAAAAAAXgAAAAAAdgAAAAAAXgAAAAAAXgAAAAAAdgAAAAAAXgAAAAAAXgAAAAAAVwAAAAABXgAAAAAAXgAAAAAAXgAAAAAAZwAAAAAAXgAAAAAAVwAAAAACXgAAAAAAZQAAAAAAdgAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADVwAAAAABVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAABVwAAAAAAVwAAAAACVwAAAAAAVwAAAAADVwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAXgAAAAAAVwAAAAADXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAVwAAAAACXgAAAAAAXgAAAAAAXgAAAAAAGwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAdwAAAAAAVwAAAAADXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAVwAAAAAAdwAAAAAAXgAAAAAAXgAAAAAAdwAAAAAAXgAAAAAAXgAAAAAAdwAAAAAAXgAAAAAAXgAAAAAAVwAAAAACXgAAAAAAXgAAAAAAXgAAAAAAaAAAAAACXgAAAAAAVwAAAAADXgAAAAAAZgAAAAAAdwAAAAAA
version: 6
-3,-7:
ind: -3,-7
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAGwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAGwAAAAACdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAVwAAAAABVwAAAAAAZwAAAAABZQAAAAAAdgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAGwAAAAABdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAGwAAAAACdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAAAaAAAAAABZgAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAA
version: 6
-5,-4:
ind: -5,-4
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAUwAAAAAAdQAAAAAAUwAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAdQAAAAAAdQAAAAAAUwAAAAAAUwAAAAAAdQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAdQAAAAAAUwAAAAAAUwAAAAAAdgAAAAAAUwAAAAAAUwAAAAAAdgAAAAAAUwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAdgAAAAAAUwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAdQAAAAAAdQAAAAAAUwAAAAAAUwAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAUwAAAAAAdQAAAAAAUwAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAUwAAAAAAdgAAAAAAUwAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAdgAAAAAAdgAAAAAAUwAAAAAAUwAAAAAAdgAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAdgAAAAAAUwAAAAAAUwAAAAAAdwAAAAAAUwAAAAAAUwAAAAAAdwAAAAAAUwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAdwAAAAAAUwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAdgAAAAAAdgAAAAAAUwAAAAAAUwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAUwAAAAAAdgAAAAAAUwAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAA
version: 6
5,-4:
ind: 5,-4
- tiles: BwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAGBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: BwAAAAAFBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAGBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAHBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
5,-5:
ind: 5,-5
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-6,-4:
ind: -6,-4
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAA
version: 6
-6,-2:
ind: -6,-2
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-6,-3:
ind: -6,-3
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAA
version: 6
2,4:
ind: 2,4
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAASgAAAAADKwAAAAABKwAAAAAAKwAAAAAAKwAAAAABKwAAAAACSgAAAAADdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAASgAAAAACKwAAAAAAKwAAAAADKwAAAAADSgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAASgAAAAAASgAAAAABSgAAAAADdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAASgAAAAACKwAAAAACKwAAAAACKwAAAAABKwAAAAAAKwAAAAAASgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAASgAAAAACKwAAAAABKwAAAAACKwAAAAACSgAAAAADdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAASgAAAAADSgAAAAABSgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
type: MapGrid
- type: Broadphase
@@ -10134,25 +10134,25 @@ entities:
parent: 2
type: Transform
- devices:
- - 19804
- - 814
- - 19599
- - 14911
- - 14971
- - 14973
- - 14995
+ - 19813
+ - 816
+ - 19606
+ - 14910
+ - 14970
+ - 14972
- 14994
- - 14996
- - 14753
- - 14731
+ - 14993
+ - 14995
+ - 14755
+ - 14733
+ - 14734
- 14732
- 14730
- - 14728
- - 14729
- - 15000
- - 14902
+ - 14731
+ - 14999
- 14901
- 14900
+ - 14899
type: DeviceList
- uid: 6
components:
@@ -10160,15 +10160,15 @@ entities:
parent: 2
type: Transform
- devices:
- - 19836
- - 19566
- - 838
- - 14921
- - 14966
+ - 19844
+ - 19574
+ - 840
- 14920
- - 14991
- - 14958
- - 14952
+ - 14965
+ - 14919
+ - 14990
+ - 14957
+ - 14951
type: DeviceList
- uid: 7
components:
@@ -10176,22 +10176,22 @@ entities:
parent: 2
type: Transform
- devices:
- - 19856
- - 841
- - 19569
- - 19805
+ - 19863
+ - 843
+ - 19577
+ - 19814
+ - 14864
- 14863
- - 14862
- - 14946
- - 14886
- - 14883
- - 14917
- - 14939
- - 14959
- - 14890
- - 14924
- - 14896
- - 14933
+ - 14945
+ - 14885
+ - 14882
+ - 14916
+ - 14938
+ - 14958
+ - 14889
+ - 14923
+ - 14895
+ - 14932
type: DeviceList
- uid: 8
components:
@@ -10199,25 +10199,25 @@ entities:
parent: 2
type: Transform
- devices:
- - 854
- - 19864
- - 19635
- - 19873
- - 19636
- - 19872
- - 19627
+ - 856
- 19871
- - 19629
- - 19630
- - 19870
- - 19631
- - 19869
- - 19632
- - 19868
+ - 19641
+ - 19880
+ - 19642
+ - 19879
- 19633
- - 19867
- - 19634
- - 19866
+ - 19878
+ - 19635
+ - 19636
+ - 19877
+ - 19637
+ - 19876
+ - 19638
+ - 19875
+ - 19639
+ - 19874
+ - 19640
+ - 19873
type: DeviceList
- uid: 9
components:
@@ -10225,9 +10225,9 @@ entities:
parent: 2
type: Transform
- devices:
- - 873
- - 19726
- - 19963
+ - 875
+ - 19732
+ - 19970
type: DeviceList
- uid: 10
components:
@@ -10235,24 +10235,24 @@ entities:
parent: 2
type: Transform
- devices:
- - 839
- - 19794
- - 19554
+ - 841
+ - 19803
+ - 19562
+ - 15101
- 15102
- - 15103
+ - 15099
- 15100
- - 15101
- - 14763
- - 14921
- - 14966
+ - 14765
- 14920
- - 14941
- - 14943
- - 14905
- - 14891
+ - 14965
+ - 14919
- 14940
+ - 14942
- 14904
- - 15111
+ - 14890
+ - 14939
+ - 14903
+ - 15110
type: DeviceList
- uid: 11
components:
@@ -10260,19 +10260,19 @@ entities:
parent: 2
type: Transform
- devices:
- - 843
- - 19565
- - 19843
+ - 845
+ - 19573
+ - 19851
+ - 14996
+ - 14956
- 14997
- - 14957
- - 14998
- - 14967
- - 14939
- - 14959
- - 14890
- - 14963
+ - 14966
+ - 14938
+ - 14958
+ - 14889
+ - 14962
+ - 14991
- 14992
- - 14993
type: DeviceList
- uid: 12
components:
@@ -10280,10 +10280,10 @@ entities:
parent: 2
type: Transform
- devices:
- - 926
- - 19792
- - 19604
- - 14932
+ - 928
+ - 19801
+ - 19611
+ - 14931
type: DeviceList
- uid: 13
components:
@@ -10291,20 +10291,20 @@ entities:
parent: 2
type: Transform
- devices:
- - 878
- - 19914
- - 19676
- - 15036
- - 15054
- - 14954
- - 14878
- - 14990
+ - 880
+ - 19921
+ - 19682
+ - 15035
+ - 15053
+ - 14953
+ - 14877
+ - 14989
+ - 15095
- 15096
- 15097
- - 15098
- - 15033
+ - 15032
+ - 15059
- 15060
- - 15061
type: DeviceList
- uid: 14
components:
@@ -10313,20 +10313,20 @@ entities:
parent: 2
type: Transform
- devices:
- - 19598
- - 19826
- - 867
- - 14932
- - 14935
- - 14960
- - 15094
+ - 19605
+ - 19834
+ - 869
- 14931
- - 14914
- - 14945
- - 14889
- - 14916
+ - 14934
+ - 14959
+ - 15093
+ - 14930
+ - 14913
- 14944
- - 14983
+ - 14888
+ - 14915
+ - 14943
+ - 14982
type: DeviceList
- uid: 15
components:
@@ -10334,16 +10334,16 @@ entities:
parent: 2
type: Transform
- devices:
- - 898
- - 19652
- - 19890
- - 15018
+ - 900
+ - 19658
+ - 19897
+ - 15017
+ - 14875
- 14874
- - 14873
- - 14766
- - 15019
+ - 14768
+ - 15018
+ - 15128
- 15129
- - 15130
type: DeviceList
- uid: 16
components:
@@ -10351,11 +10351,11 @@ entities:
parent: 2
type: Transform
- devices:
- - 14768
- - 14767
- - 896
- - 19885
- - 15014
+ - 14770
+ - 14769
+ - 898
+ - 19892
+ - 15013
type: DeviceList
- uid: 17
components:
@@ -10363,8 +10363,8 @@ entities:
parent: 2
type: Transform
- devices:
- - 853
- - 19659
+ - 855
+ - 19665
type: DeviceList
- uid: 18
components:
@@ -10377,18 +10377,18 @@ entities:
parent: 2
type: Transform
- devices:
- - 859
- - 19983
- - 19747
- - 15159
+ - 861
+ - 19990
+ - 19753
- 15158
- - 15152
+ - 15157
- 15151
- 15150
- - 15142
+ - 15149
- 15141
- - 15155
+ - 15140
- 15154
+ - 15153
type: DeviceList
- uid: 20
components:
@@ -10396,11 +10396,11 @@ entities:
parent: 2
type: Transform
- devices:
- - 19962
- - 862
- - 19722
- - 14800
- - 14797
+ - 19969
+ - 864
+ - 19728
+ - 14802
+ - 14799
type: DeviceList
- uid: 21
components:
@@ -10408,30 +10408,30 @@ entities:
parent: 2
type: Transform
- devices:
- - 19966
- - 19562
- - 818
- - 19729
- - 19795
- - 14912
- - 14986
- - 15110
+ - 19973
+ - 19570
+ - 820
+ - 19735
+ - 19804
- 14911
- - 14971
- - 14973
- - 14740
- - 15023
+ - 14985
+ - 15109
+ - 14910
+ - 14970
+ - 14972
+ - 14742
- 15022
- 15021
- - 14978
- - 15013
- - 14950
- - 14975
- - 14897
- - 14919
- - 15001
- - 14999
- - 14842
+ - 15020
+ - 14977
+ - 15012
+ - 14949
+ - 14974
+ - 14896
+ - 14918
+ - 15000
+ - 14998
+ - 14843
type: DeviceList
- uid: 22
components:
@@ -10439,24 +10439,24 @@ entities:
parent: 2
type: Transform
- devices:
- - 19590
- - 19841
- - 840
- - 14905
- - 14943
- - 14941
+ - 19597
+ - 19849
+ - 842
+ - 14904
+ - 14942
+ - 14940
+ - 14996
+ - 14956
- 14997
- - 14957
- - 14998
- - 14963
- - 14917
- - 14883
+ - 14962
+ - 14916
- 14882
- - 14913
- - 14906
- - 14892
- - 14884
- - 14949
+ - 14881
+ - 14912
+ - 14905
+ - 14891
+ - 14883
+ - 14948
type: DeviceList
- uid: 23
components:
@@ -10464,25 +10464,25 @@ entities:
parent: 2
type: Transform
- devices:
- - 19684
- - 863
- - 19666
- - 19903
+ - 19690
+ - 865
+ - 19672
+ - 19910
+ - 15072
- 15073
- 15074
- - 15075
+ - 15101
- 15102
- - 15103
+ - 15099
- 15100
- - 15101
- - 15093
- - 15091
- 15092
- - 15035
- - 15032
- - 14970
- - 15104
- - 14750
+ - 15090
+ - 15091
+ - 15034
+ - 15031
+ - 14969
+ - 15103
+ - 14752
type: DeviceList
- uid: 24
components:
@@ -10490,18 +10490,18 @@ entities:
parent: 2
type: Transform
- devices:
- - 864
- - 19557
- - 19790
- - 14889
- - 14916
- - 14944
- - 14988
- - 14969
- - 14907
- - 14881
- - 14977
- - 14903
+ - 866
+ - 19565
+ - 19799
+ - 14888
+ - 14915
+ - 14943
+ - 14987
+ - 14968
+ - 14906
+ - 14880
+ - 14976
+ - 14902
type: DeviceList
- uid: 25
components:
@@ -10509,21 +10509,21 @@ entities:
parent: 2
type: Transform
- devices:
- - 868
- - 19842
- - 19596
- - 15123
- - 15108
+ - 870
+ - 19850
+ - 19603
+ - 15122
- 15107
- 15106
- - 14888
- - 14937
- - 14724
- - 14726
- - 14736
- - 14742
- - 14756
+ - 15105
- 14887
+ - 14936
+ - 14726
+ - 14728
+ - 14738
+ - 14744
+ - 14758
+ - 14886
type: DeviceList
- uid: 26
components:
@@ -10531,27 +10531,27 @@ entities:
parent: 2
type: Transform
- devices:
- - 816
- - 19817
- - 19582
- - 14974
- - 14979
- - 14987
- - 14985
- - 15122
+ - 818
+ - 19826
+ - 19590
+ - 14973
+ - 14978
+ - 14986
+ - 14984
+ - 15121
+ - 14925
- 14926
- - 14927
- - 14972
- - 15046
+ - 14971
- 15045
- - 15047
- - 15053
- - 14981
- - 14962
- - 14894
- - 14899
- - 15083
- - 14852
+ - 15044
+ - 15046
+ - 15052
+ - 14980
+ - 14961
+ - 14893
+ - 14898
+ - 15082
+ - 14853
type: DeviceList
- uid: 27
components:
@@ -10559,11 +10559,11 @@ entities:
parent: 2
type: Transform
- devices:
- - 19968
- - 19730
- - 874
+ - 19975
+ - 19736
+ - 876
+ - 15054
- 15055
- - 15056
type: DeviceList
- uid: 28
components:
@@ -10571,17 +10571,17 @@ entities:
parent: 2
type: Transform
- devices:
- - 876
- - 19934
- - 19694
- - 14773
- - 14774
+ - 878
+ - 19941
+ - 19700
+ - 14775
+ - 14776
+ - 15028
- 15029
- - 15030
- - 14778
- - 14777
+ - 14780
+ - 14779
+ - 15054
- 15055
- - 15056
type: DeviceList
- uid: 29
components:
@@ -10589,25 +10589,25 @@ entities:
parent: 2
type: Transform
- devices:
- - 19816
- - 19555
- - 817
- - 14928
- - 14747
- - 14956
+ - 19825
+ - 19563
+ - 819
+ - 14927
+ - 14749
+ - 14955
+ - 15040
- 15041
- - 15042
- - 14734
- - 14929
- - 15085
- - 15089
- - 15048
- - 15113
- - 14930
+ - 14736
+ - 14928
- 15084
- - 15114
+ - 15088
+ - 15047
- 15112
- - 15118
+ - 14929
+ - 15083
+ - 15113
+ - 15111
+ - 15117
type: DeviceList
- uid: 30
components:
@@ -10615,15 +10615,15 @@ entities:
parent: 2
type: Transform
- devices:
- - 14717
- - 14721
+ - 14719
+ - 14723
+ - 14724
- 14722
- - 14720
- - 14754
- - 14749
- - 19847
- - 19611
- - 879
+ - 14756
+ - 14751
+ - 19855
+ - 19618
+ - 881
type: DeviceList
- uid: 31
components:
@@ -10631,15 +10631,15 @@ entities:
parent: 2
type: Transform
- devices:
- - 855
- - 19677
- - 19918
+ - 857
+ - 19683
+ - 19925
+ - 15189
- 15190
- 15191
- - 15192
+ - 15186
- 15187
- 15188
- - 15189
type: DeviceList
- uid: 32
components:
@@ -10647,13 +10647,13 @@ entities:
parent: 2
type: Transform
- devices:
- - 15028
- - 15010
+ - 15027
- 15009
- 15008
- - 852
- - 19647
- - 19883
+ - 15007
+ - 854
+ - 19653
+ - 19890
type: DeviceList
- uid: 33
components:
@@ -10661,22 +10661,22 @@ entities:
parent: 2
type: Transform
- devices:
- - 19965
- - 19728
- - 837
+ - 19972
+ - 19734
+ - 839
+ - 15095
- 15096
- 15097
- - 15098
- - 14923
- - 14953
- - 14989
+ - 14922
- 14952
- - 14958
- - 14991
+ - 14988
+ - 14951
+ - 14957
+ - 14990
+ - 14993
- 14994
- 14995
- - 14996
- - 14739
+ - 14741
type: DeviceList
- uid: 34
components:
@@ -10684,19 +10684,19 @@ entities:
parent: 2
type: Transform
- devices:
- - 14881
- - 14977
- - 14903
- - 14980
- - 14938
- - 14925
- - 14964
- - 14942
+ - 14880
+ - 14976
+ - 14902
+ - 14979
+ - 14937
+ - 14924
+ - 14963
+ - 14941
+ - 14908
- 14909
- - 14910
- - 19809
- - 880
- - 19608
+ - 19818
+ - 882
+ - 19615
type: DeviceList
- uid: 35
components:
@@ -10705,20 +10705,20 @@ entities:
parent: 2
type: Transform
- devices:
- - 865
- - 19573
- - 19825
- - 14882
- - 14913
- - 14906
- - 14892
- - 14886
+ - 867
+ - 19581
+ - 19833
+ - 14881
+ - 14912
+ - 14905
+ - 14891
+ - 14885
+ - 14945
- 14946
- - 14947
- - 14965
- - 14988
- - 14969
- - 14907
+ - 14964
+ - 14987
+ - 14968
+ - 14906
type: DeviceList
- uid: 36
components:
@@ -10726,9 +10726,9 @@ entities:
parent: 2
type: Transform
- devices:
- - 835
- - 19835
- - 19606
+ - 837
+ - 19843
+ - 19613
type: DeviceList
- uid: 37
components:
@@ -10736,9 +10736,9 @@ entities:
parent: 2
type: Transform
- devices:
- - 835
- - 19835
- - 19606
+ - 837
+ - 19843
+ - 19613
type: DeviceList
- uid: 38
components:
@@ -10746,13 +10746,13 @@ entities:
parent: 2
type: Transform
- devices:
- - 19849
- - 19615
- - 882
- - 19839
- - 19603
- - 19570
- - 19838
+ - 19857
+ - 19622
+ - 884
+ - 19847
+ - 19610
+ - 19578
+ - 19846
type: DeviceList
- uid: 39
components:
@@ -10760,19 +10760,19 @@ entities:
parent: 2
type: Transform
- devices:
- - 19620
- - 821
- - 19855
+ - 19626
+ - 823
+ - 19862
+ - 14724
- 14722
- - 14720
- - 14942
+ - 14941
+ - 14908
- 14909
- - 14910
- - 14716
- - 14715
- - 14975
- - 14897
- - 14919
+ - 14718
+ - 14717
+ - 14974
+ - 14896
+ - 14918
type: DeviceList
- uid: 40
components:
@@ -10780,9 +10780,9 @@ entities:
parent: 2
type: Transform
- devices:
- - 19620
- - 821
- - 19855
+ - 19626
+ - 823
+ - 19862
type: DeviceList
- uid: 41
components:
@@ -10790,15 +10790,15 @@ entities:
parent: 2
type: Transform
- devices:
- - 19797
- - 845
- - 19605
- - 14967
- - 14772
- - 15111
- - 14904
- - 14940
- - 14891
+ - 19806
+ - 847
+ - 19612
+ - 14966
+ - 14774
+ - 15110
+ - 14903
+ - 14939
+ - 14890
type: DeviceList
- uid: 42
components:
@@ -10806,19 +10806,19 @@ entities:
parent: 2
type: Transform
- devices:
- - 850
- - 19639
- - 19880
- - 14960
- - 14935
- - 15094
- - 14976
+ - 852
+ - 19645
+ - 19887
+ - 14959
+ - 14934
+ - 15093
+ - 14975
+ - 15007
- 15008
- 15009
- - 15010
+ - 15163
- 15164
- - 15165
- - 15198
+ - 15197
type: DeviceList
- uid: 43
components:
@@ -10826,17 +10826,17 @@ entities:
parent: 2
type: Transform
- devices:
- - 15078
- 15077
+ - 15076
+ - 15078
- 15079
- - 15080
- - 15087
- - 14970
- - 15032
- - 15035
- - 883
- - 19717
- - 19951
+ - 15086
+ - 14969
+ - 15031
+ - 15034
+ - 885
+ - 19723
+ - 19958
type: DeviceList
- uid: 44
components:
@@ -10844,14 +10844,14 @@ entities:
parent: 2
type: Transform
- devices:
- - 884
- - 19719
- - 19960
- - 15090
- - 15086
+ - 886
+ - 19725
+ - 19967
+ - 15089
+ - 15085
+ - 15078
- 15079
- - 15080
- - 15087
+ - 15086
type: DeviceList
- uid: 45
components:
@@ -10859,9 +10859,9 @@ entities:
parent: 2
type: Transform
- devices:
- - 19957
- - 19724
- - 885
+ - 19964
+ - 19730
+ - 887
type: DeviceList
- uid: 46
components:
@@ -10869,12 +10869,12 @@ entities:
parent: 2
type: Transform
- devices:
- - 19705
- - 19946
- - 886
- - 15178
- - 15180
- - 14934
+ - 19711
+ - 19953
+ - 888
+ - 15177
+ - 15179
+ - 14933
type: DeviceList
- uid: 47
components:
@@ -10882,11 +10882,11 @@ entities:
parent: 2
type: Transform
- devices:
- - 19709
- - 887
- - 15178
- - 15180
- - 14934
+ - 19715
+ - 889
+ - 15177
+ - 15179
+ - 14933
type: DeviceList
- uid: 48
components:
@@ -10894,9 +10894,9 @@ entities:
parent: 2
type: Transform
- devices:
- - 19703
- - 888
- - 19945
+ - 19709
+ - 890
+ - 19952
type: DeviceList
- uid: 49
components:
@@ -10904,18 +10904,18 @@ entities:
parent: 2
type: Transform
- devices:
- - 19701
- - 19942
- - 890
- - 15072
+ - 19707
+ - 19949
+ - 892
- 15071
- - 15011
+ - 15070
+ - 15010
+ - 15135
- 15136
- - 15137
+ - 15072
- 15073
- 15074
- 15075
- - 15076
type: DeviceList
- uid: 50
components:
@@ -10923,16 +10923,16 @@ entities:
parent: 2
type: Transform
- devices:
- - 872
- - 19920
+ - 874
+ - 19927
+ - 15061
- 15062
- - 15063
- - 15050
- 15049
- - 15065
+ - 15048
- 15064
- - 14807
- - 15034
+ - 15063
+ - 14809
+ - 15033
type: DeviceList
- uid: 51
components:
@@ -10940,14 +10940,14 @@ entities:
parent: 2
type: Transform
- devices:
- - 894
- - 15052
+ - 896
- 15051
- - 19682
- - 14808
- - 19923
- - 15068
- - 15119
+ - 15050
+ - 19688
+ - 14810
+ - 19930
+ - 15067
+ - 15118
type: DeviceList
- uid: 52
components:
@@ -10955,13 +10955,13 @@ entities:
parent: 2
type: Transform
- devices:
- - 893
- - 19928
- - 19687
- - 14783
- - 14784
- - 15058
+ - 895
+ - 19935
+ - 19693
+ - 14785
+ - 14786
- 15057
+ - 15056
type: DeviceList
- uid: 53
components:
@@ -10969,14 +10969,14 @@ entities:
parent: 2
type: Transform
- devices:
- - 19930
- - 892
- - 19690
+ - 19937
+ - 894
+ - 19696
+ - 15056
- 15057
- - 15058
- - 15069
- - 15099
- - 14779
+ - 15068
+ - 15098
+ - 14781
type: DeviceList
- uid: 54
components:
@@ -10984,10 +10984,10 @@ entities:
parent: 2
type: Transform
- devices:
- - 891
- - 14835
- - 15059
- - 14877
+ - 893
+ - 14836
+ - 15058
+ - 14876
type: DeviceList
- uid: 55
components:
@@ -10995,9 +10995,9 @@ entities:
parent: 2
type: Transform
- devices:
- - 895
- - 19921
- - 19680
+ - 897
+ - 19928
+ - 19686
type: DeviceList
- uid: 56
components:
@@ -11005,19 +11005,19 @@ entities:
parent: 2
type: Transform
- devices:
- - 858
- - 19886
- - 19648
+ - 860
+ - 19893
+ - 19654
+ - 15013
+ - 15016
+ - 15025
- 15014
- - 15017
- - 15026
- 15015
- - 15016
- - 15020
+ - 15019
+ - 15023
- 15024
- - 15025
+ - 15126
- 15127
- - 15128
type: DeviceList
- uid: 57
components:
@@ -11025,12 +11025,12 @@ entities:
parent: 2
type: Transform
- devices:
- - 19658
- - 19895
- - 19896
- - 857
+ - 19664
+ - 19902
+ - 19903
+ - 859
+ - 15023
- 15024
- - 15025
type: DeviceList
- uid: 58
components:
@@ -11038,10 +11038,10 @@ entities:
parent: 2
type: Transform
- devices:
- - 15028
- - 19892
- - 19655
- - 909
+ - 15027
+ - 19899
+ - 19661
+ - 911
type: DeviceList
- uid: 59
components:
@@ -11049,10 +11049,10 @@ entities:
parent: 2
type: Transform
- devices:
- - 899
- - 19893
- - 19656
- - 15019
+ - 901
+ - 19900
+ - 19662
+ - 15018
type: DeviceList
- uid: 60
components:
@@ -11060,11 +11060,11 @@ entities:
parent: 2
type: Transform
- devices:
- - 903
- - 19698
- - 19941
+ - 905
+ - 19704
+ - 19948
+ - 15165
- 15166
- - 15167
type: DeviceList
- uid: 61
components:
@@ -11072,9 +11072,9 @@ entities:
parent: 2
type: Transform
- devices:
- - 19964
- - 19727
- - 902
+ - 19971
+ - 19733
+ - 904
type: DeviceList
- uid: 62
components:
@@ -11082,21 +11082,21 @@ entities:
parent: 2
type: Transform
- devices:
- - 19879
- - 19644
- - 19796
- - 19643
- - 851
- - 14757
- - 14746
- - 14727
- - 15002
- - 14888
- - 14937
- - 15006
- - 14915
- - 15165
+ - 19886
+ - 19650
+ - 19805
+ - 19649
+ - 853
+ - 14759
+ - 14748
+ - 14729
+ - 15001
+ - 14887
+ - 14936
+ - 15005
+ - 14914
- 15164
+ - 15163
type: DeviceList
- uid: 63
components:
@@ -11104,14 +11104,14 @@ entities:
parent: 2
type: Transform
- devices:
- - 19833
- - 849
- - 19576
- - 15123
- - 15108
+ - 19841
+ - 851
+ - 19584
+ - 15122
- 15107
- 15106
- - 15002
+ - 15105
+ - 15001
type: DeviceList
- uid: 64
components:
@@ -11119,18 +11119,18 @@ entities:
parent: 2
type: Transform
- devices:
- - 866
- - 19807
- - 19564
- - 14736
+ - 868
+ - 19816
+ - 19572
+ - 14738
+ - 14728
- 14726
- - 14724
- - 14931
- - 14914
- - 14945
- - 14947
- - 14965
- - 14804
+ - 14930
+ - 14913
+ - 14944
+ - 14946
+ - 14964
+ - 14806
type: DeviceList
- uid: 65
components:
@@ -11138,12 +11138,12 @@ entities:
parent: 2
type: Transform
- devices:
- - 826
- - 19822
- - 19560
- - 14936
- - 14984
- - 15126
+ - 828
+ - 19830
+ - 19568
+ - 14935
+ - 14983
+ - 15125
type: DeviceList
- uid: 66
components:
@@ -11151,12 +11151,12 @@ entities:
parent: 2
type: Transform
- devices:
- - 19823
- - 19594
- - 824
- - 15117
- - 14984
- - 14936
+ - 19831
+ - 19601
+ - 826
+ - 15116
+ - 14983
+ - 14935
type: DeviceList
- uid: 67
components:
@@ -11164,9 +11164,9 @@ entities:
parent: 2
type: Transform
- devices:
- - 856
- - 19912
- - 19673
+ - 858
+ - 19919
+ - 19679
type: DeviceList
- uid: 68
components:
@@ -11174,10 +11174,10 @@ entities:
parent: 2
type: Transform
- devices:
- - 19938
- - 19697
- - 905
- - 15070
+ - 19945
+ - 19703
+ - 907
+ - 15069
type: DeviceList
- uid: 69
components:
@@ -11190,11 +11190,11 @@ entities:
parent: 2
type: Transform
- devices:
- - 908
- - 19764
- - 20015
- - 15197
+ - 910
+ - 19770
+ - 20022
- 15196
+ - 15195
type: DeviceList
- uid: 71
components:
@@ -11207,26 +11207,26 @@ entities:
parent: 2
type: Transform
- devices:
- - 19974
- - 910
- - 19737
+ - 19981
+ - 912
+ - 19743
+ - 14830
+ - 14827
- 14829
- - 14826
- 14828
- - 14827
+ - 15135
- 15136
- - 15137
+ - 15143
- 15144
- 15145
- - 15146
- - 15152
- 15151
- 15150
- - 14825
+ - 15149
+ - 14826
+ - 15132
- 15133
- 15134
- - 15135
- - 14805
+ - 14807
type: DeviceList
- uid: 73
components:
@@ -11234,18 +11234,18 @@ entities:
parent: 2
type: Transform
- devices:
- - 911
- - 19742
- - 19982
+ - 913
+ - 19748
+ - 19989
+ - 15143
- 15144
- 15145
- - 15146
+ - 15138
- 15139
- - 15140
- - 15160
- - 15148
- - 15149
+ - 15159
- 15147
+ - 15148
+ - 15146
type: DeviceList
- uid: 74
components:
@@ -11254,30 +11254,30 @@ entities:
parent: 2
type: Transform
- ShutdownSubscribers:
- - 19987
- - 19743
- - 860
+ - 19994
+ - 19749
+ - 862
+ - 15155
- 15156
+ - 15160
- 15157
- - 15161
- 15158
- - 15159
- - 15196
- - 15153
- - 15131
+ - 15195
+ - 15152
+ - 15130
type: DeviceNetwork
- devices:
- - 19987
- - 19743
- - 860
+ - 19994
+ - 19749
+ - 862
+ - 15155
- 15156
+ - 15160
- 15157
- - 15161
- 15158
- - 15159
- - 15196
- - 15153
- - 15131
+ - 15195
+ - 15152
+ - 15130
type: DeviceList
- uid: 75
components:
@@ -11285,15 +11285,15 @@ entities:
parent: 2
type: Transform
- devices:
- - 861
- - 19748
- - 19988
- - 15149
+ - 863
+ - 19754
+ - 19995
- 15148
- 15147
- - 15162
+ - 15146
+ - 15161
+ - 15155
- 15156
- - 15157
type: DeviceList
- uid: 76
components:
@@ -11301,9 +11301,9 @@ entities:
parent: 2
type: Transform
- devices:
- - 19755
- - 19995
- - 913
+ - 19761
+ - 20002
+ - 915
type: DeviceList
- uid: 77
components:
@@ -11311,25 +11311,25 @@ entities:
parent: 2
type: Transform
- devices:
- - 813
- - 19819
- - 19584
- - 14730
- - 14729
- - 14728
- - 14753
- - 14731
+ - 815
+ - 19827
+ - 19591
- 14732
+ - 14731
+ - 14730
+ - 14755
+ - 14733
+ - 14734
+ - 15080
- 15081
- - 15082
- - 15047
- - 15045
- 15046
- - 14927
+ - 15044
+ - 15045
- 14926
- - 14972
- - 14818
- - 14852
+ - 14925
+ - 14971
+ - 14819
+ - 14853
type: DeviceList
- uid: 78
components:
@@ -11337,13 +11337,13 @@ entities:
parent: 2
type: Transform
- devices:
- - 19851
- - 823
- - 19616
- - 15125
- - 15117
- - 14879
- - 14820
+ - 19859
+ - 825
+ - 19623
+ - 15124
+ - 15116
+ - 14878
+ - 14821
type: DeviceList
- uid: 79
components:
@@ -11351,20 +11351,20 @@ entities:
parent: 2
type: Transform
- ShutdownSubscribers:
+ - 15209
- 15210
- - 15211
- - 15213
- - 19782
- - 20025
- - 936
+ - 15212
+ - 19788
+ - 20032
+ - 938
type: DeviceNetwork
- devices:
+ - 15209
- 15210
- - 15211
- - 15213
- - 19782
- - 20025
- - 936
+ - 15212
+ - 19788
+ - 20032
+ - 938
type: DeviceList
- uid: 80
components:
@@ -11372,11 +11372,11 @@ entities:
parent: 2
type: Transform
- devices:
- - 19845
- - 881
- - 19607
- - 14980
- - 14760
+ - 19853
+ - 883
+ - 19614
+ - 14979
+ - 14762
type: DeviceList
- uid: 81
components:
@@ -11384,14 +11384,14 @@ entities:
parent: 2
type: Transform
- devices:
- - 19756
- - 19996
- - 900
- - 14837
+ - 19762
+ - 20003
+ - 902
- 14838
- - 917
- - 14769
- - 14836
+ - 14839
+ - 919
+ - 14771
+ - 14837
type: DeviceList
- uid: 82
components:
@@ -11399,12 +11399,12 @@ entities:
parent: 2
type: Transform
- devices:
- - 14839
- 14840
+ - 14841
+ - 15169
- 15170
- - 15171
- - 916
- - 19998
+ - 918
+ - 20005
type: DeviceList
- uid: 83
components:
@@ -11412,13 +11412,13 @@ entities:
parent: 2
type: Transform
- devices:
- - 19759
- - 901
+ - 19765
+ - 903
+ - 14875
- 14874
- - 14873
- - 14766
+ - 14768
+ - 15171
- 15172
- - 15173
type: DeviceList
- uid: 84
components:
@@ -11426,16 +11426,16 @@ entities:
parent: 2
type: Transform
- devices:
- - 15177
- - 14923
- - 14953
- - 14989
- - 14961
- - 14880
- - 14955
- - 19793
- - 19561
- - 836
+ - 15176
+ - 14922
+ - 14952
+ - 14988
+ - 14960
+ - 14879
+ - 14954
+ - 19802
+ - 19569
+ - 838
type: DeviceList
- uid: 85
components:
@@ -11443,15 +11443,15 @@ entities:
parent: 2
type: Transform
- devices:
- - 19905
- - 870
- - 19668
- - 15109
- - 14918
- - 14922
+ - 19912
+ - 872
+ - 19674
+ - 15108
+ - 14917
+ - 14921
+ - 15061
- 15062
- - 15063
- - 14806
+ - 14808
type: DeviceList
- uid: 86
components:
@@ -11459,21 +11459,21 @@ entities:
parent: 2
type: Transform
- devices:
- - 871
- - 19907
- - 19670
- - 14922
- - 14918
- - 15093
- - 15091
+ - 873
+ - 19914
+ - 19676
+ - 14921
+ - 14917
- 15092
- - 15031
+ - 15090
+ - 15091
+ - 15030
+ - 15059
+ - 15032
- 15060
- - 15033
- - 15061
+ - 15173
- 15174
- - 15175
- - 14841
+ - 14842
type: DeviceList
- uid: 87
components:
@@ -11481,15 +11481,15 @@ entities:
parent: 2
type: Transform
- devices:
- - 20013
- - 924
- - 19773
+ - 20020
+ - 926
+ - 19779
+ - 15186
- 15187
- 15188
- - 15189
- - 15186
- 15185
- 15184
+ - 15183
type: DeviceList
- uid: 88
components:
@@ -11497,10 +11497,10 @@ entities:
parent: 2
type: Transform
- devices:
- - 15183
- - 19774
- - 20012
- - 925
+ - 15182
+ - 19780
+ - 20019
+ - 927
type: DeviceList
- uid: 89
components:
@@ -11509,13 +11509,13 @@ entities:
parent: 2
type: Transform
- devices:
- - 19771
- - 907
- - 19916
- - 15182
+ - 19777
+ - 909
+ - 19923
+ - 15181
+ - 15183
- 15184
- 15185
- - 15186
type: DeviceList
- uid: 90
components:
@@ -11524,12 +11524,12 @@ entities:
parent: 2
type: Transform
- devices:
- - 914
- - 20014
- - 19775
+ - 916
+ - 20021
+ - 19781
+ - 15192
- 15193
- 15194
- - 15195
type: DeviceList
- uid: 91
components:
@@ -11538,12 +11538,12 @@ entities:
parent: 2
type: Transform
- devices:
- - 811
- - 15003
- - 15198
- - 15105
- - 19777
- - 20017
+ - 813
+ - 15002
+ - 15197
+ - 15104
+ - 19783
+ - 20024
type: DeviceList
- uid: 92
components:
@@ -11552,23 +11552,23 @@ entities:
parent: 2
type: Transform
- devices:
- - 15006
- - 14915
- - 19882
- - 19643
- - 851
- - 19796
- - 19644
- - 19879
- - 15105
+ - 15005
+ - 14914
+ - 19889
+ - 19649
+ - 853
+ - 19805
+ - 19650
+ - 19886
+ - 15104
+ - 15163
- 15164
- - 15165
- - 14888
- - 14937
- - 15002
- - 14757
- - 14746
- - 14727
+ - 14887
+ - 14936
+ - 15001
+ - 14759
+ - 14748
+ - 14729
type: DeviceList
- uid: 93
components:
@@ -11576,12 +11576,10 @@ entities:
parent: 2
type: Transform
- devices:
- - 831
- - 15083
+ - 833
- 15082
- 15081
- - 19818
- - 19583
+ - 15080
type: DeviceList
- uid: 94
components:
@@ -11590,11 +11588,11 @@ entities:
parent: 2
type: Transform
- devices:
- - 20019
- - 19778
- - 928
+ - 20026
+ - 19784
+ - 930
+ - 15199
- 15200
- - 15201
type: DeviceList
- uid: 95
components:
@@ -11602,22 +11600,22 @@ entities:
parent: 2
type: Transform
- ShutdownSubscribers:
- - 929
- - 20021
- - 19780
+ - 931
+ - 20028
+ - 19786
+ - 14855
+ - 14774
+ - 14801
- 14854
- - 14772
- - 14799
- - 14853
type: DeviceNetwork
- devices:
- - 929
- - 20021
- - 19780
+ - 931
+ - 20028
+ - 19786
+ - 14855
+ - 14774
+ - 14801
- 14854
- - 14772
- - 14799
- - 14853
type: DeviceList
- uid: 96
components:
@@ -11625,17 +11623,17 @@ entities:
parent: 2
type: Transform
- ShutdownSubscribers:
- - 14855
- - 14859
+ - 14856
+ - 14860
type: DeviceNetwork
- devices:
- - 930
- - 19552
- - 19787
+ - 932
+ - 19560
+ - 19796
+ - 15201
- 15202
- - 15203
- - 14855
- - 14859
+ - 14856
+ - 14860
type: DeviceList
- uid: 97
components:
@@ -11644,12 +11642,12 @@ entities:
parent: 2
type: Transform
- ShutdownSubscribers:
- - 20022
- - 931
+ - 20029
+ - 933
type: DeviceNetwork
- devices:
- - 20022
- - 931
+ - 20029
+ - 933
type: DeviceList
- uid: 98
components:
@@ -11658,12 +11656,12 @@ entities:
parent: 2
type: Transform
- ShutdownSubscribers:
- - 932
- - 19937
+ - 934
+ - 19944
type: DeviceNetwork
- devices:
- - 932
- - 19937
+ - 934
+ - 19944
type: DeviceList
- uid: 99
components:
@@ -11671,20 +11669,20 @@ entities:
parent: 2
type: Transform
- ShutdownSubscribers:
- - 934
- - 19785
- - 19550
- - 15204
+ - 936
+ - 19794
+ - 19558
+ - 15203
+ - 15205
- 15206
- - 15207
type: DeviceNetwork
- devices:
- - 934
- - 19785
- - 19550
- - 15204
+ - 936
+ - 19794
+ - 19558
+ - 15203
+ - 15205
- 15206
- - 15207
type: DeviceList
- uid: 100
components:
@@ -11693,18 +11691,18 @@ entities:
parent: 2
type: Transform
- ShutdownSubscribers:
- - 933
- - 20023
- - 19549
- - 15206
+ - 935
+ - 20030
+ - 19557
- 15205
+ - 15204
type: DeviceNetwork
- devices:
- - 933
- - 20023
- - 19549
- - 15206
+ - 935
+ - 20030
+ - 19557
- 15205
+ - 15204
type: DeviceList
- uid: 101
components:
@@ -11712,102 +11710,95 @@ entities:
parent: 2
type: Transform
- ShutdownSubscribers:
- - 935
- - 19781
- - 20024
+ - 937
+ - 19787
+ - 20031
+ - 15207
- 15208
- - 15209
type: DeviceNetwork
- devices:
- - 935
- - 19781
- - 20024
+ - 937
+ - 19787
+ - 20031
+ - 15207
- 15208
- - 15209
type: DeviceList
-- proto: AirAlarmElectronics
- entities:
- - uid: 102
- components:
- - pos: -8.750197,39.61815
- parent: 2
- type: Transform
- proto: AirCanister
entities:
- - uid: 103
+ - uid: 102
components:
- pos: -34.5,-57.5
parent: 2
type: Transform
- - uid: 104
+ - uid: 103
components:
- pos: -29.5,-48.5
parent: 2
type: Transform
- - uid: 105
+ - uid: 104
components:
- pos: 60.5,29.5
parent: 2
type: Transform
- - uid: 106
+ - uid: 105
components:
- pos: 45.5,-53.5
parent: 2
type: Transform
- - uid: 107
+ - uid: 106
components:
- pos: -15.5,-10.5
parent: 2
type: Transform
- - uid: 108
+ - uid: 107
components:
- pos: 71.5,38.5
parent: 2
type: Transform
- - uid: 109
+ - uid: 108
components:
- pos: -42.5,37.5
parent: 2
type: Transform
- - uid: 110
+ - uid: 109
components:
- pos: 51.5,-34.5
parent: 2
type: Transform
- - uid: 111
+ - uid: 110
components:
- pos: 46.5,-53.5
parent: 2
type: Transform
- proto: Airlock
entities:
- - uid: 112
+ - uid: 111
components:
- rot: 3.141592653589793 rad
pos: -44.5,11.5
parent: 2
type: Transform
- links:
- - 24129
+ - 24150
type: DeviceLinkSink
- - uid: 113
+ - uid: 112
components:
- pos: -51.5,12.5
parent: 2
type: Transform
- links:
- - 24127
+ - 24148
type: DeviceLinkSink
- - uid: 114
+ - uid: 113
components:
- rot: 3.141592653589793 rad
pos: -52.5,9.5
parent: 2
type: Transform
- links:
- - 24128
+ - 24149
type: DeviceLinkSink
- - uid: 115
+ - uid: 114
components:
- rot: -1.5707963267948966 rad
pos: -21.5,30.5
@@ -11815,27 +11806,27 @@ entities:
type: Transform
- invokeCounter: 1
links:
- - 24131
+ - 24152
type: DeviceLinkSink
- - uid: 116
+ - uid: 115
components:
- rot: -1.5707963267948966 rad
pos: -17.5,34.5
parent: 2
type: Transform
- links:
- - 24132
+ - 24153
type: DeviceLinkSink
- - uid: 117
+ - uid: 116
components:
- rot: -1.5707963267948966 rad
pos: -13.5,34.5
parent: 2
type: Transform
- links:
- - 24134
+ - 24155
type: DeviceLinkSink
- - uid: 118
+ - uid: 117
components:
- rot: -1.5707963267948966 rad
pos: -29.5,-1.5
@@ -11843,7 +11834,7 @@ entities:
type: Transform
- proto: AirlockArmoryGlassLocked
entities:
- - uid: 119
+ - uid: 118
components:
- name: secway garage
type: MetaData
@@ -11851,7 +11842,7 @@ entities:
pos: 11.5,18.5
parent: 2
type: Transform
- - uid: 120
+ - uid: 119
components:
- name: warden office
type: MetaData
@@ -11859,7 +11850,7 @@ entities:
pos: 27.5,21.5
parent: 2
type: Transform
- - uid: 121
+ - uid: 120
components:
- name: secway garage
type: MetaData
@@ -11867,7 +11858,7 @@ entities:
pos: 13.5,22.5
parent: 2
type: Transform
- - uid: 122
+ - uid: 121
components:
- name: wardens office
type: MetaData
@@ -11875,19 +11866,19 @@ entities:
pos: 22.5,19.5
parent: 2
type: Transform
- - uid: 123
+ - uid: 122
components:
- pos: 46.5,15.5
parent: 2
type: Transform
- - uid: 124
+ - uid: 123
components:
- pos: 46.5,14.5
parent: 2
type: Transform
- proto: AirlockArmoryLocked
entities:
- - uid: 125
+ - uid: 124
components:
- name: wardens office
type: MetaData
@@ -11897,61 +11888,61 @@ entities:
type: Transform
- proto: AirlockAtmosphericsGlassLocked
entities:
- - uid: 126
+ - uid: 125
components:
- name: atmos
type: MetaData
- pos: -21.5,-32.5
parent: 2
type: Transform
- - uid: 127
+ - uid: 126
components:
- pos: -45.5,-40.5
parent: 2
type: Transform
- - uid: 128
+ - uid: 127
components:
- rot: -1.5707963267948966 rad
pos: -33.5,-40.5
parent: 2
type: Transform
- - uid: 129
+ - uid: 128
components:
- rot: -1.5707963267948966 rad
pos: -33.5,-41.5
parent: 2
type: Transform
- - uid: 130
+ - uid: 129
components:
- pos: -34.5,-33.5
parent: 2
type: Transform
- - uid: 131
+ - uid: 130
components:
- pos: -34.5,-34.5
parent: 2
type: Transform
- - uid: 132
+ - uid: 131
components:
- pos: -52.5,-58.5
parent: 2
type: Transform
- - uid: 133
+ - uid: 132
components:
- pos: -47.5,-39.5
parent: 2
type: Transform
- - uid: 134
+ - uid: 133
components:
- pos: -43.5,-37.5
parent: 2
type: Transform
- - uid: 135
+ - uid: 134
components:
- pos: -47.5,-40.5
parent: 2
type: Transform
- - uid: 136
+ - uid: 135
components:
- rot: -1.5707963267948966 rad
pos: -45.5,-39.5
@@ -11959,65 +11950,65 @@ entities:
type: Transform
- proto: AirlockAtmosphericsLocked
entities:
- - uid: 137
+ - uid: 136
components:
- rot: 1.5707963267948966 rad
pos: -29.5,-34.5
parent: 2
type: Transform
- - uid: 138
+ - uid: 137
components:
- rot: 1.5707963267948966 rad
pos: -29.5,-33.5
parent: 2
type: Transform
- - uid: 139
+ - uid: 138
components:
- pos: -31.5,-36.5
parent: 2
type: Transform
- - uid: 140
+ - uid: 139
components:
- pos: -32.5,-36.5
parent: 2
type: Transform
- - uid: 141
+ - uid: 140
components:
- name: atmos
type: MetaData
- pos: -31.5,-30.5
parent: 2
type: Transform
- - uid: 142
+ - uid: 141
components:
- name: atmos
type: MetaData
- pos: -32.5,-30.5
parent: 2
type: Transform
- - uid: 143
+ - uid: 142
components:
- pos: -26.5,-33.5
parent: 2
type: Transform
- - uid: 144
+ - uid: 143
components:
- pos: -26.5,-34.5
parent: 2
type: Transform
- - uid: 145
+ - uid: 144
components:
- rot: -1.5707963267948966 rad
pos: 5.5,-74.5
parent: 2
type: Transform
- - uid: 146
+ - uid: 145
components:
- rot: 1.5707963267948966 rad
pos: -51.5,-37.5
parent: 2
type: Transform
- - uid: 147
+ - uid: 146
components:
- rot: 1.5707963267948966 rad
pos: -51.5,-36.5
@@ -12025,7 +12016,7 @@ entities:
type: Transform
- proto: AirlockBarLocked
entities:
- - uid: 148
+ - uid: 147
components:
- name: bartender quarters
type: MetaData
@@ -12033,7 +12024,7 @@ entities:
pos: 19.5,14.5
parent: 2
type: Transform
- - uid: 149
+ - uid: 148
components:
- name: bartender quarters
type: MetaData
@@ -12043,82 +12034,82 @@ entities:
type: Transform
- proto: AirlockBrigGlassLocked
entities:
- - uid: 150
+ - uid: 149
components:
- name: interrogation
type: MetaData
- pos: 16.5,18.5
parent: 2
type: Transform
- - uid: 151
+ - uid: 150
components:
- pos: 19.5,17.5
parent: 2
type: Transform
- - uid: 152
+ - uid: 151
components:
- pos: 3.5,-58.5
parent: 2
type: Transform
- - uid: 153
+ - uid: 152
components:
- pos: 19.5,16.5
parent: 2
type: Transform
- - uid: 154
+ - uid: 153
components:
- name: brig
type: MetaData
- pos: 42.5,3.5
parent: 2
type: Transform
- - uid: 155
+ - uid: 154
components:
- name: brig
type: MetaData
- pos: 41.5,3.5
parent: 2
type: Transform
- - uid: 156
+ - uid: 155
components:
- pos: 40.5,-4.5
parent: 2
type: Transform
- - uid: 157
+ - uid: 156
components:
- pos: 53.5,10.5
parent: 2
type: Transform
- - uid: 158
+ - uid: 157
components:
- pos: 40.5,-1.5
parent: 2
type: Transform
- - uid: 159
+ - uid: 158
components:
- name: suspect treatment
type: MetaData
- pos: 3.5,-55.5
parent: 2
type: Transform
- - uid: 160
+ - uid: 159
components:
- pos: 39.5,11.5
parent: 2
type: Transform
- - uid: 161
+ - uid: 160
components:
- pos: 27.5,17.5
parent: 2
type: Transform
- - uid: 162
+ - uid: 161
components:
- pos: 27.5,18.5
parent: 2
type: Transform
- proto: AirlockBrigLocked
entities:
- - uid: 163
+ - uid: 162
components:
- name: lawyers office
type: MetaData
@@ -12127,7 +12118,7 @@ entities:
type: Transform
- proto: AirlockCaptainLocked
entities:
- - uid: 164
+ - uid: 163
components:
- name: captains quarters
type: MetaData
@@ -12136,17 +12127,17 @@ entities:
type: Transform
- proto: AirlockCargoGlassLocked
entities:
- - uid: 165
+ - uid: 164
components:
- pos: -26.5,18.5
parent: 2
type: Transform
- - uid: 166
+ - uid: 165
components:
- pos: -29.5,22.5
parent: 2
type: Transform
- - uid: 167
+ - uid: 166
components:
- name: cargo access
type: MetaData
@@ -12154,21 +12145,21 @@ entities:
pos: -26.5,19.5
parent: 2
type: Transform
- - uid: 168
+ - uid: 167
components:
- name: cargo dock
type: MetaData
- pos: -35.5,22.5
parent: 2
type: Transform
- - uid: 169
+ - uid: 168
components:
- name: cargo dock
type: MetaData
- pos: -35.5,21.5
parent: 2
type: Transform
- - uid: 170
+ - uid: 169
components:
- rot: -1.5707963267948966 rad
pos: -43.5,14.5
@@ -12176,30 +12167,38 @@ entities:
type: Transform
- proto: AirlockCargoLocked
entities:
- - uid: 171
+ - uid: 170
components:
- pos: -45.5,17.5
parent: 2
type: Transform
- - uid: 172
+ - uid: 171
components:
- pos: -45.5,13.5
parent: 2
type: Transform
- proto: AirlockChapelLocked
entities:
- - uid: 173
+ - uid: 172
components:
- rot: -1.5707963267948966 rad
pos: -32.5,14.5
parent: 2
type: Transform
- - uid: 174
+ - uid: 173
components:
- rot: -1.5707963267948966 rad
pos: -30.5,11.5
parent: 2
type: Transform
+- proto: AirlockChemistryGlassLocked
+ entities:
+ - uid: 174
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 8.5,-47.5
+ parent: 2
+ type: Transform
- proto: AirlockChemistryLocked
entities:
- uid: 175
@@ -12573,13 +12572,6 @@ entities:
parent: 2
type: Transform
- uid: 236
- components:
- - name: medical substation
- type: MetaData
- - pos: 9.5,-44.5
- parent: 2
- type: Transform
- - uid: 237
components:
- name: detective substation
type: MetaData
@@ -12587,38 +12579,38 @@ entities:
pos: 12.5,-15.5
parent: 2
type: Transform
- - uid: 238
+ - uid: 237
components:
- pos: -6.5,-19.5
parent: 2
type: Transform
- - uid: 239
+ - uid: 238
components:
- name: virology substation
type: MetaData
- pos: -11.5,-70.5
parent: 2
type: Transform
- - uid: 240
+ - uid: 239
components:
- pos: 30.5,-3.5
parent: 2
type: Transform
- - uid: 241
+ - uid: 240
components:
- name: gravity generator
type: MetaData
- pos: -19.5,-3.5
parent: 2
type: Transform
- - uid: 242
+ - uid: 241
components:
- name: south solar
type: MetaData
- pos: -1.5,-76.5
parent: 2
type: Transform
- - uid: 243
+ - uid: 242
components:
- name: medical substation
type: MetaData
@@ -12626,31 +12618,31 @@ entities:
pos: 13.5,-57.5
parent: 2
type: Transform
- - uid: 244
+ - uid: 243
components:
- name: substation
type: MetaData
- pos: 32.5,23.5
parent: 2
type: Transform
- - uid: 245
+ - uid: 244
components:
- pos: 46.5,-0.5
parent: 2
type: Transform
- - uid: 246
+ - uid: 245
components:
- pos: 63.5,27.5
parent: 2
type: Transform
- - uid: 247
+ - uid: 246
components:
- name: evac substation
type: MetaData
- pos: 47.5,-6.5
parent: 2
type: Transform
- - uid: 248
+ - uid: 247
components:
- name: science substation
type: MetaData
@@ -12658,42 +12650,42 @@ entities:
pos: 38.5,-44.5
parent: 2
type: Transform
- - uid: 249
+ - uid: 248
components:
- name: engineering substation
type: MetaData
- pos: -27.5,-22.5
parent: 2
type: Transform
- - uid: 250
+ - uid: 249
components:
- name: engineering substation
type: MetaData
- pos: -30.5,-23.5
parent: 2
type: Transform
- - uid: 251
+ - uid: 250
components:
- name: arrivals substation
type: MetaData
- pos: 42.5,-59.5
parent: 2
type: Transform
- - uid: 252
+ - uid: 251
components:
- name: storage
type: MetaData
- pos: -41.5,-14.5
parent: 2
type: Transform
- - uid: 253
+ - uid: 252
components:
- name: ame
type: MetaData
- pos: -43.5,-10.5
parent: 2
type: Transform
- - uid: 254
+ - uid: 253
components:
- name: ame
type: MetaData
@@ -12701,54 +12693,54 @@ entities:
pos: -43.5,-11.5
parent: 2
type: Transform
- - uid: 255
+ - uid: 254
components:
- name: singularity
type: MetaData
- pos: -49.5,-6.5
parent: 2
type: Transform
- - uid: 256
+ - uid: 255
components:
- name: singularity
type: MetaData
- pos: -49.5,-5.5
parent: 2
type: Transform
- - uid: 257
+ - uid: 256
components:
- name: atmos substation
type: MetaData
- pos: -27.5,-35.5
parent: 2
type: Transform
- - uid: 258
+ - uid: 257
components:
- pos: -72.5,-27.5
parent: 2
type: Transform
- - uid: 259
+ - uid: 258
components:
- name: singularity substation
type: MetaData
- pos: -52.5,-8.5
parent: 2
type: Transform
- - uid: 260
+ - uid: 259
components:
- name: maints bar substation
type: MetaData
- pos: -29.5,-55.5
parent: 2
type: Transform
- - uid: 261
+ - uid: 260
components:
- name: cargo substation
type: MetaData
- pos: -21.5,15.5
parent: 2
type: Transform
- - uid: 262
+ - uid: 261
components:
- name: substation
type: MetaData
@@ -12756,7 +12748,7 @@ entities:
pos: 14.5,-59.5
parent: 2
type: Transform
- - uid: 263
+ - uid: 262
components:
- name: chapel substation
type: MetaData
@@ -12764,7 +12756,7 @@ entities:
pos: -35.5,-2.5
parent: 2
type: Transform
- - uid: 264
+ - uid: 263
components:
- name: maints substation
type: MetaData
@@ -12772,33 +12764,33 @@ entities:
pos: 49.5,28.5
parent: 2
type: Transform
- - uid: 265
+ - uid: 264
components:
- name: north maints substation
type: MetaData
- pos: -8.5,33.5
parent: 2
type: Transform
- - uid: 266
+ - uid: 265
components:
- name: ai substation
type: MetaData
- pos: -10.5,60.5
parent: 2
type: Transform
- - uid: 267
+ - uid: 266
components:
- name: robotics substation
type: MetaData
- pos: 68.5,-60.5
parent: 2
type: Transform
- - uid: 268
+ - uid: 267
components:
- pos: -21.5,0.5
parent: 2
type: Transform
- - uid: 269
+ - uid: 268
components:
- name: telecoms substation
type: MetaData
@@ -12806,12 +12798,12 @@ entities:
pos: 6.5,-21.5
parent: 2
type: Transform
- - uid: 270
+ - uid: 269
components:
- pos: -41.5,-19.5
parent: 2
type: Transform
- - uid: 271
+ - uid: 270
components:
- name: teg substation
type: MetaData
@@ -12819,439 +12811,455 @@ entities:
pos: -71.5,-35.5
parent: 2
type: Transform
- - uid: 272
+ - uid: 271
components:
- pos: -49.5,-16.5
parent: 2
type: Transform
- - uid: 273
+ - uid: 272
components:
- pos: -49.5,-17.5
parent: 2
type: Transform
+ - uid: 273
+ components:
+ - name: substation
+ type: MetaData
+ - pos: 15.5,-44.5
+ parent: 2
+ type: Transform
+ - uid: 274
+ components:
+ - name: substation
+ type: MetaData
+ - pos: 14.5,-48.5
+ parent: 2
+ type: Transform
- proto: AirlockExternalGlass
entities:
- - uid: 274
+ - uid: 275
components:
- pos: -1.5,-80.5
parent: 2
type: Transform
- - uid: 275
+ - uid: 276
components:
- pos: -57.5,-71.5
parent: 2
type: Transform
- - uid: 276
+ - uid: 277
components:
- rot: 1.5707963267948966 rad
pos: 66.5,-5.5
parent: 2
type: Transform
- - uid: 277
+ - uid: 278
components:
- pos: 52.5,-14.5
parent: 2
type: Transform
- - uid: 278
+ - uid: 279
components:
- pos: 76.5,-34.5
parent: 2
type: Transform
- - uid: 279
+ - uid: 280
components:
- rot: -1.5707963267948966 rad
pos: 32.5,-89.5
parent: 2
type: Transform
- - uid: 280
+ - uid: 281
components:
- rot: -1.5707963267948966 rad
pos: 30.5,-93.5
parent: 2
type: Transform
- - uid: 281
+ - uid: 282
components:
- pos: -57.5,-81.5
parent: 2
type: Transform
- - uid: 282
+ - uid: 283
components:
- pos: -57.5,-79.5
parent: 2
type: Transform
- - uid: 283
+ - uid: 284
components:
- pos: -57.5,-73.5
parent: 2
type: Transform
- - uid: 284
+ - uid: 285
components:
- rot: 1.5707963267948966 rad
pos: 66.5,-3.5
parent: 2
type: Transform
- - uid: 285
+ - uid: 286
components:
- rot: 1.5707963267948966 rad
pos: 66.5,-11.5
parent: 2
type: Transform
- - uid: 286
+ - uid: 287
components:
- rot: 1.5707963267948966 rad
pos: 66.5,-13.5
parent: 2
type: Transform
- - uid: 287
+ - uid: 288
components:
- pos: 27.5,45.5
parent: 2
type: Transform
- - uid: 288
+ - uid: 289
components:
- pos: 21.5,45.5
parent: 2
type: Transform
- - uid: 289
+ - uid: 290
components:
- rot: 3.141592653589793 rad
pos: -17.5,68.5
parent: 2
type: Transform
- - uid: 290
+ - uid: 291
components:
- pos: 16.5,41.5
parent: 2
type: Transform
- - uid: 291
+ - uid: 292
components:
- pos: -7.5,-94.5
parent: 2
type: Transform
- - uid: 292
+ - uid: 293
components:
- pos: -7.5,-89.5
parent: 2
type: Transform
- - uid: 293
+ - uid: 294
components:
- pos: 67.5,-14.5
parent: 2
type: Transform
- - uid: 294
+ - uid: 295
components:
- pos: 76.5,-36.5
parent: 2
type: Transform
- - uid: 295
+ - uid: 296
components:
- pos: 76.5,-37.5
parent: 2
type: Transform
- - uid: 296
+ - uid: 297
components:
- pos: 76.5,-33.5
parent: 2
type: Transform
- - uid: 297
+ - uid: 298
components:
- rot: -1.5707963267948966 rad
pos: 32.5,-82.5
parent: 2
type: Transform
- - uid: 298
+ - uid: 299
components:
- pos: 6.5,-84.5
parent: 2
type: Transform
- - uid: 299
+ - uid: 300
components:
- pos: 48.5,-93.5
parent: 2
type: Transform
- - uid: 300
+ - uid: 301
components:
- rot: 1.5707963267948966 rad
pos: 46.5,-82.5
parent: 2
type: Transform
- - uid: 301
+ - uid: 302
components:
- rot: 1.5707963267948966 rad
pos: 46.5,-89.5
parent: 2
type: Transform
- - uid: 302
+ - uid: 303
components:
- rot: -1.5707963267948966 rad
pos: 67.5,-16.5
parent: 2
type: Transform
- - uid: 303
+ - uid: 304
components:
- rot: 3.141592653589793 rad
pos: -37.5,41.5
parent: 2
type: Transform
- - uid: 304
+ - uid: 305
components:
- rot: 3.141592653589793 rad
pos: 6.5,-86.5
parent: 2
type: Transform
- - uid: 305
+ - uid: 306
components:
- pos: 50.5,-82.5
parent: 2
type: Transform
- - uid: 306
+ - uid: 307
components:
- pos: 50.5,-89.5
parent: 2
type: Transform
- - uid: 307
+ - uid: 308
components:
- rot: 1.5707963267948966 rad
pos: 33.5,-90.5
parent: 2
type: Transform
- - uid: 308
+ - uid: 309
components:
- rot: 3.141592653589793 rad
pos: 45.5,-81.5
parent: 2
type: Transform
- - uid: 309
+ - uid: 310
components:
- rot: 3.141592653589793 rad
pos: 33.5,-81.5
parent: 2
type: Transform
- - uid: 310
+ - uid: 311
components:
- rot: 1.5707963267948966 rad
pos: 45.5,-90.5
parent: 2
type: Transform
- - uid: 311
+ - uid: 312
components:
- rot: 3.141592653589793 rad
pos: -37.5,43.5
parent: 2
type: Transform
- - uid: 312
+ - uid: 313
components:
- rot: 3.141592653589793 rad
pos: -58.5,-54.5
parent: 2
type: Transform
- - uid: 313
+ - uid: 314
components:
- rot: 3.141592653589793 rad
pos: -60.5,-54.5
parent: 2
type: Transform
-- proto: AirlockExternalGlassCargoLocked
- entities:
- - uid: 314
- components:
- - pos: -52.5,33.5
- parent: 2
- type: Transform
- uid: 315
components:
- - pos: -49.5,33.5
+ - pos: -55.5,-1.5
parent: 2
type: Transform
- uid: 316
components:
- - pos: -52.5,31.5
+ - pos: -57.5,-1.5
parent: 2
type: Transform
- uid: 317
components:
- - pos: -49.5,31.5
+ - rot: 3.141592653589793 rad
+ pos: 68.5,-69.5
parent: 2
type: Transform
- uid: 318
components:
- - pos: -51.5,43.5
+ - rot: 3.141592653589793 rad
+ pos: 68.5,-67.5
parent: 2
type: Transform
+- proto: AirlockExternalGlassCargoLocked
+ entities:
- uid: 319
components:
- - pos: -51.5,42.5
+ - pos: -52.5,33.5
parent: 2
type: Transform
- uid: 320
components:
- - pos: -49.5,20.5
+ - pos: -49.5,33.5
parent: 2
type: Transform
- uid: 321
components:
- - pos: -49.5,22.5
+ - pos: -52.5,31.5
parent: 2
type: Transform
- uid: 322
components:
- - pos: -49.5,47.5
+ - pos: -49.5,31.5
parent: 2
type: Transform
- uid: 323
components:
- - pos: -49.5,45.5
+ - pos: -51.5,43.5
parent: 2
type: Transform
-- proto: AirlockExternalGlassLocked
- entities:
- uid: 324
components:
- - pos: -1.5,-84.5
+ - pos: -51.5,42.5
parent: 2
type: Transform
- uid: 325
components:
- - pos: 52.5,-16.5
+ - pos: -49.5,20.5
parent: 2
type: Transform
- uid: 326
components:
- - pos: -57.5,-1.5
+ - pos: -49.5,22.5
parent: 2
type: Transform
- uid: 327
components:
- - pos: -55.5,-1.5
+ - pos: -49.5,47.5
parent: 2
type: Transform
- uid: 328
components:
- - rot: -1.5707963267948966 rad
- pos: -58.5,-18.5
+ - pos: -49.5,45.5
parent: 2
type: Transform
+- proto: AirlockExternalGlassLocked
+ entities:
- uid: 329
components:
- - pos: -46.5,-41.5
+ - pos: -1.5,-84.5
parent: 2
type: Transform
- uid: 330
components:
- - rot: -1.5707963267948966 rad
- pos: 63.5,30.5
+ - pos: 52.5,-16.5
parent: 2
type: Transform
- uid: 331
components:
- - pos: 69.5,36.5
+ - rot: -1.5707963267948966 rad
+ pos: -58.5,-18.5
parent: 2
type: Transform
- uid: 332
components:
- - pos: 75.5,36.5
+ - pos: -46.5,-41.5
parent: 2
type: Transform
- uid: 333
components:
- - pos: 77.5,36.5
+ - rot: -1.5707963267948966 rad
+ pos: 63.5,30.5
parent: 2
type: Transform
- uid: 334
components:
- - pos: 67.5,36.5
+ - pos: 69.5,36.5
parent: 2
type: Transform
- uid: 335
components:
- - pos: 63.5,32.5
+ - pos: 75.5,36.5
parent: 2
type: Transform
- uid: 336
components:
- - pos: 29.5,41.5
+ - pos: 77.5,36.5
parent: 2
type: Transform
- uid: 337
components:
- - pos: 29.5,43.5
+ - pos: 67.5,36.5
parent: 2
type: Transform
- uid: 338
components:
- - pos: -12.5,71.5
+ - pos: 63.5,32.5
parent: 2
type: Transform
- uid: 339
components:
- - pos: -13.5,71.5
+ - pos: 29.5,41.5
parent: 2
type: Transform
- uid: 340
components:
- - pos: -21.5,71.5
+ - pos: 29.5,43.5
parent: 2
type: Transform
- uid: 341
components:
- - pos: -22.5,71.5
+ - pos: -12.5,71.5
parent: 2
type: Transform
- uid: 342
components:
- - rot: -1.5707963267948966 rad
- pos: -56.5,-18.5
+ - pos: -13.5,71.5
parent: 2
type: Transform
- uid: 343
components:
- - pos: -35.5,-99.5
+ - pos: -21.5,71.5
parent: 2
type: Transform
- uid: 344
components:
- - pos: -35.5,-101.5
+ - pos: -22.5,71.5
parent: 2
type: Transform
- uid: 345
components:
- - rot: 1.5707963267948966 rad
- pos: -50.5,-58.5
+ - rot: -1.5707963267948966 rad
+ pos: -56.5,-18.5
parent: 2
type: Transform
- uid: 346
components:
- - pos: 68.5,-67.5
+ - pos: -35.5,-99.5
parent: 2
type: Transform
- uid: 347
components:
- - pos: 68.5,-69.5
+ - pos: -35.5,-101.5
parent: 2
type: Transform
- uid: 348
components:
- - pos: -75.5,-31.5
+ - rot: 1.5707963267948966 rad
+ pos: -50.5,-58.5
parent: 2
type: Transform
- uid: 349
components:
- - pos: -77.5,-31.5
+ - pos: -75.5,-31.5
parent: 2
type: Transform
- uid: 350
+ components:
+ - pos: -77.5,-31.5
+ parent: 2
+ type: Transform
+ - uid: 351
components:
- rot: -1.5707963267948966 rad
pos: -62.5,-45.5
parent: 2
type: Transform
- - uid: 351
+ - uid: 352
components:
- rot: 3.141592653589793 rad
pos: -63.5,-44.5
parent: 2
type: Transform
- - uid: 352
+ - uid: 353
components:
- rot: -1.5707963267948966 rad
pos: 39.5,59.5
@@ -13259,25 +13267,25 @@ entities:
type: Transform
- proto: AirlockExternalGlassShuttleArrivals
entities:
- - uid: 353
+ - uid: 354
components:
- rot: 1.5707963267948966 rad
pos: 34.5,-89.5
parent: 2
type: Transform
- - uid: 354
+ - uid: 355
components:
- rot: -1.5707963267948966 rad
pos: 44.5,-82.5
parent: 2
type: Transform
- - uid: 355
+ - uid: 356
components:
- rot: -1.5707963267948966 rad
pos: 44.5,-89.5
parent: 2
type: Transform
- - uid: 356
+ - uid: 357
components:
- rot: 1.5707963267948966 rad
pos: 34.5,-82.5
@@ -13285,25 +13293,25 @@ entities:
type: Transform
- proto: AirlockExternalGlassShuttleEmergencyLocked
entities:
- - uid: 357
+ - uid: 358
components:
- rot: 1.5707963267948966 rad
pos: 69.5,-3.5
parent: 2
type: Transform
- - uid: 358
+ - uid: 359
components:
- rot: 1.5707963267948966 rad
pos: 69.5,-13.5
parent: 2
type: Transform
- - uid: 359
+ - uid: 360
components:
- rot: 1.5707963267948966 rad
pos: 69.5,-11.5
parent: 2
type: Transform
- - uid: 360
+ - uid: 361
components:
- rot: 1.5707963267948966 rad
pos: 69.5,-5.5
@@ -13311,43 +13319,43 @@ entities:
type: Transform
- proto: AirlockExternalGlassShuttleEscape
entities:
- - uid: 361
+ - uid: 362
components:
- rot: 3.141592653589793 rad
pos: -17.5,70.5
parent: 2
type: Transform
- - uid: 362
+ - uid: 363
components:
- pos: 48.5,-95.5
parent: 2
type: Transform
- - uid: 363
+ - uid: 364
components:
- pos: 30.5,-95.5
parent: 2
type: Transform
- proto: AirlockExternalGlassShuttleLocked
entities:
- - uid: 364
+ - uid: 365
components:
- rot: 3.141592653589793 rad
pos: -13.5,75.5
parent: 2
type: Transform
- - uid: 365
+ - uid: 366
components:
- rot: 3.141592653589793 rad
pos: -12.5,75.5
parent: 2
type: Transform
- - uid: 366
+ - uid: 367
components:
- rot: 3.141592653589793 rad
pos: -21.5,75.5
parent: 2
type: Transform
- - uid: 367
+ - uid: 368
components:
- rot: 3.141592653589793 rad
pos: -22.5,75.5
@@ -13355,12 +13363,12 @@ entities:
type: Transform
- proto: AirlockExternalGlassShuttleSyndicateLocked
entities:
- - uid: 368
+ - uid: 369
components:
- pos: -54.5,-90.5
parent: 2
type: Transform
- - uid: 369
+ - uid: 370
components:
- rot: 3.141592653589793 rad
pos: -54.5,-84.5
@@ -13368,26 +13376,26 @@ entities:
type: Transform
- proto: AirlockFreezerKitchenHydroLocked
entities:
- - uid: 370
+ - uid: 371
components:
- pos: 0.5,10.5
parent: 2
type: Transform
- - uid: 371
+ - uid: 372
components:
- name: service
type: MetaData
- pos: -9.5,15.5
parent: 2
type: Transform
- - uid: 372
+ - uid: 373
components:
- pos: -1.5,14.5
parent: 2
type: Transform
- proto: AirlockGlass
entities:
- - uid: 373
+ - uid: 374
components:
- name: lawyer office
type: MetaData
@@ -13395,59 +13403,59 @@ entities:
pos: 35.5,-3.5
parent: 2
type: Transform
- - uid: 374
+ - uid: 375
components:
- rot: 3.141592653589793 rad
pos: -20.5,66.5
parent: 2
type: Transform
- - uid: 375
+ - uid: 376
components:
- pos: 31.5,7.5
parent: 2
type: Transform
- - uid: 376
+ - uid: 377
components:
- rot: 3.141592653589793 rad
pos: 15.5,-38.5
parent: 2
type: Transform
- - uid: 377
+ - uid: 378
components:
- pos: 19.5,-5.5
parent: 2
type: Transform
- - uid: 378
+ - uid: 379
components:
- name: bar
type: MetaData
- pos: 10.5,4.5
parent: 2
type: Transform
- - uid: 379
+ - uid: 380
components:
- rot: 1.5707963267948966 rad
pos: 26.5,-15.5
parent: 2
type: Transform
- - uid: 380
+ - uid: 381
components:
- rot: 1.5707963267948966 rad
pos: 34.5,-19.5
parent: 2
type: Transform
- - uid: 381
+ - uid: 382
components:
- rot: 3.141592653589793 rad
pos: -0.5,-27.5
parent: 2
type: Transform
- - uid: 382
+ - uid: 383
components:
- pos: -16.5,-42.5
parent: 2
type: Transform
- - uid: 383
+ - uid: 384
components:
- name: youtool
type: MetaData
@@ -13455,118 +13463,118 @@ entities:
pos: -21.5,-21.5
parent: 2
type: Transform
- - uid: 384
+ - uid: 385
components:
- pos: 26.5,15.5
parent: 2
type: Transform
- - uid: 385
+ - uid: 386
components:
- pos: 24.5,15.5
parent: 2
type: Transform
- - uid: 386
+ - uid: 387
components:
- pos: -1.5,7.5
parent: 2
type: Transform
- - uid: 387
+ - uid: 388
components:
- pos: 31.5,8.5
parent: 2
type: Transform
- - uid: 388
+ - uid: 389
components:
- rot: -1.5707963267948966 rad
pos: -3.5,-39.5
parent: 2
type: Transform
- - uid: 389
+ - uid: 390
components:
- rot: -1.5707963267948966 rad
pos: 24.5,-44.5
parent: 2
type: Transform
- - uid: 390
+ - uid: 391
components:
- rot: -1.5707963267948966 rad
pos: -5.5,-39.5
parent: 2
type: Transform
- - uid: 391
+ - uid: 392
components:
- pos: 25.5,15.5
parent: 2
type: Transform
- - uid: 392
+ - uid: 393
components:
- rot: -1.5707963267948966 rad
pos: 15.5,7.5
parent: 2
type: Transform
- - uid: 393
+ - uid: 394
components:
- rot: -1.5707963267948966 rad
pos: 15.5,6.5
parent: 2
type: Transform
- - uid: 394
+ - uid: 395
components:
- pos: 35.5,1.5
parent: 2
type: Transform
- - uid: 395
+ - uid: 396
components:
- rot: 1.5707963267948966 rad
pos: 16.5,-19.5
parent: 2
type: Transform
- - uid: 396
+ - uid: 397
components:
- rot: 1.5707963267948966 rad
pos: 15.5,-19.5
parent: 2
type: Transform
- - uid: 397
+ - uid: 398
components:
- rot: 1.5707963267948966 rad
pos: 14.5,-19.5
parent: 2
type: Transform
- - uid: 398
+ - uid: 399
components:
- rot: 3.141592653589793 rad
pos: 10.5,-27.5
parent: 2
type: Transform
- - uid: 399
+ - uid: 400
components:
- rot: 3.141592653589793 rad
pos: 10.5,-26.5
parent: 2
type: Transform
- - uid: 400
+ - uid: 401
components:
- pos: 0.5,-50.5
parent: 2
type: Transform
- - uid: 401
+ - uid: 402
components:
- pos: -0.5,-50.5
parent: 2
type: Transform
- - uid: 402
+ - uid: 403
components:
- pos: 31.5,1.5
parent: 2
type: Transform
- - uid: 403
+ - uid: 404
components:
- rot: 3.141592653589793 rad
pos: 31.5,-6.5
parent: 2
type: Transform
- - uid: 404
+ - uid: 405
components:
- name: lawyer office
type: MetaData
@@ -13574,244 +13582,244 @@ entities:
pos: 38.5,-0.5
parent: 2
type: Transform
- - uid: 405
+ - uid: 406
components:
- pos: -1.5,-50.5
parent: 2
type: Transform
- - uid: 406
+ - uid: 407
components:
- rot: 3.141592653589793 rad
pos: 10.5,-2.5
parent: 2
type: Transform
- - uid: 407
+ - uid: 408
components:
- name: bar
type: MetaData
- pos: 11.5,4.5
parent: 2
type: Transform
- - uid: 408
+ - uid: 409
components:
- rot: 1.5707963267948966 rad
pos: 25.5,-15.5
parent: 2
type: Transform
- - uid: 409
+ - uid: 410
components:
- pos: -16.5,-43.5
parent: 2
type: Transform
- - uid: 410
+ - uid: 411
components:
- pos: -16.5,-41.5
parent: 2
type: Transform
- - uid: 411
+ - uid: 412
components:
- rot: 3.141592653589793 rad
pos: 10.5,-25.5
parent: 2
type: Transform
- - uid: 412
+ - uid: 413
components:
- rot: 3.141592653589793 rad
pos: -0.5,-25.5
parent: 2
type: Transform
- - uid: 413
+ - uid: 414
components:
- rot: 1.5707963267948966 rad
pos: 19.5,6.5
parent: 2
type: Transform
- - uid: 414
+ - uid: 415
components:
- pos: 19.5,-4.5
parent: 2
type: Transform
- - uid: 415
+ - uid: 416
components:
- pos: 19.5,-6.5
parent: 2
type: Transform
- - uid: 416
+ - uid: 417
components:
- rot: -1.5707963267948966 rad
pos: -4.5,-39.5
parent: 2
type: Transform
- - uid: 417
+ - uid: 418
components:
- rot: 3.141592653589793 rad
pos: 31.5,-4.5
parent: 2
type: Transform
- - uid: 418
+ - uid: 419
components:
- rot: 1.5707963267948966 rad
pos: 36.5,-19.5
parent: 2
type: Transform
- - uid: 419
+ - uid: 420
components:
- pos: -20.5,-24.5
parent: 2
type: Transform
- - uid: 420
+ - uid: 421
components:
- pos: 35.5,0.5
parent: 2
type: Transform
- - uid: 421
+ - uid: 422
components:
- rot: 3.141592653589793 rad
pos: 31.5,-5.5
parent: 2
type: Transform
- - uid: 422
+ - uid: 423
components:
- pos: -3.5,-22.5
parent: 2
type: Transform
- - uid: 423
+ - uid: 424
components:
- pos: -19.5,-24.5
parent: 2
type: Transform
- - uid: 424
+ - uid: 425
components:
- rot: 1.5707963267948966 rad
pos: 35.5,-19.5
parent: 2
type: Transform
- - uid: 425
+ - uid: 426
components:
- pos: -5.5,-22.5
parent: 2
type: Transform
- - uid: 426
+ - uid: 427
components:
- rot: 3.141592653589793 rad
pos: 14.5,-38.5
parent: 2
type: Transform
- - uid: 427
+ - uid: 428
components:
- rot: 1.5707963267948966 rad
pos: 24.5,-15.5
parent: 2
type: Transform
- - uid: 428
+ - uid: 429
components:
- rot: 3.141592653589793 rad
pos: 11.5,-2.5
parent: 2
type: Transform
- - uid: 429
+ - uid: 430
components:
- pos: 35.5,2.5
parent: 2
type: Transform
- - uid: 430
+ - uid: 431
components:
- rot: -1.5707963267948966 rad
pos: 25.5,-44.5
parent: 2
type: Transform
- - uid: 431
+ - uid: 432
components:
- rot: -1.5707963267948966 rad
pos: 26.5,-44.5
parent: 2
type: Transform
- - uid: 432
+ - uid: 433
components:
- pos: 31.5,6.5
parent: 2
type: Transform
- - uid: 433
+ - uid: 434
components:
- rot: 3.141592653589793 rad
pos: 16.5,-38.5
parent: 2
type: Transform
- - uid: 434
+ - uid: 435
components:
- pos: 1.5,53.5
parent: 2
type: Transform
- - uid: 435
+ - uid: 436
components:
- pos: 0.5,53.5
parent: 2
type: Transform
- - uid: 436
+ - uid: 437
components:
- pos: -0.5,53.5
parent: 2
type: Transform
- - uid: 437
+ - uid: 438
components:
- pos: 40.5,-41.5
parent: 2
type: Transform
- - uid: 438
+ - uid: 439
components:
- pos: 40.5,-42.5
parent: 2
type: Transform
- - uid: 439
+ - uid: 440
components:
- pos: 40.5,-43.5
parent: 2
type: Transform
- - uid: 440
+ - uid: 441
components:
- pos: 7.5,-43.5
parent: 2
type: Transform
- - uid: 441
+ - uid: 442
components:
- pos: -4.5,-22.5
parent: 2
type: Transform
- - uid: 442
+ - uid: 443
components:
- pos: 7.5,-42.5
parent: 2
type: Transform
- - uid: 443
+ - uid: 444
components:
- pos: 7.5,-41.5
parent: 2
type: Transform
- - uid: 444
+ - uid: 445
components:
- pos: -0.5,-26.5
parent: 2
type: Transform
- - uid: 445
+ - uid: 446
components:
- name: Psychologist office
type: MetaData
- pos: -8.5,-40.5
parent: 2
type: Transform
- - uid: 446
+ - uid: 447
components:
- rot: -1.5707963267948966 rad
pos: -13.5,45.5
parent: 2
type: Transform
- - uid: 447
+ - uid: 448
components:
- rot: -1.5707963267948966 rad
pos: -13.5,46.5
parent: 2
type: Transform
- - uid: 448
+ - uid: 449
components:
- name: visitor meeting
type: MetaData
@@ -13819,78 +13827,78 @@ entities:
pos: 37.5,20.5
parent: 2
type: Transform
- - uid: 449
+ - uid: 450
components:
- name: open library
type: MetaData
- pos: 43.5,19.5
parent: 2
type: Transform
- - uid: 450
+ - uid: 451
components:
- name: open library
type: MetaData
- pos: 43.5,20.5
parent: 2
type: Transform
- - uid: 451
+ - uid: 452
components:
- rot: 3.141592653589793 rad
pos: 36.5,-38.5
parent: 2
type: Transform
- - uid: 452
+ - uid: 453
components:
- rot: 3.141592653589793 rad
pos: 35.5,-38.5
parent: 2
type: Transform
- - uid: 453
+ - uid: 454
components:
- rot: 3.141592653589793 rad
pos: 34.5,-38.5
parent: 2
type: Transform
- - uid: 454
+ - uid: 455
components:
- rot: 3.141592653589793 rad
pos: -14.5,66.5
parent: 2
type: Transform
- - uid: 455
+ - uid: 456
components:
- rot: 3.141592653589793 rad
pos: 51.5,-3.5
parent: 2
type: Transform
- - uid: 456
+ - uid: 457
components:
- rot: 3.141592653589793 rad
pos: 52.5,-3.5
parent: 2
type: Transform
- - uid: 457
+ - uid: 458
components:
- rot: 3.141592653589793 rad
pos: 53.5,-3.5
parent: 2
type: Transform
- - uid: 458
+ - uid: 459
components:
- pos: -13.5,-27.5
parent: 2
type: Transform
- - uid: 459
+ - uid: 460
components:
- pos: -13.5,-26.5
parent: 2
type: Transform
- - uid: 460
+ - uid: 461
components:
- pos: -13.5,-25.5
parent: 2
type: Transform
- - uid: 461
+ - uid: 462
components:
- name: courtroom
type: MetaData
@@ -13898,67 +13906,67 @@ entities:
pos: 31.5,-57.5
parent: 2
type: Transform
- - uid: 462
+ - uid: 463
components:
- pos: 30.5,-76.5
parent: 2
type: Transform
- - uid: 463
+ - uid: 464
components:
- pos: 31.5,-76.5
parent: 2
type: Transform
- - uid: 464
+ - uid: 465
components:
- pos: 29.5,-76.5
parent: 2
type: Transform
- - uid: 465
+ - uid: 466
components:
- rot: 1.5707963267948966 rad
pos: 32.5,-72.5
parent: 2
type: Transform
- - uid: 466
+ - uid: 467
components:
- rot: 1.5707963267948966 rad
pos: 46.5,-71.5
parent: 2
type: Transform
- - uid: 467
+ - uid: 468
components:
- pos: 40.5,-69.5
parent: 2
type: Transform
- - uid: 468
+ - uid: 469
components:
- pos: 39.5,-69.5
parent: 2
type: Transform
- - uid: 469
+ - uid: 470
components:
- pos: 38.5,-69.5
parent: 2
type: Transform
- - uid: 470
+ - uid: 471
components:
- rot: 3.141592653589793 rad
pos: 35.5,-58.5
parent: 2
type: Transform
- - uid: 471
+ - uid: 472
components:
- rot: 3.141592653589793 rad
pos: 35.5,-59.5
parent: 2
type: Transform
- - uid: 472
+ - uid: 473
components:
- rot: 3.141592653589793 rad
pos: 35.5,-60.5
parent: 2
type: Transform
- - uid: 473
+ - uid: 474
components:
- name: youtool
type: MetaData
@@ -13966,469 +13974,469 @@ entities:
pos: 39.5,-57.5
parent: 2
type: Transform
- - uid: 474
+ - uid: 475
components:
- pos: -7.5,-50.5
parent: 2
type: Transform
- - uid: 475
+ - uid: 476
components:
- pos: -8.5,-50.5
parent: 2
type: Transform
- - uid: 476
+ - uid: 477
components:
- pos: -9.5,-50.5
parent: 2
type: Transform
- - uid: 477
+ - uid: 478
components:
- pos: -19.5,14.5
parent: 2
type: Transform
- - uid: 478
+ - uid: 479
components:
- pos: -18.5,14.5
parent: 2
type: Transform
- - uid: 479
+ - uid: 480
components:
- pos: -20.5,14.5
parent: 2
type: Transform
- - uid: 480
+ - uid: 481
components:
- pos: -19.5,-39.5
parent: 2
type: Transform
- - uid: 481
+ - uid: 482
components:
- pos: -20.5,-39.5
parent: 2
type: Transform
- - uid: 482
+ - uid: 483
components:
- pos: -18.5,-39.5
parent: 2
type: Transform
- - uid: 483
+ - uid: 484
components:
- pos: -18.5,-24.5
parent: 2
type: Transform
- - uid: 484
+ - uid: 485
components:
- rot: -1.5707963267948966 rad
pos: -18.5,-7.5
parent: 2
type: Transform
- - uid: 485
+ - uid: 486
components:
- rot: -1.5707963267948966 rad
pos: -19.5,-7.5
parent: 2
type: Transform
- - uid: 486
+ - uid: 487
components:
- rot: -1.5707963267948966 rad
pos: -20.5,-7.5
parent: 2
type: Transform
- - uid: 487
+ - uid: 488
components:
- pos: -21.5,-12.5
parent: 2
type: Transform
- - uid: 488
+ - uid: 489
components:
- pos: -21.5,-11.5
parent: 2
type: Transform
- - uid: 489
+ - uid: 490
components:
- pos: -21.5,20.5
parent: 2
type: Transform
- - uid: 490
+ - uid: 491
components:
- rot: -1.5707963267948966 rad
pos: -17.5,29.5
parent: 2
type: Transform
- - uid: 491
+ - uid: 492
components:
- rot: -1.5707963267948966 rad
pos: -17.5,30.5
parent: 2
type: Transform
- - uid: 492
+ - uid: 493
components:
- pos: -30.5,7.5
parent: 2
type: Transform
- - uid: 493
+ - uid: 494
components:
- pos: -44.5,-0.5
parent: 2
type: Transform
- - uid: 494
+ - uid: 495
components:
- pos: -4.5,-2.5
parent: 2
type: Transform
- - uid: 495
+ - uid: 496
components:
- pos: -3.5,-2.5
parent: 2
type: Transform
- - uid: 496
+ - uid: 497
components:
- pos: -44.5,1.5
parent: 2
type: Transform
- - uid: 497
+ - uid: 498
components:
- pos: -44.5,0.5
parent: 2
type: Transform
- - uid: 498
+ - uid: 499
components:
- pos: -38.5,2.5
parent: 2
type: Transform
- - uid: 499
+ - uid: 500
components:
- pos: -37.5,2.5
parent: 2
type: Transform
- - uid: 500
+ - uid: 501
components:
- pos: -27.5,1.5
parent: 2
type: Transform
- - uid: 501
+ - uid: 502
components:
- pos: -27.5,0.5
parent: 2
type: Transform
- - uid: 502
+ - uid: 503
components:
- pos: -27.5,-0.5
parent: 2
type: Transform
- - uid: 503
+ - uid: 504
components:
- pos: -5.5,-2.5
parent: 2
type: Transform
- - uid: 504
+ - uid: 505
components:
- pos: -21.5,21.5
parent: 2
type: Transform
- - uid: 505
+ - uid: 506
components:
- pos: -46.5,2.5
parent: 2
type: Transform
- - uid: 506
+ - uid: 507
components:
- pos: -47.5,2.5
parent: 2
type: Transform
- - uid: 507
+ - uid: 508
components:
- pos: -45.5,2.5
parent: 2
type: Transform
- - uid: 508
+ - uid: 509
components:
- rot: 3.141592653589793 rad
pos: -45.5,9.5
parent: 2
type: Transform
- - uid: 509
+ - uid: 510
components:
- rot: 3.141592653589793 rad
pos: -46.5,9.5
parent: 2
type: Transform
- - uid: 510
+ - uid: 511
components:
- rot: 1.5707963267948966 rad
pos: 19.5,7.5
parent: 2
type: Transform
- - uid: 511
+ - uid: 512
components:
- rot: -1.5707963267948966 rad
pos: -17.5,48.5
parent: 2
type: Transform
- - uid: 512
+ - uid: 513
components:
- rot: -1.5707963267948966 rad
pos: -13.5,44.5
parent: 2
type: Transform
- - uid: 513
+ - uid: 514
components:
- rot: -1.5707963267948966 rad
pos: -18.5,48.5
parent: 2
type: Transform
- - uid: 514
+ - uid: 515
components:
- rot: -1.5707963267948966 rad
pos: -16.5,48.5
parent: 2
type: Transform
- - uid: 515
+ - uid: 516
components:
- rot: 3.141592653589793 rad
pos: -11.5,52.5
parent: 2
type: Transform
- - uid: 516
+ - uid: 517
components:
- rot: 3.141592653589793 rad
pos: -6.5,57.5
parent: 2
type: Transform
- - uid: 517
+ - uid: 518
components:
- pos: -11.5,59.5
parent: 2
type: Transform
- - uid: 518
+ - uid: 519
components:
- pos: -11.5,58.5
parent: 2
type: Transform
- - uid: 519
+ - uid: 520
components:
- pos: -15.5,51.5
parent: 2
type: Transform
- - uid: 520
+ - uid: 521
components:
- pos: -15.5,50.5
parent: 2
type: Transform
- - uid: 521
+ - uid: 522
components:
- rot: 3.141592653589793 rad
pos: -4.5,47.5
parent: 2
type: Transform
- - uid: 522
+ - uid: 523
components:
- pos: 4.5,-28.5
parent: 2
type: Transform
- - uid: 523
+ - uid: 524
components:
- pos: 47.5,-76.5
parent: 2
type: Transform
- - uid: 524
+ - uid: 525
components:
- rot: 3.141592653589793 rad
pos: 23.5,-83.5
parent: 2
type: Transform
- - uid: 525
+ - uid: 526
components:
- rot: 3.141592653589793 rad
pos: 20.5,-83.5
parent: 2
type: Transform
- - uid: 526
+ - uid: 527
components:
- rot: 1.5707963267948966 rad
pos: 46.5,-72.5
parent: 2
type: Transform
- - uid: 527
+ - uid: 528
components:
- rot: 1.5707963267948966 rad
pos: 32.5,-73.5
parent: 2
type: Transform
- - uid: 528
+ - uid: 529
components:
- pos: 49.5,-76.5
parent: 2
type: Transform
- - uid: 529
+ - uid: 530
components:
- rot: 1.5707963267948966 rad
pos: 32.5,-71.5
parent: 2
type: Transform
- - uid: 530
+ - uid: 531
components:
- rot: 1.5707963267948966 rad
pos: 46.5,-73.5
parent: 2
type: Transform
- - uid: 531
+ - uid: 532
components:
- pos: 48.5,-76.5
parent: 2
type: Transform
- - uid: 532
+ - uid: 533
components:
- rot: 1.5707963267948966 rad
pos: -75.5,-54.5
parent: 2
type: Transform
- - uid: 533
+ - uid: 534
components:
- rot: 1.5707963267948966 rad
pos: -75.5,-53.5
parent: 2
type: Transform
- - uid: 534
+ - uid: 535
components:
- rot: 1.5707963267948966 rad
pos: -67.5,-53.5
parent: 2
type: Transform
- - uid: 535
+ - uid: 536
components:
- rot: -1.5707963267948966 rad
pos: -67.5,-54.5
parent: 2
type: Transform
- - uid: 536
+ - uid: 537
components:
- rot: 1.5707963267948966 rad
pos: 7.5,-11.5
parent: 2
type: Transform
- - uid: 537
+ - uid: 538
components:
- pos: 47.5,-43.5
parent: 2
type: Transform
- - uid: 538
+ - uid: 539
components:
- pos: 47.5,-41.5
parent: 2
type: Transform
- - uid: 539
+ - uid: 540
components:
- pos: 47.5,-42.5
parent: 2
type: Transform
- proto: AirlockGlassShuttle
entities:
- - uid: 540
+ - uid: 541
components:
- rot: -1.5707963267948966 rad
pos: -53.5,22.5
parent: 2
type: Transform
- - uid: 541
+ - uid: 542
components:
- rot: -1.5707963267948966 rad
pos: -53.5,20.5
parent: 2
type: Transform
- - uid: 542
+ - uid: 543
components:
- rot: -1.5707963267948966 rad
pos: -59.5,-71.5
parent: 2
type: Transform
- - uid: 543
+ - uid: 544
components:
- rot: -1.5707963267948966 rad
pos: -59.5,-73.5
parent: 2
type: Transform
- - uid: 544
+ - uid: 545
components:
- rot: -1.5707963267948966 rad
pos: -59.5,-81.5
parent: 2
type: Transform
- - uid: 545
+ - uid: 546
components:
- rot: -1.5707963267948966 rad
pos: -59.5,-79.5
parent: 2
type: Transform
- - uid: 546
+ - uid: 547
components:
- rot: 1.5707963267948966 rad
pos: 79.5,-37.5
parent: 2
type: Transform
- - uid: 547
+ - uid: 548
components:
- rot: 1.5707963267948966 rad
pos: 79.5,-34.5
parent: 2
type: Transform
- - uid: 548
+ - uid: 549
components:
- rot: 1.5707963267948966 rad
pos: 79.5,-36.5
parent: 2
type: Transform
- - uid: 549
+ - uid: 550
components:
- rot: 1.5707963267948966 rad
pos: 79.5,-33.5
parent: 2
type: Transform
- - uid: 550
+ - uid: 551
components:
- rot: 1.5707963267948966 rad
pos: 52.5,-82.5
parent: 2
type: Transform
- - uid: 551
+ - uid: 552
components:
- rot: 1.5707963267948966 rad
pos: 52.5,-89.5
parent: 2
type: Transform
- - uid: 552
+ - uid: 553
components:
- rot: 3.141592653589793 rad
pos: -73.5,-50.5
parent: 2
type: Transform
- - uid: 553
+ - uid: 554
components:
- rot: 3.141592653589793 rad
pos: -71.5,-50.5
parent: 2
type: Transform
- - uid: 554
+ - uid: 555
components:
- pos: -73.5,-57.5
parent: 2
type: Transform
- - uid: 555
+ - uid: 556
components:
- pos: -71.5,-57.5
parent: 2
type: Transform
- proto: AirlockHeadOfPersonnelLocked
entities:
- - uid: 556
+ - uid: 557
components:
- pos: 0.5,-5.5
parent: 2
type: Transform
- links:
- - 23923
+ - 23945
type: DeviceLinkSink
- - uid: 557
+ - uid: 558
components:
- name: hop office
type: MetaData
@@ -14436,16 +14444,16 @@ entities:
parent: 2
type: Transform
- links:
- - 23923
+ - 23945
type: DeviceLinkSink
- - uid: 558
+ - uid: 559
components:
- pos: -2.5,-5.5
parent: 2
type: Transform
- proto: AirlockHeadOfSecurityGlassLocked
entities:
- - uid: 559
+ - uid: 560
components:
- name: hos office
type: MetaData
@@ -14453,7 +14461,7 @@ entities:
pos: 6.5,18.5
parent: 2
type: Transform
- - uid: 560
+ - uid: 561
components:
- rot: 1.5707963267948966 rad
pos: 31.5,-46.5
@@ -14461,7 +14469,7 @@ entities:
type: Transform
- proto: AirlockHeadOfSecurityLocked
entities:
- - uid: 561
+ - uid: 562
components:
- name: hos office
type: MetaData
@@ -14470,48 +14478,48 @@ entities:
type: Transform
- proto: AirlockHydroponicsLocked
entities:
- - uid: 562
+ - uid: 563
components:
- pos: -3.5,9.5
parent: 2
type: Transform
- - uid: 563
+ - uid: 564
components:
- name: hydrophonics
type: MetaData
- pos: -10.5,4.5
parent: 2
type: Transform
- - uid: 564
+ - uid: 565
components:
- pos: -3.5,13.5
parent: 2
type: Transform
- - uid: 565
+ - uid: 566
components:
- pos: -6.5,13.5
parent: 2
type: Transform
- proto: AirlockJanitorLocked
entities:
- - uid: 566
+ - uid: 567
components:
- pos: -11.5,-16.5
parent: 2
type: Transform
- - uid: 567
+ - uid: 568
components:
- pos: -11.5,-20.5
parent: 2
type: Transform
- - uid: 568
+ - uid: 569
components:
- name: janitorial closet
type: MetaData
- pos: -11.5,-24.5
parent: 2
type: Transform
- - uid: 569
+ - uid: 570
components:
- rot: -1.5707963267948966 rad
pos: -7.5,-11.5
@@ -14519,7 +14527,7 @@ entities:
type: Transform
- proto: AirlockKitchenLocked
entities:
- - uid: 570
+ - uid: 571
components:
- name: kitchen
type: MetaData
@@ -14529,7 +14537,7 @@ entities:
type: Transform
- proto: AirlockMaint
entities:
- - uid: 571
+ - uid: 572
components:
- name: waste disposal
type: MetaData
@@ -14537,23 +14545,23 @@ entities:
pos: 14.5,-51.5
parent: 2
type: Transform
- - uid: 572
+ - uid: 573
components:
- rot: 3.141592653589793 rad
pos: 23.5,-53.5
parent: 2
type: Transform
- - uid: 573
+ - uid: 574
components:
- pos: -6.5,-29.5
parent: 2
type: Transform
- - uid: 574
+ - uid: 575
components:
- pos: -17.5,-29.5
parent: 2
type: Transform
- - uid: 575
+ - uid: 576
components:
- name: waste disposal
type: MetaData
@@ -14561,12 +14569,6 @@ entities:
pos: 18.5,-51.5
parent: 2
type: Transform
- - uid: 576
- components:
- - rot: 1.5707963267948966 rad
- pos: 15.5,-44.5
- parent: 2
- type: Transform
- proto: AirlockMaintAtmoLocked
entities:
- uid: 577
@@ -14612,43 +14614,53 @@ entities:
entities:
- uid: 582
components:
+ - name: chemistry
+ type: MetaData
- rot: -1.5707963267948966 rad
pos: 8.5,-49.5
parent: 2
type: Transform
+ - uid: 583
+ components:
+ - name: chemistry
+ type: MetaData
+ - rot: -1.5707963267948966 rad
+ pos: 10.5,-48.5
+ parent: 2
+ type: Transform
- proto: AirlockMaintCommandLocked
entities:
- - uid: 583
+ - uid: 584
components:
- rot: 1.5707963267948966 rad
pos: 33.5,-32.5
parent: 2
type: Transform
- - uid: 584
+ - uid: 585
components:
- rot: 1.5707963267948966 rad
pos: 17.5,-32.5
parent: 2
type: Transform
- - uid: 585
+ - uid: 586
components:
- pos: 18.5,-30.5
parent: 2
type: Transform
- - uid: 586
+ - uid: 587
components:
- rot: 1.5707963267948966 rad
pos: 63.5,0.5
parent: 2
type: Transform
- - uid: 587
+ - uid: 588
components:
- name: bridge
type: MetaData
- pos: 26.5,-26.5
parent: 2
type: Transform
- - uid: 588
+ - uid: 589
components:
- name: conference room
type: MetaData
@@ -14658,216 +14670,216 @@ entities:
type: Transform
- proto: AirlockMaintDetectiveLocked
entities:
- - uid: 589
+ - uid: 590
components:
- pos: 20.5,-9.5
parent: 2
type: Transform
- proto: AirlockMaintEngiLocked
entities:
- - uid: 590
+ - uid: 591
components:
- name: engineering
type: MetaData
- pos: -41.5,-4.5
parent: 2
type: Transform
- - uid: 591
+ - uid: 592
components:
- pos: -51.5,-26.5
parent: 2
type: Transform
- proto: AirlockMaintGlass
entities:
- - uid: 592
+ - uid: 593
components:
- rot: 3.141592653589793 rad
pos: -8.5,25.5
parent: 2
type: Transform
- - uid: 593
+ - uid: 594
components:
- pos: 47.5,-33.5
parent: 2
type: Transform
- - uid: 594
+ - uid: 595
components:
- pos: -41.5,-86.5
parent: 2
type: Transform
- - uid: 595
+ - uid: 596
components:
- pos: -42.5,-86.5
parent: 2
type: Transform
- - uid: 596
+ - uid: 597
components:
- pos: -7.5,21.5
parent: 2
type: Transform
- - uid: 597
+ - uid: 598
components:
- pos: -8.5,30.5
parent: 2
type: Transform
- - uid: 598
+ - uid: 599
components:
- rot: -1.5707963267948966 rad
pos: -42.5,-28.5
parent: 2
type: Transform
- - uid: 599
+ - uid: 600
components:
- rot: 3.141592653589793 rad
pos: -10.5,25.5
parent: 2
type: Transform
- - uid: 600
+ - uid: 601
components:
- pos: 57.5,-27.5
parent: 2
type: Transform
- - uid: 601
+ - uid: 602
components:
- pos: -11.5,18.5
parent: 2
type: Transform
- - uid: 602
+ - uid: 603
components:
- pos: -16.5,16.5
parent: 2
type: Transform
- - uid: 603
+ - uid: 604
components:
- pos: 52.5,-32.5
parent: 2
type: Transform
- - uid: 604
+ - uid: 605
components:
- pos: 54.5,40.5
parent: 2
type: Transform
- - uid: 605
+ - uid: 606
components:
- pos: 54.5,54.5
parent: 2
type: Transform
- - uid: 606
+ - uid: 607
components:
- pos: 52.5,41.5
parent: 2
type: Transform
- - uid: 607
+ - uid: 608
components:
- rot: 1.5707963267948966 rad
pos: 52.5,34.5
parent: 2
type: Transform
- - uid: 608
+ - uid: 609
components:
- pos: 44.5,45.5
parent: 2
type: Transform
- - uid: 609
+ - uid: 610
components:
- pos: 31.5,45.5
parent: 2
type: Transform
- - uid: 610
+ - uid: 611
components:
- pos: -26.5,35.5
parent: 2
type: Transform
- - uid: 611
+ - uid: 612
components:
- pos: -26.5,33.5
parent: 2
type: Transform
- - uid: 612
+ - uid: 613
components:
- rot: 3.141592653589793 rad
pos: -11.5,21.5
parent: 2
type: Transform
- - uid: 613
+ - uid: 614
components:
- rot: -1.5707963267948966 rad
pos: -8.5,-76.5
parent: 2
type: Transform
- - uid: 614
+ - uid: 615
components:
- pos: -13.5,-97.5
parent: 2
type: Transform
- - uid: 615
+ - uid: 616
components:
- pos: -31.5,-97.5
parent: 2
type: Transform
- - uid: 616
+ - uid: 617
components:
- rot: 1.5707963267948966 rad
pos: -42.5,-93.5
parent: 2
type: Transform
- - uid: 617
+ - uid: 618
components:
- pos: 65.5,-65.5
parent: 2
type: Transform
- - uid: 618
+ - uid: 619
components:
- pos: 57.5,-65.5
parent: 2
type: Transform
- - uid: 619
+ - uid: 620
components:
- pos: 54.5,-33.5
parent: 2
type: Transform
- proto: AirlockMaintGlassLocked
entities:
- - uid: 620
+ - uid: 621
components:
- pos: 56.5,35.5
parent: 2
type: Transform
- - uid: 621
+ - uid: 622
components:
- pos: 51.5,31.5
parent: 2
type: Transform
- - uid: 622
+ - uid: 623
components:
- pos: -17.5,64.5
parent: 2
type: Transform
- - uid: 623
+ - uid: 624
components:
- pos: -17.5,59.5
parent: 2
type: Transform
- - uid: 624
+ - uid: 625
components:
- name: forgotten dock
type: MetaData
- pos: -48.5,-76.5
parent: 2
type: Transform
- - uid: 625
+ - uid: 626
components:
- pos: 57.5,30.5
parent: 2
type: Transform
- - uid: 626
+ - uid: 627
components:
- pos: 16.5,35.5
parent: 2
type: Transform
- proto: AirlockMaintHOPLocked
entities:
- - uid: 627
+ - uid: 628
components:
- name: hop office
type: MetaData
@@ -14876,65 +14888,65 @@ entities:
parent: 2
type: Transform
- links:
- - 23923
+ - 23945
type: DeviceLinkSink
- proto: AirlockMaintJanitorLocked
entities:
- - uid: 628
+ - uid: 629
components:
- pos: -14.5,-14.5
parent: 2
type: Transform
- proto: AirlockMaintLocked
entities:
- - uid: 629
+ - uid: 630
components:
- rot: 3.141592653589793 rad
pos: -55.5,-29.5
parent: 2
type: Transform
- - uid: 630
+ - uid: 631
components:
- pos: 18.5,-7.5
parent: 2
type: Transform
- - uid: 631
+ - uid: 632
components:
- pos: 14.5,-2.5
parent: 2
type: Transform
- - uid: 632
+ - uid: 633
components:
- pos: 9.5,-40.5
parent: 2
type: Transform
- - uid: 633
+ - uid: 634
components:
- pos: -8.5,-70.5
parent: 2
type: Transform
- - uid: 634
+ - uid: 635
components:
- rot: 3.141592653589793 rad
pos: 27.5,-8.5
parent: 2
type: Transform
- - uid: 635
+ - uid: 636
components:
- pos: 35.5,-15.5
parent: 2
type: Transform
- - uid: 636
+ - uid: 637
components:
- pos: -13.5,-7.5
parent: 2
type: Transform
- - uid: 637
+ - uid: 638
components:
- pos: 36.5,-44.5
parent: 2
type: Transform
- - uid: 638
+ - uid: 639
components:
- name: medbay
type: MetaData
@@ -14942,186 +14954,186 @@ entities:
pos: 7.5,-53.5
parent: 2
type: Transform
- - uid: 639
+ - uid: 640
components:
- pos: 15.5,-15.5
parent: 2
type: Transform
- - uid: 640
+ - uid: 641
components:
- pos: 13.5,-29.5
parent: 2
type: Transform
- - uid: 641
+ - uid: 642
components:
- rot: -1.5707963267948966 rad
pos: 37.5,-33.5
parent: 2
type: Transform
- - uid: 642
+ - uid: 643
components:
- rot: 1.5707963267948966 rad
pos: -2.5,-9.5
parent: 2
type: Transform
- - uid: 643
+ - uid: 644
components:
- pos: -6.5,-9.5
parent: 2
type: Transform
- - uid: 644
+ - uid: 645
components:
- rot: -1.5707963267948966 rad
pos: 55.5,-0.5
parent: 2
type: Transform
- - uid: 645
+ - uid: 646
components:
- name: evac
type: MetaData
- pos: 48.5,-8.5
parent: 2
type: Transform
- - uid: 646
+ - uid: 647
components:
- pos: 57.5,-4.5
parent: 2
type: Transform
- - uid: 647
+ - uid: 648
components:
- pos: 64.5,2.5
parent: 2
type: Transform
- - uid: 648
+ - uid: 649
components:
- pos: -17.5,-14.5
parent: 2
type: Transform
- - uid: 649
+ - uid: 650
components:
- name: evac
type: MetaData
- pos: 62.5,-14.5
parent: 2
type: Transform
- - uid: 650
+ - uid: 651
components:
- rot: 1.5707963267948966 rad
pos: 50.5,-13.5
parent: 2
type: Transform
- - uid: 651
+ - uid: 652
components:
- pos: -17.5,52.5
parent: 2
type: Transform
- - uid: 652
+ - uid: 653
components:
- pos: -20.5,55.5
parent: 2
type: Transform
- - uid: 653
+ - uid: 654
components:
- name: courtroom
type: MetaData
- pos: 35.5,-54.5
parent: 2
type: Transform
- - uid: 654
+ - uid: 655
components:
- pos: -21.5,-26.5
parent: 2
type: Transform
- - uid: 655
+ - uid: 656
components:
- pos: -21.5,-42.5
parent: 2
type: Transform
- - uid: 656
+ - uid: 657
components:
- pos: 36.5,-57.5
parent: 2
type: Transform
- - uid: 657
+ - uid: 658
components:
- pos: 9.5,-70.5
parent: 2
type: Transform
- - uid: 658
+ - uid: 659
components:
- rot: -1.5707963267948966 rad
pos: 41.5,-64.5
parent: 2
type: Transform
- - uid: 659
+ - uid: 660
components:
- pos: 21.5,-73.5
parent: 2
type: Transform
- - uid: 660
+ - uid: 661
components:
- name: engineering
type: MetaData
- pos: -30.5,-26.5
parent: 2
type: Transform
- - uid: 661
+ - uid: 662
components:
- name: engineering
type: MetaData
- pos: -33.5,-26.5
parent: 2
type: Transform
- - uid: 662
+ - uid: 663
components:
- rot: 3.141592653589793 rad
pos: -31.5,-45.5
parent: 2
type: Transform
- - uid: 663
+ - uid: 664
components:
- rot: 1.5707963267948966 rad
pos: -51.5,-63.5
parent: 2
type: Transform
- - uid: 664
+ - uid: 665
components:
- pos: -16.5,-52.5
parent: 2
type: Transform
- - uid: 665
+ - uid: 666
components:
- rot: -1.5707963267948966 rad
pos: -17.5,19.5
parent: 2
type: Transform
- - uid: 666
+ - uid: 667
components:
- pos: -24.5,26.5
parent: 2
type: Transform
- - uid: 667
+ - uid: 668
components:
- pos: -4.5,32.5
parent: 2
type: Transform
- - uid: 668
+ - uid: 669
components:
- pos: 1.5,32.5
parent: 2
type: Transform
- - uid: 669
+ - uid: 670
components:
- rot: -1.5707963267948966 rad
pos: -37.5,-1.5
parent: 2
type: Transform
- - uid: 670
+ - uid: 671
components:
- pos: -48.5,0.5
parent: 2
type: Transform
- - uid: 671
+ - uid: 672
components:
- name: singularity catwalk
type: MetaData
@@ -15129,80 +15141,80 @@ entities:
pos: -53.5,-2.5
parent: 2
type: Transform
- - uid: 672
+ - uid: 673
components:
- rot: 1.5707963267948966 rad
pos: -21.5,27.5
parent: 2
type: Transform
- - uid: 673
+ - uid: 674
components:
- pos: 11.5,32.5
parent: 2
type: Transform
- - uid: 674
+ - uid: 675
components:
- pos: -23.5,56.5
parent: 2
type: Transform
- - uid: 675
+ - uid: 676
components:
- pos: 4.5,32.5
parent: 2
type: Transform
- - uid: 676
+ - uid: 677
components:
- pos: -22.5,34.5
parent: 2
type: Transform
- links:
- - 24132
+ - 24153
type: DeviceLinkSink
- - uid: 677
+ - uid: 678
components:
- rot: 1.5707963267948966 rad
pos: -41.5,-93.5
parent: 2
type: Transform
- - uid: 678
+ - uid: 679
components:
- rot: 1.5707963267948966 rad
pos: -56.5,-57.5
parent: 2
type: Transform
- - uid: 679
+ - uid: 680
components:
- pos: 6.5,-35.5
parent: 2
type: Transform
- - uid: 680
+ - uid: 681
components:
- pos: 61.5,-26.5
parent: 2
type: Transform
- - uid: 681
+ - uid: 682
components:
- pos: 10.5,-83.5
parent: 2
type: Transform
- - uid: 682
+ - uid: 683
components:
- rot: 3.141592653589793 rad
pos: -55.5,-34.5
parent: 2
type: Transform
- - uid: 683
+ - uid: 684
components:
- rot: 1.5707963267948966 rad
pos: -17.5,11.5
parent: 2
type: Transform
- - uid: 684
+ - uid: 685
components:
- pos: -2.5,-17.5
parent: 2
type: Transform
- - uid: 685
+ - uid: 686
components:
- name: library
type: MetaData
@@ -15210,21 +15222,26 @@ entities:
pos: 4.5,-12.5
parent: 2
type: Transform
- - uid: 686
+ - uid: 687
components:
- pos: -56.5,-40.5
parent: 2
type: Transform
- - uid: 687
+ - uid: 688
components:
- name: science
type: MetaData
- pos: 50.5,-36.5
parent: 2
type: Transform
+ - uid: 689
+ components:
+ - pos: 17.5,-44.5
+ parent: 2
+ type: Transform
- proto: AirlockMaintMedLocked
entities:
- - uid: 688
+ - uid: 690
components:
- name: surgery
type: MetaData
@@ -15232,7 +15249,7 @@ entities:
pos: -1.5,-68.5
parent: 2
type: Transform
- - uid: 689
+ - uid: 691
components:
- name: storeroom
type: MetaData
@@ -15240,20 +15257,20 @@ entities:
pos: -8.5,-67.5
parent: 2
type: Transform
- - uid: 690
+ - uid: 692
components:
- name: medbay
type: MetaData
- pos: 6.5,-62.5
parent: 2
type: Transform
- - uid: 691
+ - uid: 693
components:
- rot: 3.141592653589793 rad
pos: -16.5,-72.5
parent: 2
type: Transform
- - uid: 692
+ - uid: 694
components:
- name: virology
type: MetaData
@@ -15261,7 +15278,7 @@ entities:
pos: -32.5,-71.5
parent: 2
type: Transform
- - uid: 693
+ - uid: 695
components:
- name: cryogenics
type: MetaData
@@ -15269,14 +15286,14 @@ entities:
pos: -27.5,-58.5
parent: 2
type: Transform
- - uid: 694
+ - uid: 696
components:
- pos: -11.5,-31.5
parent: 2
type: Transform
- proto: AirlockMaintRnDLocked
entities:
- - uid: 695
+ - uid: 697
components:
- name: robotics
type: MetaData
@@ -15284,21 +15301,21 @@ entities:
pos: 75.5,-50.5
parent: 2
type: Transform
- - uid: 696
+ - uid: 698
components:
- name: r&d
type: MetaData
- pos: 45.5,-34.5
parent: 2
type: Transform
- - uid: 697
+ - uid: 699
components:
- name: toxins
type: MetaData
- pos: 44.5,-56.5
parent: 2
type: Transform
- - uid: 698
+ - uid: 700
components:
- name: science
type: MetaData
@@ -15307,7 +15324,7 @@ entities:
type: Transform
- proto: AirlockMaintSalvageLocked
entities:
- - uid: 699
+ - uid: 701
components:
- name: salvage
type: MetaData
@@ -15315,7 +15332,7 @@ entities:
pos: -37.5,34.5
parent: 2
type: Transform
- - uid: 700
+ - uid: 702
components:
- rot: -1.5707963267948966 rad
pos: -44.5,39.5
@@ -15323,43 +15340,43 @@ entities:
type: Transform
- proto: AirlockMaintSecLocked
entities:
- - uid: 701
+ - uid: 703
components:
- pos: 31.5,21.5
parent: 2
type: Transform
- - uid: 702
+ - uid: 704
components:
- pos: -15.5,-19.5
parent: 2
type: Transform
- - uid: 703
+ - uid: 705
components:
- name: interrogation room
type: MetaData
- pos: 14.5,24.5
parent: 2
type: Transform
- - uid: 704
+ - uid: 706
components:
- rot: 1.5707963267948966 rad
pos: 21.5,-48.5
parent: 2
type: Transform
- - uid: 705
+ - uid: 707
components:
- rot: -1.5707963267948966 rad
pos: -13.5,26.5
parent: 2
type: Transform
- - uid: 706
+ - uid: 708
components:
- pos: -1.5,22.5
parent: 2
type: Transform
- proto: AirlockMaintTheatreLocked
entities:
- - uid: 707
+ - uid: 709
components:
- name: theatre
type: MetaData
@@ -15368,14 +15385,14 @@ entities:
type: Transform
- proto: AirlockMedicalGlass
entities:
- - uid: 708
+ - uid: 710
components:
- pos: 43.5,6.5
parent: 2
type: Transform
- proto: AirlockMedicalGlassLocked
entities:
- - uid: 709
+ - uid: 711
components:
- name: cloning
type: MetaData
@@ -15383,43 +15400,43 @@ entities:
pos: -5.5,-62.5
parent: 2
type: Transform
- - uid: 710
+ - uid: 712
components:
- pos: -15.5,-55.5
parent: 2
type: Transform
- - uid: 711
+ - uid: 713
components:
- rot: 3.141592653589793 rad
pos: -8.5,-58.5
parent: 2
type: Transform
- - uid: 712
+ - uid: 714
components:
- name: cryogenics
type: MetaData
- pos: -21.5,-60.5
parent: 2
type: Transform
- - uid: 713
+ - uid: 715
components:
- rot: 3.141592653589793 rad
pos: -2.5,-58.5
parent: 2
type: Transform
- - uid: 714
+ - uid: 716
components:
- name: medical storage
type: MetaData
- pos: 7.5,-60.5
parent: 2
type: Transform
- - uid: 715
+ - uid: 717
components:
- pos: 45.5,3.5
parent: 2
type: Transform
- - uid: 716
+ - uid: 718
components:
- name: cloning
type: MetaData
@@ -15427,7 +15444,7 @@ entities:
pos: -6.5,-62.5
parent: 2
type: Transform
- - uid: 717
+ - uid: 719
components:
- name: surgery
type: MetaData
@@ -15435,40 +15452,40 @@ entities:
pos: -2.5,-62.5
parent: 2
type: Transform
- - uid: 718
+ - uid: 720
components:
- pos: -14.5,-58.5
parent: 2
type: Transform
- - uid: 719
+ - uid: 721
components:
- pos: -14.5,-55.5
parent: 2
type: Transform
- - uid: 720
+ - uid: 722
components:
- rot: 3.141592653589793 rad
pos: -11.5,-58.5
parent: 2
type: Transform
- - uid: 721
+ - uid: 723
components:
- rot: 3.141592653589793 rad
pos: -5.5,-58.5
parent: 2
type: Transform
- - uid: 722
+ - uid: 724
components:
- rot: 3.141592653589793 rad
pos: 0.5,-58.5
parent: 2
type: Transform
- - uid: 723
+ - uid: 725
components:
- pos: -15.5,-58.5
parent: 2
type: Transform
- - uid: 724
+ - uid: 726
components:
- name: surgery
type: MetaData
@@ -15476,7 +15493,7 @@ entities:
pos: -3.5,-62.5
parent: 2
type: Transform
- - uid: 725
+ - uid: 727
components:
- name: changing room
type: MetaData
@@ -15485,29 +15502,29 @@ entities:
type: Transform
- proto: AirlockMedicalLocked
entities:
- - uid: 726
+ - uid: 728
components:
- pos: -4.5,-51.5
parent: 2
type: Transform
- - uid: 727
+ - uid: 729
components:
- name: morgue
type: MetaData
- pos: -13.5,-62.5
parent: 2
type: Transform
- - uid: 728
+ - uid: 730
components:
- pos: -13.5,-38.5
parent: 2
type: Transform
- - uid: 729
+ - uid: 731
components:
- pos: -11.5,-34.5
parent: 2
type: Transform
- - uid: 730
+ - uid: 732
components:
- name: changing room
type: MetaData
@@ -15516,7 +15533,7 @@ entities:
type: Transform
- proto: AirlockQuartermasterGlassLocked
entities:
- - uid: 731
+ - uid: 733
components:
- name: quartermasters office
type: MetaData
@@ -15525,7 +15542,7 @@ entities:
type: Transform
- proto: AirlockQuartermasterLocked
entities:
- - uid: 732
+ - uid: 734
components:
- name: quartermasters office
type: MetaData
@@ -15534,7 +15551,7 @@ entities:
type: Transform
- proto: AirlockResearchDirectorGlassLocked
entities:
- - uid: 733
+ - uid: 735
components:
- name: server room
type: MetaData
@@ -15543,7 +15560,7 @@ entities:
type: Transform
- proto: AirlockResearchDirectorLocked
entities:
- - uid: 734
+ - uid: 736
components:
- name: research director's office
type: MetaData
@@ -15552,34 +15569,34 @@ entities:
type: Transform
- proto: AirlockSalvageGlassLocked
entities:
- - uid: 735
+ - uid: 737
components:
- name: salvage magnet
type: MetaData
- pos: -46.5,27.5
parent: 2
type: Transform
- - uid: 736
+ - uid: 738
components:
- name: salvage magnet
type: MetaData
- pos: -45.5,27.5
parent: 2
type: Transform
- - uid: 737
+ - uid: 739
components:
- name: salvage
type: MetaData
- pos: -39.5,29.5
parent: 2
type: Transform
- - uid: 738
+ - uid: 740
components:
- rot: -1.5707963267948966 rad
pos: -46.5,37.5
parent: 2
type: Transform
- - uid: 739
+ - uid: 741
components:
- rot: -1.5707963267948966 rad
pos: -45.5,37.5
@@ -15587,7 +15604,7 @@ entities:
type: Transform
- proto: AirlockScienceGlassLocked
entities:
- - uid: 740
+ - uid: 742
components:
- name: anomaly lab
type: MetaData
@@ -15595,59 +15612,59 @@ entities:
pos: 61.5,-41.5
parent: 2
type: Transform
- - uid: 741
+ - uid: 743
components:
- pos: 54.5,-44.5
parent: 2
type: Transform
- - uid: 742
+ - uid: 744
components:
- pos: 54.5,-45.5
parent: 2
type: Transform
- - uid: 743
+ - uid: 745
components:
- pos: 57.5,-43.5
parent: 2
type: Transform
- - uid: 744
+ - uid: 746
components:
- rot: -1.5707963267948966 rad
pos: 54.5,-41.5
parent: 2
type: Transform
- - uid: 745
+ - uid: 747
components:
- pos: 58.5,-45.5
parent: 2
type: Transform
- - uid: 746
+ - uid: 748
components:
- pos: 58.5,-44.5
parent: 2
type: Transform
- - uid: 747
+ - uid: 749
components:
- name: toxins
type: MetaData
- pos: 49.5,-48.5
parent: 2
type: Transform
- - uid: 748
+ - uid: 750
components:
- name: science canteen
type: MetaData
- pos: 47.5,-45.5
parent: 2
type: Transform
- - uid: 749
+ - uid: 751
components:
- name: toxins
type: MetaData
- pos: 50.5,-48.5
parent: 2
type: Transform
- - uid: 750
+ - uid: 752
components:
- name: science canteen
type: MetaData
@@ -15655,14 +15672,14 @@ entities:
pos: 47.5,-46.5
parent: 2
type: Transform
- - uid: 751
+ - uid: 753
components:
- name: anomaly lab
type: MetaData
- pos: 62.5,-41.5
parent: 2
type: Transform
- - uid: 752
+ - uid: 754
components:
- name: r&d
type: MetaData
@@ -15670,100 +15687,100 @@ entities:
pos: 47.5,-37.5
parent: 2
type: Transform
- - uid: 753
+ - uid: 755
components:
- pos: 69.5,-33.5
parent: 2
type: Transform
- - uid: 754
+ - uid: 756
components:
- pos: 69.5,-34.5
parent: 2
type: Transform
- - uid: 755
+ - uid: 757
components:
- rot: -1.5707963267948966 rad
pos: 74.5,-42.5
parent: 2
type: Transform
- - uid: 756
+ - uid: 758
components:
- rot: -1.5707963267948966 rad
pos: 75.5,-42.5
parent: 2
type: Transform
- - uid: 757
+ - uid: 759
components:
- rot: -1.5707963267948966 rad
pos: 74.5,-39.5
parent: 2
type: Transform
- - uid: 758
+ - uid: 760
components:
- rot: -1.5707963267948966 rad
pos: 75.5,-39.5
parent: 2
type: Transform
- - uid: 759
+ - uid: 761
components:
- rot: 1.5707963267948966 rad
pos: 69.5,-37.5
parent: 2
type: Transform
- - uid: 760
+ - uid: 762
components:
- rot: 3.141592653589793 rad
pos: 72.5,-30.5
parent: 2
type: Transform
- - uid: 761
+ - uid: 763
components:
- pos: 68.5,-32.5
parent: 2
type: Transform
- proto: AirlockScienceLocked
entities:
- - uid: 762
+ - uid: 764
components:
- name: r&d
type: MetaData
- pos: 45.5,-40.5
parent: 2
type: Transform
- - uid: 763
+ - uid: 765
components:
- name: robotics
type: MetaData
- pos: 66.5,-48.5
parent: 2
type: Transform
- - uid: 764
+ - uid: 766
components:
- name: anomaly lab
type: MetaData
- pos: 62.5,-37.5
parent: 2
type: Transform
- - uid: 765
+ - uid: 767
components:
- pos: 51.5,-59.5
parent: 2
type: Transform
- - uid: 766
+ - uid: 768
components:
- name: anomaly lab
type: MetaData
- pos: 66.5,-33.5
parent: 2
type: Transform
- - uid: 767
+ - uid: 769
components:
- name: anomaly lab
type: MetaData
- pos: 66.5,-34.5
parent: 2
type: Transform
- - uid: 768
+ - uid: 770
components:
- name: anomaly lab
type: MetaData
@@ -15773,42 +15790,42 @@ entities:
type: Transform
- proto: AirlockSecurityGlassLocked
entities:
- - uid: 769
+ - uid: 771
components:
- pos: 43.5,15.5
parent: 2
type: Transform
- - uid: 770
+ - uid: 772
components:
- pos: 43.5,14.5
parent: 2
type: Transform
- - uid: 771
+ - uid: 773
components:
- rot: 3.141592653589793 rad
pos: 9.5,16.5
parent: 2
type: Transform
- - uid: 772
+ - uid: 774
components:
- name: prison substation
type: MetaData
- pos: 61.5,4.5
parent: 2
type: Transform
- - uid: 773
+ - uid: 775
components:
- rot: 1.5707963267948966 rad
pos: 28.5,-46.5
parent: 2
type: Transform
- - uid: 774
+ - uid: 776
components:
- rot: 1.5707963267948966 rad
pos: 33.5,-46.5
parent: 2
type: Transform
- - uid: 775
+ - uid: 777
components:
- rot: 3.141592653589793 rad
pos: 9.5,17.5
@@ -15816,7 +15833,7 @@ entities:
type: Transform
- proto: AirlockSecurityLocked
entities:
- - uid: 776
+ - uid: 778
components:
- name: sec dorm
type: MetaData
@@ -15824,18 +15841,18 @@ entities:
pos: 3.5,17.5
parent: 2
type: Transform
- - uid: 777
+ - uid: 779
components:
- rot: 1.5707963267948966 rad
pos: 19.5,-44.5
parent: 2
type: Transform
- - uid: 778
+ - uid: 780
components:
- pos: -17.5,-20.5
parent: 2
type: Transform
- - uid: 779
+ - uid: 781
components:
- name: sec dorm
type: MetaData
@@ -15843,7 +15860,7 @@ entities:
pos: 3.5,16.5
parent: 2
type: Transform
- - uid: 780
+ - uid: 782
components:
- name: courtroom
type: MetaData
@@ -15851,13 +15868,13 @@ entities:
pos: 31.5,-44.5
parent: 2
type: Transform
- - uid: 781
+ - uid: 783
components:
- rot: 3.141592653589793 rad
pos: -19.5,-44.5
parent: 2
type: Transform
- - uid: 782
+ - uid: 784
components:
- rot: -1.5707963267948966 rad
pos: -15.5,28.5
@@ -15865,14 +15882,14 @@ entities:
type: Transform
- proto: AirlockServiceLocked
entities:
- - uid: 783
+ - uid: 785
components:
- name: reporters office
type: MetaData
- pos: -24.5,9.5
parent: 2
type: Transform
- - uid: 784
+ - uid: 786
components:
- name: donk cafe
type: MetaData
@@ -15880,34 +15897,34 @@ entities:
pos: -13.5,41.5
parent: 2
type: Transform
- - uid: 785
+ - uid: 787
components:
- name: changs
type: MetaData
- pos: -23.5,41.5
parent: 2
type: Transform
- - uid: 786
+ - uid: 788
components:
- name: changs
type: MetaData
- pos: -19.5,45.5
parent: 2
type: Transform
- - uid: 787
+ - uid: 789
components:
- pos: -23.5,47.5
parent: 2
type: Transform
- proto: AirlockShuttle
entities:
- - uid: 788
+ - uid: 790
components:
- rot: -1.5707963267948966 rad
pos: -53.5,43.5
parent: 2
type: Transform
- - uid: 789
+ - uid: 791
components:
- rot: -1.5707963267948966 rad
pos: -53.5,42.5
@@ -15915,7 +15932,7 @@ entities:
type: Transform
- proto: AirlockSyndicateGlass
entities:
- - uid: 790
+ - uid: 792
components:
- rot: 1.5707963267948966 rad
pos: -53.5,-87.5
@@ -15923,21 +15940,21 @@ entities:
type: Transform
- proto: AirlockTheatreLocked
entities:
- - uid: 791
+ - uid: 793
components:
- name: theatre
type: MetaData
- pos: -1.5,-24.5
parent: 2
type: Transform
- - uid: 792
+ - uid: 794
components:
- name: recording studio
type: MetaData
- pos: -9.5,-2.5
parent: 2
type: Transform
- - uid: 793
+ - uid: 795
components:
- name: recording studio
type: MetaData
@@ -15945,7 +15962,7 @@ entities:
pos: -7.5,-7.5
parent: 2
type: Transform
- - uid: 794
+ - uid: 796
components:
- name: mime room
type: MetaData
@@ -15953,9 +15970,9 @@ entities:
parent: 2
type: Transform
- links:
- - 24133
+ - 24154
type: DeviceLinkSink
- - uid: 795
+ - uid: 797
components:
- name: clown room
type: MetaData
@@ -15963,11 +15980,11 @@ entities:
parent: 2
type: Transform
- links:
- - 24130
+ - 24151
type: DeviceLinkSink
- proto: AirlockVirologyGlass
entities:
- - uid: 796
+ - uid: 798
components:
- name: virology testing
type: MetaData
@@ -15975,28 +15992,28 @@ entities:
pos: -20.5,-83.5
parent: 2
type: Transform
- - uid: 797
+ - uid: 799
components:
- pos: -17.5,-77.5
parent: 2
type: Transform
- proto: AirlockVirologyGlassLocked
entities:
- - uid: 798
+ - uid: 800
components:
- name: zombie containment
type: MetaData
- pos: -20.5,-80.5
parent: 2
type: Transform
- - uid: 799
+ - uid: 801
components:
- name: zombie containment
type: MetaData
- pos: -18.5,-74.5
parent: 2
type: Transform
- - uid: 800
+ - uid: 802
components:
- name: virology testing
type: MetaData
@@ -16004,13 +16021,13 @@ entities:
pos: -23.5,-81.5
parent: 2
type: Transform
- - uid: 801
+ - uid: 803
components:
- rot: 3.141592653589793 rad
pos: -29.5,-72.5
parent: 2
type: Transform
- - uid: 802
+ - uid: 804
components:
- name: virology testing
type: MetaData
@@ -16018,19 +16035,19 @@ entities:
pos: -22.5,-81.5
parent: 2
type: Transform
- - uid: 803
+ - uid: 805
components:
- name: virology treatment
type: MetaData
- pos: -24.5,-74.5
parent: 2
type: Transform
- - uid: 804
+ - uid: 806
components:
- pos: -19.5,-68.5
parent: 2
type: Transform
- - uid: 805
+ - uid: 807
components:
- rot: 1.5707963267948966 rad
pos: -26.5,-73.5
@@ -16038,19 +16055,19 @@ entities:
type: Transform
- proto: AirlockVirologyLocked
entities:
- - uid: 806
+ - uid: 808
components:
- name: morgue
type: MetaData
- pos: -14.5,-68.5
parent: 2
type: Transform
- - uid: 807
+ - uid: 809
components:
- pos: -19.5,-65.5
parent: 2
type: Transform
- - uid: 808
+ - uid: 810
components:
- name: virology
type: MetaData
@@ -16060,271 +16077,271 @@ entities:
type: Transform
- proto: AirSensor
entities:
- - uid: 809
+ - uid: 811
components:
- pos: -20.5,-64.5
parent: 2
type: Transform
- - uid: 810
+ - uid: 812
components:
- pos: 22.5,-27.5
parent: 2
type: Transform
- - uid: 811
+ - uid: 813
components:
- pos: 46.5,6.5
parent: 2
type: Transform
- - uid: 812
+ - uid: 814
components:
- pos: -12.5,-49.5
parent: 2
type: Transform
- - uid: 813
+ - uid: 815
components:
- pos: -5.5,-47.5
parent: 2
type: Transform
- - uid: 814
+ - uid: 816
components:
- pos: 2.5,-42.5
parent: 2
type: Transform
- - uid: 815
+ - uid: 817
components:
- pos: 0.5,11.5
parent: 2
type: Transform
- - uid: 816
+ - uid: 818
components:
- pos: -3.5,-53.5
parent: 2
type: Transform
- - uid: 817
+ - uid: 819
components:
- pos: 0.5,-60.5
parent: 2
type: Transform
- - uid: 818
+ - uid: 820
components:
- pos: 25.5,-42.5
parent: 2
type: Transform
- - uid: 819
+ - uid: 821
components:
- pos: -11.5,-57.5
parent: 2
type: Transform
- - uid: 820
+ - uid: 822
components:
- pos: 28.5,-28.5
parent: 2
type: Transform
- - uid: 821
+ - uid: 823
components:
- pos: 36.5,-27.5
parent: 2
type: Transform
- - uid: 822
+ - uid: 824
components:
- pos: -20.5,-67.5
parent: 2
type: Transform
- - uid: 823
+ - uid: 825
components:
- pos: -18.5,-71.5
parent: 2
type: Transform
- - uid: 824
+ - uid: 826
components:
- pos: -25.5,-80.5
parent: 2
type: Transform
- - uid: 825
+ - uid: 827
components:
- pos: -19.5,-79.5
parent: 2
type: Transform
- - uid: 826
+ - uid: 828
components:
- pos: -20.5,-86.5
parent: 2
type: Transform
- - uid: 827
+ - uid: 829
components:
- pos: -6.5,-64.5
parent: 2
type: Transform
- - uid: 828
+ - uid: 830
components:
- pos: -3.5,-63.5
parent: 2
type: Transform
- - uid: 829
+ - uid: 831
components:
- pos: 4.5,-65.5
parent: 2
type: Transform
- - uid: 830
+ - uid: 832
components:
- pos: 8.5,-60.5
parent: 2
type: Transform
- - uid: 831
+ - uid: 833
components:
- pos: 6.5,-49.5
parent: 2
type: Transform
- - uid: 832
+ - uid: 834
components:
- pos: -10.5,-38.5
parent: 2
type: Transform
- - uid: 833
+ - uid: 835
components:
- pos: -9.5,-33.5
parent: 2
type: Transform
- - uid: 834
+ - uid: 836
components:
- pos: -9.5,-23.5
parent: 2
type: Transform
- - uid: 835
+ - uid: 837
components:
- pos: 14.5,-27.5
parent: 2
type: Transform
- - uid: 836
+ - uid: 838
components:
- pos: 6.5,-27.5
parent: 2
type: Transform
- - uid: 837
+ - uid: 839
components:
- pos: -5.5,-28.5
parent: 2
type: Transform
- - uid: 838
+ - uid: 840
components:
- pos: -3.5,-7.5
parent: 2
type: Transform
- - uid: 839
+ - uid: 841
components:
- pos: -5.5,2.5
parent: 2
type: Transform
- - uid: 840
+ - uid: 842
components:
- pos: 6.5,-0.5
parent: 2
type: Transform
- - uid: 841
+ - uid: 843
components:
- pos: 11.5,11.5
parent: 2
type: Transform
- - uid: 842
+ - uid: 844
components:
- pos: 4.5,13.5
parent: 2
type: Transform
- - uid: 843
+ - uid: 845
components:
- pos: 6.5,7.5
parent: 2
type: Transform
- - uid: 844
+ - uid: 846
components:
- pos: -2.5,10.5
parent: 2
type: Transform
- - uid: 845
+ - uid: 847
components:
- pos: -10.5,6.5
parent: 2
type: Transform
- ShutdownSubscribers:
- - 14700
+ - 14702
type: DeviceNetwork
- - uid: 846
+ - uid: 848
components:
- pos: 7.5,19.5
parent: 2
type: Transform
- - uid: 847
+ - uid: 849
components:
- pos: 18.5,20.5
parent: 2
type: Transform
- - uid: 848
+ - uid: 850
components:
- pos: 11.5,22.5
parent: 2
type: Transform
- - uid: 849
+ - uid: 851
components:
- pos: 20.5,20.5
parent: 2
type: Transform
- - uid: 850
+ - uid: 852
components:
- pos: 51.5,1.5
parent: 2
type: Transform
- - uid: 851
+ - uid: 853
components:
- pos: 35.5,15.5
parent: 2
type: Transform
- - uid: 852
+ - uid: 854
components:
- rot: -1.5707963267948966 rad
pos: 62.5,-8.5
parent: 2
type: Transform
- - uid: 853
+ - uid: 855
components:
- pos: 26.5,-59.5
parent: 2
type: Transform
- - uid: 854
+ - uid: 856
components:
- rot: 1.5707963267948966 rad
pos: 48.5,14.5
parent: 2
type: Transform
- - uid: 855
+ - uid: 857
components:
- rot: 1.5707963267948966 rad
pos: 39.5,-73.5
parent: 2
type: Transform
- - uid: 856
+ - uid: 858
components:
- rot: 1.5707963267948966 rad
pos: 39.5,-59.5
parent: 2
type: Transform
- - uid: 857
+ - uid: 859
components:
- rot: 1.5707963267948966 rad
pos: 49.5,-54.5
parent: 2
type: Transform
- - uid: 858
+ - uid: 860
components:
- rot: 1.5707963267948966 rad
pos: 50.5,-39.5
parent: 2
type: Transform
- - uid: 859
+ - uid: 861
components:
- pos: -21.5,56.5
parent: 2
type: Transform
- - uid: 860
+ - uid: 862
components:
- pos: -13.5,63.5
parent: 2
@@ -16332,380 +16349,380 @@ entities:
- ShutdownSubscribers:
- 74
type: DeviceNetwork
- - uid: 861
+ - uid: 863
components:
- pos: -2.5,59.5
parent: 2
type: Transform
- - uid: 862
+ - uid: 864
components:
- pos: -47.5,15.5
parent: 2
type: Transform
- - uid: 863
+ - uid: 865
components:
- pos: -17.5,-4.5
parent: 2
type: Transform
- - uid: 864
+ - uid: 866
components:
- pos: 23.5,-5.5
parent: 2
type: Transform
- - uid: 865
+ - uid: 867
components:
- pos: 16.5,3.5
parent: 2
type: Transform
- - uid: 866
+ - uid: 868
components:
- pos: 24.5,6.5
parent: 2
type: Transform
- - uid: 867
+ - uid: 869
components:
- pos: 32.5,-0.5
parent: 2
type: Transform
- - uid: 868
+ - uid: 870
components:
- pos: 25.5,17.5
parent: 2
type: Transform
- - uid: 869
+ - uid: 871
components:
- pos: 17.5,17.5
parent: 2
type: Transform
- - uid: 870
+ - uid: 872
components:
- rot: 3.141592653589793 rad
pos: -24.5,-11.5
parent: 2
type: Transform
- - uid: 871
+ - uid: 873
components:
- rot: 3.141592653589793 rad
pos: -19.5,-17.5
parent: 2
type: Transform
- - uid: 872
+ - uid: 874
components:
- pos: -32.5,-14.5
parent: 2
type: Transform
- - uid: 873
+ - uid: 875
components:
- pos: 18.5,-53.5
parent: 2
type: Transform
- - uid: 874
+ - uid: 876
components:
- rot: 1.5707963267948966 rad
pos: -37.5,-42.5
parent: 2
type: Transform
- - uid: 875
+ - uid: 877
components:
- rot: 3.141592653589793 rad
pos: -36.5,-35.5
parent: 2
type: Transform
- - uid: 876
+ - uid: 878
components:
- rot: 3.141592653589793 rad
pos: -30.5,-35.5
parent: 2
type: Transform
- - uid: 877
+ - uid: 879
components:
- rot: 3.141592653589793 rad
pos: -24.5,-32.5
parent: 2
type: Transform
- - uid: 878
+ - uid: 880
components:
- pos: -20.5,-28.5
parent: 2
type: Transform
- - uid: 879
+ - uid: 881
components:
- pos: 21.5,-25.5
parent: 2
type: Transform
- - uid: 880
+ - uid: 882
components:
- pos: 32.5,-17.5
parent: 2
type: Transform
- - uid: 881
+ - uid: 883
components:
- pos: 21.5,-14.5
parent: 2
type: Transform
- - uid: 882
+ - uid: 884
components:
- pos: 41.5,-24.5
parent: 2
type: Transform
- - uid: 883
+ - uid: 885
components:
- pos: -36.5,0.5
parent: 2
type: Transform
- - uid: 884
+ - uid: 886
components:
- pos: -45.5,7.5
parent: 2
type: Transform
- - uid: 885
+ - uid: 887
components:
- pos: -48.5,11.5
parent: 2
type: Transform
- - uid: 886
+ - uid: 888
components:
- pos: -43.5,24.5
parent: 2
type: Transform
- - uid: 887
+ - uid: 889
components:
- pos: -43.5,30.5
parent: 2
type: Transform
- - uid: 888
+ - uid: 890
components:
- pos: -31.5,23.5
parent: 2
type: Transform
- - uid: 889
+ - uid: 891
components:
- pos: -24.5,20.5
parent: 2
type: Transform
- - uid: 890
+ - uid: 892
components:
- pos: -19.5,21.5
parent: 2
type: Transform
- - uid: 891
+ - uid: 893
components:
- rot: 1.5707963267948966 rad
pos: -73.5,-25.5
parent: 2
type: Transform
- - uid: 892
+ - uid: 894
components:
- rot: 1.5707963267948966 rad
pos: -54.5,-24.5
parent: 2
type: Transform
- - uid: 893
+ - uid: 895
components:
- rot: 1.5707963267948966 rad
pos: -54.5,-10.5
parent: 2
type: Transform
- - uid: 894
+ - uid: 896
components:
- rot: 1.5707963267948966 rad
pos: -34.5,-6.5
parent: 2
type: Transform
- - uid: 895
+ - uid: 897
components:
- pos: -32.5,-23.5
parent: 2
type: Transform
- - uid: 896
+ - uid: 898
components:
- pos: 44.5,-37.5
parent: 2
type: Transform
- - uid: 897
+ - uid: 899
components:
- pos: 42.5,-43.5
parent: 2
type: Transform
- - uid: 898
+ - uid: 900
components:
- pos: 59.5,-47.5
parent: 2
type: Transform
- - uid: 899
+ - uid: 901
components:
- pos: 63.5,-51.5
parent: 2
type: Transform
- - uid: 900
+ - uid: 902
components:
- pos: 59.5,-35.5
parent: 2
type: Transform
- - uid: 901
+ - uid: 903
components:
- pos: 70.5,-47.5
parent: 2
type: Transform
- - uid: 902
+ - uid: 904
components:
- pos: -55.5,-75.5
parent: 2
type: Transform
- - uid: 903
+ - uid: 905
components:
- pos: -38.5,-80.5
parent: 2
type: Transform
- - uid: 904
+ - uid: 906
components:
- pos: -31.5,-71.5
parent: 2
type: Transform
- - uid: 905
+ - uid: 907
components:
- pos: -23.5,-61.5
parent: 2
type: Transform
- - uid: 906
+ - uid: 908
components:
- pos: 42.5,-42.5
parent: 2
type: Transform
- - uid: 907
+ - uid: 909
components:
- pos: 30.5,-83.5
parent: 2
type: Transform
- - uid: 908
+ - uid: 910
components:
- pos: -17.5,66.5
parent: 2
type: Transform
- - uid: 909
+ - uid: 911
components:
- pos: 64.5,-2.5
parent: 2
type: Transform
- - uid: 910
+ - uid: 912
components:
- rot: 1.5707963267948966 rad
pos: -16.5,45.5
parent: 2
type: Transform
- - uid: 911
+ - uid: 913
components:
- rot: 1.5707963267948966 rad
pos: -3.5,45.5
parent: 2
type: Transform
- - uid: 912
+ - uid: 914
components:
- rot: 1.5707963267948966 rad
pos: 40.5,47.5
parent: 2
type: Transform
- - uid: 913
+ - uid: 915
components:
- pos: -33.5,-96.5
parent: 2
type: Transform
- - uid: 914
+ - uid: 916
components:
- pos: 48.5,-83.5
parent: 2
type: Transform
- - uid: 915
+ - uid: 917
components:
- pos: 49.5,-72.5
parent: 2
type: Transform
- - uid: 916
+ - uid: 918
components:
- rot: 3.141592653589793 rad
pos: 72.5,-34.5
parent: 2
type: Transform
- - uid: 917
+ - uid: 919
components:
- pos: 62.5,-36.5
parent: 2
type: Transform
- - uid: 918
+ - uid: 920
components:
- rot: 3.141592653589793 rad
pos: 4.5,-33.5
parent: 2
type: Transform
- - uid: 919
+ - uid: 921
components:
- pos: -28.5,-13.5
parent: 2
type: Transform
- - uid: 920
+ - uid: 922
components:
- rot: 1.5707963267948966 rad
pos: -0.5,18.5
parent: 2
type: Transform
- - uid: 921
+ - uid: 923
components:
- pos: -11.5,-19.5
parent: 2
type: Transform
- - uid: 922
+ - uid: 924
components:
- pos: -9.5,-14.5
parent: 2
type: Transform
- - uid: 923
+ - uid: 925
components:
- pos: -29.5,-74.5
parent: 2
type: Transform
- - uid: 924
+ - uid: 926
components:
- pos: 25.5,-72.5
parent: 2
type: Transform
- - uid: 925
+ - uid: 927
components:
- pos: 15.5,-86.5
parent: 2
type: Transform
- - uid: 926
+ - uid: 928
components:
- pos: 27.5,2.5
parent: 2
type: Transform
- - uid: 927
+ - uid: 929
components:
- rot: -1.5707963267948966 rad
pos: -45.5,32.5
parent: 2
type: Transform
- - uid: 928
+ - uid: 930
components:
- rot: -1.5707963267948966 rad
pos: -46.5,42.5
parent: 2
type: Transform
- - uid: 929
+ - uid: 931
components:
- pos: -5.5,15.5
parent: 2
type: Transform
- ShutdownSubscribers:
- 95
- - 14699
+ - 14701
type: DeviceNetwork
- - uid: 930
+ - uid: 932
components:
- rot: 3.141592653589793 rad
pos: -71.5,-38.5
parent: 2
type: Transform
- - uid: 931
+ - uid: 933
components:
- rot: 3.141592653589793 rad
pos: -77.5,-41.5
@@ -16714,7 +16731,7 @@ entities:
- ShutdownSubscribers:
- 97
type: DeviceNetwork
- - uid: 932
+ - uid: 934
components:
- rot: 1.5707963267948966 rad
pos: -44.5,-34.5
@@ -16723,25 +16740,25 @@ entities:
- ShutdownSubscribers:
- 98
type: DeviceNetwork
- - uid: 933
+ - uid: 935
components:
- pos: -1.5,-4.5
parent: 2
type: Transform
- ShutdownSubscribers:
- 100
- - 14703
+ - 14705
type: DeviceNetwork
- - uid: 934
+ - uid: 936
components:
- pos: 1.5,-7.5
parent: 2
type: Transform
- ShutdownSubscribers:
- - 14702
+ - 14704
- 99
type: DeviceNetwork
- - uid: 935
+ - uid: 937
components:
- rot: -1.5707963267948966 rad
pos: -1.5,-19.5
@@ -16749,303 +16766,303 @@ entities:
type: Transform
- ShutdownSubscribers:
- 101
- - 14704
+ - 14706
type: DeviceNetwork
- - uid: 936
+ - uid: 938
components:
- pos: 25.5,-37.5
parent: 2
type: Transform
- ShutdownSubscribers:
- 79
- - 14705
+ - 14707
type: DeviceNetwork
- proto: AltarConvertRed
entities:
- - uid: 937
+ - uid: 939
components:
- pos: -37.5,14.5
parent: 2
type: Transform
- - uid: 938
+ - uid: 940
components:
- pos: -38.5,14.5
parent: 2
type: Transform
- proto: AltarSpawner
entities:
- - uid: 939
+ - uid: 941
components:
- pos: 45.5,47.5
parent: 2
type: Transform
- proto: AltarToolbox
entities:
- - uid: 940
+ - uid: 942
components:
- pos: 61.5,-69.5
parent: 2
type: Transform
- proto: AmeController
entities:
- - uid: 941
+ - uid: 943
components:
- pos: -46.5,-16.5
parent: 2
type: Transform
- proto: AmeJar
entities:
- - uid: 942
+ - uid: 944
components:
- pos: -49.455143,64.63223
parent: 2
type: Transform
- - uid: 943
+ - uid: 945
components:
- pos: 20.471298,55.773235
parent: 2
type: Transform
- proto: AmePart
entities:
- - uid: 944
+ - uid: 946
components:
- pos: 19.423536,55.353977
parent: 2
type: Transform
- - uid: 945
+ - uid: 947
components:
- pos: 19.173536,54.619602
parent: 2
type: Transform
- - uid: 946
+ - uid: 948
components:
- pos: 18.376661,54.494602
parent: 2
type: Transform
- proto: AnomalyScanner
entities:
- - uid: 947
+ - uid: 949
components:
- pos: 63.468235,-36.25785
parent: 2
type: Transform
- - uid: 948
+ - uid: 950
components:
- pos: 63.686985,-36.460976
parent: 2
type: Transform
- proto: AnomalyVesselCircuitboard
entities:
- - uid: 949
+ - uid: 951
components:
- pos: 64.46823,-36.460976
parent: 2
type: Transform
- proto: APCBasic
entities:
- - uid: 950
+ - uid: 952
components:
- rot: 1.5707963267948966 rad
pos: 21.5,-39.5
parent: 2
type: Transform
- - uid: 951
+ - uid: 953
components:
- pos: 21.5,15.5
parent: 2
type: Transform
- - uid: 952
+ - uid: 954
components:
- rot: -1.5707963267948966 rad
pos: 31.5,2.5
parent: 2
type: Transform
- - uid: 953
+ - uid: 955
components:
- pos: -10.5,-20.5
parent: 2
type: Transform
- - uid: 954
+ - uid: 956
components:
- rot: -1.5707963267948966 rad
pos: 43.5,-26.5
parent: 2
type: Transform
- - uid: 955
+ - uid: 957
components:
- rot: -1.5707963267948966 rad
pos: -13.5,42.5
parent: 2
type: Transform
- - uid: 956
+ - uid: 958
components:
- pos: 49.5,3.5
parent: 2
type: Transform
- - uid: 957
+ - uid: 959
components:
- pos: 59.5,-4.5
parent: 2
type: Transform
- - uid: 958
+ - uid: 960
components:
- pos: 48.5,-48.5
parent: 2
type: Transform
- - uid: 959
+ - uid: 961
components:
- pos: -20.5,0.5
parent: 2
type: Transform
- - uid: 960
+ - uid: 962
components:
- pos: 37.5,-57.5
parent: 2
type: Transform
- - uid: 961
+ - uid: 963
components:
- pos: -56.5,-85.5
parent: 2
type: Transform
- - uid: 962
+ - uid: 964
components:
- pos: -39.5,-69.5
parent: 2
type: Transform
- - uid: 963
+ - uid: 965
components:
- pos: 52.5,38.5
parent: 2
type: Transform
- - uid: 964
+ - uid: 966
components:
- pos: -8.5,60.5
parent: 2
type: Transform
- - uid: 965
+ - uid: 967
components:
- pos: 55.5,-62.5
parent: 2
type: Transform
- - uid: 966
+ - uid: 968
components:
- pos: 11.5,-18.5
parent: 2
type: Transform
- - uid: 967
+ - uid: 969
components:
- rot: 3.141592653589793 rad
pos: 37.5,13.5
parent: 2
type: Transform
- - uid: 968
+ - uid: 970
components:
- pos: -74.5,-50.5
parent: 2
type: Transform
- proto: APCHighCapacity
entities:
- - uid: 969
+ - uid: 971
components:
- pos: 0.5,35.5
parent: 2
type: Transform
- - uid: 970
+ - uid: 972
components:
- pos: 24.5,24.5
parent: 2
type: Transform
- - uid: 971
+ - uid: 973
components:
- pos: -21.5,-68.5
parent: 2
type: Transform
- - uid: 972
+ - uid: 974
components:
- pos: 0.5,-40.5
parent: 2
type: Transform
- - uid: 973
+ - uid: 975
components:
- pos: 19.5,-51.5
parent: 2
type: Transform
- - uid: 974
+ - uid: 976
components:
- pos: -10.5,-58.5
parent: 2
type: Transform
- - uid: 975
+ - uid: 977
components:
- pos: 8.5,-3.5
parent: 2
type: Transform
- - uid: 976
+ - uid: 978
components:
- pos: 1.5,10.5
parent: 2
type: Transform
- - uid: 977
+ - uid: 979
components:
- pos: 21.5,-9.5
parent: 2
type: Transform
- - uid: 978
+ - uid: 980
components:
- pos: 58.5,11.5
parent: 2
type: Transform
- - uid: 979
+ - uid: 981
components:
- pos: 55.5,-43.5
parent: 2
type: Transform
- - uid: 980
+ - uid: 982
components:
- pos: -50.5,-15.5
parent: 2
type: Transform
- - uid: 981
+ - uid: 983
components:
- pos: -35.5,-31.5
parent: 2
type: Transform
- - uid: 982
+ - uid: 984
components:
- pos: -29.5,-64.5
parent: 2
type: Transform
- - uid: 983
+ - uid: 985
components:
- pos: 29.5,-26.5
parent: 2
type: Transform
- - uid: 984
+ - uid: 986
components:
- pos: -23.5,26.5
parent: 2
type: Transform
- - uid: 985
+ - uid: 987
components:
- pos: -42.5,2.5
parent: 2
type: Transform
- - uid: 986
+ - uid: 988
components:
- pos: -29.5,-8.5
parent: 2
type: Transform
- - uid: 987
+ - uid: 989
components:
- pos: 71.5,-42.5
parent: 2
type: Transform
- - uid: 988
+ - uid: 990
components:
- pos: -66.5,-35.5
parent: 2
type: Transform
- - uid: 989
+ - uid: 991
components:
- rot: 1.5707963267948966 rad
pos: 0.5,-6.5
@@ -17053,3703 +17070,3703 @@ entities:
type: Transform
- proto: APCSuperCapacity
entities:
- - uid: 990
+ - uid: 992
components:
- pos: -3.5,-68.5
parent: 2
type: Transform
- - uid: 991
+ - uid: 993
components:
- pos: -2.5,-51.5
parent: 2
type: Transform
- proto: AppraisalTool
entities:
- - uid: 992
+ - uid: 994
components:
- pos: -38.189224,18.730852
parent: 2
type: Transform
- - uid: 993
+ - uid: 995
components:
- pos: -38.01735,18.465227
parent: 2
type: Transform
- proto: AsteroidRock
entities:
- - uid: 994
+ - uid: 996
components:
- pos: 67.5,51.5
parent: 2
type: Transform
- - uid: 995
+ - uid: 997
components:
- pos: 70.5,47.5
parent: 2
type: Transform
- - uid: 996
+ - uid: 998
components:
- pos: 12.5,58.5
parent: 2
type: Transform
- - uid: 997
+ - uid: 999
components:
- pos: 72.5,-73.5
parent: 2
type: Transform
- - uid: 998
+ - uid: 1000
components:
- pos: 73.5,-71.5
parent: 2
type: Transform
- - uid: 999
+ - uid: 1001
components:
- pos: 70.5,48.5
parent: 2
type: Transform
- - uid: 1000
+ - uid: 1002
components:
- pos: 9.5,58.5
parent: 2
type: Transform
- - uid: 1001
+ - uid: 1003
components:
- pos: 66.5,51.5
parent: 2
type: Transform
- - uid: 1002
+ - uid: 1004
components:
- pos: 69.5,51.5
parent: 2
type: Transform
- - uid: 1003
+ - uid: 1005
components:
- pos: 68.5,51.5
parent: 2
type: Transform
- - uid: 1004
+ - uid: 1006
components:
- pos: 72.5,-72.5
parent: 2
type: Transform
- - uid: 1005
+ - uid: 1007
components:
- pos: 75.5,-69.5
parent: 2
type: Transform
- - uid: 1006
+ - uid: 1008
components:
- pos: 76.5,-70.5
parent: 2
type: Transform
- - uid: 1007
+ - uid: 1009
components:
- pos: 77.5,-70.5
parent: 2
type: Transform
- - uid: 1008
+ - uid: 1010
components:
- pos: 74.5,-70.5
parent: 2
type: Transform
- - uid: 1009
+ - uid: 1011
components:
- pos: 14.5,52.5
parent: 2
type: Transform
- - uid: 1010
+ - uid: 1012
components:
- pos: 11.5,58.5
parent: 2
type: Transform
- - uid: 1011
+ - uid: 1013
components:
- pos: -55.5,70.5
parent: 2
type: Transform
- - uid: 1012
+ - uid: 1014
components:
- pos: -41.5,65.5
parent: 2
type: Transform
- - uid: 1013
+ - uid: 1015
components:
- pos: -36.5,68.5
parent: 2
type: Transform
- - uid: 1014
+ - uid: 1016
components:
- pos: -39.5,69.5
parent: 2
type: Transform
- - uid: 1015
+ - uid: 1017
components:
- pos: -54.5,71.5
parent: 2
type: Transform
- - uid: 1016
+ - uid: 1018
components:
- pos: -46.5,59.5
parent: 2
type: Transform
- - uid: 1017
+ - uid: 1019
components:
- pos: -49.5,67.5
parent: 2
type: Transform
- - uid: 1018
+ - uid: 1020
components:
- pos: -46.5,66.5
parent: 2
type: Transform
- - uid: 1019
+ - uid: 1021
components:
- pos: -48.5,61.5
parent: 2
type: Transform
- - uid: 1020
+ - uid: 1022
components:
- pos: -58.5,65.5
parent: 2
type: Transform
- - uid: 1021
+ - uid: 1023
components:
- pos: -49.5,66.5
parent: 2
type: Transform
- - uid: 1022
+ - uid: 1024
components:
- pos: -47.5,66.5
parent: 2
type: Transform
- - uid: 1023
+ - uid: 1025
components:
- pos: -48.5,55.5
parent: 2
type: Transform
- - uid: 1024
+ - uid: 1026
components:
- pos: -58.5,64.5
parent: 2
type: Transform
- - uid: 1025
+ - uid: 1027
components:
- pos: -48.5,67.5
parent: 2
type: Transform
- - uid: 1026
+ - uid: 1028
components:
- pos: -48.5,66.5
parent: 2
type: Transform
- - uid: 1027
+ - uid: 1029
components:
- pos: -51.5,56.5
parent: 2
type: Transform
- - uid: 1028
+ - uid: 1030
components:
- pos: -58.5,66.5
parent: 2
type: Transform
- - uid: 1029
+ - uid: 1031
components:
- pos: -58.5,67.5
parent: 2
type: Transform
- - uid: 1030
+ - uid: 1032
components:
- pos: -56.5,70.5
parent: 2
type: Transform
- - uid: 1031
+ - uid: 1033
components:
- pos: -43.5,60.5
parent: 2
type: Transform
- - uid: 1032
+ - uid: 1034
components:
- pos: -43.5,57.5
parent: 2
type: Transform
- - uid: 1033
+ - uid: 1035
components:
- pos: -43.5,58.5
parent: 2
type: Transform
- - uid: 1034
+ - uid: 1036
components:
- pos: -46.5,63.5
parent: 2
type: Transform
- - uid: 1035
+ - uid: 1037
components:
- pos: -47.5,64.5
parent: 2
type: Transform
- - uid: 1036
+ - uid: 1038
components:
- pos: -45.5,64.5
parent: 2
type: Transform
- - uid: 1037
+ - uid: 1039
components:
- pos: -41.5,67.5
parent: 2
type: Transform
- - uid: 1038
+ - uid: 1040
components:
- pos: -43.5,55.5
parent: 2
type: Transform
- - uid: 1039
+ - uid: 1041
components:
- pos: -43.5,54.5
parent: 2
type: Transform
- - uid: 1040
+ - uid: 1042
components:
- pos: -41.5,55.5
parent: 2
type: Transform
- - uid: 1041
+ - uid: 1043
components:
- pos: -42.5,66.5
parent: 2
type: Transform
- - uid: 1042
+ - uid: 1044
components:
- pos: -47.5,63.5
parent: 2
type: Transform
- - uid: 1043
+ - uid: 1045
components:
- pos: -43.5,67.5
parent: 2
type: Transform
- - uid: 1044
+ - uid: 1046
components:
- pos: -43.5,65.5
parent: 2
type: Transform
- - uid: 1045
+ - uid: 1047
components:
- pos: -51.5,65.5
parent: 2
type: Transform
- - uid: 1046
+ - uid: 1048
components:
- pos: -42.5,55.5
parent: 2
type: Transform
- - uid: 1047
+ - uid: 1049
components:
- pos: -42.5,65.5
parent: 2
type: Transform
- - uid: 1048
+ - uid: 1050
components:
- pos: -45.5,63.5
parent: 2
type: Transform
- - uid: 1049
+ - uid: 1051
components:
- pos: -39.5,65.5
parent: 2
type: Transform
- - uid: 1050
+ - uid: 1052
components:
- pos: -43.5,66.5
parent: 2
type: Transform
- - uid: 1051
+ - uid: 1053
components:
- pos: -40.5,54.5
parent: 2
type: Transform
- - uid: 1052
+ - uid: 1054
components:
- pos: -53.5,65.5
parent: 2
type: Transform
- - uid: 1053
+ - uid: 1055
components:
- pos: -37.5,66.5
parent: 2
type: Transform
- - uid: 1054
+ - uid: 1056
components:
- pos: -37.5,65.5
parent: 2
type: Transform
- - uid: 1055
+ - uid: 1057
components:
- pos: -38.5,65.5
parent: 2
type: Transform
- - uid: 1056
+ - uid: 1058
components:
- pos: -39.5,55.5
parent: 2
type: Transform
- - uid: 1057
+ - uid: 1059
components:
- pos: -40.5,55.5
parent: 2
type: Transform
- - uid: 1058
+ - uid: 1060
components:
- pos: -44.5,63.5
parent: 2
type: Transform
- - uid: 1059
+ - uid: 1061
components:
- pos: -37.5,67.5
parent: 2
type: Transform
- - uid: 1060
+ - uid: 1062
components:
- pos: -36.5,65.5
parent: 2
type: Transform
- - uid: 1061
+ - uid: 1063
components:
- pos: -44.5,65.5
parent: 2
type: Transform
- - uid: 1062
+ - uid: 1064
components:
- pos: -54.5,66.5
parent: 2
type: Transform
- - uid: 1063
+ - uid: 1065
components:
- pos: -55.5,69.5
parent: 2
type: Transform
- - uid: 1064
+ - uid: 1066
components:
- pos: -55.5,71.5
parent: 2
type: Transform
- - uid: 1065
+ - uid: 1067
components:
- pos: -54.5,65.5
parent: 2
type: Transform
- - uid: 1066
+ - uid: 1068
components:
- pos: -43.5,61.5
parent: 2
type: Transform
- - uid: 1067
+ - uid: 1069
components:
- pos: -37.5,68.5
parent: 2
type: Transform
- - uid: 1068
+ - uid: 1070
components:
- pos: -41.5,69.5
parent: 2
type: Transform
- - uid: 1069
+ - uid: 1071
components:
- pos: -44.5,58.5
parent: 2
type: Transform
- - uid: 1070
+ - uid: 1072
components:
- pos: -54.5,69.5
parent: 2
type: Transform
- - uid: 1071
+ - uid: 1073
components:
- pos: -45.5,59.5
parent: 2
type: Transform
- - uid: 1072
+ - uid: 1074
components:
- pos: -45.5,61.5
parent: 2
type: Transform
- - uid: 1073
+ - uid: 1075
components:
- pos: -37.5,69.5
parent: 2
type: Transform
- - uid: 1074
+ - uid: 1076
components:
- pos: -40.5,69.5
parent: 2
type: Transform
- - uid: 1075
+ - uid: 1077
components:
- pos: -42.5,60.5
parent: 2
type: Transform
- - uid: 1076
+ - uid: 1078
components:
- pos: -42.5,59.5
parent: 2
type: Transform
- - uid: 1077
+ - uid: 1079
components:
- pos: -50.5,66.5
parent: 2
type: Transform
- - uid: 1078
+ - uid: 1080
components:
- pos: -50.5,69.5
parent: 2
type: Transform
- - uid: 1079
+ - uid: 1081
components:
- pos: -50.5,65.5
parent: 2
type: Transform
- - uid: 1080
+ - uid: 1082
components:
- pos: -48.5,65.5
parent: 2
type: Transform
- - uid: 1081
+ - uid: 1083
components:
- pos: -50.5,68.5
parent: 2
type: Transform
- - uid: 1082
+ - uid: 1084
components:
- pos: -48.5,64.5
parent: 2
type: Transform
- - uid: 1083
+ - uid: 1085
components:
- pos: -50.5,67.5
parent: 2
type: Transform
- - uid: 1084
+ - uid: 1086
components:
- pos: -40.5,65.5
parent: 2
type: Transform
- - uid: 1085
+ - uid: 1087
components:
- pos: -41.5,66.5
parent: 2
type: Transform
- - uid: 1086
+ - uid: 1088
components:
- pos: -40.5,66.5
parent: 2
type: Transform
- - uid: 1087
+ - uid: 1089
components:
- pos: -39.5,66.5
parent: 2
type: Transform
- - uid: 1088
+ - uid: 1090
components:
- pos: -40.5,67.5
parent: 2
type: Transform
- - uid: 1089
+ - uid: 1091
components:
- pos: -39.5,67.5
parent: 2
type: Transform
- - uid: 1090
+ - uid: 1092
components:
- pos: -38.5,66.5
parent: 2
type: Transform
- - uid: 1091
+ - uid: 1093
components:
- pos: -38.5,67.5
parent: 2
type: Transform
- - uid: 1092
+ - uid: 1094
components:
- pos: -45.5,67.5
parent: 2
type: Transform
- - uid: 1093
+ - uid: 1095
components:
- pos: -44.5,66.5
parent: 2
type: Transform
- - uid: 1094
+ - uid: 1096
components:
- pos: -40.5,68.5
parent: 2
type: Transform
- - uid: 1095
+ - uid: 1097
components:
- pos: -44.5,67.5
parent: 2
type: Transform
- - uid: 1096
+ - uid: 1098
components:
- pos: -39.5,68.5
parent: 2
type: Transform
- - uid: 1097
+ - uid: 1099
components:
- pos: -41.5,70.5
parent: 2
type: Transform
- - uid: 1098
+ - uid: 1100
components:
- pos: -36.5,66.5
parent: 2
type: Transform
- - uid: 1099
+ - uid: 1101
components:
- pos: -36.5,67.5
parent: 2
type: Transform
- - uid: 1100
+ - uid: 1102
components:
- pos: -35.5,65.5
parent: 2
type: Transform
- - uid: 1101
+ - uid: 1103
components:
- pos: -38.5,69.5
parent: 2
type: Transform
- - uid: 1102
+ - uid: 1104
components:
- pos: -45.5,66.5
parent: 2
type: Transform
- - uid: 1103
+ - uid: 1105
components:
- pos: -45.5,65.5
parent: 2
type: Transform
- - uid: 1104
+ - uid: 1106
components:
- pos: -38.5,68.5
parent: 2
type: Transform
- - uid: 1105
+ - uid: 1107
components:
- pos: -40.5,70.5
parent: 2
type: Transform
- - uid: 1106
+ - uid: 1108
components:
- pos: -41.5,68.5
parent: 2
type: Transform
- - uid: 1107
+ - uid: 1109
components:
- pos: -46.5,67.5
parent: 2
type: Transform
- - uid: 1108
+ - uid: 1110
components:
- pos: -44.5,69.5
parent: 2
type: Transform
- - uid: 1109
+ - uid: 1111
components:
- pos: -43.5,70.5
parent: 2
type: Transform
- - uid: 1110
+ - uid: 1112
components:
- pos: -46.5,58.5
parent: 2
type: Transform
- - uid: 1111
+ - uid: 1113
components:
- pos: -44.5,70.5
parent: 2
type: Transform
- - uid: 1112
+ - uid: 1114
components:
- pos: -44.5,68.5
parent: 2
type: Transform
- - uid: 1113
+ - uid: 1115
components:
- pos: -45.5,69.5
parent: 2
type: Transform
- - uid: 1114
+ - uid: 1116
components:
- pos: -47.5,54.5
parent: 2
type: Transform
- - uid: 1115
+ - uid: 1117
components:
- pos: -45.5,68.5
parent: 2
type: Transform
- - uid: 1116
+ - uid: 1118
components:
- pos: -57.5,64.5
parent: 2
type: Transform
- - uid: 1117
+ - uid: 1119
components:
- pos: -57.5,65.5
parent: 2
type: Transform
- - uid: 1118
+ - uid: 1120
components:
- pos: -57.5,66.5
parent: 2
type: Transform
- - uid: 1119
+ - uid: 1121
components:
- pos: -52.5,66.5
parent: 2
type: Transform
- - uid: 1120
+ - uid: 1122
components:
- pos: -38.5,64.5
parent: 2
type: Transform
- - uid: 1121
+ - uid: 1123
components:
- pos: -42.5,68.5
parent: 2
type: Transform
- - uid: 1122
+ - uid: 1124
components:
- pos: -39.5,64.5
parent: 2
type: Transform
- - uid: 1123
+ - uid: 1125
components:
- pos: -43.5,59.5
parent: 2
type: Transform
- - uid: 1124
+ - uid: 1126
components:
- pos: -51.5,68.5
parent: 2
type: Transform
- - uid: 1125
+ - uid: 1127
components:
- pos: -43.5,68.5
parent: 2
type: Transform
- - uid: 1126
+ - uid: 1128
components:
- pos: -42.5,70.5
parent: 2
type: Transform
- - uid: 1127
+ - uid: 1129
components:
- pos: -43.5,69.5
parent: 2
type: Transform
- - uid: 1128
+ - uid: 1130
components:
- pos: -43.5,56.5
parent: 2
type: Transform
- - uid: 1129
+ - uid: 1131
components:
- pos: -35.5,67.5
parent: 2
type: Transform
- - uid: 1130
+ - uid: 1132
components:
- pos: -47.5,59.5
parent: 2
type: Transform
- - uid: 1131
+ - uid: 1133
components:
- pos: -42.5,69.5
parent: 2
type: Transform
- - uid: 1132
+ - uid: 1134
components:
- pos: -46.5,61.5
parent: 2
type: Transform
- - uid: 1133
+ - uid: 1135
components:
- pos: -45.5,62.5
parent: 2
type: Transform
- - uid: 1134
+ - uid: 1136
components:
- pos: -47.5,62.5
parent: 2
type: Transform
- - uid: 1135
+ - uid: 1137
components:
- pos: -48.5,63.5
parent: 2
type: Transform
- - uid: 1136
+ - uid: 1138
components:
- pos: -44.5,62.5
parent: 2
type: Transform
- - uid: 1137
+ - uid: 1139
components:
- pos: -48.5,59.5
parent: 2
type: Transform
- - uid: 1138
+ - uid: 1140
components:
- pos: -48.5,58.5
parent: 2
type: Transform
- - uid: 1139
+ - uid: 1141
components:
- pos: -48.5,57.5
parent: 2
type: Transform
- - uid: 1140
+ - uid: 1142
components:
- pos: -41.5,63.5
parent: 2
type: Transform
- - uid: 1141
+ - uid: 1143
components:
- pos: -41.5,62.5
parent: 2
type: Transform
- - uid: 1142
+ - uid: 1144
components:
- pos: -41.5,64.5
parent: 2
type: Transform
- - uid: 1143
+ - uid: 1145
components:
- pos: -42.5,64.5
parent: 2
type: Transform
- - uid: 1144
+ - uid: 1146
components:
- pos: -51.5,69.5
parent: 2
type: Transform
- - uid: 1145
+ - uid: 1147
components:
- pos: -37.5,64.5
parent: 2
type: Transform
- - uid: 1146
+ - uid: 1148
components:
- pos: -47.5,55.5
parent: 2
type: Transform
- - uid: 1147
+ - uid: 1149
components:
- pos: -39.5,62.5
parent: 2
type: Transform
- - uid: 1148
+ - uid: 1150
components:
- pos: -39.5,63.5
parent: 2
type: Transform
- - uid: 1149
+ - uid: 1151
components:
- pos: -40.5,62.5
parent: 2
type: Transform
- - uid: 1150
+ - uid: 1152
components:
- pos: -43.5,63.5
parent: 2
type: Transform
- - uid: 1151
+ - uid: 1153
components:
- pos: -51.5,67.5
parent: 2
type: Transform
- - uid: 1152
+ - uid: 1154
components:
- pos: -47.5,56.5
parent: 2
type: Transform
- - uid: 1153
+ - uid: 1155
components:
- pos: -40.5,64.5
parent: 2
type: Transform
- - uid: 1154
+ - uid: 1156
components:
- pos: -43.5,64.5
parent: 2
type: Transform
- - uid: 1155
+ - uid: 1157
components:
- pos: -42.5,63.5
parent: 2
type: Transform
- - uid: 1156
+ - uid: 1158
components:
- pos: -35.5,66.5
parent: 2
type: Transform
- - uid: 1157
+ - uid: 1159
components:
- pos: -52.5,67.5
parent: 2
type: Transform
- - uid: 1158
+ - uid: 1160
components:
- pos: -52.5,68.5
parent: 2
type: Transform
- - uid: 1159
+ - uid: 1161
components:
- pos: -53.5,67.5
parent: 2
type: Transform
- - uid: 1160
+ - uid: 1162
components:
- pos: -52.5,69.5
parent: 2
type: Transform
- - uid: 1161
+ - uid: 1163
components:
- pos: -47.5,60.5
parent: 2
type: Transform
- - uid: 1162
+ - uid: 1164
components:
- pos: -44.5,60.5
parent: 2
type: Transform
- - uid: 1163
+ - uid: 1165
components:
- pos: -43.5,62.5
parent: 2
type: Transform
- - uid: 1164
+ - uid: 1166
components:
- pos: -44.5,59.5
parent: 2
type: Transform
- - uid: 1165
+ - uid: 1167
components:
- pos: -54.5,60.5
parent: 2
type: Transform
- - uid: 1166
+ - uid: 1168
components:
- pos: -57.5,63.5
parent: 2
type: Transform
- - uid: 1167
+ - uid: 1169
components:
- pos: -45.5,58.5
parent: 2
type: Transform
- - uid: 1168
+ - uid: 1170
components:
- pos: -49.5,62.5
parent: 2
type: Transform
- - uid: 1169
+ - uid: 1171
components:
- pos: -40.5,56.5
parent: 2
type: Transform
- - uid: 1170
+ - uid: 1172
components:
- pos: -37.5,57.5
parent: 2
type: Transform
- - uid: 1171
+ - uid: 1173
components:
- pos: -48.5,56.5
parent: 2
type: Transform
- - uid: 1172
+ - uid: 1174
components:
- pos: -46.5,56.5
parent: 2
type: Transform
- - uid: 1173
+ - uid: 1175
components:
- pos: -54.5,67.5
parent: 2
type: Transform
- - uid: 1174
+ - uid: 1176
components:
- pos: -54.5,68.5
parent: 2
type: Transform
- - uid: 1175
+ - uid: 1177
components:
- pos: -42.5,67.5
parent: 2
type: Transform
- - uid: 1176
+ - uid: 1178
components:
- pos: -49.5,59.5
parent: 2
type: Transform
- - uid: 1177
+ - uid: 1179
components:
- pos: -51.5,57.5
parent: 2
type: Transform
- - uid: 1178
+ - uid: 1180
components:
- pos: -51.5,64.5
parent: 2
type: Transform
- - uid: 1179
+ - uid: 1181
components:
- pos: -44.5,57.5
parent: 2
type: Transform
- - uid: 1180
+ - uid: 1182
components:
- pos: -55.5,68.5
parent: 2
type: Transform
- - uid: 1181
+ - uid: 1183
components:
- pos: -54.5,70.5
parent: 2
type: Transform
- - uid: 1182
+ - uid: 1184
components:
- pos: -51.5,70.5
parent: 2
type: Transform
- - uid: 1183
+ - uid: 1185
components:
- pos: -50.5,60.5
parent: 2
type: Transform
- - uid: 1184
+ - uid: 1186
components:
- pos: -50.5,61.5
parent: 2
type: Transform
- - uid: 1185
+ - uid: 1187
components:
- pos: -53.5,59.5
parent: 2
type: Transform
- - uid: 1186
+ - uid: 1188
components:
- pos: -44.5,56.5
parent: 2
type: Transform
- - uid: 1187
+ - uid: 1189
components:
- pos: -55.5,67.5
parent: 2
type: Transform
- - uid: 1188
+ - uid: 1190
components:
- pos: -48.5,54.5
parent: 2
type: Transform
- - uid: 1189
+ - uid: 1191
components:
- pos: -48.5,62.5
parent: 2
type: Transform
- - uid: 1190
+ - uid: 1192
components:
- pos: -52.5,71.5
parent: 2
type: Transform
- - uid: 1191
+ - uid: 1193
components:
- pos: -50.5,59.5
parent: 2
type: Transform
- - uid: 1192
+ - uid: 1194
components:
- pos: -52.5,58.5
parent: 2
type: Transform
- - uid: 1193
+ - uid: 1195
components:
- pos: -53.5,58.5
parent: 2
type: Transform
- - uid: 1194
+ - uid: 1196
components:
- pos: -45.5,54.5
parent: 2
type: Transform
- - uid: 1195
+ - uid: 1197
components:
- pos: -55.5,66.5
parent: 2
type: Transform
- - uid: 1196
+ - uid: 1198
components:
- pos: -49.5,56.5
parent: 2
type: Transform
- - uid: 1197
+ - uid: 1199
components:
- pos: -47.5,61.5
parent: 2
type: Transform
- - uid: 1198
+ - uid: 1200
components:
- pos: -49.5,68.5
parent: 2
type: Transform
- - uid: 1199
+ - uid: 1201
components:
- pos: -57.5,69.5
parent: 2
type: Transform
- - uid: 1200
+ - uid: 1202
components:
- pos: -52.5,59.5
parent: 2
type: Transform
- - uid: 1201
+ - uid: 1203
components:
- pos: -54.5,59.5
parent: 2
type: Transform
- - uid: 1202
+ - uid: 1204
components:
- pos: -44.5,55.5
parent: 2
type: Transform
- - uid: 1203
+ - uid: 1205
components:
- pos: -55.5,65.5
parent: 2
type: Transform
- - uid: 1204
+ - uid: 1206
components:
- pos: -50.5,55.5
parent: 2
type: Transform
- - uid: 1205
+ - uid: 1207
components:
- pos: -50.5,56.5
parent: 2
type: Transform
- - uid: 1206
+ - uid: 1208
components:
- pos: -49.5,69.5
parent: 2
type: Transform
- - uid: 1207
+ - uid: 1209
components:
- pos: -56.5,63.5
parent: 2
type: Transform
- - uid: 1208
+ - uid: 1210
components:
- pos: -52.5,60.5
parent: 2
type: Transform
- - uid: 1209
+ - uid: 1211
components:
- pos: -45.5,56.5
parent: 2
type: Transform
- - uid: 1210
+ - uid: 1212
components:
- pos: -45.5,55.5
parent: 2
type: Transform
- - uid: 1211
+ - uid: 1213
components:
- pos: -54.5,58.5
parent: 2
type: Transform
- - uid: 1212
+ - uid: 1214
components:
- pos: -49.5,54.5
parent: 2
type: Transform
- - uid: 1213
+ - uid: 1215
components:
- pos: -51.5,55.5
parent: 2
type: Transform
- - uid: 1214
+ - uid: 1216
components:
- pos: -49.5,70.5
parent: 2
type: Transform
- - uid: 1215
+ - uid: 1217
components:
- pos: -53.5,60.5
parent: 2
type: Transform
- - uid: 1216
+ - uid: 1218
components:
- pos: -52.5,61.5
parent: 2
type: Transform
- - uid: 1217
+ - uid: 1219
components:
- pos: -45.5,57.5
parent: 2
type: Transform
- - uid: 1218
+ - uid: 1220
components:
- pos: -44.5,54.5
parent: 2
type: Transform
- - uid: 1219
+ - uid: 1221
components:
- pos: 10.5,41.5
parent: 2
type: Transform
- - uid: 1220
+ - uid: 1222
components:
- pos: -49.5,55.5
parent: 2
type: Transform
- - uid: 1221
+ - uid: 1223
components:
- pos: -52.5,56.5
parent: 2
type: Transform
- - uid: 1222
+ - uid: 1224
components:
- pos: -52.5,55.5
parent: 2
type: Transform
- - uid: 1223
+ - uid: 1225
components:
- pos: -50.5,63.5
parent: 2
type: Transform
- - uid: 1224
+ - uid: 1226
components:
- pos: -51.5,60.5
parent: 2
type: Transform
- - uid: 1225
+ - uid: 1227
components:
- pos: -51.5,61.5
parent: 2
type: Transform
- - uid: 1226
+ - uid: 1228
components:
- pos: -46.5,54.5
parent: 2
type: Transform
- - uid: 1227
+ - uid: 1229
components:
- pos: -38.5,58.5
parent: 2
type: Transform
- - uid: 1228
+ - uid: 1230
components:
- pos: -46.5,55.5
parent: 2
type: Transform
- - uid: 1229
+ - uid: 1231
components:
- pos: -52.5,57.5
parent: 2
type: Transform
- - uid: 1230
+ - uid: 1232
components:
- pos: -53.5,57.5
parent: 2
type: Transform
- - uid: 1231
+ - uid: 1233
components:
- pos: -51.5,63.5
parent: 2
type: Transform
- - uid: 1232
+ - uid: 1234
components:
- pos: -51.5,62.5
parent: 2
type: Transform
- - uid: 1233
+ - uid: 1235
components:
- pos: -51.5,59.5
parent: 2
type: Transform
- - uid: 1234
+ - uid: 1236
components:
- pos: -51.5,58.5
parent: 2
type: Transform
- - uid: 1235
+ - uid: 1237
components:
- pos: -37.5,59.5
parent: 2
type: Transform
- - uid: 1236
+ - uid: 1238
components:
- pos: -37.5,58.5
parent: 2
type: Transform
- - uid: 1237
+ - uid: 1239
components:
- pos: -38.5,59.5
parent: 2
type: Transform
- - uid: 1238
+ - uid: 1240
components:
- pos: -37.5,61.5
parent: 2
type: Transform
- - uid: 1239
+ - uid: 1241
components:
- pos: -49.5,63.5
parent: 2
type: Transform
- - uid: 1240
+ - uid: 1242
components:
- pos: -39.5,56.5
parent: 2
type: Transform
- - uid: 1241
+ - uid: 1243
components:
- pos: -39.5,57.5
parent: 2
type: Transform
- - uid: 1242
+ - uid: 1244
components:
- pos: -38.5,60.5
parent: 2
type: Transform
- - uid: 1243
+ - uid: 1245
components:
- pos: -37.5,60.5
parent: 2
type: Transform
- - uid: 1244
+ - uid: 1246
components:
- pos: -36.5,59.5
parent: 2
type: Transform
- - uid: 1245
+ - uid: 1247
components:
- pos: -50.5,58.5
parent: 2
type: Transform
- - uid: 1246
+ - uid: 1248
components:
- pos: -50.5,57.5
parent: 2
type: Transform
- - uid: 1247
+ - uid: 1249
components:
- pos: -40.5,58.5
parent: 2
type: Transform
- - uid: 1248
+ - uid: 1250
components:
- pos: -55.5,63.5
parent: 2
type: Transform
- - uid: 1249
+ - uid: 1251
components:
- pos: -57.5,68.5
parent: 2
type: Transform
- - uid: 1250
+ - uid: 1252
components:
- pos: -57.5,67.5
parent: 2
type: Transform
- - uid: 1251
+ - uid: 1253
components:
- pos: -51.5,66.5
parent: 2
type: Transform
- - uid: 1252
+ - uid: 1254
components:
- pos: -53.5,66.5
parent: 2
type: Transform
- - uid: 1253
+ - uid: 1255
components:
- pos: -39.5,58.5
parent: 2
type: Transform
- - uid: 1254
+ - uid: 1256
components:
- pos: -55.5,64.5
parent: 2
type: Transform
- - uid: 1255
+ - uid: 1257
components:
- pos: -54.5,64.5
parent: 2
type: Transform
- - uid: 1256
+ - uid: 1258
components:
- pos: -42.5,56.5
parent: 2
type: Transform
- - uid: 1257
+ - uid: 1259
components:
- pos: -52.5,64.5
parent: 2
type: Transform
- - uid: 1258
+ - uid: 1260
components:
- pos: -53.5,64.5
parent: 2
type: Transform
- - uid: 1259
+ - uid: 1261
components:
- pos: -49.5,60.5
parent: 2
type: Transform
- - uid: 1260
+ - uid: 1262
components:
- pos: -35.5,61.5
parent: 2
type: Transform
- - uid: 1261
+ - uid: 1263
components:
- pos: -36.5,61.5
parent: 2
type: Transform
- - uid: 1262
+ - uid: 1264
components:
- pos: -47.5,57.5
parent: 2
type: Transform
- - uid: 1263
+ - uid: 1265
components:
- pos: -35.5,64.5
parent: 2
type: Transform
- - uid: 1264
+ - uid: 1266
components:
- pos: -38.5,61.5
parent: 2
type: Transform
- - uid: 1265
+ - uid: 1267
components:
- pos: -38.5,62.5
parent: 2
type: Transform
- - uid: 1266
+ - uid: 1268
components:
- pos: -36.5,64.5
parent: 2
type: Transform
- - uid: 1267
+ - uid: 1269
components:
- pos: -56.5,68.5
parent: 2
type: Transform
- - uid: 1268
+ - uid: 1270
components:
- pos: -56.5,67.5
parent: 2
type: Transform
- - uid: 1269
+ - uid: 1271
components:
- pos: -56.5,71.5
parent: 2
type: Transform
- - uid: 1270
+ - uid: 1272
components:
- pos: -56.5,69.5
parent: 2
type: Transform
- - uid: 1271
+ - uid: 1273
components:
- pos: -36.5,60.5
parent: 2
type: Transform
- - uid: 1272
+ - uid: 1274
components:
- pos: -46.5,57.5
parent: 2
type: Transform
- - uid: 1273
+ - uid: 1275
components:
- pos: -58.5,68.5
parent: 2
type: Transform
- - uid: 1274
+ - uid: 1276
components:
- pos: -58.5,69.5
parent: 2
type: Transform
- - uid: 1275
+ - uid: 1277
components:
- pos: -56.5,66.5
parent: 2
type: Transform
- - uid: 1276
+ - uid: 1278
components:
- pos: -56.5,64.5
parent: 2
type: Transform
- - uid: 1277
+ - uid: 1279
components:
- pos: -38.5,63.5
parent: 2
type: Transform
- - uid: 1278
+ - uid: 1280
components:
- pos: -56.5,65.5
parent: 2
type: Transform
- - uid: 1279
+ - uid: 1281
components:
- pos: -44.5,64.5
parent: 2
type: Transform
- - uid: 1280
+ - uid: 1282
components:
- pos: -53.5,68.5
parent: 2
type: Transform
- - uid: 1281
+ - uid: 1283
components:
- pos: -52.5,70.5
parent: 2
type: Transform
- - uid: 1282
+ - uid: 1284
components:
- pos: -53.5,69.5
parent: 2
type: Transform
- - uid: 1283
+ - uid: 1285
components:
- pos: -49.5,58.5
parent: 2
type: Transform
- - uid: 1284
+ - uid: 1286
components:
- pos: -49.5,61.5
parent: 2
type: Transform
- - uid: 1285
+ - uid: 1287
components:
- pos: -49.5,57.5
parent: 2
type: Transform
- - uid: 1286
+ - uid: 1288
components:
- pos: -41.5,58.5
parent: 2
type: Transform
- - uid: 1287
+ - uid: 1289
components:
- pos: -41.5,56.5
parent: 2
type: Transform
- - uid: 1288
+ - uid: 1290
components:
- pos: -42.5,58.5
parent: 2
type: Transform
- - uid: 1289
+ - uid: 1291
components:
- pos: -42.5,57.5
parent: 2
type: Transform
- - uid: 1290
+ - uid: 1292
components:
- pos: -37.5,56.5
parent: 2
type: Transform
- - uid: 1291
+ - uid: 1293
components:
- pos: 13.5,44.5
parent: 2
type: Transform
- - uid: 1292
+ - uid: 1294
components:
- pos: 61.5,53.5
parent: 2
type: Transform
- - uid: 1293
+ - uid: 1295
components:
- pos: 60.5,54.5
parent: 2
type: Transform
- - uid: 1294
+ - uid: 1296
components:
- pos: 70.5,46.5
parent: 2
type: Transform
- - uid: 1295
+ - uid: 1297
components:
- pos: 61.5,55.5
parent: 2
type: Transform
- - uid: 1296
+ - uid: 1298
components:
- pos: 69.5,44.5
parent: 2
type: Transform
- - uid: 1297
+ - uid: 1299
components:
- pos: 70.5,50.5
parent: 2
type: Transform
- - uid: 1298
+ - uid: 1300
components:
- pos: 70.5,49.5
parent: 2
type: Transform
- - uid: 1299
+ - uid: 1301
components:
- pos: 70.5,51.5
parent: 2
type: Transform
- - uid: 1300
+ - uid: 1302
components:
- pos: 69.5,50.5
parent: 2
type: Transform
- - uid: 1301
+ - uid: 1303
components:
- pos: 69.5,47.5
parent: 2
type: Transform
- - uid: 1302
+ - uid: 1304
components:
- pos: 69.5,46.5
parent: 2
type: Transform
- - uid: 1303
+ - uid: 1305
components:
- pos: 69.5,45.5
parent: 2
type: Transform
- - uid: 1304
+ - uid: 1306
components:
- pos: 69.5,48.5
parent: 2
type: Transform
- - uid: 1305
+ - uid: 1307
components:
- pos: 69.5,49.5
parent: 2
type: Transform
- - uid: 1306
+ - uid: 1308
components:
- pos: 7.5,57.5
parent: 2
type: Transform
- - uid: 1307
+ - uid: 1309
components:
- pos: 64.5,53.5
parent: 2
type: Transform
- - uid: 1308
+ - uid: 1310
components:
- pos: 64.5,52.5
parent: 2
type: Transform
- - uid: 1309
+ - uid: 1311
components:
- pos: 64.5,53.5
parent: 2
type: Transform
- - uid: 1310
+ - uid: 1312
components:
- pos: 64.5,51.5
parent: 2
type: Transform
- - uid: 1311
+ - uid: 1313
components:
- pos: 67.5,53.5
parent: 2
type: Transform
- - uid: 1312
+ - uid: 1314
components:
- pos: 65.5,52.5
parent: 2
type: Transform
- - uid: 1313
+ - uid: 1315
components:
- pos: 65.5,53.5
parent: 2
type: Transform
- - uid: 1314
+ - uid: 1316
components:
- pos: 65.5,54.5
parent: 2
type: Transform
- - uid: 1315
+ - uid: 1317
components:
- pos: 62.5,55.5
parent: 2
type: Transform
- - uid: 1316
+ - uid: 1318
components:
- pos: 64.5,55.5
parent: 2
type: Transform
- - uid: 1317
+ - uid: 1319
components:
- pos: 64.5,54.5
parent: 2
type: Transform
- - uid: 1318
+ - uid: 1320
components:
- pos: 68.5,52.5
parent: 2
type: Transform
- - uid: 1319
+ - uid: 1321
components:
- pos: 65.5,52.5
parent: 2
type: Transform
- - uid: 1320
+ - uid: 1322
components:
- pos: 66.5,54.5
parent: 2
type: Transform
- - uid: 1321
+ - uid: 1323
components:
- pos: 66.5,53.5
parent: 2
type: Transform
- - uid: 1322
+ - uid: 1324
components:
- pos: 67.5,52.5
parent: 2
type: Transform
- - uid: 1323
+ - uid: 1325
components:
- pos: 65.5,55.5
parent: 2
type: Transform
- - uid: 1324
+ - uid: 1326
components:
- pos: 62.5,52.5
parent: 2
type: Transform
- - uid: 1325
+ - uid: 1327
components:
- pos: 63.5,55.5
parent: 2
type: Transform
- - uid: 1326
+ - uid: 1328
components:
- pos: 10.5,58.5
parent: 2
type: Transform
- - uid: 1327
+ - uid: 1329
components:
- pos: 4.5,42.5
parent: 2
type: Transform
- - uid: 1328
+ - uid: 1330
components:
- pos: 9.5,50.5
parent: 2
type: Transform
- - uid: 1329
+ - uid: 1331
components:
- pos: 3.5,42.5
parent: 2
type: Transform
- - uid: 1330
+ - uid: 1332
components:
- pos: 3.5,52.5
parent: 2
type: Transform
- - uid: 1331
+ - uid: 1333
components:
- pos: 63.5,54.5
parent: 2
type: Transform
- - uid: 1332
+ - uid: 1334
components:
- pos: 62.5,54.5
parent: 2
type: Transform
- - uid: 1333
+ - uid: 1335
components:
- pos: 11.5,57.5
parent: 2
type: Transform
- - uid: 1334
+ - uid: 1336
components:
- pos: 12.5,56.5
parent: 2
type: Transform
- - uid: 1335
+ - uid: 1337
components:
- pos: 12.5,57.5
parent: 2
type: Transform
- - uid: 1336
+ - uid: 1338
components:
- pos: 3.5,43.5
parent: 2
type: Transform
- - uid: 1337
+ - uid: 1339
components:
- pos: 5.5,42.5
parent: 2
type: Transform
- - uid: 1338
+ - uid: 1340
components:
- pos: 9.5,57.5
parent: 2
type: Transform
- - uid: 1339
+ - uid: 1341
components:
- pos: 10.5,57.5
parent: 2
type: Transform
- - uid: 1340
+ - uid: 1342
components:
- pos: 10.5,56.5
parent: 2
type: Transform
- - uid: 1341
+ - uid: 1343
components:
- pos: 9.5,56.5
parent: 2
type: Transform
- - uid: 1342
+ - uid: 1344
components:
- pos: 8.5,56.5
parent: 2
type: Transform
- - uid: 1343
+ - uid: 1345
components:
- pos: 7.5,56.5
parent: 2
type: Transform
- - uid: 1344
+ - uid: 1346
components:
- pos: 3.5,53.5
parent: 2
type: Transform
- - uid: 1345
+ - uid: 1347
components:
- pos: 61.5,54.5
parent: 2
type: Transform
- - uid: 1346
+ - uid: 1348
components:
- pos: 3.5,45.5
parent: 2
type: Transform
- - uid: 1347
+ - uid: 1349
components:
- pos: 3.5,46.5
parent: 2
type: Transform
- - uid: 1348
+ - uid: 1350
components:
- pos: 60.5,53.5
parent: 2
type: Transform
- - uid: 1349
+ - uid: 1351
components:
- pos: 61.5,52.5
parent: 2
type: Transform
- - uid: 1350
+ - uid: 1352
components:
- pos: 60.5,50.5
parent: 2
type: Transform
- - uid: 1351
+ - uid: 1353
components:
- pos: 60.5,51.5
parent: 2
type: Transform
- - uid: 1352
+ - uid: 1354
components:
- pos: 5.5,44.5
parent: 2
type: Transform
- - uid: 1353
+ - uid: 1355
components:
- pos: 4.5,45.5
parent: 2
type: Transform
- - uid: 1354
+ - uid: 1356
components:
- pos: 5.5,43.5
parent: 2
type: Transform
- - uid: 1355
+ - uid: 1357
components:
- pos: 3.5,44.5
parent: 2
type: Transform
- - uid: 1356
+ - uid: 1358
components:
- pos: 60.5,52.5
parent: 2
type: Transform
- - uid: 1357
+ - uid: 1359
components:
- pos: 61.5,50.5
parent: 2
type: Transform
- - uid: 1358
+ - uid: 1360
components:
- pos: 61.5,51.5
parent: 2
type: Transform
- - uid: 1359
+ - uid: 1361
components:
- pos: 60.5,49.5
parent: 2
type: Transform
- - uid: 1360
+ - uid: 1362
components:
- pos: 6.5,43.5
parent: 2
type: Transform
- - uid: 1361
+ - uid: 1363
components:
- pos: 4.5,43.5
parent: 2
type: Transform
- - uid: 1362
+ - uid: 1364
components:
- pos: 4.5,43.5
parent: 2
type: Transform
- - uid: 1363
+ - uid: 1365
components:
- pos: 4.5,44.5
parent: 2
type: Transform
- - uid: 1364
+ - uid: 1366
components:
- pos: 63.5,53.5
parent: 2
type: Transform
- - uid: 1365
+ - uid: 1367
components:
- pos: 63.5,52.5
parent: 2
type: Transform
- - uid: 1366
+ - uid: 1368
components:
- pos: 76.5,-60.5
parent: 2
type: Transform
- - uid: 1367
+ - uid: 1369
components:
- pos: 77.5,-60.5
parent: 2
type: Transform
- - uid: 1368
+ - uid: 1370
components:
- pos: 77.5,-61.5
parent: 2
type: Transform
- - uid: 1369
+ - uid: 1371
components:
- pos: 77.5,-62.5
parent: 2
type: Transform
- - uid: 1370
+ - uid: 1372
components:
- pos: 80.5,-66.5
parent: 2
type: Transform
- - uid: 1371
+ - uid: 1373
components:
- pos: 77.5,-59.5
parent: 2
type: Transform
- - uid: 1372
+ - uid: 1374
components:
- pos: 72.5,-65.5
parent: 2
type: Transform
- - uid: 1373
+ - uid: 1375
components:
- pos: 75.5,-61.5
parent: 2
type: Transform
- - uid: 1374
+ - uid: 1376
components:
- pos: 78.5,-53.5
parent: 2
type: Transform
- - uid: 1375
+ - uid: 1377
components:
- pos: 78.5,-54.5
parent: 2
type: Transform
- - uid: 1376
+ - uid: 1378
components:
- pos: 78.5,-54.5
parent: 2
type: Transform
- - uid: 1377
+ - uid: 1379
components:
- pos: 76.5,-58.5
parent: 2
type: Transform
- - uid: 1378
+ - uid: 1380
components:
- pos: 75.5,-59.5
parent: 2
type: Transform
- - uid: 1379
+ - uid: 1381
components:
- pos: 78.5,-52.5
parent: 2
type: Transform
- - uid: 1380
+ - uid: 1382
components:
- pos: 78.5,-51.5
parent: 2
type: Transform
- - uid: 1381
+ - uid: 1383
components:
- pos: 70.5,45.5
parent: 2
type: Transform
- - uid: 1382
+ - uid: 1384
components:
- pos: 78.5,-50.5
parent: 2
type: Transform
- - uid: 1383
+ - uid: 1385
components:
- pos: 4.5,-90.5
parent: 2
type: Transform
- - uid: 1384
+ - uid: 1386
components:
- pos: 3.5,-90.5
parent: 2
type: Transform
- - uid: 1385
+ - uid: 1387
components:
- pos: 69.5,-70.5
parent: 2
type: Transform
- - uid: 1386
+ - uid: 1388
components:
- pos: 4.5,-91.5
parent: 2
type: Transform
- - uid: 1387
+ - uid: 1389
components:
- pos: 6.5,-90.5
parent: 2
type: Transform
- - uid: 1388
+ - uid: 1390
components:
- pos: 7.5,-90.5
parent: 2
type: Transform
- - uid: 1389
+ - uid: 1391
components:
- pos: 18.5,45.5
parent: 2
type: Transform
- - uid: 1390
+ - uid: 1392
components:
- pos: 11.5,-91.5
parent: 2
type: Transform
- - uid: 1391
+ - uid: 1393
components:
- pos: 7.5,-91.5
parent: 2
type: Transform
- - uid: 1392
+ - uid: 1394
components:
- pos: 10.5,-90.5
parent: 2
type: Transform
- - uid: 1393
+ - uid: 1395
components:
- pos: 17.5,48.5
parent: 2
type: Transform
- - uid: 1394
+ - uid: 1396
components:
- pos: 80.5,-65.5
parent: 2
type: Transform
- - uid: 1395
+ - uid: 1397
components:
- pos: 78.5,-61.5
parent: 2
type: Transform
- - uid: 1396
+ - uid: 1398
components:
- pos: 78.5,-69.5
parent: 2
type: Transform
- - uid: 1397
+ - uid: 1399
components:
- pos: 79.5,-68.5
parent: 2
type: Transform
- - uid: 1398
+ - uid: 1400
components:
- pos: 73.5,-62.5
parent: 2
type: Transform
- - uid: 1399
+ - uid: 1401
components:
- pos: 73.5,-61.5
parent: 2
type: Transform
- - uid: 1400
+ - uid: 1402
components:
- pos: 74.5,-59.5
parent: 2
type: Transform
- - uid: 1401
+ - uid: 1403
components:
- pos: 74.5,-60.5
parent: 2
type: Transform
- - uid: 1402
+ - uid: 1404
components:
- pos: 78.5,-53.5
parent: 2
type: Transform
- - uid: 1403
+ - uid: 1405
components:
- pos: 78.5,-52.5
parent: 2
type: Transform
- - uid: 1404
+ - uid: 1406
components:
- pos: 70.5,44.5
parent: 2
type: Transform
- - uid: 1405
+ - uid: 1407
components:
- pos: 68.5,45.5
parent: 2
type: Transform
- - uid: 1406
+ - uid: 1408
components:
- pos: 67.5,45.5
parent: 2
type: Transform
- - uid: 1407
+ - uid: 1409
components:
- pos: 68.5,44.5
parent: 2
type: Transform
- - uid: 1408
+ - uid: 1410
components:
- pos: 67.5,44.5
parent: 2
type: Transform
- - uid: 1409
+ - uid: 1411
components:
- pos: 71.5,-73.5
parent: 2
type: Transform
- - uid: 1410
+ - uid: 1412
components:
- pos: 70.5,-73.5
parent: 2
type: Transform
- - uid: 1411
+ - uid: 1413
components:
- pos: 73.5,-72.5
parent: 2
type: Transform
- - uid: 1412
+ - uid: 1414
components:
- pos: 71.5,-72.5
parent: 2
type: Transform
- - uid: 1413
+ - uid: 1415
components:
- pos: 74.5,-72.5
parent: 2
type: Transform
- - uid: 1414
+ - uid: 1416
components:
- pos: 74.5,-71.5
parent: 2
type: Transform
- - uid: 1415
+ - uid: 1417
components:
- pos: 77.5,-69.5
parent: 2
type: Transform
- - uid: 1416
+ - uid: 1418
components:
- pos: 18.5,46.5
parent: 2
type: Transform
- - uid: 1417
+ - uid: 1419
components:
- pos: 19.5,44.5
parent: 2
type: Transform
- - uid: 1418
+ - uid: 1420
components:
- pos: 18.5,44.5
parent: 2
type: Transform
- - uid: 1419
+ - uid: 1421
components:
- pos: 18.5,43.5
parent: 2
type: Transform
- - uid: 1420
+ - uid: 1422
components:
- pos: 16.5,46.5
parent: 2
type: Transform
- - uid: 1421
+ - uid: 1423
components:
- pos: 15.5,48.5
parent: 2
type: Transform
- - uid: 1422
+ - uid: 1424
components:
- pos: 16.5,47.5
parent: 2
type: Transform
- - uid: 1423
+ - uid: 1425
components:
- pos: 16.5,49.5
parent: 2
type: Transform
- - uid: 1424
+ - uid: 1426
components:
- pos: 16.5,48.5
parent: 2
type: Transform
- - uid: 1425
+ - uid: 1427
components:
- pos: 17.5,43.5
parent: 2
type: Transform
- - uid: 1426
+ - uid: 1428
components:
- pos: 65.5,47.5
parent: 2
type: Transform
- - uid: 1427
+ - uid: 1429
components:
- pos: 65.5,44.5
parent: 2
type: Transform
- - uid: 1428
+ - uid: 1430
components:
- pos: 65.5,43.5
parent: 2
type: Transform
- - uid: 1429
+ - uid: 1431
components:
- pos: 67.5,42.5
parent: 2
type: Transform
- - uid: 1430
+ - uid: 1432
components:
- pos: 66.5,42.5
parent: 2
type: Transform
- - uid: 1431
+ - uid: 1433
components:
- pos: 65.5,42.5
parent: 2
type: Transform
- - uid: 1432
+ - uid: 1434
components:
- pos: 64.5,42.5
parent: 2
type: Transform
- - uid: 1433
+ - uid: 1435
components:
- pos: 63.5,42.5
parent: 2
type: Transform
- - uid: 1434
+ - uid: 1436
components:
- pos: 62.5,43.5
parent: 2
type: Transform
- - uid: 1435
+ - uid: 1437
components:
- pos: 61.5,43.5
parent: 2
type: Transform
- - uid: 1436
+ - uid: 1438
components:
- pos: 62.5,44.5
parent: 2
type: Transform
- - uid: 1437
+ - uid: 1439
components:
- pos: 65.5,51.5
parent: 2
type: Transform
- - uid: 1438
+ - uid: 1440
components:
- pos: 65.5,50.5
parent: 2
type: Transform
- - uid: 1439
+ - uid: 1441
components:
- pos: 9.5,41.5
parent: 2
type: Transform
- - uid: 1440
+ - uid: 1442
components:
- pos: 14.5,45.5
parent: 2
type: Transform
- - uid: 1441
+ - uid: 1443
components:
- pos: 77.5,-68.5
parent: 2
type: Transform
- - uid: 1442
+ - uid: 1444
components:
- pos: 15.5,49.5
parent: 2
type: Transform
- - uid: 1443
+ - uid: 1445
components:
- pos: 16.5,50.5
parent: 2
type: Transform
- - uid: 1444
+ - uid: 1446
components:
- pos: 76.5,-71.5
parent: 2
type: Transform
- - uid: 1445
+ - uid: 1447
components:
- pos: 76.5,-69.5
parent: 2
type: Transform
- - uid: 1446
+ - uid: 1448
components:
- pos: 16.5,51.5
parent: 2
type: Transform
- - uid: 1447
+ - uid: 1449
components:
- pos: 75.5,-71.5
parent: 2
type: Transform
- - uid: 1448
+ - uid: 1450
components:
- pos: 81.5,-58.5
parent: 2
type: Transform
- - uid: 1449
+ - uid: 1451
components:
- pos: 81.5,-62.5
parent: 2
type: Transform
- - uid: 1450
+ - uid: 1452
components:
- pos: 75.5,-72.5
parent: 2
type: Transform
- - uid: 1451
+ - uid: 1453
components:
- pos: 80.5,-63.5
parent: 2
type: Transform
- - uid: 1452
+ - uid: 1454
components:
- pos: 81.5,-63.5
parent: 2
type: Transform
- - uid: 1453
+ - uid: 1455
components:
- pos: 81.5,-61.5
parent: 2
type: Transform
- - uid: 1454
+ - uid: 1456
components:
- pos: 81.5,-60.5
parent: 2
type: Transform
- - uid: 1455
+ - uid: 1457
components:
- pos: 81.5,-57.5
parent: 2
type: Transform
- - uid: 1456
+ - uid: 1458
components:
- pos: 77.5,-56.5
parent: 2
type: Transform
- - uid: 1457
+ - uid: 1459
components:
- pos: 77.5,-57.5
parent: 2
type: Transform
- - uid: 1458
+ - uid: 1460
components:
- pos: 77.5,-55.5
parent: 2
type: Transform
- - uid: 1459
+ - uid: 1461
components:
- pos: 77.5,-54.5
parent: 2
type: Transform
- - uid: 1460
+ - uid: 1462
components:
- pos: 77.5,-52.5
parent: 2
type: Transform
- - uid: 1461
+ - uid: 1463
components:
- pos: 81.5,-59.5
parent: 2
type: Transform
- - uid: 1462
+ - uid: 1464
components:
- pos: 80.5,-51.5
parent: 2
type: Transform
- - uid: 1463
+ - uid: 1465
components:
- pos: 66.5,-69.5
parent: 2
type: Transform
- - uid: 1464
+ - uid: 1466
components:
- pos: 70.5,-70.5
parent: 2
type: Transform
- - uid: 1465
+ - uid: 1467
components:
- pos: 67.5,-71.5
parent: 2
type: Transform
- - uid: 1466
+ - uid: 1468
components:
- pos: 66.5,-70.5
parent: 2
type: Transform
- - uid: 1467
+ - uid: 1469
components:
- pos: 66.5,-68.5
parent: 2
type: Transform
- - uid: 1468
+ - uid: 1470
components:
- pos: 66.5,-71.5
parent: 2
type: Transform
- - uid: 1469
+ - uid: 1471
components:
- pos: 65.5,-69.5
parent: 2
type: Transform
- - uid: 1470
+ - uid: 1472
components:
- pos: 77.5,-65.5
parent: 2
type: Transform
- - uid: 1471
+ - uid: 1473
components:
- pos: 76.5,-65.5
parent: 2
type: Transform
- - uid: 1472
+ - uid: 1474
components:
- pos: 78.5,-67.5
parent: 2
type: Transform
- - uid: 1473
+ - uid: 1475
components:
- pos: 78.5,-66.5
parent: 2
type: Transform
- - uid: 1474
+ - uid: 1476
components:
- pos: 79.5,-67.5
parent: 2
type: Transform
- - uid: 1475
+ - uid: 1477
components:
- pos: 75.5,-68.5
parent: 2
type: Transform
- - uid: 1476
+ - uid: 1478
components:
- pos: 75.5,-65.5
parent: 2
type: Transform
- - uid: 1477
+ - uid: 1479
components:
- pos: 66.5,-72.5
parent: 2
type: Transform
- - uid: 1478
+ - uid: 1480
components:
- pos: 64.5,47.5
parent: 2
type: Transform
- - uid: 1479
+ - uid: 1481
components:
- pos: 64.5,46.5
parent: 2
type: Transform
- - uid: 1480
+ - uid: 1482
components:
- pos: 65.5,46.5
parent: 2
type: Transform
- - uid: 1481
+ - uid: 1483
components:
- pos: 66.5,52.5
parent: 2
type: Transform
- - uid: 1482
+ - uid: 1484
components:
- pos: 4.5,54.5
parent: 2
type: Transform
- - uid: 1483
+ - uid: 1485
components:
- pos: 15.5,51.5
parent: 2
type: Transform
- - uid: 1484
+ - uid: 1486
components:
- pos: 78.5,-68.5
parent: 2
type: Transform
- - uid: 1485
+ - uid: 1487
components:
- pos: 12.5,50.5
parent: 2
type: Transform
- - uid: 1486
+ - uid: 1488
components:
- pos: 79.5,-65.5
parent: 2
type: Transform
- - uid: 1487
+ - uid: 1489
components:
- pos: 76.5,-68.5
parent: 2
type: Transform
- - uid: 1488
+ - uid: 1490
components:
- pos: 15.5,52.5
parent: 2
type: Transform
- - uid: 1489
+ - uid: 1491
components:
- pos: 17.5,44.5
parent: 2
type: Transform
- - uid: 1490
+ - uid: 1492
components:
- pos: 6.5,-91.5
parent: 2
type: Transform
- - uid: 1491
+ - uid: 1493
components:
- pos: 5.5,-91.5
parent: 2
type: Transform
- - uid: 1492
+ - uid: 1494
components:
- pos: 75.5,-70.5
parent: 2
type: Transform
- - uid: 1493
+ - uid: 1495
components:
- pos: 3.5,-91.5
parent: 2
type: Transform
- - uid: 1494
+ - uid: 1496
components:
- pos: 17.5,45.5
parent: 2
type: Transform
- - uid: 1495
+ - uid: 1497
components:
- pos: 79.5,-65.5
parent: 2
type: Transform
- - uid: 1496
+ - uid: 1498
components:
- pos: 65.5,48.5
parent: 2
type: Transform
- - uid: 1497
+ - uid: 1499
components:
- pos: 66.5,43.5
parent: 2
type: Transform
- - uid: 1498
+ - uid: 1500
components:
- pos: 67.5,43.5
parent: 2
type: Transform
- - uid: 1499
+ - uid: 1501
components:
- pos: 65.5,47.5
parent: 2
type: Transform
- - uid: 1500
+ - uid: 1502
components:
- pos: 68.5,43.5
parent: 2
type: Transform
- - uid: 1501
+ - uid: 1503
components:
- pos: 14.5,44.5
parent: 2
type: Transform
- - uid: 1502
+ - uid: 1504
components:
- pos: 11.5,-90.5
parent: 2
type: Transform
- - uid: 1503
+ - uid: 1505
components:
- pos: 9.5,-91.5
parent: 2
type: Transform
- - uid: 1504
+ - uid: 1506
components:
- pos: 8.5,-91.5
parent: 2
type: Transform
- - uid: 1505
+ - uid: 1507
components:
- pos: 9.5,-90.5
parent: 2
type: Transform
- - uid: 1506
+ - uid: 1508
components:
- pos: 17.5,47.5
parent: 2
type: Transform
- - uid: 1507
+ - uid: 1509
components:
- pos: 8.5,-90.5
parent: 2
type: Transform
- - uid: 1508
+ - uid: 1510
components:
- pos: 17.5,46.5
parent: 2
type: Transform
- - uid: 1509
+ - uid: 1511
components:
- pos: 77.5,-51.5
parent: 2
type: Transform
- - uid: 1510
+ - uid: 1512
components:
- pos: 77.5,-53.5
parent: 2
type: Transform
- - uid: 1511
+ - uid: 1513
components:
- pos: 80.5,-57.5
parent: 2
type: Transform
- - uid: 1512
+ - uid: 1514
components:
- pos: 80.5,-58.5
parent: 2
type: Transform
- - uid: 1513
+ - uid: 1515
components:
- pos: 80.5,-55.5
parent: 2
type: Transform
- - uid: 1514
+ - uid: 1516
components:
- pos: 80.5,-56.5
parent: 2
type: Transform
- - uid: 1515
+ - uid: 1517
components:
- pos: 81.5,-56.5
parent: 2
type: Transform
- - uid: 1516
+ - uid: 1518
components:
- pos: 80.5,-54.5
parent: 2
type: Transform
- - uid: 1517
+ - uid: 1519
components:
- pos: 80.5,-53.5
parent: 2
type: Transform
- - uid: 1518
+ - uid: 1520
components:
- pos: 80.5,-52.5
parent: 2
type: Transform
- - uid: 1519
+ - uid: 1521
components:
- pos: 81.5,-55.5
parent: 2
type: Transform
- - uid: 1520
+ - uid: 1522
components:
- pos: 80.5,-64.5
parent: 2
type: Transform
- - uid: 1521
+ - uid: 1523
components:
- pos: 79.5,-66.5
parent: 2
type: Transform
- - uid: 1522
+ - uid: 1524
components:
- pos: 76.5,-64.5
parent: 2
type: Transform
- - uid: 1523
+ - uid: 1525
components:
- pos: 80.5,-67.5
parent: 2
type: Transform
- - uid: 1524
+ - uid: 1526
components:
- pos: 72.5,-66.5
parent: 2
type: Transform
- - uid: 1525
+ - uid: 1527
components:
- pos: 70.5,-68.5
parent: 2
type: Transform
- - uid: 1526
+ - uid: 1528
components:
- pos: 70.5,-69.5
parent: 2
type: Transform
- - uid: 1527
+ - uid: 1529
components:
- pos: 71.5,-68.5
parent: 2
type: Transform
- - uid: 1528
+ - uid: 1530
components:
- pos: 71.5,-68.5
parent: 2
type: Transform
- - uid: 1529
+ - uid: 1531
components:
- pos: 76.5,-66.5
parent: 2
type: Transform
- - uid: 1530
+ - uid: 1532
components:
- pos: 76.5,-67.5
parent: 2
type: Transform
- - uid: 1531
+ - uid: 1533
components:
- pos: 65.5,-71.5
parent: 2
type: Transform
- - uid: 1532
+ - uid: 1534
components:
- pos: 75.5,-64.5
parent: 2
type: Transform
- - uid: 1533
+ - uid: 1535
components:
- pos: 65.5,-70.5
parent: 2
type: Transform
- - uid: 1534
+ - uid: 1536
components:
- pos: 64.5,-70.5
parent: 2
type: Transform
- - uid: 1535
+ - uid: 1537
components:
- pos: 24.5,51.5
parent: 2
type: Transform
- - uid: 1536
+ - uid: 1538
components:
- pos: 17.5,42.5
parent: 2
type: Transform
- - uid: 1537
+ - uid: 1539
components:
- pos: 15.5,42.5
parent: 2
type: Transform
- - uid: 1538
+ - uid: 1540
components:
- pos: 14.5,42.5
parent: 2
type: Transform
- - uid: 1539
+ - uid: 1541
components:
- pos: 11.5,41.5
parent: 2
type: Transform
- - uid: 1540
+ - uid: 1542
components:
- pos: 12.5,42.5
parent: 2
type: Transform
- - uid: 1541
+ - uid: 1543
components:
- pos: 11.5,42.5
parent: 2
type: Transform
- - uid: 1542
+ - uid: 1544
components:
- pos: 11.5,43.5
parent: 2
type: Transform
- - uid: 1543
+ - uid: 1545
components:
- pos: 6.5,52.5
parent: 2
type: Transform
- - uid: 1544
+ - uid: 1546
components:
- pos: 8.5,51.5
parent: 2
type: Transform
- - uid: 1545
+ - uid: 1547
components:
- pos: 5.5,55.5
parent: 2
type: Transform
- - uid: 1546
+ - uid: 1548
components:
- pos: 6.5,55.5
parent: 2
type: Transform
- - uid: 1547
+ - uid: 1549
components:
- pos: 6.5,56.5
parent: 2
type: Transform
- - uid: 1548
+ - uid: 1550
components:
- pos: 5.5,56.5
parent: 2
type: Transform
- - uid: 1549
+ - uid: 1551
components:
- pos: 4.5,55.5
parent: 2
type: Transform
- - uid: 1550
+ - uid: 1552
components:
- pos: 21.5,57.5
parent: 2
type: Transform
- - uid: 1551
+ - uid: 1553
components:
- pos: 20.5,57.5
parent: 2
type: Transform
- - uid: 1552
+ - uid: 1554
components:
- pos: 21.5,56.5
parent: 2
type: Transform
- - uid: 1553
+ - uid: 1555
components:
- pos: 18.5,56.5
parent: 2
type: Transform
- - uid: 1554
+ - uid: 1556
components:
- pos: 17.5,55.5
parent: 2
type: Transform
- - uid: 1555
+ - uid: 1557
components:
- pos: 19.5,56.5
parent: 2
type: Transform
- - uid: 1556
+ - uid: 1558
components:
- pos: 19.5,57.5
parent: 2
type: Transform
- - uid: 1557
+ - uid: 1559
components:
- pos: 18.5,53.5
parent: 2
type: Transform
- - uid: 1558
+ - uid: 1560
components:
- pos: 19.5,53.5
parent: 2
type: Transform
- - uid: 1559
+ - uid: 1561
components:
- pos: 18.5,52.5
parent: 2
type: Transform
- - uid: 1560
+ - uid: 1562
components:
- pos: 16.5,52.5
parent: 2
type: Transform
- - uid: 1561
+ - uid: 1563
components:
- pos: 17.5,52.5
parent: 2
type: Transform
- - uid: 1562
+ - uid: 1564
components:
- pos: 19.5,52.5
parent: 2
type: Transform
- - uid: 1563
+ - uid: 1565
components:
- pos: 22.5,54.5
parent: 2
type: Transform
- - uid: 1564
+ - uid: 1566
components:
- pos: 21.5,55.5
parent: 2
type: Transform
- - uid: 1565
+ - uid: 1567
components:
- pos: 22.5,53.5
parent: 2
type: Transform
- - uid: 1566
+ - uid: 1568
components:
- pos: 17.5,51.5
parent: 2
type: Transform
- - uid: 1567
+ - uid: 1569
components:
- pos: 21.5,54.5
parent: 2
type: Transform
- - uid: 1568
+ - uid: 1570
components:
- pos: 16.5,53.5
parent: 2
type: Transform
- - uid: 1569
+ - uid: 1571
components:
- pos: 16.5,54.5
parent: 2
type: Transform
- - uid: 1570
+ - uid: 1572
components:
- pos: 17.5,53.5
parent: 2
type: Transform
- - uid: 1571
+ - uid: 1573
components:
- pos: 5.5,54.5
parent: 2
type: Transform
- - uid: 1572
+ - uid: 1574
components:
- pos: 5.5,53.5
parent: 2
type: Transform
- - uid: 1573
+ - uid: 1575
components:
- pos: 13.5,57.5
parent: 2
type: Transform
- - uid: 1574
+ - uid: 1576
components:
- pos: 18.5,57.5
parent: 2
type: Transform
- - uid: 1575
+ - uid: 1577
components:
- pos: 13.5,51.5
parent: 2
type: Transform
- - uid: 1576
+ - uid: 1578
components:
- pos: 10.5,51.5
parent: 2
type: Transform
- - uid: 1577
+ - uid: 1579
components:
- pos: 8.5,52.5
parent: 2
type: Transform
- - uid: 1578
+ - uid: 1580
components:
- pos: 9.5,51.5
parent: 2
type: Transform
- - uid: 1579
+ - uid: 1581
components:
- pos: 13.5,52.5
parent: 2
type: Transform
- - uid: 1580
+ - uid: 1582
components:
- pos: 14.5,53.5
parent: 2
type: Transform
- - uid: 1581
+ - uid: 1583
components:
- pos: 13.5,56.5
parent: 2
type: Transform
- - uid: 1582
+ - uid: 1584
components:
- pos: 14.5,55.5
parent: 2
type: Transform
- - uid: 1583
+ - uid: 1585
components:
- pos: 13.5,55.5
parent: 2
type: Transform
- - uid: 1584
+ - uid: 1586
components:
- pos: 15.5,54.5
parent: 2
type: Transform
- - uid: 1585
+ - uid: 1587
components:
- pos: 15.5,53.5
parent: 2
type: Transform
- - uid: 1586
+ - uid: 1588
components:
- pos: 7.5,52.5
parent: 2
type: Transform
- - uid: 1587
+ - uid: 1589
components:
- pos: 15.5,58.5
parent: 2
type: Transform
- - uid: 1588
+ - uid: 1590
components:
- pos: 14.5,58.5
parent: 2
type: Transform
- - uid: 1589
+ - uid: 1591
components:
- pos: 13.5,58.5
parent: 2
type: Transform
- - uid: 1590
+ - uid: 1592
components:
- pos: 12.5,51.5
parent: 2
type: Transform
- - uid: 1591
+ - uid: 1593
components:
- pos: 17.5,58.5
parent: 2
type: Transform
- - uid: 1592
+ - uid: 1594
components:
- pos: 22.5,56.5
parent: 2
type: Transform
- - uid: 1593
+ - uid: 1595
components:
- pos: 22.5,57.5
parent: 2
type: Transform
- - uid: 1594
+ - uid: 1596
components:
- pos: 11.5,51.5
parent: 2
type: Transform
- - uid: 1595
+ - uid: 1597
components:
- pos: 17.5,50.5
parent: 2
type: Transform
- - uid: 1596
+ - uid: 1598
components:
- pos: 18.5,48.5
parent: 2
type: Transform
- - uid: 1597
+ - uid: 1599
components:
- pos: 21.5,51.5
parent: 2
type: Transform
- - uid: 1598
+ - uid: 1600
components:
- pos: 17.5,49.5
parent: 2
type: Transform
- - uid: 1599
+ - uid: 1601
components:
- pos: 21.5,49.5
parent: 2
type: Transform
- - uid: 1600
+ - uid: 1602
components:
- pos: 18.5,51.5
parent: 2
type: Transform
- - uid: 1601
+ - uid: 1603
components:
- pos: 19.5,48.5
parent: 2
type: Transform
- - uid: 1602
+ - uid: 1604
components:
- pos: 20.5,51.5
parent: 2
type: Transform
- - uid: 1603
+ - uid: 1605
components:
- pos: 21.5,52.5
parent: 2
type: Transform
- - uid: 1604
+ - uid: 1606
components:
- pos: 20.5,52.5
parent: 2
type: Transform
- - uid: 1605
+ - uid: 1607
components:
- pos: 20.5,54.5
parent: 2
type: Transform
- - uid: 1606
+ - uid: 1608
components:
- pos: 23.5,54.5
parent: 2
type: Transform
- - uid: 1607
+ - uid: 1609
components:
- pos: 20.5,53.5
parent: 2
type: Transform
- - uid: 1608
+ - uid: 1610
components:
- pos: 23.5,52.5
parent: 2
type: Transform
- - uid: 1609
+ - uid: 1611
components:
- pos: 18.5,42.5
parent: 2
type: Transform
- - uid: 1610
+ - uid: 1612
components:
- pos: 20.5,48.5
parent: 2
type: Transform
- - uid: 1611
+ - uid: 1613
components:
- pos: 21.5,47.5
parent: 2
type: Transform
- - uid: 1612
+ - uid: 1614
components:
- pos: 20.5,44.5
parent: 2
type: Transform
- - uid: 1613
+ - uid: 1615
components:
- pos: 19.5,42.5
parent: 2
type: Transform
- - uid: 1614
+ - uid: 1616
components:
- pos: 21.5,48.5
parent: 2
type: Transform
- - uid: 1615
+ - uid: 1617
components:
- pos: 20.5,43.5
parent: 2
type: Transform
- - uid: 1616
+ - uid: 1618
components:
- pos: 19.5,43.5
parent: 2
type: Transform
- - uid: 1617
+ - uid: 1619
components:
- pos: 22.5,49.5
parent: 2
type: Transform
- - uid: 1618
+ - uid: 1620
components:
- pos: 23.5,50.5
parent: 2
type: Transform
- - uid: 1619
+ - uid: 1621
components:
- pos: 22.5,50.5
parent: 2
type: Transform
- - uid: 1620
+ - uid: 1622
components:
- pos: 24.5,52.5
parent: 2
type: Transform
- - uid: 1621
+ - uid: 1623
components:
- pos: 23.5,51.5
parent: 2
type: Transform
- - uid: 1622
+ - uid: 1624
components:
- pos: 24.5,53.5
parent: 2
type: Transform
- - uid: 1623
+ - uid: 1625
components:
- pos: 24.5,56.5
parent: 2
type: Transform
- - uid: 1624
+ - uid: 1626
components:
- pos: 25.5,54.5
parent: 2
type: Transform
- - uid: 1625
+ - uid: 1627
components:
- pos: 25.5,55.5
parent: 2
type: Transform
- - uid: 1626
+ - uid: 1628
components:
- pos: 25.5,53.5
parent: 2
type: Transform
- - uid: 1627
+ - uid: 1629
components:
- pos: 24.5,57.5
parent: 2
type: Transform
- - uid: 1628
+ - uid: 1630
components:
- pos: 23.5,57.5
parent: 2
type: Transform
- - uid: 1629
+ - uid: 1631
components:
- pos: 21.5,58.5
parent: 2
type: Transform
- - uid: 1630
+ - uid: 1632
components:
- pos: 19.5,58.5
parent: 2
type: Transform
- - uid: 1631
+ - uid: 1633
components:
- pos: 20.5,58.5
parent: 2
type: Transform
- - uid: 1632
+ - uid: 1634
components:
- pos: 18.5,58.5
parent: 2
type: Transform
- - uid: 1633
+ - uid: 1635
components:
- pos: 17.5,59.5
parent: 2
type: Transform
- - uid: 1634
+ - uid: 1636
components:
- pos: 18.5,59.5
parent: 2
type: Transform
- - uid: 1635
+ - uid: 1637
components:
- pos: 20.5,50.5
parent: 2
type: Transform
- - uid: 1636
+ - uid: 1638
components:
- pos: 19.5,51.5
parent: 2
type: Transform
- - uid: 1637
+ - uid: 1639
components:
- pos: 21.5,50.5
parent: 2
type: Transform
- - uid: 1638
+ - uid: 1640
components:
- pos: 14.5,59.5
parent: 2
type: Transform
- - uid: 1639
+ - uid: 1641
components:
- pos: 16.5,59.5
parent: 2
type: Transform
- - uid: 1640
+ - uid: 1642
components:
- pos: 22.5,58.5
parent: 2
type: Transform
- - uid: 1641
+ - uid: 1643
components:
- pos: 23.5,55.5
parent: 2
type: Transform
- - uid: 1642
+ - uid: 1644
components:
- pos: 24.5,55.5
parent: 2
type: Transform
- - uid: 1643
+ - uid: 1645
components:
- pos: 23.5,56.5
parent: 2
type: Transform
- - uid: 1644
+ - uid: 1646
components:
- pos: 24.5,55.5
parent: 2
type: Transform
- - uid: 1645
+ - uid: 1647
components:
- pos: 13.5,59.5
parent: 2
type: Transform
- - uid: 1646
+ - uid: 1648
components:
- pos: 15.5,59.5
parent: 2
type: Transform
- - uid: 1647
+ - uid: 1649
components:
- pos: 23.5,53.5
parent: 2
type: Transform
- - uid: 1648
+ - uid: 1650
components:
- pos: 24.5,54.5
parent: 2
type: Transform
- - uid: 1649
+ - uid: 1651
components:
- pos: 23.5,53.5
parent: 2
type: Transform
- - uid: 1650
+ - uid: 1652
components:
- pos: 22.5,52.5
parent: 2
type: Transform
- - uid: 1651
+ - uid: 1653
components:
- pos: 3.5,54.5
parent: 2
type: Transform
- - uid: 1652
+ - uid: 1654
components:
- pos: 3.5,55.5
parent: 2
type: Transform
- - uid: 1653
+ - uid: 1655
components:
- pos: 22.5,48.5
parent: 2
type: Transform
- - uid: 1654
+ - uid: 1656
components:
- pos: 75.5,-60.5
parent: 2
type: Transform
- - uid: 1655
+ - uid: 1657
components:
- pos: 76.5,-59.5
parent: 2
type: Transform
- - uid: 1656
+ - uid: 1658
components:
- pos: 4.5,53.5
parent: 2
type: Transform
- - uid: 1657
+ - uid: 1659
components:
- pos: 10.5,42.5
parent: 2
type: Transform
- - uid: 1658
+ - uid: 1660
components:
- pos: 7.5,42.5
parent: 2
type: Transform
- - uid: 1659
+ - uid: 1661
components:
- pos: 10.5,43.5
parent: 2
type: Transform
- - uid: 1660
+ - uid: 1662
components:
- pos: 7.5,43.5
parent: 2
type: Transform
- - uid: 1661
+ - uid: 1663
components:
- pos: 6.5,42.5
parent: 2
type: Transform
- - uid: 1662
+ - uid: 1664
components:
- pos: 8.5,44.5
parent: 2
type: Transform
- - uid: 1663
+ - uid: 1665
components:
- pos: 13.5,43.5
parent: 2
type: Transform
- - uid: 1664
+ - uid: 1666
components:
- pos: 9.5,44.5
parent: 2
type: Transform
- - uid: 1665
+ - uid: 1667
components:
- pos: 12.5,43.5
parent: 2
type: Transform
- - uid: 1666
+ - uid: 1668
components:
- pos: 13.5,42.5
parent: 2
type: Transform
- - uid: 1667
+ - uid: 1669
components:
- pos: 65.5,45.5
parent: 2
type: Transform
- - uid: 1668
+ - uid: 1670
components:
- pos: 11.5,44.5
parent: 2
type: Transform
- - uid: 1669
+ - uid: 1671
components:
- pos: 10.5,45.5
parent: 2
type: Transform
- - uid: 1670
+ - uid: 1672
components:
- pos: 11.5,45.5
parent: 2
type: Transform
- - uid: 1671
+ - uid: 1673
components:
- pos: 10.5,44.5
parent: 2
type: Transform
- - uid: 1672
+ - uid: 1674
components:
- pos: 12.5,44.5
parent: 2
type: Transform
- - uid: 1673
+ - uid: 1675
components:
- pos: 67.5,-73.5
parent: 2
type: Transform
- - uid: 1674
+ - uid: 1676
components:
- pos: -38.5,55.5
parent: 2
type: Transform
- - uid: 1675
+ - uid: 1677
components:
- pos: -47.5,58.5
parent: 2
type: Transform
- - uid: 1676
+ - uid: 1678
components:
- pos: 5.5,52.5
parent: 2
type: Transform
- - uid: 1677
+ - uid: 1679
components:
- pos: -47.5,70.5
parent: 2
type: Transform
- - uid: 1678
+ - uid: 1680
components:
- pos: -44.5,73.5
parent: 2
type: Transform
- - uid: 1679
+ - uid: 1681
components:
- pos: -45.5,73.5
parent: 2
type: Transform
- - uid: 1680
+ - uid: 1682
components:
- pos: -46.5,73.5
parent: 2
type: Transform
- - uid: 1681
+ - uid: 1683
components:
- pos: -47.5,73.5
parent: 2
type: Transform
- - uid: 1682
+ - uid: 1684
components:
- pos: -48.5,73.5
parent: 2
type: Transform
- - uid: 1683
+ - uid: 1685
components:
- pos: -49.5,73.5
parent: 2
type: Transform
- - uid: 1684
+ - uid: 1686
components:
- pos: -50.5,73.5
parent: 2
type: Transform
- - uid: 1685
+ - uid: 1687
components:
- pos: -49.5,74.5
parent: 2
type: Transform
- - uid: 1686
+ - uid: 1688
components:
- pos: -48.5,74.5
parent: 2
type: Transform
- - uid: 1687
+ - uid: 1689
components:
- pos: -47.5,74.5
parent: 2
type: Transform
- - uid: 1688
+ - uid: 1690
components:
- pos: -46.5,74.5
parent: 2
type: Transform
- - uid: 1689
+ - uid: 1691
components:
- pos: -45.5,74.5
parent: 2
type: Transform
- - uid: 1690
+ - uid: 1692
components:
- pos: -49.5,71.5
parent: 2
type: Transform
- - uid: 1691
+ - uid: 1693
components:
- pos: -45.5,71.5
parent: 2
type: Transform
- - uid: 1692
+ - uid: 1694
components:
- pos: -45.5,70.5
parent: 2
type: Transform
- - uid: 1693
+ - uid: 1695
components:
- pos: -44.5,71.5
parent: 2
type: Transform
- - uid: 1694
+ - uid: 1696
components:
- pos: -56.5,62.5
parent: 2
type: Transform
- - uid: 1695
+ - uid: 1697
components:
- pos: -56.5,61.5
parent: 2
type: Transform
- - uid: 1696
+ - uid: 1698
components:
- pos: -54.5,61.5
parent: 2
type: Transform
- proto: AtmosDeviceFanTiny
entities:
- - uid: 1697
+ - uid: 1699
components:
- pos: 45.5,-89.5
parent: 2
type: Transform
- - uid: 1698
+ - uid: 1700
components:
- pos: 33.5,-82.5
parent: 2
type: Transform
- - uid: 1699
+ - uid: 1701
components:
- pos: 33.5,-89.5
parent: 2
type: Transform
- - uid: 1700
+ - uid: 1702
components:
- pos: 0.5,10.5
parent: 2
type: Transform
- - uid: 1701
+ - uid: 1703
components:
- pos: 79.5,-36.5
parent: 2
type: Transform
- - uid: 1702
+ - uid: 1704
components:
- pos: 69.5,-3.5
parent: 2
type: Transform
- - uid: 1703
+ - uid: 1705
components:
- rot: 3.141592653589793 rad
pos: 48.5,-95.5
parent: 2
type: Transform
- - uid: 1704
+ - uid: 1706
components:
- rot: -1.5707963267948966 rad
pos: -53.5,20.5
parent: 2
type: Transform
- - uid: 1705
+ - uid: 1707
components:
- rot: -1.5707963267948966 rad
pos: -53.5,22.5
parent: 2
type: Transform
- - uid: 1706
+ - uid: 1708
components:
- pos: -52.5,30.5
parent: 2
type: Transform
- - uid: 1707
+ - uid: 1709
components:
- pos: -52.5,34.5
parent: 2
type: Transform
- - uid: 1708
+ - uid: 1710
components:
- pos: 79.5,-37.5
parent: 2
type: Transform
- - uid: 1709
+ - uid: 1711
components:
- pos: 79.5,-34.5
parent: 2
type: Transform
- - uid: 1710
+ - uid: 1712
components:
- pos: 79.5,-33.5
parent: 2
type: Transform
- - uid: 1711
+ - uid: 1713
components:
- pos: 69.5,-5.5
parent: 2
type: Transform
- - uid: 1712
+ - uid: 1714
components:
- pos: 69.5,-11.5
parent: 2
type: Transform
- - uid: 1713
+ - uid: 1715
components:
- pos: 69.5,-13.5
parent: 2
type: Transform
- - uid: 1714
+ - uid: 1716
components:
- pos: -1.5,14.5
parent: 2
type: Transform
- - uid: 1715
+ - uid: 1717
components:
- rot: 3.141592653589793 rad
pos: 30.5,-95.5
parent: 2
type: Transform
- - uid: 1716
+ - uid: 1718
components:
- pos: -17.5,70.5
parent: 2
type: Transform
- - uid: 1717
+ - uid: 1719
components:
- pos: -12.5,75.5
parent: 2
type: Transform
- - uid: 1718
+ - uid: 1720
components:
- pos: -13.5,75.5
parent: 2
type: Transform
- - uid: 1719
+ - uid: 1721
components:
- pos: -21.5,75.5
parent: 2
type: Transform
- - uid: 1720
+ - uid: 1722
components:
- pos: -22.5,75.5
parent: 2
type: Transform
- - uid: 1721
+ - uid: 1723
components:
- pos: -52.5,33.5
parent: 2
type: Transform
- - uid: 1722
+ - uid: 1724
components:
- pos: -52.5,31.5
parent: 2
type: Transform
- - uid: 1723
+ - uid: 1725
components:
- pos: 45.5,-82.5
parent: 2
type: Transform
- - uid: 1724
+ - uid: 1726
components:
- pos: 52.5,-82.5
parent: 2
type: Transform
- - uid: 1725
+ - uid: 1727
components:
- pos: 52.5,-89.5
parent: 2
type: Transform
- - uid: 1726
+ - uid: 1728
components:
- rot: -1.5707963267948966 rad
pos: 67.5,-15.5
parent: 2
type: Transform
- - uid: 1727
+ - uid: 1729
components:
- rot: 3.141592653589793 rad
pos: 39.5,59.5
@@ -20757,912 +20774,912 @@ entities:
type: Transform
- proto: AtmosFixBlockerMarker
entities:
- - uid: 1728
+ - uid: 1730
components:
- pos: 51.5,-60.5
parent: 2
type: Transform
- - uid: 1729
+ - uid: 1731
components:
- pos: 50.5,-60.5
parent: 2
type: Transform
- - uid: 1730
+ - uid: 1732
components:
- pos: 49.5,-60.5
parent: 2
type: Transform
- - uid: 1731
+ - uid: 1733
components:
- pos: 48.5,-60.5
parent: 2
type: Transform
- - uid: 1732
+ - uid: 1734
components:
- pos: 48.5,-61.5
parent: 2
type: Transform
- - uid: 1733
+ - uid: 1735
components:
- pos: 49.5,-61.5
parent: 2
type: Transform
- - uid: 1734
+ - uid: 1736
components:
- pos: 50.5,-61.5
parent: 2
type: Transform
- - uid: 1735
+ - uid: 1737
components:
- pos: 51.5,-61.5
parent: 2
type: Transform
- - uid: 1736
+ - uid: 1738
components:
- pos: -44.5,-34.5
parent: 2
type: Transform
- - uid: 1737
+ - uid: 1739
components:
- pos: -44.5,-35.5
parent: 2
type: Transform
- - uid: 1738
+ - uid: 1740
components:
- pos: -43.5,-34.5
parent: 2
type: Transform
- - uid: 1739
+ - uid: 1741
components:
- pos: -43.5,-35.5
parent: 2
type: Transform
- - uid: 1740
+ - uid: 1742
components:
- pos: -42.5,-34.5
parent: 2
type: Transform
- - uid: 1741
+ - uid: 1743
components:
- pos: -42.5,-35.5
parent: 2
type: Transform
- - uid: 1742
+ - uid: 1744
components:
- pos: -42.5,-36.5
parent: 2
type: Transform
- - uid: 1743
+ - uid: 1745
components:
- pos: -48.5,-50.5
parent: 2
type: Transform
- - uid: 1744
+ - uid: 1746
components:
- pos: -49.5,-50.5
parent: 2
type: Transform
- - uid: 1745
+ - uid: 1747
components:
- pos: -50.5,-50.5
parent: 2
type: Transform
- - uid: 1746
+ - uid: 1748
components:
- pos: -48.5,-48.5
parent: 2
type: Transform
- - uid: 1747
+ - uid: 1749
components:
- pos: -49.5,-48.5
parent: 2
type: Transform
- - uid: 1748
+ - uid: 1750
components:
- pos: -50.5,-48.5
parent: 2
type: Transform
- - uid: 1749
+ - uid: 1751
components:
- pos: -48.5,-44.5
parent: 2
type: Transform
- - uid: 1750
+ - uid: 1752
components:
- pos: -49.5,-44.5
parent: 2
type: Transform
- - uid: 1751
+ - uid: 1753
components:
- pos: -50.5,-44.5
parent: 2
type: Transform
- - uid: 1752
+ - uid: 1754
components:
- pos: -48.5,-42.5
parent: 2
type: Transform
- - uid: 1753
+ - uid: 1755
components:
- pos: -49.5,-42.5
parent: 2
type: Transform
- - uid: 1754
+ - uid: 1756
components:
- pos: -50.5,-42.5
parent: 2
type: Transform
- - uid: 1755
+ - uid: 1757
components:
- pos: -43.5,-36.5
parent: 2
type: Transform
- - uid: 1756
+ - uid: 1758
components:
- pos: -44.5,-36.5
parent: 2
type: Transform
- - uid: 1757
+ - uid: 1759
components:
- pos: -77.5,-40.5
parent: 2
type: Transform
- - uid: 1758
+ - uid: 1760
components:
- pos: -76.5,-40.5
parent: 2
type: Transform
- - uid: 1759
+ - uid: 1761
components:
- pos: -75.5,-40.5
parent: 2
type: Transform
- - uid: 1760
+ - uid: 1762
components:
- pos: -75.5,-41.5
parent: 2
type: Transform
- - uid: 1761
+ - uid: 1763
components:
- pos: -76.5,-41.5
parent: 2
type: Transform
- - uid: 1762
+ - uid: 1764
components:
- pos: -77.5,-41.5
parent: 2
type: Transform
- - uid: 1763
+ - uid: 1765
components:
- pos: -77.5,-42.5
parent: 2
type: Transform
- - uid: 1764
+ - uid: 1766
components:
- pos: -76.5,-42.5
parent: 2
type: Transform
- - uid: 1765
+ - uid: 1767
components:
- pos: -75.5,-42.5
parent: 2
type: Transform
- proto: AtmosFixFreezerMarker
entities:
- - uid: 1766
+ - uid: 1768
components:
- pos: 0.5,13.5
parent: 2
type: Transform
- - uid: 1767
+ - uid: 1769
components:
- pos: 1.5,13.5
parent: 2
type: Transform
- - uid: 1768
+ - uid: 1770
components:
- pos: 1.5,14.5
parent: 2
type: Transform
- - uid: 1769
+ - uid: 1771
components:
- pos: 2.5,13.5
parent: 2
type: Transform
- - uid: 1770
+ - uid: 1772
components:
- pos: 0.5,14.5
parent: 2
type: Transform
- - uid: 1771
+ - uid: 1773
components:
- pos: -0.5,14.5
parent: 2
type: Transform
- - uid: 1772
+ - uid: 1774
components:
- pos: 2.5,14.5
parent: 2
type: Transform
- - uid: 1773
+ - uid: 1775
components:
- pos: -0.5,12.5
parent: 2
type: Transform
- - uid: 1774
+ - uid: 1776
components:
- pos: -0.5,11.5
parent: 2
type: Transform
- - uid: 1775
+ - uid: 1777
components:
- pos: 0.5,12.5
parent: 2
type: Transform
- - uid: 1776
+ - uid: 1778
components:
- pos: 0.5,11.5
parent: 2
type: Transform
- - uid: 1777
+ - uid: 1779
components:
- pos: 1.5,12.5
parent: 2
type: Transform
- - uid: 1778
+ - uid: 1780
components:
- pos: 1.5,11.5
parent: 2
type: Transform
- - uid: 1779
+ - uid: 1781
components:
- pos: 2.5,12.5
parent: 2
type: Transform
- - uid: 1780
+ - uid: 1782
components:
- pos: 2.5,11.5
parent: 2
type: Transform
- - uid: 1781
+ - uid: 1783
components:
- pos: -0.5,13.5
parent: 2
type: Transform
- - uid: 1782
+ - uid: 1784
components:
- pos: -5.5,73.5
parent: 2
type: Transform
- - uid: 1783
+ - uid: 1785
components:
- pos: -5.5,72.5
parent: 2
type: Transform
- - uid: 1784
+ - uid: 1786
components:
- pos: -5.5,71.5
parent: 2
type: Transform
- - uid: 1785
+ - uid: 1787
components:
- pos: -5.5,70.5
parent: 2
type: Transform
- - uid: 1786
+ - uid: 1788
components:
- pos: -5.5,69.5
parent: 2
type: Transform
- - uid: 1787
+ - uid: 1789
components:
- pos: -5.5,68.5
parent: 2
type: Transform
- - uid: 1788
+ - uid: 1790
components:
- pos: -5.5,67.5
parent: 2
type: Transform
- - uid: 1789
+ - uid: 1791
components:
- pos: -5.5,66.5
parent: 2
type: Transform
- - uid: 1790
+ - uid: 1792
components:
- pos: -4.5,73.5
parent: 2
type: Transform
- - uid: 1791
+ - uid: 1793
components:
- pos: -4.5,72.5
parent: 2
type: Transform
- - uid: 1792
+ - uid: 1794
components:
- pos: -4.5,71.5
parent: 2
type: Transform
- - uid: 1793
+ - uid: 1795
components:
- pos: -4.5,70.5
parent: 2
type: Transform
- - uid: 1794
+ - uid: 1796
components:
- pos: -4.5,69.5
parent: 2
type: Transform
- - uid: 1795
+ - uid: 1797
components:
- pos: -4.5,68.5
parent: 2
type: Transform
- - uid: 1796
+ - uid: 1798
components:
- pos: -4.5,67.5
parent: 2
type: Transform
- - uid: 1797
+ - uid: 1799
components:
- pos: -4.5,66.5
parent: 2
type: Transform
- - uid: 1798
+ - uid: 1800
components:
- pos: -3.5,73.5
parent: 2
type: Transform
- - uid: 1799
+ - uid: 1801
components:
- pos: -3.5,72.5
parent: 2
type: Transform
- - uid: 1800
+ - uid: 1802
components:
- pos: -3.5,71.5
parent: 2
type: Transform
- - uid: 1801
+ - uid: 1803
components:
- pos: -3.5,70.5
parent: 2
type: Transform
- - uid: 1802
+ - uid: 1804
components:
- pos: -3.5,69.5
parent: 2
type: Transform
- - uid: 1803
+ - uid: 1805
components:
- pos: -3.5,68.5
parent: 2
type: Transform
- - uid: 1804
+ - uid: 1806
components:
- pos: -3.5,67.5
parent: 2
type: Transform
- - uid: 1805
+ - uid: 1807
components:
- pos: -3.5,66.5
parent: 2
type: Transform
- - uid: 1806
+ - uid: 1808
components:
- pos: -2.5,73.5
parent: 2
type: Transform
- - uid: 1807
+ - uid: 1809
components:
- pos: -2.5,72.5
parent: 2
type: Transform
- - uid: 1808
+ - uid: 1810
components:
- pos: -2.5,71.5
parent: 2
type: Transform
- - uid: 1809
+ - uid: 1811
components:
- pos: -2.5,70.5
parent: 2
type: Transform
- - uid: 1810
+ - uid: 1812
components:
- pos: -2.5,69.5
parent: 2
type: Transform
- - uid: 1811
+ - uid: 1813
components:
- pos: -2.5,68.5
parent: 2
type: Transform
- - uid: 1812
+ - uid: 1814
components:
- pos: -2.5,67.5
parent: 2
type: Transform
- - uid: 1813
+ - uid: 1815
components:
- pos: -2.5,66.5
parent: 2
type: Transform
- - uid: 1814
+ - uid: 1816
components:
- pos: -6.5,72.5
parent: 2
type: Transform
- - uid: 1815
+ - uid: 1817
components:
- pos: -6.5,71.5
parent: 2
type: Transform
- - uid: 1816
+ - uid: 1818
components:
- pos: -6.5,70.5
parent: 2
type: Transform
- - uid: 1817
+ - uid: 1819
components:
- pos: -6.5,69.5
parent: 2
type: Transform
- - uid: 1818
+ - uid: 1820
components:
- pos: -6.5,68.5
parent: 2
type: Transform
- - uid: 1819
+ - uid: 1821
components:
- pos: -6.5,67.5
parent: 2
type: Transform
- - uid: 1820
+ - uid: 1822
components:
- pos: -6.5,66.5
parent: 2
type: Transform
- - uid: 1821
+ - uid: 1823
components:
- pos: -7.5,71.5
parent: 2
type: Transform
- - uid: 1822
+ - uid: 1824
components:
- pos: -7.5,70.5
parent: 2
type: Transform
- - uid: 1823
+ - uid: 1825
components:
- pos: -7.5,69.5
parent: 2
type: Transform
- - uid: 1824
+ - uid: 1826
components:
- pos: -7.5,68.5
parent: 2
type: Transform
- - uid: 1825
+ - uid: 1827
components:
- pos: -7.5,67.5
parent: 2
type: Transform
- - uid: 1826
+ - uid: 1828
components:
- pos: -1.5,72.5
parent: 2
type: Transform
- - uid: 1827
+ - uid: 1829
components:
- pos: -1.5,71.5
parent: 2
type: Transform
- - uid: 1828
+ - uid: 1830
components:
- pos: -0.5,72.5
parent: 2
type: Transform
- - uid: 1829
+ - uid: 1831
components:
- pos: -0.5,71.5
parent: 2
type: Transform
- - uid: 1830
+ - uid: 1832
components:
- pos: 0.5,72.5
parent: 2
type: Transform
- - uid: 1831
+ - uid: 1833
components:
- pos: 0.5,71.5
parent: 2
type: Transform
- - uid: 1832
+ - uid: 1834
components:
- pos: 1.5,72.5
parent: 2
type: Transform
- - uid: 1833
+ - uid: 1835
components:
- pos: 1.5,71.5
parent: 2
type: Transform
- - uid: 1834
+ - uid: 1836
components:
- pos: 2.5,72.5
parent: 2
type: Transform
- - uid: 1835
+ - uid: 1837
components:
- pos: 2.5,71.5
parent: 2
type: Transform
- - uid: 1836
+ - uid: 1838
components:
- pos: 3.5,72.5
parent: 2
type: Transform
- - uid: 1837
+ - uid: 1839
components:
- pos: 3.5,71.5
parent: 2
type: Transform
- - uid: 1838
+ - uid: 1840
components:
- pos: -0.5,73.5
parent: 2
type: Transform
- - uid: 1839
+ - uid: 1841
components:
- pos: 0.5,73.5
parent: 2
type: Transform
- - uid: 1840
+ - uid: 1842
components:
- pos: 1.5,73.5
parent: 2
type: Transform
- - uid: 1841
+ - uid: 1843
components:
- pos: 2.5,73.5
parent: 2
type: Transform
- - uid: 1842
+ - uid: 1844
components:
- pos: 4.5,71.5
parent: 2
type: Transform
- - uid: 1843
+ - uid: 1845
components:
- pos: 4.5,70.5
parent: 2
type: Transform
- - uid: 1844
+ - uid: 1846
components:
- pos: 4.5,69.5
parent: 2
type: Transform
- - uid: 1845
+ - uid: 1847
components:
- pos: 4.5,68.5
parent: 2
type: Transform
- - uid: 1846
+ - uid: 1848
components:
- pos: 4.5,67.5
parent: 2
type: Transform
- - uid: 1847
+ - uid: 1849
components:
- pos: 2.5,70.5
parent: 2
type: Transform
- - uid: 1848
+ - uid: 1850
components:
- pos: 2.5,69.5
parent: 2
type: Transform
- - uid: 1849
+ - uid: 1851
components:
- pos: 2.5,68.5
parent: 2
type: Transform
- - uid: 1850
+ - uid: 1852
components:
- pos: 2.5,67.5
parent: 2
type: Transform
- - uid: 1851
+ - uid: 1853
components:
- pos: 2.5,66.5
parent: 2
type: Transform
- - uid: 1852
+ - uid: 1854
components:
- pos: 3.5,70.5
parent: 2
type: Transform
- - uid: 1853
+ - uid: 1855
components:
- pos: 3.5,69.5
parent: 2
type: Transform
- - uid: 1854
+ - uid: 1856
components:
- pos: 3.5,68.5
parent: 2
type: Transform
- - uid: 1855
+ - uid: 1857
components:
- pos: 3.5,67.5
parent: 2
type: Transform
- - uid: 1856
+ - uid: 1858
components:
- pos: 3.5,66.5
parent: 2
type: Transform
- - uid: 1857
+ - uid: 1859
components:
- pos: 0.5,70.5
parent: 2
type: Transform
- - uid: 1858
+ - uid: 1860
components:
- pos: 0.5,69.5
parent: 2
type: Transform
- - uid: 1859
+ - uid: 1861
components:
- pos: 0.5,68.5
parent: 2
type: Transform
- - uid: 1860
+ - uid: 1862
components:
- pos: 0.5,67.5
parent: 2
type: Transform
- - uid: 1861
+ - uid: 1863
components:
- pos: 0.5,66.5
parent: 2
type: Transform
- - uid: 1862
+ - uid: 1864
components:
- pos: 0.5,65.5
parent: 2
type: Transform
- - uid: 1863
+ - uid: 1865
components:
- pos: 1.5,70.5
parent: 2
type: Transform
- - uid: 1864
+ - uid: 1866
components:
- pos: 1.5,69.5
parent: 2
type: Transform
- - uid: 1865
+ - uid: 1867
components:
- pos: 1.5,68.5
parent: 2
type: Transform
- - uid: 1866
+ - uid: 1868
components:
- pos: 1.5,67.5
parent: 2
type: Transform
- - uid: 1867
+ - uid: 1869
components:
- pos: 1.5,66.5
parent: 2
type: Transform
- - uid: 1868
+ - uid: 1870
components:
- pos: 1.5,65.5
parent: 2
type: Transform
- - uid: 1869
+ - uid: 1871
components:
- pos: -1.5,70.5
parent: 2
type: Transform
- - uid: 1870
+ - uid: 1872
components:
- pos: -1.5,69.5
parent: 2
type: Transform
- - uid: 1871
+ - uid: 1873
components:
- pos: -1.5,68.5
parent: 2
type: Transform
- - uid: 1872
+ - uid: 1874
components:
- pos: -1.5,67.5
parent: 2
type: Transform
- - uid: 1873
+ - uid: 1875
components:
- pos: -1.5,66.5
parent: 2
type: Transform
- - uid: 1874
+ - uid: 1876
components:
- pos: -1.5,65.5
parent: 2
type: Transform
- - uid: 1875
+ - uid: 1877
components:
- pos: -0.5,70.5
parent: 2
type: Transform
- - uid: 1876
+ - uid: 1878
components:
- pos: -0.5,69.5
parent: 2
type: Transform
- - uid: 1877
+ - uid: 1879
components:
- pos: -0.5,68.5
parent: 2
type: Transform
- - uid: 1878
+ - uid: 1880
components:
- pos: -0.5,67.5
parent: 2
type: Transform
- - uid: 1879
+ - uid: 1881
components:
- pos: -0.5,66.5
parent: 2
type: Transform
- - uid: 1880
+ - uid: 1882
components:
- pos: -0.5,65.5
parent: 2
type: Transform
- - uid: 1881
+ - uid: 1883
components:
- pos: -2.5,65.5
parent: 2
type: Transform
- - uid: 1882
+ - uid: 1884
components:
- pos: -3.5,65.5
parent: 2
type: Transform
- - uid: 1883
+ - uid: 1885
components:
- pos: -4.5,65.5
parent: 2
type: Transform
- - uid: 1884
+ - uid: 1886
components:
- pos: 53.5,-47.5
parent: 2
type: Transform
- - uid: 1885
+ - uid: 1887
components:
- pos: 53.5,-48.5
parent: 2
type: Transform
- - uid: 1886
+ - uid: 1888
components:
- pos: 54.5,-47.5
parent: 2
type: Transform
- - uid: 1887
+ - uid: 1889
components:
- pos: 54.5,-48.5
parent: 2
type: Transform
- - uid: 1888
+ - uid: 1890
components:
- pos: 55.5,-47.5
parent: 2
type: Transform
- - uid: 1889
+ - uid: 1891
components:
- pos: 55.5,-48.5
parent: 2
type: Transform
- - uid: 1890
+ - uid: 1892
components:
- pos: 56.5,-47.5
parent: 2
type: Transform
- - uid: 1891
+ - uid: 1893
components:
- pos: 56.5,-48.5
parent: 2
type: Transform
- - uid: 1892
+ - uid: 1894
components:
- pos: 57.5,-47.5
parent: 2
type: Transform
- - uid: 1893
+ - uid: 1895
components:
- pos: 57.5,-48.5
parent: 2
type: Transform
- - uid: 1894
+ - uid: 1896
components:
- pos: 54.5,-49.5
parent: 2
type: Transform
- - uid: 1895
+ - uid: 1897
components:
- pos: 55.5,-49.5
parent: 2
type: Transform
- - uid: 1896
+ - uid: 1898
components:
- pos: 56.5,-49.5
parent: 2
type: Transform
- - uid: 1897
+ - uid: 1899
components:
- pos: 57.5,-49.5
parent: 2
type: Transform
- proto: AtmosFixNitrogenMarker
entities:
- - uid: 1898
+ - uid: 1900
components:
- pos: -48.5,-54.5
parent: 2
type: Transform
- - uid: 1899
+ - uid: 1901
components:
- pos: -49.5,-54.5
parent: 2
type: Transform
- - uid: 1900
+ - uid: 1902
components:
- pos: -50.5,-54.5
parent: 2
type: Transform
- proto: AtmosFixOxygenMarker
entities:
- - uid: 1901
+ - uid: 1903
components:
- pos: -48.5,-52.5
parent: 2
type: Transform
- - uid: 1902
+ - uid: 1904
components:
- pos: -49.5,-52.5
parent: 2
type: Transform
- - uid: 1903
+ - uid: 1905
components:
- pos: -50.5,-52.5
parent: 2
type: Transform
- proto: AtmosFixPlasmaMarker
entities:
- - uid: 1904
+ - uid: 1906
components:
- pos: -48.5,-46.5
parent: 2
type: Transform
- - uid: 1905
+ - uid: 1907
components:
- pos: -49.5,-46.5
parent: 2
type: Transform
- - uid: 1906
+ - uid: 1908
components:
- pos: -50.5,-46.5
parent: 2
type: Transform
- proto: Autolathe
entities:
- - uid: 1907
+ - uid: 1909
components:
- pos: 40.5,-35.5
parent: 2
@@ -21674,263 +21691,263 @@ entities:
- Glass
- Cloth
type: MaterialStorage
- - uid: 1908
+ - uid: 1910
components:
- pos: -34.5,19.5
parent: 2
type: Transform
- - uid: 1909
+ - uid: 1911
components:
- pos: -37.5,-9.5
parent: 2
type: Transform
- proto: AutolatheMachineCircuitboard
entities:
- - uid: 1910
+ - uid: 1912
components:
- pos: -37.452168,-18.414932
parent: 2
type: Transform
- proto: BananaPhoneInstrument
entities:
- - uid: 1911
+ - uid: 1913
components:
- pos: -19.559175,37.640453
parent: 2
type: Transform
- proto: BananaSeeds
entities:
- - uid: 1912
+ - uid: 1914
components:
- pos: 2.4199185,-21.169794
parent: 2
type: Transform
- proto: BananiumOre1
entities:
- - uid: 1913
+ - uid: 1915
components:
- pos: -44.56904,61.76841
parent: 2
type: Transform
- - uid: 1914
+ - uid: 1916
components:
- pos: -45.38154,60.565285
parent: 2
type: Transform
- - uid: 1915
+ - uid: 1917
components:
- pos: -44.647163,61.39341
parent: 2
type: Transform
- proto: BannerCargo
entities:
- - uid: 1916
+ - uid: 1918
components:
- pos: -25.5,24.5
parent: 2
type: Transform
- - uid: 1917
+ - uid: 1919
components:
- pos: -25.5,17.5
parent: 2
type: Transform
- proto: BannerEngineering
entities:
- - uid: 1918
+ - uid: 1920
components:
- pos: -25.5,-8.5
parent: 2
type: Transform
- - uid: 1919
+ - uid: 1921
components:
- pos: -23.5,-17.5
parent: 2
type: Transform
- proto: BannerMedical
entities:
- - uid: 1920
+ - uid: 1922
components:
- pos: 1.5,-43.5
parent: 2
type: Transform
- - uid: 1921
+ - uid: 1923
components:
- pos: -10.5,-43.5
parent: 2
type: Transform
- proto: BannerNanotrasen
entities:
- - uid: 1922
+ - uid: 1924
components:
- pos: 28.5,-16.5
parent: 2
type: Transform
- - uid: 1923
+ - uid: 1925
components:
- pos: 22.5,-16.5
parent: 2
type: Transform
- proto: BannerRevolution
entities:
- - uid: 1924
+ - uid: 1926
components:
- pos: 0.5,-73.5
parent: 2
type: Transform
- - uid: 1925
+ - uid: 1927
components:
- pos: -47.5,-72.5
parent: 2
type: Transform
- - uid: 1926
+ - uid: 1928
components:
- pos: -36.5,-72.5
parent: 2
type: Transform
- - uid: 1927
+ - uid: 1929
components:
- pos: -46.5,-84.5
parent: 2
type: Transform
- - uid: 1928
+ - uid: 1930
components:
- pos: -37.5,-84.5
parent: 2
type: Transform
- - uid: 1929
+ - uid: 1931
components:
- pos: 62.5,-69.5
parent: 2
type: Transform
- - uid: 1930
+ - uid: 1932
components:
- pos: 60.5,-69.5
parent: 2
type: Transform
- - uid: 1931
+ - uid: 1933
components:
- pos: 55.5,57.5
parent: 2
type: Transform
- - uid: 1932
+ - uid: 1934
components:
- pos: 53.5,57.5
parent: 2
type: Transform
- proto: BannerScience
entities:
- - uid: 1933
+ - uid: 1935
components:
- pos: 48.5,-40.5
parent: 2
type: Transform
- - uid: 1934
+ - uid: 1936
components:
- pos: 48.5,-44.5
parent: 2
type: Transform
- - uid: 1935
+ - uid: 1937
components:
- pos: 59.5,-49.5
parent: 2
type: Transform
- - uid: 1936
+ - uid: 1938
components:
- pos: 65.5,-49.5
parent: 2
type: Transform
- proto: BannerSecurity
entities:
- - uid: 1937
+ - uid: 1939
components:
- pos: 21.5,18.5
parent: 2
type: Transform
- - uid: 1938
+ - uid: 1940
components:
- pos: 27.5,8.5
parent: 2
type: Transform
- - uid: 1939
+ - uid: 1941
components:
- pos: 23.5,8.5
parent: 2
type: Transform
- proto: Barricade
entities:
- - uid: 1940
+ - uid: 1942
components:
- rot: -1.5707963267948966 rad
pos: -26.5,-64.5
parent: 2
type: Transform
- - uid: 1941
+ - uid: 1943
components:
- pos: -3.5,-75.5
parent: 2
type: Transform
- - uid: 1942
+ - uid: 1944
components:
- pos: 42.5,-9.5
parent: 2
type: Transform
- - uid: 1943
+ - uid: 1945
components:
- pos: 44.5,-9.5
parent: 2
type: Transform
- - uid: 1944
+ - uid: 1946
components:
- pos: 48.5,-12.5
parent: 2
type: Transform
- - uid: 1945
+ - uid: 1947
components:
- rot: 3.141592653589793 rad
pos: -35.5,-23.5
parent: 2
type: Transform
- - uid: 1946
+ - uid: 1948
components:
- rot: 1.5707963267948966 rad
pos: -48.5,-66.5
parent: 2
type: Transform
- - uid: 1947
+ - uid: 1949
components:
- rot: 1.5707963267948966 rad
pos: -44.5,-66.5
parent: 2
type: Transform
- - uid: 1948
+ - uid: 1950
components:
- rot: 1.5707963267948966 rad
pos: -45.5,-67.5
parent: 2
type: Transform
- - uid: 1949
+ - uid: 1951
components:
- rot: 3.141592653589793 rad
pos: 20.5,-49.5
parent: 2
type: Transform
- - uid: 1950
+ - uid: 1952
components:
- rot: 3.141592653589793 rad
pos: 67.5,-61.5
parent: 2
type: Transform
- - uid: 1951
+ - uid: 1953
components:
- pos: 67.5,-63.5
parent: 2
type: Transform
- - uid: 1952
+ - uid: 1954
components:
- pos: -39.5,-21.5
parent: 2
type: Transform
- - uid: 1953
+ - uid: 1955
components:
- rot: -1.5707963267948966 rad
pos: 54.5,53.5
@@ -21938,28 +21955,28 @@ entities:
type: Transform
- proto: BarricadeBlock
entities:
- - uid: 1954
+ - uid: 1956
components:
- pos: -39.5,-95.5
parent: 2
type: Transform
- - uid: 1955
+ - uid: 1957
components:
- pos: -42.5,-86.5
parent: 2
type: Transform
- - uid: 1956
+ - uid: 1958
components:
- pos: -42.5,-28.5
parent: 2
type: Transform
- - uid: 1957
+ - uid: 1959
components:
- rot: -1.5707963267948966 rad
pos: 56.5,35.5
parent: 2
type: Transform
- - uid: 1958
+ - uid: 1960
components:
- rot: -1.5707963267948966 rad
pos: 54.5,54.5
@@ -21967,55 +21984,55 @@ entities:
type: Transform
- proto: BarricadeDirectional
entities:
- - uid: 1959
+ - uid: 1961
components:
- rot: 3.141592653589793 rad
pos: -17.5,-96.5
parent: 2
type: Transform
- - uid: 1960
+ - uid: 1962
components:
- rot: -1.5707963267948966 rad
pos: -47.5,-77.5
parent: 2
type: Transform
- - uid: 1961
+ - uid: 1963
components:
- rot: -1.5707963267948966 rad
pos: -47.5,-78.5
parent: 2
type: Transform
- - uid: 1962
+ - uid: 1964
components:
- rot: 1.5707963267948966 rad
pos: -49.5,-68.5
parent: 2
type: Transform
- - uid: 1963
+ - uid: 1965
components:
- rot: -1.5707963267948966 rad
pos: -50.5,-65.5
parent: 2
type: Transform
- - uid: 1964
+ - uid: 1966
components:
- rot: -1.5707963267948966 rad
pos: 24.5,-84.5
parent: 2
type: Transform
- - uid: 1965
+ - uid: 1967
components:
- rot: -1.5707963267948966 rad
pos: 24.5,-85.5
parent: 2
type: Transform
- - uid: 1966
+ - uid: 1968
components:
- rot: -1.5707963267948966 rad
pos: 24.5,-81.5
parent: 2
type: Transform
- - uid: 1967
+ - uid: 1969
components:
- rot: -1.5707963267948966 rad
pos: 24.5,-82.5
@@ -22023,7 +22040,7 @@ entities:
type: Transform
- proto: BarSign
entities:
- - uid: 1968
+ - uid: 1970
components:
- desc: Recently relicensed after a long closure.
name: The Emergency Rum Party
@@ -22033,7 +22050,7 @@ entities:
type: Transform
- current: EmergencyRumParty
type: BarSign
- - uid: 1969
+ - uid: 1971
components:
- desc: A very controversial bar known for its wide variety of constantly-changing drinks.
name: The Coderbus
@@ -22043,243 +22060,255 @@ entities:
type: Transform
- current: TheCoderbus
type: BarSign
- - uid: 1970
+ - uid: 1972
components:
- pos: 33.5,48.5
parent: 2
type: Transform
+- proto: BaseGasCondenser
+ entities:
+ - uid: 1973
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 10.5,-45.5
+ parent: 2
+ type: Transform
+ - uid: 1974
+ components:
+ - pos: -49.5,-34.5
+ parent: 2
+ type: Transform
+ - uid: 1975
+ components:
+ - pos: -49.5,-35.5
+ parent: 2
+ type: Transform
- proto: Basketball
entities:
- - uid: 1971
+ - uid: 1976
components:
- pos: 59.373314,-2.3464775
parent: 2
type: Transform
- - uid: 1972
+ - uid: 1977
components:
- pos: -49.590145,-63.44321
parent: 2
type: Transform
- proto: Beaker
entities:
- - uid: 1973
+ - uid: 1978
components:
- pos: -25.200409,-78.7421
parent: 2
type: Transform
- - uid: 1974
+ - uid: 1979
components:
- pos: 54.768433,18.769468
parent: 2
type: Transform
- - uid: 1975
+ - uid: 1980
components:
- pos: 54.659058,18.535093
parent: 2
type: Transform
- - uid: 1976
+ - uid: 1981
components:
- pos: 51.539406,-40.488155
parent: 2
type: Transform
- proto: Bed
entities:
- - uid: 1977
+ - uid: 1982
components:
- pos: 36.5,7.5
parent: 2
type: Transform
- - uid: 1978
+ - uid: 1983
components:
- pos: 36.5,4.5
parent: 2
type: Transform
- - uid: 1979
+ - uid: 1984
components:
- pos: 8.5,22.5
parent: 2
type: Transform
- - uid: 1980
+ - uid: 1985
components:
- pos: 29.5,10.5
parent: 2
type: Transform
- - uid: 1981
+ - uid: 1986
components:
- pos: 32.5,10.5
parent: 2
type: Transform
- - uid: 1982
+ - uid: 1987
components:
- pos: 35.5,10.5
parent: 2
type: Transform
- - uid: 1983
+ - uid: 1988
components:
- pos: -26.5,43.5
parent: 2
type: Transform
- - uid: 1984
+ - uid: 1989
components:
- pos: -7.5,-4.5
parent: 2
type: Transform
- - uid: 1985
- components:
- - pos: -15.5,-39.5
- parent: 2
- type: Transform
- - uid: 1986
+ - uid: 1990
components:
- pos: 55.5,24.5
parent: 2
type: Transform
- - uid: 1987
+ - uid: 1991
components:
- pos: 52.5,24.5
parent: 2
type: Transform
- - uid: 1988
+ - uid: 1992
components:
- pos: 49.5,24.5
parent: 2
type: Transform
- - uid: 1989
+ - uid: 1993
components:
- pos: 46.5,24.5
parent: 2
type: Transform
- - uid: 1990
+ - uid: 1994
components:
- pos: 58.5,24.5
parent: 2
type: Transform
- - uid: 1991
+ - uid: 1995
components:
- pos: 62.5,19.5
parent: 2
type: Transform
- - uid: 1992
+ - uid: 1996
components:
- pos: 62.5,16.5
parent: 2
type: Transform
- - uid: 1993
+ - uid: 1997
components:
- pos: 62.5,-55.5
parent: 2
type: Transform
- - uid: 1994
+ - uid: 1998
components:
- pos: -30.5,31.5
parent: 2
type: Transform
- - uid: 1995
+ - uid: 1999
components:
- pos: 32.5,-29.5
parent: 2
type: Transform
- - uid: 1996
+ - uid: 2000
components:
- pos: -29.5,14.5
parent: 2
type: Transform
- - uid: 1997
+ - uid: 2001
components:
- pos: -42.5,9.5
parent: 2
type: Transform
- - uid: 1998
+ - uid: 2002
components:
- pos: -51.5,6.5
parent: 2
type: Transform
- - uid: 1999
+ - uid: 2003
components:
- pos: -52.5,15.5
parent: 2
type: Transform
- - uid: 2000
+ - uid: 2004
components:
- pos: -23.5,31.5
parent: 2
type: Transform
- - uid: 2001
+ - uid: 2005
components:
- pos: -19.5,33.5
parent: 2
type: Transform
- - uid: 2002
+ - uid: 2006
components:
- pos: -10.5,31.5
parent: 2
type: Transform
- - uid: 2003
+ - uid: 2007
components:
- pos: -19.5,38.5
parent: 2
type: Transform
- - uid: 2004
+ - uid: 2008
components:
- pos: 48.5,-11.5
parent: 2
type: Transform
- - uid: 2005
- components:
- - pos: -34.5,-20.5
- parent: 2
- type: Transform
- - uid: 2006
+ - uid: 2009
components:
- pos: -0.5,-6.5
parent: 2
type: Transform
- - uid: 2007
+ - uid: 2010
components:
- pos: -1.5,-19.5
parent: 2
type: Transform
- - uid: 2008
+ - uid: 2011
components:
- pos: -1.5,-20.5
parent: 2
type: Transform
- - uid: 2009
+ - uid: 2012
components:
- pos: -52.5,-88.5
parent: 2
type: Transform
+ - uid: 2013
+ components:
+ - pos: -36.5,-20.5
+ parent: 2
+ type: Transform
- proto: BedsheetBlack
entities:
- - uid: 2010
+ - uid: 2014
components:
- pos: -42.5,9.5
parent: 2
type: Transform
- proto: BedsheetCaptain
entities:
- - uid: 2011
+ - uid: 2015
components:
- pos: 32.5,-29.5
parent: 2
type: Transform
- proto: BedsheetCE
entities:
- - uid: 2012
+ - uid: 2016
components:
- - rot: -1.5707963267948966 rad
- pos: -34.5,-20.5
+ - pos: -36.5,-20.5
parent: 2
type: Transform
- proto: BedsheetClown
entities:
- - uid: 2013
+ - uid: 2017
components:
- rot: 3.141592653589793 rad
pos: -19.5,38.5
parent: 2
type: Transform
- - uid: 2014
+ - uid: 2018
components:
- rot: -1.5707963267948966 rad
pos: -1.5,-20.5
@@ -22287,60 +22316,60 @@ entities:
type: Transform
- proto: BedsheetCult
entities:
- - uid: 2015
+ - uid: 2019
components:
- pos: -29.5,14.5
parent: 2
type: Transform
- proto: BedsheetGreen
entities:
- - uid: 2016
+ - uid: 2020
components:
- pos: -51.5,6.5
parent: 2
type: Transform
- proto: BedsheetGrey
entities:
- - uid: 2017
+ - uid: 2021
components:
- pos: 29.5,10.5
parent: 2
type: Transform
- - uid: 2018
+ - uid: 2022
components:
- pos: 32.5,10.5
parent: 2
type: Transform
- - uid: 2019
+ - uid: 2023
components:
- pos: 35.5,10.5
parent: 2
type: Transform
- - uid: 2020
+ - uid: 2024
components:
- pos: 36.5,7.5
parent: 2
type: Transform
- - uid: 2021
+ - uid: 2025
components:
- pos: 36.5,4.5
parent: 2
type: Transform
- - uid: 2022
+ - uid: 2026
components:
- pos: -52.5,15.5
parent: 2
type: Transform
- proto: BedsheetHOP
entities:
- - uid: 2023
+ - uid: 2027
components:
- pos: -0.5,-6.5
parent: 2
type: Transform
- proto: BedsheetHOS
entities:
- - uid: 2024
+ - uid: 2028
components:
- rot: -1.5707963267948966 rad
pos: 8.5,22.5
@@ -22348,72 +22377,72 @@ entities:
type: Transform
- proto: BedsheetIan
entities:
- - uid: 2025
+ - uid: 2029
components:
- pos: 48.5,-11.5
parent: 2
type: Transform
- proto: BedsheetMedical
entities:
- - uid: 2026
+ - uid: 2030
components:
- pos: -21.5,-54.5
parent: 2
type: Transform
- - uid: 2027
+ - uid: 2031
components:
- rot: -1.5707963267948966 rad
pos: -12.5,-57.5
parent: 2
type: Transform
- - uid: 2028
+ - uid: 2032
components:
- rot: -1.5707963267948966 rad
pos: -9.5,-57.5
parent: 2
type: Transform
- - uid: 2029
+ - uid: 2033
components:
- rot: -1.5707963267948966 rad
pos: -6.5,-57.5
parent: 2
type: Transform
- - uid: 2030
+ - uid: 2034
components:
- rot: -1.5707963267948966 rad
pos: -3.5,-57.5
parent: 2
type: Transform
- - uid: 2031
+ - uid: 2035
components:
- rot: -1.5707963267948966 rad
pos: -0.5,-57.5
parent: 2
type: Transform
- - uid: 2032
+ - uid: 2036
components:
- rot: 3.141592653589793 rad
pos: 6.5,-56.5
parent: 2
type: Transform
- - uid: 2033
+ - uid: 2037
components:
- pos: 44.5,4.5
parent: 2
type: Transform
- - uid: 2034
+ - uid: 2038
components:
- pos: 44.5,5.5
parent: 2
type: Transform
- proto: BedsheetMime
entities:
- - uid: 2035
+ - uid: 2039
components:
- pos: -26.5,43.5
parent: 2
type: Transform
- - uid: 2036
+ - uid: 2040
components:
- rot: -1.5707963267948966 rad
pos: -1.5,-19.5
@@ -22421,44 +22450,44 @@ entities:
type: Transform
- proto: BedsheetOrange
entities:
- - uid: 2037
+ - uid: 2041
components:
- pos: 58.5,24.5
parent: 2
type: Transform
- - uid: 2038
+ - uid: 2042
components:
- pos: 55.5,24.5
parent: 2
type: Transform
- - uid: 2039
+ - uid: 2043
components:
- pos: 52.5,24.5
parent: 2
type: Transform
- - uid: 2040
+ - uid: 2044
components:
- pos: 49.5,24.5
parent: 2
type: Transform
- - uid: 2041
+ - uid: 2045
components:
- pos: 46.5,24.5
parent: 2
type: Transform
- - uid: 2042
+ - uid: 2046
components:
- pos: 62.5,19.5
parent: 2
type: Transform
- - uid: 2043
+ - uid: 2047
components:
- pos: 62.5,16.5
parent: 2
type: Transform
- proto: BedsheetQM
entities:
- - uid: 2044
+ - uid: 2048
components:
- rot: 3.141592653589793 rad
pos: -30.5,31.5
@@ -22466,26 +22495,26 @@ entities:
type: Transform
- proto: BedsheetRD
entities:
- - uid: 2045
+ - uid: 2049
components:
- pos: 62.5,-55.5
parent: 2
type: Transform
- proto: BedsheetSpawner
entities:
- - uid: 2046
+ - uid: 2050
components:
- pos: -10.5,31.5
parent: 2
type: Transform
- - uid: 2047
+ - uid: 2051
components:
- pos: -19.5,33.5
parent: 2
type: Transform
- proto: BedsheetSyndie
entities:
- - uid: 2048
+ - uid: 2052
components:
- rot: 3.141592653589793 rad
pos: -52.5,-88.5
@@ -22493,980 +22522,973 @@ entities:
type: Transform
- proto: BedsheetUSA
entities:
- - uid: 2049
+ - uid: 2053
components:
- pos: -23.5,31.5
parent: 2
type: Transform
- proto: Bible
entities:
- - uid: 2050
+ - uid: 2054
components:
- pos: -30.453314,15.631503
parent: 2
type: Transform
- proto: BigBox
entities:
- - uid: 2051
+ - uid: 2055
components:
- pos: 58.475555,34.501217
parent: 2
type: Transform
- proto: BikeHorn
entities:
- - uid: 2052
+ - uid: 2056
components:
- pos: -22.127623,37.564125
parent: 2
type: Transform
- proto: BikeHornInstrument
entities:
- - uid: 2053
+ - uid: 2057
components:
- pos: 2.4660668,-20.657997
parent: 2
type: Transform
-- proto: BiomassReclaimerMachineCircuitboard
- entities:
- - uid: 2054
- components:
- - pos: -11.687319,37.80377
- parent: 2
- type: Transform
- proto: BlastDoor
entities:
- - uid: 2055
+ - uid: 2058
components:
- pos: -78.5,-41.5
parent: 2
type: Transform
- links:
- - 24191
+ - 24212
type: DeviceLinkSink
- - uid: 2056
+ - uid: 2059
components:
- pos: -78.5,-40.5
parent: 2
type: Transform
- links:
- - 24191
+ - 24212
type: DeviceLinkSink
- - uid: 2057
+ - uid: 2060
components:
- pos: -78.5,-42.5
parent: 2
type: Transform
- links:
- - 24191
+ - 24212
type: DeviceLinkSink
- - uid: 2058
+ - uid: 2061
components:
- pos: -74.5,-46.5
parent: 2
type: Transform
- links:
- - 24190
+ - 24211
type: DeviceLinkSink
- - uid: 2059
+ - uid: 2062
components:
- pos: -74.5,-44.5
parent: 2
type: Transform
- links:
- - 24190
+ - 24211
type: DeviceLinkSink
- - uid: 2060
+ - uid: 2063
components:
- pos: -74.5,-45.5
parent: 2
type: Transform
- links:
- - 24190
+ - 24211
type: DeviceLinkSink
- proto: BlastDoorBridge
entities:
- - uid: 2061
+ - uid: 2064
components:
- pos: 10.5,47.5
parent: 2
type: Transform
- links:
- - 24171
+ - 24192
type: DeviceLinkSink
- - uid: 2062
+ - uid: 2065
components:
- pos: 10.5,49.5
parent: 2
type: Transform
- links:
- - 24171
+ - 24192
type: DeviceLinkSink
- - uid: 2063
+ - uid: 2066
components:
- pos: 10.5,48.5
parent: 2
type: Transform
- links:
- - 24171
+ - 24192
type: DeviceLinkSink
- proto: BlastDoorExterior1
entities:
- - uid: 2064
+ - uid: 2067
components:
- pos: 18.5,-56.5
parent: 2
type: Transform
- links:
- - 24147
+ - 24168
type: DeviceLinkSink
- - uid: 2065
+ - uid: 2068
components:
- pos: 47.5,-51.5
parent: 2
type: Transform
- links:
- - 24143
+ - 24164
type: DeviceLinkSink
- - uid: 2066
+ - uid: 2069
components:
- pos: 47.5,-52.5
parent: 2
type: Transform
- links:
- - 24143
+ - 24164
type: DeviceLinkSink
- - uid: 2067
+ - uid: 2070
components:
- pos: 47.5,-53.5
parent: 2
type: Transform
- links:
- - 24143
+ - 24164
type: DeviceLinkSink
- - uid: 2068
+ - uid: 2071
components:
- pos: 47.5,-54.5
parent: 2
type: Transform
- links:
- - 24143
+ - 24164
type: DeviceLinkSink
- - uid: 2069
+ - uid: 2072
components:
- pos: 52.5,-58.5
parent: 2
type: Transform
- links:
- - 24144
+ - 24165
type: DeviceLinkSink
- - uid: 2070
+ - uid: 2073
components:
- pos: 50.5,-62.5
parent: 2
type: Transform
- links:
- - 24177
+ - 24198
type: DeviceLinkSink
- - uid: 2071
+ - uid: 2074
components:
- rot: 1.5707963267948966 rad
pos: 55.5,-56.5
parent: 2
type: Transform
- links:
- - 24146
+ - 24167
type: DeviceLinkSink
- - uid: 2072
+ - uid: 2075
components:
- rot: 1.5707963267948966 rad
pos: 54.5,-56.5
parent: 2
type: Transform
- links:
- - 24146
+ - 24167
type: DeviceLinkSink
- - uid: 2073
+ - uid: 2076
components:
- pos: -45.5,-34.5
parent: 2
type: Transform
- links:
- - 24192
+ - 24213
type: DeviceLinkSink
- - uid: 2074
+ - uid: 2077
components:
- rot: -1.5707963267948966 rad
pos: -40.5,-40.5
parent: 2
type: Transform
- links:
- - 24150
+ - 24171
type: DeviceLinkSink
- - uid: 2075
+ - uid: 2078
components:
- rot: -1.5707963267948966 rad
pos: -39.5,-40.5
parent: 2
type: Transform
- links:
- - 24150
+ - 24171
type: DeviceLinkSink
- - uid: 2076
+ - uid: 2079
components:
- rot: -1.5707963267948966 rad
pos: -38.5,-40.5
parent: 2
type: Transform
- links:
- - 24150
+ - 24171
type: DeviceLinkSink
- - uid: 2077
+ - uid: 2080
components:
- rot: -1.5707963267948966 rad
pos: -37.5,-40.5
parent: 2
type: Transform
- links:
- - 24150
+ - 24171
type: DeviceLinkSink
- - uid: 2078
+ - uid: 2081
components:
- pos: -49.5,19.5
parent: 2
type: Transform
- links:
- - 24152
+ - 24173
type: DeviceLinkSink
- - uid: 2079
+ - uid: 2082
components:
- pos: -49.5,23.5
parent: 2
type: Transform
- links:
- - 24152
+ - 24173
type: DeviceLinkSink
- - uid: 2080
+ - uid: 2083
components:
- pos: 51.5,44.5
parent: 2
type: Transform
- links:
- - 24160
- - 24162
- - 24167
+ - 24181
+ - 24183
+ - 24188
type: DeviceLinkSink
- - uid: 2081
+ - uid: 2084
components:
- pos: 54.5,45.5
parent: 2
type: Transform
- links:
- - 24158
- - 24160
+ - 24179
+ - 24181
type: DeviceLinkSink
- - uid: 2082
+ - uid: 2085
components:
- pos: -52.5,34.5
parent: 2
type: Transform
- links:
- - 24182
+ - 24203
type: DeviceLinkSink
- - uid: 2083
+ - uid: 2086
components:
- pos: -52.5,30.5
parent: 2
type: Transform
- links:
- - 24145
+ - 24166
type: DeviceLinkSink
- - uid: 2084
+ - uid: 2087
components:
- pos: -53.5,23.5
parent: 2
type: Transform
- links:
- - 24151
+ - 24172
type: DeviceLinkSink
- - uid: 2085
+ - uid: 2088
components:
- pos: -53.5,19.5
parent: 2
type: Transform
- links:
- - 24151
+ - 24172
type: DeviceLinkSink
- - uid: 2086
+ - uid: 2089
components:
- pos: 53.5,46.5
parent: 2
type: Transform
- links:
- - 24154
- - 24163
- - 24170
+ - 24175
+ - 24184
+ - 24191
type: DeviceLinkSink
- - uid: 2087
+ - uid: 2090
components:
- pos: 55.5,46.5
parent: 2
type: Transform
- links:
- - 24158
- - 24161
+ - 24179
+ - 24182
type: DeviceLinkSink
- - uid: 2088
+ - uid: 2091
components:
- pos: 50.5,47.5
parent: 2
type: Transform
- links:
- - 24156
+ - 24177
type: DeviceLinkSink
- - uid: 2089
+ - uid: 2092
components:
- pos: 57.5,44.5
parent: 2
type: Transform
- links:
- - 24162
+ - 24183
type: DeviceLinkSink
- - uid: 2090
+ - uid: 2093
components:
- pos: 56.5,47.5
parent: 2
type: Transform
- links:
- - 24153
+ - 24174
type: DeviceLinkSink
- - uid: 2091
+ - uid: 2094
components:
- pos: 51.5,48.5
parent: 2
type: Transform
- - uid: 2092
+ - uid: 2095
components:
- pos: 53.5,48.5
parent: 2
type: Transform
- links:
- - 24153
- - 24168
- - 24170
+ - 24174
+ - 24189
+ - 24191
type: DeviceLinkSink
- - uid: 2093
+ - uid: 2096
components:
- pos: 55.5,48.5
parent: 2
type: Transform
- links:
- - 24168
+ - 24189
type: DeviceLinkSink
- - uid: 2094
+ - uid: 2097
components:
- pos: 58.5,47.5
parent: 2
type: Transform
- links:
- - 24154
+ - 24175
type: DeviceLinkSink
- - uid: 2095
+ - uid: 2098
components:
- pos: 52.5,45.5
parent: 2
type: Transform
- links:
- - 24157
- - 24166
+ - 24178
+ - 24187
type: DeviceLinkSink
- - uid: 2096
+ - uid: 2099
components:
- pos: 53.5,44.5
parent: 2
type: Transform
- links:
- - 24164
- - 24170
+ - 24185
+ - 24191
type: DeviceLinkSink
- - uid: 2097
+ - uid: 2100
components:
- pos: 55.5,44.5
parent: 2
type: Transform
- links:
- - 24164
- - 24167
+ - 24185
+ - 24188
type: DeviceLinkSink
- - uid: 2098
+ - uid: 2101
components:
- pos: 58.5,45.5
parent: 2
type: Transform
- links:
- - 24165
+ - 24186
type: DeviceLinkSink
- - uid: 2099
+ - uid: 2102
components:
- pos: 57.5,46.5
parent: 2
type: Transform
- links:
- - 24157
- - 24159
- - 24168
+ - 24178
+ - 24180
+ - 24189
type: DeviceLinkSink
- - uid: 2100
+ - uid: 2103
components:
- pos: 57.5,48.5
parent: 2
type: Transform
- - uid: 2101
+ - uid: 2104
components:
- pos: 54.5,47.5
parent: 2
type: Transform
- links:
- - 24161
+ - 24182
type: DeviceLinkSink
- - uid: 2102
+ - uid: 2105
components:
- pos: 52.5,47.5
parent: 2
type: Transform
- links:
- - 24163
+ - 24184
type: DeviceLinkSink
- - uid: 2103
+ - uid: 2106
components:
- pos: 51.5,46.5
parent: 2
type: Transform
- links:
- - 24167
- - 24168
+ - 24188
+ - 24189
type: DeviceLinkSink
- - uid: 2104
+ - uid: 2107
components:
- pos: 56.5,45.5
parent: 2
type: Transform
- links:
- - 24159
- - 24165
+ - 24180
+ - 24186
type: DeviceLinkSink
- - uid: 2105
+ - uid: 2108
components:
- pos: 50.5,45.5
parent: 2
type: Transform
- links:
- - 24156
- - 24166
+ - 24177
+ - 24187
type: DeviceLinkSink
- - uid: 2106
+ - uid: 2109
components:
- pos: -18.5,-96.5
parent: 2
type: Transform
- links:
- - 24173
+ - 24194
type: DeviceLinkSink
- - uid: 2107
+ - uid: 2110
components:
- pos: -18.5,-98.5
parent: 2
type: Transform
- links:
- - 24173
+ - 24194
type: DeviceLinkSink
- - uid: 2108
+ - uid: 2111
components:
- pos: -26.5,-96.5
parent: 2
type: Transform
- links:
- - 24174
+ - 24195
type: DeviceLinkSink
- - uid: 2109
+ - uid: 2112
components:
- pos: -26.5,-98.5
parent: 2
type: Transform
- links:
- - 24174
+ - 24195
type: DeviceLinkSink
- - uid: 2110
+ - uid: 2113
components:
- pos: 67.5,-39.5
parent: 2
type: Transform
- links:
- - 24142
+ - 24163
type: DeviceLinkSink
- - uid: 2111
+ - uid: 2114
components:
- rot: 3.141592653589793 rad
pos: 72.5,-27.5
parent: 2
type: Transform
- links:
- - 24178
+ - 24199
type: DeviceLinkSink
- - uid: 2112
+ - uid: 2115
components:
- pos: -45.5,-35.5
parent: 2
type: Transform
- links:
- - 24192
+ - 24213
type: DeviceLinkSink
- proto: BlastDoorExterior1Open
entities:
- - uid: 2113
+ - uid: 2116
components:
- rot: -1.5707963267948966 rad
pos: 24.5,46.5
parent: 2
type: Transform
- links:
- - 24172
+ - 24193
type: DeviceLinkSink
- - uid: 2114
+ - uid: 2117
components:
- rot: -1.5707963267948966 rad
pos: 23.5,46.5
parent: 2
type: Transform
- links:
- - 24172
+ - 24193
type: DeviceLinkSink
- - uid: 2115
+ - uid: 2118
components:
- rot: -1.5707963267948966 rad
pos: 25.5,46.5
parent: 2
type: Transform
- links:
- - 24172
+ - 24193
type: DeviceLinkSink
- - uid: 2116
+ - uid: 2119
components:
- rot: -1.5707963267948966 rad
pos: 26.5,44.5
parent: 2
type: Transform
- links:
- - 24172
+ - 24193
type: DeviceLinkSink
- - uid: 2117
+ - uid: 2120
components:
- rot: -1.5707963267948966 rad
pos: 24.5,44.5
parent: 2
type: Transform
- links:
- - 24172
+ - 24193
type: DeviceLinkSink
- - uid: 2118
+ - uid: 2121
components:
- rot: -1.5707963267948966 rad
pos: 23.5,44.5
parent: 2
type: Transform
- links:
- - 24172
+ - 24193
type: DeviceLinkSink
- - uid: 2119
+ - uid: 2122
components:
- rot: -1.5707963267948966 rad
pos: 25.5,44.5
parent: 2
type: Transform
- links:
- - 24172
+ - 24193
type: DeviceLinkSink
- - uid: 2120
+ - uid: 2123
components:
- rot: -1.5707963267948966 rad
pos: 26.5,46.5
parent: 2
type: Transform
- links:
- - 24172
+ - 24193
type: DeviceLinkSink
- - uid: 2121
+ - uid: 2124
components:
- rot: -1.5707963267948966 rad
pos: 22.5,44.5
parent: 2
type: Transform
- links:
- - 24172
+ - 24193
type: DeviceLinkSink
- - uid: 2122
+ - uid: 2125
components:
- rot: -1.5707963267948966 rad
pos: 22.5,46.5
parent: 2
type: Transform
- links:
- - 24172
+ - 24193
type: DeviceLinkSink
- - uid: 2123
+ - uid: 2126
components:
- pos: -8.5,-91.5
parent: 2
type: Transform
- links:
- - 24175
- - 24176
+ - 24196
+ - 24197
type: DeviceLinkSink
- - uid: 2124
+ - uid: 2127
components:
- pos: -8.5,-92.5
parent: 2
type: Transform
- links:
- - 24175
- - 24176
+ - 24196
+ - 24197
type: DeviceLinkSink
- - uid: 2125
+ - uid: 2128
components:
- pos: -8.5,-93.5
parent: 2
type: Transform
- links:
- - 24175
- - 24176
+ - 24196
+ - 24197
type: DeviceLinkSink
- - uid: 2126
+ - uid: 2129
components:
- pos: -6.5,-91.5
parent: 2
type: Transform
- links:
- - 24175
- - 24176
+ - 24196
+ - 24197
type: DeviceLinkSink
- - uid: 2127
+ - uid: 2130
components:
- pos: -6.5,-90.5
parent: 2
type: Transform
- links:
- - 24175
- - 24176
+ - 24196
+ - 24197
type: DeviceLinkSink
- - uid: 2128
+ - uid: 2131
components:
- pos: -6.5,-92.5
parent: 2
type: Transform
- links:
- - 24175
- - 24176
+ - 24196
+ - 24197
type: DeviceLinkSink
- - uid: 2129
+ - uid: 2132
components:
- pos: -6.5,-93.5
parent: 2
type: Transform
- links:
- - 24175
- - 24176
+ - 24196
+ - 24197
type: DeviceLinkSink
- - uid: 2130
+ - uid: 2133
components:
- pos: -8.5,-90.5
parent: 2
type: Transform
- links:
- - 24175
- - 24176
+ - 24196
+ - 24197
type: DeviceLinkSink
- proto: BlastDoorExterior2
entities:
- - uid: 2131
+ - uid: 2134
components:
- pos: -11.5,-11.5
parent: 2
type: Transform
- links:
- - 24139
+ - 24160
type: DeviceLinkSink
- proto: BlastDoorOpen
entities:
- - uid: 2132
+ - uid: 2135
components:
- pos: -56.5,-11.5
parent: 2
type: Transform
- links:
- - 24149
+ - 24170
type: DeviceLinkSink
- - uid: 2133
+ - uid: 2136
components:
- pos: -56.5,-12.5
parent: 2
type: Transform
- links:
- - 24149
+ - 24170
type: DeviceLinkSink
- - uid: 2134
+ - uid: 2137
components:
- pos: -56.5,-13.5
parent: 2
type: Transform
- links:
- - 24149
+ - 24170
type: DeviceLinkSink
- - uid: 2135
+ - uid: 2138
components:
- pos: -56.5,-14.5
parent: 2
type: Transform
- links:
- - 24149
+ - 24170
type: DeviceLinkSink
- - uid: 2136
+ - uid: 2139
components:
- pos: -56.5,-15.5
parent: 2
type: Transform
- links:
- - 24149
+ - 24170
type: DeviceLinkSink
- - uid: 2137
+ - uid: 2140
components:
- rot: -1.5707963267948966 rad
pos: -64.5,-22.5
parent: 2
type: Transform
- links:
- - 24148
+ - 24169
type: DeviceLinkSink
- - uid: 2138
+ - uid: 2141
components:
- rot: -1.5707963267948966 rad
pos: -65.5,-22.5
parent: 2
type: Transform
- links:
- - 24148
+ - 24169
type: DeviceLinkSink
- - uid: 2139
+ - uid: 2142
components:
- rot: -1.5707963267948966 rad
pos: -66.5,-22.5
parent: 2
type: Transform
- links:
- - 24148
+ - 24169
type: DeviceLinkSink
- - uid: 2140
+ - uid: 2143
components:
- rot: -1.5707963267948966 rad
pos: -67.5,-22.5
parent: 2
type: Transform
- links:
- - 24148
+ - 24169
type: DeviceLinkSink
- - uid: 2141
+ - uid: 2144
components:
- rot: -1.5707963267948966 rad
pos: -68.5,-22.5
parent: 2
type: Transform
- links:
- - 24148
+ - 24169
type: DeviceLinkSink
- proto: BlockGameArcadeComputerCircuitboard
entities:
- - uid: 2142
+ - uid: 2145
components:
- pos: -25.444056,-24.257809
parent: 2
type: Transform
- proto: BookAtmosAirAlarms
entities:
- - uid: 2143
+ - uid: 2146
components:
- pos: -24.358501,-36.435444
parent: 2
type: Transform
- proto: BookAtmosDistro
entities:
- - uid: 2144
+ - uid: 2147
components:
- pos: -24.608501,-36.51357
parent: 2
type: Transform
- proto: BookAtmosVentsMore
entities:
- - uid: 2145
+ - uid: 2148
components:
- pos: -25.155376,-36.48232
parent: 2
type: Transform
- proto: BookAtmosWaste
entities:
- - uid: 2146
+ - uid: 2149
components:
- pos: -25.389751,-36.57607
parent: 2
type: Transform
- proto: BookChefGaming
entities:
- - uid: 2147
+ - uid: 2150
components:
- pos: -8.120271,14.578207
parent: 2
type: Transform
- proto: BookDetective
entities:
- - uid: 2148
+ - uid: 2151
components:
- pos: 8.262031,-12.4473095
parent: 2
type: Transform
- - uid: 2149
+ - uid: 2152
components:
- pos: 40.304634,21.43983
parent: 2
type: Transform
- proto: BookEscalation
entities:
- - uid: 2150
+ - uid: 2153
components:
- pos: 9.419705,-6.507422
parent: 2
type: Transform
- proto: BookEscalationSecurity
entities:
- - uid: 2151
+ - uid: 2154
components:
- pos: 15.607252,21.663286
parent: 2
type: Transform
- proto: BookFishing
entities:
- - uid: 2152
+ - uid: 2155
components:
- pos: 40.53901,21.517956
parent: 2
type: Transform
- proto: BookGnominomicon
entities:
- - uid: 2153
+ - uid: 2156
components:
- pos: 8.605781,-12.4316845
parent: 2
type: Transform
- proto: BookRandom
entities:
- - uid: 2154
+ - uid: 2157
components:
- pos: 40.523384,18.611706
parent: 2
type: Transform
- - uid: 2155
+ - uid: 2158
components:
- pos: 38.492134,18.674206
parent: 2
type: Transform
- - uid: 2156
+ - uid: 2159
components:
- pos: 38.429634,21.580456
parent: 2
type: Transform
- - uid: 2157
+ - uid: 2160
components:
- pos: -33.495968,-67.45002
parent: 2
type: Transform
- proto: Bookshelf
entities:
- - uid: 2158
+ - uid: 2161
components:
- pos: 6.5,-9.5
parent: 2
type: Transform
- proto: BookshelfFilled
entities:
- - uid: 2159
+ - uid: 2162
components:
- pos: 6.5,-10.5
parent: 2
type: Transform
- - uid: 2160
+ - uid: 2163
components:
- pos: 41.5,21.5
parent: 2
type: Transform
- - uid: 2161
+ - uid: 2164
components:
- pos: 39.5,21.5
parent: 2
type: Transform
- - uid: 2162
+ - uid: 2165
components:
- pos: 41.5,18.5
parent: 2
type: Transform
- - uid: 2163
+ - uid: 2166
components:
- pos: 39.5,18.5
parent: 2
type: Transform
- - uid: 2164
+ - uid: 2167
components:
- pos: 12.5,-10.5
parent: 2
type: Transform
- - uid: 2165
+ - uid: 2168
components:
- pos: 8.5,-10.5
parent: 2
type: Transform
- - uid: 2166
+ - uid: 2169
components:
- pos: 11.5,-12.5
parent: 2
type: Transform
- - uid: 2167
+ - uid: 2170
components:
- pos: 12.5,-12.5
parent: 2
type: Transform
- - uid: 2168
+ - uid: 2171
components:
- pos: 13.5,-12.5
parent: 2
type: Transform
- - uid: 2169
+ - uid: 2172
components:
- pos: 7.5,-4.5
parent: 2
type: Transform
- - uid: 2170
+ - uid: 2173
components:
- pos: 7.5,-6.5
parent: 2
type: Transform
- - uid: 2171
+ - uid: 2174
components:
- pos: 11.5,-10.5
parent: 2
type: Transform
- - uid: 2172
+ - uid: 2175
components:
- pos: 13.5,-10.5
parent: 2
type: Transform
- proto: BookWatched
entities:
- - uid: 2173
+ - uid: 2176
components:
- rot: 1.5707963267948966 rad
pos: 3.4497375,-9.559602
@@ -23474,118 +23496,118 @@ entities:
type: Transform
- proto: BoozeDispenser
entities:
- - uid: 2174
+ - uid: 2177
components:
- rot: -1.5707963267948966 rad
pos: 18.5,12.5
parent: 2
type: Transform
- - uid: 2175
+ - uid: 2178
components:
- pos: -43.5,-74.5
parent: 2
type: Transform
- - uid: 2176
+ - uid: 2179
components:
- pos: 38.5,51.5
parent: 2
type: Transform
- - uid: 2177
+ - uid: 2180
components:
- rot: -1.5707963267948966 rad
pos: 29.5,-35.5
parent: 2
type: Transform
- - uid: 2178
+ - uid: 2181
components:
- pos: 39.5,63.5
parent: 2
type: Transform
- proto: BorgCharger
entities:
- - uid: 2179
+ - uid: 2182
components:
- pos: 16.5,-3.5
parent: 2
type: Transform
- - uid: 2180
+ - uid: 2183
components:
- pos: -22.5,-6.5
parent: 2
type: Transform
- - uid: 2181
+ - uid: 2184
components:
- pos: 2.5,59.5
parent: 2
type: Transform
- - uid: 2182
+ - uid: 2185
components:
- pos: 49.5,-9.5
parent: 2
type: Transform
- - uid: 2183
+ - uid: 2186
components:
- pos: 70.5,-43.5
parent: 2
type: Transform
- proto: BoxBeaker
entities:
- - uid: 2184
+ - uid: 2187
components:
- - pos: 7.6496778,-46.860195
+ - pos: 9.707096,-45.50268
parent: 2
type: Transform
- - uid: 2185
+ - uid: 2188
components:
- pos: -26.122566,-84.458
parent: 2
type: Transform
- - uid: 2186
+ - uid: 2189
components:
- pos: 42.431667,-35.402893
parent: 2
type: Transform
- - uid: 2187
+ - uid: 2190
components:
- pos: 8.7782135,-62.351368
parent: 2
type: Transform
- proto: BoxBeanbag
entities:
- - uid: 2188
+ - uid: 2191
components:
- pos: 22.537981,13.588842
parent: 2
type: Transform
- proto: BoxBodyBag
entities:
- - uid: 2189
+ - uid: 2192
components:
- pos: -11.506837,-67.45136
parent: 2
type: Transform
- proto: BoxCardboard
entities:
- - uid: 2190
+ - uid: 2193
components:
- pos: 57.684505,34.726276
parent: 2
type: Transform
- - uid: 2191
+ - uid: 2194
components:
- pos: 57.26263,34.39815
parent: 2
type: Transform
- proto: BoxFlashbang
entities:
- - uid: 2192
+ - uid: 2195
components:
- pos: 24.642923,23.542374
parent: 2
type: Transform
- proto: BoxFolderBase
entities:
- - uid: 2193
+ - uid: 2196
components:
- rot: 1.5707963267948966 rad
pos: 37.60159,-5.001878
@@ -23593,7 +23615,7 @@ entities:
type: Transform
- proto: BoxFolderBlack
entities:
- - uid: 2194
+ - uid: 2197
components:
- rot: 1.5707963267948966 rad
pos: 37.617214,-4.673753
@@ -23601,20 +23623,20 @@ entities:
type: Transform
- proto: BoxFolderBlue
entities:
- - uid: 2195
+ - uid: 2198
components:
- pos: 38.992214,-2.4237523
parent: 2
type: Transform
- proto: BoxFolderGrey
entities:
- - uid: 2196
+ - uid: 2199
components:
- rot: 1.5707963267948966 rad
pos: 51.514782,-42.450638
parent: 2
type: Transform
- - uid: 2197
+ - uid: 2200
components:
- rot: 3.141592653589793 rad
pos: -23.516235,11.607702
@@ -23622,98 +23644,98 @@ entities:
type: Transform
- proto: BoxFolderRed
entities:
- - uid: 2198
+ - uid: 2201
components:
- pos: 20.994316,-12.4294405
parent: 2
type: Transform
- - uid: 2199
+ - uid: 2202
components:
- pos: 39.22659,-2.4550023
parent: 2
type: Transform
- proto: BoxFolderWhite
entities:
- - uid: 2200
+ - uid: 2203
components:
- rot: -1.5707963267948966 rad
pos: -22.629791,-70.464714
parent: 2
type: Transform
- - uid: 2201
+ - uid: 2204
components:
- pos: -5.7449856,-48.471176
parent: 2
type: Transform
- - uid: 2202
+ - uid: 2205
components:
- pos: -5.5262356,-48.408676
parent: 2
type: Transform
- proto: BoxFolderYellow
entities:
- - uid: 2203
+ - uid: 2206
components:
- rot: 1.5707963267948966 rad
pos: 37.554714,-4.439378
parent: 2
type: Transform
- - uid: 2204
+ - uid: 2207
components:
- rot: 1.5707963267948966 rad
pos: 51.655407,-42.653763
parent: 2
type: Transform
- - uid: 2205
+ - uid: 2208
components:
- rot: 3.141592653589793 rad
pos: -23.71936,11.498327
parent: 2
type: Transform
- - uid: 2206
+ - uid: 2209
components:
- pos: 55.534363,-40.44579
parent: 2
type: Transform
- proto: BoxForensicPad
entities:
- - uid: 2207
+ - uid: 2210
components:
- pos: 22.673187,-14.497248
parent: 2
type: Transform
- proto: BoxHandcuff
entities:
- - uid: 2208
+ - uid: 2211
components:
- pos: 2.4978194,19.97727
parent: 2
type: Transform
- - uid: 2209
+ - uid: 2212
components:
- pos: 24.439798,23.714249
parent: 2
type: Transform
- proto: BoxHug
entities:
- - uid: 2210
+ - uid: 2213
components:
- pos: 21.518953,53.54002
parent: 2
type: Transform
- - uid: 2211
+ - uid: 2214
components:
- pos: 2.5439682,-20.063549
parent: 2
type: Transform
- proto: BoxingBell
entities:
- - uid: 2212
+ - uid: 2215
components:
- pos: 28.5,5.5
parent: 2
type: Transform
- - uid: 2213
+ - uid: 2216
components:
- rot: 1.5707963267948966 rad
pos: -46.5,-85.5
@@ -23721,223 +23743,223 @@ entities:
type: Transform
- proto: BoxLatexGloves
entities:
- - uid: 2214
+ - uid: 2217
components:
- pos: 8.430597,-62.372696
parent: 2
type: Transform
- - uid: 2215
+ - uid: 2218
components:
- pos: -22.700918,-76.44757
parent: 2
type: Transform
- - uid: 2216
+ - uid: 2219
components:
- pos: 69.515594,-49.409985
parent: 2
type: Transform
- - uid: 2217
+ - uid: 2220
components:
- pos: -0.28067696,-61.388348
parent: 2
type: Transform
- proto: BoxLightbulb
entities:
- - uid: 2218
+ - uid: 2221
components:
- pos: -39.570137,-77.31351
parent: 2
type: Transform
- proto: BoxLightMixed
entities:
- - uid: 2219
+ - uid: 2222
components:
- pos: 39.546867,49.67635
parent: 2
type: Transform
- - uid: 2220
+ - uid: 2223
components:
- pos: -23.56665,-100.24527
parent: 2
type: Transform
- proto: BoxLighttube
entities:
- - uid: 2221
+ - uid: 2224
components:
- pos: -40.05791,25.682219
parent: 2
type: Transform
- proto: BoxMousetrap
entities:
- - uid: 2222
+ - uid: 2225
components:
- pos: -7.3951936,-15.377466
parent: 2
type: Transform
- - uid: 2223
+ - uid: 2226
components:
- pos: 2.3209906,11.720218
parent: 2
type: Transform
- proto: BoxMouthSwab
entities:
- - uid: 2224
+ - uid: 2227
components:
- pos: 10.414972,-62.341446
parent: 2
type: Transform
- - uid: 2225
+ - uid: 2228
components:
- pos: -22.524687,-71.12971
parent: 2
type: Transform
- - uid: 2226
+ - uid: 2229
components:
- pos: -22.357168,-76.22882
parent: 2
type: Transform
- proto: BoxPDA
entities:
- - uid: 2227
+ - uid: 2230
components:
- pos: 4.5991206,-7.254335
parent: 2
type: Transform
- proto: BoxPillCanister
entities:
- - uid: 2228
+ - uid: 2231
components:
- pos: -25.106941,-84.458755
parent: 2
type: Transform
- - uid: 2229
+ - uid: 2232
components:
- pos: -8.487805,-33.36571
parent: 2
type: Transform
- - uid: 2230
+ - uid: 2233
components:
- - pos: 7.6496778,-47.40707
+ - pos: 10.629656,-62.107815
parent: 2
type: Transform
- - uid: 2231
+ - uid: 2234
components:
- - pos: 10.629656,-62.107815
+ - pos: 9.535221,-45.143307
parent: 2
type: Transform
- proto: BoxShotgunSlug
entities:
- - uid: 2232
+ - uid: 2235
components:
- pos: 27.073633,32.655933
parent: 2
type: Transform
- - uid: 2233
+ - uid: 2236
components:
- pos: 27.052765,32.658382
parent: 2
type: Transform
- proto: BoxSterileMask
entities:
- - uid: 2234
+ - uid: 2237
components:
- pos: -0.45298922,-61.30278
parent: 2
type: Transform
- - uid: 2235
+ - uid: 2238
components:
- pos: -22.622793,-78.244446
parent: 2
type: Transform
- - uid: 2236
+ - uid: 2239
components:
- pos: -20.619028,-78.321075
parent: 2
type: Transform
- proto: BoxSyringe
entities:
- - uid: 2237
+ - uid: 2240
components:
- - pos: 7.3840528,-47.15707
+ - pos: 9.300846,-45.47143
parent: 2
type: Transform
- - uid: 2238
+ - uid: 2241
components:
- pos: 8.848293,-62.473377
parent: 2
type: Transform
- - uid: 2239
+ - uid: 2242
components:
- pos: -22.337778,-78.539825
parent: 2
type: Transform
- - uid: 2240
+ - uid: 2243
components:
- pos: -20.634653,-77.352325
parent: 2
type: Transform
- - uid: 2241
+ - uid: 2244
components:
- pos: -26.571459,-84.31156
parent: 2
type: Transform
- - uid: 2242
+ - uid: 2245
components:
- pos: -8.384587,-32.982723
parent: 2
type: Transform
- proto: BoxZiptie
entities:
- - uid: 2243
+ - uid: 2246
components:
- pos: 15.609102,22.64932
parent: 2
type: Transform
- proto: BrbSign
entities:
- - uid: 2244
+ - uid: 2247
components:
- pos: -28.403494,21.398111
parent: 2
type: Transform
- - uid: 2245
+ - uid: 2248
components:
- pos: 4.567957,-7.561912
parent: 2
type: Transform
- proto: BriefcaseBrown
entities:
- - uid: 2246
+ - uid: 2249
components:
- pos: 62.36704,-10.4423
parent: 2
type: Transform
- - uid: 2247
+ - uid: 2250
components:
- rot: 1.5707963267948966 rad
pos: -22.463455,11.6035385
parent: 2
type: Transform
- - uid: 2248
+ - uid: 2251
components:
- pos: -43.482876,-88.91509
parent: 2
type: Transform
- proto: BriefcaseBrownFilled
entities:
- - uid: 2249
+ - uid: 2252
components:
- pos: 43.51077,-2.4121785
parent: 2
type: Transform
- - uid: 2250
+ - uid: 2253
components:
- pos: 32.38076,-48.30607
parent: 2
type: Transform
- proto: BrigTimer
entities:
- - uid: 2251
+ - uid: 2254
components:
- name: cell 3 brig timer
type: MetaData
@@ -23946,12 +23968,12 @@ entities:
parent: 2
type: Transform
- linkedPorts:
- 31040:
+ 31052:
- Start: Close
- Timer: AutoClose
- Timer: Open
type: DeviceLinkSource
- - uid: 2252
+ - uid: 2255
components:
- name: cell 1 brig timer
type: MetaData
@@ -23960,12 +23982,12 @@ entities:
parent: 2
type: Transform
- linkedPorts:
- 31032:
+ 31044:
- Start: Close
- Timer: AutoClose
- Timer: Open
type: DeviceLinkSource
- - uid: 2253
+ - uid: 2256
components:
- name: cell 2 brig timer
type: MetaData
@@ -23974,12 +23996,12 @@ entities:
parent: 2
type: Transform
- linkedPorts:
- 31037:
+ 31049:
- Start: Close
- Timer: AutoClose
- Timer: Open
type: DeviceLinkSource
- - uid: 2254
+ - uid: 2257
components:
- name: cell 4 brig timer
type: MetaData
@@ -23988,12 +24010,12 @@ entities:
parent: 2
type: Transform
- linkedPorts:
- 31033:
+ 31045:
- Start: Close
- Timer: AutoClose
- Timer: Open
type: DeviceLinkSource
- - uid: 2255
+ - uid: 2258
components:
- name: cell 5 brig timer
type: MetaData
@@ -24002,21 +24024,14 @@ entities:
parent: 2
type: Transform
- linkedPorts:
- 31038:
+ 31050:
- Start: Close
- Timer: AutoClose
- Timer: Open
type: DeviceLinkSource
-- proto: BrigTimerElectronics
- entities:
- - uid: 2256
- components:
- - pos: -8.633084,38.341637
- parent: 2
- type: Transform
- proto: BrokenBottle
entities:
- - uid: 2257
+ - uid: 2259
components:
- rot: -1.5707963267948966 rad
pos: -6.571364,-73.41078
@@ -24024,57 +24039,57 @@ entities:
type: Transform
- proto: Brutepack
entities:
- - uid: 2258
+ - uid: 2260
components:
- pos: -9.633343,-56.47309
parent: 2
type: Transform
- - uid: 2259
+ - uid: 2261
components:
- pos: -10.641302,-3.848185
parent: 2
type: Transform
- - uid: 2260
+ - uid: 2262
components:
- pos: -10.266302,-3.785685
parent: 2
type: Transform
- - uid: 2261
+ - uid: 2263
components:
- pos: -0.6646667,-56.50434
parent: 2
type: Transform
- - uid: 2262
+ - uid: 2264
components:
- pos: -3.5865417,-56.488716
parent: 2
type: Transform
- - uid: 2263
+ - uid: 2265
components:
- pos: -6.5713716,-56.519966
parent: 2
type: Transform
- - uid: 2264
+ - uid: 2266
components:
- pos: -12.617692,-56.44184
parent: 2
type: Transform
- - uid: 2265
+ - uid: 2267
components:
- pos: 30.05692,4.5786
parent: 2
type: Transform
- - uid: 2266
+ - uid: 2268
components:
- pos: -6.3699856,-49.096176
parent: 2
type: Transform
- - uid: 2267
+ - uid: 2269
components:
- pos: -6.6512356,-49.408676
parent: 2
type: Transform
- - uid: 2268
+ - uid: 2270
components:
- rot: -1.5707963267948966 rad
pos: 47.410034,4.616682
@@ -24082,60 +24097,60 @@ entities:
type: Transform
- proto: Bucket
entities:
- - uid: 2269
+ - uid: 2271
components:
- pos: -7.4822392,14.606249
parent: 2
type: Transform
- - uid: 2270
+ - uid: 2272
components:
- pos: 2.6959906,11.392093
parent: 2
type: Transform
- - uid: 2271
+ - uid: 2273
components:
- pos: 55.336075,17.733736
parent: 2
type: Transform
- - uid: 2272
+ - uid: 2274
components:
- pos: -29.554869,3.5549593
parent: 2
type: Transform
- - uid: 2273
+ - uid: 2275
components:
- pos: 13.468333,-66.41357
parent: 2
type: Transform
- - uid: 2274
+ - uid: 2276
components:
- pos: 55.53834,27.595942
parent: 2
type: Transform
- - uid: 2275
+ - uid: 2277
components:
- pos: -4.262462,56.45376
parent: 2
type: Transform
- - uid: 2276
+ - uid: 2278
components:
- pos: -4.167221,5.7952065
parent: 2
type: Transform
- - uid: 2277
+ - uid: 2279
components:
- pos: -4.417221,5.4827065
parent: 2
type: Transform
- proto: BulletFoam
entities:
- - uid: 2278
+ - uid: 2280
components:
- rot: -1.5707963267948966 rad
pos: -11.707516,41.19452
parent: 2
type: Transform
- - uid: 2279
+ - uid: 2281
components:
- rot: 3.141592653589793 rad
pos: -11.879391,41.47577
@@ -24143,591 +24158,581 @@ entities:
type: Transform
- proto: BungoSeeds
entities:
- - uid: 2280
+ - uid: 2282
components:
- pos: -50.533592,-27.38226
parent: 2
type: Transform
- proto: CableApcExtension
entities:
- - uid: 2281
- components:
- - pos: 4.5,-11.5
- parent: 2
- type: Transform
- - uid: 2282
- components:
- - pos: 21.5,-39.5
- parent: 2
- type: Transform
- uid: 2283
components:
- - pos: 4.5,-6.5
+ - pos: 10.5,-46.5
parent: 2
type: Transform
- uid: 2284
components:
- - pos: -16.5,11.5
+ - pos: 4.5,-11.5
parent: 2
type: Transform
- uid: 2285
components:
- - pos: -66.5,-35.5
+ - pos: 21.5,-39.5
parent: 2
type: Transform
- uid: 2286
components:
- - pos: -65.5,-38.5
+ - pos: 4.5,-6.5
parent: 2
type: Transform
- uid: 2287
components:
- - pos: -7.5,8.5
+ - pos: -16.5,11.5
parent: 2
type: Transform
- uid: 2288
components:
- - pos: -12.5,-33.5
+ - pos: -66.5,-35.5
parent: 2
type: Transform
- uid: 2289
components:
- - pos: 18.5,-52.5
+ - pos: -65.5,-38.5
parent: 2
type: Transform
- uid: 2290
components:
- - pos: -5.5,1.5
+ - pos: -7.5,8.5
parent: 2
type: Transform
- uid: 2291
components:
- - pos: -7.5,-26.5
+ - pos: -12.5,-33.5
parent: 2
type: Transform
- uid: 2292
components:
- - pos: 33.5,-17.5
+ - pos: 18.5,-52.5
parent: 2
type: Transform
- uid: 2293
components:
- - pos: 15.5,-32.5
+ - pos: -5.5,1.5
parent: 2
type: Transform
- uid: 2294
components:
- - pos: -10.5,-26.5
+ - pos: -7.5,-26.5
parent: 2
type: Transform
- uid: 2295
components:
- - pos: 14.5,-51.5
+ - pos: 33.5,-17.5
parent: 2
type: Transform
- uid: 2296
components:
- - pos: 27.5,-60.5
+ - pos: 15.5,-32.5
parent: 2
type: Transform
- uid: 2297
components:
- - pos: 7.5,-8.5
+ - pos: -10.5,-26.5
parent: 2
type: Transform
- uid: 2298
components:
- - pos: 7.5,-8.5
+ - pos: 14.5,-51.5
parent: 2
type: Transform
- uid: 2299
components:
- - pos: 15.5,-18.5
+ - pos: 27.5,-60.5
parent: 2
type: Transform
- uid: 2300
components:
- - pos: -47.5,38.5
+ - pos: 7.5,-8.5
parent: 2
type: Transform
- uid: 2301
components:
- - pos: 0.5,-41.5
+ - pos: 7.5,-8.5
parent: 2
type: Transform
- uid: 2302
components:
- - pos: -1.5,-41.5
+ - pos: 15.5,-18.5
parent: 2
type: Transform
- uid: 2303
components:
- - pos: 15.5,-10.5
+ - pos: -47.5,38.5
parent: 2
type: Transform
- uid: 2304
components:
- - pos: -4.5,-41.5
+ - pos: 0.5,-41.5
parent: 2
type: Transform
- uid: 2305
components:
- - pos: 32.5,-11.5
+ - pos: -1.5,-41.5
parent: 2
type: Transform
- uid: 2306
components:
- - pos: -6.5,-75.5
+ - pos: 15.5,-10.5
parent: 2
type: Transform
- uid: 2307
components:
- - pos: 32.5,-13.5
+ - pos: -4.5,-41.5
parent: 2
type: Transform
- uid: 2308
components:
- - pos: 15.5,-47.5
+ - pos: 32.5,-11.5
parent: 2
type: Transform
- uid: 2309
components:
- - pos: 6.5,-65.5
+ - pos: -6.5,-75.5
parent: 2
type: Transform
- uid: 2310
components:
- - pos: -4.5,-37.5
+ - pos: 32.5,-13.5
parent: 2
type: Transform
- uid: 2311
components:
- - pos: 8.5,-17.5
+ - pos: 14.5,-47.5
parent: 2
type: Transform
- uid: 2312
components:
- - pos: -12.5,-45.5
+ - pos: 6.5,-65.5
parent: 2
type: Transform
- uid: 2313
components:
- - pos: 14.5,-50.5
+ - pos: -4.5,-37.5
parent: 2
type: Transform
- uid: 2314
components:
- - pos: 15.5,-52.5
+ - pos: 8.5,-17.5
parent: 2
type: Transform
- uid: 2315
components:
- - pos: 27.5,-47.5
+ - pos: -12.5,-45.5
parent: 2
type: Transform
- uid: 2316
components:
- - pos: 31.5,-16.5
+ - pos: 14.5,-50.5
parent: 2
type: Transform
- uid: 2317
components:
- - pos: 16.5,-45.5
+ - pos: 15.5,-52.5
parent: 2
type: Transform
- uid: 2318
components:
- - pos: 20.5,-52.5
+ - pos: 27.5,-47.5
parent: 2
type: Transform
- uid: 2319
components:
- - pos: 21.5,-17.5
+ - pos: 31.5,-16.5
parent: 2
type: Transform
- uid: 2320
components:
- - pos: 15.5,-17.5
+ - pos: 20.5,-52.5
parent: 2
type: Transform
- uid: 2321
components:
- - pos: 16.5,-17.5
+ - pos: 21.5,-17.5
parent: 2
type: Transform
- uid: 2322
components:
- - pos: -8.5,3.5
+ - pos: 15.5,-17.5
parent: 2
type: Transform
- uid: 2323
components:
- - pos: -5.5,4.5
+ - pos: 16.5,-17.5
parent: 2
type: Transform
- uid: 2324
components:
- - pos: 30.5,-62.5
+ - pos: -8.5,3.5
parent: 2
type: Transform
- uid: 2325
components:
- - pos: 15.5,-33.5
+ - pos: -5.5,4.5
parent: 2
type: Transform
- uid: 2326
components:
- - pos: 18.5,-17.5
+ - pos: 30.5,-62.5
parent: 2
type: Transform
- uid: 2327
components:
- - pos: 20.5,-53.5
+ - pos: 15.5,-33.5
parent: 2
type: Transform
- uid: 2328
components:
- - pos: 6.5,-71.5
+ - pos: 18.5,-17.5
parent: 2
type: Transform
- uid: 2329
components:
- - pos: 19.5,-52.5
+ - pos: 20.5,-53.5
parent: 2
type: Transform
- uid: 2330
components:
- - pos: 21.5,-8.5
+ - pos: 6.5,-71.5
parent: 2
type: Transform
- uid: 2331
components:
- - pos: 25.5,-57.5
+ - pos: 19.5,-52.5
parent: 2
type: Transform
- uid: 2332
components:
- - pos: 15.5,-34.5
+ - pos: 21.5,-8.5
parent: 2
type: Transform
- uid: 2333
components:
- - pos: -0.5,-54.5
+ - pos: 25.5,-57.5
parent: 2
type: Transform
- uid: 2334
components:
- - pos: 0.5,10.5
+ - pos: 15.5,-34.5
parent: 2
type: Transform
- uid: 2335
components:
- - pos: 5.5,14.5
+ - pos: -0.5,-54.5
parent: 2
type: Transform
- uid: 2336
components:
- - pos: -1.5,14.5
+ - pos: 0.5,10.5
parent: 2
type: Transform
- uid: 2337
components:
- - pos: 32.5,0.5
+ - pos: 5.5,14.5
parent: 2
type: Transform
- uid: 2338
components:
- - pos: 33.5,2.5
+ - pos: -1.5,14.5
parent: 2
type: Transform
- uid: 2339
components:
- - pos: 5.5,-10.5
+ - pos: 32.5,0.5
parent: 2
type: Transform
- uid: 2340
components:
- - pos: 0.5,-10.5
+ - pos: 33.5,2.5
parent: 2
type: Transform
- uid: 2341
components:
- - pos: 10.5,-6.5
+ - pos: 5.5,-10.5
parent: 2
type: Transform
- uid: 2342
components:
- - pos: -3.5,11.5
+ - pos: 0.5,-10.5
parent: 2
type: Transform
- uid: 2343
components:
- - pos: -4.5,6.5
+ - pos: 10.5,-6.5
parent: 2
type: Transform
- uid: 2344
components:
- - pos: -8.5,9.5
+ - pos: -3.5,11.5
parent: 2
type: Transform
- uid: 2345
components:
- - pos: -4.5,-47.5
+ - pos: -4.5,6.5
parent: 2
type: Transform
- uid: 2346
components:
- - pos: 1.5,-48.5
+ - pos: -8.5,9.5
parent: 2
type: Transform
- uid: 2347
components:
- - pos: -1.5,-48.5
+ - pos: -4.5,-47.5
parent: 2
type: Transform
- uid: 2348
components:
- - pos: -1.5,-50.5
+ - pos: 1.5,-48.5
parent: 2
type: Transform
- uid: 2349
components:
- - pos: 4.5,-54.5
+ - pos: -1.5,-48.5
parent: 2
type: Transform
- uid: 2350
components:
- - pos: 0.5,-54.5
+ - pos: -1.5,-50.5
parent: 2
type: Transform
- uid: 2351
components:
- - pos: -15.5,-61.5
+ - pos: 4.5,-54.5
parent: 2
type: Transform
- uid: 2352
components:
- - pos: -6.5,-62.5
+ - pos: 0.5,-54.5
parent: 2
type: Transform
- uid: 2353
components:
- - pos: -8.5,6.5
+ - pos: -15.5,-61.5
parent: 2
type: Transform
- uid: 2354
components:
- - pos: -0.5,14.5
+ - pos: -6.5,-62.5
parent: 2
type: Transform
- uid: 2355
components:
- - pos: -5.5,-42.5
+ - pos: -8.5,6.5
parent: 2
type: Transform
- uid: 2356
components:
- - pos: 36.5,18.5
+ - pos: -0.5,14.5
parent: 2
type: Transform
- uid: 2357
components:
- - pos: 29.5,32.5
+ - pos: -5.5,-42.5
parent: 2
type: Transform
- uid: 2358
components:
- - pos: 62.5,-6.5
+ - pos: 36.5,18.5
parent: 2
type: Transform
- uid: 2359
components:
- - pos: -1.5,-51.5
+ - pos: 29.5,32.5
parent: 2
type: Transform
- uid: 2360
components:
- - pos: 6.5,-48.5
+ - pos: 62.5,-6.5
parent: 2
type: Transform
- uid: 2361
components:
- - pos: -1.5,-45.5
+ - pos: -1.5,-51.5
parent: 2
type: Transform
- uid: 2362
components:
- - pos: -3.5,-52.5
+ - pos: 6.5,-48.5
parent: 2
type: Transform
- uid: 2363
components:
- - pos: -4.5,-54.5
+ - pos: -1.5,-45.5
parent: 2
type: Transform
- uid: 2364
components:
- - pos: -7.5,-54.5
+ - pos: -3.5,-52.5
parent: 2
type: Transform
- uid: 2365
components:
- - pos: -9.5,-54.5
+ - pos: -4.5,-54.5
parent: 2
type: Transform
- uid: 2366
components:
- - pos: 1.5,-54.5
+ - pos: -7.5,-54.5
parent: 2
type: Transform
- uid: 2367
components:
- - pos: 2.5,-60.5
+ - pos: -9.5,-54.5
parent: 2
type: Transform
- uid: 2368
components:
- - pos: -13.5,-62.5
+ - pos: 1.5,-54.5
parent: 2
type: Transform
- uid: 2369
components:
- - pos: -14.5,-66.5
+ - pos: 2.5,-60.5
parent: 2
type: Transform
- uid: 2370
components:
- - pos: -15.5,-65.5
+ - pos: -13.5,-62.5
parent: 2
type: Transform
- uid: 2371
components:
- - pos: -15.5,-54.5
+ - pos: -14.5,-66.5
parent: 2
type: Transform
- uid: 2372
components:
- - pos: 2.5,-70.5
+ - pos: -15.5,-65.5
parent: 2
type: Transform
- uid: 2373
components:
- - pos: 16.5,-29.5
+ - pos: -15.5,-54.5
parent: 2
type: Transform
- uid: 2374
components:
- - pos: 1.5,-10.5
+ - pos: 2.5,-70.5
parent: 2
type: Transform
- uid: 2375
components:
- - pos: 4.5,-10.5
+ - pos: 16.5,-29.5
parent: 2
type: Transform
- uid: 2376
components:
- - pos: 11.5,-17.5
+ - pos: 1.5,-10.5
parent: 2
type: Transform
- uid: 2377
components:
- - pos: 2.5,-26.5
+ - pos: 4.5,-10.5
parent: 2
type: Transform
- uid: 2378
components:
- - pos: -10.5,-21.5
+ - pos: 11.5,-17.5
parent: 2
type: Transform
- uid: 2379
components:
- - pos: -8.5,-45.5
+ - pos: 2.5,-26.5
parent: 2
type: Transform
- uid: 2380
components:
- - pos: 3.5,-62.5
+ - pos: -10.5,-21.5
parent: 2
type: Transform
- uid: 2381
components:
- - pos: -5.5,-60.5
+ - pos: -8.5,-45.5
parent: 2
type: Transform
- uid: 2382
components:
- - pos: -1.5,-46.5
+ - pos: 3.5,-62.5
parent: 2
type: Transform
- uid: 2383
components:
- - pos: -2.5,-45.5
+ - pos: -5.5,-60.5
parent: 2
type: Transform
- uid: 2384
components:
- - pos: 12.5,2.5
+ - pos: -1.5,-46.5
parent: 2
type: Transform
- uid: 2385
components:
- - pos: 8.5,2.5
+ - pos: -2.5,-45.5
parent: 2
type: Transform
- uid: 2386
components:
- - pos: 4.5,0.5
+ - pos: 12.5,2.5
parent: 2
type: Transform
- uid: 2387
components:
- - pos: -12.5,-22.5
+ - pos: 8.5,2.5
parent: 2
type: Transform
- uid: 2388
components:
- - pos: -13.5,-22.5
+ - pos: 4.5,0.5
parent: 2
type: Transform
- uid: 2389
components:
- - pos: 30.5,-32.5
+ - pos: -12.5,-22.5
parent: 2
type: Transform
- uid: 2390
components:
- - pos: 22.5,-29.5
+ - pos: -13.5,-22.5
parent: 2
type: Transform
- uid: 2391
components:
- - pos: 20.5,-23.5
+ - pos: 30.5,-32.5
parent: 2
type: Transform
- uid: 2392
components:
- - pos: 29.5,-28.5
+ - pos: 22.5,-29.5
parent: 2
type: Transform
- uid: 2393
components:
- - pos: 25.5,-23.5
+ - pos: 20.5,-23.5
parent: 2
type: Transform
- uid: 2394
components:
- - pos: 9.5,-6.5
+ - pos: 29.5,-28.5
parent: 2
type: Transform
- uid: 2395
components:
- - pos: 8.5,-6.5
+ - pos: 25.5,-23.5
parent: 2
type: Transform
- uid: 2396
components:
- - pos: 8.5,-6.5
+ - pos: 9.5,-6.5
parent: 2
type: Transform
- uid: 2397
@@ -24737,5492 +24742,5492 @@ entities:
type: Transform
- uid: 2398
components:
- - pos: 7.5,-8.5
+ - pos: 8.5,-6.5
parent: 2
type: Transform
- uid: 2399
components:
- - pos: 7.5,-7.5
+ - pos: 8.5,-6.5
parent: 2
type: Transform
- uid: 2400
components:
- - pos: 4.5,-41.5
+ - pos: 7.5,-8.5
parent: 2
type: Transform
- uid: 2401
components:
- - pos: -6.5,-74.5
+ - pos: 7.5,-7.5
parent: 2
type: Transform
- uid: 2402
components:
- - pos: -8.5,-75.5
+ - pos: 4.5,-41.5
parent: 2
type: Transform
- uid: 2403
components:
- - pos: -10.5,-75.5
+ - pos: -6.5,-74.5
parent: 2
type: Transform
- uid: 2404
components:
- - pos: 10.5,-50.5
+ - pos: -8.5,-75.5
parent: 2
type: Transform
- uid: 2405
components:
- - pos: 20.5,-46.5
+ - pos: -10.5,-75.5
parent: 2
type: Transform
- uid: 2406
components:
- - pos: 18.5,-48.5
+ - pos: 10.5,-50.5
parent: 2
type: Transform
- uid: 2407
components:
- - pos: 21.5,-46.5
+ - pos: 20.5,-46.5
parent: 2
type: Transform
- uid: 2408
components:
- - pos: 21.5,-50.5
+ - pos: 18.5,-48.5
parent: 2
type: Transform
- uid: 2409
components:
- - pos: 21.5,-53.5
+ - pos: 21.5,-46.5
parent: 2
type: Transform
- uid: 2410
components:
- - pos: 23.5,-53.5
+ - pos: 21.5,-50.5
parent: 2
type: Transform
- uid: 2411
components:
- - pos: 25.5,-52.5
+ - pos: 21.5,-53.5
parent: 2
type: Transform
- uid: 2412
components:
- - pos: -4.5,-16.5
+ - pos: 23.5,-53.5
parent: 2
type: Transform
- uid: 2413
components:
- - pos: 6.5,8.5
+ - pos: 25.5,-52.5
parent: 2
type: Transform
- uid: 2414
components:
- - pos: 46.5,-22.5
+ - pos: -4.5,-16.5
parent: 2
type: Transform
- uid: 2415
components:
- - pos: 0.5,14.5
+ - pos: 6.5,8.5
parent: 2
type: Transform
- uid: 2416
components:
- - pos: 9.5,-26.5
+ - pos: 46.5,-22.5
parent: 2
type: Transform
- uid: 2417
components:
- - pos: 18.5,-29.5
+ - pos: 0.5,14.5
parent: 2
type: Transform
- uid: 2418
components:
- - pos: -8.5,-6.5
+ - pos: 9.5,-26.5
parent: 2
type: Transform
- uid: 2419
components:
- - pos: -4.5,14.5
+ - pos: 18.5,-29.5
parent: 2
type: Transform
- uid: 2420
components:
- - pos: -5.5,14.5
+ - pos: -8.5,-6.5
parent: 2
type: Transform
- uid: 2421
components:
- - pos: 3.5,-46.5
+ - pos: -4.5,14.5
parent: 2
type: Transform
- uid: 2422
components:
- - pos: -33.5,-70.5
+ - pos: -5.5,14.5
parent: 2
type: Transform
- uid: 2423
components:
- - pos: -34.5,-70.5
+ - pos: 3.5,-46.5
parent: 2
type: Transform
- uid: 2424
components:
- - pos: -12.5,-26.5
+ - pos: -33.5,-70.5
parent: 2
type: Transform
- uid: 2425
components:
- - pos: 31.5,-32.5
+ - pos: -34.5,-70.5
parent: 2
type: Transform
- uid: 2426
components:
- - pos: 24.5,4.5
+ - pos: -12.5,-26.5
parent: 2
type: Transform
- uid: 2427
components:
- - pos: -3.5,-74.5
+ - pos: 31.5,-32.5
parent: 2
type: Transform
- uid: 2428
components:
- - pos: 8.5,-42.5
+ - pos: 24.5,4.5
parent: 2
type: Transform
- uid: 2429
components:
- - pos: 8.5,-65.5
+ - pos: -3.5,-74.5
parent: 2
type: Transform
- uid: 2430
components:
- - pos: -8.5,-66.5
+ - pos: 8.5,-42.5
parent: 2
type: Transform
- uid: 2431
components:
- - pos: -9.5,-4.5
+ - pos: 8.5,-65.5
parent: 2
type: Transform
- uid: 2432
components:
- - pos: -7.5,-71.5
+ - pos: -8.5,-66.5
parent: 2
type: Transform
- uid: 2433
components:
- - pos: -12.5,-75.5
+ - pos: -9.5,-4.5
parent: 2
type: Transform
- uid: 2434
components:
- - pos: -8.5,-71.5
+ - pos: -7.5,-71.5
parent: 2
type: Transform
- uid: 2435
components:
- - pos: -8.5,4.5
+ - pos: -12.5,-75.5
parent: 2
type: Transform
- uid: 2436
components:
- - pos: -14.5,-61.5
+ - pos: -8.5,-71.5
parent: 2
type: Transform
- uid: 2437
components:
- - pos: -14.5,-55.5
+ - pos: -8.5,4.5
parent: 2
type: Transform
- uid: 2438
components:
- - pos: 12.5,-17.5
+ - pos: -14.5,-61.5
parent: 2
type: Transform
- uid: 2439
components:
- - pos: 46.5,-27.5
+ - pos: -14.5,-55.5
parent: 2
type: Transform
- uid: 2440
components:
- - pos: 50.5,8.5
+ - pos: 12.5,-17.5
parent: 2
type: Transform
- uid: 2441
components:
- - pos: 50.5,7.5
+ - pos: 46.5,-27.5
parent: 2
type: Transform
- uid: 2442
components:
- - pos: -16.5,-16.5
+ - pos: 50.5,8.5
parent: 2
type: Transform
- uid: 2443
components:
- - pos: -4.5,-40.5
+ - pos: 50.5,7.5
parent: 2
type: Transform
- uid: 2444
components:
- - pos: 30.5,-72.5
+ - pos: -16.5,-16.5
parent: 2
type: Transform
- uid: 2445
components:
- - pos: -9.5,-61.5
+ - pos: -4.5,-40.5
parent: 2
type: Transform
- uid: 2446
components:
- - pos: -13.5,-64.5
+ - pos: 30.5,-72.5
parent: 2
type: Transform
- uid: 2447
components:
- - pos: -16.5,-54.5
+ - pos: -9.5,-61.5
parent: 2
type: Transform
- uid: 2448
components:
- - pos: -17.5,-54.5
+ - pos: -13.5,-64.5
parent: 2
type: Transform
- uid: 2449
components:
- - pos: -17.5,-55.5
+ - pos: -16.5,-54.5
parent: 2
type: Transform
- uid: 2450
components:
- - pos: -18.5,-55.5
+ - pos: -17.5,-54.5
parent: 2
type: Transform
- uid: 2451
components:
- - pos: -6.5,-64.5
+ - pos: -17.5,-55.5
parent: 2
type: Transform
- uid: 2452
components:
- - pos: -6.5,-65.5
+ - pos: -18.5,-55.5
parent: 2
type: Transform
- uid: 2453
components:
- - pos: -1.5,-54.5
+ - pos: -6.5,-64.5
parent: 2
type: Transform
- uid: 2454
components:
- - pos: -4.5,-48.5
+ - pos: -6.5,-65.5
parent: 2
type: Transform
- uid: 2455
components:
- - pos: 25.5,-14.5
+ - pos: -1.5,-54.5
parent: 2
type: Transform
- uid: 2456
components:
- - pos: 25.5,-7.5
+ - pos: -4.5,-48.5
parent: 2
type: Transform
- uid: 2457
components:
- - pos: 24.5,-6.5
+ - pos: 25.5,-14.5
parent: 2
type: Transform
- uid: 2458
components:
- - pos: 18.5,-12.5
+ - pos: 25.5,-7.5
parent: 2
type: Transform
- uid: 2459
components:
- - pos: 35.5,-40.5
+ - pos: 24.5,-6.5
parent: 2
type: Transform
- uid: 2460
components:
- - pos: 17.5,-53.5
+ - pos: 18.5,-12.5
parent: 2
type: Transform
- uid: 2461
components:
- - pos: 9.5,-17.5
+ - pos: 35.5,-40.5
parent: 2
type: Transform
- uid: 2462
components:
- - pos: 15.5,-28.5
+ - pos: 17.5,-53.5
parent: 2
type: Transform
- uid: 2463
components:
- - pos: 14.5,-28.5
+ - pos: 9.5,-17.5
parent: 2
type: Transform
- uid: 2464
components:
- - pos: 14.5,-27.5
+ - pos: 15.5,-28.5
parent: 2
type: Transform
- uid: 2465
components:
- - pos: 13.5,-26.5
+ - pos: 14.5,-28.5
parent: 2
type: Transform
- uid: 2466
components:
- - pos: -5.5,-73.5
+ - pos: 14.5,-27.5
parent: 2
type: Transform
- uid: 2467
components:
- - pos: 8.5,-26.5
+ - pos: 13.5,-26.5
parent: 2
type: Transform
- uid: 2468
components:
- - pos: -2.5,-74.5
+ - pos: -5.5,-73.5
parent: 2
type: Transform
- uid: 2469
components:
- - pos: 11.5,-26.5
+ - pos: 8.5,-26.5
parent: 2
type: Transform
- uid: 2470
components:
- - pos: 3.5,-26.5
+ - pos: -2.5,-74.5
parent: 2
type: Transform
- uid: 2471
components:
- - pos: -7.5,1.5
+ - pos: 11.5,-26.5
parent: 2
type: Transform
- uid: 2472
components:
- - pos: -8.5,1.5
+ - pos: 3.5,-26.5
parent: 2
type: Transform
- uid: 2473
components:
- - pos: -1.5,-75.5
+ - pos: -7.5,1.5
parent: 2
type: Transform
- uid: 2474
components:
- - pos: -3.5,8.5
+ - pos: -8.5,1.5
parent: 2
type: Transform
- uid: 2475
components:
- - pos: -3.5,10.5
+ - pos: -1.5,-75.5
parent: 2
type: Transform
- uid: 2476
components:
- - pos: 28.5,2.5
+ - pos: -3.5,8.5
parent: 2
type: Transform
- uid: 2477
components:
- - pos: 32.5,1.5
+ - pos: -3.5,10.5
parent: 2
type: Transform
- uid: 2478
components:
- - pos: 32.5,2.5
+ - pos: 28.5,2.5
parent: 2
type: Transform
- uid: 2479
components:
- - pos: 1.5,-9.5
+ - pos: 32.5,1.5
parent: 2
type: Transform
- uid: 2480
components:
- - pos: 2.5,8.5
+ - pos: 32.5,2.5
parent: 2
type: Transform
- uid: 2481
components:
- - pos: 61.5,-11.5
+ - pos: 1.5,-9.5
parent: 2
type: Transform
- uid: 2482
components:
- - pos: 21.5,-10.5
+ - pos: 2.5,8.5
parent: 2
type: Transform
- uid: 2483
components:
- - pos: 20.5,-13.5
+ - pos: 61.5,-11.5
parent: 2
type: Transform
- uid: 2484
components:
- - pos: -0.5,0.5
+ - pos: 21.5,-10.5
parent: 2
type: Transform
- uid: 2485
components:
- - pos: 20.5,-5.5
+ - pos: 20.5,-13.5
parent: 2
type: Transform
- uid: 2486
components:
- - pos: 22.5,-6.5
+ - pos: -0.5,0.5
parent: 2
type: Transform
- uid: 2487
components:
- - pos: 23.5,-6.5
+ - pos: 20.5,-5.5
parent: 2
type: Transform
- uid: 2488
components:
- - pos: 25.5,-6.5
+ - pos: 22.5,-6.5
parent: 2
type: Transform
- uid: 2489
components:
- - pos: 25.5,-13.5
+ - pos: 23.5,-6.5
parent: 2
type: Transform
- uid: 2490
components:
- - pos: 25.5,-12.5
+ - pos: 25.5,-6.5
parent: 2
type: Transform
- uid: 2491
components:
- - pos: 25.5,-8.5
+ - pos: 25.5,-13.5
parent: 2
type: Transform
- uid: 2492
components:
- - pos: 24.5,-11.5
+ - pos: 25.5,-12.5
parent: 2
type: Transform
- uid: 2493
components:
- - pos: 5.5,-60.5
+ - pos: 25.5,-8.5
parent: 2
type: Transform
- uid: 2494
components:
- - pos: 5.5,-54.5
+ - pos: 24.5,-11.5
parent: 2
type: Transform
- uid: 2495
components:
- - pos: 2.5,-54.5
+ - pos: 5.5,-60.5
parent: 2
type: Transform
- uid: 2496
components:
- - pos: -14.5,-60.5
+ - pos: 5.5,-54.5
parent: 2
type: Transform
- uid: 2497
components:
- - pos: -8.5,-65.5
+ - pos: 2.5,-54.5
parent: 2
type: Transform
- uid: 2498
components:
- - pos: -7.5,-65.5
+ - pos: -14.5,-60.5
parent: 2
type: Transform
- uid: 2499
components:
- - pos: -6.5,-60.5
+ - pos: -8.5,-65.5
parent: 2
type: Transform
- uid: 2500
components:
- - pos: -3.5,-60.5
+ - pos: -7.5,-65.5
parent: 2
type: Transform
- uid: 2501
components:
- - pos: -2.5,-60.5
+ - pos: -6.5,-60.5
parent: 2
type: Transform
- uid: 2502
components:
- - pos: -0.5,-60.5
+ - pos: -3.5,-60.5
parent: 2
type: Transform
- uid: 2503
components:
- - pos: 3.5,-63.5
+ - pos: -2.5,-60.5
parent: 2
type: Transform
- uid: 2504
components:
- - pos: 3.5,-61.5
+ - pos: -0.5,-60.5
parent: 2
type: Transform
- uid: 2505
components:
- - pos: 10.5,-17.5
+ - pos: 3.5,-63.5
parent: 2
type: Transform
- uid: 2506
components:
- - pos: 10.5,-14.5
+ - pos: 3.5,-61.5
parent: 2
type: Transform
- uid: 2507
components:
- - pos: 11.5,-14.5
+ - pos: 10.5,-17.5
parent: 2
type: Transform
- uid: 2508
components:
- - pos: 13.5,-14.5
+ - pos: 10.5,-14.5
parent: 2
type: Transform
- uid: 2509
components:
- - pos: 14.5,-14.5
+ - pos: 11.5,-14.5
parent: 2
type: Transform
- uid: 2510
components:
- - pos: 15.5,-14.5
+ - pos: 13.5,-14.5
parent: 2
type: Transform
- uid: 2511
components:
- - pos: 15.5,-13.5
+ - pos: 14.5,-14.5
parent: 2
type: Transform
- uid: 2512
components:
- - pos: 15.5,-11.5
+ - pos: 15.5,-14.5
parent: 2
type: Transform
- uid: 2513
components:
- - pos: 14.5,-2.5
+ - pos: 15.5,-13.5
parent: 2
type: Transform
- uid: 2514
components:
- - pos: -19.5,-56.5
+ - pos: 15.5,-11.5
parent: 2
type: Transform
- uid: 2515
components:
- - pos: -19.5,-55.5
+ - pos: 14.5,-2.5
parent: 2
type: Transform
- uid: 2516
components:
- - pos: 14.5,-3.5
+ - pos: -19.5,-56.5
parent: 2
type: Transform
- uid: 2517
components:
- - pos: 14.5,-6.5
+ - pos: -19.5,-55.5
parent: 2
type: Transform
- uid: 2518
components:
- - pos: 20.5,-45.5
+ - pos: 14.5,-3.5
parent: 2
type: Transform
- uid: 2519
components:
- - pos: -41.5,25.5
+ - pos: 14.5,-6.5
parent: 2
type: Transform
- uid: 2520
components:
- - pos: 32.5,-8.5
+ - pos: 20.5,-45.5
parent: 2
type: Transform
- uid: 2521
components:
- - pos: 14.5,-5.5
+ - pos: -41.5,25.5
parent: 2
type: Transform
- uid: 2522
components:
- - pos: 12.5,-14.5
+ - pos: 32.5,-8.5
parent: 2
type: Transform
- uid: 2523
components:
- - pos: -3.5,-69.5
+ - pos: 14.5,-5.5
parent: 2
type: Transform
- uid: 2524
components:
- - pos: -4.5,-69.5
+ - pos: 12.5,-14.5
parent: 2
type: Transform
- uid: 2525
components:
- - pos: -5.5,-70.5
+ - pos: -3.5,-69.5
parent: 2
type: Transform
- uid: 2526
components:
- - pos: -1.5,-77.5
+ - pos: -4.5,-69.5
parent: 2
type: Transform
- uid: 2527
components:
- - pos: -0.5,-69.5
+ - pos: -5.5,-70.5
parent: 2
type: Transform
- uid: 2528
components:
- - pos: 10.5,2.5
+ - pos: -1.5,-77.5
parent: 2
type: Transform
- uid: 2529
components:
- - pos: -5.5,-47.5
+ - pos: -0.5,-69.5
parent: 2
type: Transform
- uid: 2530
components:
- - pos: -14.5,-54.5
+ - pos: 10.5,2.5
parent: 2
type: Transform
- uid: 2531
components:
- - pos: -13.5,-59.5
+ - pos: -5.5,-47.5
parent: 2
type: Transform
- uid: 2532
components:
- - pos: -10.5,-61.5
+ - pos: -14.5,-54.5
parent: 2
type: Transform
- uid: 2533
components:
- - pos: -4.5,-11.5
+ - pos: -13.5,-59.5
parent: 2
type: Transform
- uid: 2534
components:
- - pos: 62.5,-9.5
+ - pos: -10.5,-61.5
parent: 2
type: Transform
- uid: 2535
components:
- - pos: 62.5,-7.5
+ - pos: -4.5,-11.5
parent: 2
type: Transform
- uid: 2536
components:
- - pos: 8.5,-8.5
+ - pos: 62.5,-9.5
parent: 2
type: Transform
- uid: 2537
components:
- - pos: 8.5,-10.5
+ - pos: 62.5,-7.5
parent: 2
type: Transform
- uid: 2538
components:
- - pos: 1.5,9.5
+ - pos: 8.5,-8.5
parent: 2
type: Transform
- uid: 2539
components:
- - pos: 2.5,-71.5
+ - pos: 8.5,-10.5
parent: 2
type: Transform
- uid: 2540
components:
- - pos: 22.5,-32.5
+ - pos: 1.5,9.5
parent: 2
type: Transform
- uid: 2541
components:
- - pos: -15.5,-21.5
+ - pos: 2.5,-71.5
parent: 2
type: Transform
- uid: 2542
components:
- - pos: -2.5,-69.5
+ - pos: 22.5,-32.5
parent: 2
type: Transform
- uid: 2543
components:
- - pos: -9.5,10.5
+ - pos: -15.5,-21.5
parent: 2
type: Transform
- uid: 2544
components:
- - pos: 18.5,-13.5
+ - pos: -2.5,-69.5
parent: 2
type: Transform
- uid: 2545
components:
- - pos: 21.5,-11.5
+ - pos: -9.5,10.5
parent: 2
type: Transform
- uid: 2546
components:
- - pos: -4.5,-28.5
+ - pos: 18.5,-13.5
parent: 2
type: Transform
- uid: 2547
components:
- - pos: 27.5,2.5
+ - pos: 21.5,-11.5
parent: 2
type: Transform
- uid: 2548
components:
- - pos: 6.5,15.5
+ - pos: -4.5,-28.5
parent: 2
type: Transform
- uid: 2549
components:
- - pos: 5.5,15.5
+ - pos: 27.5,2.5
parent: 2
type: Transform
- uid: 2550
components:
- - pos: 0.5,12.5
+ - pos: 6.5,15.5
parent: 2
type: Transform
- uid: 2551
components:
- - pos: 5.5,12.5
+ - pos: 5.5,15.5
parent: 2
type: Transform
- uid: 2552
components:
- - pos: 5.5,13.5
+ - pos: 0.5,12.5
parent: 2
type: Transform
- uid: 2553
components:
- - pos: 32.5,18.5
+ - pos: 5.5,12.5
parent: 2
type: Transform
- uid: 2554
components:
- - pos: 1.5,0.5
+ - pos: 5.5,13.5
parent: 2
type: Transform
- uid: 2555
components:
- - pos: 13.5,2.5
+ - pos: 32.5,18.5
parent: 2
type: Transform
- uid: 2556
components:
- - pos: 13.5,0.5
+ - pos: 1.5,0.5
parent: 2
type: Transform
- uid: 2557
components:
- - pos: 12.5,-0.5
+ - pos: 13.5,2.5
parent: 2
type: Transform
- uid: 2558
components:
- - pos: -13.5,-54.5
+ - pos: 13.5,0.5
parent: 2
type: Transform
- uid: 2559
components:
- - pos: -14.5,-59.5
+ - pos: 12.5,-0.5
parent: 2
type: Transform
- uid: 2560
components:
- - pos: -2.5,-54.5
+ - pos: -13.5,-54.5
parent: 2
type: Transform
- uid: 2561
components:
- - pos: 27.5,1.5
+ - pos: -14.5,-59.5
parent: 2
type: Transform
- uid: 2562
components:
- - pos: -2.5,-41.5
+ - pos: -2.5,-54.5
parent: 2
type: Transform
- uid: 2563
components:
- - pos: -3.5,-0.5
+ - pos: 27.5,1.5
parent: 2
type: Transform
- uid: 2564
components:
- - pos: 29.5,-47.5
+ - pos: -2.5,-41.5
parent: 2
type: Transform
- uid: 2565
components:
- - pos: 15.5,-40.5
+ - pos: -3.5,-0.5
parent: 2
type: Transform
- uid: 2566
components:
- - pos: 11.5,-42.5
+ - pos: 29.5,-47.5
parent: 2
type: Transform
- uid: 2567
components:
- - pos: 9.5,-41.5
+ - pos: 15.5,-40.5
parent: 2
type: Transform
- uid: 2568
components:
- - pos: 13.5,-42.5
+ - pos: 11.5,-42.5
parent: 2
type: Transform
- uid: 2569
components:
- - pos: 17.5,-54.5
+ - pos: 9.5,-41.5
parent: 2
type: Transform
- uid: 2570
components:
- - pos: 34.5,-41.5
+ - pos: 13.5,-42.5
parent: 2
type: Transform
- uid: 2571
components:
- - pos: 36.5,-40.5
+ - pos: 17.5,-54.5
parent: 2
type: Transform
- uid: 2572
components:
- - pos: 34.5,-40.5
+ - pos: 34.5,-41.5
parent: 2
type: Transform
- uid: 2573
components:
- - pos: 12.5,-6.5
+ - pos: 36.5,-40.5
parent: 2
type: Transform
- uid: 2574
components:
- - pos: 11.5,-6.5
+ - pos: 34.5,-40.5
parent: 2
type: Transform
- uid: 2575
components:
- - pos: 4.5,5.5
+ - pos: 12.5,-6.5
parent: 2
type: Transform
- uid: 2576
components:
- - pos: 7.5,-17.5
+ - pos: 11.5,-6.5
parent: 2
type: Transform
- uid: 2577
components:
- - pos: 1.5,7.5
+ - pos: 4.5,5.5
parent: 2
type: Transform
- uid: 2578
components:
- - pos: 1.5,8.5
+ - pos: 7.5,-17.5
parent: 2
type: Transform
- uid: 2579
components:
- - pos: 3.5,8.5
+ - pos: 1.5,7.5
parent: 2
type: Transform
- uid: 2580
components:
- - pos: -3.5,7.5
+ - pos: 1.5,8.5
parent: 2
type: Transform
- uid: 2581
components:
- - pos: -1.5,7.5
+ - pos: 3.5,8.5
parent: 2
type: Transform
- uid: 2582
components:
- - pos: -2.5,7.5
+ - pos: -3.5,7.5
parent: 2
type: Transform
- uid: 2583
components:
- - pos: -0.5,6.5
+ - pos: -1.5,7.5
parent: 2
type: Transform
- uid: 2584
components:
- - pos: -0.5,7.5
+ - pos: -2.5,7.5
parent: 2
type: Transform
- uid: 2585
components:
- - pos: 0.5,6.5
+ - pos: -0.5,6.5
parent: 2
type: Transform
- uid: 2586
components:
- - pos: 0.5,11.5
+ - pos: -0.5,7.5
parent: 2
type: Transform
- uid: 2587
components:
- - pos: 0.5,13.5
+ - pos: 0.5,6.5
parent: 2
type: Transform
- uid: 2588
components:
- - pos: 0.5,9.5
+ - pos: 0.5,11.5
parent: 2
type: Transform
- uid: 2589
components:
- - pos: -8.5,7.5
+ - pos: 0.5,13.5
parent: 2
type: Transform
- uid: 2590
components:
- - pos: -7.5,7.5
+ - pos: 0.5,9.5
parent: 2
type: Transform
- uid: 2591
components:
- - pos: -6.5,7.5
+ - pos: -8.5,7.5
parent: 2
type: Transform
- uid: 2592
components:
- - pos: -5.5,7.5
+ - pos: -7.5,7.5
parent: 2
type: Transform
- uid: 2593
components:
- - pos: 10.5,-11.5
+ - pos: -6.5,7.5
parent: 2
type: Transform
- uid: 2594
components:
- - pos: 7.5,-6.5
+ - pos: -5.5,7.5
parent: 2
type: Transform
- uid: 2595
components:
- - pos: 8.5,-6.5
+ - pos: 10.5,-11.5
parent: 2
type: Transform
- uid: 2596
components:
- - pos: 4.5,-13.5
+ - pos: 7.5,-6.5
parent: 2
type: Transform
- uid: 2597
components:
- - pos: 10.5,-10.5
+ - pos: 8.5,-6.5
parent: 2
type: Transform
- uid: 2598
components:
- - pos: 42.5,-26.5
+ - pos: 4.5,-13.5
parent: 2
type: Transform
- uid: 2599
components:
- - pos: -8.5,-50.5
+ - pos: 10.5,-10.5
parent: 2
type: Transform
- uid: 2600
components:
- - pos: 5.5,8.5
+ - pos: 42.5,-26.5
parent: 2
type: Transform
- uid: 2601
components:
- - pos: -8.5,-51.5
+ - pos: -8.5,-50.5
parent: 2
type: Transform
- uid: 2602
components:
- - pos: -8.5,-52.5
+ - pos: 5.5,8.5
parent: 2
type: Transform
- uid: 2603
components:
- - pos: -7.5,-52.5
+ - pos: -8.5,-51.5
parent: 2
type: Transform
- uid: 2604
components:
- - pos: -7.5,-53.5
+ - pos: -8.5,-52.5
parent: 2
type: Transform
- uid: 2605
components:
- - pos: 6.5,7.5
+ - pos: -7.5,-52.5
parent: 2
type: Transform
- uid: 2606
components:
- - pos: 31.5,-14.5
+ - pos: -7.5,-53.5
parent: 2
type: Transform
- uid: 2607
components:
- - pos: 32.5,-9.5
+ - pos: 6.5,7.5
parent: 2
type: Transform
- uid: 2608
components:
- - pos: -4.5,-20.5
+ - pos: 31.5,-14.5
parent: 2
type: Transform
- uid: 2609
components:
- - pos: 5.5,11.5
+ - pos: 32.5,-9.5
parent: 2
type: Transform
- uid: 2610
components:
- - pos: 5.5,7.5
+ - pos: -4.5,-20.5
parent: 2
type: Transform
- uid: 2611
components:
- - pos: 32.5,-41.5
+ - pos: 5.5,11.5
parent: 2
type: Transform
- uid: 2612
components:
- - pos: 33.5,-40.5
+ - pos: 5.5,7.5
parent: 2
type: Transform
- uid: 2613
components:
- - pos: 34.5,-42.5
+ - pos: 32.5,-41.5
parent: 2
type: Transform
- uid: 2614
components:
- - pos: 23.5,-42.5
+ - pos: 33.5,-40.5
parent: 2
type: Transform
- uid: 2615
components:
- - pos: 21.5,-42.5
+ - pos: 34.5,-42.5
parent: 2
type: Transform
- uid: 2616
components:
- - pos: 8.5,-9.5
+ - pos: 23.5,-42.5
parent: 2
type: Transform
- uid: 2617
components:
- - pos: -20.5,-87.5
+ - pos: 21.5,-42.5
parent: 2
type: Transform
- uid: 2618
components:
- - pos: -2.5,14.5
+ - pos: 8.5,-9.5
parent: 2
type: Transform
- uid: 2619
components:
- - pos: -3.5,14.5
+ - pos: -20.5,-87.5
parent: 2
type: Transform
- uid: 2620
components:
- - pos: 32.5,17.5
+ - pos: -2.5,14.5
parent: 2
type: Transform
- uid: 2621
components:
- - pos: 27.5,0.5
+ - pos: -3.5,14.5
parent: 2
type: Transform
- uid: 2622
components:
- - pos: 26.5,-32.5
+ - pos: 32.5,17.5
parent: 2
type: Transform
- uid: 2623
components:
- - pos: 25.5,-42.5
+ - pos: 27.5,0.5
parent: 2
type: Transform
- uid: 2624
components:
- - pos: 27.5,-42.5
+ - pos: 26.5,-32.5
parent: 2
type: Transform
- uid: 2625
components:
- - pos: 35.5,-38.5
+ - pos: 25.5,-42.5
parent: 2
type: Transform
- uid: 2626
components:
- - pos: 35.5,-39.5
+ - pos: 27.5,-42.5
parent: 2
type: Transform
- uid: 2627
components:
- - pos: 23.5,-32.5
+ - pos: 35.5,-38.5
parent: 2
type: Transform
- uid: 2628
components:
- - pos: 20.5,-32.5
+ - pos: 35.5,-39.5
parent: 2
type: Transform
- uid: 2629
components:
- - pos: -7.5,-7.5
+ - pos: 23.5,-32.5
parent: 2
type: Transform
- uid: 2630
components:
- - pos: 16.5,-32.5
+ - pos: 20.5,-32.5
parent: 2
type: Transform
- uid: 2631
components:
- - pos: 1.5,10.5
+ - pos: -7.5,-7.5
parent: 2
type: Transform
- uid: 2632
components:
- - pos: -15.5,25.5
+ - pos: 16.5,-32.5
parent: 2
type: Transform
- uid: 2633
components:
- - pos: 7.5,-49.5
+ - pos: 1.5,10.5
parent: 2
type: Transform
- uid: 2634
components:
- - pos: 55.5,-32.5
+ - pos: -15.5,25.5
parent: 2
type: Transform
- uid: 2635
components:
- - pos: 32.5,-4.5
+ - pos: 7.5,-49.5
parent: 2
type: Transform
- uid: 2636
components:
- - pos: 26.5,-25.5
+ - pos: 55.5,-32.5
parent: 2
type: Transform
- uid: 2637
components:
- - pos: 25.5,-25.5
+ - pos: 32.5,-4.5
parent: 2
type: Transform
- uid: 2638
components:
- - pos: 24.5,-22.5
+ - pos: 26.5,-25.5
parent: 2
type: Transform
- uid: 2639
components:
- - pos: 23.5,-22.5
+ - pos: 25.5,-25.5
parent: 2
type: Transform
- uid: 2640
components:
- - pos: 21.5,-24.5
+ - pos: 24.5,-22.5
parent: 2
type: Transform
- uid: 2641
components:
- - pos: 21.5,-23.5
+ - pos: 23.5,-22.5
parent: 2
type: Transform
- uid: 2642
components:
- - pos: 21.5,-22.5
+ - pos: 21.5,-24.5
parent: 2
type: Transform
- uid: 2643
components:
- - pos: 26.5,-23.5
+ - pos: 21.5,-23.5
parent: 2
type: Transform
- uid: 2644
components:
- - pos: 27.5,-23.5
+ - pos: 21.5,-22.5
parent: 2
type: Transform
- uid: 2645
components:
- - pos: 28.5,-29.5
+ - pos: 26.5,-23.5
parent: 2
type: Transform
- uid: 2646
components:
- - pos: 27.5,-29.5
+ - pos: 27.5,-23.5
parent: 2
type: Transform
- uid: 2647
components:
- - pos: 27.5,-30.5
+ - pos: 28.5,-29.5
parent: 2
type: Transform
- uid: 2648
components:
- - pos: 27.5,-33.5
+ - pos: 27.5,-29.5
parent: 2
type: Transform
- uid: 2649
components:
- - pos: 26.5,-30.5
+ - pos: 27.5,-30.5
parent: 2
type: Transform
- uid: 2650
components:
- - pos: 25.5,-30.5
+ - pos: 27.5,-33.5
parent: 2
type: Transform
- uid: 2651
components:
- - pos: 24.5,-30.5
+ - pos: 26.5,-30.5
parent: 2
type: Transform
- uid: 2652
components:
- - pos: 23.5,-30.5
+ - pos: 25.5,-30.5
parent: 2
type: Transform
- uid: 2653
components:
- - pos: 22.5,-30.5
+ - pos: 24.5,-30.5
parent: 2
type: Transform
- uid: 2654
components:
- - pos: 22.5,-28.5
+ - pos: 23.5,-30.5
parent: 2
type: Transform
- uid: 2655
components:
- - pos: 6.5,-3.5
+ - pos: 22.5,-30.5
parent: 2
type: Transform
- uid: 2656
components:
- - pos: 5.5,-3.5
+ - pos: 22.5,-28.5
parent: 2
type: Transform
- uid: 2657
components:
- - pos: 8.5,-4.5
+ - pos: 6.5,-3.5
parent: 2
type: Transform
- uid: 2658
components:
- - pos: 12.5,-5.5
+ - pos: 5.5,-3.5
parent: 2
type: Transform
- uid: 2659
components:
- - pos: 12.5,-9.5
+ - pos: 8.5,-4.5
parent: 2
type: Transform
- uid: 2660
components:
- - pos: -10.5,-22.5
+ - pos: 12.5,-5.5
parent: 2
type: Transform
- uid: 2661
components:
- - pos: -15.5,-22.5
+ - pos: 12.5,-9.5
parent: 2
type: Transform
- uid: 2662
components:
- - pos: -24.5,-16.5
+ - pos: -10.5,-22.5
parent: 2
type: Transform
- uid: 2663
components:
- - pos: -24.5,-15.5
+ - pos: -15.5,-22.5
parent: 2
type: Transform
- uid: 2664
components:
- - pos: 23.5,-11.5
+ - pos: -24.5,-16.5
parent: 2
type: Transform
- uid: 2665
components:
- - pos: 25.5,-11.5
+ - pos: -24.5,-15.5
parent: 2
type: Transform
- uid: 2666
components:
- - pos: 25.5,-10.5
+ - pos: 23.5,-11.5
parent: 2
type: Transform
- uid: 2667
components:
- - pos: 25.5,-9.5
+ - pos: 25.5,-11.5
parent: 2
type: Transform
- uid: 2668
components:
- - pos: 21.5,-6.5
+ - pos: 25.5,-10.5
parent: 2
type: Transform
- uid: 2669
components:
- - pos: 20.5,-6.5
+ - pos: 25.5,-9.5
parent: 2
type: Transform
- uid: 2670
components:
- - pos: 26.5,-6.5
+ - pos: 21.5,-6.5
parent: 2
type: Transform
- uid: 2671
components:
- - pos: 27.5,-6.5
+ - pos: 20.5,-6.5
parent: 2
type: Transform
- uid: 2672
components:
- - pos: 28.5,-6.5
+ - pos: 26.5,-6.5
parent: 2
type: Transform
- uid: 2673
components:
- - pos: 29.5,-6.5
+ - pos: 27.5,-6.5
parent: 2
type: Transform
- uid: 2674
components:
- - pos: 30.5,-6.5
+ - pos: 28.5,-6.5
parent: 2
type: Transform
- uid: 2675
components:
- - pos: 30.5,-5.5
+ - pos: 29.5,-6.5
parent: 2
type: Transform
- uid: 2676
components:
- - pos: 29.5,-32.5
+ - pos: 30.5,-6.5
parent: 2
type: Transform
- uid: 2677
components:
- - pos: 8.5,-3.5
+ - pos: 30.5,-5.5
parent: 2
type: Transform
- uid: 2678
components:
- - pos: 8.5,-2.5
+ - pos: 29.5,-32.5
parent: 2
type: Transform
- uid: 2679
components:
- - pos: 8.5,-1.5
+ - pos: 8.5,-3.5
parent: 2
type: Transform
- uid: 2680
components:
- - pos: 7.5,-1.5
+ - pos: 8.5,-2.5
parent: 2
type: Transform
- uid: 2681
components:
- - pos: 6.5,-1.5
+ - pos: 8.5,-1.5
parent: 2
type: Transform
- uid: 2682
components:
- - pos: 5.5,-1.5
+ - pos: 7.5,-1.5
parent: 2
type: Transform
- uid: 2683
components:
- - pos: 4.5,-1.5
+ - pos: 6.5,-1.5
parent: 2
type: Transform
- uid: 2684
components:
- - pos: 4.5,-0.5
+ - pos: 5.5,-1.5
parent: 2
type: Transform
- uid: 2685
components:
- - pos: 2.5,0.5
+ - pos: 4.5,-1.5
parent: 2
type: Transform
- uid: 2686
components:
- - pos: 0.5,0.5
+ - pos: 4.5,-0.5
parent: 2
type: Transform
- uid: 2687
components:
- - pos: -0.5,1.5
+ - pos: 2.5,0.5
parent: 2
type: Transform
- uid: 2688
components:
- - pos: -0.5,2.5
+ - pos: 0.5,0.5
parent: 2
type: Transform
- uid: 2689
components:
- - pos: 0.5,2.5
+ - pos: -0.5,1.5
parent: 2
type: Transform
- uid: 2690
components:
- - pos: 1.5,2.5
+ - pos: -0.5,2.5
parent: 2
type: Transform
- uid: 2691
components:
- - pos: 3.5,2.5
+ - pos: 0.5,2.5
parent: 2
type: Transform
- uid: 2692
components:
- - pos: 4.5,2.5
+ - pos: 1.5,2.5
parent: 2
type: Transform
- uid: 2693
components:
- - pos: 5.5,2.5
+ - pos: 3.5,2.5
parent: 2
type: Transform
- uid: 2694
components:
- - pos: 6.5,2.5
+ - pos: 4.5,2.5
parent: 2
type: Transform
- uid: 2695
components:
- - pos: 7.5,2.5
+ - pos: 5.5,2.5
parent: 2
type: Transform
- uid: 2696
components:
- - pos: 11.5,-0.5
+ - pos: 6.5,2.5
parent: 2
type: Transform
- uid: 2697
components:
- - pos: -2.5,-51.5
+ - pos: 7.5,2.5
parent: 2
type: Transform
- uid: 2698
components:
- - pos: -1.5,-49.5
+ - pos: 11.5,-0.5
parent: 2
type: Transform
- uid: 2699
components:
- - pos: -0.5,-48.5
+ - pos: -2.5,-51.5
parent: 2
type: Transform
- uid: 2700
components:
- - pos: 2.5,-48.5
+ - pos: -1.5,-49.5
parent: 2
type: Transform
- uid: 2701
components:
- - pos: 4.5,-48.5
+ - pos: -0.5,-48.5
parent: 2
type: Transform
- uid: 2702
components:
- - pos: -1.5,-47.5
+ - pos: 2.5,-48.5
parent: 2
type: Transform
- uid: 2703
components:
- - pos: -6.5,-47.5
+ - pos: 4.5,-48.5
parent: 2
type: Transform
- uid: 2704
components:
- - pos: -3.5,-54.5
+ - pos: -1.5,-47.5
parent: 2
type: Transform
- uid: 2705
components:
- - pos: -5.5,-54.5
+ - pos: -6.5,-47.5
parent: 2
type: Transform
- uid: 2706
components:
- - pos: -6.5,-54.5
+ - pos: -3.5,-54.5
parent: 2
type: Transform
- uid: 2707
components:
- - pos: -8.5,-54.5
+ - pos: -5.5,-54.5
parent: 2
type: Transform
- uid: 2708
components:
- - pos: -10.5,-54.5
+ - pos: -6.5,-54.5
parent: 2
type: Transform
- uid: 2709
components:
- - pos: -11.5,-54.5
+ - pos: -8.5,-54.5
parent: 2
type: Transform
- uid: 2710
components:
- - pos: 3.5,-54.5
+ - pos: -10.5,-54.5
parent: 2
type: Transform
- uid: 2711
components:
- - pos: 5.5,-55.5
+ - pos: -11.5,-54.5
parent: 2
type: Transform
- uid: 2712
components:
- - pos: 5.5,-57.5
+ - pos: 3.5,-54.5
parent: 2
type: Transform
- uid: 2713
components:
- - pos: 5.5,-58.5
+ - pos: 5.5,-55.5
parent: 2
type: Transform
- uid: 2714
components:
- - pos: 5.5,-59.5
+ - pos: 5.5,-57.5
parent: 2
type: Transform
- uid: 2715
components:
- - pos: 6.5,-60.5
+ - pos: 5.5,-58.5
parent: 2
type: Transform
- uid: 2716
components:
- - pos: 7.5,-60.5
+ - pos: 5.5,-59.5
parent: 2
type: Transform
- uid: 2717
components:
- - pos: 4.5,-60.5
+ - pos: 6.5,-60.5
parent: 2
type: Transform
- uid: 2718
components:
- - pos: 1.5,-60.5
+ - pos: 7.5,-60.5
parent: 2
type: Transform
- uid: 2719
components:
- - pos: 0.5,-60.5
+ - pos: 4.5,-60.5
parent: 2
type: Transform
- uid: 2720
components:
- - pos: -1.5,-61.5
+ - pos: 1.5,-60.5
parent: 2
type: Transform
- uid: 2721
components:
- - pos: -1.5,-62.5
+ - pos: 0.5,-60.5
parent: 2
type: Transform
- uid: 2722
components:
- - pos: -1.5,-64.5
+ - pos: -1.5,-61.5
parent: 2
type: Transform
- uid: 2723
components:
- - pos: -7.5,-61.5
+ - pos: -1.5,-62.5
parent: 2
type: Transform
- uid: 2724
components:
- - pos: -6.5,-61.5
+ - pos: -1.5,-64.5
parent: 2
type: Transform
- uid: 2725
components:
- - pos: -11.5,-75.5
+ - pos: -7.5,-61.5
parent: 2
type: Transform
- uid: 2726
components:
- - pos: -11.5,-61.5
+ - pos: -6.5,-61.5
parent: 2
type: Transform
- uid: 2727
components:
- - pos: -12.5,-61.5
+ - pos: -11.5,-75.5
parent: 2
type: Transform
- uid: 2728
components:
- - pos: -13.5,-61.5
+ - pos: -11.5,-61.5
parent: 2
type: Transform
- uid: 2729
components:
- - pos: -13.5,-63.5
+ - pos: -12.5,-61.5
parent: 2
type: Transform
- uid: 2730
components:
- - pos: -13.5,-65.5
+ - pos: -13.5,-61.5
parent: 2
type: Transform
- uid: 2731
components:
- - pos: -13.5,-66.5
+ - pos: -13.5,-63.5
parent: 2
type: Transform
- uid: 2732
components:
- - pos: -15.5,-64.5
+ - pos: -13.5,-65.5
parent: 2
type: Transform
- uid: 2733
components:
- - pos: -21.5,-68.5
+ - pos: -13.5,-66.5
parent: 2
type: Transform
- uid: 2734
components:
- - pos: -21.5,-69.5
+ - pos: -15.5,-64.5
parent: 2
type: Transform
- uid: 2735
components:
- - pos: -21.5,-70.5
+ - pos: -21.5,-68.5
parent: 2
type: Transform
- uid: 2736
components:
- - pos: -20.5,-70.5
+ - pos: -21.5,-69.5
parent: 2
type: Transform
- uid: 2737
components:
- - pos: -19.5,-70.5
+ - pos: -21.5,-70.5
parent: 2
type: Transform
- uid: 2738
components:
- - pos: -19.5,-69.5
+ - pos: -20.5,-70.5
parent: 2
type: Transform
- uid: 2739
components:
- - pos: -19.5,-68.5
+ - pos: -19.5,-70.5
parent: 2
type: Transform
- uid: 2740
components:
- - pos: -19.5,-72.5
+ - pos: -19.5,-69.5
parent: 2
type: Transform
- uid: 2741
components:
- - pos: -19.5,-73.5
+ - pos: -19.5,-68.5
parent: 2
type: Transform
- uid: 2742
components:
- - pos: -18.5,-74.5
+ - pos: -19.5,-72.5
parent: 2
type: Transform
- uid: 2743
components:
- - pos: -18.5,-76.5
+ - pos: -19.5,-73.5
parent: 2
type: Transform
- uid: 2744
components:
- - pos: -18.5,-77.5
+ - pos: -18.5,-74.5
parent: 2
type: Transform
- uid: 2745
components:
- - pos: -17.5,-77.5
+ - pos: -18.5,-76.5
parent: 2
type: Transform
- uid: 2746
components:
- - pos: -19.5,-77.5
+ - pos: -18.5,-77.5
parent: 2
type: Transform
- uid: 2747
components:
- - pos: -20.5,-85.5
+ - pos: -17.5,-77.5
parent: 2
type: Transform
- uid: 2748
components:
- - pos: -25.5,-87.5
+ - pos: -19.5,-77.5
parent: 2
type: Transform
- uid: 2749
components:
- - pos: -25.5,-88.5
+ - pos: -20.5,-85.5
parent: 2
type: Transform
- uid: 2750
components:
- - pos: 8.5,-6.5
+ - pos: -25.5,-87.5
parent: 2
type: Transform
- uid: 2751
components:
- - pos: -7.5,-75.5
+ - pos: -25.5,-88.5
parent: 2
type: Transform
- uid: 2752
components:
- - pos: 17.5,-32.5
+ - pos: 8.5,-6.5
parent: 2
type: Transform
- uid: 2753
components:
- - pos: -8.5,8.5
+ - pos: -7.5,-75.5
parent: 2
type: Transform
- uid: 2754
components:
- - pos: -8.5,10.5
+ - pos: 17.5,-32.5
parent: 2
type: Transform
- uid: 2755
components:
- - pos: -8.5,5.5
+ - pos: -8.5,8.5
parent: 2
type: Transform
- uid: 2756
components:
- - pos: -3.5,9.5
+ - pos: -8.5,10.5
parent: 2
type: Transform
- uid: 2757
components:
- - pos: 5.5,9.5
+ - pos: -8.5,5.5
parent: 2
type: Transform
- uid: 2758
components:
- - pos: 9.5,-10.5
+ - pos: -3.5,9.5
parent: 2
type: Transform
- uid: 2759
components:
- - pos: 32.5,16.5
+ - pos: 5.5,9.5
parent: 2
type: Transform
- uid: 2760
components:
- - pos: 0.5,8.5
+ - pos: 9.5,-10.5
parent: 2
type: Transform
- uid: 2761
components:
- - pos: 0.5,-26.5
+ - pos: 32.5,16.5
parent: 2
type: Transform
- uid: 2762
components:
- - pos: -0.5,-26.5
+ - pos: 0.5,8.5
parent: 2
type: Transform
- uid: 2763
components:
- - pos: -8.5,2.5
+ - pos: 0.5,-26.5
parent: 2
type: Transform
- uid: 2764
components:
- - pos: 1.5,-26.5
+ - pos: -0.5,-26.5
parent: 2
type: Transform
- uid: 2765
components:
- - pos: 6.5,-26.5
+ - pos: -8.5,2.5
parent: 2
type: Transform
- uid: 2766
components:
- - pos: 7.5,-26.5
+ - pos: 1.5,-26.5
parent: 2
type: Transform
- uid: 2767
components:
- - pos: 12.5,-26.5
+ - pos: 6.5,-26.5
parent: 2
type: Transform
- uid: 2768
components:
- - pos: 14.5,-26.5
+ - pos: 7.5,-26.5
parent: 2
type: Transform
- uid: 2769
components:
- - pos: 17.5,-48.5
+ - pos: 12.5,-26.5
parent: 2
type: Transform
- uid: 2770
components:
- - pos: 27.5,4.5
+ - pos: 14.5,-26.5
parent: 2
type: Transform
- uid: 2771
components:
- - pos: 27.5,-0.5
+ - pos: 17.5,-48.5
parent: 2
type: Transform
- uid: 2772
components:
- - pos: 25.5,4.5
+ - pos: 27.5,4.5
parent: 2
type: Transform
- uid: 2773
components:
- - pos: 26.5,4.5
+ - pos: 27.5,-0.5
parent: 2
type: Transform
- uid: 2774
components:
- - pos: -4.5,-13.5
+ - pos: 25.5,4.5
parent: 2
type: Transform
- uid: 2775
components:
- - pos: -20.5,-86.5
+ - pos: 26.5,4.5
parent: 2
type: Transform
- uid: 2776
components:
- - pos: 20.5,-42.5
+ - pos: -4.5,-13.5
parent: 2
type: Transform
- uid: 2777
components:
- - pos: -18.5,-60.5
+ - pos: -20.5,-86.5
parent: 2
type: Transform
- uid: 2778
components:
- - pos: 8.5,-56.5
+ - pos: 20.5,-42.5
parent: 2
type: Transform
- uid: 2779
components:
- - pos: -4.5,-60.5
+ - pos: -18.5,-60.5
parent: 2
type: Transform
- uid: 2780
components:
- - pos: -1.5,-65.5
+ - pos: 8.5,-56.5
parent: 2
type: Transform
- uid: 2781
components:
- - pos: -1.5,-60.5
+ - pos: -4.5,-60.5
parent: 2
type: Transform
- uid: 2782
components:
- - pos: 3.5,-60.5
+ - pos: -1.5,-65.5
parent: 2
type: Transform
- uid: 2783
components:
- - pos: -3.5,-51.5
+ - pos: -1.5,-60.5
parent: 2
type: Transform
- uid: 2784
components:
- - pos: 3.5,-48.5
+ - pos: 3.5,-60.5
parent: 2
type: Transform
- uid: 2785
components:
- - pos: 5.5,-48.5
+ - pos: -3.5,-51.5
parent: 2
type: Transform
- uid: 2786
components:
- - pos: 6.5,-47.5
+ - pos: 3.5,-48.5
parent: 2
type: Transform
- uid: 2787
components:
- - pos: -4.5,-50.5
+ - pos: 5.5,-48.5
parent: 2
type: Transform
- uid: 2788
components:
- - pos: -4.5,-49.5
+ - pos: 6.5,-47.5
parent: 2
type: Transform
- uid: 2789
components:
- - pos: -6.5,-45.5
+ - pos: -4.5,-50.5
parent: 2
type: Transform
- uid: 2790
components:
- - pos: 22.5,-24.5
+ - pos: -4.5,-49.5
parent: 2
type: Transform
- uid: 2791
components:
- - pos: -6.5,-71.5
+ - pos: -6.5,-45.5
parent: 2
type: Transform
- uid: 2792
components:
- - pos: -9.5,-71.5
+ - pos: 22.5,-24.5
parent: 2
type: Transform
- uid: 2793
components:
- - pos: 10.5,-51.5
+ - pos: -6.5,-71.5
parent: 2
type: Transform
- uid: 2794
components:
- - pos: 16.5,-52.5
+ - pos: -9.5,-71.5
parent: 2
type: Transform
- uid: 2795
components:
- - pos: 14.5,-52.5
+ - pos: 10.5,-51.5
parent: 2
type: Transform
- uid: 2796
components:
- - pos: 25.5,-50.5
+ - pos: 16.5,-52.5
parent: 2
type: Transform
- uid: 2797
components:
- - pos: 25.5,-54.5
+ - pos: 14.5,-52.5
parent: 2
type: Transform
- uid: 2798
components:
- - pos: 25.5,-55.5
+ - pos: 25.5,-50.5
parent: 2
type: Transform
- uid: 2799
components:
- - pos: 25.5,-56.5
+ - pos: 25.5,-54.5
parent: 2
type: Transform
- uid: 2800
components:
- - pos: -4.5,-14.5
+ - pos: 25.5,-55.5
parent: 2
type: Transform
- uid: 2801
components:
- - pos: -4.5,-18.5
+ - pos: 25.5,-56.5
parent: 2
type: Transform
- uid: 2802
components:
- - pos: 59.5,-4.5
+ - pos: -4.5,-14.5
parent: 2
type: Transform
- uid: 2803
components:
- - pos: 46.5,-25.5
+ - pos: -4.5,-18.5
parent: 2
type: Transform
- uid: 2804
components:
- - pos: 46.5,-24.5
+ - pos: 59.5,-4.5
parent: 2
type: Transform
- uid: 2805
components:
- - pos: 46.5,-29.5
+ - pos: 46.5,-25.5
parent: 2
type: Transform
- uid: 2806
components:
- - pos: 46.5,-28.5
+ - pos: 46.5,-24.5
parent: 2
type: Transform
- uid: 2807
components:
- - pos: 45.5,-27.5
+ - pos: 46.5,-29.5
parent: 2
type: Transform
- uid: 2808
components:
- - pos: 43.5,-27.5
+ - pos: 46.5,-28.5
parent: 2
type: Transform
- uid: 2809
components:
- - pos: 44.5,-27.5
+ - pos: 45.5,-27.5
parent: 2
type: Transform
- uid: 2810
components:
- - pos: 43.5,-26.5
+ - pos: 43.5,-27.5
parent: 2
type: Transform
- uid: 2811
components:
- - pos: 5.5,10.5
+ - pos: 44.5,-27.5
parent: 2
type: Transform
- uid: 2812
components:
- - pos: 5.5,8.5
+ - pos: 43.5,-26.5
parent: 2
type: Transform
- uid: 2813
components:
- - pos: 10.5,-26.5
+ - pos: 5.5,10.5
parent: 2
type: Transform
- uid: 2814
components:
- - pos: -18.5,-52.5
+ - pos: 5.5,8.5
parent: 2
type: Transform
- uid: 2815
components:
- - pos: -4.5,-21.5
+ - pos: 10.5,-26.5
parent: 2
type: Transform
- uid: 2816
components:
- - pos: 17.5,-29.5
+ - pos: -18.5,-52.5
parent: 2
type: Transform
- uid: 2817
components:
- - pos: -6.5,14.5
+ - pos: -4.5,-21.5
parent: 2
type: Transform
- uid: 2818
components:
- - pos: -6.5,13.5
+ - pos: 17.5,-29.5
parent: 2
type: Transform
- uid: 2819
components:
- - pos: 24.5,-32.5
+ - pos: -6.5,14.5
parent: 2
type: Transform
- uid: 2820
components:
- - pos: 27.5,-25.5
+ - pos: -6.5,13.5
parent: 2
type: Transform
- uid: 2821
components:
- - pos: 25.5,-22.5
+ - pos: 24.5,-32.5
parent: 2
type: Transform
- uid: 2822
components:
- - pos: 28.5,-23.5
+ - pos: 27.5,-25.5
parent: 2
type: Transform
- uid: 2823
components:
- - pos: 29.5,-23.5
+ - pos: 25.5,-22.5
parent: 2
type: Transform
- uid: 2824
components:
- - pos: 30.5,-23.5
+ - pos: 28.5,-23.5
parent: 2
type: Transform
- uid: 2825
components:
- - pos: 28.5,-28.5
+ - pos: 29.5,-23.5
parent: 2
type: Transform
- uid: 2826
components:
- - pos: 7.5,-3.5
+ - pos: 30.5,-23.5
parent: 2
type: Transform
- uid: 2827
components:
- - pos: 25.5,-32.5
+ - pos: 28.5,-28.5
parent: 2
type: Transform
- uid: 2828
components:
- - pos: -16.5,-22.5
+ - pos: 7.5,-3.5
parent: 2
type: Transform
- uid: 2829
components:
- - pos: -13.5,-53.5
+ - pos: 25.5,-32.5
parent: 2
type: Transform
- uid: 2830
components:
- - pos: 7.5,-65.5
+ - pos: -16.5,-22.5
parent: 2
type: Transform
- uid: 2831
components:
- - pos: -13.5,-73.5
+ - pos: -13.5,-53.5
parent: 2
type: Transform
- uid: 2832
components:
- - pos: -7.5,-6.5
+ - pos: 7.5,-65.5
parent: 2
type: Transform
- uid: 2833
components:
- - pos: -29.5,1.5
+ - pos: -13.5,-73.5
parent: 2
type: Transform
- uid: 2834
components:
- - pos: 18.5,-40.5
+ - pos: -7.5,-6.5
parent: 2
type: Transform
- uid: 2835
components:
- - pos: -39.5,-68.5
+ - pos: -29.5,1.5
parent: 2
type: Transform
- uid: 2836
components:
- - pos: -36.5,-70.5
+ - pos: 18.5,-40.5
parent: 2
type: Transform
- uid: 2837
components:
- - pos: 41.5,-26.5
+ - pos: -39.5,-68.5
parent: 2
type: Transform
- uid: 2838
components:
- - pos: -35.5,-70.5
+ - pos: -36.5,-70.5
parent: 2
type: Transform
- uid: 2839
components:
- - pos: -37.5,-69.5
+ - pos: 41.5,-26.5
parent: 2
type: Transform
- uid: 2840
components:
- - pos: -9.5,-22.5
+ - pos: -35.5,-70.5
parent: 2
type: Transform
- uid: 2841
components:
- - pos: 12.5,-8.5
+ - pos: -37.5,-69.5
parent: 2
type: Transform
- uid: 2842
components:
- - pos: 8.5,-5.5
+ - pos: -9.5,-22.5
parent: 2
type: Transform
- uid: 2843
components:
- - pos: -8.5,-22.5
+ - pos: 12.5,-8.5
parent: 2
type: Transform
- uid: 2844
components:
- - pos: -11.5,-22.5
+ - pos: 8.5,-5.5
parent: 2
type: Transform
- uid: 2845
components:
- - pos: -15.5,-66.5
+ - pos: -8.5,-22.5
parent: 2
type: Transform
- uid: 2846
components:
- - pos: -4.5,-12.5
+ - pos: -11.5,-22.5
parent: 2
type: Transform
- uid: 2847
components:
- - pos: 2.5,-69.5
+ - pos: -15.5,-66.5
parent: 2
type: Transform
- uid: 2848
components:
- - pos: 22.5,-32.5
+ - pos: -4.5,-12.5
parent: 2
type: Transform
- uid: 2849
components:
- - pos: -47.5,37.5
+ - pos: 2.5,-69.5
parent: 2
type: Transform
- uid: 2850
components:
- - pos: -10.5,-19.5
+ - pos: 22.5,-32.5
parent: 2
type: Transform
- uid: 2851
components:
- - pos: 29.5,-42.5
+ - pos: -47.5,37.5
parent: 2
type: Transform
- uid: 2852
components:
- - pos: 67.5,-13.5
+ - pos: -10.5,-19.5
parent: 2
type: Transform
- uid: 2853
components:
- - pos: 25.5,-46.5
+ - pos: 29.5,-42.5
parent: 2
type: Transform
- uid: 2854
components:
- - pos: -5.5,-72.5
+ - pos: 67.5,-13.5
parent: 2
type: Transform
- uid: 2855
components:
- - pos: -7.5,10.5
+ - pos: 25.5,-46.5
parent: 2
type: Transform
- uid: 2856
components:
- - pos: 15.5,-42.5
+ - pos: -5.5,-72.5
parent: 2
type: Transform
- uid: 2857
components:
- - pos: 2.5,-68.5
+ - pos: -7.5,10.5
parent: 2
type: Transform
- uid: 2858
components:
- - pos: 7.5,-70.5
+ - pos: 15.5,-42.5
parent: 2
type: Transform
- uid: 2859
components:
- - pos: -2.5,-26.5
+ - pos: 2.5,-68.5
parent: 2
type: Transform
- uid: 2860
components:
- - pos: 12.5,-7.5
+ - pos: 7.5,-70.5
parent: 2
type: Transform
- uid: 2861
components:
- - pos: 15.5,-39.5
+ - pos: -2.5,-26.5
parent: 2
type: Transform
- uid: 2862
components:
- - pos: 29.5,-60.5
+ - pos: 12.5,-7.5
parent: 2
type: Transform
- uid: 2863
components:
- - pos: 30.5,-13.5
+ - pos: 15.5,-39.5
parent: 2
type: Transform
- uid: 2864
components:
- - pos: 3.5,-67.5
+ - pos: 29.5,-60.5
parent: 2
type: Transform
- uid: 2865
components:
- - pos: 15.5,-45.5
+ - pos: 30.5,-13.5
parent: 2
type: Transform
- uid: 2866
components:
- - pos: 17.5,-45.5
+ - pos: 3.5,-67.5
parent: 2
type: Transform
- uid: 2867
components:
- - pos: -3.5,-26.5
+ - pos: 15.5,-45.5
parent: 2
type: Transform
- uid: 2868
components:
- - pos: 1.5,-71.5
+ - pos: 17.5,-45.5
parent: 2
type: Transform
- uid: 2869
components:
- - pos: -8.5,-26.5
+ - pos: -3.5,-26.5
parent: 2
type: Transform
- uid: 2870
components:
- - pos: -4.5,1.5
+ - pos: 1.5,-71.5
parent: 2
type: Transform
- uid: 2871
components:
- - pos: 8.5,-70.5
+ - pos: -8.5,-26.5
parent: 2
type: Transform
- uid: 2872
components:
- - pos: 30.5,-61.5
+ - pos: -4.5,1.5
parent: 2
type: Transform
- uid: 2873
components:
- - pos: -16.5,-21.5
+ - pos: 8.5,-70.5
parent: 2
type: Transform
- uid: 2874
components:
- - pos: -4.5,-24.5
+ - pos: 30.5,-61.5
parent: 2
type: Transform
- uid: 2875
components:
- - pos: -4.5,-23.5
+ - pos: -16.5,-21.5
parent: 2
type: Transform
- uid: 2876
components:
- - pos: -4.5,-30.5
+ - pos: -4.5,-24.5
parent: 2
type: Transform
- uid: 2877
components:
- - pos: -4.5,-29.5
+ - pos: -4.5,-23.5
parent: 2
type: Transform
- uid: 2878
components:
- - pos: -4.5,-31.5
+ - pos: -4.5,-30.5
parent: 2
type: Transform
- uid: 2879
components:
- - pos: -9.5,-26.5
+ - pos: -4.5,-29.5
parent: 2
type: Transform
- uid: 2880
components:
- - pos: -11.5,-26.5
+ - pos: -4.5,-31.5
parent: 2
type: Transform
- uid: 2881
components:
- - pos: -15.5,-20.5
+ - pos: -9.5,-26.5
parent: 2
type: Transform
- uid: 2882
components:
- - pos: -15.5,-19.5
+ - pos: -11.5,-26.5
parent: 2
type: Transform
- uid: 2883
components:
- - pos: -15.5,-16.5
+ - pos: -15.5,-20.5
parent: 2
type: Transform
- uid: 2884
components:
- - pos: 46.5,-23.5
+ - pos: -15.5,-19.5
parent: 2
type: Transform
- uid: 2885
components:
- - pos: 1.5,-69.5
+ - pos: -15.5,-16.5
parent: 2
type: Transform
- uid: 2886
components:
- - pos: 30.5,-60.5
+ - pos: 46.5,-23.5
parent: 2
type: Transform
- uid: 2887
components:
- - pos: 9.5,-65.5
+ - pos: 1.5,-69.5
parent: 2
type: Transform
- uid: 2888
components:
- - pos: 38.5,-25.5
+ - pos: 30.5,-60.5
parent: 2
type: Transform
- uid: 2889
components:
- - pos: 41.5,-25.5
+ - pos: 9.5,-65.5
parent: 2
type: Transform
- uid: 2890
components:
- - pos: 14.5,-49.5
+ - pos: 38.5,-25.5
parent: 2
type: Transform
- uid: 2891
components:
- - pos: 24.5,-53.5
+ - pos: 41.5,-25.5
parent: 2
type: Transform
- uid: 2892
components:
- - pos: 25.5,-51.5
+ - pos: 14.5,-49.5
parent: 2
type: Transform
- uid: 2893
components:
- - pos: -3.5,2.5
+ - pos: 24.5,-53.5
parent: 2
type: Transform
- uid: 2894
components:
- - pos: -9.5,-75.5
+ - pos: 25.5,-51.5
parent: 2
type: Transform
- uid: 2895
components:
- - pos: 2.5,-67.5
+ - pos: -3.5,2.5
parent: 2
type: Transform
- uid: 2896
components:
- - pos: -5.5,-26.5
+ - pos: -9.5,-75.5
parent: 2
type: Transform
- uid: 2897
components:
- - pos: 25.5,-58.5
+ - pos: 2.5,-67.5
parent: 2
type: Transform
- uid: 2898
components:
- - pos: 25.5,-59.5
+ - pos: -5.5,-26.5
parent: 2
type: Transform
- uid: 2899
components:
- - pos: 26.5,-60.5
+ - pos: 25.5,-58.5
parent: 2
type: Transform
- uid: 2900
components:
- - pos: 28.5,-42.5
+ - pos: 25.5,-59.5
parent: 2
type: Transform
- uid: 2901
components:
- - pos: 8.5,-69.5
+ - pos: 26.5,-60.5
parent: 2
type: Transform
- uid: 2902
components:
- - pos: 19.5,-47.5
+ - pos: 28.5,-42.5
parent: 2
type: Transform
- uid: 2903
components:
- - pos: -1.5,-74.5
+ - pos: 8.5,-69.5
parent: 2
type: Transform
- uid: 2904
components:
- - pos: 30.5,1.5
+ - pos: 19.5,-47.5
parent: 2
type: Transform
- uid: 2905
components:
- - pos: -1.5,-76.5
+ - pos: -1.5,-74.5
parent: 2
type: Transform
- uid: 2906
components:
- - pos: -5.5,-74.5
+ - pos: 30.5,1.5
parent: 2
type: Transform
- uid: 2907
components:
- - pos: -5.5,-71.5
+ - pos: -1.5,-76.5
parent: 2
type: Transform
- uid: 2908
components:
- - pos: 31.5,2.5
+ - pos: -5.5,-74.5
parent: 2
type: Transform
- uid: 2909
components:
- - pos: 19.5,-42.5
+ - pos: -5.5,-71.5
parent: 2
type: Transform
- uid: 2910
components:
- - pos: 44.5,7.5
+ - pos: 31.5,2.5
parent: 2
type: Transform
- uid: 2911
components:
- - pos: 4.5,-71.5
+ - pos: 19.5,-42.5
parent: 2
type: Transform
- uid: 2912
components:
- - pos: -17.5,-52.5
+ - pos: 44.5,7.5
parent: 2
type: Transform
- uid: 2913
components:
- - pos: 10.5,-42.5
+ - pos: 4.5,-71.5
parent: 2
type: Transform
- uid: 2914
components:
- - pos: -14.5,-47.5
+ - pos: -17.5,-52.5
parent: 2
type: Transform
- uid: 2915
components:
- - pos: -12.5,-49.5
+ - pos: 10.5,-42.5
parent: 2
type: Transform
- uid: 2916
components:
- - pos: -13.5,-49.5
+ - pos: -14.5,-47.5
parent: 2
type: Transform
- uid: 2917
components:
- - pos: -13.5,-48.5
+ - pos: -12.5,-49.5
parent: 2
type: Transform
- uid: 2918
components:
- - pos: -13.5,-47.5
+ - pos: -13.5,-49.5
parent: 2
type: Transform
- uid: 2919
components:
- - pos: -12.5,-47.5
+ - pos: -13.5,-48.5
parent: 2
type: Transform
- uid: 2920
components:
- - pos: -10.5,-18.5
+ - pos: -13.5,-47.5
parent: 2
type: Transform
- uid: 2921
components:
- - pos: 21.5,-9.5
+ - pos: -12.5,-47.5
parent: 2
type: Transform
- uid: 2922
components:
- - pos: 20.5,-11.5
+ - pos: -10.5,-18.5
parent: 2
type: Transform
- uid: 2923
components:
- - pos: 20.5,-12.5
+ - pos: 21.5,-9.5
parent: 2
type: Transform
- uid: 2924
components:
- - pos: 22.5,-41.5
+ - pos: 20.5,-11.5
parent: 2
type: Transform
- uid: 2925
components:
- - pos: 19.5,-13.5
+ - pos: 20.5,-12.5
parent: 2
type: Transform
- uid: 2926
components:
- - pos: 22.5,-11.5
+ - pos: 22.5,-41.5
parent: 2
type: Transform
- uid: 2927
components:
- - pos: 62.5,-8.5
+ - pos: 19.5,-13.5
parent: 2
type: Transform
- uid: 2928
components:
- - pos: -3.5,-53.5
+ - pos: 22.5,-11.5
parent: 2
type: Transform
- uid: 2929
components:
- - pos: -14.5,-58.5
+ - pos: 62.5,-8.5
parent: 2
type: Transform
- uid: 2930
components:
- - pos: 8.5,-60.5
+ - pos: -3.5,-53.5
parent: 2
type: Transform
- uid: 2931
components:
- - pos: -8.5,-61.5
+ - pos: -14.5,-58.5
parent: 2
type: Transform
- uid: 2932
components:
- - pos: -20.5,-88.5
+ - pos: 8.5,-60.5
parent: 2
type: Transform
- uid: 2933
components:
- - pos: 28.5,-60.5
+ - pos: -8.5,-61.5
parent: 2
type: Transform
- uid: 2934
components:
- - pos: -8.5,-24.5
+ - pos: -20.5,-88.5
parent: 2
type: Transform
- uid: 2935
components:
- - pos: -4.5,-25.5
+ - pos: 28.5,-60.5
parent: 2
type: Transform
- uid: 2936
components:
- - pos: 8.5,-54.5
+ - pos: -8.5,-24.5
parent: 2
type: Transform
- uid: 2937
components:
- - pos: 8.5,-55.5
+ - pos: -4.5,-25.5
parent: 2
type: Transform
- uid: 2938
components:
- - pos: -17.5,-61.5
+ - pos: 8.5,-54.5
parent: 2
type: Transform
- uid: 2939
components:
- - pos: -18.5,-61.5
+ - pos: 8.5,-55.5
parent: 2
type: Transform
- uid: 2940
components:
- - pos: 20.5,0.5
+ - pos: -17.5,-61.5
parent: 2
type: Transform
- uid: 2941
components:
- - pos: -12.5,-74.5
+ - pos: -18.5,-61.5
parent: 2
type: Transform
- uid: 2942
components:
- - pos: 40.5,-25.5
+ - pos: 20.5,0.5
parent: 2
type: Transform
- uid: 2943
components:
- - pos: 31.5,-62.5
+ - pos: -12.5,-74.5
parent: 2
type: Transform
- uid: 2944
components:
- - pos: 22.5,-53.5
+ - pos: 40.5,-25.5
parent: 2
type: Transform
- uid: 2945
components:
- - pos: 25.5,-47.5
+ - pos: 31.5,-62.5
parent: 2
type: Transform
- uid: 2946
components:
- - pos: 5.5,-70.5
+ - pos: 22.5,-53.5
parent: 2
type: Transform
- uid: 2947
components:
- - pos: 4.5,8.5
+ - pos: 25.5,-47.5
parent: 2
type: Transform
- uid: 2948
components:
- - pos: -31.5,30.5
+ - pos: 5.5,-70.5
parent: 2
type: Transform
- uid: 2949
components:
- - pos: 15.5,-41.5
+ - pos: 4.5,8.5
parent: 2
type: Transform
- uid: 2950
components:
- - pos: 20.5,1.5
+ - pos: -31.5,30.5
parent: 2
type: Transform
- uid: 2951
components:
- - pos: -8.5,-23.5
+ - pos: 15.5,-41.5
parent: 2
type: Transform
- uid: 2952
components:
- - pos: 25.5,-60.5
+ - pos: 20.5,1.5
parent: 2
type: Transform
- uid: 2953
components:
- - pos: -1.5,-69.5
+ - pos: -8.5,-23.5
parent: 2
type: Transform
- uid: 2954
components:
- - pos: 18.5,-32.5
+ - pos: 25.5,-60.5
parent: 2
type: Transform
- uid: 2955
components:
- - pos: -1.5,-26.5
+ - pos: -1.5,-69.5
parent: 2
type: Transform
- uid: 2956
components:
- - pos: -41.5,28.5
+ - pos: 18.5,-32.5
parent: 2
type: Transform
- uid: 2957
components:
- - pos: -37.5,-68.5
+ - pos: -1.5,-26.5
parent: 2
type: Transform
- uid: 2958
components:
- - pos: 1.5,6.5
+ - pos: -41.5,28.5
parent: 2
type: Transform
- uid: 2959
components:
- - pos: 0.5,-71.5
+ - pos: -37.5,-68.5
parent: 2
type: Transform
- uid: 2960
components:
- - pos: -10.5,-20.5
+ - pos: 1.5,6.5
parent: 2
type: Transform
- uid: 2961
components:
- - pos: 4.5,-46.5
+ - pos: 0.5,-71.5
parent: 2
type: Transform
- uid: 2962
components:
- - pos: -8.5,-46.5
+ - pos: -10.5,-20.5
parent: 2
type: Transform
- uid: 2963
components:
- - pos: 17.5,-55.5
+ - pos: 4.5,-46.5
parent: 2
type: Transform
- uid: 2964
components:
- - pos: 18.5,-55.5
+ - pos: -8.5,-46.5
parent: 2
type: Transform
- uid: 2965
components:
- - pos: -6.5,-26.5
+ - pos: 17.5,-55.5
parent: 2
type: Transform
- uid: 2966
components:
- - pos: 24.5,-42.5
+ - pos: 18.5,-55.5
parent: 2
type: Transform
- uid: 2967
components:
- - pos: 14.5,-42.5
+ - pos: -6.5,-26.5
parent: 2
type: Transform
- uid: 2968
components:
- - pos: 17.5,-47.5
+ - pos: 24.5,-42.5
parent: 2
type: Transform
- uid: 2969
components:
- - pos: 17.5,-52.5
+ - pos: 14.5,-42.5
parent: 2
type: Transform
- uid: 2970
components:
- - pos: 15.5,-48.5
+ - pos: 17.5,-47.5
parent: 2
type: Transform
- uid: 2971
components:
- - pos: 4.5,-70.5
+ - pos: 17.5,-52.5
parent: 2
type: Transform
- uid: 2972
components:
- - pos: 28.5,-47.5
+ - pos: 14.5,-48.5
parent: 2
type: Transform
- uid: 2973
components:
- - pos: 25.5,-49.5
+ - pos: 4.5,-70.5
parent: 2
type: Transform
- uid: 2974
components:
- - pos: -1.5,-71.5
+ - pos: 28.5,-47.5
parent: 2
type: Transform
- uid: 2975
components:
- - pos: -6.5,1.5
+ - pos: 25.5,-49.5
parent: 2
type: Transform
- uid: 2976
components:
- - pos: 15.5,-49.5
+ - pos: -1.5,-71.5
parent: 2
type: Transform
- uid: 2977
components:
- - pos: -2.5,11.5
+ - pos: -6.5,1.5
parent: 2
type: Transform
- uid: 2978
components:
- - pos: 4.5,6.5
+ - pos: 15.5,-49.5
parent: 2
type: Transform
- uid: 2979
components:
- - pos: 46.5,-26.5
+ - pos: -2.5,11.5
parent: 2
type: Transform
- uid: 2980
components:
- - pos: 15.5,-35.5
+ - pos: 4.5,6.5
parent: 2
type: Transform
- uid: 2981
components:
- - pos: 15.5,-36.5
+ - pos: 46.5,-26.5
parent: 2
type: Transform
- uid: 2982
components:
- - pos: 20.5,-14.5
+ - pos: 15.5,-35.5
parent: 2
type: Transform
- uid: 2983
components:
- - pos: 20.5,-15.5
+ - pos: 15.5,-36.5
parent: 2
type: Transform
- uid: 2984
components:
- - pos: 20.5,-16.5
+ - pos: 20.5,-14.5
parent: 2
type: Transform
- uid: 2985
components:
- - pos: 20.5,-17.5
+ - pos: 20.5,-15.5
parent: 2
type: Transform
- uid: 2986
components:
- - pos: 19.5,-17.5
+ - pos: 20.5,-16.5
parent: 2
type: Transform
- uid: 2987
components:
- - pos: 17.5,-17.5
+ - pos: 20.5,-17.5
parent: 2
type: Transform
- uid: 2988
components:
- - pos: 23.5,-17.5
+ - pos: 19.5,-17.5
parent: 2
type: Transform
- uid: 2989
components:
- - pos: 25.5,-18.5
+ - pos: 17.5,-17.5
parent: 2
type: Transform
- uid: 2990
components:
- - pos: 27.5,-17.5
+ - pos: 23.5,-17.5
parent: 2
type: Transform
- uid: 2991
components:
- - pos: 27.5,-18.5
+ - pos: 25.5,-18.5
parent: 2
type: Transform
- uid: 2992
components:
- - pos: 23.5,-18.5
+ - pos: 27.5,-17.5
parent: 2
type: Transform
- uid: 2993
components:
- - pos: 28.5,-17.5
+ - pos: 27.5,-18.5
parent: 2
type: Transform
- uid: 2994
components:
- - pos: 29.5,-17.5
+ - pos: 23.5,-18.5
parent: 2
type: Transform
- uid: 2995
components:
- - pos: 30.5,-17.5
+ - pos: 28.5,-17.5
parent: 2
type: Transform
- uid: 2996
components:
- - pos: 30.5,-16.5
+ - pos: 29.5,-17.5
parent: 2
type: Transform
- uid: 2997
components:
- - pos: 32.5,-16.5
+ - pos: 30.5,-17.5
parent: 2
type: Transform
- uid: 2998
components:
- - pos: 32.5,-15.5
+ - pos: 30.5,-16.5
parent: 2
type: Transform
- uid: 2999
components:
- - pos: 32.5,-14.5
+ - pos: 32.5,-16.5
parent: 2
type: Transform
- uid: 3000
components:
- - pos: 32.5,-12.5
+ - pos: 32.5,-15.5
parent: 2
type: Transform
- uid: 3001
components:
- - pos: 32.5,-17.5
+ - pos: 32.5,-14.5
parent: 2
type: Transform
- uid: 3002
components:
- - pos: 34.5,-18.5
+ - pos: 32.5,-12.5
parent: 2
type: Transform
- uid: 3003
components:
- - pos: 20.5,-8.5
+ - pos: 32.5,-17.5
parent: 2
type: Transform
- uid: 3004
components:
- - pos: 19.5,-8.5
+ - pos: 34.5,-18.5
parent: 2
type: Transform
- uid: 3005
components:
- - pos: 17.5,-8.5
+ - pos: 20.5,-8.5
parent: 2
type: Transform
- uid: 3006
components:
- - pos: 15.5,-8.5
+ - pos: 19.5,-8.5
parent: 2
type: Transform
- uid: 3007
components:
- - pos: 14.5,-7.5
+ - pos: 17.5,-8.5
parent: 2
type: Transform
- uid: 3008
components:
- - pos: 9.5,-14.5
+ - pos: 15.5,-8.5
parent: 2
type: Transform
- uid: 3009
components:
- - pos: 26.5,-14.5
+ - pos: 14.5,-7.5
parent: 2
type: Transform
- uid: 3010
components:
- - pos: 29.5,-8.5
+ - pos: 9.5,-14.5
parent: 2
type: Transform
- uid: 3011
components:
- - pos: 27.5,-14.5
+ - pos: 26.5,-14.5
parent: 2
type: Transform
- uid: 3012
components:
- - pos: 30.5,-8.5
+ - pos: 29.5,-8.5
parent: 2
type: Transform
- uid: 3013
components:
- - pos: 31.5,-8.5
+ - pos: 27.5,-14.5
parent: 2
type: Transform
- uid: 3014
components:
- - pos: -4.5,-15.5
+ - pos: 30.5,-8.5
parent: 2
type: Transform
- uid: 3015
components:
- - pos: -15.5,-17.5
+ - pos: 31.5,-8.5
parent: 2
type: Transform
- uid: 3016
components:
- - pos: -12.5,-73.5
+ - pos: -4.5,-15.5
parent: 2
type: Transform
- uid: 3017
components:
- - pos: -4.5,-19.5
+ - pos: -15.5,-17.5
parent: 2
type: Transform
- uid: 3018
components:
- - pos: -1.5,-63.5
+ - pos: -12.5,-73.5
parent: 2
type: Transform
- uid: 3019
components:
- - pos: -7.5,-47.5
+ - pos: -4.5,-19.5
parent: 2
type: Transform
- uid: 3020
components:
- - pos: 25.5,-24.5
+ - pos: -1.5,-63.5
parent: 2
type: Transform
- uid: 3021
components:
- - pos: 23.5,-23.5
+ - pos: -7.5,-47.5
parent: 2
type: Transform
- uid: 3022
components:
- - pos: 20.5,-22.5
+ - pos: 25.5,-24.5
parent: 2
type: Transform
- uid: 3023
components:
- - pos: 30.5,-24.5
+ - pos: 23.5,-23.5
parent: 2
type: Transform
- uid: 3024
components:
- - pos: -8.5,-47.5
+ - pos: 20.5,-22.5
parent: 2
type: Transform
- uid: 3025
components:
- - pos: 27.5,-31.5
+ - pos: 30.5,-24.5
parent: 2
type: Transform
- uid: 3026
components:
- - pos: 22.5,-33.5
+ - pos: -8.5,-47.5
parent: 2
type: Transform
- uid: 3027
components:
- - pos: 22.5,-31.5
+ - pos: 27.5,-31.5
parent: 2
type: Transform
- uid: 3028
components:
- - pos: -7.5,-45.5
+ - pos: 22.5,-33.5
parent: 2
type: Transform
- uid: 3029
components:
- - pos: -5.5,-45.5
+ - pos: 22.5,-31.5
parent: 2
type: Transform
- uid: 3030
components:
- - pos: -4.5,-45.5
+ - pos: -7.5,-45.5
parent: 2
type: Transform
- uid: 3031
components:
- - pos: -3.5,-45.5
+ - pos: -5.5,-45.5
parent: 2
type: Transform
- uid: 3032
components:
- - pos: 5.5,-46.5
+ - pos: -4.5,-45.5
parent: 2
type: Transform
- uid: 3033
components:
- - pos: 6.5,-46.5
+ - pos: -3.5,-45.5
parent: 2
type: Transform
- uid: 3034
components:
- - pos: -12.5,-54.5
+ - pos: 5.5,-46.5
parent: 2
type: Transform
- uid: 3035
components:
- - pos: 19.5,-50.5
+ - pos: 6.5,-46.5
parent: 2
type: Transform
- uid: 3036
components:
- - pos: -2.5,-42.5
+ - pos: -12.5,-54.5
parent: 2
type: Transform
- uid: 3037
components:
- - pos: -4.5,-42.5
+ - pos: 19.5,-50.5
parent: 2
type: Transform
- uid: 3038
components:
- - pos: -6.5,-42.5
+ - pos: -2.5,-42.5
parent: 2
type: Transform
- uid: 3039
components:
- - pos: -7.5,-42.5
+ - pos: -4.5,-42.5
parent: 2
type: Transform
- uid: 3040
components:
- - pos: -8.5,-42.5
+ - pos: -6.5,-42.5
parent: 2
type: Transform
- uid: 3041
components:
- - pos: -9.5,-42.5
+ - pos: -7.5,-42.5
parent: 2
type: Transform
- uid: 3042
components:
- - pos: -10.5,-42.5
+ - pos: -8.5,-42.5
parent: 2
type: Transform
- uid: 3043
components:
- - pos: -11.5,-42.5
+ - pos: -9.5,-42.5
parent: 2
type: Transform
- uid: 3044
components:
- - pos: -12.5,-42.5
+ - pos: -10.5,-42.5
parent: 2
type: Transform
- uid: 3045
components:
- - pos: 1.5,-41.5
+ - pos: -11.5,-42.5
parent: 2
type: Transform
- uid: 3046
components:
- - pos: 2.5,-41.5
+ - pos: -12.5,-42.5
parent: 2
type: Transform
- uid: 3047
components:
- - pos: 3.5,-41.5
+ - pos: 1.5,-41.5
parent: 2
type: Transform
- uid: 3048
components:
- - pos: 5.5,-41.5
+ - pos: 2.5,-41.5
parent: 2
type: Transform
- uid: 3049
components:
- - pos: 5.5,-42.5
+ - pos: 3.5,-41.5
parent: 2
type: Transform
- uid: 3050
components:
- - pos: -4.5,-38.5
+ - pos: 5.5,-41.5
parent: 2
type: Transform
- uid: 3051
components:
- - pos: -4.5,-36.5
+ - pos: 5.5,-42.5
parent: 2
type: Transform
- uid: 3052
components:
- - pos: -4.5,-35.5
+ - pos: -4.5,-38.5
parent: 2
type: Transform
- uid: 3053
components:
- - pos: -4.5,-34.5
+ - pos: -4.5,-36.5
parent: 2
type: Transform
- uid: 3054
components:
- - pos: -12.5,-43.5
+ - pos: -4.5,-35.5
parent: 2
type: Transform
- uid: 3055
components:
- - pos: -12.5,-44.5
+ - pos: -4.5,-34.5
parent: 2
type: Transform
- uid: 3056
components:
- - pos: -12.5,-46.5
+ - pos: -12.5,-43.5
parent: 2
type: Transform
- uid: 3057
components:
- - pos: -5.5,-69.5
+ - pos: -12.5,-44.5
parent: 2
type: Transform
- uid: 3058
components:
- - pos: 26.5,-42.5
+ - pos: -12.5,-46.5
parent: 2
type: Transform
- uid: 3059
components:
- - pos: 30.5,2.5
+ - pos: -5.5,-69.5
parent: 2
type: Transform
- uid: 3060
components:
- - pos: 18.5,-41.5
+ - pos: 26.5,-42.5
parent: 2
type: Transform
- uid: 3061
components:
- - pos: 8.5,-68.5
+ - pos: 30.5,2.5
parent: 2
type: Transform
- uid: 3062
components:
- - pos: 26.5,-47.5
+ - pos: 18.5,-41.5
parent: 2
type: Transform
- uid: 3063
components:
- - pos: -4.5,-27.5
+ - pos: 8.5,-68.5
parent: 2
type: Transform
- uid: 3064
components:
- - pos: 29.5,2.5
+ - pos: 26.5,-47.5
parent: 2
type: Transform
- uid: 3065
components:
- - pos: 25.5,-48.5
+ - pos: -4.5,-27.5
parent: 2
type: Transform
- uid: 3066
components:
- - pos: -4.5,7.5
+ - pos: 29.5,2.5
parent: 2
type: Transform
- uid: 3067
components:
- - pos: 28.5,-32.5
+ - pos: 25.5,-48.5
parent: 2
type: Transform
- uid: 3068
components:
- - pos: 30.5,-30.5
+ - pos: -4.5,7.5
parent: 2
type: Transform
- uid: 3069
components:
- - pos: 30.5,-29.5
+ - pos: 28.5,-32.5
parent: 2
type: Transform
- uid: 3070
components:
- - pos: 30.5,-28.5
+ - pos: 30.5,-30.5
parent: 2
type: Transform
- uid: 3071
components:
- - pos: 62.5,-10.5
+ - pos: 30.5,-29.5
parent: 2
type: Transform
- uid: 3072
components:
- - pos: 9.5,2.5
+ - pos: 30.5,-28.5
parent: 2
type: Transform
- uid: 3073
components:
- - pos: 2.5,2.5
+ - pos: 62.5,-10.5
parent: 2
type: Transform
- uid: 3074
components:
- - pos: 27.5,-32.5
+ - pos: 9.5,2.5
parent: 2
type: Transform
- uid: 3075
components:
- - pos: 62.5,-12.5
+ - pos: 2.5,2.5
parent: 2
type: Transform
- uid: 3076
components:
- - pos: -4.5,-22.5
+ - pos: 27.5,-32.5
parent: 2
type: Transform
- uid: 3077
components:
- - pos: -4.5,-3.5
+ - pos: 62.5,-12.5
parent: 2
type: Transform
- uid: 3078
components:
- - pos: -4.5,-2.5
+ - pos: -4.5,-22.5
parent: 2
type: Transform
- uid: 3079
components:
- - pos: -4.5,-0.5
+ - pos: -4.5,-3.5
parent: 2
type: Transform
- uid: 3080
components:
- - pos: -4.5,-1.5
+ - pos: -4.5,-2.5
parent: 2
type: Transform
- uid: 3081
components:
- - pos: -8.5,-0.5
+ - pos: -4.5,-0.5
parent: 2
type: Transform
- uid: 3082
components:
- - pos: -8.5,0.5
+ - pos: -4.5,-1.5
parent: 2
type: Transform
- uid: 3083
components:
- - pos: -3.5,-42.5
+ - pos: -8.5,-0.5
parent: 2
type: Transform
- uid: 3084
components:
- - pos: -0.5,-41.5
+ - pos: -8.5,0.5
parent: 2
type: Transform
- uid: 3085
components:
- - pos: -4.5,-32.5
+ - pos: -3.5,-42.5
parent: 2
type: Transform
- uid: 3086
components:
- - pos: -6.5,-63.5
+ - pos: -0.5,-41.5
parent: 2
type: Transform
- uid: 3087
components:
- - pos: 22.5,-42.5
+ - pos: -4.5,-32.5
parent: 2
type: Transform
- uid: 3088
components:
- - pos: -1.5,-78.5
+ - pos: -6.5,-63.5
parent: 2
type: Transform
- uid: 3089
components:
- - pos: -4.5,-74.5
+ - pos: 22.5,-42.5
parent: 2
type: Transform
- uid: 3090
components:
- - pos: 13.5,1.5
+ - pos: -1.5,-78.5
parent: 2
type: Transform
- uid: 3091
components:
- - pos: 3.5,0.5
+ - pos: -4.5,-74.5
parent: 2
type: Transform
- uid: 3092
components:
- - pos: 11.5,2.5
+ - pos: 13.5,1.5
parent: 2
type: Transform
- uid: 3093
components:
- - pos: 5.5,6.5
+ - pos: 3.5,0.5
parent: 2
type: Transform
- uid: 3094
components:
- - pos: 20.5,-0.5
+ - pos: 11.5,2.5
parent: 2
type: Transform
- uid: 3095
components:
- - pos: 35.5,-37.5
+ - pos: 5.5,6.5
parent: 2
type: Transform
- uid: 3096
components:
- - pos: 9.5,-42.5
+ - pos: 20.5,-0.5
parent: 2
type: Transform
- uid: 3097
components:
- - pos: 37.5,13.5
+ - pos: 35.5,-37.5
parent: 2
type: Transform
- uid: 3098
components:
- - pos: -33.5,-55.5
+ - pos: 9.5,-42.5
parent: 2
type: Transform
- uid: 3099
components:
- - pos: -38.5,-68.5
+ - pos: 37.5,13.5
parent: 2
type: Transform
- uid: 3100
components:
- - pos: -8.5,-5.5
+ - pos: -33.5,-55.5
parent: 2
type: Transform
- uid: 3101
components:
- - pos: -9.5,-5.5
+ - pos: -38.5,-68.5
parent: 2
type: Transform
- uid: 3102
components:
- - pos: -9.5,-3.5
+ - pos: -8.5,-5.5
parent: 2
type: Transform
- uid: 3103
components:
- - pos: -4.5,-39.5
+ - pos: -9.5,-5.5
parent: 2
type: Transform
- uid: 3104
components:
- - pos: 0.5,-40.5
+ - pos: -9.5,-3.5
parent: 2
type: Transform
- uid: 3105
components:
- - pos: 21.5,-32.5
+ - pos: -4.5,-39.5
parent: 2
type: Transform
- uid: 3106
components:
- - pos: 0.5,-69.5
+ - pos: 0.5,-40.5
parent: 2
type: Transform
- uid: 3107
components:
- - pos: -19.5,-65.5
+ - pos: 21.5,-32.5
parent: 2
type: Transform
- uid: 3108
components:
- - pos: -19.5,-67.5
+ - pos: 0.5,-69.5
parent: 2
type: Transform
- uid: 3109
components:
- - pos: -19.5,-71.5
+ - pos: -19.5,-65.5
parent: 2
type: Transform
- uid: 3110
components:
- - pos: -18.5,-73.5
+ - pos: -19.5,-67.5
parent: 2
type: Transform
- uid: 3111
components:
- - pos: -18.5,-75.5
+ - pos: -19.5,-71.5
parent: 2
type: Transform
- uid: 3112
components:
- - pos: -16.5,-77.5
+ - pos: -18.5,-73.5
parent: 2
type: Transform
- uid: 3113
components:
- - pos: -24.5,-14.5
+ - pos: -18.5,-75.5
parent: 2
type: Transform
- uid: 3114
components:
- - pos: 23.5,-24.5
+ - pos: -16.5,-77.5
parent: 2
type: Transform
- uid: 3115
components:
- - pos: 45.5,-24.5
+ - pos: -24.5,-14.5
parent: 2
type: Transform
- uid: 3116
components:
- - pos: -47.5,36.5
+ - pos: 23.5,-24.5
parent: 2
type: Transform
- uid: 3117
components:
- - pos: 12.5,-15.5
+ - pos: 45.5,-24.5
parent: 2
type: Transform
- uid: 3118
components:
- - pos: -14.5,-57.5
+ - pos: -47.5,36.5
parent: 2
type: Transform
- uid: 3119
components:
- - pos: 0.5,-48.5
+ - pos: 12.5,-15.5
parent: 2
type: Transform
- uid: 3120
components:
- - pos: 13.5,-0.5
+ - pos: -14.5,-57.5
parent: 2
type: Transform
- uid: 3121
components:
- - pos: 20.5,2.5
+ - pos: 0.5,-48.5
parent: 2
type: Transform
- uid: 3122
components:
- - pos: 20.5,-1.5
+ - pos: 13.5,-0.5
parent: 2
type: Transform
- uid: 3123
components:
- - pos: 17.5,-13.5
+ - pos: 20.5,2.5
parent: 2
type: Transform
- uid: 3124
components:
- - pos: 62.5,-11.5
+ - pos: 20.5,-1.5
parent: 2
type: Transform
- uid: 3125
components:
- - pos: -8.5,-25.5
+ - pos: 17.5,-13.5
parent: 2
type: Transform
- uid: 3126
components:
- - pos: -36.5,-69.5
+ - pos: 62.5,-11.5
parent: 2
type: Transform
- uid: 3127
components:
- - pos: 19.5,-32.5
+ - pos: -8.5,-25.5
parent: 2
type: Transform
- uid: 3128
components:
- - pos: 1.5,11.5
+ - pos: -36.5,-69.5
parent: 2
type: Transform
- uid: 3129
components:
- - pos: 22.5,-17.5
+ - pos: 19.5,-32.5
parent: 2
type: Transform
- uid: 3130
components:
- - pos: 24.5,-17.5
+ - pos: 1.5,11.5
parent: 2
type: Transform
- uid: 3131
components:
- - pos: 25.5,-17.5
+ - pos: 22.5,-17.5
parent: 2
type: Transform
- uid: 3132
components:
- - pos: 26.5,-17.5
+ - pos: 24.5,-17.5
parent: 2
type: Transform
- uid: 3133
components:
- - pos: 17.5,-40.5
+ - pos: 25.5,-17.5
parent: 2
type: Transform
- uid: 3134
components:
- - pos: -4.5,-17.5
+ - pos: 26.5,-17.5
parent: 2
type: Transform
- uid: 3135
components:
- - pos: 20.5,-47.5
+ - pos: 17.5,-40.5
parent: 2
type: Transform
- uid: 3136
components:
- - pos: -3.5,-68.5
+ - pos: -4.5,-17.5
parent: 2
type: Transform
- uid: 3137
components:
- - pos: 6.5,-66.5
+ - pos: 20.5,-47.5
parent: 2
type: Transform
- uid: 3138
components:
- - pos: 6.5,-67.5
+ - pos: -3.5,-68.5
parent: 2
type: Transform
- uid: 3139
components:
- - pos: 5.5,-67.5
+ - pos: 6.5,-66.5
parent: 2
type: Transform
- uid: 3140
components:
- - pos: 4.5,-67.5
+ - pos: 6.5,-67.5
parent: 2
type: Transform
- uid: 3141
components:
- - pos: 6.5,-72.5
+ - pos: 5.5,-67.5
parent: 2
type: Transform
- uid: 3142
components:
- - pos: 3.5,-71.5
+ - pos: 4.5,-67.5
parent: 2
type: Transform
- uid: 3143
components:
- - pos: 6.5,-70.5
+ - pos: 6.5,-72.5
parent: 2
type: Transform
- uid: 3144
components:
- - pos: -0.5,-71.5
+ - pos: 3.5,-71.5
parent: 2
type: Transform
- uid: 3145
components:
- - pos: -3.5,0.5
+ - pos: 6.5,-70.5
parent: 2
type: Transform
- uid: 3146
components:
- - pos: -3.5,1.5
+ - pos: -0.5,-71.5
parent: 2
type: Transform
- uid: 3147
components:
- - pos: 15.5,-46.5
+ - pos: -3.5,0.5
parent: 2
type: Transform
- uid: 3148
components:
- - pos: 17.5,-46.5
+ - pos: -3.5,1.5
parent: 2
type: Transform
- uid: 3149
components:
- - pos: 19.5,-48.5
+ - pos: 15.5,-46.5
parent: 2
type: Transform
- uid: 3150
components:
- - pos: 25.5,-53.5
+ - pos: 17.5,-46.5
parent: 2
type: Transform
- uid: 3151
components:
- - pos: 18.5,-42.5
+ - pos: 19.5,-48.5
parent: 2
type: Transform
- uid: 3152
components:
- - pos: 16.5,-40.5
+ - pos: 25.5,-53.5
parent: 2
type: Transform
- uid: 3153
components:
- - pos: -4.5,-26.5
+ - pos: 18.5,-42.5
parent: 2
type: Transform
- uid: 3154
components:
- - pos: 33.5,-32.5
+ - pos: 16.5,-40.5
parent: 2
type: Transform
- uid: 3155
components:
- - pos: 34.5,-32.5
+ - pos: -4.5,-26.5
parent: 2
type: Transform
- uid: 3156
components:
- - pos: 15.5,-31.5
+ - pos: 33.5,-32.5
parent: 2
type: Transform
- uid: 3157
components:
- - pos: 15.5,-30.5
+ - pos: 34.5,-32.5
parent: 2
type: Transform
- uid: 3158
components:
- - pos: 15.5,-29.5
+ - pos: 15.5,-31.5
parent: 2
type: Transform
- uid: 3159
components:
- - pos: 15.5,-21.5
+ - pos: 15.5,-30.5
parent: 2
type: Transform
- uid: 3160
components:
- - pos: 15.5,-22.5
+ - pos: 15.5,-29.5
parent: 2
type: Transform
- uid: 3161
components:
- - pos: 15.5,-23.5
+ - pos: 15.5,-21.5
parent: 2
type: Transform
- uid: 3162
components:
- - pos: 15.5,-24.5
+ - pos: 15.5,-22.5
parent: 2
type: Transform
- uid: 3163
components:
- - pos: 15.5,-25.5
+ - pos: 15.5,-23.5
parent: 2
type: Transform
- uid: 3164
components:
- - pos: 15.5,-26.5
+ - pos: 15.5,-24.5
parent: 2
type: Transform
- uid: 3165
components:
- - pos: 34.5,-17.5
+ - pos: 15.5,-25.5
parent: 2
type: Transform
- uid: 3166
components:
- - pos: 35.5,-18.5
+ - pos: 15.5,-26.5
parent: 2
type: Transform
- uid: 3167
components:
- - pos: 18.5,-8.5
+ - pos: 34.5,-17.5
parent: 2
type: Transform
- uid: 3168
components:
- - pos: 16.5,-8.5
+ - pos: 35.5,-18.5
parent: 2
type: Transform
- uid: 3169
components:
- - pos: 14.5,-8.5
+ - pos: 18.5,-8.5
parent: 2
type: Transform
- uid: 3170
components:
- - pos: 14.5,-4.5
+ - pos: 16.5,-8.5
parent: 2
type: Transform
- uid: 3171
components:
- - pos: 14.5,-1.5
+ - pos: 14.5,-8.5
parent: 2
type: Transform
- uid: 3172
components:
- - pos: 15.5,-9.5
+ - pos: 14.5,-4.5
parent: 2
type: Transform
- uid: 3173
components:
- - pos: 15.5,-12.5
+ - pos: 14.5,-1.5
parent: 2
type: Transform
- uid: 3174
components:
- - pos: 39.5,-25.5
+ - pos: 15.5,-9.5
parent: 2
type: Transform
- uid: 3175
components:
- - pos: 39.5,-26.5
+ - pos: 15.5,-12.5
parent: 2
type: Transform
- uid: 3176
components:
- - pos: -25.5,-86.5
+ - pos: 39.5,-25.5
parent: 2
type: Transform
- uid: 3177
components:
- - pos: -25.5,-85.5
+ - pos: 39.5,-26.5
parent: 2
type: Transform
- uid: 3178
components:
- - pos: 5.5,-53.5
+ - pos: -25.5,-86.5
parent: 2
type: Transform
- uid: 3179
components:
- - pos: 6.5,-53.5
+ - pos: -25.5,-85.5
parent: 2
type: Transform
- uid: 3180
components:
- - pos: 7.5,-53.5
+ - pos: 5.5,-53.5
parent: 2
type: Transform
- uid: 3181
components:
- - pos: 8.5,-53.5
+ - pos: 6.5,-53.5
parent: 2
type: Transform
- uid: 3182
components:
- - pos: 8.5,-52.5
+ - pos: 7.5,-53.5
parent: 2
type: Transform
- uid: 3183
components:
- - pos: 9.5,-52.5
+ - pos: 8.5,-53.5
parent: 2
type: Transform
- uid: 3184
components:
- - pos: 10.5,-52.5
+ - pos: 8.5,-52.5
parent: 2
type: Transform
- uid: 3185
components:
- - pos: 10.5,-49.5
+ - pos: 9.5,-52.5
parent: 2
type: Transform
- uid: 3186
components:
- - pos: 15.5,-43.5
+ - pos: 10.5,-52.5
parent: 2
type: Transform
- uid: 3187
components:
- - pos: -16.5,-61.5
+ - pos: 10.5,-49.5
parent: 2
type: Transform
- uid: 3188
components:
- - pos: -19.5,-64.5
+ - pos: 15.5,-43.5
parent: 2
type: Transform
- uid: 3189
components:
- - pos: -19.5,-66.5
+ - pos: -16.5,-61.5
parent: 2
type: Transform
- uid: 3190
components:
- - pos: -14.5,-67.5
+ - pos: -19.5,-64.5
parent: 2
type: Transform
- uid: 3191
components:
- - pos: -28.5,-79.5
+ - pos: -19.5,-66.5
parent: 2
type: Transform
- uid: 3192
components:
- - pos: -28.5,-78.5
+ - pos: -14.5,-67.5
parent: 2
type: Transform
- uid: 3193
components:
- - pos: -27.5,-78.5
+ - pos: -28.5,-79.5
parent: 2
type: Transform
- uid: 3194
components:
- - pos: -26.5,-78.5
+ - pos: -28.5,-78.5
parent: 2
type: Transform
- uid: 3195
components:
- - pos: -26.5,-77.5
+ - pos: -27.5,-78.5
parent: 2
type: Transform
- uid: 3196
components:
- - pos: -25.5,-77.5
+ - pos: -26.5,-78.5
parent: 2
type: Transform
- uid: 3197
components:
- - pos: -22.5,-86.5
+ - pos: -26.5,-77.5
parent: 2
type: Transform
- uid: 3198
components:
- - pos: -20.5,-85.5
+ - pos: -25.5,-77.5
parent: 2
type: Transform
- uid: 3199
components:
- - pos: -21.5,-85.5
+ - pos: -22.5,-86.5
parent: 2
type: Transform
- uid: 3200
components:
- - pos: -24.5,-85.5
+ - pos: -20.5,-85.5
parent: 2
type: Transform
- uid: 3201
components:
- - pos: -23.5,-85.5
+ - pos: -21.5,-85.5
parent: 2
type: Transform
- uid: 3202
components:
- - pos: -22.5,-85.5
+ - pos: -24.5,-85.5
parent: 2
type: Transform
- uid: 3203
components:
- - pos: -22.5,-84.5
+ - pos: -23.5,-85.5
parent: 2
type: Transform
- uid: 3204
components:
- - pos: -22.5,-81.5
+ - pos: -22.5,-85.5
parent: 2
type: Transform
- uid: 3205
components:
- - pos: -22.5,-83.5
+ - pos: -22.5,-84.5
parent: 2
type: Transform
- uid: 3206
components:
- - pos: -22.5,-82.5
+ - pos: -22.5,-81.5
parent: 2
type: Transform
- uid: 3207
components:
- - pos: -22.5,-80.5
+ - pos: -22.5,-83.5
parent: 2
type: Transform
- uid: 3208
components:
- - pos: -23.5,-80.5
+ - pos: -22.5,-82.5
parent: 2
type: Transform
- uid: 3209
components:
- - pos: -23.5,-79.5
+ - pos: -22.5,-80.5
parent: 2
type: Transform
- uid: 3210
components:
- - pos: -23.5,-78.5
+ - pos: -23.5,-80.5
parent: 2
type: Transform
- uid: 3211
components:
- - pos: -23.5,-77.5
+ - pos: -23.5,-79.5
parent: 2
type: Transform
- uid: 3212
components:
- - pos: -24.5,-77.5
+ - pos: -23.5,-78.5
parent: 2
type: Transform
- uid: 3213
components:
- - pos: -24.5,-76.5
+ - pos: -23.5,-77.5
parent: 2
type: Transform
- uid: 3214
components:
- - pos: -24.5,-75.5
+ - pos: -24.5,-77.5
parent: 2
type: Transform
- uid: 3215
components:
- - pos: -24.5,-74.5
+ - pos: -24.5,-76.5
parent: 2
type: Transform
- uid: 3216
components:
- - pos: -24.5,-73.5
+ - pos: -24.5,-75.5
parent: 2
type: Transform
- uid: 3217
components:
- - pos: -24.5,-72.5
+ - pos: -24.5,-74.5
parent: 2
type: Transform
- uid: 3218
components:
- - pos: -23.5,-72.5
+ - pos: -24.5,-73.5
parent: 2
type: Transform
- uid: 3219
components:
- - pos: -22.5,-72.5
+ - pos: -24.5,-72.5
parent: 2
type: Transform
- uid: 3220
components:
- - pos: -21.5,-72.5
+ - pos: -23.5,-72.5
parent: 2
type: Transform
- uid: 3221
components:
- - pos: -21.5,-71.5
+ - pos: -22.5,-72.5
parent: 2
type: Transform
- uid: 3222
components:
- - pos: -20.5,-79.5
+ - pos: -21.5,-72.5
parent: 2
type: Transform
- uid: 3223
components:
- - pos: -19.5,-79.5
+ - pos: -21.5,-71.5
parent: 2
type: Transform
- uid: 3224
components:
- - pos: -19.5,-78.5
+ - pos: -20.5,-79.5
parent: 2
type: Transform
- uid: 3225
components:
- - pos: 33.5,3.5
+ - pos: -19.5,-79.5
parent: 2
type: Transform
- uid: 3226
components:
- - pos: 33.5,4.5
+ - pos: -19.5,-78.5
parent: 2
type: Transform
- uid: 3227
components:
- - pos: 33.5,7.5
+ - pos: 33.5,3.5
parent: 2
type: Transform
- uid: 3228
components:
- - pos: 33.5,6.5
+ - pos: 33.5,4.5
parent: 2
type: Transform
- uid: 3229
components:
- - pos: 33.5,5.5
+ - pos: 33.5,7.5
parent: 2
type: Transform
- uid: 3230
components:
- - pos: 26.5,7.5
+ - pos: 33.5,6.5
parent: 2
type: Transform
- uid: 3231
components:
- - pos: 33.5,0.5
+ - pos: 33.5,5.5
parent: 2
type: Transform
- uid: 3232
components:
- - pos: 33.5,-0.5
+ - pos: 26.5,7.5
parent: 2
type: Transform
- uid: 3233
components:
- - pos: 33.5,-1.5
+ - pos: 33.5,0.5
parent: 2
type: Transform
- uid: 3234
components:
- - pos: 33.5,-2.5
+ - pos: 33.5,-0.5
parent: 2
type: Transform
- uid: 3235
components:
- - pos: 33.5,-3.5
+ - pos: 33.5,-1.5
parent: 2
type: Transform
- uid: 3236
components:
- - pos: 33.5,-4.5
+ - pos: 33.5,-2.5
parent: 2
type: Transform
- uid: 3237
components:
- - pos: 33.5,-5.5
+ - pos: 33.5,-3.5
parent: 2
type: Transform
- uid: 3238
components:
- - pos: 27.5,7.5
+ - pos: 33.5,-4.5
parent: 2
type: Transform
- uid: 3239
components:
- - pos: 28.5,7.5
+ - pos: 33.5,-5.5
parent: 2
type: Transform
- uid: 3240
components:
- - pos: 29.5,7.5
+ - pos: 27.5,7.5
parent: 2
type: Transform
- uid: 3241
components:
- - pos: 30.5,7.5
+ - pos: 28.5,7.5
parent: 2
type: Transform
- uid: 3242
components:
- - pos: 31.5,7.5
+ - pos: 29.5,7.5
parent: 2
type: Transform
- uid: 3243
components:
- - pos: 32.5,7.5
+ - pos: 30.5,7.5
parent: 2
type: Transform
- uid: 3244
components:
- - pos: 26.5,8.5
+ - pos: 31.5,7.5
parent: 2
type: Transform
- uid: 3245
components:
- - pos: 26.5,9.5
+ - pos: 32.5,7.5
parent: 2
type: Transform
- uid: 3246
components:
- - pos: 26.5,10.5
+ - pos: 26.5,8.5
parent: 2
type: Transform
- uid: 3247
components:
- - pos: 26.5,11.5
+ - pos: 26.5,9.5
parent: 2
type: Transform
- uid: 3248
components:
- - pos: 26.5,12.5
+ - pos: 26.5,10.5
parent: 2
type: Transform
- uid: 3249
components:
- - pos: 26.5,13.5
+ - pos: 26.5,11.5
parent: 2
type: Transform
- uid: 3250
components:
- - pos: 25.5,7.5
+ - pos: 26.5,12.5
parent: 2
type: Transform
- uid: 3251
components:
- - pos: 24.5,7.5
+ - pos: 26.5,13.5
parent: 2
type: Transform
- uid: 3252
components:
- - pos: 23.5,7.5
+ - pos: 25.5,7.5
parent: 2
type: Transform
- uid: 3253
components:
- - pos: 22.5,7.5
+ - pos: 24.5,7.5
parent: 2
type: Transform
- uid: 3254
components:
- - pos: 21.5,7.5
+ - pos: 23.5,7.5
parent: 2
type: Transform
- uid: 3255
components:
- - pos: 34.5,0.5
+ - pos: 22.5,7.5
parent: 2
type: Transform
- uid: 3256
components:
- - pos: 37.5,-25.5
+ - pos: 21.5,7.5
parent: 2
type: Transform
- uid: 3257
components:
- - pos: 36.5,-25.5
+ - pos: 34.5,0.5
parent: 2
type: Transform
- uid: 3258
components:
- - pos: 36.5,-24.5
+ - pos: 37.5,-25.5
parent: 2
type: Transform
- uid: 3259
components:
- - pos: 36.5,-23.5
+ - pos: 36.5,-25.5
parent: 2
type: Transform
- uid: 3260
components:
- - pos: 36.5,-22.5
+ - pos: 36.5,-24.5
parent: 2
type: Transform
- uid: 3261
components:
- - pos: 35.5,-22.5
+ - pos: 36.5,-23.5
parent: 2
type: Transform
- uid: 3262
components:
- - pos: 35.5,-21.5
+ - pos: 36.5,-22.5
parent: 2
type: Transform
- uid: 3263
components:
- - pos: 35.5,-25.5
+ - pos: 35.5,-22.5
parent: 2
type: Transform
- uid: 3264
components:
- - pos: 34.5,-25.5
+ - pos: 35.5,-21.5
parent: 2
type: Transform
- uid: 3265
components:
- - pos: 35.5,-26.5
+ - pos: 35.5,-25.5
parent: 2
type: Transform
- uid: 3266
components:
- - pos: 35.5,-27.5
+ - pos: 34.5,-25.5
parent: 2
type: Transform
- uid: 3267
components:
- - pos: 35.5,-28.5
+ - pos: 35.5,-26.5
parent: 2
type: Transform
- uid: 3268
components:
- - pos: 35.5,-29.5
+ - pos: 35.5,-27.5
parent: 2
type: Transform
- uid: 3269
components:
- - pos: 35.5,-30.5
+ - pos: 35.5,-28.5
parent: 2
type: Transform
- uid: 3270
components:
- - pos: 35.5,-31.5
+ - pos: 35.5,-29.5
parent: 2
type: Transform
- uid: 3271
components:
- - pos: 35.5,-32.5
+ - pos: 35.5,-30.5
parent: 2
type: Transform
- uid: 3272
components:
- - pos: 35.5,-33.5
+ - pos: 35.5,-31.5
parent: 2
type: Transform
- uid: 3273
components:
- - pos: 35.5,-34.5
+ - pos: 35.5,-32.5
parent: 2
type: Transform
- uid: 3274
components:
- - pos: 35.5,-35.5
+ - pos: 35.5,-33.5
parent: 2
type: Transform
- uid: 3275
components:
- - pos: 35.5,-36.5
+ - pos: 35.5,-34.5
parent: 2
type: Transform
- uid: 3276
components:
- - pos: 36.5,-30.5
+ - pos: 35.5,-35.5
parent: 2
type: Transform
- uid: 3277
components:
- - pos: 37.5,-30.5
+ - pos: 35.5,-36.5
parent: 2
type: Transform
- uid: 3278
components:
- - pos: 38.5,-30.5
+ - pos: 36.5,-30.5
parent: 2
type: Transform
- uid: 3279
components:
- - pos: 39.5,-30.5
+ - pos: 37.5,-30.5
parent: 2
type: Transform
- uid: 3280
components:
- - pos: 31.5,-4.5
+ - pos: 38.5,-30.5
parent: 2
type: Transform
- uid: 3281
components:
- - pos: -4.5,-10.5
+ - pos: 39.5,-30.5
parent: 2
type: Transform
- uid: 3282
components:
- - pos: -4.5,-9.5
+ - pos: 31.5,-4.5
parent: 2
type: Transform
- uid: 3283
components:
- - pos: -4.5,-8.5
+ - pos: -4.5,-10.5
parent: 2
type: Transform
- uid: 3284
components:
- - pos: -4.5,-7.5
+ - pos: -4.5,-9.5
parent: 2
type: Transform
- uid: 3285
components:
- - pos: -4.5,-6.5
+ - pos: -4.5,-8.5
parent: 2
type: Transform
- uid: 3286
components:
- - pos: -4.5,-5.5
+ - pos: -4.5,-7.5
parent: 2
type: Transform
- uid: 3287
components:
- - pos: 63.5,-5.5
+ - pos: -4.5,-6.5
parent: 2
type: Transform
- uid: 3288
components:
- - pos: 62.5,-5.5
+ - pos: -4.5,-5.5
parent: 2
type: Transform
- uid: 3289
components:
- - pos: 21.5,15.5
+ - pos: 63.5,-5.5
parent: 2
type: Transform
- uid: 3290
components:
- - pos: 21.5,14.5
+ - pos: 62.5,-5.5
parent: 2
type: Transform
- uid: 3291
components:
- - pos: 21.5,13.5
+ - pos: 21.5,15.5
parent: 2
type: Transform
- uid: 3292
components:
- - pos: 21.5,12.5
+ - pos: 21.5,14.5
parent: 2
type: Transform
- uid: 3293
components:
- - pos: 21.5,11.5
+ - pos: 21.5,13.5
parent: 2
type: Transform
- uid: 3294
components:
- - pos: 21.5,10.5
+ - pos: 21.5,12.5
parent: 2
type: Transform
- uid: 3295
components:
- - pos: 20.5,14.5
+ - pos: 21.5,11.5
parent: 2
type: Transform
- uid: 3296
components:
- - pos: 19.5,14.5
+ - pos: 21.5,10.5
parent: 2
type: Transform
- uid: 3297
components:
- - pos: 18.5,14.5
+ - pos: 20.5,14.5
parent: 2
type: Transform
- uid: 3298
components:
- - pos: 17.5,14.5
+ - pos: 19.5,14.5
parent: 2
type: Transform
- uid: 3299
components:
- - pos: 17.5,13.5
+ - pos: 18.5,14.5
parent: 2
type: Transform
- uid: 3300
components:
- - pos: 17.5,12.5
+ - pos: 17.5,14.5
parent: 2
type: Transform
- uid: 3301
components:
- - pos: 17.5,11.5
+ - pos: 17.5,13.5
parent: 2
type: Transform
- uid: 3302
components:
- - pos: 16.5,11.5
+ - pos: 17.5,12.5
parent: 2
type: Transform
- uid: 3303
components:
- - pos: 15.5,11.5
+ - pos: 17.5,11.5
parent: 2
type: Transform
- uid: 3304
components:
- - pos: 14.5,11.5
+ - pos: 16.5,11.5
parent: 2
type: Transform
- uid: 3305
components:
- - pos: 13.5,11.5
+ - pos: 15.5,11.5
parent: 2
type: Transform
- uid: 3306
components:
- - pos: 13.5,12.5
+ - pos: 14.5,11.5
parent: 2
type: Transform
- uid: 3307
components:
- - pos: 13.5,13.5
+ - pos: 13.5,11.5
parent: 2
type: Transform
- uid: 3308
components:
- - pos: 12.5,13.5
+ - pos: 13.5,12.5
parent: 2
type: Transform
- uid: 3309
components:
- - pos: 11.5,13.5
+ - pos: 13.5,13.5
parent: 2
type: Transform
- uid: 3310
components:
- - pos: 11.5,12.5
+ - pos: 12.5,13.5
parent: 2
type: Transform
- uid: 3311
components:
- - pos: 11.5,11.5
+ - pos: 11.5,13.5
parent: 2
type: Transform
- uid: 3312
components:
- - pos: 11.5,10.5
+ - pos: 11.5,12.5
parent: 2
type: Transform
- uid: 3313
components:
- - pos: 11.5,9.5
+ - pos: 11.5,11.5
parent: 2
type: Transform
- uid: 3314
components:
- - pos: 11.5,8.5
+ - pos: 11.5,10.5
parent: 2
type: Transform
- uid: 3315
components:
- - pos: 11.5,7.5
+ - pos: 11.5,9.5
parent: 2
type: Transform
- uid: 3316
components:
- - pos: 11.5,6.5
+ - pos: 11.5,8.5
parent: 2
type: Transform
- uid: 3317
components:
- - pos: 12.5,8.5
+ - pos: 11.5,7.5
parent: 2
type: Transform
- uid: 3318
components:
- - pos: 13.5,8.5
+ - pos: 11.5,6.5
parent: 2
type: Transform
- uid: 3319
components:
- - pos: 13.5,7.5
+ - pos: 12.5,8.5
parent: 2
type: Transform
- uid: 3320
components:
- - pos: 14.5,7.5
+ - pos: 13.5,8.5
parent: 2
type: Transform
- uid: 3321
components:
- - pos: 15.5,7.5
+ - pos: 13.5,7.5
parent: 2
type: Transform
- uid: 3322
components:
- - pos: 16.5,7.5
+ - pos: 14.5,7.5
parent: 2
type: Transform
- uid: 3323
components:
- - pos: 17.5,7.5
+ - pos: 15.5,7.5
parent: 2
type: Transform
- uid: 3324
components:
- - pos: 17.5,6.5
+ - pos: 16.5,7.5
parent: 2
type: Transform
- uid: 3325
components:
- - pos: 17.5,5.5
+ - pos: 17.5,7.5
parent: 2
type: Transform
- uid: 3326
components:
- - pos: 17.5,4.5
+ - pos: 17.5,6.5
parent: 2
type: Transform
- uid: 3327
components:
- - pos: 17.5,3.5
+ - pos: 17.5,5.5
parent: 2
type: Transform
- uid: 3328
components:
- - pos: 17.5,2.5
+ - pos: 17.5,4.5
parent: 2
type: Transform
- uid: 3329
components:
- - pos: 17.5,1.5
+ - pos: 17.5,3.5
parent: 2
type: Transform
- uid: 3330
components:
- - pos: 17.5,0.5
+ - pos: 17.5,2.5
parent: 2
type: Transform
- uid: 3331
components:
- - pos: 17.5,-0.5
+ - pos: 17.5,1.5
parent: 2
type: Transform
- uid: 3332
components:
- - pos: 17.5,-1.5
+ - pos: 17.5,0.5
parent: 2
type: Transform
- uid: 3333
components:
- - pos: 17.5,-2.5
+ - pos: 17.5,-0.5
parent: 2
type: Transform
- uid: 3334
components:
- - pos: 17.5,-3.5
+ - pos: 17.5,-1.5
parent: 2
type: Transform
- uid: 3335
components:
- - pos: 17.5,-4.5
+ - pos: 17.5,-2.5
parent: 2
type: Transform
- uid: 3336
components:
- - pos: 17.5,-5.5
+ - pos: 17.5,-3.5
parent: 2
type: Transform
- uid: 3337
components:
- - pos: 18.5,4.5
+ - pos: 17.5,-4.5
parent: 2
type: Transform
- uid: 3338
components:
- - pos: 16.5,-2.5
+ - pos: 17.5,-5.5
parent: 2
type: Transform
- uid: 3339
components:
- - pos: 10.5,8.5
+ - pos: 18.5,4.5
parent: 2
type: Transform
- uid: 3340
components:
- - pos: 24.5,24.5
+ - pos: 16.5,-2.5
parent: 2
type: Transform
- uid: 3341
components:
- - pos: 24.5,23.5
+ - pos: 10.5,8.5
parent: 2
type: Transform
- uid: 3342
components:
- - pos: 24.5,22.5
+ - pos: 24.5,24.5
parent: 2
type: Transform
- uid: 3343
components:
- - pos: 23.5,22.5
+ - pos: 24.5,23.5
parent: 2
type: Transform
- uid: 3344
components:
- - pos: 22.5,22.5
+ - pos: 24.5,22.5
parent: 2
type: Transform
- uid: 3345
components:
- - pos: 22.5,21.5
+ - pos: 23.5,22.5
parent: 2
type: Transform
- uid: 3346
components:
- - pos: 22.5,20.5
+ - pos: 22.5,22.5
parent: 2
type: Transform
- uid: 3347
components:
- - pos: 22.5,19.5
+ - pos: 22.5,21.5
parent: 2
type: Transform
- uid: 3348
components:
- - pos: 22.5,18.5
+ - pos: 22.5,20.5
parent: 2
type: Transform
- uid: 3349
components:
- - pos: 22.5,17.5
+ - pos: 22.5,19.5
parent: 2
type: Transform
- uid: 3350
components:
- - pos: 21.5,17.5
+ - pos: 22.5,18.5
parent: 2
type: Transform
- uid: 3351
components:
- - pos: 20.5,17.5
+ - pos: 22.5,17.5
parent: 2
type: Transform
- uid: 3352
components:
- - pos: 19.5,17.5
+ - pos: 21.5,17.5
parent: 2
type: Transform
- uid: 3353
components:
- - pos: 18.5,17.5
+ - pos: 20.5,17.5
parent: 2
type: Transform
- uid: 3354
components:
- - pos: 17.5,17.5
+ - pos: 19.5,17.5
parent: 2
type: Transform
- uid: 3355
components:
- - pos: 16.5,17.5
+ - pos: 18.5,17.5
parent: 2
type: Transform
- uid: 3356
components:
- - pos: 15.5,17.5
+ - pos: 17.5,17.5
parent: 2
type: Transform
- uid: 3357
components:
- - pos: 14.5,17.5
+ - pos: 16.5,17.5
parent: 2
type: Transform
- uid: 3358
components:
- - pos: 13.5,17.5
+ - pos: 15.5,17.5
parent: 2
type: Transform
- uid: 3359
components:
- - pos: 12.5,17.5
+ - pos: 14.5,17.5
parent: 2
type: Transform
- uid: 3360
components:
- - pos: 11.5,17.5
+ - pos: 13.5,17.5
parent: 2
type: Transform
- uid: 3361
components:
- - pos: 10.5,17.5
+ - pos: 12.5,17.5
parent: 2
type: Transform
- uid: 3362
components:
- - pos: 9.5,17.5
+ - pos: 11.5,17.5
parent: 2
type: Transform
- uid: 3363
components:
- - pos: 8.5,17.5
+ - pos: 10.5,17.5
parent: 2
type: Transform
- uid: 3364
components:
- - pos: 7.5,17.5
+ - pos: 9.5,17.5
parent: 2
type: Transform
- uid: 3365
components:
- - pos: 11.5,18.5
+ - pos: 8.5,17.5
parent: 2
type: Transform
- uid: 3366
components:
- - pos: 11.5,19.5
+ - pos: 7.5,17.5
parent: 2
type: Transform
- uid: 3367
components:
- - pos: 11.5,20.5
+ - pos: 11.5,18.5
parent: 2
type: Transform
- uid: 3368
components:
- - pos: 11.5,21.5
+ - pos: 11.5,19.5
parent: 2
type: Transform
- uid: 3369
components:
- - pos: 16.5,18.5
+ - pos: 11.5,20.5
parent: 2
type: Transform
- uid: 3370
components:
- - pos: 16.5,19.5
+ - pos: 11.5,21.5
parent: 2
type: Transform
- uid: 3371
components:
- - pos: 16.5,20.5
+ - pos: 16.5,18.5
parent: 2
type: Transform
- uid: 3372
components:
- - pos: 16.5,21.5
+ - pos: 16.5,19.5
parent: 2
type: Transform
- uid: 3373
components:
- - pos: 17.5,21.5
+ - pos: 16.5,20.5
parent: 2
type: Transform
- uid: 3374
components:
- - pos: 15.5,21.5
+ - pos: 16.5,21.5
parent: 2
type: Transform
- uid: 3375
components:
- - pos: 6.5,17.5
+ - pos: 17.5,21.5
parent: 2
type: Transform
- uid: 3376
components:
- - pos: 6.5,18.5
+ - pos: 15.5,21.5
parent: 2
type: Transform
- uid: 3377
components:
- - pos: 6.5,19.5
+ - pos: 6.5,17.5
parent: 2
type: Transform
- uid: 3378
components:
- - pos: 6.5,20.5
+ - pos: 6.5,18.5
parent: 2
type: Transform
- uid: 3379
components:
- - pos: 6.5,21.5
+ - pos: 6.5,19.5
parent: 2
type: Transform
- uid: 3380
components:
- - pos: 7.5,21.5
+ - pos: 6.5,20.5
parent: 2
type: Transform
- uid: 3381
components:
- - pos: 5.5,21.5
+ - pos: 6.5,21.5
parent: 2
type: Transform
- uid: 3382
components:
- - pos: 5.5,17.5
+ - pos: 7.5,21.5
parent: 2
type: Transform
- uid: 3383
components:
- - pos: 4.5,17.5
+ - pos: 5.5,21.5
parent: 2
type: Transform
- uid: 3384
components:
- - pos: 2.5,17.5
+ - pos: 5.5,17.5
parent: 2
type: Transform
- uid: 3385
components:
- - pos: 3.5,17.5
+ - pos: 4.5,17.5
parent: 2
type: Transform
- uid: 3386
components:
- - pos: 1.5,17.5
+ - pos: 2.5,17.5
parent: 2
type: Transform
- uid: 3387
components:
- - pos: 0.5,17.5
+ - pos: 3.5,17.5
parent: 2
type: Transform
- uid: 3388
components:
- - pos: 0.5,18.5
+ - pos: 1.5,17.5
parent: 2
type: Transform
- uid: 3389
components:
- - pos: -0.5,18.5
+ - pos: 0.5,17.5
parent: 2
type: Transform
- uid: 3390
components:
- - pos: -0.5,19.5
+ - pos: 0.5,18.5
parent: 2
type: Transform
- uid: 3391
components:
- - pos: -0.5,20.5
+ - pos: -0.5,18.5
parent: 2
type: Transform
- uid: 3392
components:
- - pos: 0.5,20.5
+ - pos: -0.5,19.5
parent: 2
type: Transform
- uid: 3393
components:
- - pos: 1.5,20.5
+ - pos: -0.5,20.5
parent: 2
type: Transform
- uid: 3394
components:
- - pos: 24.5,21.5
+ - pos: 0.5,20.5
parent: 2
type: Transform
- uid: 3395
components:
- - pos: 25.5,21.5
+ - pos: 1.5,20.5
parent: 2
type: Transform
- uid: 3396
components:
- - pos: 26.5,21.5
+ - pos: 24.5,21.5
parent: 2
type: Transform
- uid: 3397
components:
- - pos: 27.5,21.5
+ - pos: 25.5,21.5
parent: 2
type: Transform
- uid: 3398
components:
- - pos: 28.5,21.5
+ - pos: 26.5,21.5
parent: 2
type: Transform
- uid: 3399
components:
- - pos: 23.5,17.5
+ - pos: 27.5,21.5
parent: 2
type: Transform
- uid: 3400
components:
- - pos: 24.5,17.5
+ - pos: 28.5,21.5
parent: 2
type: Transform
- uid: 3401
components:
- - pos: 25.5,17.5
+ - pos: 23.5,17.5
parent: 2
type: Transform
- uid: 3402
components:
- - pos: 25.5,16.5
+ - pos: 24.5,17.5
parent: 2
type: Transform
- uid: 3403
components:
- - pos: 26.5,17.5
+ - pos: 25.5,17.5
parent: 2
type: Transform
- uid: 3404
components:
- - pos: 27.5,17.5
+ - pos: 25.5,16.5
parent: 2
type: Transform
- uid: 3405
components:
- - pos: 28.5,17.5
+ - pos: 26.5,17.5
parent: 2
type: Transform
- uid: 3406
components:
- - pos: 29.5,17.5
+ - pos: 27.5,17.5
parent: 2
type: Transform
- uid: 3407
components:
- - pos: 40.5,7.5
+ - pos: 28.5,17.5
parent: 2
type: Transform
- uid: 3408
components:
- - pos: 29.5,15.5
+ - pos: 29.5,17.5
parent: 2
type: Transform
- uid: 3409
components:
- - pos: 29.5,21.5
+ - pos: 40.5,7.5
parent: 2
type: Transform
- uid: 3410
components:
- - pos: 30.5,21.5
+ - pos: 29.5,15.5
parent: 2
type: Transform
- uid: 3411
components:
- - pos: 31.5,21.5
+ - pos: 29.5,21.5
parent: 2
type: Transform
- uid: 3412
components:
- - pos: 32.5,21.5
+ - pos: 30.5,21.5
parent: 2
type: Transform
- uid: 3413
components:
- - pos: 32.5,22.5
+ - pos: 31.5,21.5
parent: 2
type: Transform
- uid: 3414
components:
- - pos: 32.5,23.5
+ - pos: 32.5,21.5
parent: 2
type: Transform
- uid: 3415
components:
- - pos: 29.5,22.5
+ - pos: 32.5,22.5
parent: 2
type: Transform
- uid: 3416
components:
- - pos: 29.5,23.5
+ - pos: 32.5,23.5
parent: 2
type: Transform
- uid: 3417
components:
- - pos: 29.5,24.5
+ - pos: 29.5,22.5
parent: 2
type: Transform
- uid: 3418
components:
- - pos: 29.5,25.5
+ - pos: 29.5,23.5
parent: 2
type: Transform
- uid: 3419
components:
- - pos: 29.5,26.5
+ - pos: 29.5,24.5
parent: 2
type: Transform
- uid: 3420
components:
- - pos: 29.5,27.5
+ - pos: 29.5,25.5
parent: 2
type: Transform
- uid: 3421
components:
- - pos: 29.5,28.5
+ - pos: 29.5,26.5
parent: 2
type: Transform
- uid: 3422
components:
- - pos: 29.5,29.5
+ - pos: 29.5,27.5
parent: 2
type: Transform
- uid: 3423
components:
- - pos: 29.5,30.5
+ - pos: 29.5,28.5
parent: 2
type: Transform
- uid: 3424
components:
- - pos: 29.5,31.5
+ - pos: 29.5,29.5
parent: 2
type: Transform
- uid: 3425
components:
- - pos: 30.5,31.5
+ - pos: 29.5,30.5
parent: 2
type: Transform
- uid: 3426
components:
- - pos: 32.5,31.5
+ - pos: 29.5,31.5
parent: 2
type: Transform
- uid: 3427
components:
- - pos: 31.5,31.5
+ - pos: 30.5,31.5
parent: 2
type: Transform
- uid: 3428
components:
- - pos: 28.5,31.5
+ - pos: 32.5,31.5
parent: 2
type: Transform
- uid: 3429
components:
- - pos: 27.5,31.5
+ - pos: 31.5,31.5
parent: 2
type: Transform
- uid: 3430
components:
- - pos: 27.5,30.5
+ - pos: 28.5,31.5
parent: 2
type: Transform
- uid: 3431
components:
- - pos: 27.5,29.5
+ - pos: 27.5,31.5
parent: 2
type: Transform
- uid: 3432
components:
- - pos: 32.5,30.5
+ - pos: 27.5,30.5
parent: 2
type: Transform
- uid: 3433
components:
- - pos: 32.5,29.5
+ - pos: 27.5,29.5
parent: 2
type: Transform
- uid: 3434
components:
- - pos: 27.5,28.5
+ - pos: 32.5,30.5
parent: 2
type: Transform
- uid: 3435
components:
- - pos: 32.5,28.5
+ - pos: 32.5,29.5
parent: 2
type: Transform
- uid: 3436
components:
- - pos: -8.5,-41.5
+ - pos: 27.5,28.5
parent: 2
type: Transform
- uid: 3437
components:
- - pos: -8.5,-40.5
+ - pos: 32.5,28.5
parent: 2
type: Transform
- uid: 3438
components:
- - pos: -8.5,-39.5
+ - pos: -8.5,-41.5
parent: 2
type: Transform
- uid: 3439
components:
- - pos: -8.5,-38.5
+ - pos: -8.5,-40.5
parent: 2
type: Transform
- uid: 3440
components:
- - pos: -8.5,-37.5
+ - pos: -8.5,-39.5
parent: 2
type: Transform
- uid: 3441
components:
- - pos: -8.5,-36.5
+ - pos: -8.5,-38.5
parent: 2
type: Transform
- uid: 3442
components:
- - pos: -9.5,-36.5
+ - pos: -8.5,-37.5
parent: 2
type: Transform
- uid: 3443
components:
- - pos: -10.5,-36.5
+ - pos: -8.5,-36.5
parent: 2
type: Transform
- uid: 3444
components:
- - pos: -11.5,-36.5
+ - pos: -9.5,-36.5
parent: 2
type: Transform
- uid: 3445
components:
- - pos: -12.5,-36.5
+ - pos: -10.5,-36.5
parent: 2
type: Transform
- uid: 3446
components:
- - pos: -12.5,-37.5
+ - pos: -11.5,-36.5
parent: 2
type: Transform
- uid: 3447
components:
- - pos: -12.5,-38.5
+ - pos: -12.5,-36.5
parent: 2
type: Transform
- uid: 3448
components:
- - pos: -13.5,-38.5
+ - pos: -12.5,-37.5
parent: 2
type: Transform
- uid: 3449
components:
- - pos: -14.5,-38.5
+ - pos: -12.5,-38.5
parent: 2
type: Transform
- uid: 3450
components:
- - pos: -15.5,-38.5
+ - pos: -13.5,-38.5
parent: 2
type: Transform
- uid: 3451
components:
- - pos: -11.5,-35.5
+ - pos: -14.5,-38.5
parent: 2
type: Transform
- uid: 3452
components:
- - pos: -11.5,-34.5
+ - pos: -15.5,-38.5
parent: 2
type: Transform
- uid: 3453
components:
- - pos: -11.5,-33.5
+ - pos: -11.5,-35.5
parent: 2
type: Transform
- uid: 3454
components:
- - pos: -10.5,-33.5
+ - pos: -11.5,-34.5
parent: 2
type: Transform
- uid: 3455
components:
- - pos: -9.5,-33.5
+ - pos: -11.5,-33.5
parent: 2
type: Transform
- uid: 3456
components:
- - pos: -12.5,-39.5
+ - pos: -10.5,-33.5
parent: 2
type: Transform
- uid: 3457
components:
- - pos: -11.5,-39.5
+ - pos: -9.5,-33.5
parent: 2
type: Transform
- uid: 3458
components:
- - pos: 21.5,-47.5
+ - pos: -12.5,-39.5
parent: 2
type: Transform
- uid: 3459
components:
- - pos: -55.5,-27.5
+ - pos: -11.5,-39.5
parent: 2
type: Transform
- uid: 3460
components:
- - pos: -54.5,-27.5
+ - pos: 21.5,-47.5
parent: 2
type: Transform
- uid: 3461
components:
- - pos: -53.5,-27.5
+ - pos: -55.5,-27.5
parent: 2
type: Transform
- uid: 3462
components:
- - pos: 17.5,-49.5
+ - pos: -54.5,-27.5
parent: 2
type: Transform
- uid: 3463
components:
- - pos: 18.5,-51.5
+ - pos: -53.5,-27.5
parent: 2
type: Transform
- uid: 3464
components:
- - pos: 21.5,-48.5
+ - pos: 17.5,-49.5
parent: 2
type: Transform
- uid: 3465
components:
- - pos: 21.5,-49.5
+ - pos: 18.5,-51.5
parent: 2
type: Transform
- uid: 3466
components:
- - pos: 20.5,-50.5
+ - pos: 21.5,-48.5
parent: 2
type: Transform
- uid: 3467
components:
- - pos: 27.5,3.5
+ - pos: 21.5,-49.5
parent: 2
type: Transform
- uid: 3468
components:
- - pos: 18.5,-50.5
+ - pos: 20.5,-50.5
parent: 2
type: Transform
- uid: 3469
components:
- - pos: 17.5,-50.5
+ - pos: 27.5,3.5
parent: 2
type: Transform
- uid: 3470
components:
- - pos: -13.5,42.5
+ - pos: 18.5,-50.5
parent: 2
type: Transform
- uid: 3471
components:
- - pos: -7.5,-8.5
+ - pos: 17.5,-50.5
parent: 2
type: Transform
- uid: 3472
components:
- - pos: 34.5,18.5
+ - pos: -13.5,42.5
parent: 2
type: Transform
- uid: 3473
components:
- - pos: 35.5,18.5
+ - pos: -7.5,-8.5
parent: 2
type: Transform
- uid: 3474
components:
- - pos: 46.5,5.5
+ - pos: 34.5,18.5
parent: 2
type: Transform
- uid: 3475
components:
- - pos: 44.5,5.5
+ - pos: 35.5,18.5
parent: 2
type: Transform
- uid: 3476
components:
- - pos: 45.5,5.5
+ - pos: 46.5,5.5
parent: 2
type: Transform
- uid: 3477
components:
- - pos: 59.5,-5.5
+ - pos: 44.5,5.5
parent: 2
type: Transform
- uid: 3478
components:
- - pos: 61.5,-5.5
+ - pos: 45.5,5.5
parent: 2
type: Transform
- uid: 3479
components:
- - pos: 58.5,11.5
+ - pos: 59.5,-5.5
parent: 2
type: Transform
- uid: 3480
components:
- - pos: 58.5,12.5
+ - pos: 61.5,-5.5
parent: 2
type: Transform
- uid: 3481
components:
- - pos: 58.5,13.5
+ - pos: 58.5,11.5
parent: 2
type: Transform
- uid: 3482
components:
- - pos: 58.5,14.5
+ - pos: 58.5,12.5
parent: 2
type: Transform
- uid: 3483
components:
- - pos: 58.5,15.5
+ - pos: 58.5,13.5
parent: 2
type: Transform
- uid: 3484
components:
- - pos: 58.5,16.5
+ - pos: 58.5,14.5
parent: 2
type: Transform
- uid: 3485
components:
- - pos: 57.5,16.5
+ - pos: 58.5,15.5
parent: 2
type: Transform
- uid: 3486
components:
- - pos: 57.5,17.5
+ - pos: 58.5,16.5
parent: 2
type: Transform
- uid: 3487
components:
- - pos: 57.5,18.5
+ - pos: 57.5,16.5
parent: 2
type: Transform
- uid: 3488
components:
- - pos: 56.5,18.5
+ - pos: 57.5,17.5
parent: 2
type: Transform
- uid: 3489
components:
- - pos: 56.5,19.5
+ - pos: 57.5,18.5
parent: 2
type: Transform
- uid: 3490
components:
- - pos: 56.5,20.5
+ - pos: 56.5,18.5
parent: 2
type: Transform
- uid: 3491
components:
- - pos: 55.5,20.5
+ - pos: 56.5,19.5
parent: 2
type: Transform
- uid: 3492
components:
- - pos: 54.5,20.5
+ - pos: 56.5,20.5
parent: 2
type: Transform
- uid: 3493
components:
- - pos: 56.5,21.5
+ - pos: 55.5,20.5
parent: 2
type: Transform
- uid: 3494
components:
- - pos: 58.5,21.5
+ - pos: 54.5,20.5
parent: 2
type: Transform
- uid: 3495
components:
- - pos: 57.5,21.5
+ - pos: 56.5,21.5
parent: 2
type: Transform
- uid: 3496
@@ -30232,32184 +30237,32239 @@ entities:
type: Transform
- uid: 3497
components:
- - pos: 53.5,20.5
+ - pos: 57.5,21.5
parent: 2
type: Transform
- uid: 3498
components:
- - pos: 52.5,20.5
+ - pos: 58.5,21.5
parent: 2
type: Transform
- uid: 3499
components:
- - pos: 51.5,20.5
+ - pos: 53.5,20.5
parent: 2
type: Transform
- uid: 3500
components:
- - pos: 50.5,20.5
+ - pos: 52.5,20.5
parent: 2
type: Transform
- uid: 3501
components:
- - pos: 49.5,20.5
+ - pos: 51.5,20.5
parent: 2
type: Transform
- uid: 3502
components:
- - pos: 48.5,20.5
+ - pos: 50.5,20.5
parent: 2
type: Transform
- uid: 3503
components:
- - pos: 47.5,20.5
+ - pos: 49.5,20.5
parent: 2
type: Transform
- uid: 3504
components:
- - pos: 46.5,20.5
+ - pos: 48.5,20.5
parent: 2
type: Transform
- uid: 3505
components:
- - pos: 46.5,21.5
+ - pos: 47.5,20.5
parent: 2
type: Transform
- uid: 3506
components:
- - pos: 49.5,21.5
+ - pos: 46.5,20.5
parent: 2
type: Transform
- uid: 3507
components:
- - pos: 52.5,21.5
+ - pos: 46.5,21.5
parent: 2
type: Transform
- uid: 3508
components:
- - pos: 54.5,21.5
+ - pos: 49.5,21.5
parent: 2
type: Transform
- uid: 3509
components:
- - pos: 59.5,18.5
+ - pos: 52.5,21.5
parent: 2
type: Transform
- uid: 3510
components:
- - pos: 58.5,18.5
+ - pos: 54.5,21.5
parent: 2
type: Transform
- uid: 3511
components:
- - pos: 59.5,15.5
+ - pos: 59.5,18.5
parent: 2
type: Transform
- uid: 3512
components:
- - pos: 60.5,13.5
+ - pos: 58.5,18.5
parent: 2
type: Transform
- uid: 3513
components:
- - pos: 59.5,13.5
+ - pos: 59.5,15.5
parent: 2
type: Transform
- uid: 3514
components:
- - pos: 61.5,13.5
+ - pos: 60.5,13.5
parent: 2
type: Transform
- uid: 3515
components:
- - pos: 57.5,11.5
+ - pos: 59.5,13.5
parent: 2
type: Transform
- uid: 3516
components:
- - pos: 56.5,11.5
+ - pos: 61.5,13.5
parent: 2
type: Transform
- uid: 3517
components:
- - pos: 56.5,10.5
+ - pos: 57.5,11.5
parent: 2
type: Transform
- uid: 3518
components:
- - pos: 56.5,9.5
+ - pos: 56.5,11.5
parent: 2
type: Transform
- uid: 3519
components:
- - pos: 56.5,8.5
+ - pos: 56.5,10.5
parent: 2
type: Transform
- uid: 3520
components:
- - pos: 56.5,7.5
+ - pos: 56.5,9.5
parent: 2
type: Transform
- uid: 3521
components:
- - pos: 56.5,6.5
+ - pos: 56.5,8.5
parent: 2
type: Transform
- uid: 3522
components:
- - pos: 55.5,6.5
+ - pos: 56.5,7.5
parent: 2
type: Transform
- uid: 3523
components:
- - pos: 54.5,6.5
+ - pos: 56.5,6.5
parent: 2
type: Transform
- uid: 3524
components:
- - pos: 53.5,6.5
+ - pos: 55.5,6.5
parent: 2
type: Transform
- uid: 3525
components:
- - pos: 52.5,6.5
+ - pos: 54.5,6.5
parent: 2
type: Transform
- uid: 3526
components:
- - pos: 51.5,6.5
+ - pos: 53.5,6.5
parent: 2
type: Transform
- uid: 3527
components:
- - pos: 50.5,6.5
+ - pos: 52.5,6.5
parent: 2
type: Transform
- uid: 3528
components:
- - pos: 49.5,6.5
+ - pos: 51.5,6.5
parent: 2
type: Transform
- uid: 3529
components:
- - pos: 48.5,6.5
+ - pos: 50.5,6.5
parent: 2
type: Transform
- uid: 3530
components:
- - pos: 47.5,6.5
+ - pos: 49.5,6.5
parent: 2
type: Transform
- uid: 3531
components:
- - pos: 47.5,7.5
+ - pos: 48.5,6.5
parent: 2
type: Transform
- uid: 3532
components:
- - pos: 47.5,8.5
+ - pos: 47.5,6.5
parent: 2
type: Transform
- uid: 3533
components:
- - pos: 48.5,10.5
+ - pos: 47.5,7.5
parent: 2
type: Transform
- uid: 3534
components:
- - pos: 47.5,10.5
+ - pos: 47.5,8.5
parent: 2
type: Transform
- uid: 3535
components:
- - pos: 47.5,11.5
+ - pos: 48.5,10.5
parent: 2
type: Transform
- uid: 3536
components:
- - pos: 47.5,12.5
+ - pos: 47.5,10.5
parent: 2
type: Transform
- uid: 3537
components:
- - pos: 47.5,13.5
+ - pos: 47.5,11.5
parent: 2
type: Transform
- uid: 3538
components:
- - pos: 47.5,14.5
+ - pos: 47.5,12.5
parent: 2
type: Transform
- uid: 3539
components:
- - pos: 47.5,15.5
+ - pos: 47.5,13.5
parent: 2
type: Transform
- uid: 3540
components:
- - pos: 48.5,13.5
+ - pos: 47.5,14.5
parent: 2
type: Transform
- uid: 3541
components:
- - pos: 49.5,13.5
+ - pos: 47.5,15.5
parent: 2
type: Transform
- uid: 3542
components:
- - pos: 49.5,14.5
+ - pos: 48.5,13.5
parent: 2
type: Transform
- uid: 3543
components:
- - pos: 49.5,15.5
+ - pos: 49.5,13.5
parent: 2
type: Transform
- uid: 3544
components:
- - pos: 49.5,16.5
+ - pos: 49.5,14.5
parent: 2
type: Transform
- uid: 3545
components:
- - pos: 50.5,16.5
+ - pos: 49.5,15.5
parent: 2
type: Transform
- uid: 3546
components:
- - pos: 51.5,16.5
+ - pos: 49.5,16.5
parent: 2
type: Transform
- uid: 3547
components:
- - pos: 52.5,16.5
+ - pos: 50.5,16.5
parent: 2
type: Transform
- uid: 3548
components:
- - pos: 53.5,16.5
+ - pos: 51.5,16.5
parent: 2
type: Transform
- uid: 3549
components:
- - pos: 54.5,16.5
+ - pos: 52.5,16.5
parent: 2
type: Transform
- uid: 3550
components:
- - pos: 55.5,16.5
+ - pos: 53.5,16.5
parent: 2
type: Transform
- uid: 3551
components:
- - pos: 50.5,17.5
+ - pos: 54.5,16.5
parent: 2
type: Transform
- uid: 3552
components:
- - pos: 50.5,18.5
+ - pos: 55.5,16.5
parent: 2
type: Transform
- uid: 3553
components:
- - pos: 49.5,12.5
+ - pos: 50.5,17.5
parent: 2
type: Transform
- uid: 3554
components:
- - pos: 50.5,12.5
+ - pos: 50.5,18.5
parent: 2
type: Transform
- uid: 3555
components:
- - pos: 50.5,11.5
+ - pos: 49.5,12.5
parent: 2
type: Transform
- uid: 3556
components:
- - pos: 50.5,10.5
+ - pos: 50.5,12.5
parent: 2
type: Transform
- uid: 3557
components:
- - pos: 50.5,9.5
+ - pos: 50.5,11.5
parent: 2
type: Transform
- uid: 3558
components:
- - pos: 51.5,9.5
+ - pos: 50.5,10.5
parent: 2
type: Transform
- uid: 3559
components:
- - pos: 52.5,9.5
+ - pos: 50.5,9.5
parent: 2
type: Transform
- uid: 3560
components:
- - pos: 53.5,9.5
+ - pos: 51.5,9.5
parent: 2
type: Transform
- uid: 3561
components:
- - pos: 53.5,10.5
+ - pos: 52.5,9.5
parent: 2
type: Transform
- uid: 3562
components:
- - pos: 53.5,11.5
+ - pos: 53.5,9.5
parent: 2
type: Transform
- uid: 3563
components:
- - pos: 53.5,12.5
+ - pos: 53.5,10.5
parent: 2
type: Transform
- uid: 3564
components:
- - pos: 59.5,11.5
+ - pos: 53.5,11.5
parent: 2
type: Transform
- uid: 3565
components:
- - pos: 59.5,10.5
+ - pos: 53.5,12.5
parent: 2
type: Transform
- uid: 3566
components:
- - pos: 59.5,9.5
+ - pos: 59.5,11.5
parent: 2
type: Transform
- uid: 3567
components:
- - pos: 60.5,9.5
+ - pos: 59.5,10.5
parent: 2
type: Transform
- uid: 3568
components:
- - pos: 60.5,8.5
+ - pos: 59.5,9.5
parent: 2
type: Transform
- uid: 3569
components:
- - pos: 60.5,7.5
+ - pos: 60.5,9.5
parent: 2
type: Transform
- uid: 3570
components:
- - pos: 60.5,6.5
+ - pos: 60.5,8.5
parent: 2
type: Transform
- uid: 3571
components:
- - pos: 60.5,5.5
+ - pos: 60.5,7.5
parent: 2
type: Transform
- uid: 3572
components:
- - pos: 60.5,4.5
+ - pos: 60.5,6.5
parent: 2
type: Transform
- uid: 3573
components:
- - pos: 61.5,4.5
+ - pos: 60.5,5.5
parent: 2
type: Transform
- uid: 3574
components:
- - pos: 62.5,4.5
+ - pos: 60.5,4.5
parent: 2
type: Transform
- uid: 3575
components:
- - pos: 62.5,5.5
+ - pos: 61.5,4.5
parent: 2
type: Transform
- uid: 3576
components:
- - pos: 60.5,-5.5
+ - pos: 62.5,4.5
parent: 2
type: Transform
- uid: 3577
components:
- - pos: 45.5,20.5
+ - pos: 62.5,5.5
parent: 2
type: Transform
- uid: 3578
components:
- - pos: 44.5,20.5
+ - pos: 60.5,-5.5
parent: 2
type: Transform
- uid: 3579
components:
- - pos: 43.5,20.5
+ - pos: 45.5,20.5
parent: 2
type: Transform
- uid: 3580
components:
- - pos: 42.5,20.5
+ - pos: 44.5,20.5
parent: 2
type: Transform
- uid: 3581
components:
- - pos: 41.5,20.5
+ - pos: 43.5,20.5
parent: 2
type: Transform
- uid: 3582
components:
- - pos: 40.5,20.5
+ - pos: 42.5,20.5
parent: 2
type: Transform
- uid: 3583
components:
- - pos: 39.5,20.5
+ - pos: 41.5,20.5
parent: 2
type: Transform
- uid: 3584
components:
- - pos: 38.5,20.5
+ - pos: 40.5,20.5
parent: 2
type: Transform
- uid: 3585
components:
- - pos: 37.5,20.5
+ - pos: 39.5,20.5
parent: 2
type: Transform
- uid: 3586
components:
- - pos: 36.5,20.5
+ - pos: 38.5,20.5
parent: 2
type: Transform
- uid: 3587
components:
- - pos: 35.5,20.5
+ - pos: 37.5,20.5
parent: 2
type: Transform
- uid: 3588
components:
- - pos: 35.5,19.5
+ - pos: 36.5,20.5
parent: 2
type: Transform
- uid: 3589
components:
- - pos: 46.5,11.5
+ - pos: 35.5,20.5
parent: 2
type: Transform
- uid: 3590
components:
- - pos: 45.5,11.5
+ - pos: 35.5,19.5
parent: 2
type: Transform
- uid: 3591
components:
- - pos: 43.5,11.5
+ - pos: 46.5,11.5
parent: 2
type: Transform
- uid: 3592
components:
- - pos: 42.5,11.5
+ - pos: 45.5,11.5
parent: 2
type: Transform
- uid: 3593
components:
- - pos: 41.5,11.5
+ - pos: 43.5,11.5
parent: 2
type: Transform
- uid: 3594
components:
- - pos: 40.5,11.5
+ - pos: 42.5,11.5
parent: 2
type: Transform
- uid: 3595
components:
- - pos: 41.5,10.5
+ - pos: 41.5,11.5
parent: 2
type: Transform
- uid: 3596
components:
- - pos: 41.5,9.5
+ - pos: 40.5,11.5
parent: 2
type: Transform
- uid: 3597
components:
- - pos: 41.5,8.5
+ - pos: 41.5,10.5
parent: 2
type: Transform
- uid: 3598
components:
- - pos: 41.5,7.5
+ - pos: 41.5,9.5
parent: 2
type: Transform
- uid: 3599
components:
- - pos: 41.5,6.5
+ - pos: 41.5,8.5
parent: 2
type: Transform
- uid: 3600
components:
- - pos: 41.5,5.5
+ - pos: 41.5,7.5
parent: 2
type: Transform
- uid: 3601
components:
- - pos: 41.5,4.5
+ - pos: 41.5,6.5
parent: 2
type: Transform
- uid: 3602
components:
- - pos: 40.5,12.5
+ - pos: 41.5,5.5
parent: 2
type: Transform
- uid: 3603
components:
- - pos: 40.5,13.5
+ - pos: 41.5,4.5
parent: 2
type: Transform
- uid: 3604
components:
- - pos: 40.5,14.5
+ - pos: 40.5,12.5
parent: 2
type: Transform
- uid: 3605
components:
- - pos: 39.5,14.5
+ - pos: 40.5,13.5
parent: 2
type: Transform
- uid: 3606
components:
- - pos: 38.5,14.5
+ - pos: 40.5,14.5
parent: 2
type: Transform
- uid: 3607
components:
- - pos: 37.5,14.5
+ - pos: 39.5,14.5
parent: 2
type: Transform
- uid: 3608
components:
- - pos: 36.5,14.5
+ - pos: 38.5,14.5
parent: 2
type: Transform
- uid: 3609
components:
- - pos: 35.5,14.5
+ - pos: 37.5,14.5
parent: 2
type: Transform
- uid: 3610
components:
- - pos: 34.5,14.5
+ - pos: 36.5,14.5
parent: 2
type: Transform
- uid: 3611
components:
- - pos: 33.5,14.5
+ - pos: 35.5,14.5
parent: 2
type: Transform
- uid: 3612
components:
- - pos: 32.5,14.5
+ - pos: 34.5,14.5
parent: 2
type: Transform
- uid: 3613
components:
- - pos: 31.5,14.5
+ - pos: 33.5,14.5
parent: 2
type: Transform
- uid: 3614
components:
- - pos: 35.5,15.5
+ - pos: 32.5,14.5
parent: 2
type: Transform
- uid: 3615
components:
- - pos: 35.5,16.5
+ - pos: 31.5,14.5
parent: 2
type: Transform
- uid: 3616
components:
- - pos: 32.5,13.5
+ - pos: 35.5,15.5
parent: 2
type: Transform
- uid: 3617
components:
- - pos: 32.5,12.5
+ - pos: 35.5,16.5
parent: 2
type: Transform
- uid: 3618
components:
- - pos: 32.5,11.5
+ - pos: 32.5,13.5
parent: 2
type: Transform
- uid: 3619
components:
- - pos: 30.5,14.5
+ - pos: 32.5,12.5
parent: 2
type: Transform
- uid: 3620
components:
- - pos: 29.5,14.5
+ - pos: 32.5,11.5
parent: 2
type: Transform
- uid: 3621
components:
- - pos: 29.5,13.5
+ - pos: 30.5,14.5
parent: 2
type: Transform
- uid: 3622
components:
- - pos: 29.5,12.5
+ - pos: 29.5,14.5
parent: 2
type: Transform
- uid: 3623
components:
- - pos: 29.5,11.5
+ - pos: 29.5,13.5
parent: 2
type: Transform
- uid: 3624
components:
- - pos: 35.5,13.5
+ - pos: 29.5,12.5
parent: 2
type: Transform
- uid: 3625
components:
- - pos: 35.5,12.5
+ - pos: 29.5,11.5
parent: 2
type: Transform
- uid: 3626
components:
- - pos: 35.5,11.5
+ - pos: 35.5,13.5
parent: 2
type: Transform
- uid: 3627
components:
- - pos: 38.5,7.5
+ - pos: 35.5,12.5
parent: 2
type: Transform
- uid: 3628
components:
- - pos: 37.5,7.5
+ - pos: 35.5,11.5
parent: 2
type: Transform
- uid: 3629
components:
- - pos: 40.5,4.5
+ - pos: 38.5,7.5
parent: 2
type: Transform
- uid: 3630
components:
- - pos: 39.5,4.5
+ - pos: 37.5,7.5
parent: 2
type: Transform
- uid: 3631
components:
- - pos: 37.5,4.5
+ - pos: 40.5,4.5
parent: 2
type: Transform
- uid: 3632
components:
- - pos: 38.5,4.5
+ - pos: 39.5,4.5
parent: 2
type: Transform
- uid: 3633
components:
- - pos: -12.5,42.5
+ - pos: 37.5,4.5
parent: 2
type: Transform
- uid: 3634
components:
- - pos: 51.5,11.5
+ - pos: 38.5,4.5
parent: 2
type: Transform
- uid: 3635
components:
- - pos: 55.5,13.5
+ - pos: -12.5,42.5
parent: 2
type: Transform
- uid: 3636
components:
- - pos: 55.5,14.5
+ - pos: 51.5,11.5
parent: 2
type: Transform
- uid: 3637
components:
- - pos: 54.5,14.5
+ - pos: 55.5,13.5
parent: 2
type: Transform
- uid: 3638
components:
- - pos: 53.5,14.5
+ - pos: 55.5,14.5
parent: 2
type: Transform
- uid: 3639
components:
- - pos: 52.5,14.5
+ - pos: 54.5,14.5
parent: 2
type: Transform
- uid: 3640
components:
- - pos: 51.5,14.5
+ - pos: 53.5,14.5
parent: 2
type: Transform
- uid: 3641
components:
- - pos: 51.5,13.5
+ - pos: 52.5,14.5
parent: 2
type: Transform
- uid: 3642
components:
- - pos: 51.5,12.5
+ - pos: 51.5,14.5
parent: 2
type: Transform
- uid: 3643
components:
- - pos: 49.5,10.5
+ - pos: 51.5,13.5
parent: 2
type: Transform
- uid: 3644
components:
- - pos: 45.5,7.5
+ - pos: 51.5,12.5
parent: 2
type: Transform
- uid: 3645
components:
- - pos: 42.5,21.5
+ - pos: 49.5,10.5
parent: 2
type: Transform
- uid: 3646
components:
- - pos: 42.5,22.5
+ - pos: 45.5,7.5
parent: 2
type: Transform
- uid: 3647
components:
- - pos: 49.5,3.5
+ - pos: 42.5,21.5
parent: 2
type: Transform
- uid: 3648
components:
- - pos: 49.5,2.5
+ - pos: 42.5,22.5
parent: 2
type: Transform
- uid: 3649
components:
- - pos: 48.5,2.5
+ - pos: 49.5,3.5
parent: 2
type: Transform
- uid: 3650
components:
- - pos: 48.5,1.5
+ - pos: 49.5,2.5
parent: 2
type: Transform
- uid: 3651
components:
- - pos: 47.5,1.5
+ - pos: 48.5,2.5
parent: 2
type: Transform
- uid: 3652
components:
- - pos: 46.5,1.5
+ - pos: 48.5,1.5
parent: 2
type: Transform
- uid: 3653
components:
- - pos: 45.5,1.5
+ - pos: 47.5,1.5
parent: 2
type: Transform
- uid: 3654
components:
- - pos: 44.5,1.5
+ - pos: 46.5,1.5
parent: 2
type: Transform
- uid: 3655
components:
- - pos: 43.5,1.5
+ - pos: 45.5,1.5
parent: 2
type: Transform
- uid: 3656
components:
- - pos: 42.5,1.5
+ - pos: 44.5,1.5
parent: 2
type: Transform
- uid: 3657
components:
- - pos: 42.5,0.5
+ - pos: 43.5,1.5
parent: 2
type: Transform
- uid: 3658
components:
- - pos: 42.5,-0.5
+ - pos: 42.5,1.5
parent: 2
type: Transform
- uid: 3659
components:
- - pos: 42.5,-1.5
+ - pos: 42.5,0.5
parent: 2
type: Transform
- uid: 3660
components:
- - pos: 42.5,-2.5
+ - pos: 42.5,-0.5
parent: 2
type: Transform
- uid: 3661
components:
- - pos: 42.5,-3.5
+ - pos: 42.5,-1.5
parent: 2
type: Transform
- uid: 3662
components:
- - pos: 41.5,-1.5
+ - pos: 42.5,-2.5
parent: 2
type: Transform
- uid: 3663
components:
- - pos: 40.5,-1.5
+ - pos: 42.5,-3.5
parent: 2
type: Transform
- uid: 3664
components:
- - pos: 39.5,-1.5
+ - pos: 41.5,-1.5
parent: 2
type: Transform
- uid: 3665
components:
- - pos: 38.5,-1.5
+ - pos: 40.5,-1.5
parent: 2
type: Transform
- uid: 3666
components:
- - pos: 37.5,-1.5
+ - pos: 39.5,-1.5
parent: 2
type: Transform
- uid: 3667
components:
- - pos: 37.5,-2.5
+ - pos: 38.5,-1.5
parent: 2
type: Transform
- uid: 3668
components:
- - pos: 37.5,-3.5
+ - pos: 37.5,-1.5
parent: 2
type: Transform
- uid: 3669
components:
- - pos: 43.5,-1.5
+ - pos: 37.5,-2.5
parent: 2
type: Transform
- uid: 3670
components:
- - pos: 44.5,-1.5
+ - pos: 37.5,-3.5
parent: 2
type: Transform
- uid: 3671
components:
- - pos: 44.5,-2.5
+ - pos: 43.5,-1.5
parent: 2
type: Transform
- uid: 3672
components:
- - pos: 38.5,-3.5
+ - pos: 44.5,-1.5
parent: 2
type: Transform
- uid: 3673
components:
- - pos: 38.5,-4.5
+ - pos: 44.5,-2.5
parent: 2
type: Transform
- uid: 3674
components:
- - pos: 38.5,-5.5
+ - pos: 38.5,-3.5
parent: 2
type: Transform
- uid: 3675
components:
- - pos: 38.5,-6.5
+ - pos: 38.5,-4.5
parent: 2
type: Transform
- uid: 3676
components:
- - pos: 38.5,-8.5
+ - pos: 38.5,-5.5
parent: 2
type: Transform
- uid: 3677
components:
- - pos: 38.5,-7.5
+ - pos: 38.5,-6.5
parent: 2
type: Transform
- uid: 3678
components:
- - pos: 39.5,-8.5
+ - pos: 38.5,-8.5
parent: 2
type: Transform
- uid: 3679
components:
- - pos: 46.5,0.5
+ - pos: 38.5,-7.5
parent: 2
type: Transform
- uid: 3680
components:
- - pos: 46.5,-0.5
+ - pos: 39.5,-8.5
parent: 2
type: Transform
- uid: 3681
components:
- - pos: 46.5,-1.5
+ - pos: 46.5,0.5
parent: 2
type: Transform
- uid: 3682
components:
- - pos: 47.5,-1.5
+ - pos: 46.5,-0.5
parent: 2
type: Transform
- uid: 3683
components:
- - pos: 47.5,-2.5
+ - pos: 46.5,-1.5
parent: 2
type: Transform
- uid: 3684
components:
- - pos: 41.5,1.5
+ - pos: 47.5,-1.5
parent: 2
type: Transform
- uid: 3685
components:
- - pos: 40.5,1.5
+ - pos: 47.5,-2.5
parent: 2
type: Transform
- uid: 3686
components:
- - pos: 39.5,1.5
+ - pos: 41.5,1.5
parent: 2
type: Transform
- uid: 3687
components:
- - pos: 38.5,1.5
+ - pos: 40.5,1.5
parent: 2
type: Transform
- uid: 3688
components:
- - pos: 37.5,1.5
+ - pos: 39.5,1.5
parent: 2
type: Transform
- uid: 3689
components:
- - pos: 41.5,2.5
+ - pos: 38.5,1.5
parent: 2
type: Transform
- uid: 3690
components:
- - pos: 48.5,0.5
+ - pos: 37.5,1.5
parent: 2
type: Transform
- uid: 3691
components:
- - pos: 49.5,0.5
+ - pos: 41.5,2.5
parent: 2
type: Transform
- uid: 3692
components:
- - pos: 50.5,0.5
+ - pos: 48.5,0.5
parent: 2
type: Transform
- uid: 3693
components:
- - pos: 51.5,0.5
+ - pos: 49.5,0.5
parent: 2
type: Transform
- uid: 3694
components:
- - pos: 52.5,0.5
+ - pos: 50.5,0.5
parent: 2
type: Transform
- uid: 3695
components:
- - pos: 52.5,1.5
+ - pos: 51.5,0.5
parent: 2
type: Transform
- uid: 3696
components:
- - pos: 52.5,2.5
+ - pos: 52.5,0.5
parent: 2
type: Transform
- uid: 3697
components:
- - pos: 53.5,0.5
+ - pos: 52.5,1.5
parent: 2
type: Transform
- uid: 3698
components:
- - pos: 53.5,-0.5
+ - pos: 52.5,2.5
parent: 2
type: Transform
- uid: 3699
components:
- - pos: 54.5,-0.5
+ - pos: 53.5,0.5
parent: 2
type: Transform
- uid: 3700
components:
- - pos: 55.5,-0.5
+ - pos: 53.5,-0.5
parent: 2
type: Transform
- uid: 3701
components:
- - pos: 56.5,-0.5
+ - pos: 54.5,-0.5
parent: 2
type: Transform
- uid: 3702
components:
- - pos: 57.5,-0.5
+ - pos: 55.5,-0.5
parent: 2
type: Transform
- uid: 3703
components:
- - pos: 57.5,0.5
+ - pos: 56.5,-0.5
parent: 2
type: Transform
- uid: 3704
components:
- - pos: 57.5,1.5
+ - pos: 57.5,-0.5
parent: 2
type: Transform
- uid: 3705
components:
- - pos: 58.5,1.5
+ - pos: 57.5,0.5
parent: 2
type: Transform
- uid: 3706
components:
- - pos: 59.5,1.5
+ - pos: 57.5,1.5
parent: 2
type: Transform
- uid: 3707
components:
- - pos: 60.5,1.5
+ - pos: 58.5,1.5
parent: 2
type: Transform
- uid: 3708
components:
- - pos: 61.5,1.5
+ - pos: 59.5,1.5
parent: 2
type: Transform
- uid: 3709
components:
- - pos: 62.5,1.5
+ - pos: 60.5,1.5
parent: 2
type: Transform
- uid: 3710
components:
- - pos: 56.5,-1.5
+ - pos: 61.5,1.5
parent: 2
type: Transform
- uid: 3711
components:
- - pos: 56.5,-2.5
+ - pos: 62.5,1.5
parent: 2
type: Transform
- uid: 3712
components:
- - pos: 56.5,-3.5
+ - pos: 56.5,-1.5
parent: 2
type: Transform
- uid: 3713
components:
- - pos: 51.5,-0.5
+ - pos: 56.5,-2.5
parent: 2
type: Transform
- uid: 3714
components:
- - pos: 51.5,-1.5
+ - pos: 56.5,-3.5
parent: 2
type: Transform
- uid: 3715
components:
- - pos: 51.5,-2.5
+ - pos: 51.5,-0.5
parent: 2
type: Transform
- uid: 3716
components:
- - pos: 52.5,-2.5
+ - pos: 51.5,-1.5
parent: 2
type: Transform
- uid: 3717
components:
- - pos: 52.5,-3.5
+ - pos: 51.5,-2.5
parent: 2
type: Transform
- uid: 3718
components:
- - pos: 52.5,-5.5
+ - pos: 52.5,-2.5
parent: 2
type: Transform
- uid: 3719
components:
- - pos: 59.5,21.5
+ - pos: 52.5,-3.5
parent: 2
type: Transform
- uid: 3720
components:
- - pos: 60.5,21.5
+ - pos: 52.5,-5.5
parent: 2
type: Transform
- uid: 3721
components:
- - pos: 61.5,21.5
+ - pos: 59.5,21.5
parent: 2
type: Transform
- uid: 3722
components:
- - pos: 67.5,-11.5
+ - pos: 60.5,21.5
parent: 2
type: Transform
- uid: 3723
components:
- - pos: 68.5,-11.5
+ - pos: 61.5,21.5
parent: 2
type: Transform
- uid: 3724
components:
- - pos: 66.5,-13.5
+ - pos: 67.5,-11.5
parent: 2
type: Transform
- uid: 3725
components:
- - pos: 68.5,-13.5
+ - pos: 68.5,-11.5
parent: 2
type: Transform
- uid: 3726
components:
- - pos: 66.5,-11.5
+ - pos: 66.5,-13.5
parent: 2
type: Transform
- uid: 3727
components:
- - pos: 58.5,-34.5
+ - pos: 68.5,-13.5
parent: 2
type: Transform
- uid: 3728
components:
- - pos: 63.5,-43.5
+ - pos: 66.5,-11.5
parent: 2
type: Transform
- uid: 3729
components:
- - pos: 45.5,-39.5
+ - pos: 58.5,-34.5
parent: 2
type: Transform
- uid: 3730
components:
- - pos: 44.5,-39.5
+ - pos: 63.5,-43.5
parent: 2
type: Transform
- uid: 3731
components:
- - pos: 54.5,-33.5
+ - pos: 45.5,-39.5
parent: 2
type: Transform
- uid: 3732
components:
- - pos: 65.5,-45.5
+ - pos: 44.5,-39.5
parent: 2
type: Transform
- uid: 3733
components:
- - pos: 65.5,-44.5
+ - pos: 54.5,-33.5
parent: 2
type: Transform
- uid: 3734
components:
- - pos: 60.5,-11.5
+ - pos: 65.5,-45.5
parent: 2
type: Transform
- uid: 3735
components:
- - pos: 59.5,-11.5
+ - pos: 65.5,-44.5
parent: 2
type: Transform
- uid: 3736
components:
- - pos: 58.5,-11.5
+ - pos: 60.5,-11.5
parent: 2
type: Transform
- uid: 3737
components:
- - pos: 57.5,-11.5
+ - pos: 59.5,-11.5
parent: 2
type: Transform
- uid: 3738
components:
- - pos: 56.5,-11.5
+ - pos: 58.5,-11.5
parent: 2
type: Transform
- uid: 3739
components:
- - pos: 55.5,-11.5
+ - pos: 57.5,-11.5
parent: 2
type: Transform
- uid: 3740
components:
- - pos: 54.5,-11.5
+ - pos: 56.5,-11.5
parent: 2
type: Transform
- uid: 3741
components:
- - pos: 53.5,-11.5
+ - pos: 55.5,-11.5
parent: 2
type: Transform
- uid: 3742
components:
- - pos: 52.5,-11.5
+ - pos: 54.5,-11.5
parent: 2
type: Transform
- uid: 3743
components:
- - pos: 53.5,-12.5
+ - pos: 53.5,-11.5
parent: 2
type: Transform
- uid: 3744
components:
- - pos: 53.5,-13.5
+ - pos: 52.5,-11.5
parent: 2
type: Transform
- uid: 3745
components:
- - pos: 51.5,-11.5
+ - pos: 53.5,-12.5
parent: 2
type: Transform
- uid: 3746
components:
- - pos: 51.5,-10.5
+ - pos: 53.5,-13.5
parent: 2
type: Transform
- uid: 3747
components:
- - pos: 51.5,-9.5
+ - pos: 51.5,-11.5
parent: 2
type: Transform
- uid: 3748
components:
- - pos: 51.5,-8.5
+ - pos: 51.5,-10.5
parent: 2
type: Transform
- uid: 3749
components:
- - pos: 50.5,-8.5
+ - pos: 51.5,-9.5
parent: 2
type: Transform
- uid: 3750
components:
- - pos: 49.5,-8.5
+ - pos: 51.5,-8.5
parent: 2
type: Transform
- uid: 3751
components:
- - pos: 48.5,-8.5
+ - pos: 50.5,-8.5
parent: 2
type: Transform
- uid: 3752
components:
- - pos: 47.5,-8.5
+ - pos: 49.5,-8.5
parent: 2
type: Transform
- uid: 3753
components:
- - pos: 46.5,-8.5
+ - pos: 48.5,-8.5
parent: 2
type: Transform
- uid: 3754
components:
- - pos: 47.5,-7.5
+ - pos: 47.5,-8.5
parent: 2
type: Transform
- uid: 3755
components:
- - pos: 46.5,-9.5
+ - pos: 46.5,-8.5
parent: 2
type: Transform
- uid: 3756
components:
- - pos: 46.5,-10.5
+ - pos: 47.5,-7.5
parent: 2
type: Transform
- uid: 3757
components:
- - pos: 46.5,-11.5
+ - pos: 46.5,-9.5
parent: 2
type: Transform
- uid: 3758
components:
- - pos: 45.5,-11.5
+ - pos: 46.5,-10.5
parent: 2
type: Transform
- uid: 3759
components:
- - pos: 44.5,-11.5
+ - pos: 46.5,-11.5
parent: 2
type: Transform
- uid: 3760
components:
- - pos: 43.5,-11.5
+ - pos: 45.5,-11.5
parent: 2
type: Transform
- uid: 3761
components:
- - pos: 42.5,-11.5
+ - pos: 44.5,-11.5
parent: 2
type: Transform
- uid: 3762
components:
- - pos: 41.5,-11.5
+ - pos: 43.5,-11.5
parent: 2
type: Transform
- uid: 3763
components:
- - pos: 40.5,-11.5
+ - pos: 42.5,-11.5
parent: 2
type: Transform
- uid: 3764
components:
- - pos: 40.5,-12.5
+ - pos: 41.5,-11.5
parent: 2
type: Transform
- uid: 3765
components:
- - pos: 39.5,-12.5
+ - pos: 40.5,-11.5
parent: 2
type: Transform
- uid: 3766
components:
- - pos: 38.5,-12.5
+ - pos: 40.5,-12.5
parent: 2
type: Transform
- uid: 3767
components:
- - pos: 38.5,-13.5
+ - pos: 39.5,-12.5
parent: 2
type: Transform
- uid: 3768
components:
- - pos: 38.5,-14.5
+ - pos: 38.5,-12.5
parent: 2
type: Transform
- uid: 3769
components:
- - pos: 38.5,-15.5
+ - pos: 38.5,-13.5
parent: 2
type: Transform
- uid: 3770
components:
- - pos: 39.5,-14.5
+ - pos: 38.5,-14.5
parent: 2
type: Transform
- uid: 3771
components:
- - pos: 40.5,-14.5
+ - pos: 38.5,-15.5
parent: 2
type: Transform
- uid: 3772
components:
- - pos: 41.5,-14.5
+ - pos: 39.5,-14.5
parent: 2
type: Transform
- uid: 3773
components:
- - pos: 42.5,-14.5
+ - pos: 40.5,-14.5
parent: 2
type: Transform
- uid: 3774
components:
- - pos: 43.5,-13.5
+ - pos: 41.5,-14.5
parent: 2
type: Transform
- uid: 3775
components:
- - pos: 42.5,-13.5
+ - pos: 42.5,-14.5
parent: 2
type: Transform
- uid: 3776
components:
- - pos: 38.5,-11.5
+ - pos: 43.5,-13.5
parent: 2
type: Transform
- uid: 3777
components:
- - pos: 38.5,-10.5
+ - pos: 42.5,-13.5
parent: 2
type: Transform
- uid: 3778
components:
- - pos: 37.5,-8.5
+ - pos: 38.5,-11.5
parent: 2
type: Transform
- uid: 3779
components:
- - pos: 36.5,-8.5
+ - pos: 38.5,-10.5
parent: 2
type: Transform
- uid: 3780
components:
- - pos: 35.5,-8.5
+ - pos: 37.5,-8.5
parent: 2
type: Transform
- uid: 3781
components:
- - pos: 33.5,-8.5
+ - pos: 36.5,-8.5
parent: 2
type: Transform
- uid: 3782
components:
- - pos: 34.5,-8.5
+ - pos: 35.5,-8.5
parent: 2
type: Transform
- uid: 3783
components:
- - pos: 35.5,-9.5
+ - pos: 33.5,-8.5
parent: 2
type: Transform
- uid: 3784
components:
- - pos: 44.5,-10.5
+ - pos: 34.5,-8.5
parent: 2
type: Transform
- uid: 3785
components:
- - pos: 58.5,-5.5
+ - pos: 35.5,-9.5
parent: 2
type: Transform
- uid: 3786
components:
- - pos: 57.5,-5.5
+ - pos: 44.5,-10.5
parent: 2
type: Transform
- uid: 3787
components:
- - pos: 56.5,-5.5
+ - pos: 58.5,-5.5
parent: 2
type: Transform
- uid: 3788
components:
- - pos: 55.5,-5.5
+ - pos: 57.5,-5.5
parent: 2
type: Transform
- uid: 3789
components:
- - pos: 54.5,-6.5
+ - pos: 56.5,-5.5
parent: 2
type: Transform
- uid: 3790
components:
- - pos: 54.5,-5.5
+ - pos: 55.5,-5.5
parent: 2
type: Transform
- uid: 3791
components:
- - pos: 59.5,-3.5
+ - pos: 54.5,-6.5
parent: 2
type: Transform
- uid: 3792
components:
- - pos: 59.5,-2.5
+ - pos: 54.5,-5.5
parent: 2
type: Transform
- uid: 3793
components:
- - pos: 60.5,-2.5
+ - pos: 59.5,-3.5
parent: 2
type: Transform
- uid: 3794
components:
- - pos: 61.5,-2.5
+ - pos: 59.5,-2.5
parent: 2
type: Transform
- uid: 3795
components:
- - pos: 62.5,-2.5
+ - pos: 60.5,-2.5
parent: 2
type: Transform
- uid: 3796
components:
- - pos: 63.5,-2.5
+ - pos: 61.5,-2.5
parent: 2
type: Transform
- uid: 3797
components:
- - pos: 62.5,-1.5
+ - pos: 62.5,-2.5
parent: 2
type: Transform
- uid: 3798
components:
- - pos: 60.5,-1.5
+ - pos: 63.5,-2.5
parent: 2
type: Transform
- uid: 3799
components:
- - pos: 63.5,-11.5
+ - pos: 62.5,-1.5
parent: 2
type: Transform
- uid: 3800
components:
- - pos: 64.5,-11.5
+ - pos: 60.5,-1.5
parent: 2
type: Transform
- uid: 3801
components:
- - pos: 62.5,-13.5
+ - pos: 63.5,-11.5
parent: 2
type: Transform
- uid: 3802
components:
- - pos: 63.5,-13.5
+ - pos: 64.5,-11.5
parent: 2
type: Transform
- uid: 3803
components:
- - pos: 64.5,-13.5
+ - pos: 62.5,-13.5
parent: 2
type: Transform
- uid: 3804
components:
- - pos: 62.5,-14.5
+ - pos: 63.5,-13.5
parent: 2
type: Transform
- uid: 3805
components:
- - pos: 62.5,-15.5
+ - pos: 64.5,-13.5
parent: 2
type: Transform
- uid: 3806
components:
- - pos: 62.5,-16.5
+ - pos: 62.5,-14.5
parent: 2
type: Transform
- uid: 3807
components:
- - pos: 62.5,-17.5
+ - pos: 62.5,-15.5
parent: 2
type: Transform
- uid: 3808
components:
- - pos: 62.5,-18.5
+ - pos: 62.5,-16.5
parent: 2
type: Transform
- uid: 3809
components:
- - pos: 62.5,-19.5
+ - pos: 62.5,-17.5
parent: 2
type: Transform
- uid: 3810
components:
- - pos: 62.5,-20.5
+ - pos: 62.5,-18.5
parent: 2
type: Transform
- uid: 3811
components:
- - pos: 62.5,-21.5
+ - pos: 62.5,-19.5
parent: 2
type: Transform
- uid: 3812
components:
- - pos: 62.5,-22.5
+ - pos: 62.5,-20.5
parent: 2
type: Transform
- uid: 3813
components:
- - pos: 62.5,-23.5
+ - pos: 62.5,-21.5
parent: 2
type: Transform
- uid: 3814
components:
- - pos: 62.5,-24.5
+ - pos: 62.5,-22.5
parent: 2
type: Transform
- uid: 3815
components:
- - pos: 62.5,-25.5
+ - pos: 62.5,-23.5
parent: 2
type: Transform
- uid: 3816
components:
- - pos: 62.5,-26.5
+ - pos: 62.5,-24.5
parent: 2
type: Transform
- uid: 3817
components:
- - pos: 62.5,-27.5
+ - pos: 62.5,-25.5
parent: 2
type: Transform
- uid: 3818
components:
- - pos: 62.5,-28.5
+ - pos: 62.5,-26.5
parent: 2
type: Transform
- uid: 3819
components:
- - pos: 64.5,-5.5
+ - pos: 62.5,-27.5
parent: 2
type: Transform
- uid: 3820
components:
- - pos: 63.5,-3.5
+ - pos: 62.5,-28.5
parent: 2
type: Transform
- uid: 3821
components:
- - pos: 64.5,-3.5
+ - pos: 64.5,-5.5
parent: 2
type: Transform
- uid: 3822
components:
- - pos: 57.5,-12.5
+ - pos: 63.5,-3.5
parent: 2
type: Transform
- uid: 3823
components:
- - pos: 57.5,-13.5
+ - pos: 64.5,-3.5
parent: 2
type: Transform
- uid: 3824
components:
- - pos: 45.5,19.5
+ - pos: 57.5,-12.5
parent: 2
type: Transform
- uid: 3825
components:
- - pos: 55.5,-43.5
+ - pos: 57.5,-13.5
parent: 2
type: Transform
- uid: 3826
components:
- - pos: 55.5,-42.5
+ - pos: 45.5,19.5
parent: 2
type: Transform
- uid: 3827
components:
- - pos: 55.5,-41.5
+ - pos: 55.5,-43.5
parent: 2
type: Transform
- uid: 3828
components:
- - pos: 54.5,-41.5
+ - pos: 55.5,-42.5
parent: 2
type: Transform
- uid: 3829
components:
- - pos: 53.5,-41.5
+ - pos: 55.5,-41.5
parent: 2
type: Transform
- uid: 3830
components:
- - pos: 53.5,-42.5
+ - pos: 54.5,-41.5
parent: 2
type: Transform
- uid: 3831
components:
- - pos: 52.5,-42.5
+ - pos: 53.5,-41.5
parent: 2
type: Transform
- uid: 3832
components:
- - pos: 51.5,-42.5
+ - pos: 53.5,-42.5
parent: 2
type: Transform
- uid: 3833
components:
- - pos: 50.5,-42.5
+ - pos: 52.5,-42.5
parent: 2
type: Transform
- uid: 3834
components:
- - pos: 49.5,-42.5
+ - pos: 51.5,-42.5
parent: 2
type: Transform
- uid: 3835
components:
- - pos: 48.5,-42.5
+ - pos: 50.5,-42.5
parent: 2
type: Transform
- uid: 3836
components:
- - pos: 47.5,-42.5
+ - pos: 49.5,-42.5
parent: 2
type: Transform
- uid: 3837
components:
- - pos: 46.5,-42.5
+ - pos: 48.5,-42.5
parent: 2
type: Transform
- uid: 3838
components:
- - pos: 45.5,-42.5
+ - pos: 47.5,-42.5
parent: 2
type: Transform
- uid: 3839
components:
- - pos: 44.5,-42.5
+ - pos: 46.5,-42.5
parent: 2
type: Transform
- uid: 3840
components:
- - pos: 43.5,-42.5
+ - pos: 45.5,-42.5
parent: 2
type: Transform
- uid: 3841
components:
- - pos: 42.5,-42.5
+ - pos: 44.5,-42.5
parent: 2
type: Transform
- uid: 3842
components:
- - pos: 46.5,-41.5
+ - pos: 43.5,-42.5
parent: 2
type: Transform
- uid: 3843
components:
- - pos: 46.5,-40.5
+ - pos: 42.5,-42.5
parent: 2
type: Transform
- uid: 3844
components:
- - pos: 46.5,-39.5
+ - pos: 46.5,-41.5
parent: 2
type: Transform
- uid: 3845
components:
- - pos: 46.5,-38.5
+ - pos: 46.5,-40.5
parent: 2
type: Transform
- uid: 3846
components:
- - pos: 46.5,-37.5
+ - pos: 46.5,-39.5
parent: 2
type: Transform
- uid: 3847
components:
- - pos: 45.5,-37.5
+ - pos: 46.5,-38.5
parent: 2
type: Transform
- uid: 3848
components:
- - pos: 44.5,-37.5
+ - pos: 46.5,-37.5
parent: 2
type: Transform
- uid: 3849
components:
- - pos: 43.5,-37.5
+ - pos: 45.5,-37.5
parent: 2
type: Transform
- uid: 3850
components:
- - pos: 42.5,-37.5
+ - pos: 44.5,-37.5
parent: 2
type: Transform
- uid: 3851
components:
- - pos: 41.5,-37.5
+ - pos: 43.5,-37.5
parent: 2
type: Transform
- uid: 3852
components:
- - pos: 40.5,-37.5
+ - pos: 42.5,-37.5
parent: 2
type: Transform
- uid: 3853
components:
- - pos: 39.5,-37.5
+ - pos: 41.5,-37.5
parent: 2
type: Transform
- uid: 3854
components:
- - pos: 40.5,-36.5
+ - pos: 40.5,-37.5
parent: 2
type: Transform
- uid: 3855
components:
- - pos: 43.5,-36.5
+ - pos: 39.5,-37.5
parent: 2
type: Transform
- uid: 3856
components:
- - pos: 45.5,-36.5
+ - pos: 40.5,-36.5
parent: 2
type: Transform
- uid: 3857
components:
- - pos: 43.5,-38.5
+ - pos: 43.5,-36.5
parent: 2
type: Transform
- uid: 3858
components:
- - pos: 40.5,-38.5
+ - pos: 45.5,-36.5
parent: 2
type: Transform
- uid: 3859
components:
- - pos: 49.5,-41.5
+ - pos: 43.5,-38.5
parent: 2
type: Transform
- uid: 3860
components:
- - pos: 49.5,-40.5
+ - pos: 40.5,-38.5
parent: 2
type: Transform
- uid: 3861
components:
- - pos: 49.5,-39.5
+ - pos: 49.5,-41.5
parent: 2
type: Transform
- uid: 3862
components:
- - pos: 49.5,-38.5
+ - pos: 49.5,-40.5
parent: 2
type: Transform
- uid: 3863
components:
- - pos: 50.5,-38.5
+ - pos: 49.5,-39.5
parent: 2
type: Transform
- uid: 3864
components:
- - pos: 51.5,-38.5
+ - pos: 49.5,-38.5
parent: 2
type: Transform
- uid: 3865
components:
- - pos: 49.5,-37.5
+ - pos: 50.5,-38.5
parent: 2
type: Transform
- uid: 3866
components:
- - pos: 55.5,-44.5
+ - pos: 51.5,-38.5
parent: 2
type: Transform
- uid: 3867
components:
- - pos: 56.5,-44.5
+ - pos: 49.5,-37.5
parent: 2
type: Transform
- uid: 3868
components:
- - pos: 57.5,-44.5
+ - pos: 55.5,-44.5
parent: 2
type: Transform
- uid: 3869
components:
- - pos: 58.5,-44.5
+ - pos: 56.5,-44.5
parent: 2
type: Transform
- uid: 3870
components:
- - pos: 59.5,-44.5
+ - pos: 57.5,-44.5
parent: 2
type: Transform
- uid: 3871
components:
- - pos: 60.5,-44.5
+ - pos: 58.5,-44.5
parent: 2
type: Transform
- uid: 3872
components:
- - pos: 61.5,-44.5
+ - pos: 59.5,-44.5
parent: 2
type: Transform
- uid: 3873
components:
- - pos: 62.5,-44.5
+ - pos: 60.5,-44.5
parent: 2
type: Transform
- uid: 3874
components:
- - pos: 62.5,-43.5
+ - pos: 61.5,-44.5
parent: 2
type: Transform
- uid: 3875
components:
- - pos: 62.5,-42.5
+ - pos: 62.5,-44.5
parent: 2
type: Transform
- uid: 3876
components:
- - pos: 62.5,-41.5
+ - pos: 62.5,-43.5
parent: 2
type: Transform
- uid: 3877
components:
- - pos: 62.5,-40.5
+ - pos: 62.5,-42.5
parent: 2
type: Transform
- uid: 3878
components:
- - pos: 62.5,-39.5
+ - pos: 62.5,-41.5
parent: 2
type: Transform
- uid: 3879
components:
- - pos: 62.5,-37.5
+ - pos: 62.5,-40.5
parent: 2
type: Transform
- uid: 3880
components:
- - pos: 62.5,-36.5
+ - pos: 62.5,-39.5
parent: 2
type: Transform
- uid: 3881
components:
- - pos: 62.5,-35.5
+ - pos: 62.5,-37.5
parent: 2
type: Transform
- uid: 3882
components:
- - pos: 62.5,-34.5
+ - pos: 62.5,-36.5
parent: 2
type: Transform
- uid: 3883
components:
- - pos: 63.5,-34.5
+ - pos: 62.5,-35.5
parent: 2
type: Transform
- uid: 3884
components:
- - pos: 64.5,-34.5
+ - pos: 62.5,-34.5
parent: 2
type: Transform
- uid: 3885
components:
- - pos: 65.5,-34.5
+ - pos: 63.5,-34.5
parent: 2
type: Transform
- uid: 3886
components:
- - pos: 62.5,-33.5
+ - pos: 64.5,-34.5
parent: 2
type: Transform
- uid: 3887
components:
- - pos: 62.5,-32.5
+ - pos: 65.5,-34.5
parent: 2
type: Transform
- uid: 3888
components:
- - pos: 62.5,-31.5
+ - pos: 62.5,-33.5
parent: 2
type: Transform
- uid: 3889
components:
- - pos: 61.5,-34.5
+ - pos: 62.5,-32.5
parent: 2
type: Transform
- uid: 3890
components:
- - pos: 60.5,-34.5
+ - pos: 62.5,-31.5
parent: 2
type: Transform
- uid: 3891
components:
- - pos: 59.5,-34.5
+ - pos: 61.5,-34.5
parent: 2
type: Transform
- uid: 3892
components:
- - pos: 64.5,-35.5
+ - pos: 60.5,-34.5
parent: 2
type: Transform
- uid: 3893
components:
- - pos: 60.5,-35.5
+ - pos: 59.5,-34.5
parent: 2
type: Transform
- uid: 3894
components:
- - pos: 63.5,-33.5
+ - pos: 64.5,-35.5
parent: 2
type: Transform
- uid: 3895
components:
- - pos: 62.5,-45.5
+ - pos: 60.5,-35.5
parent: 2
type: Transform
- uid: 3896
components:
- - pos: 62.5,-46.5
+ - pos: 63.5,-33.5
parent: 2
type: Transform
- uid: 3897
components:
- - pos: 62.5,-47.5
+ - pos: 62.5,-45.5
parent: 2
type: Transform
- uid: 3898
components:
- - pos: 62.5,-48.5
+ - pos: 62.5,-46.5
parent: 2
type: Transform
- uid: 3899
components:
- - pos: 62.5,-49.5
+ - pos: 62.5,-47.5
parent: 2
type: Transform
- uid: 3900
components:
- - pos: 62.5,-50.5
+ - pos: 62.5,-48.5
parent: 2
type: Transform
- uid: 3901
components:
- - pos: 62.5,-51.5
+ - pos: 62.5,-49.5
parent: 2
type: Transform
- uid: 3902
components:
- - pos: 62.5,-52.5
+ - pos: 62.5,-50.5
parent: 2
type: Transform
- uid: 3903
components:
- - pos: 62.5,-53.5
+ - pos: 62.5,-51.5
parent: 2
type: Transform
- uid: 3904
components:
- - pos: 62.5,-54.5
+ - pos: 62.5,-52.5
parent: 2
type: Transform
- uid: 3905
components:
- - pos: 63.5,-52.5
+ - pos: 62.5,-53.5
parent: 2
type: Transform
- uid: 3906
components:
- - pos: 64.5,-52.5
+ - pos: 62.5,-54.5
parent: 2
type: Transform
- uid: 3907
components:
- - pos: 61.5,-52.5
+ - pos: 63.5,-52.5
parent: 2
type: Transform
- uid: 3908
components:
- - pos: 60.5,-52.5
+ - pos: 64.5,-52.5
parent: 2
type: Transform
- uid: 3909
components:
- - pos: 63.5,-46.5
+ - pos: 61.5,-52.5
parent: 2
type: Transform
- uid: 3910
components:
- - pos: 64.5,-46.5
+ - pos: 60.5,-52.5
parent: 2
type: Transform
- uid: 3911
components:
- - pos: 65.5,-46.5
+ - pos: 63.5,-46.5
parent: 2
type: Transform
- uid: 3912
components:
- - pos: 66.5,-46.5
+ - pos: 64.5,-46.5
parent: 2
type: Transform
- uid: 3913
components:
- - pos: 68.5,-46.5
+ - pos: 65.5,-46.5
parent: 2
type: Transform
- uid: 3914
components:
- - pos: 69.5,-46.5
+ - pos: 66.5,-46.5
parent: 2
type: Transform
- uid: 3915
components:
- - pos: 70.5,-46.5
+ - pos: 68.5,-46.5
parent: 2
type: Transform
- uid: 3916
components:
- - pos: 71.5,-46.5
+ - pos: 69.5,-46.5
parent: 2
type: Transform
- uid: 3917
components:
- - pos: 72.5,-46.5
+ - pos: 70.5,-46.5
parent: 2
type: Transform
- uid: 3918
components:
- - pos: 69.5,-47.5
+ - pos: 71.5,-46.5
parent: 2
type: Transform
- uid: 3919
components:
- - pos: 69.5,-48.5
+ - pos: 72.5,-46.5
parent: 2
type: Transform
- uid: 3920
components:
- - pos: 69.5,-49.5
+ - pos: 69.5,-47.5
parent: 2
type: Transform
- uid: 3921
components:
- - pos: 69.5,-45.5
+ - pos: 69.5,-48.5
parent: 2
type: Transform
- uid: 3922
components:
- - pos: 69.5,-44.5
+ - pos: 69.5,-49.5
parent: 2
type: Transform
- uid: 3923
components:
- - pos: 71.5,-45.5
+ - pos: 69.5,-45.5
parent: 2
type: Transform
- uid: 3924
components:
- - pos: 71.5,-47.5
+ - pos: 69.5,-44.5
parent: 2
type: Transform
- uid: 3925
components:
- - pos: 73.5,-46.5
+ - pos: 71.5,-45.5
parent: 2
type: Transform
- uid: 3926
components:
- - pos: 73.5,-47.5
+ - pos: 71.5,-47.5
parent: 2
type: Transform
- uid: 3927
components:
- - pos: 73.5,-45.5
+ - pos: 73.5,-46.5
parent: 2
type: Transform
- uid: 3928
components:
- - pos: 49.5,-43.5
+ - pos: 73.5,-47.5
parent: 2
type: Transform
- uid: 3929
components:
- - pos: 49.5,-44.5
+ - pos: 73.5,-45.5
parent: 2
type: Transform
- uid: 3930
components:
- - pos: 49.5,-46.5
+ - pos: 49.5,-43.5
parent: 2
type: Transform
- uid: 3931
components:
- - pos: 49.5,-47.5
+ - pos: 49.5,-44.5
parent: 2
type: Transform
- uid: 3932
components:
- - pos: 49.5,-49.5
+ - pos: 49.5,-46.5
parent: 2
type: Transform
- uid: 3933
components:
- - pos: 49.5,-50.5
+ - pos: 49.5,-47.5
parent: 2
type: Transform
- uid: 3934
components:
- - pos: 49.5,-51.5
+ - pos: 49.5,-49.5
parent: 2
type: Transform
- uid: 3935
components:
- - pos: 49.5,-52.5
+ - pos: 49.5,-50.5
parent: 2
type: Transform
- uid: 3936
components:
- - pos: 49.5,-53.5
+ - pos: 49.5,-51.5
parent: 2
type: Transform
- uid: 3937
components:
- - pos: 49.5,-54.5
+ - pos: 49.5,-52.5
parent: 2
type: Transform
- uid: 3938
components:
- - pos: 48.5,-45.5
+ - pos: 49.5,-53.5
parent: 2
type: Transform
- uid: 3939
components:
- - pos: 47.5,-45.5
+ - pos: 49.5,-54.5
parent: 2
type: Transform
- uid: 3940
components:
- - pos: 46.5,-45.5
+ - pos: 48.5,-45.5
parent: 2
type: Transform
- uid: 3941
components:
- - pos: 45.5,-45.5
+ - pos: 47.5,-45.5
parent: 2
type: Transform
- uid: 3942
components:
- - pos: 45.5,-46.5
+ - pos: 46.5,-45.5
parent: 2
type: Transform
- uid: 3943
components:
- - pos: 45.5,-47.5
+ - pos: 45.5,-45.5
parent: 2
type: Transform
- uid: 3944
components:
- - pos: 45.5,-48.5
+ - pos: 45.5,-46.5
parent: 2
type: Transform
- uid: 3945
components:
- - pos: 44.5,-48.5
+ - pos: 45.5,-47.5
parent: 2
type: Transform
- uid: 3946
components:
- - pos: 43.5,-48.5
+ - pos: 45.5,-48.5
parent: 2
type: Transform
- uid: 3947
components:
- - pos: 43.5,-47.5
+ - pos: 44.5,-48.5
parent: 2
type: Transform
- uid: 3948
components:
- - pos: 43.5,-46.5
+ - pos: 43.5,-48.5
parent: 2
type: Transform
- uid: 3949
components:
- - pos: 42.5,-46.5
+ - pos: 43.5,-47.5
parent: 2
type: Transform
- uid: 3950
components:
- - pos: 41.5,-46.5
+ - pos: 43.5,-46.5
parent: 2
type: Transform
- uid: 3951
components:
- - pos: 40.5,-46.5
+ - pos: 42.5,-46.5
parent: 2
type: Transform
- uid: 3952
components:
- - pos: 39.5,-46.5
+ - pos: 41.5,-46.5
parent: 2
type: Transform
- uid: 3953
components:
- - pos: 41.5,-42.5
+ - pos: 40.5,-46.5
parent: 2
type: Transform
- uid: 3954
components:
- - pos: 40.5,-42.5
+ - pos: 39.5,-46.5
parent: 2
type: Transform
- uid: 3955
components:
- - pos: 39.5,-42.5
+ - pos: 41.5,-42.5
parent: 2
type: Transform
- uid: 3956
components:
- - pos: 38.5,-42.5
+ - pos: 40.5,-42.5
parent: 2
type: Transform
- uid: 3957
components:
- - pos: 37.5,-42.5
+ - pos: 39.5,-42.5
parent: 2
type: Transform
- uid: 3958
components:
- - pos: 59.5,-33.5
+ - pos: 38.5,-42.5
parent: 2
type: Transform
- uid: 3959
components:
- - pos: 55.5,-63.5
+ - pos: 37.5,-42.5
parent: 2
type: Transform
- uid: 3960
components:
- - pos: 64.5,-43.5
+ - pos: 59.5,-33.5
parent: 2
type: Transform
- uid: 3961
components:
- - pos: -15.5,-18.5
+ - pos: 55.5,-63.5
parent: 2
type: Transform
- uid: 3962
components:
- - pos: -21.5,-59.5
+ - pos: 64.5,-43.5
parent: 2
type: Transform
- uid: 3963
components:
- - pos: 30.5,-47.5
+ - pos: -15.5,-18.5
parent: 2
type: Transform
- uid: 3964
components:
- - pos: 31.5,-47.5
+ - pos: -21.5,-59.5
parent: 2
type: Transform
- uid: 3965
components:
- - pos: 32.5,-47.5
+ - pos: 30.5,-47.5
parent: 2
type: Transform
- uid: 3966
components:
- - pos: 33.5,-47.5
+ - pos: 31.5,-47.5
parent: 2
type: Transform
- uid: 3967
components:
- - pos: 31.5,-46.5
+ - pos: 32.5,-47.5
parent: 2
type: Transform
- uid: 3968
components:
- - pos: 31.5,-46.5
+ - pos: 33.5,-47.5
parent: 2
type: Transform
- uid: 3969
components:
- - pos: 31.5,-45.5
+ - pos: 31.5,-46.5
parent: 2
type: Transform
- uid: 3970
components:
- - pos: 29.5,-48.5
+ - pos: 31.5,-46.5
parent: 2
type: Transform
- uid: 3971
components:
- - pos: 29.5,-49.5
+ - pos: 31.5,-45.5
parent: 2
type: Transform
- uid: 3972
components:
- - pos: 30.5,-49.5
+ - pos: 29.5,-48.5
parent: 2
type: Transform
- uid: 3973
components:
- - pos: 31.5,-49.5
+ - pos: 29.5,-49.5
parent: 2
type: Transform
- uid: 3974
components:
- - pos: 31.5,-50.5
+ - pos: 30.5,-49.5
parent: 2
type: Transform
- uid: 3975
components:
- - pos: 31.5,-51.5
+ - pos: 31.5,-49.5
parent: 2
type: Transform
- uid: 3976
components:
- - pos: 31.5,-52.5
+ - pos: 31.5,-50.5
parent: 2
type: Transform
- uid: 3977
components:
- - pos: 30.5,-51.5
+ - pos: 31.5,-51.5
parent: 2
type: Transform
- uid: 3978
components:
- - pos: 32.5,-51.5
+ - pos: 31.5,-52.5
parent: 2
type: Transform
- uid: 3979
components:
- - pos: 31.5,-53.5
+ - pos: 30.5,-51.5
parent: 2
type: Transform
- uid: 3980
components:
- - pos: 31.5,-54.5
+ - pos: 32.5,-51.5
parent: 2
type: Transform
- uid: 3981
components:
- - pos: 31.5,-56.5
+ - pos: 31.5,-53.5
parent: 2
type: Transform
- uid: 3982
components:
- - pos: 31.5,-55.5
+ - pos: 31.5,-54.5
parent: 2
type: Transform
- uid: 3983
components:
- - pos: 30.5,-54.5
+ - pos: 31.5,-56.5
parent: 2
type: Transform
- uid: 3984
components:
- - pos: 29.5,-54.5
+ - pos: 31.5,-55.5
parent: 2
type: Transform
- uid: 3985
components:
- - pos: 32.5,-54.5
+ - pos: 30.5,-54.5
parent: 2
type: Transform
- uid: 3986
components:
- - pos: 33.5,-54.5
+ - pos: 29.5,-54.5
parent: 2
type: Transform
- uid: 3987
components:
- - pos: 30.5,-45.5
+ - pos: 32.5,-54.5
parent: 2
type: Transform
- uid: 3988
components:
- - pos: 32.5,-45.5
+ - pos: 33.5,-54.5
parent: 2
type: Transform
- uid: 3989
components:
- - pos: 29.5,-45.5
+ - pos: 30.5,-45.5
parent: 2
type: Transform
- uid: 3990
components:
- - pos: 33.5,-45.5
+ - pos: 32.5,-45.5
parent: 2
type: Transform
- uid: 3991
components:
- - pos: 48.5,-54.5
+ - pos: 29.5,-45.5
parent: 2
type: Transform
- uid: 3992
components:
- - pos: 47.5,-54.5
+ - pos: 33.5,-45.5
parent: 2
type: Transform
- uid: 3993
components:
- - pos: 46.5,-54.5
+ - pos: 48.5,-54.5
parent: 2
type: Transform
- uid: 3994
components:
- - pos: 49.5,-55.5
+ - pos: 47.5,-54.5
parent: 2
type: Transform
- uid: 3995
components:
- - pos: 49.5,-56.5
+ - pos: 46.5,-54.5
parent: 2
type: Transform
- uid: 3996
components:
- - pos: 49.5,-57.5
+ - pos: 49.5,-55.5
parent: 2
type: Transform
- uid: 3997
components:
- - pos: 49.5,-58.5
+ - pos: 49.5,-56.5
parent: 2
type: Transform
- uid: 3998
components:
- - pos: 49.5,-59.5
+ - pos: 49.5,-57.5
parent: 2
type: Transform
- uid: 3999
components:
- - pos: 49.5,-60.5
+ - pos: 49.5,-58.5
parent: 2
type: Transform
- uid: 4000
components:
- - pos: 50.5,-60.5
+ - pos: 49.5,-59.5
parent: 2
type: Transform
- uid: 4001
components:
- - pos: 50.5,-53.5
+ - pos: 49.5,-60.5
parent: 2
type: Transform
- uid: 4002
components:
- - pos: 51.5,-53.5
+ - pos: 50.5,-60.5
parent: 2
type: Transform
- uid: 4003
components:
- - pos: 52.5,-53.5
+ - pos: 50.5,-53.5
parent: 2
type: Transform
- uid: 4004
components:
- - pos: 52.5,-52.5
+ - pos: 51.5,-53.5
parent: 2
type: Transform
- uid: 4005
components:
- - pos: 52.5,-51.5
+ - pos: 52.5,-53.5
parent: 2
type: Transform
- uid: 4006
components:
- - pos: 50.5,-50.5
+ - pos: 52.5,-52.5
parent: 2
type: Transform
- uid: 4007
components:
- - pos: 48.5,-57.5
+ - pos: 52.5,-51.5
parent: 2
type: Transform
- uid: 4008
components:
- - pos: 47.5,-57.5
+ - pos: 50.5,-50.5
parent: 2
type: Transform
- uid: 4009
components:
- - pos: 46.5,-57.5
+ - pos: 48.5,-57.5
parent: 2
type: Transform
- uid: 4010
components:
- - pos: 45.5,-57.5
+ - pos: 47.5,-57.5
parent: 2
type: Transform
- uid: 4011
components:
- - pos: 51.5,-54.5
+ - pos: 46.5,-57.5
parent: 2
type: Transform
- uid: 4012
components:
- - pos: 51.5,-55.5
+ - pos: 45.5,-57.5
parent: 2
type: Transform
- uid: 4013
components:
- - pos: 51.5,-56.5
+ - pos: 51.5,-54.5
parent: 2
type: Transform
- uid: 4014
components:
- - pos: 49.5,-48.5
+ - pos: 51.5,-55.5
parent: 2
type: Transform
- uid: 4015
components:
- - pos: 32.5,15.5
+ - pos: 51.5,-56.5
parent: 2
type: Transform
- uid: 4016
components:
- - pos: -20.5,0.5
+ - pos: 49.5,-48.5
parent: 2
type: Transform
- uid: 4017
components:
- - pos: -21.5,0.5
+ - pos: 32.5,15.5
parent: 2
type: Transform
- uid: 4018
components:
- - pos: -21.5,1.5
+ - pos: -20.5,0.5
parent: 2
type: Transform
- uid: 4019
components:
- - pos: -20.5,1.5
+ - pos: -21.5,0.5
parent: 2
type: Transform
- uid: 4020
components:
- - pos: -19.5,1.5
+ - pos: -21.5,1.5
parent: 2
type: Transform
- uid: 4021
components:
- - pos: -19.5,2.5
+ - pos: -20.5,1.5
parent: 2
type: Transform
- uid: 4022
components:
- - pos: -18.5,2.5
+ - pos: -19.5,1.5
parent: 2
type: Transform
- uid: 4023
components:
- - pos: -17.5,2.5
+ - pos: -19.5,2.5
parent: 2
type: Transform
- uid: 4024
components:
- - pos: -17.5,3.5
+ - pos: -18.5,2.5
parent: 2
type: Transform
- uid: 4025
components:
- - pos: -19.5,-1.5
+ - pos: -17.5,2.5
parent: 2
type: Transform
- uid: 4026
components:
- - pos: -19.5,-2.5
+ - pos: -17.5,3.5
parent: 2
type: Transform
- uid: 4027
components:
- - pos: -19.5,-0.5
+ - pos: -19.5,-1.5
parent: 2
type: Transform
- uid: 4028
components:
- - pos: -20.5,-0.5
+ - pos: -19.5,-2.5
parent: 2
type: Transform
- uid: 4029
components:
- - pos: -21.5,2.5
+ - pos: -19.5,-0.5
parent: 2
type: Transform
- uid: 4030
components:
- - pos: -21.5,3.5
+ - pos: -20.5,-0.5
parent: 2
type: Transform
- uid: 4031
components:
- - pos: -18.5,-0.5
+ - pos: -21.5,2.5
parent: 2
type: Transform
- uid: 4032
components:
- - pos: 57.5,6.5
+ - pos: -21.5,3.5
parent: 2
type: Transform
- uid: 4033
components:
- - pos: 18.5,-81.5
+ - pos: -18.5,-0.5
parent: 2
type: Transform
- uid: 4034
components:
- - pos: -29.5,-9.5
+ - pos: 57.5,6.5
parent: 2
type: Transform
- uid: 4035
components:
- - pos: -29.5,-10.5
+ - pos: 18.5,-81.5
parent: 2
type: Transform
- uid: 4036
components:
- - pos: -29.5,-11.5
+ - pos: -29.5,-9.5
parent: 2
type: Transform
- uid: 4037
components:
- - pos: -29.5,-12.5
+ - pos: -29.5,-10.5
parent: 2
type: Transform
- uid: 4038
components:
- - pos: -28.5,-12.5
+ - pos: -29.5,-11.5
parent: 2
type: Transform
- uid: 4039
components:
- - pos: -27.5,-12.5
+ - pos: -29.5,-12.5
parent: 2
type: Transform
- uid: 4040
components:
- - pos: -26.5,-12.5
+ - pos: -28.5,-12.5
parent: 2
type: Transform
- uid: 4041
components:
- - pos: -25.5,-12.5
+ - pos: -27.5,-12.5
parent: 2
type: Transform
- uid: 4042
components:
- - pos: -24.5,-12.5
+ - pos: -26.5,-12.5
parent: 2
type: Transform
- uid: 4043
components:
- - pos: -23.5,-12.5
+ - pos: -25.5,-12.5
parent: 2
type: Transform
- uid: 4044
components:
- - pos: -22.5,-12.5
+ - pos: -24.5,-12.5
parent: 2
type: Transform
- uid: 4045
components:
- - pos: -21.5,-12.5
+ - pos: -23.5,-12.5
parent: 2
type: Transform
- uid: 4046
components:
- - pos: -20.5,-12.5
+ - pos: -22.5,-12.5
parent: 2
type: Transform
- uid: 4047
components:
- - pos: -19.5,-12.5
+ - pos: -21.5,-12.5
parent: 2
type: Transform
- uid: 4048
components:
- - pos: -24.5,-11.5
+ - pos: -20.5,-12.5
parent: 2
type: Transform
- uid: 4049
components:
- - pos: -24.5,-10.5
+ - pos: -19.5,-12.5
parent: 2
type: Transform
- uid: 4050
components:
- - pos: -24.5,-9.5
+ - pos: -24.5,-11.5
parent: 2
type: Transform
- uid: 4051
components:
- - pos: -19.5,-13.5
+ - pos: -24.5,-10.5
parent: 2
type: Transform
- uid: 4052
components:
- - pos: -19.5,-14.5
+ - pos: -24.5,-9.5
parent: 2
type: Transform
- uid: 4053
components:
- - pos: -19.5,-15.5
+ - pos: -19.5,-13.5
parent: 2
type: Transform
- uid: 4054
components:
- - pos: -19.5,-16.5
+ - pos: -19.5,-14.5
parent: 2
type: Transform
- uid: 4055
components:
- - pos: -19.5,-17.5
+ - pos: -19.5,-15.5
parent: 2
type: Transform
- uid: 4056
components:
- - pos: -19.5,-18.5
+ - pos: -19.5,-16.5
parent: 2
type: Transform
- uid: 4057
components:
- - pos: -19.5,-19.5
+ - pos: -19.5,-17.5
parent: 2
type: Transform
- uid: 4058
components:
- - pos: -19.5,-20.5
+ - pos: -19.5,-18.5
parent: 2
type: Transform
- uid: 4059
components:
- - pos: -19.5,-21.5
+ - pos: -19.5,-19.5
parent: 2
type: Transform
- uid: 4060
components:
- - pos: -19.5,-22.5
+ - pos: -19.5,-20.5
parent: 2
type: Transform
- uid: 4061
components:
- - pos: -20.5,-17.5
+ - pos: -19.5,-21.5
parent: 2
type: Transform
- uid: 4062
components:
- - pos: -21.5,-17.5
+ - pos: -19.5,-22.5
parent: 2
type: Transform
- uid: 4063
components:
- - pos: -23.5,-17.5
+ - pos: -20.5,-17.5
parent: 2
type: Transform
- uid: 4064
components:
- - pos: -24.5,-17.5
+ - pos: -21.5,-17.5
parent: 2
type: Transform
- uid: 4065
components:
- - pos: -25.5,-17.5
+ - pos: -23.5,-17.5
parent: 2
type: Transform
- uid: 4066
components:
- - pos: -26.5,-17.5
+ - pos: -24.5,-17.5
parent: 2
type: Transform
- uid: 4067
components:
- - pos: -27.5,-17.5
+ - pos: -25.5,-17.5
parent: 2
type: Transform
- uid: 4068
components:
- - pos: -28.5,-17.5
+ - pos: -26.5,-17.5
parent: 2
type: Transform
- uid: 4069
components:
- - pos: -29.5,-17.5
+ - pos: -27.5,-17.5
parent: 2
type: Transform
- uid: 4070
components:
- - pos: -20.5,-22.5
+ - pos: -28.5,-17.5
parent: 2
type: Transform
- uid: 4071
components:
- - pos: -21.5,-22.5
+ - pos: -29.5,-17.5
parent: 2
type: Transform
- uid: 4072
components:
- - pos: -22.5,-22.5
+ - pos: -20.5,-22.5
parent: 2
type: Transform
- uid: 4073
components:
- - pos: -23.5,-22.5
+ - pos: -21.5,-22.5
parent: 2
type: Transform
- uid: 4074
components:
- - pos: -24.5,-22.5
+ - pos: -22.5,-22.5
parent: 2
type: Transform
- uid: 4075
components:
- - pos: -25.5,-22.5
+ - pos: -23.5,-22.5
parent: 2
type: Transform
- uid: 4076
components:
- - pos: -26.5,-22.5
+ - pos: -24.5,-22.5
parent: 2
type: Transform
- uid: 4077
components:
- - pos: -27.5,-22.5
+ - pos: -25.5,-22.5
parent: 2
type: Transform
- uid: 4078
components:
- - pos: -28.5,-22.5
+ - pos: -26.5,-22.5
parent: 2
type: Transform
- uid: 4079
components:
- - pos: -29.5,-22.5
+ - pos: -27.5,-22.5
parent: 2
type: Transform
- uid: 4080
components:
- - pos: -19.5,-23.5
+ - pos: -28.5,-22.5
parent: 2
type: Transform
- uid: 4081
components:
- - pos: -19.5,-11.5
+ - pos: -29.5,-22.5
parent: 2
type: Transform
- uid: 4082
components:
- - pos: -19.5,-10.5
+ - pos: -19.5,-23.5
parent: 2
type: Transform
- uid: 4083
components:
- - pos: -19.5,-9.5
+ - pos: -19.5,-11.5
parent: 2
type: Transform
- uid: 4084
components:
- - pos: -19.5,-8.5
+ - pos: -19.5,-10.5
parent: 2
type: Transform
- uid: 4085
components:
- - pos: -19.5,-6.5
+ - pos: -19.5,-9.5
parent: 2
type: Transform
- uid: 4086
components:
- - pos: -19.5,-5.5
+ - pos: -19.5,-8.5
parent: 2
type: Transform
- uid: 4087
components:
- - pos: -18.5,-5.5
+ - pos: -19.5,-6.5
parent: 2
type: Transform
- uid: 4088
components:
- - pos: -17.5,-5.5
+ - pos: -19.5,-5.5
parent: 2
type: Transform
- uid: 4089
components:
- - pos: -16.5,-5.5
+ - pos: -18.5,-5.5
parent: 2
type: Transform
- uid: 4090
components:
- - pos: -15.5,-5.5
+ - pos: -17.5,-5.5
parent: 2
type: Transform
- uid: 4091
components:
- - pos: -14.5,-5.5
+ - pos: -16.5,-5.5
parent: 2
type: Transform
- uid: 4092
components:
- - pos: -13.5,-5.5
+ - pos: -15.5,-5.5
parent: 2
type: Transform
- uid: 4093
components:
- - pos: -13.5,-4.5
+ - pos: -14.5,-5.5
parent: 2
type: Transform
- uid: 4094
components:
- - pos: -13.5,3.5
+ - pos: -13.5,-5.5
parent: 2
type: Transform
- uid: 4095
components:
- - pos: -19.5,7.5
+ - pos: -13.5,-4.5
parent: 2
type: Transform
- uid: 4096
components:
- - pos: -20.5,7.5
+ - pos: -13.5,3.5
parent: 2
type: Transform
- uid: 4097
components:
- - pos: -21.5,7.5
+ - pos: -19.5,7.5
parent: 2
type: Transform
- uid: 4098
components:
- - pos: -22.5,7.5
+ - pos: -20.5,7.5
parent: 2
type: Transform
- uid: 4099
components:
- - pos: -20.5,-5.5
+ - pos: -21.5,7.5
parent: 2
type: Transform
- uid: 4100
components:
- - pos: -21.5,-5.5
+ - pos: -22.5,7.5
parent: 2
type: Transform
- uid: 4101
components:
- - pos: -22.5,-5.5
+ - pos: -20.5,-5.5
parent: 2
type: Transform
- uid: 4102
components:
- - pos: -23.5,-5.5
+ - pos: -21.5,-5.5
parent: 2
type: Transform
- uid: 4103
components:
- - pos: -24.5,-5.5
+ - pos: -22.5,-5.5
parent: 2
type: Transform
- uid: 4104
components:
- - pos: -25.5,-5.5
+ - pos: -23.5,-5.5
parent: 2
type: Transform
- uid: 4105
components:
- - pos: -25.5,-4.5
+ - pos: -24.5,-5.5
parent: 2
type: Transform
- uid: 4106
components:
- - pos: -25.5,-3.5
+ - pos: -25.5,-5.5
parent: 2
type: Transform
- uid: 4107
components:
- - pos: -25.5,-2.5
+ - pos: -25.5,-4.5
parent: 2
type: Transform
- uid: 4108
components:
- - pos: -25.5,-1.5
+ - pos: -25.5,-3.5
parent: 2
type: Transform
- uid: 4109
components:
- - pos: -25.5,-0.5
+ - pos: -25.5,-2.5
parent: 2
type: Transform
- uid: 4110
components:
- - pos: -25.5,0.5
+ - pos: -25.5,-1.5
parent: 2
type: Transform
- uid: 4111
components:
- - pos: -24.5,-9.5
+ - pos: -25.5,-0.5
parent: 2
type: Transform
- uid: 4112
components:
- - pos: -23.5,-9.5
+ - pos: -25.5,0.5
parent: 2
type: Transform
- uid: 4113
components:
- - pos: -29.5,-13.5
+ - pos: -24.5,-9.5
parent: 2
type: Transform
- uid: 4114
components:
- - pos: -29.5,-14.5
+ - pos: -23.5,-9.5
parent: 2
type: Transform
- uid: 4115
components:
- - pos: -29.5,-8.5
+ - pos: -29.5,-13.5
parent: 2
type: Transform
- uid: 4116
components:
- - pos: 45.5,18.5
+ - pos: -29.5,-14.5
parent: 2
type: Transform
- uid: 4117
components:
- - pos: 30.5,-59.5
+ - pos: -29.5,-8.5
parent: 2
type: Transform
- uid: 4118
components:
- - pos: 31.5,-59.5
+ - pos: 45.5,18.5
parent: 2
type: Transform
- uid: 4119
components:
- - pos: 32.5,-59.5
+ - pos: 30.5,-59.5
parent: 2
type: Transform
- uid: 4120
components:
- - pos: 33.5,-59.5
+ - pos: 31.5,-59.5
parent: 2
type: Transform
- uid: 4121
components:
- - pos: 34.5,-59.5
+ - pos: 32.5,-59.5
parent: 2
type: Transform
- uid: 4122
components:
- - pos: 38.5,-36.5
+ - pos: 33.5,-59.5
parent: 2
type: Transform
- uid: 4123
components:
- - pos: 38.5,-37.5
+ - pos: 34.5,-59.5
parent: 2
type: Transform
- uid: 4124
components:
- - pos: 51.5,-57.5
+ - pos: 38.5,-36.5
parent: 2
type: Transform
- uid: 4125
components:
- - pos: 51.5,-58.5
+ - pos: 38.5,-37.5
parent: 2
type: Transform
- uid: 4126
components:
- - pos: 52.5,-58.5
+ - pos: 51.5,-57.5
parent: 2
type: Transform
- uid: 4127
components:
- - pos: 53.5,-58.5
+ - pos: 51.5,-58.5
parent: 2
type: Transform
- uid: 4128
components:
- - pos: 54.5,-58.5
+ - pos: 52.5,-58.5
parent: 2
type: Transform
- uid: 4129
components:
- - pos: 55.5,-58.5
+ - pos: 53.5,-58.5
parent: 2
type: Transform
- uid: 4130
components:
- - pos: 55.5,-59.5
+ - pos: 54.5,-58.5
parent: 2
type: Transform
- uid: 4131
components:
- - pos: 55.5,-60.5
+ - pos: 55.5,-58.5
parent: 2
type: Transform
- uid: 4132
components:
- - pos: 56.5,-60.5
+ - pos: 55.5,-59.5
parent: 2
type: Transform
- uid: 4133
components:
- - pos: -35.5,-39.5
+ - pos: 55.5,-60.5
parent: 2
type: Transform
- uid: 4134
components:
- - pos: 29.5,-72.5
+ - pos: 56.5,-60.5
parent: 2
type: Transform
- uid: 4135
components:
- - pos: 47.5,-82.5
+ - pos: -35.5,-39.5
parent: 2
type: Transform
- uid: 4136
components:
- - pos: 37.5,-57.5
+ - pos: 29.5,-72.5
parent: 2
type: Transform
- uid: 4137
components:
- - pos: 37.5,-58.5
+ - pos: 47.5,-82.5
parent: 2
type: Transform
- uid: 4138
components:
- - pos: 37.5,-59.5
+ - pos: 37.5,-57.5
parent: 2
type: Transform
- uid: 4139
components:
- - pos: 38.5,-59.5
+ - pos: 37.5,-58.5
parent: 2
type: Transform
- uid: 4140
components:
- - pos: 39.5,-59.5
+ - pos: 37.5,-59.5
parent: 2
type: Transform
- uid: 4141
components:
- - pos: 40.5,-59.5
+ - pos: 38.5,-59.5
parent: 2
type: Transform
- uid: 4142
components:
- - pos: 40.5,-59.5
+ - pos: 39.5,-59.5
parent: 2
type: Transform
- uid: 4143
components:
- - pos: 40.5,-60.5
+ - pos: 40.5,-59.5
parent: 2
type: Transform
- uid: 4144
components:
- - pos: 40.5,-61.5
+ - pos: 40.5,-59.5
parent: 2
type: Transform
- uid: 4145
components:
- - pos: 40.5,-62.5
+ - pos: 40.5,-60.5
parent: 2
type: Transform
- uid: 4146
components:
- - pos: 40.5,-63.5
+ - pos: 40.5,-61.5
parent: 2
type: Transform
- uid: 4147
components:
- - pos: 40.5,-64.5
+ - pos: 40.5,-62.5
parent: 2
type: Transform
- uid: 4148
components:
- - pos: 40.5,-65.5
+ - pos: 40.5,-63.5
parent: 2
type: Transform
- uid: 4149
components:
- - pos: 40.5,-66.5
+ - pos: 40.5,-64.5
parent: 2
type: Transform
- uid: 4150
components:
- - pos: 40.5,-67.5
+ - pos: 40.5,-65.5
parent: 2
type: Transform
- uid: 4151
components:
- - pos: 40.5,-68.5
+ - pos: 40.5,-66.5
parent: 2
type: Transform
- uid: 4152
components:
- - pos: 40.5,-69.5
+ - pos: 40.5,-67.5
parent: 2
type: Transform
- uid: 4153
components:
- - pos: 40.5,-70.5
+ - pos: 40.5,-68.5
parent: 2
type: Transform
- uid: 4154
components:
- - pos: 40.5,-71.5
+ - pos: 40.5,-69.5
parent: 2
type: Transform
- uid: 4155
components:
- - pos: 40.5,-72.5
+ - pos: 40.5,-70.5
parent: 2
type: Transform
- uid: 4156
components:
- - pos: 41.5,-72.5
+ - pos: 40.5,-71.5
parent: 2
type: Transform
- uid: 4157
components:
- - pos: 42.5,-72.5
+ - pos: 40.5,-72.5
parent: 2
type: Transform
- uid: 4158
components:
- - pos: 43.5,-72.5
+ - pos: 41.5,-72.5
parent: 2
type: Transform
- uid: 4159
components:
- - pos: 44.5,-72.5
+ - pos: 42.5,-72.5
parent: 2
type: Transform
- uid: 4160
components:
- - pos: 44.5,-73.5
+ - pos: 43.5,-72.5
parent: 2
type: Transform
- uid: 4161
components:
- - pos: 44.5,-74.5
+ - pos: 44.5,-72.5
parent: 2
type: Transform
- uid: 4162
components:
- - pos: 42.5,-73.5
+ - pos: 44.5,-73.5
parent: 2
type: Transform
- uid: 4163
components:
- - pos: 42.5,-74.5
+ - pos: 44.5,-74.5
parent: 2
type: Transform
- uid: 4164
components:
- - pos: 39.5,-72.5
+ - pos: 42.5,-73.5
parent: 2
type: Transform
- uid: 4165
components:
- - pos: 38.5,-72.5
+ - pos: 42.5,-74.5
parent: 2
type: Transform
- uid: 4166
components:
- - pos: 37.5,-72.5
+ - pos: 39.5,-72.5
parent: 2
type: Transform
- uid: 4167
components:
- - pos: 36.5,-72.5
+ - pos: 38.5,-72.5
parent: 2
type: Transform
- uid: 4168
components:
- - pos: 35.5,-72.5
+ - pos: 37.5,-72.5
parent: 2
type: Transform
- uid: 4169
components:
- - pos: 34.5,-72.5
+ - pos: 36.5,-72.5
parent: 2
type: Transform
- uid: 4170
components:
- - pos: 34.5,-73.5
+ - pos: 35.5,-72.5
parent: 2
type: Transform
- uid: 4171
components:
- - pos: 34.5,-74.5
+ - pos: 34.5,-72.5
parent: 2
type: Transform
- uid: 4172
components:
- - pos: 36.5,-73.5
+ - pos: 34.5,-73.5
parent: 2
type: Transform
- uid: 4173
components:
- - pos: 36.5,-74.5
+ - pos: 34.5,-74.5
parent: 2
type: Transform
- uid: 4174
components:
- - pos: 44.5,-71.5
+ - pos: 36.5,-73.5
parent: 2
type: Transform
- uid: 4175
components:
- - pos: 44.5,-70.5
+ - pos: 36.5,-74.5
parent: 2
type: Transform
- uid: 4176
components:
- - pos: 34.5,-71.5
+ - pos: 44.5,-71.5
parent: 2
type: Transform
- uid: 4177
components:
- - pos: 34.5,-70.5
+ - pos: 44.5,-70.5
parent: 2
type: Transform
- uid: 4178
components:
- - pos: 41.5,-59.5
+ - pos: 34.5,-71.5
parent: 2
type: Transform
- uid: 4179
components:
- - pos: 42.5,-59.5
+ - pos: 34.5,-70.5
parent: 2
type: Transform
- uid: 4180
components:
- - pos: 43.5,-59.5
+ - pos: 41.5,-59.5
parent: 2
type: Transform
- uid: 4181
components:
- - pos: 39.5,-58.5
+ - pos: 42.5,-59.5
parent: 2
type: Transform
- uid: 4182
components:
- - pos: 39.5,-57.5
+ - pos: 43.5,-59.5
parent: 2
type: Transform
- uid: 4183
components:
- - pos: 39.5,-56.5
+ - pos: 39.5,-58.5
parent: 2
type: Transform
- uid: 4184
components:
- - pos: 39.5,-55.5
+ - pos: 39.5,-57.5
parent: 2
type: Transform
- uid: 4185
components:
- - pos: 39.5,-54.5
+ - pos: 39.5,-56.5
parent: 2
type: Transform
- uid: 4186
components:
- - pos: 40.5,-55.5
+ - pos: 39.5,-55.5
parent: 2
type: Transform
- uid: 4187
components:
- - pos: 36.5,-58.5
+ - pos: 39.5,-54.5
parent: 2
type: Transform
- uid: 4188
components:
- - pos: 36.5,-56.5
+ - pos: 40.5,-55.5
parent: 2
type: Transform
- uid: 4189
components:
- - pos: 36.5,-54.5
+ - pos: 36.5,-58.5
parent: 2
type: Transform
- uid: 4190
components:
- - pos: 36.5,-57.5
+ - pos: 36.5,-56.5
parent: 2
type: Transform
- uid: 4191
components:
- - pos: 36.5,-55.5
+ - pos: 36.5,-54.5
parent: 2
type: Transform
- uid: 4192
components:
- - pos: 36.5,-53.5
+ - pos: 36.5,-57.5
parent: 2
type: Transform
- uid: 4193
components:
- - pos: 36.5,-52.5
+ - pos: 36.5,-55.5
parent: 2
type: Transform
- uid: 4194
components:
- - pos: 36.5,-51.5
+ - pos: 36.5,-53.5
parent: 2
type: Transform
- uid: 4195
components:
- - pos: 37.5,-51.5
+ - pos: 36.5,-52.5
parent: 2
type: Transform
- uid: 4196
components:
- - pos: 38.5,-51.5
+ - pos: 36.5,-51.5
parent: 2
type: Transform
- uid: 4197
components:
- - pos: 39.5,-51.5
+ - pos: 37.5,-51.5
parent: 2
type: Transform
- uid: 4198
components:
- - pos: 40.5,-51.5
+ - pos: 38.5,-51.5
parent: 2
type: Transform
- uid: 4199
components:
- - pos: 40.5,-50.5
+ - pos: 39.5,-51.5
parent: 2
type: Transform
- uid: 4200
components:
- - pos: 40.5,-49.5
+ - pos: 40.5,-51.5
parent: 2
type: Transform
- uid: 4201
components:
- - pos: 39.5,-49.5
+ - pos: 40.5,-50.5
parent: 2
type: Transform
- uid: 4202
components:
- - pos: 39.5,-48.5
+ - pos: 40.5,-49.5
parent: 2
type: Transform
- uid: 4203
components:
- - pos: 38.5,-48.5
+ - pos: 39.5,-49.5
parent: 2
type: Transform
- uid: 4204
components:
- - pos: 41.5,-51.5
+ - pos: 39.5,-48.5
parent: 2
type: Transform
- uid: 4205
components:
- - pos: 42.5,-51.5
+ - pos: 38.5,-48.5
parent: 2
type: Transform
- uid: 4206
components:
- - pos: 43.5,-51.5
+ - pos: 41.5,-51.5
parent: 2
type: Transform
- uid: 4207
components:
- - pos: 43.5,-52.5
+ - pos: 42.5,-51.5
parent: 2
type: Transform
- uid: 4208
components:
- - pos: 43.5,-53.5
+ - pos: 43.5,-51.5
parent: 2
type: Transform
- uid: 4209
components:
- - pos: 43.5,-54.5
+ - pos: 43.5,-52.5
parent: 2
type: Transform
- uid: 4210
components:
- - pos: 31.5,-72.5
+ - pos: 43.5,-53.5
parent: 2
type: Transform
- uid: 4211
components:
- - pos: 27.5,-72.5
+ - pos: 43.5,-54.5
parent: 2
type: Transform
- uid: 4212
components:
- - pos: 28.5,-72.5
+ - pos: 31.5,-72.5
parent: 2
type: Transform
- uid: 4213
components:
- - pos: 22.5,-83.5
+ - pos: 27.5,-72.5
parent: 2
type: Transform
- uid: 4214
components:
- - pos: 23.5,-72.5
+ - pos: 28.5,-72.5
parent: 2
type: Transform
- uid: 4215
components:
- - pos: 25.5,-70.5
+ - pos: 22.5,-83.5
parent: 2
type: Transform
- uid: 4216
components:
- - pos: 25.5,-69.5
+ - pos: 23.5,-72.5
parent: 2
type: Transform
- uid: 4217
components:
- - pos: 13.5,-83.5
+ - pos: 25.5,-70.5
parent: 2
type: Transform
- uid: 4218
components:
- - pos: 26.5,-72.5
+ - pos: 25.5,-69.5
parent: 2
type: Transform
- uid: 4219
components:
- - pos: 25.5,-72.5
+ - pos: 13.5,-83.5
parent: 2
type: Transform
- uid: 4220
components:
- - pos: 25.5,-71.5
+ - pos: 26.5,-72.5
parent: 2
type: Transform
- uid: 4221
components:
- - pos: 20.5,-83.5
+ - pos: 25.5,-72.5
parent: 2
type: Transform
- uid: 4222
components:
- - pos: 18.5,-83.5
+ - pos: 25.5,-71.5
parent: 2
type: Transform
- uid: 4223
components:
- - pos: 24.5,-72.5
+ - pos: 20.5,-83.5
parent: 2
type: Transform
- uid: 4224
components:
- - pos: 13.5,-86.5
+ - pos: 18.5,-83.5
parent: 2
type: Transform
- uid: 4225
components:
- - pos: 21.5,-83.5
+ - pos: 24.5,-72.5
parent: 2
type: Transform
- uid: 4226
components:
- - pos: 14.5,-81.5
+ - pos: 13.5,-86.5
parent: 2
type: Transform
- uid: 4227
components:
- - pos: 12.5,-81.5
+ - pos: 21.5,-83.5
parent: 2
type: Transform
- uid: 4228
components:
- - pos: 17.5,-81.5
+ - pos: 14.5,-81.5
parent: 2
type: Transform
- uid: 4229
components:
- - pos: 14.5,-86.5
+ - pos: 12.5,-81.5
parent: 2
type: Transform
- uid: 4230
components:
- - pos: 10.5,-70.5
+ - pos: 17.5,-81.5
parent: 2
type: Transform
- uid: 4231
components:
- - pos: 32.5,-72.5
+ - pos: 14.5,-86.5
parent: 2
type: Transform
- uid: 4232
components:
- - pos: 30.5,-75.5
+ - pos: 10.5,-70.5
parent: 2
type: Transform
- uid: 4233
components:
- - pos: 30.5,-73.5
+ - pos: 32.5,-72.5
parent: 2
type: Transform
- uid: 4234
components:
- - pos: 30.5,-76.5
+ - pos: 30.5,-75.5
parent: 2
type: Transform
- uid: 4235
components:
- - pos: 30.5,-74.5
+ - pos: 30.5,-73.5
parent: 2
type: Transform
- uid: 4236
components:
- - pos: 33.5,-72.5
+ - pos: 30.5,-76.5
parent: 2
type: Transform
- uid: 4237
components:
- - pos: 48.5,-73.5
+ - pos: 30.5,-74.5
parent: 2
type: Transform
- uid: 4238
components:
- - pos: 42.5,-75.5
+ - pos: 33.5,-72.5
parent: 2
type: Transform
- uid: 4239
components:
- - pos: 36.5,-75.5
+ - pos: 48.5,-73.5
parent: 2
type: Transform
- uid: 4240
components:
- - pos: 30.5,-78.5
+ - pos: 42.5,-75.5
parent: 2
type: Transform
- uid: 4241
components:
- - pos: 46.5,-82.5
+ - pos: 36.5,-75.5
parent: 2
type: Transform
- uid: 4242
components:
- - pos: 48.5,-91.5
+ - pos: 30.5,-78.5
parent: 2
type: Transform
- uid: 4243
components:
- - pos: 21.5,-73.5
+ - pos: 46.5,-82.5
parent: 2
type: Transform
- uid: 4244
components:
- - pos: 20.5,-73.5
+ - pos: 48.5,-91.5
parent: 2
type: Transform
- uid: 4245
components:
- - pos: 19.5,-73.5
+ - pos: 21.5,-73.5
parent: 2
type: Transform
- uid: 4246
components:
- - pos: 18.5,-73.5
+ - pos: 20.5,-73.5
parent: 2
type: Transform
- uid: 4247
components:
- - pos: 17.5,-73.5
+ - pos: 19.5,-73.5
parent: 2
type: Transform
- uid: 4248
components:
- - pos: 16.5,-73.5
+ - pos: 18.5,-73.5
parent: 2
type: Transform
- uid: 4249
components:
- - pos: 15.5,-73.5
+ - pos: 17.5,-73.5
parent: 2
type: Transform
- uid: 4250
components:
- - pos: 14.5,-73.5
+ - pos: 16.5,-73.5
parent: 2
type: Transform
- uid: 4251
components:
- - pos: 13.5,-73.5
+ - pos: 15.5,-73.5
parent: 2
type: Transform
- uid: 4252
components:
- - pos: 12.5,-73.5
+ - pos: 14.5,-73.5
parent: 2
type: Transform
- uid: 4253
components:
- - pos: 11.5,-73.5
+ - pos: 13.5,-73.5
parent: 2
type: Transform
- uid: 4254
components:
- - pos: 11.5,-72.5
+ - pos: 12.5,-73.5
parent: 2
type: Transform
- uid: 4255
components:
- - pos: 11.5,-71.5
+ - pos: 11.5,-73.5
parent: 2
type: Transform
- uid: 4256
components:
- - pos: 11.5,-70.5
+ - pos: 11.5,-72.5
parent: 2
type: Transform
- uid: 4257
components:
- - pos: 19.5,-83.5
+ - pos: 11.5,-71.5
parent: 2
type: Transform
- uid: 4258
components:
- - pos: 48.5,-89.5
+ - pos: 11.5,-70.5
parent: 2
type: Transform
- uid: 4259
components:
- - pos: 23.5,-83.5
+ - pos: 19.5,-83.5
parent: 2
type: Transform
- uid: 4260
components:
- - pos: 9.5,-70.5
+ - pos: 48.5,-89.5
parent: 2
type: Transform
- uid: 4261
components:
- - pos: 16.5,-86.5
+ - pos: 23.5,-83.5
parent: 2
type: Transform
- uid: 4262
components:
- - pos: 15.5,-86.5
+ - pos: 9.5,-70.5
parent: 2
type: Transform
- uid: 4263
components:
- - pos: 12.5,-86.5
+ - pos: 16.5,-86.5
parent: 2
type: Transform
- uid: 4264
components:
- - pos: 17.5,-86.5
+ - pos: 15.5,-86.5
parent: 2
type: Transform
- uid: 4265
components:
- - pos: -13.5,-26.5
+ - pos: 12.5,-86.5
parent: 2
type: Transform
- uid: 4266
components:
- - pos: -14.5,-26.5
+ - pos: 17.5,-86.5
parent: 2
type: Transform
- uid: 4267
components:
- - pos: -15.5,-26.5
+ - pos: -13.5,-26.5
parent: 2
type: Transform
- uid: 4268
components:
- - pos: -16.5,-26.5
+ - pos: -14.5,-26.5
parent: 2
type: Transform
- uid: 4269
components:
- - pos: -17.5,-26.5
+ - pos: -15.5,-26.5
parent: 2
type: Transform
- uid: 4270
components:
- - pos: -18.5,-26.5
+ - pos: -16.5,-26.5
parent: 2
type: Transform
- uid: 4271
components:
- - pos: -19.5,-26.5
+ - pos: -17.5,-26.5
parent: 2
type: Transform
- uid: 4272
components:
- - pos: -19.5,-27.5
+ - pos: -18.5,-26.5
parent: 2
type: Transform
- uid: 4273
components:
- - pos: -19.5,-28.5
+ - pos: -19.5,-26.5
parent: 2
type: Transform
- uid: 4274
components:
- - pos: -19.5,-29.5
+ - pos: -19.5,-27.5
parent: 2
type: Transform
- uid: 4275
components:
- - pos: -19.5,-30.5
+ - pos: -19.5,-28.5
parent: 2
type: Transform
- uid: 4276
components:
- - pos: -19.5,-31.5
+ - pos: -19.5,-29.5
parent: 2
type: Transform
- uid: 4277
components:
- - pos: -19.5,-32.5
+ - pos: -19.5,-30.5
parent: 2
type: Transform
- uid: 4278
components:
- - pos: -19.5,-33.5
+ - pos: -19.5,-31.5
parent: 2
type: Transform
- uid: 4279
components:
- - pos: -19.5,-34.5
+ - pos: -19.5,-32.5
parent: 2
type: Transform
- uid: 4280
components:
- - pos: -19.5,-35.5
+ - pos: -19.5,-33.5
parent: 2
type: Transform
- uid: 4281
components:
- - pos: -19.5,-36.5
+ - pos: -19.5,-34.5
parent: 2
type: Transform
- uid: 4282
components:
- - pos: -19.5,-37.5
+ - pos: -19.5,-35.5
parent: 2
type: Transform
- uid: 4283
components:
- - pos: -20.5,-26.5
+ - pos: -19.5,-36.5
parent: 2
type: Transform
- uid: 4284
components:
- - pos: -18.5,-29.5
+ - pos: -19.5,-37.5
parent: 2
type: Transform
- uid: 4285
components:
- - pos: -13.5,-42.5
+ - pos: -20.5,-26.5
parent: 2
type: Transform
- uid: 4286
components:
- - pos: -14.5,-42.5
+ - pos: -18.5,-29.5
parent: 2
type: Transform
- uid: 4287
components:
- - pos: -15.5,-42.5
+ - pos: -13.5,-42.5
parent: 2
type: Transform
- uid: 4288
components:
- - pos: -16.5,-42.5
+ - pos: -14.5,-42.5
parent: 2
type: Transform
- uid: 4289
components:
- - pos: -17.5,-42.5
+ - pos: -15.5,-42.5
parent: 2
type: Transform
- uid: 4290
components:
- - pos: -18.5,-42.5
+ - pos: -16.5,-42.5
parent: 2
type: Transform
- uid: 4291
components:
- - pos: -19.5,-42.5
+ - pos: -17.5,-42.5
parent: 2
type: Transform
- uid: 4292
components:
- - pos: -19.5,-43.5
+ - pos: -18.5,-42.5
parent: 2
type: Transform
- uid: 4293
components:
- - pos: -19.5,-44.5
+ - pos: -19.5,-42.5
parent: 2
type: Transform
- uid: 4294
components:
- - pos: -19.5,-45.5
+ - pos: -19.5,-43.5
parent: 2
type: Transform
- uid: 4295
components:
- - pos: -19.5,-46.5
+ - pos: -19.5,-44.5
parent: 2
type: Transform
- uid: 4296
components:
- - pos: -19.5,-47.5
+ - pos: -19.5,-45.5
parent: 2
type: Transform
- uid: 4297
components:
- - pos: -20.5,-46.5
+ - pos: -19.5,-46.5
parent: 2
type: Transform
- uid: 4298
components:
- - pos: -19.5,-48.5
+ - pos: -19.5,-47.5
parent: 2
type: Transform
- uid: 4299
components:
- - pos: -20.5,-42.5
+ - pos: -20.5,-46.5
parent: 2
type: Transform
- uid: 4300
components:
- - pos: -19.5,-41.5
+ - pos: -19.5,-48.5
parent: 2
type: Transform
- uid: 4301
components:
- - pos: 30.5,-89.5
+ - pos: -20.5,-42.5
parent: 2
type: Transform
- uid: 4302
components:
- - pos: 48.5,-72.5
+ - pos: -19.5,-41.5
parent: 2
type: Transform
- uid: 4303
components:
- - pos: 30.5,-90.5
+ - pos: 30.5,-89.5
parent: 2
type: Transform
- uid: 4304
components:
- - pos: -37.5,-14.5
+ - pos: 48.5,-72.5
parent: 2
type: Transform
- uid: 4305
components:
- - pos: -29.5,-21.5
+ - pos: 30.5,-90.5
parent: 2
type: Transform
- uid: 4306
components:
- - pos: -30.5,-21.5
+ - pos: -37.5,-14.5
parent: 2
type: Transform
- uid: 4307
components:
- - pos: -31.5,-21.5
+ - pos: -29.5,-21.5
parent: 2
type: Transform
- uid: 4308
components:
- - pos: -32.5,-21.5
+ - pos: -30.5,-21.5
parent: 2
type: Transform
- uid: 4309
components:
- - pos: -32.5,-20.5
+ - pos: -31.5,-21.5
parent: 2
type: Transform
- uid: 4310
components:
- - pos: -32.5,-19.5
+ - pos: -32.5,-21.5
parent: 2
type: Transform
- uid: 4311
components:
- - pos: -32.5,-18.5
+ - pos: -32.5,-20.5
parent: 2
type: Transform
- uid: 4312
components:
- - pos: -32.5,-17.5
+ - pos: -32.5,-19.5
parent: 2
type: Transform
- uid: 4313
components:
- - pos: -32.5,-16.5
+ - pos: -32.5,-18.5
parent: 2
type: Transform
- uid: 4314
components:
- - pos: -32.5,-15.5
+ - pos: -32.5,-17.5
parent: 2
type: Transform
- uid: 4315
components:
- - pos: -32.5,-14.5
+ - pos: -32.5,-16.5
parent: 2
type: Transform
- uid: 4316
components:
- - pos: -32.5,-13.5
+ - pos: -32.5,-15.5
parent: 2
type: Transform
- uid: 4317
components:
- - pos: -32.5,-12.5
+ - pos: -32.5,-14.5
parent: 2
type: Transform
- uid: 4318
components:
- - pos: -32.5,-11.5
+ - pos: -32.5,-13.5
parent: 2
type: Transform
- uid: 4319
components:
- - pos: -32.5,-10.5
+ - pos: -32.5,-12.5
parent: 2
type: Transform
- uid: 4320
components:
- - pos: -38.5,-7.5
+ - pos: -32.5,-11.5
parent: 2
type: Transform
- uid: 4321
components:
- - pos: -31.5,-17.5
+ - pos: -32.5,-10.5
parent: 2
type: Transform
- uid: 4322
components:
- - pos: -33.5,-10.5
+ - pos: -38.5,-7.5
parent: 2
type: Transform
- uid: 4323
components:
- - pos: -34.5,-10.5
+ - pos: -31.5,-17.5
parent: 2
type: Transform
- uid: 4324
components:
- - pos: -35.5,-10.5
+ - pos: -33.5,-10.5
parent: 2
type: Transform
- uid: 4325
components:
- - pos: -36.5,-10.5
+ - pos: -34.5,-10.5
parent: 2
type: Transform
- uid: 4326
components:
- - pos: -37.5,-10.5
+ - pos: -35.5,-10.5
parent: 2
type: Transform
- uid: 4327
components:
- - pos: -38.5,-10.5
+ - pos: -36.5,-10.5
parent: 2
type: Transform
- uid: 4328
components:
- - pos: -39.5,-10.5
+ - pos: -37.5,-10.5
parent: 2
type: Transform
- uid: 4329
components:
- - pos: -37.5,-11.5
+ - pos: -38.5,-10.5
parent: 2
type: Transform
- uid: 4330
components:
- - pos: -37.5,-12.5
+ - pos: -39.5,-10.5
parent: 2
type: Transform
- uid: 4331
components:
- - pos: -37.5,-13.5
+ - pos: -37.5,-11.5
parent: 2
type: Transform
- uid: 4332
components:
- - pos: -38.5,-9.5
+ - pos: -37.5,-12.5
parent: 2
type: Transform
- uid: 4333
components:
- - pos: -35.5,-9.5
+ - pos: -37.5,-13.5
parent: 2
type: Transform
- uid: 4334
components:
- - pos: -38.5,-84.5
+ - pos: -38.5,-9.5
parent: 2
type: Transform
- uid: 4335
components:
- - pos: -33.5,-16.5
+ - pos: -35.5,-9.5
parent: 2
type: Transform
- uid: 4336
components:
- - pos: -34.5,-16.5
+ - pos: -38.5,-84.5
parent: 2
type: Transform
- uid: 4337
components:
- - pos: -35.5,-16.5
+ - pos: -33.5,-16.5
parent: 2
type: Transform
- uid: 4338
components:
- - pos: -36.5,-16.5
+ - pos: -34.5,-16.5
parent: 2
type: Transform
- uid: 4339
components:
- - pos: -36.5,-17.5
+ - pos: -35.5,-16.5
parent: 2
type: Transform
- uid: 4340
components:
- - pos: -35.5,-11.5
+ - pos: -36.5,-16.5
parent: 2
type: Transform
- uid: 4341
components:
- - pos: -35.5,-12.5
+ - pos: -36.5,-17.5
parent: 2
type: Transform
- uid: 4342
components:
- - pos: -32.5,-22.5
+ - pos: -35.5,-11.5
parent: 2
type: Transform
- uid: 4343
components:
- - pos: -32.5,-23.5
+ - pos: -35.5,-12.5
parent: 2
type: Transform
- uid: 4344
components:
- - pos: -32.5,-24.5
+ - pos: -32.5,-22.5
parent: 2
type: Transform
- uid: 4345
components:
- - pos: -32.5,-25.5
+ - pos: -32.5,-23.5
parent: 2
type: Transform
- uid: 4346
components:
- - pos: -32.5,-26.5
+ - pos: -32.5,-24.5
parent: 2
type: Transform
- uid: 4347
components:
- - pos: -32.5,-27.5
+ - pos: -32.5,-25.5
parent: 2
type: Transform
- uid: 4348
components:
- - pos: -32.5,-28.5
+ - pos: -32.5,-26.5
parent: 2
type: Transform
- uid: 4349
components:
- - pos: -40.5,-10.5
+ - pos: -32.5,-27.5
parent: 2
type: Transform
- uid: 4350
components:
- - pos: -41.5,-10.5
+ - pos: -32.5,-28.5
parent: 2
type: Transform
- uid: 4351
components:
- - pos: -41.5,-11.5
+ - pos: -40.5,-10.5
parent: 2
type: Transform
- uid: 4352
components:
- - pos: -41.5,-12.5
+ - pos: -41.5,-10.5
parent: 2
type: Transform
- uid: 4353
components:
- - pos: -41.5,-13.5
+ - pos: -41.5,-11.5
parent: 2
type: Transform
- uid: 4354
components:
- - pos: -41.5,-14.5
+ - pos: -41.5,-12.5
parent: 2
type: Transform
- uid: 4355
components:
- - pos: -41.5,-15.5
+ - pos: -41.5,-13.5
parent: 2
type: Transform
- uid: 4356
components:
- - pos: -41.5,-16.5
+ - pos: -41.5,-14.5
parent: 2
type: Transform
- uid: 4357
components:
- - pos: -40.5,-16.5
+ - pos: -41.5,-15.5
parent: 2
type: Transform
- uid: 4358
components:
- - pos: -31.5,-26.5
+ - pos: -41.5,-16.5
parent: 2
type: Transform
- uid: 4359
components:
- - pos: -30.5,-26.5
+ - pos: -40.5,-16.5
parent: 2
type: Transform
- uid: 4360
components:
- - pos: -29.5,-26.5
+ - pos: -31.5,-26.5
parent: 2
type: Transform
- uid: 4361
components:
- - pos: -28.5,-26.5
+ - pos: -30.5,-26.5
parent: 2
type: Transform
- uid: 4362
components:
- - pos: -27.5,-26.5
+ - pos: -29.5,-26.5
parent: 2
type: Transform
- uid: 4363
components:
- - pos: -26.5,-26.5
+ - pos: -28.5,-26.5
parent: 2
type: Transform
- uid: 4364
components:
- - pos: -25.5,-26.5
+ - pos: -27.5,-26.5
parent: 2
type: Transform
- uid: 4365
components:
- - pos: 3.5,-49.5
+ - pos: -26.5,-26.5
parent: 2
type: Transform
- uid: 4366
components:
- - pos: 3.5,-50.5
+ - pos: -25.5,-26.5
parent: 2
type: Transform
- uid: 4367
components:
- - pos: -18.5,14.5
+ - pos: 3.5,-49.5
parent: 2
type: Transform
- uid: 4368
components:
- - pos: -18.5,13.5
+ - pos: 3.5,-50.5
parent: 2
type: Transform
- uid: 4369
components:
- - pos: -18.5,12.5
+ - pos: -18.5,14.5
parent: 2
type: Transform
- uid: 4370
components:
- - pos: -18.5,11.5
+ - pos: -18.5,13.5
parent: 2
type: Transform
- uid: 4371
components:
- - pos: -18.5,10.5
+ - pos: -18.5,12.5
parent: 2
type: Transform
- uid: 4372
components:
- - pos: -18.5,9.5
+ - pos: -18.5,11.5
parent: 2
type: Transform
- uid: 4373
components:
- - pos: -18.5,8.5
+ - pos: -18.5,10.5
parent: 2
type: Transform
- uid: 4374
components:
- - pos: -18.5,7.5
+ - pos: -18.5,9.5
parent: 2
type: Transform
- uid: 4375
components:
- - pos: -17.5,7.5
+ - pos: -18.5,8.5
parent: 2
type: Transform
- uid: 4376
components:
- - pos: -16.5,7.5
+ - pos: -18.5,7.5
parent: 2
type: Transform
- uid: 4377
components:
- - pos: -15.5,7.5
+ - pos: -17.5,7.5
parent: 2
type: Transform
- uid: 4378
components:
- - pos: -14.5,7.5
+ - pos: -16.5,7.5
parent: 2
type: Transform
- uid: 4379
components:
- - pos: -13.5,7.5
+ - pos: -15.5,7.5
parent: 2
type: Transform
- uid: 4380
components:
- - pos: -12.5,7.5
+ - pos: -14.5,7.5
parent: 2
type: Transform
- uid: 4381
components:
- - pos: -12.5,6.5
+ - pos: -13.5,7.5
parent: 2
type: Transform
- uid: 4382
components:
- - pos: -12.5,5.5
+ - pos: -12.5,7.5
parent: 2
type: Transform
- uid: 4383
components:
- - pos: -12.5,4.5
+ - pos: -12.5,6.5
parent: 2
type: Transform
- uid: 4384
components:
- - pos: -12.5,3.5
+ - pos: -12.5,5.5
parent: 2
type: Transform
- uid: 4385
components:
- - pos: -12.5,2.5
+ - pos: -12.5,4.5
parent: 2
type: Transform
- uid: 4386
components:
- - pos: -12.5,1.5
+ - pos: -12.5,3.5
parent: 2
type: Transform
- uid: 4387
components:
- - pos: -12.5,0.5
+ - pos: -12.5,2.5
parent: 2
type: Transform
- uid: 4388
components:
- - pos: -12.5,-0.5
+ - pos: -12.5,1.5
parent: 2
type: Transform
- uid: 4389
components:
- - pos: -12.5,-1.5
+ - pos: -12.5,0.5
parent: 2
type: Transform
- uid: 4390
components:
- - pos: -12.5,-2.5
+ - pos: -12.5,-0.5
parent: 2
type: Transform
- uid: 4391
components:
- - pos: -13.5,-2.5
+ - pos: -12.5,-1.5
parent: 2
type: Transform
- uid: 4392
components:
- - pos: -12.5,-4.5
+ - pos: -12.5,-2.5
parent: 2
type: Transform
- uid: 4393
components:
- - pos: -23.5,7.5
+ - pos: -13.5,-2.5
parent: 2
type: Transform
- uid: 4394
components:
- - pos: -24.5,7.5
+ - pos: -12.5,-4.5
parent: 2
type: Transform
- uid: 4395
components:
- - pos: -25.5,7.5
+ - pos: -23.5,7.5
parent: 2
type: Transform
- uid: 4396
components:
- - pos: -25.5,6.5
+ - pos: -24.5,7.5
parent: 2
type: Transform
- uid: 4397
components:
- - pos: -25.5,5.5
+ - pos: -25.5,7.5
parent: 2
type: Transform
- uid: 4398
components:
- - pos: -25.5,4.5
+ - pos: -25.5,6.5
parent: 2
type: Transform
- uid: 4399
components:
- - pos: -25.5,3.5
+ - pos: -25.5,5.5
parent: 2
type: Transform
- uid: 4400
components:
- - pos: -25.5,2.5
+ - pos: -25.5,4.5
parent: 2
type: Transform
- uid: 4401
components:
- - pos: -16.5,10.5
+ - pos: -25.5,3.5
parent: 2
type: Transform
- uid: 4402
components:
- - pos: -15.5,10.5
+ - pos: -25.5,2.5
parent: 2
type: Transform
- uid: 4403
components:
- - pos: -14.5,10.5
+ - pos: -16.5,10.5
parent: 2
type: Transform
- uid: 4404
components:
- - pos: -14.5,11.5
+ - pos: -15.5,10.5
parent: 2
type: Transform
- uid: 4405
components:
- - pos: -14.5,12.5
+ - pos: -14.5,10.5
parent: 2
type: Transform
- uid: 4406
components:
- - pos: -14.5,13.5
+ - pos: -14.5,11.5
parent: 2
type: Transform
- uid: 4407
components:
- - pos: -14.5,14.5
+ - pos: -14.5,12.5
parent: 2
type: Transform
- uid: 4408
components:
- - pos: -14.5,15.5
+ - pos: -14.5,13.5
parent: 2
type: Transform
- uid: 4409
components:
- - pos: -13.5,15.5
+ - pos: -14.5,14.5
parent: 2
type: Transform
- uid: 4410
components:
- - pos: -12.5,15.5
+ - pos: -14.5,15.5
parent: 2
type: Transform
- uid: 4411
components:
- - pos: -11.5,15.5
+ - pos: -13.5,15.5
parent: 2
type: Transform
- uid: 4412
components:
- - pos: -10.5,15.5
+ - pos: -12.5,15.5
parent: 2
type: Transform
- uid: 4413
components:
- - pos: -8.5,16.5
+ - pos: -11.5,15.5
parent: 2
type: Transform
- uid: 4414
components:
- - pos: -7.5,16.5
+ - pos: -10.5,15.5
parent: 2
type: Transform
- uid: 4415
components:
- - pos: -6.5,16.5
+ - pos: -8.5,16.5
parent: 2
type: Transform
- uid: 4416
components:
- - pos: -5.5,16.5
+ - pos: -7.5,16.5
parent: 2
type: Transform
- uid: 4417
components:
- - pos: -4.5,16.5
+ - pos: -6.5,16.5
parent: 2
type: Transform
- uid: 4418
components:
- - pos: -42.5,-10.5
+ - pos: -5.5,16.5
parent: 2
type: Transform
- uid: 4419
components:
- - pos: -43.5,-10.5
+ - pos: -4.5,16.5
parent: 2
type: Transform
- uid: 4420
components:
- - pos: -44.5,-10.5
+ - pos: -42.5,-10.5
parent: 2
type: Transform
- uid: 4421
components:
- - pos: -45.5,-10.5
+ - pos: -43.5,-10.5
parent: 2
type: Transform
- uid: 4422
components:
- - pos: -46.5,-10.5
+ - pos: -44.5,-10.5
parent: 2
type: Transform
- uid: 4423
components:
- - pos: -46.5,-9.5
+ - pos: -45.5,-10.5
parent: 2
type: Transform
- uid: 4424
components:
- - pos: -46.5,-11.5
+ - pos: -46.5,-10.5
parent: 2
type: Transform
- uid: 4425
components:
- - pos: -46.5,-12.5
+ - pos: -46.5,-9.5
parent: 2
type: Transform
- uid: 4426
components:
- - pos: -46.5,-13.5
+ - pos: -46.5,-11.5
parent: 2
type: Transform
- uid: 4427
components:
- - pos: -46.5,-14.5
+ - pos: -46.5,-12.5
parent: 2
type: Transform
- uid: 4428
components:
- - pos: -46.5,-15.5
+ - pos: -46.5,-13.5
parent: 2
type: Transform
- uid: 4429
components:
- - pos: -46.5,-16.5
+ - pos: -46.5,-14.5
parent: 2
type: Transform
- uid: 4430
components:
- - pos: -47.5,-13.5
+ - pos: -46.5,-15.5
parent: 2
type: Transform
- uid: 4431
components:
- - pos: -48.5,-13.5
+ - pos: -46.5,-16.5
parent: 2
type: Transform
- uid: 4432
components:
- - pos: -49.5,-13.5
+ - pos: -47.5,-13.5
parent: 2
type: Transform
- uid: 4433
components:
- - pos: -45.5,-16.5
+ - pos: -48.5,-13.5
parent: 2
type: Transform
- uid: 4434
components:
- - pos: -45.5,-17.5
+ - pos: -49.5,-13.5
parent: 2
type: Transform
- uid: 4435
components:
- - pos: -45.5,-18.5
+ - pos: -45.5,-16.5
parent: 2
type: Transform
- uid: 4436
components:
- - pos: -45.5,-19.5
+ - pos: -45.5,-17.5
parent: 2
type: Transform
- uid: 4437
components:
- - pos: -45.5,-20.5
+ - pos: -45.5,-18.5
parent: 2
type: Transform
- uid: 4438
components:
- - pos: -45.5,-21.5
+ - pos: -45.5,-19.5
parent: 2
type: Transform
- uid: 4439
components:
- - pos: -46.5,-20.5
+ - pos: -45.5,-20.5
parent: 2
type: Transform
- uid: 4440
components:
- - pos: -47.5,-20.5
+ - pos: -45.5,-21.5
parent: 2
type: Transform
- uid: 4441
components:
- - pos: -47.5,-21.5
+ - pos: -46.5,-20.5
parent: 2
type: Transform
- uid: 4442
components:
- - pos: -45.5,-22.5
+ - pos: -47.5,-20.5
parent: 2
type: Transform
- uid: 4443
components:
- - pos: -48.5,-22.5
+ - pos: -47.5,-21.5
parent: 2
type: Transform
- uid: 4444
components:
- - pos: -47.5,-22.5
+ - pos: -45.5,-22.5
parent: 2
type: Transform
- uid: 4445
components:
- - pos: -38.5,-8.5
+ - pos: -48.5,-22.5
parent: 2
type: Transform
- uid: 4446
components:
- - pos: -35.5,-7.5
+ - pos: -47.5,-22.5
parent: 2
type: Transform
- uid: 4447
components:
- - pos: -35.5,-8.5
+ - pos: -38.5,-8.5
parent: 2
type: Transform
- uid: 4448
components:
- - pos: -34.5,-6.5
+ - pos: -35.5,-7.5
parent: 2
type: Transform
- uid: 4449
components:
- - pos: -35.5,-6.5
+ - pos: -35.5,-8.5
parent: 2
type: Transform
- uid: 4450
components:
- - pos: -36.5,-6.5
+ - pos: -34.5,-6.5
parent: 2
type: Transform
- uid: 4451
components:
- - pos: -37.5,-6.5
+ - pos: -35.5,-6.5
parent: 2
type: Transform
- uid: 4452
components:
- - pos: -38.5,-6.5
+ - pos: -36.5,-6.5
parent: 2
type: Transform
- uid: 4453
components:
- - pos: -39.5,-6.5
+ - pos: -37.5,-6.5
parent: 2
type: Transform
- uid: 4454
components:
- - pos: -40.5,-6.5
+ - pos: -38.5,-6.5
parent: 2
type: Transform
- uid: 4455
components:
- - pos: -41.5,-6.5
+ - pos: -39.5,-6.5
parent: 2
type: Transform
- uid: 4456
components:
- - pos: -38.5,-5.5
+ - pos: -40.5,-6.5
parent: 2
type: Transform
- uid: 4457
components:
- - pos: -55.5,-28.5
+ - pos: -41.5,-6.5
parent: 2
type: Transform
- uid: 4458
components:
- - pos: -55.5,-30.5
+ - pos: -38.5,-5.5
parent: 2
type: Transform
- uid: 4459
components:
- - pos: -57.5,-28.5
+ - pos: -55.5,-28.5
parent: 2
type: Transform
- uid: 4460
components:
- - pos: -39.5,-69.5
+ - pos: -55.5,-30.5
parent: 2
type: Transform
- uid: 4461
components:
- - pos: -39.5,-71.5
+ - pos: -57.5,-28.5
parent: 2
type: Transform
- uid: 4462
components:
- - pos: -50.5,-15.5
+ - pos: -39.5,-69.5
parent: 2
type: Transform
- uid: 4463
components:
- - pos: -50.5,-16.5
+ - pos: -39.5,-71.5
parent: 2
type: Transform
- uid: 4464
components:
- - pos: -51.5,-16.5
+ - pos: -50.5,-15.5
parent: 2
type: Transform
- uid: 4465
components:
- - pos: -51.5,-17.5
+ - pos: -50.5,-16.5
parent: 2
type: Transform
- uid: 4466
components:
- - pos: -51.5,-18.5
+ - pos: -51.5,-16.5
parent: 2
type: Transform
- uid: 4467
components:
- - pos: -51.5,-19.5
+ - pos: -51.5,-17.5
parent: 2
type: Transform
- uid: 4468
components:
- - pos: -51.5,-20.5
+ - pos: -51.5,-18.5
parent: 2
type: Transform
- uid: 4469
components:
- - pos: -52.5,-23.5
+ - pos: -51.5,-19.5
parent: 2
type: Transform
- uid: 4470
components:
- - pos: -51.5,-22.5
+ - pos: -51.5,-20.5
parent: 2
type: Transform
- uid: 4471
components:
- - pos: -51.5,-23.5
+ - pos: -52.5,-23.5
parent: 2
type: Transform
- uid: 4472
components:
- - pos: -51.5,-24.5
+ - pos: -51.5,-22.5
parent: 2
type: Transform
- uid: 4473
components:
- - pos: -51.5,-25.5
+ - pos: -51.5,-23.5
parent: 2
type: Transform
- uid: 4474
components:
- - pos: -50.5,-25.5
+ - pos: -51.5,-24.5
parent: 2
type: Transform
- uid: 4475
components:
- - pos: -52.5,-19.5
+ - pos: -51.5,-25.5
parent: 2
type: Transform
- uid: 4476
components:
- - pos: -53.5,-19.5
+ - pos: -50.5,-25.5
parent: 2
type: Transform
- uid: 4477
components:
- - pos: -54.5,-19.5
+ - pos: -52.5,-19.5
parent: 2
type: Transform
- uid: 4478
components:
- - pos: -54.5,-20.5
+ - pos: -53.5,-19.5
parent: 2
type: Transform
- uid: 4479
components:
- - pos: -54.5,-21.5
+ - pos: -54.5,-19.5
parent: 2
type: Transform
- uid: 4480
components:
- - pos: -54.5,-22.5
+ - pos: -54.5,-20.5
parent: 2
type: Transform
- uid: 4481
components:
- - pos: -54.5,-23.5
+ - pos: -54.5,-21.5
parent: 2
type: Transform
- uid: 4482
components:
- - pos: -54.5,-24.5
+ - pos: -54.5,-22.5
parent: 2
type: Transform
- uid: 4483
components:
- - pos: -55.5,-24.5
+ - pos: -54.5,-23.5
parent: 2
type: Transform
- uid: 4484
components:
- - pos: -56.5,-24.5
+ - pos: -54.5,-24.5
parent: 2
type: Transform
- uid: 4485
components:
- - pos: -57.5,-24.5
+ - pos: -55.5,-24.5
parent: 2
type: Transform
- uid: 4486
components:
- - pos: -58.5,-24.5
+ - pos: -56.5,-24.5
parent: 2
type: Transform
- uid: 4487
components:
- - pos: -59.5,-24.5
+ - pos: -57.5,-24.5
parent: 2
type: Transform
- uid: 4488
components:
- - pos: -60.5,-24.5
+ - pos: -58.5,-24.5
parent: 2
type: Transform
- uid: 4489
components:
- - pos: -61.5,-24.5
+ - pos: -59.5,-24.5
parent: 2
type: Transform
- uid: 4490
components:
- - pos: -62.5,-24.5
+ - pos: -60.5,-24.5
parent: 2
type: Transform
- uid: 4491
components:
- - pos: -63.5,-24.5
+ - pos: -61.5,-24.5
parent: 2
type: Transform
- uid: 4492
components:
- - pos: -64.5,-24.5
+ - pos: -62.5,-24.5
parent: 2
type: Transform
- uid: 4493
components:
- - pos: -64.5,-25.5
+ - pos: -63.5,-24.5
parent: 2
type: Transform
- uid: 4494
components:
- - pos: -64.5,-26.5
+ - pos: -64.5,-24.5
parent: 2
type: Transform
- uid: 4495
components:
- - pos: -64.5,-27.5
+ - pos: -64.5,-25.5
parent: 2
type: Transform
- uid: 4496
components:
- - pos: -64.5,-28.5
+ - pos: -64.5,-26.5
parent: 2
type: Transform
- uid: 4497
components:
- - pos: -64.5,-29.5
+ - pos: -64.5,-27.5
parent: 2
type: Transform
- uid: 4498
components:
- - pos: -64.5,-30.5
+ - pos: -64.5,-28.5
parent: 2
type: Transform
- uid: 4499
components:
- - pos: -65.5,-30.5
+ - pos: -64.5,-29.5
parent: 2
type: Transform
- uid: 4500
components:
- - pos: -66.5,-30.5
+ - pos: -64.5,-30.5
parent: 2
type: Transform
- uid: 4501
components:
- - pos: -67.5,-30.5
+ - pos: -65.5,-30.5
parent: 2
type: Transform
- uid: 4502
components:
- - pos: -68.5,-30.5
+ - pos: -66.5,-30.5
parent: 2
type: Transform
- uid: 4503
components:
- - pos: -65.5,-30.5
+ - pos: -67.5,-30.5
parent: 2
type: Transform
- uid: 4504
components:
- - pos: -65.5,-31.5
+ - pos: -68.5,-30.5
parent: 2
type: Transform
- uid: 4505
components:
- - pos: -65.5,-32.5
+ - pos: -65.5,-30.5
parent: 2
type: Transform
- uid: 4506
components:
- - pos: -68.5,-31.5
+ - pos: -65.5,-31.5
parent: 2
type: Transform
- uid: 4507
components:
- - pos: -68.5,-28.5
+ - pos: -65.5,-32.5
parent: 2
type: Transform
- uid: 4508
components:
- - pos: -68.5,-27.5
+ - pos: -68.5,-31.5
parent: 2
type: Transform
- uid: 4509
components:
- - pos: -68.5,-26.5
+ - pos: -68.5,-28.5
parent: 2
type: Transform
- uid: 4510
components:
- - pos: -68.5,-29.5
+ - pos: -68.5,-27.5
parent: 2
type: Transform
- uid: 4511
components:
- - pos: -54.5,-18.5
+ - pos: -68.5,-26.5
parent: 2
type: Transform
- uid: 4512
components:
- - pos: -54.5,-17.5
+ - pos: -68.5,-29.5
parent: 2
type: Transform
- uid: 4513
components:
- - pos: -54.5,-16.5
+ - pos: -54.5,-18.5
parent: 2
type: Transform
- uid: 4514
components:
- - pos: -54.5,-15.5
+ - pos: -54.5,-17.5
parent: 2
type: Transform
- uid: 4515
components:
- - pos: -54.5,-14.5
+ - pos: -54.5,-16.5
parent: 2
type: Transform
- uid: 4516
components:
- - pos: -54.5,-13.5
+ - pos: -54.5,-15.5
parent: 2
type: Transform
- uid: 4517
components:
- - pos: -54.5,-12.5
+ - pos: -54.5,-14.5
parent: 2
type: Transform
- uid: 4518
components:
- - pos: -54.5,-11.5
+ - pos: -54.5,-13.5
parent: 2
type: Transform
- uid: 4519
components:
- - pos: -54.5,-10.5
+ - pos: -54.5,-12.5
parent: 2
type: Transform
- uid: 4520
components:
- - pos: -54.5,-9.5
+ - pos: -54.5,-11.5
parent: 2
type: Transform
- uid: 4521
components:
- - pos: -54.5,-8.5
+ - pos: -54.5,-10.5
parent: 2
type: Transform
- uid: 4522
components:
- - pos: -54.5,-7.5
+ - pos: -54.5,-9.5
parent: 2
type: Transform
- uid: 4523
components:
- - pos: -54.5,-6.5
+ - pos: -54.5,-8.5
parent: 2
type: Transform
- uid: 4524
components:
- - pos: -53.5,-7.5
+ - pos: -54.5,-7.5
parent: 2
type: Transform
- uid: 4525
components:
- - pos: -52.5,-7.5
+ - pos: -54.5,-6.5
parent: 2
type: Transform
- uid: 4526
components:
- - pos: -51.5,-7.5
+ - pos: -53.5,-7.5
parent: 2
type: Transform
- uid: 4527
components:
- - pos: -52.5,-6.5
+ - pos: -52.5,-7.5
parent: 2
type: Transform
- uid: 4528
components:
- - pos: -56.5,-28.5
+ - pos: -51.5,-7.5
parent: 2
type: Transform
- uid: 4529
components:
- - pos: -55.5,-29.5
+ - pos: -52.5,-6.5
parent: 2
type: Transform
- uid: 4530
components:
- - pos: -39.5,-70.5
+ - pos: -56.5,-28.5
parent: 2
type: Transform
- uid: 4531
components:
- - pos: 55.5,10.5
+ - pos: -55.5,-29.5
parent: 2
type: Transform
- uid: 4532
components:
- - pos: -35.5,-31.5
+ - pos: -39.5,-70.5
parent: 2
type: Transform
- uid: 4533
components:
- - pos: -35.5,-32.5
+ - pos: 55.5,10.5
parent: 2
type: Transform
- uid: 4534
components:
- - pos: -35.5,-33.5
+ - pos: -35.5,-31.5
parent: 2
type: Transform
- uid: 4535
components:
- - pos: -35.5,-34.5
+ - pos: -35.5,-32.5
parent: 2
type: Transform
- uid: 4536
components:
- - pos: -36.5,-34.5
+ - pos: -35.5,-33.5
parent: 2
type: Transform
- uid: 4537
components:
- - pos: -37.5,-34.5
+ - pos: -35.5,-34.5
parent: 2
type: Transform
- uid: 4538
components:
- - pos: -38.5,-34.5
+ - pos: -36.5,-34.5
parent: 2
type: Transform
- uid: 4539
components:
- - pos: -39.5,-34.5
+ - pos: -37.5,-34.5
parent: 2
type: Transform
- uid: 4540
components:
- - pos: -40.5,-34.5
+ - pos: -38.5,-34.5
parent: 2
type: Transform
- uid: 4541
components:
- - pos: -41.5,-34.5
+ - pos: -39.5,-34.5
parent: 2
type: Transform
- uid: 4542
components:
- - pos: -42.5,-34.5
+ - pos: -40.5,-34.5
parent: 2
type: Transform
- uid: 4543
components:
- - pos: -43.5,-34.5
+ - pos: -41.5,-34.5
parent: 2
type: Transform
- uid: 4544
components:
- - pos: -39.5,-33.5
+ - pos: -42.5,-34.5
parent: 2
type: Transform
- uid: 4545
components:
- - pos: -41.5,-35.5
+ - pos: -43.5,-34.5
parent: 2
type: Transform
- uid: 4546
components:
- - pos: -41.5,-36.5
+ - pos: -39.5,-33.5
parent: 2
type: Transform
- uid: 4547
components:
- - pos: -41.5,-37.5
+ - pos: -41.5,-35.5
parent: 2
type: Transform
- uid: 4548
components:
- - pos: -41.5,-38.5
+ - pos: -41.5,-36.5
parent: 2
type: Transform
- uid: 4549
components:
- - pos: -41.5,-39.5
+ - pos: -41.5,-37.5
parent: 2
type: Transform
- uid: 4550
components:
- - pos: -42.5,-39.5
+ - pos: -41.5,-38.5
parent: 2
type: Transform
- uid: 4551
components:
- - pos: -43.5,-39.5
+ - pos: -41.5,-39.5
parent: 2
type: Transform
- uid: 4552
components:
- - pos: -44.5,-39.5
+ - pos: -42.5,-39.5
parent: 2
type: Transform
- uid: 4553
components:
- - pos: -45.5,-39.5
+ - pos: -43.5,-39.5
parent: 2
type: Transform
- uid: 4554
components:
- - pos: -46.5,-39.5
+ - pos: -44.5,-39.5
parent: 2
type: Transform
- uid: 4555
components:
- - pos: -47.5,-39.5
+ - pos: -45.5,-39.5
parent: 2
type: Transform
- uid: 4556
components:
- - pos: -47.5,-40.5
+ - pos: -46.5,-39.5
parent: 2
type: Transform
- uid: 4557
components:
- - pos: -47.5,-41.5
+ - pos: -47.5,-39.5
parent: 2
type: Transform
- uid: 4558
components:
- - pos: -48.5,-41.5
+ - pos: -47.5,-40.5
parent: 2
type: Transform
- uid: 4559
components:
- - pos: -49.5,-41.5
+ - pos: -47.5,-41.5
parent: 2
type: Transform
- uid: 4560
components:
- - pos: -50.5,-41.5
+ - pos: -48.5,-41.5
parent: 2
type: Transform
- uid: 4561
components:
- - pos: -51.5,-41.5
+ - pos: -49.5,-41.5
parent: 2
type: Transform
- uid: 4562
components:
- - pos: -51.5,-42.5
+ - pos: -50.5,-41.5
parent: 2
type: Transform
- uid: 4563
components:
- - pos: -51.5,-43.5
+ - pos: -51.5,-41.5
parent: 2
type: Transform
- uid: 4564
components:
- - pos: -51.5,-44.5
+ - pos: -51.5,-42.5
parent: 2
type: Transform
- uid: 4565
components:
- - pos: -51.5,-45.5
+ - pos: -51.5,-43.5
parent: 2
type: Transform
- uid: 4566
components:
- - pos: -51.5,-46.5
+ - pos: -51.5,-44.5
parent: 2
type: Transform
- uid: 4567
components:
- - pos: -51.5,-47.5
+ - pos: -51.5,-45.5
parent: 2
type: Transform
- uid: 4568
components:
- - pos: -51.5,-48.5
+ - pos: -51.5,-46.5
parent: 2
type: Transform
- uid: 4569
components:
- - pos: -51.5,-49.5
+ - pos: -51.5,-47.5
parent: 2
type: Transform
- uid: 4570
components:
- - pos: -51.5,-50.5
+ - pos: -51.5,-48.5
parent: 2
type: Transform
- uid: 4571
components:
- - pos: -51.5,-51.5
+ - pos: -51.5,-49.5
parent: 2
type: Transform
- uid: 4572
components:
- - pos: -51.5,-52.5
+ - pos: -51.5,-50.5
parent: 2
type: Transform
- uid: 4573
components:
- - pos: -51.5,-53.5
+ - pos: -51.5,-51.5
parent: 2
type: Transform
- uid: 4574
components:
- - pos: -51.5,-54.5
+ - pos: -51.5,-52.5
parent: 2
type: Transform
- uid: 4575
components:
- - pos: -51.5,-55.5
+ - pos: -51.5,-53.5
parent: 2
type: Transform
- uid: 4576
components:
- - pos: -50.5,-55.5
+ - pos: -51.5,-54.5
parent: 2
type: Transform
- uid: 4577
components:
- - pos: -49.5,-55.5
+ - pos: -51.5,-55.5
parent: 2
type: Transform
- uid: 4578
components:
- - pos: -48.5,-55.5
+ - pos: -50.5,-55.5
parent: 2
type: Transform
- uid: 4579
components:
- - pos: -47.5,-55.5
+ - pos: -49.5,-55.5
parent: 2
type: Transform
- uid: 4580
components:
- - pos: -50.5,-53.5
+ - pos: -48.5,-55.5
parent: 2
type: Transform
- uid: 4581
components:
- - pos: -49.5,-53.5
+ - pos: -47.5,-55.5
parent: 2
type: Transform
- uid: 4582
components:
- - pos: -48.5,-53.5
+ - pos: -50.5,-53.5
parent: 2
type: Transform
- uid: 4583
components:
- - pos: -47.5,-53.5
+ - pos: -49.5,-53.5
parent: 2
type: Transform
- uid: 4584
components:
- - pos: -50.5,-51.5
+ - pos: -48.5,-53.5
parent: 2
type: Transform
- uid: 4585
components:
- - pos: -49.5,-51.5
+ - pos: -47.5,-53.5
parent: 2
type: Transform
- uid: 4586
components:
- - pos: -48.5,-51.5
+ - pos: -50.5,-51.5
parent: 2
type: Transform
- uid: 4587
components:
- - pos: -47.5,-51.5
+ - pos: -49.5,-51.5
parent: 2
type: Transform
- uid: 4588
components:
- - pos: -50.5,-49.5
+ - pos: -48.5,-51.5
parent: 2
type: Transform
- uid: 4589
components:
- - pos: -49.5,-49.5
+ - pos: -47.5,-51.5
parent: 2
type: Transform
- uid: 4590
components:
- - pos: -48.5,-49.5
+ - pos: -50.5,-49.5
parent: 2
type: Transform
- uid: 4591
components:
- - pos: -47.5,-49.5
+ - pos: -49.5,-49.5
parent: 2
type: Transform
- uid: 4592
components:
- - pos: -50.5,-47.5
+ - pos: -48.5,-49.5
parent: 2
type: Transform
- uid: 4593
components:
- - pos: -49.5,-47.5
+ - pos: -47.5,-49.5
parent: 2
type: Transform
- uid: 4594
components:
- - pos: -48.5,-47.5
+ - pos: -50.5,-47.5
parent: 2
type: Transform
- uid: 4595
components:
- - pos: -47.5,-47.5
+ - pos: -49.5,-47.5
parent: 2
type: Transform
- uid: 4596
components:
- - pos: -50.5,-45.5
+ - pos: -48.5,-47.5
parent: 2
type: Transform
- uid: 4597
components:
- - pos: -49.5,-45.5
+ - pos: -47.5,-47.5
parent: 2
type: Transform
- uid: 4598
components:
- - pos: -48.5,-45.5
+ - pos: -50.5,-45.5
parent: 2
type: Transform
- uid: 4599
components:
- - pos: -47.5,-45.5
+ - pos: -49.5,-45.5
parent: 2
type: Transform
- uid: 4600
components:
- - pos: -50.5,-43.5
+ - pos: -48.5,-45.5
parent: 2
type: Transform
- uid: 4601
components:
- - pos: -49.5,-43.5
+ - pos: -47.5,-45.5
parent: 2
type: Transform
- uid: 4602
components:
- - pos: -48.5,-43.5
+ - pos: -50.5,-43.5
parent: 2
type: Transform
- uid: 4603
components:
- - pos: -47.5,-43.5
+ - pos: -49.5,-43.5
parent: 2
type: Transform
- uid: 4604
components:
- - pos: -38.5,-35.5
+ - pos: -48.5,-43.5
parent: 2
type: Transform
- uid: 4605
components:
- - pos: -38.5,-36.5
+ - pos: -47.5,-43.5
parent: 2
type: Transform
- uid: 4606
components:
- - pos: -38.5,-37.5
+ - pos: -38.5,-35.5
parent: 2
type: Transform
- uid: 4607
components:
- - pos: -38.5,-38.5
+ - pos: -38.5,-36.5
parent: 2
type: Transform
- uid: 4608
components:
- - pos: -38.5,-39.5
+ - pos: -38.5,-37.5
parent: 2
type: Transform
- uid: 4609
components:
- - pos: -34.5,-34.5
+ - pos: -38.5,-38.5
parent: 2
type: Transform
- uid: 4610
components:
- - pos: -33.5,-34.5
+ - pos: -38.5,-39.5
parent: 2
type: Transform
- uid: 4611
components:
- - pos: -32.5,-34.5
+ - pos: -34.5,-34.5
parent: 2
type: Transform
- uid: 4612
components:
- - pos: -31.5,-34.5
+ - pos: -33.5,-34.5
parent: 2
type: Transform
- uid: 4613
components:
- - pos: -30.5,-34.5
+ - pos: -32.5,-34.5
parent: 2
type: Transform
- uid: 4614
components:
- - pos: -29.5,-34.5
+ - pos: -31.5,-34.5
parent: 2
type: Transform
- uid: 4615
components:
- - pos: -28.5,-34.5
+ - pos: -30.5,-34.5
parent: 2
type: Transform
- uid: 4616
components:
- - pos: -27.5,-34.5
+ - pos: -29.5,-34.5
parent: 2
type: Transform
- uid: 4617
components:
- - pos: -26.5,-34.5
+ - pos: -28.5,-34.5
parent: 2
type: Transform
- uid: 4618
components:
- - pos: -25.5,-34.5
+ - pos: -27.5,-34.5
parent: 2
type: Transform
- uid: 4619
components:
- - pos: -24.5,-34.5
+ - pos: -26.5,-34.5
parent: 2
type: Transform
- uid: 4620
components:
- - pos: -23.5,-34.5
+ - pos: -25.5,-34.5
parent: 2
type: Transform
- uid: 4621
components:
- - pos: -23.5,-33.5
+ - pos: -24.5,-34.5
parent: 2
type: Transform
- uid: 4622
components:
- - pos: -32.5,-33.5
+ - pos: -23.5,-34.5
parent: 2
type: Transform
- uid: 4623
components:
- - pos: -32.5,-32.5
+ - pos: -23.5,-33.5
parent: 2
type: Transform
- uid: 4624
components:
- - pos: -31.5,-35.5
+ - pos: -32.5,-33.5
parent: 2
type: Transform
- uid: 4625
components:
- - pos: -31.5,-36.5
+ - pos: -32.5,-32.5
parent: 2
type: Transform
- uid: 4626
components:
- - pos: -31.5,-37.5
+ - pos: -31.5,-35.5
parent: 2
type: Transform
- uid: 4627
components:
- - pos: -31.5,-38.5
+ - pos: -31.5,-36.5
parent: 2
type: Transform
- uid: 4628
components:
- - pos: -31.5,-39.5
+ - pos: -31.5,-37.5
parent: 2
type: Transform
- uid: 4629
components:
- - pos: -31.5,-40.5
+ - pos: -31.5,-38.5
parent: 2
type: Transform
- uid: 4630
components:
- - pos: -32.5,-40.5
+ - pos: -31.5,-39.5
parent: 2
type: Transform
- uid: 4631
components:
- - pos: -33.5,-40.5
+ - pos: -31.5,-40.5
parent: 2
type: Transform
- uid: 4632
components:
- - pos: -34.5,-40.5
+ - pos: -32.5,-40.5
parent: 2
type: Transform
- uid: 4633
components:
- - pos: -35.5,-40.5
+ - pos: -33.5,-40.5
parent: 2
type: Transform
- uid: 4634
components:
- - pos: -35.5,-41.5
+ - pos: -34.5,-40.5
parent: 2
type: Transform
- uid: 4635
components:
- - pos: -35.5,-42.5
+ - pos: -35.5,-40.5
parent: 2
type: Transform
- uid: 4636
components:
- - pos: -35.5,-43.5
+ - pos: -35.5,-41.5
parent: 2
type: Transform
- uid: 4637
components:
- - pos: -35.5,-44.5
+ - pos: -35.5,-42.5
parent: 2
type: Transform
- uid: 4638
components:
- - pos: -35.5,-45.5
+ - pos: -35.5,-43.5
parent: 2
type: Transform
- uid: 4639
components:
- - pos: -35.5,-46.5
+ - pos: -35.5,-44.5
parent: 2
type: Transform
- uid: 4640
components:
- - pos: -35.5,-47.5
+ - pos: -35.5,-45.5
parent: 2
type: Transform
- uid: 4641
components:
- - pos: -35.5,-48.5
+ - pos: -35.5,-46.5
parent: 2
type: Transform
- uid: 4642
components:
- - pos: -35.5,-49.5
+ - pos: -35.5,-47.5
parent: 2
type: Transform
- uid: 4643
components:
- - pos: -35.5,-50.5
+ - pos: -35.5,-48.5
parent: 2
type: Transform
- uid: 4644
components:
- - pos: -35.5,-51.5
+ - pos: -35.5,-49.5
parent: 2
type: Transform
- uid: 4645
components:
- - pos: -35.5,-52.5
+ - pos: -35.5,-50.5
parent: 2
type: Transform
- uid: 4646
components:
- - pos: -35.5,-53.5
+ - pos: -35.5,-51.5
parent: 2
type: Transform
- uid: 4647
components:
- - pos: -35.5,-54.5
+ - pos: -35.5,-52.5
parent: 2
type: Transform
- uid: 4648
components:
- - pos: -35.5,-55.5
+ - pos: -35.5,-53.5
parent: 2
type: Transform
- uid: 4649
components:
- - pos: -36.5,-43.5
+ - pos: -35.5,-54.5
parent: 2
type: Transform
- uid: 4650
components:
- - pos: -37.5,-43.5
+ - pos: -35.5,-55.5
parent: 2
type: Transform
- uid: 4651
components:
- - pos: -36.5,-46.5
+ - pos: -36.5,-43.5
parent: 2
type: Transform
- uid: 4652
components:
- - pos: -37.5,-46.5
+ - pos: -37.5,-43.5
parent: 2
type: Transform
- uid: 4653
components:
- - pos: 55.5,11.5
+ - pos: -36.5,-46.5
parent: 2
type: Transform
- uid: 4654
components:
- - pos: -63.5,-30.5
+ - pos: -37.5,-46.5
parent: 2
type: Transform
- uid: 4655
components:
- - pos: -52.5,-29.5
+ - pos: 55.5,11.5
parent: 2
type: Transform
- uid: 4656
components:
- - pos: -52.5,-28.5
+ - pos: -63.5,-30.5
parent: 2
type: Transform
- uid: 4657
components:
- - pos: -57.5,-18.5
+ - pos: -52.5,-29.5
parent: 2
type: Transform
- uid: 4658
components:
- - pos: -55.5,-18.5
+ - pos: -52.5,-28.5
parent: 2
type: Transform
- uid: 4659
components:
- - pos: -41.5,-40.5
+ - pos: -57.5,-18.5
parent: 2
type: Transform
- uid: 4660
components:
- - pos: -41.5,-41.5
+ - pos: -55.5,-18.5
parent: 2
type: Transform
- uid: 4661
components:
- - pos: -46.5,-40.5
+ - pos: -41.5,-40.5
parent: 2
type: Transform
- uid: 4662
components:
- - pos: -46.5,-41.5
+ - pos: -41.5,-41.5
parent: 2
type: Transform
- uid: 4663
components:
- - pos: -46.5,-42.5
+ - pos: -46.5,-40.5
parent: 2
type: Transform
- uid: 4664
components:
- - pos: -46.5,-43.5
+ - pos: -46.5,-41.5
parent: 2
type: Transform
- uid: 4665
components:
- - pos: -46.5,-44.5
+ - pos: -46.5,-42.5
parent: 2
type: Transform
- uid: 4666
components:
- - pos: -46.5,-45.5
+ - pos: -46.5,-43.5
parent: 2
type: Transform
- uid: 4667
components:
- - pos: -25.5,-73.5
+ - pos: -46.5,-44.5
parent: 2
type: Transform
- uid: 4668
components:
- - pos: -21.5,-42.5
+ - pos: -46.5,-45.5
parent: 2
type: Transform
- uid: 4669
components:
- - pos: -22.5,-42.5
+ - pos: -25.5,-73.5
parent: 2
type: Transform
- uid: 4670
components:
- - pos: -29.5,-73.5
+ - pos: -21.5,-42.5
parent: 2
type: Transform
- uid: 4671
components:
- - pos: -39.5,-66.5
+ - pos: -22.5,-42.5
parent: 2
type: Transform
- uid: 4672
components:
- - pos: -29.5,-64.5
+ - pos: -29.5,-73.5
parent: 2
type: Transform
- uid: 4673
components:
- - pos: -29.5,-65.5
+ - pos: -39.5,-66.5
parent: 2
type: Transform
- uid: 4674
components:
- - pos: -29.5,-66.5
+ - pos: -29.5,-64.5
parent: 2
type: Transform
- uid: 4675
components:
- - pos: -30.5,-66.5
+ - pos: -29.5,-65.5
parent: 2
type: Transform
- uid: 4676
components:
- - pos: -31.5,-66.5
+ - pos: -29.5,-66.5
parent: 2
type: Transform
- uid: 4677
components:
- - pos: -32.5,-66.5
+ - pos: -30.5,-66.5
parent: 2
type: Transform
- uid: 4678
components:
- - pos: -33.5,-66.5
+ - pos: -31.5,-66.5
parent: 2
type: Transform
- uid: 4679
components:
- - pos: -34.5,-66.5
+ - pos: -32.5,-66.5
parent: 2
type: Transform
- uid: 4680
components:
- - pos: -35.5,-66.5
+ - pos: -33.5,-66.5
parent: 2
type: Transform
- uid: 4681
components:
- - pos: -35.5,-65.5
+ - pos: -34.5,-66.5
parent: 2
type: Transform
- uid: 4682
components:
- - pos: -36.5,-65.5
+ - pos: -35.5,-66.5
parent: 2
type: Transform
- uid: 4683
components:
- - pos: -37.5,-65.5
+ - pos: -35.5,-65.5
parent: 2
type: Transform
- uid: 4684
components:
- - pos: -38.5,-65.5
+ - pos: -36.5,-65.5
parent: 2
type: Transform
- uid: 4685
components:
- - pos: -39.5,-65.5
+ - pos: -37.5,-65.5
parent: 2
type: Transform
- uid: 4686
components:
- - pos: -39.5,-64.5
+ - pos: -38.5,-65.5
parent: 2
type: Transform
- uid: 4687
components:
- - pos: -40.5,-64.5
+ - pos: -39.5,-65.5
parent: 2
type: Transform
- uid: 4688
components:
- - pos: -41.5,-64.5
+ - pos: -39.5,-64.5
parent: 2
type: Transform
- uid: 4689
components:
- - pos: -42.5,-64.5
+ - pos: -40.5,-64.5
parent: 2
type: Transform
- uid: 4690
components:
- - pos: -43.5,-64.5
+ - pos: -41.5,-64.5
parent: 2
type: Transform
- uid: 4691
components:
- - pos: -44.5,-64.5
+ - pos: -42.5,-64.5
parent: 2
type: Transform
- uid: 4692
components:
- - pos: -45.5,-64.5
+ - pos: -43.5,-64.5
parent: 2
type: Transform
- uid: 4693
components:
- - pos: -45.5,-63.5
+ - pos: -44.5,-64.5
parent: 2
type: Transform
- uid: 4694
components:
- - pos: -46.5,-63.5
+ - pos: -45.5,-64.5
parent: 2
type: Transform
- uid: 4695
components:
- - pos: -47.5,-63.5
+ - pos: -45.5,-63.5
parent: 2
type: Transform
- uid: 4696
components:
- - pos: -47.5,-64.5
+ - pos: -46.5,-63.5
parent: 2
type: Transform
- uid: 4697
components:
- - pos: -48.5,-64.5
+ - pos: -47.5,-63.5
parent: 2
type: Transform
- uid: 4698
components:
- - pos: -49.5,-64.5
+ - pos: -47.5,-64.5
parent: 2
type: Transform
- uid: 4699
components:
- - pos: -49.5,-65.5
+ - pos: -48.5,-64.5
parent: 2
type: Transform
- uid: 4700
components:
- - pos: -49.5,-66.5
+ - pos: -49.5,-64.5
parent: 2
type: Transform
- uid: 4701
components:
- - pos: -48.5,-66.5
+ - pos: -49.5,-65.5
parent: 2
type: Transform
- uid: 4702
components:
- - pos: -47.5,-66.5
+ - pos: -49.5,-66.5
parent: 2
type: Transform
- uid: 4703
components:
- - pos: -46.5,-66.5
+ - pos: -48.5,-66.5
parent: 2
type: Transform
- uid: 4704
components:
- - pos: -45.5,-66.5
+ - pos: -47.5,-66.5
parent: 2
type: Transform
- uid: 4705
components:
- - pos: -44.5,-66.5
+ - pos: -46.5,-66.5
parent: 2
type: Transform
- uid: 4706
components:
- - pos: -43.5,-66.5
+ - pos: -45.5,-66.5
parent: 2
type: Transform
- uid: 4707
components:
- - pos: -42.5,-66.5
+ - pos: -44.5,-66.5
parent: 2
type: Transform
- uid: 4708
components:
- - pos: -42.5,-68.5
+ - pos: -43.5,-66.5
parent: 2
type: Transform
- uid: 4709
components:
- - pos: -42.5,-69.5
+ - pos: -42.5,-66.5
parent: 2
type: Transform
- uid: 4710
components:
- - pos: -42.5,-70.5
+ - pos: -42.5,-68.5
parent: 2
type: Transform
- uid: 4711
components:
- - pos: -42.5,-71.5
+ - pos: -42.5,-69.5
parent: 2
type: Transform
- uid: 4712
components:
- - pos: -43.5,-71.5
+ - pos: -42.5,-70.5
parent: 2
type: Transform
- uid: 4713
components:
- - pos: -44.5,-71.5
+ - pos: -42.5,-71.5
parent: 2
type: Transform
- uid: 4714
components:
- - pos: -45.5,-71.5
+ - pos: -43.5,-71.5
parent: 2
type: Transform
- uid: 4715
components:
- - pos: -45.5,-72.5
+ - pos: -44.5,-71.5
parent: 2
type: Transform
- uid: 4716
components:
- - pos: -45.5,-73.5
+ - pos: -45.5,-71.5
parent: 2
type: Transform
- uid: 4717
components:
- - pos: -45.5,-74.5
+ - pos: -45.5,-72.5
parent: 2
type: Transform
- uid: 4718
components:
- - pos: -45.5,-75.5
+ - pos: -45.5,-73.5
parent: 2
type: Transform
- uid: 4719
components:
- - pos: -44.5,-75.5
+ - pos: -45.5,-74.5
parent: 2
type: Transform
- uid: 4720
components:
- - pos: -43.5,-75.5
+ - pos: -45.5,-75.5
parent: 2
type: Transform
- uid: 4721
components:
- - pos: -42.5,-76.5
+ - pos: -44.5,-75.5
parent: 2
type: Transform
- uid: 4722
components:
- - pos: -42.5,-75.5
+ - pos: -43.5,-75.5
parent: 2
type: Transform
- uid: 4723
components:
- - pos: -41.5,-76.5
+ - pos: -42.5,-76.5
parent: 2
type: Transform
- uid: 4724
components:
- - pos: -40.5,-76.5
+ - pos: -42.5,-75.5
parent: 2
type: Transform
- uid: 4725
components:
- - pos: -40.5,-75.5
+ - pos: -41.5,-76.5
parent: 2
type: Transform
- uid: 4726
components:
- - pos: -39.5,-75.5
+ - pos: -40.5,-76.5
parent: 2
type: Transform
- uid: 4727
components:
- - pos: -38.5,-75.5
+ - pos: -40.5,-75.5
parent: 2
type: Transform
- uid: 4728
components:
- - pos: -37.5,-75.5
+ - pos: -39.5,-75.5
parent: 2
type: Transform
- uid: 4729
components:
- - pos: -37.5,-76.5
+ - pos: -38.5,-75.5
parent: 2
type: Transform
- uid: 4730
components:
- - pos: -37.5,-77.5
+ - pos: -37.5,-75.5
parent: 2
type: Transform
- uid: 4731
components:
- - pos: -37.5,-78.5
+ - pos: -37.5,-76.5
parent: 2
type: Transform
- uid: 4732
components:
- - pos: -37.5,-79.5
+ - pos: -37.5,-77.5
parent: 2
type: Transform
- uid: 4733
components:
- - pos: -37.5,-80.5
+ - pos: -37.5,-78.5
parent: 2
type: Transform
- uid: 4734
components:
- - pos: -37.5,-81.5
+ - pos: -37.5,-79.5
parent: 2
type: Transform
- uid: 4735
components:
- - pos: -37.5,-82.5
+ - pos: -37.5,-80.5
parent: 2
type: Transform
- uid: 4736
components:
- - pos: -44.5,-85.5
+ - pos: -37.5,-81.5
parent: 2
type: Transform
- uid: 4737
components:
- - pos: -45.5,-85.5
+ - pos: -37.5,-82.5
parent: 2
type: Transform
- uid: 4738
components:
- - pos: -45.5,-84.5
+ - pos: -44.5,-85.5
parent: 2
type: Transform
- uid: 4739
components:
- - pos: -41.5,-85.5
+ - pos: -45.5,-85.5
parent: 2
type: Transform
- uid: 4740
components:
- - pos: -45.5,-83.5
+ - pos: -45.5,-84.5
parent: 2
type: Transform
- uid: 4741
components:
- - pos: -45.5,-82.5
+ - pos: -41.5,-85.5
parent: 2
type: Transform
- uid: 4742
components:
- - pos: -46.5,-82.5
+ - pos: -45.5,-83.5
parent: 2
type: Transform
- uid: 4743
components:
- - pos: -46.5,-83.5
+ - pos: -45.5,-82.5
parent: 2
type: Transform
- uid: 4744
components:
- - pos: -42.5,-85.5
+ - pos: -46.5,-82.5
parent: 2
type: Transform
- uid: 4745
components:
- - pos: -37.5,-83.5
+ - pos: -46.5,-83.5
parent: 2
type: Transform
- uid: 4746
components:
- - pos: -37.5,-84.5
+ - pos: -42.5,-85.5
parent: 2
type: Transform
- uid: 4747
components:
- - pos: -46.5,-81.5
+ - pos: -37.5,-83.5
parent: 2
type: Transform
- uid: 4748
components:
- - pos: -46.5,-80.5
+ - pos: -37.5,-84.5
parent: 2
type: Transform
- uid: 4749
components:
- - pos: -46.5,-79.5
+ - pos: -46.5,-81.5
parent: 2
type: Transform
- uid: 4750
components:
- - pos: -46.5,-78.5
+ - pos: -46.5,-80.5
parent: 2
type: Transform
- uid: 4751
components:
- - pos: -46.5,-77.5
+ - pos: -46.5,-79.5
parent: 2
type: Transform
- uid: 4752
components:
- - pos: -46.5,-76.5
+ - pos: -46.5,-78.5
parent: 2
type: Transform
- uid: 4753
components:
- - pos: -47.5,-76.5
+ - pos: -46.5,-77.5
parent: 2
type: Transform
- uid: 4754
components:
- - pos: -48.5,-76.5
+ - pos: -46.5,-76.5
parent: 2
type: Transform
- uid: 4755
components:
- - pos: -49.5,-76.5
+ - pos: -47.5,-76.5
parent: 2
type: Transform
- uid: 4756
components:
- - pos: -50.5,-76.5
+ - pos: -48.5,-76.5
parent: 2
type: Transform
- uid: 4757
components:
- - pos: -51.5,-76.5
+ - pos: -49.5,-76.5
parent: 2
type: Transform
- uid: 4758
components:
- - pos: -52.5,-76.5
+ - pos: -50.5,-76.5
parent: 2
type: Transform
- uid: 4759
components:
- - pos: -53.5,-76.5
+ - pos: -51.5,-76.5
parent: 2
type: Transform
- uid: 4760
components:
- - pos: -54.5,-76.5
+ - pos: -52.5,-76.5
parent: 2
type: Transform
- uid: 4761
components:
- - pos: -55.5,-76.5
+ - pos: -53.5,-76.5
parent: 2
type: Transform
- uid: 4762
components:
- - pos: -55.5,-77.5
+ - pos: -54.5,-76.5
parent: 2
type: Transform
- uid: 4763
components:
- - pos: -55.5,-78.5
+ - pos: -55.5,-76.5
parent: 2
type: Transform
- uid: 4764
components:
- - pos: -55.5,-79.5
+ - pos: -55.5,-77.5
parent: 2
type: Transform
- uid: 4765
components:
- - pos: -55.5,-80.5
+ - pos: -55.5,-78.5
parent: 2
type: Transform
- uid: 4766
components:
- - pos: -55.5,-81.5
+ - pos: -55.5,-79.5
parent: 2
type: Transform
- uid: 4767
components:
- - pos: -55.5,-75.5
+ - pos: -55.5,-80.5
parent: 2
type: Transform
- uid: 4768
components:
- - pos: -55.5,-74.5
+ - pos: -55.5,-81.5
parent: 2
type: Transform
- uid: 4769
components:
- - pos: -55.5,-73.5
+ - pos: -55.5,-75.5
parent: 2
type: Transform
- uid: 4770
components:
- - pos: -55.5,-72.5
+ - pos: -55.5,-74.5
parent: 2
type: Transform
- uid: 4771
components:
- - pos: -55.5,-71.5
+ - pos: -55.5,-73.5
parent: 2
type: Transform
- uid: 4772
components:
- - pos: -54.5,-73.5
+ - pos: -55.5,-72.5
parent: 2
type: Transform
- uid: 4773
components:
- - pos: -53.5,-73.5
+ - pos: -55.5,-71.5
parent: 2
type: Transform
- uid: 4774
components:
- - pos: -54.5,-79.5
+ - pos: -54.5,-73.5
parent: 2
type: Transform
- uid: 4775
components:
- - pos: -53.5,-79.5
+ - pos: -53.5,-73.5
parent: 2
type: Transform
- uid: 4776
components:
- - pos: -56.5,-71.5
+ - pos: -54.5,-79.5
parent: 2
type: Transform
- uid: 4777
components:
- - pos: -57.5,-71.5
+ - pos: -53.5,-79.5
parent: 2
type: Transform
- uid: 4778
components:
- - pos: -56.5,-73.5
+ - pos: -56.5,-71.5
parent: 2
type: Transform
- uid: 4779
components:
- - pos: -57.5,-73.5
+ - pos: -57.5,-71.5
parent: 2
type: Transform
- uid: 4780
components:
- - pos: -56.5,-79.5
+ - pos: -56.5,-73.5
parent: 2
type: Transform
- uid: 4781
components:
- - pos: -57.5,-79.5
+ - pos: -57.5,-73.5
parent: 2
type: Transform
- uid: 4782
components:
- - pos: -56.5,-81.5
+ - pos: -56.5,-79.5
parent: 2
type: Transform
- uid: 4783
components:
- - pos: -57.5,-81.5
+ - pos: -57.5,-79.5
parent: 2
type: Transform
- uid: 4784
components:
- - pos: -55.5,-82.5
+ - pos: -56.5,-81.5
parent: 2
type: Transform
- uid: 4785
components:
- - pos: -29.5,-63.5
+ - pos: -57.5,-81.5
parent: 2
type: Transform
- uid: 4786
components:
- - pos: -28.5,-63.5
+ - pos: -55.5,-82.5
parent: 2
type: Transform
- uid: 4787
components:
- - pos: -28.5,-62.5
+ - pos: -29.5,-63.5
parent: 2
type: Transform
- uid: 4788
components:
- - pos: -28.5,-61.5
+ - pos: -28.5,-63.5
parent: 2
type: Transform
- uid: 4789
components:
- - pos: -28.5,-60.5
+ - pos: -28.5,-62.5
parent: 2
type: Transform
- uid: 4790
components:
- - pos: -28.5,-59.5
+ - pos: -28.5,-61.5
parent: 2
type: Transform
- uid: 4791
components:
- - pos: -28.5,-58.5
+ - pos: -28.5,-60.5
parent: 2
type: Transform
- uid: 4792
components:
- - pos: -28.5,-57.5
+ - pos: -28.5,-59.5
parent: 2
type: Transform
- uid: 4793
components:
- - pos: -28.5,-56.5
+ - pos: -28.5,-58.5
parent: 2
type: Transform
- uid: 4794
components:
- - pos: -28.5,-55.5
+ - pos: -28.5,-57.5
parent: 2
type: Transform
- uid: 4795
components:
- - pos: -28.5,-54.5
+ - pos: -28.5,-56.5
parent: 2
type: Transform
- uid: 4796
components:
- - pos: -27.5,-54.5
+ - pos: -28.5,-55.5
parent: 2
type: Transform
- uid: 4797
components:
- - pos: -26.5,-54.5
+ - pos: -28.5,-54.5
parent: 2
type: Transform
- uid: 4798
components:
- - pos: -25.5,-54.5
+ - pos: -27.5,-54.5
parent: 2
type: Transform
- uid: 4799
components:
- - pos: -25.5,-53.5
+ - pos: -26.5,-54.5
parent: 2
type: Transform
- uid: 4800
components:
- - pos: -25.5,-52.5
+ - pos: -25.5,-54.5
parent: 2
type: Transform
- uid: 4801
components:
- - pos: -25.5,-51.5
+ - pos: -25.5,-53.5
parent: 2
type: Transform
- uid: 4802
components:
- - pos: -24.5,-51.5
+ - pos: -25.5,-52.5
parent: 2
type: Transform
- uid: 4803
components:
- - pos: -27.5,-63.5
+ - pos: -25.5,-51.5
parent: 2
type: Transform
- uid: 4804
components:
- - pos: -27.5,-64.5
+ - pos: -24.5,-51.5
parent: 2
type: Transform
- uid: 4805
components:
- - pos: -23.5,-64.5
+ - pos: -27.5,-63.5
parent: 2
type: Transform
- uid: 4806
components:
- - pos: -24.5,-64.5
+ - pos: -27.5,-64.5
parent: 2
type: Transform
- uid: 4807
components:
- - pos: -25.5,-64.5
+ - pos: -23.5,-64.5
parent: 2
type: Transform
- uid: 4808
components:
- - pos: -26.5,-64.5
+ - pos: -24.5,-64.5
parent: 2
type: Transform
- uid: 4809
components:
- - pos: -23.5,-66.5
+ - pos: -25.5,-64.5
parent: 2
type: Transform
- uid: 4810
components:
- - pos: -23.5,-65.5
+ - pos: -26.5,-64.5
parent: 2
type: Transform
- uid: 4811
components:
- - pos: -42.5,-72.5
+ - pos: -23.5,-66.5
parent: 2
type: Transform
- uid: 4812
components:
- - pos: -41.5,-72.5
+ - pos: -23.5,-65.5
parent: 2
type: Transform
- uid: 4813
components:
- - pos: -40.5,-72.5
+ - pos: -42.5,-72.5
parent: 2
type: Transform
- uid: 4814
components:
- - pos: -39.5,-72.5
+ - pos: -41.5,-72.5
parent: 2
type: Transform
- uid: 4815
components:
- - pos: -38.5,-72.5
+ - pos: -40.5,-72.5
parent: 2
type: Transform
- uid: 4816
components:
- - pos: -23.5,-42.5
+ - pos: -39.5,-72.5
parent: 2
type: Transform
- uid: 4817
components:
- - pos: -23.5,-43.5
+ - pos: -38.5,-72.5
parent: 2
type: Transform
- uid: 4818
components:
- - pos: -23.5,-44.5
+ - pos: -23.5,-42.5
parent: 2
type: Transform
- uid: 4819
components:
- - pos: -23.5,-45.5
+ - pos: -23.5,-43.5
parent: 2
type: Transform
- uid: 4820
components:
- - pos: -23.5,-46.5
+ - pos: -23.5,-44.5
parent: 2
type: Transform
- uid: 4821
components:
- - pos: -23.5,-47.5
+ - pos: -23.5,-45.5
parent: 2
type: Transform
- uid: 4822
components:
- - pos: -23.5,-48.5
+ - pos: -23.5,-46.5
parent: 2
type: Transform
- uid: 4823
components:
- - pos: -23.5,-49.5
+ - pos: -23.5,-47.5
parent: 2
type: Transform
- uid: 4824
components:
- - pos: -24.5,-49.5
+ - pos: -23.5,-48.5
parent: 2
type: Transform
- uid: 4825
components:
- - pos: -25.5,-49.5
+ - pos: -23.5,-49.5
parent: 2
type: Transform
- uid: 4826
components:
- - pos: -26.5,-49.5
+ - pos: -24.5,-49.5
parent: 2
type: Transform
- uid: 4827
components:
- - pos: -27.5,-49.5
+ - pos: -25.5,-49.5
parent: 2
type: Transform
- uid: 4828
components:
- - pos: -27.5,-48.5
+ - pos: -26.5,-49.5
parent: 2
type: Transform
- uid: 4829
components:
- - pos: -27.5,-47.5
+ - pos: -27.5,-49.5
parent: 2
type: Transform
- uid: 4830
components:
- - pos: -27.5,-46.5
+ - pos: -27.5,-48.5
parent: 2
type: Transform
- uid: 4831
components:
- - pos: -26.5,-46.5
+ - pos: -27.5,-47.5
parent: 2
type: Transform
- uid: 4832
components:
- - pos: -25.5,-46.5
+ - pos: -27.5,-46.5
parent: 2
type: Transform
- uid: 4833
components:
- - pos: -25.5,-45.5
+ - pos: -26.5,-46.5
parent: 2
type: Transform
- uid: 4834
components:
- - pos: -25.5,-44.5
+ - pos: -25.5,-46.5
parent: 2
type: Transform
- uid: 4835
components:
- - pos: -25.5,-43.5
+ - pos: -25.5,-45.5
parent: 2
type: Transform
- uid: 4836
components:
- - pos: -25.5,-42.5
+ - pos: -25.5,-44.5
parent: 2
type: Transform
- uid: 4837
components:
- - pos: -25.5,-41.5
+ - pos: -25.5,-43.5
parent: 2
type: Transform
- uid: 4838
components:
- - pos: -25.5,-40.5
+ - pos: -25.5,-42.5
parent: 2
type: Transform
- uid: 4839
components:
- - pos: -25.5,-39.5
+ - pos: -25.5,-41.5
parent: 2
type: Transform
- uid: 4840
components:
- - pos: -26.5,-41.5
+ - pos: -25.5,-40.5
parent: 2
type: Transform
- uid: 4841
components:
- - pos: -27.5,-41.5
+ - pos: -25.5,-39.5
parent: 2
type: Transform
- uid: 4842
components:
- - pos: -28.5,-41.5
+ - pos: -26.5,-41.5
parent: 2
type: Transform
- uid: 4843
components:
- - pos: -27.5,-45.5
+ - pos: -27.5,-41.5
parent: 2
type: Transform
- uid: 4844
components:
- - pos: -27.5,-44.5
+ - pos: -28.5,-41.5
parent: 2
type: Transform
- uid: 4845
components:
- - pos: -28.5,-44.5
+ - pos: -27.5,-45.5
parent: 2
type: Transform
- uid: 4846
components:
- - pos: -29.5,-44.5
+ - pos: -27.5,-44.5
parent: 2
type: Transform
- uid: 4847
components:
- - pos: -30.5,-44.5
+ - pos: -28.5,-44.5
parent: 2
type: Transform
- uid: 4848
components:
- - pos: -31.5,-44.5
+ - pos: -29.5,-44.5
parent: 2
type: Transform
- uid: 4849
components:
- - pos: -31.5,-45.5
+ - pos: -30.5,-44.5
parent: 2
type: Transform
- uid: 4850
components:
- - pos: -31.5,-46.5
+ - pos: -31.5,-44.5
parent: 2
type: Transform
- uid: 4851
components:
- - pos: -31.5,-47.5
+ - pos: -31.5,-45.5
parent: 2
type: Transform
- uid: 4852
components:
- - pos: -23.5,-51.5
+ - pos: -31.5,-46.5
parent: 2
type: Transform
- uid: 4853
components:
- - pos: -30.5,-47.5
+ - pos: -31.5,-47.5
parent: 2
type: Transform
- uid: 4854
components:
- - pos: -30.5,-48.5
+ - pos: -23.5,-51.5
parent: 2
type: Transform
- uid: 4855
components:
- - pos: -30.5,-49.5
+ - pos: -30.5,-47.5
parent: 2
type: Transform
- uid: 4856
components:
- - pos: -22.5,-51.5
+ - pos: -30.5,-48.5
parent: 2
type: Transform
- uid: 4857
components:
- - pos: -19.5,-49.5
+ - pos: -30.5,-49.5
parent: 2
type: Transform
- uid: 4858
components:
- - pos: -20.5,-49.5
+ - pos: -22.5,-51.5
parent: 2
type: Transform
- uid: 4859
components:
- - pos: -22.5,-52.5
+ - pos: -19.5,-49.5
parent: 2
type: Transform
- uid: 4860
components:
- - pos: -22.5,-53.5
+ - pos: -20.5,-49.5
parent: 2
type: Transform
- uid: 4861
components:
- - pos: -22.5,-54.5
+ - pos: -22.5,-52.5
parent: 2
type: Transform
- uid: 4862
components:
- - pos: -22.5,-55.5
+ - pos: -22.5,-53.5
parent: 2
type: Transform
- uid: 4863
components:
- - pos: -21.5,-52.5
+ - pos: -22.5,-54.5
parent: 2
type: Transform
- uid: 4864
components:
- - pos: -55.5,-60.5
+ - pos: -22.5,-55.5
parent: 2
type: Transform
- uid: 4865
components:
- - pos: 30.5,-14.5
+ - pos: -21.5,-52.5
parent: 2
type: Transform
- uid: 4866
components:
- - pos: 29.5,-14.5
+ - pos: -55.5,-60.5
parent: 2
type: Transform
- uid: 4867
components:
- - pos: 30.5,-11.5
+ - pos: 30.5,-14.5
parent: 2
type: Transform
- uid: 4868
components:
- - pos: 30.5,-12.5
+ - pos: 29.5,-14.5
parent: 2
type: Transform
- uid: 4869
components:
- - pos: -1.5,-79.5
+ - pos: 30.5,-11.5
parent: 2
type: Transform
- uid: 4870
components:
- - pos: 28.5,-25.5
+ - pos: 30.5,-12.5
parent: 2
type: Transform
- uid: 4871
components:
- - pos: -34.5,-55.5
+ - pos: -1.5,-79.5
parent: 2
type: Transform
- uid: 4872
components:
- - pos: -33.5,-26.5
+ - pos: 28.5,-25.5
parent: 2
type: Transform
- uid: 4873
components:
- - pos: -34.5,-26.5
+ - pos: -34.5,-55.5
parent: 2
type: Transform
- uid: 4874
components:
- - pos: -35.5,-26.5
+ - pos: -33.5,-26.5
parent: 2
type: Transform
- uid: 4875
components:
- - pos: -35.5,-25.5
+ - pos: -34.5,-26.5
parent: 2
type: Transform
- uid: 4876
components:
- - pos: -35.5,-24.5
+ - pos: -35.5,-26.5
parent: 2
type: Transform
- uid: 4877
components:
- - pos: -36.5,-24.5
+ - pos: -35.5,-25.5
parent: 2
type: Transform
- uid: 4878
components:
- - pos: -37.5,-24.5
+ - pos: -35.5,-24.5
parent: 2
type: Transform
- uid: 4879
components:
- - pos: -37.5,-23.5
+ - pos: -36.5,-24.5
parent: 2
type: Transform
- uid: 4880
components:
- - pos: -37.5,-22.5
+ - pos: -37.5,-24.5
parent: 2
type: Transform
- uid: 4881
components:
- - pos: -37.5,-21.5
+ - pos: -37.5,-23.5
parent: 2
type: Transform
- uid: 4882
components:
- - pos: -38.5,-22.5
+ - pos: -37.5,-22.5
parent: 2
type: Transform
- uid: 4883
components:
- - pos: -39.5,-22.5
+ - pos: -37.5,-21.5
parent: 2
type: Transform
- uid: 4884
components:
- - pos: -39.5,-23.5
+ - pos: -38.5,-22.5
parent: 2
type: Transform
- uid: 4885
components:
- - pos: -39.5,-24.5
+ - pos: -39.5,-22.5
parent: 2
type: Transform
- uid: 4886
components:
- - pos: -40.5,-24.5
+ - pos: -39.5,-23.5
parent: 2
type: Transform
- uid: 4887
components:
- - pos: -41.5,-24.5
+ - pos: -39.5,-24.5
parent: 2
type: Transform
- uid: 4888
components:
- - pos: -41.5,-25.5
+ - pos: -40.5,-24.5
parent: 2
type: Transform
- uid: 4889
components:
- - pos: -41.5,-26.5
+ - pos: -41.5,-24.5
parent: 2
type: Transform
- uid: 4890
components:
- - pos: -43.5,-26.5
+ - pos: -41.5,-25.5
parent: 2
type: Transform
- uid: 4891
components:
- - pos: -42.5,-26.5
+ - pos: -41.5,-26.5
parent: 2
type: Transform
- uid: 4892
components:
- - pos: -40.5,-26.5
+ - pos: -43.5,-26.5
parent: 2
type: Transform
- uid: 4893
components:
- - pos: -39.5,-26.5
+ - pos: -42.5,-26.5
parent: 2
type: Transform
- uid: 4894
components:
- - pos: -38.5,-26.5
+ - pos: -40.5,-26.5
parent: 2
type: Transform
- uid: 4895
components:
- - pos: -37.5,-26.5
+ - pos: -39.5,-26.5
parent: 2
type: Transform
- uid: 4896
components:
- - pos: -37.5,-27.5
+ - pos: -38.5,-26.5
parent: 2
type: Transform
- uid: 4897
components:
- - pos: -37.5,-28.5
+ - pos: -37.5,-26.5
parent: 2
type: Transform
- uid: 4898
components:
- - pos: -36.5,-28.5
+ - pos: -37.5,-27.5
parent: 2
type: Transform
- uid: 4899
components:
- - pos: -35.5,-28.5
+ - pos: -37.5,-28.5
parent: 2
type: Transform
- uid: 4900
components:
- - pos: -35.5,-29.5
+ - pos: -36.5,-28.5
parent: 2
type: Transform
- uid: 4901
components:
- - pos: -35.5,-30.5
+ - pos: -35.5,-28.5
parent: 2
type: Transform
- uid: 4902
components:
- - pos: -44.5,-26.5
+ - pos: -35.5,-29.5
parent: 2
type: Transform
- uid: 4903
components:
- - pos: -44.5,-27.5
+ - pos: -35.5,-30.5
parent: 2
type: Transform
- uid: 4904
components:
- - pos: -45.5,-27.5
+ - pos: -44.5,-26.5
parent: 2
type: Transform
- uid: 4905
components:
- - pos: -46.5,-27.5
+ - pos: -44.5,-27.5
parent: 2
type: Transform
- uid: 4906
components:
- - pos: -47.5,-27.5
+ - pos: -45.5,-27.5
parent: 2
type: Transform
- uid: 4907
components:
- - pos: -48.5,-27.5
+ - pos: -46.5,-27.5
parent: 2
type: Transform
- uid: 4908
components:
- - pos: -48.5,-28.5
+ - pos: -47.5,-27.5
parent: 2
type: Transform
- uid: 4909
components:
- - pos: -48.5,-29.5
+ - pos: -48.5,-27.5
parent: 2
type: Transform
- uid: 4910
components:
- - pos: -48.5,-30.5
+ - pos: -48.5,-28.5
parent: 2
type: Transform
- uid: 4911
components:
- - pos: -48.5,-31.5
+ - pos: -48.5,-29.5
parent: 2
type: Transform
- uid: 4912
components:
- - pos: -48.5,-32.5
+ - pos: -48.5,-30.5
parent: 2
type: Transform
- uid: 4913
components:
- - pos: -50.5,-32.5
+ - pos: -48.5,-31.5
parent: 2
type: Transform
- uid: 4914
components:
- - pos: -49.5,-32.5
+ - pos: -48.5,-32.5
parent: 2
type: Transform
- uid: 4915
components:
- - pos: -51.5,-32.5
+ - pos: -50.5,-32.5
parent: 2
type: Transform
- uid: 4916
components:
- - pos: -52.5,-32.5
+ - pos: -49.5,-32.5
parent: 2
type: Transform
- uid: 4917
components:
- - pos: -53.5,-32.5
+ - pos: -51.5,-32.5
parent: 2
type: Transform
- uid: 4918
components:
- - pos: -54.5,-32.5
+ - pos: -52.5,-32.5
parent: 2
type: Transform
- uid: 4919
components:
- - pos: -55.5,-32.5
+ - pos: -53.5,-32.5
parent: 2
type: Transform
- uid: 4920
components:
- - pos: -55.5,-33.5
+ - pos: -54.5,-32.5
parent: 2
type: Transform
- uid: 4921
components:
- - pos: -55.5,-34.5
+ - pos: -55.5,-32.5
parent: 2
type: Transform
- uid: 4922
components:
- - pos: -55.5,-35.5
+ - pos: -55.5,-33.5
parent: 2
type: Transform
- uid: 4923
components:
- - pos: -55.5,-36.5
+ - pos: -55.5,-34.5
parent: 2
type: Transform
- uid: 4924
components:
- - pos: -55.5,-37.5
+ - pos: -55.5,-35.5
parent: 2
type: Transform
- uid: 4925
components:
- - pos: -55.5,-38.5
+ - pos: -55.5,-36.5
parent: 2
type: Transform
- uid: 4926
components:
- - pos: -55.5,-39.5
+ - pos: -55.5,-37.5
parent: 2
type: Transform
- uid: 4927
components:
- - pos: -56.5,-39.5
+ - pos: -55.5,-38.5
parent: 2
type: Transform
- uid: 4928
components:
- - pos: -56.5,-40.5
+ - pos: -55.5,-39.5
parent: 2
type: Transform
- uid: 4929
components:
- - pos: -56.5,-41.5
+ - pos: -56.5,-39.5
parent: 2
type: Transform
- uid: 4930
components:
- - pos: -56.5,-42.5
+ - pos: -56.5,-40.5
parent: 2
type: Transform
- uid: 4931
components:
- - pos: -56.5,-43.5
+ - pos: -56.5,-41.5
parent: 2
type: Transform
- uid: 4932
components:
- - pos: -56.5,-44.5
+ - pos: -56.5,-42.5
parent: 2
type: Transform
- uid: 4933
components:
- - pos: -56.5,-45.5
+ - pos: -56.5,-43.5
parent: 2
type: Transform
- uid: 4934
components:
- - pos: -56.5,-46.5
+ - pos: -56.5,-44.5
parent: 2
type: Transform
- uid: 4935
components:
- - pos: -56.5,-47.5
+ - pos: -56.5,-45.5
parent: 2
type: Transform
- uid: 4936
components:
- - pos: -56.5,-48.5
+ - pos: -56.5,-46.5
parent: 2
type: Transform
- uid: 4937
components:
- - pos: -56.5,-49.5
+ - pos: -56.5,-47.5
parent: 2
type: Transform
- uid: 4938
components:
- - pos: -56.5,-50.5
+ - pos: -56.5,-48.5
parent: 2
type: Transform
- uid: 4939
components:
- - pos: -56.5,-51.5
+ - pos: -56.5,-49.5
parent: 2
type: Transform
- uid: 4940
components:
- - pos: -56.5,-52.5
+ - pos: -56.5,-50.5
parent: 2
type: Transform
- uid: 4941
components:
- - pos: -56.5,-53.5
+ - pos: -56.5,-51.5
parent: 2
type: Transform
- uid: 4942
components:
- - pos: -56.5,-54.5
+ - pos: -56.5,-52.5
parent: 2
type: Transform
- uid: 4943
components:
- - pos: -56.5,-55.5
+ - pos: -56.5,-53.5
parent: 2
type: Transform
- uid: 4944
components:
- - pos: -56.5,-56.5
+ - pos: -56.5,-54.5
parent: 2
type: Transform
- uid: 4945
components:
- - pos: -56.5,-57.5
+ - pos: -56.5,-55.5
parent: 2
type: Transform
- uid: 4946
components:
- - pos: -56.5,-58.5
+ - pos: -56.5,-56.5
parent: 2
type: Transform
- uid: 4947
components:
- - pos: -57.5,-58.5
+ - pos: -56.5,-57.5
parent: 2
type: Transform
- uid: 4948
components:
- - pos: -57.5,-59.5
+ - pos: -56.5,-58.5
parent: 2
type: Transform
- uid: 4949
components:
- - pos: -50.5,-64.5
+ - pos: -57.5,-58.5
parent: 2
type: Transform
- uid: 4950
components:
- - pos: -50.5,-63.5
+ - pos: -57.5,-59.5
parent: 2
type: Transform
- uid: 4951
components:
- - pos: -51.5,-63.5
+ - pos: -50.5,-64.5
parent: 2
type: Transform
- uid: 4952
components:
- - pos: -55.5,-58.5
+ - pos: -50.5,-63.5
parent: 2
type: Transform
- uid: 4953
components:
- - pos: -55.5,-59.5
+ - pos: -51.5,-63.5
parent: 2
type: Transform
- uid: 4954
components:
- - pos: -55.5,-61.5
+ - pos: -55.5,-58.5
parent: 2
type: Transform
- uid: 4955
components:
- - pos: -36.5,-30.5
+ - pos: -55.5,-59.5
parent: 2
type: Transform
- uid: 4956
components:
- - pos: -38.5,-28.5
+ - pos: -55.5,-61.5
parent: 2
type: Transform
- uid: 4957
components:
- - pos: -38.5,-30.5
+ - pos: -36.5,-30.5
parent: 2
type: Transform
- uid: 4958
components:
- - pos: -39.5,-30.5
+ - pos: -38.5,-28.5
parent: 2
type: Transform
- uid: 4959
components:
- - pos: -40.5,-30.5
+ - pos: -38.5,-30.5
parent: 2
type: Transform
- uid: 4960
components:
- - pos: -41.5,-30.5
+ - pos: -39.5,-30.5
parent: 2
type: Transform
- uid: 4961
components:
- - pos: -41.5,-29.5
+ - pos: -40.5,-30.5
parent: 2
type: Transform
- uid: 4962
components:
- - pos: -56.5,-85.5
+ - pos: -41.5,-30.5
parent: 2
type: Transform
- uid: 4963
components:
- - pos: -56.5,-86.5
+ - pos: -41.5,-29.5
parent: 2
type: Transform
- uid: 4964
components:
- - pos: -56.5,-87.5
+ - pos: -56.5,-85.5
parent: 2
type: Transform
- uid: 4965
components:
- - pos: -55.5,-87.5
+ - pos: -56.5,-86.5
parent: 2
type: Transform
- uid: 4966
components:
- - pos: -54.5,-87.5
+ - pos: -56.5,-87.5
parent: 2
type: Transform
- uid: 4967
components:
- - pos: -53.5,-87.5
+ - pos: -55.5,-87.5
parent: 2
type: Transform
- uid: 4968
components:
- - pos: -52.5,-87.5
+ - pos: -54.5,-87.5
parent: 2
type: Transform
- uid: 4969
components:
- - pos: -54.5,-86.5
+ - pos: -53.5,-87.5
parent: 2
type: Transform
- uid: 4970
components:
- - pos: -54.5,-85.5
+ - pos: -52.5,-87.5
parent: 2
type: Transform
- uid: 4971
components:
- - pos: -54.5,-88.5
+ - pos: -54.5,-86.5
parent: 2
type: Transform
- uid: 4972
components:
- - pos: -54.5,-89.5
+ - pos: -54.5,-85.5
parent: 2
type: Transform
- uid: 4973
components:
- - pos: -55.5,-85.5
+ - pos: -54.5,-88.5
parent: 2
type: Transform
- uid: 4974
components:
- - pos: 33.5,22.5
+ - pos: -54.5,-89.5
parent: 2
type: Transform
- uid: 4975
components:
- - pos: 34.5,22.5
+ - pos: -55.5,-85.5
parent: 2
type: Transform
- uid: 4976
components:
- - pos: 35.5,22.5
+ - pos: 33.5,22.5
parent: 2
type: Transform
- uid: 4977
components:
- - pos: 36.5,22.5
+ - pos: 34.5,22.5
parent: 2
type: Transform
- uid: 4978
components:
- - pos: 36.5,23.5
+ - pos: 35.5,22.5
parent: 2
type: Transform
- uid: 4979
components:
- - pos: 37.5,23.5
+ - pos: 36.5,22.5
parent: 2
type: Transform
- uid: 4980
components:
- - pos: 38.5,23.5
+ - pos: 36.5,23.5
parent: 2
type: Transform
- uid: 4981
components:
- - pos: 39.5,23.5
+ - pos: 37.5,23.5
parent: 2
type: Transform
- uid: 4982
components:
- - pos: 40.5,23.5
+ - pos: 38.5,23.5
parent: 2
type: Transform
- uid: 4983
components:
- - pos: 42.5,23.5
+ - pos: 39.5,23.5
parent: 2
type: Transform
- uid: 4984
components:
- - pos: 44.5,23.5
+ - pos: 40.5,23.5
parent: 2
type: Transform
- uid: 4985
components:
- - pos: 43.5,23.5
+ - pos: 42.5,23.5
parent: 2
type: Transform
- uid: 4986
components:
- - pos: 44.5,24.5
+ - pos: 44.5,23.5
parent: 2
type: Transform
- uid: 4987
components:
- - pos: 44.5,25.5
+ - pos: 43.5,23.5
parent: 2
type: Transform
- uid: 4988
components:
- - pos: 44.5,26.5
+ - pos: 44.5,24.5
parent: 2
type: Transform
- uid: 4989
components:
- - pos: 47.5,26.5
+ - pos: 44.5,25.5
parent: 2
type: Transform
- uid: 4990
components:
- - pos: 48.5,26.5
+ - pos: 44.5,26.5
parent: 2
type: Transform
- uid: 4991
components:
- - pos: 49.5,26.5
+ - pos: 47.5,26.5
parent: 2
type: Transform
- uid: 4992
components:
- - pos: 50.5,26.5
+ - pos: 48.5,26.5
parent: 2
type: Transform
- uid: 4993
components:
- - pos: 51.5,26.5
+ - pos: 49.5,26.5
parent: 2
type: Transform
- uid: 4994
components:
- - pos: 52.5,26.5
+ - pos: 50.5,26.5
parent: 2
type: Transform
- uid: 4995
components:
- - pos: 53.5,26.5
+ - pos: 51.5,26.5
parent: 2
type: Transform
- uid: 4996
components:
- - pos: 54.5,26.5
+ - pos: 52.5,26.5
parent: 2
type: Transform
- uid: 4997
components:
- - pos: 55.5,26.5
+ - pos: 53.5,26.5
parent: 2
type: Transform
- uid: 4998
components:
- - pos: 56.5,26.5
+ - pos: 54.5,26.5
parent: 2
type: Transform
- uid: 4999
components:
- - pos: 57.5,26.5
+ - pos: 55.5,26.5
parent: 2
type: Transform
- uid: 5000
components:
- - pos: 58.5,26.5
+ - pos: 56.5,26.5
parent: 2
type: Transform
- uid: 5001
components:
- - pos: 59.5,26.5
+ - pos: 57.5,26.5
parent: 2
type: Transform
- uid: 5002
components:
- - pos: 60.5,26.5
+ - pos: 58.5,26.5
parent: 2
type: Transform
- uid: 5003
components:
- - pos: 63.5,5.5
+ - pos: 59.5,26.5
parent: 2
type: Transform
- uid: 5004
components:
- - pos: 64.5,5.5
+ - pos: 60.5,26.5
parent: 2
type: Transform
- uid: 5005
components:
- - pos: 65.5,5.5
+ - pos: 63.5,5.5
parent: 2
type: Transform
- uid: 5006
components:
- - pos: 65.5,4.5
+ - pos: 64.5,5.5
parent: 2
type: Transform
- uid: 5007
components:
- - pos: 65.5,6.5
+ - pos: 65.5,5.5
parent: 2
type: Transform
- uid: 5008
components:
- - pos: 65.5,7.5
+ - pos: 65.5,4.5
parent: 2
type: Transform
- uid: 5009
components:
- - pos: 65.5,8.5
+ - pos: 65.5,6.5
parent: 2
type: Transform
- uid: 5010
components:
- - pos: 65.5,9.5
+ - pos: 65.5,7.5
parent: 2
type: Transform
- uid: 5011
components:
- - pos: 65.5,10.5
+ - pos: 65.5,8.5
parent: 2
type: Transform
- uid: 5012
components:
- - pos: 65.5,11.5
+ - pos: 65.5,9.5
parent: 2
type: Transform
- uid: 5013
components:
- - pos: 65.5,12.5
+ - pos: 65.5,10.5
parent: 2
type: Transform
- uid: 5014
components:
- - pos: 65.5,13.5
+ - pos: 65.5,11.5
parent: 2
type: Transform
- uid: 5015
components:
- - pos: 65.5,14.5
+ - pos: 65.5,12.5
parent: 2
type: Transform
- uid: 5016
components:
- - pos: 65.5,15.5
+ - pos: 65.5,13.5
parent: 2
type: Transform
- uid: 5017
components:
- - pos: 53.5,27.5
+ - pos: 65.5,14.5
parent: 2
type: Transform
- uid: 5018
components:
- - pos: -25.5,-27.5
+ - pos: 65.5,15.5
parent: 2
type: Transform
- uid: 5019
components:
- - pos: -25.5,-28.5
+ - pos: 53.5,27.5
parent: 2
type: Transform
- uid: 5020
components:
- - pos: -25.5,-29.5
+ - pos: -25.5,-27.5
parent: 2
type: Transform
- uid: 5021
components:
- - pos: -26.5,-29.5
+ - pos: -25.5,-28.5
parent: 2
type: Transform
- uid: 5022
components:
- - pos: -28.5,-29.5
+ - pos: -25.5,-29.5
parent: 2
type: Transform
- uid: 5023
components:
- - pos: -27.5,-29.5
+ - pos: -26.5,-29.5
parent: 2
type: Transform
- uid: 5024
components:
- - pos: -24.5,-29.5
+ - pos: -28.5,-29.5
parent: 2
type: Transform
- uid: 5025
components:
- - pos: 8.5,-14.5
+ - pos: -27.5,-29.5
parent: 2
type: Transform
- uid: 5026
components:
- - pos: 7.5,-14.5
+ - pos: -24.5,-29.5
parent: 2
type: Transform
- uid: 5027
components:
- - pos: 6.5,-14.5
+ - pos: 8.5,-14.5
parent: 2
type: Transform
- uid: 5028
components:
- - pos: 5.5,-14.5
+ - pos: 7.5,-14.5
parent: 2
type: Transform
- uid: 5029
components:
- - pos: 4.5,-14.5
+ - pos: 6.5,-14.5
parent: 2
type: Transform
- uid: 5030
components:
- - pos: 4.5,-15.5
+ - pos: 5.5,-14.5
parent: 2
type: Transform
- uid: 5031
components:
- - pos: 4.5,-16.5
+ - pos: 4.5,-14.5
parent: 2
type: Transform
- uid: 5032
components:
- - pos: 3.5,-16.5
+ - pos: 4.5,-15.5
parent: 2
type: Transform
- uid: 5033
components:
- - pos: 2.5,-16.5
+ - pos: 4.5,-16.5
parent: 2
type: Transform
- uid: 5034
components:
- - pos: 1.5,-16.5
+ - pos: 3.5,-16.5
parent: 2
type: Transform
- uid: 5035
components:
- - pos: 0.5,-16.5
+ - pos: 2.5,-16.5
parent: 2
type: Transform
- uid: 5036
components:
- - pos: 2.5,-14.5
+ - pos: 1.5,-16.5
parent: 2
type: Transform
- uid: 5037
components:
- - pos: 3.5,-14.5
+ - pos: 0.5,-16.5
parent: 2
type: Transform
- uid: 5038
components:
- - pos: 1.5,-14.5
+ - pos: 2.5,-14.5
parent: 2
type: Transform
- uid: 5039
components:
- - pos: 0.5,-14.5
+ - pos: 3.5,-14.5
parent: 2
type: Transform
- uid: 5040
components:
- - pos: -0.5,-14.5
+ - pos: 1.5,-14.5
parent: 2
type: Transform
- uid: 5041
components:
- - pos: -0.5,-13.5
+ - pos: 0.5,-14.5
parent: 2
type: Transform
- uid: 5042
components:
- - pos: -0.5,-12.5
+ - pos: -0.5,-14.5
parent: 2
type: Transform
- uid: 5043
components:
- - pos: -0.5,-11.5
+ - pos: -0.5,-13.5
parent: 2
type: Transform
- uid: 5044
components:
- - pos: -0.5,-9.5
+ - pos: -0.5,-12.5
parent: 2
type: Transform
- uid: 5045
components:
- - pos: -0.5,-10.5
+ - pos: -0.5,-11.5
parent: 2
type: Transform
- uid: 5046
components:
- - pos: 0.5,35.5
+ - pos: -0.5,-9.5
parent: 2
type: Transform
- uid: 5047
components:
- - pos: 0.5,34.5
+ - pos: -0.5,-10.5
parent: 2
type: Transform
- uid: 5048
components:
- - pos: 0.5,33.5
+ - pos: 0.5,35.5
parent: 2
type: Transform
- uid: 5049
components:
- - pos: 0.5,32.5
+ - pos: 0.5,34.5
parent: 2
type: Transform
- uid: 5050
components:
- - pos: 1.5,32.5
+ - pos: 0.5,33.5
parent: 2
type: Transform
- uid: 5051
components:
- - pos: 2.5,32.5
+ - pos: 0.5,32.5
parent: 2
type: Transform
- uid: 5052
components:
- - pos: 13.5,32.5
+ - pos: 1.5,32.5
parent: 2
type: Transform
- uid: 5053
components:
- - pos: 14.5,32.5
+ - pos: 2.5,32.5
parent: 2
type: Transform
- uid: 5054
components:
- - pos: 15.5,32.5
+ - pos: 13.5,32.5
parent: 2
type: Transform
- uid: 5055
components:
- - pos: 16.5,32.5
+ - pos: 14.5,32.5
parent: 2
type: Transform
- uid: 5056
components:
- - pos: 16.5,33.5
+ - pos: 15.5,32.5
parent: 2
type: Transform
- uid: 5057
components:
- - pos: 16.5,34.5
+ - pos: 16.5,32.5
parent: 2
type: Transform
- uid: 5058
components:
- - pos: 16.5,31.5
+ - pos: 16.5,33.5
parent: 2
type: Transform
- uid: 5059
components:
- - pos: 16.5,30.5
+ - pos: 16.5,34.5
parent: 2
type: Transform
- uid: 5060
components:
- - pos: 16.5,29.5
+ - pos: 16.5,31.5
parent: 2
type: Transform
- uid: 5061
components:
- - pos: 16.5,28.5
+ - pos: 16.5,30.5
parent: 2
type: Transform
- uid: 5062
components:
- - pos: 16.5,27.5
+ - pos: 16.5,29.5
parent: 2
type: Transform
- uid: 5063
components:
- - pos: 16.5,26.5
+ - pos: 16.5,28.5
parent: 2
type: Transform
- uid: 5064
components:
- - pos: 16.5,25.5
+ - pos: 16.5,27.5
parent: 2
type: Transform
- uid: 5065
components:
- - pos: 15.5,25.5
+ - pos: 16.5,26.5
parent: 2
type: Transform
- uid: 5066
components:
- - pos: 14.5,25.5
+ - pos: 16.5,25.5
parent: 2
type: Transform
- uid: 5067
components:
- - pos: 13.5,25.5
+ - pos: 15.5,25.5
parent: 2
type: Transform
- uid: 5068
components:
- - pos: 12.5,25.5
+ - pos: 14.5,25.5
parent: 2
type: Transform
- uid: 5069
components:
- - pos: 11.5,25.5
+ - pos: 13.5,25.5
parent: 2
type: Transform
- uid: 5070
components:
- - pos: 8.5,25.5
+ - pos: 12.5,25.5
parent: 2
type: Transform
- uid: 5071
components:
- - pos: 9.5,25.5
+ - pos: 11.5,25.5
parent: 2
type: Transform
- uid: 5072
components:
- - pos: 10.5,25.5
+ - pos: 8.5,25.5
parent: 2
type: Transform
- uid: 5073
components:
- - pos: 8.5,24.5
+ - pos: 9.5,25.5
parent: 2
type: Transform
- uid: 5074
components:
- - pos: 7.5,24.5
+ - pos: 10.5,25.5
parent: 2
type: Transform
- uid: 5075
components:
- - pos: 6.5,24.5
+ - pos: 8.5,24.5
parent: 2
type: Transform
- uid: 5076
components:
- - pos: 5.5,24.5
+ - pos: 7.5,24.5
parent: 2
type: Transform
- uid: 5077
components:
- - pos: 4.5,24.5
+ - pos: 6.5,24.5
parent: 2
type: Transform
- uid: 5078
components:
- - pos: 3.5,24.5
+ - pos: 5.5,24.5
parent: 2
type: Transform
- uid: 5079
components:
- - pos: 2.5,24.5
+ - pos: 4.5,24.5
parent: 2
type: Transform
- uid: 5080
components:
- - pos: 1.5,24.5
+ - pos: 3.5,24.5
parent: 2
type: Transform
- uid: 5081
components:
- - pos: 0.5,24.5
+ - pos: 2.5,24.5
parent: 2
type: Transform
- uid: 5082
components:
- - pos: -0.5,24.5
+ - pos: 1.5,24.5
parent: 2
type: Transform
- uid: 5083
components:
- - pos: -1.5,24.5
+ - pos: 0.5,24.5
parent: 2
type: Transform
- uid: 5084
components:
- - pos: -0.5,32.5
+ - pos: -0.5,24.5
parent: 2
type: Transform
- uid: 5085
components:
- - pos: -1.5,32.5
+ - pos: -1.5,24.5
parent: 2
type: Transform
- uid: 5086
components:
- - pos: -2.5,32.5
+ - pos: -0.5,32.5
parent: 2
type: Transform
- uid: 5087
components:
- - pos: -3.5,32.5
+ - pos: -1.5,32.5
parent: 2
type: Transform
- uid: 5088
components:
- - pos: -4.5,32.5
+ - pos: -2.5,32.5
parent: 2
type: Transform
- uid: 5089
components:
- - pos: -5.5,32.5
+ - pos: -3.5,32.5
parent: 2
type: Transform
- uid: 5090
components:
- - pos: -6.5,32.5
+ - pos: -4.5,32.5
parent: 2
type: Transform
- uid: 5091
components:
- - pos: -7.5,32.5
+ - pos: -5.5,32.5
parent: 2
type: Transform
- uid: 5092
components:
- - pos: -8.5,32.5
+ - pos: -6.5,32.5
parent: 2
type: Transform
- uid: 5093
components:
- - pos: -8.5,31.5
+ - pos: -7.5,32.5
parent: 2
type: Transform
- uid: 5094
components:
- - pos: -8.5,30.5
+ - pos: -8.5,32.5
parent: 2
type: Transform
- uid: 5095
components:
- - pos: -8.5,29.5
+ - pos: -8.5,31.5
parent: 2
type: Transform
- uid: 5096
components:
- - pos: -8.5,28.5
+ - pos: -8.5,30.5
parent: 2
type: Transform
- uid: 5097
components:
- - pos: -8.5,27.5
+ - pos: -8.5,29.5
parent: 2
type: Transform
- uid: 5098
components:
- - pos: -8.5,26.5
+ - pos: -8.5,28.5
parent: 2
type: Transform
- uid: 5099
components:
- - pos: -12.5,26.5
+ - pos: -8.5,27.5
parent: 2
type: Transform
- uid: 5100
components:
- - pos: -8.5,23.5
+ - pos: -8.5,26.5
parent: 2
type: Transform
- uid: 5101
components:
- - pos: -1.5,33.5
+ - pos: -12.5,26.5
parent: 2
type: Transform
- uid: 5102
components:
- - pos: -1.5,34.5
+ - pos: -8.5,23.5
parent: 2
type: Transform
- uid: 5103
components:
- - pos: -1.5,31.5
+ - pos: -1.5,33.5
parent: 2
type: Transform
- uid: 5104
components:
- - pos: -15.5,26.5
+ - pos: -1.5,34.5
parent: 2
type: Transform
- uid: 5105
components:
- - pos: -11.5,28.5
+ - pos: -1.5,31.5
parent: 2
type: Transform
- uid: 5106
components:
- - pos: -11.5,29.5
+ - pos: -15.5,26.5
parent: 2
type: Transform
- uid: 5107
components:
- - pos: -68.5,-25.5
+ - pos: -11.5,28.5
parent: 2
type: Transform
- uid: 5108
components:
- - pos: -68.5,-24.5
+ - pos: -11.5,29.5
parent: 2
type: Transform
- uid: 5109
components:
- - pos: -68.5,-23.5
+ - pos: -68.5,-25.5
parent: 2
type: Transform
- uid: 5110
components:
- - pos: -69.5,-23.5
+ - pos: -68.5,-24.5
parent: 2
type: Transform
- uid: 5111
components:
- - pos: -70.5,-23.5
+ - pos: -68.5,-23.5
parent: 2
type: Transform
- uid: 5112
components:
- - pos: -71.5,-23.5
+ - pos: -69.5,-23.5
parent: 2
type: Transform
- uid: 5113
components:
- - pos: -72.5,-23.5
+ - pos: -70.5,-23.5
parent: 2
type: Transform
- uid: 5114
components:
- - pos: -73.5,-23.5
+ - pos: -71.5,-23.5
parent: 2
type: Transform
- uid: 5115
components:
- - pos: -72.5,-24.5
+ - pos: -72.5,-23.5
parent: 2
type: Transform
- uid: 5116
components:
- - pos: -72.5,-25.5
+ - pos: -73.5,-23.5
parent: 2
type: Transform
- uid: 5117
components:
- - pos: -74.5,-23.5
+ - pos: -72.5,-24.5
parent: 2
type: Transform
- uid: 5118
components:
- - pos: -74.5,-24.5
+ - pos: -72.5,-25.5
parent: 2
type: Transform
- uid: 5119
components:
- - pos: -42.5,-6.5
+ - pos: -74.5,-23.5
parent: 2
type: Transform
- uid: 5120
components:
- - pos: -43.5,-6.5
+ - pos: -74.5,-24.5
parent: 2
type: Transform
- uid: 5121
components:
- - pos: -44.5,-6.5
+ - pos: -42.5,-6.5
parent: 2
type: Transform
- uid: 5122
components:
- - pos: -45.5,-6.5
+ - pos: -43.5,-6.5
parent: 2
type: Transform
- uid: 5123
components:
- - pos: -46.5,-6.5
+ - pos: -44.5,-6.5
parent: 2
type: Transform
- uid: 5124
components:
- - pos: -47.5,-6.5
+ - pos: -45.5,-6.5
parent: 2
type: Transform
- uid: 5125
components:
- - pos: -48.5,-6.5
+ - pos: -46.5,-6.5
parent: 2
type: Transform
- uid: 5126
components:
- - pos: -42.5,16.5
+ - pos: -47.5,-6.5
parent: 2
type: Transform
- uid: 5127
components:
- - pos: -9.5,24.5
+ - pos: -48.5,-6.5
parent: 2
type: Transform
- uid: 5128
components:
- - pos: -10.5,26.5
+ - pos: -42.5,16.5
parent: 2
type: Transform
- uid: 5129
components:
- - pos: -9.5,26.5
+ - pos: -9.5,24.5
parent: 2
type: Transform
- uid: 5130
components:
- - pos: -9.5,25.5
+ - pos: -10.5,26.5
parent: 2
type: Transform
- uid: 5131
components:
- - pos: -9.5,23.5
+ - pos: -9.5,26.5
parent: 2
type: Transform
- uid: 5132
components:
- - pos: -14.5,26.5
+ - pos: -9.5,25.5
parent: 2
type: Transform
- uid: 5133
components:
- - pos: -11.5,27.5
+ - pos: -9.5,23.5
parent: 2
type: Transform
- uid: 5134
components:
- - pos: 21.5,22.5
+ - pos: -14.5,26.5
parent: 2
type: Transform
- uid: 5135
components:
- - pos: 21.5,23.5
+ - pos: -11.5,27.5
parent: 2
type: Transform
- uid: 5136
components:
- - pos: -18.5,15.5
+ - pos: 21.5,22.5
parent: 2
type: Transform
- uid: 5137
components:
- - pos: -18.5,16.5
+ - pos: 21.5,23.5
parent: 2
type: Transform
- uid: 5138
components:
- - pos: -18.5,17.5
+ - pos: -18.5,15.5
parent: 2
type: Transform
- uid: 5139
components:
- - pos: -18.5,18.5
+ - pos: -18.5,16.5
parent: 2
type: Transform
- uid: 5140
components:
- - pos: -18.5,19.5
+ - pos: -18.5,17.5
parent: 2
type: Transform
- uid: 5141
components:
- - pos: -18.5,20.5
+ - pos: -18.5,18.5
parent: 2
type: Transform
- uid: 5142
components:
- - pos: -18.5,21.5
+ - pos: -18.5,19.5
parent: 2
type: Transform
- uid: 5143
components:
- - pos: -19.5,21.5
+ - pos: -18.5,20.5
parent: 2
type: Transform
- uid: 5144
components:
- - pos: -20.5,21.5
+ - pos: -18.5,21.5
parent: 2
type: Transform
- uid: 5145
components:
- - pos: -21.5,21.5
+ - pos: -19.5,21.5
parent: 2
type: Transform
- uid: 5146
components:
- - pos: -22.5,21.5
+ - pos: -20.5,21.5
parent: 2
type: Transform
- uid: 5147
components:
- - pos: -23.5,21.5
+ - pos: -21.5,21.5
parent: 2
type: Transform
- uid: 5148
components:
- - pos: -23.5,22.5
+ - pos: -22.5,21.5
parent: 2
type: Transform
- uid: 5149
components:
- - pos: -23.5,23.5
+ - pos: -23.5,21.5
parent: 2
type: Transform
- uid: 5150
components:
- - pos: -23.5,24.5
+ - pos: -23.5,22.5
parent: 2
type: Transform
- uid: 5151
components:
- - pos: -23.5,25.5
+ - pos: -23.5,23.5
parent: 2
type: Transform
- uid: 5152
components:
- - pos: -23.5,26.5
+ - pos: -23.5,24.5
parent: 2
type: Transform
- uid: 5153
components:
- - pos: -24.5,21.5
+ - pos: -23.5,25.5
parent: 2
type: Transform
- uid: 5154
components:
- - pos: -25.5,21.5
+ - pos: -23.5,26.5
parent: 2
type: Transform
- uid: 5155
components:
- - pos: -26.5,21.5
+ - pos: -24.5,21.5
parent: 2
type: Transform
- uid: 5156
components:
- - pos: -27.5,21.5
+ - pos: -25.5,21.5
parent: 2
type: Transform
- uid: 5157
components:
- - pos: -28.5,21.5
+ - pos: -26.5,21.5
parent: 2
type: Transform
- uid: 5158
components:
- - pos: -28.5,22.5
+ - pos: -27.5,21.5
parent: 2
type: Transform
- uid: 5159
components:
- - pos: -29.5,22.5
+ - pos: -28.5,21.5
parent: 2
type: Transform
- uid: 5160
components:
- - pos: -30.5,22.5
+ - pos: -28.5,22.5
parent: 2
type: Transform
- uid: 5161
components:
- - pos: -31.5,22.5
+ - pos: -29.5,22.5
parent: 2
type: Transform
- uid: 5162
components:
- - pos: -32.5,22.5
+ - pos: -30.5,22.5
parent: 2
type: Transform
- uid: 5163
components:
- - pos: -32.5,23.5
+ - pos: -31.5,22.5
parent: 2
type: Transform
- uid: 5164
components:
- - pos: -32.5,24.5
+ - pos: -32.5,22.5
parent: 2
type: Transform
- uid: 5165
components:
- - pos: -32.5,25.5
+ - pos: -32.5,23.5
parent: 2
type: Transform
- uid: 5166
components:
- - pos: -32.5,26.5
+ - pos: -32.5,24.5
parent: 2
type: Transform
- uid: 5167
components:
- - pos: -32.5,27.5
+ - pos: -32.5,25.5
parent: 2
type: Transform
- uid: 5168
components:
- - pos: -31.5,27.5
+ - pos: -32.5,26.5
parent: 2
type: Transform
- uid: 5169
components:
- - pos: -30.5,27.5
+ - pos: -32.5,27.5
parent: 2
type: Transform
- uid: 5170
components:
- - pos: -33.5,27.5
+ - pos: -31.5,27.5
parent: 2
type: Transform
- uid: 5171
components:
- - pos: -32.5,28.5
+ - pos: -30.5,27.5
parent: 2
type: Transform
- uid: 5172
components:
- - pos: -32.5,29.5
+ - pos: -33.5,27.5
parent: 2
type: Transform
- uid: 5173
components:
- - pos: -32.5,30.5
+ - pos: -32.5,28.5
parent: 2
type: Transform
- uid: 5174
components:
- - pos: -33.5,30.5
+ - pos: -32.5,29.5
parent: 2
type: Transform
- uid: 5175
components:
- - pos: -33.5,25.5
+ - pos: -32.5,30.5
parent: 2
type: Transform
- uid: 5176
components:
- - pos: -34.5,25.5
+ - pos: -33.5,30.5
parent: 2
type: Transform
- uid: 5177
components:
- - pos: -35.5,25.5
+ - pos: -33.5,25.5
parent: 2
type: Transform
- uid: 5178
components:
- - pos: -36.5,25.5
+ - pos: -34.5,25.5
parent: 2
type: Transform
- uid: 5179
components:
- - pos: -37.5,25.5
+ - pos: -35.5,25.5
parent: 2
type: Transform
- uid: 5180
components:
- - pos: -38.5,25.5
+ - pos: -36.5,25.5
parent: 2
type: Transform
- uid: 5181
components:
- - pos: -38.5,24.5
+ - pos: -37.5,25.5
parent: 2
type: Transform
- uid: 5182
components:
- - pos: -38.5,23.5
+ - pos: -38.5,25.5
parent: 2
type: Transform
- uid: 5183
components:
- - pos: -38.5,22.5
+ - pos: -38.5,24.5
parent: 2
type: Transform
- uid: 5184
components:
- - pos: -39.5,22.5
+ - pos: -38.5,23.5
parent: 2
type: Transform
- uid: 5185
components:
- - pos: -40.5,22.5
+ - pos: -38.5,22.5
parent: 2
type: Transform
- uid: 5186
components:
- - pos: -41.5,22.5
+ - pos: -39.5,22.5
parent: 2
type: Transform
- uid: 5187
components:
- - pos: -42.5,22.5
+ - pos: -40.5,22.5
parent: 2
type: Transform
- uid: 5188
components:
- - pos: -43.5,22.5
+ - pos: -41.5,22.5
parent: 2
type: Transform
- uid: 5189
components:
- - pos: -44.5,22.5
+ - pos: -42.5,22.5
parent: 2
type: Transform
- uid: 5190
components:
- - pos: -45.5,22.5
+ - pos: -43.5,22.5
parent: 2
type: Transform
- uid: 5191
components:
- - pos: -46.5,22.5
+ - pos: -44.5,22.5
parent: 2
type: Transform
- uid: 5192
components:
- - pos: -47.5,22.5
+ - pos: -45.5,22.5
parent: 2
type: Transform
- uid: 5193
components:
- - pos: -48.5,22.5
+ - pos: -46.5,22.5
parent: 2
type: Transform
- uid: 5194
components:
- - pos: -49.5,22.5
+ - pos: -47.5,22.5
parent: 2
type: Transform
- uid: 5195
components:
- - pos: -50.5,22.5
+ - pos: -48.5,22.5
parent: 2
type: Transform
- uid: 5196
components:
- - pos: -32.5,21.5
+ - pos: -49.5,22.5
parent: 2
type: Transform
- uid: 5197
components:
- - pos: -32.5,20.5
+ - pos: -50.5,22.5
parent: 2
type: Transform
- uid: 5198
components:
- - pos: -32.5,19.5
+ - pos: -32.5,21.5
parent: 2
type: Transform
- uid: 5199
components:
- - pos: -32.5,18.5
+ - pos: -32.5,20.5
parent: 2
type: Transform
- uid: 5200
components:
- - pos: -33.5,18.5
+ - pos: -32.5,19.5
parent: 2
type: Transform
- uid: 5201
components:
- - pos: -34.5,18.5
+ - pos: -32.5,18.5
parent: 2
type: Transform
- uid: 5202
components:
- - pos: -35.5,18.5
+ - pos: -33.5,18.5
parent: 2
type: Transform
- uid: 5203
components:
- - pos: -36.5,18.5
+ - pos: -34.5,18.5
parent: 2
type: Transform
- uid: 5204
components:
- - pos: -37.5,18.5
+ - pos: -35.5,18.5
parent: 2
type: Transform
- uid: 5205
components:
- - pos: -38.5,18.5
+ - pos: -36.5,18.5
parent: 2
type: Transform
- uid: 5206
components:
- - pos: -39.5,18.5
+ - pos: -37.5,18.5
parent: 2
type: Transform
- uid: 5207
components:
- - pos: -40.5,18.5
+ - pos: -38.5,18.5
parent: 2
type: Transform
- uid: 5208
components:
- - pos: -41.5,18.5
+ - pos: -39.5,18.5
parent: 2
type: Transform
- uid: 5209
components:
- - pos: -42.5,18.5
+ - pos: -40.5,18.5
parent: 2
type: Transform
- uid: 5210
components:
- - pos: -43.5,18.5
+ - pos: -41.5,18.5
parent: 2
type: Transform
- uid: 5211
components:
- - pos: -44.5,18.5
+ - pos: -42.5,18.5
parent: 2
type: Transform
- uid: 5212
components:
- - pos: -45.5,18.5
+ - pos: -43.5,18.5
parent: 2
type: Transform
- uid: 5213
components:
- - pos: -46.5,18.5
+ - pos: -44.5,18.5
parent: 2
type: Transform
- uid: 5214
components:
- - pos: -47.5,18.5
+ - pos: -45.5,18.5
parent: 2
type: Transform
- uid: 5215
components:
- - pos: -37.5,19.5
+ - pos: -46.5,18.5
parent: 2
type: Transform
- uid: 5216
components:
- - pos: -37.5,20.5
+ - pos: -47.5,18.5
parent: 2
type: Transform
- uid: 5217
components:
- - pos: -37.5,21.5
+ - pos: -37.5,19.5
parent: 2
type: Transform
- uid: 5218
components:
- - pos: -36.5,21.5
+ - pos: -37.5,20.5
parent: 2
type: Transform
- uid: 5219
components:
- - pos: -36.5,22.5
+ - pos: -37.5,21.5
parent: 2
type: Transform
- uid: 5220
components:
- - pos: -47.5,19.5
+ - pos: -36.5,21.5
parent: 2
type: Transform
- uid: 5221
components:
- - pos: -48.5,19.5
+ - pos: -36.5,22.5
parent: 2
type: Transform
- uid: 5222
components:
- - pos: -49.5,19.5
+ - pos: -47.5,19.5
parent: 2
type: Transform
- uid: 5223
components:
- - pos: -50.5,19.5
+ - pos: -48.5,19.5
parent: 2
type: Transform
- uid: 5224
components:
- - pos: -46.5,23.5
+ - pos: -49.5,19.5
parent: 2
type: Transform
- uid: 5225
components:
- - pos: -46.5,24.5
+ - pos: -50.5,19.5
parent: 2
type: Transform
- uid: 5226
components:
- - pos: -46.5,25.5
+ - pos: -46.5,23.5
parent: 2
type: Transform
- uid: 5227
components:
- - pos: -46.5,26.5
+ - pos: -46.5,24.5
parent: 2
type: Transform
- uid: 5228
components:
- - pos: -43.5,19.5
+ - pos: -46.5,25.5
parent: 2
type: Transform
- uid: 5229
components:
- - pos: -41.5,19.5
+ - pos: -46.5,26.5
parent: 2
type: Transform
- uid: 5230
components:
- - pos: -31.5,25.5
+ - pos: -43.5,19.5
parent: 2
type: Transform
- uid: 5231
components:
- - pos: -30.5,25.5
+ - pos: -41.5,19.5
parent: 2
type: Transform
- uid: 5232
components:
- - pos: -29.5,25.5
+ - pos: -31.5,25.5
parent: 2
type: Transform
- uid: 5233
components:
- - pos: -28.5,25.5
+ - pos: -30.5,25.5
parent: 2
type: Transform
- uid: 5234
components:
- - pos: -27.5,25.5
+ - pos: -29.5,25.5
parent: 2
type: Transform
- uid: 5235
components:
- - pos: -25.5,20.5
+ - pos: -28.5,25.5
parent: 2
type: Transform
- uid: 5236
components:
- - pos: -25.5,19.5
+ - pos: -27.5,25.5
parent: 2
type: Transform
- uid: 5237
components:
- - pos: -25.5,18.5
+ - pos: -25.5,20.5
parent: 2
type: Transform
- uid: 5238
components:
- - pos: -26.5,18.5
+ - pos: -25.5,19.5
parent: 2
type: Transform
- uid: 5239
components:
- - pos: -27.5,18.5
+ - pos: -25.5,18.5
parent: 2
type: Transform
- uid: 5240
components:
- - pos: -29.5,18.5
+ - pos: -26.5,18.5
parent: 2
type: Transform
- uid: 5241
components:
- - pos: -28.5,18.5
+ - pos: -27.5,18.5
parent: 2
type: Transform
- uid: 5242
components:
- - pos: -18.5,22.5
+ - pos: -29.5,18.5
parent: 2
type: Transform
- uid: 5243
components:
- - pos: -18.5,23.5
+ - pos: -28.5,18.5
parent: 2
type: Transform
- uid: 5244
components:
- - pos: -24.5,18.5
+ - pos: -18.5,22.5
parent: 2
type: Transform
- uid: 5245
components:
- - pos: -41.5,27.5
+ - pos: -18.5,23.5
parent: 2
type: Transform
- uid: 5246
components:
- - pos: -51.5,22.5
+ - pos: -24.5,18.5
parent: 2
type: Transform
- uid: 5247
components:
- - pos: -52.5,22.5
+ - pos: -41.5,27.5
parent: 2
type: Transform
- uid: 5248
components:
- - pos: -52.5,21.5
+ - pos: -51.5,22.5
parent: 2
type: Transform
- uid: 5249
components:
- - pos: -52.5,-27.5
+ - pos: -52.5,22.5
parent: 2
type: Transform
- uid: 5250
components:
- - pos: -46.5,27.5
+ - pos: -52.5,21.5
parent: 2
type: Transform
- uid: 5251
components:
- - pos: -46.5,28.5
+ - pos: -52.5,-27.5
parent: 2
type: Transform
- uid: 5252
components:
- - pos: -46.5,29.5
+ - pos: -46.5,27.5
parent: 2
type: Transform
- uid: 5253
components:
- - pos: -46.5,30.5
+ - pos: -46.5,28.5
parent: 2
type: Transform
- uid: 5254
components:
- - pos: -46.5,31.5
+ - pos: -46.5,29.5
parent: 2
type: Transform
- uid: 5255
components:
- - pos: -46.5,32.5
+ - pos: -46.5,30.5
parent: 2
type: Transform
- uid: 5256
components:
- - pos: -46.5,33.5
+ - pos: -46.5,31.5
parent: 2
type: Transform
- uid: 5257
components:
- - pos: -47.5,33.5
+ - pos: -46.5,32.5
parent: 2
type: Transform
- uid: 5258
components:
- - pos: -48.5,33.5
+ - pos: -46.5,33.5
parent: 2
type: Transform
- uid: 5259
components:
- - pos: -49.5,33.5
+ - pos: -47.5,33.5
parent: 2
type: Transform
- uid: 5260
components:
- - pos: -50.5,33.5
+ - pos: -48.5,33.5
parent: 2
type: Transform
- uid: 5261
components:
- - pos: -51.5,33.5
+ - pos: -49.5,33.5
parent: 2
type: Transform
- uid: 5262
components:
- - pos: -47.5,31.5
+ - pos: -50.5,33.5
parent: 2
type: Transform
- uid: 5263
components:
- - pos: -48.5,31.5
+ - pos: -51.5,33.5
parent: 2
type: Transform
- uid: 5264
components:
- - pos: -49.5,31.5
+ - pos: -47.5,31.5
parent: 2
type: Transform
- uid: 5265
components:
- - pos: -50.5,31.5
+ - pos: -48.5,31.5
parent: 2
type: Transform
- uid: 5266
components:
- - pos: -51.5,31.5
+ - pos: -49.5,31.5
parent: 2
type: Transform
- uid: 5267
components:
- - pos: -45.5,30.5
+ - pos: -50.5,31.5
parent: 2
type: Transform
- uid: 5268
components:
- - pos: -44.5,30.5
+ - pos: -51.5,31.5
parent: 2
type: Transform
- uid: 5269
components:
- - pos: -43.5,30.5
+ - pos: -45.5,30.5
parent: 2
type: Transform
- uid: 5270
components:
- - pos: -42.5,30.5
+ - pos: -44.5,30.5
parent: 2
type: Transform
- uid: 5271
components:
- - pos: -41.5,30.5
+ - pos: -43.5,30.5
parent: 2
type: Transform
- uid: 5272
components:
- - pos: -40.5,30.5
+ - pos: -42.5,30.5
parent: 2
type: Transform
- uid: 5273
components:
- - pos: -40.5,31.5
+ - pos: -41.5,30.5
parent: 2
type: Transform
- uid: 5274
components:
- - pos: -39.5,31.5
+ - pos: -40.5,30.5
parent: 2
type: Transform
- uid: 5275
components:
- - pos: -38.5,31.5
+ - pos: -40.5,31.5
parent: 2
type: Transform
- uid: 5276
components:
- - pos: -37.5,31.5
+ - pos: -39.5,31.5
parent: 2
type: Transform
- uid: 5277
components:
- - pos: -36.5,31.5
+ - pos: -38.5,31.5
parent: 2
type: Transform
- uid: 5278
components:
- - pos: -37.5,30.5
+ - pos: -37.5,31.5
parent: 2
type: Transform
- uid: 5279
components:
- - pos: -37.5,29.5
+ - pos: -36.5,31.5
parent: 2
type: Transform
- uid: 5280
components:
- - pos: -44.5,31.5
+ - pos: -37.5,30.5
parent: 2
type: Transform
- uid: 5281
components:
- - pos: -44.5,32.5
+ - pos: -37.5,29.5
parent: 2
type: Transform
- uid: 5282
components:
- - pos: -44.5,33.5
+ - pos: -44.5,31.5
parent: 2
type: Transform
- uid: 5283
components:
- - pos: -44.5,34.5
+ - pos: -44.5,32.5
parent: 2
type: Transform
- uid: 5284
components:
- - pos: -42.5,29.5
+ - pos: -44.5,33.5
parent: 2
type: Transform
- uid: 5285
components:
- - pos: -42.5,28.5
+ - pos: -44.5,34.5
parent: 2
type: Transform
- uid: 5286
components:
- - pos: -43.5,33.5
+ - pos: -42.5,29.5
parent: 2
type: Transform
- uid: 5287
components:
- - pos: -44.5,35.5
+ - pos: -42.5,28.5
parent: 2
type: Transform
- uid: 5288
components:
- - pos: -45.5,35.5
+ - pos: -43.5,33.5
parent: 2
type: Transform
- uid: 5289
components:
- - pos: -46.5,35.5
+ - pos: -44.5,35.5
parent: 2
type: Transform
- uid: 5290
components:
- - pos: -47.5,35.5
+ - pos: -45.5,35.5
parent: 2
type: Transform
- uid: 5291
components:
- - pos: -23.5,17.5
+ - pos: -46.5,35.5
parent: 2
type: Transform
- uid: 5292
components:
- - pos: -24.5,8.5
+ - pos: -47.5,35.5
parent: 2
type: Transform
- uid: 5293
components:
- - pos: -24.5,9.5
+ - pos: -23.5,17.5
parent: 2
type: Transform
- uid: 5294
components:
- - pos: -24.5,10.5
+ - pos: -24.5,8.5
parent: 2
type: Transform
- uid: 5295
components:
- - pos: -25.5,10.5
+ - pos: -24.5,9.5
parent: 2
type: Transform
- uid: 5296
components:
- - pos: -25.5,11.5
+ - pos: -24.5,10.5
parent: 2
type: Transform
- uid: 5297
components:
- - pos: -25.5,12.5
+ - pos: -25.5,10.5
parent: 2
type: Transform
- uid: 5298
components:
- - pos: -25.5,13.5
+ - pos: -25.5,11.5
parent: 2
type: Transform
- uid: 5299
components:
- - pos: -25.5,14.5
+ - pos: -25.5,12.5
parent: 2
type: Transform
- uid: 5300
components:
- - pos: -24.5,13.5
+ - pos: -25.5,13.5
parent: 2
type: Transform
- uid: 5301
components:
- - pos: -23.5,13.5
+ - pos: -25.5,14.5
parent: 2
type: Transform
- uid: 5302
components:
- - pos: -26.5,12.5
+ - pos: -24.5,13.5
parent: 2
type: Transform
- uid: 5303
components:
- - pos: -27.5,12.5
+ - pos: -23.5,13.5
parent: 2
type: Transform
- uid: 5304
components:
- - pos: -42.5,15.5
+ - pos: -26.5,12.5
parent: 2
type: Transform
- uid: 5305
components:
- - pos: -42.5,2.5
+ - pos: -27.5,12.5
parent: 2
type: Transform
- uid: 5306
components:
- - pos: -42.5,1.5
+ - pos: -42.5,15.5
parent: 2
type: Transform
- uid: 5307
components:
- - pos: -41.5,1.5
+ - pos: -42.5,2.5
parent: 2
type: Transform
- uid: 5308
components:
- - pos: -40.5,1.5
+ - pos: -42.5,1.5
parent: 2
type: Transform
- uid: 5309
components:
- - pos: -39.5,1.5
+ - pos: -41.5,1.5
parent: 2
type: Transform
- uid: 5310
components:
- - pos: -38.5,1.5
+ - pos: -40.5,1.5
parent: 2
type: Transform
- uid: 5311
components:
- - pos: -37.5,1.5
+ - pos: -39.5,1.5
parent: 2
type: Transform
- uid: 5312
components:
- - pos: -37.5,2.5
+ - pos: -38.5,1.5
parent: 2
type: Transform
- uid: 5313
components:
- - pos: -37.5,3.5
+ - pos: -37.5,1.5
parent: 2
type: Transform
- uid: 5314
components:
- - pos: -37.5,4.5
+ - pos: -37.5,2.5
parent: 2
type: Transform
- uid: 5315
components:
- - pos: -37.5,5.5
+ - pos: -37.5,3.5
parent: 2
type: Transform
- uid: 5316
components:
- - pos: -37.5,6.5
+ - pos: -37.5,4.5
parent: 2
type: Transform
- uid: 5317
components:
- - pos: -37.5,7.5
+ - pos: -37.5,5.5
parent: 2
type: Transform
- uid: 5318
components:
- - pos: -37.5,8.5
+ - pos: -37.5,6.5
parent: 2
type: Transform
- uid: 5319
components:
- - pos: -37.5,9.5
+ - pos: -37.5,7.5
parent: 2
type: Transform
- uid: 5320
components:
- - pos: -37.5,10.5
+ - pos: -37.5,8.5
parent: 2
type: Transform
- uid: 5321
components:
- - pos: -37.5,11.5
+ - pos: -37.5,9.5
parent: 2
type: Transform
- uid: 5322
components:
- - pos: -37.5,12.5
+ - pos: -37.5,10.5
parent: 2
type: Transform
- uid: 5323
components:
- - pos: -37.5,13.5
+ - pos: -37.5,11.5
parent: 2
type: Transform
- uid: 5324
components:
- - pos: -38.5,13.5
+ - pos: -37.5,12.5
parent: 2
type: Transform
- uid: 5325
components:
- - pos: -39.5,13.5
+ - pos: -37.5,13.5
parent: 2
type: Transform
- uid: 5326
components:
- - pos: -42.5,13.5
+ - pos: -38.5,13.5
parent: 2
type: Transform
- uid: 5327
components:
- - pos: -42.5,14.5
+ - pos: -39.5,13.5
parent: 2
type: Transform
- uid: 5328
components:
- - pos: -39.5,14.5
+ - pos: -42.5,13.5
parent: 2
type: Transform
- uid: 5329
components:
- - pos: -39.5,15.5
+ - pos: -42.5,14.5
parent: 2
type: Transform
- uid: 5330
components:
- - pos: -36.5,13.5
+ - pos: -39.5,14.5
parent: 2
type: Transform
- uid: 5331
components:
- - pos: -35.5,13.5
+ - pos: -39.5,15.5
parent: 2
type: Transform
- uid: 5332
components:
- - pos: -34.5,13.5
+ - pos: -36.5,13.5
parent: 2
type: Transform
- uid: 5333
components:
- - pos: -33.5,13.5
+ - pos: -35.5,13.5
parent: 2
type: Transform
- uid: 5334
components:
- - pos: -35.5,14.5
+ - pos: -34.5,13.5
parent: 2
type: Transform
- uid: 5335
components:
- - pos: -35.5,15.5
+ - pos: -33.5,13.5
parent: 2
type: Transform
- uid: 5336
components:
- - pos: -33.5,14.5
+ - pos: -35.5,14.5
parent: 2
type: Transform
- uid: 5337
components:
- - pos: -32.5,14.5
+ - pos: -35.5,15.5
parent: 2
type: Transform
- uid: 5338
components:
- - pos: -31.5,14.5
+ - pos: -33.5,14.5
parent: 2
type: Transform
- uid: 5339
components:
- - pos: -30.5,14.5
+ - pos: -32.5,14.5
parent: 2
type: Transform
- uid: 5340
components:
- - pos: -30.5,13.5
+ - pos: -31.5,14.5
parent: 2
type: Transform
- uid: 5341
components:
- - pos: -30.5,12.5
+ - pos: -30.5,14.5
parent: 2
type: Transform
- uid: 5342
components:
- - pos: -30.5,11.5
+ - pos: -30.5,13.5
parent: 2
type: Transform
- uid: 5343
components:
- - pos: -30.5,10.5
+ - pos: -30.5,12.5
parent: 2
type: Transform
- uid: 5344
components:
- - pos: -30.5,9.5
+ - pos: -30.5,11.5
parent: 2
type: Transform
- uid: 5345
components:
- - pos: -30.5,8.5
+ - pos: -30.5,10.5
parent: 2
type: Transform
- uid: 5346
components:
- - pos: -31.5,10.5
+ - pos: -30.5,9.5
parent: 2
type: Transform
- uid: 5347
components:
- - pos: -32.5,10.5
+ - pos: -30.5,8.5
parent: 2
type: Transform
- uid: 5348
components:
- - pos: -33.5,10.5
+ - pos: -31.5,10.5
parent: 2
type: Transform
- uid: 5349
components:
- - pos: -29.5,9.5
+ - pos: -32.5,10.5
parent: 2
type: Transform
- uid: 5350
components:
- - pos: -28.5,9.5
+ - pos: -33.5,10.5
parent: 2
type: Transform
- uid: 5351
components:
- - pos: -30.5,7.5
+ - pos: -29.5,9.5
parent: 2
type: Transform
- uid: 5352
components:
- - pos: -37.5,0.5
+ - pos: -28.5,9.5
parent: 2
type: Transform
- uid: 5353
components:
- - pos: -37.5,-0.5
+ - pos: -30.5,7.5
parent: 2
type: Transform
- uid: 5354
components:
- - pos: -37.5,-1.5
+ - pos: -37.5,0.5
parent: 2
type: Transform
- uid: 5355
components:
- - pos: -37.5,-2.5
+ - pos: -37.5,-0.5
parent: 2
type: Transform
- uid: 5356
components:
- - pos: -38.5,-2.5
+ - pos: -37.5,-1.5
parent: 2
type: Transform
- uid: 5357
components:
- - pos: -39.5,-2.5
+ - pos: -37.5,-2.5
parent: 2
type: Transform
- uid: 5358
components:
- - pos: -40.5,-2.5
+ - pos: -38.5,-2.5
parent: 2
type: Transform
- uid: 5359
components:
- - pos: -41.5,-2.5
+ - pos: -39.5,-2.5
parent: 2
type: Transform
- uid: 5360
components:
- - pos: -42.5,-2.5
+ - pos: -40.5,-2.5
parent: 2
type: Transform
- uid: 5361
components:
- - pos: -42.5,-3.5
+ - pos: -41.5,-2.5
parent: 2
type: Transform
- uid: 5362
components:
- - pos: -43.5,-3.5
+ - pos: -42.5,-2.5
parent: 2
type: Transform
- uid: 5363
components:
- - pos: -44.5,-3.5
+ - pos: -42.5,-3.5
parent: 2
type: Transform
- uid: 5364
components:
- - pos: -45.5,-3.5
+ - pos: -43.5,-3.5
parent: 2
type: Transform
- uid: 5365
components:
- - pos: 55.5,12.5
+ - pos: -44.5,-3.5
parent: 2
type: Transform
- uid: 5366
components:
- - pos: -36.5,-0.5
+ - pos: -45.5,-3.5
parent: 2
type: Transform
- uid: 5367
components:
- - pos: -35.5,-0.5
+ - pos: 55.5,12.5
parent: 2
type: Transform
- uid: 5368
components:
- - pos: -34.5,-0.5
+ - pos: -36.5,-0.5
parent: 2
type: Transform
- uid: 5369
components:
- - pos: -33.5,-0.5
+ - pos: -35.5,-0.5
parent: 2
type: Transform
- uid: 5370
components:
- - pos: -32.5,-0.5
+ - pos: -34.5,-0.5
parent: 2
type: Transform
- uid: 5371
components:
- - pos: -31.5,-0.5
+ - pos: -33.5,-0.5
parent: 2
type: Transform
- uid: 5372
components:
- - pos: -30.5,-0.5
+ - pos: -32.5,-0.5
parent: 2
type: Transform
- uid: 5373
components:
- - pos: -29.5,-0.5
+ - pos: -31.5,-0.5
parent: 2
type: Transform
- uid: 5374
components:
- - pos: -29.5,-1.5
+ - pos: -30.5,-0.5
parent: 2
type: Transform
- uid: 5375
components:
- - pos: -29.5,-2.5
+ - pos: -29.5,-0.5
parent: 2
type: Transform
- uid: 5376
components:
- - pos: -29.5,-3.5
+ - pos: -29.5,-1.5
parent: 2
type: Transform
- uid: 5377
components:
- - pos: -28.5,-3.5
+ - pos: -29.5,-2.5
parent: 2
type: Transform
- uid: 5378
components:
- - pos: -28.5,-4.5
+ - pos: -29.5,-3.5
parent: 2
type: Transform
- uid: 5379
components:
- - pos: -28.5,-4.5
+ - pos: -28.5,-3.5
parent: 2
type: Transform
- uid: 5380
components:
- - pos: -28.5,-5.5
+ - pos: -28.5,-4.5
parent: 2
type: Transform
- uid: 5381
components:
- - pos: -30.5,0.5
+ - pos: -28.5,-4.5
parent: 2
type: Transform
- uid: 5382
components:
- - pos: -30.5,1.5
+ - pos: -28.5,-5.5
parent: 2
type: Transform
- uid: 5383
components:
- - pos: -23.5,18.5
+ - pos: -30.5,0.5
parent: 2
type: Transform
- uid: 5384
components:
- - pos: -41.5,26.5
+ - pos: -30.5,1.5
parent: 2
type: Transform
- uid: 5385
components:
- - pos: -2.5,24.5
+ - pos: -23.5,18.5
parent: 2
type: Transform
- uid: 5386
components:
- - pos: -2.5,23.5
+ - pos: -41.5,26.5
parent: 2
type: Transform
- uid: 5387
components:
- - pos: -3.5,23.5
+ - pos: -2.5,24.5
parent: 2
type: Transform
- uid: 5388
components:
- - pos: -3.5,22.5
+ - pos: -2.5,23.5
parent: 2
type: Transform
- uid: 5389
components:
- - pos: -4.5,22.5
+ - pos: -3.5,23.5
parent: 2
type: Transform
- uid: 5390
components:
- - pos: -5.5,22.5
+ - pos: -3.5,22.5
parent: 2
type: Transform
- uid: 5391
components:
- - pos: 65.5,-8.5
+ - pos: -4.5,22.5
parent: 2
type: Transform
- uid: 5392
components:
- - pos: 65.5,-0.5
+ - pos: -5.5,22.5
parent: 2
type: Transform
- uid: 5393
components:
- - pos: 65.5,-1.5
+ - pos: 65.5,-8.5
parent: 2
type: Transform
- uid: 5394
components:
- - pos: 68.5,-3.5
+ - pos: 65.5,-0.5
parent: 2
type: Transform
- uid: 5395
components:
- - pos: 65.5,-12.5
+ - pos: 65.5,-1.5
parent: 2
type: Transform
- uid: 5396
components:
- - pos: 65.5,-10.5
+ - pos: 68.5,-3.5
parent: 2
type: Transform
- uid: 5397
components:
- - pos: -42.5,0.5
+ - pos: 65.5,-12.5
parent: 2
type: Transform
- uid: 5398
components:
- - pos: -43.5,0.5
+ - pos: 65.5,-10.5
parent: 2
type: Transform
- uid: 5399
components:
- - pos: -44.5,0.5
+ - pos: -42.5,0.5
parent: 2
type: Transform
- uid: 5400
components:
- - pos: -45.5,0.5
+ - pos: -43.5,0.5
parent: 2
type: Transform
- uid: 5401
components:
- - pos: -46.5,0.5
+ - pos: -44.5,0.5
parent: 2
type: Transform
- uid: 5402
components:
- - pos: -46.5,1.5
+ - pos: -45.5,0.5
parent: 2
type: Transform
- uid: 5403
components:
- - pos: -46.5,2.5
+ - pos: -46.5,0.5
parent: 2
type: Transform
- uid: 5404
components:
- - pos: -46.5,3.5
+ - pos: -46.5,1.5
parent: 2
type: Transform
- uid: 5405
components:
- - pos: -46.5,4.5
+ - pos: -46.5,2.5
parent: 2
type: Transform
- uid: 5406
components:
- - pos: -46.5,5.5
+ - pos: -46.5,3.5
parent: 2
type: Transform
- uid: 5407
components:
- - pos: -46.5,6.5
+ - pos: -46.5,4.5
parent: 2
type: Transform
- uid: 5408
components:
- - pos: -46.5,7.5
+ - pos: -46.5,5.5
parent: 2
type: Transform
- uid: 5409
components:
- - pos: -46.5,8.5
+ - pos: -46.5,6.5
parent: 2
type: Transform
- uid: 5410
components:
- - pos: -45.5,5.5
+ - pos: -46.5,7.5
parent: 2
type: Transform
- uid: 5411
components:
- - pos: -44.5,5.5
+ - pos: -46.5,8.5
parent: 2
type: Transform
- uid: 5412
components:
- - pos: -45.5,3.5
+ - pos: -45.5,5.5
parent: 2
type: Transform
- uid: 5413
components:
- - pos: -44.5,3.5
+ - pos: -44.5,5.5
parent: 2
type: Transform
- uid: 5414
components:
- - pos: -47.5,7.5
+ - pos: -45.5,3.5
parent: 2
type: Transform
- uid: 5415
components:
- - pos: -48.5,7.5
+ - pos: -44.5,3.5
parent: 2
type: Transform
- uid: 5416
components:
- - pos: -46.5,9.5
+ - pos: -47.5,7.5
parent: 2
type: Transform
- uid: 5417
components:
- - pos: -46.5,10.5
+ - pos: -48.5,7.5
parent: 2
type: Transform
- uid: 5418
components:
- - pos: -46.5,11.5
+ - pos: -46.5,9.5
parent: 2
type: Transform
- uid: 5419
components:
- - pos: -47.5,11.5
+ - pos: -46.5,10.5
parent: 2
type: Transform
- uid: 5420
components:
- - pos: -48.5,11.5
+ - pos: -46.5,11.5
parent: 2
type: Transform
- uid: 5421
components:
- - pos: -49.5,11.5
+ - pos: -47.5,11.5
parent: 2
type: Transform
- uid: 5422
components:
- - pos: -50.5,11.5
+ - pos: -48.5,11.5
parent: 2
type: Transform
- uid: 5423
components:
- - pos: -51.5,11.5
+ - pos: -49.5,11.5
parent: 2
type: Transform
- uid: 5424
components:
- - pos: -51.5,10.5
+ - pos: -50.5,11.5
parent: 2
type: Transform
- uid: 5425
components:
- - pos: -52.5,10.5
+ - pos: -51.5,11.5
parent: 2
type: Transform
- uid: 5426
components:
- - pos: -52.5,9.5
+ - pos: -51.5,10.5
parent: 2
type: Transform
- uid: 5427
components:
- - pos: -52.5,8.5
+ - pos: -52.5,10.5
parent: 2
type: Transform
- uid: 5428
components:
- - pos: -52.5,7.5
+ - pos: -52.5,9.5
parent: 2
type: Transform
- uid: 5429
components:
- - pos: -51.5,12.5
+ - pos: -52.5,8.5
parent: 2
type: Transform
- uid: 5430
components:
- - pos: -51.5,13.5
+ - pos: -52.5,7.5
parent: 2
type: Transform
- uid: 5431
components:
- - pos: -51.5,14.5
+ - pos: -51.5,12.5
parent: 2
type: Transform
- uid: 5432
components:
- - pos: -48.5,12.5
+ - pos: -51.5,13.5
parent: 2
type: Transform
- uid: 5433
components:
- - pos: -48.5,13.5
+ - pos: -51.5,14.5
parent: 2
type: Transform
- uid: 5434
components:
- - pos: -48.5,14.5
+ - pos: -48.5,12.5
parent: 2
type: Transform
- uid: 5435
components:
- - pos: -46.5,12.5
+ - pos: -48.5,13.5
parent: 2
type: Transform
- uid: 5436
components:
- - pos: -46.5,13.5
+ - pos: -48.5,14.5
parent: 2
type: Transform
- uid: 5437
components:
- - pos: -46.5,14.5
+ - pos: -46.5,12.5
parent: 2
type: Transform
- uid: 5438
components:
- - pos: -45.5,11.5
+ - pos: -46.5,13.5
parent: 2
type: Transform
- uid: 5439
components:
- - pos: -44.5,11.5
+ - pos: -46.5,14.5
parent: 2
type: Transform
- uid: 5440
components:
- - pos: -43.5,11.5
+ - pos: -45.5,11.5
parent: 2
type: Transform
- uid: 5441
components:
- - pos: -42.5,11.5
+ - pos: -44.5,11.5
parent: 2
type: Transform
- uid: 5442
components:
- - pos: -42.5,10.5
+ - pos: -43.5,11.5
parent: 2
type: Transform
- uid: 5443
components:
- - pos: -47.5,7.5
+ - pos: -42.5,11.5
parent: 2
type: Transform
- uid: 5444
components:
- - pos: -47.5,0.5
+ - pos: -42.5,10.5
parent: 2
type: Transform
- uid: 5445
components:
- - pos: -48.5,0.5
+ - pos: -47.5,7.5
parent: 2
type: Transform
- uid: 5446
components:
- - pos: -49.5,0.5
+ - pos: -47.5,0.5
parent: 2
type: Transform
- uid: 5447
components:
- - pos: -49.5,-0.5
+ - pos: -48.5,0.5
parent: 2
type: Transform
- uid: 5448
components:
- - pos: -49.5,-1.5
+ - pos: -49.5,0.5
parent: 2
type: Transform
- uid: 5449
components:
- - pos: -49.5,-2.5
+ - pos: -49.5,-0.5
parent: 2
type: Transform
- uid: 5450
components:
- - pos: -49.5,-3.5
+ - pos: -49.5,-1.5
parent: 2
type: Transform
- uid: 5451
components:
- - pos: -50.5,-3.5
+ - pos: -49.5,-2.5
parent: 2
type: Transform
- uid: 5452
components:
- - pos: -51.5,-3.5
+ - pos: -49.5,-3.5
parent: 2
type: Transform
- uid: 5453
components:
- - pos: -52.5,-3.5
+ - pos: -50.5,-3.5
parent: 2
type: Transform
- uid: 5454
components:
- - pos: -53.5,-3.5
+ - pos: -51.5,-3.5
parent: 2
type: Transform
- uid: 5455
components:
- - pos: -54.5,-3.5
+ - pos: -52.5,-3.5
parent: 2
type: Transform
- uid: 5456
components:
- - pos: -53.5,-2.5
+ - pos: -53.5,-3.5
parent: 2
type: Transform
- uid: 5457
components:
- - pos: -53.5,-1.5
+ - pos: -54.5,-3.5
parent: 2
type: Transform
- uid: 5458
components:
- - pos: -54.5,-1.5
+ - pos: -53.5,-2.5
parent: 2
type: Transform
- uid: 5459
components:
- - pos: -55.5,-1.5
+ - pos: -53.5,-1.5
parent: 2
type: Transform
- uid: 5460
components:
- - pos: -56.5,-1.5
+ - pos: -54.5,-1.5
parent: 2
type: Transform
- uid: 5461
components:
- - pos: -51.5,-2.5
+ - pos: -55.5,-1.5
parent: 2
type: Transform
- uid: 5462
components:
- - pos: -51.5,-1.5
+ - pos: -56.5,-1.5
parent: 2
type: Transform
- uid: 5463
components:
- - pos: -51.5,-0.5
+ - pos: -51.5,-2.5
parent: 2
type: Transform
- uid: 5464
components:
- - pos: -51.5,0.5
+ - pos: -51.5,-1.5
parent: 2
type: Transform
- uid: 5465
components:
- - pos: -51.5,1.5
+ - pos: -51.5,-0.5
parent: 2
type: Transform
- uid: 5466
components:
- - pos: -51.5,2.5
+ - pos: -51.5,0.5
parent: 2
type: Transform
- uid: 5467
components:
- - pos: -51.5,3.5
+ - pos: -51.5,1.5
parent: 2
type: Transform
- uid: 5468
components:
- - pos: -45.5,-2.5
+ - pos: -51.5,2.5
parent: 2
type: Transform
- uid: 5469
components:
- - pos: -46.5,-2.5
+ - pos: -51.5,3.5
parent: 2
type: Transform
- uid: 5470
components:
- - pos: -47.5,-2.5
+ - pos: -45.5,-2.5
parent: 2
type: Transform
- uid: 5471
components:
- - pos: 3.5,-64.5
+ - pos: -46.5,-2.5
parent: 2
type: Transform
- uid: 5472
components:
- - pos: 68.5,-5.5
+ - pos: -47.5,-2.5
parent: 2
type: Transform
- uid: 5473
components:
- - pos: -19.5,-52.5
+ - pos: 3.5,-64.5
parent: 2
type: Transform
- uid: 5474
components:
- - pos: -20.5,-52.5
+ - pos: 68.5,-5.5
parent: 2
type: Transform
- uid: 5475
components:
- - pos: 67.5,-5.5
+ - pos: -19.5,-52.5
parent: 2
type: Transform
- uid: 5476
components:
- - pos: 66.5,-5.5
+ - pos: -20.5,-52.5
parent: 2
type: Transform
- uid: 5477
components:
- - pos: 65.5,-6.5
+ - pos: 67.5,-5.5
parent: 2
type: Transform
- uid: 5478
components:
- - pos: 65.5,-7.5
+ - pos: 66.5,-5.5
parent: 2
type: Transform
- uid: 5479
components:
- - pos: 65.5,-9.5
+ - pos: 65.5,-6.5
parent: 2
type: Transform
- uid: 5480
components:
- - pos: 66.5,-3.5
+ - pos: 65.5,-7.5
parent: 2
type: Transform
- uid: 5481
components:
- - pos: 65.5,-2.5
+ - pos: 65.5,-9.5
parent: 2
type: Transform
- uid: 5482
components:
- - pos: 67.5,-3.5
+ - pos: 66.5,-3.5
parent: 2
type: Transform
- uid: 5483
components:
- - pos: -28.5,1.5
+ - pos: 65.5,-2.5
parent: 2
type: Transform
- uid: 5484
components:
- - pos: -27.5,1.5
+ - pos: 67.5,-3.5
parent: 2
type: Transform
- uid: 5485
components:
- - pos: -27.5,0.5
+ - pos: -28.5,1.5
parent: 2
type: Transform
- uid: 5486
components:
- - pos: 22.5,-46.5
+ - pos: -27.5,1.5
parent: 2
type: Transform
- uid: 5487
components:
- - pos: -11.5,26.5
+ - pos: -27.5,0.5
parent: 2
type: Transform
- uid: 5488
components:
- - pos: -13.5,26.5
+ - pos: 22.5,-46.5
parent: 2
type: Transform
- uid: 5489
components:
- - pos: -26.5,0.5
+ - pos: -11.5,26.5
parent: 2
type: Transform
- uid: 5490
components:
- - pos: -8.5,14.5
+ - pos: -13.5,26.5
parent: 2
type: Transform
- uid: 5491
components:
- - pos: -8.5,15.5
+ - pos: -26.5,0.5
parent: 2
type: Transform
- uid: 5492
components:
- - pos: -1.5,-80.5
+ - pos: -8.5,14.5
parent: 2
type: Transform
- uid: 5493
components:
- - pos: -1.5,-81.5
+ - pos: -8.5,15.5
parent: 2
type: Transform
- uid: 5494
components:
- - pos: -1.5,-82.5
+ - pos: -1.5,-80.5
parent: 2
type: Transform
- uid: 5495
components:
- - pos: -74.5,-25.5
+ - pos: -1.5,-81.5
parent: 2
type: Transform
- uid: 5496
components:
- - pos: -56.5,-18.5
+ - pos: -1.5,-82.5
parent: 2
type: Transform
- uid: 5497
components:
- - pos: -23.5,10.5
+ - pos: -74.5,-25.5
parent: 2
type: Transform
- uid: 5498
components:
- - pos: -22.5,10.5
+ - pos: -56.5,-18.5
parent: 2
type: Transform
- uid: 5499
components:
- - pos: -22.5,11.5
+ - pos: -23.5,10.5
parent: 2
type: Transform
- uid: 5500
components:
- - pos: 41.5,14.5
+ - pos: -22.5,10.5
parent: 2
type: Transform
- uid: 5501
components:
- - pos: 42.5,14.5
+ - pos: -22.5,11.5
parent: 2
type: Transform
- uid: 5502
components:
- - pos: -75.5,-11.5
+ - pos: 41.5,14.5
parent: 2
type: Transform
- uid: 5503
components:
- - pos: -75.5,-10.5
+ - pos: 42.5,14.5
parent: 2
type: Transform
- uid: 5504
components:
- - pos: -75.5,-9.5
+ - pos: -75.5,-11.5
parent: 2
type: Transform
- uid: 5505
components:
- - pos: -75.5,-8.5
+ - pos: -75.5,-10.5
parent: 2
type: Transform
- uid: 5506
components:
- - pos: -75.5,-7.5
+ - pos: -75.5,-9.5
parent: 2
type: Transform
- uid: 5507
components:
- - pos: -75.5,-6.5
+ - pos: -75.5,-8.5
parent: 2
type: Transform
- uid: 5508
components:
- - pos: -75.5,-5.5
+ - pos: -75.5,-7.5
parent: 2
type: Transform
- uid: 5509
components:
- - pos: -75.5,-4.5
+ - pos: -75.5,-6.5
parent: 2
type: Transform
- uid: 5510
components:
- - pos: -74.5,-4.5
+ - pos: -75.5,-5.5
parent: 2
type: Transform
- uid: 5511
components:
- - pos: -73.5,-4.5
+ - pos: -75.5,-4.5
parent: 2
type: Transform
- uid: 5512
components:
- - pos: -72.5,-4.5
+ - pos: -74.5,-4.5
parent: 2
type: Transform
- uid: 5513
components:
- - pos: -71.5,-4.5
+ - pos: -73.5,-4.5
parent: 2
type: Transform
- uid: 5514
components:
- - pos: -70.5,-4.5
+ - pos: -72.5,-4.5
parent: 2
type: Transform
- uid: 5515
components:
- - pos: -69.5,-4.5
+ - pos: -71.5,-4.5
parent: 2
type: Transform
- uid: 5516
components:
- - pos: -68.5,-4.5
+ - pos: -70.5,-4.5
parent: 2
type: Transform
- uid: 5517
components:
- - pos: -67.5,-4.5
+ - pos: -69.5,-4.5
parent: 2
type: Transform
- uid: 5518
components:
- - pos: -66.5,-4.5
+ - pos: -68.5,-4.5
parent: 2
type: Transform
- uid: 5519
components:
- - pos: -65.5,-4.5
+ - pos: -67.5,-4.5
parent: 2
type: Transform
- uid: 5520
components:
- - pos: -64.5,-4.5
+ - pos: -66.5,-4.5
parent: 2
type: Transform
- uid: 5521
components:
- - pos: -47.5,39.5
+ - pos: -65.5,-4.5
parent: 2
type: Transform
- uid: 5522
components:
- - pos: -47.5,40.5
+ - pos: -64.5,-4.5
parent: 2
type: Transform
- uid: 5523
components:
- - pos: -47.5,41.5
+ - pos: -47.5,39.5
parent: 2
type: Transform
- uid: 5524
components:
- - pos: -46.5,41.5
+ - pos: -47.5,40.5
parent: 2
type: Transform
- uid: 5525
components:
- - pos: -45.5,41.5
+ - pos: -47.5,41.5
parent: 2
type: Transform
- uid: 5526
components:
- - pos: -45.5,42.5
+ - pos: -46.5,41.5
parent: 2
type: Transform
- uid: 5527
components:
- - pos: -45.5,46.5
+ - pos: -45.5,41.5
parent: 2
type: Transform
- uid: 5528
components:
- - pos: -45.5,47.5
+ - pos: -45.5,42.5
parent: 2
type: Transform
- uid: 5529
components:
- - pos: -45.5,48.5
+ - pos: -45.5,46.5
parent: 2
type: Transform
- uid: 5530
components:
- - pos: -45.5,49.5
+ - pos: -45.5,47.5
parent: 2
type: Transform
- uid: 5531
components:
- - pos: -46.5,49.5
+ - pos: -45.5,48.5
parent: 2
type: Transform
- uid: 5532
components:
- - pos: -46.5,50.5
+ - pos: -45.5,49.5
parent: 2
type: Transform
- uid: 5533
components:
- - pos: -46.5,51.5
+ - pos: -46.5,49.5
parent: 2
type: Transform
- uid: 5534
components:
- - pos: -46.5,52.5
+ - pos: -46.5,50.5
parent: 2
type: Transform
- uid: 5535
components:
- - pos: -46.5,53.5
+ - pos: -46.5,51.5
parent: 2
type: Transform
- uid: 5536
components:
- - pos: -45.5,53.5
+ - pos: -46.5,52.5
parent: 2
type: Transform
- uid: 5537
components:
- - pos: -44.5,53.5
+ - pos: -46.5,53.5
parent: 2
type: Transform
- uid: 5538
components:
- - pos: -43.5,53.5
+ - pos: -45.5,53.5
parent: 2
type: Transform
- uid: 5539
components:
- - pos: -42.5,53.5
+ - pos: -44.5,53.5
parent: 2
type: Transform
- uid: 5540
components:
- - pos: -41.5,53.5
+ - pos: -43.5,53.5
parent: 2
type: Transform
- uid: 5541
components:
- - pos: -40.5,53.5
+ - pos: -42.5,53.5
parent: 2
type: Transform
- uid: 5542
components:
- - pos: -39.5,53.5
+ - pos: -41.5,53.5
parent: 2
type: Transform
- uid: 5543
components:
- - pos: -38.5,53.5
+ - pos: -40.5,53.5
parent: 2
type: Transform
- uid: 5544
components:
- - pos: -37.5,53.5
+ - pos: -39.5,53.5
parent: 2
type: Transform
- uid: 5545
components:
- - pos: -47.5,53.5
+ - pos: -38.5,53.5
parent: 2
type: Transform
- uid: 5546
components:
- - pos: -48.5,53.5
+ - pos: -37.5,53.5
parent: 2
type: Transform
- uid: 5547
components:
- - pos: -49.5,53.5
+ - pos: -47.5,53.5
parent: 2
type: Transform
- uid: 5548
components:
- - pos: -50.5,53.5
+ - pos: -48.5,53.5
parent: 2
type: Transform
- uid: 5549
components:
- - pos: -51.5,53.5
+ - pos: -49.5,53.5
parent: 2
type: Transform
- uid: 5550
components:
- - pos: -52.5,53.5
+ - pos: -50.5,53.5
parent: 2
type: Transform
- uid: 5551
components:
- - pos: 10.5,-65.5
+ - pos: -51.5,53.5
parent: 2
type: Transform
- uid: 5552
components:
- - pos: 11.5,-65.5
+ - pos: -52.5,53.5
parent: 2
type: Transform
- uid: 5553
components:
- - pos: 12.5,-65.5
+ - pos: 10.5,-65.5
parent: 2
type: Transform
- uid: 5554
components:
- - pos: 13.5,-65.5
+ - pos: 11.5,-65.5
parent: 2
type: Transform
- uid: 5555
components:
- - pos: 14.5,-65.5
+ - pos: 12.5,-65.5
parent: 2
type: Transform
- uid: 5556
components:
- - pos: 26.5,31.5
+ - pos: 13.5,-65.5
parent: 2
type: Transform
- uid: 5557
components:
- - pos: 25.5,31.5
+ - pos: 14.5,-65.5
parent: 2
type: Transform
- uid: 5558
components:
- - pos: 24.5,31.5
+ - pos: 26.5,31.5
parent: 2
type: Transform
- uid: 5559
components:
- - pos: 24.5,32.5
+ - pos: 25.5,31.5
parent: 2
type: Transform
- uid: 5560
components:
- - pos: 24.5,33.5
+ - pos: 24.5,31.5
parent: 2
type: Transform
- uid: 5561
components:
- - pos: 24.5,34.5
+ - pos: 24.5,32.5
parent: 2
type: Transform
- uid: 5562
components:
- - pos: 54.5,28.5
+ - pos: 24.5,33.5
parent: 2
type: Transform
- uid: 5563
components:
- - pos: 53.5,28.5
+ - pos: 24.5,34.5
parent: 2
type: Transform
- uid: 5564
components:
- - pos: -62.5,-30.5
+ - pos: 54.5,28.5
parent: 2
type: Transform
- uid: 5565
components:
- - pos: -61.5,-30.5
+ - pos: 53.5,28.5
parent: 2
type: Transform
- uid: 5566
components:
- - pos: -60.5,-30.5
+ - pos: -62.5,-30.5
parent: 2
type: Transform
- uid: 5567
components:
- - pos: -40.5,-41.5
+ - pos: -61.5,-30.5
parent: 2
type: Transform
- uid: 5568
components:
- - pos: 48.5,-46.5
+ - pos: -60.5,-30.5
parent: 2
type: Transform
- uid: 5569
components:
- - pos: 48.5,-48.5
+ - pos: -40.5,-41.5
parent: 2
type: Transform
- uid: 5570
components:
- - pos: 28.5,-5.5
+ - pos: 48.5,-46.5
parent: 2
type: Transform
- uid: 5571
components:
- - pos: -24.5,-13.5
+ - pos: 48.5,-48.5
parent: 2
type: Transform
- uid: 5572
components:
- - pos: 65.5,-43.5
+ - pos: 28.5,-5.5
parent: 2
type: Transform
- uid: 5573
components:
- - pos: -52.5,-73.5
+ - pos: -24.5,-13.5
parent: 2
type: Transform
- uid: 5574
components:
- - pos: -51.5,-73.5
+ - pos: 65.5,-43.5
parent: 2
type: Transform
- uid: 5575
components:
- - pos: -51.5,-74.5
+ - pos: -52.5,-73.5
parent: 2
type: Transform
- uid: 5576
components:
- - pos: -46.5,-75.5
+ - pos: -51.5,-73.5
parent: 2
type: Transform
- uid: 5577
components:
- - pos: 59.5,-32.5
+ - pos: -51.5,-74.5
parent: 2
type: Transform
- uid: 5578
components:
- - pos: 52.5,-13.5
+ - pos: -46.5,-75.5
parent: 2
type: Transform
- uid: 5579
components:
- - pos: 52.5,-14.5
+ - pos: 59.5,-32.5
parent: 2
type: Transform
- uid: 5580
components:
- - pos: 52.5,-15.5
+ - pos: 52.5,-13.5
parent: 2
type: Transform
- uid: 5581
components:
- - pos: 65.5,-11.5
+ - pos: 52.5,-14.5
parent: 2
type: Transform
- uid: 5582
components:
- - pos: 65.5,-13.5
+ - pos: 52.5,-15.5
parent: 2
type: Transform
- uid: 5583
components:
- - pos: 65.5,-5.5
+ - pos: 65.5,-11.5
parent: 2
type: Transform
- uid: 5584
components:
- - pos: 65.5,-3.5
+ - pos: 65.5,-13.5
parent: 2
type: Transform
- uid: 5585
components:
- - pos: 11.5,-5.5
+ - pos: 65.5,-5.5
parent: 2
type: Transform
- uid: 5586
components:
- - pos: 10.5,-0.5
+ - pos: 65.5,-3.5
parent: 2
type: Transform
- uid: 5587
components:
- - pos: 9.5,-0.5
+ - pos: 11.5,-5.5
parent: 2
type: Transform
- uid: 5588
components:
- - pos: 9.5,-1.5
+ - pos: 10.5,-0.5
parent: 2
type: Transform
- uid: 5589
components:
- - pos: 10.5,-5.5
+ - pos: 9.5,-0.5
parent: 2
type: Transform
- uid: 5590
components:
- - pos: 9.5,-5.5
+ - pos: 9.5,-1.5
parent: 2
type: Transform
- uid: 5591
components:
- - pos: 17.5,-43.5
+ - pos: 10.5,-5.5
parent: 2
type: Transform
- uid: 5592
components:
- - pos: 18.5,-43.5
+ - pos: 9.5,-5.5
parent: 2
type: Transform
- uid: 5593
components:
- - pos: 16.5,-43.5
+ - pos: 17.5,-43.5
parent: 2
type: Transform
- uid: 5594
components:
- - pos: 11.5,-41.5
+ - pos: 18.5,-43.5
parent: 2
type: Transform
- uid: 5595
components:
- - pos: 33.5,-42.5
+ - pos: 16.5,-43.5
parent: 2
type: Transform
- uid: 5596
components:
- - pos: 34.5,-21.5
+ - pos: 11.5,-41.5
parent: 2
type: Transform
- uid: 5597
components:
- - pos: 32.5,-42.5
+ - pos: 33.5,-42.5
parent: 2
type: Transform
- uid: 5598
components:
- - pos: 34.5,-24.5
+ - pos: 34.5,-21.5
parent: 2
type: Transform
- uid: 5599
components:
- - pos: 34.5,-23.5
+ - pos: 32.5,-42.5
parent: 2
type: Transform
- uid: 5600
components:
- - pos: 34.5,-22.5
+ - pos: 34.5,-24.5
parent: 2
type: Transform
- uid: 5601
components:
- - pos: -7.5,5.5
+ - pos: 34.5,-23.5
parent: 2
type: Transform
- uid: 5602
components:
- - pos: 1.5,5.5
+ - pos: 34.5,-22.5
parent: 2
type: Transform
- uid: 5603
components:
- - pos: 11.5,-25.5
+ - pos: -7.5,5.5
parent: 2
type: Transform
- uid: 5604
components:
- - pos: 2.5,5.5
+ - pos: 1.5,5.5
parent: 2
type: Transform
- uid: 5605
components:
- - pos: -6.5,5.5
+ - pos: 11.5,-25.5
parent: 2
type: Transform
- uid: 5606
components:
- - pos: 3.5,5.5
+ - pos: 2.5,5.5
parent: 2
type: Transform
- uid: 5607
components:
- - pos: -4.5,5.5
+ - pos: -6.5,5.5
parent: 2
type: Transform
- uid: 5608
components:
- - pos: -3.5,3.5
+ - pos: 3.5,5.5
parent: 2
type: Transform
- uid: 5609
components:
- - pos: -5.5,5.5
+ - pos: -4.5,5.5
parent: 2
type: Transform
- uid: 5610
components:
- - pos: -4.5,3.5
+ - pos: -3.5,3.5
parent: 2
type: Transform
- uid: 5611
components:
- - pos: -18.5,4.5
+ - pos: -5.5,5.5
parent: 2
type: Transform
- uid: 5612
components:
- - pos: -5.5,3.5
+ - pos: -4.5,3.5
parent: 2
type: Transform
- uid: 5613
components:
- - pos: -20.5,4.5
+ - pos: -18.5,4.5
parent: 2
type: Transform
- uid: 5614
components:
- - pos: -17.5,4.5
+ - pos: -5.5,3.5
parent: 2
type: Transform
- uid: 5615
components:
- - pos: -19.5,4.5
+ - pos: -20.5,4.5
parent: 2
type: Transform
- uid: 5616
components:
- - pos: -21.5,4.5
+ - pos: -17.5,4.5
parent: 2
type: Transform
- uid: 5617
components:
- - pos: -44.5,8.5
+ - pos: -19.5,4.5
parent: 2
type: Transform
- uid: 5618
components:
- - pos: -44.5,4.5
+ - pos: -21.5,4.5
parent: 2
type: Transform
- uid: 5619
components:
- - pos: -45.5,8.5
+ - pos: -44.5,8.5
parent: 2
type: Transform
- uid: 5620
components:
- - pos: -44.5,6.5
+ - pos: -44.5,4.5
parent: 2
type: Transform
- uid: 5621
components:
- - pos: -44.5,7.5
+ - pos: -45.5,8.5
parent: 2
type: Transform
- uid: 5622
components:
- - pos: -22.5,-9.5
+ - pos: -44.5,6.5
parent: 2
type: Transform
- uid: 5623
components:
- - pos: -48.5,10.5
+ - pos: -44.5,7.5
parent: 2
type: Transform
- uid: 5624
components:
- - pos: -22.5,-10.5
+ - pos: -22.5,-9.5
parent: 2
type: Transform
- uid: 5625
components:
- - pos: -50.5,10.5
+ - pos: -48.5,10.5
parent: 2
type: Transform
- uid: 5626
components:
- - pos: -49.5,10.5
+ - pos: -22.5,-10.5
parent: 2
type: Transform
- uid: 5627
components:
- - pos: -22.5,-11.5
+ - pos: -50.5,10.5
parent: 2
type: Transform
- uid: 5628
components:
- - pos: -2.5,-47.5
+ - pos: -49.5,10.5
parent: 2
type: Transform
- uid: 5629
components:
- - pos: -37.5,-41.5
+ - pos: -22.5,-11.5
parent: 2
type: Transform
- uid: 5630
components:
- - pos: -3.5,-47.5
+ - pos: -2.5,-47.5
parent: 2
type: Transform
- uid: 5631
components:
- - pos: -37.5,-42.5
+ - pos: -37.5,-41.5
parent: 2
type: Transform
- uid: 5632
components:
- - pos: -38.5,-41.5
+ - pos: -3.5,-47.5
parent: 2
type: Transform
- uid: 5633
components:
- - pos: -39.5,-41.5
+ - pos: -37.5,-42.5
parent: 2
type: Transform
- uid: 5634
components:
- - pos: 52.5,-40.5
+ - pos: -38.5,-41.5
parent: 2
type: Transform
- uid: 5635
components:
- - pos: 63.5,-48.5
+ - pos: -39.5,-41.5
parent: 2
type: Transform
- uid: 5636
components:
- - pos: 52.5,-39.5
+ - pos: 52.5,-40.5
parent: 2
type: Transform
- uid: 5637
components:
- - pos: 51.5,-39.5
+ - pos: 63.5,-48.5
parent: 2
type: Transform
- uid: 5638
components:
- - pos: 68.5,-48.5
+ - pos: 52.5,-39.5
parent: 2
type: Transform
- uid: 5639
components:
- - pos: 66.5,-48.5
+ - pos: 51.5,-39.5
parent: 2
type: Transform
- uid: 5640
components:
- - pos: 52.5,-41.5
+ - pos: 68.5,-48.5
parent: 2
type: Transform
- uid: 5641
components:
- - pos: 65.5,-48.5
+ - pos: 66.5,-48.5
parent: 2
type: Transform
- uid: 5642
components:
- - pos: 64.5,-48.5
+ - pos: 52.5,-41.5
parent: 2
type: Transform
- uid: 5643
components:
- - pos: -14.5,-73.5
+ - pos: 65.5,-48.5
parent: 2
type: Transform
- uid: 5644
components:
- - pos: -14.5,-71.5
+ - pos: 64.5,-48.5
parent: 2
type: Transform
- uid: 5645
components:
- - pos: -15.5,-73.5
+ - pos: -14.5,-73.5
parent: 2
type: Transform
- uid: 5646
components:
- - pos: -15.5,-72.5
+ - pos: -14.5,-71.5
parent: 2
type: Transform
- uid: 5647
components:
- - pos: -37.5,22.5
+ - pos: -15.5,-73.5
parent: 2
type: Transform
- uid: 5648
components:
- - pos: -15.5,-71.5
+ - pos: -15.5,-72.5
parent: 2
type: Transform
- uid: 5649
components:
- - pos: -11.5,-71.5
+ - pos: -37.5,22.5
parent: 2
type: Transform
- uid: 5650
components:
- - pos: -12.5,-71.5
+ - pos: -15.5,-71.5
parent: 2
type: Transform
- uid: 5651
components:
- - pos: -13.5,-71.5
+ - pos: -11.5,-71.5
parent: 2
type: Transform
- uid: 5652
components:
- - pos: -45.5,33.5
+ - pos: -12.5,-71.5
parent: 2
type: Transform
- uid: 5653
components:
- - pos: -44.5,28.5
+ - pos: -13.5,-71.5
parent: 2
type: Transform
- uid: 5654
components:
- - pos: -10.5,-71.5
+ - pos: -45.5,33.5
parent: 2
type: Transform
- uid: 5655
components:
- - pos: -45.5,28.5
+ - pos: -44.5,28.5
parent: 2
type: Transform
- uid: 5656
components:
- - pos: -43.5,28.5
+ - pos: -10.5,-71.5
parent: 2
type: Transform
- uid: 5657
components:
- - pos: -41.5,31.5
+ - pos: -45.5,28.5
parent: 2
type: Transform
- uid: 5658
components:
- - pos: -42.5,33.5
+ - pos: -43.5,28.5
parent: 2
type: Transform
- uid: 5659
components:
- - pos: -41.5,32.5
+ - pos: -41.5,31.5
parent: 2
type: Transform
- uid: 5660
components:
- - pos: -41.5,33.5
+ - pos: -42.5,33.5
parent: 2
type: Transform
- uid: 5661
components:
- - pos: -20.5,18.5
+ - pos: -41.5,32.5
parent: 2
type: Transform
- uid: 5662
components:
- - pos: -20.5,20.5
+ - pos: -41.5,33.5
parent: 2
type: Transform
- uid: 5663
components:
- - pos: -20.5,16.5
+ - pos: -20.5,18.5
parent: 2
type: Transform
- uid: 5664
components:
- - pos: -20.5,19.5
+ - pos: -20.5,20.5
parent: 2
type: Transform
- uid: 5665
components:
- - pos: -20.5,17.5
+ - pos: -20.5,16.5
parent: 2
type: Transform
- uid: 5666
components:
- - pos: -19.5,16.5
+ - pos: -20.5,19.5
parent: 2
type: Transform
- uid: 5667
components:
- - pos: 53.5,-6.5
+ - pos: -20.5,17.5
parent: 2
type: Transform
- uid: 5668
components:
- - pos: 52.5,-6.5
+ - pos: -19.5,16.5
parent: 2
type: Transform
- uid: 5669
components:
- - pos: 51.5,-6.5
+ - pos: 53.5,-6.5
parent: 2
type: Transform
- uid: 5670
components:
- - pos: 51.5,-7.5
+ - pos: 52.5,-6.5
parent: 2
type: Transform
- uid: 5671
components:
- - pos: 5.5,21.5
+ - pos: 51.5,-6.5
parent: 2
type: Transform
- uid: 5672
components:
- - pos: 6.5,21.5
+ - pos: 51.5,-7.5
parent: 2
type: Transform
- uid: 5673
components:
- - pos: 7.5,15.5
+ - pos: 5.5,21.5
parent: 2
type: Transform
- uid: 5674
components:
- - pos: 8.5,15.5
+ - pos: 6.5,21.5
parent: 2
type: Transform
- uid: 5675
components:
- - pos: 2.5,20.5
+ - pos: 7.5,15.5
parent: 2
type: Transform
- uid: 5676
components:
- - pos: 2.5,19.5
+ - pos: 8.5,15.5
parent: 2
type: Transform
- uid: 5677
components:
- - pos: 2.5,18.5
+ - pos: 2.5,20.5
parent: 2
type: Transform
- uid: 5678
components:
- - pos: 42.5,15.5
+ - pos: 2.5,19.5
parent: 2
type: Transform
- uid: 5679
components:
- - pos: 42.5,16.5
+ - pos: 2.5,18.5
parent: 2
type: Transform
- uid: 5680
components:
- - pos: 41.5,16.5
+ - pos: 42.5,15.5
parent: 2
type: Transform
- uid: 5681
components:
- - pos: 40.5,16.5
+ - pos: 42.5,16.5
parent: 2
type: Transform
- uid: 5682
components:
- - pos: 39.5,16.5
+ - pos: 41.5,16.5
parent: 2
type: Transform
- uid: 5683
components:
- - pos: 38.5,16.5
+ - pos: 40.5,16.5
parent: 2
type: Transform
- uid: 5684
components:
- - pos: 37.5,16.5
+ - pos: 39.5,16.5
parent: 2
type: Transform
- uid: 5685
components:
- - pos: 36.5,16.5
+ - pos: 38.5,16.5
parent: 2
type: Transform
- uid: 5686
components:
- - pos: 34.5,16.5
+ - pos: 37.5,16.5
parent: 2
type: Transform
- uid: 5687
components:
- - pos: 33.5,16.5
+ - pos: 36.5,16.5
parent: 2
type: Transform
- uid: 5688
components:
- - pos: 42.5,13.5
+ - pos: 34.5,16.5
parent: 2
type: Transform
- uid: 5689
components:
- - pos: 42.5,12.5
+ - pos: 33.5,16.5
parent: 2
type: Transform
- uid: 5690
components:
- - pos: 28.5,28.5
+ - pos: 42.5,13.5
parent: 2
type: Transform
- uid: 5691
components:
- - pos: 31.5,28.5
+ - pos: 42.5,12.5
parent: 2
type: Transform
- uid: 5692
components:
- - pos: 30.5,28.5
+ - pos: 28.5,28.5
parent: 2
type: Transform
- uid: 5693
components:
- - pos: -12.5,-59.5
+ - pos: 31.5,28.5
parent: 2
type: Transform
- uid: 5694
components:
- - pos: -11.5,-59.5
+ - pos: 30.5,28.5
parent: 2
type: Transform
- uid: 5695
components:
- - pos: -10.5,-59.5
+ - pos: -12.5,-59.5
parent: 2
type: Transform
- uid: 5696
components:
- - pos: -10.5,-58.5
+ - pos: -11.5,-59.5
parent: 2
type: Transform
- uid: 5697
components:
- - pos: -9.5,-59.5
+ - pos: -10.5,-59.5
parent: 2
type: Transform
- uid: 5698
components:
- - pos: -8.5,-59.5
+ - pos: -10.5,-58.5
parent: 2
type: Transform
- uid: 5699
components:
- - pos: -7.5,-59.5
+ - pos: -9.5,-59.5
parent: 2
type: Transform
- uid: 5700
components:
- - pos: -6.5,-59.5
+ - pos: -8.5,-59.5
parent: 2
type: Transform
- uid: 5701
components:
- - pos: -51.5,-75.5
+ - pos: -7.5,-59.5
parent: 2
type: Transform
- uid: 5702
components:
- - pos: -51.5,-77.5
+ - pos: -6.5,-59.5
parent: 2
type: Transform
- uid: 5703
components:
- - pos: -51.5,-78.5
+ - pos: -51.5,-75.5
parent: 2
type: Transform
- uid: 5704
components:
- - pos: -51.5,-79.5
+ - pos: -51.5,-77.5
parent: 2
type: Transform
- uid: 5705
components:
- - pos: -52.5,-79.5
+ - pos: -51.5,-78.5
parent: 2
type: Transform
- uid: 5706
components:
- - pos: 38.5,17.5
+ - pos: -51.5,-79.5
parent: 2
type: Transform
- uid: 5707
components:
- - pos: 18.5,-31.5
+ - pos: -52.5,-79.5
parent: 2
type: Transform
- uid: 5708
components:
- - pos: 52.5,10.5
+ - pos: 38.5,17.5
parent: 2
type: Transform
- uid: 5709
components:
- - pos: 45.5,-72.5
+ - pos: 18.5,-31.5
parent: 2
type: Transform
- uid: 5710
components:
- - pos: 29.5,-27.5
+ - pos: 52.5,10.5
parent: 2
type: Transform
- uid: 5711
components:
- - pos: 29.5,-26.5
+ - pos: 45.5,-72.5
parent: 2
type: Transform
- uid: 5712
components:
- - pos: 29.5,-25.5
+ - pos: 29.5,-27.5
parent: 2
type: Transform
- uid: 5713
components:
- - pos: 31.5,-42.5
+ - pos: 29.5,-26.5
parent: 2
type: Transform
- uid: 5714
components:
- - pos: 30.5,-42.5
+ - pos: 29.5,-25.5
parent: 2
type: Transform
- uid: 5715
components:
- - pos: 28.5,-41.5
+ - pos: 31.5,-42.5
parent: 2
type: Transform
- uid: 5716
components:
- - pos: 38.5,-60.5
+ - pos: 30.5,-42.5
parent: 2
type: Transform
- uid: 5717
components:
- - pos: 38.5,-61.5
+ - pos: 28.5,-41.5
parent: 2
type: Transform
- uid: 5718
components:
- - pos: 38.5,-62.5
+ - pos: 38.5,-60.5
parent: 2
type: Transform
- uid: 5719
components:
- - pos: 38.5,-63.5
+ - pos: 38.5,-61.5
parent: 2
type: Transform
- uid: 5720
components:
- - pos: 38.5,-64.5
+ - pos: 38.5,-62.5
parent: 2
type: Transform
- uid: 5721
components:
- - pos: 38.5,-65.5
+ - pos: 38.5,-63.5
parent: 2
type: Transform
- uid: 5722
components:
- - pos: 38.5,-66.5
+ - pos: 38.5,-64.5
parent: 2
type: Transform
- uid: 5723
components:
- - pos: 38.5,-67.5
+ - pos: 38.5,-65.5
parent: 2
type: Transform
- uid: 5724
components:
- - pos: 38.5,-68.5
+ - pos: 38.5,-66.5
parent: 2
type: Transform
- uid: 5725
components:
- - pos: 38.5,-69.5
+ - pos: 38.5,-67.5
parent: 2
type: Transform
- uid: 5726
components:
- - pos: 38.5,-70.5
+ - pos: 38.5,-68.5
parent: 2
type: Transform
- uid: 5727
components:
- - pos: 38.5,-71.5
+ - pos: 38.5,-69.5
parent: 2
type: Transform
- uid: 5728
components:
- - pos: 14.5,-64.5
+ - pos: 38.5,-70.5
parent: 2
type: Transform
- uid: 5729
components:
- - pos: 14.5,-63.5
+ - pos: 38.5,-71.5
parent: 2
type: Transform
- uid: 5730
components:
- - pos: 14.5,-62.5
+ - pos: 14.5,-64.5
parent: 2
type: Transform
- uid: 5731
components:
- - pos: 14.5,-61.5
+ - pos: 14.5,-63.5
parent: 2
type: Transform
- uid: 5732
components:
- - pos: 14.5,-60.5
+ - pos: 14.5,-62.5
parent: 2
type: Transform
- uid: 5733
components:
- - pos: 14.5,-59.5
+ - pos: 14.5,-61.5
parent: 2
type: Transform
- uid: 5734
components:
- - pos: 14.5,-58.5
+ - pos: 14.5,-60.5
parent: 2
type: Transform
- uid: 5735
components:
- - pos: 10.5,-64.5
+ - pos: 14.5,-59.5
parent: 2
type: Transform
- uid: 5736
components:
- - pos: 11.5,-64.5
+ - pos: 14.5,-58.5
parent: 2
type: Transform
- uid: 5737
components:
- - pos: 12.5,-64.5
+ - pos: 10.5,-64.5
parent: 2
type: Transform
- uid: 5738
components:
- - pos: 12.5,-63.5
+ - pos: 11.5,-64.5
parent: 2
type: Transform
- uid: 5739
components:
- - pos: 12.5,-62.5
+ - pos: 12.5,-64.5
parent: 2
type: Transform
- uid: 5740
components:
- - pos: 12.5,-61.5
+ - pos: 12.5,-63.5
parent: 2
type: Transform
- uid: 5741
components:
- - pos: 12.5,-60.5
+ - pos: 12.5,-62.5
parent: 2
type: Transform
- uid: 5742
components:
- - pos: 12.5,-59.5
+ - pos: 12.5,-61.5
parent: 2
type: Transform
- uid: 5743
components:
- - pos: 12.5,-58.5
+ - pos: 12.5,-60.5
parent: 2
type: Transform
- uid: 5744
components:
- - pos: 12.5,-57.5
+ - pos: 12.5,-59.5
parent: 2
type: Transform
- uid: 5745
components:
- - pos: 12.5,-56.5
+ - pos: 12.5,-58.5
parent: 2
type: Transform
- uid: 5746
components:
- - pos: 14.5,-57.5
+ - pos: 12.5,-57.5
parent: 2
type: Transform
- uid: 5747
components:
- - pos: 13.5,-57.5
+ - pos: 12.5,-56.5
parent: 2
type: Transform
- uid: 5748
components:
- - pos: -33.5,-71.5
+ - pos: 14.5,-57.5
parent: 2
type: Transform
- uid: 5749
components:
- - pos: -33.5,-72.5
+ - pos: 13.5,-57.5
parent: 2
type: Transform
- uid: 5750
components:
- - pos: -26.5,-73.5
+ - pos: -33.5,-71.5
parent: 2
type: Transform
- uid: 5751
components:
- - pos: -28.5,-73.5
+ - pos: -33.5,-72.5
parent: 2
type: Transform
- uid: 5752
components:
- - pos: -29.5,-72.5
+ - pos: -26.5,-73.5
parent: 2
type: Transform
- uid: 5753
components:
- - pos: -29.5,-75.5
+ - pos: -28.5,-73.5
parent: 2
type: Transform
- uid: 5754
components:
- - pos: -30.5,-71.5
+ - pos: -29.5,-72.5
parent: 2
type: Transform
- uid: 5755
components:
- - pos: -30.5,-70.5
+ - pos: -29.5,-75.5
parent: 2
type: Transform
- uid: 5756
components:
- - pos: -30.5,-69.5
+ - pos: -30.5,-71.5
parent: 2
type: Transform
- uid: 5757
components:
- - pos: -29.5,-69.5
+ - pos: -30.5,-70.5
parent: 2
type: Transform
- uid: 5758
components:
- - pos: -28.5,-69.5
+ - pos: -30.5,-69.5
parent: 2
type: Transform
- uid: 5759
components:
- - pos: -27.5,-69.5
+ - pos: -29.5,-69.5
parent: 2
type: Transform
- uid: 5760
components:
- - pos: -27.5,-70.5
+ - pos: -28.5,-69.5
parent: 2
type: Transform
- uid: 5761
components:
- - pos: -27.5,-71.5
+ - pos: -27.5,-69.5
parent: 2
type: Transform
- uid: 5762
components:
- - pos: -27.5,-73.5
+ - pos: -27.5,-70.5
parent: 2
type: Transform
- uid: 5763
components:
- - pos: -27.5,-74.5
+ - pos: -27.5,-71.5
parent: 2
type: Transform
- uid: 5764
components:
- - pos: -27.5,-75.5
+ - pos: -27.5,-73.5
parent: 2
type: Transform
- uid: 5765
components:
- - pos: -28.5,-75.5
+ - pos: -27.5,-74.5
parent: 2
type: Transform
- uid: 5766
components:
- - pos: -30.5,-75.5
+ - pos: -27.5,-75.5
parent: 2
type: Transform
- uid: 5767
components:
- - pos: -30.5,-74.5
+ - pos: -28.5,-75.5
parent: 2
type: Transform
- uid: 5768
components:
- - pos: -30.5,-73.5
+ - pos: -30.5,-75.5
parent: 2
type: Transform
- uid: 5769
components:
- - pos: -28.5,-71.5
+ - pos: -30.5,-74.5
parent: 2
type: Transform
- uid: 5770
components:
- - pos: -29.5,-72.5
+ - pos: -30.5,-73.5
parent: 2
type: Transform
- uid: 5771
components:
- - pos: -29.5,-71.5
+ - pos: -28.5,-71.5
parent: 2
type: Transform
- uid: 5772
components:
- - pos: 52.5,38.5
+ - pos: -29.5,-72.5
parent: 2
type: Transform
- uid: 5773
components:
- - pos: 52.5,37.5
+ - pos: -29.5,-71.5
parent: 2
type: Transform
- uid: 5774
components:
- - pos: 52.5,36.5
+ - pos: 52.5,38.5
parent: 2
type: Transform
- uid: 5775
components:
- - pos: 52.5,35.5
+ - pos: 52.5,37.5
parent: 2
type: Transform
- uid: 5776
components:
- - pos: 52.5,34.5
+ - pos: 52.5,36.5
parent: 2
type: Transform
- uid: 5777
components:
- - pos: 52.5,33.5
+ - pos: 52.5,35.5
parent: 2
type: Transform
- uid: 5778
components:
- - pos: 52.5,32.5
+ - pos: 52.5,34.5
parent: 2
type: Transform
- uid: 5779
components:
- - pos: 52.5,31.5
+ - pos: 52.5,33.5
parent: 2
type: Transform
- uid: 5780
components:
- - pos: 51.5,31.5
+ - pos: 52.5,32.5
parent: 2
type: Transform
- uid: 5781
components:
- - pos: 50.5,31.5
+ - pos: 52.5,31.5
parent: 2
type: Transform
- uid: 5782
components:
- - pos: 49.5,31.5
+ - pos: 51.5,31.5
parent: 2
type: Transform
- uid: 5783
components:
- - pos: 48.5,31.5
+ - pos: 50.5,31.5
parent: 2
type: Transform
- uid: 5784
components:
- - pos: 48.5,30.5
+ - pos: 49.5,31.5
parent: 2
type: Transform
- uid: 5785
components:
- - pos: 48.5,29.5
+ - pos: 48.5,31.5
parent: 2
type: Transform
- uid: 5786
components:
- - pos: 48.5,28.5
+ - pos: 48.5,30.5
parent: 2
type: Transform
- uid: 5787
components:
- - pos: 53.5,37.5
+ - pos: 48.5,29.5
parent: 2
type: Transform
- uid: 5788
components:
- - pos: 54.5,37.5
+ - pos: 48.5,28.5
parent: 2
type: Transform
- uid: 5789
components:
- - pos: 55.5,37.5
+ - pos: 53.5,37.5
parent: 2
type: Transform
- uid: 5790
components:
- - pos: 56.5,37.5
+ - pos: 54.5,37.5
parent: 2
type: Transform
- uid: 5791
components:
- - pos: 56.5,35.5
+ - pos: 55.5,37.5
parent: 2
type: Transform
- uid: 5792
components:
- - pos: 56.5,33.5
+ - pos: 56.5,37.5
parent: 2
type: Transform
- uid: 5793
components:
- - pos: 56.5,32.5
+ - pos: 56.5,35.5
parent: 2
type: Transform
- uid: 5794
components:
- - pos: 56.5,31.5
+ - pos: 56.5,33.5
parent: 2
type: Transform
- uid: 5795
components:
- - pos: 57.5,31.5
+ - pos: 56.5,32.5
parent: 2
type: Transform
- uid: 5796
components:
- - pos: 57.5,30.5
+ - pos: 56.5,31.5
parent: 2
type: Transform
- uid: 5797
components:
- - pos: 57.5,29.5
+ - pos: 57.5,31.5
parent: 2
type: Transform
- uid: 5798
components:
- - pos: 57.5,28.5
+ - pos: 57.5,30.5
parent: 2
type: Transform
- uid: 5799
components:
- - pos: 54.5,38.5
+ - pos: 57.5,29.5
parent: 2
type: Transform
- uid: 5800
components:
- - pos: 54.5,39.5
+ - pos: 57.5,28.5
parent: 2
type: Transform
- uid: 5801
components:
- - pos: 54.5,40.5
+ - pos: 54.5,38.5
parent: 2
type: Transform
- uid: 5802
components:
- - pos: 54.5,41.5
+ - pos: 54.5,39.5
parent: 2
type: Transform
- uid: 5803
components:
- - pos: 54.5,42.5
+ - pos: 54.5,40.5
parent: 2
type: Transform
- uid: 5804
components:
- - pos: 54.5,43.5
+ - pos: 54.5,41.5
parent: 2
type: Transform
- uid: 5805
components:
- - pos: 54.5,44.5
+ - pos: 54.5,42.5
parent: 2
type: Transform
- uid: 5806
components:
- - pos: 54.5,45.5
+ - pos: 54.5,43.5
parent: 2
type: Transform
- uid: 5807
components:
- - pos: 54.5,46.5
+ - pos: 54.5,44.5
parent: 2
type: Transform
- uid: 5808
components:
- - pos: 54.5,47.5
+ - pos: 54.5,45.5
parent: 2
type: Transform
- uid: 5809
components:
- - pos: 54.5,48.5
+ - pos: 54.5,46.5
parent: 2
type: Transform
- uid: 5810
components:
- - pos: 54.5,49.5
+ - pos: 54.5,47.5
parent: 2
type: Transform
- uid: 5811
components:
- - pos: 54.5,50.5
+ - pos: 54.5,48.5
parent: 2
type: Transform
- uid: 5812
components:
- - pos: 53.5,42.5
+ - pos: 54.5,49.5
parent: 2
type: Transform
- uid: 5813
components:
- - pos: 52.5,42.5
+ - pos: 54.5,50.5
parent: 2
type: Transform
- uid: 5814
components:
- - pos: 51.5,42.5
+ - pos: 53.5,42.5
parent: 2
type: Transform
- uid: 5815
components:
- - pos: 51.5,43.5
+ - pos: 52.5,42.5
parent: 2
type: Transform
- uid: 5816
components:
- - pos: 51.5,44.5
+ - pos: 51.5,42.5
parent: 2
type: Transform
- uid: 5817
components:
- - pos: 51.5,45.5
+ - pos: 51.5,43.5
parent: 2
type: Transform
- uid: 5818
components:
- - pos: 51.5,46.5
+ - pos: 51.5,44.5
parent: 2
type: Transform
- uid: 5819
components:
- - pos: 51.5,47.5
+ - pos: 51.5,45.5
parent: 2
type: Transform
- uid: 5820
components:
- - pos: 51.5,48.5
+ - pos: 51.5,46.5
parent: 2
type: Transform
- uid: 5821
components:
- - pos: 51.5,49.5
+ - pos: 51.5,47.5
parent: 2
type: Transform
- uid: 5822
components:
- - pos: 51.5,50.5
+ - pos: 51.5,48.5
parent: 2
type: Transform
- uid: 5823
components:
- - pos: 55.5,42.5
+ - pos: 51.5,49.5
parent: 2
type: Transform
- uid: 5824
components:
- - pos: 56.5,42.5
+ - pos: 51.5,50.5
parent: 2
type: Transform
- uid: 5825
components:
- - pos: 57.5,42.5
+ - pos: 55.5,42.5
parent: 2
type: Transform
- uid: 5826
components:
- - pos: 57.5,43.5
+ - pos: 56.5,42.5
parent: 2
type: Transform
- uid: 5827
components:
- - pos: 57.5,44.5
+ - pos: 57.5,42.5
parent: 2
type: Transform
- uid: 5828
components:
- - pos: 57.5,45.5
+ - pos: 57.5,43.5
parent: 2
type: Transform
- uid: 5829
components:
- - pos: 57.5,46.5
+ - pos: 57.5,44.5
parent: 2
type: Transform
- uid: 5830
components:
- - pos: 57.5,47.5
+ - pos: 57.5,45.5
parent: 2
type: Transform
- uid: 5831
components:
- - pos: 57.5,48.5
+ - pos: 57.5,46.5
parent: 2
type: Transform
- uid: 5832
components:
- - pos: 57.5,49.5
+ - pos: 57.5,47.5
parent: 2
type: Transform
- uid: 5833
components:
- - pos: 57.5,50.5
+ - pos: 57.5,48.5
parent: 2
type: Transform
- uid: 5834
components:
- - pos: 56.5,50.5
+ - pos: 57.5,49.5
parent: 2
type: Transform
- uid: 5835
components:
- - pos: 55.5,50.5
+ - pos: 57.5,50.5
parent: 2
type: Transform
- uid: 5836
components:
- - pos: 53.5,50.5
+ - pos: 56.5,50.5
parent: 2
type: Transform
- uid: 5837
components:
- - pos: 52.5,50.5
+ - pos: 55.5,50.5
parent: 2
type: Transform
- uid: 5838
components:
- - pos: 56.5,51.5
+ - pos: 53.5,50.5
parent: 2
type: Transform
- uid: 5839
components:
- - pos: 56.5,52.5
+ - pos: 52.5,50.5
parent: 2
type: Transform
- uid: 5840
components:
- - pos: 52.5,51.5
+ - pos: 56.5,51.5
parent: 2
type: Transform
- uid: 5841
components:
- - pos: 52.5,52.5
+ - pos: 56.5,52.5
parent: 2
type: Transform
- uid: 5842
components:
- - pos: 56.5,53.5
+ - pos: 52.5,51.5
parent: 2
type: Transform
- uid: 5843
components:
- - pos: 55.5,53.5
+ - pos: 52.5,52.5
parent: 2
type: Transform
- uid: 5844
components:
- - pos: 54.5,53.5
+ - pos: 56.5,53.5
parent: 2
type: Transform
- uid: 5845
components:
- - pos: 52.5,53.5
+ - pos: 55.5,53.5
parent: 2
type: Transform
- uid: 5846
components:
- - pos: 53.5,53.5
+ - pos: 54.5,53.5
parent: 2
type: Transform
- uid: 5847
components:
- - pos: 54.5,54.5
+ - pos: 52.5,53.5
parent: 2
type: Transform
- uid: 5848
components:
- - pos: 54.5,55.5
+ - pos: 53.5,53.5
parent: 2
type: Transform
- uid: 5849
components:
- - pos: 54.5,57.5
+ - pos: 54.5,54.5
parent: 2
type: Transform
- uid: 5850
components:
- - pos: 54.5,56.5
+ - pos: 54.5,55.5
parent: 2
type: Transform
- uid: 5851
components:
- - pos: 54.5,58.5
+ - pos: 54.5,57.5
parent: 2
type: Transform
- uid: 5852
components:
- - pos: 54.5,59.5
+ - pos: 54.5,56.5
parent: 2
type: Transform
- uid: 5853
components:
- - pos: 53.5,57.5
+ - pos: 54.5,58.5
parent: 2
type: Transform
- uid: 5854
components:
- - pos: 52.5,57.5
+ - pos: 54.5,59.5
parent: 2
type: Transform
- uid: 5855
components:
- - pos: 51.5,57.5
+ - pos: 53.5,57.5
parent: 2
type: Transform
- uid: 5856
components:
- - pos: 55.5,57.5
+ - pos: 52.5,57.5
parent: 2
type: Transform
- uid: 5857
components:
- - pos: 56.5,57.5
+ - pos: 51.5,57.5
parent: 2
type: Transform
- uid: 5858
components:
- - pos: 57.5,57.5
+ - pos: 55.5,57.5
parent: 2
type: Transform
- uid: 5859
components:
- - pos: 58.5,57.5
+ - pos: 56.5,57.5
parent: 2
type: Transform
- uid: 5860
components:
- - pos: 50.5,57.5
+ - pos: 57.5,57.5
parent: 2
type: Transform
- uid: 5861
components:
- - pos: 54.5,60.5
+ - pos: 58.5,57.5
parent: 2
type: Transform
- uid: 5862
components:
- - pos: 54.5,61.5
+ - pos: 50.5,57.5
parent: 2
type: Transform
- uid: 5863
components:
- - pos: 50.5,45.5
+ - pos: 54.5,60.5
parent: 2
type: Transform
- uid: 5864
components:
- - pos: 49.5,45.5
+ - pos: 54.5,61.5
parent: 2
type: Transform
- uid: 5865
components:
- - pos: 48.5,45.5
+ - pos: 50.5,45.5
parent: 2
type: Transform
- uid: 5866
components:
- - pos: 47.5,45.5
+ - pos: 49.5,45.5
parent: 2
type: Transform
- uid: 5867
components:
- - pos: 46.5,45.5
+ - pos: 48.5,45.5
parent: 2
type: Transform
- uid: 5868
components:
- - pos: 45.5,45.5
+ - pos: 47.5,45.5
parent: 2
type: Transform
- uid: 5869
components:
- - pos: 44.5,45.5
+ - pos: 46.5,45.5
parent: 2
type: Transform
- uid: 5870
components:
- - pos: 58.5,45.5
+ - pos: 45.5,45.5
parent: 2
type: Transform
- uid: 5871
components:
- - pos: 59.5,45.5
+ - pos: 44.5,45.5
parent: 2
type: Transform
- uid: 5872
components:
- - pos: 60.5,45.5
+ - pos: 58.5,45.5
parent: 2
type: Transform
- uid: 5873
components:
- - pos: 60.5,46.5
+ - pos: 59.5,45.5
parent: 2
type: Transform
- uid: 5874
components:
- - pos: 60.5,47.5
+ - pos: 60.5,45.5
parent: 2
type: Transform
- uid: 5875
components:
- - pos: -18.5,24.5
+ - pos: 60.5,46.5
parent: 2
type: Transform
- uid: 5876
components:
- - pos: -18.5,25.5
+ - pos: 60.5,47.5
parent: 2
type: Transform
- uid: 5877
components:
- - pos: -18.5,26.5
+ - pos: -18.5,24.5
parent: 2
type: Transform
- uid: 5878
components:
- - pos: -18.5,27.5
+ - pos: -18.5,25.5
parent: 2
type: Transform
- uid: 5879
components:
- - pos: -18.5,28.5
+ - pos: -18.5,26.5
parent: 2
type: Transform
- uid: 5880
components:
- - pos: -18.5,29.5
+ - pos: -18.5,27.5
parent: 2
type: Transform
- uid: 5881
components:
- - pos: -18.5,30.5
+ - pos: -18.5,28.5
parent: 2
type: Transform
- uid: 5882
components:
- - pos: -19.5,30.5
+ - pos: -18.5,29.5
parent: 2
type: Transform
- uid: 5883
components:
- - pos: -20.5,30.5
+ - pos: -18.5,30.5
parent: 2
type: Transform
- uid: 5884
components:
- - pos: -21.5,30.5
+ - pos: -19.5,30.5
parent: 2
type: Transform
- uid: 5885
components:
- - pos: -22.5,30.5
+ - pos: -20.5,30.5
parent: 2
type: Transform
- uid: 5886
components:
- - pos: -23.5,30.5
+ - pos: -21.5,30.5
parent: 2
type: Transform
- uid: 5887
components:
- - pos: -20.5,22.5
+ - pos: -22.5,30.5
parent: 2
type: Transform
- uid: 5888
components:
- - pos: -20.5,23.5
+ - pos: -23.5,30.5
parent: 2
type: Transform
- uid: 5889
components:
- - pos: -20.5,24.5
+ - pos: -20.5,22.5
parent: 2
type: Transform
- uid: 5890
components:
- - pos: -20.5,25.5
+ - pos: -20.5,23.5
parent: 2
type: Transform
- uid: 5891
components:
- - pos: -20.5,26.5
+ - pos: -20.5,24.5
parent: 2
type: Transform
- uid: 5892
components:
- - pos: -20.5,27.5
+ - pos: -20.5,25.5
parent: 2
type: Transform
- uid: 5893
components:
- - pos: -20.5,28.5
+ - pos: -20.5,26.5
parent: 2
type: Transform
- uid: 5894
components:
- - pos: -20.5,29.5
+ - pos: -20.5,27.5
parent: 2
type: Transform
- uid: 5895
components:
- - pos: 44.5,-13.5
+ - pos: -20.5,28.5
parent: 2
type: Transform
- uid: 5896
components:
- - pos: 45.5,-13.5
+ - pos: -20.5,29.5
parent: 2
type: Transform
- uid: 5897
components:
- - pos: 46.5,-13.5
+ - pos: 44.5,-13.5
parent: 2
type: Transform
- uid: 5898
components:
- - pos: 47.5,-13.5
+ - pos: 45.5,-13.5
parent: 2
type: Transform
- uid: 5899
components:
- - pos: 46.5,-14.5
+ - pos: 46.5,-13.5
parent: 2
type: Transform
- uid: 5900
components:
- - pos: 46.5,-15.5
+ - pos: 47.5,-13.5
parent: 2
type: Transform
- uid: 5901
components:
- - pos: 46.5,-16.5
+ - pos: 46.5,-14.5
parent: 2
type: Transform
- uid: 5902
components:
- - pos: 37.5,-13.5
+ - pos: 46.5,-15.5
parent: 2
type: Transform
- uid: 5903
components:
- - pos: 36.5,-13.5
+ - pos: 46.5,-16.5
parent: 2
type: Transform
- uid: 5904
components:
- - pos: 61.5,26.5
+ - pos: 37.5,-13.5
parent: 2
type: Transform
- uid: 5905
components:
- - pos: 62.5,26.5
+ - pos: 36.5,-13.5
parent: 2
type: Transform
- uid: 5906
components:
- - pos: 63.5,26.5
+ - pos: 61.5,26.5
parent: 2
type: Transform
- uid: 5907
components:
- - pos: 64.5,26.5
+ - pos: 62.5,26.5
parent: 2
type: Transform
- uid: 5908
components:
- - pos: 65.5,26.5
+ - pos: 63.5,26.5
parent: 2
type: Transform
- uid: 5909
components:
- - pos: 65.5,25.5
+ - pos: 64.5,26.5
parent: 2
type: Transform
- uid: 5910
components:
- - pos: 64.5,15.5
+ - pos: 65.5,26.5
parent: 2
type: Transform
- uid: 5911
components:
- - pos: 64.5,16.5
+ - pos: 65.5,25.5
parent: 2
type: Transform
- uid: 5912
components:
- - pos: 64.5,17.5
+ - pos: 64.5,15.5
parent: 2
type: Transform
- uid: 5913
components:
- - pos: 12.5,32.5
+ - pos: 64.5,16.5
parent: 2
type: Transform
- uid: 5914
components:
- - pos: 11.5,32.5
+ - pos: 64.5,17.5
parent: 2
type: Transform
- uid: 5915
components:
- - pos: 10.5,32.5
+ - pos: 12.5,32.5
parent: 2
type: Transform
- uid: 5916
components:
- - pos: 9.5,32.5
+ - pos: 11.5,32.5
parent: 2
type: Transform
- uid: 5917
components:
- - pos: 8.5,32.5
+ - pos: 10.5,32.5
parent: 2
type: Transform
- uid: 5918
components:
- - pos: 7.5,32.5
+ - pos: 9.5,32.5
parent: 2
type: Transform
- uid: 5919
components:
- - pos: 6.5,32.5
+ - pos: 8.5,32.5
parent: 2
type: Transform
- uid: 5920
components:
- - pos: 5.5,32.5
+ - pos: 7.5,32.5
parent: 2
type: Transform
- uid: 5921
components:
- - pos: 4.5,32.5
+ - pos: 6.5,32.5
parent: 2
type: Transform
- uid: 5922
components:
- - pos: 9.5,31.5
+ - pos: 5.5,32.5
parent: 2
type: Transform
- uid: 5923
components:
- - pos: 9.5,30.5
+ - pos: 4.5,32.5
parent: 2
type: Transform
- uid: 5924
components:
- - pos: 8.5,30.5
+ - pos: 9.5,31.5
parent: 2
type: Transform
- uid: 5925
components:
- - pos: 7.5,30.5
+ - pos: 9.5,30.5
parent: 2
type: Transform
- uid: 5926
components:
- - pos: 6.5,30.5
+ - pos: 8.5,30.5
parent: 2
type: Transform
- uid: 5927
components:
- - pos: 6.5,31.5
+ - pos: 7.5,30.5
parent: 2
type: Transform
- uid: 5928
components:
- - pos: 6.5,33.5
+ - pos: 6.5,30.5
parent: 2
type: Transform
- uid: 5929
components:
- - pos: 6.5,34.5
+ - pos: 6.5,31.5
parent: 2
type: Transform
- uid: 5930
components:
- - pos: 7.5,34.5
+ - pos: 6.5,33.5
parent: 2
type: Transform
- uid: 5931
components:
- - pos: 8.5,34.5
+ - pos: 6.5,34.5
parent: 2
type: Transform
- uid: 5932
components:
- - pos: 9.5,34.5
+ - pos: 7.5,34.5
parent: 2
type: Transform
- uid: 5933
components:
- - pos: 9.5,33.5
+ - pos: 8.5,34.5
parent: 2
type: Transform
- uid: 5934
components:
- - pos: 57.5,33.5
+ - pos: 9.5,34.5
parent: 2
type: Transform
- uid: 5935
components:
- - pos: 58.5,33.5
+ - pos: 9.5,33.5
parent: 2
type: Transform
- uid: 5936
components:
- - pos: 55.5,31.5
+ - pos: 57.5,33.5
parent: 2
type: Transform
- uid: 5937
components:
- - pos: 54.5,31.5
+ - pos: 58.5,33.5
parent: 2
type: Transform
- uid: 5938
components:
- - pos: -15.5,42.5
+ - pos: 55.5,31.5
parent: 2
type: Transform
- uid: 5939
components:
- - pos: -16.5,42.5
+ - pos: 54.5,31.5
parent: 2
type: Transform
- uid: 5940
components:
- - pos: -16.5,41.5
+ - pos: -15.5,42.5
parent: 2
type: Transform
- uid: 5941
components:
- - pos: -16.5,40.5
+ - pos: -16.5,42.5
parent: 2
type: Transform
- uid: 5942
components:
- - pos: -16.5,39.5
+ - pos: -16.5,41.5
parent: 2
type: Transform
- uid: 5943
components:
- - pos: -16.5,38.5
+ - pos: -16.5,40.5
parent: 2
type: Transform
- uid: 5944
components:
- - pos: -16.5,37.5
+ - pos: -16.5,39.5
parent: 2
type: Transform
- uid: 5945
components:
- - pos: -16.5,36.5
+ - pos: -16.5,38.5
parent: 2
type: Transform
- uid: 5946
components:
- - pos: -16.5,35.5
+ - pos: -16.5,37.5
parent: 2
type: Transform
- uid: 5947
components:
- - pos: -16.5,34.5
+ - pos: -16.5,36.5
parent: 2
type: Transform
- uid: 5948
components:
- - pos: -16.5,33.5
+ - pos: -16.5,35.5
parent: 2
type: Transform
- uid: 5949
components:
- - pos: -16.5,32.5
+ - pos: -16.5,34.5
parent: 2
type: Transform
- uid: 5950
components:
- - pos: -16.5,31.5
+ - pos: -16.5,33.5
parent: 2
type: Transform
- uid: 5951
components:
- - pos: -16.5,30.5
+ - pos: -16.5,32.5
parent: 2
type: Transform
- uid: 5952
components:
- - pos: -16.5,29.5
+ - pos: -16.5,31.5
parent: 2
type: Transform
- uid: 5953
components:
- - pos: -15.5,29.5
+ - pos: -16.5,30.5
parent: 2
type: Transform
- uid: 5954
components:
- - pos: -14.5,29.5
+ - pos: -16.5,29.5
parent: 2
type: Transform
- uid: 5955
components:
- - pos: -14.5,30.5
+ - pos: -15.5,29.5
parent: 2
type: Transform
- uid: 5956
components:
- - pos: -14.5,31.5
+ - pos: -14.5,29.5
parent: 2
type: Transform
- uid: 5957
components:
- - pos: -14.5,32.5
+ - pos: -14.5,30.5
parent: 2
type: Transform
- uid: 5958
components:
- - pos: -14.5,33.5
+ - pos: -14.5,31.5
parent: 2
type: Transform
- uid: 5959
components:
- - pos: -14.5,34.5
+ - pos: -14.5,32.5
parent: 2
type: Transform
- uid: 5960
components:
- - pos: -14.5,35.5
+ - pos: -14.5,33.5
parent: 2
type: Transform
- uid: 5961
components:
- - pos: -14.5,36.5
+ - pos: -14.5,34.5
parent: 2
type: Transform
- uid: 5962
components:
- - pos: -14.5,37.5
+ - pos: -14.5,35.5
parent: 2
type: Transform
- uid: 5963
components:
- - pos: -14.5,38.5
+ - pos: -14.5,36.5
parent: 2
type: Transform
- uid: 5964
components:
- - pos: -14.5,39.5
+ - pos: -14.5,37.5
parent: 2
type: Transform
- uid: 5965
components:
- - pos: -14.5,40.5
+ - pos: -14.5,38.5
parent: 2
type: Transform
- uid: 5966
components:
- - pos: -14.5,41.5
+ - pos: -14.5,39.5
parent: 2
type: Transform
- uid: 5967
components:
- - pos: -14.5,42.5
+ - pos: -14.5,40.5
parent: 2
type: Transform
- uid: 5968
components:
- - pos: -17.5,41.5
+ - pos: -14.5,41.5
parent: 2
type: Transform
- uid: 5969
components:
- - pos: -18.5,41.5
+ - pos: -14.5,42.5
parent: 2
type: Transform
- uid: 5970
components:
- - pos: -18.5,42.5
+ - pos: -17.5,41.5
parent: 2
type: Transform
- uid: 5971
components:
- - pos: -18.5,43.5
+ - pos: -18.5,41.5
parent: 2
type: Transform
- uid: 5972
components:
- - pos: -18.5,44.5
+ - pos: -18.5,42.5
parent: 2
type: Transform
- uid: 5973
components:
- - pos: -18.5,45.5
+ - pos: -18.5,43.5
parent: 2
type: Transform
- uid: 5974
components:
- - pos: -19.5,45.5
+ - pos: -18.5,44.5
parent: 2
type: Transform
- uid: 5975
components:
- - pos: -20.5,45.5
+ - pos: -18.5,45.5
parent: 2
type: Transform
- uid: 5976
components:
- - pos: -21.5,45.5
+ - pos: -19.5,45.5
parent: 2
type: Transform
- uid: 5977
components:
- - pos: -22.5,45.5
+ - pos: -20.5,45.5
parent: 2
type: Transform
- uid: 5978
components:
- - pos: -21.5,44.5
+ - pos: -21.5,45.5
parent: 2
type: Transform
- uid: 5979
components:
- - pos: -21.5,43.5
+ - pos: -22.5,45.5
parent: 2
type: Transform
- uid: 5980
components:
- - pos: -21.5,42.5
+ - pos: -21.5,44.5
parent: 2
type: Transform
- uid: 5981
components:
- - pos: -21.5,41.5
+ - pos: -21.5,43.5
parent: 2
type: Transform
- uid: 5982
components:
- - pos: -21.5,40.5
+ - pos: -21.5,42.5
parent: 2
type: Transform
- uid: 5983
components:
- - pos: -17.5,44.5
+ - pos: -21.5,41.5
parent: 2
type: Transform
- uid: 5984
components:
- - pos: -16.5,44.5
+ - pos: -21.5,40.5
parent: 2
type: Transform
- uid: 5985
components:
- - pos: -16.5,45.5
+ - pos: -17.5,44.5
parent: 2
type: Transform
- uid: 5986
components:
- - pos: -16.5,46.5
+ - pos: -16.5,44.5
parent: 2
type: Transform
- uid: 5987
components:
- - pos: -16.5,47.5
+ - pos: -16.5,45.5
parent: 2
type: Transform
- uid: 5988
components:
- - pos: -16.5,48.5
+ - pos: -16.5,46.5
parent: 2
type: Transform
- uid: 5989
components:
- - pos: -16.5,49.5
+ - pos: -16.5,47.5
parent: 2
type: Transform
- uid: 5990
components:
- - pos: -16.5,50.5
+ - pos: -16.5,48.5
parent: 2
type: Transform
- uid: 5991
components:
- - pos: -16.5,51.5
+ - pos: -16.5,49.5
parent: 2
type: Transform
- uid: 5992
components:
- - pos: -17.5,51.5
+ - pos: -16.5,50.5
parent: 2
type: Transform
- uid: 5993
components:
- - pos: -18.5,51.5
+ - pos: -16.5,51.5
parent: 2
type: Transform
- uid: 5994
components:
- - pos: -18.5,50.5
+ - pos: -17.5,51.5
parent: 2
type: Transform
- uid: 5995
components:
- - pos: -18.5,49.5
+ - pos: -18.5,51.5
parent: 2
type: Transform
- uid: 5996
components:
- - pos: -18.5,48.5
+ - pos: -18.5,50.5
parent: 2
type: Transform
- uid: 5997
components:
- - pos: -18.5,47.5
+ - pos: -18.5,49.5
parent: 2
type: Transform
- uid: 5998
components:
- - pos: -18.5,46.5
+ - pos: -18.5,48.5
parent: 2
type: Transform
- uid: 5999
components:
- - pos: -13.5,39.5
+ - pos: -18.5,47.5
parent: 2
type: Transform
- uid: 6000
components:
- - pos: -12.5,39.5
+ - pos: -18.5,46.5
parent: 2
type: Transform
- uid: 6001
components:
- - pos: -11.5,39.5
+ - pos: -13.5,39.5
parent: 2
type: Transform
- uid: 6002
components:
- - pos: -10.5,39.5
+ - pos: -12.5,39.5
parent: 2
type: Transform
- uid: 6003
components:
- - pos: -9.5,39.5
+ - pos: -11.5,39.5
parent: 2
type: Transform
- uid: 6004
components:
- - pos: -8.5,39.5
+ - pos: -10.5,39.5
parent: 2
type: Transform
- uid: 6005
components:
- - pos: -8.5,38.5
+ - pos: -9.5,39.5
parent: 2
type: Transform
- uid: 6006
components:
- - pos: -8.5,37.5
+ - pos: -8.5,39.5
parent: 2
type: Transform
- uid: 6007
components:
- - pos: -9.5,37.5
+ - pos: -8.5,38.5
parent: 2
type: Transform
- uid: 6008
components:
- - pos: -10.5,37.5
+ - pos: -8.5,37.5
parent: 2
type: Transform
- uid: 6009
components:
- - pos: -11.5,37.5
+ - pos: -9.5,37.5
parent: 2
type: Transform
- uid: 6010
components:
- - pos: -12.5,37.5
+ - pos: -10.5,37.5
parent: 2
type: Transform
- uid: 6011
components:
- - pos: -13.5,37.5
+ - pos: -11.5,37.5
parent: 2
type: Transform
- uid: 6012
components:
- - pos: -17.5,34.5
+ - pos: -12.5,37.5
parent: 2
type: Transform
- uid: 6013
components:
- - pos: -18.5,34.5
+ - pos: -13.5,37.5
parent: 2
type: Transform
- uid: 6014
components:
- - pos: -19.5,34.5
+ - pos: -17.5,34.5
parent: 2
type: Transform
- uid: 6015
components:
- - pos: -20.5,34.5
+ - pos: -18.5,34.5
parent: 2
type: Transform
- uid: 6016
components:
- - pos: -21.5,34.5
+ - pos: -19.5,34.5
parent: 2
type: Transform
- uid: 6017
components:
- - pos: -13.5,34.5
+ - pos: -20.5,34.5
parent: 2
type: Transform
- uid: 6018
components:
- - pos: -12.5,34.5
+ - pos: -21.5,34.5
parent: 2
type: Transform
- uid: 6019
components:
- - pos: -11.5,34.5
+ - pos: -13.5,34.5
parent: 2
type: Transform
- uid: 6020
components:
- - pos: -11.5,33.5
+ - pos: -12.5,34.5
parent: 2
type: Transform
- uid: 6021
components:
- - pos: -11.5,32.5
+ - pos: -11.5,34.5
parent: 2
type: Transform
- uid: 6022
components:
- - pos: -11.5,31.5
+ - pos: -11.5,33.5
parent: 2
type: Transform
- uid: 6023
components:
- - pos: -15.5,44.5
+ - pos: -11.5,32.5
parent: 2
type: Transform
- uid: 6024
components:
- - pos: -41.5,23.5
+ - pos: -11.5,31.5
parent: 2
type: Transform
- uid: 6025
components:
- - pos: -41.5,24.5
+ - pos: -15.5,44.5
parent: 2
type: Transform
- uid: 6026
components:
- - pos: -14.5,44.5
+ - pos: -41.5,23.5
parent: 2
type: Transform
- uid: 6027
components:
- - pos: -13.5,44.5
+ - pos: -41.5,24.5
parent: 2
type: Transform
- uid: 6028
components:
- - pos: -12.5,44.5
+ - pos: -14.5,44.5
parent: 2
type: Transform
- uid: 6029
components:
- - pos: -11.5,44.5
+ - pos: -13.5,44.5
parent: 2
type: Transform
- uid: 6030
components:
- - pos: -10.5,44.5
+ - pos: -12.5,44.5
parent: 2
type: Transform
- uid: 6031
components:
- - pos: -15.5,46.5
+ - pos: -11.5,44.5
parent: 2
type: Transform
- uid: 6032
components:
- - pos: -14.5,46.5
+ - pos: -10.5,44.5
parent: 2
type: Transform
- uid: 6033
components:
- - pos: -13.5,46.5
+ - pos: -15.5,46.5
parent: 2
type: Transform
- uid: 6034
components:
- - pos: -12.5,46.5
+ - pos: -14.5,46.5
parent: 2
type: Transform
- uid: 6035
components:
- - pos: -11.5,46.5
+ - pos: -13.5,46.5
parent: 2
type: Transform
- uid: 6036
components:
- - pos: -10.5,46.5
+ - pos: -12.5,46.5
parent: 2
type: Transform
- uid: 6037
components:
- - pos: 52.5,39.5
+ - pos: -11.5,46.5
parent: 2
type: Transform
- uid: 6038
components:
- - pos: 51.5,39.5
+ - pos: -10.5,46.5
parent: 2
type: Transform
- uid: 6039
components:
- - pos: 49.5,39.5
+ - pos: 52.5,39.5
parent: 2
type: Transform
- uid: 6040
components:
- - pos: 48.5,39.5
+ - pos: 51.5,39.5
parent: 2
type: Transform
- uid: 6041
components:
- - pos: 47.5,38.5
+ - pos: 49.5,39.5
parent: 2
type: Transform
- uid: 6042
components:
- - pos: 47.5,39.5
+ - pos: 48.5,39.5
parent: 2
type: Transform
- uid: 6043
components:
- - pos: 47.5,37.5
+ - pos: 47.5,38.5
parent: 2
type: Transform
- uid: 6044
components:
- - pos: 46.5,37.5
+ - pos: 47.5,39.5
parent: 2
type: Transform
- uid: 6045
components:
- - pos: 45.5,37.5
+ - pos: 47.5,37.5
parent: 2
type: Transform
- uid: 6046
components:
- - pos: 45.5,36.5
+ - pos: 46.5,37.5
parent: 2
type: Transform
- uid: 6047
components:
- - pos: 45.5,35.5
+ - pos: 45.5,37.5
parent: 2
type: Transform
- uid: 6048
components:
- - pos: 46.5,35.5
+ - pos: 45.5,36.5
parent: 2
type: Transform
- uid: 6049
components:
- - pos: 46.5,33.5
+ - pos: 45.5,35.5
parent: 2
type: Transform
- uid: 6050
components:
- - pos: 46.5,32.5
+ - pos: 46.5,35.5
parent: 2
type: Transform
- uid: 6051
components:
- - pos: 47.5,32.5
+ - pos: 46.5,33.5
parent: 2
type: Transform
- uid: 6052
components:
- - pos: 48.5,32.5
+ - pos: 46.5,32.5
parent: 2
type: Transform
- uid: 6053
components:
- - pos: 49.5,32.5
+ - pos: 47.5,32.5
parent: 2
type: Transform
- uid: 6054
components:
- - pos: 52.5,40.5
+ - pos: 48.5,32.5
parent: 2
type: Transform
- uid: 6055
components:
- - pos: 52.5,41.5
+ - pos: 49.5,32.5
parent: 2
type: Transform
- uid: 6056
components:
- - pos: 49.5,38.5
+ - pos: 52.5,40.5
parent: 2
type: Transform
- uid: 6057
components:
- - pos: 49.5,37.5
+ - pos: 52.5,41.5
parent: 2
type: Transform
- uid: 6058
components:
- - pos: 49.5,36.5
+ - pos: 49.5,38.5
parent: 2
type: Transform
- uid: 6059
components:
- - pos: 6.5,48.5
+ - pos: 49.5,37.5
parent: 2
type: Transform
- uid: 6060
components:
- - pos: 5.5,48.5
+ - pos: 49.5,36.5
parent: 2
type: Transform
- uid: 6061
components:
- - pos: 4.5,48.5
+ - pos: 6.5,48.5
parent: 2
type: Transform
- uid: 6062
components:
- - pos: 3.5,48.5
+ - pos: 5.5,48.5
parent: 2
type: Transform
- uid: 6063
components:
- - pos: 3.5,49.5
+ - pos: 4.5,48.5
parent: 2
type: Transform
- uid: 6064
components:
- - pos: 2.5,49.5
+ - pos: 3.5,48.5
parent: 2
type: Transform
- uid: 6065
components:
- - pos: 1.5,49.5
+ - pos: 3.5,49.5
parent: 2
type: Transform
- uid: 6066
components:
- - pos: 58.5,27.5
+ - pos: 2.5,49.5
parent: 2
type: Transform
- uid: 6067
components:
- - pos: 59.5,28.5
+ - pos: 1.5,49.5
parent: 2
type: Transform
- uid: 6068
components:
- - pos: 58.5,28.5
+ - pos: 58.5,27.5
parent: 2
type: Transform
- uid: 6069
components:
- - pos: 5.5,49.5
+ - pos: 59.5,28.5
parent: 2
type: Transform
- uid: 6070
components:
- - pos: 5.5,50.5
+ - pos: 58.5,28.5
parent: 2
type: Transform
- uid: 6071
components:
- - pos: 5.5,51.5
+ - pos: 5.5,49.5
parent: 2
type: Transform
- uid: 6072
components:
- - pos: 6.5,51.5
+ - pos: 5.5,50.5
parent: 2
type: Transform
- uid: 6073
components:
- - pos: 6.5,52.5
+ - pos: 5.5,51.5
parent: 2
type: Transform
- uid: 6074
components:
- - pos: 7.5,52.5
+ - pos: 6.5,51.5
parent: 2
type: Transform
- uid: 6075
components:
- - pos: 8.5,52.5
+ - pos: 6.5,52.5
parent: 2
type: Transform
- uid: 6076
components:
- - pos: 63.5,27.5
+ - pos: 7.5,52.5
parent: 2
type: Transform
- uid: 6077
components:
- - pos: 63.5,28.5
+ - pos: 8.5,52.5
parent: 2
type: Transform
- uid: 6078
components:
- - pos: 63.5,29.5
+ - pos: 63.5,27.5
parent: 2
type: Transform
- uid: 6079
components:
- - pos: 16.5,35.5
+ - pos: 63.5,28.5
parent: 2
type: Transform
- uid: 6080
components:
- - pos: 16.5,36.5
+ - pos: 63.5,29.5
parent: 2
type: Transform
- uid: 6081
components:
- - pos: 16.5,37.5
+ - pos: 16.5,35.5
parent: 2
type: Transform
- uid: 6082
components:
- - pos: 16.5,38.5
+ - pos: 16.5,36.5
parent: 2
type: Transform
- uid: 6083
components:
- - pos: 16.5,39.5
+ - pos: 16.5,37.5
parent: 2
type: Transform
- uid: 6084
components:
- - pos: 15.5,39.5
+ - pos: 16.5,38.5
parent: 2
type: Transform
- uid: 6085
components:
- - pos: 14.5,39.5
+ - pos: 16.5,39.5
parent: 2
type: Transform
- uid: 6086
components:
- - pos: 14.5,38.5
+ - pos: 15.5,39.5
parent: 2
type: Transform
- uid: 6087
components:
- - pos: 14.5,37.5
+ - pos: 14.5,39.5
parent: 2
type: Transform
- uid: 6088
components:
- - pos: 14.5,36.5
+ - pos: 14.5,38.5
parent: 2
type: Transform
- uid: 6089
components:
- - pos: 15.5,36.5
+ - pos: 14.5,37.5
parent: 2
type: Transform
- uid: 6090
components:
- - pos: 17.5,39.5
+ - pos: 14.5,36.5
parent: 2
type: Transform
- uid: 6091
components:
- - pos: 18.5,39.5
+ - pos: 15.5,36.5
parent: 2
type: Transform
- uid: 6092
components:
- - pos: 18.5,38.5
+ - pos: 17.5,39.5
parent: 2
type: Transform
- uid: 6093
components:
- - pos: 18.5,37.5
+ - pos: 18.5,39.5
parent: 2
type: Transform
- uid: 6094
components:
- - pos: 18.5,36.5
+ - pos: 18.5,38.5
parent: 2
type: Transform
- uid: 6095
components:
- - pos: 17.5,36.5
+ - pos: 18.5,37.5
parent: 2
type: Transform
- uid: 6096
components:
- - pos: 16.5,40.5
+ - pos: 18.5,36.5
parent: 2
type: Transform
- uid: 6097
components:
- - pos: 63.5,30.5
+ - pos: 17.5,36.5
parent: 2
type: Transform
- uid: 6098
components:
- - pos: 63.5,31.5
+ - pos: 16.5,40.5
parent: 2
type: Transform
- uid: 6099
components:
- - pos: 63.5,32.5
+ - pos: 63.5,30.5
parent: 2
type: Transform
- uid: 6100
components:
- - pos: 63.5,33.5
+ - pos: 63.5,31.5
parent: 2
type: Transform
- uid: 6101
components:
- - pos: 63.5,34.5
+ - pos: 63.5,32.5
parent: 2
type: Transform
- uid: 6102
components:
- - pos: 63.5,35.5
+ - pos: 63.5,33.5
parent: 2
type: Transform
- uid: 6103
components:
- - pos: 63.5,36.5
+ - pos: 63.5,34.5
parent: 2
type: Transform
- uid: 6104
components:
- - pos: 64.5,36.5
+ - pos: 63.5,35.5
parent: 2
type: Transform
- uid: 6105
components:
- - pos: 65.5,36.5
+ - pos: 63.5,36.5
parent: 2
type: Transform
- uid: 6106
components:
- - pos: 66.5,36.5
+ - pos: 64.5,36.5
parent: 2
type: Transform
- uid: 6107
components:
- - pos: 67.5,36.5
+ - pos: 65.5,36.5
parent: 2
type: Transform
- uid: 6108
components:
- - pos: 68.5,36.5
+ - pos: 66.5,36.5
parent: 2
type: Transform
- uid: 6109
components:
- - pos: 69.5,36.5
+ - pos: 67.5,36.5
parent: 2
type: Transform
- uid: 6110
components:
- - pos: 70.5,36.5
+ - pos: 68.5,36.5
parent: 2
type: Transform
- uid: 6111
components:
- - pos: 71.5,36.5
+ - pos: 69.5,36.5
parent: 2
type: Transform
- uid: 6112
components:
- - pos: 72.5,36.5
+ - pos: 70.5,36.5
parent: 2
type: Transform
- uid: 6113
components:
- - pos: 73.5,36.5
+ - pos: 71.5,36.5
parent: 2
type: Transform
- uid: 6114
components:
- - pos: 74.5,36.5
+ - pos: 72.5,36.5
parent: 2
type: Transform
- uid: 6115
components:
- - pos: 75.5,36.5
+ - pos: 73.5,36.5
parent: 2
type: Transform
- uid: 6116
components:
- - pos: 76.5,36.5
+ - pos: 74.5,36.5
parent: 2
type: Transform
- uid: 6117
components:
- - pos: 73.5,35.5
+ - pos: 75.5,36.5
parent: 2
type: Transform
- uid: 6118
components:
- - pos: 73.5,34.5
+ - pos: 76.5,36.5
parent: 2
type: Transform
- uid: 6119
components:
- - pos: 71.5,35.5
+ - pos: 73.5,35.5
parent: 2
type: Transform
- uid: 6120
components:
- - pos: 71.5,34.5
+ - pos: 73.5,34.5
parent: 2
type: Transform
- uid: 6121
components:
- - pos: 71.5,37.5
+ - pos: 71.5,35.5
parent: 2
type: Transform
- uid: 6122
components:
- - pos: 71.5,38.5
+ - pos: 71.5,34.5
parent: 2
type: Transform
- uid: 6123
components:
- - pos: 73.5,38.5
+ - pos: 71.5,37.5
parent: 2
type: Transform
- uid: 6124
components:
- - pos: 73.5,37.5
+ - pos: 71.5,38.5
parent: 2
type: Transform
- uid: 6125
components:
- - pos: 39.5,47.5
+ - pos: 73.5,38.5
parent: 2
type: Transform
- uid: 6126
components:
- - pos: 43.5,45.5
+ - pos: 73.5,37.5
parent: 2
type: Transform
- uid: 6127
components:
- - pos: 42.5,45.5
+ - pos: 39.5,47.5
parent: 2
type: Transform
- uid: 6128
components:
- - pos: 41.5,45.5
+ - pos: 43.5,45.5
parent: 2
type: Transform
- uid: 6129
components:
- - pos: 40.5,45.5
+ - pos: 42.5,45.5
parent: 2
type: Transform
- uid: 6130
components:
- - pos: 39.5,45.5
+ - pos: 41.5,45.5
parent: 2
type: Transform
- uid: 6131
components:
- - pos: 38.5,45.5
+ - pos: 40.5,45.5
parent: 2
type: Transform
- uid: 6132
components:
- - pos: 37.5,45.5
+ - pos: 39.5,45.5
parent: 2
type: Transform
- uid: 6133
components:
- - pos: 36.5,45.5
+ - pos: 38.5,45.5
parent: 2
type: Transform
- uid: 6134
components:
- - pos: 35.5,45.5
+ - pos: 37.5,45.5
parent: 2
type: Transform
- uid: 6135
components:
- - pos: 34.5,45.5
+ - pos: 36.5,45.5
parent: 2
type: Transform
- uid: 6136
components:
- - pos: 39.5,46.5
+ - pos: 35.5,45.5
parent: 2
type: Transform
- uid: 6137
components:
- - pos: 38.5,44.5
+ - pos: 34.5,45.5
parent: 2
type: Transform
- uid: 6138
components:
- - pos: 38.5,43.5
+ - pos: 39.5,46.5
parent: 2
type: Transform
- uid: 6139
components:
- - pos: 38.5,48.5
+ - pos: 38.5,44.5
parent: 2
type: Transform
- uid: 6140
components:
- - pos: 38.5,49.5
+ - pos: 38.5,43.5
parent: 2
type: Transform
- uid: 6141
components:
- - pos: 38.5,50.5
+ - pos: 38.5,48.5
parent: 2
type: Transform
- uid: 6142
components:
- - pos: 39.5,50.5
+ - pos: 38.5,49.5
parent: 2
type: Transform
- uid: 6143
components:
- - pos: 39.5,51.5
+ - pos: 38.5,50.5
parent: 2
type: Transform
- uid: 6144
components:
- - pos: 40.5,51.5
+ - pos: 39.5,50.5
parent: 2
type: Transform
- uid: 6145
components:
- - pos: 41.5,51.5
+ - pos: 39.5,51.5
parent: 2
type: Transform
- uid: 6146
components:
- - pos: 41.5,44.5
+ - pos: 40.5,51.5
parent: 2
type: Transform
- uid: 6147
components:
- - pos: 41.5,46.5
+ - pos: 41.5,51.5
parent: 2
type: Transform
- uid: 6148
components:
- - pos: 41.5,47.5
+ - pos: 41.5,44.5
parent: 2
type: Transform
- uid: 6149
components:
- - pos: 34.5,46.5
+ - pos: 41.5,46.5
parent: 2
type: Transform
- uid: 6150
components:
- - pos: 34.5,47.5
+ - pos: 41.5,47.5
parent: 2
type: Transform
- uid: 6151
components:
- - pos: 35.5,44.5
+ - pos: 34.5,46.5
parent: 2
type: Transform
- uid: 6152
components:
- - pos: 35.5,43.5
+ - pos: 34.5,47.5
parent: 2
type: Transform
- uid: 6153
components:
- - pos: 45.5,32.5
+ - pos: 35.5,44.5
parent: 2
type: Transform
- uid: 6154
components:
- - pos: 45.5,31.5
+ - pos: 35.5,43.5
parent: 2
type: Transform
- uid: 6155
components:
- - pos: 45.5,30.5
+ - pos: 45.5,32.5
parent: 2
type: Transform
- uid: 6156
components:
- - pos: 45.5,29.5
+ - pos: 45.5,31.5
parent: 2
type: Transform
- uid: 6157
components:
- - pos: 44.5,29.5
+ - pos: 45.5,30.5
parent: 2
type: Transform
- uid: 6158
components:
- - pos: 43.5,29.5
+ - pos: 45.5,29.5
parent: 2
type: Transform
- uid: 6159
components:
- - pos: 37.5,50.5
+ - pos: 44.5,29.5
parent: 2
type: Transform
- uid: 6160
components:
- - pos: -9.5,46.5
+ - pos: 43.5,29.5
parent: 2
type: Transform
- uid: 6161
components:
- - pos: -8.5,46.5
+ - pos: 37.5,50.5
parent: 2
type: Transform
- uid: 6162
components:
- - pos: -7.5,46.5
+ - pos: -9.5,46.5
parent: 2
type: Transform
- uid: 6163
components:
- - pos: -6.5,46.5
+ - pos: -8.5,46.5
parent: 2
type: Transform
- uid: 6164
components:
- - pos: -5.5,46.5
+ - pos: -7.5,46.5
parent: 2
type: Transform
- uid: 6165
components:
- - pos: -4.5,46.5
+ - pos: -6.5,46.5
parent: 2
type: Transform
- uid: 6166
components:
- - pos: -3.5,46.5
+ - pos: -5.5,46.5
parent: 2
type: Transform
- uid: 6167
components:
- - pos: -2.5,46.5
+ - pos: -4.5,46.5
parent: 2
type: Transform
- uid: 6168
components:
- - pos: -1.5,46.5
+ - pos: -3.5,46.5
parent: 2
type: Transform
- uid: 6169
components:
- - pos: -0.5,46.5
+ - pos: -2.5,46.5
parent: 2
type: Transform
- uid: 6170
components:
- - pos: -0.5,45.5
+ - pos: -1.5,46.5
parent: 2
type: Transform
- uid: 6171
components:
- - pos: -0.5,44.5
+ - pos: -0.5,46.5
parent: 2
type: Transform
- uid: 6172
components:
- - pos: -1.5,44.5
+ - pos: -0.5,45.5
parent: 2
type: Transform
- uid: 6173
components:
- - pos: -2.5,44.5
+ - pos: -0.5,44.5
parent: 2
type: Transform
- uid: 6174
components:
- - pos: -3.5,44.5
+ - pos: -1.5,44.5
parent: 2
type: Transform
- uid: 6175
components:
- - pos: -4.5,44.5
+ - pos: -2.5,44.5
parent: 2
type: Transform
- uid: 6176
components:
- - pos: -5.5,44.5
+ - pos: -3.5,44.5
parent: 2
type: Transform
- uid: 6177
components:
- - pos: -6.5,44.5
+ - pos: -4.5,44.5
parent: 2
type: Transform
- uid: 6178
components:
- - pos: -7.5,44.5
+ - pos: -5.5,44.5
parent: 2
type: Transform
- uid: 6179
components:
- - pos: -8.5,44.5
+ - pos: -6.5,44.5
parent: 2
type: Transform
- uid: 6180
components:
- - pos: -9.5,44.5
+ - pos: -7.5,44.5
parent: 2
type: Transform
- uid: 6181
components:
- - pos: 0.5,46.5
+ - pos: -8.5,44.5
parent: 2
type: Transform
- uid: 6182
components:
- - pos: 0.5,47.5
+ - pos: -9.5,44.5
parent: 2
type: Transform
- uid: 6183
components:
- - pos: -0.5,48.5
+ - pos: 0.5,46.5
parent: 2
type: Transform
- uid: 6184
components:
- - pos: -0.5,49.5
+ - pos: 0.5,47.5
parent: 2
type: Transform
- uid: 6185
components:
- - pos: -0.5,50.5
+ - pos: -0.5,48.5
parent: 2
type: Transform
- uid: 6186
components:
- - pos: -0.5,51.5
+ - pos: -0.5,49.5
parent: 2
type: Transform
- uid: 6187
components:
- - pos: -0.5,52.5
+ - pos: -0.5,50.5
parent: 2
type: Transform
- uid: 6188
components:
- - pos: -0.5,53.5
+ - pos: -0.5,51.5
parent: 2
type: Transform
- uid: 6189
components:
- - pos: -0.5,54.5
+ - pos: -0.5,52.5
parent: 2
type: Transform
- uid: 6190
components:
- - pos: 0.5,48.5
+ - pos: -0.5,53.5
parent: 2
type: Transform
- uid: 6191
components:
- - pos: 1.5,48.5
+ - pos: -0.5,54.5
parent: 2
type: Transform
- uid: 6192
components:
- - pos: 1.5,50.5
+ - pos: 0.5,48.5
parent: 2
type: Transform
- uid: 6193
components:
- - pos: 1.5,51.5
+ - pos: 1.5,48.5
parent: 2
type: Transform
- uid: 6194
components:
- - pos: 1.5,52.5
+ - pos: 1.5,50.5
parent: 2
type: Transform
- uid: 6195
components:
- - pos: 1.5,53.5
+ - pos: 1.5,51.5
parent: 2
type: Transform
- uid: 6196
components:
- - pos: 1.5,54.5
+ - pos: 1.5,52.5
parent: 2
type: Transform
- uid: 6197
components:
- - pos: -10.5,23.5
+ - pos: 1.5,53.5
parent: 2
type: Transform
- uid: 6198
components:
- - pos: -10.5,22.5
+ - pos: 1.5,54.5
parent: 2
type: Transform
- uid: 6199
components:
- - pos: -10.5,21.5
+ - pos: -10.5,23.5
parent: 2
type: Transform
- uid: 6200
components:
- - pos: -10.5,20.5
+ - pos: -10.5,22.5
parent: 2
type: Transform
- uid: 6201
components:
- - pos: -10.5,19.5
+ - pos: -10.5,21.5
parent: 2
type: Transform
- uid: 6202
components:
- - pos: -10.5,18.5
+ - pos: -10.5,20.5
parent: 2
type: Transform
- uid: 6203
components:
- - pos: -11.5,18.5
+ - pos: -10.5,19.5
parent: 2
type: Transform
- uid: 6204
components:
- - pos: -12.5,18.5
+ - pos: -10.5,18.5
parent: 2
type: Transform
- uid: 6205
components:
- - pos: -13.5,18.5
+ - pos: -11.5,18.5
parent: 2
type: Transform
- uid: 6206
components:
- - pos: -13.5,19.5
+ - pos: -12.5,18.5
parent: 2
type: Transform
- uid: 6207
components:
- - pos: -13.5,20.5
+ - pos: -13.5,18.5
parent: 2
type: Transform
- uid: 6208
components:
- - pos: -13.5,21.5
+ - pos: -13.5,19.5
parent: 2
type: Transform
- uid: 6209
components:
- - pos: -11.5,42.5
+ - pos: -13.5,20.5
parent: 2
type: Transform
- uid: 6210
components:
- - pos: -10.5,42.5
+ - pos: -13.5,21.5
parent: 2
type: Transform
- uid: 6211
components:
- - pos: -9.5,42.5
+ - pos: -11.5,42.5
parent: 2
type: Transform
- uid: 6212
components:
- - pos: -9.5,43.5
+ - pos: -10.5,42.5
parent: 2
type: Transform
- uid: 6213
components:
- - pos: 33.5,45.5
+ - pos: -9.5,42.5
parent: 2
type: Transform
- uid: 6214
components:
- - pos: 32.5,45.5
+ - pos: -9.5,43.5
parent: 2
type: Transform
- uid: 6215
components:
- - pos: 31.5,45.5
+ - pos: 33.5,45.5
parent: 2
type: Transform
- uid: 6216
components:
- - pos: 30.5,45.5
+ - pos: 32.5,45.5
parent: 2
type: Transform
- uid: 6217
components:
- - pos: 29.5,45.5
+ - pos: 31.5,45.5
parent: 2
type: Transform
- uid: 6218
components:
- - pos: 29.5,44.5
+ - pos: 30.5,45.5
parent: 2
type: Transform
- uid: 6219
components:
- - pos: 29.5,43.5
+ - pos: 29.5,45.5
parent: 2
type: Transform
- uid: 6220
components:
- - pos: 29.5,42.5
+ - pos: 29.5,44.5
parent: 2
type: Transform
- uid: 6221
components:
- - pos: 29.5,46.5
+ - pos: 29.5,43.5
parent: 2
type: Transform
- uid: 6222
components:
- - pos: 29.5,47.5
+ - pos: 29.5,42.5
parent: 2
type: Transform
- uid: 6223
components:
- - pos: -2.5,31.5
+ - pos: 29.5,46.5
parent: 2
type: Transform
- uid: 6224
components:
- - pos: -2.5,30.5
+ - pos: 29.5,47.5
parent: 2
type: Transform
- uid: 6225
components:
- - pos: -2.5,29.5
+ - pos: -2.5,31.5
parent: 2
type: Transform
- uid: 6226
components:
- - pos: -2.5,28.5
+ - pos: -2.5,30.5
parent: 2
type: Transform
- uid: 6227
components:
- - pos: -2.5,27.5
+ - pos: -2.5,29.5
parent: 2
type: Transform
- uid: 6228
components:
- - pos: -2.5,26.5
+ - pos: -2.5,28.5
parent: 2
type: Transform
- uid: 6229
components:
- - pos: -2.5,25.5
+ - pos: -2.5,27.5
parent: 2
type: Transform
- uid: 6230
components:
- - pos: 3.5,32.5
+ - pos: -2.5,26.5
parent: 2
type: Transform
- uid: 6231
components:
- - pos: -22.5,34.5
+ - pos: -2.5,25.5
parent: 2
type: Transform
- uid: 6232
components:
- - pos: -23.5,34.5
+ - pos: 3.5,32.5
parent: 2
type: Transform
- uid: 6233
components:
- - pos: -24.5,34.5
+ - pos: -22.5,34.5
parent: 2
type: Transform
- uid: 6234
components:
- - pos: -24.5,35.5
+ - pos: -23.5,34.5
parent: 2
type: Transform
- uid: 6235
components:
- - pos: -24.5,36.5
+ - pos: -24.5,34.5
parent: 2
type: Transform
- uid: 6236
components:
- - pos: -24.5,37.5
+ - pos: -24.5,35.5
parent: 2
type: Transform
- uid: 6237
components:
- - pos: -24.5,38.5
+ - pos: -24.5,36.5
parent: 2
type: Transform
- uid: 6238
components:
- - pos: -23.5,38.5
+ - pos: -24.5,37.5
parent: 2
type: Transform
- uid: 6239
components:
- - pos: -22.5,38.5
+ - pos: -24.5,38.5
parent: 2
type: Transform
- uid: 6240
components:
- - pos: -21.5,38.5
+ - pos: -23.5,38.5
parent: 2
type: Transform
- uid: 6241
components:
- - pos: -20.5,38.5
+ - pos: -22.5,38.5
parent: 2
type: Transform
- uid: 6242
components:
- - pos: -24.5,39.5
+ - pos: -21.5,38.5
parent: 2
type: Transform
- uid: 6243
components:
- - pos: -24.5,40.5
+ - pos: -20.5,38.5
parent: 2
type: Transform
- uid: 6244
components:
- - pos: -24.5,41.5
+ - pos: -24.5,39.5
parent: 2
type: Transform
- uid: 6245
components:
- - pos: -24.5,42.5
+ - pos: -24.5,40.5
parent: 2
type: Transform
- uid: 6246
components:
- - pos: -24.5,43.5
+ - pos: -24.5,41.5
parent: 2
type: Transform
- uid: 6247
components:
- - pos: -24.5,44.5
+ - pos: -24.5,42.5
parent: 2
type: Transform
- uid: 6248
components:
- - pos: -24.5,45.5
+ - pos: -24.5,43.5
parent: 2
type: Transform
- uid: 6249
components:
- - pos: -25.5,45.5
+ - pos: -24.5,44.5
parent: 2
type: Transform
- uid: 6250
components:
- - pos: -26.5,45.5
+ - pos: -24.5,45.5
parent: 2
type: Transform
- uid: 6251
components:
- - pos: -27.5,45.5
+ - pos: -25.5,45.5
parent: 2
type: Transform
- uid: 6252
components:
- - pos: -27.5,44.5
+ - pos: -26.5,45.5
parent: 2
type: Transform
- uid: 6253
components:
- - pos: -24.5,46.5
+ - pos: -27.5,45.5
parent: 2
type: Transform
- uid: 6254
components:
- - pos: -24.5,47.5
+ - pos: -27.5,44.5
parent: 2
type: Transform
- uid: 6255
components:
- - pos: -23.5,47.5
+ - pos: -24.5,46.5
parent: 2
type: Transform
- uid: 6256
components:
- - pos: -22.5,47.5
+ - pos: -24.5,47.5
parent: 2
type: Transform
- uid: 6257
components:
- - pos: -22.5,48.5
+ - pos: -23.5,47.5
parent: 2
type: Transform
- uid: 6258
components:
- - pos: -21.5,48.5
+ - pos: -22.5,47.5
parent: 2
type: Transform
- uid: 6259
components:
- - pos: -20.5,48.5
+ - pos: -22.5,48.5
parent: 2
type: Transform
- uid: 6260
components:
- - pos: -20.5,50.5
+ - pos: -21.5,48.5
parent: 2
type: Transform
- uid: 6261
components:
- - pos: -19.5,50.5
+ - pos: -20.5,48.5
parent: 2
type: Transform
- uid: 6262
components:
- - pos: -20.5,49.5
+ - pos: -20.5,50.5
parent: 2
type: Transform
- uid: 6263
components:
- - pos: -8.5,60.5
+ - pos: -19.5,50.5
parent: 2
type: Transform
- uid: 6264
components:
- - pos: -8.5,59.5
+ - pos: -20.5,49.5
parent: 2
type: Transform
- uid: 6265
components:
- - pos: -7.5,58.5
+ - pos: -8.5,60.5
parent: 2
type: Transform
- uid: 6266
components:
- - pos: -6.5,58.5
+ - pos: -8.5,59.5
parent: 2
type: Transform
- uid: 6267
components:
- - pos: -5.5,58.5
+ - pos: -7.5,58.5
parent: 2
type: Transform
- uid: 6268
components:
- - pos: -4.5,58.5
+ - pos: -6.5,58.5
parent: 2
type: Transform
- uid: 6269
components:
- - pos: -3.5,58.5
+ - pos: -5.5,58.5
parent: 2
type: Transform
- uid: 6270
components:
- - pos: -2.5,58.5
+ - pos: -4.5,58.5
parent: 2
type: Transform
- uid: 6271
components:
- - pos: -1.5,58.5
+ - pos: -3.5,58.5
parent: 2
type: Transform
- uid: 6272
components:
- - pos: -0.5,58.5
+ - pos: -2.5,58.5
parent: 2
type: Transform
- uid: 6273
components:
- - pos: 0.5,58.5
+ - pos: -1.5,58.5
parent: 2
type: Transform
- uid: 6274
components:
- - pos: 0.5,57.5
+ - pos: -0.5,58.5
parent: 2
type: Transform
- uid: 6275
components:
- - pos: 0.5,56.5
+ - pos: 0.5,58.5
parent: 2
type: Transform
- uid: 6276
components:
- - pos: 0.5,55.5
+ - pos: 0.5,57.5
parent: 2
type: Transform
- uid: 6277
components:
- - pos: -2.5,59.5
+ - pos: 0.5,56.5
parent: 2
type: Transform
- uid: 6278
components:
- - pos: -2.5,60.5
+ - pos: 0.5,55.5
parent: 2
type: Transform
- uid: 6279
components:
- - pos: -2.5,61.5
+ - pos: -2.5,59.5
parent: 2
type: Transform
- uid: 6280
components:
- - pos: -2.5,62.5
+ - pos: -2.5,60.5
parent: 2
type: Transform
- uid: 6281
components:
- - pos: -1.5,62.5
+ - pos: -2.5,61.5
parent: 2
type: Transform
- uid: 6282
components:
- - pos: -1.5,63.5
+ - pos: -2.5,62.5
parent: 2
type: Transform
- uid: 6283
components:
- - pos: -1.5,65.5
+ - pos: -1.5,62.5
parent: 2
type: Transform
- uid: 6284
components:
- - pos: -1.5,64.5
+ - pos: -1.5,63.5
parent: 2
type: Transform
- uid: 6285
components:
- - pos: -0.5,59.5
+ - pos: -1.5,65.5
parent: 2
type: Transform
- uid: 6286
components:
- - pos: -0.5,60.5
+ - pos: -1.5,64.5
parent: 2
type: Transform
- uid: 6287
components:
- - pos: -0.5,61.5
+ - pos: -0.5,59.5
parent: 2
type: Transform
- uid: 6288
components:
- - pos: -0.5,62.5
+ - pos: -0.5,60.5
parent: 2
type: Transform
- uid: 6289
components:
- - pos: -1.5,66.5
+ - pos: -0.5,61.5
parent: 2
type: Transform
- uid: 6290
components:
- - pos: -2.5,66.5
+ - pos: -0.5,62.5
parent: 2
type: Transform
- uid: 6291
components:
- - pos: -3.5,66.5
+ - pos: -1.5,66.5
parent: 2
type: Transform
- uid: 6292
components:
- - pos: -4.5,66.5
+ - pos: -2.5,66.5
parent: 2
type: Transform
- uid: 6293
components:
- - pos: -5.5,66.5
+ - pos: -3.5,66.5
parent: 2
type: Transform
- uid: 6294
components:
- - pos: -5.5,67.5
+ - pos: -4.5,66.5
parent: 2
type: Transform
- uid: 6295
components:
- - pos: -5.5,68.5
+ - pos: -5.5,66.5
parent: 2
type: Transform
- uid: 6296
components:
- - pos: -5.5,69.5
+ - pos: -5.5,67.5
parent: 2
type: Transform
- uid: 6297
components:
- - pos: -5.5,70.5
+ - pos: -5.5,68.5
parent: 2
type: Transform
- uid: 6298
components:
- - pos: -5.5,71.5
+ - pos: -5.5,69.5
parent: 2
type: Transform
- uid: 6299
components:
- - pos: -5.5,72.5
+ - pos: -5.5,70.5
parent: 2
type: Transform
- uid: 6300
components:
- - pos: -4.5,72.5
+ - pos: -5.5,71.5
parent: 2
type: Transform
- uid: 6301
components:
- - pos: -3.5,72.5
+ - pos: -5.5,72.5
parent: 2
type: Transform
- uid: 6302
components:
- - pos: -2.5,72.5
+ - pos: -4.5,72.5
parent: 2
type: Transform
- uid: 6303
components:
- - pos: -1.5,72.5
+ - pos: -3.5,72.5
parent: 2
type: Transform
- uid: 6304
components:
- - pos: -0.5,72.5
+ - pos: -2.5,72.5
parent: 2
type: Transform
- uid: 6305
components:
- - pos: 0.5,72.5
+ - pos: -1.5,72.5
parent: 2
type: Transform
- uid: 6306
components:
- - pos: 1.5,72.5
+ - pos: -0.5,72.5
parent: 2
type: Transform
- uid: 6307
components:
- - pos: 2.5,72.5
+ - pos: 0.5,72.5
parent: 2
type: Transform
- uid: 6308
components:
- - pos: 2.5,71.5
+ - pos: 1.5,72.5
parent: 2
type: Transform
- uid: 6309
components:
- - pos: 2.5,70.5
+ - pos: 2.5,72.5
parent: 2
type: Transform
- uid: 6310
components:
- - pos: 2.5,69.5
+ - pos: 2.5,71.5
parent: 2
type: Transform
- uid: 6311
components:
- - pos: 2.5,68.5
+ - pos: 2.5,70.5
parent: 2
type: Transform
- uid: 6312
components:
- - pos: 2.5,67.5
+ - pos: 2.5,69.5
parent: 2
type: Transform
- uid: 6313
components:
- - pos: 2.5,66.5
+ - pos: 2.5,68.5
parent: 2
type: Transform
- uid: 6314
components:
- - pos: 1.5,66.5
+ - pos: 2.5,67.5
parent: 2
type: Transform
- uid: 6315
components:
- - pos: 0.5,66.5
+ - pos: 2.5,66.5
parent: 2
type: Transform
- uid: 6316
components:
- - pos: -0.5,66.5
+ - pos: 1.5,66.5
parent: 2
type: Transform
- uid: 6317
components:
- - pos: -1.5,67.5
+ - pos: 0.5,66.5
parent: 2
type: Transform
- uid: 6318
components:
- - pos: -1.5,68.5
+ - pos: -0.5,66.5
parent: 2
type: Transform
- uid: 6319
components:
- - pos: -1.5,69.5
+ - pos: -1.5,67.5
parent: 2
type: Transform
- uid: 6320
components:
- - pos: -7.5,59.5
+ - pos: -1.5,68.5
parent: 2
type: Transform
- uid: 6321
components:
- - pos: -9.5,59.5
+ - pos: -1.5,69.5
parent: 2
type: Transform
- uid: 6322
components:
- - pos: -10.5,59.5
+ - pos: -7.5,59.5
parent: 2
type: Transform
- uid: 6323
components:
- - pos: -11.5,59.5
+ - pos: -9.5,59.5
parent: 2
type: Transform
- uid: 6324
components:
- - pos: -12.5,59.5
+ - pos: -10.5,59.5
parent: 2
type: Transform
- uid: 6325
components:
- - pos: -12.5,58.5
+ - pos: -11.5,59.5
parent: 2
type: Transform
- uid: 6326
components:
- - pos: -12.5,57.5
+ - pos: -12.5,59.5
parent: 2
type: Transform
- uid: 6327
components:
- - pos: -12.5,56.5
+ - pos: -12.5,58.5
parent: 2
type: Transform
- uid: 6328
components:
- - pos: -12.5,55.5
+ - pos: -12.5,57.5
parent: 2
type: Transform
- uid: 6329
components:
- - pos: -12.5,54.5
+ - pos: -12.5,56.5
parent: 2
type: Transform
- uid: 6330
components:
- - pos: -12.5,53.5
+ - pos: -12.5,55.5
parent: 2
type: Transform
- uid: 6331
components:
- - pos: -12.5,52.5
+ - pos: -12.5,54.5
parent: 2
type: Transform
- uid: 6332
components:
- - pos: -12.5,51.5
+ - pos: -12.5,53.5
parent: 2
type: Transform
- uid: 6333
components:
- - pos: -12.5,50.5
+ - pos: -12.5,52.5
parent: 2
type: Transform
- uid: 6334
components:
- - pos: -12.5,49.5
+ - pos: -12.5,51.5
parent: 2
type: Transform
- uid: 6335
components:
- - pos: -13.5,49.5
+ - pos: -12.5,50.5
parent: 2
type: Transform
- uid: 6336
components:
- - pos: -14.5,49.5
+ - pos: -12.5,49.5
parent: 2
type: Transform
- uid: 6337
components:
- - pos: -14.5,50.5
+ - pos: -13.5,49.5
parent: 2
type: Transform
- uid: 6338
components:
- - pos: -14.5,51.5
+ - pos: -14.5,49.5
parent: 2
type: Transform
- uid: 6339
components:
- - pos: -13.5,51.5
+ - pos: -14.5,50.5
parent: 2
type: Transform
- uid: 6340
components:
- - pos: -12.5,60.5
+ - pos: -14.5,51.5
parent: 2
type: Transform
- uid: 6341
components:
- - pos: -12.5,61.5
+ - pos: -13.5,51.5
parent: 2
type: Transform
- uid: 6342
components:
- - pos: -12.5,62.5
+ - pos: -12.5,60.5
parent: 2
type: Transform
- uid: 6343
components:
- - pos: -12.5,63.5
+ - pos: -12.5,61.5
parent: 2
type: Transform
- uid: 6344
components:
- - pos: -12.5,64.5
+ - pos: -12.5,62.5
parent: 2
type: Transform
- uid: 6345
components:
- - pos: -12.5,65.5
+ - pos: -12.5,63.5
parent: 2
type: Transform
- uid: 6346
components:
- - pos: -12.5,66.5
+ - pos: -12.5,64.5
parent: 2
type: Transform
- uid: 6347
components:
- - pos: -12.5,67.5
+ - pos: -12.5,65.5
parent: 2
type: Transform
- uid: 6348
components:
- - pos: -12.5,68.5
+ - pos: -12.5,66.5
parent: 2
type: Transform
- uid: 6349
components:
- - pos: -12.5,69.5
+ - pos: -12.5,67.5
parent: 2
type: Transform
- uid: 6350
components:
- - pos: -12.5,70.5
+ - pos: -12.5,68.5
parent: 2
type: Transform
- uid: 6351
components:
- - pos: -12.5,71.5
+ - pos: -12.5,69.5
parent: 2
type: Transform
- uid: 6352
components:
- - pos: -12.5,72.5
+ - pos: -12.5,70.5
parent: 2
type: Transform
- uid: 6353
components:
- - pos: -12.5,73.5
+ - pos: -12.5,71.5
parent: 2
type: Transform
- uid: 6354
components:
- - pos: -12.5,74.5
+ - pos: -12.5,72.5
parent: 2
type: Transform
- uid: 6355
components:
- - pos: -13.5,67.5
+ - pos: -12.5,73.5
parent: 2
type: Transform
- uid: 6356
components:
- - pos: -14.5,67.5
+ - pos: -12.5,74.5
parent: 2
type: Transform
- uid: 6357
components:
- - pos: -15.5,67.5
+ - pos: -13.5,67.5
parent: 2
type: Transform
- uid: 6358
components:
- - pos: -16.5,67.5
+ - pos: -14.5,67.5
parent: 2
type: Transform
- uid: 6359
components:
- - pos: -17.5,67.5
+ - pos: -15.5,67.5
parent: 2
type: Transform
- uid: 6360
components:
- - pos: -17.5,66.5
+ - pos: -16.5,67.5
parent: 2
type: Transform
- uid: 6361
components:
- - pos: -17.5,65.5
+ - pos: -17.5,67.5
parent: 2
type: Transform
- uid: 6362
components:
- - pos: -17.5,64.5
+ - pos: -17.5,66.5
parent: 2
type: Transform
- uid: 6363
components:
- - pos: -17.5,63.5
+ - pos: -17.5,65.5
parent: 2
type: Transform
- uid: 6364
components:
- - pos: -17.5,62.5
+ - pos: -17.5,64.5
parent: 2
type: Transform
- uid: 6365
components:
- - pos: -17.5,61.5
+ - pos: -17.5,63.5
parent: 2
type: Transform
- uid: 6366
components:
- - pos: -17.5,60.5
+ - pos: -17.5,62.5
parent: 2
type: Transform
- uid: 6367
components:
- - pos: -17.5,59.5
+ - pos: -17.5,61.5
parent: 2
type: Transform
- uid: 6368
components:
- - pos: -17.5,58.5
+ - pos: -17.5,60.5
parent: 2
type: Transform
- uid: 6369
components:
- - pos: -17.5,57.5
+ - pos: -17.5,59.5
parent: 2
type: Transform
- uid: 6370
components:
- - pos: -17.5,56.5
+ - pos: -17.5,58.5
parent: 2
type: Transform
- uid: 6371
components:
- - pos: -17.5,55.5
+ - pos: -17.5,57.5
parent: 2
type: Transform
- uid: 6372
components:
- - pos: -18.5,55.5
+ - pos: -17.5,56.5
parent: 2
type: Transform
- uid: 6373
components:
- - pos: -19.5,55.5
+ - pos: -17.5,55.5
parent: 2
type: Transform
- uid: 6374
components:
- - pos: -20.5,55.5
+ - pos: -18.5,55.5
parent: 2
type: Transform
- uid: 6375
components:
- - pos: -21.5,55.5
+ - pos: -19.5,55.5
parent: 2
type: Transform
- uid: 6376
components:
- - pos: -22.5,55.5
+ - pos: -20.5,55.5
parent: 2
type: Transform
- uid: 6377
components:
- - pos: -22.5,54.5
+ - pos: -21.5,55.5
parent: 2
type: Transform
- uid: 6378
components:
- - pos: -22.5,53.5
+ - pos: -22.5,55.5
parent: 2
type: Transform
- uid: 6379
components:
- - pos: -22.5,52.5
+ - pos: -22.5,54.5
parent: 2
type: Transform
- uid: 6380
components:
- - pos: -22.5,51.5
+ - pos: -22.5,53.5
parent: 2
type: Transform
- uid: 6381
components:
- - pos: -21.5,53.5
+ - pos: -22.5,52.5
parent: 2
type: Transform
- uid: 6382
components:
- - pos: -21.5,56.5
+ - pos: -22.5,51.5
parent: 2
type: Transform
- uid: 6383
components:
- - pos: -21.5,57.5
+ - pos: -21.5,53.5
parent: 2
type: Transform
- uid: 6384
components:
- - pos: -21.5,58.5
+ - pos: -21.5,56.5
parent: 2
type: Transform
- uid: 6385
components:
- - pos: -21.5,59.5
+ - pos: -21.5,57.5
parent: 2
type: Transform
- uid: 6386
components:
- - pos: -21.5,60.5
+ - pos: -21.5,58.5
parent: 2
type: Transform
- uid: 6387
components:
- - pos: -21.5,61.5
+ - pos: -21.5,59.5
parent: 2
type: Transform
- uid: 6388
components:
- - pos: -21.5,62.5
+ - pos: -21.5,60.5
parent: 2
type: Transform
- uid: 6389
components:
- - pos: -21.5,63.5
+ - pos: -21.5,61.5
parent: 2
type: Transform
- uid: 6390
components:
- - pos: -21.5,64.5
+ - pos: -21.5,62.5
parent: 2
type: Transform
- uid: 6391
components:
- - pos: -21.5,65.5
+ - pos: -21.5,63.5
parent: 2
type: Transform
- uid: 6392
components:
- - pos: -21.5,66.5
+ - pos: -21.5,64.5
parent: 2
type: Transform
- uid: 6393
components:
- - pos: -21.5,67.5
+ - pos: -21.5,65.5
parent: 2
type: Transform
- uid: 6394
components:
- - pos: -21.5,68.5
+ - pos: -21.5,66.5
parent: 2
type: Transform
- uid: 6395
components:
- - pos: -21.5,69.5
+ - pos: -21.5,67.5
parent: 2
type: Transform
- uid: 6396
components:
- - pos: -21.5,70.5
+ - pos: -21.5,68.5
parent: 2
type: Transform
- uid: 6397
components:
- - pos: -21.5,71.5
+ - pos: -21.5,69.5
parent: 2
type: Transform
- uid: 6398
components:
- - pos: -21.5,72.5
+ - pos: -21.5,70.5
parent: 2
type: Transform
- uid: 6399
components:
- - pos: -21.5,73.5
+ - pos: -21.5,71.5
parent: 2
type: Transform
- uid: 6400
components:
- - pos: -21.5,74.5
+ - pos: -21.5,72.5
parent: 2
type: Transform
- uid: 6401
components:
- - pos: -17.5,68.5
+ - pos: -21.5,73.5
parent: 2
type: Transform
- uid: 6402
components:
- - pos: -17.5,69.5
+ - pos: -21.5,74.5
parent: 2
type: Transform
- uid: 6403
components:
- - pos: -17.5,70.5
+ - pos: -17.5,68.5
parent: 2
type: Transform
- uid: 6404
components:
- - pos: -17.5,54.5
+ - pos: -17.5,69.5
parent: 2
type: Transform
- uid: 6405
components:
- - pos: -17.5,53.5
+ - pos: -17.5,70.5
parent: 2
type: Transform
- uid: 6406
components:
- - pos: -25.5,41.5
+ - pos: -17.5,54.5
parent: 2
type: Transform
- uid: 6407
components:
- - pos: -25.5,40.5
+ - pos: -17.5,53.5
parent: 2
type: Transform
- uid: 6408
components:
- - pos: -26.5,41.5
+ - pos: -25.5,41.5
parent: 2
type: Transform
- uid: 6409
components:
- - pos: -28.5,39.5
+ - pos: -25.5,40.5
parent: 2
type: Transform
- uid: 6410
components:
- - pos: -27.5,41.5
+ - pos: -26.5,41.5
parent: 2
type: Transform
- uid: 6411
components:
- - pos: -28.5,40.5
+ - pos: -28.5,39.5
parent: 2
type: Transform
- uid: 6412
components:
- - pos: -28.5,41.5
+ - pos: -27.5,41.5
parent: 2
type: Transform
- uid: 6413
components:
- - pos: -28.5,38.5
+ - pos: -28.5,40.5
parent: 2
type: Transform
- uid: 6414
components:
- - pos: -29.5,38.5
+ - pos: -28.5,41.5
parent: 2
type: Transform
- uid: 6415
components:
- - pos: -30.5,38.5
+ - pos: -28.5,38.5
parent: 2
type: Transform
- uid: 6416
components:
- - pos: -31.5,38.5
+ - pos: -29.5,38.5
parent: 2
type: Transform
- uid: 6417
components:
- - pos: -32.5,38.5
+ - pos: -30.5,38.5
parent: 2
type: Transform
- uid: 6418
components:
- - pos: -32.5,39.5
+ - pos: -31.5,38.5
parent: 2
type: Transform
- uid: 6419
components:
- - pos: -33.5,39.5
+ - pos: -32.5,38.5
parent: 2
type: Transform
- uid: 6420
components:
- - pos: -34.5,39.5
+ - pos: -32.5,39.5
parent: 2
type: Transform
- uid: 6421
components:
- - pos: -35.5,39.5
+ - pos: -33.5,39.5
parent: 2
type: Transform
- uid: 6422
components:
- - pos: -36.5,39.5
+ - pos: -34.5,39.5
parent: 2
type: Transform
- uid: 6423
components:
- - pos: -37.5,39.5
+ - pos: -35.5,39.5
parent: 2
type: Transform
- uid: 6424
components:
- - pos: -37.5,40.5
+ - pos: -36.5,39.5
parent: 2
type: Transform
- uid: 6425
components:
- - pos: -37.5,41.5
+ - pos: -37.5,39.5
parent: 2
type: Transform
- uid: 6426
components:
- - pos: -37.5,42.5
+ - pos: -37.5,40.5
parent: 2
type: Transform
- uid: 6427
components:
- - pos: -38.5,39.5
+ - pos: -37.5,41.5
parent: 2
type: Transform
- uid: 6428
components:
- - pos: -39.5,39.5
+ - pos: -37.5,42.5
parent: 2
type: Transform
- uid: 6429
components:
- - pos: -40.5,39.5
+ - pos: -38.5,39.5
parent: 2
type: Transform
- uid: 6430
components:
- - pos: -41.5,39.5
+ - pos: -39.5,39.5
parent: 2
type: Transform
- uid: 6431
components:
- - pos: -42.5,39.5
+ - pos: -40.5,39.5
parent: 2
type: Transform
- uid: 6432
components:
- - pos: -43.5,39.5
+ - pos: -41.5,39.5
parent: 2
type: Transform
- uid: 6433
components:
- - pos: -44.5,39.5
+ - pos: -42.5,39.5
parent: 2
type: Transform
- uid: 6434
components:
- - pos: -45.5,39.5
+ - pos: -43.5,39.5
parent: 2
type: Transform
- uid: 6435
components:
- - pos: -46.5,39.5
+ - pos: -44.5,39.5
parent: 2
type: Transform
- uid: 6436
components:
- - pos: -41.5,38.5
+ - pos: -45.5,39.5
parent: 2
type: Transform
- uid: 6437
components:
- - pos: -29.5,37.5
+ - pos: -46.5,39.5
parent: 2
type: Transform
- uid: 6438
components:
- - pos: -29.5,36.5
+ - pos: -41.5,38.5
parent: 2
type: Transform
- uid: 6439
components:
- - pos: -30.5,36.5
+ - pos: -29.5,37.5
parent: 2
type: Transform
- uid: 6440
components:
- - pos: -31.5,36.5
+ - pos: -29.5,36.5
parent: 2
type: Transform
- uid: 6441
components:
- - pos: -32.5,36.5
+ - pos: -30.5,36.5
parent: 2
type: Transform
- uid: 6442
components:
- - pos: -33.5,36.5
+ - pos: -31.5,36.5
parent: 2
type: Transform
- uid: 6443
components:
- - pos: -34.5,36.5
+ - pos: -32.5,36.5
parent: 2
type: Transform
- uid: 6444
components:
- - pos: -34.5,37.5
+ - pos: -33.5,36.5
parent: 2
type: Transform
- uid: 6445
components:
- - pos: -35.5,37.5
+ - pos: -34.5,36.5
parent: 2
type: Transform
- uid: 6446
components:
- - pos: -36.5,37.5
+ - pos: -34.5,37.5
parent: 2
type: Transform
- uid: 6447
components:
- - pos: -37.5,37.5
+ - pos: -35.5,37.5
parent: 2
type: Transform
- uid: 6448
components:
- - pos: -37.5,36.5
+ - pos: -36.5,37.5
parent: 2
type: Transform
- uid: 6449
components:
- - pos: -21.5,27.5
+ - pos: -37.5,37.5
parent: 2
type: Transform
- uid: 6450
components:
- - pos: -22.5,27.5
+ - pos: -37.5,36.5
parent: 2
type: Transform
- uid: 6451
components:
- - pos: -23.5,27.5
+ - pos: -21.5,27.5
parent: 2
type: Transform
- uid: 6452
components:
- - pos: -24.5,27.5
+ - pos: -22.5,27.5
parent: 2
type: Transform
- uid: 6453
components:
- - pos: -25.5,27.5
+ - pos: -23.5,27.5
parent: 2
type: Transform
- uid: 6454
components:
- - pos: -26.5,27.5
+ - pos: -24.5,27.5
parent: 2
type: Transform
- uid: 6455
components:
- - pos: -27.5,27.5
+ - pos: -25.5,27.5
parent: 2
type: Transform
- uid: 6456
components:
- - pos: -28.5,27.5
+ - pos: -26.5,27.5
parent: 2
type: Transform
- uid: 6457
components:
- - pos: -28.5,28.5
+ - pos: -27.5,27.5
parent: 2
type: Transform
- uid: 6458
components:
- - pos: -28.5,29.5
+ - pos: -28.5,27.5
parent: 2
type: Transform
- uid: 6459
components:
- - pos: -28.5,30.5
+ - pos: -28.5,28.5
parent: 2
type: Transform
- uid: 6460
components:
- - pos: -28.5,31.5
+ - pos: -28.5,29.5
parent: 2
type: Transform
- uid: 6461
components:
- - pos: -27.5,31.5
+ - pos: -28.5,30.5
parent: 2
type: Transform
- uid: 6462
components:
- - pos: -27.5,33.5
+ - pos: -28.5,31.5
parent: 2
type: Transform
- uid: 6463
components:
- - pos: -27.5,34.5
+ - pos: -27.5,31.5
parent: 2
type: Transform
- uid: 6464
components:
- - pos: -27.5,35.5
+ - pos: -27.5,33.5
parent: 2
type: Transform
- uid: 6465
components:
- - pos: -27.5,32.5
+ - pos: -27.5,34.5
parent: 2
type: Transform
- uid: 6466
components:
- - pos: -16.5,62.5
+ - pos: -27.5,35.5
parent: 2
type: Transform
- uid: 6467
components:
- - pos: -16.5,61.5
+ - pos: -27.5,32.5
parent: 2
type: Transform
- uid: 6468
components:
- - pos: -18.5,62.5
+ - pos: -16.5,62.5
parent: 2
type: Transform
- uid: 6469
components:
- - pos: -18.5,61.5
+ - pos: -16.5,61.5
parent: 2
type: Transform
- uid: 6470
components:
- - pos: 56.5,36.5
+ - pos: -18.5,62.5
parent: 2
type: Transform
- uid: 6471
components:
- - pos: 28.5,45.5
+ - pos: -18.5,61.5
parent: 2
type: Transform
- uid: 6472
components:
- - pos: 27.5,45.5
+ - pos: 56.5,36.5
parent: 2
type: Transform
- uid: 6473
components:
- - pos: 26.5,45.5
+ - pos: 28.5,45.5
parent: 2
type: Transform
- uid: 6474
components:
- - pos: 25.5,45.5
+ - pos: 27.5,45.5
parent: 2
type: Transform
- uid: 6475
components:
- - pos: 24.5,45.5
+ - pos: 26.5,45.5
parent: 2
type: Transform
- uid: 6476
components:
- - pos: 23.5,45.5
+ - pos: 25.5,45.5
parent: 2
type: Transform
- uid: 6477
components:
- - pos: 22.5,45.5
+ - pos: 24.5,45.5
parent: 2
type: Transform
- uid: 6478
components:
- - pos: 21.5,45.5
+ - pos: 23.5,45.5
parent: 2
type: Transform
- uid: 6479
components:
- - pos: -8.5,-76.5
+ - pos: 22.5,45.5
parent: 2
type: Transform
- uid: 6480
components:
- - pos: -8.5,-77.5
+ - pos: 21.5,45.5
parent: 2
type: Transform
- uid: 6481
components:
- - pos: -8.5,-78.5
+ - pos: -8.5,-76.5
parent: 2
type: Transform
- uid: 6482
components:
- - pos: -8.5,-79.5
+ - pos: -8.5,-77.5
parent: 2
type: Transform
- uid: 6483
components:
- - pos: -8.5,-80.5
+ - pos: -8.5,-78.5
parent: 2
type: Transform
- uid: 6484
components:
- - pos: -8.5,-81.5
+ - pos: -8.5,-79.5
parent: 2
type: Transform
- uid: 6485
components:
- - pos: -8.5,-82.5
+ - pos: -8.5,-80.5
parent: 2
type: Transform
- uid: 6486
components:
- - pos: -8.5,-83.5
+ - pos: -8.5,-81.5
parent: 2
type: Transform
- uid: 6487
components:
- - pos: -8.5,-84.5
+ - pos: -8.5,-82.5
parent: 2
type: Transform
- uid: 6488
components:
- - pos: -8.5,-85.5
+ - pos: -8.5,-83.5
parent: 2
type: Transform
- uid: 6489
components:
- - pos: -8.5,-86.5
+ - pos: -8.5,-84.5
parent: 2
type: Transform
- uid: 6490
components:
- - pos: -7.5,-86.5
+ - pos: -8.5,-85.5
parent: 2
type: Transform
- uid: 6491
components:
- - pos: -7.5,-87.5
+ - pos: -8.5,-86.5
parent: 2
type: Transform
- uid: 6492
components:
- - pos: -7.5,-88.5
+ - pos: -7.5,-86.5
parent: 2
type: Transform
- uid: 6493
components:
- - pos: -7.5,-89.5
+ - pos: -7.5,-87.5
parent: 2
type: Transform
- uid: 6494
components:
- - pos: -7.5,-90.5
+ - pos: -7.5,-88.5
parent: 2
type: Transform
- uid: 6495
components:
- - pos: -7.5,-91.5
+ - pos: -7.5,-89.5
parent: 2
type: Transform
- uid: 6496
components:
- - pos: -7.5,-92.5
+ - pos: -7.5,-90.5
parent: 2
type: Transform
- uid: 6497
components:
- - pos: -7.5,-93.5
+ - pos: -7.5,-91.5
parent: 2
type: Transform
- uid: 6498
components:
- - pos: -7.5,-94.5
+ - pos: -7.5,-92.5
parent: 2
type: Transform
- uid: 6499
components:
- - pos: -7.5,-95.5
+ - pos: -7.5,-93.5
parent: 2
type: Transform
- uid: 6500
components:
- - pos: -7.5,-96.5
+ - pos: -7.5,-94.5
parent: 2
type: Transform
- uid: 6501
components:
- - pos: -7.5,-97.5
+ - pos: -7.5,-95.5
parent: 2
type: Transform
- uid: 6502
components:
- - pos: -8.5,-97.5
+ - pos: -7.5,-96.5
parent: 2
type: Transform
- uid: 6503
components:
- - pos: -9.5,-97.5
+ - pos: -7.5,-97.5
parent: 2
type: Transform
- uid: 6504
components:
- - pos: -10.5,-97.5
+ - pos: -8.5,-97.5
parent: 2
type: Transform
- uid: 6505
components:
- - pos: -11.5,-97.5
+ - pos: -9.5,-97.5
parent: 2
type: Transform
- uid: 6506
components:
- - pos: -12.5,-97.5
+ - pos: -10.5,-97.5
parent: 2
type: Transform
- uid: 6507
components:
- - pos: -13.5,-97.5
+ - pos: -11.5,-97.5
parent: 2
type: Transform
- uid: 6508
components:
- - pos: -14.5,-97.5
+ - pos: -12.5,-97.5
parent: 2
type: Transform
- uid: 6509
components:
- - pos: -15.5,-97.5
+ - pos: -13.5,-97.5
parent: 2
type: Transform
- uid: 6510
components:
- - pos: -16.5,-97.5
+ - pos: -14.5,-97.5
parent: 2
type: Transform
- uid: 6511
components:
- - pos: -17.5,-97.5
+ - pos: -15.5,-97.5
parent: 2
type: Transform
- uid: 6512
components:
- - pos: -18.5,-97.5
+ - pos: -16.5,-97.5
parent: 2
type: Transform
- uid: 6513
components:
- - pos: -19.5,-97.5
+ - pos: -17.5,-97.5
parent: 2
type: Transform
- uid: 6514
components:
- - pos: -20.5,-97.5
+ - pos: -18.5,-97.5
parent: 2
type: Transform
- uid: 6515
components:
- - pos: -20.5,-96.5
+ - pos: -19.5,-97.5
parent: 2
type: Transform
- uid: 6516
components:
- - pos: -20.5,-95.5
+ - pos: -20.5,-97.5
parent: 2
type: Transform
- uid: 6517
components:
- - pos: -21.5,-95.5
+ - pos: -20.5,-96.5
parent: 2
type: Transform
- uid: 6518
components:
- - pos: -22.5,-95.5
+ - pos: -20.5,-95.5
parent: 2
type: Transform
- uid: 6519
components:
- - pos: -23.5,-95.5
+ - pos: -21.5,-95.5
parent: 2
type: Transform
- uid: 6520
components:
- - pos: -24.5,-95.5
+ - pos: -22.5,-95.5
parent: 2
type: Transform
- uid: 6521
components:
- - pos: -24.5,-96.5
+ - pos: -23.5,-95.5
parent: 2
type: Transform
- uid: 6522
components:
- - pos: -24.5,-97.5
+ - pos: -24.5,-95.5
parent: 2
type: Transform
- uid: 6523
components:
- - pos: -24.5,-98.5
+ - pos: -24.5,-96.5
parent: 2
type: Transform
- uid: 6524
components:
- - pos: -24.5,-99.5
+ - pos: -24.5,-97.5
parent: 2
type: Transform
- uid: 6525
components:
- - pos: -23.5,-99.5
+ - pos: -24.5,-98.5
parent: 2
type: Transform
- uid: 6526
components:
- - pos: -22.5,-99.5
+ - pos: -24.5,-99.5
parent: 2
type: Transform
- uid: 6527
components:
- - pos: -21.5,-99.5
+ - pos: -23.5,-99.5
parent: 2
type: Transform
- uid: 6528
components:
- - pos: -20.5,-99.5
+ - pos: -22.5,-99.5
parent: 2
type: Transform
- uid: 6529
components:
- - pos: -20.5,-98.5
+ - pos: -21.5,-99.5
parent: 2
type: Transform
- uid: 6530
components:
- - pos: -15.5,-98.5
+ - pos: -20.5,-99.5
parent: 2
type: Transform
- uid: 6531
components:
- - pos: -6.5,-97.5
+ - pos: -20.5,-98.5
parent: 2
type: Transform
- uid: 6532
components:
- - pos: -5.5,-97.5
+ - pos: -15.5,-98.5
parent: 2
type: Transform
- uid: 6533
components:
- - pos: -4.5,-97.5
+ - pos: -6.5,-97.5
parent: 2
type: Transform
- uid: 6534
components:
- - pos: -7.5,-98.5
+ - pos: -5.5,-97.5
parent: 2
type: Transform
- uid: 6535
components:
- - pos: -7.5,-99.5
+ - pos: -4.5,-97.5
parent: 2
type: Transform
- uid: 6536
components:
- - pos: -7.5,-100.5
+ - pos: -7.5,-98.5
parent: 2
type: Transform
- uid: 6537
components:
- - pos: -8.5,-95.5
+ - pos: -7.5,-99.5
parent: 2
type: Transform
- uid: 6538
components:
- - pos: -43.5,-85.5
+ - pos: -7.5,-100.5
parent: 2
type: Transform
- uid: 6539
components:
- - pos: -43.5,-86.5
+ - pos: -8.5,-95.5
parent: 2
type: Transform
- uid: 6540
components:
- - pos: -43.5,-87.5
+ - pos: -43.5,-85.5
parent: 2
type: Transform
- uid: 6541
components:
- - pos: -43.5,-88.5
+ - pos: -43.5,-86.5
parent: 2
type: Transform
- uid: 6542
components:
- - pos: -43.5,-89.5
+ - pos: -43.5,-87.5
parent: 2
type: Transform
- uid: 6543
components:
- - pos: -38.5,-85.5
+ - pos: -43.5,-88.5
parent: 2
type: Transform
- uid: 6544
components:
- - pos: -39.5,-85.5
+ - pos: -43.5,-89.5
parent: 2
type: Transform
- uid: 6545
components:
- - pos: -40.5,-85.5
+ - pos: -38.5,-85.5
parent: 2
type: Transform
- uid: 6546
components:
- - pos: -40.5,-86.5
+ - pos: -39.5,-85.5
parent: 2
type: Transform
- uid: 6547
components:
- - pos: -40.5,-87.5
+ - pos: -40.5,-85.5
parent: 2
type: Transform
- uid: 6548
components:
- - pos: -40.5,-88.5
+ - pos: -40.5,-86.5
parent: 2
type: Transform
- uid: 6549
components:
- - pos: -40.5,-89.5
+ - pos: -40.5,-87.5
parent: 2
type: Transform
- uid: 6550
components:
- - pos: -40.5,-90.5
+ - pos: -40.5,-88.5
parent: 2
type: Transform
- uid: 6551
components:
- - pos: -25.5,-97.5
+ - pos: -40.5,-89.5
parent: 2
type: Transform
- uid: 6552
components:
- - pos: -26.5,-97.5
+ - pos: -40.5,-90.5
parent: 2
type: Transform
- uid: 6553
components:
- - pos: -40.5,-91.5
+ - pos: -25.5,-97.5
parent: 2
type: Transform
- uid: 6554
components:
- - pos: -43.5,-91.5
+ - pos: -26.5,-97.5
parent: 2
type: Transform
- uid: 6555
components:
- - pos: -43.5,-92.5
+ - pos: -40.5,-91.5
parent: 2
type: Transform
- uid: 6556
components:
- - pos: -42.5,-92.5
+ - pos: -43.5,-91.5
parent: 2
type: Transform
- uid: 6557
components:
- - pos: -40.5,-92.5
+ - pos: -43.5,-92.5
parent: 2
type: Transform
- uid: 6558
components:
- - pos: -41.5,-92.5
+ - pos: -42.5,-92.5
parent: 2
type: Transform
- uid: 6559
components:
- - pos: -41.5,-93.5
+ - pos: -40.5,-92.5
parent: 2
type: Transform
- uid: 6560
components:
- - pos: -41.5,-94.5
+ - pos: -41.5,-92.5
parent: 2
type: Transform
- uid: 6561
components:
- - pos: -41.5,-95.5
+ - pos: -41.5,-93.5
parent: 2
type: Transform
- uid: 6562
components:
- - pos: -42.5,-95.5
+ - pos: -41.5,-94.5
parent: 2
type: Transform
- uid: 6563
components:
- - pos: -43.5,-95.5
+ - pos: -41.5,-95.5
parent: 2
type: Transform
- uid: 6564
components:
- - pos: -43.5,-96.5
+ - pos: -42.5,-95.5
parent: 2
type: Transform
- uid: 6565
components:
- - pos: -43.5,-97.5
+ - pos: -43.5,-95.5
parent: 2
type: Transform
- uid: 6566
components:
- - pos: -42.5,-97.5
+ - pos: -43.5,-96.5
parent: 2
type: Transform
- uid: 6567
components:
- - pos: -41.5,-97.5
+ - pos: -43.5,-97.5
parent: 2
type: Transform
- uid: 6568
components:
- - pos: -40.5,-97.5
+ - pos: -42.5,-97.5
parent: 2
type: Transform
- uid: 6569
components:
- - pos: -39.5,-97.5
+ - pos: -41.5,-97.5
parent: 2
type: Transform
- uid: 6570
components:
- - pos: -38.5,-97.5
+ - pos: -40.5,-97.5
parent: 2
type: Transform
- uid: 6571
components:
- - pos: -37.5,-97.5
+ - pos: -39.5,-97.5
parent: 2
type: Transform
- uid: 6572
components:
- - pos: -36.5,-97.5
+ - pos: -38.5,-97.5
parent: 2
type: Transform
- uid: 6573
components:
- - pos: -35.5,-97.5
+ - pos: -37.5,-97.5
parent: 2
type: Transform
- uid: 6574
components:
- - pos: -40.5,-95.5
+ - pos: -36.5,-97.5
parent: 2
type: Transform
- uid: 6575
components:
- - pos: -39.5,-95.5
+ - pos: -35.5,-97.5
parent: 2
type: Transform
- uid: 6576
components:
- - pos: -38.5,-95.5
+ - pos: -40.5,-95.5
parent: 2
type: Transform
- uid: 6577
components:
- - pos: -37.5,-95.5
+ - pos: -39.5,-95.5
parent: 2
type: Transform
- uid: 6578
components:
- - pos: -36.5,-95.5
+ - pos: -38.5,-95.5
parent: 2
type: Transform
- uid: 6579
components:
- - pos: -35.5,-95.5
+ - pos: -37.5,-95.5
parent: 2
type: Transform
- uid: 6580
components:
- - pos: -35.5,-96.5
+ - pos: -36.5,-95.5
parent: 2
type: Transform
- uid: 6581
components:
- - pos: -34.5,-97.5
+ - pos: -35.5,-95.5
parent: 2
type: Transform
- uid: 6582
components:
- - pos: -33.5,-97.5
+ - pos: -35.5,-96.5
parent: 2
type: Transform
- uid: 6583
components:
- - pos: -32.5,-97.5
+ - pos: -34.5,-97.5
parent: 2
type: Transform
- uid: 6584
components:
- - pos: -31.5,-97.5
+ - pos: -33.5,-97.5
parent: 2
type: Transform
- uid: 6585
components:
- - pos: -30.5,-97.5
+ - pos: -32.5,-97.5
parent: 2
type: Transform
- uid: 6586
components:
- - pos: -29.5,-97.5
+ - pos: -31.5,-97.5
parent: 2
type: Transform
- uid: 6587
components:
- - pos: -28.5,-97.5
+ - pos: -30.5,-97.5
parent: 2
type: Transform
- uid: 6588
components:
- - pos: -43.5,-90.5
+ - pos: -29.5,-97.5
parent: 2
type: Transform
- uid: 6589
components:
- - pos: -35.5,-98.5
+ - pos: -28.5,-97.5
parent: 2
type: Transform
- uid: 6590
components:
- - pos: -35.5,-99.5
+ - pos: -43.5,-90.5
parent: 2
type: Transform
- uid: 6591
components:
- - pos: -35.5,-100.5
+ - pos: -35.5,-98.5
parent: 2
type: Transform
- uid: 6592
components:
- - pos: -35.5,-100.5
+ - pos: -35.5,-99.5
parent: 2
type: Transform
- uid: 6593
components:
- - pos: -35.5,-99.5
+ - pos: -35.5,-100.5
parent: 2
type: Transform
- uid: 6594
components:
- - pos: -35.5,-102.5
+ - pos: -35.5,-100.5
parent: 2
type: Transform
- uid: 6595
components:
- - pos: -35.5,-103.5
+ - pos: -35.5,-99.5
parent: 2
type: Transform
- uid: 6596
components:
- - pos: -35.5,-104.5
+ - pos: -35.5,-102.5
parent: 2
type: Transform
- uid: 6597
components:
- - pos: -35.5,-105.5
+ - pos: -35.5,-103.5
parent: 2
type: Transform
- uid: 6598
components:
- - pos: -36.5,-104.5
+ - pos: -35.5,-104.5
parent: 2
type: Transform
- uid: 6599
components:
- - pos: 37.5,-48.5
+ - pos: -35.5,-105.5
parent: 2
type: Transform
- uid: 6600
components:
- - pos: 36.5,-48.5
+ - pos: -36.5,-104.5
parent: 2
type: Transform
- uid: 6601
components:
- - pos: 36.5,-47.5
+ - pos: 37.5,-48.5
parent: 2
type: Transform
- uid: 6602
components:
- - pos: 36.5,-46.5
+ - pos: 36.5,-48.5
parent: 2
type: Transform
- uid: 6603
components:
- - pos: -71.5,-31.5
+ - pos: 36.5,-47.5
parent: 2
type: Transform
- uid: 6604
components:
- - pos: -72.5,-26.5
+ - pos: 36.5,-46.5
parent: 2
type: Transform
- uid: 6605
components:
- - pos: -72.5,-27.5
+ - pos: -71.5,-31.5
parent: 2
type: Transform
- uid: 6606
components:
- - pos: -72.5,-28.5
+ - pos: -72.5,-26.5
parent: 2
type: Transform
- uid: 6607
components:
- - pos: -72.5,-29.5
+ - pos: -72.5,-27.5
parent: 2
type: Transform
- uid: 6608
components:
- - pos: -73.5,-31.5
+ - pos: -72.5,-28.5
parent: 2
type: Transform
- uid: 6609
components:
- - pos: -72.5,-31.5
+ - pos: -72.5,-29.5
parent: 2
type: Transform
- uid: 6610
components:
- - pos: -72.5,-32.5
+ - pos: -73.5,-31.5
parent: 2
type: Transform
- uid: 6611
components:
- - pos: -72.5,-33.5
+ - pos: -72.5,-31.5
parent: 2
type: Transform
- uid: 6612
components:
- - pos: -73.5,-30.5
+ - pos: -72.5,-32.5
parent: 2
type: Transform
- uid: 6613
components:
- - pos: -73.5,-29.5
+ - pos: -72.5,-33.5
parent: 2
type: Transform
- uid: 6614
components:
- - pos: 27.5,-1.5
+ - pos: -73.5,-30.5
parent: 2
type: Transform
- uid: 6615
components:
- - pos: -12.5,-14.5
+ - pos: -73.5,-29.5
parent: 2
type: Transform
- uid: 6616
components:
- - pos: 62.5,-29.5
+ - pos: 27.5,-1.5
parent: 2
type: Transform
- uid: 6617
components:
- - pos: 74.5,-45.5
+ - pos: -12.5,-14.5
parent: 2
type: Transform
- uid: 6618
components:
- - pos: 75.5,-45.5
+ - pos: 62.5,-29.5
parent: 2
type: Transform
- uid: 6619
components:
- - pos: 76.5,-45.5
+ - pos: 74.5,-45.5
parent: 2
type: Transform
- uid: 6620
components:
- - pos: 74.5,-44.5
+ - pos: 75.5,-45.5
parent: 2
type: Transform
- uid: 6621
components:
- - pos: 74.5,-43.5
+ - pos: 76.5,-45.5
parent: 2
type: Transform
- uid: 6622
components:
- - pos: 74.5,-42.5
+ - pos: 74.5,-44.5
parent: 2
type: Transform
- uid: 6623
components:
- - pos: 74.5,-41.5
+ - pos: 74.5,-43.5
parent: 2
type: Transform
- uid: 6624
components:
- - pos: 74.5,-40.5
+ - pos: 74.5,-42.5
parent: 2
type: Transform
- uid: 6625
components:
- - pos: 74.5,-39.5
+ - pos: 74.5,-41.5
parent: 2
type: Transform
- uid: 6626
components:
- - pos: 74.5,-38.5
+ - pos: 74.5,-40.5
parent: 2
type: Transform
- uid: 6627
components:
- - pos: 76.5,-46.5
+ - pos: 74.5,-39.5
parent: 2
type: Transform
- uid: 6628
components:
- - pos: 76.5,-47.5
+ - pos: 74.5,-38.5
parent: 2
type: Transform
- uid: 6629
components:
- - pos: 76.5,-48.5
+ - pos: 76.5,-46.5
parent: 2
type: Transform
- uid: 6630
components:
- - pos: 76.5,-49.5
+ - pos: 76.5,-47.5
parent: 2
type: Transform
- uid: 6631
components:
- - pos: 73.5,-48.5
+ - pos: 76.5,-48.5
parent: 2
type: Transform
- uid: 6632
components:
- - pos: 74.5,-48.5
+ - pos: 76.5,-49.5
parent: 2
type: Transform
- uid: 6633
components:
- - pos: 74.5,-47.5
+ - pos: 73.5,-48.5
parent: 2
type: Transform
- uid: 6634
components:
- - pos: 75.5,-47.5
+ - pos: 74.5,-48.5
parent: 2
type: Transform
- uid: 6635
components:
- - pos: 74.5,-37.5
+ - pos: 74.5,-47.5
parent: 2
type: Transform
- uid: 6636
components:
- - pos: 75.5,-37.5
+ - pos: 75.5,-47.5
parent: 2
type: Transform
- uid: 6637
components:
- - pos: 76.5,-37.5
+ - pos: 74.5,-37.5
parent: 2
type: Transform
- uid: 6638
components:
- - pos: 77.5,-37.5
+ - pos: 75.5,-37.5
parent: 2
type: Transform
- uid: 6639
components:
- - pos: 78.5,-37.5
+ - pos: 76.5,-37.5
parent: 2
type: Transform
- uid: 6640
components:
- - pos: 78.5,-36.5
+ - pos: 77.5,-37.5
parent: 2
type: Transform
- uid: 6641
components:
- - pos: 78.5,-35.5
+ - pos: 78.5,-37.5
parent: 2
type: Transform
- uid: 6642
components:
- - pos: 78.5,-34.5
+ - pos: 78.5,-36.5
parent: 2
type: Transform
- uid: 6643
components:
- - pos: 78.5,-33.5
+ - pos: 78.5,-35.5
parent: 2
type: Transform
- uid: 6644
components:
- - pos: 77.5,-33.5
+ - pos: 78.5,-34.5
parent: 2
type: Transform
- uid: 6645
components:
- - pos: 76.5,-33.5
+ - pos: 78.5,-33.5
parent: 2
type: Transform
- uid: 6646
components:
- - pos: 75.5,-33.5
+ - pos: 77.5,-33.5
parent: 2
type: Transform
- uid: 6647
components:
- - pos: 74.5,-33.5
+ - pos: 76.5,-33.5
parent: 2
type: Transform
- uid: 6648
components:
- - pos: 74.5,-32.5
+ - pos: 75.5,-33.5
parent: 2
type: Transform
- uid: 6649
components:
- - pos: 73.5,-32.5
+ - pos: 74.5,-33.5
parent: 2
type: Transform
- uid: 6650
components:
- - pos: 72.5,-32.5
+ - pos: 74.5,-32.5
parent: 2
type: Transform
- uid: 6651
components:
- - pos: 71.5,-32.5
+ - pos: 73.5,-32.5
parent: 2
type: Transform
- uid: 6652
components:
- - pos: 70.5,-32.5
+ - pos: 72.5,-32.5
parent: 2
type: Transform
- uid: 6653
components:
- - pos: 70.5,-33.5
+ - pos: 71.5,-32.5
parent: 2
type: Transform
- uid: 6654
components:
- - pos: 70.5,-34.5
+ - pos: 70.5,-32.5
parent: 2
type: Transform
- uid: 6655
components:
- - pos: 70.5,-35.5
+ - pos: 70.5,-33.5
parent: 2
type: Transform
- uid: 6656
components:
- - pos: 70.5,-36.5
+ - pos: 70.5,-34.5
parent: 2
type: Transform
- uid: 6657
components:
- - pos: 71.5,-36.5
+ - pos: 70.5,-35.5
parent: 2
type: Transform
- uid: 6658
components:
- - pos: 72.5,-37.5
+ - pos: 70.5,-36.5
parent: 2
type: Transform
- uid: 6659
components:
- - pos: 73.5,-37.5
+ - pos: 71.5,-36.5
parent: 2
type: Transform
- uid: 6660
components:
- - pos: 73.5,-36.5
+ - pos: 72.5,-37.5
parent: 2
type: Transform
- uid: 6661
components:
- - pos: 73.5,-35.5
+ - pos: 73.5,-37.5
parent: 2
type: Transform
- uid: 6662
components:
- - pos: 69.5,-33.5
+ - pos: 73.5,-36.5
parent: 2
type: Transform
- uid: 6663
components:
- - pos: 68.5,-33.5
+ - pos: 73.5,-35.5
parent: 2
type: Transform
- uid: 6664
components:
- - pos: 67.5,-33.5
+ - pos: 69.5,-33.5
parent: 2
type: Transform
- uid: 6665
components:
- - pos: 66.5,-33.5
+ - pos: 68.5,-33.5
parent: 2
type: Transform
- uid: 6666
components:
- - pos: 65.5,-33.5
+ - pos: 67.5,-33.5
parent: 2
type: Transform
- uid: 6667
components:
- - pos: 62.5,-30.5
+ - pos: 66.5,-33.5
parent: 2
type: Transform
- uid: 6668
components:
- - pos: 65.5,-32.5
+ - pos: 65.5,-33.5
parent: 2
type: Transform
- uid: 6669
components:
- - pos: -21.5,-61.5
+ - pos: 62.5,-30.5
parent: 2
type: Transform
- uid: 6670
components:
- - pos: -16.5,-15.5
+ - pos: 65.5,-32.5
parent: 2
type: Transform
- uid: 6671
components:
- - pos: 70.5,-37.5
+ - pos: -21.5,-61.5
parent: 2
type: Transform
- uid: 6672
components:
- - pos: 69.5,-37.5
+ - pos: -16.5,-15.5
parent: 2
type: Transform
- uid: 6673
components:
- - pos: 68.5,-37.5
+ - pos: 70.5,-37.5
parent: 2
type: Transform
- uid: 6674
components:
- - pos: 67.5,-37.5
+ - pos: 69.5,-37.5
parent: 2
type: Transform
- uid: 6675
components:
- - pos: 67.5,-38.5
+ - pos: 68.5,-37.5
parent: 2
type: Transform
- uid: 6676
components:
- - pos: 54.5,10.5
+ - pos: 67.5,-37.5
parent: 2
type: Transform
- uid: 6677
components:
- - pos: -71.5,-29.5
+ - pos: 67.5,-38.5
parent: 2
type: Transform
- uid: 6678
components:
- - pos: -55.5,-62.5
+ - pos: 54.5,10.5
parent: 2
type: Transform
- uid: 6679
components:
- - pos: -54.5,-62.5
+ - pos: -71.5,-29.5
parent: 2
type: Transform
- uid: 6680
components:
- - pos: -53.5,-62.5
+ - pos: -55.5,-62.5
parent: 2
type: Transform
- uid: 6681
components:
- - pos: -54.5,-58.5
+ - pos: -54.5,-62.5
parent: 2
type: Transform
- uid: 6682
components:
- - pos: -53.5,-58.5
+ - pos: -53.5,-62.5
parent: 2
type: Transform
- uid: 6683
components:
- - pos: -52.5,-58.5
+ - pos: -54.5,-58.5
parent: 2
type: Transform
- uid: 6684
components:
- - pos: -51.5,-58.5
+ - pos: -53.5,-58.5
parent: 2
type: Transform
- uid: 6685
components:
- - pos: -56.5,-61.5
+ - pos: -52.5,-58.5
parent: 2
type: Transform
- uid: 6686
components:
- - pos: -54.5,-63.5
+ - pos: -51.5,-58.5
parent: 2
type: Transform
- uid: 6687
components:
- - pos: 72.5,-31.5
+ - pos: -56.5,-61.5
parent: 2
type: Transform
- uid: 6688
components:
- - pos: 72.5,-30.5
+ - pos: -54.5,-63.5
parent: 2
type: Transform
- uid: 6689
components:
- - pos: 72.5,-29.5
+ - pos: 72.5,-31.5
parent: 2
type: Transform
- uid: 6690
components:
- - pos: 72.5,-28.5
+ - pos: 72.5,-30.5
parent: 2
type: Transform
- uid: 6691
components:
- - pos: -53.5,-63.5
+ - pos: 72.5,-29.5
parent: 2
type: Transform
- uid: 6692
components:
- - pos: 56.5,34.5
+ - pos: 72.5,-28.5
parent: 2
type: Transform
- uid: 6693
components:
- - pos: -71.5,-30.5
+ - pos: -53.5,-63.5
parent: 2
type: Transform
- uid: 6694
components:
- - pos: 6.5,-42.5
+ - pos: 56.5,34.5
parent: 2
type: Transform
- uid: 6695
components:
- - pos: 7.5,-42.5
+ - pos: -71.5,-30.5
parent: 2
type: Transform
- uid: 6696
components:
- - pos: 9.5,-40.5
+ - pos: 6.5,-42.5
parent: 2
type: Transform
- uid: 6697
components:
- - pos: 9.5,-39.5
+ - pos: 7.5,-42.5
parent: 2
type: Transform
- uid: 6698
components:
- - pos: 8.5,-39.5
+ - pos: 9.5,-40.5
parent: 2
type: Transform
- uid: 6699
components:
- - pos: 8.5,-38.5
+ - pos: 9.5,-39.5
parent: 2
type: Transform
- uid: 6700
components:
- - pos: 8.5,-37.5
+ - pos: 8.5,-39.5
parent: 2
type: Transform
- uid: 6701
components:
- - pos: 8.5,-36.5
+ - pos: 8.5,-38.5
parent: 2
type: Transform
- uid: 6702
components:
- - pos: 8.5,-35.5
+ - pos: 8.5,-37.5
parent: 2
type: Transform
- uid: 6703
components:
- - pos: 8.5,-34.5
+ - pos: 8.5,-36.5
parent: 2
type: Transform
- uid: 6704
components:
- - pos: 8.5,-33.5
+ - pos: 8.5,-35.5
parent: 2
type: Transform
- uid: 6705
components:
- - pos: 8.5,-32.5
+ - pos: 8.5,-34.5
parent: 2
type: Transform
- uid: 6706
components:
- - pos: 8.5,-31.5
+ - pos: 8.5,-33.5
parent: 2
type: Transform
- uid: 6707
components:
- - pos: 8.5,-30.5
+ - pos: 8.5,-32.5
parent: 2
type: Transform
- uid: 6708
components:
- - pos: 8.5,-29.5
+ - pos: 8.5,-31.5
parent: 2
type: Transform
- uid: 6709
components:
- - pos: 9.5,-29.5
+ - pos: 8.5,-30.5
parent: 2
type: Transform
- uid: 6710
components:
- - pos: 10.5,-29.5
+ - pos: 8.5,-29.5
parent: 2
type: Transform
- uid: 6711
components:
- - pos: 11.5,-29.5
+ - pos: 9.5,-29.5
parent: 2
type: Transform
- uid: 6712
components:
- - pos: 7.5,-36.5
+ - pos: 10.5,-29.5
parent: 2
type: Transform
- uid: 6713
components:
- - pos: 6.5,-36.5
+ - pos: 11.5,-29.5
parent: 2
type: Transform
- uid: 6714
components:
- - pos: 6.5,-35.5
+ - pos: 7.5,-36.5
parent: 2
type: Transform
- uid: 6715
components:
- - pos: 6.5,-34.5
+ - pos: 6.5,-36.5
parent: 2
type: Transform
- uid: 6716
components:
- - pos: 6.5,-33.5
+ - pos: 6.5,-35.5
parent: 2
type: Transform
- uid: 6717
components:
- - pos: 6.5,-32.5
+ - pos: 6.5,-34.5
parent: 2
type: Transform
- uid: 6718
components:
- - pos: 6.5,-31.5
+ - pos: 6.5,-33.5
parent: 2
type: Transform
- uid: 6719
components:
- - pos: 5.5,-31.5
+ - pos: 6.5,-32.5
parent: 2
type: Transform
- uid: 6720
components:
- - pos: 4.5,-31.5
+ - pos: 6.5,-31.5
parent: 2
type: Transform
- uid: 6721
components:
- - pos: 3.5,-31.5
+ - pos: 5.5,-31.5
parent: 2
type: Transform
- uid: 6722
components:
- - pos: 2.5,-31.5
+ - pos: 4.5,-31.5
parent: 2
type: Transform
- uid: 6723
components:
- - pos: 4.5,-32.5
+ - pos: 3.5,-31.5
parent: 2
type: Transform
- uid: 6724
components:
- - pos: 4.5,-33.5
+ - pos: 2.5,-31.5
parent: 2
type: Transform
- uid: 6725
components:
- - pos: 55.5,-62.5
+ - pos: 4.5,-32.5
parent: 2
type: Transform
- uid: 6726
components:
- - pos: 6.5,-30.5
+ - pos: 4.5,-33.5
parent: 2
type: Transform
- uid: 6727
components:
- - pos: 54.5,-32.5
+ - pos: 55.5,-62.5
parent: 2
type: Transform
- uid: 6728
components:
- - pos: 53.5,-32.5
+ - pos: 6.5,-30.5
parent: 2
type: Transform
- uid: 6729
components:
- - pos: 52.5,-32.5
+ - pos: 54.5,-32.5
parent: 2
type: Transform
- uid: 6730
components:
- - pos: 55.5,-31.5
+ - pos: 53.5,-32.5
parent: 2
type: Transform
- uid: 6731
components:
- - pos: 55.5,-30.5
+ - pos: 52.5,-32.5
parent: 2
type: Transform
- uid: 6732
components:
- - pos: 55.5,-29.5
+ - pos: 55.5,-31.5
parent: 2
type: Transform
- uid: 6733
components:
- - pos: 55.5,-28.5
+ - pos: 55.5,-30.5
parent: 2
type: Transform
- uid: 6734
components:
- - pos: 55.5,-27.5
+ - pos: 55.5,-29.5
parent: 2
type: Transform
- uid: 6735
components:
- - pos: 55.5,-26.5
+ - pos: 55.5,-28.5
parent: 2
type: Transform
- uid: 6736
components:
- - pos: 61.5,-26.5
+ - pos: 55.5,-27.5
parent: 2
type: Transform
- uid: 6737
components:
- - pos: 60.5,-26.5
+ - pos: 55.5,-26.5
parent: 2
type: Transform
- uid: 6738
components:
- - pos: 59.5,-26.5
+ - pos: 61.5,-26.5
parent: 2
type: Transform
- uid: 6739
components:
- - pos: 58.5,-26.5
+ - pos: 60.5,-26.5
parent: 2
type: Transform
- uid: 6740
components:
- - pos: 57.5,-26.5
+ - pos: 59.5,-26.5
parent: 2
type: Transform
- uid: 6741
components:
- - pos: 57.5,-27.5
+ - pos: 58.5,-26.5
parent: 2
type: Transform
- uid: 6742
components:
- - pos: 57.5,-28.5
+ - pos: 57.5,-26.5
parent: 2
type: Transform
- uid: 6743
components:
- - pos: 58.5,-28.5
+ - pos: 57.5,-27.5
parent: 2
type: Transform
- uid: 6744
components:
- - pos: 58.5,-29.5
+ - pos: 57.5,-28.5
parent: 2
type: Transform
- uid: 6745
components:
- - pos: 55.5,-35.5
+ - pos: 58.5,-28.5
parent: 2
type: Transform
- uid: 6746
components:
- - pos: 54.5,-35.5
+ - pos: 58.5,-29.5
parent: 2
type: Transform
- uid: 6747
components:
- - pos: 54.5,-36.5
+ - pos: 55.5,-35.5
parent: 2
type: Transform
- uid: 6748
components:
- - pos: 54.5,-37.5
+ - pos: 54.5,-35.5
parent: 2
type: Transform
- uid: 6749
components:
- - pos: 55.5,-37.5
+ - pos: 54.5,-36.5
parent: 2
type: Transform
- uid: 6750
components:
- - pos: 55.5,-38.5
+ - pos: 54.5,-37.5
parent: 2
type: Transform
- uid: 6751
components:
- - pos: 57.5,-38.5
+ - pos: 55.5,-37.5
parent: 2
type: Transform
- uid: 6752
components:
- - pos: 58.5,-38.5
+ - pos: 55.5,-38.5
parent: 2
type: Transform
- uid: 6753
components:
- - pos: 59.5,-38.5
+ - pos: 57.5,-38.5
parent: 2
type: Transform
- uid: 6754
components:
- - pos: 59.5,-39.5
+ - pos: 58.5,-38.5
parent: 2
type: Transform
- uid: 6755
components:
- - pos: 59.5,-40.5
+ - pos: 59.5,-38.5
parent: 2
type: Transform
- uid: 6756
components:
- - pos: 59.5,-41.5
+ - pos: 59.5,-39.5
parent: 2
type: Transform
- uid: 6757
components:
- - pos: 59.5,-42.5
+ - pos: 59.5,-40.5
parent: 2
type: Transform
- uid: 6758
components:
- - pos: 59.5,-43.5
+ - pos: 59.5,-41.5
parent: 2
type: Transform
- uid: 6759
components:
- - pos: 36.5,-33.5
+ - pos: 59.5,-42.5
parent: 2
type: Transform
- uid: 6760
components:
- - pos: 37.5,-33.5
+ - pos: 59.5,-43.5
parent: 2
type: Transform
- uid: 6761
components:
- - pos: 38.5,-33.5
+ - pos: 36.5,-33.5
parent: 2
type: Transform
- uid: 6762
components:
- - pos: 39.5,-33.5
+ - pos: 37.5,-33.5
parent: 2
type: Transform
- uid: 6763
components:
- - pos: 40.5,-33.5
+ - pos: 38.5,-33.5
parent: 2
type: Transform
- uid: 6764
components:
- - pos: 41.5,-33.5
+ - pos: 39.5,-33.5
parent: 2
type: Transform
- uid: 6765
components:
- - pos: 42.5,-33.5
+ - pos: 40.5,-33.5
parent: 2
type: Transform
- uid: 6766
components:
- - pos: 43.5,-33.5
+ - pos: 41.5,-33.5
parent: 2
type: Transform
- uid: 6767
components:
- - pos: 44.5,-33.5
+ - pos: 42.5,-33.5
parent: 2
type: Transform
- uid: 6768
components:
- - pos: 45.5,-33.5
+ - pos: 43.5,-33.5
parent: 2
type: Transform
- uid: 6769
components:
- - pos: 46.5,-33.5
+ - pos: 44.5,-33.5
parent: 2
type: Transform
- uid: 6770
components:
- - pos: 47.5,-33.5
+ - pos: 45.5,-33.5
parent: 2
type: Transform
- uid: 6771
components:
- - pos: 48.5,-33.5
+ - pos: 46.5,-33.5
parent: 2
type: Transform
- uid: 6772
components:
- - pos: 49.5,-33.5
+ - pos: 47.5,-33.5
parent: 2
type: Transform
- uid: 6773
components:
- - pos: 49.5,-34.5
+ - pos: 48.5,-33.5
parent: 2
type: Transform
- uid: 6774
components:
- - pos: 50.5,-34.5
+ - pos: 49.5,-33.5
parent: 2
type: Transform
- uid: 6775
components:
- - pos: 51.5,-34.5
+ - pos: 49.5,-34.5
parent: 2
type: Transform
- uid: 6776
components:
- - pos: 55.5,-64.5
+ - pos: 50.5,-34.5
parent: 2
type: Transform
- uid: 6777
components:
- - pos: 55.5,-65.5
+ - pos: 51.5,-34.5
parent: 2
type: Transform
- uid: 6778
components:
- - pos: 54.5,-65.5
+ - pos: 55.5,-64.5
parent: 2
type: Transform
- uid: 6779
components:
- - pos: 53.5,-65.5
+ - pos: 55.5,-65.5
parent: 2
type: Transform
- uid: 6780
components:
- - pos: 52.5,-65.5
+ - pos: 54.5,-65.5
parent: 2
type: Transform
- uid: 6781
components:
- - pos: 51.5,-65.5
+ - pos: 53.5,-65.5
parent: 2
type: Transform
- uid: 6782
components:
- - pos: 50.5,-65.5
+ - pos: 52.5,-65.5
parent: 2
type: Transform
- uid: 6783
components:
- - pos: 49.5,-65.5
+ - pos: 51.5,-65.5
parent: 2
type: Transform
- uid: 6784
components:
- - pos: 48.5,-65.5
+ - pos: 50.5,-65.5
parent: 2
type: Transform
- uid: 6785
components:
- - pos: 47.5,-65.5
+ - pos: 49.5,-65.5
parent: 2
type: Transform
- uid: 6786
components:
- - pos: 46.5,-65.5
+ - pos: 48.5,-65.5
parent: 2
type: Transform
- uid: 6787
components:
- - pos: 45.5,-65.5
+ - pos: 47.5,-65.5
parent: 2
type: Transform
- uid: 6788
components:
- - pos: 45.5,-64.5
+ - pos: 46.5,-65.5
parent: 2
type: Transform
- uid: 6789
components:
- - pos: 44.5,-64.5
+ - pos: 45.5,-65.5
parent: 2
type: Transform
- uid: 6790
components:
- - pos: 43.5,-64.5
+ - pos: 45.5,-64.5
parent: 2
type: Transform
- uid: 6791
components:
- - pos: 45.5,-63.5
+ - pos: 44.5,-64.5
parent: 2
type: Transform
- uid: 6792
components:
- - pos: 43.5,-63.5
+ - pos: 43.5,-64.5
parent: 2
type: Transform
- uid: 6793
components:
- - pos: 56.5,-65.5
+ - pos: 45.5,-63.5
parent: 2
type: Transform
- uid: 6794
components:
- - pos: 57.5,-65.5
+ - pos: 43.5,-63.5
parent: 2
type: Transform
- uid: 6795
components:
- - pos: 58.5,-65.5
+ - pos: 56.5,-65.5
parent: 2
type: Transform
- uid: 6796
components:
- - pos: 59.5,-65.5
+ - pos: 57.5,-65.5
parent: 2
type: Transform
- uid: 6797
components:
- - pos: 60.5,-65.5
+ - pos: 58.5,-65.5
parent: 2
type: Transform
- uid: 6798
components:
- - pos: 61.5,-65.5
+ - pos: 59.5,-65.5
parent: 2
type: Transform
- uid: 6799
components:
- - pos: 61.5,-66.5
+ - pos: 60.5,-65.5
parent: 2
type: Transform
- uid: 6800
components:
- - pos: 61.5,-67.5
+ - pos: 61.5,-65.5
parent: 2
type: Transform
- uid: 6801
components:
- - pos: 61.5,-68.5
+ - pos: 61.5,-66.5
parent: 2
type: Transform
- uid: 6802
components:
- - pos: 62.5,-65.5
+ - pos: 61.5,-67.5
parent: 2
type: Transform
- uid: 6803
components:
- - pos: 63.5,-65.5
+ - pos: 61.5,-68.5
parent: 2
type: Transform
- uid: 6804
components:
- - pos: 64.5,-65.5
+ - pos: 62.5,-65.5
parent: 2
type: Transform
- uid: 6805
components:
- - pos: 65.5,-65.5
+ - pos: 63.5,-65.5
parent: 2
type: Transform
- uid: 6806
components:
- - pos: 66.5,-65.5
+ - pos: 64.5,-65.5
parent: 2
type: Transform
- uid: 6807
components:
- - pos: 61.5,-64.5
+ - pos: 65.5,-65.5
parent: 2
type: Transform
- uid: 6808
components:
- - pos: 61.5,-63.5
+ - pos: 66.5,-65.5
parent: 2
type: Transform
- uid: 6809
components:
- - pos: 61.5,-62.5
+ - pos: 61.5,-64.5
parent: 2
type: Transform
- uid: 6810
components:
- - pos: 62.5,-62.5
+ - pos: 61.5,-63.5
parent: 2
type: Transform
- uid: 6811
components:
- - pos: 60.5,-63.5
+ - pos: 61.5,-62.5
parent: 2
type: Transform
- uid: 6812
components:
- - pos: 59.5,-63.5
+ - pos: 62.5,-62.5
parent: 2
type: Transform
- uid: 6813
components:
- - pos: 57.5,-34.5
+ - pos: 60.5,-63.5
parent: 2
type: Transform
- uid: 6814
components:
- - pos: 67.5,-65.5
+ - pos: 59.5,-63.5
parent: 2
type: Transform
- uid: 6815
components:
- - pos: 68.5,-65.5
+ - pos: 57.5,-34.5
parent: 2
type: Transform
- uid: 6816
components:
- - pos: 68.5,-66.5
+ - pos: 67.5,-65.5
parent: 2
type: Transform
- uid: 6817
components:
- - pos: 68.5,-67.5
+ - pos: 68.5,-65.5
parent: 2
type: Transform
- uid: 6818
components:
- - pos: 68.5,-68.5
+ - pos: 68.5,-66.5
parent: 2
type: Transform
- uid: 6819
components:
- - pos: 68.5,-69.5
+ - pos: 68.5,-67.5
parent: 2
type: Transform
- uid: 6820
components:
- - pos: 68.5,-70.5
+ - pos: 68.5,-68.5
parent: 2
type: Transform
- uid: 6821
components:
- - pos: 68.5,-71.5
+ - pos: 68.5,-69.5
parent: 2
type: Transform
- uid: 6822
components:
- - pos: 69.5,-71.5
+ - pos: 68.5,-70.5
parent: 2
type: Transform
- uid: 6823
components:
- - pos: 70.5,-71.5
+ - pos: 68.5,-71.5
parent: 2
type: Transform
- uid: 6824
components:
- - pos: 71.5,-71.5
+ - pos: 69.5,-71.5
parent: 2
type: Transform
- uid: 6825
components:
- - pos: 72.5,-71.5
+ - pos: 70.5,-71.5
parent: 2
type: Transform
- uid: 6826
components:
- - pos: 72.5,-70.5
+ - pos: 71.5,-71.5
parent: 2
type: Transform
- uid: 6827
components:
- - pos: 72.5,-69.5
+ - pos: 72.5,-71.5
parent: 2
type: Transform
- uid: 6828
components:
- - pos: 73.5,-69.5
+ - pos: 72.5,-70.5
parent: 2
type: Transform
- uid: 6829
components:
- - pos: 74.5,-69.5
+ - pos: 72.5,-69.5
parent: 2
type: Transform
- uid: 6830
components:
- - pos: 74.5,-68.5
+ - pos: 73.5,-69.5
parent: 2
type: Transform
- uid: 6831
components:
- - pos: 74.5,-67.5
+ - pos: 74.5,-69.5
parent: 2
type: Transform
- uid: 6832
components:
- - pos: 74.5,-66.5
+ - pos: 74.5,-68.5
parent: 2
type: Transform
- uid: 6833
components:
- - pos: 74.5,-65.5
+ - pos: 74.5,-67.5
parent: 2
type: Transform
- uid: 6834
components:
- - pos: 74.5,-64.5
+ - pos: 74.5,-66.5
parent: 2
type: Transform
- uid: 6835
components:
- - pos: 74.5,-63.5
+ - pos: 74.5,-65.5
parent: 2
type: Transform
- uid: 6836
components:
- - pos: 68.5,-64.5
+ - pos: 74.5,-64.5
parent: 2
type: Transform
- uid: 6837
components:
- - pos: 68.5,-63.5
+ - pos: 74.5,-63.5
parent: 2
type: Transform
- uid: 6838
components:
- - pos: 68.5,-62.5
+ - pos: 68.5,-64.5
parent: 2
type: Transform
- uid: 6839
components:
- - pos: 68.5,-61.5
+ - pos: 68.5,-63.5
parent: 2
type: Transform
- uid: 6840
components:
- - pos: 69.5,-61.5
+ - pos: 68.5,-62.5
parent: 2
type: Transform
- uid: 6841
components:
- - pos: 70.5,-61.5
+ - pos: 68.5,-61.5
parent: 2
type: Transform
- uid: 6842
components:
- - pos: 71.5,-61.5
+ - pos: 69.5,-61.5
parent: 2
type: Transform
- uid: 6843
components:
- - pos: 71.5,-60.5
+ - pos: 70.5,-61.5
parent: 2
type: Transform
- uid: 6844
components:
- - pos: 71.5,-59.5
+ - pos: 71.5,-61.5
parent: 2
type: Transform
- uid: 6845
components:
- - pos: 71.5,-58.5
+ - pos: 71.5,-60.5
parent: 2
type: Transform
- uid: 6846
components:
- - pos: 71.5,-57.5
+ - pos: 71.5,-59.5
parent: 2
type: Transform
- uid: 6847
components:
- - pos: 72.5,-57.5
+ - pos: 71.5,-58.5
parent: 2
type: Transform
- uid: 6848
components:
- - pos: 73.5,-57.5
+ - pos: 71.5,-57.5
parent: 2
type: Transform
- uid: 6849
components:
- - pos: 74.5,-57.5
+ - pos: 72.5,-57.5
parent: 2
type: Transform
- uid: 6850
components:
- - pos: 74.5,-56.5
+ - pos: 73.5,-57.5
parent: 2
type: Transform
- uid: 6851
components:
- - pos: 74.5,-55.5
+ - pos: 74.5,-57.5
parent: 2
type: Transform
- uid: 6852
components:
- - pos: 75.5,-55.5
+ - pos: 74.5,-56.5
parent: 2
type: Transform
- uid: 6853
components:
- - pos: 75.5,-54.5
+ - pos: 74.5,-55.5
parent: 2
type: Transform
- uid: 6854
components:
- - pos: 75.5,-53.5
+ - pos: 75.5,-55.5
parent: 2
type: Transform
- uid: 6855
components:
- - pos: 75.5,-52.5
+ - pos: 75.5,-54.5
parent: 2
type: Transform
- uid: 6856
components:
- - pos: 56.5,-38.5
+ - pos: 75.5,-53.5
parent: 2
type: Transform
- uid: 6857
components:
- - pos: 55.5,-66.5
+ - pos: 75.5,-52.5
parent: 2
type: Transform
- uid: 6858
components:
- - pos: 71.5,-44.5
+ - pos: 56.5,-38.5
parent: 2
type: Transform
- uid: 6859
components:
- - pos: 71.5,-43.5
+ - pos: 55.5,-66.5
parent: 2
type: Transform
- uid: 6860
components:
- - pos: 71.5,-42.5
+ - pos: 71.5,-44.5
parent: 2
type: Transform
- uid: 6861
components:
- - pos: 61.5,-48.5
+ - pos: 71.5,-43.5
parent: 2
type: Transform
- uid: 6862
components:
- - pos: 60.5,-48.5
+ - pos: 71.5,-42.5
parent: 2
type: Transform
- uid: 6863
components:
- - pos: 59.5,-48.5
+ - pos: 61.5,-48.5
parent: 2
type: Transform
- uid: 6864
components:
- - pos: 58.5,-48.5
+ - pos: 60.5,-48.5
parent: 2
type: Transform
- uid: 6865
components:
- - pos: 57.5,-48.5
+ - pos: 59.5,-48.5
parent: 2
type: Transform
- uid: 6866
components:
- - pos: 56.5,-48.5
+ - pos: 58.5,-48.5
parent: 2
type: Transform
- uid: 6867
components:
- - pos: 55.5,-48.5
+ - pos: 57.5,-48.5
parent: 2
type: Transform
- uid: 6868
components:
- - pos: 54.5,-48.5
+ - pos: 56.5,-48.5
parent: 2
type: Transform
- uid: 6869
components:
- - pos: 43.5,-39.5
+ - pos: 55.5,-48.5
parent: 2
type: Transform
- uid: 6870
components:
- - pos: 43.5,-40.5
+ - pos: 54.5,-48.5
parent: 2
type: Transform
- uid: 6871
components:
- - pos: 43.5,-41.5
+ - pos: 43.5,-39.5
parent: 2
type: Transform
- uid: 6872
components:
- - pos: 19.5,-51.5
+ - pos: 43.5,-40.5
parent: 2
type: Transform
- uid: 6873
components:
- - pos: 16.5,10.5
+ - pos: 43.5,-41.5
parent: 2
type: Transform
- uid: 6874
components:
- - pos: 16.5,9.5
+ - pos: 19.5,-51.5
parent: 2
type: Transform
- uid: 6875
components:
- - pos: 43.5,10.5
+ - pos: 16.5,10.5
parent: 2
type: Transform
- uid: 6876
components:
- - pos: 47.5,5.5
+ - pos: 16.5,9.5
parent: 2
type: Transform
- uid: 6877
components:
- - pos: 58.5,6.5
+ - pos: 43.5,10.5
parent: 2
type: Transform
- uid: 6878
components:
- - pos: 59.5,6.5
+ - pos: 47.5,5.5
parent: 2
type: Transform
- uid: 6879
components:
- - pos: 12.5,-84.5
+ - pos: 58.5,6.5
parent: 2
type: Transform
- uid: 6880
components:
- - pos: 12.5,-82.5
+ - pos: 59.5,6.5
parent: 2
type: Transform
- uid: 6881
components:
- - pos: -15.5,24.5
+ - pos: 12.5,-84.5
parent: 2
type: Transform
- uid: 6882
components:
- - pos: 48.5,-92.5
+ - pos: 12.5,-82.5
parent: 2
type: Transform
- uid: 6883
components:
- - pos: 48.5,-93.5
+ - pos: -15.5,24.5
parent: 2
type: Transform
- uid: 6884
components:
- - pos: 48.5,-76.5
+ - pos: 48.5,-92.5
parent: 2
type: Transform
- uid: 6885
components:
- - pos: 46.5,-89.5
+ - pos: 48.5,-93.5
parent: 2
type: Transform
- uid: 6886
components:
- - pos: 47.5,-89.5
+ - pos: 48.5,-76.5
parent: 2
type: Transform
- uid: 6887
components:
- - pos: 43.5,9.5
+ - pos: 46.5,-89.5
parent: 2
type: Transform
- uid: 6888
components:
- - pos: 43.5,8.5
+ - pos: 47.5,-89.5
parent: 2
type: Transform
- uid: 6889
components:
- - pos: 43.5,7.5
+ - pos: 43.5,9.5
parent: 2
type: Transform
- uid: 6890
components:
- - pos: -11.5,-18.5
+ - pos: 43.5,8.5
parent: 2
type: Transform
- uid: 6891
components:
- - pos: -11.5,-17.5
+ - pos: 43.5,7.5
parent: 2
type: Transform
- uid: 6892
components:
- - pos: -11.5,-16.5
+ - pos: -11.5,-18.5
parent: 2
type: Transform
- uid: 6893
components:
- - pos: -11.5,-15.5
+ - pos: -11.5,-17.5
parent: 2
type: Transform
- uid: 6894
components:
- - pos: -11.5,-14.5
+ - pos: -11.5,-16.5
parent: 2
type: Transform
- uid: 6895
components:
- - pos: -11.5,-13.5
+ - pos: -11.5,-15.5
parent: 2
type: Transform
- uid: 6896
components:
- - pos: -11.5,-12.5
+ - pos: -11.5,-14.5
parent: 2
type: Transform
- uid: 6897
components:
- - pos: -11.5,-11.5
+ - pos: -11.5,-13.5
parent: 2
type: Transform
- uid: 6898
components:
- - pos: -11.5,-10.5
+ - pos: -11.5,-12.5
parent: 2
type: Transform
- uid: 6899
components:
- - pos: -12.5,-10.5
+ - pos: -11.5,-11.5
parent: 2
type: Transform
- uid: 6900
components:
- - pos: -13.5,-10.5
+ - pos: -11.5,-10.5
parent: 2
type: Transform
- uid: 6901
components:
- - pos: -14.5,-10.5
+ - pos: -12.5,-10.5
parent: 2
type: Transform
- uid: 6902
components:
- - pos: -13.5,-14.5
+ - pos: -13.5,-10.5
parent: 2
type: Transform
- uid: 6903
components:
- - pos: -14.5,-14.5
+ - pos: -14.5,-10.5
parent: 2
type: Transform
- uid: 6904
components:
- - pos: -15.5,-14.5
+ - pos: -13.5,-14.5
parent: 2
type: Transform
- uid: 6905
components:
- - pos: -16.5,-14.5
+ - pos: -14.5,-14.5
parent: 2
type: Transform
- uid: 6906
components:
- - pos: -10.5,-14.5
+ - pos: -15.5,-14.5
parent: 2
type: Transform
- uid: 6907
components:
- - pos: -9.5,-14.5
+ - pos: -16.5,-14.5
parent: 2
type: Transform
- uid: 6908
components:
- - pos: -8.5,-14.5
+ - pos: -10.5,-14.5
parent: 2
type: Transform
- uid: 6909
components:
- - pos: -8.5,-13.5
+ - pos: -9.5,-14.5
parent: 2
type: Transform
- uid: 6910
components:
- - pos: -7.5,-13.5
+ - pos: -8.5,-14.5
parent: 2
type: Transform
- uid: 6911
components:
- - pos: -7.5,-12.5
+ - pos: -8.5,-13.5
parent: 2
type: Transform
- uid: 6912
components:
- - pos: -7.5,-11.5
+ - pos: -7.5,-13.5
parent: 2
type: Transform
- uid: 6913
components:
- - pos: -7.5,-10.5
+ - pos: -7.5,-12.5
parent: 2
type: Transform
- uid: 6914
components:
- - pos: -8.5,-9.5
+ - pos: -7.5,-11.5
parent: 2
type: Transform
- uid: 6915
components:
- - pos: -7.5,-9.5
+ - pos: -7.5,-10.5
parent: 2
type: Transform
- uid: 6916
components:
- - pos: -9.5,-9.5
+ - pos: -8.5,-9.5
parent: 2
type: Transform
- uid: 6917
components:
- - pos: -10.5,-9.5
+ - pos: -7.5,-9.5
parent: 2
type: Transform
- uid: 6918
components:
- - pos: -11.5,-9.5
+ - pos: -9.5,-9.5
parent: 2
type: Transform
- uid: 6919
components:
- - pos: -12.5,-9.5
+ - pos: -10.5,-9.5
parent: 2
type: Transform
- uid: 6920
components:
- - pos: -13.5,-9.5
+ - pos: -11.5,-9.5
parent: 2
type: Transform
- uid: 6921
components:
- - pos: -14.5,-9.5
+ - pos: -12.5,-9.5
parent: 2
type: Transform
- uid: 6922
components:
- - pos: -15.5,-9.5
+ - pos: -13.5,-9.5
parent: 2
type: Transform
- uid: 6923
components:
- - pos: -42.5,17.5
+ - pos: -14.5,-9.5
parent: 2
type: Transform
- uid: 6924
components:
- - pos: -5.5,-19.5
+ - pos: -15.5,-9.5
parent: 2
type: Transform
- uid: 6925
components:
- - pos: -6.5,-19.5
+ - pos: -42.5,17.5
parent: 2
type: Transform
- uid: 6926
components:
- - pos: -7.5,-19.5
+ - pos: -5.5,-19.5
parent: 2
type: Transform
- uid: 6927
components:
- - pos: 18.5,-82.5
+ - pos: -6.5,-19.5
parent: 2
type: Transform
- uid: 6928
components:
- - pos: 18.5,-84.5
+ - pos: -7.5,-19.5
parent: 2
type: Transform
- uid: 6929
components:
- - pos: 18.5,-85.5
+ - pos: 18.5,-82.5
parent: 2
type: Transform
- uid: 6930
components:
- - pos: 12.5,-83.5
+ - pos: 18.5,-84.5
parent: 2
type: Transform
- uid: 6931
components:
- - pos: 4.5,-49.5
+ - pos: 18.5,-85.5
parent: 2
type: Transform
- uid: 6932
components:
- - pos: 6.5,-49.5
+ - pos: 12.5,-83.5
parent: 2
type: Transform
- uid: 6933
components:
- - pos: -8.5,-67.5
+ - pos: 4.5,-49.5
parent: 2
type: Transform
- uid: 6934
components:
- - pos: -8.5,-68.5
+ - pos: 6.5,-49.5
parent: 2
type: Transform
- uid: 6935
components:
- - pos: -8.5,-69.5
+ - pos: -8.5,-67.5
parent: 2
type: Transform
- uid: 6936
components:
- - pos: -19.5,-60.5
+ - pos: -8.5,-68.5
parent: 2
type: Transform
- uid: 6937
components:
- - pos: -20.5,-60.5
+ - pos: -8.5,-69.5
parent: 2
type: Transform
- uid: 6938
components:
- - pos: -21.5,-60.5
+ - pos: -19.5,-60.5
parent: 2
type: Transform
- uid: 6939
components:
- - pos: -22.5,-60.5
+ - pos: -20.5,-60.5
parent: 2
type: Transform
- uid: 6940
components:
- - pos: -23.5,-60.5
+ - pos: -21.5,-60.5
parent: 2
type: Transform
- uid: 6941
components:
- - pos: -24.5,-60.5
+ - pos: -22.5,-60.5
parent: 2
type: Transform
- uid: 6942
components:
- - pos: -25.5,-60.5
+ - pos: -23.5,-60.5
parent: 2
type: Transform
- uid: 6943
components:
- - pos: -24.5,-59.5
+ - pos: -24.5,-60.5
parent: 2
type: Transform
- uid: 6944
components:
- - pos: -24.5,-58.5
+ - pos: -25.5,-60.5
parent: 2
type: Transform
- uid: 6945
components:
- - pos: -24.5,-57.5
+ - pos: -24.5,-59.5
parent: 2
type: Transform
- uid: 6946
components:
- - pos: -24.5,-61.5
+ - pos: -24.5,-58.5
parent: 2
type: Transform
- uid: 6947
components:
- - pos: -24.5,-62.5
+ - pos: -24.5,-57.5
parent: 2
type: Transform
- uid: 6948
components:
- - pos: 30.5,-22.5
+ - pos: -24.5,-61.5
parent: 2
type: Transform
- uid: 6949
components:
- - pos: 31.5,-22.5
+ - pos: -24.5,-62.5
parent: 2
type: Transform
- uid: 6950
components:
- - pos: 31.5,-21.5
+ - pos: 30.5,-22.5
parent: 2
type: Transform
- uid: 6951
components:
- - pos: 19.5,-22.5
+ - pos: 31.5,-22.5
parent: 2
type: Transform
- uid: 6952
components:
- - pos: 19.5,-21.5
+ - pos: 31.5,-21.5
parent: 2
type: Transform
- uid: 6953
components:
- - pos: -31.5,-10.5
+ - pos: 19.5,-22.5
parent: 2
type: Transform
- uid: 6954
components:
- - pos: -49.5,-33.5
+ - pos: 19.5,-21.5
parent: 2
type: Transform
- uid: 6955
components:
- - pos: -47.5,-33.5
+ - pos: -31.5,-10.5
parent: 2
type: Transform
- uid: 6956
components:
- - pos: -48.5,-33.5
+ - pos: -49.5,-33.5
parent: 2
type: Transform
- uid: 6957
components:
- - pos: -47.5,-34.5
+ - pos: -47.5,-33.5
parent: 2
type: Transform
- uid: 6958
components:
- - pos: -47.5,-38.5
+ - pos: -48.5,-33.5
parent: 2
type: Transform
- uid: 6959
components:
- - pos: -47.5,-35.5
+ - pos: -47.5,-34.5
parent: 2
type: Transform
- uid: 6960
components:
- - pos: -47.5,-36.5
+ - pos: -47.5,-38.5
parent: 2
type: Transform
- uid: 6961
components:
- - pos: -47.5,-37.5
+ - pos: -47.5,-35.5
parent: 2
type: Transform
- uid: 6962
components:
- - pos: -50.5,-33.5
+ - pos: -47.5,-36.5
parent: 2
type: Transform
- uid: 6963
components:
- - pos: -51.5,-33.5
+ - pos: -47.5,-37.5
parent: 2
type: Transform
- uid: 6964
components:
- - pos: -51.5,-34.5
+ - pos: -50.5,-33.5
parent: 2
type: Transform
- uid: 6965
components:
- - pos: -51.5,-35.5
+ - pos: -51.5,-33.5
parent: 2
type: Transform
- uid: 6966
components:
- - pos: -51.5,-36.5
+ - pos: -51.5,-34.5
parent: 2
type: Transform
- uid: 6967
components:
- - pos: -51.5,-37.5
+ - pos: -51.5,-35.5
parent: 2
type: Transform
- uid: 6968
components:
- - pos: -51.5,-38.5
+ - pos: -51.5,-36.5
parent: 2
type: Transform
- uid: 6969
components:
- - pos: -51.5,-39.5
+ - pos: -51.5,-37.5
parent: 2
type: Transform
- uid: 6970
components:
- - pos: 54.5,-34.5
+ - pos: -51.5,-38.5
parent: 2
type: Transform
- uid: 6971
components:
- - pos: 30.5,-88.5
+ - pos: -51.5,-39.5
parent: 2
type: Transform
- uid: 6972
components:
- - pos: 30.5,-77.5
+ - pos: 54.5,-34.5
parent: 2
type: Transform
- uid: 6973
components:
- - pos: 30.5,-80.5
+ - pos: 30.5,-88.5
parent: 2
type: Transform
- uid: 6974
components:
- - pos: 30.5,-81.5
+ - pos: 30.5,-77.5
parent: 2
type: Transform
- uid: 6975
components:
- - pos: 30.5,-84.5
+ - pos: 30.5,-80.5
parent: 2
type: Transform
- uid: 6976
components:
- - pos: 30.5,-85.5
+ - pos: 30.5,-81.5
parent: 2
type: Transform
- uid: 6977
components:
- - pos: 48.5,-90.5
+ - pos: 30.5,-84.5
parent: 2
type: Transform
- uid: 6978
components:
- - pos: 31.5,-82.5
+ - pos: 30.5,-85.5
parent: 2
type: Transform
- uid: 6979
components:
- - pos: 48.5,-74.5
+ - pos: 48.5,-90.5
parent: 2
type: Transform
- uid: 6980
components:
- - pos: 48.5,-75.5
+ - pos: 31.5,-82.5
parent: 2
type: Transform
- uid: 6981
components:
- - pos: 30.5,-91.5
+ - pos: 48.5,-74.5
parent: 2
type: Transform
- uid: 6982
components:
- - pos: 27.5,-81.5
+ - pos: 48.5,-75.5
parent: 2
type: Transform
- uid: 6983
components:
- - pos: 32.5,-82.5
+ - pos: 30.5,-91.5
parent: 2
type: Transform
- uid: 6984
components:
- - pos: 30.5,-79.5
+ - pos: 27.5,-81.5
parent: 2
type: Transform
- uid: 6985
components:
- - pos: 30.5,-92.5
+ - pos: 32.5,-82.5
parent: 2
type: Transform
- uid: 6986
components:
- - pos: 16.5,-81.5
+ - pos: 30.5,-79.5
parent: 2
type: Transform
- uid: 6987
components:
- - pos: 15.5,-81.5
+ - pos: 30.5,-92.5
parent: 2
type: Transform
- uid: 6988
components:
- - pos: 18.5,-86.5
+ - pos: 16.5,-81.5
parent: 2
type: Transform
- uid: 6989
components:
- - pos: 13.5,-81.5
+ - pos: 15.5,-81.5
parent: 2
type: Transform
- uid: 6990
components:
- - pos: 30.5,-86.5
+ - pos: 18.5,-86.5
parent: 2
type: Transform
- uid: 6991
components:
- - pos: 30.5,-87.5
+ - pos: 13.5,-81.5
parent: 2
type: Transform
- uid: 6992
components:
- - pos: 30.5,-82.5
+ - pos: 30.5,-86.5
parent: 2
type: Transform
- uid: 6993
components:
- - pos: 30.5,-83.5
+ - pos: 30.5,-87.5
parent: 2
type: Transform
- uid: 6994
components:
- - pos: 27.5,-82.5
+ - pos: 30.5,-82.5
parent: 2
type: Transform
- uid: 6995
components:
- - pos: 30.5,-93.5
+ - pos: 30.5,-83.5
parent: 2
type: Transform
- uid: 6996
components:
- - pos: 31.5,-89.5
+ - pos: 27.5,-82.5
parent: 2
type: Transform
- uid: 6997
components:
- - pos: 32.5,-89.5
+ - pos: 30.5,-93.5
parent: 2
type: Transform
- uid: 6998
components:
- - pos: 26.5,-83.5
+ - pos: 31.5,-89.5
parent: 2
type: Transform
- uid: 6999
components:
- - pos: 25.5,-83.5
+ - pos: 32.5,-89.5
parent: 2
type: Transform
- uid: 7000
components:
- - pos: 24.5,-83.5
+ - pos: 26.5,-83.5
parent: 2
type: Transform
- uid: 7001
components:
- - pos: 29.5,-83.5
+ - pos: 25.5,-83.5
parent: 2
type: Transform
- uid: 7002
components:
- - pos: 12.5,-85.5
+ - pos: 24.5,-83.5
parent: 2
type: Transform
- uid: 7003
components:
- - pos: 28.5,-83.5
+ - pos: 29.5,-83.5
parent: 2
type: Transform
- uid: 7004
components:
- - pos: 27.5,-83.5
+ - pos: 12.5,-85.5
parent: 2
type: Transform
- uid: 7005
components:
- - pos: 49.5,-72.5
+ - pos: 28.5,-83.5
parent: 2
type: Transform
- uid: 7006
components:
- - pos: 46.5,-72.5
+ - pos: 27.5,-83.5
parent: 2
type: Transform
- uid: 7007
components:
- - pos: 47.5,-72.5
+ - pos: 49.5,-72.5
parent: 2
type: Transform
- uid: 7008
components:
- - pos: 48.5,-88.5
+ - pos: 46.5,-72.5
parent: 2
type: Transform
- uid: 7009
components:
- - pos: 48.5,-87.5
+ - pos: 47.5,-72.5
parent: 2
type: Transform
- uid: 7010
components:
- - pos: 48.5,-86.5
+ - pos: 48.5,-88.5
parent: 2
type: Transform
- uid: 7011
components:
- - pos: 48.5,-85.5
+ - pos: 48.5,-87.5
parent: 2
type: Transform
- uid: 7012
components:
- - pos: 48.5,-84.5
+ - pos: 48.5,-86.5
parent: 2
type: Transform
- uid: 7013
components:
- - pos: 48.5,-83.5
+ - pos: 48.5,-85.5
parent: 2
type: Transform
- uid: 7014
components:
- - pos: 48.5,-82.5
+ - pos: 48.5,-84.5
parent: 2
type: Transform
- uid: 7015
components:
- - pos: 48.5,-81.5
+ - pos: 48.5,-83.5
parent: 2
type: Transform
- uid: 7016
components:
- - pos: 48.5,-80.5
+ - pos: 48.5,-82.5
parent: 2
type: Transform
- uid: 7017
components:
- - pos: 48.5,-79.5
+ - pos: 48.5,-81.5
parent: 2
type: Transform
- uid: 7018
components:
- - pos: 48.5,-78.5
+ - pos: 48.5,-80.5
parent: 2
type: Transform
- uid: 7019
components:
- - pos: 48.5,-77.5
+ - pos: 48.5,-79.5
parent: 2
type: Transform
- uid: 7020
components:
- - pos: 43.5,-74.5
+ - pos: 48.5,-78.5
parent: 2
type: Transform
- uid: 7021
components:
- - pos: 43.5,-75.5
+ - pos: 48.5,-77.5
parent: 2
type: Transform
- uid: 7022
components:
- - pos: 26.5,-84.5
+ - pos: 43.5,-74.5
parent: 2
type: Transform
- uid: 7023
components:
- - pos: 26.5,-85.5
+ - pos: 43.5,-75.5
parent: 2
type: Transform
- uid: 7024
components:
- - pos: 11.5,-18.5
+ - pos: 26.5,-84.5
parent: 2
type: Transform
- uid: 7025
components:
- - pos: 11.5,-19.5
+ - pos: 26.5,-85.5
parent: 2
type: Transform
- uid: 7026
components:
- - pos: 11.5,-20.5
+ - pos: 11.5,-18.5
parent: 2
type: Transform
- uid: 7027
components:
- - pos: 11.5,-21.5
+ - pos: 11.5,-19.5
parent: 2
type: Transform
- uid: 7028
components:
- - pos: 10.5,-21.5
+ - pos: 11.5,-20.5
parent: 2
type: Transform
- uid: 7029
components:
- - pos: 9.5,-21.5
+ - pos: 11.5,-21.5
parent: 2
type: Transform
- uid: 7030
components:
- - pos: 8.5,-21.5
+ - pos: 10.5,-21.5
parent: 2
type: Transform
- uid: 7031
components:
- - pos: 7.5,-21.5
+ - pos: 9.5,-21.5
parent: 2
type: Transform
- uid: 7032
components:
- - pos: 7.5,-22.5
+ - pos: 8.5,-21.5
parent: 2
type: Transform
- uid: 7033
components:
- - pos: 7.5,-23.5
+ - pos: 7.5,-21.5
parent: 2
type: Transform
- uid: 7034
components:
- - pos: 8.5,-23.5
+ - pos: 7.5,-22.5
parent: 2
type: Transform
- uid: 7035
components:
- - pos: 9.5,-23.5
+ - pos: 7.5,-23.5
parent: 2
type: Transform
- uid: 7036
components:
- - pos: 10.5,-23.5
+ - pos: 8.5,-23.5
parent: 2
type: Transform
- uid: 7037
components:
- - pos: 11.5,-23.5
+ - pos: 9.5,-23.5
parent: 2
type: Transform
- uid: 7038
components:
- - pos: 11.5,-22.5
+ - pos: 10.5,-23.5
parent: 2
type: Transform
- uid: 7039
components:
- - pos: 8.5,-20.5
+ - pos: 11.5,-23.5
parent: 2
type: Transform
- uid: 7040
components:
- - pos: 9.5,-20.5
+ - pos: 11.5,-22.5
parent: 2
type: Transform
- uid: 7041
components:
- - pos: 39.5,11.5
+ - pos: 8.5,-20.5
parent: 2
type: Transform
- uid: 7042
components:
- - pos: 38.5,11.5
+ - pos: 9.5,-20.5
parent: 2
type: Transform
- uid: 7043
components:
- - pos: 39.5,7.5
+ - pos: 39.5,11.5
parent: 2
type: Transform
- uid: 7044
components:
- - pos: 44.5,6.5
+ - pos: 38.5,11.5
parent: 2
type: Transform
- uid: 7045
components:
- - pos: 46.5,7.5
+ - pos: 39.5,7.5
parent: 2
type: Transform
- uid: 7046
components:
- - pos: 3.5,-51.5
+ - pos: 44.5,6.5
parent: 2
type: Transform
- uid: 7047
components:
- - pos: 3.5,-52.5
+ - pos: 46.5,7.5
parent: 2
type: Transform
- uid: 7048
components:
- - pos: 3.5,-53.5
+ - pos: 3.5,-51.5
parent: 2
type: Transform
- uid: 7049
components:
- - pos: 6.5,-73.5
+ - pos: 3.5,-52.5
parent: 2
type: Transform
- uid: 7050
components:
- - pos: 6.5,-74.5
+ - pos: 3.5,-53.5
parent: 2
type: Transform
- uid: 7051
components:
- - pos: 6.5,-75.5
+ - pos: 6.5,-73.5
parent: 2
type: Transform
- uid: 7052
components:
- - pos: 6.5,-76.5
+ - pos: 6.5,-74.5
parent: 2
type: Transform
- uid: 7053
components:
- - pos: 6.5,-77.5
+ - pos: 6.5,-75.5
parent: 2
type: Transform
- uid: 7054
components:
- - pos: 6.5,-78.5
+ - pos: 6.5,-76.5
parent: 2
type: Transform
- uid: 7055
components:
- - pos: 6.5,-79.5
+ - pos: 6.5,-77.5
parent: 2
type: Transform
- uid: 7056
components:
- - pos: 6.5,-80.5
+ - pos: 6.5,-78.5
parent: 2
type: Transform
- uid: 7057
components:
- - pos: 6.5,-81.5
+ - pos: 6.5,-79.5
parent: 2
type: Transform
- uid: 7058
components:
- - pos: 6.5,-82.5
+ - pos: 6.5,-80.5
parent: 2
type: Transform
- uid: 7059
components:
- - pos: 6.5,-83.5
+ - pos: 6.5,-81.5
parent: 2
type: Transform
- uid: 7060
components:
- - pos: 6.5,-84.5
+ - pos: 6.5,-82.5
parent: 2
type: Transform
- uid: 7061
components:
- - pos: 7.5,-83.5
+ - pos: 6.5,-83.5
parent: 2
type: Transform
- uid: 7062
components:
- - pos: 8.5,-83.5
+ - pos: 6.5,-84.5
parent: 2
type: Transform
- uid: 7063
components:
- - pos: 5.5,-74.5
+ - pos: 7.5,-83.5
parent: 2
type: Transform
- uid: 7064
components:
- - pos: 4.5,-74.5
+ - pos: 8.5,-83.5
parent: 2
type: Transform
- uid: 7065
components:
- - pos: 3.5,-74.5
+ - pos: 5.5,-74.5
parent: 2
type: Transform
- uid: 7066
components:
- - pos: 9.5,-83.5
+ - pos: 4.5,-74.5
parent: 2
type: Transform
- uid: 7067
components:
- - pos: 2.5,-74.5
+ - pos: 3.5,-74.5
parent: 2
type: Transform
- uid: 7068
components:
- - pos: 1.5,-74.5
+ - pos: 9.5,-83.5
parent: 2
type: Transform
- uid: 7069
components:
- - pos: -46.5,-53.5
+ - pos: 2.5,-74.5
parent: 2
type: Transform
- uid: 7070
components:
- - pos: -46.5,-51.5
+ - pos: 1.5,-74.5
parent: 2
type: Transform
- uid: 7071
components:
- - pos: -46.5,-46.5
+ - pos: -46.5,-53.5
parent: 2
type: Transform
- uid: 7072
components:
- - pos: -46.5,-48.5
+ - pos: -46.5,-51.5
parent: 2
type: Transform
- uid: 7073
components:
- - pos: -46.5,-47.5
+ - pos: -46.5,-46.5
parent: 2
type: Transform
- uid: 7074
components:
- - pos: -46.5,-49.5
+ - pos: -46.5,-48.5
parent: 2
type: Transform
- uid: 7075
components:
- - pos: -46.5,-50.5
+ - pos: -46.5,-47.5
parent: 2
type: Transform
- uid: 7076
components:
- - pos: -46.5,-52.5
+ - pos: -46.5,-49.5
parent: 2
type: Transform
- uid: 7077
components:
- - pos: -46.5,-54.5
+ - pos: -46.5,-50.5
parent: 2
type: Transform
- uid: 7078
components:
- - pos: -46.5,-55.5
+ - pos: -46.5,-52.5
parent: 2
type: Transform
- uid: 7079
components:
- - pos: -46.5,-56.5
+ - pos: -46.5,-54.5
parent: 2
type: Transform
- uid: 7080
components:
- - pos: -46.5,-57.5
+ - pos: -46.5,-55.5
parent: 2
type: Transform
- uid: 7081
components:
- - pos: -46.5,-58.5
+ - pos: -46.5,-56.5
parent: 2
type: Transform
- uid: 7082
components:
- - pos: -45.5,-58.5
+ - pos: -46.5,-57.5
parent: 2
type: Transform
- uid: 7083
components:
- - pos: -44.5,-58.5
+ - pos: -46.5,-58.5
parent: 2
type: Transform
- uid: 7084
components:
- - pos: -43.5,-58.5
+ - pos: -45.5,-58.5
parent: 2
type: Transform
- uid: 7085
components:
- - pos: -42.5,-58.5
+ - pos: -44.5,-58.5
parent: 2
type: Transform
- uid: 7086
components:
- - pos: -41.5,-58.5
+ - pos: -43.5,-58.5
parent: 2
type: Transform
- uid: 7087
components:
- - pos: -40.5,-58.5
+ - pos: -42.5,-58.5
parent: 2
type: Transform
- uid: 7088
components:
- - pos: -40.5,-59.5
+ - pos: -41.5,-58.5
parent: 2
type: Transform
- uid: 7089
components:
- - pos: -39.5,-59.5
+ - pos: -40.5,-58.5
parent: 2
type: Transform
- uid: 7090
components:
- - pos: -38.5,-59.5
+ - pos: -40.5,-59.5
parent: 2
type: Transform
- uid: 7091
components:
- - pos: -37.5,-59.5
+ - pos: -39.5,-59.5
parent: 2
type: Transform
- uid: 7092
components:
- - pos: -36.5,-59.5
+ - pos: -38.5,-59.5
parent: 2
type: Transform
- uid: 7093
components:
- - pos: -36.5,-58.5
+ - pos: -37.5,-59.5
parent: 2
type: Transform
- uid: 7094
components:
- - pos: -35.5,-58.5
+ - pos: -36.5,-59.5
parent: 2
type: Transform
- uid: 7095
components:
- - pos: -35.5,-56.5
+ - pos: -36.5,-58.5
parent: 2
type: Transform
- uid: 7096
components:
- - pos: -35.5,-57.5
+ - pos: -35.5,-58.5
parent: 2
type: Transform
- uid: 7097
components:
- - pos: -48.5,42.5
+ - pos: -35.5,-56.5
parent: 2
type: Transform
- uid: 7098
components:
- - pos: -49.5,42.5
+ - pos: -35.5,-57.5
parent: 2
type: Transform
- uid: 7099
components:
- - pos: -49.5,43.5
+ - pos: -48.5,42.5
parent: 2
type: Transform
- uid: 7100
components:
- - pos: -50.5,43.5
+ - pos: -49.5,42.5
parent: 2
type: Transform
- uid: 7101
components:
- - pos: -52.5,43.5
+ - pos: -49.5,43.5
parent: 2
type: Transform
- uid: 7102
components:
- - pos: -51.5,43.5
+ - pos: -50.5,43.5
parent: 2
type: Transform
- uid: 7103
components:
- - pos: -49.5,44.5
+ - pos: -52.5,43.5
parent: 2
type: Transform
- uid: 7104
components:
- - pos: -49.5,45.5
+ - pos: -51.5,43.5
parent: 2
type: Transform
- uid: 7105
components:
- - pos: -49.5,46.5
+ - pos: -49.5,44.5
parent: 2
type: Transform
- uid: 7106
components:
- - pos: -49.5,47.5
+ - pos: -49.5,45.5
parent: 2
type: Transform
- uid: 7107
components:
- - pos: -49.5,48.5
+ - pos: -49.5,46.5
parent: 2
type: Transform
- uid: 7108
components:
- - pos: -49.5,49.5
+ - pos: -49.5,47.5
parent: 2
type: Transform
- uid: 7109
components:
- - pos: -48.5,49.5
+ - pos: -49.5,48.5
parent: 2
type: Transform
- uid: 7110
components:
- - pos: -47.5,49.5
+ - pos: -49.5,49.5
parent: 2
type: Transform
- uid: 7111
components:
- - pos: -47.5,42.5
+ - pos: -48.5,49.5
parent: 2
type: Transform
- uid: 7112
components:
- - pos: 8.5,-59.5
+ - pos: -47.5,49.5
parent: 2
type: Transform
- uid: 7113
components:
- - pos: 8.5,-58.5
+ - pos: -47.5,42.5
parent: 2
type: Transform
- uid: 7114
components:
- - pos: 68.5,-32.5
+ - pos: 8.5,-59.5
parent: 2
type: Transform
- uid: 7115
components:
- - pos: 68.5,-31.5
+ - pos: 8.5,-58.5
parent: 2
type: Transform
- uid: 7116
components:
- - pos: 68.5,-30.5
+ - pos: 68.5,-32.5
parent: 2
type: Transform
- uid: 7117
components:
- - pos: 67.5,-30.5
+ - pos: 68.5,-31.5
parent: 2
type: Transform
- uid: 7118
components:
- - pos: 66.5,-30.5
+ - pos: 68.5,-30.5
parent: 2
type: Transform
- uid: 7119
components:
- - pos: -13.5,-33.5
+ - pos: 67.5,-30.5
parent: 2
type: Transform
- uid: 7120
components:
- - pos: -15.5,-33.5
+ - pos: 66.5,-30.5
parent: 2
type: Transform
- uid: 7121
components:
- - pos: -16.5,-33.5
+ - pos: -13.5,-33.5
parent: 2
type: Transform
- uid: 7122
components:
- - pos: 49.5,-89.5
+ - pos: -15.5,-33.5
parent: 2
type: Transform
- uid: 7123
components:
- - pos: 50.5,-89.5
+ - pos: -16.5,-33.5
parent: 2
type: Transform
- uid: 7124
components:
- - pos: 51.5,-89.5
+ - pos: 49.5,-89.5
parent: 2
type: Transform
- uid: 7125
components:
- - pos: 49.5,-82.5
+ - pos: 50.5,-89.5
parent: 2
type: Transform
- uid: 7126
components:
- - pos: 50.5,-82.5
+ - pos: 51.5,-89.5
parent: 2
type: Transform
- uid: 7127
components:
- - pos: 51.5,-82.5
+ - pos: 49.5,-82.5
parent: 2
type: Transform
- uid: 7128
components:
- - pos: -8.5,18.5
+ - pos: 50.5,-82.5
parent: 2
type: Transform
- uid: 7129
components:
- - pos: -4.5,15.5
+ - pos: 51.5,-82.5
parent: 2
type: Transform
- uid: 7130
components:
- - pos: -6.5,12.5
+ - pos: -8.5,18.5
parent: 2
type: Transform
- uid: 7131
components:
- - pos: -7.5,11.5
+ - pos: -4.5,15.5
parent: 2
type: Transform
- uid: 7132
components:
- - pos: -6.5,11.5
+ - pos: -6.5,12.5
parent: 2
type: Transform
- uid: 7133
components:
- - pos: -9.5,11.5
+ - pos: -7.5,11.5
parent: 2
type: Transform
- uid: 7134
components:
- - pos: -9.5,8.5
+ - pos: -6.5,11.5
parent: 2
type: Transform
- uid: 7135
components:
- - pos: -8.5,17.5
+ - pos: -9.5,11.5
parent: 2
type: Transform
- uid: 7136
components:
- - pos: -7.5,23.5
+ - pos: -9.5,8.5
parent: 2
type: Transform
- uid: 7137
components:
- - pos: -6.5,23.5
+ - pos: -8.5,17.5
parent: 2
type: Transform
- uid: 7138
components:
- - pos: -5.5,23.5
+ - pos: -7.5,23.5
parent: 2
type: Transform
- uid: 7139
components:
- - pos: -5.5,21.5
+ - pos: -6.5,23.5
parent: 2
type: Transform
- uid: 7140
components:
- - pos: -6.5,21.5
+ - pos: -5.5,23.5
parent: 2
type: Transform
- uid: 7141
components:
- - pos: -7.5,21.5
+ - pos: -5.5,21.5
parent: 2
type: Transform
- uid: 7142
components:
- - pos: -74.5,-51.5
+ - pos: -6.5,21.5
parent: 2
type: Transform
- uid: 7143
components:
- - pos: -74.5,-50.5
+ - pos: -7.5,21.5
parent: 2
type: Transform
- uid: 7144
components:
- - pos: -74.5,-52.5
+ - pos: -74.5,-51.5
parent: 2
type: Transform
- uid: 7145
components:
- - pos: -74.5,-53.5
+ - pos: -74.5,-50.5
parent: 2
type: Transform
- uid: 7146
components:
- - pos: -75.5,-53.5
+ - pos: -74.5,-52.5
parent: 2
type: Transform
- uid: 7147
components:
- - pos: -76.5,-53.5
+ - pos: -74.5,-53.5
parent: 2
type: Transform
- uid: 7148
components:
- - pos: -73.5,-53.5
+ - pos: -75.5,-53.5
parent: 2
type: Transform
- uid: 7149
components:
- - pos: -72.5,-53.5
+ - pos: -76.5,-53.5
parent: 2
type: Transform
- uid: 7150
components:
- - pos: -71.5,-53.5
+ - pos: -73.5,-53.5
parent: 2
type: Transform
- uid: 7151
components:
- - pos: -70.5,-53.5
+ - pos: -72.5,-53.5
parent: 2
type: Transform
- uid: 7152
components:
- - pos: -69.5,-53.5
+ - pos: -71.5,-53.5
parent: 2
type: Transform
- uid: 7153
components:
- - pos: -68.5,-53.5
+ - pos: -70.5,-53.5
parent: 2
type: Transform
- uid: 7154
components:
- - pos: -67.5,-53.5
+ - pos: -69.5,-53.5
parent: 2
type: Transform
- uid: 7155
components:
- - pos: -66.5,-53.5
+ - pos: -68.5,-53.5
parent: 2
type: Transform
- uid: 7156
components:
- - pos: -71.5,-54.5
+ - pos: -67.5,-53.5
parent: 2
type: Transform
- uid: 7157
components:
- - pos: -71.5,-55.5
+ - pos: -66.5,-53.5
parent: 2
type: Transform
- uid: 7158
components:
- - pos: -73.5,-54.5
+ - pos: -71.5,-54.5
parent: 2
type: Transform
- uid: 7159
components:
- - pos: -73.5,-55.5
+ - pos: -71.5,-55.5
parent: 2
type: Transform
- uid: 7160
components:
- - pos: -73.5,-51.5
+ - pos: -73.5,-54.5
parent: 2
type: Transform
- uid: 7161
components:
- - pos: -71.5,-51.5
+ - pos: -73.5,-55.5
parent: 2
type: Transform
- uid: 7162
components:
- - pos: -71.5,-52.5
+ - pos: -73.5,-51.5
parent: 2
type: Transform
- uid: 7163
components:
- - pos: -65.5,-56.5
+ - pos: -71.5,-51.5
parent: 2
type: Transform
- uid: 7164
components:
- - pos: -66.5,-56.5
+ - pos: -71.5,-52.5
parent: 2
type: Transform
- uid: 7165
components:
- - pos: -66.5,-52.5
+ - pos: -65.5,-56.5
parent: 2
type: Transform
- uid: 7166
components:
- - pos: -66.5,-54.5
+ - pos: -66.5,-56.5
parent: 2
type: Transform
- uid: 7167
components:
- - pos: -66.5,-55.5
+ - pos: -66.5,-52.5
parent: 2
type: Transform
- uid: 7168
components:
- - pos: -64.5,-56.5
+ - pos: -66.5,-54.5
parent: 2
type: Transform
- uid: 7169
components:
- - pos: -64.5,-55.5
+ - pos: -66.5,-55.5
parent: 2
type: Transform
- uid: 7170
components:
- - pos: -64.5,-54.5
+ - pos: -64.5,-56.5
parent: 2
type: Transform
- uid: 7171
components:
- - pos: -67.5,-41.5
+ - pos: -64.5,-55.5
parent: 2
type: Transform
- uid: 7172
components:
- - pos: -69.5,-42.5
+ - pos: -64.5,-54.5
parent: 2
type: Transform
- uid: 7173
components:
- - pos: -68.5,-41.5
+ - pos: -67.5,-41.5
parent: 2
type: Transform
- uid: 7174
components:
- - pos: -69.5,-41.5
+ - pos: -69.5,-42.5
parent: 2
type: Transform
- uid: 7175
components:
- - pos: -69.5,-40.5
+ - pos: -68.5,-41.5
parent: 2
type: Transform
- uid: 7176
components:
- - pos: -69.5,-43.5
+ - pos: -69.5,-41.5
parent: 2
type: Transform
- uid: 7177
components:
- - pos: -70.5,-40.5
+ - pos: -69.5,-40.5
parent: 2
type: Transform
- uid: 7178
components:
- - pos: -71.5,-40.5
+ - pos: -69.5,-43.5
parent: 2
type: Transform
- uid: 7179
components:
- - pos: -71.5,-39.5
+ - pos: -70.5,-40.5
parent: 2
type: Transform
- uid: 7180
components:
- - pos: -65.5,-42.5
+ - pos: -71.5,-40.5
parent: 2
type: Transform
- uid: 7181
components:
- - pos: -72.5,-39.5
+ - pos: -71.5,-39.5
parent: 2
type: Transform
- uid: 7182
components:
- - pos: -73.5,-44.5
+ - pos: -65.5,-42.5
parent: 2
type: Transform
- uid: 7183
components:
- - pos: -73.5,-43.5
+ - pos: -72.5,-39.5
parent: 2
type: Transform
- uid: 7184
components:
- - pos: -73.5,-42.5
+ - pos: -73.5,-44.5
parent: 2
type: Transform
- uid: 7185
components:
- - pos: -73.5,-41.5
+ - pos: -73.5,-43.5
parent: 2
type: Transform
- uid: 7186
components:
- - pos: -73.5,-40.5
+ - pos: -73.5,-42.5
parent: 2
type: Transform
- uid: 7187
components:
- - pos: -73.5,-39.5
+ - pos: -73.5,-41.5
parent: 2
type: Transform
- uid: 7188
components:
- - pos: -68.5,-37.5
+ - pos: -73.5,-40.5
parent: 2
type: Transform
- uid: 7189
components:
- - pos: -70.5,-37.5
+ - pos: -73.5,-39.5
parent: 2
type: Transform
- uid: 7190
components:
- - pos: -69.5,-37.5
+ - pos: -68.5,-37.5
parent: 2
type: Transform
- uid: 7191
components:
- - pos: -73.5,-37.5
+ - pos: -70.5,-37.5
parent: 2
type: Transform
- uid: 7192
components:
- - pos: -72.5,-37.5
+ - pos: -69.5,-37.5
parent: 2
type: Transform
- uid: 7193
components:
- - pos: -66.5,-36.5
+ - pos: -73.5,-37.5
parent: 2
type: Transform
- uid: 7194
components:
- - pos: -65.5,-41.5
+ - pos: -72.5,-37.5
parent: 2
type: Transform
- uid: 7195
components:
- - pos: -65.5,-43.5
+ - pos: -66.5,-36.5
parent: 2
type: Transform
- uid: 7196
components:
- - pos: -65.5,-44.5
+ - pos: -65.5,-41.5
parent: 2
type: Transform
- uid: 7197
components:
- - pos: -67.5,-37.5
+ - pos: -65.5,-43.5
parent: 2
type: Transform
- uid: 7198
components:
- - pos: -73.5,-35.5
+ - pos: -65.5,-44.5
parent: 2
type: Transform
- uid: 7199
components:
- - pos: -73.5,-38.5
+ - pos: -67.5,-37.5
parent: 2
type: Transform
- uid: 7200
components:
- - pos: -73.5,-36.5
+ - pos: -73.5,-35.5
parent: 2
type: Transform
- uid: 7201
components:
- - pos: -66.5,-37.5
+ - pos: -73.5,-38.5
parent: 2
type: Transform
- uid: 7202
components:
- - pos: -65.5,-37.5
+ - pos: -73.5,-36.5
parent: 2
type: Transform
- uid: 7203
components:
- - pos: -65.5,-39.5
+ - pos: -66.5,-37.5
parent: 2
type: Transform
- uid: 7204
components:
- - pos: -65.5,-40.5
+ - pos: -65.5,-37.5
parent: 2
type: Transform
- uid: 7205
components:
- - pos: -66.5,-41.5
+ - pos: -65.5,-39.5
parent: 2
type: Transform
- uid: 7206
components:
- - pos: -65.5,-45.5
+ - pos: -65.5,-40.5
parent: 2
type: Transform
- uid: 7207
components:
- - pos: -66.5,-45.5
+ - pos: -66.5,-41.5
parent: 2
type: Transform
- uid: 7208
components:
- - pos: -73.5,-45.5
+ - pos: -65.5,-45.5
parent: 2
type: Transform
- uid: 7209
components:
- - pos: -72.5,-45.5
+ - pos: -66.5,-45.5
parent: 2
type: Transform
- uid: 7210
components:
- - pos: -74.5,-41.5
+ - pos: -73.5,-45.5
parent: 2
type: Transform
- uid: 7211
components:
- - pos: -75.5,-41.5
+ - pos: -72.5,-45.5
parent: 2
type: Transform
- uid: 7212
components:
- - pos: -76.5,-41.5
+ - pos: -74.5,-41.5
parent: 2
type: Transform
- uid: 7213
components:
- - pos: -41.5,-17.5
+ - pos: -75.5,-41.5
parent: 2
type: Transform
- uid: 7214
components:
- - pos: -41.5,-18.5
+ - pos: -76.5,-41.5
parent: 2
type: Transform
- uid: 7215
components:
- - pos: -74.5,-45.5
+ - pos: -41.5,-17.5
parent: 2
type: Transform
- uid: 7216
components:
- - pos: -75.5,-45.5
+ - pos: -41.5,-18.5
parent: 2
type: Transform
- uid: 7217
components:
- - pos: -76.5,-45.5
+ - pos: -74.5,-45.5
parent: 2
type: Transform
- uid: 7218
components:
- - pos: -72.5,-38.5
+ - pos: -75.5,-45.5
parent: 2
type: Transform
- uid: 7219
components:
- - pos: -71.5,-38.5
+ - pos: -76.5,-45.5
parent: 2
type: Transform
- uid: 7220
components:
- - pos: -70.5,-38.5
+ - pos: -72.5,-38.5
parent: 2
type: Transform
- uid: 7221
components:
- - pos: -65.5,-33.5
+ - pos: -71.5,-38.5
parent: 2
type: Transform
- uid: 7222
components:
- - pos: -56.5,-37.5
+ - pos: -70.5,-38.5
parent: 2
type: Transform
- uid: 7223
components:
- - pos: -59.5,-37.5
+ - pos: -65.5,-33.5
parent: 2
type: Transform
- uid: 7224
components:
- - pos: -57.5,-37.5
+ - pos: -56.5,-37.5
parent: 2
type: Transform
- uid: 7225
components:
- - pos: -62.5,-37.5
+ - pos: -59.5,-37.5
parent: 2
type: Transform
- uid: 7226
components:
- - pos: -61.5,-37.5
+ - pos: -57.5,-37.5
parent: 2
type: Transform
- uid: 7227
components:
- - pos: -60.5,-37.5
+ - pos: -62.5,-37.5
parent: 2
type: Transform
- uid: 7228
components:
- - pos: -17.5,11.5
+ - pos: -61.5,-37.5
parent: 2
type: Transform
- uid: 7229
components:
- - pos: -58.5,-37.5
+ - pos: -60.5,-37.5
parent: 2
type: Transform
- uid: 7230
components:
- - pos: -54.5,-36.5
+ - pos: -17.5,11.5
parent: 2
type: Transform
- uid: 7231
components:
- - pos: -53.5,-36.5
+ - pos: -58.5,-37.5
parent: 2
type: Transform
- uid: 7232
components:
- - pos: -52.5,-36.5
+ - pos: -54.5,-36.5
parent: 2
type: Transform
- uid: 7233
components:
- - pos: -42.5,-28.5
+ - pos: -53.5,-36.5
parent: 2
type: Transform
- uid: 7234
components:
- - pos: -43.5,-28.5
+ - pos: -52.5,-36.5
parent: 2
type: Transform
- uid: 7235
components:
- - pos: -43.5,-30.5
+ - pos: -42.5,-28.5
parent: 2
type: Transform
- uid: 7236
components:
- - pos: -43.5,-29.5
+ - pos: -43.5,-28.5
parent: 2
type: Transform
- uid: 7237
components:
- - pos: -41.5,-28.5
+ - pos: -43.5,-30.5
parent: 2
type: Transform
- uid: 7238
components:
- - pos: -38.5,-29.5
+ - pos: -43.5,-29.5
parent: 2
type: Transform
- uid: 7239
components:
- - pos: -55.5,-31.5
+ - pos: -41.5,-28.5
parent: 2
type: Transform
- uid: 7240
components:
- - pos: 24.5,-38.5
+ - pos: -38.5,-29.5
parent: 2
type: Transform
- uid: 7241
components:
- - pos: 22.5,-38.5
+ - pos: -55.5,-31.5
parent: 2
type: Transform
- uid: 7242
components:
- - pos: 24.5,-34.5
+ - pos: 24.5,-38.5
parent: 2
type: Transform
- uid: 7243
components:
- - pos: 24.5,-35.5
+ - pos: 22.5,-38.5
parent: 2
type: Transform
- uid: 7244
components:
- - pos: 24.5,-37.5
+ - pos: 24.5,-34.5
parent: 2
type: Transform
- uid: 7245
components:
- - pos: 24.5,-36.5
+ - pos: 24.5,-35.5
parent: 2
type: Transform
- uid: 7246
components:
- - pos: 23.5,-38.5
+ - pos: 24.5,-37.5
parent: 2
type: Transform
- uid: 7247
components:
- - pos: 2.5,-5.5
+ - pos: 24.5,-36.5
parent: 2
type: Transform
- uid: 7248
components:
- - pos: -0.5,-4.5
+ - pos: 23.5,-38.5
parent: 2
type: Transform
- uid: 7249
components:
- - pos: 1.5,-4.5
+ - pos: 2.5,-5.5
parent: 2
type: Transform
- uid: 7250
components:
- - pos: -0.5,-6.5
+ - pos: -0.5,-4.5
parent: 2
type: Transform
- uid: 7251
components:
- - pos: -0.5,-5.5
+ - pos: 1.5,-4.5
parent: 2
type: Transform
- uid: 7252
components:
- - pos: 1.5,-5.5
+ - pos: -0.5,-6.5
parent: 2
type: Transform
- uid: 7253
components:
- - pos: 3.5,-5.5
+ - pos: -0.5,-5.5
parent: 2
type: Transform
- uid: 7254
components:
- - pos: 3.5,-6.5
+ - pos: 1.5,-5.5
parent: 2
type: Transform
- uid: 7255
components:
- - pos: 1.5,-6.5
+ - pos: 3.5,-5.5
parent: 2
type: Transform
- uid: 7256
components:
- - pos: 1.5,-3.5
+ - pos: 3.5,-6.5
parent: 2
type: Transform
- uid: 7257
components:
- - pos: 2.5,-3.5
+ - pos: 1.5,-6.5
parent: 2
type: Transform
- uid: 7258
components:
- - pos: 3.5,-3.5
+ - pos: 1.5,-3.5
parent: 2
type: Transform
- uid: 7259
components:
- - pos: 18.5,-30.5
+ - pos: 2.5,-3.5
parent: 2
type: Transform
- uid: 7260
components:
- - pos: 1.5,-7.5
+ - pos: 3.5,-3.5
parent: 2
type: Transform
- uid: 7261
components:
- - pos: 1.5,-8.5
+ - pos: 18.5,-30.5
parent: 2
type: Transform
- uid: 7262
components:
- - pos: 0.5,-5.5
+ - pos: 1.5,-7.5
parent: 2
type: Transform
- uid: 7263
components:
- - pos: 0.5,-6.5
+ - pos: 1.5,-8.5
parent: 2
type: Transform
- uid: 7264
components:
- - pos: 3.5,-7.5
+ - pos: 0.5,-5.5
parent: 2
type: Transform
- uid: 7265
components:
- - pos: 2.5,-7.5
+ - pos: 0.5,-6.5
parent: 2
type: Transform
- uid: 7266
components:
- - pos: 5.5,-7.5
+ - pos: 3.5,-7.5
parent: 2
type: Transform
- uid: 7267
components:
- - pos: 22.5,-39.5
+ - pos: 2.5,-7.5
parent: 2
type: Transform
- uid: 7268
components:
- - pos: 0.5,-17.5
+ - pos: 5.5,-7.5
parent: 2
type: Transform
- uid: 7269
components:
- - pos: 0.5,-18.5
+ - pos: 22.5,-39.5
parent: 2
type: Transform
- uid: 7270
components:
- - pos: 0.5,-19.5
+ - pos: 0.5,-17.5
parent: 2
type: Transform
- uid: 7271
components:
- - pos: 0.5,-20.5
+ - pos: 0.5,-18.5
parent: 2
type: Transform
- uid: 7272
components:
- - pos: 0.5,-21.5
+ - pos: 0.5,-19.5
parent: 2
type: Transform
- uid: 7273
components:
- - pos: 0.5,-23.5
+ - pos: 0.5,-20.5
parent: 2
type: Transform
- uid: 7274
components:
- - pos: 0.5,-22.5
+ - pos: 0.5,-21.5
parent: 2
type: Transform
- uid: 7275
components:
- - pos: 1.5,-22.5
+ - pos: 0.5,-23.5
parent: 2
type: Transform
- uid: 7276
components:
- - pos: -0.5,-21.5
+ - pos: 0.5,-22.5
parent: 2
type: Transform
- uid: 7277
components:
- - pos: -0.5,-19.5
+ - pos: 1.5,-22.5
parent: 2
type: Transform
- uid: 7278
components:
- - pos: -0.5,-23.5
+ - pos: -0.5,-21.5
parent: 2
type: Transform
- uid: 7279
components:
- - pos: -1.5,-23.5
+ - pos: -0.5,-19.5
parent: 2
type: Transform
- uid: 7280
components:
- - pos: 4.5,-12.5
+ - pos: -0.5,-23.5
parent: 2
type: Transform
- uid: 7281
components:
- - pos: 25.5,-38.5
+ - pos: -1.5,-23.5
parent: 2
type: Transform
- uid: 7282
components:
- - pos: 26.5,-38.5
+ - pos: 4.5,-12.5
parent: 2
type: Transform
- uid: 7283
components:
- - pos: 27.5,-38.5
+ - pos: 25.5,-38.5
parent: 2
type: Transform
- uid: 7284
components:
- - pos: 28.5,-38.5
+ - pos: 26.5,-38.5
parent: 2
type: Transform
- uid: 7285
components:
- - pos: 28.5,-37.5
+ - pos: 27.5,-38.5
parent: 2
type: Transform
- uid: 7286
components:
- - pos: 28.5,-36.5
+ - pos: 28.5,-38.5
parent: 2
type: Transform
- uid: 7287
components:
- - pos: 28.5,-33.5
+ - pos: 28.5,-37.5
parent: 2
type: Transform
- uid: 7288
components:
- - pos: -53.5,-23.5
+ - pos: 28.5,-36.5
parent: 2
type: Transform
- uid: 7289
components:
- - pos: 59.5,56.5
+ - pos: 28.5,-33.5
parent: 2
type: Transform
- uid: 7290
components:
- - pos: 59.5,57.5
+ - pos: -53.5,-23.5
parent: 2
type: Transform
- uid: 7291
components:
- - pos: 59.5,58.5
+ - pos: 59.5,56.5
parent: 2
type: Transform
- uid: 7292
components:
- - pos: 59.5,59.5
+ - pos: 59.5,57.5
parent: 2
type: Transform
- uid: 7293
components:
- - pos: 59.5,55.5
+ - pos: 59.5,58.5
parent: 2
type: Transform
- uid: 7294
components:
- - pos: 55.5,62.5
+ - pos: 59.5,59.5
parent: 2
type: Transform
- uid: 7295
components:
- - pos: 54.5,62.5
+ - pos: 59.5,55.5
parent: 2
type: Transform
- uid: 7296
components:
- - pos: 53.5,62.5
+ - pos: 55.5,62.5
parent: 2
type: Transform
- uid: 7297
components:
- - pos: 56.5,62.5
+ - pos: 54.5,62.5
parent: 2
type: Transform
- uid: 7298
components:
- - pos: 52.5,62.5
+ - pos: 53.5,62.5
parent: 2
type: Transform
- uid: 7299
components:
- - pos: 49.5,59.5
+ - pos: 56.5,62.5
parent: 2
type: Transform
- uid: 7300
components:
- - pos: 49.5,57.5
+ - pos: 52.5,62.5
parent: 2
type: Transform
- uid: 7301
components:
- - pos: 49.5,56.5
+ - pos: 49.5,59.5
parent: 2
type: Transform
- uid: 7302
components:
- - pos: 49.5,55.5
+ - pos: 49.5,57.5
parent: 2
type: Transform
- uid: 7303
components:
- - pos: 49.5,58.5
+ - pos: 49.5,56.5
parent: 2
type: Transform
- uid: 7304
components:
- - pos: 48.5,55.5
+ - pos: 49.5,55.5
parent: 2
type: Transform
- uid: 7305
components:
- - pos: 47.5,55.5
+ - pos: 49.5,58.5
parent: 2
type: Transform
- uid: 7306
components:
- - pos: 46.5,55.5
+ - pos: 48.5,55.5
parent: 2
type: Transform
- uid: 7307
components:
- - pos: 45.5,55.5
+ - pos: 47.5,55.5
parent: 2
type: Transform
- uid: 7308
components:
- - pos: 44.5,55.5
+ - pos: 46.5,55.5
parent: 2
type: Transform
- uid: 7309
components:
- - pos: 43.5,55.5
+ - pos: 45.5,55.5
parent: 2
type: Transform
- uid: 7310
components:
- - pos: 42.5,55.5
+ - pos: 44.5,55.5
parent: 2
type: Transform
- uid: 7311
components:
- - pos: 41.5,55.5
+ - pos: 43.5,55.5
parent: 2
type: Transform
- uid: 7312
components:
- - pos: 40.5,55.5
+ - pos: 42.5,55.5
parent: 2
type: Transform
- uid: 7313
components:
- - pos: 39.5,55.5
+ - pos: 41.5,55.5
parent: 2
type: Transform
- uid: 7314
components:
- - pos: 39.5,56.5
+ - pos: 40.5,55.5
parent: 2
type: Transform
- uid: 7315
components:
- - pos: 39.5,57.5
+ - pos: 39.5,55.5
parent: 2
type: Transform
- uid: 7316
components:
- - pos: 39.5,58.5
+ - pos: 39.5,56.5
parent: 2
type: Transform
- uid: 7317
components:
- - pos: 39.5,59.5
+ - pos: 39.5,57.5
parent: 2
type: Transform
- uid: 7318
components:
- - pos: 39.5,60.5
+ - pos: 39.5,58.5
parent: 2
type: Transform
- uid: 7319
components:
- - pos: 39.5,61.5
+ - pos: 39.5,59.5
parent: 2
type: Transform
- uid: 7320
components:
- - pos: 39.5,62.5
+ - pos: 39.5,60.5
parent: 2
type: Transform
- uid: 7321
components:
- - pos: 39.5,63.5
+ - pos: 39.5,61.5
parent: 2
type: Transform
- uid: 7322
components:
- - pos: 40.5,62.5
+ - pos: 39.5,62.5
parent: 2
type: Transform
- uid: 7323
components:
- - pos: 41.5,62.5
+ - pos: 39.5,63.5
parent: 2
type: Transform
- uid: 7324
components:
- - pos: 41.5,63.5
+ - pos: 40.5,62.5
parent: 2
type: Transform
- uid: 7325
components:
- - pos: 38.5,62.5
+ - pos: 41.5,62.5
parent: 2
type: Transform
- uid: 7326
components:
- - pos: 37.5,62.5
+ - pos: 41.5,63.5
parent: 2
type: Transform
- uid: 7327
components:
- - pos: 37.5,63.5
+ - pos: 38.5,62.5
parent: 2
type: Transform
- uid: 7328
components:
- - pos: 37.5,64.5
+ - pos: 37.5,62.5
parent: 2
type: Transform
- uid: 7329
components:
- - pos: 38.5,64.5
+ - pos: 37.5,63.5
parent: 2
type: Transform
- uid: 7330
components:
- - pos: 38.5,65.5
+ - pos: 37.5,64.5
parent: 2
type: Transform
- uid: 7331
components:
- - pos: 41.5,64.5
+ - pos: 38.5,64.5
parent: 2
type: Transform
- uid: 7332
components:
- - pos: 40.5,64.5
+ - pos: 38.5,65.5
parent: 2
type: Transform
- uid: 7333
components:
- - pos: 40.5,65.5
+ - pos: 41.5,64.5
parent: 2
type: Transform
- uid: 7334
components:
- - pos: -37.5,17.5
+ - pos: 40.5,64.5
parent: 2
type: Transform
- uid: 7335
components:
- - pos: -38.5,17.5
+ - pos: 40.5,65.5
parent: 2
type: Transform
- uid: 7336
components:
- - pos: 23.5,4.5
+ - pos: -37.5,17.5
parent: 2
type: Transform
- uid: 7337
components:
- - pos: 22.5,4.5
+ - pos: -38.5,17.5
parent: 2
type: Transform
- uid: 7338
components:
- - pos: 21.5,4.5
+ - pos: 23.5,4.5
parent: 2
type: Transform
- uid: 7339
components:
- - pos: 20.5,4.5
+ - pos: 22.5,4.5
parent: 2
type: Transform
- uid: 7340
components:
- - pos: 20.5,3.5
+ - pos: 21.5,4.5
parent: 2
type: Transform
- uid: 7341
components:
- - pos: 20.5,-2.5
+ - pos: 20.5,4.5
parent: 2
type: Transform
- uid: 7342
components:
- - pos: 21.5,-2.5
+ - pos: 20.5,3.5
parent: 2
type: Transform
- uid: 7343
components:
- - pos: 23.5,-2.5
+ - pos: 20.5,-2.5
parent: 2
type: Transform
- uid: 7344
components:
- - pos: 22.5,-2.5
+ - pos: 21.5,-2.5
parent: 2
type: Transform
- uid: 7345
components:
- - pos: 24.5,-2.5
+ - pos: 23.5,-2.5
parent: 2
type: Transform
- uid: 7346
components:
- - pos: 25.5,-2.5
+ - pos: 22.5,-2.5
parent: 2
type: Transform
- uid: 7347
components:
- - pos: 26.5,-2.5
+ - pos: 24.5,-2.5
parent: 2
type: Transform
- uid: 7348
components:
- - pos: 27.5,-2.5
+ - pos: 25.5,-2.5
parent: 2
type: Transform
-- proto: CableApcStack
- entities:
- uid: 7349
components:
- - pos: -22.574043,-20.541626
+ - pos: 26.5,-2.5
parent: 2
type: Transform
- uid: 7350
components:
- - pos: -11.530048,37.577045
+ - pos: 27.5,-2.5
parent: 2
type: Transform
- uid: 7351
components:
- - pos: 77.47492,-43.4493
+ - pos: 10.5,-47.5
parent: 2
type: Transform
- uid: 7352
components:
- - pos: -66.46611,-34.373695
+ - pos: -30.5,-4.5
parent: 2
type: Transform
-- proto: CableApcStack1
- entities:
- uid: 7353
components:
- - rot: 3.141592653589793 rad
- pos: 55.427982,45.52066
+ - pos: -30.5,-5.5
parent: 2
type: Transform
- uid: 7354
components:
- - rot: 3.141592653589793 rad
- pos: 38.439327,47.51809
+ - pos: -30.5,-3.5
parent: 2
type: Transform
- uid: 7355
components:
- - pos: -14.8449135,-96.398895
+ - pos: 14.5,-46.5
parent: 2
type: Transform
- uid: 7356
components:
- - pos: 57.114487,42.493305
+ - pos: 7.5,-47.5
parent: 2
type: Transform
- uid: 7357
components:
- - pos: -14.677503,-33.453545
+ - pos: 8.5,-47.5
parent: 2
type: Transform
-- proto: CableHV
- entities:
- uid: 7358
components:
- - pos: -79.5,-38.5
+ - pos: 9.5,-47.5
parent: 2
type: Transform
- uid: 7359
components:
- - pos: 15.5,-28.5
+ - pos: 16.5,-49.5
parent: 2
type: Transform
- uid: 7360
components:
- - pos: 7.5,-26.5
+ - pos: -30.5,-6.5
parent: 2
type: Transform
- uid: 7361
components:
- - pos: 27.5,-42.5
+ - pos: -30.5,-7.5
parent: 2
type: Transform
+- proto: CableApcStack
+ entities:
- uid: 7362
components:
- - pos: 8.5,-95.5
+ - pos: -22.574043,-20.541626
parent: 2
type: Transform
- uid: 7363
components:
- - pos: -1.5,-66.5
+ - pos: -11.530048,37.577045
parent: 2
type: Transform
- uid: 7364
components:
- - pos: 15.5,-33.5
+ - pos: 77.47492,-43.4493
parent: 2
type: Transform
- uid: 7365
components:
- - pos: 12.5,-26.5
+ - pos: -66.46611,-34.373695
parent: 2
type: Transform
+- proto: CableApcStack1
+ entities:
- uid: 7366
components:
- - pos: -11.5,-26.5
+ - rot: 3.141592653589793 rad
+ pos: 55.427982,45.52066
parent: 2
type: Transform
- uid: 7367
components:
- - pos: 2.5,-42.5
+ - rot: 3.141592653589793 rad
+ pos: 38.439327,47.51809
parent: 2
type: Transform
- uid: 7368
components:
- - pos: 6.5,-42.5
+ - pos: -14.8449135,-96.398895
parent: 2
type: Transform
- uid: 7369
components:
- - pos: 0.5,-42.5
+ - pos: 57.114487,42.493305
parent: 2
type: Transform
- uid: 7370
components:
- - pos: 4.5,-42.5
+ - pos: -14.677503,-33.453545
parent: 2
type: Transform
+- proto: CableHV
+ entities:
- uid: 7371
components:
- - pos: -5.5,-39.5
+ - pos: -79.5,-38.5
parent: 2
type: Transform
- uid: 7372
components:
- - pos: 8.5,-55.5
+ - pos: 15.5,-28.5
parent: 2
type: Transform
- uid: 7373
components:
- - pos: -1.5,-42.5
+ - pos: 7.5,-26.5
parent: 2
type: Transform
- uid: 7374
components:
- - pos: -1.5,-26.5
+ - pos: 27.5,-42.5
parent: 2
type: Transform
- uid: 7375
components:
- - pos: 15.5,-26.5
+ - pos: 8.5,-95.5
parent: 2
type: Transform
- uid: 7376
components:
- - pos: -1.5,-64.5
+ - pos: -1.5,-66.5
parent: 2
type: Transform
- uid: 7377
components:
- - pos: -12.5,-75.5
+ - pos: 15.5,-33.5
parent: 2
type: Transform
- uid: 7378
components:
- - pos: 32.5,-42.5
+ - pos: 12.5,-26.5
parent: 2
type: Transform
- uid: 7379
components:
- - pos: 14.5,-46.5
+ - pos: -11.5,-26.5
parent: 2
type: Transform
- uid: 7380
components:
- - pos: 21.5,-42.5
+ - pos: 2.5,-42.5
parent: 2
type: Transform
- uid: 7381
components:
- - pos: 38.5,-30.5
+ - pos: 6.5,-42.5
parent: 2
type: Transform
- uid: 7382
components:
- - pos: -12.5,-71.5
+ - pos: 0.5,-42.5
parent: 2
type: Transform
- uid: 7383
components:
- - pos: 4.5,-16.5
+ - pos: 4.5,-42.5
parent: 2
type: Transform
- uid: 7384
components:
- - pos: 3.5,-16.5
+ - pos: -5.5,-39.5
parent: 2
type: Transform
- uid: 7385
components:
- - pos: 2.5,-16.5
+ - pos: 8.5,-55.5
parent: 2
type: Transform
- uid: 7386
components:
- - pos: 1.5,-16.5
+ - pos: -1.5,-42.5
parent: 2
type: Transform
- uid: 7387
components:
- - pos: 1.5,-17.5
+ - pos: -1.5,-26.5
parent: 2
type: Transform
- uid: 7388
components:
- - pos: 0.5,-17.5
+ - pos: 15.5,-26.5
parent: 2
type: Transform
- uid: 7389
components:
- - pos: 39.5,-28.5
+ - pos: -1.5,-64.5
parent: 2
type: Transform
- uid: 7390
components:
- - pos: 25.5,-42.5
+ - pos: -12.5,-75.5
parent: 2
type: Transform
- uid: 7391
components:
- - pos: 24.5,-42.5
+ - pos: 32.5,-42.5
parent: 2
type: Transform
- uid: 7392
components:
- - pos: 23.5,-42.5
+ - pos: 14.5,-46.5
parent: 2
type: Transform
- uid: 7393
components:
- - pos: 22.5,-42.5
+ - pos: 21.5,-42.5
parent: 2
type: Transform
- uid: 7394
components:
- - pos: 25.5,-10.5
+ - pos: 38.5,-30.5
parent: 2
type: Transform
- uid: 7395
components:
- - pos: 24.5,-5.5
+ - pos: -12.5,-71.5
parent: 2
type: Transform
- uid: 7396
components:
- - pos: 12.5,-42.5
+ - pos: 4.5,-16.5
parent: 2
type: Transform
- uid: 7397
components:
- - pos: -14.5,34.5
+ - pos: 3.5,-16.5
parent: 2
type: Transform
- uid: 7398
components:
- - pos: 8.5,-16.5
+ - pos: 2.5,-16.5
parent: 2
type: Transform
- uid: 7399
components:
- - pos: 4.5,-14.5
+ - pos: 1.5,-16.5
parent: 2
type: Transform
- uid: 7400
components:
- - pos: -4.5,-18.5
+ - pos: 1.5,-17.5
parent: 2
type: Transform
- uid: 7401
components:
- - pos: 5.5,-92.5
+ - pos: 0.5,-17.5
parent: 2
type: Transform
- uid: 7402
components:
- - pos: 4.5,-92.5
+ - pos: 39.5,-28.5
parent: 2
type: Transform
- uid: 7403
components:
- - pos: 2.5,-92.5
+ - pos: 25.5,-42.5
parent: 2
type: Transform
- uid: 7404
components:
- - pos: 12.5,-49.5
+ - pos: 24.5,-42.5
parent: 2
type: Transform
- uid: 7405
components:
- - pos: 10.5,-49.5
+ - pos: 23.5,-42.5
parent: 2
type: Transform
- uid: 7406
components:
- - pos: 9.5,-52.5
+ - pos: 22.5,-42.5
parent: 2
type: Transform
- uid: 7407
components:
- - pos: 8.5,-54.5
+ - pos: 25.5,-10.5
parent: 2
type: Transform
- uid: 7408
components:
- - pos: 8.5,-53.5
+ - pos: 24.5,-5.5
parent: 2
type: Transform
- uid: 7409
components:
- - pos: 10.5,-55.5
+ - pos: 12.5,-42.5
parent: 2
type: Transform
- uid: 7410
components:
- - pos: 11.5,-55.5
+ - pos: -14.5,34.5
parent: 2
type: Transform
- uid: 7411
components:
- - pos: 12.5,-56.5
+ - pos: 8.5,-16.5
parent: 2
type: Transform
- uid: 7412
components:
- - pos: 14.5,-57.5
+ - pos: 4.5,-14.5
parent: 2
type: Transform
- uid: 7413
components:
- - pos: 14.5,-58.5
+ - pos: -4.5,-18.5
parent: 2
type: Transform
- uid: 7414
components:
- - pos: 39.5,-29.5
+ - pos: 5.5,-92.5
parent: 2
type: Transform
- uid: 7415
components:
- - pos: 36.5,-30.5
+ - pos: 4.5,-92.5
parent: 2
type: Transform
- uid: 7416
components:
- - pos: 10.5,-92.5
+ - pos: 2.5,-92.5
parent: 2
type: Transform
- uid: 7417
components:
- - pos: -11.5,-75.5
+ - pos: 12.5,-49.5
parent: 2
type: Transform
- uid: 7418
components:
- - pos: 6.5,-92.5
+ - pos: 10.5,-49.5
parent: 2
type: Transform
- uid: 7419
components:
- - pos: -7.5,-75.5
+ - pos: 9.5,-52.5
parent: 2
type: Transform
- uid: 7420
components:
- - pos: -5.5,-75.5
+ - pos: 8.5,-54.5
parent: 2
type: Transform
- uid: 7421
components:
- - pos: 25.5,-49.5
+ - pos: 8.5,-53.5
parent: 2
type: Transform
- uid: 7422
components:
- - pos: 0.5,-89.5
+ - pos: 10.5,-55.5
parent: 2
type: Transform
- uid: 7423
components:
- - pos: -0.5,-89.5
+ - pos: 11.5,-55.5
parent: 2
type: Transform
- uid: 7424
components:
- - pos: -1.5,-89.5
+ - pos: 12.5,-56.5
parent: 2
type: Transform
- uid: 7425
components:
- - pos: -1.5,-88.5
+ - pos: 14.5,-57.5
parent: 2
type: Transform
- uid: 7426
components:
- - pos: -1.5,-87.5
+ - pos: 14.5,-58.5
parent: 2
type: Transform
- uid: 7427
components:
- - pos: 14.5,-98.5
+ - pos: 39.5,-29.5
parent: 2
type: Transform
- uid: 7428
components:
- - pos: 12.5,-95.5
+ - pos: 36.5,-30.5
parent: 2
type: Transform
- uid: 7429
components:
- - pos: -4.5,-22.5
+ - pos: 10.5,-92.5
parent: 2
type: Transform
- uid: 7430
components:
- - pos: 10.5,-95.5
+ - pos: -11.5,-75.5
parent: 2
type: Transform
- uid: 7431
components:
- - pos: 15.5,-37.5
+ - pos: 6.5,-92.5
parent: 2
type: Transform
- uid: 7432
components:
- - pos: -15.5,-71.5
+ - pos: -7.5,-75.5
parent: 2
type: Transform
- uid: 7433
components:
- - pos: 35.5,-40.5
+ - pos: -5.5,-75.5
parent: 2
type: Transform
- uid: 7434
components:
- - pos: 13.5,-45.5
+ - pos: 25.5,-49.5
parent: 2
type: Transform
- uid: 7435
components:
- - pos: -4.5,-25.5
+ - pos: 0.5,-89.5
parent: 2
type: Transform
- uid: 7436
components:
- - pos: -5.5,-30.5
+ - pos: -0.5,-89.5
parent: 2
type: Transform
- uid: 7437
components:
- - pos: 6.5,-26.5
+ - pos: -1.5,-89.5
parent: 2
type: Transform
- uid: 7438
components:
- - pos: 5.5,-26.5
+ - pos: -1.5,-88.5
parent: 2
type: Transform
- uid: 7439
components:
- - pos: 3.5,-26.5
+ - pos: -1.5,-87.5
parent: 2
type: Transform
- uid: 7440
components:
- - pos: 2.5,-26.5
+ - pos: 14.5,-98.5
parent: 2
type: Transform
- uid: 7441
components:
- - pos: 1.5,-26.5
+ - pos: 12.5,-95.5
parent: 2
type: Transform
- uid: 7442
components:
- - pos: -17.5,-26.5
+ - pos: -4.5,-22.5
parent: 2
type: Transform
- uid: 7443
components:
- - pos: 12.5,-45.5
+ - pos: 10.5,-95.5
parent: 2
type: Transform
- uid: 7444
components:
- - pos: 15.5,-41.5
+ - pos: 15.5,-37.5
parent: 2
type: Transform
- uid: 7445
components:
- - pos: 13.5,-42.5
+ - pos: -15.5,-71.5
parent: 2
type: Transform
- uid: 7446
components:
- - pos: 10.5,-42.5
+ - pos: 35.5,-40.5
parent: 2
type: Transform
- uid: 7447
components:
- - pos: 7.5,-42.5
+ - pos: 13.5,-45.5
parent: 2
type: Transform
- uid: 7448
components:
- - pos: 8.5,-42.5
+ - pos: -4.5,-25.5
parent: 2
type: Transform
- uid: 7449
components:
- - pos: 25.5,-6.5
+ - pos: -5.5,-30.5
parent: 2
type: Transform
- uid: 7450
components:
- - pos: 25.5,-12.5
+ - pos: 6.5,-26.5
parent: 2
type: Transform
- uid: 7451
components:
- - pos: 25.5,-13.5
+ - pos: 5.5,-26.5
parent: 2
type: Transform
- uid: 7452
components:
- - pos: 25.5,-14.5
+ - pos: 3.5,-26.5
parent: 2
type: Transform
- uid: 7453
components:
- - pos: 2.5,-71.5
+ - pos: 2.5,-26.5
parent: 2
type: Transform
- uid: 7454
components:
- - pos: -12.5,-73.5
+ - pos: 1.5,-26.5
parent: 2
type: Transform
- uid: 7455
components:
- - pos: 35.5,-34.5
+ - pos: -17.5,-26.5
parent: 2
type: Transform
- uid: 7456
components:
- - pos: 25.5,-44.5
+ - pos: 15.5,-41.5
parent: 2
type: Transform
- uid: 7457
components:
- - pos: 25.5,-43.5
+ - pos: 13.5,-42.5
parent: 2
type: Transform
- uid: 7458
components:
- - pos: 33.5,-42.5
+ - pos: 10.5,-42.5
parent: 2
type: Transform
- uid: 7459
components:
- - pos: -67.5,-25.5
+ - pos: 7.5,-42.5
parent: 2
type: Transform
- uid: 7460
components:
- - pos: -2.5,-61.5
+ - pos: 8.5,-42.5
parent: 2
type: Transform
- uid: 7461
components:
- - pos: -2.5,-59.5
+ - pos: 25.5,-6.5
parent: 2
type: Transform
- uid: 7462
components:
- - pos: -6.5,-69.5
+ - pos: 25.5,-12.5
parent: 2
type: Transform
- uid: 7463
components:
- - pos: -8.5,-19.5
+ - pos: 25.5,-13.5
parent: 2
type: Transform
- uid: 7464
components:
- - pos: -15.5,-72.5
+ - pos: 25.5,-14.5
parent: 2
type: Transform
- uid: 7465
components:
- - pos: 11.5,-92.5
+ - pos: 2.5,-71.5
parent: 2
type: Transform
- uid: 7466
components:
- - pos: 18.5,-95.5
+ - pos: -12.5,-73.5
parent: 2
type: Transform
- uid: 7467
components:
- - pos: 12.5,-98.5
+ - pos: 35.5,-34.5
parent: 2
type: Transform
- uid: 7468
components:
- - pos: -1.5,-77.5
+ - pos: 25.5,-44.5
parent: 2
type: Transform
- uid: 7469
components:
- - pos: -1.5,-80.5
+ - pos: 25.5,-43.5
parent: 2
type: Transform
- uid: 7470
components:
- - pos: -1.5,-68.5
+ - pos: 33.5,-42.5
parent: 2
type: Transform
- uid: 7471
components:
- - pos: 12.5,-47.5
+ - pos: -67.5,-25.5
parent: 2
type: Transform
- uid: 7472
components:
- - pos: -12.5,-69.5
+ - pos: -2.5,-61.5
parent: 2
type: Transform
- uid: 7473
components:
- - pos: 8.5,-92.5
+ - pos: -2.5,-59.5
parent: 2
type: Transform
- uid: 7474
components:
- - pos: 23.5,-17.5
+ - pos: -6.5,-69.5
parent: 2
type: Transform
- uid: 7475
components:
- - pos: -14.5,-71.5
+ - pos: -8.5,-19.5
parent: 2
type: Transform
- uid: 7476
components:
- - pos: -15.5,-73.5
+ - pos: -15.5,-72.5
parent: 2
type: Transform
- uid: 7477
components:
- - pos: 15.5,-43.5
+ - pos: 11.5,-92.5
parent: 2
type: Transform
- uid: 7478
components:
- - pos: -2.5,-63.5
+ - pos: 18.5,-95.5
parent: 2
type: Transform
- uid: 7479
components:
- - pos: 12.5,-57.5
+ - pos: 12.5,-98.5
parent: 2
type: Transform
- uid: 7480
components:
- - pos: 9.5,-55.5
+ - pos: -1.5,-77.5
parent: 2
type: Transform
- uid: 7481
components:
- - pos: 15.5,-40.5
+ - pos: -1.5,-80.5
parent: 2
type: Transform
- uid: 7482
components:
- - pos: -4.5,-69.5
+ - pos: -1.5,-68.5
parent: 2
type: Transform
- uid: 7483
components:
- - pos: -1.5,-65.5
+ - pos: -12.5,-69.5
parent: 2
type: Transform
- uid: 7484
components:
- - pos: 14.5,-47.5
+ - pos: 8.5,-92.5
parent: 2
type: Transform
- uid: 7485
components:
- - pos: 14.5,-45.5
+ - pos: 23.5,-17.5
parent: 2
type: Transform
- uid: 7486
components:
- - pos: -0.5,-42.5
+ - pos: -14.5,-71.5
parent: 2
type: Transform
- uid: 7487
components:
- - pos: 1.5,-42.5
+ - pos: -15.5,-73.5
parent: 2
type: Transform
- uid: 7488
components:
- - pos: 3.5,-42.5
+ - pos: 15.5,-43.5
parent: 2
type: Transform
- uid: 7489
components:
- - pos: 5.5,-42.5
+ - pos: -2.5,-63.5
parent: 2
type: Transform
- uid: 7490
components:
- - pos: 31.5,-5.5
+ - pos: 12.5,-57.5
parent: 2
type: Transform
- uid: 7491
components:
- - pos: 25.5,-5.5
+ - pos: 9.5,-55.5
parent: 2
type: Transform
- uid: 7492
components:
- - pos: -4.5,-24.5
+ - pos: 15.5,-40.5
parent: 2
type: Transform
- uid: 7493
components:
- - pos: -5.5,-40.5
+ - pos: -4.5,-69.5
parent: 2
type: Transform
- uid: 7494
components:
- - pos: -5.5,-38.5
+ - pos: -1.5,-65.5
parent: 2
type: Transform
- uid: 7495
components:
- - pos: -5.5,-26.5
+ - pos: 14.5,-47.5
parent: 2
type: Transform
- uid: 7496
components:
- - pos: 18.5,-29.5
+ - pos: 14.5,-45.5
parent: 2
type: Transform
- uid: 7497
components:
- - pos: -0.5,-17.5
+ - pos: -0.5,-42.5
parent: 2
type: Transform
- uid: 7498
components:
- - pos: 30.5,-3.5
+ - pos: 1.5,-42.5
parent: 2
type: Transform
- uid: 7499
components:
- - pos: 30.5,7.5
+ - pos: 3.5,-42.5
parent: 2
type: Transform
- uid: 7500
components:
- - pos: -24.5,-14.5
+ - pos: 5.5,-42.5
parent: 2
type: Transform
- uid: 7501
components:
- - pos: -6.5,-19.5
+ - pos: 31.5,-5.5
parent: 2
type: Transform
- uid: 7502
components:
- - pos: -5.5,-19.5
+ - pos: 25.5,-5.5
parent: 2
type: Transform
- uid: 7503
components:
- - pos: -4.5,-19.5
+ - pos: -4.5,-24.5
parent: 2
type: Transform
- uid: 7504
components:
- - pos: -4.5,-21.5
+ - pos: -5.5,-40.5
parent: 2
type: Transform
- uid: 7505
components:
- - pos: -7.5,-19.5
+ - pos: -5.5,-38.5
parent: 2
type: Transform
- uid: 7506
components:
- - pos: 2.5,-91.5
+ - pos: -5.5,-26.5
parent: 2
type: Transform
- uid: 7507
components:
- - pos: 11.5,-45.5
+ - pos: 18.5,-29.5
parent: 2
type: Transform
- uid: 7508
components:
- - pos: 13.5,-47.5
+ - pos: -0.5,-17.5
parent: 2
type: Transform
- uid: 7509
components:
- - pos: 11.5,-47.5
+ - pos: 30.5,-3.5
parent: 2
type: Transform
- uid: 7510
components:
- - pos: 7.5,-92.5
+ - pos: 30.5,7.5
parent: 2
type: Transform
- uid: 7511
components:
- - pos: -3.5,-75.5
+ - pos: -24.5,-14.5
parent: 2
type: Transform
- uid: 7512
components:
- - pos: 20.5,-42.5
+ - pos: -6.5,-19.5
parent: 2
type: Transform
- uid: 7513
components:
- - pos: -65.5,-25.5
+ - pos: -5.5,-19.5
parent: 2
type: Transform
- uid: 7514
components:
- - pos: -24.5,-13.5
+ - pos: -4.5,-19.5
parent: 2
type: Transform
- uid: 7515
components:
- - pos: 2.5,-89.5
+ - pos: -4.5,-21.5
parent: 2
type: Transform
- uid: 7516
components:
- - pos: -1.5,-84.5
+ - pos: -7.5,-19.5
parent: 2
type: Transform
- uid: 7517
components:
- - pos: -1.5,-85.5
+ - pos: 2.5,-91.5
parent: 2
type: Transform
- uid: 7518
components:
- - pos: 17.5,-95.5
+ - pos: 13.5,-47.5
parent: 2
type: Transform
- uid: 7519
components:
- - pos: 4.5,-95.5
+ - pos: 7.5,-92.5
parent: 2
type: Transform
- uid: 7520
components:
- - pos: 25.5,-11.5
+ - pos: -3.5,-75.5
parent: 2
type: Transform
- uid: 7521
components:
- - pos: 25.5,-9.5
+ - pos: 20.5,-42.5
parent: 2
type: Transform
- uid: 7522
components:
- - pos: 25.5,-8.5
+ - pos: -65.5,-25.5
parent: 2
type: Transform
- uid: 7523
components:
- - pos: 25.5,-7.5
+ - pos: -24.5,-13.5
parent: 2
type: Transform
- uid: 7524
components:
- - pos: 9.5,-42.5
+ - pos: 2.5,-89.5
parent: 2
type: Transform
- uid: 7525
components:
- - pos: 14.5,-42.5
+ - pos: -1.5,-84.5
parent: 2
type: Transform
- uid: 7526
components:
- - pos: 11.5,-42.5
+ - pos: -1.5,-85.5
parent: 2
type: Transform
- uid: 7527
components:
- - pos: 4.5,-26.5
+ - pos: 17.5,-95.5
parent: 2
type: Transform
- uid: 7528
components:
- - pos: -3.5,-17.5
+ - pos: 4.5,-95.5
parent: 2
type: Transform
- uid: 7529
components:
- - pos: 10.5,-98.5
+ - pos: 25.5,-11.5
parent: 2
type: Transform
- uid: 7530
components:
- - pos: 7.5,-95.5
+ - pos: 25.5,-9.5
parent: 2
type: Transform
- uid: 7531
components:
- - pos: 15.5,-42.5
+ - pos: 25.5,-8.5
parent: 2
type: Transform
- uid: 7532
components:
- - pos: 15.5,-44.5
+ - pos: 25.5,-7.5
parent: 2
type: Transform
- uid: 7533
components:
- - pos: 15.5,-36.5
+ - pos: 9.5,-42.5
parent: 2
type: Transform
- uid: 7534
components:
- - pos: 15.5,-34.5
+ - pos: 14.5,-42.5
parent: 2
type: Transform
- uid: 7535
components:
- - pos: 15.5,-32.5
+ - pos: 11.5,-42.5
parent: 2
type: Transform
- uid: 7536
components:
- - pos: -3.5,-69.5
+ - pos: 4.5,-26.5
parent: 2
type: Transform
- uid: 7537
components:
- - pos: -5.5,-69.5
+ - pos: -3.5,-17.5
parent: 2
type: Transform
- uid: 7538
components:
- - pos: 14.5,-48.5
+ - pos: 10.5,-98.5
parent: 2
type: Transform
- uid: 7539
components:
- - pos: -6.5,-71.5
+ - pos: 7.5,-95.5
parent: 2
type: Transform
- uid: 7540
components:
- - pos: -6.5,-70.5
+ - pos: 15.5,-42.5
parent: 2
type: Transform
- uid: 7541
components:
- - pos: -8.5,-71.5
+ - pos: 15.5,-44.5
parent: 2
type: Transform
- uid: 7542
components:
- - pos: -10.5,-71.5
+ - pos: 15.5,-36.5
parent: 2
type: Transform
- uid: 7543
components:
- - pos: 14.5,-49.5
+ - pos: 15.5,-34.5
parent: 2
type: Transform
- uid: 7544
components:
- - pos: 13.5,-49.5
+ - pos: 15.5,-32.5
parent: 2
type: Transform
- uid: 7545
components:
- - pos: 11.5,-49.5
+ - pos: -3.5,-69.5
parent: 2
type: Transform
- uid: 7546
components:
- - pos: -11.5,-71.5
+ - pos: -5.5,-69.5
parent: 2
type: Transform
- uid: 7547
components:
- - pos: 25.5,-17.5
+ - pos: 14.5,-48.5
parent: 2
type: Transform
- uid: 7548
components:
- - pos: 38.5,-28.5
+ - pos: -6.5,-71.5
parent: 2
type: Transform
- uid: 7549
components:
- - pos: 37.5,-30.5
+ - pos: -6.5,-70.5
parent: 2
type: Transform
- uid: 7550
components:
- - pos: 35.5,-30.5
+ - pos: -8.5,-71.5
parent: 2
type: Transform
- uid: 7551
components:
- - pos: 35.5,-29.5
+ - pos: -10.5,-71.5
parent: 2
type: Transform
- uid: 7552
components:
- - pos: 9.5,-101.5
+ - pos: 14.5,-49.5
parent: 2
type: Transform
- uid: 7553
components:
- - pos: -11.5,58.5
+ - pos: 13.5,-49.5
parent: 2
type: Transform
- uid: 7554
components:
- - pos: -12.5,58.5
+ - pos: 11.5,-49.5
parent: 2
type: Transform
- uid: 7555
components:
- - pos: -15.5,44.5
+ - pos: -11.5,-71.5
parent: 2
type: Transform
- uid: 7556
components:
- - pos: -16.5,44.5
+ - pos: 25.5,-17.5
parent: 2
type: Transform
- uid: 7557
components:
- - pos: -17.5,44.5
+ - pos: 38.5,-28.5
parent: 2
type: Transform
- uid: 7558
components:
- - pos: -17.5,45.5
+ - pos: 37.5,-30.5
parent: 2
type: Transform
- uid: 7559
components:
- - pos: -17.5,46.5
+ - pos: 35.5,-30.5
parent: 2
type: Transform
- uid: 7560
components:
- - pos: -17.5,47.5
+ - pos: 35.5,-29.5
parent: 2
type: Transform
- uid: 7561
components:
- - pos: -17.5,48.5
+ - pos: 9.5,-101.5
parent: 2
type: Transform
- uid: 7562
components:
- - pos: -17.5,49.5
+ - pos: -11.5,58.5
parent: 2
type: Transform
- uid: 7563
components:
- - pos: -17.5,50.5
+ - pos: -12.5,58.5
parent: 2
type: Transform
- uid: 7564
components:
- - pos: -16.5,50.5
+ - pos: -15.5,44.5
parent: 2
type: Transform
- uid: 7565
components:
- - pos: -13.5,50.5
+ - pos: -16.5,44.5
parent: 2
type: Transform
- uid: 7566
components:
- - pos: -15.5,50.5
+ - pos: -17.5,44.5
parent: 2
type: Transform
- uid: 7567
components:
- - pos: -14.5,50.5
+ - pos: -17.5,45.5
parent: 2
type: Transform
- uid: 7568
components:
- - pos: -13.5,58.5
+ - pos: -17.5,46.5
parent: 2
type: Transform
- uid: 7569
components:
- - pos: -13.5,57.5
+ - pos: -17.5,47.5
parent: 2
type: Transform
- uid: 7570
components:
- - pos: -13.5,51.5
+ - pos: -17.5,48.5
parent: 2
type: Transform
- uid: 7571
components:
- - pos: -13.5,52.5
+ - pos: -17.5,49.5
parent: 2
type: Transform
- uid: 7572
components:
- - pos: -13.5,53.5
+ - pos: -17.5,50.5
parent: 2
type: Transform
- uid: 7573
components:
- - pos: -13.5,54.5
+ - pos: -16.5,50.5
parent: 2
type: Transform
- uid: 7574
components:
- - pos: -13.5,55.5
+ - pos: -13.5,50.5
parent: 2
type: Transform
- uid: 7575
components:
- - pos: -13.5,56.5
+ - pos: -15.5,50.5
parent: 2
type: Transform
- uid: 7576
components:
- - pos: 15.5,-39.5
+ - pos: -14.5,50.5
parent: 2
type: Transform
- uid: 7577
components:
- - pos: -6.5,-75.5
+ - pos: -13.5,58.5
parent: 2
type: Transform
- uid: 7578
components:
- - pos: 18.5,-42.5
+ - pos: -13.5,57.5
parent: 2
type: Transform
- uid: 7579
components:
- - pos: -24.5,-15.5
+ - pos: -13.5,51.5
parent: 2
type: Transform
- uid: 7580
components:
- - pos: 17.5,-29.5
+ - pos: -13.5,52.5
parent: 2
type: Transform
- uid: 7581
components:
- - pos: 35.5,-38.5
+ - pos: -13.5,53.5
parent: 2
type: Transform
- uid: 7582
components:
- - pos: 26.5,-42.5
+ - pos: -13.5,54.5
parent: 2
type: Transform
- uid: 7583
components:
- - pos: -13.5,-26.5
+ - pos: -13.5,55.5
parent: 2
type: Transform
- uid: 7584
components:
- - pos: -10.5,-26.5
+ - pos: -13.5,56.5
parent: 2
type: Transform
- uid: 7585
components:
- - pos: -5.5,-34.5
+ - pos: 15.5,-39.5
parent: 2
type: Transform
- uid: 7586
components:
- - pos: -5.5,-41.5
+ - pos: -6.5,-75.5
parent: 2
type: Transform
- uid: 7587
components:
- - pos: 13.5,-57.5
+ - pos: 18.5,-42.5
parent: 2
type: Transform
- uid: 7588
components:
- - pos: 12.5,-55.5
+ - pos: -24.5,-15.5
parent: 2
type: Transform
- uid: 7589
components:
- - pos: 8.5,-52.5
+ - pos: 17.5,-29.5
parent: 2
type: Transform
- uid: 7590
components:
- - pos: -11.5,-42.5
+ - pos: 35.5,-38.5
parent: 2
type: Transform
- uid: 7591
components:
- - pos: -8.5,-26.5
+ - pos: 26.5,-42.5
parent: 2
type: Transform
- uid: 7592
components:
- - pos: -13.5,-73.5
+ - pos: -13.5,-26.5
parent: 2
type: Transform
- uid: 7593
components:
- - pos: 25.5,-47.5
+ - pos: -10.5,-26.5
parent: 2
type: Transform
- uid: 7594
components:
- - pos: -5.5,-31.5
+ - pos: -5.5,-34.5
parent: 2
type: Transform
- uid: 7595
components:
- - pos: -5.5,-33.5
+ - pos: -5.5,-41.5
parent: 2
type: Transform
- uid: 7596
components:
- - pos: -14.5,-26.5
+ - pos: 13.5,-57.5
parent: 2
type: Transform
- uid: 7597
components:
- - pos: -15.5,-26.5
+ - pos: 12.5,-55.5
parent: 2
type: Transform
- uid: 7598
components:
- - pos: -3.5,-26.5
+ - pos: 8.5,-52.5
parent: 2
type: Transform
- uid: 7599
components:
- - pos: -2.5,-26.5
+ - pos: -11.5,-42.5
parent: 2
type: Transform
- uid: 7600
components:
- - pos: -0.5,-26.5
+ - pos: -8.5,-26.5
parent: 2
type: Transform
- uid: 7601
components:
- - pos: 9.5,-26.5
+ - pos: -13.5,-73.5
parent: 2
type: Transform
- uid: 7602
components:
- - pos: 13.5,-26.5
+ - pos: 25.5,-47.5
parent: 2
type: Transform
- uid: 7603
components:
- - pos: 15.5,-29.5
+ - pos: -5.5,-31.5
parent: 2
type: Transform
- uid: 7604
components:
- - pos: -4.5,-42.5
+ - pos: -5.5,-33.5
parent: 2
type: Transform
- uid: 7605
components:
- - pos: -7.5,-42.5
+ - pos: -14.5,-26.5
parent: 2
type: Transform
- uid: 7606
components:
- - pos: -8.5,-42.5
+ - pos: -15.5,-26.5
parent: 2
type: Transform
- uid: 7607
components:
- - pos: -10.5,-42.5
+ - pos: -3.5,-26.5
parent: 2
type: Transform
- uid: 7608
components:
- - pos: -12.5,-42.5
+ - pos: -2.5,-26.5
parent: 2
type: Transform
- uid: 7609
components:
- - pos: -13.5,-42.5
+ - pos: -0.5,-26.5
parent: 2
type: Transform
- uid: 7610
components:
- - pos: 10.5,-51.5
+ - pos: 9.5,-26.5
parent: 2
type: Transform
- uid: 7611
components:
- - pos: -15.5,-42.5
+ - pos: 13.5,-26.5
parent: 2
type: Transform
- uid: 7612
components:
- - pos: -12.5,-70.5
+ - pos: 15.5,-29.5
parent: 2
type: Transform
- uid: 7613
components:
- - pos: -8.5,-75.5
+ - pos: -4.5,-42.5
parent: 2
type: Transform
- uid: 7614
components:
- - pos: -18.5,-42.5
+ - pos: -7.5,-42.5
parent: 2
type: Transform
- uid: 7615
components:
- - pos: 15.5,-95.5
+ - pos: -8.5,-42.5
parent: 2
type: Transform
- uid: 7616
components:
- - pos: 25.5,-50.5
+ - pos: -10.5,-42.5
parent: 2
type: Transform
- uid: 7617
components:
- - pos: 9.5,-92.5
+ - pos: -12.5,-42.5
parent: 2
type: Transform
- uid: 7618
components:
- - pos: 13.5,-95.5
+ - pos: -13.5,-42.5
parent: 2
type: Transform
- uid: 7619
components:
- - pos: 34.5,-42.5
+ - pos: 10.5,-51.5
parent: 2
type: Transform
- uid: 7620
components:
- - pos: 35.5,-42.5
+ - pos: -15.5,-42.5
parent: 2
type: Transform
- uid: 7621
components:
- - pos: 25.5,-45.5
+ - pos: -12.5,-70.5
parent: 2
type: Transform
- uid: 7622
components:
- - pos: 35.5,-32.5
+ - pos: -8.5,-75.5
parent: 2
type: Transform
- uid: 7623
components:
- - pos: 35.5,-36.5
+ - pos: -18.5,-42.5
parent: 2
type: Transform
- uid: 7624
components:
- - pos: 70.5,-46.5
+ - pos: 15.5,-95.5
parent: 2
type: Transform
- uid: 7625
components:
- - pos: -12.5,-74.5
+ - pos: 25.5,-50.5
parent: 2
type: Transform
- uid: 7626
components:
- - pos: -0.5,-72.5
+ - pos: 9.5,-92.5
parent: 2
type: Transform
- uid: 7627
components:
- - pos: 11.5,-105.5
+ - pos: 13.5,-95.5
parent: 2
type: Transform
- uid: 7628
components:
- - pos: -1.5,-86.5
+ - pos: 34.5,-42.5
parent: 2
type: Transform
- uid: 7629
components:
- - pos: -16.5,-26.5
+ - pos: 35.5,-42.5
parent: 2
type: Transform
- uid: 7630
components:
- - pos: 11.5,-26.5
+ - pos: 25.5,-45.5
parent: 2
type: Transform
- uid: 7631
components:
- - pos: -17.5,-42.5
+ - pos: 35.5,-32.5
parent: 2
type: Transform
- uid: 7632
components:
- - pos: -9.5,-71.5
+ - pos: 35.5,-36.5
parent: 2
type: Transform
- uid: 7633
components:
- - pos: 6.5,-14.5
+ - pos: 70.5,-46.5
parent: 2
type: Transform
- uid: 7634
components:
- - pos: -4.5,-19.5
+ - pos: -12.5,-74.5
parent: 2
type: Transform
- uid: 7635
components:
- - pos: -5.5,-32.5
+ - pos: -0.5,-72.5
parent: 2
type: Transform
- uid: 7636
components:
- - pos: 25.5,-48.5
+ - pos: 11.5,-105.5
parent: 2
type: Transform
- uid: 7637
components:
- - pos: -9.5,-26.5
+ - pos: -1.5,-86.5
parent: 2
type: Transform
- uid: 7638
components:
- - pos: 25.5,-46.5
+ - pos: -16.5,-26.5
parent: 2
type: Transform
- uid: 7639
components:
- - pos: -5.5,-42.5
+ - pos: 11.5,-26.5
parent: 2
type: Transform
- uid: 7640
components:
- - pos: 15.5,-38.5
+ - pos: -17.5,-42.5
parent: 2
type: Transform
- uid: 7641
components:
- - pos: -5.5,-36.5
+ - pos: -9.5,-71.5
parent: 2
type: Transform
- uid: 7642
components:
- - pos: 25.5,-51.5
+ - pos: 6.5,-14.5
parent: 2
type: Transform
- uid: 7643
components:
- - pos: 15.5,-45.5
+ - pos: -4.5,-19.5
parent: 2
type: Transform
- uid: 7644
components:
- - pos: 15.5,-31.5
+ - pos: -5.5,-32.5
parent: 2
type: Transform
- uid: 7645
components:
- - pos: 6.5,-95.5
+ - pos: 25.5,-48.5
parent: 2
type: Transform
- uid: 7646
components:
- - pos: 15.5,-35.5
+ - pos: -9.5,-26.5
parent: 2
type: Transform
- uid: 7647
components:
- - pos: -16.5,-42.5
+ - pos: 25.5,-46.5
parent: 2
type: Transform
- uid: 7648
components:
- - pos: 15.5,-30.5
+ - pos: -5.5,-42.5
parent: 2
type: Transform
- uid: 7649
components:
- - pos: 10.5,-50.5
+ - pos: 15.5,-38.5
parent: 2
type: Transform
- uid: 7650
components:
- - pos: -1.5,-63.5
+ - pos: -5.5,-36.5
parent: 2
type: Transform
- uid: 7651
components:
- - pos: -12.5,-26.5
+ - pos: 25.5,-51.5
parent: 2
type: Transform
- uid: 7652
components:
- - pos: 0.5,-26.5
+ - pos: 15.5,-45.5
parent: 2
type: Transform
- uid: 7653
components:
- - pos: 14.5,-26.5
+ - pos: 15.5,-31.5
parent: 2
type: Transform
- uid: 7654
components:
- - pos: 15.5,-27.5
+ - pos: 6.5,-95.5
parent: 2
type: Transform
- uid: 7655
components:
- - pos: -6.5,-42.5
+ - pos: 15.5,-35.5
parent: 2
type: Transform
- uid: 7656
components:
- - pos: -3.5,-42.5
+ - pos: -16.5,-42.5
parent: 2
type: Transform
- uid: 7657
components:
- - pos: -2.5,-17.5
+ - pos: 15.5,-30.5
parent: 2
type: Transform
- uid: 7658
components:
- - pos: -1.5,-17.5
+ - pos: 10.5,-50.5
parent: 2
type: Transform
- uid: 7659
components:
- - pos: 30.5,-2.5
+ - pos: -1.5,-63.5
parent: 2
type: Transform
- uid: 7660
components:
- - pos: 30.5,-4.5
+ - pos: -12.5,-26.5
parent: 2
type: Transform
- uid: 7661
components:
- - pos: -4.5,-75.5
+ - pos: 0.5,-26.5
parent: 2
type: Transform
- uid: 7662
components:
- - pos: 24.5,-17.5
+ - pos: 14.5,-26.5
parent: 2
type: Transform
- uid: 7663
components:
- - pos: 25.5,-16.5
+ - pos: 15.5,-27.5
parent: 2
type: Transform
- uid: 7664
components:
- - pos: 25.5,-15.5
+ - pos: -6.5,-42.5
parent: 2
type: Transform
- uid: 7665
components:
- - pos: 17.5,-5.5
+ - pos: -3.5,-42.5
parent: 2
type: Transform
- uid: 7666
components:
- - pos: 32.5,-17.5
+ - pos: -2.5,-17.5
parent: 2
type: Transform
- uid: 7667
components:
- - pos: 35.5,-21.5
+ - pos: -1.5,-17.5
parent: 2
type: Transform
- uid: 7668
components:
- - pos: -13.5,-71.5
+ - pos: 30.5,-2.5
parent: 2
type: Transform
- uid: 7669
components:
- - pos: 9.5,-95.5
+ - pos: 30.5,-4.5
parent: 2
type: Transform
- uid: 7670
components:
- - pos: 13.5,-98.5
+ - pos: -4.5,-75.5
parent: 2
type: Transform
- uid: 7671
components:
- - pos: -2.5,-77.5
+ - pos: 24.5,-17.5
parent: 2
type: Transform
- uid: 7672
components:
- - pos: -2.5,-78.5
+ - pos: 25.5,-16.5
parent: 2
type: Transform
- uid: 7673
components:
- - pos: -1.5,-82.5
+ - pos: 25.5,-15.5
parent: 2
type: Transform
- uid: 7674
components:
- - pos: -9.5,-75.5
+ - pos: 17.5,-5.5
parent: 2
type: Transform
- uid: 7675
components:
- - pos: 28.5,-42.5
+ - pos: 32.5,-17.5
parent: 2
type: Transform
- uid: 7676
components:
- - pos: -4.5,-23.5
+ - pos: 35.5,-21.5
parent: 2
type: Transform
- uid: 7677
components:
- - pos: -5.5,-28.5
+ - pos: -13.5,-71.5
parent: 2
type: Transform
- uid: 7678
components:
- - pos: -5.5,-35.5
+ - pos: 9.5,-95.5
parent: 2
type: Transform
- uid: 7679
components:
- - pos: 10.5,-26.5
+ - pos: 13.5,-98.5
parent: 2
type: Transform
- uid: 7680
components:
- - pos: 8.5,-26.5
+ - pos: -2.5,-77.5
parent: 2
type: Transform
- uid: 7681
components:
- - pos: -7.5,-71.5
+ - pos: -2.5,-78.5
parent: 2
type: Transform
- uid: 7682
components:
- - pos: -7.5,-26.5
+ - pos: -1.5,-82.5
parent: 2
type: Transform
- uid: 7683
components:
- - pos: -6.5,-26.5
+ - pos: -9.5,-75.5
parent: 2
type: Transform
- uid: 7684
components:
- - pos: -9.5,-42.5
+ - pos: 28.5,-42.5
parent: 2
type: Transform
- uid: 7685
components:
- - pos: 8.5,-98.5
+ - pos: -4.5,-23.5
parent: 2
type: Transform
- uid: 7686
components:
- - pos: 2.5,-90.5
+ - pos: -5.5,-28.5
parent: 2
type: Transform
- uid: 7687
components:
- - pos: 15.5,-31.5
+ - pos: -5.5,-35.5
parent: 2
type: Transform
- uid: 7688
components:
- - pos: 14.5,-95.5
+ - pos: 10.5,-26.5
parent: 2
type: Transform
- uid: 7689
components:
- - pos: -5.5,-37.5
+ - pos: 8.5,-26.5
parent: 2
type: Transform
- uid: 7690
components:
- - pos: -14.5,-73.5
+ - pos: -7.5,-71.5
parent: 2
type: Transform
- uid: 7691
components:
- - pos: 35.5,-28.5
+ - pos: -7.5,-26.5
parent: 2
type: Transform
- uid: 7692
components:
- - pos: -14.5,-42.5
+ - pos: -6.5,-26.5
parent: 2
type: Transform
- uid: 7693
components:
- - pos: 1.5,-89.5
+ - pos: -9.5,-42.5
parent: 2
type: Transform
- uid: 7694
components:
- - pos: 3.5,-92.5
+ - pos: 8.5,-98.5
parent: 2
type: Transform
- uid: 7695
components:
- - pos: 5.5,-95.5
+ - pos: 2.5,-90.5
parent: 2
type: Transform
- uid: 7696
components:
- - pos: 13.5,-101.5
+ - pos: 15.5,-31.5
parent: 2
type: Transform
- uid: 7697
components:
- - pos: 9.5,-14.5
+ - pos: 14.5,-95.5
parent: 2
type: Transform
- uid: 7698
components:
- - pos: -4.5,-20.5
+ - pos: -5.5,-37.5
parent: 2
type: Transform
- uid: 7699
components:
- - pos: 16.5,-29.5
+ - pos: -14.5,-73.5
parent: 2
type: Transform
- uid: 7700
components:
- - pos: -4.5,-26.5
+ - pos: 35.5,-28.5
parent: 2
type: Transform
- uid: 7701
components:
- - pos: 16.5,-95.5
+ - pos: -14.5,-42.5
parent: 2
type: Transform
- uid: 7702
components:
- - pos: -2.5,-42.5
+ - pos: 1.5,-89.5
parent: 2
type: Transform
- uid: 7703
components:
- - pos: 16.5,-42.5
+ - pos: 3.5,-92.5
parent: 2
type: Transform
- uid: 7704
components:
- - pos: 7.5,-14.5
+ - pos: 5.5,-95.5
parent: 2
type: Transform
- uid: 7705
components:
- - pos: 12.5,-101.5
+ - pos: 13.5,-101.5
parent: 2
type: Transform
- uid: 7706
components:
- - pos: 10.5,-101.5
+ - pos: 9.5,-14.5
parent: 2
type: Transform
- uid: 7707
components:
- - pos: 8.5,-101.5
+ - pos: -4.5,-20.5
parent: 2
type: Transform
- uid: 7708
components:
- - pos: 14.5,-101.5
+ - pos: 16.5,-29.5
parent: 2
type: Transform
- uid: 7709
components:
- - pos: 9.5,-104.5
+ - pos: -4.5,-26.5
parent: 2
type: Transform
- uid: 7710
components:
- - pos: 13.5,-104.5
+ - pos: 16.5,-95.5
parent: 2
type: Transform
- uid: 7711
components:
- - pos: 9.5,-98.5
+ - pos: -2.5,-42.5
parent: 2
type: Transform
- uid: 7712
components:
- - pos: -1.5,-83.5
+ - pos: 16.5,-42.5
parent: 2
type: Transform
- uid: 7713
components:
- - pos: -1.5,-81.5
+ - pos: 7.5,-14.5
parent: 2
type: Transform
- uid: 7714
components:
- - pos: -1.5,-79.5
+ - pos: 12.5,-101.5
parent: 2
type: Transform
- uid: 7715
components:
- - pos: -2.5,-79.5
+ - pos: 10.5,-101.5
parent: 2
type: Transform
- uid: 7716
components:
- - pos: -2.5,-75.5
+ - pos: 8.5,-101.5
parent: 2
type: Transform
- uid: 7717
components:
- - pos: -2.5,-76.5
+ - pos: 14.5,-101.5
parent: 2
type: Transform
- uid: 7718
components:
- - pos: -10.5,-75.5
+ - pos: 9.5,-104.5
parent: 2
type: Transform
- uid: 7719
components:
- - pos: 15.5,-58.5
+ - pos: 13.5,-104.5
parent: 2
type: Transform
- uid: 7720
components:
- - pos: -5.5,-27.5
+ - pos: 9.5,-98.5
parent: 2
type: Transform
- uid: 7721
components:
- - pos: -5.5,-29.5
+ - pos: -1.5,-83.5
parent: 2
type: Transform
- uid: 7722
components:
- - pos: 21.5,-17.5
+ - pos: -1.5,-81.5
parent: 2
type: Transform
- uid: 7723
components:
- - pos: 22.5,-17.5
+ - pos: -1.5,-79.5
parent: 2
type: Transform
- uid: 7724
components:
- - pos: 20.5,-17.5
+ - pos: -2.5,-79.5
parent: 2
type: Transform
- uid: 7725
components:
- - pos: 19.5,-17.5
+ - pos: -2.5,-75.5
parent: 2
type: Transform
- uid: 7726
components:
- - pos: 18.5,-17.5
+ - pos: -2.5,-76.5
parent: 2
type: Transform
- uid: 7727
components:
- - pos: 17.5,-17.5
+ - pos: -10.5,-75.5
parent: 2
type: Transform
- uid: 7728
components:
- - pos: 16.5,-17.5
+ - pos: 15.5,-58.5
parent: 2
type: Transform
- uid: 7729
components:
- - pos: 15.5,-22.5
+ - pos: -5.5,-27.5
parent: 2
type: Transform
- uid: 7730
components:
- - pos: 15.5,-17.5
+ - pos: -5.5,-29.5
parent: 2
type: Transform
- uid: 7731
components:
- - pos: 15.5,-18.5
+ - pos: 21.5,-17.5
parent: 2
type: Transform
- uid: 7732
components:
- - pos: 15.5,-19.5
+ - pos: 22.5,-17.5
parent: 2
type: Transform
- uid: 7733
components:
- - pos: 15.5,-20.5
+ - pos: 20.5,-17.5
parent: 2
type: Transform
- uid: 7734
components:
- - pos: 15.5,-21.5
+ - pos: 19.5,-17.5
parent: 2
type: Transform
- uid: 7735
components:
- - pos: 15.5,-23.5
+ - pos: 18.5,-17.5
parent: 2
type: Transform
- uid: 7736
components:
- - pos: 15.5,-24.5
+ - pos: 17.5,-17.5
parent: 2
type: Transform
- uid: 7737
components:
- - pos: 15.5,-25.5
+ - pos: 16.5,-17.5
parent: 2
type: Transform
- uid: 7738
components:
- - pos: 18.5,-5.5
+ - pos: 15.5,-22.5
parent: 2
type: Transform
- uid: 7739
components:
- - pos: 19.5,-5.5
+ - pos: 15.5,-17.5
parent: 2
type: Transform
- uid: 7740
components:
- - pos: 20.5,-5.5
+ - pos: 15.5,-18.5
parent: 2
type: Transform
- uid: 7741
components:
- - pos: 21.5,-5.5
+ - pos: 15.5,-19.5
parent: 2
type: Transform
- uid: 7742
components:
- - pos: 22.5,-5.5
+ - pos: 15.5,-20.5
parent: 2
type: Transform
- uid: 7743
components:
- - pos: 23.5,-5.5
+ - pos: 15.5,-21.5
parent: 2
type: Transform
- uid: 7744
components:
- - pos: 31.5,-17.5
+ - pos: 15.5,-23.5
parent: 2
type: Transform
- uid: 7745
components:
- - pos: 30.5,-17.5
+ - pos: 15.5,-24.5
parent: 2
type: Transform
- uid: 7746
components:
- - pos: 29.5,-17.5
+ - pos: 15.5,-25.5
parent: 2
type: Transform
- uid: 7747
components:
- - pos: 28.5,-17.5
+ - pos: 18.5,-5.5
parent: 2
type: Transform
- uid: 7748
components:
- - pos: 27.5,-17.5
+ - pos: 19.5,-5.5
parent: 2
type: Transform
- uid: 7749
components:
- - pos: 26.5,-17.5
+ - pos: 20.5,-5.5
parent: 2
type: Transform
- uid: 7750
components:
- - pos: 35.5,-20.5
+ - pos: 21.5,-5.5
parent: 2
type: Transform
- uid: 7751
components:
- - pos: 35.5,-19.5
+ - pos: 22.5,-5.5
parent: 2
type: Transform
- uid: 7752
components:
- - pos: 35.5,-18.5
+ - pos: 23.5,-5.5
parent: 2
type: Transform
- uid: 7753
components:
- - pos: 35.5,-17.5
+ - pos: 31.5,-17.5
parent: 2
type: Transform
- uid: 7754
components:
- - pos: 34.5,-17.5
+ - pos: 30.5,-17.5
parent: 2
type: Transform
- uid: 7755
components:
- - pos: 33.5,-17.5
+ - pos: 29.5,-17.5
parent: 2
type: Transform
- uid: 7756
components:
- - pos: 35.5,-27.5
+ - pos: 28.5,-17.5
parent: 2
type: Transform
- uid: 7757
components:
- - pos: 35.5,-26.5
+ - pos: 27.5,-17.5
parent: 2
type: Transform
- uid: 7758
components:
- - pos: 35.5,-25.5
+ - pos: 26.5,-17.5
parent: 2
type: Transform
- uid: 7759
components:
- - pos: 35.5,-24.5
+ - pos: 35.5,-20.5
parent: 2
type: Transform
- uid: 7760
components:
- - pos: 35.5,-23.5
+ - pos: 35.5,-19.5
parent: 2
type: Transform
- uid: 7761
components:
- - pos: 35.5,-22.5
+ - pos: 35.5,-18.5
parent: 2
type: Transform
- uid: 7762
components:
- - pos: 30.5,-5.5
+ - pos: 35.5,-17.5
parent: 2
type: Transform
- uid: 7763
components:
- - pos: 29.5,-5.5
+ - pos: 34.5,-17.5
parent: 2
type: Transform
- uid: 7764
components:
- - pos: 28.5,-5.5
+ - pos: 33.5,-17.5
parent: 2
type: Transform
- uid: 7765
components:
- - pos: 27.5,-5.5
+ - pos: 35.5,-27.5
parent: 2
type: Transform
- uid: 7766
components:
- - pos: 26.5,-5.5
+ - pos: 35.5,-26.5
parent: 2
type: Transform
- uid: 7767
components:
- - pos: 33.5,-2.5
+ - pos: 35.5,-25.5
parent: 2
type: Transform
- uid: 7768
components:
- - pos: 33.5,-3.5
+ - pos: 35.5,-24.5
parent: 2
type: Transform
- uid: 7769
components:
- - pos: 33.5,-4.5
+ - pos: 35.5,-23.5
parent: 2
type: Transform
- uid: 7770
components:
- - pos: 33.5,-5.5
+ - pos: 35.5,-22.5
parent: 2
type: Transform
- uid: 7771
components:
- - pos: 32.5,-5.5
+ - pos: 30.5,-5.5
parent: 2
type: Transform
- uid: 7772
components:
- - pos: 39.5,-30.5
+ - pos: 29.5,-5.5
parent: 2
type: Transform
- uid: 7773
components:
- - pos: 35.5,-31.5
+ - pos: 28.5,-5.5
parent: 2
type: Transform
- uid: 7774
components:
- - pos: 35.5,-33.5
+ - pos: 27.5,-5.5
parent: 2
type: Transform
- uid: 7775
components:
- - pos: 35.5,-35.5
+ - pos: 26.5,-5.5
parent: 2
type: Transform
- uid: 7776
components:
- - pos: 35.5,-37.5
+ - pos: 33.5,-2.5
parent: 2
type: Transform
- uid: 7777
components:
- - pos: 35.5,-39.5
+ - pos: 33.5,-3.5
parent: 2
type: Transform
- uid: 7778
components:
- - pos: 35.5,-41.5
+ - pos: 33.5,-4.5
parent: 2
type: Transform
- uid: 7779
components:
- - pos: 17.5,-42.5
+ - pos: 33.5,-5.5
parent: 2
type: Transform
- uid: 7780
components:
- - pos: 19.5,-42.5
+ - pos: 32.5,-5.5
parent: 2
type: Transform
- uid: 7781
components:
- - pos: 10.5,-52.5
+ - pos: 39.5,-30.5
parent: 2
type: Transform
- uid: 7782
components:
- - pos: 33.5,-1.5
+ - pos: 35.5,-31.5
parent: 2
type: Transform
- uid: 7783
components:
- - pos: 33.5,-0.5
+ - pos: 35.5,-33.5
parent: 2
type: Transform
- uid: 7784
components:
- - pos: 33.5,0.5
+ - pos: 35.5,-35.5
parent: 2
type: Transform
- uid: 7785
components:
- - pos: 33.5,1.5
+ - pos: 35.5,-37.5
parent: 2
type: Transform
- uid: 7786
components:
- - pos: 33.5,2.5
+ - pos: 35.5,-39.5
parent: 2
type: Transform
- uid: 7787
components:
- - pos: 33.5,3.5
+ - pos: 35.5,-41.5
parent: 2
type: Transform
- uid: 7788
components:
- - pos: 33.5,4.5
+ - pos: 17.5,-42.5
parent: 2
type: Transform
- uid: 7789
components:
- - pos: 33.5,5.5
+ - pos: 19.5,-42.5
parent: 2
type: Transform
- uid: 7790
components:
- - pos: 33.5,6.5
+ - pos: 10.5,-52.5
parent: 2
type: Transform
- uid: 7791
components:
- - pos: 33.5,7.5
+ - pos: 33.5,-1.5
parent: 2
type: Transform
- uid: 7792
components:
- - pos: 32.5,7.5
+ - pos: 33.5,-0.5
parent: 2
type: Transform
- uid: 7793
components:
- - pos: 31.5,7.5
+ - pos: 33.5,0.5
parent: 2
type: Transform
- uid: 7794
components:
- - pos: 29.5,7.5
+ - pos: 33.5,1.5
parent: 2
type: Transform
- uid: 7795
components:
- - pos: 28.5,7.5
+ - pos: 33.5,2.5
parent: 2
type: Transform
- uid: 7796
components:
- - pos: 27.5,7.5
+ - pos: 33.5,3.5
parent: 2
type: Transform
- uid: 7797
components:
- - pos: 26.5,7.5
+ - pos: 33.5,4.5
parent: 2
type: Transform
- uid: 7798
components:
- - pos: 25.5,7.5
+ - pos: 33.5,5.5
parent: 2
type: Transform
- uid: 7799
components:
- - pos: 24.5,7.5
+ - pos: 33.5,6.5
parent: 2
type: Transform
- uid: 7800
components:
- - pos: 23.5,7.5
+ - pos: 33.5,7.5
parent: 2
type: Transform
- uid: 7801
components:
- - pos: 22.5,7.5
+ - pos: 32.5,7.5
parent: 2
type: Transform
- uid: 7802
components:
- - pos: 21.5,7.5
+ - pos: 31.5,7.5
parent: 2
type: Transform
- uid: 7803
components:
- - pos: 20.5,7.5
+ - pos: 29.5,7.5
parent: 2
type: Transform
- uid: 7804
components:
- - pos: 19.5,7.5
+ - pos: 28.5,7.5
parent: 2
type: Transform
- uid: 7805
components:
- - pos: 18.5,7.5
+ - pos: 27.5,7.5
parent: 2
type: Transform
- uid: 7806
components:
- - pos: 17.5,7.5
+ - pos: 26.5,7.5
parent: 2
type: Transform
- uid: 7807
components:
- - pos: 17.5,6.5
+ - pos: 25.5,7.5
parent: 2
type: Transform
- uid: 7808
components:
- - pos: 17.5,5.5
+ - pos: 24.5,7.5
parent: 2
type: Transform
- uid: 7809
components:
- - pos: 17.5,4.5
+ - pos: 23.5,7.5
parent: 2
type: Transform
- uid: 7810
components:
- - pos: 17.5,3.5
+ - pos: 22.5,7.5
parent: 2
type: Transform
- uid: 7811
components:
- - pos: 17.5,2.5
+ - pos: 21.5,7.5
parent: 2
type: Transform
- uid: 7812
components:
- - pos: 17.5,1.5
+ - pos: 20.5,7.5
parent: 2
type: Transform
- uid: 7813
components:
- - pos: 17.5,0.5
+ - pos: 19.5,7.5
parent: 2
type: Transform
- uid: 7814
components:
- - pos: 17.5,-0.5
+ - pos: 18.5,7.5
parent: 2
type: Transform
- uid: 7815
components:
- - pos: 17.5,-1.5
+ - pos: 17.5,7.5
parent: 2
type: Transform
- uid: 7816
components:
- - pos: 17.5,-2.5
+ - pos: 17.5,6.5
parent: 2
type: Transform
- uid: 7817
components:
- - pos: 17.5,-3.5
+ - pos: 17.5,5.5
parent: 2
type: Transform
- uid: 7818
components:
- - pos: 17.5,-4.5
+ - pos: 17.5,4.5
parent: 2
type: Transform
- uid: 7819
components:
- - pos: -4.5,-17.5
+ - pos: 17.5,3.5
parent: 2
type: Transform
- uid: 7820
components:
- - pos: -4.5,-16.5
+ - pos: 17.5,2.5
parent: 2
type: Transform
- uid: 7821
components:
- - pos: -4.5,-15.5
+ - pos: 17.5,1.5
parent: 2
type: Transform
- uid: 7822
components:
- - pos: -4.5,-14.5
+ - pos: 17.5,0.5
parent: 2
type: Transform
- uid: 7823
components:
- - pos: -4.5,-13.5
+ - pos: 17.5,-0.5
parent: 2
type: Transform
- uid: 7824
components:
- - pos: -4.5,-12.5
+ - pos: 17.5,-1.5
parent: 2
type: Transform
- uid: 7825
components:
- - pos: -4.5,-11.5
+ - pos: 17.5,-2.5
parent: 2
type: Transform
- uid: 7826
components:
- - pos: -4.5,-10.5
+ - pos: 17.5,-3.5
parent: 2
type: Transform
- uid: 7827
components:
- - pos: -4.5,-9.5
+ - pos: 17.5,-4.5
parent: 2
type: Transform
- uid: 7828
components:
- - pos: -4.5,-8.5
+ - pos: -4.5,-17.5
parent: 2
type: Transform
- uid: 7829
components:
- - pos: -4.5,-7.5
+ - pos: -4.5,-16.5
parent: 2
type: Transform
- uid: 7830
components:
- - pos: -4.5,-6.5
+ - pos: -4.5,-15.5
parent: 2
type: Transform
- uid: 7831
components:
- - pos: -4.5,-5.5
+ - pos: -4.5,-14.5
parent: 2
type: Transform
- uid: 7832
components:
- - pos: -4.5,-4.5
+ - pos: -4.5,-13.5
parent: 2
type: Transform
- uid: 7833
components:
- - pos: -4.5,-3.5
+ - pos: -4.5,-12.5
parent: 2
type: Transform
- uid: 7834
components:
- - pos: -4.5,-2.5
+ - pos: -4.5,-11.5
parent: 2
type: Transform
- uid: 7835
components:
- - pos: -4.5,-1.5
+ - pos: -4.5,-10.5
parent: 2
type: Transform
- uid: 7836
components:
- - pos: -4.5,-0.5
+ - pos: -4.5,-9.5
parent: 2
type: Transform
- uid: 7837
components:
- - pos: -4.5,0.5
+ - pos: -4.5,-8.5
parent: 2
type: Transform
- uid: 7838
components:
- - pos: -4.5,1.5
+ - pos: -4.5,-7.5
parent: 2
type: Transform
- uid: 7839
components:
- - pos: 25.5,8.5
+ - pos: -4.5,-6.5
parent: 2
type: Transform
- uid: 7840
components:
- - pos: 25.5,9.5
+ - pos: -4.5,-5.5
parent: 2
type: Transform
- uid: 7841
components:
- - pos: 24.5,9.5
+ - pos: -4.5,-4.5
parent: 2
type: Transform
- uid: 7842
components:
- - pos: 24.5,10.5
+ - pos: -4.5,-3.5
parent: 2
type: Transform
- uid: 7843
components:
- - pos: 24.5,11.5
+ - pos: -4.5,-2.5
parent: 2
type: Transform
- uid: 7844
components:
- - pos: 24.5,12.5
+ - pos: -4.5,-1.5
parent: 2
type: Transform
- uid: 7845
components:
- - pos: 24.5,13.5
+ - pos: -4.5,-0.5
parent: 2
type: Transform
- uid: 7846
components:
- - pos: 24.5,14.5
+ - pos: -4.5,0.5
parent: 2
type: Transform
- uid: 7847
components:
- - pos: 24.5,15.5
+ - pos: -4.5,1.5
parent: 2
type: Transform
- uid: 7848
components:
- - pos: 24.5,16.5
+ - pos: 25.5,8.5
parent: 2
type: Transform
- uid: 7849
components:
- - pos: 23.5,16.5
+ - pos: 25.5,9.5
parent: 2
type: Transform
- uid: 7850
components:
- - pos: 22.5,16.5
+ - pos: 24.5,9.5
parent: 2
type: Transform
- uid: 7851
components:
- - pos: 24.5,17.5
+ - pos: 24.5,10.5
parent: 2
type: Transform
- uid: 7852
components:
- - pos: 24.5,18.5
+ - pos: 24.5,11.5
parent: 2
type: Transform
- uid: 7853
components:
- - pos: 25.5,18.5
+ - pos: 24.5,12.5
parent: 2
type: Transform
- uid: 7854
components:
- - pos: 26.5,18.5
+ - pos: 24.5,13.5
parent: 2
type: Transform
- uid: 7855
components:
- - pos: 27.5,18.5
+ - pos: 24.5,14.5
parent: 2
type: Transform
- uid: 7856
components:
- - pos: 28.5,18.5
+ - pos: 24.5,15.5
parent: 2
type: Transform
- uid: 7857
components:
- - pos: 29.5,18.5
+ - pos: 24.5,16.5
parent: 2
type: Transform
- uid: 7858
components:
- - pos: 29.5,20.5
+ - pos: 23.5,16.5
parent: 2
type: Transform
- uid: 7859
components:
- - pos: 29.5,19.5
+ - pos: 22.5,16.5
parent: 2
type: Transform
- uid: 7860
components:
- - pos: 29.5,21.5
+ - pos: 24.5,17.5
parent: 2
type: Transform
- uid: 7861
components:
- - pos: 30.5,21.5
+ - pos: 24.5,18.5
parent: 2
type: Transform
- uid: 7862
components:
- - pos: 31.5,21.5
+ - pos: 25.5,18.5
parent: 2
type: Transform
- uid: 7863
components:
- - pos: 32.5,21.5
+ - pos: 26.5,18.5
parent: 2
type: Transform
- uid: 7864
components:
- - pos: 32.5,22.5
+ - pos: 27.5,18.5
parent: 2
type: Transform
- uid: 7865
components:
- - pos: 32.5,23.5
+ - pos: 28.5,18.5
parent: 2
type: Transform
- uid: 7866
components:
- - pos: 32.5,24.5
+ - pos: 29.5,18.5
parent: 2
type: Transform
- uid: 7867
components:
- - pos: 32.5,25.5
+ - pos: 29.5,20.5
parent: 2
type: Transform
- uid: 7868
components:
- - pos: 22.5,17.5
+ - pos: 29.5,19.5
parent: 2
type: Transform
- uid: 7869
components:
- - pos: 22.5,18.5
+ - pos: 29.5,21.5
parent: 2
type: Transform
- uid: 7870
components:
- - pos: 22.5,19.5
+ - pos: 30.5,21.5
parent: 2
type: Transform
- uid: 7871
components:
- - pos: 22.5,20.5
+ - pos: 31.5,21.5
parent: 2
type: Transform
- uid: 7872
components:
- - pos: 22.5,21.5
+ - pos: 32.5,21.5
parent: 2
type: Transform
- uid: 7873
components:
- - pos: 22.5,22.5
+ - pos: 32.5,22.5
parent: 2
type: Transform
- uid: 7874
components:
- - pos: 21.5,22.5
+ - pos: 32.5,23.5
parent: 2
type: Transform
- uid: 7875
components:
- - pos: 21.5,23.5
+ - pos: 32.5,24.5
parent: 2
type: Transform
- uid: 7876
components:
- - pos: 21.5,24.5
+ - pos: 32.5,25.5
parent: 2
type: Transform
- uid: 7877
components:
- - pos: 21.5,25.5
+ - pos: 22.5,17.5
parent: 2
type: Transform
- uid: 7878
components:
- - pos: 20.5,25.5
+ - pos: 22.5,18.5
parent: 2
type: Transform
- uid: 7879
components:
- - pos: 18.5,25.5
+ - pos: 22.5,19.5
parent: 2
type: Transform
- uid: 7880
components:
- - pos: 19.5,25.5
+ - pos: 22.5,20.5
parent: 2
type: Transform
- uid: 7881
components:
- - pos: 33.5,25.5
+ - pos: 22.5,21.5
parent: 2
type: Transform
- uid: 7882
components:
- - pos: -4.5,2.5
+ - pos: 22.5,22.5
parent: 2
type: Transform
- uid: 7883
components:
- - pos: -5.5,2.5
+ - pos: 21.5,22.5
parent: 2
type: Transform
- uid: 7884
components:
- - pos: -6.5,2.5
+ - pos: 21.5,23.5
parent: 2
type: Transform
- uid: 7885
components:
- - pos: -7.5,2.5
+ - pos: 21.5,24.5
parent: 2
type: Transform
- uid: 7886
components:
- - pos: -8.5,2.5
+ - pos: 21.5,25.5
parent: 2
type: Transform
- uid: 7887
components:
- - pos: -9.5,2.5
+ - pos: 20.5,25.5
parent: 2
type: Transform
- uid: 7888
components:
- - pos: -10.5,2.5
+ - pos: 18.5,25.5
parent: 2
type: Transform
- uid: 7889
components:
- - pos: -11.5,2.5
+ - pos: 19.5,25.5
parent: 2
type: Transform
- uid: 7890
components:
- - pos: -12.5,2.5
+ - pos: 33.5,25.5
parent: 2
type: Transform
- uid: 7891
components:
- - pos: -13.5,2.5
+ - pos: -4.5,2.5
parent: 2
type: Transform
- uid: 7892
components:
- - pos: -2.5,-62.5
+ - pos: -5.5,2.5
parent: 2
type: Transform
- uid: 7893
components:
- - pos: 34.5,1.5
+ - pos: -6.5,2.5
parent: 2
type: Transform
- uid: 7894
components:
- - pos: 35.5,1.5
+ - pos: -7.5,2.5
parent: 2
type: Transform
- uid: 7895
components:
- - pos: 36.5,1.5
+ - pos: -8.5,2.5
parent: 2
type: Transform
- uid: 7896
components:
- - pos: 36.5,2.5
+ - pos: -9.5,2.5
parent: 2
type: Transform
- uid: 7897
components:
- - pos: 37.5,2.5
+ - pos: -10.5,2.5
parent: 2
type: Transform
- uid: 7898
components:
- - pos: 38.5,2.5
+ - pos: -11.5,2.5
parent: 2
type: Transform
- uid: 7899
components:
- - pos: 39.5,2.5
+ - pos: -12.5,2.5
parent: 2
type: Transform
- uid: 7900
components:
- - pos: 40.5,2.5
+ - pos: -13.5,2.5
parent: 2
type: Transform
- uid: 7901
components:
- - pos: 41.5,2.5
+ - pos: -2.5,-62.5
parent: 2
type: Transform
- uid: 7902
components:
- - pos: 42.5,2.5
+ - pos: 34.5,1.5
parent: 2
type: Transform
- uid: 7903
components:
- - pos: 44.5,2.5
+ - pos: 35.5,1.5
parent: 2
type: Transform
- uid: 7904
components:
- - pos: 43.5,2.5
+ - pos: 36.5,1.5
parent: 2
type: Transform
- uid: 7905
components:
- - pos: -10.5,26.5
+ - pos: 36.5,2.5
parent: 2
type: Transform
- uid: 7906
components:
- - pos: -14.5,35.5
+ - pos: 37.5,2.5
parent: 2
type: Transform
- uid: 7907
components:
- - pos: -9.5,26.5
+ - pos: 38.5,2.5
parent: 2
type: Transform
- uid: 7908
components:
- - pos: -20.5,29.5
+ - pos: 39.5,2.5
parent: 2
type: Transform
- uid: 7909
components:
- - pos: -18.5,29.5
+ - pos: 40.5,2.5
parent: 2
type: Transform
- uid: 7910
components:
- - pos: -20.5,28.5
+ - pos: 41.5,2.5
parent: 2
type: Transform
- uid: 7911
components:
- - pos: -14.5,31.5
+ - pos: 42.5,2.5
parent: 2
type: Transform
- uid: 7912
components:
- - pos: -19.5,29.5
+ - pos: 44.5,2.5
parent: 2
type: Transform
- uid: 7913
components:
- - pos: -14.5,33.5
+ - pos: 43.5,2.5
parent: 2
type: Transform
- uid: 7914
components:
- - pos: -20.5,26.5
+ - pos: -10.5,26.5
parent: 2
type: Transform
- uid: 7915
components:
- - pos: -20.5,27.5
+ - pos: -14.5,35.5
parent: 2
type: Transform
- uid: 7916
components:
- - pos: -14.5,39.5
+ - pos: -9.5,26.5
parent: 2
type: Transform
- uid: 7917
components:
- - pos: -14.5,40.5
+ - pos: -20.5,29.5
parent: 2
type: Transform
- uid: 7918
components:
- - pos: -9.5,27.5
+ - pos: -18.5,29.5
parent: 2
type: Transform
- uid: 7919
components:
- - pos: -9.5,29.5
+ - pos: -20.5,28.5
parent: 2
type: Transform
- uid: 7920
components:
- - pos: -8.5,29.5
+ - pos: -14.5,31.5
parent: 2
type: Transform
- uid: 7921
components:
- - pos: -8.5,30.5
+ - pos: -19.5,29.5
parent: 2
type: Transform
- uid: 7922
components:
- - pos: -8.5,31.5
+ - pos: -14.5,33.5
parent: 2
type: Transform
- uid: 7923
components:
- - pos: 16.5,27.5
+ - pos: -20.5,26.5
parent: 2
type: Transform
- uid: 7924
components:
- - pos: 16.5,26.5
+ - pos: -20.5,27.5
parent: 2
type: Transform
- uid: 7925
components:
- - pos: 16.5,25.5
+ - pos: -14.5,39.5
parent: 2
type: Transform
- uid: 7926
components:
- - pos: 17.5,25.5
+ - pos: -14.5,40.5
parent: 2
type: Transform
- uid: 7927
components:
- - pos: 45.5,2.5
+ - pos: -9.5,27.5
parent: 2
type: Transform
- uid: 7928
components:
- - pos: 46.5,2.5
+ - pos: -9.5,29.5
parent: 2
type: Transform
- uid: 7929
components:
- - pos: 47.5,2.5
+ - pos: -8.5,29.5
parent: 2
type: Transform
- uid: 7930
components:
- - pos: 48.5,2.5
+ - pos: -8.5,30.5
parent: 2
type: Transform
- uid: 7931
components:
- - pos: 49.5,2.5
+ - pos: -8.5,31.5
parent: 2
type: Transform
- uid: 7932
components:
- - pos: 50.5,2.5
+ - pos: 16.5,27.5
parent: 2
type: Transform
- uid: 7933
components:
- - pos: 51.5,2.5
+ - pos: 16.5,26.5
parent: 2
type: Transform
- uid: 7934
components:
- - pos: 52.5,2.5
+ - pos: 16.5,25.5
parent: 2
type: Transform
- uid: 7935
components:
- - pos: 52.5,1.5
+ - pos: 17.5,25.5
parent: 2
type: Transform
- uid: 7936
components:
- - pos: 52.5,0.5
+ - pos: 45.5,2.5
parent: 2
type: Transform
- uid: 7937
components:
- - pos: 52.5,-0.5
+ - pos: 46.5,2.5
parent: 2
type: Transform
- uid: 7938
components:
- - pos: 53.5,1.5
+ - pos: 47.5,2.5
parent: 2
type: Transform
- uid: 7939
components:
- - pos: 54.5,1.5
+ - pos: 48.5,2.5
parent: 2
type: Transform
- uid: 7940
components:
- - pos: 55.5,1.5
+ - pos: 49.5,2.5
parent: 2
type: Transform
- uid: 7941
components:
- - pos: 56.5,1.5
+ - pos: 50.5,2.5
parent: 2
type: Transform
- uid: 7942
components:
- - pos: 57.5,1.5
+ - pos: 51.5,2.5
parent: 2
type: Transform
- uid: 7943
components:
- - pos: 58.5,1.5
+ - pos: 52.5,2.5
parent: 2
type: Transform
- uid: 7944
components:
- - pos: 59.5,1.5
+ - pos: 52.5,1.5
parent: 2
type: Transform
- uid: 7945
components:
- - pos: 60.5,1.5
+ - pos: 52.5,0.5
parent: 2
type: Transform
- uid: 7946
components:
- - pos: 61.5,1.5
+ - pos: 52.5,-0.5
parent: 2
type: Transform
- uid: 7947
components:
- - pos: 62.5,1.5
+ - pos: 53.5,1.5
parent: 2
type: Transform
- uid: 7948
components:
- - pos: 62.5,2.5
+ - pos: 54.5,1.5
parent: 2
type: Transform
- uid: 7949
components:
- - pos: 62.5,3.5
+ - pos: 55.5,1.5
parent: 2
type: Transform
- uid: 7950
components:
- - pos: 62.5,4.5
+ - pos: 56.5,1.5
parent: 2
type: Transform
- uid: 7951
components:
- - pos: 62.5,5.5
+ - pos: 57.5,1.5
parent: 2
type: Transform
- uid: 7952
components:
- - pos: 62.5,6.5
+ - pos: 58.5,1.5
parent: 2
type: Transform
- uid: 7953
components:
- - pos: 62.5,7.5
+ - pos: 59.5,1.5
parent: 2
type: Transform
- uid: 7954
components:
- - pos: 63.5,7.5
+ - pos: 60.5,1.5
parent: 2
type: Transform
- uid: 7955
components:
- - pos: 25.5,-52.5
+ - pos: 61.5,1.5
parent: 2
type: Transform
- uid: 7956
components:
- - pos: 25.5,-53.5
+ - pos: 62.5,1.5
parent: 2
type: Transform
- uid: 7957
components:
- - pos: 25.5,-54.5
+ - pos: 62.5,2.5
parent: 2
type: Transform
- uid: 7958
components:
- - pos: 25.5,-55.5
+ - pos: 62.5,3.5
parent: 2
type: Transform
- uid: 7959
components:
- - pos: 25.5,-56.5
+ - pos: 62.5,4.5
parent: 2
type: Transform
- uid: 7960
components:
- - pos: 25.5,-57.5
+ - pos: 62.5,5.5
parent: 2
type: Transform
- uid: 7961
components:
- - pos: 25.5,-58.5
+ - pos: 62.5,6.5
parent: 2
type: Transform
- uid: 7962
components:
- - pos: 25.5,-59.5
+ - pos: 62.5,7.5
parent: 2
type: Transform
- uid: 7963
components:
- - pos: 26.5,-59.5
+ - pos: 63.5,7.5
parent: 2
type: Transform
- uid: 7964
components:
- - pos: 27.5,-59.5
+ - pos: 25.5,-52.5
parent: 2
type: Transform
- uid: 7965
components:
- - pos: 28.5,-59.5
+ - pos: 25.5,-53.5
parent: 2
type: Transform
- uid: 7966
components:
- - pos: 29.5,-59.5
+ - pos: 25.5,-54.5
parent: 2
type: Transform
- uid: 7967
components:
- - pos: 30.5,-59.5
+ - pos: 25.5,-55.5
parent: 2
type: Transform
- uid: 7968
components:
- - pos: 31.5,-59.5
+ - pos: 25.5,-56.5
parent: 2
type: Transform
- uid: 7969
components:
- - pos: 32.5,-59.5
+ - pos: 25.5,-57.5
parent: 2
type: Transform
- uid: 7970
components:
- - pos: 33.5,-59.5
+ - pos: 25.5,-58.5
parent: 2
type: Transform
- uid: 7971
components:
- - pos: 34.5,-59.5
+ - pos: 25.5,-59.5
parent: 2
type: Transform
- uid: 7972
components:
- - pos: -13.5,1.5
+ - pos: 26.5,-59.5
parent: 2
type: Transform
- uid: 7973
components:
- - pos: -13.5,0.5
+ - pos: 27.5,-59.5
parent: 2
type: Transform
- uid: 7974
components:
- - pos: -13.5,-0.5
+ - pos: 28.5,-59.5
parent: 2
type: Transform
- uid: 7975
components:
- - pos: -13.5,-1.5
+ - pos: 29.5,-59.5
parent: 2
type: Transform
- uid: 7976
components:
- - pos: -13.5,-2.5
+ - pos: 30.5,-59.5
parent: 2
type: Transform
- uid: 7977
components:
- - pos: -13.5,-3.5
+ - pos: 31.5,-59.5
parent: 2
type: Transform
- uid: 7978
components:
- - pos: -13.5,-4.5
+ - pos: 32.5,-59.5
parent: 2
type: Transform
- uid: 7979
components:
- - pos: -13.5,-5.5
+ - pos: 33.5,-59.5
parent: 2
type: Transform
- uid: 7980
components:
- - pos: -14.5,-5.5
+ - pos: 34.5,-59.5
parent: 2
type: Transform
- uid: 7981
components:
- - pos: -15.5,-5.5
+ - pos: -13.5,1.5
parent: 2
type: Transform
- uid: 7982
components:
- - pos: -16.5,-5.5
+ - pos: -13.5,0.5
parent: 2
type: Transform
- uid: 7983
components:
- - pos: -17.5,-5.5
+ - pos: -13.5,-0.5
parent: 2
type: Transform
- uid: 7984
components:
- - pos: -18.5,-5.5
+ - pos: -13.5,-1.5
parent: 2
type: Transform
- uid: 7985
components:
- - pos: -19.5,-5.5
+ - pos: -13.5,-2.5
parent: 2
type: Transform
- uid: 7986
components:
- - pos: -19.5,-6.5
+ - pos: -13.5,-3.5
parent: 2
type: Transform
- uid: 7987
components:
- - pos: -19.5,-7.5
+ - pos: -13.5,-4.5
parent: 2
type: Transform
- uid: 7988
components:
- - pos: -19.5,-8.5
+ - pos: -13.5,-5.5
parent: 2
type: Transform
- uid: 7989
components:
- - pos: -19.5,-9.5
+ - pos: -14.5,-5.5
parent: 2
type: Transform
- uid: 7990
components:
- - pos: -19.5,-10.5
+ - pos: -15.5,-5.5
parent: 2
type: Transform
- uid: 7991
components:
- - pos: -19.5,-11.5
+ - pos: -16.5,-5.5
parent: 2
type: Transform
- uid: 7992
components:
- - pos: -19.5,-12.5
+ - pos: -17.5,-5.5
parent: 2
type: Transform
- uid: 7993
components:
- - pos: -19.5,-13.5
+ - pos: -18.5,-5.5
parent: 2
type: Transform
- uid: 7994
components:
- - pos: -19.5,-14.5
+ - pos: -19.5,-5.5
parent: 2
type: Transform
- uid: 7995
components:
- - pos: -19.5,-15.5
+ - pos: -19.5,-6.5
parent: 2
type: Transform
- uid: 7996
components:
- - pos: -19.5,-16.5
+ - pos: -19.5,-7.5
parent: 2
type: Transform
- uid: 7997
components:
- - pos: -19.5,-17.5
+ - pos: -19.5,-8.5
parent: 2
type: Transform
- uid: 7998
components:
- - pos: -19.5,-18.5
+ - pos: -19.5,-9.5
parent: 2
type: Transform
- uid: 7999
components:
- - pos: -19.5,-19.5
+ - pos: -19.5,-10.5
parent: 2
type: Transform
- uid: 8000
components:
- - pos: -19.5,-20.5
+ - pos: -19.5,-11.5
parent: 2
type: Transform
- uid: 8001
components:
- - pos: -19.5,-21.5
+ - pos: -19.5,-12.5
parent: 2
type: Transform
- uid: 8002
components:
- - pos: -19.5,-22.5
+ - pos: -19.5,-13.5
parent: 2
type: Transform
- uid: 8003
components:
- - pos: -19.5,-23.5
+ - pos: -19.5,-14.5
parent: 2
type: Transform
- uid: 8004
components:
- - pos: -19.5,-24.5
+ - pos: -19.5,-15.5
parent: 2
type: Transform
- uid: 8005
components:
- - pos: -19.5,-25.5
+ - pos: -19.5,-16.5
parent: 2
type: Transform
- uid: 8006
components:
- - pos: -19.5,-26.5
+ - pos: -19.5,-17.5
parent: 2
type: Transform
- uid: 8007
components:
- - pos: -19.5,-27.5
+ - pos: -19.5,-18.5
parent: 2
type: Transform
- uid: 8008
components:
- - pos: -18.5,-26.5
+ - pos: -19.5,-19.5
parent: 2
type: Transform
- uid: 8009
components:
- - pos: 4.5,-15.5
+ - pos: -19.5,-20.5
parent: 2
type: Transform
- uid: 8010
components:
- - pos: 52.5,-1.5
+ - pos: -19.5,-21.5
parent: 2
type: Transform
- uid: 8011
components:
- - pos: 52.5,-2.5
+ - pos: -19.5,-22.5
parent: 2
type: Transform
- uid: 8012
components:
- - pos: 52.5,-3.5
+ - pos: -19.5,-23.5
parent: 2
type: Transform
- uid: 8013
components:
- - pos: 52.5,-4.5
+ - pos: -19.5,-24.5
parent: 2
type: Transform
- uid: 8014
components:
- - pos: 52.5,-5.5
+ - pos: -19.5,-25.5
parent: 2
type: Transform
- uid: 8015
components:
- - pos: 52.5,-6.5
+ - pos: -19.5,-26.5
parent: 2
type: Transform
- uid: 8016
components:
- - pos: 52.5,-7.5
+ - pos: -19.5,-27.5
parent: 2
type: Transform
- uid: 8017
components:
- - pos: 51.5,-7.5
+ - pos: -18.5,-26.5
parent: 2
type: Transform
- uid: 8018
components:
- - pos: 50.5,-7.5
+ - pos: 4.5,-15.5
parent: 2
type: Transform
- uid: 8019
components:
- - pos: 51.5,-1.5
+ - pos: 52.5,-1.5
parent: 2
type: Transform
- uid: 8020
components:
- - pos: 50.5,-1.5
+ - pos: 52.5,-2.5
parent: 2
type: Transform
- uid: 8021
components:
- - pos: 49.5,-1.5
+ - pos: 52.5,-3.5
parent: 2
type: Transform
- uid: 8022
components:
- - pos: 48.5,-1.5
+ - pos: 52.5,-4.5
parent: 2
type: Transform
- uid: 8023
components:
- - pos: 48.5,-2.5
+ - pos: 52.5,-5.5
parent: 2
type: Transform
- uid: 8024
components:
- - pos: 48.5,-3.5
+ - pos: 52.5,-6.5
parent: 2
type: Transform
- uid: 8025
components:
- - pos: 47.5,-3.5
+ - pos: 52.5,-7.5
parent: 2
type: Transform
- uid: 8026
components:
- - pos: 71.5,-46.5
+ - pos: 51.5,-7.5
parent: 2
type: Transform
- uid: 8027
components:
- - pos: 49.5,-7.5
+ - pos: 50.5,-7.5
parent: 2
type: Transform
- uid: 8028
components:
- - pos: 49.5,-6.5
+ - pos: 51.5,-1.5
parent: 2
type: Transform
- uid: 8029
components:
- - pos: 49.5,-5.5
+ - pos: 50.5,-1.5
parent: 2
type: Transform
- uid: 8030
components:
- - pos: 48.5,-5.5
+ - pos: 49.5,-1.5
parent: 2
type: Transform
- uid: 8031
components:
- - pos: 38.5,-44.5
+ - pos: 48.5,-1.5
parent: 2
type: Transform
- uid: 8032
components:
- - pos: -24.5,-16.5
+ - pos: 48.5,-2.5
parent: 2
type: Transform
- uid: 8033
components:
- - pos: 36.5,-42.5
+ - pos: 48.5,-3.5
parent: 2
type: Transform
- uid: 8034
components:
- - pos: 37.5,-42.5
+ - pos: 47.5,-3.5
parent: 2
type: Transform
- uid: 8035
components:
- - pos: 38.5,-42.5
+ - pos: 71.5,-46.5
parent: 2
type: Transform
- uid: 8036
components:
- - pos: 39.5,-42.5
+ - pos: 49.5,-7.5
parent: 2
type: Transform
- uid: 8037
components:
- - pos: 40.5,-42.5
+ - pos: 49.5,-6.5
parent: 2
type: Transform
- uid: 8038
components:
- - pos: 41.5,-42.5
+ - pos: 49.5,-5.5
parent: 2
type: Transform
- uid: 8039
components:
- - pos: 42.5,-42.5
+ - pos: 48.5,-5.5
parent: 2
type: Transform
- uid: 8040
components:
- - pos: 43.5,-42.5
+ - pos: 38.5,-44.5
parent: 2
type: Transform
- uid: 8041
components:
- - pos: 44.5,-42.5
+ - pos: -24.5,-16.5
parent: 2
type: Transform
- uid: 8042
components:
- - pos: 45.5,-42.5
+ - pos: 36.5,-42.5
parent: 2
type: Transform
- uid: 8043
components:
- - pos: 46.5,-42.5
+ - pos: 37.5,-42.5
parent: 2
type: Transform
- uid: 8044
components:
- - pos: 47.5,-42.5
+ - pos: 38.5,-42.5
parent: 2
type: Transform
- uid: 8045
components:
- - pos: 48.5,-42.5
+ - pos: 39.5,-42.5
parent: 2
type: Transform
- uid: 8046
components:
- - pos: 49.5,-42.5
+ - pos: 40.5,-42.5
parent: 2
type: Transform
- uid: 8047
components:
- - pos: 49.5,-43.5
+ - pos: 41.5,-42.5
parent: 2
type: Transform
- uid: 8048
components:
- - pos: 49.5,-44.5
+ - pos: 42.5,-42.5
parent: 2
type: Transform
- uid: 8049
components:
- - pos: 38.5,-45.5
+ - pos: 43.5,-42.5
parent: 2
type: Transform
- uid: 8050
components:
- - pos: 38.5,-43.5
+ - pos: 44.5,-42.5
parent: 2
type: Transform
- uid: 8051
components:
- - pos: 38.5,-46.5
+ - pos: 45.5,-42.5
parent: 2
type: Transform
- uid: 8052
components:
- - pos: -19.5,-4.5
+ - pos: 46.5,-42.5
parent: 2
type: Transform
- uid: 8053
components:
- - pos: -19.5,-3.5
+ - pos: 47.5,-42.5
parent: 2
type: Transform
- uid: 8054
components:
- - pos: -19.5,-2.5
+ - pos: 48.5,-42.5
parent: 2
type: Transform
- uid: 8055
components:
- - pos: -19.5,-1.5
+ - pos: 49.5,-42.5
parent: 2
type: Transform
- uid: 8056
components:
- - pos: -19.5,-0.5
+ - pos: 49.5,-43.5
parent: 2
type: Transform
- uid: 8057
components:
- - pos: -18.5,-0.5
+ - pos: 49.5,-44.5
parent: 2
type: Transform
- uid: 8058
components:
- - pos: -17.5,-0.5
+ - pos: 38.5,-45.5
parent: 2
type: Transform
- uid: 8059
components:
- - pos: -16.5,-0.5
+ - pos: 38.5,-43.5
parent: 2
type: Transform
- uid: 8060
components:
- - pos: -20.5,-12.5
+ - pos: 38.5,-46.5
parent: 2
type: Transform
- uid: 8061
components:
- - pos: -21.5,-12.5
+ - pos: -19.5,-4.5
parent: 2
type: Transform
- uid: 8062
components:
- - pos: -23.5,-12.5
+ - pos: -19.5,-3.5
parent: 2
type: Transform
- uid: 8063
components:
- - pos: -22.5,-12.5
+ - pos: -19.5,-2.5
parent: 2
type: Transform
- uid: 8064
components:
- - pos: -24.5,-17.5
+ - pos: -19.5,-1.5
parent: 2
type: Transform
- uid: 8065
components:
- - pos: -25.5,-17.5
+ - pos: -19.5,-0.5
parent: 2
type: Transform
- uid: 8066
components:
- - pos: -26.5,-17.5
+ - pos: -18.5,-0.5
parent: 2
type: Transform
- uid: 8067
components:
- - pos: -27.5,-17.5
+ - pos: -17.5,-0.5
parent: 2
type: Transform
- uid: 8068
components:
- - pos: -28.5,-17.5
+ - pos: -16.5,-0.5
parent: 2
type: Transform
- uid: 8069
components:
- - pos: -29.5,-17.5
+ - pos: -20.5,-12.5
parent: 2
type: Transform
- uid: 8070
components:
- - pos: -30.5,-17.5
+ - pos: -21.5,-12.5
parent: 2
type: Transform
- uid: 8071
components:
- - pos: -31.5,-17.5
+ - pos: -23.5,-12.5
parent: 2
type: Transform
- uid: 8072
components:
- - pos: -20.5,-22.5
+ - pos: -22.5,-12.5
parent: 2
type: Transform
- uid: 8073
components:
- - pos: -21.5,-22.5
+ - pos: -24.5,-17.5
parent: 2
type: Transform
- uid: 8074
components:
- - pos: -22.5,-22.5
+ - pos: -25.5,-17.5
parent: 2
type: Transform
- uid: 8075
components:
- - pos: -23.5,-22.5
+ - pos: -26.5,-17.5
parent: 2
type: Transform
- uid: 8076
components:
- - pos: -24.5,-22.5
+ - pos: -27.5,-17.5
parent: 2
type: Transform
- uid: 8077
components:
- - pos: -25.5,-22.5
+ - pos: -28.5,-17.5
parent: 2
type: Transform
- uid: 8078
components:
- - pos: -26.5,-22.5
+ - pos: -29.5,-17.5
parent: 2
type: Transform
- uid: 8079
components:
- - pos: -27.5,-22.5
+ - pos: -30.5,-17.5
parent: 2
type: Transform
- uid: 8080
components:
- - pos: -28.5,-22.5
+ - pos: -31.5,-17.5
parent: 2
type: Transform
- uid: 8081
components:
- - pos: -28.5,-23.5
+ - pos: -20.5,-22.5
parent: 2
type: Transform
- uid: 8082
components:
- - pos: -24.5,-12.5
+ - pos: -21.5,-22.5
parent: 2
type: Transform
- uid: 8083
components:
- - pos: 35.5,-59.5
+ - pos: -22.5,-22.5
parent: 2
type: Transform
- uid: 8084
components:
- - pos: 36.5,-59.5
+ - pos: -23.5,-22.5
parent: 2
type: Transform
- uid: 8085
components:
- - pos: 37.5,-59.5
+ - pos: -24.5,-22.5
parent: 2
type: Transform
- uid: 8086
components:
- - pos: -18.5,-41.5
+ - pos: -25.5,-22.5
parent: 2
type: Transform
- uid: 8087
components:
- - pos: -18.5,-40.5
+ - pos: -26.5,-22.5
parent: 2
type: Transform
- uid: 8088
components:
- - pos: -18.5,-39.5
+ - pos: -27.5,-22.5
parent: 2
type: Transform
- uid: 8089
components:
- - pos: -18.5,-38.5
+ - pos: -28.5,-22.5
parent: 2
type: Transform
- uid: 8090
components:
- - pos: -18.5,-37.5
+ - pos: -28.5,-23.5
parent: 2
type: Transform
- uid: 8091
components:
- - pos: -18.5,-36.5
+ - pos: -24.5,-12.5
parent: 2
type: Transform
- uid: 8092
components:
- - pos: -18.5,-35.5
+ - pos: 35.5,-59.5
parent: 2
type: Transform
- uid: 8093
components:
- - pos: -18.5,-34.5
+ - pos: 36.5,-59.5
parent: 2
type: Transform
- uid: 8094
components:
- - pos: -18.5,-33.5
+ - pos: 37.5,-59.5
parent: 2
type: Transform
- uid: 8095
components:
- - pos: -18.5,-32.5
+ - pos: -18.5,-41.5
parent: 2
type: Transform
- uid: 8096
components:
- - pos: -18.5,-31.5
+ - pos: -18.5,-40.5
parent: 2
type: Transform
- uid: 8097
components:
- - pos: -18.5,-30.5
+ - pos: -18.5,-39.5
parent: 2
type: Transform
- uid: 8098
components:
- - pos: -19.5,-30.5
+ - pos: -18.5,-38.5
parent: 2
type: Transform
- uid: 8099
components:
- - pos: -19.5,-29.5
+ - pos: -18.5,-37.5
parent: 2
type: Transform
- uid: 8100
components:
- - pos: -19.5,-28.5
+ - pos: -18.5,-36.5
parent: 2
type: Transform
- uid: 8101
components:
- - pos: 38.5,-59.5
+ - pos: -18.5,-35.5
parent: 2
type: Transform
- uid: 8102
components:
- - pos: 39.5,-59.5
+ - pos: -18.5,-34.5
parent: 2
type: Transform
- uid: 8103
components:
- - pos: 40.5,-59.5
+ - pos: -18.5,-33.5
parent: 2
type: Transform
- uid: 8104
components:
- - pos: 40.5,-60.5
+ - pos: -18.5,-32.5
parent: 2
type: Transform
- uid: 8105
components:
- - pos: 40.5,-61.5
+ - pos: -18.5,-31.5
parent: 2
type: Transform
- uid: 8106
components:
- - pos: 40.5,-62.5
+ - pos: -18.5,-30.5
parent: 2
type: Transform
- uid: 8107
components:
- - pos: 40.5,-63.5
+ - pos: -19.5,-30.5
parent: 2
type: Transform
- uid: 8108
components:
- - pos: 40.5,-64.5
+ - pos: -19.5,-29.5
parent: 2
type: Transform
- uid: 8109
components:
- - pos: 40.5,-65.5
+ - pos: -19.5,-28.5
parent: 2
type: Transform
- uid: 8110
components:
- - pos: 40.5,-66.5
+ - pos: 38.5,-59.5
parent: 2
type: Transform
- uid: 8111
components:
- - pos: 40.5,-67.5
+ - pos: 39.5,-59.5
parent: 2
type: Transform
- uid: 8112
components:
- - pos: 40.5,-68.5
+ - pos: 40.5,-59.5
parent: 2
type: Transform
- uid: 8113
components:
- - pos: 41.5,-59.5
+ - pos: 40.5,-60.5
parent: 2
type: Transform
- uid: 8114
components:
- - pos: 42.5,-59.5
+ - pos: 40.5,-61.5
parent: 2
type: Transform
- uid: 8115
components:
- - pos: 43.5,-59.5
+ - pos: 40.5,-62.5
parent: 2
type: Transform
- uid: 8116
components:
- - pos: 43.5,-58.5
+ - pos: 40.5,-63.5
parent: 2
type: Transform
- uid: 8117
components:
- - pos: -31.5,-16.5
+ - pos: 40.5,-64.5
parent: 2
type: Transform
- uid: 8118
components:
- - pos: -31.5,-15.5
+ - pos: 40.5,-65.5
parent: 2
type: Transform
- uid: 8119
components:
- - pos: -31.5,-14.5
+ - pos: 40.5,-66.5
parent: 2
type: Transform
- uid: 8120
components:
- - pos: -31.5,-13.5
+ - pos: 40.5,-67.5
parent: 2
type: Transform
- uid: 8121
components:
- - pos: -31.5,-12.5
+ - pos: 40.5,-68.5
parent: 2
type: Transform
- uid: 8122
components:
- - pos: -31.5,-11.5
+ - pos: 41.5,-59.5
parent: 2
type: Transform
- uid: 8123
components:
- - pos: -32.5,-11.5
+ - pos: 42.5,-59.5
parent: 2
type: Transform
- uid: 8124
components:
- - pos: -33.5,-11.5
+ - pos: 43.5,-59.5
parent: 2
type: Transform
- uid: 8125
components:
- - pos: -34.5,-11.5
+ - pos: 43.5,-58.5
parent: 2
type: Transform
- uid: 8126
components:
- - pos: -35.5,-11.5
+ - pos: -31.5,-16.5
parent: 2
type: Transform
- uid: 8127
components:
- - pos: -36.5,-11.5
+ - pos: -31.5,-15.5
parent: 2
type: Transform
- uid: 8128
components:
- - pos: -37.5,-11.5
+ - pos: -31.5,-14.5
parent: 2
type: Transform
- uid: 8129
components:
- - pos: -38.5,-11.5
+ - pos: -31.5,-13.5
parent: 2
type: Transform
- uid: 8130
components:
- - pos: -39.5,-11.5
+ - pos: -31.5,-12.5
parent: 2
type: Transform
- uid: 8131
components:
- - pos: -40.5,-11.5
+ - pos: -31.5,-11.5
parent: 2
type: Transform
- uid: 8132
components:
- - pos: -41.5,-11.5
+ - pos: -32.5,-11.5
parent: 2
type: Transform
- uid: 8133
components:
- - pos: -42.5,-11.5
+ - pos: -33.5,-11.5
parent: 2
type: Transform
- uid: 8134
components:
- - pos: -2.5,-69.5
+ - pos: -34.5,-11.5
parent: 2
type: Transform
- uid: 8135
components:
- - pos: -1.5,-69.5
+ - pos: -35.5,-11.5
parent: 2
type: Transform
- uid: 8136
components:
- - pos: -1.5,-67.5
+ - pos: -36.5,-11.5
parent: 2
type: Transform
- uid: 8137
components:
- - pos: -2.5,-60.5
+ - pos: -37.5,-11.5
parent: 2
type: Transform
- uid: 8138
components:
- - pos: -2.5,-58.5
+ - pos: -38.5,-11.5
parent: 2
type: Transform
- uid: 8139
components:
- - pos: -42.5,-6.5
+ - pos: -39.5,-11.5
parent: 2
type: Transform
- uid: 8140
components:
- - pos: -42.5,-10.5
+ - pos: -40.5,-11.5
parent: 2
type: Transform
- uid: 8141
components:
- - pos: -42.5,-7.5
+ - pos: -41.5,-11.5
parent: 2
type: Transform
- uid: 8142
components:
- - pos: -42.5,-8.5
+ - pos: -42.5,-11.5
parent: 2
type: Transform
- uid: 8143
components:
- - pos: -46.5,-11.5
+ - pos: -2.5,-69.5
parent: 2
type: Transform
- uid: 8144
components:
- - pos: -46.5,-12.5
+ - pos: -1.5,-69.5
parent: 2
type: Transform
- uid: 8145
components:
- - pos: -46.5,-13.5
+ - pos: -1.5,-67.5
parent: 2
type: Transform
- uid: 8146
components:
- - pos: -46.5,-14.5
+ - pos: -2.5,-60.5
parent: 2
type: Transform
- uid: 8147
components:
- - pos: -46.5,-10.5
+ - pos: -2.5,-58.5
parent: 2
type: Transform
- uid: 8148
components:
- - pos: -46.5,-9.5
+ - pos: -42.5,-6.5
parent: 2
type: Transform
- uid: 8149
components:
- - pos: -46.5,-15.5
+ - pos: -42.5,-10.5
parent: 2
type: Transform
- uid: 8150
components:
- - pos: -46.5,-16.5
+ - pos: -42.5,-7.5
parent: 2
type: Transform
- uid: 8151
components:
- - pos: -42.5,-9.5
+ - pos: -42.5,-8.5
parent: 2
type: Transform
- uid: 8152
components:
- - pos: -46.5,-17.5
+ - pos: -46.5,-11.5
parent: 2
type: Transform
- uid: 8153
components:
- - pos: -46.5,-18.5
+ - pos: -46.5,-12.5
parent: 2
type: Transform
- uid: 8154
components:
- - pos: -46.5,-19.5
+ - pos: -46.5,-13.5
parent: 2
type: Transform
- uid: 8155
components:
- - pos: -47.5,-19.5
+ - pos: -46.5,-14.5
parent: 2
type: Transform
- uid: 8156
components:
- - pos: -48.5,-19.5
+ - pos: -46.5,-10.5
parent: 2
type: Transform
- uid: 8157
components:
- - pos: -48.5,-20.5
+ - pos: -46.5,-9.5
parent: 2
type: Transform
- uid: 8158
components:
- - pos: -46.5,-20.5
+ - pos: -46.5,-15.5
parent: 2
type: Transform
- uid: 8159
components:
- - pos: -45.5,-19.5
+ - pos: -46.5,-16.5
parent: 2
type: Transform
- uid: 8160
components:
- - pos: -44.5,-19.5
+ - pos: -42.5,-9.5
parent: 2
type: Transform
- uid: 8161
components:
- - pos: -44.5,-20.5
+ - pos: -46.5,-17.5
parent: 2
type: Transform
- uid: 8162
components:
- - pos: -46.5,-21.5
+ - pos: -46.5,-18.5
parent: 2
type: Transform
- uid: 8163
components:
- - pos: -48.5,-21.5
+ - pos: -46.5,-19.5
parent: 2
type: Transform
- uid: 8164
components:
- - pos: -44.5,-21.5
+ - pos: -47.5,-19.5
parent: 2
type: Transform
- uid: 8165
components:
- - pos: -46.5,-22.5
+ - pos: -48.5,-19.5
parent: 2
type: Transform
- uid: 8166
components:
- - pos: -48.5,-22.5
+ - pos: -48.5,-20.5
parent: 2
type: Transform
- uid: 8167
components:
- - pos: -44.5,-22.5
+ - pos: -46.5,-20.5
parent: 2
type: Transform
- uid: 8168
components:
- - pos: -48.5,-23.5
+ - pos: -45.5,-19.5
parent: 2
type: Transform
- uid: 8169
components:
- - pos: -47.5,-23.5
+ - pos: -44.5,-19.5
parent: 2
type: Transform
- uid: 8170
components:
- - pos: -46.5,-23.5
+ - pos: -44.5,-20.5
parent: 2
type: Transform
- uid: 8171
components:
- - pos: -44.5,-23.5
+ - pos: -46.5,-21.5
parent: 2
type: Transform
- uid: 8172
components:
- - pos: -45.5,-23.5
+ - pos: -48.5,-21.5
parent: 2
type: Transform
- uid: 8173
components:
- - pos: -49.5,-23.5
+ - pos: -44.5,-21.5
parent: 2
type: Transform
- uid: 8174
components:
- - pos: -50.5,-23.5
+ - pos: -46.5,-22.5
parent: 2
type: Transform
- uid: 8175
components:
- - pos: -51.5,-24.5
+ - pos: -48.5,-22.5
parent: 2
type: Transform
- uid: 8176
components:
- - pos: -51.5,-23.5
+ - pos: -44.5,-22.5
parent: 2
type: Transform
- uid: 8177
components:
- - pos: -43.5,-22.5
+ - pos: -48.5,-23.5
parent: 2
type: Transform
- uid: 8178
components:
- - pos: -42.5,-22.5
+ - pos: -47.5,-23.5
parent: 2
type: Transform
- uid: 8179
components:
- - pos: -41.5,-22.5
+ - pos: -46.5,-23.5
parent: 2
type: Transform
- uid: 8180
components:
- - pos: -41.5,-21.5
+ - pos: -44.5,-23.5
parent: 2
type: Transform
- uid: 8181
components:
- - pos: -41.5,-20.5
+ - pos: -45.5,-23.5
parent: 2
type: Transform
- uid: 8182
components:
- - pos: -43.5,-6.5
+ - pos: -49.5,-23.5
parent: 2
type: Transform
- uid: 8183
components:
- - pos: -44.5,-6.5
+ - pos: -50.5,-23.5
parent: 2
type: Transform
- uid: 8184
components:
- - pos: -45.5,-6.5
+ - pos: -51.5,-24.5
parent: 2
type: Transform
- uid: 8185
components:
- - pos: -46.5,-6.5
+ - pos: -51.5,-23.5
parent: 2
type: Transform
- uid: 8186
components:
- - pos: -47.5,-6.5
+ - pos: -43.5,-22.5
parent: 2
type: Transform
- uid: 8187
components:
- - pos: -48.5,-6.5
+ - pos: -42.5,-22.5
parent: 2
type: Transform
- uid: 8188
components:
- - pos: -49.5,-6.5
+ - pos: -41.5,-22.5
parent: 2
type: Transform
- uid: 8189
components:
- - pos: -50.5,-6.5
+ - pos: -41.5,-21.5
parent: 2
type: Transform
- uid: 8190
components:
- - pos: -51.5,-6.5
+ - pos: -41.5,-20.5
parent: 2
type: Transform
- uid: 8191
components:
- - pos: -52.5,-6.5
+ - pos: -43.5,-6.5
parent: 2
type: Transform
- uid: 8192
components:
- - pos: -52.5,-7.5
+ - pos: -44.5,-6.5
parent: 2
type: Transform
- uid: 8193
components:
- - pos: -52.5,-8.5
+ - pos: -45.5,-6.5
parent: 2
type: Transform
- uid: 8194
components:
- - pos: -52.5,-9.5
+ - pos: -46.5,-6.5
parent: 2
type: Transform
- uid: 8195
components:
- - pos: -41.5,-12.5
+ - pos: -47.5,-6.5
parent: 2
type: Transform
- uid: 8196
components:
- - pos: -41.5,-13.5
+ - pos: -48.5,-6.5
parent: 2
type: Transform
- uid: 8197
components:
- - pos: -41.5,-14.5
+ - pos: -49.5,-6.5
parent: 2
type: Transform
- uid: 8198
components:
- - pos: -41.5,-15.5
+ - pos: -50.5,-6.5
parent: 2
type: Transform
- uid: 8199
components:
- - pos: -41.5,-18.5
+ - pos: -51.5,-6.5
parent: 2
type: Transform
- uid: 8200
components:
- - pos: -41.5,-17.5
+ - pos: -52.5,-6.5
parent: 2
type: Transform
- uid: 8201
components:
- - pos: -41.5,-19.5
+ - pos: -52.5,-7.5
parent: 2
type: Transform
- uid: 8202
components:
- - pos: -41.5,-16.5
+ - pos: -52.5,-8.5
parent: 2
type: Transform
- uid: 8203
components:
- - pos: -51.5,-9.5
+ - pos: -52.5,-9.5
parent: 2
type: Transform
- uid: 8204
components:
- - pos: -50.5,-9.5
+ - pos: -41.5,-12.5
parent: 2
type: Transform
- uid: 8205
components:
- - pos: -50.5,-8.5
+ - pos: -41.5,-13.5
parent: 2
type: Transform
- uid: 8206
components:
- - pos: -57.5,-20.5
+ - pos: -41.5,-14.5
parent: 2
type: Transform
- uid: 8207
components:
- - pos: -14.5,45.5
+ - pos: -41.5,-15.5
parent: 2
type: Transform
- uid: 8208
components:
- - pos: -14.5,44.5
+ - pos: -41.5,-18.5
parent: 2
type: Transform
- uid: 8209
components:
- - pos: -56.5,-24.5
+ - pos: -41.5,-17.5
parent: 2
type: Transform
- uid: 8210
components:
- - pos: -65.5,-25.5
+ - pos: -41.5,-19.5
parent: 2
type: Transform
- uid: 8211
components:
- - pos: -53.5,-19.5
+ - pos: -41.5,-16.5
parent: 2
type: Transform
- uid: 8212
components:
- - pos: -66.5,-25.5
+ - pos: -51.5,-9.5
parent: 2
type: Transform
- uid: 8213
components:
- - pos: -53.5,-21.5
+ - pos: -50.5,-9.5
parent: 2
type: Transform
- uid: 8214
components:
- - pos: -57.5,-13.5
+ - pos: -50.5,-8.5
parent: 2
type: Transform
- uid: 8215
components:
- - pos: -64.5,-28.5
+ - pos: -57.5,-20.5
parent: 2
type: Transform
- uid: 8216
components:
- - pos: -65.5,-28.5
+ - pos: -14.5,45.5
parent: 2
type: Transform
- uid: 8217
components:
- - pos: -66.5,-28.5
+ - pos: -14.5,44.5
parent: 2
type: Transform
- uid: 8218
components:
- - pos: -66.5,-27.5
+ - pos: -56.5,-24.5
parent: 2
type: Transform
- uid: 8219
components:
- - pos: -66.5,-26.5
+ - pos: -65.5,-25.5
parent: 2
type: Transform
- uid: 8220
components:
- - pos: -64.5,-25.5
+ - pos: -53.5,-19.5
parent: 2
type: Transform
- uid: 8221
components:
- - pos: -14.5,36.5
+ - pos: -66.5,-25.5
parent: 2
type: Transform
- uid: 8222
components:
- - pos: -56.5,-23.5
+ - pos: -53.5,-21.5
parent: 2
type: Transform
- uid: 8223
components:
- - pos: -56.5,-22.5
+ - pos: -57.5,-13.5
parent: 2
type: Transform
- uid: 8224
components:
- - pos: -56.5,-21.5
+ - pos: -64.5,-28.5
parent: 2
type: Transform
- uid: 8225
components:
- - pos: -56.5,-20.5
+ - pos: -65.5,-28.5
parent: 2
type: Transform
- uid: 8226
components:
- - pos: -64.5,-29.5
+ - pos: -66.5,-28.5
parent: 2
type: Transform
- uid: 8227
components:
- - pos: -64.5,-30.5
+ - pos: -66.5,-27.5
parent: 2
type: Transform
- uid: 8228
components:
- - pos: -63.5,-30.5
+ - pos: -66.5,-26.5
parent: 2
type: Transform
- uid: 8229
components:
- - pos: -62.5,-30.5
+ - pos: -64.5,-25.5
parent: 2
type: Transform
- uid: 8230
components:
- - pos: -61.5,-30.5
+ - pos: -14.5,36.5
parent: 2
type: Transform
- uid: 8231
components:
- - pos: -60.5,-30.5
+ - pos: -56.5,-23.5
parent: 2
type: Transform
- uid: 8232
components:
- - pos: -64.5,-31.5
+ - pos: -56.5,-22.5
parent: 2
type: Transform
- uid: 8233
components:
- - pos: -68.5,-31.5
+ - pos: -56.5,-21.5
parent: 2
type: Transform
- uid: 8234
components:
- - pos: -65.5,-31.5
+ - pos: -56.5,-20.5
parent: 2
type: Transform
- uid: 8235
components:
- - pos: -14.5,42.5
+ - pos: -64.5,-29.5
parent: 2
type: Transform
- uid: 8236
components:
- - pos: -60.5,-29.5
+ - pos: -64.5,-30.5
parent: 2
type: Transform
- uid: 8237
components:
- - pos: -60.5,-26.5
+ - pos: -63.5,-30.5
parent: 2
type: Transform
- uid: 8238
components:
- - pos: -60.5,-25.5
+ - pos: -62.5,-30.5
parent: 2
type: Transform
- uid: 8239
components:
- - pos: -59.5,-25.5
+ - pos: -61.5,-30.5
parent: 2
type: Transform
- uid: 8240
components:
- - pos: -58.5,-25.5
+ - pos: -60.5,-30.5
parent: 2
type: Transform
- uid: 8241
components:
- - pos: -56.5,-13.5
+ - pos: -64.5,-31.5
parent: 2
type: Transform
- uid: 8242
components:
- - pos: -58.5,-13.5
+ - pos: -68.5,-31.5
parent: 2
type: Transform
- uid: 8243
components:
- - pos: -52.5,-19.5
+ - pos: -65.5,-31.5
parent: 2
type: Transform
- uid: 8244
components:
- - pos: -51.5,-19.5
+ - pos: -14.5,42.5
parent: 2
type: Transform
- uid: 8245
components:
- - pos: -50.5,-19.5
+ - pos: -60.5,-29.5
parent: 2
type: Transform
- uid: 8246
components:
- - pos: -49.5,-19.5
+ - pos: -60.5,-26.5
parent: 2
type: Transform
- uid: 8247
components:
- - pos: -31.5,-18.5
+ - pos: -60.5,-25.5
parent: 2
type: Transform
- uid: 8248
components:
- - pos: -31.5,-19.5
+ - pos: -59.5,-25.5
parent: 2
type: Transform
- uid: 8249
components:
- - pos: -31.5,-20.5
+ - pos: -58.5,-25.5
parent: 2
type: Transform
- uid: 8250
components:
- - pos: -31.5,-21.5
+ - pos: -56.5,-13.5
parent: 2
type: Transform
- uid: 8251
components:
- - pos: -31.5,-22.5
+ - pos: -58.5,-13.5
parent: 2
type: Transform
- uid: 8252
components:
- - pos: -31.5,-23.5
+ - pos: -52.5,-19.5
parent: 2
type: Transform
- uid: 8253
components:
- - pos: -31.5,-24.5
+ - pos: -51.5,-19.5
parent: 2
type: Transform
- uid: 8254
components:
- - pos: -31.5,-25.5
+ - pos: -50.5,-19.5
parent: 2
type: Transform
- uid: 8255
components:
- - pos: -31.5,-26.5
+ - pos: -49.5,-19.5
parent: 2
type: Transform
- uid: 8256
components:
- - pos: -31.5,-27.5
+ - pos: -31.5,-18.5
parent: 2
type: Transform
- uid: 8257
components:
- - pos: -31.5,-28.5
+ - pos: -31.5,-19.5
parent: 2
type: Transform
- uid: 8258
components:
- - pos: -31.5,-29.5
+ - pos: -31.5,-20.5
parent: 2
type: Transform
- uid: 8259
components:
- - pos: -31.5,-30.5
+ - pos: -31.5,-21.5
parent: 2
type: Transform
- uid: 8260
components:
- - pos: -31.5,-31.5
+ - pos: -31.5,-22.5
parent: 2
type: Transform
- uid: 8261
components:
- - pos: -31.5,-32.5
+ - pos: -31.5,-23.5
parent: 2
type: Transform
- uid: 8262
components:
- - pos: -31.5,-33.5
+ - pos: -31.5,-24.5
parent: 2
type: Transform
- uid: 8263
components:
- - pos: -31.5,-34.5
+ - pos: -31.5,-25.5
parent: 2
type: Transform
- uid: 8264
components:
- - pos: -30.5,-34.5
+ - pos: -31.5,-26.5
parent: 2
type: Transform
- uid: 8265
components:
- - pos: -29.5,-34.5
+ - pos: -31.5,-27.5
parent: 2
type: Transform
- uid: 8266
components:
- - pos: -28.5,-34.5
+ - pos: -31.5,-28.5
parent: 2
type: Transform
- uid: 8267
components:
- - pos: -28.5,-35.5
+ - pos: -31.5,-29.5
parent: 2
type: Transform
- uid: 8268
components:
- - pos: -28.5,-36.5
+ - pos: -31.5,-30.5
parent: 2
type: Transform
- uid: 8269
components:
- - pos: -28.5,-37.5
+ - pos: -31.5,-31.5
parent: 2
type: Transform
- uid: 8270
components:
- - pos: -27.5,-37.5
+ - pos: -31.5,-32.5
parent: 2
type: Transform
- uid: 8271
components:
- - pos: -60.5,-28.5
+ - pos: -31.5,-33.5
parent: 2
type: Transform
- uid: 8272
components:
- - pos: -71.5,-22.5
+ - pos: -31.5,-34.5
parent: 2
type: Transform
- uid: 8273
components:
- - pos: -72.5,-22.5
+ - pos: -30.5,-34.5
parent: 2
type: Transform
- uid: 8274
components:
- - pos: -73.5,-22.5
+ - pos: -29.5,-34.5
parent: 2
type: Transform
- uid: 8275
components:
- - pos: -74.5,-22.5
+ - pos: -28.5,-34.5
parent: 2
type: Transform
- uid: 8276
components:
- - pos: -75.5,-22.5
+ - pos: -28.5,-35.5
parent: 2
type: Transform
- uid: 8277
components:
- - pos: -76.5,-22.5
+ - pos: -28.5,-36.5
parent: 2
type: Transform
- uid: 8278
components:
- - pos: -76.5,-21.5
+ - pos: -28.5,-37.5
parent: 2
type: Transform
- uid: 8279
components:
- - pos: -76.5,-20.5
+ - pos: -27.5,-37.5
parent: 2
type: Transform
- uid: 8280
components:
- - pos: -76.5,-19.5
+ - pos: -60.5,-28.5
parent: 2
type: Transform
- uid: 8281
components:
- - pos: -76.5,-18.5
+ - pos: -71.5,-22.5
parent: 2
type: Transform
- uid: 8282
components:
- - pos: -76.5,-17.5
+ - pos: -72.5,-22.5
parent: 2
type: Transform
- uid: 8283
components:
- - pos: -76.5,-16.5
+ - pos: -73.5,-22.5
parent: 2
type: Transform
- uid: 8284
components:
- - pos: -76.5,-15.5
+ - pos: -74.5,-22.5
parent: 2
type: Transform
- uid: 8285
components:
- - pos: -76.5,-14.5
+ - pos: -75.5,-22.5
parent: 2
type: Transform
- uid: 8286
components:
- - pos: -76.5,-13.5
+ - pos: -76.5,-22.5
parent: 2
type: Transform
- uid: 8287
components:
- - pos: -76.5,-12.5
+ - pos: -76.5,-21.5
parent: 2
type: Transform
- uid: 8288
components:
- - pos: -76.5,-11.5
+ - pos: -76.5,-20.5
parent: 2
type: Transform
- uid: 8289
components:
- - pos: -76.5,-10.5
+ - pos: -76.5,-19.5
parent: 2
type: Transform
- uid: 8290
components:
- - pos: -76.5,-9.5
+ - pos: -76.5,-18.5
parent: 2
type: Transform
- uid: 8291
components:
- - pos: -76.5,-8.5
+ - pos: -76.5,-17.5
parent: 2
type: Transform
- uid: 8292
components:
- - pos: -76.5,-7.5
+ - pos: -76.5,-16.5
parent: 2
type: Transform
- uid: 8293
components:
- - pos: -76.5,-6.5
+ - pos: -76.5,-15.5
parent: 2
type: Transform
- uid: 8294
components:
- - pos: -76.5,-5.5
+ - pos: -76.5,-14.5
parent: 2
type: Transform
- uid: 8295
components:
- - pos: -76.5,-4.5
+ - pos: -76.5,-13.5
parent: 2
type: Transform
- uid: 8296
components:
- - pos: -76.5,-3.5
+ - pos: -76.5,-12.5
parent: 2
type: Transform
- uid: 8297
components:
- - pos: -75.5,-3.5
+ - pos: -76.5,-11.5
parent: 2
type: Transform
- uid: 8298
components:
- - pos: -74.5,-3.5
+ - pos: -76.5,-10.5
parent: 2
type: Transform
- uid: 8299
components:
- - pos: -73.5,-3.5
+ - pos: -76.5,-9.5
parent: 2
type: Transform
- uid: 8300
components:
- - pos: -72.5,-3.5
+ - pos: -76.5,-8.5
parent: 2
type: Transform
- uid: 8301
components:
- - pos: -71.5,-3.5
+ - pos: -76.5,-7.5
parent: 2
type: Transform
- uid: 8302
components:
- - pos: -70.5,-3.5
+ - pos: -76.5,-6.5
parent: 2
type: Transform
- uid: 8303
components:
- - pos: -69.5,-3.5
+ - pos: -76.5,-5.5
parent: 2
type: Transform
- uid: 8304
components:
- - pos: -68.5,-3.5
+ - pos: -76.5,-4.5
parent: 2
type: Transform
- uid: 8305
components:
- - pos: -67.5,-3.5
+ - pos: -76.5,-3.5
parent: 2
type: Transform
- uid: 8306
components:
- - pos: -66.5,-3.5
+ - pos: -75.5,-3.5
parent: 2
type: Transform
- uid: 8307
components:
- - pos: -65.5,-3.5
+ - pos: -74.5,-3.5
parent: 2
type: Transform
- uid: 8308
components:
- - pos: -64.5,-3.5
+ - pos: -73.5,-3.5
parent: 2
type: Transform
- uid: 8309
components:
- - pos: -63.5,-3.5
+ - pos: -72.5,-3.5
parent: 2
type: Transform
- uid: 8310
components:
- - pos: -62.5,-3.5
+ - pos: -71.5,-3.5
parent: 2
type: Transform
- uid: 8311
components:
- - pos: -61.5,-3.5
+ - pos: -70.5,-3.5
parent: 2
type: Transform
- uid: 8312
components:
- - pos: -60.5,-3.5
+ - pos: -69.5,-3.5
parent: 2
type: Transform
- uid: 8313
components:
- - pos: -59.5,-3.5
+ - pos: -68.5,-3.5
parent: 2
type: Transform
- uid: 8314
components:
- - pos: -58.5,-3.5
+ - pos: -67.5,-3.5
parent: 2
type: Transform
- uid: 8315
components:
- - pos: -57.5,-3.5
+ - pos: -66.5,-3.5
parent: 2
type: Transform
- uid: 8316
components:
- - pos: -56.5,-3.5
+ - pos: -65.5,-3.5
parent: 2
type: Transform
- uid: 8317
components:
- - pos: -56.5,-4.5
+ - pos: -64.5,-3.5
parent: 2
type: Transform
- uid: 8318
components:
- - pos: -56.5,-6.5
+ - pos: -63.5,-3.5
parent: 2
type: Transform
- uid: 8319
components:
- - pos: -56.5,-5.5
+ - pos: -62.5,-3.5
parent: 2
type: Transform
- uid: 8320
components:
- - pos: -76.5,-23.5
+ - pos: -61.5,-3.5
parent: 2
type: Transform
- uid: 8321
components:
- - pos: -76.5,-24.5
+ - pos: -60.5,-3.5
parent: 2
type: Transform
- uid: 8322
components:
- - pos: -76.5,-25.5
+ - pos: -59.5,-3.5
parent: 2
type: Transform
- uid: 8323
components:
- - pos: -53.5,-25.5
+ - pos: -58.5,-3.5
parent: 2
type: Transform
- uid: 8324
components:
- - pos: -51.5,-25.5
+ - pos: -57.5,-3.5
parent: 2
type: Transform
- uid: 8325
components:
- - pos: -71.5,-21.5
+ - pos: -56.5,-3.5
parent: 2
type: Transform
- uid: 8326
components:
- - pos: -19.5,-42.5
+ - pos: -56.5,-4.5
parent: 2
type: Transform
- uid: 8327
components:
- - pos: -20.5,-42.5
+ - pos: -56.5,-6.5
parent: 2
type: Transform
- uid: 8328
components:
- - pos: -21.5,-42.5
+ - pos: -56.5,-5.5
parent: 2
type: Transform
- uid: 8329
components:
- - pos: -22.5,-42.5
+ - pos: -76.5,-23.5
parent: 2
type: Transform
- uid: 8330
components:
- - pos: -23.5,-42.5
+ - pos: -76.5,-24.5
parent: 2
type: Transform
- uid: 8331
components:
- - pos: -23.5,-43.5
+ - pos: -76.5,-25.5
parent: 2
type: Transform
- uid: 8332
components:
- - pos: -23.5,-44.5
+ - pos: -53.5,-25.5
parent: 2
type: Transform
- uid: 8333
components:
- - pos: -23.5,-45.5
+ - pos: -51.5,-25.5
parent: 2
type: Transform
- uid: 8334
components:
- - pos: -23.5,-46.5
+ - pos: -71.5,-21.5
parent: 2
type: Transform
- uid: 8335
components:
- - pos: -23.5,-47.5
+ - pos: -19.5,-42.5
parent: 2
type: Transform
- uid: 8336
components:
- - pos: -23.5,-48.5
+ - pos: -20.5,-42.5
parent: 2
type: Transform
- uid: 8337
components:
- - pos: -23.5,-49.5
+ - pos: -21.5,-42.5
parent: 2
type: Transform
- uid: 8338
components:
- - pos: -24.5,-49.5
+ - pos: -22.5,-42.5
parent: 2
type: Transform
- uid: 8339
components:
- - pos: -25.5,-49.5
+ - pos: -23.5,-42.5
parent: 2
type: Transform
- uid: 8340
components:
- - pos: -26.5,-49.5
+ - pos: -23.5,-43.5
parent: 2
type: Transform
- uid: 8341
components:
- - pos: -27.5,-49.5
+ - pos: -23.5,-44.5
parent: 2
type: Transform
- uid: 8342
components:
- - pos: -27.5,-48.5
+ - pos: -23.5,-45.5
parent: 2
type: Transform
- uid: 8343
components:
- - pos: -27.5,-47.5
+ - pos: -23.5,-46.5
parent: 2
type: Transform
- uid: 8344
components:
- - pos: -27.5,-46.5
+ - pos: -23.5,-47.5
parent: 2
type: Transform
- uid: 8345
components:
- - pos: -27.5,-45.5
+ - pos: -23.5,-48.5
parent: 2
type: Transform
- uid: 8346
components:
- - pos: -27.5,-44.5
+ - pos: -23.5,-49.5
parent: 2
type: Transform
- uid: 8347
components:
- - pos: -28.5,-44.5
+ - pos: -24.5,-49.5
parent: 2
type: Transform
- uid: 8348
components:
- - pos: -29.5,-44.5
+ - pos: -25.5,-49.5
parent: 2
type: Transform
- uid: 8349
components:
- - pos: -30.5,-44.5
+ - pos: -26.5,-49.5
parent: 2
type: Transform
- uid: 8350
components:
- - pos: -31.5,-44.5
+ - pos: -27.5,-49.5
parent: 2
type: Transform
- uid: 8351
components:
- - pos: -31.5,-45.5
+ - pos: -27.5,-48.5
parent: 2
type: Transform
- uid: 8352
components:
- - pos: -31.5,-46.5
+ - pos: -27.5,-47.5
parent: 2
type: Transform
- uid: 8353
components:
- - pos: -31.5,-47.5
+ - pos: -27.5,-46.5
parent: 2
type: Transform
- uid: 8354
components:
- - pos: -30.5,-47.5
+ - pos: -27.5,-45.5
parent: 2
type: Transform
- uid: 8355
components:
- - pos: -30.5,-48.5
+ - pos: -27.5,-44.5
parent: 2
type: Transform
- uid: 8356
components:
- - pos: -30.5,-49.5
+ - pos: -28.5,-44.5
parent: 2
type: Transform
- uid: 8357
components:
- - pos: -30.5,-50.5
+ - pos: -29.5,-44.5
parent: 2
type: Transform
- uid: 8358
components:
- - pos: -30.5,-51.5
+ - pos: -30.5,-44.5
parent: 2
type: Transform
- uid: 8359
components:
- - pos: -30.5,-52.5
+ - pos: -31.5,-44.5
parent: 2
type: Transform
- uid: 8360
components:
- - pos: -30.5,-53.5
+ - pos: -31.5,-45.5
parent: 2
type: Transform
- uid: 8361
components:
- - pos: -31.5,-53.5
+ - pos: -31.5,-46.5
parent: 2
type: Transform
- uid: 8362
components:
- - pos: -31.5,-54.5
+ - pos: -31.5,-47.5
parent: 2
type: Transform
- uid: 8363
components:
- - pos: -58.5,-88.5
+ - pos: -30.5,-47.5
parent: 2
type: Transform
- uid: 8364
components:
- - pos: -57.5,-88.5
+ - pos: -30.5,-48.5
parent: 2
type: Transform
- uid: 8365
components:
- - pos: -58.5,-87.5
+ - pos: -30.5,-49.5
parent: 2
type: Transform
- uid: 8366
components:
- - pos: -56.5,-88.5
+ - pos: -30.5,-50.5
parent: 2
type: Transform
- uid: 8367
components:
- - pos: -9.5,28.5
+ - pos: -30.5,-51.5
parent: 2
type: Transform
- uid: 8368
components:
- - pos: 14.5,32.5
+ - pos: -30.5,-52.5
parent: 2
type: Transform
- uid: 8369
components:
- - pos: 13.5,32.5
+ - pos: -30.5,-53.5
parent: 2
type: Transform
- uid: 8370
components:
- - pos: 2.5,32.5
+ - pos: -31.5,-53.5
parent: 2
type: Transform
- uid: 8371
components:
- - pos: 1.5,32.5
+ - pos: -31.5,-54.5
parent: 2
type: Transform
- uid: 8372
components:
- - pos: 0.5,32.5
+ - pos: -58.5,-88.5
parent: 2
type: Transform
- uid: 8373
components:
- - pos: -0.5,32.5
+ - pos: -57.5,-88.5
parent: 2
type: Transform
- uid: 8374
components:
- - pos: -1.5,32.5
+ - pos: -58.5,-87.5
parent: 2
type: Transform
- uid: 8375
components:
- - pos: -2.5,32.5
+ - pos: -56.5,-88.5
parent: 2
type: Transform
- uid: 8376
components:
- - pos: -3.5,32.5
+ - pos: -9.5,28.5
parent: 2
type: Transform
- uid: 8377
components:
- - pos: -4.5,32.5
+ - pos: 14.5,32.5
parent: 2
type: Transform
- uid: 8378
components:
- - pos: -5.5,32.5
+ - pos: 13.5,32.5
parent: 2
type: Transform
- uid: 8379
components:
- - pos: -6.5,32.5
+ - pos: 2.5,32.5
parent: 2
type: Transform
- uid: 8380
components:
- - pos: -7.5,32.5
+ - pos: 1.5,32.5
parent: 2
type: Transform
- uid: 8381
components:
- - pos: -8.5,32.5
+ - pos: 0.5,32.5
parent: 2
type: Transform
- uid: 8382
components:
- - pos: -8.5,33.5
+ - pos: -0.5,32.5
parent: 2
type: Transform
- uid: 8383
components:
- - pos: -8.5,34.5
+ - pos: -1.5,32.5
parent: 2
type: Transform
- uid: 8384
components:
- - pos: -8.5,35.5
+ - pos: -2.5,32.5
parent: 2
type: Transform
- uid: 8385
components:
- - pos: -14.5,32.5
+ - pos: -3.5,32.5
parent: 2
type: Transform
- uid: 8386
components:
- - pos: -14.5,30.5
+ - pos: -4.5,32.5
parent: 2
type: Transform
- uid: 8387
components:
- - pos: -14.5,29.5
+ - pos: -5.5,32.5
parent: 2
type: Transform
- uid: 8388
components:
- - pos: -16.5,29.5
+ - pos: -6.5,32.5
parent: 2
type: Transform
- uid: 8389
components:
- - pos: -22.5,17.5
+ - pos: -7.5,32.5
parent: 2
type: Transform
- uid: 8390
components:
- - pos: -21.5,17.5
+ - pos: -8.5,32.5
parent: 2
type: Transform
- uid: 8391
components:
- - pos: -20.5,17.5
+ - pos: -8.5,33.5
parent: 2
type: Transform
- uid: 8392
components:
- - pos: -22.5,16.5
+ - pos: -8.5,34.5
parent: 2
type: Transform
- uid: 8393
components:
- - pos: -23.5,16.5
+ - pos: -8.5,35.5
parent: 2
type: Transform
- uid: 8394
components:
- - pos: -23.5,15.5
+ - pos: -14.5,32.5
parent: 2
type: Transform
- uid: 8395
components:
- - pos: -13.5,3.5
+ - pos: -14.5,30.5
parent: 2
type: Transform
- uid: 8396
components:
- - pos: -13.5,4.5
+ - pos: -14.5,29.5
parent: 2
type: Transform
- uid: 8397
components:
- - pos: -13.5,5.5
+ - pos: -16.5,29.5
parent: 2
type: Transform
- uid: 8398
components:
- - pos: -13.5,6.5
+ - pos: -22.5,17.5
parent: 2
type: Transform
- uid: 8399
components:
- - pos: -13.5,7.5
+ - pos: -21.5,17.5
parent: 2
type: Transform
- uid: 8400
components:
- - pos: -14.5,7.5
+ - pos: -20.5,17.5
parent: 2
type: Transform
- uid: 8401
components:
- - pos: -15.5,7.5
+ - pos: -22.5,16.5
parent: 2
type: Transform
- uid: 8402
components:
- - pos: -16.5,7.5
+ - pos: -23.5,16.5
parent: 2
type: Transform
- uid: 8403
components:
- - pos: -17.5,7.5
+ - pos: -23.5,15.5
parent: 2
type: Transform
- uid: 8404
components:
- - pos: -18.5,7.5
+ - pos: -13.5,3.5
parent: 2
type: Transform
- uid: 8405
components:
- - pos: -19.5,7.5
+ - pos: -13.5,4.5
parent: 2
type: Transform
- uid: 8406
components:
- - pos: -20.5,7.5
+ - pos: -13.5,5.5
parent: 2
type: Transform
- uid: 8407
components:
- - pos: -20.5,8.5
+ - pos: -13.5,6.5
parent: 2
type: Transform
- uid: 8408
components:
- - pos: -20.5,9.5
+ - pos: -13.5,7.5
parent: 2
type: Transform
- uid: 8409
components:
- - pos: -20.5,10.5
+ - pos: -14.5,7.5
parent: 2
type: Transform
- uid: 8410
components:
- - pos: -20.5,11.5
+ - pos: -15.5,7.5
parent: 2
type: Transform
- uid: 8411
components:
- - pos: -20.5,12.5
+ - pos: -16.5,7.5
parent: 2
type: Transform
- uid: 8412
components:
- - pos: -20.5,13.5
+ - pos: -17.5,7.5
parent: 2
type: Transform
- uid: 8413
components:
- - pos: -20.5,14.5
+ - pos: -18.5,7.5
parent: 2
type: Transform
- uid: 8414
components:
- - pos: -20.5,15.5
+ - pos: -19.5,7.5
parent: 2
type: Transform
- uid: 8415
components:
- - pos: -20.5,16.5
+ - pos: -20.5,7.5
parent: 2
type: Transform
- uid: 8416
components:
- - pos: -71.5,-20.5
+ - pos: -20.5,8.5
parent: 2
type: Transform
- uid: 8417
components:
- - pos: -72.5,-20.5
+ - pos: -20.5,9.5
parent: 2
type: Transform
- uid: 8418
components:
- - pos: -73.5,-20.5
+ - pos: -20.5,10.5
parent: 2
type: Transform
- uid: 8419
components:
- - pos: -73.5,-19.5
+ - pos: -20.5,11.5
parent: 2
type: Transform
- uid: 8420
components:
- - pos: -73.5,-18.5
+ - pos: -20.5,12.5
parent: 2
type: Transform
- uid: 8421
components:
- - pos: -73.5,-17.5
+ - pos: -20.5,13.5
parent: 2
type: Transform
- uid: 8422
components:
- - pos: -73.5,-16.5
+ - pos: -20.5,14.5
parent: 2
type: Transform
- uid: 8423
components:
- - pos: -73.5,-15.5
+ - pos: -20.5,15.5
parent: 2
type: Transform
- uid: 8424
components:
- - pos: -73.5,-14.5
+ - pos: -20.5,16.5
parent: 2
type: Transform
- uid: 8425
components:
- - pos: -73.5,-13.5
+ - pos: -71.5,-20.5
parent: 2
type: Transform
- uid: 8426
components:
- - pos: -73.5,-12.5
+ - pos: -72.5,-20.5
parent: 2
type: Transform
- uid: 8427
components:
- - pos: -73.5,-11.5
+ - pos: -73.5,-20.5
parent: 2
type: Transform
- uid: 8428
components:
- - pos: -73.5,-10.5
+ - pos: -73.5,-19.5
parent: 2
type: Transform
- uid: 8429
components:
- - pos: -73.5,-9.5
+ - pos: -73.5,-18.5
parent: 2
type: Transform
- uid: 8430
components:
- - pos: -73.5,-8.5
+ - pos: -73.5,-17.5
parent: 2
type: Transform
- uid: 8431
components:
- - pos: -73.5,-7.5
+ - pos: -73.5,-16.5
parent: 2
type: Transform
- uid: 8432
components:
- - pos: -73.5,-6.5
+ - pos: -73.5,-15.5
parent: 2
type: Transform
- uid: 8433
components:
- - pos: -72.5,-6.5
+ - pos: -73.5,-14.5
parent: 2
type: Transform
- uid: 8434
components:
- - pos: -71.5,-6.5
+ - pos: -73.5,-13.5
parent: 2
type: Transform
- uid: 8435
components:
- - pos: -70.5,-6.5
+ - pos: -73.5,-12.5
parent: 2
type: Transform
- uid: 8436
components:
- - pos: -69.5,-6.5
+ - pos: -73.5,-11.5
parent: 2
type: Transform
- uid: 8437
components:
- - pos: -68.5,-6.5
+ - pos: -73.5,-10.5
parent: 2
type: Transform
- uid: 8438
components:
- - pos: -67.5,-6.5
+ - pos: -73.5,-9.5
parent: 2
type: Transform
- uid: 8439
components:
- - pos: -66.5,-6.5
+ - pos: -73.5,-8.5
parent: 2
type: Transform
- uid: 8440
components:
- - pos: -65.5,-6.5
+ - pos: -73.5,-7.5
parent: 2
type: Transform
- uid: 8441
components:
- - pos: -64.5,-6.5
+ - pos: -73.5,-6.5
parent: 2
type: Transform
- uid: 8442
components:
- - pos: -63.5,-6.5
+ - pos: -72.5,-6.5
parent: 2
type: Transform
- uid: 8443
components:
- - pos: -62.5,-6.5
+ - pos: -71.5,-6.5
parent: 2
type: Transform
- uid: 8444
components:
- - pos: -61.5,-6.5
+ - pos: -70.5,-6.5
parent: 2
type: Transform
- uid: 8445
components:
- - pos: -60.5,-6.5
+ - pos: -69.5,-6.5
parent: 2
type: Transform
- uid: 8446
components:
- - pos: -59.5,-6.5
+ - pos: -68.5,-6.5
parent: 2
type: Transform
- uid: 8447
components:
- - pos: -59.5,-7.5
+ - pos: -67.5,-6.5
parent: 2
type: Transform
- uid: 8448
components:
- - pos: -59.5,-8.5
+ - pos: -66.5,-6.5
parent: 2
type: Transform
- uid: 8449
components:
- - pos: -59.5,-9.5
+ - pos: -65.5,-6.5
parent: 2
type: Transform
- uid: 8450
components:
- - pos: -59.5,-10.5
+ - pos: -64.5,-6.5
parent: 2
type: Transform
- uid: 8451
components:
- - pos: -59.5,-11.5
+ - pos: -63.5,-6.5
parent: 2
type: Transform
- uid: 8452
components:
- - pos: -59.5,-12.5
+ - pos: -62.5,-6.5
parent: 2
type: Transform
- uid: 8453
components:
- - pos: -59.5,-13.5
+ - pos: -61.5,-6.5
parent: 2
type: Transform
- uid: 8454
components:
- - pos: -59.5,-14.5
+ - pos: -60.5,-6.5
parent: 2
type: Transform
- uid: 8455
components:
- - pos: -59.5,-15.5
+ - pos: -59.5,-6.5
parent: 2
type: Transform
- uid: 8456
components:
- - pos: -59.5,-16.5
+ - pos: -59.5,-7.5
parent: 2
type: Transform
- uid: 8457
components:
- - pos: -59.5,-17.5
+ - pos: -59.5,-8.5
parent: 2
type: Transform
- uid: 8458
components:
- - pos: -59.5,-18.5
+ - pos: -59.5,-9.5
parent: 2
type: Transform
- uid: 8459
components:
- - pos: -59.5,-19.5
+ - pos: -59.5,-10.5
parent: 2
type: Transform
- uid: 8460
components:
- - pos: -59.5,-20.5
+ - pos: -59.5,-11.5
parent: 2
type: Transform
- uid: 8461
components:
- - pos: -60.5,-20.5
+ - pos: -59.5,-12.5
parent: 2
type: Transform
- uid: 8462
components:
- - pos: -61.5,-20.5
+ - pos: -59.5,-13.5
parent: 2
type: Transform
- uid: 8463
components:
- - pos: -62.5,-20.5
+ - pos: -59.5,-14.5
parent: 2
type: Transform
- uid: 8464
components:
- - pos: -63.5,-20.5
+ - pos: -59.5,-15.5
parent: 2
type: Transform
- uid: 8465
components:
- - pos: -64.5,-20.5
+ - pos: -59.5,-16.5
parent: 2
type: Transform
- uid: 8466
components:
- - pos: -65.5,-20.5
+ - pos: -59.5,-17.5
parent: 2
type: Transform
- uid: 8467
components:
- - pos: -66.5,-20.5
+ - pos: -59.5,-18.5
parent: 2
type: Transform
- uid: 8468
components:
- - pos: -67.5,-20.5
+ - pos: -59.5,-19.5
parent: 2
type: Transform
- uid: 8469
components:
- - pos: -68.5,-20.5
+ - pos: -59.5,-20.5
parent: 2
type: Transform
- uid: 8470
components:
- - pos: -69.5,-20.5
+ - pos: -60.5,-20.5
parent: 2
type: Transform
- uid: 8471
components:
- - pos: -70.5,-20.5
+ - pos: -61.5,-20.5
parent: 2
type: Transform
- uid: 8472
components:
- - pos: -20.5,-5.5
+ - pos: -62.5,-20.5
parent: 2
type: Transform
- uid: 8473
components:
- - pos: -21.5,-5.5
+ - pos: -63.5,-20.5
parent: 2
type: Transform
- uid: 8474
components:
- - pos: -22.5,-5.5
+ - pos: -64.5,-20.5
parent: 2
type: Transform
- uid: 8475
components:
- - pos: -23.5,-5.5
+ - pos: -65.5,-20.5
parent: 2
type: Transform
- uid: 8476
components:
- - pos: -24.5,-5.5
+ - pos: -66.5,-20.5
parent: 2
type: Transform
- uid: 8477
components:
- - pos: -25.5,-5.5
+ - pos: -67.5,-20.5
parent: 2
type: Transform
- uid: 8478
components:
- - pos: -25.5,-4.5
+ - pos: -68.5,-20.5
parent: 2
type: Transform
- uid: 8479
components:
- - pos: -25.5,-3.5
+ - pos: -69.5,-20.5
parent: 2
type: Transform
- uid: 8480
components:
- - pos: -25.5,-2.5
+ - pos: -70.5,-20.5
parent: 2
type: Transform
- uid: 8481
components:
- - pos: -25.5,-1.5
+ - pos: -20.5,-5.5
parent: 2
type: Transform
- uid: 8482
components:
- - pos: -25.5,-0.5
+ - pos: -21.5,-5.5
parent: 2
type: Transform
- uid: 8483
components:
- - pos: -26.5,-0.5
+ - pos: -22.5,-5.5
parent: 2
type: Transform
- uid: 8484
components:
- - pos: -27.5,-0.5
+ - pos: -23.5,-5.5
parent: 2
type: Transform
- uid: 8485
components:
- - pos: -28.5,-0.5
+ - pos: -24.5,-5.5
parent: 2
type: Transform
- uid: 8486
components:
- - pos: -29.5,-0.5
+ - pos: -25.5,-5.5
parent: 2
type: Transform
- uid: 8487
components:
- - pos: -30.5,-0.5
+ - pos: -25.5,-4.5
parent: 2
type: Transform
- uid: 8488
components:
- - pos: -31.5,-0.5
+ - pos: -25.5,-3.5
parent: 2
type: Transform
- uid: 8489
components:
- - pos: -32.5,-0.5
+ - pos: -25.5,-2.5
parent: 2
type: Transform
- uid: 8490
components:
- - pos: -33.5,-0.5
+ - pos: -25.5,-1.5
parent: 2
type: Transform
- uid: 8491
components:
- - pos: -34.5,-0.5
+ - pos: -25.5,-0.5
parent: 2
type: Transform
- uid: 8492
components:
- - pos: -35.5,-0.5
+ - pos: -26.5,-0.5
parent: 2
type: Transform
- uid: 8493
components:
- - pos: -36.5,-0.5
+ - pos: -27.5,-0.5
parent: 2
type: Transform
- uid: 8494
components:
- - pos: -37.5,-0.5
+ - pos: -28.5,-0.5
parent: 2
type: Transform
- uid: 8495
components:
- - pos: -37.5,-1.5
+ - pos: -29.5,-0.5
parent: 2
type: Transform
- uid: 8496
components:
- - pos: -37.5,-2.5
+ - pos: -30.5,-0.5
parent: 2
type: Transform
- uid: 8497
components:
- - pos: -36.5,-2.5
+ - pos: -31.5,-0.5
parent: 2
type: Transform
- uid: 8498
components:
- - pos: -35.5,-2.5
+ - pos: -32.5,-0.5
parent: 2
type: Transform
- uid: 8499
components:
- - pos: -34.5,-2.5
+ - pos: -33.5,-0.5
parent: 2
type: Transform
- uid: 8500
components:
- - pos: -34.5,-3.5
+ - pos: -34.5,-0.5
parent: 2
type: Transform
- uid: 8501
components:
- - pos: -20.5,18.5
+ - pos: -35.5,-0.5
parent: 2
type: Transform
- uid: 8502
components:
- - pos: -20.5,19.5
+ - pos: -36.5,-0.5
parent: 2
type: Transform
- uid: 8503
components:
- - pos: -20.5,20.5
+ - pos: -37.5,-0.5
parent: 2
type: Transform
- uid: 8504
components:
- - pos: -20.5,21.5
+ - pos: -37.5,-1.5
parent: 2
type: Transform
- uid: 8505
components:
- - pos: -20.5,22.5
+ - pos: -37.5,-2.5
parent: 2
type: Transform
- uid: 8506
components:
- - pos: -20.5,23.5
+ - pos: -36.5,-2.5
parent: 2
type: Transform
- uid: 8507
components:
- - pos: -20.5,24.5
+ - pos: -35.5,-2.5
parent: 2
type: Transform
- uid: 8508
components:
- - pos: -20.5,25.5
+ - pos: -34.5,-2.5
parent: 2
type: Transform
- uid: 8509
components:
- - pos: 8.5,-104.5
+ - pos: -34.5,-3.5
parent: 2
type: Transform
- uid: 8510
components:
- - pos: 7.5,-104.5
+ - pos: -20.5,18.5
parent: 2
type: Transform
- uid: 8511
components:
- - pos: 6.5,-104.5
+ - pos: -20.5,19.5
parent: 2
type: Transform
- uid: 8512
components:
- - pos: 5.5,-104.5
+ - pos: -20.5,20.5
parent: 2
type: Transform
- uid: 8513
components:
- - pos: 4.5,-104.5
+ - pos: -20.5,21.5
parent: 2
type: Transform
- uid: 8514
components:
- - pos: 14.5,-104.5
+ - pos: -20.5,22.5
parent: 2
type: Transform
- uid: 8515
components:
- - pos: 15.5,-104.5
+ - pos: -20.5,23.5
parent: 2
type: Transform
- uid: 8516
components:
- - pos: 16.5,-104.5
+ - pos: -20.5,24.5
parent: 2
type: Transform
- uid: 8517
components:
- - pos: 17.5,-104.5
+ - pos: -20.5,25.5
parent: 2
type: Transform
- uid: 8518
components:
- - pos: 18.5,-104.5
+ - pos: 8.5,-104.5
parent: 2
type: Transform
- uid: 8519
components:
- - pos: 15.5,-101.5
+ - pos: 7.5,-104.5
parent: 2
type: Transform
- uid: 8520
components:
- - pos: 16.5,-101.5
+ - pos: 6.5,-104.5
parent: 2
type: Transform
- uid: 8521
components:
- - pos: 17.5,-101.5
+ - pos: 5.5,-104.5
parent: 2
type: Transform
- uid: 8522
components:
- - pos: 18.5,-101.5
+ - pos: 4.5,-104.5
parent: 2
type: Transform
- uid: 8523
components:
- - pos: 7.5,-101.5
+ - pos: 14.5,-104.5
parent: 2
type: Transform
- uid: 8524
components:
- - pos: 6.5,-101.5
+ - pos: 15.5,-104.5
parent: 2
type: Transform
- uid: 8525
components:
- - pos: 5.5,-101.5
+ - pos: 16.5,-104.5
parent: 2
type: Transform
- uid: 8526
components:
- - pos: 4.5,-101.5
+ - pos: 17.5,-104.5
parent: 2
type: Transform
- uid: 8527
components:
- - pos: 4.5,-98.5
+ - pos: 18.5,-104.5
parent: 2
type: Transform
- uid: 8528
components:
- - pos: 5.5,-98.5
+ - pos: 15.5,-101.5
parent: 2
type: Transform
- uid: 8529
components:
- - pos: 6.5,-98.5
+ - pos: 16.5,-101.5
parent: 2
type: Transform
- uid: 8530
components:
- - pos: 7.5,-98.5
+ - pos: 17.5,-101.5
parent: 2
type: Transform
- uid: 8531
components:
- - pos: 18.5,-98.5
+ - pos: 18.5,-101.5
parent: 2
type: Transform
- uid: 8532
components:
- - pos: 17.5,-98.5
+ - pos: 7.5,-101.5
parent: 2
type: Transform
- uid: 8533
components:
- - pos: 16.5,-98.5
+ - pos: 6.5,-101.5
parent: 2
type: Transform
- uid: 8534
components:
- - pos: 15.5,-98.5
+ - pos: 5.5,-101.5
parent: 2
type: Transform
- uid: 8535
components:
- - pos: -2.5,-57.5
+ - pos: 4.5,-101.5
parent: 2
type: Transform
- uid: 8536
components:
- - pos: -2.5,-56.5
+ - pos: 4.5,-98.5
parent: 2
type: Transform
- uid: 8537
components:
- - pos: -2.5,-55.5
+ - pos: 5.5,-98.5
parent: 2
type: Transform
- uid: 8538
components:
- - pos: -2.5,-54.5
+ - pos: 6.5,-98.5
parent: 2
type: Transform
- uid: 8539
components:
- - pos: -2.5,-53.5
+ - pos: 7.5,-98.5
parent: 2
type: Transform
- uid: 8540
components:
- - pos: -1.5,-53.5
+ - pos: 18.5,-98.5
parent: 2
type: Transform
- uid: 8541
components:
- - pos: -0.5,-53.5
+ - pos: 17.5,-98.5
parent: 2
type: Transform
- uid: 8542
components:
- - pos: -0.5,-52.5
+ - pos: 16.5,-98.5
parent: 2
type: Transform
- uid: 8543
components:
- - pos: -0.5,-51.5
+ - pos: 15.5,-98.5
parent: 2
type: Transform
- uid: 8544
components:
- - pos: -0.5,-50.5
+ - pos: -2.5,-57.5
parent: 2
type: Transform
- uid: 8545
components:
- - pos: -0.5,-49.5
+ - pos: -2.5,-56.5
parent: 2
type: Transform
- uid: 8546
components:
- - pos: -0.5,-48.5
+ - pos: -2.5,-55.5
parent: 2
type: Transform
- uid: 8547
components:
- - pos: -0.5,-47.5
+ - pos: -2.5,-54.5
parent: 2
type: Transform
- uid: 8548
components:
- - pos: -0.5,-46.5
+ - pos: -2.5,-53.5
parent: 2
type: Transform
- uid: 8549
components:
- - pos: -0.5,-45.5
+ - pos: -1.5,-53.5
parent: 2
type: Transform
- uid: 8550
components:
- - pos: -0.5,-44.5
+ - pos: -0.5,-53.5
parent: 2
type: Transform
- uid: 8551
components:
- - pos: -0.5,-43.5
+ - pos: -0.5,-52.5
parent: 2
type: Transform
- uid: 8552
components:
- - pos: -53.5,-18.5
+ - pos: -0.5,-51.5
parent: 2
type: Transform
- uid: 8553
components:
- - pos: -53.5,-17.5
+ - pos: -0.5,-50.5
parent: 2
type: Transform
- uid: 8554
components:
- - pos: -53.5,-16.5
+ - pos: -0.5,-49.5
parent: 2
type: Transform
- uid: 8555
components:
- - pos: -53.5,-15.5
+ - pos: -0.5,-48.5
parent: 2
type: Transform
- uid: 8556
components:
- - pos: -53.5,-14.5
+ - pos: -0.5,-47.5
parent: 2
type: Transform
- uid: 8557
components:
- - pos: -53.5,-13.5
+ - pos: -0.5,-46.5
parent: 2
type: Transform
- uid: 8558
components:
- - pos: -54.5,-13.5
+ - pos: -0.5,-45.5
parent: 2
type: Transform
- uid: 8559
components:
- - pos: -55.5,-13.5
+ - pos: -0.5,-44.5
parent: 2
type: Transform
- uid: 8560
components:
- - pos: -55.5,-25.5
+ - pos: -0.5,-43.5
parent: 2
type: Transform
- uid: 8561
components:
- - pos: -56.5,-25.5
+ - pos: -53.5,-18.5
parent: 2
type: Transform
- uid: 8562
components:
- - pos: -57.5,-25.5
+ - pos: -53.5,-17.5
parent: 2
type: Transform
- uid: 8563
components:
- - pos: -60.5,-27.5
+ - pos: -53.5,-16.5
parent: 2
type: Transform
- uid: 8564
components:
- - pos: -54.5,-25.5
+ - pos: -53.5,-15.5
parent: 2
type: Transform
- uid: 8565
components:
- - pos: -52.5,-25.5
+ - pos: -53.5,-14.5
parent: 2
type: Transform
- uid: 8566
components:
- - pos: -0.5,-79.5
+ - pos: -53.5,-13.5
parent: 2
type: Transform
- uid: 8567
components:
- - pos: -14.5,38.5
+ - pos: -54.5,-13.5
parent: 2
type: Transform
- uid: 8568
components:
- - pos: -14.5,43.5
+ - pos: -55.5,-13.5
parent: 2
type: Transform
- uid: 8569
components:
- - pos: -14.5,41.5
+ - pos: -55.5,-25.5
parent: 2
type: Transform
- uid: 8570
components:
- - pos: -17.5,29.5
+ - pos: -56.5,-25.5
parent: 2
type: Transform
- uid: 8571
components:
- - pos: -14.5,37.5
+ - pos: -57.5,-25.5
parent: 2
type: Transform
- uid: 8572
components:
- - pos: -15.5,29.5
+ - pos: -60.5,-27.5
parent: 2
type: Transform
- uid: 8573
components:
- - pos: -0.5,-78.5
+ - pos: -54.5,-25.5
parent: 2
type: Transform
- uid: 8574
components:
- - pos: -0.5,-77.5
+ - pos: -52.5,-25.5
parent: 2
type: Transform
- uid: 8575
components:
- - pos: 12.5,-104.5
+ - pos: -0.5,-79.5
parent: 2
type: Transform
- uid: 8576
components:
- - pos: 10.5,-104.5
+ - pos: -14.5,38.5
parent: 2
type: Transform
- uid: 8577
components:
- - pos: -74.5,-38.5
+ - pos: -14.5,43.5
parent: 2
type: Transform
- uid: 8578
components:
- - pos: -75.5,-38.5
+ - pos: -14.5,41.5
parent: 2
type: Transform
- uid: 8579
components:
- - pos: -79.5,-37.5
+ - pos: -17.5,29.5
parent: 2
type: Transform
- uid: 8580
components:
- - pos: 5.5,-14.5
+ - pos: -14.5,37.5
parent: 2
type: Transform
- uid: 8581
components:
- - pos: 8.5,-14.5
+ - pos: -15.5,29.5
parent: 2
type: Transform
- uid: 8582
components:
- - pos: 33.5,22.5
+ - pos: -0.5,-78.5
parent: 2
type: Transform
- uid: 8583
components:
- - pos: 34.5,22.5
+ - pos: -0.5,-77.5
parent: 2
type: Transform
- uid: 8584
components:
- - pos: 35.5,22.5
+ - pos: 12.5,-104.5
parent: 2
type: Transform
- uid: 8585
components:
- - pos: 36.5,22.5
+ - pos: 10.5,-104.5
parent: 2
type: Transform
- uid: 8586
components:
- - pos: 36.5,23.5
+ - pos: -74.5,-38.5
parent: 2
type: Transform
- uid: 8587
components:
- - pos: 37.5,23.5
+ - pos: -75.5,-38.5
parent: 2
type: Transform
- uid: 8588
components:
- - pos: 38.5,23.5
+ - pos: -79.5,-37.5
parent: 2
type: Transform
- uid: 8589
components:
- - pos: 39.5,23.5
+ - pos: 5.5,-14.5
parent: 2
type: Transform
- uid: 8590
components:
- - pos: 40.5,23.5
+ - pos: 8.5,-14.5
parent: 2
type: Transform
- uid: 8591
components:
- - pos: 41.5,23.5
+ - pos: 33.5,22.5
parent: 2
type: Transform
- uid: 8592
components:
- - pos: 42.5,23.5
+ - pos: 34.5,22.5
parent: 2
type: Transform
- uid: 8593
components:
- - pos: 43.5,23.5
+ - pos: 35.5,22.5
parent: 2
type: Transform
- uid: 8594
components:
- - pos: 44.5,23.5
+ - pos: 36.5,22.5
parent: 2
type: Transform
- uid: 8595
components:
- - pos: 44.5,24.5
+ - pos: 36.5,23.5
parent: 2
type: Transform
- uid: 8596
components:
- - pos: 44.5,25.5
+ - pos: 37.5,23.5
parent: 2
type: Transform
- uid: 8597
components:
- - pos: 44.5,26.5
+ - pos: 38.5,23.5
parent: 2
type: Transform
- uid: 8598
components:
- - pos: 45.5,26.5
+ - pos: 39.5,23.5
parent: 2
type: Transform
- uid: 8599
components:
- - pos: 46.5,26.5
+ - pos: 40.5,23.5
parent: 2
type: Transform
- uid: 8600
components:
- - pos: 47.5,26.5
+ - pos: 41.5,23.5
parent: 2
type: Transform
- uid: 8601
components:
- - pos: 48.5,26.5
+ - pos: 42.5,23.5
parent: 2
type: Transform
- uid: 8602
components:
- - pos: 48.5,27.5
+ - pos: 43.5,23.5
parent: 2
type: Transform
- uid: 8603
components:
- - pos: 48.5,28.5
+ - pos: 44.5,23.5
parent: 2
type: Transform
- uid: 8604
components:
- - pos: 49.5,28.5
+ - pos: 44.5,24.5
parent: 2
type: Transform
- uid: 8605
components:
- - pos: 50.5,28.5
+ - pos: 44.5,25.5
parent: 2
type: Transform
- uid: 8606
components:
- - pos: 50.5,29.5
+ - pos: 44.5,26.5
parent: 2
type: Transform
- uid: 8607
components:
- - pos: 91.5,36.5
+ - pos: 45.5,26.5
parent: 2
type: Transform
- uid: 8608
components:
- - pos: 77.5,36.5
+ - pos: 46.5,26.5
parent: 2
type: Transform
- uid: 8609
components:
- - pos: 76.5,36.5
+ - pos: 47.5,26.5
parent: 2
type: Transform
- uid: 8610
components:
- - pos: 75.5,36.5
+ - pos: 48.5,26.5
parent: 2
type: Transform
- uid: 8611
components:
- - pos: 74.5,36.5
+ - pos: 48.5,27.5
parent: 2
type: Transform
- uid: 8612
components:
- - pos: 78.5,44.5
+ - pos: 48.5,28.5
parent: 2
type: Transform
- uid: 8613
components:
- - pos: 78.5,43.5
+ - pos: 49.5,28.5
parent: 2
type: Transform
- uid: 8614
components:
- - pos: 78.5,42.5
+ - pos: 50.5,28.5
parent: 2
type: Transform
- uid: 8615
components:
- - pos: 78.5,41.5
+ - pos: 50.5,29.5
parent: 2
type: Transform
- uid: 8616
components:
- - pos: 78.5,40.5
+ - pos: 91.5,36.5
parent: 2
type: Transform
- uid: 8617
components:
- - pos: 78.5,39.5
+ - pos: 77.5,36.5
parent: 2
type: Transform
- uid: 8618
components:
- - pos: 78.5,38.5
+ - pos: 76.5,36.5
parent: 2
type: Transform
- uid: 8619
components:
- - pos: 78.5,37.5
+ - pos: 75.5,36.5
parent: 2
type: Transform
- uid: 8620
components:
- - pos: 78.5,35.5
+ - pos: 74.5,36.5
parent: 2
type: Transform
- uid: 8621
components:
- - pos: 78.5,34.5
+ - pos: 78.5,44.5
parent: 2
type: Transform
- uid: 8622
components:
- - pos: 78.5,33.5
+ - pos: 78.5,43.5
parent: 2
type: Transform
- uid: 8623
components:
- - pos: 78.5,32.5
+ - pos: 78.5,42.5
parent: 2
type: Transform
- uid: 8624
components:
- - pos: 78.5,31.5
+ - pos: 78.5,41.5
parent: 2
type: Transform
- uid: 8625
components:
- - pos: 78.5,30.5
+ - pos: 78.5,40.5
parent: 2
type: Transform
- uid: 8626
components:
- - pos: 78.5,29.5
+ - pos: 78.5,39.5
parent: 2
type: Transform
- uid: 8627
components:
- - pos: 78.5,28.5
+ - pos: 78.5,38.5
parent: 2
type: Transform
- uid: 8628
components:
- - pos: 81.5,28.5
+ - pos: 78.5,37.5
parent: 2
type: Transform
- uid: 8629
components:
- - pos: 81.5,29.5
+ - pos: 78.5,35.5
parent: 2
type: Transform
- uid: 8630
components:
- - pos: 81.5,30.5
+ - pos: 78.5,34.5
parent: 2
type: Transform
- uid: 8631
components:
- - pos: 81.5,31.5
+ - pos: 78.5,33.5
parent: 2
type: Transform
- uid: 8632
components:
- - pos: 81.5,32.5
+ - pos: 78.5,32.5
parent: 2
type: Transform
- uid: 8633
components:
- - pos: 81.5,33.5
+ - pos: 78.5,31.5
parent: 2
type: Transform
- uid: 8634
components:
- - pos: 81.5,34.5
+ - pos: 78.5,30.5
parent: 2
type: Transform
- uid: 8635
components:
- - pos: 81.5,35.5
+ - pos: 78.5,29.5
parent: 2
type: Transform
- uid: 8636
components:
- - pos: 81.5,37.5
+ - pos: 78.5,28.5
parent: 2
type: Transform
- uid: 8637
components:
- - pos: 81.5,38.5
+ - pos: 81.5,28.5
parent: 2
type: Transform
- uid: 8638
components:
- - pos: 81.5,39.5
+ - pos: 81.5,29.5
parent: 2
type: Transform
- uid: 8639
components:
- - pos: 81.5,40.5
+ - pos: 81.5,30.5
parent: 2
type: Transform
- uid: 8640
components:
- - pos: 81.5,41.5
+ - pos: 81.5,31.5
parent: 2
type: Transform
- uid: 8641
components:
- - pos: 81.5,42.5
+ - pos: 81.5,32.5
parent: 2
type: Transform
- uid: 8642
components:
- - pos: 81.5,43.5
+ - pos: 81.5,33.5
parent: 2
type: Transform
- uid: 8643
components:
- - pos: 81.5,44.5
+ - pos: 81.5,34.5
parent: 2
type: Transform
- uid: 8644
components:
- - pos: 84.5,44.5
+ - pos: 81.5,35.5
parent: 2
type: Transform
- uid: 8645
components:
- - pos: 84.5,43.5
+ - pos: 81.5,37.5
parent: 2
type: Transform
- uid: 8646
components:
- - pos: 84.5,42.5
+ - pos: 81.5,38.5
parent: 2
type: Transform
- uid: 8647
components:
- - pos: 84.5,41.5
+ - pos: 81.5,39.5
parent: 2
type: Transform
- uid: 8648
components:
- - pos: 84.5,40.5
+ - pos: 81.5,40.5
parent: 2
type: Transform
- uid: 8649
components:
- - pos: 84.5,39.5
+ - pos: 81.5,41.5
parent: 2
type: Transform
- uid: 8650
components:
- - pos: 84.5,38.5
+ - pos: 81.5,42.5
parent: 2
type: Transform
- uid: 8651
components:
- - pos: 84.5,37.5
+ - pos: 81.5,43.5
parent: 2
type: Transform
- uid: 8652
components:
- - pos: 84.5,35.5
+ - pos: 81.5,44.5
parent: 2
type: Transform
- uid: 8653
components:
- - pos: 84.5,34.5
+ - pos: 84.5,44.5
parent: 2
type: Transform
- uid: 8654
components:
- - pos: 84.5,33.5
+ - pos: 84.5,43.5
parent: 2
type: Transform
- uid: 8655
components:
- - pos: 84.5,32.5
+ - pos: 84.5,42.5
parent: 2
type: Transform
- uid: 8656
components:
- - pos: 84.5,31.5
+ - pos: 84.5,41.5
parent: 2
type: Transform
- uid: 8657
components:
- - pos: 84.5,30.5
+ - pos: 84.5,40.5
parent: 2
type: Transform
- uid: 8658
components:
- - pos: 84.5,29.5
+ - pos: 84.5,39.5
parent: 2
type: Transform
- uid: 8659
components:
- - pos: 84.5,28.5
+ - pos: 84.5,38.5
parent: 2
type: Transform
- uid: 8660
components:
- - pos: 87.5,28.5
+ - pos: 84.5,37.5
parent: 2
type: Transform
- uid: 8661
components:
- - pos: 87.5,29.5
+ - pos: 84.5,35.5
parent: 2
type: Transform
- uid: 8662
components:
- - pos: 87.5,30.5
+ - pos: 84.5,34.5
parent: 2
type: Transform
- uid: 8663
components:
- - pos: 87.5,31.5
+ - pos: 84.5,33.5
parent: 2
type: Transform
- uid: 8664
components:
- - pos: 87.5,32.5
+ - pos: 84.5,32.5
parent: 2
type: Transform
- uid: 8665
components:
- - pos: 87.5,33.5
+ - pos: 84.5,31.5
parent: 2
type: Transform
- uid: 8666
components:
- - pos: 87.5,34.5
+ - pos: 84.5,30.5
parent: 2
type: Transform
- uid: 8667
components:
- - pos: 87.5,35.5
+ - pos: 84.5,29.5
parent: 2
type: Transform
- uid: 8668
components:
- - pos: 87.5,37.5
+ - pos: 84.5,28.5
parent: 2
type: Transform
- uid: 8669
components:
- - pos: 87.5,38.5
+ - pos: 87.5,28.5
parent: 2
type: Transform
- uid: 8670
components:
- - pos: 87.5,39.5
+ - pos: 87.5,29.5
parent: 2
type: Transform
- uid: 8671
components:
- - pos: 87.5,40.5
+ - pos: 87.5,30.5
parent: 2
type: Transform
- uid: 8672
components:
- - pos: 87.5,41.5
+ - pos: 87.5,31.5
parent: 2
type: Transform
- uid: 8673
components:
- - pos: 87.5,42.5
+ - pos: 87.5,32.5
parent: 2
type: Transform
- uid: 8674
components:
- - pos: 87.5,43.5
+ - pos: 87.5,33.5
parent: 2
type: Transform
- uid: 8675
components:
- - pos: 87.5,44.5
+ - pos: 87.5,34.5
parent: 2
type: Transform
- uid: 8676
components:
- - pos: 90.5,44.5
+ - pos: 87.5,35.5
parent: 2
type: Transform
- uid: 8677
components:
- - pos: 90.5,43.5
+ - pos: 87.5,37.5
parent: 2
type: Transform
- uid: 8678
components:
- - pos: 90.5,42.5
+ - pos: 87.5,38.5
parent: 2
type: Transform
- uid: 8679
components:
- - pos: 90.5,41.5
+ - pos: 87.5,39.5
parent: 2
type: Transform
- uid: 8680
components:
- - pos: 90.5,40.5
+ - pos: 87.5,40.5
parent: 2
type: Transform
- uid: 8681
components:
- - pos: 90.5,39.5
+ - pos: 87.5,41.5
parent: 2
type: Transform
- uid: 8682
components:
- - pos: 90.5,38.5
+ - pos: 87.5,42.5
parent: 2
type: Transform
- uid: 8683
components:
- - pos: 90.5,37.5
+ - pos: 87.5,43.5
parent: 2
type: Transform
- uid: 8684
components:
- - pos: 90.5,35.5
+ - pos: 87.5,44.5
parent: 2
type: Transform
- uid: 8685
components:
- - pos: 90.5,34.5
+ - pos: 90.5,44.5
parent: 2
type: Transform
- uid: 8686
components:
- - pos: 90.5,33.5
+ - pos: 90.5,43.5
parent: 2
type: Transform
- uid: 8687
components:
- - pos: 90.5,32.5
+ - pos: 90.5,42.5
parent: 2
type: Transform
- uid: 8688
components:
- - pos: 90.5,31.5
+ - pos: 90.5,41.5
parent: 2
type: Transform
- uid: 8689
components:
- - pos: 90.5,30.5
+ - pos: 90.5,40.5
parent: 2
type: Transform
- uid: 8690
components:
- - pos: 90.5,29.5
+ - pos: 90.5,39.5
parent: 2
type: Transform
- uid: 8691
components:
- - pos: 90.5,28.5
+ - pos: 90.5,38.5
parent: 2
type: Transform
- uid: 8692
components:
- - pos: 74.5,37.5
+ - pos: 90.5,37.5
parent: 2
type: Transform
- uid: 8693
components:
- - pos: 74.5,38.5
+ - pos: 90.5,35.5
parent: 2
type: Transform
- uid: 8694
components:
- - pos: 73.5,38.5
+ - pos: 90.5,34.5
parent: 2
type: Transform
- uid: 8695
components:
- - pos: 72.5,38.5
+ - pos: 90.5,33.5
parent: 2
type: Transform
- uid: 8696
components:
- - pos: 74.5,35.5
+ - pos: 90.5,32.5
parent: 2
type: Transform
- uid: 8697
components:
- - pos: 74.5,34.5
+ - pos: 90.5,31.5
parent: 2
type: Transform
- uid: 8698
components:
- - pos: 73.5,34.5
+ - pos: 90.5,30.5
parent: 2
type: Transform
- uid: 8699
components:
- - pos: 72.5,34.5
+ - pos: 90.5,29.5
parent: 2
type: Transform
- uid: 8700
components:
- - pos: 71.5,34.5
+ - pos: 90.5,28.5
parent: 2
type: Transform
- uid: 8701
components:
- - pos: 70.5,34.5
+ - pos: 74.5,37.5
parent: 2
type: Transform
- uid: 8702
components:
- - pos: 70.5,35.5
+ - pos: 74.5,38.5
parent: 2
type: Transform
- uid: 8703
components:
- - pos: 70.5,36.5
+ - pos: 73.5,38.5
parent: 2
type: Transform
- uid: 8704
components:
- - pos: 69.5,36.5
+ - pos: 72.5,38.5
parent: 2
type: Transform
- uid: 8705
components:
- - pos: 71.5,38.5
+ - pos: 74.5,35.5
parent: 2
type: Transform
- uid: 8706
components:
- - pos: 70.5,38.5
+ - pos: 74.5,34.5
parent: 2
type: Transform
- uid: 8707
components:
- - pos: 70.5,37.5
+ - pos: 73.5,34.5
parent: 2
type: Transform
- uid: 8708
components:
- - pos: 68.5,36.5
+ - pos: 72.5,34.5
parent: 2
type: Transform
- uid: 8709
components:
- - pos: 67.5,36.5
+ - pos: 71.5,34.5
parent: 2
type: Transform
- uid: 8710
components:
- - pos: 66.5,36.5
+ - pos: 70.5,34.5
parent: 2
type: Transform
- uid: 8711
components:
- - pos: 65.5,36.5
+ - pos: 70.5,35.5
parent: 2
type: Transform
- uid: 8712
components:
- - pos: 64.5,36.5
+ - pos: 70.5,36.5
parent: 2
type: Transform
- uid: 8713
components:
- - pos: 63.5,36.5
+ - pos: 69.5,36.5
parent: 2
type: Transform
- uid: 8714
components:
- - pos: 63.5,35.5
+ - pos: 71.5,38.5
parent: 2
type: Transform
- uid: 8715
components:
- - pos: 63.5,34.5
+ - pos: 70.5,38.5
parent: 2
type: Transform
- uid: 8716
components:
- - pos: 63.5,33.5
+ - pos: 70.5,37.5
parent: 2
type: Transform
- uid: 8717
components:
- - pos: 63.5,32.5
+ - pos: 68.5,36.5
parent: 2
type: Transform
- uid: 8718
components:
- - pos: 63.5,31.5
+ - pos: 67.5,36.5
parent: 2
type: Transform
- uid: 8719
components:
- - pos: 63.5,30.5
+ - pos: 66.5,36.5
parent: 2
type: Transform
- uid: 8720
components:
- - pos: 63.5,29.5
+ - pos: 65.5,36.5
parent: 2
type: Transform
- uid: 8721
components:
- - pos: 63.5,28.5
+ - pos: 64.5,36.5
parent: 2
type: Transform
- uid: 8722
components:
- - pos: 63.5,27.5
+ - pos: 63.5,36.5
parent: 2
type: Transform
- uid: 8723
components:
- - pos: 63.5,26.5
+ - pos: 63.5,35.5
parent: 2
type: Transform
- uid: 8724
components:
- - pos: 62.5,26.5
+ - pos: 63.5,34.5
parent: 2
type: Transform
- uid: 8725
components:
- - pos: 61.5,26.5
+ - pos: 63.5,33.5
parent: 2
type: Transform
- uid: 8726
components:
- - pos: 60.5,26.5
+ - pos: 63.5,32.5
parent: 2
type: Transform
- uid: 8727
components:
- - pos: 59.5,26.5
+ - pos: 63.5,31.5
parent: 2
type: Transform
- uid: 8728
components:
- - pos: 58.5,26.5
+ - pos: 63.5,30.5
parent: 2
type: Transform
- uid: 8729
components:
- - pos: 57.5,26.5
+ - pos: 63.5,29.5
parent: 2
type: Transform
- uid: 8730
components:
- - pos: 56.5,26.5
+ - pos: 63.5,28.5
parent: 2
type: Transform
- uid: 8731
components:
- - pos: 55.5,26.5
+ - pos: 63.5,27.5
parent: 2
type: Transform
- uid: 8732
components:
- - pos: 54.5,26.5
+ - pos: 63.5,26.5
parent: 2
type: Transform
- uid: 8733
components:
- - pos: 53.5,26.5
+ - pos: 62.5,26.5
parent: 2
type: Transform
- uid: 8734
components:
- - pos: 52.5,26.5
+ - pos: 61.5,26.5
parent: 2
type: Transform
- uid: 8735
components:
- - pos: 51.5,26.5
+ - pos: 60.5,26.5
parent: 2
type: Transform
- uid: 8736
components:
- - pos: 50.5,26.5
+ - pos: 59.5,26.5
parent: 2
type: Transform
- uid: 8737
components:
- - pos: 49.5,26.5
+ - pos: 58.5,26.5
parent: 2
type: Transform
- uid: 8738
components:
- - pos: -11.5,26.5
+ - pos: 57.5,26.5
parent: 2
type: Transform
- uid: 8739
components:
- - pos: -12.5,26.5
+ - pos: 56.5,26.5
parent: 2
type: Transform
- uid: 8740
components:
- - pos: -13.5,26.5
+ - pos: 55.5,26.5
parent: 2
type: Transform
- uid: 8741
components:
- - pos: -14.5,26.5
+ - pos: 54.5,26.5
parent: 2
type: Transform
- uid: 8742
components:
- - pos: -15.5,26.5
+ - pos: 53.5,26.5
parent: 2
type: Transform
- uid: 8743
components:
- - pos: -15.5,27.5
+ - pos: 52.5,26.5
parent: 2
type: Transform
- uid: 8744
components:
- - pos: -15.5,28.5
+ - pos: 51.5,26.5
parent: 2
type: Transform
- uid: 8745
components:
- - pos: -1.5,69.5
+ - pos: 50.5,26.5
parent: 2
type: Transform
- uid: 8746
components:
- - pos: -1.5,68.5
+ - pos: 49.5,26.5
parent: 2
type: Transform
- uid: 8747
components:
- - pos: -1.5,67.5
+ - pos: -11.5,26.5
parent: 2
type: Transform
- uid: 8748
components:
- - pos: -1.5,66.5
+ - pos: -12.5,26.5
parent: 2
type: Transform
- uid: 8749
components:
- - pos: -1.5,65.5
+ - pos: -13.5,26.5
parent: 2
type: Transform
- uid: 8750
components:
- - pos: -1.5,64.5
+ - pos: -14.5,26.5
parent: 2
type: Transform
- uid: 8751
components:
- - pos: -1.5,63.5
+ - pos: -15.5,26.5
parent: 2
type: Transform
- uid: 8752
components:
- - pos: -1.5,62.5
+ - pos: -15.5,27.5
parent: 2
type: Transform
- uid: 8753
components:
- - pos: -1.5,61.5
+ - pos: -15.5,28.5
parent: 2
type: Transform
- uid: 8754
components:
- - pos: -1.5,60.5
+ - pos: -1.5,69.5
parent: 2
type: Transform
- uid: 8755
components:
- - pos: -1.5,59.5
+ - pos: -1.5,68.5
parent: 2
type: Transform
- uid: 8756
components:
- - pos: -1.5,58.5
+ - pos: -1.5,67.5
parent: 2
type: Transform
- uid: 8757
components:
- - pos: -2.5,58.5
+ - pos: -1.5,66.5
parent: 2
type: Transform
- uid: 8758
components:
- - pos: -3.5,58.5
+ - pos: -1.5,65.5
parent: 2
type: Transform
- uid: 8759
components:
- - pos: -4.5,58.5
+ - pos: -1.5,64.5
parent: 2
type: Transform
- uid: 8760
components:
- - pos: -5.5,58.5
+ - pos: -1.5,63.5
parent: 2
type: Transform
- uid: 8761
components:
- - pos: -6.5,58.5
+ - pos: -1.5,62.5
parent: 2
type: Transform
- uid: 8762
components:
- - pos: -7.5,58.5
+ - pos: -1.5,61.5
parent: 2
type: Transform
- uid: 8763
components:
- - pos: -8.5,58.5
+ - pos: -1.5,60.5
parent: 2
type: Transform
- uid: 8764
components:
- - pos: -9.5,58.5
+ - pos: -1.5,59.5
parent: 2
type: Transform
- uid: 8765
components:
- - pos: -10.5,58.5
+ - pos: -1.5,58.5
parent: 2
type: Transform
- uid: 8766
components:
- - pos: -10.5,59.5
+ - pos: -2.5,58.5
parent: 2
type: Transform
- uid: 8767
components:
- - pos: -10.5,60.5
+ - pos: -3.5,58.5
parent: 2
type: Transform
- uid: 8768
components:
- - pos: -10.5,61.5
+ - pos: -4.5,58.5
parent: 2
type: Transform
- uid: 8769
components:
- - pos: -10.5,62.5
+ - pos: -5.5,58.5
parent: 2
type: Transform
- uid: 8770
components:
- - pos: -71.5,-23.5
+ - pos: -6.5,58.5
parent: 2
type: Transform
- uid: 8771
components:
- - pos: -71.5,-24.5
+ - pos: -7.5,58.5
parent: 2
type: Transform
- uid: 8772
components:
- - pos: -71.5,-25.5
+ - pos: -8.5,58.5
parent: 2
type: Transform
- uid: 8773
components:
- - pos: -72.5,-25.5
+ - pos: -9.5,58.5
parent: 2
type: Transform
- uid: 8774
components:
- - pos: -72.5,-26.5
+ - pos: -10.5,58.5
parent: 2
type: Transform
- uid: 8775
components:
- - pos: -72.5,-27.5
+ - pos: -10.5,59.5
parent: 2
type: Transform
- uid: 8776
components:
- - pos: -72.5,-28.5
+ - pos: -10.5,60.5
parent: 2
type: Transform
- uid: 8777
components:
- - pos: -71.5,-28.5
+ - pos: -10.5,61.5
parent: 2
type: Transform
- uid: 8778
components:
- - pos: -70.5,-28.5
+ - pos: -10.5,62.5
parent: 2
type: Transform
- uid: 8779
components:
- - pos: -70.5,-29.5
+ - pos: -71.5,-23.5
parent: 2
type: Transform
- uid: 8780
components:
- - pos: -72.5,-29.5
+ - pos: -71.5,-24.5
parent: 2
type: Transform
- uid: 8781
components:
- - pos: -73.5,-28.5
+ - pos: -71.5,-25.5
parent: 2
type: Transform
- uid: 8782
components:
- - pos: -74.5,-28.5
+ - pos: -72.5,-25.5
parent: 2
type: Transform
- uid: 8783
components:
- - pos: -74.5,-29.5
+ - pos: -72.5,-26.5
parent: 2
type: Transform
- uid: 8784
components:
- - pos: -74.5,-30.5
+ - pos: -72.5,-27.5
parent: 2
type: Transform
- uid: 8785
components:
- - pos: -72.5,-30.5
+ - pos: -72.5,-28.5
parent: 2
type: Transform
- uid: 8786
components:
- - pos: -70.5,-30.5
+ - pos: -71.5,-28.5
parent: 2
type: Transform
- uid: 8787
components:
- - pos: -70.5,-31.5
+ - pos: -70.5,-28.5
parent: 2
type: Transform
- uid: 8788
components:
- - pos: -72.5,-38.5
+ - pos: -70.5,-29.5
parent: 2
type: Transform
- uid: 8789
components:
- - pos: -72.5,-32.5
+ - pos: -72.5,-29.5
parent: 2
type: Transform
- uid: 8790
components:
- - pos: -74.5,-31.5
+ - pos: -73.5,-28.5
parent: 2
type: Transform
- uid: 8791
components:
- - pos: -74.5,-32.5
+ - pos: -74.5,-28.5
parent: 2
type: Transform
- uid: 8792
components:
- - pos: -72.5,-31.5
+ - pos: -74.5,-29.5
parent: 2
type: Transform
- uid: 8793
components:
- - pos: -72.5,-33.5
+ - pos: -74.5,-30.5
parent: 2
type: Transform
- uid: 8794
components:
- - pos: -69.5,-34.5
+ - pos: -72.5,-30.5
parent: 2
type: Transform
- uid: 8795
components:
- - pos: -69.5,-35.5
+ - pos: -70.5,-30.5
parent: 2
type: Transform
- uid: 8796
components:
- - pos: -76.5,-38.5
+ - pos: -70.5,-31.5
parent: 2
type: Transform
- uid: 8797
components:
- - pos: -73.5,-38.5
+ - pos: -72.5,-38.5
parent: 2
type: Transform
- uid: 8798
components:
- - pos: -79.5,-35.5
+ - pos: -72.5,-32.5
parent: 2
type: Transform
- uid: 8799
components:
- - pos: 68.5,-46.5
+ - pos: -74.5,-31.5
parent: 2
type: Transform
- uid: 8800
components:
- - pos: 67.5,-46.5
+ - pos: -74.5,-32.5
parent: 2
type: Transform
- uid: 8801
components:
- - pos: 66.5,-46.5
+ - pos: -72.5,-31.5
parent: 2
type: Transform
- uid: 8802
components:
- - pos: 65.5,-46.5
+ - pos: -72.5,-33.5
parent: 2
type: Transform
- uid: 8803
components:
- - pos: 64.5,-46.5
+ - pos: -69.5,-34.5
parent: 2
type: Transform
- uid: 8804
components:
- - pos: 64.5,-45.5
+ - pos: -69.5,-35.5
parent: 2
type: Transform
- uid: 8805
components:
- - pos: 64.5,-44.5
+ - pos: -76.5,-38.5
parent: 2
type: Transform
- uid: 8806
components:
- - pos: 63.5,-44.5
+ - pos: -73.5,-38.5
parent: 2
type: Transform
- uid: 8807
components:
- - pos: 62.5,-44.5
+ - pos: -79.5,-35.5
parent: 2
type: Transform
- uid: 8808
components:
- - pos: 61.5,-44.5
+ - pos: 68.5,-46.5
parent: 2
type: Transform
- uid: 8809
components:
- - pos: 60.5,-44.5
+ - pos: 67.5,-46.5
parent: 2
type: Transform
- uid: 8810
components:
- - pos: 59.5,-44.5
+ - pos: 66.5,-46.5
parent: 2
type: Transform
- uid: 8811
components:
- - pos: 58.5,-44.5
+ - pos: 65.5,-46.5
parent: 2
type: Transform
- uid: 8812
components:
- - pos: 57.5,-44.5
+ - pos: 64.5,-46.5
parent: 2
type: Transform
- uid: 8813
components:
- - pos: 56.5,-44.5
+ - pos: 64.5,-45.5
parent: 2
type: Transform
- uid: 8814
components:
- - pos: 55.5,-44.5
+ - pos: 64.5,-44.5
parent: 2
type: Transform
- uid: 8815
components:
- - pos: 54.5,-44.5
+ - pos: 63.5,-44.5
parent: 2
type: Transform
- uid: 8816
components:
- - pos: 53.5,-44.5
+ - pos: 62.5,-44.5
parent: 2
type: Transform
- uid: 8817
components:
- - pos: 52.5,-44.5
+ - pos: 61.5,-44.5
parent: 2
type: Transform
- uid: 8818
components:
- - pos: 51.5,-44.5
+ - pos: 60.5,-44.5
parent: 2
type: Transform
- uid: 8819
components:
- - pos: 50.5,-44.5
+ - pos: 59.5,-44.5
parent: 2
type: Transform
- uid: 8820
components:
- - pos: 69.5,-46.5
+ - pos: 58.5,-44.5
parent: 2
type: Transform
- uid: 8821
components:
- - pos: 72.5,-46.5
+ - pos: 57.5,-44.5
parent: 2
type: Transform
- uid: 8822
components:
- - pos: 73.5,-46.5
+ - pos: 56.5,-44.5
parent: 2
type: Transform
- uid: 8823
components:
- - pos: 74.5,-46.5
+ - pos: 55.5,-44.5
parent: 2
type: Transform
- uid: 8824
components:
- - pos: 75.5,-46.5
+ - pos: 54.5,-44.5
parent: 2
type: Transform
- uid: 8825
components:
- - pos: 75.5,-47.5
+ - pos: 53.5,-44.5
parent: 2
type: Transform
- uid: 8826
components:
- - pos: 75.5,-48.5
+ - pos: 52.5,-44.5
parent: 2
type: Transform
- uid: 8827
components:
- - pos: 75.5,-49.5
+ - pos: 51.5,-44.5
parent: 2
type: Transform
- uid: 8828
components:
- - pos: 75.5,-50.5
+ - pos: 50.5,-44.5
parent: 2
type: Transform
- uid: 8829
components:
- - pos: 75.5,-51.5
+ - pos: 69.5,-46.5
parent: 2
type: Transform
- uid: 8830
components:
- - pos: 75.5,-52.5
+ - pos: 72.5,-46.5
parent: 2
type: Transform
- uid: 8831
components:
- - pos: 75.5,-53.5
+ - pos: 73.5,-46.5
parent: 2
type: Transform
- uid: 8832
components:
- - pos: 75.5,-54.5
+ - pos: 74.5,-46.5
parent: 2
type: Transform
- uid: 8833
components:
- - pos: 75.5,-55.5
+ - pos: 75.5,-46.5
parent: 2
type: Transform
- uid: 8834
components:
- - pos: 75.5,-56.5
+ - pos: 75.5,-47.5
parent: 2
type: Transform
- uid: 8835
components:
- - pos: 74.5,-56.5
+ - pos: 75.5,-48.5
parent: 2
type: Transform
- uid: 8836
components:
- - pos: 74.5,-57.5
+ - pos: 75.5,-49.5
parent: 2
type: Transform
- uid: 8837
components:
- - pos: 73.5,-57.5
+ - pos: 75.5,-50.5
parent: 2
type: Transform
- uid: 8838
components:
- - pos: 72.5,-57.5
+ - pos: 75.5,-51.5
parent: 2
type: Transform
- uid: 8839
components:
- - pos: 71.5,-57.5
+ - pos: 75.5,-52.5
parent: 2
type: Transform
- uid: 8840
components:
- - pos: 71.5,-58.5
+ - pos: 75.5,-53.5
parent: 2
type: Transform
- uid: 8841
components:
- - pos: 71.5,-59.5
+ - pos: 75.5,-54.5
parent: 2
type: Transform
- uid: 8842
components:
- - pos: 71.5,-60.5
+ - pos: 75.5,-55.5
parent: 2
type: Transform
- uid: 8843
components:
- - pos: 71.5,-61.5
+ - pos: 75.5,-56.5
parent: 2
type: Transform
- uid: 8844
components:
- - pos: 70.5,-61.5
+ - pos: 74.5,-56.5
parent: 2
type: Transform
- uid: 8845
components:
- - pos: 69.5,-61.5
+ - pos: 74.5,-57.5
parent: 2
type: Transform
- uid: 8846
components:
- - pos: 68.5,-61.5
+ - pos: 73.5,-57.5
parent: 2
type: Transform
- uid: 8847
components:
- - pos: 68.5,-60.5
+ - pos: 72.5,-57.5
parent: 2
type: Transform
- uid: 8848
components:
- - pos: 68.5,-59.5
+ - pos: 71.5,-57.5
parent: 2
type: Transform
- uid: 8849
components:
- - pos: 69.5,-59.5
+ - pos: 71.5,-58.5
parent: 2
type: Transform
- uid: 8850
components:
- - pos: 12.5,-92.5
+ - pos: 71.5,-59.5
parent: 2
type: Transform
- uid: 8851
components:
- - pos: 12.5,-91.5
+ - pos: 71.5,-60.5
parent: 2
type: Transform
- uid: 8852
components:
- - pos: 12.5,-90.5
+ - pos: 71.5,-61.5
parent: 2
type: Transform
- uid: 8853
components:
- - pos: 12.5,-89.5
+ - pos: 70.5,-61.5
parent: 2
type: Transform
- uid: 8854
components:
- - pos: 11.5,-89.5
+ - pos: 69.5,-61.5
parent: 2
type: Transform
- uid: 8855
components:
- - pos: 10.5,-89.5
+ - pos: 68.5,-61.5
parent: 2
type: Transform
- uid: 8856
components:
- - pos: 9.5,-89.5
+ - pos: 68.5,-60.5
parent: 2
type: Transform
- uid: 8857
components:
- - pos: 8.5,-89.5
+ - pos: 68.5,-59.5
parent: 2
type: Transform
- uid: 8858
components:
- - pos: 7.5,-89.5
+ - pos: 69.5,-59.5
parent: 2
type: Transform
- uid: 8859
components:
- - pos: 6.5,-89.5
+ - pos: 12.5,-92.5
parent: 2
type: Transform
- uid: 8860
components:
- - pos: 5.5,-89.5
+ - pos: 12.5,-91.5
parent: 2
type: Transform
- uid: 8861
components:
- - pos: 4.5,-89.5
+ - pos: 12.5,-90.5
parent: 2
type: Transform
- uid: 8862
components:
- - pos: 3.5,-89.5
+ - pos: 12.5,-89.5
parent: 2
type: Transform
- uid: 8863
components:
- - pos: 16.5,-24.5
+ - pos: 11.5,-89.5
parent: 2
type: Transform
- uid: 8864
components:
- - pos: 17.5,-24.5
+ - pos: 10.5,-89.5
parent: 2
type: Transform
- uid: 8865
components:
- - pos: 18.5,-24.5
+ - pos: 9.5,-89.5
parent: 2
type: Transform
- uid: 8866
components:
- - pos: 19.5,-24.5
+ - pos: 8.5,-89.5
parent: 2
type: Transform
- uid: 8867
components:
- - pos: 20.5,-24.5
+ - pos: 7.5,-89.5
parent: 2
type: Transform
- uid: 8868
components:
- - pos: 21.5,-24.5
+ - pos: 6.5,-89.5
parent: 2
type: Transform
- uid: 8869
components:
- - pos: 21.5,-23.5
+ - pos: 5.5,-89.5
parent: 2
type: Transform
- uid: 8870
components:
- - pos: 21.5,-22.5
+ - pos: 4.5,-89.5
parent: 2
type: Transform
- uid: 8871
components:
- - pos: 21.5,-21.5
+ - pos: 3.5,-89.5
parent: 2
type: Transform
- uid: 8872
components:
- - pos: -30.5,-13.5
+ - pos: 16.5,-24.5
parent: 2
type: Transform
- uid: 8873
components:
- - pos: -29.5,-13.5
+ - pos: 17.5,-24.5
parent: 2
type: Transform
- uid: 8874
components:
- - pos: -28.5,-13.5
+ - pos: 18.5,-24.5
parent: 2
type: Transform
- uid: 8875
components:
- - pos: -27.5,-13.5
+ - pos: 19.5,-24.5
parent: 2
type: Transform
- uid: 8876
components:
- - pos: 4.5,-21.5
+ - pos: 20.5,-24.5
parent: 2
type: Transform
- uid: 8877
components:
- - pos: 4.5,-22.5
+ - pos: 21.5,-24.5
parent: 2
type: Transform
- uid: 8878
components:
- - pos: 4.5,-19.5
+ - pos: 21.5,-23.5
parent: 2
type: Transform
- uid: 8879
components:
- - pos: 4.5,-20.5
+ - pos: 21.5,-22.5
parent: 2
type: Transform
- uid: 8880
components:
- - pos: 10.5,-14.5
+ - pos: 21.5,-21.5
parent: 2
type: Transform
- uid: 8881
components:
- - pos: 11.5,-14.5
+ - pos: -30.5,-13.5
parent: 2
type: Transform
- uid: 8882
components:
- - pos: 12.5,-14.5
+ - pos: -29.5,-13.5
parent: 2
type: Transform
- uid: 8883
components:
- - pos: 12.5,-15.5
+ - pos: -28.5,-13.5
parent: 2
type: Transform
- uid: 8884
components:
- - pos: 12.5,-16.5
+ - pos: -27.5,-13.5
parent: 2
type: Transform
- uid: 8885
components:
- - pos: 11.5,-16.5
+ - pos: 4.5,-21.5
parent: 2
type: Transform
- uid: 8886
components:
- - pos: 10.5,-16.5
+ - pos: 4.5,-22.5
parent: 2
type: Transform
- uid: 8887
components:
- - pos: 9.5,-16.5
+ - pos: 4.5,-19.5
parent: 2
type: Transform
- uid: 8888
components:
- - pos: -76.5,-26.5
+ - pos: 4.5,-20.5
parent: 2
type: Transform
- uid: 8889
components:
- - pos: 4.5,-23.5
+ - pos: 10.5,-14.5
parent: 2
type: Transform
- uid: 8890
components:
- - pos: 31.5,-16.5
+ - pos: 11.5,-14.5
parent: 2
type: Transform
- uid: 8891
components:
- - pos: 31.5,-15.5
+ - pos: 12.5,-14.5
parent: 2
type: Transform
- uid: 8892
components:
- - pos: 33.5,-16.5
+ - pos: 12.5,-15.5
parent: 2
type: Transform
- uid: 8893
components:
- - pos: 33.5,-15.5
+ - pos: 12.5,-16.5
parent: 2
type: Transform
- uid: 8894
components:
- - pos: -65.5,-51.5
+ - pos: 11.5,-16.5
parent: 2
type: Transform
- uid: 8895
components:
- - pos: -65.5,-52.5
+ - pos: 10.5,-16.5
parent: 2
type: Transform
- uid: 8896
components:
- - pos: -65.5,-53.5
+ - pos: 9.5,-16.5
parent: 2
type: Transform
- uid: 8897
components:
- - pos: -65.5,-54.5
+ - pos: -76.5,-26.5
parent: 2
type: Transform
- uid: 8898
components:
- - pos: -71.5,-35.5
+ - pos: 4.5,-23.5
parent: 2
type: Transform
- uid: 8899
components:
- - pos: -69.5,-44.5
+ - pos: 31.5,-16.5
parent: 2
type: Transform
- uid: 8900
components:
- - pos: -69.5,-43.5
+ - pos: 31.5,-15.5
parent: 2
type: Transform
- uid: 8901
components:
- - pos: -69.5,-42.5
+ - pos: 33.5,-16.5
parent: 2
type: Transform
- uid: 8902
components:
- - pos: -69.5,-41.5
+ - pos: 33.5,-15.5
parent: 2
type: Transform
- uid: 8903
components:
- - pos: -69.5,-40.5
+ - pos: -65.5,-51.5
parent: 2
type: Transform
- uid: 8904
components:
- - pos: -70.5,-40.5
+ - pos: -65.5,-52.5
parent: 2
type: Transform
- uid: 8905
components:
- - pos: -71.5,-40.5
+ - pos: -65.5,-53.5
parent: 2
type: Transform
- uid: 8906
components:
- - pos: -71.5,-39.5
+ - pos: -65.5,-54.5
parent: 2
type: Transform
- uid: 8907
components:
- - pos: -71.5,-38.5
+ - pos: -71.5,-35.5
parent: 2
type: Transform
- uid: 8908
components:
- - pos: -78.5,-38.5
+ - pos: -69.5,-44.5
parent: 2
type: Transform
- uid: 8909
components:
- - pos: -77.5,-38.5
+ - pos: -69.5,-43.5
parent: 2
type: Transform
- uid: 8910
components:
- - pos: -69.5,-31.5
+ - pos: -69.5,-42.5
parent: 2
type: Transform
- uid: 8911
components:
- - pos: -72.5,-34.5
+ - pos: -69.5,-41.5
parent: 2
type: Transform
- uid: 8912
components:
- - pos: -72.5,-35.5
+ - pos: -69.5,-40.5
parent: 2
type: Transform
- uid: 8913
components:
- - pos: -79.5,-36.5
+ - pos: -70.5,-40.5
parent: 2
type: Transform
- uid: 8914
components:
- - pos: -79.5,-34.5
+ - pos: -71.5,-40.5
parent: 2
type: Transform
- uid: 8915
components:
- - pos: -79.5,-33.5
+ - pos: -71.5,-39.5
parent: 2
type: Transform
- uid: 8916
components:
- - pos: -79.5,-32.5
+ - pos: -71.5,-38.5
parent: 2
type: Transform
- uid: 8917
components:
- - pos: -79.5,-31.5
+ - pos: -78.5,-38.5
parent: 2
type: Transform
- uid: 8918
components:
- - pos: -79.5,-30.5
+ - pos: -77.5,-38.5
parent: 2
type: Transform
- uid: 8919
components:
- - pos: -79.5,-29.5
+ - pos: -69.5,-31.5
parent: 2
type: Transform
- uid: 8920
components:
- - pos: -79.5,-28.5
+ - pos: -72.5,-34.5
parent: 2
type: Transform
- uid: 8921
components:
- - pos: -78.5,-28.5
+ - pos: -72.5,-35.5
parent: 2
type: Transform
- uid: 8922
components:
- - pos: -77.5,-28.5
+ - pos: -79.5,-36.5
parent: 2
type: Transform
- uid: 8923
components:
- - pos: -76.5,-28.5
+ - pos: -79.5,-34.5
parent: 2
type: Transform
- uid: 8924
components:
- - pos: -75.5,-28.5
+ - pos: -79.5,-33.5
parent: 2
type: Transform
- uid: 8925
components:
- - pos: -73.5,-31.5
+ - pos: -79.5,-32.5
parent: 2
type: Transform
- uid: 8926
components:
- - pos: -71.5,-31.5
+ - pos: -79.5,-31.5
parent: 2
type: Transform
- uid: 8927
components:
- - pos: -67.5,-31.5
+ - pos: -79.5,-30.5
parent: 2
type: Transform
- uid: 8928
components:
- - pos: -66.5,-31.5
+ - pos: -79.5,-29.5
parent: 2
type: Transform
- uid: 8929
components:
- - pos: 18.5,-28.5
+ - pos: -79.5,-28.5
parent: 2
type: Transform
- uid: 8930
components:
- - pos: 18.5,-27.5
+ - pos: -78.5,-28.5
parent: 2
type: Transform
- uid: 8931
components:
- - pos: 5.5,-23.5
+ - pos: -77.5,-28.5
parent: 2
type: Transform
- uid: 8932
components:
- - pos: 7.5,-23.5
+ - pos: -76.5,-28.5
parent: 2
type: Transform
- uid: 8933
components:
- - pos: 6.5,-23.5
+ - pos: -75.5,-28.5
parent: 2
type: Transform
- uid: 8934
components:
- - pos: 8.5,-23.5
+ - pos: -73.5,-31.5
parent: 2
type: Transform
- uid: 8935
components:
- - pos: 9.5,-23.5
+ - pos: -71.5,-31.5
parent: 2
type: Transform
- uid: 8936
components:
- - pos: 10.5,-23.5
+ - pos: -67.5,-31.5
parent: 2
type: Transform
- uid: 8937
components:
- - pos: 11.5,-23.5
+ - pos: -66.5,-31.5
parent: 2
type: Transform
- uid: 8938
components:
- - pos: 12.5,-23.5
+ - pos: 18.5,-28.5
parent: 2
type: Transform
- uid: 8939
components:
- - pos: 12.5,-22.5
+ - pos: 18.5,-27.5
parent: 2
type: Transform
- uid: 8940
components:
- - pos: 12.5,-21.5
+ - pos: 5.5,-23.5
parent: 2
type: Transform
- uid: 8941
components:
- - pos: 13.5,-21.5
+ - pos: 7.5,-23.5
parent: 2
type: Transform
- uid: 8942
components:
- - pos: 14.5,-21.5
+ - pos: 6.5,-23.5
parent: 2
type: Transform
- uid: 8943
components:
- - pos: -71.5,-35.5
+ - pos: 8.5,-23.5
parent: 2
type: Transform
- uid: 8944
components:
- - pos: -56.5,-86.5
+ - pos: 9.5,-23.5
parent: 2
type: Transform
- uid: 8945
components:
- - pos: -56.5,-87.5
+ - pos: 10.5,-23.5
parent: 2
type: Transform
-- proto: CableHVStack
- entities:
- uid: 8946
components:
- - pos: -39.402794,-17.87967
+ - pos: 11.5,-23.5
parent: 2
type: Transform
- uid: 8947
components:
- - pos: 71.74222,36.65267
+ - pos: 12.5,-23.5
parent: 2
type: Transform
- uid: 8948
components:
- - pos: -0.5088408,-77.44958
+ - pos: 12.5,-22.5
parent: 2
type: Transform
-- proto: CableMV
- entities:
- uid: 8949
components:
- - pos: -57.5,-21.5
+ - pos: 12.5,-21.5
parent: 2
type: Transform
- uid: 8950
components:
- - pos: 22.5,-39.5
+ - pos: 13.5,-21.5
parent: 2
type: Transform
- uid: 8951
components:
- - pos: 18.5,-31.5
+ - pos: 14.5,-21.5
parent: 2
type: Transform
- uid: 8952
components:
- - pos: 1.5,-5.5
+ - pos: -71.5,-35.5
parent: 2
type: Transform
- uid: 8953
components:
- - pos: 18.5,-27.5
+ - pos: -56.5,-86.5
parent: 2
type: Transform
- uid: 8954
components:
- - pos: 18.5,-29.5
+ - pos: -56.5,-87.5
parent: 2
type: Transform
+- proto: CableHVStack
+ entities:
- uid: 8955
components:
- - pos: 18.5,-30.5
+ - pos: -39.402794,-17.87967
parent: 2
type: Transform
- uid: 8956
components:
- - pos: 3.5,-3.5
+ - pos: 71.74222,36.65267
parent: 2
type: Transform
- uid: 8957
components:
- - pos: 20.5,-32.5
+ - pos: -0.5088408,-77.44958
parent: 2
type: Transform
+- proto: CableMV
+ entities:
- uid: 8958
components:
- - pos: 9.5,-4.5
+ - pos: 6.5,-47.5
parent: 2
type: Transform
- uid: 8959
components:
- - pos: 10.5,-2.5
+ - pos: -57.5,-21.5
parent: 2
type: Transform
- uid: 8960
components:
- - pos: 18.5,-32.5
+ - pos: 22.5,-39.5
parent: 2
type: Transform
- uid: 8961
components:
- - pos: 19.5,-32.5
+ - pos: 18.5,-31.5
parent: 2
type: Transform
- uid: 8962
components:
- - pos: 10.5,-1.5
+ - pos: 1.5,-5.5
parent: 2
type: Transform
- uid: 8963
components:
- - pos: 8.5,-1.5
+ - pos: 18.5,-27.5
parent: 2
type: Transform
- uid: 8964
components:
- - pos: 22.5,-36.5
+ - pos: 18.5,-29.5
parent: 2
type: Transform
- uid: 8965
components:
- - pos: 22.5,-32.5
+ - pos: 18.5,-30.5
parent: 2
type: Transform
- uid: 8966
components:
- - pos: 22.5,-34.5
+ - pos: 3.5,-3.5
parent: 2
type: Transform
- uid: 8967
components:
- - pos: 9.5,-1.5
+ - pos: 20.5,-32.5
parent: 2
type: Transform
- uid: 8968
components:
- - pos: 22.5,-37.5
+ - pos: 9.5,-4.5
parent: 2
type: Transform
- uid: 8969
components:
- - pos: 22.5,-33.5
+ - pos: 10.5,-2.5
parent: 2
type: Transform
- uid: 8970
components:
- - pos: 22.5,-35.5
+ - pos: 18.5,-32.5
parent: 2
type: Transform
- uid: 8971
components:
- - pos: 21.5,-32.5
+ - pos: 19.5,-32.5
parent: 2
type: Transform
- uid: 8972
components:
- - pos: 7.5,-1.5
+ - pos: 10.5,-1.5
parent: 2
type: Transform
- uid: 8973
components:
- - pos: 22.5,-38.5
+ - pos: 8.5,-1.5
parent: 2
type: Transform
- uid: 8974
components:
- - pos: 6.5,-1.5
+ - pos: 22.5,-36.5
parent: 2
type: Transform
- uid: 8975
components:
- - pos: 5.5,-1.5
+ - pos: 22.5,-32.5
parent: 2
type: Transform
- uid: 8976
components:
- - pos: -72.5,-38.5
+ - pos: 22.5,-34.5
parent: 2
type: Transform
- uid: 8977
components:
- - pos: -10.5,15.5
+ - pos: 9.5,-1.5
parent: 2
type: Transform
- uid: 8978
components:
- - pos: -6.5,-70.5
+ - pos: 22.5,-37.5
parent: 2
type: Transform
- uid: 8979
components:
- - pos: 18.5,-52.5
+ - pos: 22.5,-33.5
parent: 2
type: Transform
- uid: 8980
components:
- - pos: 10.5,-55.5
+ - pos: 22.5,-35.5
parent: 2
type: Transform
- uid: 8981
components:
- - pos: 37.5,21.5
+ - pos: 21.5,-32.5
parent: 2
type: Transform
- uid: 8982
components:
- - pos: 3.5,-49.5
+ - pos: 7.5,-1.5
parent: 2
type: Transform
- uid: 8983
components:
- - pos: 9.5,-44.5
+ - pos: 22.5,-38.5
parent: 2
type: Transform
- uid: 8984
components:
- - pos: 32.5,0.5
+ - pos: 6.5,-1.5
parent: 2
type: Transform
- uid: 8985
components:
- - pos: 32.5,1.5
+ - pos: 5.5,-1.5
parent: 2
type: Transform
- uid: 8986
components:
- - pos: -2.5,-51.5
+ - pos: -72.5,-38.5
parent: 2
type: Transform
- uid: 8987
components:
- - pos: -2.5,-52.5
+ - pos: -10.5,15.5
parent: 2
type: Transform
- uid: 8988
components:
- - pos: -2.5,-53.5
+ - pos: -6.5,-70.5
parent: 2
type: Transform
- uid: 8989
components:
- - pos: 40.5,-26.5
+ - pos: 18.5,-52.5
parent: 2
type: Transform
- uid: 8990
components:
- - pos: 31.5,2.5
+ - pos: 10.5,-55.5
parent: 2
type: Transform
- uid: 8991
components:
- - pos: -6.5,-71.5
+ - pos: 37.5,21.5
parent: 2
type: Transform
- uid: 8992
components:
- - pos: -6.5,-69.5
+ - pos: 3.5,-49.5
parent: 2
type: Transform
- uid: 8993
components:
- - pos: 27.5,-28.5
+ - pos: 32.5,0.5
parent: 2
type: Transform
- uid: 8994
components:
- - pos: 4.5,-49.5
+ - pos: 32.5,1.5
parent: 2
type: Transform
- uid: 8995
components:
- - pos: 3.5,-52.5
+ - pos: -2.5,-51.5
parent: 2
type: Transform
- uid: 8996
components:
- - pos: -0.5,-53.5
+ - pos: -2.5,-52.5
parent: 2
type: Transform
- uid: 8997
components:
- - pos: 8.5,-43.5
+ - pos: -2.5,-53.5
parent: 2
type: Transform
- uid: 8998
components:
- - pos: -14.5,-69.5
+ - pos: 40.5,-26.5
parent: 2
type: Transform
- uid: 8999
components:
- - pos: 9.5,-43.5
+ - pos: 31.5,2.5
parent: 2
type: Transform
- uid: 9000
components:
- - pos: 24.5,-28.5
+ - pos: -6.5,-71.5
parent: 2
type: Transform
- uid: 9001
components:
- - pos: 45.5,-64.5
+ - pos: -6.5,-69.5
parent: 2
type: Transform
- uid: 9002
components:
- - pos: 5.5,-45.5
+ - pos: 27.5,-28.5
parent: 2
type: Transform
- uid: 9003
components:
- - pos: 5.5,-44.5
+ - pos: 4.5,-49.5
parent: 2
type: Transform
- uid: 9004
components:
- - pos: 4.5,-43.5
+ - pos: 3.5,-52.5
parent: 2
type: Transform
- uid: 9005
components:
- - pos: 3.5,-43.5
+ - pos: -0.5,-53.5
parent: 2
type: Transform
- uid: 9006
components:
- - pos: 3.5,-42.5
+ - pos: 8.5,-43.5
parent: 2
type: Transform
- uid: 9007
components:
- - pos: 2.5,-42.5
+ - pos: -14.5,-69.5
parent: 2
type: Transform
- uid: 9008
components:
- - pos: 1.5,-42.5
+ - pos: 9.5,-43.5
parent: 2
type: Transform
- uid: 9009
components:
- - pos: 0.5,-42.5
+ - pos: 24.5,-28.5
parent: 2
type: Transform
- uid: 9010
components:
- - pos: 0.5,-41.5
+ - pos: 45.5,-64.5
parent: 2
type: Transform
- uid: 9011
components:
- - pos: 0.5,-40.5
+ - pos: 5.5,-45.5
parent: 2
type: Transform
- uid: 9012
components:
- - pos: 15.5,-58.5
+ - pos: 5.5,-44.5
parent: 2
type: Transform
- uid: 9013
components:
- - pos: 15.5,-57.5
+ - pos: 4.5,-43.5
parent: 2
type: Transform
- uid: 9014
components:
- - pos: 14.5,-57.5
+ - pos: 3.5,-43.5
parent: 2
type: Transform
- uid: 9015
components:
- - pos: 12.5,-57.5
+ - pos: 3.5,-42.5
parent: 2
type: Transform
- uid: 9016
components:
- - pos: 12.5,-56.5
+ - pos: 2.5,-42.5
parent: 2
type: Transform
- uid: 9017
components:
- - pos: 11.5,-55.5
+ - pos: 1.5,-42.5
parent: 2
type: Transform
- uid: 9018
components:
- - pos: 12.5,-55.5
+ - pos: 0.5,-42.5
parent: 2
type: Transform
- uid: 9019
components:
- - pos: 8.5,-55.5
+ - pos: 0.5,-41.5
parent: 2
type: Transform
- uid: 9020
components:
- - pos: 8.5,-54.5
+ - pos: 0.5,-40.5
parent: 2
type: Transform
- uid: 9021
components:
- - pos: 8.5,-53.5
+ - pos: 15.5,-58.5
parent: 2
type: Transform
- uid: 9022
components:
- - pos: 7.5,-53.5
+ - pos: 15.5,-57.5
parent: 2
type: Transform
- uid: 9023
components:
- - pos: 16.5,-52.5
+ - pos: 14.5,-57.5
parent: 2
type: Transform
- uid: 9024
components:
- - pos: 43.5,-26.5
+ - pos: 12.5,-57.5
parent: 2
type: Transform
- uid: 9025
components:
- - pos: 0.5,14.5
+ - pos: 12.5,-56.5
parent: 2
type: Transform
- uid: 9026
components:
- - pos: 37.5,13.5
+ - pos: 11.5,-55.5
parent: 2
type: Transform
- uid: 9027
components:
- - pos: 38.5,14.5
+ - pos: 12.5,-55.5
parent: 2
type: Transform
- uid: 9028
components:
- - pos: -5.5,-69.5
+ - pos: 8.5,-55.5
parent: 2
type: Transform
- uid: 9029
components:
- - pos: 38.5,-28.5
+ - pos: 8.5,-54.5
parent: 2
type: Transform
- uid: 9030
components:
- - pos: 35.5,-29.5
+ - pos: 8.5,-53.5
parent: 2
type: Transform
- uid: 9031
components:
- - pos: 37.5,-30.5
+ - pos: 7.5,-53.5
parent: 2
type: Transform
- uid: 9032
components:
- - pos: -11.5,-70.5
+ - pos: 16.5,-52.5
parent: 2
type: Transform
- uid: 9033
components:
- - pos: 21.5,15.5
+ - pos: 43.5,-26.5
parent: 2
type: Transform
- uid: 9034
components:
- - pos: 5.5,-48.5
+ - pos: 0.5,14.5
parent: 2
type: Transform
- uid: 9035
components:
- - pos: 7.5,-47.5
+ - pos: 37.5,13.5
parent: 2
type: Transform
- uid: 9036
components:
- - pos: 29.5,-26.5
+ - pos: 38.5,14.5
parent: 2
type: Transform
- uid: 9037
components:
- - pos: 0.5,11.5
+ - pos: -5.5,-69.5
parent: 2
type: Transform
- uid: 9038
components:
- - pos: 28.5,18.5
+ - pos: 38.5,-28.5
parent: 2
type: Transform
- uid: 9039
components:
- - pos: -11.5,-71.5
+ - pos: 35.5,-29.5
parent: 2
type: Transform
- uid: 9040
components:
- - pos: -7.5,-71.5
+ - pos: 37.5,-30.5
parent: 2
type: Transform
- uid: 9041
components:
- - pos: -3.5,-68.5
+ - pos: -11.5,-70.5
parent: 2
type: Transform
- uid: 9042
components:
- - pos: -1.5,-53.5
+ - pos: 21.5,15.5
parent: 2
type: Transform
- uid: 9043
components:
- - pos: 9.5,-45.5
+ - pos: 5.5,-48.5
parent: 2
type: Transform
- uid: 9044
components:
- - pos: -19.5,25.5
+ - pos: 29.5,-26.5
parent: 2
type: Transform
- uid: 9045
components:
- - pos: 1.5,9.5
+ - pos: 0.5,11.5
parent: 2
type: Transform
- uid: 9046
components:
- - pos: -11.5,-69.5
+ - pos: 28.5,18.5
parent: 2
type: Transform
- uid: 9047
components:
- - pos: -8.5,-71.5
+ - pos: -11.5,-71.5
parent: 2
type: Transform
- uid: 9048
components:
- - pos: -10.5,-71.5
+ - pos: -7.5,-71.5
parent: 2
type: Transform
- uid: 9049
components:
- - pos: 21.5,-9.5
+ - pos: -3.5,-68.5
parent: 2
type: Transform
- uid: 9050
components:
- - pos: 29.5,18.5
+ - pos: -1.5,-53.5
parent: 2
type: Transform
- uid: 9051
components:
- - pos: 29.5,19.5
+ - pos: -19.5,25.5
parent: 2
type: Transform
- uid: 9052
components:
- - pos: 21.5,17.5
+ - pos: 1.5,9.5
parent: 2
type: Transform
- uid: 9053
components:
- - pos: 32.5,2.5
+ - pos: -11.5,-69.5
parent: 2
type: Transform
- uid: 9054
components:
- - pos: 32.5,-0.5
+ - pos: -8.5,-71.5
parent: 2
type: Transform
- uid: 9055
components:
- - pos: 32.5,-1.5
+ - pos: -10.5,-71.5
parent: 2
type: Transform
- uid: 9056
components:
- - pos: 9.5,-47.5
+ - pos: 21.5,-9.5
parent: 2
type: Transform
- uid: 9057
components:
- - pos: 8.5,-45.5
+ - pos: 29.5,18.5
parent: 2
type: Transform
- uid: 9058
components:
- - pos: 5.5,-46.5
+ - pos: 29.5,19.5
parent: 2
type: Transform
- uid: 9059
components:
- - pos: 3.5,-50.5
+ - pos: 21.5,17.5
parent: 2
type: Transform
- uid: 9060
components:
- - pos: 13.5,-14.5
+ - pos: 32.5,2.5
parent: 2
type: Transform
- uid: 9061
components:
- - pos: 5.5,-49.5
+ - pos: 32.5,-0.5
parent: 2
type: Transform
- uid: 9062
components:
- - pos: 9.5,-55.5
+ - pos: 32.5,-1.5
parent: 2
type: Transform
- uid: 9063
components:
- - pos: -3.5,14.5
+ - pos: 5.5,-46.5
parent: 2
type: Transform
- uid: 9064
components:
- - pos: -2.5,14.5
+ - pos: 3.5,-50.5
parent: 2
type: Transform
- uid: 9065
components:
- - pos: -1.5,14.5
+ - pos: 13.5,-14.5
parent: 2
type: Transform
- uid: 9066
components:
- - pos: -0.5,14.5
+ - pos: 5.5,-49.5
parent: 2
type: Transform
- uid: 9067
components:
- - pos: -5.5,14.5
+ - pos: 9.5,-55.5
parent: 2
type: Transform
- uid: 9068
components:
- - pos: -6.5,14.5
+ - pos: -3.5,14.5
parent: 2
type: Transform
- uid: 9069
components:
- - pos: 1.5,10.5
+ - pos: -2.5,14.5
parent: 2
type: Transform
- uid: 9070
components:
- - pos: 0.5,10.5
+ - pos: -1.5,14.5
parent: 2
type: Transform
- uid: 9071
components:
- - pos: 18.5,-28.5
+ - pos: -0.5,14.5
parent: 2
type: Transform
- uid: 9072
components:
- - pos: 21.5,16.5
+ - pos: -5.5,14.5
parent: 2
type: Transform
- uid: 9073
components:
- - pos: -19.5,24.5
+ - pos: -6.5,14.5
parent: 2
type: Transform
- uid: 9074
components:
- - pos: 12.5,-15.5
+ - pos: 1.5,10.5
parent: 2
type: Transform
- uid: 9075
components:
- - pos: 31.5,-4.5
+ - pos: 0.5,10.5
parent: 2
type: Transform
- uid: 9076
components:
- - pos: 30.5,-4.5
+ - pos: 18.5,-28.5
parent: 2
type: Transform
- uid: 9077
components:
- - pos: 30.5,-3.5
+ - pos: 21.5,16.5
parent: 2
type: Transform
- uid: 9078
components:
- - pos: 30.5,-2.5
+ - pos: -19.5,24.5
parent: 2
type: Transform
- uid: 9079
components:
- - pos: -9.5,-21.5
+ - pos: 12.5,-15.5
parent: 2
type: Transform
- uid: 9080
components:
- - pos: -8.5,-19.5
+ - pos: 31.5,-4.5
parent: 2
type: Transform
- uid: 9081
components:
- - pos: -8.5,-20.5
+ - pos: 30.5,-4.5
parent: 2
type: Transform
- uid: 9082
components:
- - pos: -8.5,-21.5
+ - pos: 30.5,-3.5
parent: 2
type: Transform
- uid: 9083
components:
- - pos: -10.5,-21.5
+ - pos: 30.5,-2.5
parent: 2
type: Transform
- uid: 9084
components:
- - pos: -10.5,-20.5
+ - pos: -9.5,-21.5
parent: 2
type: Transform
- uid: 9085
components:
- - pos: 10.5,-47.5
+ - pos: -8.5,-19.5
parent: 2
type: Transform
- uid: 9086
components:
- - pos: 11.5,-47.5
+ - pos: -8.5,-20.5
parent: 2
type: Transform
- uid: 9087
components:
- - pos: 10.5,-45.5
+ - pos: -8.5,-21.5
parent: 2
type: Transform
- uid: 9088
components:
- - pos: 3.5,-51.5
+ - pos: -10.5,-21.5
parent: 2
type: Transform
- uid: 9089
components:
- - pos: 3.5,-53.5
+ - pos: -10.5,-20.5
parent: 2
type: Transform
- uid: 9090
components:
- - pos: 1.5,-53.5
+ - pos: 13.5,-46.5
parent: 2
type: Transform
- uid: 9091
components:
- - pos: 0.5,-53.5
+ - pos: 3.5,-51.5
parent: 2
type: Transform
- uid: 9092
components:
- - pos: 7.5,-43.5
+ - pos: 3.5,-53.5
parent: 2
type: Transform
- uid: 9093
components:
- - pos: -20.5,-69.5
+ - pos: 1.5,-53.5
parent: 2
type: Transform
- uid: 9094
components:
- - pos: -21.5,-68.5
+ - pos: 0.5,-53.5
parent: 2
type: Transform
- uid: 9095
components:
- - pos: -9.5,-71.5
+ - pos: 7.5,-43.5
parent: 2
type: Transform
- uid: 9096
components:
- - pos: -3.5,-69.5
+ - pos: -20.5,-69.5
parent: 2
type: Transform
- uid: 9097
components:
- - pos: 2.5,-53.5
+ - pos: -21.5,-68.5
parent: 2
type: Transform
- uid: 9098
components:
- - pos: 18.5,-11.5
+ - pos: -9.5,-71.5
parent: 2
type: Transform
- uid: 9099
components:
- - pos: 17.5,-11.5
+ - pos: -3.5,-69.5
parent: 2
type: Transform
- uid: 9100
components:
- - pos: 44.5,-64.5
+ - pos: 2.5,-53.5
parent: 2
type: Transform
- uid: 9101
components:
- - pos: 46.5,-65.5
+ - pos: 18.5,-11.5
parent: 2
type: Transform
- uid: 9102
components:
- - pos: 38.5,-30.5
+ - pos: 17.5,-11.5
parent: 2
type: Transform
- uid: 9103
components:
- - pos: 36.5,-30.5
+ - pos: 44.5,-64.5
parent: 2
type: Transform
- uid: 9104
components:
- - pos: 28.5,-28.5
+ - pos: 46.5,-65.5
parent: 2
type: Transform
- uid: 9105
components:
- - pos: 35.5,-27.5
+ - pos: 38.5,-30.5
parent: 2
type: Transform
- uid: 9106
components:
- - pos: 35.5,-26.5
+ - pos: 36.5,-30.5
parent: 2
type: Transform
- uid: 9107
components:
- - pos: 36.5,-26.5
+ - pos: 28.5,-28.5
parent: 2
type: Transform
- uid: 9108
components:
- - pos: 37.5,-26.5
+ - pos: 35.5,-27.5
parent: 2
type: Transform
- uid: 9109
components:
- - pos: 38.5,-26.5
+ - pos: 35.5,-26.5
parent: 2
type: Transform
- uid: 9110
components:
- - pos: 39.5,-26.5
+ - pos: 36.5,-26.5
parent: 2
type: Transform
- uid: 9111
components:
- - pos: 41.5,-26.5
+ - pos: 37.5,-26.5
parent: 2
type: Transform
- uid: 9112
components:
- - pos: 42.5,-26.5
+ - pos: 38.5,-26.5
parent: 2
type: Transform
- uid: 9113
components:
- - pos: 0.5,12.5
+ - pos: 39.5,-26.5
parent: 2
type: Transform
- uid: 9114
components:
- - pos: 0.5,13.5
+ - pos: 41.5,-26.5
parent: 2
type: Transform
- uid: 9115
components:
- - pos: 38.5,-29.5
+ - pos: 42.5,-26.5
parent: 2
type: Transform
- uid: 9116
components:
- - pos: 8.5,-47.5
+ - pos: 0.5,12.5
parent: 2
type: Transform
- uid: 9117
components:
- - pos: 6.5,-19.5
+ - pos: 0.5,13.5
parent: 2
type: Transform
- uid: 9118
components:
- - pos: 6.5,-11.5
+ - pos: 38.5,-29.5
parent: 2
type: Transform
- uid: 9119
components:
- - pos: 7.5,-11.5
+ - pos: 6.5,-19.5
parent: 2
type: Transform
- uid: 9120
components:
- - pos: 8.5,-11.5
+ - pos: 6.5,-11.5
parent: 2
type: Transform
- uid: 9121
components:
- - pos: 8.5,-10.5
+ - pos: 7.5,-11.5
parent: 2
type: Transform
- uid: 9122
components:
- - pos: 8.5,-9.5
+ - pos: 8.5,-11.5
parent: 2
type: Transform
- uid: 9123
components:
- - pos: 8.5,-7.5
+ - pos: 8.5,-10.5
parent: 2
type: Transform
- uid: 9124
components:
- - pos: 8.5,-5.5
+ - pos: 8.5,-9.5
parent: 2
type: Transform
- uid: 9125
components:
- - pos: 8.5,-4.5
+ - pos: 8.5,-7.5
parent: 2
type: Transform
- uid: 9126
components:
- - pos: 8.5,-3.5
+ - pos: 8.5,-5.5
parent: 2
type: Transform
- uid: 9127
components:
- - pos: -21.5,-69.5
+ - pos: 8.5,-4.5
parent: 2
type: Transform
- uid: 9128
components:
- - pos: 10.5,-14.5
+ - pos: 8.5,-3.5
parent: 2
type: Transform
- uid: 9129
components:
- - pos: -19.5,-69.5
+ - pos: -21.5,-69.5
parent: 2
type: Transform
- uid: 9130
components:
- - pos: 9.5,-14.5
+ - pos: 10.5,-14.5
parent: 2
type: Transform
- uid: 9131
components:
- - pos: 15.5,-14.5
+ - pos: -19.5,-69.5
parent: 2
type: Transform
- uid: 9132
components:
- - pos: 12.5,-14.5
+ - pos: 9.5,-14.5
parent: 2
type: Transform
- uid: 9133
components:
- - pos: -16.5,-69.5
+ - pos: 15.5,-14.5
parent: 2
type: Transform
- uid: 9134
components:
- - pos: 8.5,-6.5
+ - pos: 12.5,-14.5
parent: 2
type: Transform
- uid: 9135
components:
- - pos: 8.5,-8.5
+ - pos: -16.5,-69.5
parent: 2
type: Transform
- uid: 9136
components:
- - pos: -4.5,14.5
+ - pos: 8.5,-6.5
parent: 2
type: Transform
- uid: 9137
components:
- - pos: 10.5,-49.5
+ - pos: 8.5,-8.5
parent: 2
type: Transform
- uid: 9138
components:
- - pos: 19.5,-51.5
+ - pos: -4.5,14.5
parent: 2
type: Transform
- uid: 9139
components:
- - pos: 17.5,-52.5
+ - pos: 10.5,-49.5
parent: 2
type: Transform
- uid: 9140
components:
- - pos: 15.5,-52.5
+ - pos: 19.5,-51.5
parent: 2
type: Transform
- uid: 9141
components:
- - pos: 14.5,-51.5
+ - pos: 17.5,-52.5
parent: 2
type: Transform
- uid: 9142
components:
- - pos: 14.5,-50.5
+ - pos: 15.5,-52.5
parent: 2
type: Transform
- uid: 9143
components:
- - pos: 14.5,-49.5
+ - pos: 14.5,-51.5
parent: 2
type: Transform
- uid: 9144
components:
- - pos: 13.5,-49.5
+ - pos: 14.5,-50.5
parent: 2
type: Transform
- uid: 9145
components:
- - pos: 11.5,-49.5
+ - pos: 14.5,-49.5
parent: 2
type: Transform
- uid: 9146
components:
- - pos: 16.5,-14.5
+ - pos: 13.5,-49.5
parent: 2
type: Transform
- uid: 9147
components:
- - pos: 17.5,-14.5
+ - pos: 11.5,-49.5
parent: 2
type: Transform
- uid: 9148
components:
- - pos: 17.5,-13.5
+ - pos: 16.5,-14.5
parent: 2
type: Transform
- uid: 9149
components:
- - pos: 17.5,-12.5
+ - pos: 17.5,-14.5
parent: 2
type: Transform
- uid: 9150
components:
- - pos: 19.5,-11.5
+ - pos: 17.5,-13.5
parent: 2
type: Transform
- uid: 9151
components:
- - pos: 21.5,-11.5
+ - pos: 17.5,-12.5
parent: 2
type: Transform
- uid: 9152
components:
- - pos: 5.5,-47.5
+ - pos: 19.5,-11.5
parent: 2
type: Transform
- uid: 9153
components:
- - pos: 19.5,-52.5
+ - pos: 21.5,-11.5
parent: 2
type: Transform
- uid: 9154
components:
- - pos: 32.5,-4.5
+ - pos: 5.5,-47.5
parent: 2
type: Transform
- uid: 9155
components:
- - pos: 6.5,-43.5
+ - pos: 19.5,-52.5
parent: 2
type: Transform
- uid: 9156
components:
- - pos: 14.5,-14.5
+ - pos: 32.5,-4.5
parent: 2
type: Transform
- uid: 9157
components:
- - pos: 6.5,-14.5
+ - pos: 6.5,-43.5
parent: 2
type: Transform
- uid: 9158
components:
- - pos: 7.5,-14.5
+ - pos: 14.5,-14.5
parent: 2
type: Transform
- uid: 9159
components:
- - pos: 8.5,-14.5
+ - pos: 6.5,-14.5
parent: 2
type: Transform
- uid: 9160
components:
- - pos: 8.5,-16.5
+ - pos: 7.5,-14.5
parent: 2
type: Transform
- uid: 9161
components:
- - pos: 21.5,-28.5
+ - pos: 8.5,-14.5
parent: 2
type: Transform
- uid: 9162
components:
- - pos: 21.5,-10.5
+ - pos: 8.5,-16.5
parent: 2
type: Transform
- uid: 9163
components:
- - pos: 12.5,-49.5
+ - pos: 21.5,-28.5
parent: 2
type: Transform
- uid: 9164
components:
- - pos: 13.5,-57.5
+ - pos: 21.5,-10.5
parent: 2
type: Transform
- uid: 9165
components:
- - pos: 14.5,-52.5
+ - pos: 12.5,-49.5
parent: 2
type: Transform
- uid: 9166
components:
- - pos: 32.5,-2.5
+ - pos: 13.5,-57.5
parent: 2
type: Transform
- uid: 9167
components:
- - pos: -4.5,-69.5
+ - pos: 14.5,-52.5
parent: 2
type: Transform
- uid: 9168
components:
- - pos: 5.5,-43.5
+ - pos: 32.5,-2.5
parent: 2
type: Transform
- uid: 9169
components:
- - pos: 38.5,16.5
+ - pos: -4.5,-69.5
parent: 2
type: Transform
- uid: 9170
components:
- - pos: 37.5,14.5
+ - pos: 5.5,-43.5
parent: 2
type: Transform
- uid: 9171
components:
- - pos: 7.5,-46.5
+ - pos: 38.5,16.5
parent: 2
type: Transform
- uid: 9172
components:
- - pos: 27.5,18.5
+ - pos: 37.5,14.5
parent: 2
type: Transform
- uid: 9173
components:
- - pos: 32.5,-3.5
+ - pos: 27.5,18.5
parent: 2
type: Transform
- uid: 9174
components:
- - pos: -18.5,-69.5
+ - pos: 32.5,-3.5
parent: 2
type: Transform
- uid: 9175
components:
- - pos: -13.5,-69.5
+ - pos: -18.5,-69.5
parent: 2
type: Transform
- uid: 9176
components:
- - pos: 26.5,-28.5
+ - pos: -13.5,-69.5
parent: 2
type: Transform
- uid: 9177
components:
- - pos: 25.5,-28.5
+ - pos: 26.5,-28.5
parent: 2
type: Transform
- uid: 9178
components:
- - pos: 23.5,-28.5
+ - pos: 25.5,-28.5
parent: 2
type: Transform
- uid: 9179
components:
- - pos: 22.5,-28.5
+ - pos: 23.5,-28.5
parent: 2
type: Transform
- uid: 9180
components:
- - pos: 20.5,-28.5
+ - pos: 22.5,-28.5
parent: 2
type: Transform
- uid: 9181
components:
- - pos: 7.5,-45.5
+ - pos: 20.5,-28.5
parent: 2
type: Transform
- uid: 9182
components:
- - pos: 11.5,-45.5
+ - pos: 11.5,-14.5
parent: 2
type: Transform
- uid: 9183
components:
- - pos: 11.5,-14.5
+ - pos: 20.5,-11.5
parent: 2
type: Transform
- uid: 9184
components:
- - pos: 20.5,-11.5
+ - pos: -17.5,-69.5
parent: 2
type: Transform
- uid: 9185
components:
- - pos: -17.5,-69.5
+ - pos: 22.5,17.5
parent: 2
type: Transform
- uid: 9186
components:
- - pos: 22.5,17.5
+ - pos: 23.5,17.5
parent: 2
type: Transform
- uid: 9187
components:
- - pos: 23.5,17.5
+ - pos: 23.5,18.5
parent: 2
type: Transform
- uid: 9188
components:
- - pos: 23.5,18.5
+ - pos: 24.5,18.5
parent: 2
type: Transform
- uid: 9189
components:
- - pos: 24.5,18.5
+ - pos: 25.5,18.5
parent: 2
type: Transform
- uid: 9190
components:
- - pos: 25.5,18.5
+ - pos: 26.5,18.5
parent: 2
type: Transform
- uid: 9191
components:
- - pos: 26.5,18.5
+ - pos: 35.5,-28.5
parent: 2
type: Transform
- uid: 9192
components:
- - pos: 35.5,-28.5
+ - pos: 35.5,-30.5
parent: 2
type: Transform
- uid: 9193
components:
- - pos: 35.5,-30.5
+ - pos: -15.5,-69.5
parent: 2
type: Transform
- uid: 9194
components:
- - pos: -15.5,-69.5
+ - pos: -12.5,-69.5
parent: 2
type: Transform
- uid: 9195
components:
- - pos: -12.5,-69.5
+ - pos: 33.5,23.5
parent: 2
type: Transform
- uid: 9196
components:
- - pos: 33.5,23.5
+ - pos: 29.5,20.5
parent: 2
type: Transform
- uid: 9197
components:
- - pos: 29.5,20.5
+ - pos: 29.5,21.5
parent: 2
type: Transform
- uid: 9198
components:
- - pos: 29.5,21.5
+ - pos: 28.5,21.5
parent: 2
type: Transform
- uid: 9199
components:
- - pos: 28.5,21.5
+ - pos: 27.5,21.5
parent: 2
type: Transform
- uid: 9200
components:
- - pos: 27.5,21.5
+ - pos: 26.5,21.5
parent: 2
type: Transform
- uid: 9201
components:
- - pos: 26.5,21.5
+ - pos: 25.5,21.5
parent: 2
type: Transform
- uid: 9202
components:
- - pos: 25.5,21.5
+ - pos: 25.5,22.5
parent: 2
type: Transform
- uid: 9203
components:
- - pos: 25.5,22.5
+ - pos: 25.5,23.5
parent: 2
type: Transform
- uid: 9204
components:
- - pos: 25.5,23.5
+ - pos: 25.5,24.5
parent: 2
type: Transform
- uid: 9205
components:
- - pos: 25.5,24.5
+ - pos: 24.5,24.5
parent: 2
type: Transform
- uid: 9206
components:
- - pos: 24.5,24.5
+ - pos: 30.5,21.5
parent: 2
type: Transform
- uid: 9207
components:
- - pos: 30.5,21.5
+ - pos: 31.5,21.5
parent: 2
type: Transform
- uid: 9208
components:
- - pos: 31.5,21.5
+ - pos: 32.5,21.5
parent: 2
type: Transform
- uid: 9209
components:
- - pos: 32.5,21.5
+ - pos: 32.5,22.5
parent: 2
type: Transform
- uid: 9210
components:
- - pos: 32.5,22.5
+ - pos: 32.5,23.5
parent: 2
type: Transform
- uid: 9211
components:
- - pos: 32.5,23.5
+ - pos: 33.5,24.5
parent: 2
type: Transform
- uid: 9212
components:
- - pos: 33.5,24.5
+ - pos: 33.5,25.5
parent: 2
type: Transform
- uid: 9213
components:
- - pos: 33.5,25.5
+ - pos: 46.5,-64.5
parent: 2
type: Transform
- uid: 9214
components:
- - pos: 46.5,-64.5
+ - pos: -13.5,42.5
parent: 2
type: Transform
- uid: 9215
components:
- - pos: -13.5,42.5
+ - pos: -14.5,42.5
parent: 2
type: Transform
- uid: 9216
components:
- - pos: -14.5,42.5
+ - pos: -19.5,23.5
parent: 2
type: Transform
- uid: 9217
components:
- - pos: -19.5,23.5
+ - pos: -19.5,22.5
parent: 2
type: Transform
- uid: 9218
components:
- - pos: -19.5,22.5
+ - pos: 32.5,-9.5
parent: 2
type: Transform
- uid: 9219
components:
- - pos: 32.5,-9.5
+ - pos: 63.5,7.5
parent: 2
type: Transform
- uid: 9220
components:
- - pos: 63.5,7.5
+ - pos: 63.5,6.5
parent: 2
type: Transform
- uid: 9221
components:
- - pos: 63.5,6.5
+ - pos: 63.5,5.5
parent: 2
type: Transform
- uid: 9222
components:
- - pos: 63.5,5.5
+ - pos: 63.5,4.5
parent: 2
type: Transform
- uid: 9223
components:
- - pos: 63.5,4.5
+ - pos: 62.5,4.5
parent: 2
type: Transform
- uid: 9224
components:
- - pos: 62.5,4.5
+ - pos: 61.5,4.5
parent: 2
type: Transform
- uid: 9225
components:
- - pos: 61.5,4.5
+ - pos: 60.5,4.5
parent: 2
type: Transform
- uid: 9226
components:
- - pos: 60.5,4.5
+ - pos: 60.5,5.5
parent: 2
type: Transform
- uid: 9227
components:
- - pos: 60.5,5.5
+ - pos: 60.5,6.5
parent: 2
type: Transform
- uid: 9228
components:
- - pos: 60.5,6.5
+ - pos: 60.5,7.5
parent: 2
type: Transform
- uid: 9229
components:
- - pos: 60.5,7.5
+ - pos: 60.5,8.5
parent: 2
type: Transform
- uid: 9230
components:
- - pos: 60.5,8.5
+ - pos: 60.5,9.5
parent: 2
type: Transform
- uid: 9231
components:
- - pos: 60.5,9.5
+ - pos: 59.5,9.5
parent: 2
type: Transform
- uid: 9232
components:
- - pos: 59.5,9.5
+ - pos: 58.5,9.5
parent: 2
type: Transform
- uid: 9233
components:
- - pos: 58.5,9.5
+ - pos: 58.5,10.5
parent: 2
type: Transform
- uid: 9234
components:
- - pos: 58.5,10.5
+ - pos: 58.5,11.5
parent: 2
type: Transform
- uid: 9235
components:
- - pos: 58.5,11.5
+ - pos: 38.5,15.5
parent: 2
type: Transform
- uid: 9236
components:
- - pos: 38.5,15.5
+ - pos: 22.5,-8.5
parent: 2
type: Transform
- uid: 9237
components:
- - pos: 22.5,-8.5
+ - pos: 23.5,-8.5
parent: 2
type: Transform
- uid: 9238
components:
- - pos: 23.5,-8.5
+ - pos: 24.5,-8.5
parent: 2
type: Transform
- uid: 9239
components:
- - pos: 24.5,-8.5
+ - pos: 25.5,-8.5
parent: 2
type: Transform
- uid: 9240
components:
- - pos: 25.5,-8.5
+ - pos: 26.5,-8.5
parent: 2
type: Transform
- uid: 9241
components:
- - pos: 26.5,-8.5
+ - pos: 27.5,-8.5
parent: 2
type: Transform
- uid: 9242
components:
- - pos: 27.5,-8.5
+ - pos: 29.5,-8.5
parent: 2
type: Transform
- uid: 9243
components:
- - pos: 29.5,-8.5
+ - pos: 28.5,-8.5
parent: 2
type: Transform
- uid: 9244
components:
- - pos: 28.5,-8.5
+ - pos: 30.5,-8.5
parent: 2
type: Transform
- uid: 9245
components:
- - pos: 30.5,-8.5
+ - pos: 31.5,-8.5
parent: 2
type: Transform
- uid: 9246
components:
- - pos: 31.5,-8.5
+ - pos: 32.5,-8.5
parent: 2
type: Transform
- uid: 9247
components:
- - pos: 32.5,-8.5
+ - pos: 47.5,-3.5
parent: 2
type: Transform
- uid: 9248
components:
- - pos: 47.5,-3.5
+ - pos: 47.5,-2.5
parent: 2
type: Transform
- uid: 9249
components:
- - pos: 47.5,-2.5
+ - pos: 47.5,-1.5
parent: 2
type: Transform
- uid: 9250
components:
- - pos: 47.5,-1.5
+ - pos: 46.5,-1.5
parent: 2
type: Transform
- uid: 9251
components:
- - pos: 46.5,-1.5
+ - pos: 46.5,-0.5
parent: 2
type: Transform
- uid: 9252
components:
- - pos: 46.5,-0.5
+ - pos: 46.5,0.5
parent: 2
type: Transform
- uid: 9253
components:
- - pos: 46.5,0.5
+ - pos: 47.5,0.5
parent: 2
type: Transform
- uid: 9254
components:
- - pos: 47.5,0.5
+ - pos: 48.5,0.5
parent: 2
type: Transform
- uid: 9255
components:
- - pos: 48.5,0.5
+ - pos: 49.5,0.5
parent: 2
type: Transform
- uid: 9256
components:
- - pos: 49.5,0.5
+ - pos: 49.5,1.5
parent: 2
type: Transform
- uid: 9257
components:
- - pos: 49.5,1.5
+ - pos: 49.5,2.5
parent: 2
type: Transform
- uid: 9258
components:
- - pos: 49.5,2.5
+ - pos: 49.5,3.5
parent: 2
type: Transform
- uid: 9259
components:
- - pos: 49.5,3.5
+ - pos: 48.5,-5.5
parent: 2
type: Transform
- uid: 9260
components:
- - pos: 48.5,-5.5
+ - pos: 47.5,-5.5
parent: 2
type: Transform
- uid: 9261
components:
- - pos: 47.5,-5.5
+ - pos: 47.5,-6.5
parent: 2
type: Transform
- uid: 9262
components:
- - pos: 47.5,-6.5
+ - pos: 47.5,-7.5
parent: 2
type: Transform
- uid: 9263
components:
- - pos: 47.5,-7.5
+ - pos: 47.5,-8.5
parent: 2
type: Transform
- uid: 9264
components:
- - pos: 47.5,-8.5
+ - pos: 48.5,-8.5
parent: 2
type: Transform
- uid: 9265
components:
- - pos: 48.5,-8.5
+ - pos: 49.5,-8.5
parent: 2
type: Transform
- uid: 9266
components:
- - pos: 49.5,-8.5
+ - pos: 50.5,-8.5
parent: 2
type: Transform
- uid: 9267
components:
- - pos: 50.5,-8.5
+ - pos: 51.5,-8.5
parent: 2
type: Transform
- uid: 9268
components:
- - pos: 51.5,-8.5
+ - pos: 52.5,-8.5
parent: 2
type: Transform
- uid: 9269
components:
- - pos: 52.5,-8.5
+ - pos: 52.5,-7.5
parent: 2
type: Transform
- uid: 9270
components:
- - pos: 52.5,-7.5
+ - pos: 52.5,-6.5
parent: 2
type: Transform
- uid: 9271
components:
- - pos: 52.5,-6.5
+ - pos: 53.5,-6.5
parent: 2
type: Transform
- uid: 9272
components:
- - pos: 53.5,-6.5
+ - pos: 53.5,-5.5
parent: 2
type: Transform
- uid: 9273
components:
- - pos: 53.5,-5.5
+ - pos: 54.5,-5.5
parent: 2
type: Transform
- uid: 9274
components:
- - pos: 54.5,-5.5
+ - pos: 55.5,-5.5
parent: 2
type: Transform
- uid: 9275
components:
- - pos: 55.5,-5.5
+ - pos: 56.5,-5.5
parent: 2
type: Transform
- uid: 9276
components:
- - pos: 56.5,-5.5
+ - pos: 57.5,-5.5
parent: 2
type: Transform
- uid: 9277
components:
- - pos: 57.5,-5.5
+ - pos: 58.5,-5.5
parent: 2
type: Transform
- uid: 9278
components:
- - pos: 58.5,-5.5
+ - pos: 59.5,-5.5
parent: 2
type: Transform
- uid: 9279
components:
- - pos: 59.5,-5.5
+ - pos: 59.5,-4.5
parent: 2
type: Transform
- uid: 9280
components:
- - pos: 59.5,-4.5
+ - pos: 43.5,-64.5
parent: 2
type: Transform
- uid: 9281
components:
- - pos: 43.5,-64.5
+ - pos: 38.5,-46.5
parent: 2
type: Transform
- uid: 9282
components:
- - pos: 38.5,-46.5
+ - pos: 38.5,-45.5
parent: 2
type: Transform
- uid: 9283
components:
- - pos: 38.5,-45.5
+ - pos: 38.5,-44.5
parent: 2
type: Transform
- uid: 9284
components:
- - pos: 38.5,-44.5
+ - pos: 38.5,-43.5
parent: 2
type: Transform
- uid: 9285
components:
- - pos: 38.5,-43.5
+ - pos: 39.5,-43.5
parent: 2
type: Transform
- uid: 9286
components:
- - pos: 39.5,-43.5
+ - pos: 40.5,-43.5
parent: 2
type: Transform
- uid: 9287
components:
- - pos: 40.5,-43.5
+ - pos: 41.5,-43.5
parent: 2
type: Transform
- uid: 9288
components:
- - pos: 41.5,-43.5
+ - pos: 42.5,-43.5
parent: 2
type: Transform
- uid: 9289
components:
- - pos: 42.5,-43.5
+ - pos: 43.5,-43.5
parent: 2
type: Transform
- uid: 9290
components:
- - pos: 43.5,-43.5
+ - pos: 44.5,-43.5
parent: 2
type: Transform
- uid: 9291
components:
- - pos: 44.5,-43.5
+ - pos: 45.5,-43.5
parent: 2
type: Transform
- uid: 9292
components:
- - pos: 45.5,-43.5
+ - pos: 46.5,-43.5
parent: 2
type: Transform
- uid: 9293
components:
- - pos: 46.5,-43.5
+ - pos: 47.5,-43.5
parent: 2
type: Transform
- uid: 9294
components:
- - pos: 47.5,-43.5
+ - pos: 48.5,-43.5
parent: 2
type: Transform
- uid: 9295
components:
- - pos: 48.5,-43.5
+ - pos: 49.5,-43.5
parent: 2
type: Transform
- uid: 9296
components:
- - pos: 49.5,-43.5
+ - pos: 49.5,-44.5
parent: 2
type: Transform
- uid: 9297
components:
- - pos: 49.5,-44.5
+ - pos: 49.5,-45.5
parent: 2
type: Transform
- uid: 9298
components:
- - pos: 49.5,-45.5
+ - pos: 50.5,-45.5
parent: 2
type: Transform
- uid: 9299
components:
- - pos: 50.5,-45.5
+ - pos: 51.5,-45.5
parent: 2
type: Transform
- uid: 9300
components:
- - pos: 51.5,-45.5
+ - pos: 52.5,-45.5
parent: 2
type: Transform
- uid: 9301
components:
- - pos: 52.5,-45.5
+ - pos: 53.5,-45.5
parent: 2
type: Transform
- uid: 9302
components:
- - pos: 53.5,-45.5
+ - pos: 54.5,-45.5
parent: 2
type: Transform
- uid: 9303
components:
- - pos: 54.5,-45.5
+ - pos: 55.5,-45.5
parent: 2
type: Transform
- uid: 9304
components:
- - pos: 55.5,-45.5
+ - pos: 55.5,-44.5
parent: 2
type: Transform
- uid: 9305
components:
- - pos: 55.5,-44.5
+ - pos: 55.5,-43.5
parent: 2
type: Transform
- uid: 9306
components:
- - pos: 55.5,-43.5
+ - pos: 68.5,-59.5
parent: 2
type: Transform
- uid: 9307
components:
- - pos: 68.5,-59.5
+ - pos: 69.5,-59.5
parent: 2
type: Transform
- uid: 9308
components:
- - pos: 69.5,-59.5
+ - pos: 40.5,-62.5
parent: 2
type: Transform
- uid: 9309
components:
- - pos: 40.5,-62.5
+ - pos: 40.5,-60.5
parent: 2
type: Transform
- uid: 9310
components:
- - pos: 40.5,-60.5
+ - pos: 42.5,-64.5
parent: 2
type: Transform
- uid: 9311
components:
- - pos: 42.5,-64.5
+ - pos: -16.5,-0.5
parent: 2
type: Transform
- uid: 9312
components:
- - pos: -16.5,-0.5
+ - pos: -17.5,-0.5
parent: 2
type: Transform
- uid: 9313
components:
- - pos: -17.5,-0.5
+ - pos: -18.5,-0.5
parent: 2
type: Transform
- uid: 9314
components:
- - pos: -18.5,-0.5
+ - pos: -19.5,-0.5
parent: 2
type: Transform
- uid: 9315
components:
- - pos: -19.5,-0.5
+ - pos: -20.5,-0.5
parent: 2
type: Transform
- uid: 9316
components:
- - pos: -20.5,-0.5
+ - pos: -20.5,0.5
parent: 2
type: Transform
- uid: 9317
components:
- - pos: -20.5,0.5
+ - pos: -29.5,-8.5
parent: 2
type: Transform
- uid: 9318
components:
- - pos: -29.5,-8.5
+ - pos: -28.5,-23.5
parent: 2
type: Transform
- uid: 9319
components:
- - pos: -28.5,-23.5
+ - pos: -28.5,-22.5
parent: 2
type: Transform
- uid: 9320
components:
- - pos: -28.5,-22.5
+ - pos: -28.5,-21.5
parent: 2
type: Transform
- uid: 9321
components:
- - pos: -28.5,-21.5
+ - pos: -29.5,-21.5
parent: 2
type: Transform
- uid: 9322
components:
- - pos: -29.5,-21.5
+ - pos: -30.5,-21.5
parent: 2
type: Transform
- uid: 9323
components:
- - pos: -30.5,-21.5
+ - pos: -31.5,-21.5
parent: 2
type: Transform
- uid: 9324
components:
- - pos: -31.5,-21.5
+ - pos: -31.5,-20.5
parent: 2
type: Transform
- uid: 9325
components:
- - pos: -31.5,-20.5
+ - pos: -31.5,-19.5
parent: 2
type: Transform
- uid: 9326
components:
- - pos: -31.5,-19.5
+ - pos: -31.5,-18.5
parent: 2
type: Transform
- uid: 9327
components:
- - pos: -31.5,-18.5
+ - pos: -31.5,-17.5
parent: 2
type: Transform
- uid: 9328
components:
- - pos: -31.5,-17.5
+ - pos: -31.5,-16.5
parent: 2
type: Transform
- uid: 9329
components:
- - pos: -31.5,-16.5
+ - pos: -31.5,-15.5
parent: 2
type: Transform
- uid: 9330
components:
- - pos: -31.5,-15.5
+ - pos: -31.5,-14.5
parent: 2
type: Transform
- uid: 9331
components:
- - pos: -31.5,-14.5
+ - pos: -31.5,-13.5
parent: 2
type: Transform
- uid: 9332
components:
- - pos: -31.5,-13.5
+ - pos: -31.5,-12.5
parent: 2
type: Transform
- uid: 9333
components:
- - pos: -31.5,-12.5
+ - pos: -31.5,-11.5
parent: 2
type: Transform
- uid: 9334
components:
- - pos: -31.5,-11.5
+ - pos: -31.5,-10.5
parent: 2
type: Transform
- uid: 9335
components:
- - pos: -31.5,-10.5
+ - pos: -30.5,-10.5
parent: 2
type: Transform
- uid: 9336
components:
- - pos: -30.5,-10.5
+ - pos: -29.5,-10.5
parent: 2
type: Transform
- uid: 9337
components:
- - pos: -29.5,-10.5
+ - pos: -29.5,-9.5
parent: 2
type: Transform
- uid: 9338
components:
- - pos: -29.5,-9.5
+ - pos: 43.5,-58.5
parent: 2
type: Transform
- uid: 9339
components:
- - pos: 43.5,-58.5
+ - pos: 43.5,-59.5
parent: 2
type: Transform
- uid: 9340
components:
- - pos: 43.5,-59.5
+ - pos: 42.5,-59.5
parent: 2
type: Transform
- uid: 9341
components:
- - pos: 42.5,-59.5
+ - pos: 41.5,-59.5
parent: 2
type: Transform
- uid: 9342
components:
- - pos: 41.5,-59.5
+ - pos: 40.5,-59.5
parent: 2
type: Transform
- uid: 9343
components:
- - pos: 40.5,-59.5
+ - pos: 39.5,-59.5
parent: 2
type: Transform
- uid: 9344
components:
- - pos: 39.5,-59.5
+ - pos: 38.5,-59.5
parent: 2
type: Transform
- uid: 9345
components:
- - pos: 38.5,-59.5
+ - pos: 37.5,-59.5
parent: 2
type: Transform
- uid: 9346
components:
- - pos: 37.5,-59.5
+ - pos: 37.5,-58.5
parent: 2
type: Transform
- uid: 9347
components:
- - pos: 37.5,-58.5
+ - pos: 37.5,-57.5
parent: 2
type: Transform
- uid: 9348
components:
- - pos: 37.5,-57.5
+ - pos: 56.5,-45.5
parent: 2
type: Transform
- uid: 9349
components:
- - pos: 56.5,-45.5
+ - pos: 57.5,-45.5
parent: 2
type: Transform
- uid: 9350
components:
- - pos: 57.5,-45.5
+ - pos: 58.5,-45.5
parent: 2
type: Transform
- uid: 9351
components:
- - pos: 58.5,-45.5
+ - pos: 59.5,-45.5
parent: 2
type: Transform
- uid: 9352
components:
- - pos: 59.5,-45.5
+ - pos: 60.5,-45.5
parent: 2
type: Transform
- uid: 9353
components:
- - pos: 60.5,-45.5
+ - pos: 61.5,-45.5
parent: 2
type: Transform
- uid: 9354
components:
- - pos: 61.5,-45.5
+ - pos: 61.5,-46.5
parent: 2
type: Transform
- uid: 9355
components:
- - pos: 61.5,-46.5
+ - pos: 61.5,-47.5
parent: 2
type: Transform
- uid: 9356
components:
- - pos: 61.5,-47.5
+ - pos: 61.5,-48.5
parent: 2
type: Transform
- uid: 9357
components:
- - pos: 61.5,-48.5
+ - pos: 61.5,-49.5
parent: 2
type: Transform
- uid: 9358
components:
- - pos: 61.5,-49.5
+ - pos: 61.5,-50.5
parent: 2
type: Transform
- uid: 9359
components:
- - pos: 61.5,-50.5
+ - pos: 61.5,-51.5
parent: 2
type: Transform
- uid: 9360
components:
- - pos: 61.5,-51.5
+ - pos: 60.5,-51.5
parent: 2
type: Transform
- uid: 9361
components:
- - pos: 60.5,-51.5
+ - pos: 59.5,-51.5
parent: 2
type: Transform
- uid: 9362
components:
- - pos: 59.5,-51.5
+ - pos: 58.5,-51.5
parent: 2
type: Transform
- uid: 9363
components:
- - pos: 58.5,-51.5
+ - pos: 58.5,-52.5
parent: 2
type: Transform
- uid: 9364
components:
- - pos: 58.5,-52.5
+ - pos: 58.5,-53.5
parent: 2
type: Transform
- uid: 9365
components:
- - pos: 58.5,-53.5
+ - pos: 59.5,-53.5
parent: 2
type: Transform
- uid: 9366
components:
- - pos: 59.5,-53.5
+ - pos: 59.5,-54.5
parent: 2
type: Transform
- uid: 9367
components:
- - pos: 59.5,-54.5
+ - pos: 59.5,-55.5
parent: 2
type: Transform
- uid: 9368
components:
- - pos: 59.5,-55.5
+ - pos: 60.5,-55.5
parent: 2
type: Transform
- uid: 9369
components:
- - pos: 60.5,-55.5
+ - pos: 60.5,-56.5
parent: 2
type: Transform
- uid: 9370
components:
- - pos: 60.5,-56.5
+ - pos: 61.5,-56.5
parent: 2
type: Transform
- uid: 9371
components:
- - pos: 61.5,-56.5
+ - pos: 62.5,-56.5
parent: 2
type: Transform
- uid: 9372
components:
- - pos: 62.5,-56.5
+ - pos: 63.5,-56.5
parent: 2
type: Transform
- uid: 9373
components:
- - pos: 63.5,-56.5
+ - pos: 64.5,-56.5
parent: 2
type: Transform
- uid: 9374
components:
- - pos: 64.5,-56.5
+ - pos: 64.5,-55.5
parent: 2
type: Transform
- uid: 9375
components:
- - pos: 64.5,-55.5
+ - pos: 65.5,-55.5
parent: 2
type: Transform
- uid: 9376
components:
- - pos: 65.5,-55.5
+ - pos: 65.5,-54.5
parent: 2
type: Transform
- uid: 9377
components:
- - pos: 65.5,-54.5
+ - pos: 65.5,-53.5
parent: 2
type: Transform
- uid: 9378
components:
- - pos: 65.5,-53.5
+ - pos: 66.5,-53.5
parent: 2
type: Transform
- uid: 9379
components:
- - pos: 66.5,-53.5
+ - pos: 66.5,-52.5
parent: 2
type: Transform
- uid: 9380
components:
- - pos: 66.5,-52.5
+ - pos: 66.5,-51.5
parent: 2
type: Transform
- uid: 9381
components:
- - pos: 66.5,-51.5
+ - pos: 66.5,-50.5
parent: 2
type: Transform
- uid: 9382
components:
- - pos: 66.5,-50.5
+ - pos: 65.5,-50.5
parent: 2
type: Transform
- uid: 9383
components:
- - pos: 65.5,-50.5
+ - pos: 47.5,-65.5
parent: 2
type: Transform
- uid: 9384
components:
- - pos: 47.5,-65.5
+ - pos: -59.5,-20.5
parent: 2
type: Transform
- uid: 9385
components:
- - pos: -59.5,-20.5
+ - pos: -57.5,-20.5
parent: 2
type: Transform
- uid: 9386
components:
- - pos: -57.5,-20.5
+ - pos: -56.5,-21.5
parent: 2
type: Transform
- uid: 9387
components:
- - pos: -56.5,-21.5
+ - pos: -60.5,-20.5
parent: 2
type: Transform
- uid: 9388
components:
- - pos: -60.5,-20.5
+ - pos: -61.5,-20.5
parent: 2
type: Transform
- uid: 9389
components:
- - pos: -61.5,-20.5
+ - pos: -62.5,-20.5
parent: 2
type: Transform
- uid: 9390
components:
- - pos: -62.5,-20.5
+ - pos: -63.5,-20.5
parent: 2
type: Transform
- uid: 9391
components:
- - pos: -63.5,-20.5
+ - pos: -64.5,-20.5
parent: 2
type: Transform
- uid: 9392
components:
- - pos: -64.5,-20.5
+ - pos: -65.5,-20.5
parent: 2
type: Transform
- uid: 9393
components:
- - pos: -65.5,-20.5
+ - pos: -66.5,-20.5
parent: 2
type: Transform
- uid: 9394
components:
- - pos: -66.5,-20.5
+ - pos: -67.5,-20.5
parent: 2
type: Transform
- uid: 9395
components:
- - pos: -67.5,-20.5
+ - pos: -68.5,-20.5
parent: 2
type: Transform
- uid: 9396
components:
- - pos: -68.5,-20.5
+ - pos: -69.5,-20.5
parent: 2
type: Transform
- uid: 9397
components:
- - pos: -69.5,-20.5
+ - pos: -70.5,-20.5
parent: 2
type: Transform
- uid: 9398
components:
- - pos: -70.5,-20.5
+ - pos: -71.5,-20.5
parent: 2
type: Transform
- uid: 9399
components:
- - pos: -71.5,-20.5
+ - pos: -72.5,-20.5
parent: 2
type: Transform
- uid: 9400
components:
- - pos: -72.5,-20.5
+ - pos: -73.5,-20.5
parent: 2
type: Transform
- uid: 9401
components:
- - pos: -73.5,-20.5
+ - pos: -73.5,-19.5
parent: 2
type: Transform
- uid: 9402
components:
- - pos: -73.5,-19.5
+ - pos: -73.5,-18.5
parent: 2
type: Transform
- uid: 9403
components:
- - pos: -73.5,-18.5
+ - pos: -73.5,-17.5
parent: 2
type: Transform
- uid: 9404
components:
- - pos: -73.5,-17.5
+ - pos: -73.5,-16.5
parent: 2
type: Transform
- uid: 9405
components:
- - pos: -73.5,-16.5
+ - pos: -73.5,-15.5
parent: 2
type: Transform
- uid: 9406
components:
- - pos: -73.5,-15.5
+ - pos: -73.5,-14.5
parent: 2
type: Transform
- uid: 9407
components:
- - pos: -73.5,-14.5
+ - pos: -73.5,-13.5
parent: 2
type: Transform
- uid: 9408
components:
- - pos: -73.5,-13.5
+ - pos: -73.5,-12.5
parent: 2
type: Transform
- uid: 9409
components:
- - pos: -73.5,-12.5
+ - pos: -73.5,-11.5
parent: 2
type: Transform
- uid: 9410
components:
- - pos: -73.5,-11.5
+ - pos: -73.5,-10.5
parent: 2
type: Transform
- uid: 9411
components:
- - pos: -73.5,-10.5
+ - pos: -73.5,-9.5
parent: 2
type: Transform
- uid: 9412
components:
- - pos: -73.5,-9.5
+ - pos: -73.5,-8.5
parent: 2
type: Transform
- uid: 9413
components:
- - pos: -73.5,-8.5
+ - pos: -73.5,-7.5
parent: 2
type: Transform
- uid: 9414
components:
- - pos: -73.5,-7.5
+ - pos: -73.5,-6.5
parent: 2
type: Transform
- uid: 9415
components:
- - pos: -73.5,-6.5
+ - pos: -72.5,-6.5
parent: 2
type: Transform
- uid: 9416
components:
- - pos: -72.5,-6.5
+ - pos: -71.5,-6.5
parent: 2
type: Transform
- uid: 9417
components:
- - pos: -71.5,-6.5
+ - pos: -70.5,-6.5
parent: 2
type: Transform
- uid: 9418
components:
- - pos: -70.5,-6.5
+ - pos: -69.5,-6.5
parent: 2
type: Transform
- uid: 9419
components:
- - pos: -69.5,-6.5
+ - pos: -68.5,-6.5
parent: 2
type: Transform
- uid: 9420
components:
- - pos: -68.5,-6.5
+ - pos: -67.5,-6.5
parent: 2
type: Transform
- uid: 9421
components:
- - pos: -67.5,-6.5
+ - pos: -66.5,-6.5
parent: 2
type: Transform
- uid: 9422
components:
- - pos: -66.5,-6.5
+ - pos: -65.5,-6.5
parent: 2
type: Transform
- uid: 9423
components:
- - pos: -65.5,-6.5
+ - pos: -64.5,-6.5
parent: 2
type: Transform
- uid: 9424
components:
- - pos: -64.5,-6.5
+ - pos: -63.5,-6.5
parent: 2
type: Transform
- uid: 9425
components:
- - pos: -63.5,-6.5
+ - pos: -62.5,-6.5
parent: 2
type: Transform
- uid: 9426
components:
- - pos: -62.5,-6.5
+ - pos: -61.5,-6.5
parent: 2
type: Transform
- uid: 9427
components:
- - pos: -61.5,-6.5
+ - pos: -60.5,-6.5
parent: 2
type: Transform
- uid: 9428
components:
- - pos: -60.5,-6.5
+ - pos: -59.5,-6.5
parent: 2
type: Transform
- uid: 9429
components:
- - pos: -59.5,-6.5
+ - pos: -59.5,-7.5
parent: 2
type: Transform
- uid: 9430
components:
- - pos: -59.5,-7.5
+ - pos: -59.5,-8.5
parent: 2
type: Transform
- uid: 9431
components:
- - pos: -59.5,-8.5
+ - pos: -59.5,-9.5
parent: 2
type: Transform
- uid: 9432
components:
- - pos: -59.5,-9.5
+ - pos: -59.5,-10.5
parent: 2
type: Transform
- uid: 9433
components:
- - pos: -59.5,-10.5
+ - pos: -59.5,-11.5
parent: 2
type: Transform
- uid: 9434
components:
- - pos: -59.5,-11.5
+ - pos: -59.5,-12.5
parent: 2
type: Transform
- uid: 9435
components:
- - pos: -59.5,-12.5
+ - pos: -59.5,-13.5
parent: 2
type: Transform
- uid: 9436
components:
- - pos: -59.5,-13.5
+ - pos: -59.5,-14.5
parent: 2
type: Transform
- uid: 9437
components:
- - pos: -59.5,-14.5
+ - pos: -59.5,-15.5
parent: 2
type: Transform
- uid: 9438
components:
- - pos: -59.5,-15.5
+ - pos: -59.5,-16.5
parent: 2
type: Transform
- uid: 9439
components:
- - pos: -59.5,-16.5
+ - pos: -59.5,-17.5
parent: 2
type: Transform
- uid: 9440
components:
- - pos: -59.5,-17.5
+ - pos: -59.5,-18.5
parent: 2
type: Transform
- uid: 9441
components:
- - pos: -59.5,-18.5
+ - pos: -59.5,-19.5
parent: 2
type: Transform
- uid: 9442
components:
- - pos: -59.5,-19.5
+ - pos: -50.5,-8.5
parent: 2
type: Transform
- uid: 9443
components:
- - pos: -50.5,-8.5
+ - pos: -51.5,-8.5
parent: 2
type: Transform
- uid: 9444
components:
- - pos: -51.5,-8.5
+ - pos: -52.5,-8.5
parent: 2
type: Transform
- uid: 9445
components:
- - pos: -52.5,-8.5
+ - pos: -53.5,-8.5
parent: 2
type: Transform
- uid: 9446
components:
- - pos: -53.5,-8.5
+ - pos: -53.5,-9.5
parent: 2
type: Transform
- uid: 9447
components:
- - pos: -53.5,-9.5
+ - pos: -53.5,-10.5
parent: 2
type: Transform
- uid: 9448
components:
- - pos: -53.5,-10.5
+ - pos: -53.5,-11.5
parent: 2
type: Transform
- uid: 9449
components:
- - pos: -53.5,-11.5
+ - pos: -53.5,-12.5
parent: 2
type: Transform
- uid: 9450
components:
- - pos: -53.5,-12.5
+ - pos: -53.5,-13.5
parent: 2
type: Transform
- uid: 9451
components:
- - pos: -53.5,-13.5
+ - pos: -53.5,-14.5
parent: 2
type: Transform
- uid: 9452
components:
- - pos: -53.5,-14.5
+ - pos: -53.5,-15.5
parent: 2
type: Transform
- uid: 9453
components:
- - pos: -53.5,-15.5
+ - pos: -53.5,-16.5
parent: 2
type: Transform
- uid: 9454
components:
- - pos: -53.5,-16.5
+ - pos: -51.5,-16.5
parent: 2
type: Transform
- uid: 9455
components:
- - pos: -51.5,-16.5
+ - pos: -52.5,-16.5
parent: 2
type: Transform
- uid: 9456
components:
- - pos: -52.5,-16.5
+ - pos: -50.5,-16.5
parent: 2
type: Transform
- uid: 9457
components:
- - pos: -50.5,-16.5
+ - pos: -50.5,-15.5
parent: 2
type: Transform
- uid: 9458
components:
- - pos: -50.5,-15.5
+ - pos: -27.5,-37.5
parent: 2
type: Transform
- uid: 9459
components:
- - pos: -27.5,-37.5
+ - pos: -27.5,-36.5
parent: 2
type: Transform
- uid: 9460
components:
- - pos: -27.5,-36.5
+ - pos: -27.5,-35.5
parent: 2
type: Transform
- uid: 9461
components:
- - pos: -27.5,-35.5
+ - pos: -27.5,-34.5
parent: 2
type: Transform
- uid: 9462
components:
- - pos: -27.5,-34.5
+ - pos: -28.5,-34.5
parent: 2
type: Transform
- uid: 9463
components:
- - pos: -28.5,-34.5
+ - pos: -29.5,-34.5
parent: 2
type: Transform
- uid: 9464
components:
- - pos: -29.5,-34.5
+ - pos: -30.5,-34.5
parent: 2
type: Transform
- uid: 9465
components:
- - pos: -30.5,-34.5
+ - pos: -31.5,-34.5
parent: 2
type: Transform
- uid: 9466
components:
- - pos: -31.5,-34.5
+ - pos: -32.5,-34.5
parent: 2
type: Transform
- uid: 9467
components:
- - pos: -32.5,-34.5
+ - pos: -33.5,-34.5
parent: 2
type: Transform
- uid: 9468
components:
- - pos: -33.5,-34.5
+ - pos: -34.5,-34.5
parent: 2
type: Transform
- uid: 9469
components:
- - pos: -34.5,-34.5
+ - pos: -35.5,-34.5
parent: 2
type: Transform
- uid: 9470
components:
- - pos: -35.5,-34.5
+ - pos: -35.5,-33.5
parent: 2
type: Transform
- uid: 9471
components:
- - pos: -35.5,-33.5
+ - pos: -35.5,-32.5
parent: 2
type: Transform
- uid: 9472
components:
- - pos: -35.5,-32.5
+ - pos: -35.5,-31.5
parent: 2
type: Transform
- uid: 9473
components:
- - pos: -35.5,-31.5
+ - pos: -54.5,-13.5
parent: 2
type: Transform
- uid: 9474
components:
- - pos: -54.5,-13.5
+ - pos: -31.5,-54.5
parent: 2
type: Transform
- uid: 9475
components:
- - pos: -31.5,-54.5
+ - pos: -31.5,-55.5
parent: 2
type: Transform
- uid: 9476
components:
- - pos: -31.5,-55.5
+ - pos: -30.5,-55.5
parent: 2
type: Transform
- uid: 9477
components:
- - pos: -30.5,-55.5
+ - pos: -29.5,-55.5
parent: 2
type: Transform
- uid: 9478
components:
- - pos: -29.5,-55.5
+ - pos: -28.5,-55.5
parent: 2
type: Transform
- uid: 9479
components:
- - pos: -28.5,-55.5
+ - pos: -28.5,-56.5
parent: 2
type: Transform
- uid: 9480
components:
- - pos: -28.5,-56.5
+ - pos: -28.5,-57.5
parent: 2
type: Transform
- uid: 9481
components:
- - pos: -28.5,-57.5
+ - pos: -28.5,-58.5
parent: 2
type: Transform
- uid: 9482
components:
- - pos: -28.5,-58.5
+ - pos: -28.5,-59.5
parent: 2
type: Transform
- uid: 9483
components:
- - pos: -28.5,-59.5
+ - pos: -28.5,-60.5
parent: 2
type: Transform
- uid: 9484
components:
- - pos: -28.5,-60.5
+ - pos: -28.5,-61.5
parent: 2
type: Transform
- uid: 9485
components:
- - pos: -28.5,-61.5
+ - pos: -28.5,-62.5
parent: 2
type: Transform
- uid: 9486
components:
- - pos: -28.5,-62.5
+ - pos: -28.5,-63.5
parent: 2
type: Transform
- uid: 9487
components:
- - pos: -28.5,-63.5
+ - pos: -29.5,-63.5
parent: 2
type: Transform
- uid: 9488
components:
- - pos: -29.5,-63.5
+ - pos: -29.5,-64.5
parent: 2
type: Transform
- uid: 9489
components:
- - pos: -29.5,-64.5
+ - pos: -30.5,-63.5
parent: 2
type: Transform
- uid: 9490
components:
- - pos: -30.5,-63.5
+ - pos: 21.5,-8.5
parent: 2
type: Transform
- uid: 9491
components:
- - pos: 21.5,-8.5
+ - pos: 29.5,-28.5
parent: 2
type: Transform
- uid: 9492
components:
- - pos: 29.5,-28.5
+ - pos: -56.5,-86.5
parent: 2
type: Transform
- uid: 9493
components:
- - pos: -56.5,-86.5
+ - pos: -56.5,-85.5
parent: 2
type: Transform
- uid: 9494
components:
- - pos: -56.5,-85.5
+ - pos: -8.5,35.5
parent: 2
type: Transform
- uid: 9495
components:
- - pos: -8.5,35.5
+ - pos: -8.5,33.5
parent: 2
type: Transform
- uid: 9496
components:
- - pos: -8.5,33.5
+ - pos: -8.5,34.5
parent: 2
type: Transform
- uid: 9497
components:
- - pos: -8.5,34.5
+ - pos: -8.5,31.5
parent: 2
type: Transform
- uid: 9498
components:
- - pos: -8.5,31.5
+ - pos: -8.5,32.5
parent: 2
type: Transform
- uid: 9499
components:
- - pos: -8.5,32.5
+ - pos: -7.5,32.5
parent: 2
type: Transform
- uid: 9500
components:
- - pos: -7.5,32.5
+ - pos: -6.5,32.5
parent: 2
type: Transform
- uid: 9501
components:
- - pos: -6.5,32.5
+ - pos: -5.5,32.5
parent: 2
type: Transform
- uid: 9502
components:
- - pos: -5.5,32.5
+ - pos: -4.5,32.5
parent: 2
type: Transform
- uid: 9503
components:
- - pos: -4.5,32.5
+ - pos: -3.5,32.5
parent: 2
type: Transform
- uid: 9504
components:
- - pos: -3.5,32.5
+ - pos: -2.5,32.5
parent: 2
type: Transform
- uid: 9505
components:
- - pos: -2.5,32.5
+ - pos: -1.5,32.5
parent: 2
type: Transform
- uid: 9506
components:
- - pos: -1.5,32.5
+ - pos: -0.5,32.5
parent: 2
type: Transform
- uid: 9507
components:
- - pos: -0.5,32.5
+ - pos: 0.5,32.5
parent: 2
type: Transform
- uid: 9508
components:
- - pos: 0.5,32.5
+ - pos: 0.5,33.5
parent: 2
type: Transform
- uid: 9509
components:
- - pos: 0.5,33.5
+ - pos: 0.5,34.5
parent: 2
type: Transform
- uid: 9510
components:
- - pos: 0.5,34.5
+ - pos: 0.5,35.5
parent: 2
type: Transform
- uid: 9511
components:
- - pos: 0.5,35.5
+ - pos: -23.5,15.5
parent: 2
type: Transform
- uid: 9512
components:
- - pos: -23.5,15.5
+ - pos: -22.5,15.5
parent: 2
type: Transform
- uid: 9513
components:
- - pos: -22.5,15.5
+ - pos: -21.5,15.5
parent: 2
type: Transform
- uid: 9514
components:
- - pos: -21.5,15.5
+ - pos: -20.5,15.5
parent: 2
type: Transform
- uid: 9515
components:
- - pos: -20.5,15.5
+ - pos: -19.5,15.5
parent: 2
type: Transform
- uid: 9516
components:
- - pos: -19.5,15.5
+ - pos: -19.5,16.5
parent: 2
type: Transform
- uid: 9517
components:
- - pos: -19.5,16.5
+ - pos: -19.5,17.5
parent: 2
type: Transform
- uid: 9518
components:
- - pos: -19.5,17.5
+ - pos: -19.5,18.5
parent: 2
type: Transform
- uid: 9519
components:
- - pos: -19.5,18.5
+ - pos: -19.5,19.5
parent: 2
type: Transform
- uid: 9520
components:
- - pos: -19.5,19.5
+ - pos: -19.5,20.5
parent: 2
type: Transform
- uid: 9521
components:
- - pos: -19.5,20.5
+ - pos: -19.5,21.5
parent: 2
type: Transform
- uid: 9522
components:
- - pos: -19.5,21.5
+ - pos: -20.5,21.5
parent: 2
type: Transform
- uid: 9523
components:
- - pos: -20.5,21.5
+ - pos: -21.5,21.5
parent: 2
type: Transform
- uid: 9524
components:
- - pos: -21.5,21.5
+ - pos: -22.5,21.5
parent: 2
type: Transform
- uid: 9525
components:
- - pos: -22.5,21.5
+ - pos: -23.5,21.5
parent: 2
type: Transform
- uid: 9526
components:
- - pos: -23.5,21.5
+ - pos: -23.5,22.5
parent: 2
type: Transform
- uid: 9527
components:
- - pos: -23.5,22.5
+ - pos: -23.5,23.5
parent: 2
type: Transform
- uid: 9528
components:
- - pos: -23.5,23.5
+ - pos: -23.5,24.5
parent: 2
type: Transform
- uid: 9529
components:
- - pos: -23.5,24.5
+ - pos: -23.5,25.5
parent: 2
type: Transform
- uid: 9530
components:
- - pos: -23.5,25.5
+ - pos: -23.5,26.5
parent: 2
type: Transform
- uid: 9531
components:
- - pos: -23.5,26.5
+ - pos: -9.5,26.5
parent: 2
type: Transform
- uid: 9532
components:
- - pos: -9.5,26.5
+ - pos: -34.5,-3.5
parent: 2
type: Transform
- uid: 9533
components:
- - pos: -34.5,-3.5
+ - pos: -34.5,-2.5
parent: 2
type: Transform
- uid: 9534
components:
- - pos: -34.5,-2.5
+ - pos: -35.5,-2.5
parent: 2
type: Transform
- uid: 9535
components:
- - pos: -35.5,-2.5
+ - pos: -36.5,-2.5
parent: 2
type: Transform
- uid: 9536
components:
- - pos: -36.5,-2.5
+ - pos: -37.5,-2.5
parent: 2
type: Transform
- uid: 9537
components:
- - pos: -37.5,-2.5
+ - pos: -37.5,-1.5
parent: 2
type: Transform
- uid: 9538
components:
- - pos: -37.5,-1.5
+ - pos: -37.5,-0.5
parent: 2
type: Transform
- uid: 9539
components:
- - pos: -37.5,-0.5
+ - pos: -37.5,0.5
parent: 2
type: Transform
- uid: 9540
components:
- - pos: -37.5,0.5
+ - pos: -38.5,0.5
parent: 2
type: Transform
- uid: 9541
components:
- - pos: -38.5,0.5
+ - pos: -39.5,0.5
parent: 2
type: Transform
- uid: 9542
components:
- - pos: -39.5,0.5
+ - pos: -40.5,0.5
parent: 2
type: Transform
- uid: 9543
components:
- - pos: -40.5,0.5
+ - pos: -41.5,0.5
parent: 2
type: Transform
- uid: 9544
components:
- - pos: -41.5,0.5
+ - pos: -42.5,0.5
parent: 2
type: Transform
- uid: 9545
components:
- - pos: -42.5,0.5
+ - pos: -42.5,1.5
parent: 2
type: Transform
- uid: 9546
components:
- - pos: -42.5,1.5
+ - pos: -42.5,2.5
parent: 2
type: Transform
- uid: 9547
components:
- - pos: -42.5,2.5
+ - pos: -9.5,25.5
parent: 2
type: Transform
- uid: 9548
components:
- - pos: -9.5,25.5
+ - pos: -6.5,15.5
parent: 2
type: Transform
- uid: 9549
components:
- - pos: -6.5,15.5
+ - pos: -10.5,16.5
parent: 2
type: Transform
- uid: 9550
components:
- - pos: -10.5,16.5
+ - pos: -10.5,18.5
parent: 2
type: Transform
- uid: 9551
components:
- - pos: -10.5,18.5
+ - pos: -11.5,18.5
parent: 2
type: Transform
- uid: 9552
components:
- - pos: -11.5,18.5
+ - pos: -12.5,18.5
parent: 2
type: Transform
- uid: 9553
components:
- - pos: -12.5,18.5
+ - pos: -12.5,19.5
parent: 2
type: Transform
- uid: 9554
components:
- - pos: -12.5,19.5
+ - pos: -12.5,20.5
parent: 2
type: Transform
- uid: 9555
components:
- - pos: -12.5,20.5
+ - pos: -12.5,21.5
parent: 2
type: Transform
- uid: 9556
components:
- - pos: -12.5,21.5
+ - pos: -12.5,22.5
parent: 2
type: Transform
- uid: 9557
components:
- - pos: -12.5,22.5
+ - pos: -12.5,23.5
parent: 2
type: Transform
- uid: 9558
components:
- - pos: -12.5,23.5
+ - pos: -12.5,24.5
parent: 2
type: Transform
- uid: 9559
components:
- - pos: -12.5,24.5
+ - pos: -11.5,24.5
parent: 2
type: Transform
- uid: 9560
components:
- - pos: -11.5,24.5
+ - pos: -10.5,24.5
parent: 2
type: Transform
- uid: 9561
components:
- - pos: -10.5,24.5
+ - pos: -9.5,24.5
parent: 2
type: Transform
- uid: 9562
components:
- - pos: -9.5,24.5
+ - pos: -8.5,26.5
parent: 2
type: Transform
- uid: 9563
components:
- - pos: -8.5,26.5
+ - pos: -8.5,27.5
parent: 2
type: Transform
- uid: 9564
components:
- - pos: -8.5,27.5
+ - pos: -8.5,28.5
parent: 2
type: Transform
- uid: 9565
components:
- - pos: -8.5,28.5
+ - pos: -8.5,29.5
parent: 2
type: Transform
- uid: 9566
components:
- - pos: -8.5,29.5
+ - pos: -8.5,30.5
parent: 2
type: Transform
- uid: 9567
components:
- - pos: -8.5,30.5
+ - pos: -55.5,-13.5
parent: 2
type: Transform
- uid: 9568
components:
- - pos: -55.5,-13.5
+ - pos: 33.5,26.5
parent: 2
type: Transform
- uid: 9569
components:
- - pos: 33.5,26.5
+ - pos: 33.5,27.5
parent: 2
type: Transform
- uid: 9570
components:
- - pos: 33.5,27.5
+ - pos: 33.5,28.5
parent: 2
type: Transform
- uid: 9571
components:
- - pos: 33.5,28.5
+ - pos: 34.5,28.5
parent: 2
type: Transform
- uid: 9572
components:
- - pos: 34.5,28.5
+ - pos: 35.5,28.5
parent: 2
type: Transform
- uid: 9573
components:
- - pos: 35.5,28.5
+ - pos: 36.5,28.5
parent: 2
type: Transform
- uid: 9574
components:
- - pos: 36.5,28.5
+ - pos: 36.5,29.5
parent: 2
type: Transform
- uid: 9575
components:
- - pos: 36.5,29.5
+ - pos: 36.5,30.5
parent: 2
type: Transform
- uid: 9576
components:
- - pos: 36.5,30.5
+ - pos: 36.5,31.5
parent: 2
type: Transform
- uid: 9577
components:
- - pos: 36.5,31.5
+ - pos: 36.5,32.5
parent: 2
type: Transform
- uid: 9578
components:
- - pos: 36.5,32.5
+ - pos: 35.5,32.5
parent: 2
type: Transform
- uid: 9579
components:
- - pos: 35.5,32.5
+ - pos: 34.5,32.5
parent: 2
type: Transform
- uid: 9580
components:
- - pos: 34.5,32.5
+ - pos: 36.5,33.5
parent: 2
type: Transform
- uid: 9581
components:
- - pos: 36.5,33.5
+ - pos: 34.5,33.5
parent: 2
type: Transform
- uid: 9582
components:
- - pos: 34.5,33.5
+ - pos: 34.5,34.5
parent: 2
type: Transform
- uid: 9583
components:
- - pos: 34.5,34.5
+ - pos: 33.5,34.5
parent: 2
type: Transform
- uid: 9584
components:
- - pos: 33.5,34.5
+ - pos: 32.5,34.5
parent: 2
type: Transform
- uid: 9585
components:
- - pos: 32.5,34.5
+ - pos: 32.5,35.5
parent: 2
type: Transform
- uid: 9586
components:
- - pos: 32.5,35.5
+ - pos: 32.5,36.5
parent: 2
type: Transform
- uid: 9587
components:
- - pos: 32.5,36.5
+ - pos: 32.5,37.5
parent: 2
type: Transform
- uid: 9588
components:
- - pos: 32.5,37.5
+ - pos: 33.5,37.5
parent: 2
type: Transform
- uid: 9589
components:
- - pos: 33.5,37.5
+ - pos: 31.5,37.5
parent: 2
type: Transform
- uid: 9590
components:
- - pos: 31.5,37.5
+ - pos: 30.5,37.5
parent: 2
type: Transform
- uid: 9591
components:
- - pos: 30.5,37.5
+ - pos: 29.5,37.5
parent: 2
type: Transform
- uid: 9592
components:
- - pos: 29.5,37.5
+ - pos: 28.5,37.5
parent: 2
type: Transform
- uid: 9593
components:
- - pos: 28.5,37.5
+ - pos: 27.5,37.5
parent: 2
type: Transform
- uid: 9594
components:
- - pos: 27.5,37.5
+ - pos: 26.5,37.5
parent: 2
type: Transform
- uid: 9595
components:
- - pos: 26.5,37.5
+ - pos: 25.5,37.5
parent: 2
type: Transform
- uid: 9596
components:
- - pos: 25.5,37.5
+ - pos: 24.5,37.5
parent: 2
type: Transform
- uid: 9597
components:
- - pos: 24.5,37.5
+ - pos: 23.5,37.5
parent: 2
type: Transform
- uid: 9598
components:
- - pos: 23.5,37.5
+ - pos: 22.5,37.5
parent: 2
type: Transform
- uid: 9599
components:
- - pos: 22.5,37.5
+ - pos: 21.5,37.5
parent: 2
type: Transform
- uid: 9600
components:
- - pos: 21.5,37.5
+ - pos: 26.5,36.5
parent: 2
type: Transform
- uid: 9601
components:
- - pos: 26.5,36.5
+ - pos: 26.5,35.5
parent: 2
type: Transform
- uid: 9602
components:
- - pos: 26.5,35.5
+ - pos: 26.5,34.5
parent: 2
type: Transform
- uid: 9603
components:
- - pos: 26.5,34.5
+ - pos: 25.5,34.5
parent: 2
type: Transform
- uid: 9604
components:
- - pos: 25.5,34.5
+ - pos: 24.5,34.5
parent: 2
type: Transform
- uid: 9605
components:
- - pos: 24.5,34.5
+ - pos: 23.5,34.5
parent: 2
type: Transform
- uid: 9606
components:
- - pos: 23.5,34.5
+ - pos: 22.5,34.5
parent: 2
type: Transform
- uid: 9607
components:
- - pos: 22.5,34.5
+ - pos: 22.5,33.5
parent: 2
type: Transform
- uid: 9608
components:
- - pos: 22.5,33.5
+ - pos: 22.5,32.5
parent: 2
type: Transform
- uid: 9609
components:
- - pos: 22.5,32.5
+ - pos: 22.5,31.5
parent: 2
type: Transform
- uid: 9610
components:
- - pos: 22.5,31.5
+ - pos: 22.5,30.5
parent: 2
type: Transform
- uid: 9611
components:
- - pos: 22.5,30.5
+ - pos: 22.5,29.5
parent: 2
type: Transform
- uid: 9612
components:
- - pos: 22.5,29.5
+ - pos: 22.5,28.5
parent: 2
type: Transform
- uid: 9613
components:
- - pos: 22.5,28.5
+ - pos: 22.5,27.5
parent: 2
type: Transform
- uid: 9614
components:
- - pos: 22.5,27.5
+ - pos: 22.5,26.5
parent: 2
type: Transform
- uid: 9615
components:
- - pos: 22.5,26.5
+ - pos: 34.5,37.5
parent: 2
type: Transform
- uid: 9616
components:
- - pos: 34.5,37.5
+ - pos: 35.5,37.5
parent: 2
type: Transform
- uid: 9617
components:
- - pos: 35.5,37.5
+ - pos: 36.5,37.5
parent: 2
type: Transform
- uid: 9618
components:
- - pos: 36.5,37.5
+ - pos: 36.5,36.5
parent: 2
type: Transform
- uid: 9619
components:
- - pos: 36.5,36.5
+ - pos: 49.5,-46.5
parent: 2
type: Transform
- uid: 9620
components:
- - pos: 49.5,-46.5
+ - pos: 49.5,-47.5
parent: 2
type: Transform
- uid: 9621
components:
- - pos: 49.5,-47.5
+ - pos: 49.5,-48.5
parent: 2
type: Transform
- uid: 9622
components:
- - pos: 49.5,-48.5
+ - pos: 48.5,-48.5
parent: 2
type: Transform
- uid: 9623
components:
- - pos: 48.5,-48.5
+ - pos: -31.5,-63.5
parent: 2
type: Transform
- uid: 9624
components:
- - pos: -31.5,-63.5
+ - pos: -32.5,-63.5
parent: 2
type: Transform
- uid: 9625
components:
- - pos: -32.5,-63.5
+ - pos: -33.5,-63.5
parent: 2
type: Transform
- uid: 9626
components:
- - pos: -33.5,-63.5
+ - pos: -34.5,-63.5
parent: 2
type: Transform
- uid: 9627
components:
- - pos: -34.5,-63.5
+ - pos: -34.5,-64.5
parent: 2
type: Transform
- uid: 9628
components:
- - pos: -34.5,-64.5
+ - pos: -34.5,-65.5
parent: 2
type: Transform
- uid: 9629
components:
- - pos: -34.5,-65.5
+ - pos: -35.5,-65.5
parent: 2
type: Transform
- uid: 9630
components:
- - pos: -35.5,-65.5
+ - pos: -36.5,-65.5
parent: 2
type: Transform
- uid: 9631
components:
- - pos: -36.5,-65.5
+ - pos: -37.5,-65.5
parent: 2
type: Transform
- uid: 9632
components:
- - pos: -37.5,-65.5
+ - pos: -37.5,-66.5
parent: 2
type: Transform
- uid: 9633
components:
- - pos: -37.5,-66.5
+ - pos: -37.5,-67.5
parent: 2
type: Transform
- uid: 9634
components:
- - pos: -37.5,-67.5
+ - pos: -37.5,-68.5
parent: 2
type: Transform
- uid: 9635
components:
- - pos: -37.5,-68.5
+ - pos: -38.5,-68.5
parent: 2
type: Transform
- uid: 9636
components:
- - pos: -38.5,-68.5
+ - pos: -39.5,-68.5
parent: 2
type: Transform
- uid: 9637
components:
- - pos: -39.5,-68.5
+ - pos: -39.5,-69.5
parent: 2
type: Transform
- uid: 9638
components:
- - pos: -39.5,-69.5
+ - pos: -10.5,-58.5
parent: 2
type: Transform
- uid: 9639
components:
- - pos: -10.5,-58.5
+ - pos: -9.5,-58.5
parent: 2
type: Transform
- uid: 9640
components:
- - pos: -9.5,-58.5
+ - pos: -8.5,-58.5
parent: 2
type: Transform
- uid: 9641
components:
- - pos: -8.5,-58.5
+ - pos: -8.5,-57.5
parent: 2
type: Transform
- uid: 9642
components:
- - pos: -8.5,-57.5
+ - pos: -8.5,-56.5
parent: 2
type: Transform
- uid: 9643
components:
- - pos: -8.5,-56.5
+ - pos: -7.5,-56.5
parent: 2
type: Transform
- uid: 9644
components:
- - pos: -7.5,-56.5
+ - pos: -6.5,-56.5
parent: 2
type: Transform
- uid: 9645
components:
- - pos: -6.5,-56.5
+ - pos: -5.5,-56.5
parent: 2
type: Transform
- uid: 9646
components:
- - pos: -5.5,-56.5
+ - pos: -4.5,-56.5
parent: 2
type: Transform
- uid: 9647
components:
- - pos: -4.5,-56.5
+ - pos: -3.5,-56.5
parent: 2
type: Transform
- uid: 9648
components:
- - pos: -3.5,-56.5
+ - pos: -2.5,-56.5
parent: 2
type: Transform
- uid: 9649
components:
- - pos: -2.5,-56.5
+ - pos: -1.5,-56.5
parent: 2
type: Transform
- uid: 9650
components:
- - pos: -1.5,-56.5
+ - pos: -0.5,-56.5
parent: 2
type: Transform
- uid: 9651
components:
- - pos: -0.5,-56.5
+ - pos: 0.5,-56.5
parent: 2
type: Transform
- uid: 9652
components:
- - pos: 0.5,-56.5
+ - pos: 1.5,-56.5
parent: 2
type: Transform
- uid: 9653
components:
- - pos: 1.5,-56.5
+ - pos: 2.5,-56.5
parent: 2
type: Transform
- uid: 9654
components:
- - pos: 2.5,-56.5
+ - pos: 3.5,-56.5
parent: 2
type: Transform
- uid: 9655
components:
- - pos: 3.5,-56.5
+ - pos: 4.5,-56.5
parent: 2
type: Transform
- uid: 9656
components:
- - pos: 4.5,-56.5
+ - pos: 5.5,-56.5
parent: 2
type: Transform
- uid: 9657
components:
- - pos: 5.5,-56.5
+ - pos: 6.5,-56.5
parent: 2
type: Transform
- uid: 9658
components:
- - pos: 6.5,-56.5
+ - pos: 6.5,-55.5
parent: 2
type: Transform
- uid: 9659
components:
- - pos: 6.5,-55.5
+ - pos: 6.5,-54.5
parent: 2
type: Transform
- uid: 9660
components:
- - pos: 6.5,-54.5
+ - pos: 6.5,-53.5
parent: 2
type: Transform
- uid: 9661
components:
- - pos: 6.5,-53.5
+ - pos: 34.5,23.5
parent: 2
type: Transform
- uid: 9662
components:
- - pos: 34.5,23.5
+ - pos: 35.5,23.5
parent: 2
type: Transform
- uid: 9663
components:
- - pos: 35.5,23.5
+ - pos: 35.5,22.5
parent: 2
type: Transform
- uid: 9664
components:
- - pos: 35.5,22.5
+ - pos: 36.5,22.5
parent: 2
type: Transform
- uid: 9665
components:
- - pos: 36.5,22.5
+ - pos: 37.5,22.5
parent: 2
type: Transform
- uid: 9666
components:
- - pos: 37.5,22.5
+ - pos: 37.5,20.5
parent: 2
type: Transform
- uid: 9667
components:
- - pos: 37.5,20.5
+ - pos: 37.5,19.5
parent: 2
type: Transform
- uid: 9668
components:
- - pos: 37.5,19.5
+ - pos: 37.5,18.5
parent: 2
type: Transform
- uid: 9669
components:
- - pos: 37.5,18.5
+ - pos: 38.5,18.5
parent: 2
type: Transform
- uid: 9670
components:
- - pos: 38.5,18.5
+ - pos: 38.5,17.5
parent: 2
type: Transform
- uid: 9671
components:
- - pos: 38.5,17.5
+ - pos: 29.5,-27.5
parent: 2
type: Transform
- uid: 9672
components:
- - pos: 29.5,-27.5
+ - pos: 50.5,29.5
parent: 2
type: Transform
- uid: 9673
components:
- - pos: 50.5,29.5
+ - pos: 50.5,28.5
parent: 2
type: Transform
- uid: 9674
components:
- - pos: 50.5,28.5
+ - pos: 49.5,28.5
parent: 2
type: Transform
- uid: 9675
components:
- - pos: 49.5,28.5
+ - pos: 48.5,28.5
parent: 2
type: Transform
- uid: 9676
components:
- - pos: 48.5,28.5
+ - pos: 48.5,29.5
parent: 2
type: Transform
- uid: 9677
components:
- - pos: 48.5,29.5
+ - pos: 48.5,30.5
parent: 2
type: Transform
- uid: 9678
components:
- - pos: 48.5,30.5
+ - pos: 48.5,31.5
parent: 2
type: Transform
- uid: 9679
components:
- - pos: 48.5,31.5
+ - pos: 49.5,31.5
parent: 2
type: Transform
- uid: 9680
components:
- - pos: 49.5,31.5
+ - pos: 50.5,31.5
parent: 2
type: Transform
- uid: 9681
components:
- - pos: 50.5,31.5
+ - pos: 51.5,31.5
parent: 2
type: Transform
- uid: 9682
components:
- - pos: 51.5,31.5
+ - pos: 52.5,31.5
parent: 2
type: Transform
- uid: 9683
components:
- - pos: 52.5,31.5
+ - pos: 52.5,32.5
parent: 2
type: Transform
- uid: 9684
components:
- - pos: 52.5,32.5
+ - pos: 52.5,33.5
parent: 2
type: Transform
- uid: 9685
components:
- - pos: 52.5,33.5
+ - pos: 52.5,34.5
parent: 2
type: Transform
- uid: 9686
components:
- - pos: 52.5,34.5
+ - pos: 52.5,35.5
parent: 2
type: Transform
- uid: 9687
components:
- - pos: 52.5,35.5
+ - pos: 52.5,36.5
parent: 2
type: Transform
- uid: 9688
components:
- - pos: 52.5,36.5
+ - pos: 52.5,37.5
parent: 2
type: Transform
- uid: 9689
components:
- - pos: 52.5,37.5
+ - pos: 52.5,38.5
parent: 2
type: Transform
- uid: 9690
components:
- - pos: 52.5,38.5
+ - pos: 52.5,39.5
parent: 2
type: Transform
- uid: 9691
components:
- - pos: 52.5,39.5
+ - pos: 52.5,40.5
parent: 2
type: Transform
- uid: 9692
components:
- - pos: 52.5,40.5
+ - pos: 52.5,41.5
parent: 2
type: Transform
- uid: 9693
components:
- - pos: 52.5,41.5
+ - pos: 52.5,42.5
parent: 2
type: Transform
- uid: 9694
components:
- - pos: 52.5,42.5
+ - pos: 53.5,42.5
parent: 2
type: Transform
- uid: 9695
components:
- - pos: 53.5,42.5
+ - pos: 54.5,42.5
parent: 2
type: Transform
- uid: 9696
components:
- - pos: 54.5,42.5
+ - pos: 55.5,42.5
parent: 2
type: Transform
- uid: 9697
components:
- - pos: 55.5,42.5
+ - pos: 56.5,42.5
parent: 2
type: Transform
- uid: 9698
components:
- - pos: 56.5,42.5
+ - pos: 57.5,42.5
parent: 2
type: Transform
- uid: 9699
components:
- - pos: 57.5,42.5
+ - pos: 58.5,42.5
parent: 2
type: Transform
- uid: 9700
components:
- - pos: 58.5,42.5
+ - pos: 58.5,43.5
parent: 2
type: Transform
- uid: 9701
components:
- - pos: 58.5,43.5
+ - pos: 59.5,43.5
parent: 2
type: Transform
- uid: 9702
components:
- - pos: 59.5,43.5
+ - pos: -19.5,26.5
parent: 2
type: Transform
- uid: 9703
components:
- - pos: -19.5,26.5
+ - pos: -19.5,27.5
parent: 2
type: Transform
- uid: 9704
components:
- - pos: -19.5,27.5
+ - pos: -19.5,28.5
parent: 2
type: Transform
- uid: 9705
components:
- - pos: -19.5,28.5
+ - pos: -19.5,29.5
parent: 2
type: Transform
- uid: 9706
components:
- - pos: -19.5,29.5
+ - pos: -18.5,29.5
parent: 2
type: Transform
- uid: 9707
components:
- - pos: -18.5,29.5
+ - pos: -17.5,29.5
parent: 2
type: Transform
- uid: 9708
components:
- - pos: -17.5,29.5
+ - pos: -16.5,29.5
parent: 2
type: Transform
- uid: 9709
components:
- - pos: -16.5,29.5
+ - pos: -15.5,29.5
parent: 2
type: Transform
- uid: 9710
components:
- - pos: -15.5,29.5
+ - pos: -15.5,30.5
parent: 2
type: Transform
- uid: 9711
components:
- - pos: -15.5,30.5
+ - pos: -15.5,31.5
parent: 2
type: Transform
- uid: 9712
components:
- - pos: -15.5,31.5
+ - pos: -15.5,32.5
parent: 2
type: Transform
- uid: 9713
components:
- - pos: -15.5,32.5
+ - pos: -15.5,33.5
parent: 2
type: Transform
- uid: 9714
components:
- - pos: -15.5,33.5
+ - pos: -15.5,34.5
parent: 2
type: Transform
- uid: 9715
components:
- - pos: -15.5,34.5
+ - pos: -15.5,35.5
parent: 2
type: Transform
- uid: 9716
components:
- - pos: -15.5,35.5
+ - pos: -15.5,36.5
parent: 2
type: Transform
- uid: 9717
components:
- - pos: -15.5,36.5
+ - pos: -15.5,37.5
parent: 2
type: Transform
- uid: 9718
components:
- - pos: -15.5,37.5
+ - pos: -15.5,38.5
parent: 2
type: Transform
- uid: 9719
components:
- - pos: -15.5,38.5
+ - pos: -15.5,39.5
parent: 2
type: Transform
- uid: 9720
components:
- - pos: -15.5,39.5
+ - pos: -15.5,40.5
parent: 2
type: Transform
- uid: 9721
components:
- - pos: -15.5,40.5
+ - pos: -15.5,41.5
parent: 2
type: Transform
- uid: 9722
components:
- - pos: -15.5,41.5
+ - pos: -15.5,42.5
parent: 2
type: Transform
- uid: 9723
components:
- - pos: -15.5,42.5
+ - pos: -10.5,62.5
parent: 2
type: Transform
- uid: 9724
components:
- - pos: -10.5,62.5
+ - pos: -10.5,61.5
parent: 2
type: Transform
- uid: 9725
components:
- - pos: -10.5,61.5
+ - pos: -10.5,60.5
parent: 2
type: Transform
- uid: 9726
components:
- - pos: -10.5,60.5
+ - pos: -10.5,59.5
parent: 2
type: Transform
- uid: 9727
components:
- - pos: -10.5,59.5
+ - pos: -9.5,59.5
parent: 2
type: Transform
- uid: 9728
components:
- - pos: -9.5,59.5
+ - pos: -8.5,59.5
parent: 2
type: Transform
- uid: 9729
components:
- - pos: -8.5,59.5
+ - pos: -8.5,60.5
parent: 2
type: Transform
- uid: 9730
components:
- - pos: -8.5,60.5
+ - pos: 40.5,-61.5
parent: 2
type: Transform
- uid: 9731
components:
- - pos: 40.5,-61.5
+ - pos: 40.5,-63.5
parent: 2
type: Transform
- uid: 9732
components:
- - pos: 40.5,-63.5
+ - pos: 48.5,-65.5
parent: 2
type: Transform
- uid: 9733
components:
- - pos: 48.5,-65.5
+ - pos: 51.5,-65.5
parent: 2
type: Transform
- uid: 9734
components:
- - pos: 51.5,-65.5
+ - pos: 50.5,-65.5
parent: 2
type: Transform
- uid: 9735
components:
- - pos: 50.5,-65.5
+ - pos: 49.5,-65.5
parent: 2
type: Transform
- uid: 9736
components:
- - pos: 49.5,-65.5
+ - pos: 40.5,-64.5
parent: 2
type: Transform
- uid: 9737
components:
- - pos: 40.5,-64.5
+ - pos: 41.5,-64.5
parent: 2
type: Transform
- uid: 9738
components:
- - pos: 41.5,-64.5
+ - pos: 52.5,-65.5
parent: 2
type: Transform
- uid: 9739
components:
- - pos: 52.5,-65.5
+ - pos: 53.5,-65.5
parent: 2
type: Transform
- uid: 9740
components:
- - pos: 53.5,-65.5
+ - pos: 54.5,-65.5
parent: 2
type: Transform
- uid: 9741
components:
- - pos: 54.5,-65.5
+ - pos: 55.5,-65.5
parent: 2
type: Transform
- uid: 9742
components:
- - pos: 55.5,-65.5
+ - pos: 55.5,-64.5
parent: 2
type: Transform
- uid: 9743
components:
- - pos: 55.5,-64.5
+ - pos: 55.5,-63.5
parent: 2
type: Transform
- uid: 9744
components:
- - pos: 55.5,-63.5
+ - pos: 55.5,-62.5
parent: 2
type: Transform
- uid: 9745
components:
- - pos: 55.5,-62.5
+ - pos: 68.5,-60.5
parent: 2
type: Transform
- uid: 9746
components:
- - pos: 68.5,-60.5
+ - pos: 68.5,-61.5
parent: 2
type: Transform
- uid: 9747
components:
- - pos: 68.5,-61.5
+ - pos: 69.5,-61.5
parent: 2
type: Transform
- uid: 9748
components:
- - pos: 69.5,-61.5
+ - pos: 70.5,-61.5
parent: 2
type: Transform
- uid: 9749
components:
- - pos: 70.5,-61.5
+ - pos: 71.5,-61.5
parent: 2
type: Transform
- uid: 9750
components:
- - pos: 71.5,-61.5
+ - pos: 71.5,-60.5
parent: 2
type: Transform
- uid: 9751
components:
- - pos: 71.5,-60.5
+ - pos: 71.5,-59.5
parent: 2
type: Transform
- uid: 9752
components:
- - pos: 71.5,-59.5
+ - pos: 71.5,-58.5
parent: 2
type: Transform
- uid: 9753
components:
- - pos: 71.5,-58.5
+ - pos: 71.5,-57.5
parent: 2
type: Transform
- uid: 9754
components:
- - pos: 71.5,-57.5
+ - pos: 72.5,-57.5
parent: 2
type: Transform
- uid: 9755
components:
- - pos: 72.5,-57.5
+ - pos: 73.5,-57.5
parent: 2
type: Transform
- uid: 9756
components:
- - pos: 73.5,-57.5
+ - pos: 74.5,-57.5
parent: 2
type: Transform
- uid: 9757
components:
- - pos: 74.5,-57.5
+ - pos: 74.5,-56.5
parent: 2
type: Transform
- uid: 9758
components:
- - pos: 74.5,-56.5
+ - pos: 74.5,-55.5
parent: 2
type: Transform
- uid: 9759
components:
- - pos: 74.5,-55.5
+ - pos: 74.5,-54.5
parent: 2
type: Transform
- uid: 9760
components:
- - pos: 74.5,-54.5
+ - pos: 75.5,-54.5
parent: 2
type: Transform
- uid: 9761
components:
- - pos: 75.5,-54.5
+ - pos: 75.5,-53.5
parent: 2
type: Transform
- uid: 9762
components:
- - pos: 75.5,-53.5
+ - pos: 75.5,-52.5
parent: 2
type: Transform
- uid: 9763
components:
- - pos: 75.5,-52.5
+ - pos: 75.5,-51.5
parent: 2
type: Transform
- uid: 9764
components:
- - pos: 75.5,-51.5
+ - pos: 75.5,-50.5
parent: 2
type: Transform
- uid: 9765
components:
- - pos: 75.5,-50.5
+ - pos: 75.5,-49.5
parent: 2
type: Transform
- uid: 9766
components:
- - pos: 75.5,-49.5
+ - pos: 75.5,-48.5
parent: 2
type: Transform
- uid: 9767
components:
- - pos: 75.5,-48.5
+ - pos: 75.5,-47.5
parent: 2
type: Transform
- uid: 9768
components:
- - pos: 75.5,-47.5
+ - pos: 75.5,-46.5
parent: 2
type: Transform
- uid: 9769
components:
- - pos: 75.5,-46.5
+ - pos: 75.5,-45.5
parent: 2
type: Transform
- uid: 9770
components:
- - pos: 75.5,-45.5
+ - pos: 74.5,-45.5
parent: 2
type: Transform
- uid: 9771
components:
- - pos: 74.5,-45.5
+ - pos: 73.5,-45.5
parent: 2
type: Transform
- uid: 9772
components:
- - pos: 73.5,-45.5
+ - pos: 72.5,-45.5
parent: 2
type: Transform
- uid: 9773
components:
- - pos: 72.5,-45.5
+ - pos: 71.5,-45.5
parent: 2
type: Transform
- uid: 9774
components:
- - pos: 71.5,-45.5
+ - pos: 71.5,-44.5
parent: 2
type: Transform
- uid: 9775
components:
- - pos: 71.5,-44.5
+ - pos: 71.5,-43.5
parent: 2
type: Transform
- uid: 9776
components:
- - pos: 71.5,-43.5
+ - pos: 71.5,-42.5
parent: 2
type: Transform
- uid: 9777
components:
- - pos: 71.5,-42.5
+ - pos: 4.5,-19.5
parent: 2
type: Transform
- uid: 9778
components:
- - pos: 4.5,-19.5
+ - pos: 7.5,-19.5
parent: 2
type: Transform
- uid: 9779
components:
- - pos: 7.5,-19.5
+ - pos: 5.5,-19.5
parent: 2
type: Transform
- uid: 9780
components:
- - pos: 5.5,-19.5
+ - pos: 7.5,-20.5
parent: 2
type: Transform
- uid: 9781
components:
- - pos: 7.5,-20.5
+ - pos: 8.5,-20.5
parent: 2
type: Transform
- uid: 9782
components:
- - pos: 8.5,-20.5
+ - pos: 9.5,-20.5
parent: 2
type: Transform
- uid: 9783
components:
- - pos: 9.5,-20.5
+ - pos: 10.5,-20.5
parent: 2
type: Transform
- uid: 9784
components:
- - pos: 10.5,-20.5
+ - pos: 11.5,-20.5
parent: 2
type: Transform
- uid: 9785
components:
- - pos: 11.5,-20.5
+ - pos: 11.5,-19.5
parent: 2
type: Transform
- uid: 9786
components:
- - pos: 11.5,-19.5
+ - pos: 11.5,-18.5
parent: 2
type: Transform
- uid: 9787
components:
- - pos: 11.5,-18.5
+ - pos: 6.5,-49.5
parent: 2
type: Transform
- uid: 9788
components:
- - pos: 6.5,-49.5
+ - pos: 7.5,-49.5
parent: 2
type: Transform
- uid: 9789
components:
- - pos: 7.5,-49.5
+ - pos: 9.5,-49.5
parent: 2
type: Transform
- uid: 9790
components:
- - pos: 9.5,-49.5
+ - pos: 8.5,-49.5
parent: 2
type: Transform
- uid: 9791
components:
- - pos: 8.5,-49.5
+ - pos: 31.5,35.5
parent: 2
type: Transform
- uid: 9792
components:
- - pos: 31.5,35.5
+ - pos: 30.5,35.5
parent: 2
type: Transform
- uid: 9793
components:
- - pos: 30.5,35.5
+ - pos: 29.5,35.5
parent: 2
type: Transform
- uid: 9794
components:
- - pos: 29.5,35.5
+ - pos: 28.5,35.5
parent: 2
type: Transform
- uid: 9795
components:
- - pos: 28.5,35.5
+ - pos: 27.5,35.5
parent: 2
type: Transform
- uid: 9796
components:
- - pos: 27.5,35.5
+ - pos: -10.5,17.5
parent: 2
type: Transform
- uid: 9797
components:
- - pos: -10.5,17.5
+ - pos: -8.5,15.5
parent: 2
type: Transform
- uid: 9798
components:
- - pos: -8.5,15.5
+ - pos: -9.5,15.5
parent: 2
type: Transform
- uid: 9799
components:
- - pos: -9.5,15.5
+ - pos: -7.5,15.5
parent: 2
type: Transform
- uid: 9800
components:
- - pos: -7.5,15.5
+ - pos: -65.5,-54.5
parent: 2
type: Transform
- uid: 9801
components:
- - pos: -65.5,-54.5
+ - pos: -66.5,-54.5
parent: 2
type: Transform
- uid: 9802
components:
- - pos: -66.5,-54.5
+ - pos: -66.5,-53.5
parent: 2
type: Transform
- uid: 9803
components:
- - pos: -66.5,-53.5
+ - pos: -67.5,-53.5
parent: 2
type: Transform
- uid: 9804
components:
- - pos: -67.5,-53.5
+ - pos: -68.5,-53.5
parent: 2
type: Transform
- uid: 9805
components:
- - pos: -68.5,-53.5
+ - pos: -69.5,-53.5
parent: 2
type: Transform
- uid: 9806
components:
- - pos: -69.5,-53.5
+ - pos: -70.5,-53.5
parent: 2
type: Transform
- uid: 9807
components:
- - pos: -70.5,-53.5
+ - pos: -71.5,-53.5
parent: 2
type: Transform
- uid: 9808
components:
- - pos: -71.5,-53.5
+ - pos: -72.5,-53.5
parent: 2
type: Transform
- uid: 9809
components:
- - pos: -72.5,-53.5
+ - pos: -73.5,-53.5
parent: 2
type: Transform
- uid: 9810
components:
- - pos: -73.5,-53.5
+ - pos: -73.5,-52.5
parent: 2
type: Transform
- uid: 9811
components:
- - pos: -73.5,-52.5
+ - pos: -74.5,-52.5
parent: 2
type: Transform
- uid: 9812
components:
- - pos: -74.5,-52.5
+ - pos: -74.5,-51.5
parent: 2
type: Transform
- uid: 9813
components:
- - pos: -74.5,-51.5
+ - pos: -74.5,-50.5
parent: 2
type: Transform
- uid: 9814
components:
- - pos: -74.5,-50.5
+ - pos: -67.5,-37.5
parent: 2
type: Transform
- uid: 9815
components:
- - pos: -67.5,-37.5
+ - pos: -69.5,-34.5
parent: 2
type: Transform
- uid: 9816
components:
- - pos: -69.5,-34.5
+ - pos: -68.5,-37.5
parent: 2
type: Transform
- uid: 9817
components:
- - pos: -68.5,-37.5
+ - pos: -66.5,-37.5
parent: 2
type: Transform
- uid: 9818
components:
- - pos: -66.5,-37.5
+ - pos: -66.5,-36.5
parent: 2
type: Transform
- uid: 9819
components:
- - pos: -66.5,-36.5
+ - pos: -72.5,-35.5
parent: 2
type: Transform
- uid: 9820
components:
- - pos: -72.5,-35.5
+ - pos: -71.5,-35.5
parent: 2
type: Transform
- uid: 9821
components:
- - pos: -71.5,-35.5
+ - pos: -70.5,-35.5
parent: 2
type: Transform
- uid: 9822
components:
- - pos: -70.5,-35.5
+ - pos: -70.5,-34.5
parent: 2
type: Transform
- uid: 9823
components:
- - pos: -70.5,-34.5
+ - pos: -69.5,-37.5
parent: 2
type: Transform
- uid: 9824
components:
- - pos: -69.5,-37.5
+ - pos: -70.5,-37.5
parent: 2
type: Transform
- uid: 9825
components:
- - pos: -70.5,-37.5
+ - pos: -72.5,-37.5
parent: 2
type: Transform
- uid: 9826
components:
- - pos: -72.5,-37.5
+ - pos: -72.5,-36.5
parent: 2
type: Transform
- uid: 9827
components:
- - pos: -72.5,-36.5
+ - pos: -71.5,-38.5
parent: 2
type: Transform
- uid: 9828
components:
- - pos: -71.5,-38.5
+ - pos: -70.5,-38.5
parent: 2
type: Transform
- uid: 9829
components:
- - pos: -70.5,-38.5
+ - pos: -66.5,-35.5
parent: 2
type: Transform
- uid: 9830
components:
- - pos: -66.5,-35.5
+ - pos: 46.5,1.5
parent: 2
type: Transform
- uid: 9831
components:
- - pos: 46.5,1.5
+ - pos: 46.5,2.5
parent: 2
type: Transform
- uid: 9832
components:
- - pos: 46.5,2.5
+ - pos: 46.5,3.5
parent: 2
type: Transform
- uid: 9833
components:
- - pos: 46.5,3.5
+ - pos: 46.5,4.5
parent: 2
type: Transform
- uid: 9834
components:
- - pos: 46.5,4.5
+ - pos: 47.5,4.5
parent: 2
type: Transform
- uid: 9835
components:
- - pos: 47.5,4.5
+ - pos: 47.5,5.5
parent: 2
type: Transform
- uid: 9836
components:
- - pos: 47.5,5.5
+ - pos: 47.5,6.5
parent: 2
type: Transform
- uid: 9837
components:
- - pos: 47.5,6.5
+ - pos: 48.5,6.5
parent: 2
type: Transform
- uid: 9838
components:
- - pos: 48.5,6.5
+ - pos: 48.5,7.5
parent: 2
type: Transform
- uid: 9839
components:
- - pos: 48.5,7.5
+ - pos: 46.5,6.5
parent: 2
type: Transform
- uid: 9840
components:
- - pos: 46.5,6.5
+ - pos: 46.5,7.5
parent: 2
type: Transform
- uid: 9841
components:
- - pos: 46.5,7.5
+ - pos: 46.5,8.5
parent: 2
type: Transform
- uid: 9842
components:
- - pos: 46.5,8.5
+ - pos: 46.5,9.5
parent: 2
type: Transform
- uid: 9843
components:
- - pos: 46.5,9.5
+ - pos: 45.5,9.5
parent: 2
type: Transform
- uid: 9844
components:
- - pos: 45.5,9.5
+ - pos: 21.5,-39.5
parent: 2
type: Transform
- uid: 9845
components:
- - pos: 21.5,-39.5
+ - pos: 4.5,-1.5
parent: 2
type: Transform
- uid: 9846
components:
- - pos: 4.5,-1.5
+ - pos: 3.5,-2.5
parent: 2
type: Transform
- uid: 9847
components:
- - pos: 3.5,-2.5
+ - pos: 11.5,-16.5
parent: 2
type: Transform
- uid: 9848
components:
- - pos: 11.5,-16.5
+ - pos: 9.5,-18.5
parent: 2
type: Transform
- uid: 9849
components:
- - pos: 9.5,-18.5
+ - pos: 9.5,-19.5
parent: 2
type: Transform
- uid: 9850
components:
- - pos: 9.5,-19.5
+ - pos: 2.5,-3.5
parent: 2
type: Transform
- uid: 9851
components:
- - pos: 2.5,-3.5
+ - pos: 1.5,-3.5
parent: 2
type: Transform
- uid: 9852
components:
- - pos: 1.5,-3.5
+ - pos: 3.5,-1.5
parent: 2
type: Transform
- uid: 9853
components:
- - pos: 3.5,-1.5
+ - pos: 10.5,-4.5
parent: 2
type: Transform
- uid: 9854
components:
- - pos: 10.5,-4.5
+ - pos: -0.5,-6.5
parent: 2
type: Transform
- uid: 9855
components:
- - pos: -0.5,-6.5
+ - pos: 10.5,-3.5
parent: 2
type: Transform
- uid: 9856
components:
- - pos: 10.5,-3.5
+ - pos: 1.5,-6.5
parent: 2
type: Transform
- uid: 9857
components:
- - pos: 1.5,-6.5
+ - pos: 1.5,-4.5
parent: 2
type: Transform
- uid: 9858
components:
- - pos: 1.5,-4.5
+ - pos: 0.5,-6.5
parent: 2
type: Transform
- uid: 9859
components:
- - pos: 0.5,-6.5
+ - pos: 23.5,-38.5
parent: 2
type: Transform
- uid: 9860
components:
- - pos: 23.5,-38.5
+ - pos: 23.5,-39.5
parent: 2
type: Transform
- uid: 9861
components:
- - pos: 23.5,-39.5
+ - pos: 23.5,-40.5
parent: 2
type: Transform
- uid: 9862
components:
- - pos: 23.5,-40.5
+ - pos: 24.5,-40.5
parent: 2
type: Transform
- uid: 9863
components:
- - pos: 24.5,-40.5
+ - pos: 25.5,-40.5
parent: 2
type: Transform
- uid: 9864
components:
- - pos: 25.5,-40.5
+ - pos: 26.5,-40.5
parent: 2
type: Transform
- uid: 9865
components:
- - pos: 26.5,-40.5
+ - pos: 27.5,-40.5
parent: 2
type: Transform
- uid: 9866
components:
- - pos: 27.5,-40.5
+ - pos: 10.5,-16.5
parent: 2
type: Transform
- uid: 9867
components:
- - pos: 10.5,-16.5
+ - pos: 4.5,-14.5
parent: 2
type: Transform
- uid: 9868
components:
- - pos: 4.5,-14.5
+ - pos: 4.5,-13.5
parent: 2
type: Transform
- uid: 9869
components:
- - pos: 4.5,-13.5
+ - pos: 9.5,-16.5
parent: 2
type: Transform
- uid: 9870
components:
- - pos: 9.5,-16.5
+ - pos: 4.5,-12.5
parent: 2
type: Transform
- uid: 9871
components:
- - pos: 4.5,-12.5
+ - pos: 5.5,-14.5
parent: 2
type: Transform
- uid: 9872
components:
- - pos: 5.5,-14.5
+ - pos: 4.5,-11.5
parent: 2
type: Transform
- uid: 9873
components:
- - pos: 4.5,-11.5
+ - pos: 8.5,-16.5
parent: 2
type: Transform
- uid: 9874
components:
- - pos: 8.5,-16.5
+ - pos: 12.5,-16.5
parent: 2
type: Transform
- uid: 9875
components:
- - pos: 12.5,-16.5
+ - pos: 5.5,-11.5
parent: 2
type: Transform
- uid: 9876
components:
- - pos: 5.5,-11.5
+ - pos: 22.5,-30.5
parent: 2
type: Transform
- uid: 9877
components:
- - pos: 22.5,-30.5
+ - pos: 22.5,-31.5
parent: 2
type: Transform
- uid: 9878
components:
- - pos: 22.5,-31.5
+ - pos: 23.5,-30.5
parent: 2
type: Transform
- uid: 9879
components:
- - pos: 23.5,-30.5
+ - pos: 24.5,-30.5
parent: 2
type: Transform
- uid: 9880
components:
- - pos: 24.5,-30.5
+ - pos: 24.5,-29.5
parent: 2
type: Transform
- uid: 9881
components:
- - pos: 24.5,-29.5
+ - pos: -56.5,-22.5
parent: 2
type: Transform
- uid: 9882
components:
- - pos: -56.5,-22.5
+ - pos: -56.5,-23.5
parent: 2
type: Transform
- uid: 9883
components:
- - pos: -56.5,-23.5
+ - pos: -64.5,-24.5
parent: 2
type: Transform
- uid: 9884
components:
- - pos: -64.5,-24.5
+ - pos: -64.5,-25.5
parent: 2
type: Transform
- uid: 9885
components:
- - pos: -64.5,-25.5
+ - pos: -65.5,-25.5
parent: 2
type: Transform
- uid: 9886
components:
- - pos: -65.5,-25.5
+ - pos: -66.5,-25.5
parent: 2
type: Transform
- uid: 9887
components:
- - pos: -66.5,-25.5
+ - pos: -66.5,-26.5
parent: 2
type: Transform
- uid: 9888
components:
- - pos: -66.5,-26.5
+ - pos: -63.5,-24.5
parent: 2
type: Transform
- uid: 9889
components:
- - pos: -63.5,-24.5
+ - pos: -62.5,-24.5
parent: 2
type: Transform
- uid: 9890
components:
- - pos: -62.5,-24.5
+ - pos: -61.5,-24.5
parent: 2
type: Transform
- uid: 9891
components:
- - pos: -61.5,-24.5
+ - pos: -60.5,-24.5
parent: 2
type: Transform
- uid: 9892
components:
- - pos: -60.5,-24.5
+ - pos: -59.5,-24.5
parent: 2
type: Transform
- uid: 9893
components:
- - pos: -59.5,-24.5
+ - pos: -58.5,-24.5
parent: 2
type: Transform
- uid: 9894
components:
- - pos: -58.5,-24.5
+ - pos: -57.5,-24.5
parent: 2
type: Transform
- uid: 9895
components:
- - pos: -57.5,-24.5
+ - pos: -56.5,-24.5
parent: 2
type: Transform
- uid: 9896
components:
- - pos: -56.5,-24.5
+ - pos: -55.5,-24.5
parent: 2
type: Transform
- uid: 9897
components:
- - pos: -55.5,-24.5
+ - pos: -54.5,-24.5
parent: 2
type: Transform
- uid: 9898
components:
- - pos: -54.5,-24.5
+ - pos: -54.5,-23.5
parent: 2
type: Transform
- uid: 9899
components:
- - pos: -54.5,-23.5
+ - pos: -54.5,-22.5
parent: 2
type: Transform
- uid: 9900
components:
- - pos: -54.5,-22.5
+ - pos: -54.5,-21.5
parent: 2
type: Transform
- uid: 9901
components:
- - pos: -54.5,-21.5
+ - pos: -54.5,-20.5
parent: 2
type: Transform
- uid: 9902
components:
- - pos: -54.5,-20.5
+ - pos: -54.5,-19.5
parent: 2
type: Transform
- uid: 9903
components:
- - pos: -54.5,-19.5
+ - pos: -54.5,-18.5
parent: 2
type: Transform
- uid: 9904
components:
- - pos: -54.5,-18.5
+ - pos: -55.5,-18.5
parent: 2
type: Transform
- uid: 9905
components:
- - pos: -55.5,-18.5
+ - pos: -56.5,-18.5
parent: 2
type: Transform
- uid: 9906
components:
- - pos: -56.5,-18.5
+ - pos: -57.5,-18.5
parent: 2
type: Transform
- uid: 9907
components:
- - pos: -57.5,-18.5
+ - pos: -58.5,-18.5
parent: 2
type: Transform
- uid: 9908
components:
- - pos: -58.5,-18.5
+ - pos: 13.5,-45.5
+ parent: 2
+ type: Transform
+ - uid: 9909
+ components:
+ - pos: 15.5,-45.5
+ parent: 2
+ type: Transform
+ - uid: 9910
+ components:
+ - pos: 13.5,-47.5
+ parent: 2
+ type: Transform
+ - uid: 9911
+ components:
+ - pos: 15.5,-46.5
+ parent: 2
+ type: Transform
+ - uid: 9912
+ components:
+ - pos: 12.5,-43.5
+ parent: 2
+ type: Transform
+ - uid: 9913
+ components:
+ - pos: 14.5,-46.5
+ parent: 2
+ type: Transform
+ - uid: 9914
+ components:
+ - pos: 13.5,-43.5
+ parent: 2
+ type: Transform
+ - uid: 9915
+ components:
+ - pos: 15.5,-43.5
+ parent: 2
+ type: Transform
+ - uid: 9916
+ components:
+ - pos: 15.5,-44.5
+ parent: 2
+ type: Transform
+ - uid: 9917
+ components:
+ - pos: 10.5,-43.5
+ parent: 2
+ type: Transform
+ - uid: 9918
+ components:
+ - pos: 11.5,-43.5
+ parent: 2
+ type: Transform
+ - uid: 9919
+ components:
+ - pos: 14.5,-43.5
parent: 2
type: Transform
- proto: CableMVStack
entities:
- - uid: 9909
+ - uid: 9920
components:
- pos: -39.41842,-18.34842
parent: 2
type: Transform
- - uid: 9910
+ - uid: 9921
components:
- pos: -36.572292,-8.416974
parent: 2
type: Transform
- proto: CableTerminal
entities:
- - uid: 9911
+ - uid: 9922
components:
- rot: 1.5707963267948966 rad
pos: -70.5,-35.5
parent: 2
type: Transform
- - uid: 9912
+ - uid: 9923
components:
- rot: 3.141592653589793 rad
pos: -2.5,-79.5
parent: 2
type: Transform
- - uid: 9913
+ - uid: 9924
components:
- pos: 48.5,-2.5
parent: 2
type: Transform
- - uid: 9914
+ - uid: 9925
components:
- pos: -48.5,-20.5
parent: 2
type: Transform
- - uid: 9915
+ - uid: 9926
components:
- pos: -46.5,-20.5
parent: 2
type: Transform
- - uid: 9916
+ - uid: 9927
components:
- pos: -44.5,-20.5
parent: 2
type: Transform
- - uid: 9917
+ - uid: 9928
components:
- rot: 1.5707963267948966 rad
pos: -51.5,-9.5
parent: 2
type: Transform
- - uid: 9918
+ - uid: 9929
components:
- rot: 3.141592653589793 rad
pos: -56.5,-21.5
parent: 2
type: Transform
- - uid: 9919
+ - uid: 9930
components:
- pos: -28.5,-36.5
parent: 2
type: Transform
- - uid: 9920
+ - uid: 9931
components:
- rot: -1.5707963267948966 rad
pos: 74.5,38.5
parent: 2
type: Transform
- - uid: 9921
+ - uid: 9932
components:
- rot: -1.5707963267948966 rad
pos: 74.5,34.5
parent: 2
type: Transform
- - uid: 9922
+ - uid: 9933
components:
- rot: 3.141592653589793 rad
pos: -0.5,-79.5
parent: 2
type: Transform
- - uid: 9923
+ - uid: 9934
components:
- pos: -74.5,-29.5
parent: 2
type: Transform
- - uid: 9924
+ - uid: 9935
components:
- pos: -72.5,-29.5
parent: 2
type: Transform
- - uid: 9925
+ - uid: 9936
components:
- pos: -70.5,-29.5
parent: 2
type: Transform
- - uid: 9926
+ - uid: 9937
components:
- rot: 3.141592653589793 rad
pos: 4.5,-21.5
parent: 2
type: Transform
- - uid: 9927
+ - uid: 9938
components:
- pos: -65.5,-52.5
parent: 2
type: Transform
- - uid: 9928
+ - uid: 9939
components:
- rot: 3.141592653589793 rad
pos: -56.5,-88.5
@@ -62417,13 +62477,13 @@ entities:
type: Transform
- proto: CannabisSeeds
entities:
- - uid: 9929
+ - uid: 9940
components:
- rot: 3.141592653589793 rad
pos: -55.50433,-67.64641
parent: 2
type: Transform
- - uid: 9930
+ - uid: 9941
components:
- rot: 1.5707963267948966 rad
pos: -55.707455,-67.38078
@@ -62431,542 +62491,542 @@ entities:
type: Transform
- proto: CapacitorStockPart
entities:
- - uid: 9931
+ - uid: 9942
components:
- pos: 38.490074,-35.297806
parent: 2
type: Transform
- - uid: 9932
+ - uid: 9943
components:
- pos: 38.302574,-35.672806
parent: 2
type: Transform
- - uid: 9933
+ - uid: 9944
components:
- pos: 38.521324,-35.53218
parent: 2
type: Transform
- - uid: 9934
+ - uid: 9945
components:
- pos: -50.47893,-28.448412
parent: 2
type: Transform
- proto: CaptainIDCard
entities:
- - uid: 9935
+ - uid: 9946
components:
- pos: 30.440884,-27.198164
parent: 2
type: Transform
- proto: CarbonDioxideCanister
entities:
- - uid: 9936
+ - uid: 9947
components:
- pos: -40.5,-38.5
parent: 2
type: Transform
- - uid: 9937
+ - uid: 9948
components:
- pos: -50.5,-50.5
parent: 2
type: Transform
- - uid: 9938
+ - uid: 9949
components:
- pos: -52.5,-62.5
parent: 2
type: Transform
- - uid: 9939
+ - uid: 9950
components:
- pos: -76.5,-45.5
parent: 2
type: Transform
- - uid: 9940
+ - uid: 9951
components:
- pos: 46.5,-54.5
parent: 2
type: Transform
- proto: Carpet
entities:
- - uid: 9941
+ - uid: 9952
components:
- rot: 3.141592653589793 rad
pos: 5.5,20.5
parent: 2
type: Transform
- - uid: 9942
+ - uid: 9953
components:
- rot: 3.141592653589793 rad
pos: 4.5,22.5
parent: 2
type: Transform
- - uid: 9943
+ - uid: 9954
components:
- rot: 3.141592653589793 rad
pos: 4.5,21.5
parent: 2
type: Transform
- - uid: 9944
+ - uid: 9955
components:
- rot: 3.141592653589793 rad
pos: 4.5,20.5
parent: 2
type: Transform
- - uid: 9945
+ - uid: 9956
components:
- rot: 3.141592653589793 rad
pos: 6.5,22.5
parent: 2
type: Transform
- - uid: 9946
+ - uid: 9957
components:
- rot: 3.141592653589793 rad
pos: 6.5,21.5
parent: 2
type: Transform
- - uid: 9947
+ - uid: 9958
components:
- rot: 3.141592653589793 rad
pos: 6.5,20.5
parent: 2
type: Transform
- - uid: 9948
+ - uid: 9959
components:
- rot: 3.141592653589793 rad
pos: 7.5,22.5
parent: 2
type: Transform
- - uid: 9949
+ - uid: 9960
components:
- rot: 3.141592653589793 rad
pos: 7.5,21.5
parent: 2
type: Transform
- - uid: 9950
+ - uid: 9961
components:
- rot: 3.141592653589793 rad
pos: 7.5,20.5
parent: 2
type: Transform
- - uid: 9951
+ - uid: 9962
components:
- rot: 3.141592653589793 rad
pos: 8.5,22.5
parent: 2
type: Transform
- - uid: 9952
+ - uid: 9963
components:
- rot: 3.141592653589793 rad
pos: 8.5,21.5
parent: 2
type: Transform
- - uid: 9953
+ - uid: 9964
components:
- rot: 3.141592653589793 rad
pos: 8.5,20.5
parent: 2
type: Transform
- - uid: 9954
+ - uid: 9965
components:
- pos: 39.5,-5.5
parent: 2
type: Transform
- - uid: 9955
+ - uid: 9966
components:
- pos: 43.5,-5.5
parent: 2
type: Transform
- - uid: 9956
+ - uid: 9967
components:
- pos: 44.5,-5.5
parent: 2
type: Transform
- - uid: 9957
+ - uid: 9968
components:
- pos: 42.5,-5.5
parent: 2
type: Transform
- - uid: 9958
+ - uid: 9969
components:
- pos: 42.5,-2.5
parent: 2
type: Transform
- - uid: 9959
+ - uid: 9970
components:
- pos: 42.5,-3.5
parent: 2
type: Transform
- - uid: 9960
+ - uid: 9971
components:
- pos: 42.5,-4.5
parent: 2
type: Transform
- - uid: 9961
+ - uid: 9972
components:
- pos: 43.5,-2.5
parent: 2
type: Transform
- - uid: 9962
+ - uid: 9973
components:
- pos: 43.5,-3.5
parent: 2
type: Transform
- - uid: 9963
+ - uid: 9974
components:
- pos: 43.5,-4.5
parent: 2
type: Transform
- - uid: 9964
+ - uid: 9975
components:
- pos: 44.5,-2.5
parent: 2
type: Transform
- - uid: 9965
+ - uid: 9976
components:
- pos: 44.5,-3.5
parent: 2
type: Transform
- - uid: 9966
+ - uid: 9977
components:
- pos: 44.5,-4.5
parent: 2
type: Transform
- - uid: 9967
+ - uid: 9978
components:
- pos: 37.5,-2.5
parent: 2
type: Transform
- - uid: 9968
+ - uid: 9979
components:
- pos: 38.5,-2.5
parent: 2
type: Transform
- - uid: 9969
+ - uid: 9980
components:
- pos: 39.5,-2.5
parent: 2
type: Transform
- - uid: 9970
+ - uid: 9981
components:
- pos: 37.5,-3.5
parent: 2
type: Transform
- - uid: 9971
+ - uid: 9982
components:
- pos: 37.5,-4.5
parent: 2
type: Transform
- - uid: 9972
+ - uid: 9983
components:
- pos: 38.5,-3.5
parent: 2
type: Transform
- - uid: 9973
+ - uid: 9984
components:
- pos: 38.5,-4.5
parent: 2
type: Transform
- - uid: 9974
+ - uid: 9985
components:
- pos: 39.5,-3.5
parent: 2
type: Transform
- - uid: 9975
+ - uid: 9986
components:
- pos: 39.5,-4.5
parent: 2
type: Transform
- - uid: 9976
+ - uid: 9987
components:
- pos: 38.5,-5.5
parent: 2
type: Transform
- - uid: 9977
+ - uid: 9988
components:
- pos: 37.5,-5.5
parent: 2
type: Transform
- - uid: 9978
+ - uid: 9989
components:
- rot: 3.141592653589793 rad
pos: 28.5,-50.5
parent: 2
type: Transform
- - uid: 9979
+ - uid: 9990
components:
- rot: 3.141592653589793 rad
pos: 28.5,-51.5
parent: 2
type: Transform
- - uid: 9980
+ - uid: 9991
components:
- rot: 3.141592653589793 rad
pos: 29.5,-50.5
parent: 2
type: Transform
- - uid: 9981
+ - uid: 9992
components:
- rot: 3.141592653589793 rad
pos: 29.5,-51.5
parent: 2
type: Transform
- - uid: 9982
+ - uid: 9993
components:
- rot: 3.141592653589793 rad
pos: 30.5,-50.5
parent: 2
type: Transform
- - uid: 9983
+ - uid: 9994
components:
- rot: 3.141592653589793 rad
pos: 30.5,-51.5
parent: 2
type: Transform
- - uid: 9984
+ - uid: 9995
components:
- rot: -1.5707963267948966 rad
pos: -38.5,15.5
parent: 2
type: Transform
- - uid: 9985
+ - uid: 9996
components:
- rot: -1.5707963267948966 rad
pos: -38.5,14.5
parent: 2
type: Transform
- - uid: 9986
+ - uid: 9997
components:
- rot: -1.5707963267948966 rad
pos: -38.5,13.5
parent: 2
type: Transform
- - uid: 9987
+ - uid: 9998
components:
- rot: -1.5707963267948966 rad
pos: -38.5,12.5
parent: 2
type: Transform
- - uid: 9988
+ - uid: 9999
components:
- rot: -1.5707963267948966 rad
pos: -38.5,11.5
parent: 2
type: Transform
- - uid: 9989
+ - uid: 10000
components:
- rot: -1.5707963267948966 rad
pos: -38.5,10.5
parent: 2
type: Transform
- - uid: 9990
+ - uid: 10001
components:
- rot: -1.5707963267948966 rad
pos: -38.5,9.5
parent: 2
type: Transform
- - uid: 9991
+ - uid: 10002
components:
- rot: -1.5707963267948966 rad
pos: -38.5,8.5
parent: 2
type: Transform
- - uid: 9992
+ - uid: 10003
components:
- rot: -1.5707963267948966 rad
pos: -37.5,15.5
parent: 2
type: Transform
- - uid: 9993
+ - uid: 10004
components:
- rot: -1.5707963267948966 rad
pos: -37.5,14.5
parent: 2
type: Transform
- - uid: 9994
+ - uid: 10005
components:
- rot: -1.5707963267948966 rad
pos: -37.5,13.5
parent: 2
type: Transform
- - uid: 9995
+ - uid: 10006
components:
- rot: -1.5707963267948966 rad
pos: -37.5,12.5
parent: 2
type: Transform
- - uid: 9996
+ - uid: 10007
components:
- rot: -1.5707963267948966 rad
pos: -37.5,11.5
parent: 2
type: Transform
- - uid: 9997
+ - uid: 10008
components:
- rot: -1.5707963267948966 rad
pos: -37.5,10.5
parent: 2
type: Transform
- - uid: 9998
+ - uid: 10009
components:
- rot: -1.5707963267948966 rad
pos: -37.5,9.5
parent: 2
type: Transform
- - uid: 9999
+ - uid: 10010
components:
- rot: -1.5707963267948966 rad
pos: -37.5,8.5
parent: 2
type: Transform
- - uid: 10000
+ - uid: 10011
components:
- rot: -1.5707963267948966 rad
pos: -34.5,15.5
parent: 2
type: Transform
- - uid: 10001
+ - uid: 10012
components:
- rot: -1.5707963267948966 rad
pos: -34.5,14.5
parent: 2
type: Transform
- - uid: 10002
+ - uid: 10013
components:
- rot: -1.5707963267948966 rad
pos: -34.5,13.5
parent: 2
type: Transform
- - uid: 10003
+ - uid: 10014
components:
- rot: -1.5707963267948966 rad
pos: -33.5,15.5
parent: 2
type: Transform
- - uid: 10004
+ - uid: 10015
components:
- rot: -1.5707963267948966 rad
pos: -33.5,14.5
parent: 2
type: Transform
- - uid: 10005
+ - uid: 10016
components:
- rot: -1.5707963267948966 rad
pos: -33.5,13.5
parent: 2
type: Transform
- - uid: 10006
+ - uid: 10017
components:
- pos: -30.5,14.5
parent: 2
type: Transform
- - uid: 10007
+ - uid: 10018
components:
- pos: -30.5,13.5
parent: 2
type: Transform
- - uid: 10008
+ - uid: 10019
components:
- pos: -30.5,12.5
parent: 2
type: Transform
- - uid: 10009
+ - uid: 10020
components:
- pos: 64.5,-0.5
parent: 2
type: Transform
- - uid: 10010
+ - uid: 10021
components:
- pos: 64.5,-1.5
parent: 2
type: Transform
- - uid: 10011
+ - uid: 10022
components:
- pos: 65.5,-0.5
parent: 2
type: Transform
- - uid: 10012
+ - uid: 10023
components:
- pos: 65.5,-1.5
parent: 2
type: Transform
- - uid: 10013
+ - uid: 10024
components:
- rot: 3.141592653589793 rad
pos: 61.5,-63.5
parent: 2
type: Transform
- - uid: 10014
+ - uid: 10025
components:
- rot: 3.141592653589793 rad
pos: 61.5,-64.5
parent: 2
type: Transform
- - uid: 10015
+ - uid: 10026
components:
- rot: 3.141592653589793 rad
pos: 61.5,-65.5
parent: 2
type: Transform
- - uid: 10016
+ - uid: 10027
components:
- rot: 3.141592653589793 rad
pos: 61.5,-66.5
parent: 2
type: Transform
- - uid: 10017
+ - uid: 10028
components:
- rot: 3.141592653589793 rad
pos: 61.5,-67.5
parent: 2
type: Transform
- - uid: 10018
+ - uid: 10029
components:
- rot: 3.141592653589793 rad
pos: 61.5,-68.5
parent: 2
type: Transform
- - uid: 10019
+ - uid: 10030
components:
- rot: 1.5707963267948966 rad
pos: 1.5,21.5
parent: 2
type: Transform
- - uid: 10020
+ - uid: 10031
components:
- rot: 1.5707963267948966 rad
pos: 1.5,20.5
parent: 2
type: Transform
- - uid: 10021
+ - uid: 10032
components:
- rot: 1.5707963267948966 rad
pos: 1.5,19.5
parent: 2
type: Transform
- - uid: 10022
+ - uid: 10033
components:
- rot: 1.5707963267948966 rad
pos: 2.5,21.5
parent: 2
type: Transform
- - uid: 10023
+ - uid: 10034
components:
- rot: 1.5707963267948966 rad
pos: 2.5,20.5
parent: 2
type: Transform
- - uid: 10024
+ - uid: 10035
components:
- rot: 1.5707963267948966 rad
pos: 2.5,19.5
parent: 2
type: Transform
- - uid: 10025
+ - uid: 10036
components:
- rot: 3.141592653589793 rad
pos: 5.5,21.5
parent: 2
type: Transform
- - uid: 10026
+ - uid: 10037
components:
- rot: 3.141592653589793 rad
pos: 5.5,22.5
@@ -62974,91 +63034,91 @@ entities:
type: Transform
- proto: CarpetBlack
entities:
- - uid: 10027
+ - uid: 10038
components:
- pos: -7.5,-36.5
parent: 2
type: Transform
- - uid: 10028
+ - uid: 10039
components:
- pos: -7.5,-37.5
parent: 2
type: Transform
- - uid: 10029
+ - uid: 10040
components:
- pos: -7.5,-38.5
parent: 2
type: Transform
- - uid: 10030
+ - uid: 10041
components:
- pos: -11.5,-39.5
parent: 2
type: Transform
- - uid: 10031
+ - uid: 10042
components:
- pos: -10.5,-39.5
parent: 2
type: Transform
- - uid: 10032
+ - uid: 10043
components:
- pos: -9.5,-39.5
parent: 2
type: Transform
- - uid: 10033
+ - uid: 10044
components:
- rot: 3.141592653589793 rad
pos: 31.5,-53.5
parent: 2
type: Transform
- - uid: 10034
+ - uid: 10045
components:
- rot: 3.141592653589793 rad
pos: 31.5,-54.5
parent: 2
type: Transform
- - uid: 10035
+ - uid: 10046
components:
- rot: 3.141592653589793 rad
pos: 31.5,-55.5
parent: 2
type: Transform
- - uid: 10036
+ - uid: 10047
components:
- rot: 3.141592653589793 rad
pos: 31.5,-56.5
parent: 2
type: Transform
- - uid: 10037
+ - uid: 10048
components:
- rot: 3.141592653589793 rad
pos: -12.5,32.5
parent: 2
type: Transform
- - uid: 10038
+ - uid: 10049
components:
- rot: 3.141592653589793 rad
pos: -12.5,31.5
parent: 2
type: Transform
- - uid: 10039
+ - uid: 10050
components:
- rot: 3.141592653589793 rad
pos: -11.5,32.5
parent: 2
type: Transform
- - uid: 10040
+ - uid: 10051
components:
- rot: 3.141592653589793 rad
pos: -11.5,31.5
parent: 2
type: Transform
- - uid: 10041
+ - uid: 10052
components:
- rot: 3.141592653589793 rad
pos: -10.5,32.5
parent: 2
type: Transform
- - uid: 10042
+ - uid: 10053
components:
- rot: 3.141592653589793 rad
pos: -10.5,31.5
@@ -63066,261 +63126,261 @@ entities:
type: Transform
- proto: CarpetBlue
entities:
- - uid: 10043
+ - uid: 10054
components:
- rot: -1.5707963267948966 rad
pos: 2.5,-7.5
parent: 2
type: Transform
- - uid: 10044
+ - uid: 10055
components:
- rot: -1.5707963267948966 rad
pos: 9.5,5.5
parent: 2
type: Transform
- - uid: 10045
+ - uid: 10056
components:
- pos: -18.5,-56.5
parent: 2
type: Transform
- - uid: 10046
+ - uid: 10057
components:
- pos: -18.5,-55.5
parent: 2
type: Transform
- - uid: 10047
+ - uid: 10058
components:
- pos: -20.5,-55.5
parent: 2
type: Transform
- - uid: 10048
+ - uid: 10059
components:
- pos: -20.5,-54.5
parent: 2
type: Transform
- - uid: 10049
+ - uid: 10060
components:
- pos: -19.5,-54.5
parent: 2
type: Transform
- - uid: 10050
+ - uid: 10061
components:
- pos: -17.5,-56.5
parent: 2
type: Transform
- - uid: 10051
+ - uid: 10062
components:
- pos: -20.5,-56.5
parent: 2
type: Transform
- - uid: 10052
+ - uid: 10063
components:
- pos: -17.5,-54.5
parent: 2
type: Transform
- - uid: 10053
+ - uid: 10064
components:
- pos: -17.5,-55.5
parent: 2
type: Transform
- - uid: 10054
+ - uid: 10065
components:
- pos: -19.5,-55.5
parent: 2
type: Transform
- - uid: 10055
+ - uid: 10066
components:
- pos: -19.5,-56.5
parent: 2
type: Transform
- - uid: 10056
+ - uid: 10067
components:
- pos: -18.5,-54.5
parent: 2
type: Transform
- - uid: 10057
+ - uid: 10068
components:
- rot: -1.5707963267948966 rad
pos: 8.5,5.5
parent: 2
type: Transform
- - uid: 10058
+ - uid: 10069
components:
- rot: 3.141592653589793 rad
pos: 17.5,13.5
parent: 2
type: Transform
- - uid: 10059
+ - uid: 10070
components:
- rot: 3.141592653589793 rad
pos: 17.5,12.5
parent: 2
type: Transform
- - uid: 10060
+ - uid: 10071
components:
- rot: 3.141592653589793 rad
pos: 17.5,11.5
parent: 2
type: Transform
- - uid: 10061
+ - uid: 10072
components:
- pos: 17.5,9.5
parent: 2
type: Transform
- - uid: 10062
+ - uid: 10073
components:
- pos: 17.5,14.5
parent: 2
type: Transform
- - uid: 10063
+ - uid: 10074
components:
- pos: 17.5,10.5
parent: 2
type: Transform
- - uid: 10064
+ - uid: 10075
components:
- pos: -22.5,-55.5
parent: 2
type: Transform
- - uid: 10065
+ - uid: 10076
components:
- pos: -21.5,-55.5
parent: 2
type: Transform
- - uid: 10066
+ - uid: 10077
components:
- pos: -21.5,-54.5
parent: 2
type: Transform
- - uid: 10067
+ - uid: 10078
components:
- pos: -22.5,-54.5
parent: 2
type: Transform
- - uid: 10068
+ - uid: 10079
components:
- pos: -1.5,-6.5
parent: 2
type: Transform
- - uid: 10069
+ - uid: 10080
components:
- rot: -1.5707963267948966 rad
pos: 3.5,-4.5
parent: 2
type: Transform
- - uid: 10070
+ - uid: 10081
components:
- rot: -1.5707963267948966 rad
pos: 4.5,-5.5
parent: 2
type: Transform
- - uid: 10071
+ - uid: 10082
components:
- rot: -1.5707963267948966 rad
pos: 5.5,-4.5
parent: 2
type: Transform
- - uid: 10072
+ - uid: 10083
components:
- rot: -1.5707963267948966 rad
pos: 2.5,-6.5
parent: 2
type: Transform
- - uid: 10073
+ - uid: 10084
components:
- rot: -1.5707963267948966 rad
pos: 4.5,-6.5
parent: 2
type: Transform
- - uid: 10074
+ - uid: 10085
components:
- pos: -1.5,-5.5
parent: 2
type: Transform
- - uid: 10075
+ - uid: 10086
components:
- rot: -1.5707963267948966 rad
pos: 3.5,-7.5
parent: 2
type: Transform
- - uid: 10076
+ - uid: 10087
components:
- pos: -0.5,-6.5
parent: 2
type: Transform
- - uid: 10077
+ - uid: 10088
components:
- rot: -1.5707963267948966 rad
pos: 3.5,-6.5
parent: 2
type: Transform
- - uid: 10078
+ - uid: 10089
components:
- rot: -1.5707963267948966 rad
pos: 4.5,-7.5
parent: 2
type: Transform
- - uid: 10079
+ - uid: 10090
components:
- pos: -0.5,-5.5
parent: 2
type: Transform
- - uid: 10080
+ - uid: 10091
components:
- rot: -1.5707963267948966 rad
pos: 5.5,-6.5
parent: 2
type: Transform
- - uid: 10081
+ - uid: 10092
components:
- rot: -1.5707963267948966 rad
pos: 5.5,-7.5
parent: 2
type: Transform
- - uid: 10082
+ - uid: 10093
components:
- rot: 1.5707963267948966 rad
pos: 28.5,-36.5
parent: 2
type: Transform
- - uid: 10083
+ - uid: 10094
components:
- pos: 3.5,-5.5
parent: 2
type: Transform
- - uid: 10084
+ - uid: 10095
components:
- pos: 2.5,-5.5
parent: 2
type: Transform
- - uid: 10085
+ - uid: 10096
components:
- pos: 2.5,-4.5
parent: 2
type: Transform
- - uid: 10086
+ - uid: 10097
components:
- pos: 4.5,-4.5
parent: 2
type: Transform
- - uid: 10087
+ - uid: 10098
components:
- pos: 5.5,-5.5
parent: 2
type: Transform
- - uid: 10088
+ - uid: 10099
components:
- rot: 1.5707963267948966 rad
pos: 28.5,-35.5
parent: 2
type: Transform
- - uid: 10089
+ - uid: 10100
components:
- rot: 1.5707963267948966 rad
pos: 28.5,-37.5
parent: 2
type: Transform
- - uid: 10090
+ - uid: 10101
components:
- rot: 3.141592653589793 rad
pos: 28.5,-34.5
@@ -63328,208 +63388,208 @@ entities:
type: Transform
- proto: CarpetChapel
entities:
- - uid: 10091
+ - uid: 10102
components:
- rot: -1.5707963267948966 rad
pos: -36.5,10.5
parent: 2
type: Transform
- - uid: 10092
+ - uid: 10103
components:
- rot: 3.141592653589793 rad
pos: -35.5,10.5
parent: 2
type: Transform
- - uid: 10093
+ - uid: 10104
components:
- rot: 1.5707963267948966 rad
pos: -35.5,9.5
parent: 2
type: Transform
- - uid: 10094
+ - uid: 10105
components:
- pos: -36.5,9.5
parent: 2
type: Transform
- - uid: 10095
+ - uid: 10106
components:
- pos: -36.5,11.5
parent: 2
type: Transform
- - uid: 10096
+ - uid: 10107
components:
- rot: 1.5707963267948966 rad
pos: -35.5,11.5
parent: 2
type: Transform
- - uid: 10097
+ - uid: 10108
components:
- rot: -1.5707963267948966 rad
pos: -36.5,12.5
parent: 2
type: Transform
- - uid: 10098
+ - uid: 10109
components:
- rot: 3.141592653589793 rad
pos: -35.5,12.5
parent: 2
type: Transform
- - uid: 10099
+ - uid: 10110
components:
- rot: 3.141592653589793 rad
pos: -39.5,12.5
parent: 2
type: Transform
- - uid: 10100
+ - uid: 10111
components:
- rot: 1.5707963267948966 rad
pos: -39.5,11.5
parent: 2
type: Transform
- - uid: 10101
+ - uid: 10112
components:
- pos: -40.5,11.5
parent: 2
type: Transform
- - uid: 10102
+ - uid: 10113
components:
- rot: -1.5707963267948966 rad
pos: -40.5,10.5
parent: 2
type: Transform
- - uid: 10103
+ - uid: 10114
components:
- rot: 3.141592653589793 rad
pos: -39.5,10.5
parent: 2
type: Transform
- - uid: 10104
+ - uid: 10115
components:
- pos: -40.5,9.5
parent: 2
type: Transform
- - uid: 10105
+ - uid: 10116
components:
- rot: 1.5707963267948966 rad
pos: -39.5,9.5
parent: 2
type: Transform
- - uid: 10106
+ - uid: 10117
components:
- rot: -1.5707963267948966 rad
pos: -40.5,12.5
parent: 2
type: Transform
- - uid: 10107
+ - uid: 10118
components:
- rot: -1.5707963267948966 rad
pos: 59.5,-65.5
parent: 2
type: Transform
- - uid: 10108
+ - uid: 10119
components:
- rot: 3.141592653589793 rad
pos: 60.5,-65.5
parent: 2
type: Transform
- - uid: 10109
+ - uid: 10120
components:
- pos: 59.5,-66.5
parent: 2
type: Transform
- - uid: 10110
+ - uid: 10121
components:
- rot: -1.5707963267948966 rad
pos: 62.5,-65.5
parent: 2
type: Transform
- - uid: 10111
+ - uid: 10122
components:
- pos: 62.5,-66.5
parent: 2
type: Transform
- - uid: 10112
+ - uid: 10123
components:
- rot: 3.141592653589793 rad
pos: 63.5,-65.5
parent: 2
type: Transform
- - uid: 10113
+ - uid: 10124
components:
- rot: 1.5707963267948966 rad
pos: 63.5,-66.5
parent: 2
type: Transform
- - uid: 10114
+ - uid: 10125
components:
- rot: -1.5707963267948966 rad
pos: 62.5,-63.5
parent: 2
type: Transform
- - uid: 10115
+ - uid: 10126
components:
- rot: 3.141592653589793 rad
pos: 63.5,-63.5
parent: 2
type: Transform
- - uid: 10116
+ - uid: 10127
components:
- rot: 1.5707963267948966 rad
pos: 63.5,-64.5
parent: 2
type: Transform
- - uid: 10117
+ - uid: 10128
components:
- pos: 62.5,-64.5
parent: 2
type: Transform
- - uid: 10118
+ - uid: 10129
components:
- rot: 3.141592653589793 rad
pos: 60.5,-63.5
parent: 2
type: Transform
- - uid: 10119
+ - uid: 10130
components:
- rot: -1.5707963267948966 rad
pos: 59.5,-63.5
parent: 2
type: Transform
- - uid: 10120
+ - uid: 10131
components:
- pos: 59.5,-64.5
parent: 2
type: Transform
- - uid: 10121
+ - uid: 10132
components:
- rot: 1.5707963267948966 rad
pos: 60.5,-64.5
parent: 2
type: Transform
- - uid: 10122
+ - uid: 10133
components:
- pos: 60.5,-68.5
parent: 2
type: Transform
- - uid: 10123
+ - uid: 10134
components:
- rot: 1.5707963267948966 rad
pos: 62.5,-68.5
parent: 2
type: Transform
- - uid: 10124
+ - uid: 10135
components:
- rot: -1.5707963267948966 rad
pos: 60.5,-67.5
parent: 2
type: Transform
- - uid: 10125
+ - uid: 10136
components:
- rot: 3.141592653589793 rad
pos: 62.5,-67.5
parent: 2
type: Transform
- - uid: 10126
+ - uid: 10137
components:
- rot: 1.5707963267948966 rad
pos: 60.5,-66.5
@@ -63537,540 +63597,540 @@ entities:
type: Transform
- proto: CarpetGreen
entities:
- - uid: 10127
+ - uid: 10138
components:
- pos: 22.5,-34.5
parent: 2
type: Transform
- - uid: 10128
+ - uid: 10139
components:
- rot: -1.5707963267948966 rad
pos: 13.5,-10.5
parent: 2
type: Transform
- - uid: 10129
+ - uid: 10140
components:
- rot: -1.5707963267948966 rad
pos: 9.5,-10.5
parent: 2
type: Transform
- - uid: 10130
+ - uid: 10141
components:
- rot: -1.5707963267948966 rad
pos: 10.5,-10.5
parent: 2
type: Transform
- - uid: 10131
+ - uid: 10142
components:
- rot: -1.5707963267948966 rad
pos: 9.5,-12.5
parent: 2
type: Transform
- - uid: 10132
+ - uid: 10143
components:
- rot: -1.5707963267948966 rad
pos: 10.5,-12.5
parent: 2
type: Transform
- - uid: 10133
+ - uid: 10144
components:
- rot: -1.5707963267948966 rad
pos: 10.5,-11.5
parent: 2
type: Transform
- - uid: 10134
+ - uid: 10145
components:
- rot: -1.5707963267948966 rad
pos: 11.5,-11.5
parent: 2
type: Transform
- - uid: 10135
+ - uid: 10146
components:
- rot: -1.5707963267948966 rad
pos: 12.5,-11.5
parent: 2
type: Transform
- - uid: 10136
+ - uid: 10147
components:
- rot: -1.5707963267948966 rad
pos: 13.5,-11.5
parent: 2
type: Transform
- - uid: 10137
+ - uid: 10148
components:
- rot: -1.5707963267948966 rad
pos: 11.5,-10.5
parent: 2
type: Transform
- - uid: 10138
+ - uid: 10149
components:
- rot: -1.5707963267948966 rad
pos: 12.5,-10.5
parent: 2
type: Transform
- - uid: 10139
+ - uid: 10150
components:
- rot: -1.5707963267948966 rad
pos: 11.5,-12.5
parent: 2
type: Transform
- - uid: 10140
+ - uid: 10151
components:
- pos: 20.5,13.5
parent: 2
type: Transform
- - uid: 10141
+ - uid: 10152
components:
- pos: 14.5,9.5
parent: 2
type: Transform
- - uid: 10142
+ - uid: 10153
components:
- pos: 9.5,-11.5
parent: 2
type: Transform
- - uid: 10143
+ - uid: 10154
components:
- rot: -1.5707963267948966 rad
pos: 12.5,-12.5
parent: 2
type: Transform
- - uid: 10144
+ - uid: 10155
components:
- rot: -1.5707963267948966 rad
pos: 13.5,-12.5
parent: 2
type: Transform
- - uid: 10145
+ - uid: 10156
components:
- rot: 1.5707963267948966 rad
pos: 8.5,8.5
parent: 2
type: Transform
- - uid: 10146
+ - uid: 10157
components:
- rot: 3.141592653589793 rad
pos: 14.5,13.5
parent: 2
type: Transform
- - uid: 10147
+ - uid: 10158
components:
- rot: 3.141592653589793 rad
pos: 14.5,12.5
parent: 2
type: Transform
- - uid: 10148
+ - uid: 10159
components:
- rot: 3.141592653589793 rad
pos: 14.5,11.5
parent: 2
type: Transform
- - uid: 10149
+ - uid: 10160
components:
- rot: 3.141592653589793 rad
pos: 14.5,10.5
parent: 2
type: Transform
- - uid: 10150
+ - uid: 10161
components:
- rot: 1.5707963267948966 rad
pos: 8.5,9.5
parent: 2
type: Transform
- - uid: 10151
+ - uid: 10162
components:
- pos: -5.5,-49.5
parent: 2
type: Transform
- - uid: 10152
+ - uid: 10163
components:
- pos: -4.5,-49.5
parent: 2
type: Transform
- - uid: 10153
+ - uid: 10164
components:
- pos: -3.5,-49.5
parent: 2
type: Transform
- - uid: 10154
+ - uid: 10165
components:
- pos: -3.5,-50.5
parent: 2
type: Transform
- - uid: 10155
+ - uid: 10166
components:
- pos: -4.5,-50.5
parent: 2
type: Transform
- - uid: 10156
+ - uid: 10167
components:
- pos: -5.5,-50.5
parent: 2
type: Transform
- - uid: 10157
+ - uid: 10168
components:
- pos: 21.5,13.5
parent: 2
type: Transform
- - uid: 10158
+ - uid: 10169
components:
- pos: 21.5,10.5
parent: 2
type: Transform
- - uid: 10159
+ - uid: 10170
components:
- pos: 20.5,10.5
parent: 2
type: Transform
- - uid: 10160
+ - uid: 10171
components:
- pos: 20.5,12.5
parent: 2
type: Transform
- - uid: 10161
+ - uid: 10172
components:
- pos: 20.5,11.5
parent: 2
type: Transform
- - uid: 10162
+ - uid: 10173
components:
- pos: 21.5,11.5
parent: 2
type: Transform
- - uid: 10163
+ - uid: 10174
components:
- pos: 21.5,12.5
parent: 2
type: Transform
- - uid: 10164
+ - uid: 10175
components:
- pos: -22.5,45.5
parent: 2
type: Transform
- - uid: 10165
+ - uid: 10176
components:
- pos: -22.5,44.5
parent: 2
type: Transform
- - uid: 10166
+ - uid: 10177
components:
- pos: -22.5,43.5
parent: 2
type: Transform
- - uid: 10167
+ - uid: 10178
components:
- pos: -22.5,42.5
parent: 2
type: Transform
- - uid: 10168
+ - uid: 10179
components:
- pos: -21.5,45.5
parent: 2
type: Transform
- - uid: 10169
+ - uid: 10180
components:
- pos: -21.5,44.5
parent: 2
type: Transform
- - uid: 10170
+ - uid: 10181
components:
- rot: 3.141592653589793 rad
pos: 32.5,-50.5
parent: 2
type: Transform
- - uid: 10171
+ - uid: 10182
components:
- rot: 3.141592653589793 rad
pos: 32.5,-51.5
parent: 2
type: Transform
- - uid: 10172
+ - uid: 10183
components:
- rot: 3.141592653589793 rad
pos: 33.5,-50.5
parent: 2
type: Transform
- - uid: 10173
+ - uid: 10184
components:
- rot: 3.141592653589793 rad
pos: 33.5,-51.5
parent: 2
type: Transform
- - uid: 10174
+ - uid: 10185
components:
- rot: 3.141592653589793 rad
pos: 34.5,-50.5
parent: 2
type: Transform
- - uid: 10175
+ - uid: 10186
components:
- rot: 3.141592653589793 rad
pos: 34.5,-51.5
parent: 2
type: Transform
- - uid: 10176
+ - uid: 10187
components:
- pos: -21.5,42.5
parent: 2
type: Transform
- - uid: 10177
+ - uid: 10188
components:
- pos: -21.5,43.5
parent: 2
type: Transform
- - uid: 10178
+ - uid: 10189
components:
- rot: 1.5707963267948966 rad
pos: -22.5,30.5
parent: 2
type: Transform
- - uid: 10179
+ - uid: 10190
components:
- rot: 1.5707963267948966 rad
pos: -23.5,30.5
parent: 2
type: Transform
- - uid: 10180
+ - uid: 10191
components:
- pos: -23.5,31.5
parent: 2
type: Transform
- - uid: 10181
+ - uid: 10192
components:
- pos: -23.5,29.5
parent: 2
type: Transform
- - uid: 10182
+ - uid: 10193
components:
- pos: -22.5,31.5
parent: 2
type: Transform
- - uid: 10183
+ - uid: 10194
components:
- pos: -22.5,29.5
parent: 2
type: Transform
- - uid: 10184
+ - uid: 10195
components:
- rot: 1.5707963267948966 rad
pos: -19.5,33.5
parent: 2
type: Transform
- - uid: 10185
+ - uid: 10196
components:
- rot: 1.5707963267948966 rad
pos: -19.5,34.5
parent: 2
type: Transform
- - uid: 10186
+ - uid: 10197
components:
- rot: 1.5707963267948966 rad
pos: -19.5,35.5
parent: 2
type: Transform
- - uid: 10187
+ - uid: 10198
components:
- rot: 1.5707963267948966 rad
pos: -18.5,33.5
parent: 2
type: Transform
- - uid: 10188
+ - uid: 10199
components:
- rot: 1.5707963267948966 rad
pos: -18.5,34.5
parent: 2
type: Transform
- - uid: 10189
+ - uid: 10200
components:
- rot: 1.5707963267948966 rad
pos: -18.5,35.5
parent: 2
type: Transform
- - uid: 10190
+ - uid: 10201
components:
- rot: 1.5707963267948966 rad
pos: 8.5,7.5
parent: 2
type: Transform
- - uid: 10191
+ - uid: 10202
components:
- rot: 1.5707963267948966 rad
pos: 13.5,-79.5
parent: 2
type: Transform
- - uid: 10192
+ - uid: 10203
components:
- rot: 1.5707963267948966 rad
pos: 14.5,-79.5
parent: 2
type: Transform
- - uid: 10193
+ - uid: 10204
components:
- rot: 1.5707963267948966 rad
pos: 15.5,-79.5
parent: 2
type: Transform
- - uid: 10194
+ - uid: 10205
components:
- rot: 1.5707963267948966 rad
pos: 16.5,-79.5
parent: 2
type: Transform
- - uid: 10195
+ - uid: 10206
components:
- rot: 1.5707963267948966 rad
pos: 17.5,-79.5
parent: 2
type: Transform
- - uid: 10196
+ - uid: 10207
components:
- rot: 1.5707963267948966 rad
pos: 13.5,-87.5
parent: 2
type: Transform
- - uid: 10197
+ - uid: 10208
components:
- rot: 1.5707963267948966 rad
pos: 14.5,-87.5
parent: 2
type: Transform
- - uid: 10198
+ - uid: 10209
components:
- rot: 1.5707963267948966 rad
pos: 15.5,-87.5
parent: 2
type: Transform
- - uid: 10199
+ - uid: 10210
components:
- rot: 1.5707963267948966 rad
pos: 16.5,-87.5
parent: 2
type: Transform
- - uid: 10200
+ - uid: 10211
components:
- rot: 1.5707963267948966 rad
pos: 17.5,-87.5
parent: 2
type: Transform
- - uid: 10201
+ - uid: 10212
components:
- rot: -1.5707963267948966 rad
pos: 22.5,-35.5
parent: 2
type: Transform
- - uid: 10202
+ - uid: 10213
components:
- rot: -1.5707963267948966 rad
pos: 22.5,-36.5
parent: 2
type: Transform
- - uid: 10203
+ - uid: 10214
components:
- rot: -1.5707963267948966 rad
pos: 23.5,-35.5
parent: 2
type: Transform
- - uid: 10204
+ - uid: 10215
components:
- rot: -1.5707963267948966 rad
pos: 23.5,-36.5
parent: 2
type: Transform
- - uid: 10205
+ - uid: 10216
components:
- rot: -1.5707963267948966 rad
pos: 24.5,-34.5
parent: 2
type: Transform
- - uid: 10206
+ - uid: 10217
components:
- rot: -1.5707963267948966 rad
pos: 24.5,-35.5
parent: 2
type: Transform
- - uid: 10207
+ - uid: 10218
components:
- rot: -1.5707963267948966 rad
pos: 24.5,-36.5
parent: 2
type: Transform
- - uid: 10208
+ - uid: 10219
components:
- rot: -1.5707963267948966 rad
pos: 26.5,-35.5
parent: 2
type: Transform
- - uid: 10209
+ - uid: 10220
components:
- rot: -1.5707963267948966 rad
pos: 26.5,-36.5
parent: 2
type: Transform
- - uid: 10210
+ - uid: 10221
components:
- rot: -1.5707963267948966 rad
pos: 26.5,-37.5
parent: 2
type: Transform
- - uid: 10211
+ - uid: 10222
components:
- pos: 26.5,-34.5
parent: 2
type: Transform
- - uid: 10212
+ - uid: 10223
components:
- pos: 23.5,-34.5
parent: 2
type: Transform
- - uid: 10213
+ - uid: 10224
components:
- rot: 1.5707963267948966 rad
pos: 3.5,-9.5
parent: 2
type: Transform
- - uid: 10214
+ - uid: 10225
components:
- rot: 1.5707963267948966 rad
pos: 3.5,-10.5
parent: 2
type: Transform
- - uid: 10215
+ - uid: 10226
components:
- rot: 1.5707963267948966 rad
pos: 3.5,-11.5
parent: 2
type: Transform
- - uid: 10216
+ - uid: 10227
components:
- rot: 1.5707963267948966 rad
pos: 4.5,-9.5
parent: 2
type: Transform
- - uid: 10217
+ - uid: 10228
components:
- rot: 1.5707963267948966 rad
pos: 4.5,-10.5
parent: 2
type: Transform
- - uid: 10218
+ - uid: 10229
components:
- rot: 1.5707963267948966 rad
pos: 4.5,-11.5
parent: 2
type: Transform
- - uid: 10219
+ - uid: 10230
components:
- rot: 1.5707963267948966 rad
pos: 5.5,-9.5
parent: 2
type: Transform
- - uid: 10220
+ - uid: 10231
components:
- rot: 1.5707963267948966 rad
pos: 5.5,-10.5
parent: 2
type: Transform
- - uid: 10221
+ - uid: 10232
components:
- rot: 1.5707963267948966 rad
pos: 5.5,-11.5
@@ -64078,974 +64138,979 @@ entities:
type: Transform
- proto: CarpetOrange
entities:
- - uid: 10222
+ - uid: 10233
components:
- rot: -1.5707963267948966 rad
pos: 8.5,-6.5
parent: 2
type: Transform
- - uid: 10223
+ - uid: 10234
components:
- rot: -1.5707963267948966 rad
pos: 9.5,-5.5
parent: 2
type: Transform
- - uid: 10224
+ - uid: 10235
components:
- rot: 3.141592653589793 rad
pos: 12.5,11.5
parent: 2
type: Transform
- - uid: 10225
+ - uid: 10236
components:
- rot: 1.5707963267948966 rad
pos: 10.5,7.5
parent: 2
type: Transform
- - uid: 10226
+ - uid: 10237
components:
- rot: -1.5707963267948966 rad
pos: 11.5,-6.5
parent: 2
type: Transform
- - uid: 10227
+ - uid: 10238
components:
- rot: -1.5707963267948966 rad
pos: 11.5,-7.5
parent: 2
type: Transform
- - uid: 10228
+ - uid: 10239
components:
- rot: -1.5707963267948966 rad
pos: 11.5,-8.5
parent: 2
type: Transform
- - uid: 10229
+ - uid: 10240
components:
- rot: -1.5707963267948966 rad
pos: 10.5,-8.5
parent: 2
type: Transform
- - uid: 10230
+ - uid: 10241
components:
- rot: -1.5707963267948966 rad
pos: 9.5,-8.5
parent: 2
type: Transform
- - uid: 10231
+ - uid: 10242
components:
- rot: -1.5707963267948966 rad
pos: 8.5,-8.5
parent: 2
type: Transform
- - uid: 10232
+ - uid: 10243
components:
- rot: -1.5707963267948966 rad
pos: 8.5,-7.5
parent: 2
type: Transform
- - uid: 10233
+ - uid: 10244
components:
- rot: -1.5707963267948966 rad
pos: 8.5,-5.5
parent: 2
type: Transform
- - uid: 10234
+ - uid: 10245
components:
- rot: -1.5707963267948966 rad
pos: 9.5,-6.5
parent: 2
type: Transform
- - uid: 10235
+ - uid: 10246
components:
- rot: -1.5707963267948966 rad
pos: 10.5,-6.5
parent: 2
type: Transform
- - uid: 10236
+ - uid: 10247
components:
- rot: -1.5707963267948966 rad
pos: 10.5,-7.5
parent: 2
type: Transform
- - uid: 10237
+ - uid: 10248
components:
- rot: -1.5707963267948966 rad
pos: 9.5,-7.5
parent: 2
type: Transform
- - uid: 10238
+ - uid: 10249
components:
- rot: 1.5707963267948966 rad
pos: 12.5,7.5
parent: 2
type: Transform
- - uid: 10239
+ - uid: 10250
components:
- rot: -1.5707963267948966 rad
pos: 10.5,-5.5
parent: 2
type: Transform
- - uid: 10240
+ - uid: 10251
components:
- rot: -1.5707963267948966 rad
pos: 11.5,-5.5
parent: 2
type: Transform
- - uid: 10241
+ - uid: 10252
components:
- rot: 1.5707963267948966 rad
pos: 12.5,8.5
parent: 2
type: Transform
- - uid: 10242
+ - uid: 10253
components:
- rot: 3.141592653589793 rad
pos: 12.5,10.5
parent: 2
type: Transform
- - uid: 10243
+ - uid: 10254
components:
- rot: 1.5707963267948966 rad
pos: 10.5,8.5
parent: 2
type: Transform
- - uid: 10244
+ - uid: 10255
components:
- rot: 1.5707963267948966 rad
pos: 11.5,7.5
parent: 2
type: Transform
- - uid: 10245
+ - uid: 10256
components:
- rot: 1.5707963267948966 rad
pos: 11.5,8.5
parent: 2
type: Transform
- - uid: 10246
+ - uid: 10257
components:
- rot: 3.141592653589793 rad
pos: 11.5,11.5
parent: 2
type: Transform
- - uid: 10247
+ - uid: 10258
components:
- rot: 3.141592653589793 rad
pos: 11.5,12.5
parent: 2
type: Transform
- - uid: 10248
+ - uid: 10259
components:
- pos: -12.5,-35.5
parent: 2
type: Transform
- - uid: 10249
+ - uid: 10260
components:
- pos: -12.5,-36.5
parent: 2
type: Transform
- - uid: 10250
+ - uid: 10261
components:
- pos: -12.5,-37.5
parent: 2
type: Transform
- - uid: 10251
+ - uid: 10262
components:
- pos: -11.5,-35.5
parent: 2
type: Transform
- - uid: 10252
+ - uid: 10263
components:
- pos: -11.5,-36.5
parent: 2
type: Transform
- - uid: 10253
+ - uid: 10264
components:
- pos: -11.5,-37.5
parent: 2
type: Transform
- - uid: 10254
+ - uid: 10265
components:
- pos: -10.5,-35.5
parent: 2
type: Transform
- - uid: 10255
+ - uid: 10266
components:
- pos: -10.5,-36.5
parent: 2
type: Transform
- - uid: 10256
+ - uid: 10267
components:
- pos: -10.5,-37.5
parent: 2
type: Transform
- - uid: 10257
+ - uid: 10268
components:
- pos: -9.5,-35.5
parent: 2
type: Transform
- - uid: 10258
+ - uid: 10269
components:
- pos: -9.5,-36.5
parent: 2
type: Transform
- - uid: 10259
+ - uid: 10270
components:
- pos: -9.5,-37.5
parent: 2
type: Transform
- - uid: 10260
+ - uid: 10271
components:
- rot: 3.141592653589793 rad
pos: 12.5,12.5
parent: 2
type: Transform
- - uid: 10261
+ - uid: 10272
components:
- rot: 3.141592653589793 rad
pos: -37.5,-15.5
parent: 2
type: Transform
- - uid: 10262
+ - uid: 10273
components:
- rot: 3.141592653589793 rad
pos: -37.5,-16.5
parent: 2
type: Transform
- - uid: 10263
+ - uid: 10274
components:
- rot: 3.141592653589793 rad
pos: -37.5,-17.5
parent: 2
type: Transform
- - uid: 10264
+ - uid: 10275
components:
- rot: 3.141592653589793 rad
pos: -37.5,-18.5
parent: 2
type: Transform
- - uid: 10265
+ - uid: 10276
components:
- rot: 3.141592653589793 rad
pos: -36.5,-16.5
parent: 2
type: Transform
- - uid: 10266
+ - uid: 10277
components:
- rot: 3.141592653589793 rad
pos: -36.5,-17.5
parent: 2
type: Transform
- - uid: 10267
+ - uid: 10278
components:
- rot: 3.141592653589793 rad
pos: -36.5,-18.5
parent: 2
type: Transform
- - uid: 10268
+ - uid: 10279
components:
- rot: 3.141592653589793 rad
pos: -35.5,-15.5
parent: 2
type: Transform
- - uid: 10269
+ - uid: 10280
components:
- rot: 3.141592653589793 rad
pos: -35.5,-16.5
parent: 2
type: Transform
- - uid: 10270
+ - uid: 10281
components:
- rot: 3.141592653589793 rad
pos: -35.5,-17.5
parent: 2
type: Transform
- - uid: 10271
+ - uid: 10282
components:
- rot: 3.141592653589793 rad
pos: -35.5,-18.5
parent: 2
type: Transform
- - uid: 10272
+ - uid: 10283
components:
- rot: 3.141592653589793 rad
pos: -34.5,31.5
parent: 2
type: Transform
- - uid: 10273
+ - uid: 10284
components:
- pos: -34.5,30.5
parent: 2
type: Transform
- - uid: 10274
+ - uid: 10285
components:
- rot: 3.141592653589793 rad
pos: -34.5,29.5
parent: 2
type: Transform
- - uid: 10275
+ - uid: 10286
components:
- rot: 3.141592653589793 rad
pos: -33.5,31.5
parent: 2
type: Transform
- - uid: 10276
+ - uid: 10287
components:
- rot: 3.141592653589793 rad
pos: -33.5,30.5
parent: 2
type: Transform
- - uid: 10277
+ - uid: 10288
components:
- rot: 3.141592653589793 rad
pos: -33.5,29.5
parent: 2
type: Transform
- - uid: 10278
+ - uid: 10289
components:
- rot: 3.141592653589793 rad
pos: -32.5,31.5
parent: 2
type: Transform
- - uid: 10279
+ - uid: 10290
components:
- rot: 3.141592653589793 rad
pos: -32.5,30.5
parent: 2
type: Transform
- - uid: 10280
+ - uid: 10291
components:
- rot: 3.141592653589793 rad
pos: -32.5,29.5
parent: 2
type: Transform
- - uid: 10281
+ - uid: 10292
components:
- rot: 3.141592653589793 rad
pos: -31.5,31.5
parent: 2
type: Transform
- - uid: 10282
+ - uid: 10293
components:
- rot: 3.141592653589793 rad
pos: -31.5,30.5
parent: 2
type: Transform
- - uid: 10283
+ - uid: 10294
components:
- rot: 3.141592653589793 rad
pos: -31.5,29.5
parent: 2
type: Transform
- - uid: 10284
+ - uid: 10295
components:
- rot: 3.141592653589793 rad
pos: -30.5,31.5
parent: 2
type: Transform
- - uid: 10285
+ - uid: 10296
components:
- rot: 3.141592653589793 rad
pos: -30.5,30.5
parent: 2
type: Transform
- - uid: 10286
+ - uid: 10297
components:
- rot: 3.141592653589793 rad
pos: -30.5,29.5
parent: 2
type: Transform
- - uid: 10287
+ - uid: 10298
components:
- rot: 3.141592653589793 rad
pos: 11.5,10.5
parent: 2
type: Transform
- - uid: 10288
+ - uid: 10299
components:
- pos: 23.5,-38.5
parent: 2
type: Transform
- - uid: 10289
+ - uid: 10300
components:
- pos: 22.5,-38.5
parent: 2
type: Transform
- - uid: 10290
+ - uid: 10301
components:
- pos: 22.5,-39.5
parent: 2
type: Transform
- - uid: 10291
+ - uid: 10302
components:
- pos: 23.5,-39.5
parent: 2
type: Transform
- - uid: 10292
+ - uid: 10303
components:
- pos: 27.5,-39.5
parent: 2
type: Transform
- - uid: 10293
+ - uid: 10304
components:
- pos: 28.5,-39.5
parent: 2
type: Transform
- - uid: 10294
+ - uid: 10305
components:
- pos: 29.5,-39.5
parent: 2
type: Transform
+ - uid: 10306
+ components:
+ - pos: -36.5,-15.5
+ parent: 2
+ type: Transform
- proto: CarpetPink
entities:
- - uid: 10295
+ - uid: 10307
components:
- pos: 21.5,-29.5
parent: 2
type: Transform
- - uid: 10296
+ - uid: 10308
components:
- pos: 23.5,-29.5
parent: 2
type: Transform
- - uid: 10297
+ - uid: 10309
components:
- pos: 22.5,-29.5
parent: 2
type: Transform
- - uid: 10298
+ - uid: 10310
components:
- pos: 22.5,-28.5
parent: 2
type: Transform
- - uid: 10299
+ - uid: 10311
components:
- pos: 21.5,-28.5
parent: 2
type: Transform
- - uid: 10300
+ - uid: 10312
components:
- pos: 22.5,-29.5
parent: 2
type: Transform
- - uid: 10301
+ - uid: 10313
components:
- pos: 23.5,-29.5
parent: 2
type: Transform
- - uid: 10302
+ - uid: 10314
components:
- pos: 23.5,-28.5
parent: 2
type: Transform
- - uid: 10303
+ - uid: 10315
components:
- rot: -1.5707963267948966 rad
pos: 22.5,-28.5
parent: 2
type: Transform
- - uid: 10304
+ - uid: 10316
components:
- pos: 24.5,-28.5
parent: 2
type: Transform
- - uid: 10305
+ - uid: 10317
components:
- rot: 1.5707963267948966 rad
pos: 20.5,-29.5
parent: 2
type: Transform
- - uid: 10306
+ - uid: 10318
components:
- pos: 20.5,-28.5
parent: 2
type: Transform
- - uid: 10307
+ - uid: 10319
components:
- pos: 24.5,-29.5
parent: 2
type: Transform
- proto: CarpetPurple
entities:
- - uid: 10308
+ - uid: 10320
components:
- pos: -16.5,-38.5
parent: 2
type: Transform
- - uid: 10309
+ - uid: 10321
components:
- pos: -16.5,-39.5
parent: 2
type: Transform
- - uid: 10310
+ - uid: 10322
components:
- pos: -15.5,-38.5
parent: 2
type: Transform
- - uid: 10311
+ - uid: 10323
components:
- pos: -15.5,-39.5
parent: 2
type: Transform
- - uid: 10312
+ - uid: 10324
components:
- pos: -14.5,-38.5
parent: 2
type: Transform
- - uid: 10313
+ - uid: 10325
components:
- pos: -14.5,-39.5
parent: 2
type: Transform
- - uid: 10314
+ - uid: 10326
components:
- rot: -1.5707963267948966 rad
pos: -49.5,7.5
parent: 2
type: Transform
- - uid: 10315
+ - uid: 10327
components:
- rot: -1.5707963267948966 rad
pos: -49.5,6.5
parent: 2
type: Transform
- - uid: 10316
+ - uid: 10328
components:
- rot: -1.5707963267948966 rad
pos: -49.5,5.5
parent: 2
type: Transform
- - uid: 10317
+ - uid: 10329
components:
- rot: -1.5707963267948966 rad
pos: -49.5,4.5
parent: 2
type: Transform
- - uid: 10318
+ - uid: 10330
components:
- rot: -1.5707963267948966 rad
pos: -48.5,7.5
parent: 2
type: Transform
- - uid: 10319
+ - uid: 10331
components:
- rot: -1.5707963267948966 rad
pos: -48.5,6.5
parent: 2
type: Transform
- - uid: 10320
+ - uid: 10332
components:
- rot: -1.5707963267948966 rad
pos: -48.5,5.5
parent: 2
type: Transform
- - uid: 10321
+ - uid: 10333
components:
- rot: -1.5707963267948966 rad
pos: -48.5,4.5
parent: 2
type: Transform
- - uid: 10322
+ - uid: 10334
components:
- rot: -1.5707963267948966 rad
pos: -47.5,7.5
parent: 2
type: Transform
- - uid: 10323
+ - uid: 10335
components:
- rot: -1.5707963267948966 rad
pos: -47.5,6.5
parent: 2
type: Transform
- - uid: 10324
+ - uid: 10336
components:
- rot: -1.5707963267948966 rad
pos: -47.5,5.5
parent: 2
type: Transform
- - uid: 10325
+ - uid: 10337
components:
- rot: -1.5707963267948966 rad
pos: -47.5,4.5
parent: 2
type: Transform
- - uid: 10326
+ - uid: 10338
components:
- rot: -1.5707963267948966 rad
pos: -46.5,7.5
parent: 2
type: Transform
- - uid: 10327
+ - uid: 10339
components:
- rot: -1.5707963267948966 rad
pos: -46.5,6.5
parent: 2
type: Transform
- - uid: 10328
+ - uid: 10340
components:
- rot: -1.5707963267948966 rad
pos: -46.5,5.5
parent: 2
type: Transform
- - uid: 10329
+ - uid: 10341
components:
- rot: -1.5707963267948966 rad
pos: -46.5,4.5
parent: 2
type: Transform
- - uid: 10330
+ - uid: 10342
components:
- pos: 51.5,-40.5
parent: 2
type: Transform
- - uid: 10331
+ - uid: 10343
components:
- pos: 52.5,-39.5
parent: 2
type: Transform
- - uid: 10332
+ - uid: 10344
components:
- pos: 52.5,-41.5
parent: 2
type: Transform
- - uid: 10333
+ - uid: 10345
components:
- pos: 53.5,-40.5
parent: 2
type: Transform
- - uid: 10334
+ - uid: 10346
components:
- pos: 52.5,-43.5
parent: 2
type: Transform
- - uid: 10335
+ - uid: 10347
components:
- pos: 51.5,-42.5
parent: 2
type: Transform
- - uid: 10336
+ - uid: 10348
components:
- pos: 53.5,-43.5
parent: 2
type: Transform
- - uid: 10337
+ - uid: 10349
components:
- pos: 51.5,-43.5
parent: 2
type: Transform
- - uid: 10338
+ - uid: 10350
components:
- pos: 52.5,-40.5
parent: 2
type: Transform
- - uid: 10339
+ - uid: 10351
components:
- pos: 53.5,-39.5
parent: 2
type: Transform
- - uid: 10340
+ - uid: 10352
components:
- pos: 52.5,-42.5
parent: 2
type: Transform
- - uid: 10341
+ - uid: 10353
components:
- pos: 51.5,-39.5
parent: 2
type: Transform
- - uid: 10342
+ - uid: 10354
components:
- pos: 53.5,-41.5
parent: 2
type: Transform
- - uid: 10343
+ - uid: 10355
components:
- pos: 53.5,-42.5
parent: 2
type: Transform
- - uid: 10344
+ - uid: 10356
components:
- pos: 51.5,-41.5
parent: 2
type: Transform
- proto: CarpetSBlue
entities:
- - uid: 10345
+ - uid: 10357
components:
- pos: 21.5,-22.5
parent: 2
type: Transform
- - uid: 10346
+ - uid: 10358
components:
- pos: 21.5,-23.5
parent: 2
type: Transform
- - uid: 10347
+ - uid: 10359
components:
- pos: 23.5,-23.5
parent: 2
type: Transform
- - uid: 10348
+ - uid: 10360
components:
- pos: 24.5,-25.5
parent: 2
type: Transform
- - uid: 10349
+ - uid: 10361
components:
- pos: 26.5,-24.5
parent: 2
type: Transform
- - uid: 10350
+ - uid: 10362
components:
- pos: 26.5,-25.5
parent: 2
type: Transform
- - uid: 10351
+ - uid: 10363
components:
- pos: 29.5,-23.5
parent: 2
type: Transform
- - uid: 10352
+ - uid: 10364
components:
- pos: 28.5,-22.5
parent: 2
type: Transform
- - uid: 10353
+ - uid: 10365
components:
- pos: 29.5,-23.5
parent: 2
type: Transform
- - uid: 10354
+ - uid: 10366
components:
- pos: 25.5,-25.5
parent: 2
type: Transform
- - uid: 10355
+ - uid: 10367
components:
- pos: 29.5,-22.5
parent: 2
type: Transform
- - uid: 10356
+ - uid: 10368
components:
- pos: 27.5,-22.5
parent: 2
type: Transform
- - uid: 10357
+ - uid: 10369
components:
- pos: 26.5,-22.5
parent: 2
type: Transform
- - uid: 10358
+ - uid: 10370
components:
- pos: 24.5,-24.5
parent: 2
type: Transform
- - uid: 10359
+ - uid: 10371
components:
- pos: 24.5,-23.5
parent: 2
type: Transform
- - uid: 10360
+ - uid: 10372
components:
- pos: 24.5,-22.5
parent: 2
type: Transform
- - uid: 10361
+ - uid: 10373
components:
- pos: 25.5,-24.5
parent: 2
type: Transform
- - uid: 10362
+ - uid: 10374
components:
- pos: 28.5,-23.5
parent: 2
type: Transform
- - uid: 10363
+ - uid: 10375
components:
- pos: 22.5,-23.5
parent: 2
type: Transform
- - uid: 10364
+ - uid: 10376
components:
- pos: 22.5,-22.5
parent: 2
type: Transform
- - uid: 10365
+ - uid: 10377
components:
- pos: 23.5,-22.5
parent: 2
type: Transform
- - uid: 10366
+ - uid: 10378
components:
- pos: 25.5,-23.5
parent: 2
type: Transform
- - uid: 10367
+ - uid: 10379
components:
- pos: 25.5,-22.5
parent: 2
type: Transform
- - uid: 10368
+ - uid: 10380
components:
- pos: 26.5,-23.5
parent: 2
type: Transform
- - uid: 10369
+ - uid: 10381
components:
- rot: 3.141592653589793 rad
pos: 30.5,-47.5
parent: 2
type: Transform
- - uid: 10370
+ - uid: 10382
components:
- rot: 3.141592653589793 rad
pos: 30.5,-48.5
parent: 2
type: Transform
- - uid: 10371
+ - uid: 10383
components:
- rot: 3.141592653589793 rad
pos: 31.5,-47.5
parent: 2
type: Transform
- - uid: 10372
+ - uid: 10384
components:
- rot: 3.141592653589793 rad
pos: 31.5,-48.5
parent: 2
type: Transform
- - uid: 10373
+ - uid: 10385
components:
- rot: 3.141592653589793 rad
pos: 32.5,-47.5
parent: 2
type: Transform
- - uid: 10374
+ - uid: 10386
components:
- rot: 3.141592653589793 rad
pos: 32.5,-48.5
parent: 2
type: Transform
- - uid: 10375
+ - uid: 10387
components:
- pos: 30.5,-28.5
parent: 2
type: Transform
- - uid: 10376
+ - uid: 10388
components:
- pos: 30.5,-29.5
parent: 2
type: Transform
- - uid: 10377
+ - uid: 10389
components:
- pos: 31.5,-27.5
parent: 2
type: Transform
- - uid: 10378
+ - uid: 10390
components:
- pos: 31.5,-28.5
parent: 2
type: Transform
- - uid: 10379
+ - uid: 10391
components:
- pos: 31.5,-29.5
parent: 2
type: Transform
- - uid: 10380
+ - uid: 10392
components:
- pos: 32.5,-27.5
parent: 2
type: Transform
- - uid: 10381
+ - uid: 10393
components:
- pos: 32.5,-28.5
parent: 2
type: Transform
- - uid: 10382
+ - uid: 10394
components:
- pos: 32.5,-29.5
parent: 2
type: Transform
- - uid: 10383
+ - uid: 10395
components:
- pos: 30.5,-27.5
parent: 2
type: Transform
- - uid: 10384
+ - uid: 10396
components:
- pos: 31.5,-30.5
parent: 2
type: Transform
- - uid: 10385
+ - uid: 10397
components:
- pos: 30.5,-30.5
parent: 2
type: Transform
- - uid: 10386
+ - uid: 10398
components:
- pos: 59.5,-0.5
parent: 2
type: Transform
- - uid: 10387
+ - uid: 10399
components:
- pos: 59.5,-1.5
parent: 2
type: Transform
- - uid: 10388
+ - uid: 10400
components:
- pos: 60.5,-0.5
parent: 2
type: Transform
- - uid: 10389
+ - uid: 10401
components:
- pos: 60.5,-1.5
parent: 2
type: Transform
- - uid: 10390
+ - uid: 10402
components:
- pos: 61.5,-0.5
parent: 2
type: Transform
- - uid: 10391
+ - uid: 10403
components:
- pos: 61.5,-1.5
parent: 2
type: Transform
- - uid: 10392
+ - uid: 10404
components:
- pos: 62.5,-0.5
parent: 2
type: Transform
- - uid: 10393
+ - uid: 10405
components:
- pos: 62.5,-1.5
parent: 2
type: Transform
- - uid: 10394
+ - uid: 10406
components:
- pos: 32.5,-30.5
parent: 2
type: Transform
- - uid: 10395
+ - uid: 10407
components:
- pos: 27.5,-23.5
parent: 2
type: Transform
- proto: CartridgeMagnumAP
entities:
- - uid: 10396
+ - uid: 10408
components:
- rot: 1.5707963267948966 rad
pos: 23.553988,-35.486286
parent: 2
type: Transform
- - uid: 10397
+ - uid: 10409
components:
- rot: 1.5707963267948966 rad
pos: 23.460238,-35.548786
parent: 2
type: Transform
- - uid: 10398
+ - uid: 10410
components:
- rot: 1.5707963267948966 rad
pos: 23.647738,-35.43941
@@ -65053,8869 +65118,8847 @@ entities:
type: Transform
- proto: Catwalk
entities:
- - uid: 10399
+ - uid: 10411
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 15.5,-46.5
+ parent: 2
+ type: Transform
+ - uid: 10412
components:
- pos: 58.5,-38.5
parent: 2
type: Transform
- - uid: 10400
+ - uid: 10413
components:
- rot: 3.141592653589793 rad
pos: 22.5,-32.5
parent: 2
type: Transform
- - uid: 10401
+ - uid: 10414
components:
- rot: 3.141592653589793 rad
pos: -76.5,-38.5
parent: 2
type: Transform
- - uid: 10402
+ - uid: 10415
components:
- pos: -79.5,-40.5
parent: 2
type: Transform
- - uid: 10403
+ - uid: 10416
components:
- pos: -79.5,-41.5
parent: 2
type: Transform
- - uid: 10404
+ - uid: 10417
components:
- rot: 3.141592653589793 rad
pos: -61.5,-53.5
parent: 2
type: Transform
- - uid: 10405
+ - uid: 10418
components:
- rot: 3.141592653589793 rad
pos: -61.5,-54.5
parent: 2
type: Transform
- - uid: 10406
+ - uid: 10419
components:
- rot: 3.141592653589793 rad
pos: -61.5,-52.5
parent: 2
type: Transform
- - uid: 10407
+ - uid: 10420
components:
- rot: 3.141592653589793 rad
pos: -61.5,-51.5
parent: 2
type: Transform
- - uid: 10408
+ - uid: 10421
components:
- rot: 3.141592653589793 rad
pos: -61.5,-50.5
parent: 2
type: Transform
- - uid: 10409
+ - uid: 10422
components:
- rot: 3.141592653589793 rad
pos: -61.5,-49.5
parent: 2
type: Transform
- - uid: 10410
+ - uid: 10423
components:
- rot: 3.141592653589793 rad
pos: -61.5,-48.5
parent: 2
type: Transform
- - uid: 10411
+ - uid: 10424
components:
- rot: 1.5707963267948966 rad
pos: -59.5,56.5
parent: 2
type: Transform
- - uid: 10412
+ - uid: 10425
components:
- rot: 1.5707963267948966 rad
pos: -57.5,56.5
parent: 2
type: Transform
- - uid: 10413
+ - uid: 10426
components:
- rot: 1.5707963267948966 rad
pos: -55.5,56.5
parent: 2
type: Transform
- - uid: 10414
+ - uid: 10427
components:
- rot: 1.5707963267948966 rad
pos: -54.5,55.5
parent: 2
type: Transform
- - uid: 10415
+ - uid: 10428
components:
- rot: 3.141592653589793 rad
pos: -0.5,-71.5
parent: 2
type: Transform
- - uid: 10416
- components:
- - rot: 3.141592653589793 rad
- pos: 14.5,-47.5
- parent: 2
- type: Transform
- - uid: 10417
+ - uid: 10429
components:
- pos: 65.5,-25.5
parent: 2
type: Transform
- - uid: 10418
+ - uid: 10430
components:
- rot: 3.141592653589793 rad
pos: 79.5,-26.5
parent: 2
type: Transform
- - uid: 10419
+ - uid: 10431
components:
- pos: 31.5,-14.5
parent: 2
type: Transform
- - uid: 10420
+ - uid: 10432
components:
- pos: -11.5,-15.5
parent: 2
type: Transform
- - uid: 10421
+ - uid: 10433
components:
- pos: -7.5,-75.5
parent: 2
type: Transform
- - uid: 10422
+ - uid: 10434
components:
- pos: 32.5,-11.5
parent: 2
type: Transform
- - uid: 10423
+ - uid: 10435
components:
- pos: -1.5,-83.5
parent: 2
type: Transform
- - uid: 10424
+ - uid: 10436
components:
- pos: -12.5,-15.5
parent: 2
type: Transform
- - uid: 10425
+ - uid: 10437
components:
- pos: -5.5,-69.5
parent: 2
type: Transform
- - uid: 10426
+ - uid: 10438
components:
- pos: 2.5,-90.5
parent: 2
type: Transform
- - uid: 10427
+ - uid: 10439
components:
- pos: -1.5,-88.5
parent: 2
type: Transform
- - uid: 10428
+ - uid: 10440
components:
- pos: -0.5,-89.5
parent: 2
type: Transform
- - uid: 10429
+ - uid: 10441
components:
- pos: 0.5,-89.5
parent: 2
type: Transform
- - uid: 10430
+ - uid: 10442
components:
- pos: 3.5,-92.5
parent: 2
type: Transform
- - uid: 10431
+ - uid: 10443
components:
- pos: 8.5,-53.5
parent: 2
type: Transform
- - uid: 10432
+ - uid: 10444
components:
- pos: 4.5,-92.5
parent: 2
type: Transform
- - uid: 10433
+ - uid: 10445
components:
- pos: -46.5,-50.5
parent: 2
type: Transform
- - uid: 10434
+ - uid: 10446
components:
- rot: 3.141592653589793 rad
pos: 0.5,-71.5
parent: 2
type: Transform
- - uid: 10435
+ - uid: 10447
components:
- pos: 2.5,-91.5
parent: 2
type: Transform
- - uid: 10436
+ - uid: 10448
components:
- pos: -1.5,-89.5
parent: 2
type: Transform
- - uid: 10437
+ - uid: 10449
components:
- pos: 4.5,-89.5
parent: 2
type: Transform
- - uid: 10438
+ - uid: 10450
components:
- pos: -6.5,-75.5
parent: 2
type: Transform
- - uid: 10439
+ - uid: 10451
components:
- pos: -8.5,-75.5
parent: 2
type: Transform
- - uid: 10440
+ - uid: 10452
components:
- pos: 30.5,-14.5
parent: 2
type: Transform
- - uid: 10441
+ - uid: 10453
components:
- pos: -5.5,-75.5
parent: 2
type: Transform
- - uid: 10442
+ - uid: 10454
components:
- pos: -4.5,-75.5
parent: 2
type: Transform
- - uid: 10443
+ - uid: 10455
components:
- pos: -3.5,-75.5
parent: 2
type: Transform
- - uid: 10444
+ - uid: 10456
components:
- pos: -14.5,-73.5
parent: 2
type: Transform
- - uid: 10445
+ - uid: 10457
components:
- pos: 30.5,-10.5
parent: 2
type: Transform
- - uid: 10446
+ - uid: 10458
components:
- pos: -13.5,-73.5
parent: 2
type: Transform
- - uid: 10447
- components:
- - pos: 9.5,-47.5
- parent: 2
- type: Transform
- - uid: 10448
+ - uid: 10459
components:
- rot: 3.141592653589793 rad
pos: 18.5,-52.5
parent: 2
type: Transform
- - uid: 10449
+ - uid: 10460
components:
- rot: 3.141592653589793 rad
pos: 14.5,-53.5
parent: 2
type: Transform
- - uid: 10450
+ - uid: 10461
components:
- rot: 3.141592653589793 rad
pos: 14.5,-52.5
parent: 2
type: Transform
- - uid: 10451
+ - uid: 10462
components:
- rot: 3.141592653589793 rad
pos: 21.5,-53.5
parent: 2
type: Transform
- - uid: 10452
+ - uid: 10463
components:
- rot: 3.141592653589793 rad
pos: 15.5,-53.5
parent: 2
type: Transform
- - uid: 10453
+ - uid: 10464
components:
- rot: 3.141592653589793 rad
pos: 15.5,-52.5
parent: 2
type: Transform
- - uid: 10454
+ - uid: 10465
components:
- rot: 3.141592653589793 rad
pos: 16.5,-52.5
parent: 2
type: Transform
- - uid: 10455
+ - uid: 10466
components:
- rot: 3.141592653589793 rad
pos: 17.5,-52.5
parent: 2
type: Transform
- - uid: 10456
+ - uid: 10467
components:
- rot: 3.141592653589793 rad
pos: 17.5,-53.5
parent: 2
type: Transform
- - uid: 10457
+ - uid: 10468
components:
- pos: -46.5,-43.5
parent: 2
type: Transform
- - uid: 10458
+ - uid: 10469
components:
- pos: 32.5,-10.5
parent: 2
type: Transform
- - uid: 10459
+ - uid: 10470
components:
- pos: 32.5,-13.5
parent: 2
type: Transform
- - uid: 10460
+ - uid: 10471
components:
- rot: -1.5707963267948966 rad
pos: 27.5,-32.5
parent: 2
type: Transform
- - uid: 10461
+ - uid: 10472
components:
- rot: -1.5707963267948966 rad
pos: 24.5,-32.5
parent: 2
type: Transform
- - uid: 10462
+ - uid: 10473
components:
- rot: 3.141592653589793 rad
pos: 12.5,-16.5
parent: 2
type: Transform
- - uid: 10463
+ - uid: 10474
components:
- rot: -1.5707963267948966 rad
pos: 21.5,-32.5
parent: 2
type: Transform
- - uid: 10464
+ - uid: 10475
components:
- pos: -17.5,-52.5
parent: 2
type: Transform
- - uid: 10465
+ - uid: 10476
components:
- pos: -8.5,-13.5
parent: 2
type: Transform
- - uid: 10466
+ - uid: 10477
components:
- pos: -6.5,-70.5
parent: 2
type: Transform
- - uid: 10467
+ - uid: 10478
components:
- pos: 11.5,-17.5
parent: 2
type: Transform
- - uid: 10468
+ - uid: 10479
components:
- pos: -19.5,-52.5
parent: 2
type: Transform
- - uid: 10469
+ - uid: 10480
components:
- rot: 3.141592653589793 rad
pos: 9.5,-92.5
parent: 2
type: Transform
- - uid: 10470
+ - uid: 10481
components:
- rot: 3.141592653589793 rad
pos: 10.5,-92.5
parent: 2
type: Transform
- - uid: 10471
+ - uid: 10482
components:
- pos: -1.5,-82.5
parent: 2
type: Transform
- - uid: 10472
- components:
- - rot: 3.141592653589793 rad
- pos: 14.5,-45.5
- parent: 2
- type: Transform
- - uid: 10473
+ - uid: 10483
components:
- rot: -1.5707963267948966 rad
pos: 25.5,-32.5
parent: 2
type: Transform
- - uid: 10474
+ - uid: 10484
components:
- pos: 32.5,-12.5
parent: 2
type: Transform
- - uid: 10475
+ - uid: 10485
components:
- pos: 32.5,-14.5
parent: 2
type: Transform
- - uid: 10476
+ - uid: 10486
components:
- pos: -1.5,-85.5
parent: 2
type: Transform
- - uid: 10477
+ - uid: 10487
components:
- pos: -1.5,-87.5
parent: 2
type: Transform
- - uid: 10478
+ - uid: 10488
components:
- rot: 3.141592653589793 rad
pos: 11.5,-105.5
parent: 2
type: Transform
- - uid: 10479
+ - uid: 10489
components:
- pos: -12.5,-14.5
parent: 2
type: Transform
- - uid: 10480
+ - uid: 10490
components:
- pos: 4.5,-67.5
parent: 2
type: Transform
- - uid: 10481
+ - uid: 10491
components:
- pos: 1.5,-89.5
parent: 2
type: Transform
- - uid: 10482
+ - uid: 10492
components:
- pos: 8.5,-55.5
parent: 2
type: Transform
- - uid: 10483
+ - uid: 10493
components:
- rot: 3.141592653589793 rad
pos: 11.5,-92.5
parent: 2
type: Transform
- - uid: 10484
+ - uid: 10494
components:
- pos: 3.5,-67.5
parent: 2
type: Transform
- - uid: 10485
+ - uid: 10495
components:
- pos: 5.5,-67.5
parent: 2
type: Transform
- - uid: 10486
+ - uid: 10496
components:
- pos: 8.5,-54.5
parent: 2
type: Transform
- - uid: 10487
+ - uid: 10497
components:
- rot: 1.5707963267948966 rad
pos: -24.5,53.5
parent: 2
type: Transform
- - uid: 10488
+ - uid: 10498
components:
- rot: 1.5707963267948966 rad
pos: -24.5,50.5
parent: 2
type: Transform
- - uid: 10489
+ - uid: 10499
components:
- rot: 1.5707963267948966 rad
pos: -24.5,51.5
parent: 2
type: Transform
- - uid: 10490
+ - uid: 10500
components:
- rot: 1.5707963267948966 rad
pos: -24.5,52.5
parent: 2
type: Transform
- - uid: 10491
+ - uid: 10501
components:
- rot: 1.5707963267948966 rad
pos: -24.5,49.5
parent: 2
type: Transform
- - uid: 10492
+ - uid: 10502
components:
- rot: 3.141592653589793 rad
pos: 2.5,-71.5
parent: 2
type: Transform
- - uid: 10493
+ - uid: 10503
components:
- pos: 30.5,-11.5
parent: 2
type: Transform
- - uid: 10494
- components:
- - rot: 3.141592653589793 rad
- pos: 14.5,-48.5
- parent: 2
- type: Transform
- - uid: 10495
+ - uid: 10504
components:
- rot: -1.5707963267948966 rad
pos: 20.5,-32.5
parent: 2
type: Transform
- - uid: 10496
+ - uid: 10505
components:
- pos: -1.5,-81.5
parent: 2
type: Transform
- - uid: 10497
+ - uid: 10506
components:
- pos: -1.5,-86.5
parent: 2
type: Transform
- - uid: 10498
+ - uid: 10507
components:
- pos: 2.5,-89.5
parent: 2
type: Transform
- - uid: 10499
+ - uid: 10508
components:
- pos: 7.5,-92.5
parent: 2
type: Transform
- - uid: 10500
+ - uid: 10509
components:
- pos: 2.5,-92.5
parent: 2
type: Transform
- - uid: 10501
+ - uid: 10510
components:
- pos: 11.5,-100.5
parent: 2
type: Transform
- - uid: 10502
+ - uid: 10511
components:
- rot: 3.141592653589793 rad
pos: 8.5,-92.5
parent: 2
type: Transform
- - uid: 10503
+ - uid: 10512
components:
- pos: 6.5,-92.5
parent: 2
type: Transform
- - uid: 10504
+ - uid: 10513
components:
- pos: 5.5,-92.5
parent: 2
type: Transform
- - uid: 10505
+ - uid: 10514
components:
- pos: -9.5,-75.5
parent: 2
type: Transform
- - uid: 10506
+ - uid: 10515
components:
- rot: 3.141592653589793 rad
pos: 20.5,-53.5
parent: 2
type: Transform
- - uid: 10507
+ - uid: 10516
components:
- pos: 30.5,-12.5
parent: 2
type: Transform
- - uid: 10508
+ - uid: 10517
components:
- pos: 60.5,-58.5
parent: 2
type: Transform
- - uid: 10509
+ - uid: 10518
components:
- pos: -4.5,-69.5
parent: 2
type: Transform
- - uid: 10510
+ - uid: 10519
components:
- pos: -13.5,-31.5
parent: 2
type: Transform
- - uid: 10511
+ - uid: 10520
components:
- pos: -3.5,-69.5
parent: 2
type: Transform
- - uid: 10512
+ - uid: 10521
components:
- pos: -9.5,-13.5
parent: 2
type: Transform
- - uid: 10513
+ - uid: 10522
components:
- pos: -12.5,-13.5
parent: 2
type: Transform
- - uid: 10514
+ - uid: 10523
components:
- pos: -10.5,-13.5
parent: 2
type: Transform
- - uid: 10515
+ - uid: 10524
components:
- pos: -10.5,-14.5
parent: 2
type: Transform
- - uid: 10516
+ - uid: 10525
components:
- pos: -10.5,-15.5
parent: 2
type: Transform
- - uid: 10517
+ - uid: 10526
components:
- pos: -13.5,-14.5
parent: 2
type: Transform
- - uid: 10518
+ - uid: 10527
components:
- pos: -7.5,-13.5
parent: 2
type: Transform
- - uid: 10519
+ - uid: 10528
components:
- pos: -14.5,-31.5
parent: 2
type: Transform
- - uid: 10520
+ - uid: 10529
components:
- pos: -15.5,-31.5
parent: 2
type: Transform
- - uid: 10521
+ - uid: 10530
components:
- pos: -2.5,-69.5
parent: 2
type: Transform
- - uid: 10522
+ - uid: 10531
components:
- pos: -16.5,-31.5
parent: 2
type: Transform
- - uid: 10523
+ - uid: 10532
components:
- pos: -6.5,-69.5
parent: 2
type: Transform
- - uid: 10524
+ - uid: 10533
components:
- pos: -12.5,15.5
parent: 2
type: Transform
- - uid: 10525
+ - uid: 10534
components:
- pos: -14.5,15.5
parent: 2
type: Transform
- - uid: 10526
+ - uid: 10535
components:
- pos: -6.5,-71.5
parent: 2
type: Transform
- - uid: 10527
+ - uid: 10536
components:
- pos: -7.5,-71.5
parent: 2
type: Transform
- - uid: 10528
+ - uid: 10537
components:
- pos: -8.5,-71.5
parent: 2
type: Transform
- - uid: 10529
+ - uid: 10538
components:
- pos: -9.5,-71.5
parent: 2
type: Transform
- - uid: 10530
+ - uid: 10539
components:
- pos: -10.5,-71.5
parent: 2
type: Transform
- - uid: 10531
+ - uid: 10540
components:
- pos: -11.5,-71.5
parent: 2
type: Transform
- - uid: 10532
+ - uid: 10541
components:
- pos: 3.5,-16.5
parent: 2
type: Transform
- - uid: 10533
+ - uid: 10542
components:
- pos: 2.5,-16.5
parent: 2
type: Transform
- - uid: 10534
+ - uid: 10543
components:
- pos: 1.5,-16.5
parent: 2
type: Transform
- - uid: 10535
+ - uid: 10544
components:
- pos: 1.5,-17.5
parent: 2
type: Transform
- - uid: 10536
+ - uid: 10545
components:
- pos: 0.5,-17.5
parent: 2
type: Transform
- - uid: 10537
+ - uid: 10546
components:
- pos: -0.5,-17.5
parent: 2
type: Transform
- - uid: 10538
+ - uid: 10547
components:
- pos: -0.5,-17.5
parent: 2
type: Transform
- - uid: 10539
+ - uid: 10548
components:
- pos: 14.5,-14.5
parent: 2
type: Transform
- - uid: 10540
+ - uid: 10549
components:
- pos: 13.5,-14.5
parent: 2
type: Transform
- - uid: 10541
+ - uid: 10550
components:
- pos: 12.5,-14.5
parent: 2
type: Transform
- - uid: 10542
+ - uid: 10551
components:
- pos: 11.5,-14.5
parent: 2
type: Transform
- - uid: 10543
+ - uid: 10552
components:
- pos: 10.5,-14.5
parent: 2
type: Transform
- - uid: 10544
+ - uid: 10553
components:
- pos: 9.5,-14.5
parent: 2
type: Transform
- - uid: 10545
+ - uid: 10554
components:
- pos: 8.5,-14.5
parent: 2
type: Transform
- - uid: 10546
+ - uid: 10555
components:
- pos: 7.5,-14.5
parent: 2
type: Transform
- - uid: 10547
+ - uid: 10556
components:
- pos: 14.5,-5.5
parent: 2
type: Transform
- - uid: 10548
+ - uid: 10557
components:
- pos: 14.5,-6.5
parent: 2
type: Transform
- - uid: 10549
+ - uid: 10558
components:
- pos: 14.5,-4.5
parent: 2
type: Transform
- - uid: 10550
+ - uid: 10559
components:
- pos: 56.5,1.5
parent: 2
type: Transform
- - uid: 10551
+ - uid: 10560
components:
- pos: 57.5,2.5
parent: 2
type: Transform
- - uid: 10552
+ - uid: 10561
components:
- pos: 56.5,2.5
parent: 2
type: Transform
- - uid: 10553
+ - uid: 10562
components:
- pos: 57.5,1.5
parent: 2
type: Transform
- - uid: 10554
+ - uid: 10563
components:
- pos: 58.5,1.5
parent: 2
type: Transform
- - uid: 10555
+ - uid: 10564
components:
- pos: 59.5,1.5
parent: 2
type: Transform
- - uid: 10556
+ - uid: 10565
components:
- pos: 60.5,1.5
parent: 2
type: Transform
- - uid: 10557
+ - uid: 10566
components:
- pos: 61.5,1.5
parent: 2
type: Transform
- - uid: 10558
+ - uid: 10567
components:
- pos: 62.5,1.5
parent: 2
type: Transform
- - uid: 10559
+ - uid: 10568
components:
- pos: 62.5,2.5
parent: 2
type: Transform
- - uid: 10560
+ - uid: 10569
components:
- pos: 12.5,-17.5
parent: 2
type: Transform
- - uid: 10561
+ - uid: 10570
components:
- pos: 10.5,-17.5
parent: 2
type: Transform
- - uid: 10562
+ - uid: 10571
components:
- pos: 8.5,-17.5
parent: 2
type: Transform
- - uid: 10563
+ - uid: 10572
components:
- pos: 7.5,-17.5
parent: 2
type: Transform
- - uid: 10564
+ - uid: 10573
components:
- rot: -1.5707963267948966 rad
pos: 59.5,-19.5
parent: 2
type: Transform
- - uid: 10565
+ - uid: 10574
components:
- rot: -1.5707963267948966 rad
pos: 59.5,-20.5
parent: 2
type: Transform
- - uid: 10566
+ - uid: 10575
components:
- rot: -1.5707963267948966 rad
pos: 59.5,-21.5
parent: 2
type: Transform
- - uid: 10567
+ - uid: 10576
components:
- rot: -1.5707963267948966 rad
pos: 58.5,-19.5
parent: 2
type: Transform
- - uid: 10568
+ - uid: 10577
components:
- rot: -1.5707963267948966 rad
pos: 57.5,-19.5
parent: 2
type: Transform
- - uid: 10569
+ - uid: 10578
components:
- rot: -1.5707963267948966 rad
pos: 57.5,-18.5
parent: 2
type: Transform
- - uid: 10570
+ - uid: 10579
components:
- rot: -1.5707963267948966 rad
pos: 57.5,-17.5
parent: 2
type: Transform
- - uid: 10571
+ - uid: 10580
components:
- rot: -1.5707963267948966 rad
pos: 52.5,-17.5
parent: 2
type: Transform
- - uid: 10572
+ - uid: 10581
components:
- rot: -1.5707963267948966 rad
pos: 53.5,-17.5
parent: 2
type: Transform
- - uid: 10573
+ - uid: 10582
components:
- rot: -1.5707963267948966 rad
pos: 54.5,-17.5
parent: 2
type: Transform
- - uid: 10574
+ - uid: 10583
components:
- rot: -1.5707963267948966 rad
pos: 55.5,-17.5
parent: 2
type: Transform
- - uid: 10575
+ - uid: 10584
components:
- rot: -1.5707963267948966 rad
pos: 56.5,-17.5
parent: 2
type: Transform
- - uid: 10576
+ - uid: 10585
components:
- pos: 61.5,-58.5
parent: 2
type: Transform
- - uid: 10577
+ - uid: 10586
components:
- pos: 62.5,-58.5
parent: 2
type: Transform
- - uid: 10578
+ - uid: 10587
components:
- pos: 63.5,-58.5
parent: 2
type: Transform
- - uid: 10579
+ - uid: 10588
components:
- pos: 79.5,-43.5
parent: 2
type: Transform
- - uid: 10580
+ - uid: 10589
components:
- pos: 79.5,-42.5
parent: 2
type: Transform
- - uid: 10581
+ - uid: 10590
components:
- pos: -46.5,-55.5
parent: 2
type: Transform
- - uid: 10582
+ - uid: 10591
components:
- pos: -16.5,-0.5
parent: 2
type: Transform
- - uid: 10583
+ - uid: 10592
components:
- pos: -17.5,-0.5
parent: 2
type: Transform
- - uid: 10584
+ - uid: 10593
components:
- pos: -18.5,-0.5
parent: 2
type: Transform
- - uid: 10585
+ - uid: 10594
components:
- pos: -19.5,-0.5
parent: 2
type: Transform
- - uid: 10586
+ - uid: 10595
components:
- pos: -20.5,-0.5
parent: 2
type: Transform
- - uid: 10587
+ - uid: 10596
components:
- pos: -21.5,-0.5
parent: 2
type: Transform
- - uid: 10588
+ - uid: 10597
components:
- pos: -22.5,-0.5
parent: 2
type: Transform
- - uid: 10589
+ - uid: 10598
components:
- rot: 3.141592653589793 rad
pos: 52.5,-85.5
parent: 2
type: Transform
- - uid: 10590
+ - uid: 10599
components:
- rot: 3.141592653589793 rad
pos: 52.5,-86.5
parent: 2
type: Transform
- - uid: 10591
+ - uid: 10600
components:
- rot: 3.141592653589793 rad
pos: 52.5,-87.5
parent: 2
type: Transform
- - uid: 10592
+ - uid: 10601
components:
- rot: 3.141592653589793 rad
pos: 52.5,-92.5
parent: 2
type: Transform
- - uid: 10593
+ - uid: 10602
components:
- rot: 3.141592653589793 rad
pos: 52.5,-77.5
parent: 2
type: Transform
- - uid: 10594
+ - uid: 10603
components:
- rot: 3.141592653589793 rad
pos: 14.5,-89.5
parent: 2
type: Transform
- - uid: 10595
+ - uid: 10604
components:
- rot: 3.141592653589793 rad
pos: 52.5,-78.5
parent: 2
type: Transform
- - uid: 10596
+ - uid: 10605
components:
- rot: 3.141592653589793 rad
pos: 15.5,-89.5
parent: 2
type: Transform
- - uid: 10597
+ - uid: 10606
components:
- rot: 3.141592653589793 rad
pos: 26.5,-89.5
parent: 2
type: Transform
- - uid: 10598
+ - uid: 10607
components:
- rot: 3.141592653589793 rad
pos: 24.5,-89.5
parent: 2
type: Transform
- - uid: 10599
+ - uid: 10608
components:
- rot: 3.141592653589793 rad
pos: 25.5,-89.5
parent: 2
type: Transform
- - uid: 10600
+ - uid: 10609
components:
- rot: 3.141592653589793 rad
pos: 52.5,-84.5
parent: 2
type: Transform
- - uid: 10601
+ - uid: 10610
components:
- rot: 3.141592653589793 rad
pos: 52.5,-94.5
parent: 2
type: Transform
- - uid: 10602
+ - uid: 10611
components:
- rot: 3.141592653589793 rad
pos: 52.5,-79.5
parent: 2
type: Transform
- - uid: 10603
+ - uid: 10612
components:
- rot: 3.141592653589793 rad
pos: 16.5,-89.5
parent: 2
type: Transform
- - uid: 10604
+ - uid: 10613
components:
- rot: 3.141592653589793 rad
pos: 17.5,-89.5
parent: 2
type: Transform
- - uid: 10605
+ - uid: 10614
components:
- rot: 3.141592653589793 rad
pos: 18.5,-89.5
parent: 2
type: Transform
- - uid: 10606
+ - uid: 10615
components:
- rot: 3.141592653589793 rad
pos: 19.5,-89.5
parent: 2
type: Transform
- - uid: 10607
+ - uid: 10616
components:
- rot: 3.141592653589793 rad
pos: 20.5,-89.5
parent: 2
type: Transform
- - uid: 10608
+ - uid: 10617
components:
- rot: 3.141592653589793 rad
pos: 21.5,-89.5
parent: 2
type: Transform
- - uid: 10609
+ - uid: 10618
components:
- rot: 3.141592653589793 rad
pos: 22.5,-89.5
parent: 2
type: Transform
- - uid: 10610
+ - uid: 10619
components:
- rot: 3.141592653589793 rad
pos: 27.5,-89.5
parent: 2
type: Transform
- - uid: 10611
+ - uid: 10620
components:
- rot: 3.141592653589793 rad
pos: 57.5,-74.5
parent: 2
type: Transform
- - uid: 10612
+ - uid: 10621
components:
- rot: 3.141592653589793 rad
pos: 27.5,-93.5
parent: 2
type: Transform
- - uid: 10613
+ - uid: 10622
components:
- rot: 3.141592653589793 rad
pos: 27.5,-94.5
parent: 2
type: Transform
- - uid: 10614
+ - uid: 10623
components:
- rot: 3.141592653589793 rad
pos: 27.5,-91.5
parent: 2
type: Transform
- - uid: 10615
+ - uid: 10624
components:
- rot: 3.141592653589793 rad
pos: 27.5,-92.5
parent: 2
type: Transform
- - uid: 10616
+ - uid: 10625
components:
- rot: 3.141592653589793 rad
pos: 52.5,-91.5
parent: 2
type: Transform
- - uid: 10617
+ - uid: 10626
components:
- rot: 1.5707963267948966 rad
pos: 22.5,-75.5
parent: 2
type: Transform
- - uid: 10618
+ - uid: 10627
components:
- pos: 20.5,-73.5
parent: 2
type: Transform
- - uid: 10619
+ - uid: 10628
components:
- pos: 19.5,-73.5
parent: 2
type: Transform
- - uid: 10620
+ - uid: 10629
components:
- pos: 18.5,-73.5
parent: 2
type: Transform
- - uid: 10621
+ - uid: 10630
components:
- pos: 17.5,-73.5
parent: 2
type: Transform
- - uid: 10622
+ - uid: 10631
components:
- pos: 16.5,-73.5
parent: 2
type: Transform
- - uid: 10623
+ - uid: 10632
components:
- pos: 15.5,-73.5
parent: 2
type: Transform
- - uid: 10624
+ - uid: 10633
components:
- pos: 14.5,-73.5
parent: 2
type: Transform
- - uid: 10625
+ - uid: 10634
components:
- pos: 13.5,-73.5
parent: 2
type: Transform
- - uid: 10626
+ - uid: 10635
components:
- pos: 12.5,-73.5
parent: 2
type: Transform
- - uid: 10627
+ - uid: 10636
components:
- pos: 11.5,-73.5
parent: 2
type: Transform
- - uid: 10628
+ - uid: 10637
components:
- pos: 43.5,-59.5
parent: 2
type: Transform
- - uid: 10629
+ - uid: 10638
components:
- pos: -46.5,-48.5
parent: 2
type: Transform
- - uid: 10630
+ - uid: 10639
components:
- pos: -46.5,-45.5
parent: 2
type: Transform
- - uid: 10631
+ - uid: 10640
components:
- pos: -46.5,-46.5
parent: 2
type: Transform
- - uid: 10632
+ - uid: 10641
components:
- pos: -46.5,-52.5
parent: 2
type: Transform
- - uid: 10633
+ - uid: 10642
components:
- rot: 1.5707963267948966 rad
pos: -19.5,-45.5
parent: 2
type: Transform
- - uid: 10634
+ - uid: 10643
components:
- rot: 1.5707963267948966 rad
pos: -19.5,-46.5
parent: 2
type: Transform
- - uid: 10635
+ - uid: 10644
components:
- rot: 1.5707963267948966 rad
pos: -19.5,-47.5
parent: 2
type: Transform
- - uid: 10636
+ - uid: 10645
components:
- rot: 3.141592653589793 rad
pos: 27.5,-95.5
parent: 2
type: Transform
- - uid: 10637
+ - uid: 10646
components:
- rot: 3.141592653589793 rad
pos: 28.5,-95.5
parent: 2
type: Transform
- - uid: 10638
+ - uid: 10647
components:
- rot: 3.141592653589793 rad
pos: 56.5,-74.5
parent: 2
type: Transform
- - uid: 10639
+ - uid: 10648
components:
- pos: -46.5,-47.5
parent: 2
type: Transform
- - uid: 10640
+ - uid: 10649
components:
- pos: -46.5,-49.5
parent: 2
type: Transform
- - uid: 10641
+ - uid: 10650
components:
- pos: -46.5,-44.5
parent: 2
type: Transform
- - uid: 10642
+ - uid: 10651
components:
- pos: -46.5,-51.5
parent: 2
type: Transform
- - uid: 10643
+ - uid: 10652
components:
- pos: 79.5,-50.5
parent: 2
type: Transform
- - uid: 10644
+ - uid: 10653
components:
- pos: 79.5,-49.5
parent: 2
type: Transform
- - uid: 10645
+ - uid: 10654
components:
- pos: 79.5,-44.5
parent: 2
type: Transform
- - uid: 10646
+ - uid: 10655
components:
- pos: 79.5,-45.5
parent: 2
type: Transform
- - uid: 10647
+ - uid: 10656
components:
- pos: 79.5,-46.5
parent: 2
type: Transform
- - uid: 10648
+ - uid: 10657
components:
- pos: 79.5,-47.5
parent: 2
type: Transform
- - uid: 10649
+ - uid: 10658
components:
- pos: 79.5,-48.5
parent: 2
type: Transform
- - uid: 10650
+ - uid: 10659
components:
- pos: 79.5,-41.5
parent: 2
type: Transform
- - uid: 10651
+ - uid: 10660
components:
- pos: 68.5,-74.5
parent: 2
type: Transform
- - uid: 10652
+ - uid: 10661
components:
- pos: 68.5,-73.5
parent: 2
type: Transform
- - uid: 10653
+ - uid: 10662
components:
- pos: -23.5,-26.5
parent: 2
type: Transform
- - uid: 10654
+ - uid: 10663
components:
- pos: -24.5,-26.5
parent: 2
type: Transform
- - uid: 10655
+ - uid: 10664
components:
- pos: -25.5,-26.5
parent: 2
type: Transform
- - uid: 10656
+ - uid: 10665
components:
- pos: -26.5,-26.5
parent: 2
type: Transform
- - uid: 10657
+ - uid: 10666
components:
- pos: -27.5,-26.5
parent: 2
type: Transform
- - uid: 10658
+ - uid: 10667
components:
- pos: -28.5,-26.5
parent: 2
type: Transform
- - uid: 10659
+ - uid: 10668
components:
- pos: 68.5,-72.5
parent: 2
type: Transform
- - uid: 10660
+ - uid: 10669
components:
- pos: 68.5,-71.5
parent: 2
type: Transform
- - uid: 10661
+ - uid: 10670
components:
- pos: 36.5,-56.5
parent: 2
type: Transform
- - uid: 10662
+ - uid: 10671
components:
- pos: 36.5,-54.5
parent: 2
type: Transform
- - uid: 10663
+ - uid: 10672
components:
- pos: 36.5,-53.5
parent: 2
type: Transform
- - uid: 10664
+ - uid: 10673
components:
- pos: 36.5,-52.5
parent: 2
type: Transform
- - uid: 10665
+ - uid: 10674
components:
- pos: 38.5,-51.5
parent: 2
type: Transform
- - uid: 10666
+ - uid: 10675
components:
- pos: 39.5,-51.5
parent: 2
type: Transform
- - uid: 10667
+ - uid: 10676
components:
- pos: 40.5,-51.5
parent: 2
type: Transform
- - uid: 10668
+ - uid: 10677
components:
- pos: 41.5,-51.5
parent: 2
type: Transform
- - uid: 10669
- components:
- - pos: 13.5,-47.5
- parent: 2
- type: Transform
- - uid: 10670
- components:
- - pos: 13.5,-45.5
- parent: 2
- type: Transform
- - uid: 10671
- components:
- - pos: 15.5,-45.5
- parent: 2
- type: Transform
- - uid: 10672
- components:
- - pos: 16.5,-45.5
- parent: 2
- type: Transform
- - uid: 10673
- components:
- - pos: 17.5,-45.5
- parent: 2
- type: Transform
- - uid: 10674
+ - uid: 10678
components:
- rot: 3.141592653589793 rad
pos: -1.5,-71.5
parent: 2
type: Transform
- - uid: 10675
+ - uid: 10679
components:
- pos: 8.5,-56.5
parent: 2
type: Transform
- - uid: 10676
+ - uid: 10680
components:
- pos: 62.5,-17.5
parent: 2
type: Transform
- - uid: 10677
+ - uid: 10681
components:
- pos: 62.5,-18.5
parent: 2
type: Transform
- - uid: 10678
+ - uid: 10682
components:
- pos: 62.5,-19.5
parent: 2
type: Transform
- - uid: 10679
+ - uid: 10683
components:
- pos: 62.5,-20.5
parent: 2
type: Transform
- - uid: 10680
+ - uid: 10684
components:
- pos: 62.5,-21.5
parent: 2
type: Transform
- - uid: 10681
+ - uid: 10685
components:
- pos: 62.5,-22.5
parent: 2
type: Transform
- - uid: 10682
+ - uid: 10686
components:
- pos: 62.5,-23.5
parent: 2
type: Transform
- - uid: 10683
+ - uid: 10687
components:
- pos: -46.5,-9.5
parent: 2
type: Transform
- - uid: 10684
+ - uid: 10688
components:
- pos: -46.5,-10.5
parent: 2
type: Transform
- - uid: 10685
+ - uid: 10689
components:
- pos: -46.5,-11.5
parent: 2
type: Transform
- - uid: 10686
+ - uid: 10690
components:
- pos: -46.5,-12.5
parent: 2
type: Transform
- - uid: 10687
+ - uid: 10691
components:
- pos: -46.5,-13.5
parent: 2
type: Transform
- - uid: 10688
+ - uid: 10692
components:
- pos: -46.5,-14.5
parent: 2
type: Transform
- - uid: 10689
+ - uid: 10693
components:
- pos: -46.5,-15.5
parent: 2
type: Transform
- - uid: 10690
+ - uid: 10694
components:
- pos: -46.5,-16.5
parent: 2
type: Transform
- - uid: 10691
+ - uid: 10695
components:
- rot: -1.5707963267948966 rad
pos: -59.5,-12.5
parent: 2
type: Transform
- - uid: 10692
+ - uid: 10696
components:
- rot: -1.5707963267948966 rad
pos: -59.5,-13.5
parent: 2
type: Transform
- - uid: 10693
+ - uid: 10697
components:
- rot: -1.5707963267948966 rad
pos: -59.5,-14.5
parent: 2
type: Transform
- - uid: 10694
+ - uid: 10698
components:
- rot: -1.5707963267948966 rad
pos: -59.5,-15.5
parent: 2
type: Transform
- - uid: 10695
+ - uid: 10699
components:
- rot: -1.5707963267948966 rad
pos: -59.5,-16.5
parent: 2
type: Transform
- - uid: 10696
+ - uid: 10700
components:
- rot: -1.5707963267948966 rad
pos: -59.5,-17.5
parent: 2
type: Transform
- - uid: 10697
+ - uid: 10701
components:
- rot: -1.5707963267948966 rad
pos: -59.5,-18.5
parent: 2
type: Transform
- - uid: 10698
+ - uid: 10702
components:
- rot: -1.5707963267948966 rad
pos: -59.5,-19.5
parent: 2
type: Transform
- - uid: 10699
+ - uid: 10703
components:
- rot: -1.5707963267948966 rad
pos: -59.5,-20.5
parent: 2
type: Transform
- - uid: 10700
+ - uid: 10704
components:
- rot: -1.5707963267948966 rad
pos: -60.5,-20.5
parent: 2
type: Transform
- - uid: 10701
+ - uid: 10705
components:
- rot: -1.5707963267948966 rad
pos: -61.5,-20.5
parent: 2
type: Transform
- - uid: 10702
+ - uid: 10706
components:
- rot: -1.5707963267948966 rad
pos: -62.5,-20.5
parent: 2
type: Transform
- - uid: 10703
+ - uid: 10707
components:
- rot: -1.5707963267948966 rad
pos: -63.5,-20.5
parent: 2
type: Transform
- - uid: 10704
+ - uid: 10708
components:
- rot: -1.5707963267948966 rad
pos: -64.5,-20.5
parent: 2
type: Transform
- - uid: 10705
+ - uid: 10709
components:
- rot: -1.5707963267948966 rad
pos: -65.5,-20.5
parent: 2
type: Transform
- - uid: 10706
+ - uid: 10710
components:
- rot: -1.5707963267948966 rad
pos: -66.5,-20.5
parent: 2
type: Transform
- - uid: 10707
+ - uid: 10711
components:
- rot: -1.5707963267948966 rad
pos: -67.5,-20.5
parent: 2
type: Transform
- - uid: 10708
+ - uid: 10712
components:
- rot: -1.5707963267948966 rad
pos: -68.5,-20.5
parent: 2
type: Transform
- - uid: 10709
+ - uid: 10713
components:
- rot: -1.5707963267948966 rad
pos: -69.5,-20.5
parent: 2
type: Transform
- - uid: 10710
+ - uid: 10714
components:
- rot: -1.5707963267948966 rad
pos: -70.5,-20.5
parent: 2
type: Transform
- - uid: 10711
+ - uid: 10715
components:
- rot: -1.5707963267948966 rad
pos: -71.5,-20.5
parent: 2
type: Transform
- - uid: 10712
+ - uid: 10716
components:
- rot: -1.5707963267948966 rad
pos: -72.5,-20.5
parent: 2
type: Transform
- - uid: 10713
+ - uid: 10717
components:
- rot: -1.5707963267948966 rad
pos: -73.5,-20.5
parent: 2
type: Transform
- - uid: 10714
+ - uid: 10718
components:
- rot: -1.5707963267948966 rad
pos: -73.5,-19.5
parent: 2
type: Transform
- - uid: 10715
+ - uid: 10719
components:
- rot: -1.5707963267948966 rad
pos: -73.5,-18.5
parent: 2
type: Transform
- - uid: 10716
+ - uid: 10720
components:
- rot: -1.5707963267948966 rad
pos: -73.5,-17.5
parent: 2
type: Transform
- - uid: 10717
+ - uid: 10721
components:
- rot: -1.5707963267948966 rad
pos: -73.5,-16.5
parent: 2
type: Transform
- - uid: 10718
+ - uid: 10722
components:
- rot: -1.5707963267948966 rad
pos: -73.5,-15.5
parent: 2
type: Transform
- - uid: 10719
+ - uid: 10723
components:
- rot: -1.5707963267948966 rad
pos: -73.5,-14.5
parent: 2
type: Transform
- - uid: 10720
+ - uid: 10724
components:
- rot: -1.5707963267948966 rad
pos: -73.5,-13.5
parent: 2
type: Transform
- - uid: 10721
+ - uid: 10725
components:
- rot: -1.5707963267948966 rad
pos: -73.5,-12.5
parent: 2
type: Transform
- - uid: 10722
+ - uid: 10726
components:
- rot: -1.5707963267948966 rad
pos: -73.5,-11.5
parent: 2
type: Transform
- - uid: 10723
+ - uid: 10727
components:
- rot: -1.5707963267948966 rad
pos: -73.5,-10.5
parent: 2
type: Transform
- - uid: 10724
+ - uid: 10728
components:
- rot: -1.5707963267948966 rad
pos: -73.5,-9.5
parent: 2
type: Transform
- - uid: 10725
+ - uid: 10729
components:
- rot: -1.5707963267948966 rad
pos: -73.5,-8.5
parent: 2
type: Transform
- - uid: 10726
+ - uid: 10730
components:
- rot: -1.5707963267948966 rad
pos: -73.5,-7.5
parent: 2
type: Transform
- - uid: 10727
+ - uid: 10731
components:
- rot: -1.5707963267948966 rad
pos: -73.5,-6.5
parent: 2
type: Transform
- - uid: 10728
+ - uid: 10732
components:
- rot: -1.5707963267948966 rad
pos: -72.5,-6.5
parent: 2
type: Transform
- - uid: 10729
+ - uid: 10733
components:
- rot: -1.5707963267948966 rad
pos: -71.5,-6.5
parent: 2
type: Transform
- - uid: 10730
+ - uid: 10734
components:
- rot: -1.5707963267948966 rad
pos: -70.5,-6.5
parent: 2
type: Transform
- - uid: 10731
+ - uid: 10735
components:
- rot: -1.5707963267948966 rad
pos: -69.5,-6.5
parent: 2
type: Transform
- - uid: 10732
+ - uid: 10736
components:
- rot: -1.5707963267948966 rad
pos: -68.5,-6.5
parent: 2
type: Transform
- - uid: 10733
+ - uid: 10737
components:
- rot: -1.5707963267948966 rad
pos: -67.5,-6.5
parent: 2
type: Transform
- - uid: 10734
+ - uid: 10738
components:
- rot: -1.5707963267948966 rad
pos: -66.5,-6.5
parent: 2
type: Transform
- - uid: 10735
+ - uid: 10739
components:
- rot: -1.5707963267948966 rad
pos: -65.5,-6.5
parent: 2
type: Transform
- - uid: 10736
+ - uid: 10740
components:
- rot: -1.5707963267948966 rad
pos: -64.5,-6.5
parent: 2
type: Transform
- - uid: 10737
+ - uid: 10741
components:
- rot: -1.5707963267948966 rad
pos: -63.5,-6.5
parent: 2
type: Transform
- - uid: 10738
+ - uid: 10742
components:
- rot: -1.5707963267948966 rad
pos: -62.5,-6.5
parent: 2
type: Transform
- - uid: 10739
+ - uid: 10743
components:
- rot: -1.5707963267948966 rad
pos: -61.5,-6.5
parent: 2
type: Transform
- - uid: 10740
+ - uid: 10744
components:
- rot: -1.5707963267948966 rad
pos: -60.5,-6.5
parent: 2
type: Transform
- - uid: 10741
+ - uid: 10745
components:
- rot: -1.5707963267948966 rad
pos: -59.5,-6.5
parent: 2
type: Transform
- - uid: 10742
+ - uid: 10746
components:
- rot: -1.5707963267948966 rad
pos: -59.5,-7.5
parent: 2
type: Transform
- - uid: 10743
+ - uid: 10747
components:
- rot: -1.5707963267948966 rad
pos: -59.5,-8.5
parent: 2
type: Transform
- - uid: 10744
+ - uid: 10748
components:
- rot: -1.5707963267948966 rad
pos: -59.5,-9.5
parent: 2
type: Transform
- - uid: 10745
+ - uid: 10749
components:
- rot: -1.5707963267948966 rad
pos: -59.5,-10.5
parent: 2
type: Transform
- - uid: 10746
+ - uid: 10750
components:
- rot: -1.5707963267948966 rad
pos: -59.5,-11.5
parent: 2
type: Transform
- - uid: 10747
+ - uid: 10751
components:
- rot: -1.5707963267948966 rad
pos: -79.5,-1.5
parent: 2
type: Transform
- - uid: 10748
+ - uid: 10752
components:
- rot: -1.5707963267948966 rad
pos: -79.5,-2.5
parent: 2
type: Transform
- - uid: 10749
+ - uid: 10753
components:
- rot: -1.5707963267948966 rad
pos: -79.5,-3.5
parent: 2
type: Transform
- - uid: 10750
+ - uid: 10754
components:
- rot: -1.5707963267948966 rad
pos: -79.5,-4.5
parent: 2
type: Transform
- - uid: 10751
+ - uid: 10755
components:
- rot: -1.5707963267948966 rad
pos: -79.5,-5.5
parent: 2
type: Transform
- - uid: 10752
+ - uid: 10756
components:
- rot: -1.5707963267948966 rad
pos: -79.5,-6.5
parent: 2
type: Transform
- - uid: 10753
+ - uid: 10757
components:
- rot: -1.5707963267948966 rad
pos: -79.5,-7.5
parent: 2
type: Transform
- - uid: 10754
+ - uid: 10758
components:
- rot: -1.5707963267948966 rad
pos: -79.5,-8.5
parent: 2
type: Transform
- - uid: 10755
+ - uid: 10759
components:
- rot: -1.5707963267948966 rad
pos: -79.5,-9.5
parent: 2
type: Transform
- - uid: 10756
+ - uid: 10760
components:
- rot: -1.5707963267948966 rad
pos: -79.5,-10.5
parent: 2
type: Transform
- - uid: 10757
+ - uid: 10761
components:
- rot: -1.5707963267948966 rad
pos: -79.5,-11.5
parent: 2
type: Transform
- - uid: 10758
+ - uid: 10762
components:
- rot: -1.5707963267948966 rad
pos: -79.5,-15.5
parent: 2
type: Transform
- - uid: 10759
+ - uid: 10763
components:
- rot: -1.5707963267948966 rad
pos: -79.5,-19.5
parent: 2
type: Transform
- - uid: 10760
+ - uid: 10764
components:
- rot: -1.5707963267948966 rad
pos: -79.5,-22.5
parent: 2
type: Transform
- - uid: 10761
+ - uid: 10765
components:
- rot: -1.5707963267948966 rad
pos: -79.5,-26.5
parent: 2
type: Transform
- - uid: 10762
+ - uid: 10766
components:
- rot: -1.5707963267948966 rad
pos: -78.5,-1.5
parent: 2
type: Transform
- - uid: 10763
+ - uid: 10767
components:
- rot: -1.5707963267948966 rad
pos: -77.5,-1.5
parent: 2
type: Transform
- - uid: 10764
+ - uid: 10768
components:
- rot: -1.5707963267948966 rad
pos: -76.5,-1.5
parent: 2
type: Transform
- - uid: 10765
+ - uid: 10769
components:
- rot: -1.5707963267948966 rad
pos: -75.5,-1.5
parent: 2
type: Transform
- - uid: 10766
+ - uid: 10770
components:
- rot: -1.5707963267948966 rad
pos: -74.5,-1.5
parent: 2
type: Transform
- - uid: 10767
+ - uid: 10771
components:
- rot: -1.5707963267948966 rad
pos: -73.5,-1.5
parent: 2
type: Transform
- - uid: 10768
+ - uid: 10772
components:
- rot: -1.5707963267948966 rad
pos: -72.5,-1.5
parent: 2
type: Transform
- - uid: 10769
+ - uid: 10773
components:
- rot: -1.5707963267948966 rad
pos: -71.5,-1.5
parent: 2
type: Transform
- - uid: 10770
+ - uid: 10774
components:
- rot: -1.5707963267948966 rad
pos: -70.5,-1.5
parent: 2
type: Transform
- - uid: 10771
+ - uid: 10775
components:
- rot: -1.5707963267948966 rad
pos: -69.5,-1.5
parent: 2
type: Transform
- - uid: 10772
+ - uid: 10776
components:
- rot: -1.5707963267948966 rad
pos: -68.5,-1.5
parent: 2
type: Transform
- - uid: 10773
+ - uid: 10777
components:
- rot: -1.5707963267948966 rad
pos: -67.5,-1.5
parent: 2
type: Transform
- - uid: 10774
+ - uid: 10778
components:
- rot: -1.5707963267948966 rad
pos: -66.5,-1.5
parent: 2
type: Transform
- - uid: 10775
+ - uid: 10779
components:
- rot: -1.5707963267948966 rad
pos: -65.5,-1.5
parent: 2
type: Transform
- - uid: 10776
+ - uid: 10780
components:
- rot: -1.5707963267948966 rad
pos: -64.5,-1.5
parent: 2
type: Transform
- - uid: 10777
+ - uid: 10781
components:
- rot: -1.5707963267948966 rad
pos: -63.5,-1.5
parent: 2
type: Transform
- - uid: 10778
+ - uid: 10782
components:
- rot: -1.5707963267948966 rad
pos: -62.5,-1.5
parent: 2
type: Transform
- - uid: 10779
+ - uid: 10783
components:
- rot: -1.5707963267948966 rad
pos: -61.5,-1.5
parent: 2
type: Transform
- - uid: 10780
+ - uid: 10784
components:
- rot: -1.5707963267948966 rad
pos: -60.5,-1.5
parent: 2
type: Transform
- - uid: 10781
+ - uid: 10785
components:
- rot: -1.5707963267948966 rad
pos: -59.5,-1.5
parent: 2
type: Transform
- - uid: 10782
+ - uid: 10786
components:
- rot: -1.5707963267948966 rad
pos: -58.5,-1.5
parent: 2
type: Transform
- - uid: 10783
+ - uid: 10787
components:
- pos: -25.5,-58.5
parent: 2
type: Transform
- - uid: 10784
+ - uid: 10788
components:
- pos: -28.5,-66.5
parent: 2
type: Transform
- - uid: 10785
+ - uid: 10789
components:
- pos: -29.5,-66.5
parent: 2
type: Transform
- - uid: 10786
+ - uid: 10790
components:
- pos: -30.5,-66.5
parent: 2
type: Transform
- - uid: 10787
+ - uid: 10791
components:
- pos: -31.5,-66.5
parent: 2
type: Transform
- - uid: 10788
+ - uid: 10792
components:
- pos: -32.5,-66.5
parent: 2
type: Transform
- - uid: 10789
+ - uid: 10793
components:
- pos: -33.5,-66.5
parent: 2
type: Transform
- - uid: 10790
+ - uid: 10794
components:
- pos: -34.5,-66.5
parent: 2
type: Transform
- - uid: 10791
+ - uid: 10795
components:
- pos: -35.5,-66.5
parent: 2
type: Transform
- - uid: 10792
+ - uid: 10796
components:
- pos: -24.5,-51.5
parent: 2
type: Transform
- - uid: 10793
+ - uid: 10797
components:
- pos: -25.5,-51.5
parent: 2
type: Transform
- - uid: 10794
+ - uid: 10798
components:
- pos: -26.5,-51.5
parent: 2
type: Transform
- - uid: 10795
+ - uid: 10799
components:
- pos: -27.5,-51.5
parent: 2
type: Transform
- - uid: 10796
+ - uid: 10800
components:
- pos: -28.5,-51.5
parent: 2
type: Transform
- - uid: 10797
+ - uid: 10801
components:
- pos: -29.5,-51.5
parent: 2
type: Transform
- - uid: 10798
+ - uid: 10802
components:
- pos: -25.5,-41.5
parent: 2
type: Transform
- - uid: 10799
+ - uid: 10803
components:
- pos: -25.5,-42.5
parent: 2
type: Transform
- - uid: 10800
+ - uid: 10804
components:
- pos: -25.5,-43.5
parent: 2
type: Transform
- - uid: 10801
+ - uid: 10805
components:
- pos: -25.5,-44.5
parent: 2
type: Transform
- - uid: 10802
+ - uid: 10806
components:
- pos: -25.5,-45.5
parent: 2
type: Transform
- - uid: 10803
+ - uid: 10807
components:
- pos: -25.5,-46.5
parent: 2
type: Transform
- - uid: 10804
+ - uid: 10808
components:
- pos: -26.5,-46.5
parent: 2
type: Transform
- - uid: 10805
+ - uid: 10809
components:
- pos: -25.5,-47.5
parent: 2
type: Transform
- - uid: 10806
+ - uid: 10810
components:
- pos: -25.5,-47.5
parent: 2
type: Transform
- - uid: 10807
+ - uid: 10811
components:
- pos: -26.5,-47.5
parent: 2
type: Transform
- - uid: 10808
+ - uid: 10812
components:
- pos: -26.5,-39.5
parent: 2
type: Transform
- - uid: 10809
+ - uid: 10813
components:
- pos: -26.5,-40.5
parent: 2
type: Transform
- - uid: 10810
+ - uid: 10814
components:
- pos: -25.5,-40.5
parent: 2
type: Transform
- - uid: 10811
+ - uid: 10815
components:
- pos: -25.5,-39.5
parent: 2
type: Transform
- - uid: 10812
+ - uid: 10816
components:
- pos: -47.5,-67.5
parent: 2
type: Transform
- - uid: 10813
+ - uid: 10817
components:
- pos: -47.5,-66.5
parent: 2
type: Transform
- - uid: 10814
+ - uid: 10818
components:
- pos: -47.5,-68.5
parent: 2
type: Transform
- - uid: 10815
+ - uid: 10819
components:
- pos: -46.5,-66.5
parent: 2
type: Transform
- - uid: 10816
+ - uid: 10820
components:
- pos: -46.5,-67.5
parent: 2
type: Transform
- - uid: 10817
+ - uid: 10821
components:
- pos: -46.5,-68.5
parent: 2
type: Transform
- - uid: 10818
+ - uid: 10822
components:
- pos: 46.5,-11.5
parent: 2
type: Transform
- - uid: 10819
+ - uid: 10823
components:
- pos: 45.5,-11.5
parent: 2
type: Transform
- - uid: 10820
+ - uid: 10824
components:
- pos: 44.5,-11.5
parent: 2
type: Transform
- - uid: 10821
+ - uid: 10825
components:
- pos: 43.5,-11.5
parent: 2
type: Transform
- - uid: 10822
+ - uid: 10826
components:
- pos: 42.5,-11.5
parent: 2
type: Transform
- - uid: 10823
+ - uid: 10827
components:
- pos: 40.5,-7.5
parent: 2
type: Transform
- - uid: 10824
+ - uid: 10828
components:
- pos: 40.5,-8.5
parent: 2
type: Transform
- - uid: 10825
+ - uid: 10829
components:
- pos: 40.5,-9.5
parent: 2
type: Transform
- - uid: 10826
+ - uid: 10830
components:
- pos: 40.5,-10.5
parent: 2
type: Transform
- - uid: 10827
+ - uid: 10831
components:
- pos: 40.5,-11.5
parent: 2
type: Transform
- - uid: 10828
+ - uid: 10832
components:
- pos: 30.5,-8.5
parent: 2
type: Transform
- - uid: 10829
+ - uid: 10833
components:
- pos: 31.5,-8.5
parent: 2
type: Transform
- - uid: 10830
+ - uid: 10834
components:
- pos: 33.5,-8.5
parent: 2
type: Transform
- - uid: 10831
+ - uid: 10835
components:
- pos: 34.5,-8.5
parent: 2
type: Transform
- - uid: 10832
+ - uid: 10836
components:
- pos: 35.5,-8.5
parent: 2
type: Transform
- - uid: 10833
+ - uid: 10837
components:
- pos: 30.5,-13.5
parent: 2
type: Transform
- - uid: 10834
+ - uid: 10838
components:
- pos: 37.5,-8.5
parent: 2
type: Transform
- - uid: 10835
+ - uid: 10839
components:
- pos: -46.5,-42.5
parent: 2
type: Transform
- - uid: 10836
+ - uid: 10840
components:
- pos: -20.5,-52.5
parent: 2
type: Transform
- - uid: 10837
+ - uid: 10841
components:
- pos: -37.5,-21.5
parent: 2
type: Transform
- - uid: 10838
+ - uid: 10842
components:
- pos: -37.5,-22.5
parent: 2
type: Transform
- - uid: 10839
+ - uid: 10843
components:
- pos: -37.5,-23.5
parent: 2
type: Transform
- - uid: 10840
+ - uid: 10844
components:
- pos: -37.5,-24.5
parent: 2
type: Transform
- - uid: 10841
+ - uid: 10845
components:
- pos: -43.5,-26.5
parent: 2
type: Transform
- - uid: 10842
+ - uid: 10846
components:
- pos: -42.5,-26.5
parent: 2
type: Transform
- - uid: 10843
+ - uid: 10847
components:
- pos: -41.5,-26.5
parent: 2
type: Transform
- - uid: 10844
+ - uid: 10848
components:
- pos: -40.5,-26.5
parent: 2
type: Transform
- - uid: 10845
+ - uid: 10849
components:
- pos: -39.5,-26.5
parent: 2
type: Transform
- - uid: 10846
+ - uid: 10850
components:
- pos: -38.5,-26.5
parent: 2
type: Transform
- - uid: 10847
+ - uid: 10851
components:
- pos: -48.5,-32.5
parent: 2
type: Transform
- - uid: 10848
+ - uid: 10852
components:
- pos: -52.5,-32.5
parent: 2
type: Transform
- - uid: 10849
+ - uid: 10853
components:
- pos: 69.5,3.5
parent: 2
type: Transform
- - uid: 10850
+ - uid: 10854
components:
- pos: -2.5,29.5
parent: 2
type: Transform
- - uid: 10851
+ - uid: 10855
components:
- rot: 3.141592653589793 rad
pos: 14.5,32.5
parent: 2
type: Transform
- - uid: 10852
+ - uid: 10856
components:
- rot: 3.141592653589793 rad
pos: 13.5,32.5
parent: 2
type: Transform
- - uid: 10853
+ - uid: 10857
components:
- rot: 3.141592653589793 rad
pos: 2.5,32.5
parent: 2
type: Transform
- - uid: 10854
+ - uid: 10858
components:
- rot: 3.141592653589793 rad
pos: 19.5,25.5
parent: 2
type: Transform
- - uid: 10855
+ - uid: 10859
components:
- rot: 3.141592653589793 rad
pos: 18.5,25.5
parent: 2
type: Transform
- - uid: 10856
+ - uid: 10860
components:
- rot: 3.141592653589793 rad
pos: 17.5,25.5
parent: 2
type: Transform
- - uid: 10857
+ - uid: 10861
components:
- rot: 3.141592653589793 rad
pos: 16.5,25.5
parent: 2
type: Transform
- - uid: 10858
+ - uid: 10862
components:
- rot: 3.141592653589793 rad
pos: 15.5,25.5
parent: 2
type: Transform
- - uid: 10859
+ - uid: 10863
components:
- rot: 3.141592653589793 rad
pos: 14.5,25.5
parent: 2
type: Transform
- - uid: 10860
+ - uid: 10864
components:
- rot: 3.141592653589793 rad
pos: 13.5,25.5
parent: 2
type: Transform
- - uid: 10861
+ - uid: 10865
components:
- rot: 3.141592653589793 rad
pos: 16.5,27.5
parent: 2
type: Transform
- - uid: 10862
+ - uid: 10866
components:
- rot: 3.141592653589793 rad
pos: 16.5,26.5
parent: 2
type: Transform
- - uid: 10863
+ - uid: 10867
components:
- rot: 3.141592653589793 rad
pos: 8.5,24.5
parent: 2
type: Transform
- - uid: 10864
+ - uid: 10868
components:
- rot: 3.141592653589793 rad
pos: 7.5,24.5
parent: 2
type: Transform
- - uid: 10865
+ - uid: 10869
components:
- rot: 3.141592653589793 rad
pos: 6.5,24.5
parent: 2
type: Transform
- - uid: 10866
+ - uid: 10870
components:
- rot: 3.141592653589793 rad
pos: 5.5,24.5
parent: 2
type: Transform
- - uid: 10867
+ - uid: 10871
components:
- rot: 3.141592653589793 rad
pos: 4.5,24.5
parent: 2
type: Transform
- - uid: 10868
+ - uid: 10872
components:
- rot: 3.141592653589793 rad
pos: 3.5,24.5
parent: 2
type: Transform
- - uid: 10869
+ - uid: 10873
components:
- rot: 3.141592653589793 rad
pos: 2.5,24.5
parent: 2
type: Transform
- - uid: 10870
+ - uid: 10874
components:
- rot: 3.141592653589793 rad
pos: 1.5,24.5
parent: 2
type: Transform
- - uid: 10871
+ - uid: 10875
components:
- rot: 3.141592653589793 rad
pos: 0.5,24.5
parent: 2
type: Transform
- - uid: 10872
+ - uid: 10876
components:
- rot: 3.141592653589793 rad
pos: -3.5,23.5
parent: 2
type: Transform
- - uid: 10873
+ - uid: 10877
components:
- rot: 3.141592653589793 rad
pos: -4.5,23.5
parent: 2
type: Transform
- - uid: 10874
+ - uid: 10878
components:
- rot: 3.141592653589793 rad
pos: -5.5,23.5
parent: 2
type: Transform
- - uid: 10875
+ - uid: 10879
components:
- rot: 3.141592653589793 rad
pos: -6.5,23.5
parent: 2
type: Transform
- - uid: 10876
+ - uid: 10880
components:
- rot: 3.141592653589793 rad
pos: -7.5,23.5
parent: 2
type: Transform
- - uid: 10877
+ - uid: 10881
components:
- pos: -11.5,18.5
parent: 2
type: Transform
- - uid: 10878
+ - uid: 10882
components:
- pos: -11.5,15.5
parent: 2
type: Transform
- - uid: 10879
+ - uid: 10883
components:
- pos: -12.5,24.5
parent: 2
type: Transform
- - uid: 10880
+ - uid: 10884
components:
- rot: -1.5707963267948966 rad
pos: 65.5,-24.5
parent: 2
type: Transform
- - uid: 10881
+ - uid: 10885
components:
- rot: -1.5707963267948966 rad
pos: 65.5,-23.5
parent: 2
type: Transform
- - uid: 10882
+ - uid: 10886
components:
- rot: -1.5707963267948966 rad
pos: 65.5,-22.5
parent: 2
type: Transform
- - uid: 10883
+ - uid: 10887
components:
- rot: -1.5707963267948966 rad
pos: 65.5,-21.5
parent: 2
type: Transform
- - uid: 10884
+ - uid: 10888
components:
- pos: 67.5,-18.5
parent: 2
type: Transform
- - uid: 10885
+ - uid: 10889
components:
- pos: -45.5,46.5
parent: 2
type: Transform
- - uid: 10886
+ - uid: 10890
components:
- pos: -45.5,47.5
parent: 2
type: Transform
- - uid: 10887
+ - uid: 10891
components:
- pos: -45.5,48.5
parent: 2
type: Transform
- - uid: 10888
+ - uid: 10892
components:
- pos: -45.5,49.5
parent: 2
type: Transform
- - uid: 10889
+ - uid: 10893
components:
- rot: -1.5707963267948966 rad
pos: -41.5,46.5
parent: 2
type: Transform
- - uid: 10890
+ - uid: 10894
components:
- rot: -1.5707963267948966 rad
pos: -42.5,46.5
parent: 2
type: Transform
- - uid: 10891
+ - uid: 10895
components:
- rot: -1.5707963267948966 rad
pos: -43.5,46.5
parent: 2
type: Transform
- - uid: 10892
+ - uid: 10896
components:
- rot: -1.5707963267948966 rad
pos: -44.5,46.5
parent: 2
type: Transform
- - uid: 10893
+ - uid: 10897
components:
- pos: -40.5,45.5
parent: 2
type: Transform
- - uid: 10894
+ - uid: 10898
components:
- pos: -39.5,45.5
parent: 2
type: Transform
- - uid: 10895
+ - uid: 10899
components:
- pos: -38.5,45.5
parent: 2
type: Transform
- - uid: 10896
+ - uid: 10900
components:
- pos: -40.5,46.5
parent: 2
type: Transform
- - uid: 10897
+ - uid: 10901
components:
- pos: -40.5,47.5
parent: 2
type: Transform
- - uid: 10898
+ - uid: 10902
components:
- pos: -40.5,48.5
parent: 2
type: Transform
- - uid: 10899
+ - uid: 10903
components:
- pos: -40.5,49.5
parent: 2
type: Transform
- - uid: 10900
+ - uid: 10904
components:
- pos: -40.5,50.5
parent: 2
type: Transform
- - uid: 10901
+ - uid: 10905
components:
- pos: -40.5,51.5
parent: 2
type: Transform
- - uid: 10902
+ - uid: 10906
components:
- pos: -40.5,52.5
parent: 2
type: Transform
- - uid: 10903
+ - uid: 10907
components:
- pos: -40.5,53.5
parent: 2
type: Transform
- - uid: 10904
+ - uid: 10908
components:
- pos: -48.5,53.5
parent: 2
type: Transform
- - uid: 10905
+ - uid: 10909
components:
- pos: -47.5,53.5
parent: 2
type: Transform
- - uid: 10906
+ - uid: 10910
components:
- pos: -46.5,53.5
parent: 2
type: Transform
- - uid: 10907
+ - uid: 10911
components:
- pos: -45.5,53.5
parent: 2
type: Transform
- - uid: 10908
+ - uid: 10912
components:
- pos: -44.5,53.5
parent: 2
type: Transform
- - uid: 10909
+ - uid: 10913
components:
- pos: -43.5,53.5
parent: 2
type: Transform
- - uid: 10910
+ - uid: 10914
components:
- pos: -42.5,53.5
parent: 2
type: Transform
- - uid: 10911
+ - uid: 10915
components:
- pos: -41.5,53.5
parent: 2
type: Transform
- - uid: 10912
+ - uid: 10916
components:
- pos: -40.5,53.5
parent: 2
type: Transform
- - uid: 10913
+ - uid: 10917
components:
- pos: -39.5,53.5
parent: 2
type: Transform
- - uid: 10914
+ - uid: 10918
components:
- pos: -49.5,0.5
parent: 2
type: Transform
- - uid: 10915
+ - uid: 10919
components:
- pos: -49.5,-0.5
parent: 2
type: Transform
- - uid: 10916
+ - uid: 10920
components:
- pos: -49.5,-1.5
parent: 2
type: Transform
- - uid: 10917
+ - uid: 10921
components:
- pos: -49.5,-2.5
parent: 2
type: Transform
- - uid: 10918
+ - uid: 10922
components:
- pos: -49.5,-3.5
parent: 2
type: Transform
- - uid: 10919
+ - uid: 10923
components:
- pos: -50.5,-3.5
parent: 2
type: Transform
- - uid: 10920
+ - uid: 10924
components:
- pos: -51.5,-3.5
parent: 2
type: Transform
- - uid: 10921
+ - uid: 10925
components:
- pos: -51.5,-2.5
parent: 2
type: Transform
- - uid: 10922
+ - uid: 10926
components:
- pos: -51.5,-1.5
parent: 2
type: Transform
- - uid: 10923
+ - uid: 10927
components:
- pos: -51.5,-0.5
parent: 2
type: Transform
- - uid: 10924
+ - uid: 10928
components:
- pos: -51.5,0.5
parent: 2
type: Transform
- - uid: 10925
+ - uid: 10929
components:
- pos: -51.5,1.5
parent: 2
type: Transform
- - uid: 10926
+ - uid: 10930
components:
- pos: -38.5,-2.5
parent: 2
type: Transform
- - uid: 10927
+ - uid: 10931
components:
- pos: -37.5,-2.5
parent: 2
type: Transform
- - uid: 10928
+ - uid: 10932
components:
- pos: -36.5,-2.5
parent: 2
type: Transform
- - uid: 10929
+ - uid: 10933
components:
- rot: -1.5707963267948966 rad
pos: -38.5,53.5
parent: 2
type: Transform
- - uid: 10930
+ - uid: 10934
components:
- rot: -1.5707963267948966 rad
pos: -37.5,53.5
parent: 2
type: Transform
- - uid: 10931
+ - uid: 10935
components:
- rot: -1.5707963267948966 rad
pos: -36.5,53.5
parent: 2
type: Transform
- - uid: 10932
+ - uid: 10936
components:
- rot: -1.5707963267948966 rad
pos: -35.5,53.5
parent: 2
type: Transform
- - uid: 10933
+ - uid: 10937
components:
- rot: -1.5707963267948966 rad
pos: -34.5,53.5
parent: 2
type: Transform
- - uid: 10934
+ - uid: 10938
components:
- rot: -1.5707963267948966 rad
pos: -33.5,53.5
parent: 2
type: Transform
- - uid: 10935
+ - uid: 10939
components:
- rot: -1.5707963267948966 rad
pos: -33.5,54.5
parent: 2
type: Transform
- - uid: 10936
+ - uid: 10940
components:
- rot: -1.5707963267948966 rad
pos: -33.5,55.5
parent: 2
type: Transform
- - uid: 10937
+ - uid: 10941
components:
- rot: -1.5707963267948966 rad
pos: -33.5,56.5
parent: 2
type: Transform
- - uid: 10938
+ - uid: 10942
components:
- rot: -1.5707963267948966 rad
pos: -33.5,57.5
parent: 2
type: Transform
- - uid: 10939
+ - uid: 10943
components:
- rot: -1.5707963267948966 rad
pos: -33.5,58.5
parent: 2
type: Transform
- - uid: 10940
+ - uid: 10944
components:
- rot: -1.5707963267948966 rad
pos: -33.5,59.5
parent: 2
type: Transform
- - uid: 10941
+ - uid: 10945
components:
- rot: -1.5707963267948966 rad
pos: -33.5,60.5
parent: 2
type: Transform
- - uid: 10942
+ - uid: 10946
components:
- rot: -1.5707963267948966 rad
pos: -33.5,61.5
parent: 2
type: Transform
- - uid: 10943
+ - uid: 10947
components:
- rot: -1.5707963267948966 rad
pos: -33.5,62.5
parent: 2
type: Transform
- - uid: 10944
+ - uid: 10948
components:
- rot: -1.5707963267948966 rad
pos: -33.5,63.5
parent: 2
type: Transform
- - uid: 10945
+ - uid: 10949
components:
- rot: -1.5707963267948966 rad
pos: -33.5,64.5
parent: 2
type: Transform
- - uid: 10946
+ - uid: 10950
components:
- rot: -1.5707963267948966 rad
pos: -33.5,65.5
parent: 2
type: Transform
- - uid: 10947
+ - uid: 10951
components:
- rot: -1.5707963267948966 rad
pos: -33.5,66.5
parent: 2
type: Transform
- - uid: 10948
+ - uid: 10952
components:
- rot: -1.5707963267948966 rad
pos: -33.5,67.5
parent: 2
type: Transform
- - uid: 10949
+ - uid: 10953
components:
- rot: -1.5707963267948966 rad
pos: -33.5,68.5
parent: 2
type: Transform
- - uid: 10950
+ - uid: 10954
components:
- rot: -1.5707963267948966 rad
pos: -33.5,69.5
parent: 2
type: Transform
- - uid: 10951
+ - uid: 10955
components:
- rot: -1.5707963267948966 rad
pos: -33.5,70.5
parent: 2
type: Transform
- - uid: 10952
+ - uid: 10956
components:
- rot: -1.5707963267948966 rad
pos: -33.5,71.5
parent: 2
type: Transform
- - uid: 10953
+ - uid: 10957
components:
- rot: -1.5707963267948966 rad
pos: -33.5,72.5
parent: 2
type: Transform
- - uid: 10954
+ - uid: 10958
components:
- rot: -1.5707963267948966 rad
pos: -34.5,72.5
parent: 2
type: Transform
- - uid: 10955
+ - uid: 10959
components:
- rot: -1.5707963267948966 rad
pos: -35.5,72.5
parent: 2
type: Transform
- - uid: 10956
+ - uid: 10960
components:
- rot: -1.5707963267948966 rad
pos: -36.5,72.5
parent: 2
type: Transform
- - uid: 10957
+ - uid: 10961
components:
- rot: -1.5707963267948966 rad
pos: -37.5,72.5
parent: 2
type: Transform
- - uid: 10958
+ - uid: 10962
components:
- rot: -1.5707963267948966 rad
pos: -38.5,72.5
parent: 2
type: Transform
- - uid: 10959
+ - uid: 10963
components:
- rot: -1.5707963267948966 rad
pos: -39.5,72.5
parent: 2
type: Transform
- - uid: 10960
+ - uid: 10964
components:
- rot: -1.5707963267948966 rad
pos: -40.5,72.5
parent: 2
type: Transform
- - uid: 10961
+ - uid: 10965
components:
- rot: -1.5707963267948966 rad
pos: -41.5,72.5
parent: 2
type: Transform
- - uid: 10962
+ - uid: 10966
components:
- rot: -1.5707963267948966 rad
pos: -42.5,72.5
parent: 2
type: Transform
- - uid: 10963
+ - uid: 10967
components:
- rot: -1.5707963267948966 rad
pos: -43.5,72.5
parent: 2
type: Transform
- - uid: 10964
+ - uid: 10968
components:
- rot: -1.5707963267948966 rad
pos: -44.5,72.5
parent: 2
type: Transform
- - uid: 10965
+ - uid: 10969
components:
- rot: -1.5707963267948966 rad
pos: -45.5,72.5
parent: 2
type: Transform
- - uid: 10966
+ - uid: 10970
components:
- rot: -1.5707963267948966 rad
pos: -46.5,72.5
parent: 2
type: Transform
- - uid: 10967
+ - uid: 10971
components:
- rot: -1.5707963267948966 rad
pos: -47.5,72.5
parent: 2
type: Transform
- - uid: 10968
+ - uid: 10972
components:
- rot: -1.5707963267948966 rad
pos: -48.5,72.5
parent: 2
type: Transform
- - uid: 10969
+ - uid: 10973
components:
- rot: -1.5707963267948966 rad
pos: -49.5,72.5
parent: 2
type: Transform
- - uid: 10970
+ - uid: 10974
components:
- rot: -1.5707963267948966 rad
pos: -50.5,72.5
parent: 2
type: Transform
- - uid: 10971
+ - uid: 10975
components:
- rot: -1.5707963267948966 rad
pos: -51.5,72.5
parent: 2
type: Transform
- - uid: 10972
+ - uid: 10976
components:
- rot: -1.5707963267948966 rad
pos: -52.5,72.5
parent: 2
type: Transform
- - uid: 10973
+ - uid: 10977
components:
- rot: -1.5707963267948966 rad
pos: -53.5,72.5
parent: 2
type: Transform
- - uid: 10974
+ - uid: 10978
components:
- rot: -1.5707963267948966 rad
pos: -54.5,72.5
parent: 2
type: Transform
- - uid: 10975
+ - uid: 10979
components:
- rot: -1.5707963267948966 rad
pos: -55.5,72.5
parent: 2
type: Transform
- - uid: 10976
+ - uid: 10980
components:
- rot: -1.5707963267948966 rad
pos: -56.5,72.5
parent: 2
type: Transform
- - uid: 10977
+ - uid: 10981
components:
- rot: -1.5707963267948966 rad
pos: -57.5,72.5
parent: 2
type: Transform
- - uid: 10978
+ - uid: 10982
components:
- rot: -1.5707963267948966 rad
pos: -58.5,72.5
parent: 2
type: Transform
- - uid: 10979
+ - uid: 10983
components:
- rot: -1.5707963267948966 rad
pos: -59.5,72.5
parent: 2
type: Transform
- - uid: 10980
+ - uid: 10984
components:
- rot: -1.5707963267948966 rad
pos: -60.5,72.5
parent: 2
type: Transform
- - uid: 10981
+ - uid: 10985
components:
- rot: -1.5707963267948966 rad
pos: -61.5,72.5
parent: 2
type: Transform
- - uid: 10982
+ - uid: 10986
components:
- rot: -1.5707963267948966 rad
pos: -61.5,71.5
parent: 2
type: Transform
- - uid: 10983
+ - uid: 10987
components:
- rot: -1.5707963267948966 rad
pos: -61.5,70.5
parent: 2
type: Transform
- - uid: 10984
+ - uid: 10988
components:
- rot: -1.5707963267948966 rad
pos: -61.5,69.5
parent: 2
type: Transform
- - uid: 10985
+ - uid: 10989
components:
- rot: -1.5707963267948966 rad
pos: -61.5,68.5
parent: 2
type: Transform
- - uid: 10986
+ - uid: 10990
components:
- rot: -1.5707963267948966 rad
pos: -61.5,67.5
parent: 2
type: Transform
- - uid: 10987
+ - uid: 10991
components:
- rot: -1.5707963267948966 rad
pos: -61.5,66.5
parent: 2
type: Transform
- - uid: 10988
+ - uid: 10992
components:
- rot: -1.5707963267948966 rad
pos: -61.5,65.5
parent: 2
type: Transform
- - uid: 10989
+ - uid: 10993
components:
- rot: -1.5707963267948966 rad
pos: -61.5,64.5
parent: 2
type: Transform
- - uid: 10990
+ - uid: 10994
components:
- rot: -1.5707963267948966 rad
pos: -61.5,63.5
parent: 2
type: Transform
- - uid: 10991
+ - uid: 10995
components:
- rot: -1.5707963267948966 rad
pos: -61.5,62.5
parent: 2
type: Transform
- - uid: 10992
+ - uid: 10996
components:
- rot: -1.5707963267948966 rad
pos: -61.5,61.5
parent: 2
type: Transform
- - uid: 10993
+ - uid: 10997
components:
- rot: -1.5707963267948966 rad
pos: -61.5,60.5
parent: 2
type: Transform
- - uid: 10994
+ - uid: 10998
components:
- rot: -1.5707963267948966 rad
pos: -61.5,59.5
parent: 2
type: Transform
- - uid: 10995
+ - uid: 10999
components:
- rot: -1.5707963267948966 rad
pos: -61.5,58.5
parent: 2
type: Transform
- - uid: 10996
+ - uid: 11000
components:
- rot: -1.5707963267948966 rad
pos: -61.5,57.5
parent: 2
type: Transform
- - uid: 10997
+ - uid: 11001
components:
- rot: -1.5707963267948966 rad
pos: -61.5,56.5
parent: 2
type: Transform
- - uid: 10998
+ - uid: 11002
components:
- rot: 1.5707963267948966 rad
pos: -53.5,53.5
parent: 2
type: Transform
- - uid: 10999
+ - uid: 11003
components:
- rot: 1.5707963267948966 rad
pos: -53.5,54.5
parent: 2
type: Transform
- - uid: 11000
+ - uid: 11004
components:
- rot: 1.5707963267948966 rad
pos: -53.5,55.5
parent: 2
type: Transform
- - uid: 11001
+ - uid: 11005
components:
- rot: 1.5707963267948966 rad
pos: -54.5,56.5
parent: 2
type: Transform
- - uid: 11002
+ - uid: 11006
components:
- rot: 1.5707963267948966 rad
pos: -56.5,56.5
parent: 2
type: Transform
- - uid: 11003
+ - uid: 11007
components:
- rot: 1.5707963267948966 rad
pos: -58.5,56.5
parent: 2
type: Transform
- - uid: 11004
+ - uid: 11008
components:
- rot: 1.5707963267948966 rad
pos: -60.5,56.5
parent: 2
type: Transform
- - uid: 11005
+ - uid: 11009
components:
- rot: -1.5707963267948966 rad
pos: -52.5,53.5
parent: 2
type: Transform
- - uid: 11006
+ - uid: 11010
components:
- rot: -1.5707963267948966 rad
pos: -51.5,53.5
parent: 2
type: Transform
- - uid: 11007
+ - uid: 11011
components:
- rot: -1.5707963267948966 rad
pos: -50.5,53.5
parent: 2
type: Transform
- - uid: 11008
+ - uid: 11012
components:
- rot: -1.5707963267948966 rad
pos: -49.5,53.5
parent: 2
type: Transform
- - uid: 11009
+ - uid: 11013
components:
- pos: 12.5,-92.5
parent: 2
type: Transform
- - uid: 11010
+ - uid: 11014
components:
- pos: 11.5,-99.5
parent: 2
type: Transform
- - uid: 11011
+ - uid: 11015
components:
- rot: 3.141592653589793 rad
pos: 1.5,-71.5
parent: 2
type: Transform
- - uid: 11012
+ - uid: 11016
components:
- rot: 3.141592653589793 rad
pos: 2.5,-67.5
parent: 2
type: Transform
- - uid: 11013
+ - uid: 11017
components:
- rot: 3.141592653589793 rad
pos: 3.5,-71.5
parent: 2
type: Transform
- - uid: 11014
+ - uid: 11018
components:
- rot: 3.141592653589793 rad
pos: 4.5,-71.5
parent: 2
type: Transform
- - uid: 11015
+ - uid: 11019
components:
- rot: 3.141592653589793 rad
pos: 2.5,-68.5
parent: 2
type: Transform
- - uid: 11016
+ - uid: 11020
components:
- rot: -1.5707963267948966 rad
pos: -79.5,-25.5
parent: 2
type: Transform
- - uid: 11017
+ - uid: 11021
components:
- rot: -1.5707963267948966 rad
pos: -79.5,-24.5
parent: 2
type: Transform
- - uid: 11018
+ - uid: 11022
components:
- rot: -1.5707963267948966 rad
pos: -79.5,-23.5
parent: 2
type: Transform
- - uid: 11019
+ - uid: 11023
components:
- rot: -1.5707963267948966 rad
pos: -79.5,-21.5
parent: 2
type: Transform
- - uid: 11020
+ - uid: 11024
components:
- rot: -1.5707963267948966 rad
pos: -79.5,-20.5
parent: 2
type: Transform
- - uid: 11021
+ - uid: 11025
components:
- rot: -1.5707963267948966 rad
pos: -79.5,-18.5
parent: 2
type: Transform
- - uid: 11022
+ - uid: 11026
components:
- rot: -1.5707963267948966 rad
pos: -79.5,-17.5
parent: 2
type: Transform
- - uid: 11023
+ - uid: 11027
components:
- rot: -1.5707963267948966 rad
pos: -79.5,-16.5
parent: 2
type: Transform
- - uid: 11024
+ - uid: 11028
components:
- rot: -1.5707963267948966 rad
pos: -79.5,-14.5
parent: 2
type: Transform
- - uid: 11025
+ - uid: 11029
components:
- rot: -1.5707963267948966 rad
pos: -79.5,-12.5
parent: 2
type: Transform
- - uid: 11026
+ - uid: 11030
components:
- rot: -1.5707963267948966 rad
pos: -79.5,-13.5
parent: 2
type: Transform
- - uid: 11027
+ - uid: 11031
components:
- pos: -13.5,-8.5
parent: 2
type: Transform
- - uid: 11028
+ - uid: 11032
components:
- rot: 3.141592653589793 rad
pos: 23.5,-89.5
parent: 2
type: Transform
- - uid: 11029
+ - uid: 11033
components:
- pos: 36.5,23.5
parent: 2
type: Transform
- - uid: 11030
+ - uid: 11034
components:
- pos: 37.5,23.5
parent: 2
type: Transform
- - uid: 11031
+ - uid: 11035
components:
- pos: 38.5,23.5
parent: 2
type: Transform
- - uid: 11032
+ - uid: 11036
components:
- pos: 39.5,23.5
parent: 2
type: Transform
- - uid: 11033
+ - uid: 11037
components:
- pos: 40.5,23.5
parent: 2
type: Transform
- - uid: 11034
+ - uid: 11038
components:
- pos: 41.5,23.5
parent: 2
type: Transform
- - uid: 11035
+ - uid: 11039
components:
- pos: 42.5,23.5
parent: 2
type: Transform
- - uid: 11036
+ - uid: 11040
components:
- pos: 35.5,23.5
parent: 2
type: Transform
- - uid: 11037
+ - uid: 11041
components:
- pos: 43.5,23.5
parent: 2
type: Transform
- - uid: 11038
+ - uid: 11042
components:
- pos: 46.5,26.5
parent: 2
type: Transform
- - uid: 11039
+ - uid: 11043
components:
- pos: 47.5,26.5
parent: 2
type: Transform
- - uid: 11040
+ - uid: 11044
components:
- pos: 48.5,26.5
parent: 2
type: Transform
- - uid: 11041
+ - uid: 11045
components:
- pos: 11.5,-97.5
parent: 2
type: Transform
- - uid: 11042
+ - uid: 11046
components:
- pos: 11.5,-93.5
parent: 2
type: Transform
- - uid: 11043
+ - uid: 11047
components:
- pos: 11.5,-94.5
parent: 2
type: Transform
- - uid: 11044
+ - uid: 11048
components:
- pos: 11.5,-95.5
parent: 2
type: Transform
- - uid: 11045
+ - uid: 11049
components:
- pos: 11.5,-98.5
parent: 2
type: Transform
- - uid: 11046
+ - uid: 11050
components:
- pos: 11.5,-96.5
parent: 2
type: Transform
- - uid: 11047
+ - uid: 11051
components:
- pos: 11.5,-104.5
parent: 2
type: Transform
- - uid: 11048
+ - uid: 11052
components:
- pos: 11.5,-103.5
parent: 2
type: Transform
- - uid: 11049
+ - uid: 11053
components:
- pos: 11.5,-102.5
parent: 2
type: Transform
- - uid: 11050
+ - uid: 11054
components:
- pos: 11.5,-101.5
parent: 2
type: Transform
- - uid: 11051
+ - uid: 11055
components:
- rot: 3.141592653589793 rad
pos: 19.5,-53.5
parent: 2
type: Transform
- - uid: 11052
+ - uid: 11056
components:
- rot: 3.141592653589793 rad
pos: 18.5,-53.5
parent: 2
type: Transform
- - uid: 11053
+ - uid: 11057
components:
- rot: 3.141592653589793 rad
pos: 22.5,-53.5
parent: 2
type: Transform
- - uid: 11054
+ - uid: 11058
components:
- pos: -79.5,-27.5
parent: 2
type: Transform
- - uid: 11055
+ - uid: 11059
components:
- pos: -79.5,-28.5
parent: 2
type: Transform
- - uid: 11056
+ - uid: 11060
components:
- pos: -79.5,-29.5
parent: 2
type: Transform
- - uid: 11057
+ - uid: 11061
components:
- pos: -79.5,-30.5
parent: 2
type: Transform
- - uid: 11058
+ - uid: 11062
components:
- pos: -79.5,-31.5
parent: 2
type: Transform
- - uid: 11059
+ - uid: 11063
components:
- pos: -61.5,-55.5
parent: 2
type: Transform
- - uid: 11060
+ - uid: 11064
components:
- pos: -18.5,-52.5
parent: 2
type: Transform
- - uid: 11061
+ - uid: 11065
components:
- rot: -1.5707963267948966 rad
pos: 14.5,-60.5
parent: 2
type: Transform
- - uid: 11062
+ - uid: 11066
components:
- rot: -1.5707963267948966 rad
pos: 14.5,-61.5
parent: 2
type: Transform
- - uid: 11063
+ - uid: 11067
components:
- rot: -1.5707963267948966 rad
pos: 14.5,-62.5
parent: 2
type: Transform
- - uid: 11064
+ - uid: 11068
components:
- rot: -1.5707963267948966 rad
pos: 14.5,-63.5
parent: 2
type: Transform
- - uid: 11065
+ - uid: 11069
components:
- rot: -1.5707963267948966 rad
pos: 14.5,-64.5
parent: 2
type: Transform
- - uid: 11066
+ - uid: 11070
components:
- rot: -1.5707963267948966 rad
pos: 8.5,-67.5
parent: 2
type: Transform
- - uid: 11067
+ - uid: 11071
components:
- rot: -1.5707963267948966 rad
pos: 9.5,-67.5
parent: 2
type: Transform
- - uid: 11068
+ - uid: 11072
components:
- rot: -1.5707963267948966 rad
pos: 10.5,-67.5
parent: 2
type: Transform
- - uid: 11069
+ - uid: 11073
components:
- rot: -1.5707963267948966 rad
pos: 11.5,-67.5
parent: 2
type: Transform
- - uid: 11070
+ - uid: 11074
components:
- rot: -1.5707963267948966 rad
pos: 12.5,-67.5
parent: 2
type: Transform
- - uid: 11071
+ - uid: 11075
components:
- rot: -1.5707963267948966 rad
pos: 13.5,-67.5
parent: 2
type: Transform
- - uid: 11072
+ - uid: 11076
components:
- rot: -1.5707963267948966 rad
pos: 14.5,-67.5
parent: 2
type: Transform
- - uid: 11073
+ - uid: 11077
components:
- rot: 1.5707963267948966 rad
pos: 42.5,-13.5
parent: 2
type: Transform
- - uid: 11074
+ - uid: 11078
components:
- rot: 1.5707963267948966 rad
pos: 43.5,-13.5
parent: 2
type: Transform
- - uid: 11075
+ - uid: 11079
components:
- rot: 1.5707963267948966 rad
pos: 44.5,-13.5
parent: 2
type: Transform
- - uid: 11076
+ - uid: 11080
components:
- rot: 1.5707963267948966 rad
pos: 45.5,-13.5
parent: 2
type: Transform
- - uid: 11077
+ - uid: 11081
components:
- rot: 1.5707963267948966 rad
pos: 46.5,-13.5
parent: 2
type: Transform
- - uid: 11078
+ - uid: 11082
components:
- rot: 1.5707963267948966 rad
pos: 47.5,-13.5
parent: 2
type: Transform
- - uid: 11079
+ - uid: 11083
components:
- rot: 1.5707963267948966 rad
pos: 48.5,-13.5
parent: 2
type: Transform
- - uid: 11080
+ - uid: 11084
components:
- pos: 49.5,26.5
parent: 2
type: Transform
- - uid: 11081
+ - uid: 11085
components:
- pos: 50.5,26.5
parent: 2
type: Transform
- - uid: 11082
+ - uid: 11086
components:
- pos: 51.5,26.5
parent: 2
type: Transform
- - uid: 11083
+ - uid: 11087
components:
- pos: 52.5,26.5
parent: 2
type: Transform
- - uid: 11084
+ - uid: 11088
components:
- pos: 53.5,26.5
parent: 2
type: Transform
- - uid: 11085
+ - uid: 11089
components:
- rot: 3.141592653589793 rad
pos: 49.5,38.5
parent: 2
type: Transform
- - uid: 11086
+ - uid: 11090
components:
- rot: 3.141592653589793 rad
pos: 49.5,37.5
parent: 2
type: Transform
- - uid: 11087
+ - uid: 11091
components:
- rot: 3.141592653589793 rad
pos: 49.5,36.5
parent: 2
type: Transform
- - uid: 11088
+ - uid: 11092
components:
- rot: 3.141592653589793 rad
pos: 49.5,35.5
parent: 2
type: Transform
- - uid: 11089
+ - uid: 11093
components:
- rot: 3.141592653589793 rad
pos: 48.5,35.5
parent: 2
type: Transform
- - uid: 11090
+ - uid: 11094
components:
- rot: 3.141592653589793 rad
pos: 47.5,35.5
parent: 2
type: Transform
- - uid: 11091
+ - uid: 11095
components:
- rot: 3.141592653589793 rad
pos: 52.5,31.5
parent: 2
type: Transform
- - uid: 11092
+ - uid: 11096
components:
- rot: 3.141592653589793 rad
pos: 52.5,32.5
parent: 2
type: Transform
- - uid: 11093
+ - uid: 11097
components:
- rot: 3.141592653589793 rad
pos: 52.5,33.5
parent: 2
type: Transform
- - uid: 11094
+ - uid: 11098
components:
- pos: 81.5,36.5
parent: 2
type: Transform
- - uid: 11095
+ - uid: 11099
components:
- pos: 80.5,36.5
parent: 2
type: Transform
- - uid: 11096
+ - uid: 11100
components:
- pos: 86.5,36.5
parent: 2
type: Transform
- - uid: 11097
+ - uid: 11101
components:
- pos: 87.5,36.5
parent: 2
type: Transform
- - uid: 11098
+ - uid: 11102
components:
- pos: 79.5,36.5
parent: 2
type: Transform
- - uid: 11099
+ - uid: 11103
components:
- pos: 78.5,36.5
parent: 2
type: Transform
- - uid: 11100
+ - uid: 11104
components:
- pos: 88.5,36.5
parent: 2
type: Transform
- - uid: 11101
+ - uid: 11105
components:
- pos: 82.5,36.5
parent: 2
type: Transform
- - uid: 11102
+ - uid: 11106
components:
- pos: -24.5,47.5
parent: 2
type: Transform
- - uid: 11103
+ - uid: 11107
components:
- pos: -24.5,46.5
parent: 2
type: Transform
- - uid: 11104
+ - uid: 11108
components:
- pos: -24.5,45.5
parent: 2
type: Transform
- - uid: 11105
+ - uid: 11109
components:
- pos: -24.5,44.5
parent: 2
type: Transform
- - uid: 11106
+ - uid: 11110
components:
- pos: -24.5,43.5
parent: 2
type: Transform
- - uid: 11107
+ - uid: 11111
components:
- pos: -24.5,42.5
parent: 2
type: Transform
- - uid: 11108
+ - uid: 11112
components:
- pos: -24.5,41.5
parent: 2
type: Transform
- - uid: 11109
+ - uid: 11113
components:
- pos: -24.5,40.5
parent: 2
type: Transform
- - uid: 11110
+ - uid: 11114
components:
- pos: -24.5,39.5
parent: 2
type: Transform
- - uid: 11111
+ - uid: 11115
components:
- pos: -24.5,38.5
parent: 2
type: Transform
- - uid: 11112
+ - uid: 11116
components:
- pos: -31.5,39.5
parent: 2
type: Transform
- - uid: 11113
+ - uid: 11117
components:
- pos: -32.5,39.5
parent: 2
type: Transform
- - uid: 11114
+ - uid: 11118
components:
- pos: -33.5,39.5
parent: 2
type: Transform
- - uid: 11115
+ - uid: 11119
components:
- pos: -34.5,39.5
parent: 2
type: Transform
- - uid: 11116
+ - uid: 11120
components:
- pos: -35.5,39.5
parent: 2
type: Transform
- - uid: 11117
+ - uid: 11121
components:
- pos: -36.5,39.5
parent: 2
type: Transform
- - uid: 11118
+ - uid: 11122
components:
- pos: -39.5,39.5
parent: 2
type: Transform
- - uid: 11119
+ - uid: 11123
components:
- pos: -40.5,39.5
parent: 2
type: Transform
- - uid: 11120
+ - uid: 11124
components:
- pos: -41.5,39.5
parent: 2
type: Transform
- - uid: 11121
+ - uid: 11125
components:
- pos: -42.5,39.5
parent: 2
type: Transform
- - uid: 11122
+ - uid: 11126
components:
- pos: -43.5,39.5
parent: 2
type: Transform
- - uid: 11123
+ - uid: 11127
components:
- pos: -2.5,28.5
parent: 2
type: Transform
- - uid: 11124
+ - uid: 11128
components:
- pos: -2.5,27.5
parent: 2
type: Transform
- - uid: 11125
+ - uid: 11129
components:
- pos: -2.5,26.5
parent: 2
type: Transform
- - uid: 11126
+ - uid: 11130
components:
- pos: -2.5,25.5
parent: 2
type: Transform
- - uid: 11127
+ - uid: 11131
components:
- pos: -12.5,26.5
parent: 2
type: Transform
- - uid: 11128
+ - uid: 11132
components:
- pos: -11.5,26.5
parent: 2
type: Transform
- - uid: 11129
+ - uid: 11133
components:
- pos: -10.5,26.5
parent: 2
type: Transform
- - uid: 11130
+ - uid: 11134
components:
- pos: -10.5,24.5
parent: 2
type: Transform
- - uid: 11131
+ - uid: 11135
components:
- pos: -37.5,45.5
parent: 2
type: Transform
- - uid: 11132
+ - uid: 11136
components:
- pos: -37.5,44.5
parent: 2
type: Transform
- - uid: 11133
+ - uid: 11137
components:
- pos: -17.5,58.5
parent: 2
type: Transform
- - uid: 11134
+ - uid: 11138
components:
- pos: -17.5,57.5
parent: 2
type: Transform
- - uid: 11135
+ - uid: 11139
components:
- pos: -17.5,56.5
parent: 2
type: Transform
- - uid: 11136
+ - uid: 11140
components:
- pos: -17.5,55.5
parent: 2
type: Transform
- - uid: 11137
+ - uid: 11141
components:
- pos: -17.5,54.5
parent: 2
type: Transform
- - uid: 11138
+ - uid: 11142
components:
- pos: -17.5,53.5
parent: 2
type: Transform
- - uid: 11139
+ - uid: 11143
components:
- rot: 1.5707963267948966 rad
pos: -11.5,24.5
parent: 2
type: Transform
- - uid: 11140
+ - uid: 11144
components:
- rot: 3.141592653589793 rad
pos: 66.5,36.5
parent: 2
type: Transform
- - uid: 11141
+ - uid: 11145
components:
- rot: 3.141592653589793 rad
pos: 65.5,36.5
parent: 2
type: Transform
- - uid: 11142
+ - uid: 11146
components:
- rot: 3.141592653589793 rad
pos: 64.5,36.5
parent: 2
type: Transform
- - uid: 11143
+ - uid: 11147
components:
- rot: 3.141592653589793 rad
pos: 63.5,36.5
parent: 2
type: Transform
- - uid: 11144
+ - uid: 11148
components:
- rot: 3.141592653589793 rad
pos: 63.5,35.5
parent: 2
type: Transform
- - uid: 11145
+ - uid: 11149
components:
- rot: 3.141592653589793 rad
pos: 63.5,34.5
parent: 2
type: Transform
- - uid: 11146
+ - uid: 11150
components:
- rot: 3.141592653589793 rad
pos: 63.5,33.5
parent: 2
type: Transform
- - uid: 11147
+ - uid: 11151
components:
- pos: 83.5,36.5
parent: 2
type: Transform
- - uid: 11148
+ - uid: 11152
components:
- pos: 84.5,36.5
parent: 2
type: Transform
- - uid: 11149
+ - uid: 11153
components:
- pos: 85.5,36.5
parent: 2
type: Transform
- - uid: 11150
+ - uid: 11154
components:
- pos: 89.5,36.5
parent: 2
type: Transform
- - uid: 11151
+ - uid: 11155
components:
- pos: 90.5,36.5
parent: 2
type: Transform
- - uid: 11152
+ - uid: 11156
components:
- pos: -22.5,27.5
parent: 2
type: Transform
- - uid: 11153
+ - uid: 11157
components:
- pos: -23.5,27.5
parent: 2
type: Transform
- - uid: 11154
+ - uid: 11158
components:
- pos: -24.5,27.5
parent: 2
type: Transform
- - uid: 11155
+ - uid: 11159
components:
- pos: -25.5,27.5
parent: 2
type: Transform
- - uid: 11156
+ - uid: 11160
components:
- pos: -26.5,27.5
parent: 2
type: Transform
- - uid: 11157
+ - uid: 11161
components:
- pos: -27.5,27.5
parent: 2
type: Transform
- - uid: 11158
+ - uid: 11162
components:
- pos: -28.5,27.5
parent: 2
type: Transform
- - uid: 11159
+ - uid: 11163
components:
- pos: 29.5,55.5
parent: 2
type: Transform
- - uid: 11160
+ - uid: 11164
components:
- pos: 29.5,56.5
parent: 2
type: Transform
- - uid: 11161
+ - uid: 11165
components:
- pos: 29.5,57.5
parent: 2
type: Transform
- - uid: 11162
+ - uid: 11166
components:
- pos: 29.5,58.5
parent: 2
type: Transform
- - uid: 11163
+ - uid: 11167
components:
- pos: 29.5,59.5
parent: 2
type: Transform
- - uid: 11164
+ - uid: 11168
components:
- pos: 29.5,60.5
parent: 2
type: Transform
- - uid: 11165
+ - uid: 11169
components:
- pos: 29.5,61.5
parent: 2
type: Transform
- - uid: 11166
+ - uid: 11170
components:
- pos: 29.5,62.5
parent: 2
type: Transform
- - uid: 11167
+ - uid: 11171
components:
- pos: 28.5,62.5
parent: 2
type: Transform
- - uid: 11168
+ - uid: 11172
components:
- pos: 27.5,62.5
parent: 2
type: Transform
- - uid: 11169
+ - uid: 11173
components:
- pos: 26.5,62.5
parent: 2
type: Transform
- - uid: 11170
+ - uid: 11174
components:
- pos: 25.5,62.5
parent: 2
type: Transform
- - uid: 11171
+ - uid: 11175
components:
- pos: 24.5,62.5
parent: 2
type: Transform
- - uid: 11172
+ - uid: 11176
components:
- pos: 23.5,62.5
parent: 2
type: Transform
- - uid: 11173
+ - uid: 11177
components:
- pos: 22.5,62.5
parent: 2
type: Transform
- - uid: 11174
+ - uid: 11178
components:
- pos: 21.5,62.5
parent: 2
type: Transform
- - uid: 11175
+ - uid: 11179
components:
- pos: 20.5,62.5
parent: 2
type: Transform
- - uid: 11176
+ - uid: 11180
components:
- pos: 19.5,62.5
parent: 2
type: Transform
- - uid: 11177
+ - uid: 11181
components:
- pos: 18.5,62.5
parent: 2
type: Transform
- - uid: 11178
+ - uid: 11182
components:
- pos: 17.5,62.5
parent: 2
type: Transform
- - uid: 11179
+ - uid: 11183
components:
- pos: 16.5,62.5
parent: 2
type: Transform
- - uid: 11180
+ - uid: 11184
components:
- pos: 15.5,62.5
parent: 2
type: Transform
- - uid: 11181
+ - uid: 11185
components:
- pos: 14.5,62.5
parent: 2
type: Transform
- - uid: 11182
+ - uid: 11186
components:
- pos: 13.5,62.5
parent: 2
type: Transform
- - uid: 11183
+ - uid: 11187
components:
- pos: 12.5,62.5
parent: 2
type: Transform
- - uid: 11184
+ - uid: 11188
components:
- pos: 11.5,62.5
parent: 2
type: Transform
- - uid: 11185
+ - uid: 11189
components:
- pos: 10.5,62.5
parent: 2
type: Transform
- - uid: 11186
+ - uid: 11190
components:
- pos: 9.5,62.5
parent: 2
type: Transform
- - uid: 11187
+ - uid: 11191
components:
- pos: 8.5,62.5
parent: 2
type: Transform
- - uid: 11188
+ - uid: 11192
components:
- pos: 7.5,62.5
parent: 2
type: Transform
- - uid: 11189
+ - uid: 11193
components:
- pos: 7.5,63.5
parent: 2
type: Transform
- - uid: 11190
+ - uid: 11194
components:
- pos: 7.5,64.5
parent: 2
type: Transform
- - uid: 11191
+ - uid: 11195
components:
- pos: 7.5,65.5
parent: 2
type: Transform
- - uid: 11192
+ - uid: 11196
components:
- pos: 7.5,66.5
parent: 2
type: Transform
- - uid: 11193
+ - uid: 11197
components:
- pos: 7.5,67.5
parent: 2
type: Transform
- - uid: 11194
+ - uid: 11198
components:
- pos: 7.5,68.5
parent: 2
type: Transform
- - uid: 11195
+ - uid: 11199
components:
- pos: 7.5,69.5
parent: 2
type: Transform
- - uid: 11196
+ - uid: 11200
components:
- pos: 7.5,70.5
parent: 2
type: Transform
- - uid: 11197
+ - uid: 11201
components:
- pos: 7.5,71.5
parent: 2
type: Transform
- - uid: 11198
+ - uid: 11202
components:
- pos: 7.5,72.5
parent: 2
type: Transform
- - uid: 11199
+ - uid: 11203
components:
- pos: 7.5,73.5
parent: 2
type: Transform
- - uid: 11200
+ - uid: 11204
components:
- pos: 7.5,74.5
parent: 2
type: Transform
- - uid: 11201
+ - uid: 11205
components:
- pos: 7.5,75.5
parent: 2
type: Transform
- - uid: 11202
+ - uid: 11206
components:
- pos: 6.5,75.5
parent: 2
type: Transform
- - uid: 11203
+ - uid: 11207
components:
- pos: 5.5,75.5
parent: 2
type: Transform
- - uid: 11204
+ - uid: 11208
components:
- pos: 4.5,75.5
parent: 2
type: Transform
- - uid: 11205
+ - uid: 11209
components:
- pos: 3.5,75.5
parent: 2
type: Transform
- - uid: 11206
+ - uid: 11210
components:
- pos: 2.5,75.5
parent: 2
type: Transform
- - uid: 11207
+ - uid: 11211
components:
- pos: 1.5,75.5
parent: 2
type: Transform
- - uid: 11208
+ - uid: 11212
components:
- pos: 0.5,75.5
parent: 2
type: Transform
- - uid: 11209
+ - uid: 11213
components:
- pos: -0.5,75.5
parent: 2
type: Transform
- - uid: 11210
+ - uid: 11214
components:
- pos: -1.5,75.5
parent: 2
type: Transform
- - uid: 11211
+ - uid: 11215
components:
- pos: -2.5,75.5
parent: 2
type: Transform
- - uid: 11212
+ - uid: 11216
components:
- pos: -3.5,75.5
parent: 2
type: Transform
- - uid: 11213
+ - uid: 11217
components:
- pos: -4.5,75.5
parent: 2
type: Transform
- - uid: 11214
+ - uid: 11218
components:
- pos: -5.5,75.5
parent: 2
type: Transform
- - uid: 11215
+ - uid: 11219
components:
- pos: -6.5,75.5
parent: 2
type: Transform
- - uid: 11216
+ - uid: 11220
components:
- pos: -7.5,75.5
parent: 2
type: Transform
- - uid: 11217
+ - uid: 11221
components:
- pos: -8.5,75.5
parent: 2
type: Transform
- - uid: 11218
+ - uid: 11222
components:
- pos: -9.5,75.5
parent: 2
type: Transform
- - uid: 11219
+ - uid: 11223
components:
- pos: -10.5,75.5
parent: 2
type: Transform
- - uid: 11220
+ - uid: 11224
components:
- pos: 1.5,-92.5
parent: 2
type: Transform
- - uid: 11221
+ - uid: 11225
components:
- pos: 0.5,-92.5
parent: 2
type: Transform
- - uid: 11222
+ - uid: 11226
components:
- pos: -0.5,-92.5
parent: 2
type: Transform
- - uid: 11223
+ - uid: 11227
components:
- pos: -0.5,-93.5
parent: 2
type: Transform
- - uid: 11224
+ - uid: 11228
components:
- pos: -0.5,-94.5
parent: 2
type: Transform
- - uid: 11225
+ - uid: 11229
components:
- pos: -0.5,-95.5
parent: 2
type: Transform
- - uid: 11226
+ - uid: 11230
components:
- pos: -0.5,-96.5
parent: 2
type: Transform
- - uid: 11227
+ - uid: 11231
components:
- pos: -0.5,-97.5
parent: 2
type: Transform
- - uid: 11228
+ - uid: 11232
components:
- pos: -0.5,-98.5
parent: 2
type: Transform
- - uid: 11229
+ - uid: 11233
components:
- pos: -0.5,-99.5
parent: 2
type: Transform
- - uid: 11230
+ - uid: 11234
components:
- pos: -0.5,-100.5
parent: 2
type: Transform
- - uid: 11231
+ - uid: 11235
components:
- pos: -0.5,-101.5
parent: 2
type: Transform
- - uid: 11232
+ - uid: 11236
components:
- pos: -0.5,-102.5
parent: 2
type: Transform
- - uid: 11233
+ - uid: 11237
components:
- pos: -0.5,-103.5
parent: 2
type: Transform
- - uid: 11234
+ - uid: 11238
components:
- pos: -0.5,-104.5
parent: 2
type: Transform
- - uid: 11235
+ - uid: 11239
components:
- pos: -0.5,-105.5
parent: 2
type: Transform
- - uid: 11236
+ - uid: 11240
components:
- pos: -28.5,-105.5
parent: 2
type: Transform
- - uid: 11237
+ - uid: 11241
components:
- pos: -29.5,-105.5
parent: 2
type: Transform
- - uid: 11238
+ - uid: 11242
components:
- pos: -30.5,-105.5
parent: 2
type: Transform
- - uid: 11239
+ - uid: 11243
components:
- pos: -31.5,-105.5
parent: 2
type: Transform
- - uid: 11240
+ - uid: 11244
components:
- pos: -32.5,-105.5
parent: 2
type: Transform
- - uid: 11241
+ - uid: 11245
components:
- pos: -33.5,-105.5
parent: 2
type: Transform
- - uid: 11242
+ - uid: 11246
components:
- pos: -34.5,-105.5
parent: 2
type: Transform
- - uid: 11243
+ - uid: 11247
components:
- pos: -35.5,-105.5
parent: 2
type: Transform
- - uid: 11244
+ - uid: 11248
components:
- pos: -1.5,-105.5
parent: 2
type: Transform
- - uid: 11245
+ - uid: 11249
components:
- pos: -2.5,-105.5
parent: 2
type: Transform
- - uid: 11246
+ - uid: 11250
components:
- pos: -3.5,-105.5
parent: 2
type: Transform
- - uid: 11247
+ - uid: 11251
components:
- pos: -4.5,-105.5
parent: 2
type: Transform
- - uid: 11248
+ - uid: 11252
components:
- pos: -5.5,-105.5
parent: 2
type: Transform
- - uid: 11249
+ - uid: 11253
components:
- pos: -6.5,-105.5
parent: 2
type: Transform
- - uid: 11250
+ - uid: 11254
components:
- pos: -7.5,-105.5
parent: 2
type: Transform
- - uid: 11251
+ - uid: 11255
components:
- pos: -8.5,-105.5
parent: 2
type: Transform
- - uid: 11252
+ - uid: 11256
components:
- pos: -9.5,-105.5
parent: 2
type: Transform
- - uid: 11253
+ - uid: 11257
components:
- pos: -10.5,-105.5
parent: 2
type: Transform
- - uid: 11254
+ - uid: 11258
components:
- pos: -11.5,-105.5
parent: 2
type: Transform
- - uid: 11255
+ - uid: 11259
components:
- pos: -12.5,-105.5
parent: 2
type: Transform
- - uid: 11256
+ - uid: 11260
components:
- pos: -13.5,-105.5
parent: 2
type: Transform
- - uid: 11257
+ - uid: 11261
components:
- pos: -14.5,-105.5
parent: 2
type: Transform
- - uid: 11258
+ - uid: 11262
components:
- pos: -15.5,-105.5
parent: 2
type: Transform
- - uid: 11259
+ - uid: 11263
components:
- pos: -16.5,-105.5
parent: 2
type: Transform
- - uid: 11260
+ - uid: 11264
components:
- pos: -17.5,-105.5
parent: 2
type: Transform
- - uid: 11261
+ - uid: 11265
components:
- pos: -18.5,-105.5
parent: 2
type: Transform
- - uid: 11262
+ - uid: 11266
components:
- pos: -19.5,-105.5
parent: 2
type: Transform
- - uid: 11263
+ - uid: 11267
components:
- pos: -20.5,-105.5
parent: 2
type: Transform
- - uid: 11264
+ - uid: 11268
components:
- pos: -21.5,-105.5
parent: 2
type: Transform
- - uid: 11265
+ - uid: 11269
components:
- pos: -22.5,-105.5
parent: 2
type: Transform
- - uid: 11266
+ - uid: 11270
components:
- pos: -23.5,-105.5
parent: 2
type: Transform
- - uid: 11267
+ - uid: 11271
components:
- pos: -24.5,-105.5
parent: 2
type: Transform
- - uid: 11268
+ - uid: 11272
components:
- pos: -25.5,-105.5
parent: 2
type: Transform
- - uid: 11269
+ - uid: 11273
components:
- pos: -26.5,-105.5
parent: 2
type: Transform
- - uid: 11270
+ - uid: 11274
components:
- pos: -27.5,-105.5
parent: 2
type: Transform
- - uid: 11271
+ - uid: 11275
components:
- pos: -35.5,-104.5
parent: 2
type: Transform
- - uid: 11272
+ - uid: 11276
components:
- pos: -35.5,-103.5
parent: 2
type: Transform
- - uid: 11273
+ - uid: 11277
components:
- pos: -35.5,-102.5
parent: 2
type: Transform
- - uid: 11274
+ - uid: 11278
components:
- pos: 67.5,-17.5
parent: 2
type: Transform
- - uid: 11275
+ - uid: 11279
components:
- pos: -79.5,-32.5
parent: 2
type: Transform
- - uid: 11276
+ - uid: 11280
components:
- pos: -78.5,-31.5
parent: 2
type: Transform
- - uid: 11277
+ - uid: 11281
components:
- pos: -74.5,-48.5
parent: 2
type: Transform
- - uid: 11278
+ - uid: 11282
components:
- pos: -73.5,-48.5
parent: 2
type: Transform
- - uid: 11279
+ - uid: 11283
components:
- pos: -72.5,-48.5
parent: 2
type: Transform
- - uid: 11280
+ - uid: 11284
components:
- pos: -71.5,-48.5
parent: 2
type: Transform
- - uid: 11281
+ - uid: 11285
components:
- pos: -70.5,-48.5
parent: 2
type: Transform
- - uid: 11282
+ - uid: 11286
components:
- pos: -69.5,-48.5
parent: 2
type: Transform
- - uid: 11283
+ - uid: 11287
components:
- pos: -68.5,-48.5
parent: 2
type: Transform
- - uid: 11284
+ - uid: 11288
components:
- pos: -67.5,-48.5
parent: 2
type: Transform
- - uid: 11285
+ - uid: 11289
components:
- pos: -66.5,-48.5
parent: 2
type: Transform
- - uid: 11286
+ - uid: 11290
components:
- pos: -65.5,-48.5
parent: 2
type: Transform
- - uid: 11287
+ - uid: 11291
components:
- pos: -64.5,-48.5
parent: 2
type: Transform
- - uid: 11288
+ - uid: 11292
components:
- pos: -63.5,-48.5
parent: 2
type: Transform
- - uid: 11289
+ - uid: 11293
components:
- pos: -62.5,-48.5
parent: 2
type: Transform
- - uid: 11290
+ - uid: 11294
components:
- rot: 3.141592653589793 rad
pos: 55.5,-74.5
parent: 2
type: Transform
- - uid: 11291
+ - uid: 11295
components:
- rot: 3.141592653589793 rad
pos: 79.5,-27.5
parent: 2
type: Transform
- - uid: 11292
+ - uid: 11296
components:
- rot: 3.141592653589793 rad
pos: 79.5,-28.5
parent: 2
type: Transform
- - uid: 11293
+ - uid: 11297
components:
- pos: 79.5,-29.5
parent: 2
type: Transform
- - uid: 11294
+ - uid: 11298
components:
- pos: 79.5,-30.5
parent: 2
type: Transform
- - uid: 11295
+ - uid: 11299
components:
- pos: 79.5,-31.5
parent: 2
type: Transform
- - uid: 11296
+ - uid: 11300
components:
- pos: 79.5,-40.5
parent: 2
type: Transform
- - uid: 11297
+ - uid: 11301
components:
- pos: 79.5,-39.5
parent: 2
type: Transform
- - uid: 11298
+ - uid: 11302
components:
- rot: 1.5707963267948966 rad
pos: -61.5,-56.5
parent: 2
type: Transform
- - uid: 11299
+ - uid: 11303
components:
- rot: 1.5707963267948966 rad
pos: -61.5,-57.5
parent: 2
type: Transform
- - uid: 11300
+ - uid: 11304
components:
- rot: 1.5707963267948966 rad
pos: -60.5,-57.5
parent: 2
type: Transform
- - uid: 11301
+ - uid: 11305
components:
- rot: 1.5707963267948966 rad
pos: -59.5,-57.5
parent: 2
type: Transform
- - uid: 11302
+ - uid: 11306
components:
- rot: 1.5707963267948966 rad
pos: -59.5,-58.5
parent: 2
type: Transform
- - uid: 11303
+ - uid: 11307
components:
- rot: 1.5707963267948966 rad
pos: -59.5,-59.5
parent: 2
type: Transform
- - uid: 11304
+ - uid: 11308
components:
- rot: 1.5707963267948966 rad
pos: -59.5,-60.5
parent: 2
type: Transform
- - uid: 11305
+ - uid: 11309
components:
- rot: 1.5707963267948966 rad
pos: -59.5,-61.5
parent: 2
type: Transform
- - uid: 11306
+ - uid: 11310
components:
- rot: 1.5707963267948966 rad
pos: -59.5,-62.5
parent: 2
type: Transform
- - uid: 11307
+ - uid: 11311
components:
- rot: 1.5707963267948966 rad
pos: -59.5,-63.5
parent: 2
type: Transform
- - uid: 11308
+ - uid: 11312
components:
- rot: 1.5707963267948966 rad
pos: -59.5,-64.5
parent: 2
type: Transform
- - uid: 11309
+ - uid: 11313
components:
- rot: 1.5707963267948966 rad
pos: -59.5,-65.5
parent: 2
type: Transform
- - uid: 11310
+ - uid: 11314
components:
- rot: 1.5707963267948966 rad
pos: -59.5,-66.5
parent: 2
type: Transform
- - uid: 11311
+ - uid: 11315
components:
- rot: 1.5707963267948966 rad
pos: -59.5,-67.5
parent: 2
type: Transform
- - uid: 11312
+ - uid: 11316
components:
- rot: 1.5707963267948966 rad
pos: -59.5,-68.5
parent: 2
type: Transform
- - uid: 11313
+ - uid: 11317
components:
- rot: 1.5707963267948966 rad
pos: -59.5,-69.5
parent: 2
type: Transform
- - uid: 11314
+ - uid: 11318
components:
- pos: 8.5,-35.5
parent: 2
type: Transform
- - uid: 11315
+ - uid: 11319
components:
- pos: 8.5,-34.5
parent: 2
type: Transform
- - uid: 11316
+ - uid: 11320
components:
- pos: 8.5,-32.5
parent: 2
type: Transform
- - uid: 11317
+ - uid: 11321
components:
- pos: 8.5,-33.5
parent: 2
type: Transform
- - uid: 11318
+ - uid: 11322
components:
- pos: 46.5,-33.5
parent: 2
type: Transform
- - uid: 11319
+ - uid: 11323
components:
- pos: 45.5,-33.5
parent: 2
type: Transform
- - uid: 11320
+ - uid: 11324
components:
- pos: 44.5,-33.5
parent: 2
type: Transform
- - uid: 11321
+ - uid: 11325
components:
- pos: 8.5,-31.5
parent: 2
type: Transform
- - uid: 11322
+ - uid: 11326
components:
- pos: 8.5,-30.5
parent: 2
type: Transform
- - uid: 11323
+ - uid: 11327
components:
- pos: 68.5,-70.5
parent: 2
type: Transform
- - uid: 11324
+ - uid: 11328
components:
- pos: 69.5,-71.5
parent: 2
type: Transform
- - uid: 11325
+ - uid: 11329
components:
- pos: 70.5,-71.5
parent: 2
type: Transform
- - uid: 11326
+ - uid: 11330
components:
- pos: 71.5,-71.5
parent: 2
type: Transform
- - uid: 11327
+ - uid: 11331
components:
- pos: 71.5,-71.5
parent: 2
type: Transform
- - uid: 11328
+ - uid: 11332
components:
- pos: 71.5,-70.5
parent: 2
type: Transform
- - uid: 11329
+ - uid: 11333
components:
- pos: 72.5,-70.5
parent: 2
type: Transform
- - uid: 11330
+ - uid: 11334
components:
- pos: 72.5,-69.5
parent: 2
type: Transform
- - uid: 11331
+ - uid: 11335
components:
- pos: 73.5,-69.5
parent: 2
type: Transform
- - uid: 11332
+ - uid: 11336
components:
- pos: 74.5,-69.5
parent: 2
type: Transform
- - uid: 11333
+ - uid: 11337
components:
- pos: 74.5,-68.5
parent: 2
type: Transform
- - uid: 11334
+ - uid: 11338
components:
- pos: 74.5,-67.5
parent: 2
type: Transform
- - uid: 11335
+ - uid: 11339
components:
- pos: 74.5,-66.5
parent: 2
type: Transform
- - uid: 11336
+ - uid: 11340
components:
- pos: 74.5,-65.5
parent: 2
type: Transform
- - uid: 11337
+ - uid: 11341
components:
- pos: 74.5,-64.5
parent: 2
type: Transform
- - uid: 11338
+ - uid: 11342
components:
- pos: 74.5,-63.5
parent: 2
type: Transform
- - uid: 11339
+ - uid: 11343
components:
- pos: 75.5,-63.5
parent: 2
type: Transform
- - uid: 11340
+ - uid: 11344
components:
- pos: 76.5,-63.5
parent: 2
type: Transform
- - uid: 11341
+ - uid: 11345
components:
- pos: 77.5,-63.5
parent: 2
type: Transform
- - uid: 11342
+ - uid: 11346
components:
- pos: 78.5,-63.5
parent: 2
type: Transform
- - uid: 11343
+ - uid: 11347
components:
- pos: 79.5,-63.5
parent: 2
type: Transform
- - uid: 11344
+ - uid: 11348
components:
- pos: 79.5,-51.5
parent: 2
type: Transform
- - uid: 11345
+ - uid: 11349
components:
- pos: 79.5,-52.5
parent: 2
type: Transform
- - uid: 11346
+ - uid: 11350
components:
- pos: 79.5,-53.5
parent: 2
type: Transform
- - uid: 11347
+ - uid: 11351
components:
- pos: 79.5,-54.5
parent: 2
type: Transform
- - uid: 11348
+ - uid: 11352
components:
- pos: 79.5,-55.5
parent: 2
type: Transform
- - uid: 11349
+ - uid: 11353
components:
- pos: 79.5,-56.5
parent: 2
type: Transform
- - uid: 11350
+ - uid: 11354
components:
- pos: 79.5,-57.5
parent: 2
type: Transform
- - uid: 11351
+ - uid: 11355
components:
- pos: 79.5,-58.5
parent: 2
type: Transform
- - uid: 11352
+ - uid: 11356
components:
- pos: 79.5,-59.5
parent: 2
type: Transform
- - uid: 11353
+ - uid: 11357
components:
- pos: 79.5,-60.5
parent: 2
type: Transform
- - uid: 11354
+ - uid: 11358
components:
- pos: 79.5,-61.5
parent: 2
type: Transform
- - uid: 11355
+ - uid: 11359
components:
- pos: 79.5,-62.5
parent: 2
type: Transform
- - uid: 11356
+ - uid: 11360
components:
- pos: 72.5,-71.5
parent: 2
type: Transform
- - uid: 11357
+ - uid: 11361
components:
- pos: 71.5,-69.5
parent: 2
type: Transform
- - uid: 11358
+ - uid: 11362
components:
- pos: 55.5,-32.5
parent: 2
type: Transform
- - uid: 11359
+ - uid: 11363
components:
- pos: 54.5,-32.5
parent: 2
type: Transform
- - uid: 11360
+ - uid: 11364
components:
- pos: 53.5,-32.5
parent: 2
type: Transform
- - uid: 11361
+ - uid: 11365
components:
- pos: 67.5,-74.5
parent: 2
type: Transform
- - uid: 11362
+ - uid: 11366
components:
- pos: 66.5,-74.5
parent: 2
type: Transform
- - uid: 11363
+ - uid: 11367
components:
- pos: 65.5,-74.5
parent: 2
type: Transform
- - uid: 11364
+ - uid: 11368
components:
- pos: 64.5,-74.5
parent: 2
type: Transform
- - uid: 11365
+ - uid: 11369
components:
- pos: 63.5,-74.5
parent: 2
type: Transform
- - uid: 11366
+ - uid: 11370
components:
- pos: 62.5,-74.5
parent: 2
type: Transform
- - uid: 11367
+ - uid: 11371
components:
- pos: 61.5,-74.5
parent: 2
type: Transform
- - uid: 11368
+ - uid: 11372
components:
- pos: 60.5,-74.5
parent: 2
type: Transform
- - uid: 11369
+ - uid: 11373
components:
- pos: 59.5,-74.5
parent: 2
type: Transform
- - uid: 11370
+ - uid: 11374
components:
- pos: 58.5,-74.5
parent: 2
type: Transform
- - uid: 11371
+ - uid: 11375
components:
- pos: 55.5,-30.5
parent: 2
type: Transform
- - uid: 11372
+ - uid: 11376
components:
- pos: 55.5,-31.5
parent: 2
type: Transform
- - uid: 11373
+ - uid: 11377
components:
- pos: 59.5,-22.5
parent: 2
type: Transform
- - uid: 11374
+ - uid: 11378
components:
- pos: 59.5,-41.5
parent: 2
type: Transform
- - uid: 11375
+ - uid: 11379
components:
- pos: 59.5,-40.5
parent: 2
type: Transform
- - uid: 11376
+ - uid: 11380
components:
- pos: 59.5,-39.5
parent: 2
type: Transform
- - uid: 11377
+ - uid: 11381
components:
- pos: 59.5,-38.5
parent: 2
type: Transform
- - uid: 11378
+ - uid: 11382
components:
- pos: 57.5,-38.5
parent: 2
type: Transform
- - uid: 11379
+ - uid: 11383
components:
- pos: 56.5,-38.5
parent: 2
type: Transform
- - uid: 11380
+ - uid: 11384
components:
- pos: 59.5,-23.5
parent: 2
type: Transform
- - uid: 11381
+ - uid: 11385
components:
- pos: 59.5,-24.5
parent: 2
type: Transform
- - uid: 11382
+ - uid: 11386
components:
- rot: 3.141592653589793 rad
pos: 65.5,-20.5
parent: 2
type: Transform
- - uid: 11383
+ - uid: 11387
components:
- rot: 3.141592653589793 rad
pos: 65.5,-19.5
parent: 2
type: Transform
- - uid: 11384
+ - uid: 11388
components:
- rot: 3.141592653589793 rad
pos: 65.5,-18.5
parent: 2
type: Transform
- - uid: 11385
+ - uid: 11389
components:
- rot: 3.141592653589793 rad
pos: 66.5,-18.5
parent: 2
type: Transform
- - uid: 11386
+ - uid: 11390
components:
- pos: 75.5,-51.5
parent: 2
type: Transform
- - uid: 11387
+ - uid: 11391
components:
- pos: 75.5,-52.5
parent: 2
type: Transform
- - uid: 11388
+ - uid: 11392
components:
- pos: 75.5,-53.5
parent: 2
type: Transform
- - uid: 11389
+ - uid: 11393
components:
- pos: 75.5,-54.5
parent: 2
type: Transform
- - uid: 11390
+ - uid: 11394
components:
- pos: 75.5,-55.5
parent: 2
type: Transform
- - uid: 11391
+ - uid: 11395
components:
- pos: 75.5,-56.5
parent: 2
type: Transform
- - uid: 11392
+ - uid: 11396
components:
- pos: 60.5,-26.5
parent: 2
type: Transform
- - uid: 11393
+ - uid: 11397
components:
- pos: 59.5,-26.5
parent: 2
type: Transform
- - uid: 11394
+ - uid: 11398
components:
- pos: 58.5,-26.5
parent: 2
type: Transform
- - uid: 11395
+ - uid: 11399
components:
- pos: 57.5,-26.5
parent: 2
type: Transform
- - uid: 11396
+ - uid: 11400
components:
- pos: 56.5,-26.5
parent: 2
type: Transform
- - uid: 11397
+ - uid: 11401
components:
- pos: 64.5,-58.5
parent: 2
type: Transform
- - uid: 11398
+ - uid: 11402
components:
- pos: 71.5,-57.5
parent: 2
type: Transform
- - uid: 11399
+ - uid: 11403
components:
- pos: 71.5,-58.5
parent: 2
type: Transform
- - uid: 11400
+ - uid: 11404
components:
- pos: 71.5,-59.5
parent: 2
type: Transform
- - uid: 11401
+ - uid: 11405
components:
- pos: 71.5,-60.5
parent: 2
type: Transform
- - uid: 11402
+ - uid: 11406
components:
- pos: 71.5,-61.5
parent: 2
type: Transform
- - uid: 11403
+ - uid: 11407
components:
- pos: 47.5,-65.5
parent: 2
type: Transform
- - uid: 11404
+ - uid: 11408
components:
- pos: 48.5,-65.5
parent: 2
type: Transform
- - uid: 11405
+ - uid: 11409
components:
- pos: 49.5,-65.5
parent: 2
type: Transform
- - uid: 11406
+ - uid: 11410
components:
- pos: 50.5,-65.5
parent: 2
type: Transform
- - uid: 11407
+ - uid: 11411
components:
- pos: 52.5,-66.5
parent: 2
type: Transform
- - uid: 11408
+ - uid: 11412
components:
- pos: 69.5,-63.5
parent: 2
type: Transform
- - uid: 11409
+ - uid: 11413
components:
- pos: 67.5,-66.5
parent: 2
type: Transform
- - uid: 11410
+ - uid: 11414
components:
- pos: 11.5,-89.5
parent: 2
type: Transform
- - uid: 11411
+ - uid: 11415
components:
- pos: 12.5,-89.5
parent: 2
type: Transform
- - uid: 11412
+ - uid: 11416
components:
- pos: 12.5,-90.5
parent: 2
type: Transform
- - uid: 11413
+ - uid: 11417
components:
- pos: 12.5,-91.5
parent: 2
type: Transform
- - uid: 11414
+ - uid: 11418
components:
- pos: 5.5,-89.5
parent: 2
type: Transform
- - uid: 11415
+ - uid: 11419
components:
- pos: 6.5,-89.5
parent: 2
type: Transform
- - uid: 11416
+ - uid: 11420
components:
- pos: 7.5,-89.5
parent: 2
type: Transform
- - uid: 11417
+ - uid: 11421
components:
- pos: 8.5,-89.5
parent: 2
type: Transform
- - uid: 11418
+ - uid: 11422
components:
- pos: 9.5,-89.5
parent: 2
type: Transform
- - uid: 11419
+ - uid: 11423
components:
- pos: 10.5,-89.5
parent: 2
type: Transform
- - uid: 11420
+ - uid: 11424
components:
- pos: 3.5,-89.5
parent: 2
type: Transform
- - uid: 11421
+ - uid: 11425
components:
- pos: 70.5,-25.5
parent: 2
type: Transform
- - uid: 11422
+ - uid: 11426
components:
- pos: 69.5,-25.5
parent: 2
type: Transform
- - uid: 11423
+ - uid: 11427
components:
- pos: 68.5,-25.5
parent: 2
type: Transform
- - uid: 11424
+ - uid: 11428
components:
- pos: 66.5,-25.5
parent: 2
type: Transform
- - uid: 11425
+ - uid: 11429
components:
- pos: 67.5,-25.5
parent: 2
type: Transform
- - uid: 11426
+ - uid: 11430
components:
- pos: 71.5,-26.5
parent: 2
type: Transform
- - uid: 11427
+ - uid: 11431
components:
- pos: 72.5,-26.5
parent: 2
type: Transform
- - uid: 11428
+ - uid: 11432
components:
- pos: 73.5,-26.5
parent: 2
type: Transform
- - uid: 11429
+ - uid: 11433
components:
- pos: 74.5,-26.5
parent: 2
type: Transform
- - uid: 11430
+ - uid: 11434
components:
- pos: 75.5,-26.5
parent: 2
type: Transform
- - uid: 11431
+ - uid: 11435
components:
- pos: 76.5,-26.5
parent: 2
type: Transform
- - uid: 11432
+ - uid: 11436
components:
- pos: 77.5,-26.5
parent: 2
type: Transform
- - uid: 11433
+ - uid: 11437
components:
- pos: 78.5,-26.5
parent: 2
type: Transform
- - uid: 11434
+ - uid: 11438
components:
- pos: -46.5,-53.5
parent: 2
type: Transform
- - uid: 11435
+ - uid: 11439
components:
- pos: -46.5,-54.5
parent: 2
type: Transform
- - uid: 11436
+ - uid: 11440
components:
- pos: 6.5,-88.5
parent: 2
type: Transform
- - uid: 11437
+ - uid: 11441
components:
- pos: 6.5,-87.5
parent: 2
type: Transform
- - uid: 11438
+ - uid: 11442
components:
- pos: 8.5,-75.5
parent: 2
type: Transform
- - uid: 11439
+ - uid: 11443
components:
- pos: 9.5,-75.5
parent: 2
type: Transform
- - uid: 11440
+ - uid: 11444
components:
- pos: 10.5,-75.5
parent: 2
type: Transform
- - uid: 11441
+ - uid: 11445
components:
- pos: 11.5,-75.5
parent: 2
type: Transform
- - uid: 11442
+ - uid: 11446
components:
- pos: 12.5,-75.5
parent: 2
type: Transform
- - uid: 11443
+ - uid: 11447
components:
- pos: 13.5,-75.5
parent: 2
type: Transform
- - uid: 11444
+ - uid: 11448
components:
- pos: 14.5,-75.5
parent: 2
type: Transform
- - uid: 11445
+ - uid: 11449
components:
- pos: 15.5,-75.5
parent: 2
type: Transform
- - uid: 11446
+ - uid: 11450
components:
- pos: 16.5,-75.5
parent: 2
type: Transform
- - uid: 11447
+ - uid: 11451
components:
- pos: 17.5,-75.5
parent: 2
type: Transform
- - uid: 11448
+ - uid: 11452
components:
- pos: 18.5,-75.5
parent: 2
type: Transform
- - uid: 11449
+ - uid: 11453
components:
- pos: 19.5,-75.5
parent: 2
type: Transform
- - uid: 11450
+ - uid: 11454
components:
- pos: 20.5,-75.5
parent: 2
type: Transform
- - uid: 11451
+ - uid: 11455
components:
- pos: 21.5,-75.5
parent: 2
type: Transform
- - uid: 11452
+ - uid: 11456
components:
- pos: 69.5,4.5
parent: 2
type: Transform
- - uid: 11453
+ - uid: 11457
components:
- pos: 69.5,2.5
parent: 2
type: Transform
- - uid: 11454
+ - uid: 11458
components:
- pos: 69.5,1.5
parent: 2
type: Transform
- - uid: 11455
+ - uid: 11459
components:
- pos: 69.5,0.5
parent: 2
type: Transform
- - uid: 11456
+ - uid: 11460
components:
- pos: 69.5,-0.5
parent: 2
type: Transform
- - uid: 11457
+ - uid: 11461
components:
- pos: 69.5,-1.5
parent: 2
type: Transform
- - uid: 11458
+ - uid: 11462
components:
- pos: 69.5,31.5
parent: 2
type: Transform
- - uid: 11459
+ - uid: 11463
components:
- pos: 69.5,30.5
parent: 2
type: Transform
- - uid: 11460
+ - uid: 11464
components:
- pos: 69.5,29.5
parent: 2
type: Transform
- - uid: 11461
+ - uid: 11465
components:
- pos: 69.5,28.5
parent: 2
type: Transform
- - uid: 11462
+ - uid: 11466
components:
- pos: 69.5,27.5
parent: 2
type: Transform
- - uid: 11463
+ - uid: 11467
components:
- pos: 69.5,26.5
parent: 2
type: Transform
- - uid: 11464
+ - uid: 11468
components:
- pos: 69.5,25.5
parent: 2
type: Transform
- - uid: 11465
+ - uid: 11469
components:
- pos: 69.5,24.5
parent: 2
type: Transform
- - uid: 11466
+ - uid: 11470
components:
- pos: 69.5,23.5
parent: 2
type: Transform
- - uid: 11467
+ - uid: 11471
components:
- pos: 69.5,22.5
parent: 2
type: Transform
- - uid: 11468
+ - uid: 11472
components:
- pos: 69.5,21.5
parent: 2
type: Transform
- - uid: 11469
+ - uid: 11473
components:
- pos: 69.5,20.5
parent: 2
type: Transform
- - uid: 11470
+ - uid: 11474
components:
- pos: 69.5,19.5
parent: 2
type: Transform
- - uid: 11471
+ - uid: 11475
components:
- pos: 69.5,18.5
parent: 2
type: Transform
- - uid: 11472
+ - uid: 11476
components:
- pos: 69.5,17.5
parent: 2
type: Transform
- - uid: 11473
+ - uid: 11477
components:
- pos: 69.5,16.5
parent: 2
type: Transform
- - uid: 11474
+ - uid: 11478
components:
- pos: 69.5,15.5
parent: 2
type: Transform
- - uid: 11475
+ - uid: 11479
components:
- pos: 69.5,14.5
parent: 2
type: Transform
- - uid: 11476
+ - uid: 11480
components:
- pos: 69.5,13.5
parent: 2
type: Transform
- - uid: 11477
+ - uid: 11481
components:
- pos: 69.5,12.5
parent: 2
type: Transform
- - uid: 11478
+ - uid: 11482
components:
- pos: 69.5,11.5
parent: 2
type: Transform
- - uid: 11479
+ - uid: 11483
components:
- pos: 69.5,10.5
parent: 2
type: Transform
- - uid: 11480
+ - uid: 11484
components:
- pos: 69.5,9.5
parent: 2
type: Transform
- - uid: 11481
+ - uid: 11485
components:
- pos: 69.5,8.5
parent: 2
type: Transform
- - uid: 11482
+ - uid: 11486
components:
- pos: 69.5,7.5
parent: 2
type: Transform
- - uid: 11483
+ - uid: 11487
components:
- pos: 69.5,6.5
parent: 2
type: Transform
- - uid: 11484
+ - uid: 11488
components:
- pos: 69.5,5.5
parent: 2
type: Transform
- - uid: 11485
+ - uid: 11489
components:
- pos: 75.5,43.5
parent: 2
type: Transform
- - uid: 11486
+ - uid: 11490
components:
- pos: 63.5,37.5
parent: 2
type: Transform
- - uid: 11487
+ - uid: 11491
components:
- pos: 63.5,38.5
parent: 2
type: Transform
- - uid: 11488
+ - uid: 11492
components:
- pos: 63.5,39.5
parent: 2
type: Transform
- - uid: 11489
+ - uid: 11493
components:
- pos: 64.5,39.5
parent: 2
type: Transform
- - uid: 11490
+ - uid: 11494
components:
- pos: 65.5,39.5
parent: 2
type: Transform
- - uid: 11491
+ - uid: 11495
components:
- pos: 66.5,39.5
parent: 2
type: Transform
- - uid: 11492
+ - uid: 11496
components:
- pos: 67.5,39.5
parent: 2
type: Transform
- - uid: 11493
+ - uid: 11497
components:
- pos: 67.5,40.5
parent: 2
type: Transform
- - uid: 11494
+ - uid: 11498
components:
- pos: 67.5,41.5
parent: 2
type: Transform
- - uid: 11495
+ - uid: 11499
components:
- pos: 68.5,41.5
parent: 2
type: Transform
- - uid: 11496
+ - uid: 11500
components:
- pos: 69.5,41.5
parent: 2
type: Transform
- - uid: 11497
+ - uid: 11501
components:
- pos: 70.5,41.5
parent: 2
type: Transform
- - uid: 11498
+ - uid: 11502
components:
- pos: 71.5,41.5
parent: 2
type: Transform
- - uid: 11499
+ - uid: 11503
components:
- pos: 72.5,41.5
parent: 2
type: Transform
- - uid: 11500
+ - uid: 11504
components:
- pos: 72.5,42.5
parent: 2
type: Transform
- - uid: 11501
+ - uid: 11505
components:
- pos: 73.5,42.5
parent: 2
type: Transform
- - uid: 11502
+ - uid: 11506
components:
- pos: 74.5,42.5
parent: 2
type: Transform
- - uid: 11503
+ - uid: 11507
components:
- pos: 75.5,42.5
parent: 2
type: Transform
- - uid: 11504
+ - uid: 11508
components:
- pos: 75.5,44.5
parent: 2
type: Transform
- - uid: 11505
+ - uid: 11509
components:
- pos: 75.5,45.5
parent: 2
type: Transform
- - uid: 11506
+ - uid: 11510
components:
- pos: 75.5,46.5
parent: 2
type: Transform
- - uid: 11507
+ - uid: 11511
components:
- pos: 74.5,46.5
parent: 2
type: Transform
- - uid: 11508
+ - uid: 11512
components:
- pos: 74.5,47.5
parent: 2
type: Transform
- - uid: 11509
+ - uid: 11513
components:
- pos: 74.5,48.5
parent: 2
type: Transform
- - uid: 11510
+ - uid: 11514
components:
- pos: 74.5,49.5
parent: 2
type: Transform
- - uid: 11511
+ - uid: 11515
components:
- pos: 74.5,50.5
parent: 2
type: Transform
- - uid: 11512
+ - uid: 11516
components:
- pos: 74.5,51.5
parent: 2
type: Transform
- - uid: 11513
+ - uid: 11517
components:
- pos: 74.5,52.5
parent: 2
type: Transform
- - uid: 11514
+ - uid: 11518
components:
- pos: 74.5,53.5
parent: 2
type: Transform
- - uid: 11515
+ - uid: 11519
components:
- pos: 74.5,54.5
parent: 2
type: Transform
- - uid: 11516
+ - uid: 11520
components:
- pos: 74.5,55.5
parent: 2
type: Transform
- - uid: 11517
+ - uid: 11521
components:
- pos: 74.5,56.5
parent: 2
type: Transform
- - uid: 11518
+ - uid: 11522
components:
- pos: 74.5,57.5
parent: 2
type: Transform
- - uid: 11519
+ - uid: 11523
components:
- pos: 60.5,58.5
parent: 2
type: Transform
- - uid: 11520
+ - uid: 11524
components:
- pos: 73.5,57.5
parent: 2
type: Transform
- - uid: 11521
+ - uid: 11525
components:
- pos: 72.5,57.5
parent: 2
type: Transform
- - uid: 11522
+ - uid: 11526
components:
- pos: 71.5,57.5
parent: 2
type: Transform
- - uid: 11523
+ - uid: 11527
components:
- pos: 70.5,57.5
parent: 2
type: Transform
- - uid: 11524
+ - uid: 11528
components:
- pos: 69.5,57.5
parent: 2
type: Transform
- - uid: 11525
+ - uid: 11529
components:
- pos: 68.5,57.5
parent: 2
type: Transform
- - uid: 11526
+ - uid: 11530
components:
- pos: 67.5,57.5
parent: 2
type: Transform
- - uid: 11527
+ - uid: 11531
components:
- pos: 66.5,57.5
parent: 2
type: Transform
- - uid: 11528
+ - uid: 11532
components:
- pos: 65.5,57.5
parent: 2
type: Transform
- - uid: 11529
+ - uid: 11533
components:
- pos: 64.5,57.5
parent: 2
type: Transform
- - uid: 11530
+ - uid: 11534
components:
- pos: 63.5,57.5
parent: 2
type: Transform
- - uid: 11531
+ - uid: 11535
components:
- pos: 62.5,57.5
parent: 2
type: Transform
- - uid: 11532
+ - uid: 11536
components:
- pos: 61.5,57.5
parent: 2
type: Transform
- - uid: 11533
+ - uid: 11537
components:
- pos: 60.5,57.5
parent: 2
type: Transform
- - uid: 11534
+ - uid: 11538
components:
- pos: 60.5,59.5
parent: 2
type: Transform
- - uid: 11535
+ - uid: 11539
components:
- pos: 60.5,60.5
parent: 2
type: Transform
- - uid: 11536
+ - uid: 11540
components:
- pos: 60.5,61.5
parent: 2
type: Transform
- - uid: 11537
+ - uid: 11541
components:
- pos: 60.5,62.5
parent: 2
type: Transform
- - uid: 11538
+ - uid: 11542
components:
- pos: 60.5,63.5
parent: 2
type: Transform
- - uid: 11539
+ - uid: 11543
components:
- pos: 47.5,55.5
parent: 2
type: Transform
- - uid: 11540
+ - uid: 11544
components:
- pos: 59.5,63.5
parent: 2
type: Transform
- - uid: 11541
+ - uid: 11545
components:
- pos: 58.5,63.5
parent: 2
type: Transform
- - uid: 11542
+ - uid: 11546
components:
- pos: 57.5,63.5
parent: 2
type: Transform
- - uid: 11543
+ - uid: 11547
components:
- pos: 56.5,63.5
parent: 2
type: Transform
- - uid: 11544
+ - uid: 11548
components:
- pos: 55.5,63.5
parent: 2
type: Transform
- - uid: 11545
+ - uid: 11549
components:
- pos: 54.5,63.5
parent: 2
type: Transform
- - uid: 11546
+ - uid: 11550
components:
- pos: 53.5,63.5
parent: 2
type: Transform
- - uid: 11547
+ - uid: 11551
components:
- pos: 52.5,63.5
parent: 2
type: Transform
- - uid: 11548
+ - uid: 11552
components:
- pos: 51.5,63.5
parent: 2
type: Transform
- - uid: 11549
+ - uid: 11553
components:
- pos: 50.5,63.5
parent: 2
type: Transform
- - uid: 11550
+ - uid: 11554
components:
- pos: 49.5,63.5
parent: 2
type: Transform
- - uid: 11551
+ - uid: 11555
components:
- pos: 48.5,63.5
parent: 2
type: Transform
- - uid: 11552
+ - uid: 11556
components:
- pos: 48.5,62.5
parent: 2
type: Transform
- - uid: 11553
+ - uid: 11557
components:
- pos: 48.5,61.5
parent: 2
type: Transform
- - uid: 11554
+ - uid: 11558
components:
- pos: 48.5,60.5
parent: 2
type: Transform
- - uid: 11555
+ - uid: 11559
components:
- pos: 48.5,59.5
parent: 2
type: Transform
- - uid: 11556
+ - uid: 11560
components:
- pos: 48.5,58.5
parent: 2
type: Transform
- - uid: 11557
+ - uid: 11561
components:
- pos: 48.5,57.5
parent: 2
type: Transform
- - uid: 11558
+ - uid: 11562
components:
- pos: 48.5,56.5
parent: 2
type: Transform
- - uid: 11559
+ - uid: 11563
components:
- pos: 48.5,55.5
parent: 2
type: Transform
- - uid: 11560
+ - uid: 11564
components:
- pos: 46.5,55.5
parent: 2
type: Transform
- - uid: 11561
+ - uid: 11565
components:
- pos: 45.5,55.5
parent: 2
type: Transform
- - uid: 11562
+ - uid: 11566
components:
- pos: 44.5,55.5
parent: 2
type: Transform
- - uid: 11563
+ - uid: 11567
components:
- pos: 43.5,55.5
parent: 2
type: Transform
- - uid: 11564
+ - uid: 11568
components:
- pos: 42.5,55.5
parent: 2
type: Transform
- - uid: 11565
+ - uid: 11569
components:
- pos: 41.5,55.5
parent: 2
type: Transform
- - uid: 11566
+ - uid: 11570
components:
- pos: 40.5,55.5
parent: 2
type: Transform
- - uid: 11567
+ - uid: 11571
components:
- pos: 37.5,55.5
parent: 2
type: Transform
- - uid: 11568
+ - uid: 11572
components:
- pos: 36.5,55.5
parent: 2
type: Transform
- - uid: 11569
+ - uid: 11573
components:
- pos: 35.5,55.5
parent: 2
type: Transform
- - uid: 11570
+ - uid: 11574
components:
- pos: 34.5,55.5
parent: 2
type: Transform
- - uid: 11571
+ - uid: 11575
components:
- pos: 33.5,55.5
parent: 2
type: Transform
- - uid: 11572
+ - uid: 11576
components:
- pos: 32.5,55.5
parent: 2
type: Transform
- - uid: 11573
+ - uid: 11577
components:
- pos: 31.5,55.5
parent: 2
type: Transform
- - uid: 11574
+ - uid: 11578
components:
- pos: 30.5,55.5
parent: 2
type: Transform
- - uid: 11575
+ - uid: 11579
components:
- pos: 66.5,35.5
parent: 2
type: Transform
- - uid: 11576
+ - uid: 11580
components:
- pos: 66.5,34.5
parent: 2
type: Transform
- - uid: 11577
+ - uid: 11581
components:
- pos: 66.5,33.5
parent: 2
type: Transform
- - uid: 11578
+ - uid: 11582
components:
- pos: 66.5,32.5
parent: 2
type: Transform
- - uid: 11579
+ - uid: 11583
components:
- pos: 66.5,31.5
parent: 2
type: Transform
- - uid: 11580
+ - uid: 11584
components:
- pos: 67.5,31.5
parent: 2
type: Transform
- - uid: 11581
+ - uid: 11585
components:
- pos: 68.5,31.5
parent: 2
type: Transform
- - uid: 11582
+ - uid: 11586
components:
- rot: 3.141592653589793 rad
pos: 27.5,-90.5
parent: 2
type: Transform
- - uid: 11583
+ - uid: 11587
components:
- rot: 3.141592653589793 rad
pos: 13.5,-89.5
parent: 2
type: Transform
- - uid: 11584
+ - uid: 11588
components:
- pos: -7.5,-9.5
parent: 2
type: Transform
- - uid: 11585
+ - uid: 11589
components:
- pos: -8.5,-9.5
parent: 2
type: Transform
- - uid: 11586
+ - uid: 11590
components:
- pos: -9.5,-9.5
parent: 2
type: Transform
- - uid: 11587
+ - uid: 11591
components:
- pos: -10.5,-9.5
parent: 2
type: Transform
- - uid: 11588
+ - uid: 11592
components:
- pos: -11.5,-9.5
parent: 2
type: Transform
- - uid: 11589
+ - uid: 11593
components:
- pos: -12.5,-9.5
parent: 2
type: Transform
- - uid: 11590
+ - uid: 11594
components:
- pos: -13.5,-9.5
parent: 2
type: Transform
- - uid: 11591
+ - uid: 11595
components:
- pos: -15.5,-14.5
parent: 2
type: Transform
- - uid: 11592
+ - uid: 11596
components:
- pos: -16.5,-14.5
parent: 2
type: Transform
- - uid: 11593
+ - uid: 11597
components:
- pos: -46.5,52.5
parent: 2
type: Transform
- - uid: 11594
+ - uid: 11598
components:
- pos: -46.5,51.5
parent: 2
type: Transform
- - uid: 11595
+ - uid: 11599
components:
- pos: -46.5,50.5
parent: 2
type: Transform
- - uid: 11596
+ - uid: 11600
components:
- pos: -46.5,49.5
parent: 2
type: Transform
- - uid: 11597
+ - uid: 11601
components:
- pos: -46.5,-56.5
parent: 2
type: Transform
- - uid: 11598
+ - uid: 11602
components:
- pos: -46.5,-57.5
parent: 2
type: Transform
- - uid: 11599
+ - uid: 11603
components:
- pos: -46.5,-58.5
parent: 2
type: Transform
- - uid: 11600
+ - uid: 11604
components:
- pos: -47.5,-58.5
parent: 2
type: Transform
- - uid: 11601
+ - uid: 11605
components:
- pos: -48.5,-58.5
parent: 2
type: Transform
- - uid: 11602
+ - uid: 11606
components:
- pos: -49.5,-58.5
parent: 2
type: Transform
- - uid: 11603
+ - uid: 11607
components:
- pos: -29.5,-19.5
parent: 2
type: Transform
- - uid: 11604
+ - uid: 11608
components:
- pos: -29.5,-20.5
parent: 2
type: Transform
- - uid: 11605
+ - uid: 11609
components:
- pos: -29.5,-21.5
parent: 2
type: Transform
- - uid: 11606
+ - uid: 11610
components:
- rot: 1.5707963267948966 rad
pos: -25.5,-60.5
parent: 2
type: Transform
- - uid: 11607
+ - uid: 11611
components:
- rot: 1.5707963267948966 rad
pos: -24.5,-60.5
parent: 2
type: Transform
- - uid: 11608
+ - uid: 11612
components:
- rot: 1.5707963267948966 rad
pos: -23.5,-60.5
parent: 2
type: Transform
- - uid: 11609
+ - uid: 11613
components:
- rot: 1.5707963267948966 rad
pos: -23.5,-58.5
parent: 2
type: Transform
- - uid: 11610
+ - uid: 11614
components:
- pos: 63.5,2.5
parent: 2
type: Transform
- - uid: 11611
+ - uid: 11615
components:
- rot: 3.141592653589793 rad
pos: 52.5,-93.5
parent: 2
type: Transform
- - uid: 11612
+ - uid: 11616
components:
- rot: 3.141592653589793 rad
pos: 52.5,-80.5
parent: 2
type: Transform
- - uid: 11613
+ - uid: 11617
components:
- rot: 3.141592653589793 rad
pos: 52.5,-76.5
parent: 2
type: Transform
- - uid: 11614
+ - uid: 11618
components:
- rot: 3.141592653589793 rad
pos: 51.5,-95.5
parent: 2
type: Transform
- - uid: 11615
+ - uid: 11619
components:
- rot: 3.141592653589793 rad
pos: 52.5,-95.5
parent: 2
type: Transform
- - uid: 11616
+ - uid: 11620
components:
- pos: 6.5,-73.5
parent: 2
type: Transform
- - uid: 11617
+ - uid: 11621
components:
- rot: 3.141592653589793 rad
pos: 50.5,-95.5
parent: 2
type: Transform
- - uid: 11618
+ - uid: 11622
components:
- rot: 3.141592653589793 rad
pos: 52.5,-75.5
parent: 2
type: Transform
- - uid: 11619
+ - uid: 11623
components:
- rot: 3.141592653589793 rad
pos: 52.5,-74.5
parent: 2
type: Transform
- - uid: 11620
+ - uid: 11624
components:
- rot: 3.141592653589793 rad
pos: 54.5,-74.5
parent: 2
type: Transform
- - uid: 11621
+ - uid: 11625
components:
- rot: 3.141592653589793 rad
pos: 53.5,-74.5
parent: 2
type: Transform
- - uid: 11622
+ - uid: 11626
components:
- rot: 1.5707963267948966 rad
pos: -19.5,-48.5
parent: 2
type: Transform
- - uid: 11623
+ - uid: 11627
components:
- rot: 1.5707963267948966 rad
pos: -19.5,-49.5
parent: 2
type: Transform
- - uid: 11624
+ - uid: 11628
components:
- rot: 3.141592653589793 rad
pos: 5.5,-19.5
parent: 2
type: Transform
- - uid: 11625
+ - uid: 11629
components:
- rot: 3.141592653589793 rad
pos: 5.5,-20.5
parent: 2
type: Transform
- - uid: 11626
+ - uid: 11630
components:
- rot: 3.141592653589793 rad
pos: 5.5,-21.5
parent: 2
type: Transform
- - uid: 11627
+ - uid: 11631
components:
- rot: 3.141592653589793 rad
pos: 5.5,-22.5
parent: 2
type: Transform
- - uid: 11628
+ - uid: 11632
components:
- rot: 3.141592653589793 rad
pos: 4.5,-16.5
parent: 2
type: Transform
- - uid: 11629
+ - uid: 11633
components:
- rot: 3.141592653589793 rad
pos: 6.5,-14.5
parent: 2
type: Transform
- - uid: 11630
+ - uid: 11634
components:
- rot: 3.141592653589793 rad
pos: 5.5,-14.5
parent: 2
type: Transform
- - uid: 11631
+ - uid: 11635
components:
- rot: 3.141592653589793 rad
pos: 4.5,-14.5
parent: 2
type: Transform
- - uid: 11632
+ - uid: 11636
components:
- rot: 1.5707963267948966 rad
pos: -20.5,-49.5
parent: 2
type: Transform
- - uid: 11633
+ - uid: 11637
components:
- pos: 6.5,-74.5
parent: 2
type: Transform
- - uid: 11634
+ - uid: 11638
components:
- pos: 6.5,-75.5
parent: 2
type: Transform
- - uid: 11635
+ - uid: 11639
components:
- pos: 6.5,-76.5
parent: 2
type: Transform
- - uid: 11636
+ - uid: 11640
components:
- pos: 6.5,-77.5
parent: 2
type: Transform
- - uid: 11637
+ - uid: 11641
components:
- pos: 6.5,-78.5
parent: 2
type: Transform
- - uid: 11638
+ - uid: 11642
components:
- pos: 6.5,-79.5
parent: 2
type: Transform
- - uid: 11639
+ - uid: 11643
components:
- pos: 6.5,-80.5
parent: 2
type: Transform
- - uid: 11640
+ - uid: 11644
components:
- pos: 6.5,-81.5
parent: 2
type: Transform
- - uid: 11641
+ - uid: 11645
components:
- pos: 6.5,-82.5
parent: 2
type: Transform
- - uid: 11642
+ - uid: 11646
components:
- rot: -1.5707963267948966 rad
pos: -47.5,49.5
parent: 2
type: Transform
- - uid: 11643
+ - uid: 11647
components:
- rot: -1.5707963267948966 rad
pos: -48.5,49.5
parent: 2
type: Transform
- - uid: 11644
+ - uid: 11648
components:
- rot: -1.5707963267948966 rad
pos: -49.5,49.5
parent: 2
type: Transform
- - uid: 11645
+ - uid: 11649
components:
- rot: -1.5707963267948966 rad
pos: -49.5,48.5
parent: 2
type: Transform
- - uid: 11646
+ - uid: 11650
components:
- pos: 71.5,-25.5
parent: 2
type: Transform
- - uid: 11647
+ - uid: 11651
components:
- rot: 1.5707963267948966 rad
pos: -61.5,-58.5
parent: 2
type: Transform
- - uid: 11648
+ - uid: 11652
components:
- rot: 1.5707963267948966 rad
pos: -61.5,-59.5
parent: 2
type: Transform
- - uid: 11649
+ - uid: 11653
components:
- rot: 1.5707963267948966 rad
pos: -62.5,-59.5
parent: 2
type: Transform
- - uid: 11650
+ - uid: 11654
components:
- rot: 1.5707963267948966 rad
pos: -63.5,-59.5
parent: 2
type: Transform
- - uid: 11651
+ - uid: 11655
components:
- rot: 1.5707963267948966 rad
pos: -64.5,-59.5
parent: 2
type: Transform
- - uid: 11652
+ - uid: 11656
components:
- rot: 1.5707963267948966 rad
pos: -65.5,-59.5
parent: 2
type: Transform
- - uid: 11653
+ - uid: 11657
components:
- rot: 1.5707963267948966 rad
pos: -66.5,-59.5
parent: 2
type: Transform
- - uid: 11654
+ - uid: 11658
components:
- rot: 1.5707963267948966 rad
pos: -67.5,-59.5
parent: 2
type: Transform
- - uid: 11655
+ - uid: 11659
components:
- rot: 1.5707963267948966 rad
pos: -68.5,-59.5
parent: 2
type: Transform
- - uid: 11656
+ - uid: 11660
components:
- rot: 1.5707963267948966 rad
pos: -69.5,-59.5
parent: 2
type: Transform
- - uid: 11657
+ - uid: 11661
components:
- rot: 1.5707963267948966 rad
pos: -70.5,-59.5
parent: 2
type: Transform
- - uid: 11658
+ - uid: 11662
components:
- rot: 1.5707963267948966 rad
pos: -71.5,-59.5
parent: 2
type: Transform
- - uid: 11659
+ - uid: 11663
components:
- rot: 1.5707963267948966 rad
pos: -72.5,-59.5
parent: 2
type: Transform
- - uid: 11660
+ - uid: 11664
components:
- rot: 1.5707963267948966 rad
pos: -73.5,-59.5
parent: 2
type: Transform
- - uid: 11661
+ - uid: 11665
components:
- rot: 1.5707963267948966 rad
pos: -74.5,-59.5
parent: 2
type: Transform
- - uid: 11662
+ - uid: 11666
components:
- rot: 3.141592653589793 rad
pos: 45.5,-80.5
parent: 2
type: Transform
- - uid: 11663
+ - uid: 11667
components:
- rot: 3.141592653589793 rad
pos: 45.5,-79.5
parent: 2
type: Transform
- - uid: 11664
+ - uid: 11668
components:
- rot: 1.5707963267948966 rad
pos: 33.5,-91.5
parent: 2
type: Transform
- - uid: 11665
+ - uid: 11669
components:
- rot: 1.5707963267948966 rad
pos: 45.5,-91.5
parent: 2
type: Transform
- - uid: 11666
+ - uid: 11670
components:
- rot: 1.5707963267948966 rad
pos: 45.5,-92.5
parent: 2
type: Transform
- - uid: 11667
+ - uid: 11671
components:
- rot: 1.5707963267948966 rad
pos: 45.5,-93.5
parent: 2
type: Transform
- - uid: 11668
+ - uid: 11672
components:
- rot: 1.5707963267948966 rad
pos: 33.5,-92.5
parent: 2
type: Transform
- - uid: 11669
+ - uid: 11673
components:
- rot: 1.5707963267948966 rad
pos: 33.5,-93.5
parent: 2
type: Transform
- - uid: 11670
+ - uid: 11674
components:
- rot: 3.141592653589793 rad
pos: 45.5,-78.5
parent: 2
type: Transform
- - uid: 11671
+ - uid: 11675
components:
- rot: 3.141592653589793 rad
pos: 45.5,-77.5
parent: 2
type: Transform
- - uid: 11672
+ - uid: 11676
components:
- rot: 3.141592653589793 rad
pos: 45.5,-76.5
parent: 2
type: Transform
- - uid: 11673
+ - uid: 11677
components:
- rot: 3.141592653589793 rad
pos: 45.5,-75.5
parent: 2
type: Transform
- - uid: 11674
+ - uid: 11678
components:
- rot: 3.141592653589793 rad
pos: 33.5,-80.5
parent: 2
type: Transform
- - uid: 11675
+ - uid: 11679
components:
- rot: 3.141592653589793 rad
pos: 33.5,-79.5
parent: 2
type: Transform
- - uid: 11676
+ - uid: 11680
components:
- rot: 3.141592653589793 rad
pos: 33.5,-78.5
parent: 2
type: Transform
- - uid: 11677
+ - uid: 11681
components:
- rot: 3.141592653589793 rad
pos: 33.5,-77.5
parent: 2
type: Transform
- - uid: 11678
+ - uid: 11682
components:
- rot: 3.141592653589793 rad
pos: 33.5,-76.5
parent: 2
type: Transform
- - uid: 11679
+ - uid: 11683
components:
- rot: 3.141592653589793 rad
pos: 33.5,-75.5
parent: 2
type: Transform
- - uid: 11680
+ - uid: 11684
components:
- pos: -79.5,-33.5
parent: 2
type: Transform
- - uid: 11681
+ - uid: 11685
components:
- pos: -79.5,-39.5
parent: 2
type: Transform
- - uid: 11682
+ - uid: 11686
components:
- pos: -79.5,-38.5
parent: 2
type: Transform
- - uid: 11683
+ - uid: 11687
components:
- pos: -79.5,-34.5
parent: 2
type: Transform
- - uid: 11684
+ - uid: 11688
components:
- pos: -79.5,-36.5
parent: 2
type: Transform
- - uid: 11685
+ - uid: 11689
components:
- pos: -79.5,-43.5
parent: 2
type: Transform
- - uid: 11686
+ - uid: 11690
components:
- pos: -79.5,-37.5
parent: 2
type: Transform
- - uid: 11687
+ - uid: 11691
components:
- pos: -79.5,-42.5
parent: 2
type: Transform
- - uid: 11688
+ - uid: 11692
components:
- pos: -79.5,-35.5
parent: 2
type: Transform
- - uid: 11689
+ - uid: 11693
components:
- rot: 3.141592653589793 rad
pos: -79.5,-44.5
parent: 2
type: Transform
- - uid: 11690
+ - uid: 11694
components:
- pos: -70.5,-37.5
parent: 2
type: Transform
- - uid: 11691
+ - uid: 11695
components:
- pos: -69.5,-37.5
parent: 2
type: Transform
- - uid: 11692
+ - uid: 11696
components:
- pos: -68.5,-37.5
parent: 2
type: Transform
- - uid: 11693
+ - uid: 11697
components:
- pos: -67.5,-37.5
parent: 2
type: Transform
- - uid: 11694
+ - uid: 11698
components:
- pos: -66.5,-37.5
parent: 2
type: Transform
- - uid: 11695
+ - uid: 11699
components:
- pos: -65.5,-37.5
parent: 2
type: Transform
- - uid: 11696
+ - uid: 11700
components:
- pos: -65.5,-38.5
parent: 2
type: Transform
- - uid: 11697
+ - uid: 11701
components:
- pos: -65.5,-39.5
parent: 2
type: Transform
- - uid: 11698
+ - uid: 11702
components:
- pos: -65.5,-40.5
parent: 2
type: Transform
- - uid: 11699
+ - uid: 11703
components:
- pos: -65.5,-41.5
parent: 2
type: Transform
- - uid: 11700
+ - uid: 11704
components:
- pos: -65.5,-42.5
parent: 2
type: Transform
- - uid: 11701
+ - uid: 11705
components:
- pos: -65.5,-43.5
parent: 2
type: Transform
- - uid: 11702
+ - uid: 11706
components:
- pos: -65.5,-45.5
parent: 2
type: Transform
- - uid: 11703
+ - uid: 11707
components:
- rot: 3.141592653589793 rad
pos: -79.5,-45.5
parent: 2
type: Transform
- - uid: 11704
+ - uid: 11708
components:
- rot: 3.141592653589793 rad
pos: -79.5,-46.5
parent: 2
type: Transform
- - uid: 11705
+ - uid: 11709
components:
- rot: 3.141592653589793 rad
pos: -79.5,-47.5
parent: 2
type: Transform
- - uid: 11706
+ - uid: 11710
components:
- rot: 3.141592653589793 rad
pos: -79.5,-48.5
parent: 2
type: Transform
- - uid: 11707
+ - uid: 11711
components:
- rot: 3.141592653589793 rad
pos: -78.5,-48.5
parent: 2
type: Transform
- - uid: 11708
+ - uid: 11712
components:
- rot: 3.141592653589793 rad
pos: -77.5,-48.5
parent: 2
type: Transform
- - uid: 11709
+ - uid: 11713
components:
- rot: 3.141592653589793 rad
pos: -76.5,-48.5
parent: 2
type: Transform
- - uid: 11710
+ - uid: 11714
components:
- rot: 3.141592653589793 rad
pos: -75.5,-48.5
parent: 2
type: Transform
- - uid: 11711
+ - uid: 11715
components:
- rot: -1.5707963267948966 rad
pos: -65.5,-44.5
parent: 2
type: Transform
- - uid: 11712
+ - uid: 11716
components:
- rot: -1.5707963267948966 rad
pos: -61.5,-47.5
parent: 2
type: Transform
- - uid: 11713
+ - uid: 11717
components:
- rot: -1.5707963267948966 rad
pos: -61.5,-46.5
parent: 2
type: Transform
- - uid: 11714
+ - uid: 11718
components:
- rot: -1.5707963267948966 rad
pos: -61.5,-45.5
parent: 2
type: Transform
- - uid: 11715
+ - uid: 11719
components:
- rot: 3.141592653589793 rad
pos: -78.5,-38.5
parent: 2
type: Transform
- - uid: 11716
+ - uid: 11720
components:
- rot: 1.5707963267948966 rad
pos: -15.5,15.5
parent: 2
type: Transform
- - uid: 11717
+ - uid: 11721
components:
- rot: 3.141592653589793 rad
pos: -77.5,-38.5
parent: 2
type: Transform
- - uid: 11718
+ - uid: 11722
components:
- rot: 3.141592653589793 rad
pos: -75.5,-38.5
parent: 2
type: Transform
- - uid: 11719
+ - uid: 11723
components:
- rot: 3.141592653589793 rad
pos: -52.5,-33.5
parent: 2
type: Transform
- - uid: 11720
+ - uid: 11724
components:
- rot: -1.5707963267948966 rad
pos: -43.5,-38.5
parent: 2
type: Transform
- - uid: 11721
+ - uid: 11725
components:
- rot: -1.5707963267948966 rad
pos: -43.5,-39.5
parent: 2
type: Transform
- - uid: 11722
+ - uid: 11726
components:
- rot: -1.5707963267948966 rad
pos: -43.5,-40.5
parent: 2
type: Transform
- - uid: 11723
+ - uid: 11727
components:
- rot: 3.141592653589793 rad
pos: 23.5,-32.5
parent: 2
type: Transform
- - uid: 11724
+ - uid: 11728
components:
- rot: 3.141592653589793 rad
pos: 26.5,-32.5
parent: 2
type: Transform
- - uid: 11725
+ - uid: 11729
components:
- pos: 12.5,25.5
parent: 2
type: Transform
- - uid: 11726
+ - uid: 11730
components:
- pos: 11.5,25.5
parent: 2
type: Transform
- - uid: 11727
+ - uid: 11731
components:
- pos: 10.5,25.5
parent: 2
type: Transform
- - uid: 11728
+ - uid: 11732
components:
- pos: 9.5,25.5
parent: 2
type: Transform
- - uid: 11729
+ - uid: 11733
components:
- pos: 8.5,25.5
parent: 2
type: Transform
- - uid: 11730
+ - uid: 11734
components:
- rot: 3.141592653589793 rad
pos: 39.5,58.5
parent: 2
type: Transform
- - uid: 11731
+ - uid: 11735
components:
- rot: 3.141592653589793 rad
pos: 39.5,57.5
parent: 2
type: Transform
- - uid: 11732
+ - uid: 11736
components:
- rot: 3.141592653589793 rad
pos: 39.5,56.5
parent: 2
type: Transform
- - uid: 11733
+ - uid: 11737
components:
- rot: 1.5707963267948966 rad
pos: 39.5,55.5
parent: 2
type: Transform
- - uid: 11734
+ - uid: 11738
components:
- rot: 1.5707963267948966 rad
pos: 38.5,55.5
parent: 2
type: Transform
-- proto: Cautery
- entities:
- - uid: 11735
- components:
- - rot: -1.5707963267948966 rad
- pos: 0.5414771,-66.9678
- parent: 2
- type: Transform
- - uid: 11736
- components:
- - pos: 73.52661,-47.78304
- parent: 2
- type: Transform
-- proto: Chair
- entities:
- - uid: 11737
- components:
- - rot: -1.5707963267948966 rad
- pos: 58.5,58.5
- parent: 2
- type: Transform
- - uid: 11738
- components:
- - rot: -1.5707963267948966 rad
- pos: 18.5,-72.5
- parent: 2
- type: Transform
- uid: 11739
components:
- - rot: -1.5707963267948966 rad
- pos: -51.5,-75.5
+ - rot: 1.5707963267948966 rad
+ pos: 15.5,-45.5
parent: 2
type: Transform
- uid: 11740
components:
- - pos: 14.5,-72.5
+ - rot: 1.5707963267948966 rad
+ pos: 14.5,-47.5
parent: 2
type: Transform
- uid: 11741
components:
- - rot: -1.5707963267948966 rad
- pos: -51.5,-79.5
+ - rot: 1.5707963267948966 rad
+ pos: 14.5,-46.5
parent: 2
type: Transform
+- proto: Cautery
+ entities:
- uid: 11742
components:
- rot: -1.5707963267948966 rad
- pos: -51.5,-78.5
+ pos: 0.5414771,-66.9678
parent: 2
type: Transform
- uid: 11743
components:
- - rot: -1.5707963267948966 rad
- pos: -51.5,-77.5
+ - pos: 73.52661,-47.78304
parent: 2
type: Transform
+- proto: Chair
+ entities:
- uid: 11744
components:
- rot: -1.5707963267948966 rad
- pos: -51.5,-74.5
+ pos: 58.5,58.5
parent: 2
type: Transform
- uid: 11745
components:
- rot: -1.5707963267948966 rad
- pos: -51.5,-73.5
+ pos: 18.5,-72.5
parent: 2
type: Transform
- uid: 11746
components:
- - pos: -23.5,-38.5
+ - rot: -1.5707963267948966 rad
+ pos: -51.5,-75.5
parent: 2
type: Transform
- uid: 11747
components:
- - pos: 1.5,-52.5
+ - pos: 14.5,-72.5
parent: 2
type: Transform
- uid: 11748
components:
- - rot: 3.141592653589793 rad
- pos: 27.5,-4.5
+ - rot: -1.5707963267948966 rad
+ pos: -51.5,-79.5
parent: 2
type: Transform
- uid: 11749
components:
- - pos: -5.5,-45.5
+ - rot: -1.5707963267948966 rad
+ pos: -51.5,-78.5
parent: 2
type: Transform
- uid: 11750
components:
- - pos: -2.5,-32.5
+ - rot: -1.5707963267948966 rad
+ pos: -51.5,-77.5
parent: 2
type: Transform
- uid: 11751
components:
- - rot: 1.5707963267948966 rad
- pos: 17.5,-65.5
+ - rot: -1.5707963267948966 rad
+ pos: -51.5,-74.5
parent: 2
type: Transform
- uid: 11752
components:
- - rot: 1.5707963267948966 rad
- pos: 17.5,-66.5
+ - rot: -1.5707963267948966 rad
+ pos: -51.5,-73.5
parent: 2
type: Transform
- uid: 11753
components:
- - rot: 1.5707963267948966 rad
- pos: 18.5,-0.5
+ - pos: -23.5,-38.5
parent: 2
type: Transform
- uid: 11754
components:
- - pos: -14.5,-52.5
+ - rot: 3.141592653589793 rad
+ pos: 27.5,-4.5
parent: 2
type: Transform
- uid: 11755
components:
- - pos: 2.5,-52.5
+ - pos: -2.5,-32.5
parent: 2
type: Transform
- uid: 11756
components:
- - pos: -12.5,-52.5
+ - rot: 1.5707963267948966 rad
+ pos: 17.5,-65.5
parent: 2
type: Transform
- uid: 11757
components:
- - pos: -11.5,-52.5
+ - rot: 1.5707963267948966 rad
+ pos: 17.5,-66.5
parent: 2
type: Transform
- uid: 11758
components:
- - pos: 16.5,-67.5
+ - rot: 1.5707963267948966 rad
+ pos: 18.5,-0.5
parent: 2
type: Transform
- uid: 11759
components:
- - rot: 1.5707963267948966 rad
- pos: 18.5,2.5
+ - pos: 16.5,-67.5
parent: 2
type: Transform
- uid: 11760
components:
- - pos: 27.5,6.5
+ - rot: 1.5707963267948966 rad
+ pos: 18.5,2.5
parent: 2
type: Transform
- uid: 11761
components:
- - pos: 26.5,6.5
+ - pos: 27.5,6.5
parent: 2
type: Transform
- uid: 11762
components:
- - rot: 1.5707963267948966 rad
- pos: 7.5,13.5
+ - pos: 26.5,6.5
parent: 2
type: Transform
- uid: 11763
components:
- rot: 1.5707963267948966 rad
- pos: 7.5,14.5
+ pos: 7.5,13.5
parent: 2
type: Transform
- uid: 11764
components:
- - pos: -4.5,-45.5
+ - rot: 1.5707963267948966 rad
+ pos: 7.5,14.5
parent: 2
type: Transform
- uid: 11765
- components:
- - pos: -3.5,-45.5
- parent: 2
- type: Transform
- - uid: 11766
components:
- rot: 3.141592653589793 rad
pos: 23.5,-4.5
parent: 2
type: Transform
- - uid: 11767
+ - uid: 11766
components:
- rot: 3.141592653589793 rad
pos: 26.5,-4.5
parent: 2
type: Transform
- - uid: 11768
+ - uid: 11767
components:
- pos: 22.5,6.5
parent: 2
type: Transform
- - uid: 11769
+ - uid: 11768
components:
- pos: 25.5,6.5
parent: 2
type: Transform
- - uid: 11770
+ - uid: 11769
components:
- pos: 21.5,6.5
parent: 2
type: Transform
- - uid: 11771
+ - uid: 11770
components:
- rot: 3.141592653589793 rad
pos: -2.5,-34.5
parent: 2
type: Transform
- - uid: 11772
+ - uid: 11771
components:
- pos: 15.5,-67.5
parent: 2
type: Transform
- - uid: 11773
+ - uid: 11772
components:
- rot: 3.141592653589793 rad
pos: 22.5,-4.5
parent: 2
type: Transform
- - uid: 11774
+ - uid: 11773
components:
- rot: 3.141592653589793 rad
pos: 21.5,-4.5
parent: 2
type: Transform
- - uid: 11775
+ - uid: 11774
components:
- rot: -1.5707963267948966 rad
pos: 65.5,-9.5
parent: 2
type: Transform
- - uid: 11776
+ - uid: 11775
components:
- rot: -1.5707963267948966 rad
pos: -7.5,-36.5
parent: 2
type: Transform
- - uid: 11777
+ - uid: 11776
components:
- rot: -1.5707963267948966 rad
pos: -7.5,-37.5
parent: 2
type: Transform
- - uid: 11778
+ - uid: 11777
components:
- rot: -1.5707963267948966 rad
pos: -7.5,-38.5
parent: 2
type: Transform
- - uid: 11779
+ - uid: 11778
components:
- pos: 17.5,23.5
parent: 2
type: Transform
- - uid: 11780
+ - uid: 11779
components:
- pos: 15.5,23.5
parent: 2
type: Transform
- - uid: 11781
+ - uid: 11780
components:
- rot: 3.141592653589793 rad
pos: 16.5,20.5
parent: 2
type: Transform
- - uid: 11782
+ - uid: 11781
components:
- pos: 35.5,19.5
parent: 2
type: Transform
- - uid: 11783
+ - uid: 11782
components:
- rot: 3.141592653589793 rad
pos: 35.5,17.5
parent: 2
type: Transform
- - uid: 11784
+ - uid: 11783
components:
- rot: -1.5707963267948966 rad
pos: 18.5,29.5
parent: 2
type: Transform
- - uid: 11785
+ - uid: 11784
components:
- rot: -1.5707963267948966 rad
pos: 18.5,28.5
parent: 2
type: Transform
- - uid: 11786
+ - uid: 11785
components:
- pos: 48.5,19.5
parent: 2
type: Transform
- - uid: 11787
+ - uid: 11786
components:
- pos: 52.5,8.5
parent: 2
type: Transform
- - uid: 11788
+ - uid: 11787
components:
- rot: 3.141592653589793 rad
pos: 52.5,5.5
parent: 2
type: Transform
- - uid: 11789
+ - uid: 11788
components:
- pos: 51.5,8.5
parent: 2
type: Transform
- - uid: 11790
+ - uid: 11789
components:
- rot: 3.141592653589793 rad
pos: 51.5,5.5
parent: 2
type: Transform
- - uid: 11791
+ - uid: 11790
components:
- pos: 58.5,21.5
parent: 2
type: Transform
- - uid: 11792
+ - uid: 11791
components:
- pos: 57.5,21.5
parent: 2
type: Transform
- - uid: 11793
+ - uid: 11792
components:
- rot: 3.141592653589793 rad
pos: 58.5,18.5
parent: 2
type: Transform
- - uid: 11794
+ - uid: 11793
components:
- rot: 3.141592653589793 rad
pos: 57.5,18.5
parent: 2
type: Transform
- - uid: 11795
+ - uid: 11794
components:
- rot: 1.5707963267948966 rad
pos: 42.5,-3.5
parent: 2
type: Transform
- - uid: 11796
+ - uid: 11795
components:
- pos: 59.5,-10.5
parent: 2
type: Transform
- - uid: 11797
+ - uid: 11796
components:
- pos: 58.5,-10.5
parent: 2
type: Transform
- - uid: 11798
+ - uid: 11797
components:
- pos: 57.5,-10.5
parent: 2
type: Transform
- - uid: 11799
+ - uid: 11798
components:
- pos: 56.5,-10.5
parent: 2
type: Transform
- - uid: 11800
+ - uid: 11799
components:
- pos: 55.5,-10.5
parent: 2
type: Transform
- - uid: 11801
+ - uid: 11800
components:
- rot: 3.141592653589793 rad
pos: 55.5,-6.5
parent: 2
type: Transform
- - uid: 11802
+ - uid: 11801
components:
- rot: 3.141592653589793 rad
pos: 56.5,-6.5
parent: 2
type: Transform
- - uid: 11803
+ - uid: 11802
components:
- rot: 3.141592653589793 rad
pos: 57.5,-6.5
parent: 2
type: Transform
- - uid: 11804
+ - uid: 11803
components:
- rot: 3.141592653589793 rad
pos: 58.5,-6.5
parent: 2
type: Transform
- - uid: 11805
+ - uid: 11804
components:
- rot: 3.141592653589793 rad
pos: 59.5,-6.5
parent: 2
type: Transform
- - uid: 11806
+ - uid: 11805
components:
- pos: 55.5,-14.5
parent: 2
type: Transform
- - uid: 11807
+ - uid: 11806
components:
- pos: 56.5,-14.5
parent: 2
type: Transform
- - uid: 11808
+ - uid: 11807
components:
- pos: 59.5,-14.5
parent: 2
type: Transform
- - uid: 11809
+ - uid: 11808
components:
- pos: 58.5,-14.5
parent: 2
type: Transform
- - uid: 11810
+ - uid: 11809
components:
- pos: 61.5,-10.5
parent: 2
type: Transform
- - uid: 11811
+ - uid: 11810
components:
- pos: 60.5,-10.5
parent: 2
type: Transform
- - uid: 11812
+ - uid: 11811
components:
- pos: 44.5,-48.5
parent: 2
type: Transform
- - uid: 11813
+ - uid: 11812
components:
- pos: 46.5,-48.5
parent: 2
type: Transform
- - uid: 11814
+ - uid: 11813
components:
- rot: 3.141592653589793 rad
pos: 28.5,-55.5
parent: 2
type: Transform
- - uid: 11815
+ - uid: 11814
components:
- rot: 3.141592653589793 rad
pos: 29.5,-55.5
parent: 2
type: Transform
- - uid: 11816
+ - uid: 11815
components:
- rot: 3.141592653589793 rad
pos: 30.5,-55.5
parent: 2
type: Transform
- - uid: 11817
+ - uid: 11816
components:
- rot: 3.141592653589793 rad
pos: 30.5,-54.5
parent: 2
type: Transform
- - uid: 11818
+ - uid: 11817
components:
- rot: 3.141592653589793 rad
pos: 29.5,-54.5
parent: 2
type: Transform
- - uid: 11819
+ - uid: 11818
components:
- rot: 3.141592653589793 rad
pos: 28.5,-54.5
parent: 2
type: Transform
- - uid: 11820
+ - uid: 11819
components:
- rot: 3.141592653589793 rad
pos: 32.5,-54.5
parent: 2
type: Transform
- - uid: 11821
+ - uid: 11820
components:
- rot: 3.141592653589793 rad
pos: 33.5,-54.5
parent: 2
type: Transform
- - uid: 11822
+ - uid: 11821
components:
- rot: 3.141592653589793 rad
pos: 34.5,-54.5
parent: 2
type: Transform
- - uid: 11823
+ - uid: 11822
components:
- rot: 3.141592653589793 rad
pos: 34.5,-55.5
parent: 2
type: Transform
- - uid: 11824
+ - uid: 11823
components:
- rot: 3.141592653589793 rad
pos: 33.5,-55.5
parent: 2
type: Transform
- - uid: 11825
+ - uid: 11824
components:
- rot: 3.141592653589793 rad
pos: 32.5,-55.5
parent: 2
type: Transform
- - uid: 11826
+ - uid: 11825
components:
- rot: 3.141592653589793 rad
pos: 32.5,-53.5
parent: 2
type: Transform
- - uid: 11827
+ - uid: 11826
components:
- rot: 3.141592653589793 rad
pos: 33.5,-53.5
parent: 2
type: Transform
- - uid: 11828
+ - uid: 11827
components:
- rot: 3.141592653589793 rad
pos: 34.5,-53.5
parent: 2
type: Transform
- - uid: 11829
+ - uid: 11828
components:
- rot: 3.141592653589793 rad
pos: 30.5,-53.5
parent: 2
type: Transform
- - uid: 11830
+ - uid: 11829
components:
- rot: 3.141592653589793 rad
pos: 29.5,-53.5
parent: 2
type: Transform
- - uid: 11831
+ - uid: 11830
components:
- rot: 3.141592653589793 rad
pos: 28.5,-53.5
parent: 2
type: Transform
- - uid: 11832
+ - uid: 11831
components:
- pos: 33.5,-48.5
parent: 2
type: Transform
- - uid: 11833
+ - uid: 11832
components:
- rot: 1.5707963267948966 rad
pos: 29.5,-48.5
parent: 2
type: Transform
- - uid: 11834
+ - uid: 11833
components:
- rot: -1.5707963267948966 rad
pos: -22.5,-9.5
parent: 2
type: Transform
- - uid: 11835
+ - uid: 11834
components:
- rot: -1.5707963267948966 rad
pos: -22.5,-10.5
parent: 2
type: Transform
- - uid: 11836
+ - uid: 11835
components:
- rot: -1.5707963267948966 rad
pos: -22.5,-13.5
parent: 2
type: Transform
- - uid: 11837
+ - uid: 11836
components:
- rot: -1.5707963267948966 rad
pos: -22.5,-14.5
parent: 2
type: Transform
- - uid: 11838
+ - uid: 11837
components:
- rot: 3.141592653589793 rad
pos: -48.5,10.5
parent: 2
type: Transform
- - uid: 11839
+ - uid: 11838
components:
- pos: 44.5,-70.5
parent: 2
type: Transform
- - uid: 11840
+ - uid: 11839
components:
- pos: 43.5,-70.5
parent: 2
type: Transform
- - uid: 11841
+ - uid: 11840
components:
- pos: 42.5,-70.5
parent: 2
type: Transform
- - uid: 11842
+ - uid: 11841
components:
- pos: 41.5,-70.5
parent: 2
type: Transform
- - uid: 11843
+ - uid: 11842
components:
- pos: 37.5,-70.5
parent: 2
type: Transform
- - uid: 11844
+ - uid: 11843
components:
- pos: 36.5,-70.5
parent: 2
type: Transform
- - uid: 11845
+ - uid: 11844
components:
- pos: 35.5,-70.5
parent: 2
type: Transform
- - uid: 11846
+ - uid: 11845
components:
- pos: 34.5,-70.5
parent: 2
type: Transform
- - uid: 11847
+ - uid: 11846
components:
- rot: 3.141592653589793 rad
pos: -49.5,10.5
parent: 2
type: Transform
- - uid: 11848
+ - uid: 11847
components:
- rot: 3.141592653589793 rad
pos: 23.5,16.5
parent: 2
type: Transform
- - uid: 11849
+ - uid: 11848
components:
- rot: 1.5707963267948966 rad
pos: -56.5,-75.5
parent: 2
type: Transform
- - uid: 11850
+ - uid: 11849
components:
- rot: 1.5707963267948966 rad
pos: -56.5,-76.5
parent: 2
type: Transform
- - uid: 11851
+ - uid: 11850
components:
- rot: 1.5707963267948966 rad
pos: -56.5,-77.5
parent: 2
type: Transform
- - uid: 11852
+ - uid: 11851
components:
- rot: 3.141592653589793 rad
pos: -53.5,-82.5
parent: 2
type: Transform
- - uid: 11853
+ - uid: 11852
components:
- rot: 3.141592653589793 rad
pos: -55.5,-82.5
parent: 2
type: Transform
- - uid: 11854
+ - uid: 11853
components:
- pos: -53.5,-70.5
parent: 2
type: Transform
- - uid: 11855
+ - uid: 11854
components:
- pos: -54.5,-70.5
parent: 2
type: Transform
- - uid: 11856
+ - uid: 11855
components:
- pos: -55.5,-70.5
parent: 2
type: Transform
- - uid: 11857
+ - uid: 11856
components:
- rot: -1.5707963267948966 rad
pos: -36.5,-81.5
parent: 2
type: Transform
- - uid: 11858
+ - uid: 11857
components:
- rot: -1.5707963267948966 rad
pos: -36.5,-82.5
parent: 2
type: Transform
- - uid: 11859
+ - uid: 11858
components:
- rot: -1.5707963267948966 rad
pos: -36.5,-83.5
parent: 2
type: Transform
- - uid: 11860
+ - uid: 11859
components:
- rot: 1.5707963267948966 rad
pos: -47.5,-81.5
parent: 2
type: Transform
- - uid: 11861
+ - uid: 11860
components:
- rot: 1.5707963267948966 rad
pos: -47.5,-82.5
parent: 2
type: Transform
- - uid: 11862
+ - uid: 11861
components:
- rot: 1.5707963267948966 rad
pos: -47.5,-83.5
parent: 2
type: Transform
- - uid: 11863
+ - uid: 11862
components:
- pos: -54.5,-58.5
parent: 2
type: Transform
- - uid: 11864
+ - uid: 11863
components:
- rot: 1.5707963267948966 rad
pos: 69.5,-56.5
parent: 2
type: Transform
- - uid: 11865
+ - uid: 11864
components:
- rot: 3.141592653589793 rad
pos: 34.5,-36.5
parent: 2
type: Transform
- - uid: 11866
+ - uid: 11865
components:
- pos: 70.5,-55.5
parent: 2
type: Transform
- - uid: 11867
+ - uid: 11866
components:
- rot: -1.5707963267948966 rad
pos: -57.5,-51.5
parent: 2
type: Transform
- - uid: 11868
+ - uid: 11867
components:
- rot: -1.5707963267948966 rad
pos: -57.5,-52.5
parent: 2
type: Transform
- - uid: 11869
+ - uid: 11868
components:
- rot: -1.5707963267948966 rad
pos: -22.5,24.5
parent: 2
type: Transform
- - uid: 11870
+ - uid: 11869
components:
- rot: -1.5707963267948966 rad
pos: -22.5,23.5
parent: 2
type: Transform
- - uid: 11871
+ - uid: 11870
components:
- rot: -1.5707963267948966 rad
pos: -22.5,22.5
parent: 2
type: Transform
- - uid: 11872
+ - uid: 11871
components:
- rot: -1.5707963267948966 rad
pos: -22.5,19.5
parent: 2
type: Transform
- - uid: 11873
+ - uid: 11872
components:
- rot: -1.5707963267948966 rad
pos: -22.5,18.5
parent: 2
type: Transform
- - uid: 11874
+ - uid: 11873
components:
- rot: 3.141592653589793 rad
pos: -0.5,34.5
parent: 2
type: Transform
- - uid: 11875
+ - uid: 11874
components:
- rot: 3.141592653589793 rad
pos: -1.5,34.5
parent: 2
type: Transform
- - uid: 11876
+ - uid: 11875
components:
- rot: 3.141592653589793 rad
pos: -2.5,34.5
parent: 2
type: Transform
- - uid: 11877
- components:
- - pos: 4.5,-52.5
- parent: 2
- type: Transform
- - uid: 11878
+ - uid: 11876
components:
- rot: -1.5707963267948966 rad
pos: 65.5,-7.5
parent: 2
type: Transform
- - uid: 11879
+ - uid: 11877
components:
- rot: 3.141592653589793 rad
pos: 61.5,-6.5
parent: 2
type: Transform
- - uid: 11880
+ - uid: 11878
components:
- rot: 3.141592653589793 rad
pos: 60.5,-6.5
parent: 2
type: Transform
- - uid: 11881
+ - uid: 11879
components:
- pos: 31.5,-60.5
parent: 2
type: Transform
- - uid: 11882
+ - uid: 11880
components:
- rot: 3.141592653589793 rad
pos: 30.5,-62.5
parent: 2
type: Transform
- - uid: 11883
+ - uid: 11881
components:
- pos: 30.5,-60.5
parent: 2
type: Transform
- - uid: 11884
+ - uid: 11882
components:
- rot: -1.5707963267948966 rad
pos: 65.5,-8.5
parent: 2
type: Transform
- - uid: 11885
+ - uid: 11883
components:
- rot: 3.141592653589793 rad
pos: -50.5,10.5
parent: 2
type: Transform
- - uid: 11886
+ - uid: 11884
components:
- rot: 3.141592653589793 rad
pos: 25.5,-4.5
parent: 2
type: Transform
- - uid: 11887
+ - uid: 11885
components:
- pos: 71.5,-55.5
parent: 2
type: Transform
- - uid: 11888
+ - uid: 11886
components:
- pos: 23.5,6.5
parent: 2
type: Transform
- - uid: 11889
+ - uid: 11887
components:
- rot: 3.141592653589793 rad
pos: -5.5,-16.5
parent: 2
type: Transform
- - uid: 11890
+ - uid: 11888
components:
- rot: 3.141592653589793 rad
pos: 30.5,-43.5
parent: 2
type: Transform
- - uid: 11891
+ - uid: 11889
components:
- rot: 3.141592653589793 rad
pos: 29.5,-43.5
parent: 2
type: Transform
- - uid: 11892
+ - uid: 11890
components:
- rot: 3.141592653589793 rad
pos: 28.5,-43.5
parent: 2
type: Transform
- - uid: 11893
- components:
- - rot: 3.141592653589793 rad
- pos: 18.5,-43.5
- parent: 2
- type: Transform
- - uid: 11894
- components:
- - rot: 3.141592653589793 rad
- pos: 17.5,-43.5
- parent: 2
- type: Transform
- - uid: 11895
- components:
- - rot: 3.141592653589793 rad
- pos: 16.5,-43.5
- parent: 2
- type: Transform
- - uid: 11896
+ - uid: 11891
components:
- rot: 3.141592653589793 rad
pos: 44.5,-43.5
parent: 2
type: Transform
- - uid: 11897
+ - uid: 11892
components:
- rot: 3.141592653589793 rad
pos: 43.5,-43.5
parent: 2
type: Transform
- - uid: 11898
+ - uid: 11893
components:
- rot: 3.141592653589793 rad
pos: 42.5,-43.5
parent: 2
type: Transform
- - uid: 11899
+ - uid: 11894
components:
- pos: 34.5,-34.5
parent: 2
type: Transform
- - uid: 11900
+ - uid: 11895
components:
- pos: 3.5,-40.5
parent: 2
type: Transform
- - uid: 11901
+ - uid: 11896
components:
- pos: -14.5,8.5
parent: 2
type: Transform
- - uid: 11902
+ - uid: 11897
components:
- pos: -15.5,8.5
parent: 2
type: Transform
- - uid: 11903
+ - uid: 11898
components:
- rot: 3.141592653589793 rad
pos: -40.5,-0.5
parent: 2
type: Transform
- - uid: 11904
+ - uid: 11899
components:
- rot: 3.141592653589793 rad
pos: -39.5,-0.5
parent: 2
type: Transform
- - uid: 11905
+ - uid: 11900
components:
- rot: 3.141592653589793 rad
pos: -38.5,-0.5
parent: 2
type: Transform
- - uid: 11906
+ - uid: 11901
components:
- rot: 3.141592653589793 rad
pos: -36.5,-0.5
parent: 2
type: Transform
- - uid: 11907
+ - uid: 11902
components:
- rot: 3.141592653589793 rad
pos: -35.5,-0.5
parent: 2
type: Transform
- - uid: 11908
+ - uid: 11903
components:
- rot: 3.141592653589793 rad
pos: -34.5,-0.5
parent: 2
type: Transform
- - uid: 11909
+ - uid: 11904
components:
- rot: -1.5707963267948966 rad
pos: -17.5,-70.5
parent: 2
type: Transform
- - uid: 11910
+ - uid: 11905
components:
- rot: -1.5707963267948966 rad
pos: -17.5,-71.5
parent: 2
type: Transform
- - uid: 11911
+ - uid: 11906
components:
- rot: 3.141592653589793 rad
pos: 31.5,-62.5
parent: 2
type: Transform
- - uid: 11912
+ - uid: 11907
components:
- rot: -1.5707963267948966 rad
pos: -18.5,-34.5
parent: 2
type: Transform
- - uid: 11913
+ - uid: 11908
components:
- rot: -1.5707963267948966 rad
pos: -18.5,-33.5
parent: 2
type: Transform
- - uid: 11914
+ - uid: 11909
components:
- rot: -1.5707963267948966 rad
pos: -18.5,-32.5
parent: 2
type: Transform
- - uid: 11915
+ - uid: 11910
components:
- rot: 1.5707963267948966 rad
pos: -34.5,-67.5
parent: 2
type: Transform
- - uid: 11916
+ - uid: 11911
components:
- rot: 3.141592653589793 rad
pos: 22.5,16.5
parent: 2
type: Transform
- - uid: 11917
+ - uid: 11912
components:
- rot: 3.141592653589793 rad
pos: 21.5,16.5
parent: 2
type: Transform
- - uid: 11918
+ - uid: 11913
components:
- rot: 3.141592653589793 rad
pos: 32.5,-18.5
parent: 2
type: Transform
- - uid: 11919
+ - uid: 11914
components:
- rot: 3.141592653589793 rad
pos: 31.5,-18.5
parent: 2
type: Transform
- - uid: 11920
+ - uid: 11915
components:
- rot: 3.141592653589793 rad
pos: 30.5,-18.5
parent: 2
type: Transform
- - uid: 11921
+ - uid: 11916
components:
- rot: 3.141592653589793 rad
pos: 20.5,-18.5
parent: 2
type: Transform
- - uid: 11922
+ - uid: 11917
components:
- rot: 3.141592653589793 rad
pos: 19.5,-18.5
parent: 2
type: Transform
- - uid: 11923
+ - uid: 11918
components:
- rot: 3.141592653589793 rad
pos: 18.5,-18.5
parent: 2
type: Transform
- - uid: 11924
+ - uid: 11919
components:
- rot: 1.5707963267948966 rad
pos: 18.5,1.5
parent: 2
type: Transform
- - uid: 11925
+ - uid: 11920
components:
- rot: 1.5707963267948966 rad
pos: 18.5,0.5
parent: 2
type: Transform
- - uid: 11926
+ - uid: 11921
components:
- rot: 1.5707963267948966 rad
pos: 50.5,56.5
parent: 2
type: Transform
- - uid: 11927
+ - uid: 11922
components:
- rot: 1.5707963267948966 rad
pos: 50.5,57.5
parent: 2
type: Transform
- - uid: 11928
+ - uid: 11923
components:
- rot: 1.5707963267948966 rad
pos: 50.5,58.5
parent: 2
type: Transform
- - uid: 11929
+ - uid: 11924
components:
- rot: -1.5707963267948966 rad
pos: 55.5,29.5
parent: 2
type: Transform
- - uid: 11930
+ - uid: 11925
components:
- rot: -1.5707963267948966 rad
pos: 55.5,28.5
parent: 2
type: Transform
- - uid: 11931
+ - uid: 11926
components:
- rot: 1.5707963267948966 rad
pos: 52.5,29.5
parent: 2
type: Transform
- - uid: 11932
+ - uid: 11927
components:
- rot: 1.5707963267948966 rad
pos: 52.5,28.5
parent: 2
type: Transform
- - uid: 11933
+ - uid: 11928
components:
- pos: -18.5,67.5
parent: 2
type: Transform
- - uid: 11934
+ - uid: 11929
components:
- pos: -16.5,67.5
parent: 2
type: Transform
- - uid: 11935
+ - uid: 11930
components:
- pos: 6.5,34.5
parent: 2
type: Transform
- - uid: 11936
+ - uid: 11931
components:
- pos: 10.5,34.5
parent: 2
type: Transform
- - uid: 11937
+ - uid: 11932
components:
- pos: -1.5,43.5
parent: 2
type: Transform
- - uid: 11938
+ - uid: 11933
components:
- pos: -3.5,43.5
parent: 2
type: Transform
- - uid: 11939
+ - uid: 11934
components:
- pos: -16.5,63.5
parent: 2
type: Transform
- - uid: 11940
+ - uid: 11935
components:
- pos: -17.5,63.5
parent: 2
type: Transform
- - uid: 11941
+ - uid: 11936
components:
- pos: -18.5,63.5
parent: 2
type: Transform
- - uid: 11942
+ - uid: 11937
components:
- rot: -1.5707963267948966 rad
pos: -15.5,62.5
parent: 2
type: Transform
- - uid: 11943
+ - uid: 11938
components:
- rot: -1.5707963267948966 rad
pos: -15.5,61.5
parent: 2
type: Transform
- - uid: 11944
+ - uid: 11939
components:
- rot: 1.5707963267948966 rad
pos: -19.5,62.5
parent: 2
type: Transform
- - uid: 11945
+ - uid: 11940
components:
- rot: 1.5707963267948966 rad
pos: -19.5,61.5
parent: 2
type: Transform
- - uid: 11946
+ - uid: 11941
components:
- rot: 3.141592653589793 rad
pos: -18.5,60.5
parent: 2
type: Transform
- - uid: 11947
+ - uid: 11942
components:
- rot: 3.141592653589793 rad
pos: -17.5,60.5
parent: 2
type: Transform
- - uid: 11948
+ - uid: 11943
components:
- rot: 3.141592653589793 rad
pos: -16.5,60.5
parent: 2
type: Transform
- - uid: 11949
+ - uid: 11944
components:
- rot: -1.5707963267948966 rad
pos: -40.5,-90.5
parent: 2
type: Transform
- - uid: 11950
+ - uid: 11945
components:
- rot: -1.5707963267948966 rad
pos: -40.5,-89.5
parent: 2
type: Transform
- - uid: 11951
+ - uid: 11946
components:
- rot: 1.5707963267948966 rad
pos: -43.5,-89.5
parent: 2
type: Transform
- - uid: 11952
+ - uid: 11947
components:
- rot: 1.5707963267948966 rad
pos: -43.5,-90.5
parent: 2
type: Transform
- - uid: 11953
+ - uid: 11948
components:
- pos: -42.5,-97.5
parent: 2
type: Transform
- - uid: 11954
+ - uid: 11949
components:
- rot: -1.5707963267948966 rad
pos: -4.5,-99.5
parent: 2
type: Transform
- - uid: 11955
+ - uid: 11950
components:
- rot: 1.5707963267948966 rad
pos: 62.5,-7.5
parent: 2
type: Transform
- - uid: 11956
+ - uid: 11951
components:
- rot: 1.5707963267948966 rad
pos: 62.5,-8.5
parent: 2
type: Transform
- - uid: 11957
+ - uid: 11952
components:
- rot: 1.5707963267948966 rad
pos: 62.5,-9.5
parent: 2
type: Transform
- - uid: 11958
+ - uid: 11953
components:
- pos: 2.5,-40.5
parent: 2
type: Transform
- - uid: 11959
+ - uid: 11954
components:
- pos: 60.5,-64.5
parent: 2
type: Transform
- - uid: 11960
+ - uid: 11955
components:
- pos: 64.5,-66.5
parent: 2
type: Transform
- - uid: 11961
+ - uid: 11956
components:
- pos: 64.5,-64.5
parent: 2
type: Transform
- - uid: 11962
+ - uid: 11957
components:
- pos: 62.5,-66.5
parent: 2
type: Transform
- - uid: 11963
+ - uid: 11958
components:
- pos: 63.5,-66.5
parent: 2
type: Transform
- - uid: 11964
+ - uid: 11959
components:
- pos: 59.5,-66.5
parent: 2
type: Transform
- - uid: 11965
+ - uid: 11960
components:
- pos: 58.5,-66.5
parent: 2
type: Transform
- - uid: 11966
+ - uid: 11961
components:
- pos: 62.5,-62.5
parent: 2
type: Transform
- - uid: 11967
+ - uid: 11962
components:
- pos: 63.5,-62.5
parent: 2
type: Transform
- - uid: 11968
+ - uid: 11963
components:
- pos: 59.5,-62.5
parent: 2
type: Transform
- - uid: 11969
+ - uid: 11964
components:
- pos: 58.5,-62.5
parent: 2
type: Transform
- - uid: 11970
+ - uid: 11965
components:
- pos: 58.5,-64.5
parent: 2
type: Transform
- - uid: 11971
+ - uid: 11966
components:
- pos: 59.5,-64.5
parent: 2
type: Transform
- - uid: 11972
+ - uid: 11967
components:
- pos: 62.5,-64.5
parent: 2
type: Transform
- - uid: 11973
+ - uid: 11968
components:
- pos: 63.5,-64.5
parent: 2
type: Transform
- - uid: 11974
+ - uid: 11969
components:
- pos: 64.5,-62.5
parent: 2
type: Transform
- - uid: 11975
+ - uid: 11970
components:
- pos: 60.5,-62.5
parent: 2
type: Transform
- - uid: 11976
+ - uid: 11971
components:
- pos: 50.5,-32.5
parent: 2
type: Transform
- - uid: 11977
+ - uid: 11972
components:
- pos: 60.5,-66.5
parent: 2
type: Transform
- - uid: 11978
+ - uid: 11973
components:
- rot: 1.5707963267948966 rad
pos: 69.5,-57.5
parent: 2
type: Transform
- - uid: 11979
+ - uid: 11974
components:
- rot: -1.5707963267948966 rad
pos: 56.5,-67.5
parent: 2
type: Transform
- - uid: 11980
+ - uid: 11975
components:
- rot: 1.5707963267948966 rad
pos: 54.5,-67.5
parent: 2
type: Transform
- - uid: 11981
+ - uid: 11976
components:
- rot: 3.141592653589793 rad
pos: 45.5,-43.5
parent: 2
type: Transform
- - uid: 11982
+ - uid: 11977
components:
- pos: -5.5,-14.5
parent: 2
type: Transform
- - uid: 11983
+ - uid: 11978
components:
- rot: 3.141592653589793 rad
pos: 25.5,-69.5
parent: 2
type: Transform
- - uid: 11984
+ - uid: 11979
components:
- rot: 3.141592653589793 rad
pos: 26.5,-69.5
parent: 2
type: Transform
- - uid: 11985
+ - uid: 11980
components:
- pos: 50.5,-71.5
parent: 2
type: Transform
- - uid: 11986
+ - uid: 11981
components:
- rot: 3.141592653589793 rad
pos: 50.5,-73.5
parent: 2
type: Transform
- - uid: 11987
+ - uid: 11982
components:
- pos: -37.5,-45.5
parent: 2
type: Transform
- - uid: 11988
+ - uid: 11983
components:
- pos: -36.5,-45.5
parent: 2
type: Transform
- - uid: 11989
+ - uid: 11984
components:
- pos: -71.5,-54.5
parent: 2
type: Transform
- - uid: 11990
+ - uid: 11985
components:
- pos: -72.5,-54.5
parent: 2
type: Transform
- - uid: 11991
+ - uid: 11986
components:
- pos: -73.5,-54.5
parent: 2
type: Transform
- - uid: 11992
+ - uid: 11987
components:
- rot: 3.141592653589793 rad
pos: -73.5,-53.5
parent: 2
type: Transform
- - uid: 11993
+ - uid: 11988
components:
- rot: 3.141592653589793 rad
pos: -72.5,-53.5
parent: 2
type: Transform
- - uid: 11994
+ - uid: 11989
components:
- rot: 3.141592653589793 rad
pos: -71.5,-53.5
parent: 2
type: Transform
- - uid: 11995
+ - uid: 11990
components:
- rot: 3.141592653589793 rad
pos: -70.5,-53.5
parent: 2
type: Transform
- - uid: 11996
+ - uid: 11991
components:
- pos: -70.5,-54.5
parent: 2
type: Transform
- - uid: 11997
+ - uid: 11992
components:
- rot: -1.5707963267948966 rad
pos: 58.5,57.5
parent: 2
type: Transform
- - uid: 11998
+ - uid: 11993
components:
- rot: -1.5707963267948966 rad
pos: 58.5,56.5
parent: 2
type: Transform
+ - uid: 11994
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 12.5,-43.5
+ parent: 2
+ type: Transform
+ - uid: 11995
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 11.5,-43.5
+ parent: 2
+ type: Transform
+ - uid: 11996
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 13.5,-43.5
+ parent: 2
+ type: Transform
- proto: ChairFolding
entities:
- - uid: 11999
+ - uid: 11997
components:
- rot: -1.5707963267948966 rad
pos: 28.5,1.5
parent: 2
type: Transform
- - uid: 12000
+ - uid: 11998
components:
- rot: -1.5707963267948966 rad
pos: 28.5,3.5
parent: 2
type: Transform
- - uid: 12001
+ - uid: 11999
components:
- rot: -1.5707963267948966 rad
pos: 29.5,1.5
parent: 2
type: Transform
- - uid: 12002
+ - uid: 12000
components:
- rot: -1.5707963267948966 rad
pos: 29.5,2.5
parent: 2
type: Transform
- - uid: 12003
+ - uid: 12001
components:
- rot: -1.5707963267948966 rad
pos: 29.5,-0.5
parent: 2
type: Transform
- - uid: 12004
+ - uid: 12002
components:
- rot: -1.5707963267948966 rad
pos: 28.5,-0.5
parent: 2
type: Transform
- - uid: 12005
+ - uid: 12003
components:
- rot: -1.5707963267948966 rad
pos: 28.5,0.5
parent: 2
type: Transform
- - uid: 12006
+ - uid: 12004
components:
- rot: -1.5707963267948966 rad
pos: 29.5,0.5
parent: 2
type: Transform
- - uid: 12007
+ - uid: 12005
components:
- rot: -1.5707963267948966 rad
pos: 28.5,-1.5
parent: 2
type: Transform
- - uid: 12008
+ - uid: 12006
components:
- rot: -1.5707963267948966 rad
pos: 28.5,2.5
parent: 2
type: Transform
- - uid: 12009
+ - uid: 12007
components:
- rot: -1.5707963267948966 rad
pos: 18.5,26.5
parent: 2
type: Transform
- - uid: 12010
+ - uid: 12008
components:
- rot: 1.5707963267948966 rad
pos: -25.5,53.5
parent: 2
type: Transform
- - uid: 12011
+ - uid: 12009
components:
- pos: -27.5,-28.5
parent: 2
type: Transform
- - uid: 12012
+ - uid: 12010
components:
- pos: -34.5,-69.5
parent: 2
type: Transform
- - uid: 12013
+ - uid: 12011
components:
- pos: -24.5,-95.5
parent: 2
type: Transform
- - uid: 12014
+ - uid: 12012
components:
- pos: -25.5,-95.5
parent: 2
type: Transform
- - uid: 12015
+ - uid: 12013
components:
- pos: -19.5,-95.5
parent: 2
type: Transform
- - uid: 12016
+ - uid: 12014
components:
- pos: -29.5,-28.5
parent: 2
type: Transform
-- proto: ChairOfficeDark
+- proto: ChairGreyscale
entities:
+ - uid: 12015
+ components:
+ - pos: 2.5,-52.5
+ parent: 2
+ type: Transform
+ - uid: 12016
+ components:
+ - pos: -3.5,-45.5
+ parent: 2
+ type: Transform
- uid: 12017
+ components:
+ - pos: -11.5,-52.5
+ parent: 2
+ type: Transform
+ - uid: 12018
+ components:
+ - pos: 4.5,-52.5
+ parent: 2
+ type: Transform
+ - uid: 12019
+ components:
+ - pos: -12.5,-52.5
+ parent: 2
+ type: Transform
+ - uid: 12020
+ components:
+ - pos: -14.5,-52.5
+ parent: 2
+ type: Transform
+ - uid: 12021
+ components:
+ - pos: -4.5,-45.5
+ parent: 2
+ type: Transform
+ - uid: 12022
+ components:
+ - pos: -5.5,-45.5
+ parent: 2
+ type: Transform
+ - uid: 12023
+ components:
+ - pos: 1.5,-52.5
+ parent: 2
+ type: Transform
+- proto: ChairOfficeDark
+ entities:
+ - uid: 12024
components:
- rot: 3.141592653589793 rad
pos: 4.5,-4.5
parent: 2
type: Transform
- - uid: 12018
+ - uid: 12025
components:
- rot: 1.5707963267948966 rad
pos: -25.5,54.5
parent: 2
type: Transform
- - uid: 12019
+ - uid: 12026
components:
- rot: -1.5707963267948966 rad
pos: 38.5,-3.5
parent: 2
type: Transform
- - uid: 12020
+ - uid: 12027
components:
- rot: -1.5707963267948966 rad
pos: 38.5,-4.5
parent: 2
type: Transform
- - uid: 12021
+ - uid: 12028
components:
- rot: -1.5707963267948966 rad
pos: 71.5,-36.5
parent: 2
type: Transform
- - uid: 12022
+ - uid: 12029
components:
- rot: 3.141592653589793 rad
pos: 68.5,-44.5
parent: 2
type: Transform
- - uid: 12023
+ - uid: 12030
components:
- rot: 1.5707963267948966 rad
pos: -27.5,-12.5
parent: 2
type: Transform
- - uid: 12024
+ - uid: 12031
components:
- rot: 3.141592653589793 rad
pos: 50.5,-53.5
parent: 2
type: Transform
- - uid: 12025
+ - uid: 12032
components:
- rot: 1.5707963267948966 rad
pos: -22.5,-34.5
parent: 2
type: Transform
- - uid: 12026
+ - uid: 12033
components:
- rot: 3.141592653589793 rad
pos: 21.5,-45.5
parent: 2
type: Transform
- - uid: 12027
+ - uid: 12034
components:
- rot: -1.5707963267948966 rad
pos: -16.5,25.5
parent: 2
type: Transform
- - uid: 12028
+ - uid: 12035
components:
- rot: -1.5707963267948966 rad
pos: -27.5,22.5
parent: 2
type: Transform
- - uid: 12029
+ - uid: 12036
components:
- pos: -32.5,30.5
parent: 2
type: Transform
- - uid: 12030
+ - uid: 12037
components:
- rot: 1.5707963267948966 rad
pos: 1.5,20.5
parent: 2
type: Transform
- - uid: 12031
+ - uid: 12038
components:
- pos: -33.5,-69.5
parent: 2
type: Transform
- - uid: 12032
+ - uid: 12039
components:
- rot: 1.5707963267948966 rad
pos: 72.5,37.5
parent: 2
type: Transform
- - uid: 12033
+ - uid: 12040
components:
- rot: -1.5707963267948966 rad
pos: -4.5,-97.5
parent: 2
type: Transform
- - uid: 12034
+ - uid: 12041
components:
- rot: 1.5707963267948966 rad
pos: -13.5,-18.5
parent: 2
type: Transform
- - uid: 12035
+ - uid: 12042
components:
- rot: 3.141592653589793 rad
pos: 62.5,-31.5
parent: 2
type: Transform
- - uid: 12036
+ - uid: 12043
components:
- rot: 3.141592653589793 rad
pos: 73.5,-32.5
parent: 2
type: Transform
- - uid: 12037
+ - uid: 12044
components:
- rot: -1.5707963267948966 rad
pos: -16.5,-22.5
@@ -73923,92 +73966,92 @@ entities:
type: Transform
- proto: ChairOfficeLight
entities:
- - uid: 12038
+ - uid: 12045
components:
- rot: 3.141592653589793 rad
pos: 27.5,-22.5
parent: 2
type: Transform
- - uid: 12039
+ - uid: 12046
components:
- rot: 3.141592653589793 rad
pos: 29.5,-22.5
parent: 2
type: Transform
- - uid: 12040
+ - uid: 12047
components:
- rot: 3.141592653589793 rad
pos: 23.5,-22.5
parent: 2
type: Transform
- - uid: 12041
+ - uid: 12048
components:
- rot: 3.141592653589793 rad
pos: 21.5,-22.5
parent: 2
type: Transform
- - uid: 12042
+ - uid: 12049
components:
- pos: -23.5,-70.5
parent: 2
type: Transform
- - uid: 12043
+ - uid: 12050
components:
- rot: 3.141592653589793 rad
pos: -4.5,-49.5
parent: 2
type: Transform
- - uid: 12044
+ - uid: 12051
components:
- rot: 3.141592653589793 rad
pos: 25.5,-25.5
parent: 2
type: Transform
- - uid: 12045
+ - uid: 12052
components:
- pos: -10.5,-36.5
parent: 2
type: Transform
- - uid: 12046
+ - uid: 12053
components:
- rot: 3.141592653589793 rad
pos: 17.5,20.5
parent: 2
type: Transform
- - uid: 12047
+ - uid: 12054
components:
- rot: 3.141592653589793 rad
pos: 53.5,12.5
parent: 2
type: Transform
- - uid: 12048
+ - uid: 12055
components:
- rot: -1.5707963267948966 rad
pos: 52.5,-41.5
parent: 2
type: Transform
- - uid: 12049
+ - uid: 12056
components:
- pos: 42.5,-39.5
parent: 2
type: Transform
- - uid: 12050
+ - uid: 12057
components:
- pos: -26.5,15.5
parent: 2
type: Transform
- - uid: 12051
+ - uid: 12058
components:
- pos: -23.5,12.5
parent: 2
type: Transform
- - uid: 12052
+ - uid: 12059
components:
- rot: 1.5707963267948966 rad
pos: 47.5,6.5
parent: 2
type: Transform
- - uid: 12053
+ - uid: 12060
components:
- rot: 1.5707963267948966 rad
pos: -12.5,-49.5
@@ -74016,85 +74059,85 @@ entities:
type: Transform
- proto: ChairPilotSeat
entities:
- - uid: 12054
+ - uid: 12061
components:
- rot: 3.141592653589793 rad
pos: 25.5,-22.5
parent: 2
type: Transform
- - uid: 12055
+ - uid: 12062
components:
- rot: 3.141592653589793 rad
pos: 16.5,23.5
parent: 2
type: Transform
- - uid: 12056
+ - uid: 12063
components:
- pos: 25.5,20.5
parent: 2
type: Transform
- - uid: 12057
+ - uid: 12064
components:
- rot: 3.141592653589793 rad
pos: 62.5,-54.5
parent: 2
type: Transform
- - uid: 12058
+ - uid: 12065
components:
- rot: 3.141592653589793 rad
pos: 31.5,-47.5
parent: 2
type: Transform
- - uid: 12059
+ - uid: 12066
components:
- pos: 62.5,-0.5
parent: 2
type: Transform
- - uid: 12060
+ - uid: 12067
components:
- pos: 59.5,-0.5
parent: 2
type: Transform
- - uid: 12061
+ - uid: 12068
components:
- pos: 61.5,-0.5
parent: 2
type: Transform
- - uid: 12062
+ - uid: 12069
components:
- pos: 60.5,-0.5
parent: 2
type: Transform
- - uid: 12063
+ - uid: 12070
components:
- rot: -1.5707963267948966 rad
pos: -54.5,-13.5
parent: 2
type: Transform
- - uid: 12064
+ - uid: 12071
components:
- rot: -1.5707963267948966 rad
pos: 31.5,-28.5
parent: 2
type: Transform
- - uid: 12065
+ - uid: 12072
components:
- pos: 54.5,57.5
parent: 2
type: Transform
- - uid: 12066
+ - uid: 12073
components:
- rot: 1.5707963267948966 rad
pos: -51.5,-87.5
parent: 2
type: Transform
- - uid: 12067
+ - uid: 12074
components:
- rot: -1.5707963267948966 rad
pos: -78.5,-53.5
parent: 2
type: Transform
- - uid: 12068
+ - uid: 12075
components:
- rot: -1.5707963267948966 rad
pos: -78.5,-54.5
@@ -74102,494 +74145,494 @@ entities:
type: Transform
- proto: ChairWood
entities:
- - uid: 12069
+ - uid: 12076
components:
- rot: 3.141592653589793 rad
pos: 23.5,-36.5
parent: 2
type: Transform
- - uid: 12070
+ - uid: 12077
components:
- rot: -1.5707963267948966 rad
pos: 24.5,-35.5
parent: 2
type: Transform
- - uid: 12071
+ - uid: 12078
components:
- pos: 9.5,-5.5
parent: 2
type: Transform
- - uid: 12072
+ - uid: 12079
components:
- rot: 1.5707963267948966 rad
pos: 8.5,-6.5
parent: 2
type: Transform
- - uid: 12073
+ - uid: 12080
components:
- rot: 1.5707963267948966 rad
pos: 8.5,-7.5
parent: 2
type: Transform
- - uid: 12074
+ - uid: 12081
components:
- rot: -1.5707963267948966 rad
pos: 3.5,1.5
parent: 2
type: Transform
- - uid: 12075
+ - uid: 12082
components:
- rot: 1.5707963267948966 rad
pos: 1.5,1.5
parent: 2
type: Transform
- - uid: 12076
+ - uid: 12083
components:
- rot: -1.5707963267948966 rad
pos: 11.5,-7.5
parent: 2
type: Transform
- - uid: 12077
+ - uid: 12084
components:
- pos: 10.5,-5.5
parent: 2
type: Transform
- - uid: 12078
+ - uid: 12085
components:
- rot: 3.141592653589793 rad
pos: 10.5,-8.5
parent: 2
type: Transform
- - uid: 12079
+ - uid: 12086
components:
- rot: 1.5707963267948966 rad
pos: 10.5,7.5
parent: 2
type: Transform
- - uid: 12080
+ - uid: 12087
components:
- rot: 3.141592653589793 rad
pos: 9.5,-8.5
parent: 2
type: Transform
- - uid: 12081
+ - uid: 12088
components:
- rot: -1.5707963267948966 rad
pos: 11.5,-6.5
parent: 2
type: Transform
- - uid: 12082
+ - uid: 12089
components:
- rot: 1.5707963267948966 rad
pos: 1.5,0.5
parent: 2
type: Transform
- - uid: 12083
+ - uid: 12090
components:
- rot: -1.5707963267948966 rad
pos: 3.5,0.5
parent: 2
type: Transform
- - uid: 12084
+ - uid: 12091
components:
- rot: -1.5707963267948966 rad
pos: 12.5,8.5
parent: 2
type: Transform
- - uid: 12085
+ - uid: 12092
components:
- rot: -1.5707963267948966 rad
pos: 18.5,27.5
parent: 2
type: Transform
- - uid: 12086
+ - uid: 12093
components:
- pos: -1.5,-16.5
parent: 2
type: Transform
- - uid: 12087
+ - uid: 12094
components:
- pos: 11.5,12.5
parent: 2
type: Transform
- - uid: 12088
+ - uid: 12095
components:
- pos: 12.5,12.5
parent: 2
type: Transform
- - uid: 12089
+ - uid: 12096
components:
- rot: -1.5707963267948966 rad
pos: 12.5,7.5
parent: 2
type: Transform
- - uid: 12090
+ - uid: 12097
components:
- rot: 3.141592653589793 rad
pos: 12.5,10.5
parent: 2
type: Transform
- - uid: 12091
+ - uid: 12098
components:
- rot: 3.141592653589793 rad
pos: 11.5,10.5
parent: 2
type: Transform
- - uid: 12092
+ - uid: 12099
components:
- rot: 1.5707963267948966 rad
pos: -9.5,1.5
parent: 2
type: Transform
- - uid: 12093
+ - uid: 12100
components:
- rot: 1.5707963267948966 rad
pos: -9.5,0.5
parent: 2
type: Transform
- - uid: 12094
+ - uid: 12101
components:
- rot: 1.5707963267948966 rad
pos: 10.5,8.5
parent: 2
type: Transform
- - uid: 12095
+ - uid: 12102
components:
- rot: 1.5707963267948966 rad
pos: 53.5,-26.5
parent: 2
type: Transform
- - uid: 12096
+ - uid: 12103
components:
- rot: -1.5707963267948966 rad
pos: -32.5,-67.5
parent: 2
type: Transform
- - uid: 12097
+ - uid: 12104
components:
- rot: 3.141592653589793 rad
pos: -36.5,9.5
parent: 2
type: Transform
- - uid: 12098
+ - uid: 12105
components:
- rot: 3.141592653589793 rad
pos: -35.5,9.5
parent: 2
type: Transform
- - uid: 12099
+ - uid: 12106
components:
- rot: 3.141592653589793 rad
pos: -36.5,10.5
parent: 2
type: Transform
- - uid: 12100
+ - uid: 12107
components:
- rot: 3.141592653589793 rad
pos: -35.5,10.5
parent: 2
type: Transform
- - uid: 12101
+ - uid: 12108
components:
- rot: 3.141592653589793 rad
pos: -35.5,11.5
parent: 2
type: Transform
- - uid: 12102
+ - uid: 12109
components:
- rot: 3.141592653589793 rad
pos: -36.5,11.5
parent: 2
type: Transform
- - uid: 12103
+ - uid: 12110
components:
- rot: 3.141592653589793 rad
pos: -36.5,12.5
parent: 2
type: Transform
- - uid: 12104
+ - uid: 12111
components:
- rot: 3.141592653589793 rad
pos: -35.5,12.5
parent: 2
type: Transform
- - uid: 12105
+ - uid: 12112
components:
- rot: 3.141592653589793 rad
pos: -39.5,12.5
parent: 2
type: Transform
- - uid: 12106
+ - uid: 12113
components:
- rot: 3.141592653589793 rad
pos: -40.5,11.5
parent: 2
type: Transform
- - uid: 12107
+ - uid: 12114
components:
- rot: 3.141592653589793 rad
pos: -39.5,11.5
parent: 2
type: Transform
- - uid: 12108
+ - uid: 12115
components:
- rot: 3.141592653589793 rad
pos: -40.5,10.5
parent: 2
type: Transform
- - uid: 12109
+ - uid: 12116
components:
- rot: 3.141592653589793 rad
pos: -39.5,10.5
parent: 2
type: Transform
- - uid: 12110
+ - uid: 12117
components:
- rot: 3.141592653589793 rad
pos: -40.5,9.5
parent: 2
type: Transform
- - uid: 12111
+ - uid: 12118
components:
- rot: 3.141592653589793 rad
pos: -39.5,9.5
parent: 2
type: Transform
- - uid: 12112
+ - uid: 12119
components:
- rot: 3.141592653589793 rad
pos: -40.5,12.5
parent: 2
type: Transform
- - uid: 12113
+ - uid: 12120
components:
- rot: 3.141592653589793 rad
pos: -3.5,51.5
parent: 2
type: Transform
- - uid: 12114
+ - uid: 12121
components:
- pos: -3.5,53.5
parent: 2
type: Transform
- - uid: 12115
+ - uid: 12122
components:
- pos: -17.5,43.5
parent: 2
type: Transform
- - uid: 12116
+ - uid: 12123
components:
- pos: -16.5,43.5
parent: 2
type: Transform
- - uid: 12117
+ - uid: 12124
components:
- rot: 3.141592653589793 rad
pos: -17.5,40.5
parent: 2
type: Transform
- - uid: 12118
+ - uid: 12125
components:
- rot: -1.5707963267948966 rad
pos: -7.5,1.5
parent: 2
type: Transform
- - uid: 12119
+ - uid: 12126
components:
- rot: -1.5707963267948966 rad
pos: -7.5,0.5
parent: 2
type: Transform
- - uid: 12120
+ - uid: 12127
components:
- rot: 1.5707963267948966 rad
pos: -5.5,1.5
parent: 2
type: Transform
- - uid: 12121
+ - uid: 12128
components:
- rot: 1.5707963267948966 rad
pos: -5.5,0.5
parent: 2
type: Transform
- - uid: 12122
+ - uid: 12129
components:
- rot: -1.5707963267948966 rad
pos: -3.5,1.5
parent: 2
type: Transform
- - uid: 12123
+ - uid: 12130
components:
- rot: -1.5707963267948966 rad
pos: -3.5,0.5
parent: 2
type: Transform
- - uid: 12124
+ - uid: 12131
components:
- rot: 3.141592653589793 rad
pos: -16.5,40.5
parent: 2
type: Transform
- - uid: 12125
+ - uid: 12132
components:
- rot: 1.5707963267948966 rad
pos: -15.5,47.5
parent: 2
type: Transform
- - uid: 12126
+ - uid: 12133
components:
- rot: -1.5707963267948966 rad
pos: 46.5,-16.5
parent: 2
type: Transform
- - uid: 12127
+ - uid: 12134
components:
- rot: -1.5707963267948966 rad
pos: 9.5,32.5
parent: 2
type: Transform
- - uid: 12128
+ - uid: 12135
components:
- rot: 1.5707963267948966 rad
pos: 7.5,32.5
parent: 2
type: Transform
- - uid: 12129
+ - uid: 12136
components:
- rot: 3.141592653589793 rad
pos: -11.5,34.5
parent: 2
type: Transform
- - uid: 12130
+ - uid: 12137
components:
- rot: -1.5707963267948966 rad
pos: 41.5,43.5
parent: 2
type: Transform
- - uid: 12131
+ - uid: 12138
components:
- rot: -1.5707963267948966 rad
pos: 39.5,46.5
parent: 2
type: Transform
- - uid: 12132
+ - uid: 12139
components:
- rot: -1.5707963267948966 rad
pos: 39.5,45.5
parent: 2
type: Transform
- - uid: 12133
+ - uid: 12140
components:
- rot: 1.5707963267948966 rad
pos: 36.5,46.5
parent: 2
type: Transform
- - uid: 12134
+ - uid: 12141
components:
- rot: 1.5707963267948966 rad
pos: 36.5,45.5
parent: 2
type: Transform
- - uid: 12135
+ - uid: 12142
components:
- rot: 3.141592653589793 rad
pos: 42.5,47.5
parent: 2
type: Transform
- - uid: 12136
+ - uid: 12143
components:
- rot: 3.141592653589793 rad
pos: 43.5,47.5
parent: 2
type: Transform
- - uid: 12137
+ - uid: 12144
components:
- rot: -1.5707963267948966 rad
pos: 33.5,47.5
parent: 2
type: Transform
- - uid: 12138
+ - uid: 12145
components:
- rot: -1.5707963267948966 rad
pos: 33.5,46.5
parent: 2
type: Transform
- - uid: 12139
+ - uid: 12146
components:
- rot: 1.5707963267948966 rad
pos: 32.5,44.5
parent: 2
type: Transform
- - uid: 12140
+ - uid: 12147
components:
- rot: -1.5707963267948966 rad
pos: 34.5,44.5
parent: 2
type: Transform
- - uid: 12141
+ - uid: 12148
components:
- rot: 1.5707963267948966 rad
pos: 39.5,43.5
parent: 2
type: Transform
- - uid: 12142
+ - uid: 12149
components:
- pos: -41.5,-97.5
parent: 2
type: Transform
- - uid: 12143
+ - uid: 12150
components:
- rot: -1.5707963267948966 rad
pos: 4.5,-35.5
parent: 2
type: Transform
- - uid: 12144
+ - uid: 12151
components:
- rot: 1.5707963267948966 rad
pos: 2.5,-35.5
parent: 2
type: Transform
- - uid: 12145
+ - uid: 12152
components:
- pos: -23.5,30.5
parent: 2
type: Transform
- - uid: 12146
+ - uid: 12153
components:
- rot: 1.5707963267948966 rad
pos: 22.5,-35.5
parent: 2
type: Transform
- - uid: 12147
+ - uid: 12154
components:
- pos: 23.5,-34.5
parent: 2
type: Transform
- - uid: 12148
+ - uid: 12155
components:
- rot: -1.5707963267948966 rad
pos: 23.5,-38.5
parent: 2
type: Transform
- - uid: 12149
+ - uid: 12156
components:
- rot: -1.5707963267948966 rad
pos: 23.5,-39.5
parent: 2
type: Transform
- - uid: 12150
+ - uid: 12157
components:
- rot: -1.5707963267948966 rad
pos: 29.5,-39.5
parent: 2
type: Transform
- - uid: 12151
+ - uid: 12158
components:
- rot: 1.5707963267948966 rad
pos: 27.5,-39.5
parent: 2
type: Transform
- - uid: 12152
+ - uid: 12159
components:
- rot: -1.5707963267948966 rad
pos: 4.5,-9.5
@@ -74597,98 +74640,98 @@ entities:
type: Transform
- proto: CheapLighter
entities:
- - uid: 12154
+ - uid: 12161
components:
- flags: InContainer
type: MetaData
- - parent: 12153
+ - parent: 12160
type: Transform
- canCollide: False
type: Physics
- - uid: 12155
+ - uid: 12162
components:
- pos: 1.9080955,23.554485
parent: 2
type: Transform
- proto: CheapRollerBed
entities:
- - uid: 12156
+ - uid: 12163
components:
- pos: -9.460541,-47.24853
parent: 2
type: Transform
- - uid: 12157
+ - uid: 12164
components:
- pos: -9.476166,-48.27978
parent: 2
type: Transform
- proto: chem_master
entities:
- - uid: 12158
+ - uid: 12165
components:
- pos: 2.5,-45.5
parent: 2
type: Transform
- - uid: 12159
+ - uid: 12166
components:
- pos: 2.5,-50.5
parent: 2
type: Transform
- - uid: 12160
+ - uid: 12167
components:
- pos: 2.5,-47.5
parent: 2
type: Transform
- proto: ChemDispenser
entities:
- - uid: 12161
+ - uid: 12168
components:
- pos: 4.5,-45.5
parent: 2
type: Transform
- - uid: 12162
+ - uid: 12169
components:
- pos: 4.5,-47.5
parent: 2
type: Transform
- - uid: 12163
+ - uid: 12170
components:
- pos: 2.5,-49.5
parent: 2
type: Transform
- proto: ChemistryHotplate
entities:
- - uid: 12164
+ - uid: 12171
components:
- pos: 4.5,-50.5
parent: 2
type: Transform
- proto: ChessBoard
entities:
- - uid: 12165
+ - uid: 12172
components:
- pos: 52.446415,7.1683345
parent: 2
type: Transform
- - uid: 12166
+ - uid: 12173
components:
- rot: 3.141592653589793 rad
pos: -5.5158696,-15.414865
parent: 2
type: Transform
- - uid: 12167
+ - uid: 12174
components:
- rot: 1.5707963267948966 rad
pos: 8.516274,32.607613
parent: 2
type: Transform
- - uid: 12168
+ - uid: 12175
components:
- rot: 3.141592653589793 rad
pos: -3.4812293,52.59116
parent: 2
type: Transform
- - uid: 12169
+ - uid: 12176
components:
- rot: 3.141592653589793 rad
pos: 50.48214,-72.40164
@@ -74696,7 +74739,7 @@ entities:
type: Transform
- proto: ChurchOrganInstrument
entities:
- - uid: 12170
+ - uid: 12177
components:
- rot: -1.5707963267948966 rad
pos: -34.5,13.5
@@ -74704,51 +74747,51 @@ entities:
type: Transform
- proto: Cigar
entities:
- - uid: 12171
+ - uid: 12178
components:
- pos: 13.506795,-34.413578
parent: 2
type: Transform
- - uid: 12172
+ - uid: 12179
components:
- pos: 13.55367,-32.429203
parent: 2
type: Transform
- - uid: 12173
+ - uid: 12180
components:
- pos: 13.49117,-32.382328
parent: 2
type: Transform
- - uid: 12174
+ - uid: 12181
components:
- pos: 13.444295,-34.351078
parent: 2
type: Transform
- proto: CigarCase
entities:
- - uid: 12175
+ - uid: 12182
components:
- pos: -12.420865,-35.409706
parent: 2
type: Transform
- - uid: 12176
+ - uid: 12183
components:
- pos: 15.66736,-87.50202
parent: 2
type: Transform
- proto: Cigarette
entities:
- - uid: 12177
+ - uid: 12184
components:
- pos: 15.438844,-64.32231
parent: 2
type: Transform
- - uid: 12178
+ - uid: 12185
components:
- pos: 63.44384,24.664883
parent: 2
type: Transform
- - uid: 12179
+ - uid: 12186
components:
- rot: -1.5707963267948966 rad
pos: 2.361197,23.616985
@@ -74756,48 +74799,48 @@ entities:
type: Transform
- proto: CigarGold
entities:
- - uid: 12180
+ - uid: 12187
components:
- rot: -1.5707963267948966 rad
pos: 45.625916,-26.476032
parent: 2
type: Transform
- - uid: 12181
+ - uid: 12188
components:
- pos: 65.5063,-0.5499393
parent: 2
type: Transform
- proto: CigarGoldCase
entities:
- - uid: 12182
+ - uid: 12189
components:
- pos: 61.545517,-1.3427625
parent: 2
type: Transform
- proto: CigPackBlack
entities:
- - uid: 12183
+ - uid: 12190
components:
- pos: 37.5,46.5
parent: 2
type: Transform
- proto: CigPackBlue
entities:
- - uid: 12184
+ - uid: 12191
components:
- pos: 47.844124,50.55344
parent: 2
type: Transform
- proto: CigPackMixedMedical
entities:
- - uid: 12185
+ - uid: 12192
components:
- pos: -16.642096,-35.41203
parent: 2
type: Transform
- proto: CircuitImprinter
entities:
- - uid: 12186
+ - uid: 12193
components:
- pos: 44.5,-35.5
parent: 2
@@ -74807,45 +74850,52 @@ entities:
- Glass
- Gold
type: MaterialStorage
+- proto: CleanerDispenser
+ entities:
+ - uid: 12194
+ components:
+ - pos: -12.5,-20.5
+ parent: 2
+ type: Transform
- proto: ClockworkShield
entities:
- - uid: 12187
+ - uid: 12195
components:
- pos: 57.48767,32.508053
parent: 2
type: Transform
- proto: ClosetBombFilled
entities:
- - uid: 12188
+ - uid: 12196
components:
- pos: 51.5,-49.5
parent: 2
type: Transform
- - uid: 12189
+ - uid: 12197
components:
- pos: 67.5,-31.5
parent: 2
type: Transform
- - uid: 12190
+ - uid: 12198
components:
- pos: 12.5,23.5
parent: 2
type: Transform
- proto: ClosetChefFilled
entities:
- - uid: 12191
+ - uid: 12199
components:
- pos: -5.5,14.5
parent: 2
type: Transform
- proto: ClosetEmergencyFilledRandom
entities:
- - uid: 12192
+ - uid: 12200
components:
- pos: 69.5,-63.5
parent: 2
type: Transform
- - uid: 12193
+ - uid: 12201
components:
- pos: -52.5,-80.5
parent: 2
@@ -74868,7 +74918,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12194
+ - uid: 12202
components:
- pos: -12.5,10.5
parent: 2
@@ -74891,7 +74941,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12195
+ - uid: 12203
components:
- pos: -18.5,-51.5
parent: 2
@@ -74914,7 +74964,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12196
+ - uid: 12204
components:
- pos: 21.5,-52.5
parent: 2
@@ -74937,7 +74987,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12197
+ - uid: 12205
components:
- pos: 24.5,-56.5
parent: 2
@@ -74960,7 +75010,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12198
+ - uid: 12206
components:
- pos: -5.5,-68.5
parent: 2
@@ -74983,7 +75033,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12199
+ - uid: 12207
components:
- pos: 38.5,-32.5
parent: 2
@@ -75006,7 +75056,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12200
+ - uid: 12208
components:
- pos: -25.5,52.5
parent: 2
@@ -75029,7 +75079,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12201
+ - uid: 12209
components:
- pos: 5.5,-69.5
parent: 2
@@ -75052,7 +75102,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12202
+ - uid: 12210
components:
- pos: 57.5,-14.5
parent: 2
@@ -75075,7 +75125,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12203
+ - uid: 12211
components:
- pos: 52.5,-50.5
parent: 2
@@ -75098,7 +75148,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12204
+ - uid: 12212
components:
- pos: -2.5,-11.5
parent: 2
@@ -75121,12 +75171,12 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12205
+ - uid: 12213
components:
- pos: 43.5,-74.5
parent: 2
type: Transform
- - uid: 12206
+ - uid: 12214
components:
- pos: 11.5,-69.5
parent: 2
@@ -75149,12 +75199,12 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12207
+ - uid: 12215
components:
- pos: 27.5,-80.5
parent: 2
type: Transform
- - uid: 12208
+ - uid: 12216
components:
- pos: -23.5,-31.5
parent: 2
@@ -75177,12 +75227,12 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12209
+ - uid: 12217
components:
- pos: 47.5,-92.5
parent: 2
type: Transform
- - uid: 12210
+ - uid: 12218
components:
- pos: -54.5,-5.5
parent: 2
@@ -75205,12 +75255,12 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12211
+ - uid: 12219
components:
- pos: 31.5,-92.5
parent: 2
type: Transform
- - uid: 12212
+ - uid: 12220
components:
- pos: -57.5,-32.5
parent: 2
@@ -75233,7 +75283,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12213
+ - uid: 12221
components:
- pos: 17.5,34.5
parent: 2
@@ -75256,7 +75306,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12214
+ - uid: 12222
components:
- pos: 63.5,-5.5
parent: 2
@@ -75279,7 +75329,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12215
+ - uid: 12223
components:
- pos: 18.5,-39.5
parent: 2
@@ -75302,7 +75352,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12216
+ - uid: 12224
components:
- pos: 3.5,-25.5
parent: 2
@@ -75325,7 +75375,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12217
+ - uid: 12225
components:
- pos: 47.5,-15.5
parent: 2
@@ -75348,7 +75398,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12218
+ - uid: 12226
components:
- pos: 16.5,-5.5
parent: 2
@@ -75371,7 +75421,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12219
+ - uid: 12227
components:
- pos: -31.5,-0.5
parent: 2
@@ -75394,7 +75444,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12220
+ - uid: 12228
components:
- pos: -17.5,38.5
parent: 2
@@ -75417,7 +75467,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12221
+ - uid: 12229
components:
- pos: -12.5,47.5
parent: 2
@@ -75440,7 +75490,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12222
+ - uid: 12230
components:
- pos: 50.5,40.5
parent: 2
@@ -75463,7 +75513,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12223
+ - uid: 12231
components:
- pos: 65.5,1.5
parent: 2
@@ -75486,17 +75536,17 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12224
+ - uid: 12232
components:
- pos: -15.5,67.5
parent: 2
type: Transform
- - uid: 12225
+ - uid: 12233
components:
- pos: -19.5,67.5
parent: 2
type: Transform
- - uid: 12226
+ - uid: 12234
components:
- pos: -12.5,49.5
parent: 2
@@ -75519,7 +75569,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12227
+ - uid: 12235
components:
- pos: -26.5,28.5
parent: 2
@@ -75542,7 +75592,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12228
+ - uid: 12236
components:
- pos: -36.5,-93.5
parent: 2
@@ -75565,7 +75615,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12229
+ - uid: 12237
components:
- pos: 9.5,-36.5
parent: 2
@@ -75588,7 +75638,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12230
+ - uid: 12238
components:
- pos: 74.5,-51.5
parent: 2
@@ -75611,7 +75661,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12231
+ - uid: 12239
components:
- pos: 42.5,-62.5
parent: 2
@@ -75634,7 +75684,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12232
+ - uid: 12240
components:
- pos: -10.5,-8.5
parent: 2
@@ -75657,7 +75707,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12233
+ - uid: 12241
components:
- pos: 41.5,-27.5
parent: 2
@@ -75680,29 +75730,29 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12234
+ - uid: 12242
components:
- pos: 20.5,-21.5
parent: 2
type: Transform
- - uid: 12235
+ - uid: 12243
components:
- pos: -47.5,41.5
parent: 2
type: Transform
- - uid: 12236
+ - uid: 12244
components:
- pos: -10.5,-30.5
parent: 2
type: Transform
- - uid: 12237
+ - uid: 12245
components:
- pos: -23.5,-6.5
parent: 2
type: Transform
- proto: ClosetFireFilled
entities:
- - uid: 12238
+ - uid: 12246
components:
- pos: -11.5,-45.5
parent: 2
@@ -75725,7 +75775,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12239
+ - uid: 12247
components:
- pos: -11.5,-73.5
parent: 2
@@ -75748,7 +75798,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12240
+ - uid: 12248
components:
- pos: 22.5,-52.5
parent: 2
@@ -75771,7 +75821,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12241
+ - uid: 12249
components:
- pos: 24.5,-55.5
parent: 2
@@ -75794,7 +75844,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12242
+ - uid: 12250
components:
- pos: -25.5,51.5
parent: 2
@@ -75817,7 +75867,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12243
+ - uid: 12251
components:
- pos: -12.5,-30.5
parent: 2
@@ -75840,7 +75890,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12244
+ - uid: 12252
components:
- pos: -2.5,-12.5
parent: 2
@@ -75863,7 +75913,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12245
+ - uid: 12253
components:
- pos: -52.5,-72.5
parent: 2
@@ -75886,7 +75936,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12246
+ - uid: 12254
components:
- pos: -23.5,-41.5
parent: 2
@@ -75909,7 +75959,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12247
+ - uid: 12255
components:
- pos: 22.5,-8.5
parent: 2
@@ -75932,7 +75982,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12248
+ - uid: 12256
components:
- pos: 62.5,-5.5
parent: 2
@@ -75955,7 +76005,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12249
+ - uid: 12257
components:
- pos: 19.5,-39.5
parent: 2
@@ -75978,7 +76028,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12250
+ - uid: 12258
components:
- pos: 16.5,-6.5
parent: 2
@@ -76001,7 +76051,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12251
+ - uid: 12259
components:
- pos: -32.5,-0.5
parent: 2
@@ -76024,7 +76074,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12252
+ - uid: 12260
components:
- pos: 2.5,-25.5
parent: 2
@@ -76047,7 +76097,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12253
+ - uid: 12261
components:
- pos: -11.5,47.5
parent: 2
@@ -76070,7 +76120,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12254
+ - uid: 12262
components:
- pos: 49.5,40.5
parent: 2
@@ -76093,7 +76143,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12255
+ - uid: 12263
components:
- pos: -43.5,37.5
parent: 2
@@ -76116,7 +76166,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12256
+ - uid: 12264
components:
- pos: -31.5,-41.5
parent: 2
@@ -76139,7 +76189,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12257
+ - uid: 12265
components:
- pos: -27.5,28.5
parent: 2
@@ -76162,7 +76212,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12258
+ - uid: 12266
components:
- pos: -35.5,-93.5
parent: 2
@@ -76185,7 +76235,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12259
+ - uid: 12267
components:
- pos: 9.5,-37.5
parent: 2
@@ -76208,7 +76258,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12260
+ - uid: 12268
components:
- pos: 74.5,-52.5
parent: 2
@@ -76231,7 +76281,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12261
+ - uid: 12269
components:
- pos: 64.5,-31.5
parent: 2
@@ -76254,7 +76304,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12262
+ - uid: 12270
components:
- pos: 35.5,-74.5
parent: 2
@@ -76277,39 +76327,39 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12263
+ - uid: 12271
components:
- pos: 29.5,-92.5
parent: 2
type: Transform
- - uid: 12264
+ - uid: 12272
components:
- pos: 49.5,-92.5
parent: 2
type: Transform
- - uid: 12265
+ - uid: 12273
components:
- pos: 28.5,-80.5
parent: 2
type: Transform
- - uid: 12266
+ - uid: 12274
components:
- pos: -24.5,-6.5
parent: 2
type: Transform
- - uid: 12267
+ - uid: 12275
components:
- pos: -74.5,-32.5
parent: 2
type: Transform
- - uid: 12268
+ - uid: 12276
components:
- pos: -57.5,-56.5
parent: 2
type: Transform
- proto: ClosetJanitorFilled
entities:
- - uid: 12269
+ - uid: 12277
components:
- pos: -10.5,-18.5
parent: 2
@@ -76334,7 +76384,7 @@ entities:
type: EntityStorage
- proto: ClosetL3JanitorFilled
entities:
- - uid: 12270
+ - uid: 12278
components:
- pos: -10.5,-17.5
parent: 2
@@ -76359,7 +76409,7 @@ entities:
type: EntityStorage
- proto: ClosetL3VirologyFilled
entities:
- - uid: 12271
+ - uid: 12279
components:
- pos: -18.5,-63.5
parent: 2
@@ -76382,7 +76432,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12272
+ - uid: 12280
components:
- pos: -22.5,-79.5
parent: 2
@@ -76407,7 +76457,7 @@ entities:
type: EntityStorage
- proto: ClosetMaintenance
entities:
- - uid: 12273
+ - uid: 12281
components:
- pos: -22.5,-38.5
parent: 2
@@ -76430,7 +76480,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12274
+ - uid: 12282
components:
- pos: -44.5,-31.5
parent: 2
@@ -76453,7 +76503,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12275
+ - uid: 12283
components:
- pos: -41.5,-30.5
parent: 2
@@ -76476,7 +76526,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12276
+ - uid: 12284
components:
- pos: 14.5,39.5
parent: 2
@@ -76499,7 +76549,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12277
+ - uid: 12285
components:
- pos: -19.5,56.5
parent: 2
@@ -76524,12 +76574,12 @@ entities:
type: EntityStorage
- proto: ClosetMaintenanceFilledRandom
entities:
- - uid: 12278
+ - uid: 12286
components:
- pos: -42.5,-32.5
parent: 2
type: Transform
- - uid: 12279
+ - uid: 12287
components:
- pos: 12.5,-51.5
parent: 2
@@ -76552,7 +76602,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12280
+ - uid: 12288
components:
- pos: -5.5,-73.5
parent: 2
@@ -76575,7 +76625,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12281
+ - uid: 12289
components:
- pos: -19.5,58.5
parent: 2
@@ -76598,7 +76648,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12282
+ - uid: 12290
components:
- pos: 16.5,-72.5
parent: 2
@@ -76621,7 +76671,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12283
+ - uid: 12291
components:
- pos: -15.5,-12.5
parent: 2
@@ -76644,7 +76694,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12284
+ - uid: 12292
components:
- pos: -37.5,-67.5
parent: 2
@@ -76667,7 +76717,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12285
+ - uid: 12293
components:
- pos: -29.5,-57.5
parent: 2
@@ -76690,7 +76740,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12286
+ - uid: 12294
components:
- pos: -29.5,-39.5
parent: 2
@@ -76713,7 +76763,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12287
+ - uid: 12295
components:
- pos: -28.5,-67.5
parent: 2
@@ -76736,7 +76786,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12288
+ - uid: 12296
components:
- pos: -56.5,-32.5
parent: 2
@@ -76759,7 +76809,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12289
+ - uid: 12297
components:
- pos: 36.5,-12.5
parent: 2
@@ -76782,7 +76832,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12290
+ - uid: 12298
components:
- pos: -22.5,-28.5
parent: 2
@@ -76805,7 +76855,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12291
+ - uid: 12299
components:
- pos: 0.5,34.5
parent: 2
@@ -76828,7 +76878,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12292
+ - uid: 12300
components:
- pos: 55.5,-3.5
parent: 2
@@ -76851,7 +76901,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12293
+ - uid: 12301
components:
- pos: -27.5,-67.5
parent: 2
@@ -76874,7 +76924,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12294
+ - uid: 12302
components:
- pos: 39.5,-15.5
parent: 2
@@ -76897,7 +76947,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12295
+ - uid: 12303
components:
- pos: 58.5,29.5
parent: 2
@@ -76920,7 +76970,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12296
+ - uid: 12304
components:
- pos: -31.5,38.5
parent: 2
@@ -76943,7 +76993,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12297
+ - uid: 12305
components:
- pos: -12.5,29.5
parent: 2
@@ -76966,7 +77016,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12298
+ - uid: 12306
components:
- pos: -43.5,-94.5
parent: 2
@@ -76989,7 +77039,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12299
+ - uid: 12307
components:
- pos: 48.5,-35.5
parent: 2
@@ -77012,7 +77062,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12300
+ - uid: 12308
components:
- pos: 72.5,-55.5
parent: 2
@@ -77035,7 +77085,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12301
+ - uid: 12309
components:
- pos: -9.5,-8.5
parent: 2
@@ -77058,19 +77108,19 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12302
+ - uid: 12310
components:
- pos: 7.5,-78.5
parent: 2
type: Transform
- - uid: 12303
+ - uid: 12311
components:
- pos: 8.5,26.5
parent: 2
type: Transform
- proto: ClosetRadiationSuitFilled
entities:
- - uid: 12304
+ - uid: 12312
components:
- pos: -59.5,-23.5
parent: 2
@@ -77093,7 +77143,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12305
+ - uid: 12313
components:
- pos: -60.5,-23.5
parent: 2
@@ -77116,7 +77166,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12306
+ - uid: 12314
components:
- pos: 70.5,-35.5
parent: 2
@@ -77141,7 +77191,7 @@ entities:
type: EntityStorage
- proto: ClosetToolFilled
entities:
- - uid: 12307
+ - uid: 12315
components:
- pos: -26.5,-21.5
parent: 2
@@ -77164,7 +77214,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12308
+ - uid: 12316
components:
- pos: -22.5,-31.5
parent: 2
@@ -77174,14 +77224,14 @@ entities:
type: EntityStorage
- proto: ClosetWall
entities:
- - uid: 12309
+ - uid: 12317
components:
- pos: 45.5,-32.5
parent: 2
type: Transform
- proto: ClosetWallMaintenanceFilledRandom
entities:
- - uid: 12310
+ - uid: 12318
components:
- pos: 53.5,-33.5
parent: 2
@@ -77204,12 +77254,12 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12311
+ - uid: 12319
components:
- pos: 47.5,-64.5
parent: 2
type: Transform
- - uid: 12312
+ - uid: 12320
components:
- pos: -52.5,-26.5
parent: 2
@@ -77232,64 +77282,64 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12313
+ - uid: 12321
components:
- pos: 2.5,-12.5
parent: 2
type: Transform
- proto: ClothingBackpack
entities:
- - uid: 12314
+ - uid: 12322
components:
- pos: -56.640278,-27.45032
parent: 2
type: Transform
- proto: ClothingBackpackDuffelCaptain
entities:
- - uid: 12315
+ - uid: 12323
components:
- pos: 30.440884,-27.760664
parent: 2
type: Transform
- proto: ClothingBackpackDuffelClown
entities:
- - uid: 12316
+ - uid: 12324
components:
- pos: 53.57669,61.550056
parent: 2
type: Transform
- proto: ClothingBackpackDuffelMedical
entities:
- - uid: 12317
+ - uid: 12325
components:
- pos: -2.4848266,-48.830677
parent: 2
type: Transform
- - uid: 12318
+ - uid: 12326
components:
- pos: -16.552103,-49.311478
parent: 2
type: Transform
- proto: ClothingBackpackDuffelSecurity
entities:
- - uid: 12319
+ - uid: 12327
components:
- pos: 5.4199524,15.682768
parent: 2
type: Transform
- proto: ClothingBackpackDuffelSurgeryFilled
entities:
- - uid: 12320
+ - uid: 12328
components:
- pos: -6.4692874,-100.35278
parent: 2
type: Transform
- - uid: 12321
+ - uid: 12329
components:
- pos: -3.4849787,-66.40156
parent: 2
type: Transform
- - uid: 12322
+ - uid: 12330
components:
- rot: 1.5707963267948966 rad
pos: -14.5,-35.5
@@ -77297,7 +77347,7 @@ entities:
type: Transform
- proto: ClothingBackpackDuffelSyndicate
entities:
- - uid: 12323
+ - uid: 12331
components:
- pos: -46.5,62.5
parent: 2
@@ -77305,867 +77355,862 @@ entities:
- type: ItemCooldown
- proto: ClothingBackpackMedical
entities:
- - uid: 12324
+ - uid: 12332
components:
- pos: 0.5470823,-61.419598
parent: 2
type: Transform
- proto: ClothingBackpackSatchel
entities:
- - uid: 12325
+ - uid: 12333
components:
- pos: -48.296333,5.808547
parent: 2
type: Transform
- proto: ClothingBackpackSatchelMedical
entities:
- - uid: 12326
+ - uid: 12334
components:
- pos: -11.364604,-50.389603
parent: 2
type: Transform
- proto: ClothingBackpackVirology
entities:
- - uid: 12327
+ - uid: 12335
components:
- pos: -31.439095,-73.39239
parent: 2
type: Transform
- proto: ClothingBeltAssault
entities:
- - uid: 12329
+ - uid: 12337
components:
- flags: InContainer
type: MetaData
- - parent: 12328
+ - parent: 12336
type: Transform
- canCollide: False
type: Physics
- type: InsideEntityStorage
- proto: ClothingBeltMedicalFilled
entities:
- - uid: 12331
+ - uid: 12339
components:
- pos: -11.470623,-49.143177
parent: 2
type: Transform
- proto: ClothingBeltUtility
entities:
- - uid: 12332
+ - uid: 12340
components:
- pos: -39.52201,-20.517406
parent: 2
type: Transform
- - uid: 12333
+ - uid: 12341
components:
- pos: 47.423275,49.588562
parent: 2
type: Transform
- - uid: 12334
+ - uid: 12342
components:
- pos: -3.42201,34.480587
parent: 2
type: Transform
- proto: ClothingBeltUtilityFilled
entities:
- - uid: 12335
+ - uid: 12343
components:
- pos: 41.37638,-39.3584
parent: 2
type: Transform
- - uid: 12336
+ - uid: 12344
components:
- pos: -25.692995,-19.449156
parent: 2
type: Transform
- - uid: 12337
+ - uid: 12345
components:
- pos: -30.494818,-37.432365
parent: 2
type: Transform
- - uid: 12338
+ - uid: 12346
components:
- pos: -21.644775,-100.24527
parent: 2
type: Transform
- - uid: 12339
+ - uid: 12347
components:
- pos: -34.48208,26.5042
parent: 2
type: Transform
- proto: ClothingEyesGlasses
entities:
- - uid: 12340
+ - uid: 12348
components:
- pos: -57.484028,-27.38782
parent: 2
type: Transform
- proto: ClothingEyesGlassesMeson
entities:
- - uid: 12341
+ - uid: 12349
components:
- pos: -52.538578,-12.210998
parent: 2
type: Transform
- - uid: 12342
+ - uid: 12350
components:
- pos: -56.32557,-25.518402
parent: 2
type: Transform
- - uid: 12343
+ - uid: 12351
components:
- pos: 2.454368,-75.40744
parent: 2
type: Transform
- proto: ClothingEyesGlassesSecurity
entities:
- - uid: 12344
+ - uid: 12352
components:
- pos: 22.490807,-47.25673
parent: 2
type: Transform
- proto: ClothingEyesHudBeer
entities:
- - uid: 12345
+ - uid: 12353
components:
- pos: -41.966873,-78.417305
parent: 2
type: Transform
- proto: ClothingHandsGlovesBoxingBlue
entities:
- - uid: 12346
+ - uid: 12354
components:
- pos: 21.737816,3.36442
parent: 2
type: Transform
- - uid: 12347
+ - uid: 12355
components:
- pos: -40.008175,-83.602425
parent: 2
type: Transform
- proto: ClothingHandsGlovesBoxingGreen
entities:
- - uid: 12348
+ - uid: 12356
components:
- pos: 30.201283,4.7139225
parent: 2
type: Transform
- proto: ClothingHandsGlovesBoxingRed
entities:
- - uid: 12349
+ - uid: 12357
components:
- pos: 26.335562,-1.3744954
parent: 2
type: Transform
- - uid: 12350
+ - uid: 12358
components:
- pos: -44.121326,-80.72781
parent: 2
type: Transform
- proto: ClothingHandsGlovesBoxingYellow
entities:
- - uid: 12351
+ - uid: 12359
components:
- pos: 30.232533,4.5889225
parent: 2
type: Transform
- proto: ClothingHandsGlovesColorBlack
entities:
- - uid: 12352
+ - uid: 12360
components:
- pos: -47.515083,6.5429225
parent: 2
type: Transform
- proto: ClothingHandsGlovesColorOrange
entities:
- - uid: 12353
+ - uid: 12361
components:
- pos: -57.515278,-30.528444
parent: 2
type: Transform
- proto: ClothingHandsGlovesColorYellow
entities:
- - uid: 12354
+ - uid: 12362
components:
- pos: -24.5,-24.5
parent: 2
type: Transform
- - uid: 12355
+ - uid: 12363
components:
- pos: -28.54305,-20.538445
parent: 2
type: Transform
- - uid: 12356
+ - uid: 12364
components:
- pos: -56.97646,-35.48593
parent: 2
type: Transform
- proto: ClothingHandsGlovesCombat
entities:
- - uid: 12357
+ - uid: 12365
components:
- pos: -37.5,-32.5
parent: 2
type: Transform
- proto: ClothingHandsGlovesLatex
entities:
- - uid: 12358
+ - uid: 12366
components:
- pos: -19.466316,-85.552505
parent: 2
type: Transform
- - uid: 12359
+ - uid: 12367
components:
- pos: -5.563123,-96.94655
parent: 2
type: Transform
- proto: ClothingHeadFishCap
entities:
- - uid: 12360
+ - uid: 12368
components:
- pos: -24.484636,34.673782
parent: 2
type: Transform
- proto: ClothingHeadHatAnimalCatBlack
entities:
- - uid: 12361
+ - uid: 12369
components:
- pos: -51.4974,8.551356
parent: 2
type: Transform
- proto: ClothingHeadHatAnimalHeadslime
entities:
- - uid: 12362
+ - uid: 12370
components:
- pos: -48.252262,60.451523
parent: 2
type: Transform
- proto: ClothingHeadHatBeaverHat
entities:
- - uid: 12363
+ - uid: 12371
components:
- pos: 22.537655,11.563517
parent: 2
type: Transform
- proto: ClothingHeadHatBunny
entities:
- - uid: 12364
+ - uid: 12372
components:
- pos: 57.503056,-8.485766
parent: 2
type: Transform
- proto: ClothingHeadHatCake
entities:
- - uid: 12365
+ - uid: 12373
components:
- pos: -23.42545,-67.41026
parent: 2
type: Transform
- proto: ClothingHeadHatCardborg
entities:
- - uid: 12366
+ - uid: 12374
components:
- pos: 72.844894,-43.422203
parent: 2
type: Transform
- proto: ClothingHeadHatChickenhead
entities:
- - uid: 12367
+ - uid: 12375
components:
- pos: -38.364468,56.565044
parent: 2
type: Transform
- - uid: 12368
+ - uid: 12376
components:
- pos: 69.487785,-66.37648
parent: 2
type: Transform
- proto: ClothingHeadHatCone
entities:
- - uid: 12369
+ - uid: 12377
components:
- pos: 20.465803,-52.422585
parent: 2
type: Transform
- - uid: 12370
+ - uid: 12378
components:
- pos: -40.213425,-17.545645
parent: 2
type: Transform
- - uid: 12371
+ - uid: 12379
components:
- pos: -28.525217,-54.052208
parent: 2
type: Transform
- proto: ClothingHeadHatFedoraBrown
entities:
- - uid: 12372
+ - uid: 12380
components:
- pos: -42.4974,8.520106
parent: 2
type: Transform
- proto: ClothingHeadHatFedoraGrey
entities:
- - uid: 12373
+ - uid: 12381
components:
- pos: -22.922485,11.607702
parent: 2
type: Transform
- proto: ClothingHeadHatFez
entities:
- - uid: 12374
+ - uid: 12382
components:
- pos: 20.326727,12.833071
parent: 2
type: Transform
- proto: ClothingHeadHatGreensoft
entities:
- - uid: 12375
+ - uid: 12383
components:
- pos: 31.51696,-61.276703
parent: 2
type: Transform
- proto: ClothingHeadHatHardhatOrange
entities:
- - uid: 12376
+ - uid: 12384
components:
- pos: 15.782594,-64.08794
parent: 2
type: Transform
- proto: ClothingHeadHatHetmanHat
entities:
- - uid: 12377
+ - uid: 12385
components:
- pos: -40.407463,-78.02446
parent: 2
type: Transform
- proto: ClothingHeadHatHoodMoth
entities:
- - uid: 12378
+ - uid: 12386
components:
- pos: -14.455677,-96.43048
parent: 2
type: Transform
- proto: ClothingHeadHatHoodNunHood
entities:
- - uid: 12379
+ - uid: 12387
components:
- pos: -38.629223,16.497232
parent: 2
type: Transform
- proto: ClothingHeadHatJesterAlt
entities:
- - uid: 12380
+ - uid: 12388
components:
- pos: -15.170754,12.526345
parent: 2
type: Transform
- proto: ClothingHeadHatPlaguedoctor
entities:
- - uid: 12381
+ - uid: 12389
components:
- pos: -31.265268,5.276951
parent: 2
type: Transform
- proto: ClothingHeadHatPumpkin
entities:
- - uid: 12382
+ - uid: 12390
components:
- pos: -6.603641,4.509495
parent: 2
type: Transform
- proto: ClothingHeadHatRichard
entities:
- - uid: 12383
+ - uid: 12391
components:
- pos: -16.484713,20.572138
parent: 2
type: Transform
- proto: ClothingHeadHatSantahat
entities:
- - uid: 12384
+ - uid: 12392
components:
- pos: 70.456535,-65.50148
parent: 2
type: Transform
- - uid: 12385
+ - uid: 12393
components:
- pos: 16.841702,-83.27199
parent: 2
type: Transform
- proto: ClothingHeadHatShrineMaidenWig
entities:
- - uid: 12386
+ - uid: 12394
components:
- pos: 73.5263,-65.23457
parent: 2
type: Transform
- proto: ClothingHeadHatSquid
entities:
- - uid: 12387
+ - uid: 12395
components:
- pos: 9.466757,-12.457433
parent: 2
type: Transform
- proto: ClothingHeadHatTophat
entities:
- - uid: 12388
+ - uid: 12396
components:
- pos: 22.506405,10.969767
parent: 2
type: Transform
- - uid: 12389
+ - uid: 12397
components:
- pos: -19.575691,-87.365005
parent: 2
type: Transform
- proto: ClothingHeadHatTrucker
entities:
- - uid: 12390
+ - uid: 12398
components:
- pos: -35.471638,-48.0912
parent: 2
type: Transform
- proto: ClothingHeadHatUshanka
entities:
- - uid: 12391
+ - uid: 12399
components:
- pos: 20.592352,12.520571
parent: 2
type: Transform
- - uid: 12392
+ - uid: 12400
components:
- pos: 63.56368,11.408342
parent: 2
type: Transform
- - uid: 12393
+ - uid: 12401
components:
- pos: -39.523006,-76.44785
parent: 2
type: Transform
- - uid: 12394
+ - uid: 12402
components:
- pos: -43.43965,-78.05615
parent: 2
type: Transform
- proto: ClothingHeadHatVioletwizard
entities:
- - uid: 12395
+ - uid: 12403
components:
- pos: 18.520521,50.50226
parent: 2
type: Transform
- proto: ClothingHeadHatWelding
entities:
- - uid: 12396
+ - uid: 12404
components:
- pos: -35.502888,-47.3412
parent: 2
type: Transform
- - uid: 12397
+ - uid: 12405
components:
- pos: -12.456746,17.595669
parent: 2
type: Transform
- - uid: 12398
+ - uid: 12406
components:
- pos: 42.55075,-32.360874
parent: 2
type: Transform
- proto: ClothingHeadHatWeldingMaskFlameBlue
entities:
- - uid: 12399
+ - uid: 12407
components:
- pos: 0.64530456,23.439005
parent: 2
type: Transform
- - uid: 12400
+ - uid: 12408
components:
- pos: -20.443554,-51.52769
parent: 2
type: Transform
- proto: ClothingHeadHatWizard
entities:
- - uid: 12401
+ - uid: 12409
components:
- pos: -27.578125,55.49253
parent: 2
type: Transform
- proto: ClothingHeadHelmetCosmonaut
entities:
- - uid: 12402
+ - uid: 12410
components:
- pos: -31.517996,-64.46434
parent: 2
type: Transform
- - uid: 12403
+ - uid: 12411
components:
- pos: -37.48917,27.661566
parent: 2
type: Transform
- proto: ClothingHeadHelmetEVA
entities:
- - uid: 12404
+ - uid: 12412
components:
- pos: -71.04211,-26.39878
parent: 2
type: Transform
- proto: ClothingHeadHelmetScaf
entities:
- - uid: 12405
+ - uid: 12413
components:
- pos: -31.458502,-43.474
parent: 2
type: Transform
- proto: ClothingHeadHelmetTemplar
entities:
- - uid: 12406
+ - uid: 12414
components:
- pos: 38.423565,-15.642361
parent: 2
type: Transform
- proto: ClothingHeadNurseHat
entities:
- - uid: 12407
+ - uid: 12415
components:
- pos: 2.5095897,-65.392746
parent: 2
type: Transform
- proto: ClothingHeadSafari
entities:
- - uid: 12408
+ - uid: 12416
components:
- pos: -3.5832248,52.757553
parent: 2
type: Transform
- proto: ClothingMaskBat
entities:
- - uid: 12409
+ - uid: 12417
components:
- pos: -28.497562,8.541992
parent: 2
type: Transform
- proto: ClothingMaskBear
entities:
- - uid: 12410
+ - uid: 12418
components:
- pos: -38.62821,28.538465
parent: 2
type: Transform
- proto: ClothingMaskBee
entities:
- - uid: 12411
+ - uid: 12419
components:
- pos: -3.4901123,53.561974
parent: 2
type: Transform
- proto: ClothingMaskBreathMedical
entities:
- - uid: 12412
+ - uid: 12420
components:
- pos: -16.243101,-35.3368
parent: 2
type: Transform
- proto: ClothingMaskFox
entities:
- - uid: 12413
+ - uid: 12421
components:
- pos: 30.331896,-28.644527
parent: 2
type: Transform
- proto: ClothingMaskGas
entities:
- - uid: 12414
+ - uid: 12422
components:
- pos: -25.389828,-6.471097
parent: 2
type: Transform
- - uid: 12415
- components:
- - pos: -35.537254,-49.709976
- parent: 2
- type: Transform
- - uid: 12416
+ - uid: 12423
components:
- pos: -70.49962,-26.436932
parent: 2
type: Transform
- - uid: 12417
+ - uid: 12424
components:
- pos: -8.705846,-15.426237
parent: 2
type: Transform
- proto: ClothingMaskGasAtmos
entities:
- - uid: 12418
+ - uid: 12425
components:
- pos: 3.1338544,-75.35811
parent: 2
type: Transform
- proto: ClothingMaskJackal
entities:
- - uid: 12419
+ - uid: 12426
components:
- pos: 16.67739,21.87369
parent: 2
type: Transform
- proto: ClothingMaskMuzzle
entities:
- - uid: 12420
+ - uid: 12427
components:
- pos: -15.336851,-35.602425
parent: 2
type: Transform
- proto: ClothingMaskNeckGaiter
entities:
- - uid: 12330
+ - uid: 12338
components:
- flags: InContainer
type: MetaData
- - parent: 12328
+ - parent: 12336
type: Transform
- canCollide: False
type: Physics
- type: InsideEntityStorage
- proto: ClothingMaskPlague
entities:
- - uid: 12421
+ - uid: 12428
components:
- pos: -31.093393,5.386326
parent: 2
type: Transform
- proto: ClothingMaskRat
entities:
- - uid: 12422
+ - uid: 12429
components:
- pos: -9.217388,-10.5028515
parent: 2
type: Transform
- proto: ClothingMaskRaven
entities:
- - uid: 12423
+ - uid: 12430
components:
- pos: 12.510361,-6.449043
parent: 2
type: Transform
- proto: ClothingNeckAromanticPin
entities:
- - uid: 12424
+ - uid: 12431
components:
- pos: -16.507944,41.79273
parent: 2
type: Transform
- proto: ClothingNeckAsexualPin
entities:
- - uid: 12425
+ - uid: 12432
components:
- pos: -16.289194,41.51148
parent: 2
type: Transform
- proto: ClothingNeckBisexualPin
entities:
- - uid: 12426
+ - uid: 12433
components:
- pos: -42.7372,8.687558
parent: 2
type: Transform
- proto: ClothingNeckBling
entities:
- - uid: 12427
+ - uid: 12434
components:
- pos: 48.258717,-21.370115
parent: 2
type: Transform
- proto: ClothingNeckCloakMoth
entities:
- - uid: 12428
+ - uid: 12435
components:
- pos: -8.662971,-82.55483
parent: 2
type: Transform
- proto: ClothingNeckCloakTrans
entities:
- - uid: 12429
+ - uid: 12436
components:
- pos: -9.4988165,23.574131
parent: 2
type: Transform
- proto: ClothingNeckIntersexPin
entities:
- - uid: 12430
+ - uid: 12437
components:
- pos: -12.691556,31.94308
parent: 2
type: Transform
- proto: ClothingNeckLawyerbadge
entities:
- - uid: 12431
+ - uid: 12438
components:
- pos: 43.39902,-3.8456278
parent: 2
type: Transform
- proto: ClothingNeckLesbianPin
entities:
- - uid: 12432
+ - uid: 12439
components:
- pos: -51.700592,8.465523
parent: 2
type: Transform
- proto: ClothingNeckLGBTPin
entities:
- - uid: 12433
+ - uid: 12440
components:
- pos: -10.776614,43.48699
parent: 2
type: Transform
- proto: ClothingNeckMantleCE
entities:
- - uid: 12434
+ - uid: 12441
components:
- pos: -35.58501,-17.148493
parent: 2
type: Transform
- proto: ClothingNeckMantleCMO
entities:
- - uid: 12435
+ - uid: 12442
components:
- pos: -20.144634,-56.34305
parent: 2
type: Transform
- proto: ClothingNeckMantleHOS
entities:
- - uid: 12436
+ - uid: 12443
components:
- pos: 5.905226,20.807451
parent: 2
type: Transform
- proto: ClothingNeckMantleRD
entities:
- - uid: 12437
+ - uid: 12444
components:
- pos: 63.464256,-53.431217
parent: 2
type: Transform
- proto: ClothingNeckNonBinaryPin
entities:
- - uid: 12438
+ - uid: 12445
components:
- pos: -21.722902,35.752502
parent: 2
type: Transform
- - uid: 12439
+ - uid: 12446
components:
- pos: -47.78141,6.181047
parent: 2
type: Transform
- proto: ClothingNeckPansexualPin
entities:
- - uid: 12440
+ - uid: 12447
components:
- pos: -1.5377516,30.493696
parent: 2
type: Transform
- proto: ClothingNeckScarfStripedCentcom
entities:
- - uid: 12441
+ - uid: 12448
components:
- pos: 77.62025,-67.25297
parent: 2
type: Transform
- proto: ClothingNeckScarfStripedZebra
entities:
- - uid: 12442
+ - uid: 12449
components:
- pos: -28.25746,44.644928
parent: 2
type: Transform
- proto: ClothingNeckTransPin
entities:
- - uid: 12443
+ - uid: 12450
components:
- pos: 65.36391,-1.4805084
parent: 2
type: Transform
- proto: ClothingOuterArmorBulletproof
entities:
- - uid: 12444
+ - uid: 12451
components:
- pos: 32.367626,30.579184
parent: 2
type: Transform
- - uid: 12445
+ - uid: 12452
components:
- pos: 31.015066,32.43679
parent: 2
type: Transform
- - uid: 12446
+ - uid: 12453
components:
- pos: 31.015066,32.43679
parent: 2
type: Transform
- - uid: 12447
+ - uid: 12454
components:
- pos: 31.015066,32.43679
parent: 2
type: Transform
- - uid: 12448
+ - uid: 12455
components:
- pos: 31.015066,32.43679
parent: 2
type: Transform
- - uid: 12449
+ - uid: 12456
components:
- pos: 32.398876,30.266684
parent: 2
type: Transform
- - uid: 12450
+ - uid: 12457
components:
- pos: 32.617626,30.485434
parent: 2
type: Transform
- - uid: 12451
+ - uid: 12458
components:
- pos: 32.648876,30.157309
parent: 2
type: Transform
- proto: ClothingOuterArmorReflective
entities:
- - uid: 12452
+ - uid: 12459
components:
- pos: 32.477,29.610434
parent: 2
type: Transform
- proto: ClothingOuterCardborg
entities:
- - uid: 12453
+ - uid: 12460
components:
- pos: 73.548645,-43.410946
parent: 2
type: Transform
- proto: ClothingOuterCoatBomber
entities:
- - uid: 12454
+ - uid: 12461
components:
- pos: 15.5274105,-50.516087
parent: 2
type: Transform
- proto: ClothingOuterCoatDetective
entities:
- - uid: 12455
+ - uid: 12462
components:
- pos: -32.515205,-59.44035
parent: 2
type: Transform
- proto: ClothingOuterCoatGentle
entities:
- - uid: 12456
+ - uid: 12463
components:
- pos: 59.512882,24.492107
parent: 2
type: Transform
- proto: ClothingOuterCoatJensen
entities:
- - uid: 12153
+ - uid: 12160
components:
- pos: 62.5886,15.642659
parent: 2
@@ -78175,7 +78220,7 @@ entities:
showEnts: False
occludes: True
ents:
- - 12154
+ - 12161
toggleable-clothing: !type:ContainerSlot
showEnts: False
occludes: True
@@ -78183,329 +78228,336 @@ entities:
type: ContainerContainer
- proto: ClothingOuterDameDane
entities:
- - uid: 12457
+ - uid: 12464
components:
- pos: -30.207304,-98.49032
parent: 2
type: Transform
- proto: ClothingOuterHardsuitEVA
entities:
- - uid: 12458
+ - uid: 12465
components:
- pos: -71.62023,-26.30503
parent: 2
type: Transform
- proto: ClothingOuterHoodieChaplain
entities:
- - uid: 12459
+ - uid: 12466
components:
- pos: -39.238598,16.669107
parent: 2
type: Transform
- proto: ClothingOuterPlagueSuit
entities:
- - uid: 12460
+ - uid: 12467
components:
- pos: -31.046518,5.058201
parent: 2
type: Transform
- proto: ClothingOuterSanta
entities:
- - uid: 12461
+ - uid: 12468
components:
- pos: 16.810452,-83.41261
parent: 2
type: Transform
- proto: ClothingOuterStraightjacket
entities:
- - uid: 12462
+ - uid: 12469
components:
- pos: -15.008726,-35.30555
parent: 2
type: Transform
- - uid: 12463
+ - uid: 12470
components:
- pos: 6.437404,-57.306335
parent: 2
type: Transform
- proto: ClothingOuterSuitChicken
entities:
- - uid: 12464
+ - uid: 12471
components:
- pos: -41.535904,57.643673
parent: 2
type: Transform
- proto: ClothingOuterSuitMonkey
entities:
- - uid: 12465
+ - uid: 12472
components:
- pos: -23.4853,-87.30585
parent: 2
type: Transform
- proto: ClothingOuterSuitShrineMaiden
entities:
- - uid: 12466
+ - uid: 12473
components:
- pos: -40.497574,63.50408
parent: 2
type: Transform
- - uid: 12467
+ - uid: 12474
components:
- pos: 73.55755,-64.51582
parent: 2
type: Transform
- proto: ClothingOuterWinterRobo
entities:
- - uid: 12468
+ - uid: 12475
components:
- pos: 77.51138,-47.408936
parent: 2
type: Transform
- proto: ClothingOuterWinterViro
entities:
- - uid: 12469
+ - uid: 12476
components:
- pos: -31.470345,-74.22051
parent: 2
type: Transform
- proto: ClothingOuterWizard
entities:
- - uid: 12470
+ - uid: 12477
components:
- pos: -41.58894,41.559685
parent: 2
type: Transform
- proto: ClothingOuterWizardRed
entities:
- - uid: 12471
+ - uid: 12478
components:
- pos: -59.983215,-45.447025
parent: 2
type: Transform
- proto: ClothingOuterWizardViolet
entities:
- - uid: 12472
+ - uid: 12479
components:
- pos: 19.504896,49.611633
parent: 2
type: Transform
- proto: ClothingShoesBling
entities:
- - uid: 12473
+ - uid: 12480
components:
- pos: 47.782166,-25.351032
parent: 2
type: Transform
- proto: ClothingShoesBootsJack
entities:
- - uid: 12474
+ - uid: 12481
components:
- pos: -1.4635531,17.609518
parent: 2
type: Transform
- proto: ClothingShoesBootsLaceup
entities:
- - uid: 12475
+ - uid: 12482
components:
- pos: 45.797165,49.377663
parent: 2
type: Transform
- proto: ClothingShoesBootsMag
entities:
- - uid: 12476
+ - uid: 12483
components:
- pos: -34.59344,-13.376695
parent: 2
type: Transform
- - uid: 12477
+ - uid: 12484
components:
- pos: -47.52257,38.626587
parent: 2
type: Transform
- - uid: 12478
+ - uid: 12485
components:
- pos: 33.46236,-13.4915285
parent: 2
type: Transform
- - uid: 12479
+ - uid: 12486
components:
- pos: 27.527689,27.317041
parent: 2
type: Transform
- - uid: 12480
+ - uid: 12487
components:
- pos: 31.527689,27.285791
parent: 2
type: Transform
- - uid: 12481
+ - uid: 12488
components:
- pos: 31.516712,-13.514931
parent: 2
type: Transform
- - uid: 12482
+ - uid: 12489
components:
- pos: 31.501087,-11.577431
parent: 2
type: Transform
- - uid: 12483
+ - uid: 12490
components:
- pos: 33.563587,-11.530556
parent: 2
type: Transform
- - uid: 12484
+ - uid: 12491
components:
- pos: 29.610462,-11.499306
parent: 2
type: Transform
- - uid: 12485
+ - uid: 12492
components:
- pos: 29.532337,-13.577431
parent: 2
type: Transform
- - uid: 12486
+ - uid: 12493
components:
- pos: 26.669048,29.395418
parent: 2
type: Transform
- proto: ClothingShoesColorWhite
entities:
- - uid: 12487
+ - uid: 12494
components:
- pos: -16.54276,-45.461185
parent: 2
type: Transform
- proto: ClothingShoesDameDane
entities:
- - uid: 12488
+ - uid: 12495
components:
- pos: -22.591383,-96.25594
parent: 2
type: Transform
- proto: ClothingShoesFlippers
entities:
- - uid: 12489
+ - uid: 12496
components:
- pos: -3.5418344,21.579527
parent: 2
type: Transform
- proto: ClothingShoeSlippersDuck
entities:
- - uid: 12490
+ - uid: 12497
components:
- pos: 15.423054,34.567764
parent: 2
type: Transform
+- proto: ClothingShoesSkates
+ entities:
+ - uid: 12498
+ components:
+ - pos: -34.53309,-20.500399
+ parent: 2
+ type: Transform
- proto: ClothingUnderSocksBee
entities:
- - uid: 12491
+ - uid: 12499
components:
- pos: 62.522377,-58.450882
parent: 2
type: Transform
- proto: ClothingUniformJumpskirtJanimaidmini
entities:
- - uid: 12492
+ - uid: 12500
components:
- pos: -13.518242,-15.499978
parent: 2
type: Transform
- proto: ClothingUniformJumpskirtOfLife
entities:
- - uid: 12493
+ - uid: 12501
components:
- pos: 62.5,53.5
parent: 2
type: Transform
- proto: ClothingUniformJumpsuitCossack
entities:
- - uid: 12494
+ - uid: 12502
components:
- pos: -40.657463,-77.46196
parent: 2
type: Transform
- proto: ClothingUniformJumpsuitDameDane
entities:
- - uid: 12495
+ - uid: 12503
components:
- pos: -15.484091,-96.41976
parent: 2
type: Transform
- proto: ClothingUniformJumpsuitMonasticRobeDark
entities:
- - uid: 12496
+ - uid: 12504
components:
- pos: -32.383476,8.575315
parent: 2
type: Transform
- - uid: 12497
+ - uid: 12505
components:
- pos: -32.383476,8.575315
parent: 2
type: Transform
- - uid: 12498
+ - uid: 12506
components:
- pos: -32.383476,8.575315
parent: 2
type: Transform
- - uid: 12499
+ - uid: 12507
components:
- pos: -32.383476,8.575315
parent: 2
type: Transform
- - uid: 12500
+ - uid: 12508
components:
- pos: -32.383476,8.575315
parent: 2
type: Transform
- proto: ClothingUniformJumpsuitMonasticRobeLight
entities:
- - uid: 12501
+ - uid: 12509
components:
- pos: -22.894775,-100.24527
parent: 2
type: Transform
- - uid: 12502
+ - uid: 12510
components:
- pos: -33.11785,8.55969
parent: 2
type: Transform
- - uid: 12503
+ - uid: 12511
components:
- pos: -33.11785,8.55969
parent: 2
type: Transform
- - uid: 12504
+ - uid: 12512
components:
- pos: -33.11785,8.55969
parent: 2
type: Transform
- - uid: 12505
+ - uid: 12513
components:
- pos: -33.11785,8.55969
parent: 2
type: Transform
- - uid: 12506
+ - uid: 12514
components:
- pos: -33.11785,8.55969
parent: 2
type: Transform
- proto: ClothingUniformJumpsuitReporter
entities:
- - uid: 12507
+ - uid: 12515
components:
- pos: -27.443762,14.534213
parent: 2
type: Transform
- proto: ClothingUniformJumpsuitSafari
entities:
- - uid: 12508
+ - uid: 12516
components:
- pos: -3.4738498,52.42943
parent: 2
type: Transform
- proto: CluwneHorn
entities:
- - uid: 12509
+ - uid: 12517
components:
- rot: 1.5707963267948966 rad
pos: -1.2827566,69.184296
@@ -78513,358 +78565,358 @@ entities:
type: Transform
- proto: Cobweb1
entities:
- - uid: 12510
+ - uid: 12518
components:
- pos: -42.5,-20.5
parent: 2
type: Transform
- - uid: 12511
+ - uid: 12519
components:
- pos: -55.5,-66.5
parent: 2
type: Transform
- - uid: 12512
+ - uid: 12520
components:
- pos: -45.5,-71.5
parent: 2
type: Transform
- proto: Cobweb2
entities:
- - uid: 12513
+ - uid: 12521
components:
- pos: -48.5,-34.5
parent: 2
type: Transform
- - uid: 12514
+ - uid: 12522
components:
- pos: -53.5,-70.5
parent: 2
type: Transform
- - uid: 12515
+ - uid: 12523
components:
- pos: -38.5,-71.5
parent: 2
type: Transform
- proto: CockroachTimedSpawner
entities:
- - uid: 12516
+ - uid: 12524
components:
- pos: -11.5,-9.5
parent: 2
type: Transform
- proto: ComfyChair
entities:
- - uid: 12517
+ - uid: 12525
components:
- pos: -19.5,-55.5
parent: 2
type: Transform
- - uid: 12518
+ - uid: 12526
components:
- rot: 1.5707963267948966 rad
pos: 13.5,-35.5
parent: 2
type: Transform
- - uid: 12519
+ - uid: 12527
components:
- pos: 20.5,-11.5
parent: 2
type: Transform
- - uid: 12520
+ - uid: 12528
components:
- rot: 1.5707963267948966 rad
pos: 13.5,-33.5
parent: 2
type: Transform
- - uid: 12521
+ - uid: 12529
components:
- pos: 6.5,21.5
parent: 2
type: Transform
- - uid: 12522
+ - uid: 12530
components:
- rot: -1.5707963267948966 rad
pos: 24.5,-28.5
parent: 2
type: Transform
- - uid: 12523
+ - uid: 12531
components:
- rot: 1.5707963267948966 rad
pos: 13.5,-31.5
parent: 2
type: Transform
- - uid: 12524
+ - uid: 12532
components:
- rot: 3.141592653589793 rad
pos: 20.5,11.5
parent: 2
type: Transform
- - uid: 12525
+ - uid: 12533
components:
- pos: 20.5,13.5
parent: 2
type: Transform
- - uid: 12526
+ - uid: 12534
components:
- pos: -15.5,-37.5
parent: 2
type: Transform
- - uid: 12527
+ - uid: 12535
components:
- rot: -1.5707963267948966 rad
pos: 24.5,-29.5
parent: 2
type: Transform
- - uid: 12528
+ - uid: 12536
components:
- rot: -1.5707963267948966 rad
pos: 44.5,-3.5
parent: 2
type: Transform
- - uid: 12529
+ - uid: 12537
components:
- rot: 3.141592653589793 rad
pos: 33.5,-51.5
parent: 2
type: Transform
- - uid: 12530
+ - uid: 12538
components:
- rot: 3.141592653589793 rad
pos: 29.5,-51.5
parent: 2
type: Transform
- - uid: 12531
+ - uid: 12539
components:
- pos: 32.5,-47.5
parent: 2
type: Transform
- - uid: 12532
+ - uid: 12540
components:
- pos: 30.5,-47.5
parent: 2
type: Transform
- - uid: 12533
+ - uid: 12541
components:
- pos: 25.5,-81.5
parent: 2
type: Transform
- - uid: 12534
+ - uid: 12542
components:
- rot: 1.5707963267948966 rad
pos: -36.5,-16.5
parent: 2
type: Transform
- - uid: 12535
+ - uid: 12543
components:
- pos: -48.5,7.5
parent: 2
type: Transform
- - uid: 12536
+ - uid: 12544
components:
- pos: -47.5,7.5
parent: 2
type: Transform
- - uid: 12537
+ - uid: 12545
components:
- rot: 1.5707963267948966 rad
pos: -49.5,6.5
parent: 2
type: Transform
- - uid: 12538
+ - uid: 12546
components:
- rot: 1.5707963267948966 rad
pos: -49.5,5.5
parent: 2
type: Transform
- - uid: 12539
+ - uid: 12547
components:
- rot: 3.141592653589793 rad
pos: -48.5,4.5
parent: 2
type: Transform
- - uid: 12540
+ - uid: 12548
components:
- rot: 3.141592653589793 rad
pos: -47.5,4.5
parent: 2
type: Transform
- - uid: 12541
+ - uid: 12549
components:
- rot: -1.5707963267948966 rad
pos: -46.5,6.5
parent: 2
type: Transform
- - uid: 12542
+ - uid: 12550
components:
- rot: -1.5707963267948966 rad
pos: -46.5,5.5
parent: 2
type: Transform
- - uid: 12543
+ - uid: 12551
components:
- rot: 3.141592653589793 rad
pos: 25.5,-85.5
parent: 2
type: Transform
- - uid: 12544
+ - uid: 12552
components:
- rot: 3.141592653589793 rad
pos: 67.5,7.5
parent: 2
type: Transform
- - uid: 12545
+ - uid: 12553
components:
- pos: 67.5,11.5
parent: 2
type: Transform
- - uid: 12546
+ - uid: 12554
components:
- pos: 44.5,33.5
parent: 2
type: Transform
- - uid: 12547
+ - uid: 12555
components:
- pos: 43.5,33.5
parent: 2
type: Transform
- - uid: 12548
+ - uid: 12556
components:
- pos: 42.5,33.5
parent: 2
type: Transform
- - uid: 12549
+ - uid: 12557
components:
- rot: 1.5707963267948966 rad
pos: 64.5,-0.5
parent: 2
type: Transform
- - uid: 12550
+ - uid: 12558
components:
- rot: 1.5707963267948966 rad
pos: 64.5,-1.5
parent: 2
type: Transform
- - uid: 12551
+ - uid: 12559
components:
- rot: 3.141592653589793 rad
pos: 44.5,28.5
parent: 2
type: Transform
- - uid: 12552
+ - uid: 12560
components:
- rot: 3.141592653589793 rad
pos: 45.5,28.5
parent: 2
type: Transform
- - uid: 12553
+ - uid: 12561
components:
- rot: 3.141592653589793 rad
pos: 46.5,28.5
parent: 2
type: Transform
- - uid: 12554
+ - uid: 12562
components:
- rot: -1.5707963267948966 rad
pos: -54.5,-48.5
parent: 2
type: Transform
- - uid: 12555
+ - uid: 12563
components:
- rot: -1.5707963267948966 rad
pos: -54.5,-49.5
parent: 2
type: Transform
- - uid: 12556
+ - uid: 12564
components:
- pos: -55.5,-47.5
parent: 2
type: Transform
- - uid: 12557
+ - uid: 12565
components:
- rot: 3.141592653589793 rad
pos: -55.5,-50.5
parent: 2
type: Transform
- - uid: 12558
+ - uid: 12566
components:
- rot: -1.5707963267948966 rad
pos: -4.5,-98.5
parent: 2
type: Transform
- - uid: 12559
+ - uid: 12567
components:
- rot: -1.5707963267948966 rad
pos: -21.5,-97.5
parent: 2
type: Transform
- - uid: 12560
+ - uid: 12568
components:
- rot: 1.5707963267948966 rad
pos: -23.5,-97.5
parent: 2
type: Transform
- - uid: 12561
+ - uid: 12569
components:
- pos: -0.5,-73.5
parent: 2
type: Transform
- - uid: 12562
+ - uid: 12570
components:
- pos: 16.5,-79.5
parent: 2
type: Transform
- - uid: 12563
+ - uid: 12571
components:
- pos: 14.5,-79.5
parent: 2
type: Transform
- - uid: 12564
+ - uid: 12572
components:
- pos: 13.5,-79.5
parent: 2
type: Transform
- - uid: 12565
+ - uid: 12573
components:
- pos: 17.5,-79.5
parent: 2
type: Transform
- - uid: 12566
+ - uid: 12574
components:
- rot: 3.141592653589793 rad
pos: 14.5,-87.5
parent: 2
type: Transform
- - uid: 12567
+ - uid: 12575
components:
- rot: 3.141592653589793 rad
pos: 13.5,-87.5
parent: 2
type: Transform
- - uid: 12568
+ - uid: 12576
components:
- rot: 3.141592653589793 rad
pos: 17.5,-87.5
parent: 2
type: Transform
- - uid: 12569
+ - uid: 12577
components:
- rot: 3.141592653589793 rad
pos: 16.5,-87.5
parent: 2
type: Transform
- - uid: 12570
+ - uid: 12578
components:
- rot: -1.5707963267948966 rad
pos: 7.5,-79.5
parent: 2
type: Transform
- - uid: 12571
+ - uid: 12579
components:
- rot: 1.5707963267948966 rad
pos: 20.5,-29.5
parent: 2
type: Transform
- - uid: 12572
+ - uid: 12580
components:
- rot: 1.5707963267948966 rad
pos: 20.5,-28.5
@@ -78872,18 +78924,18 @@ entities:
type: Transform
- proto: ComputerAlert
entities:
- - uid: 12573
+ - uid: 12581
components:
- pos: 27.5,-21.5
parent: 2
type: Transform
- - uid: 12574
+ - uid: 12582
components:
- rot: 1.5707963267948966 rad
pos: -55.5,-12.5
parent: 2
type: Transform
- - uid: 12575
+ - uid: 12583
components:
- rot: 3.141592653589793 rad
pos: -36.5,-46.5
@@ -78891,24 +78943,24 @@ entities:
type: Transform
- proto: ComputerAnalysisConsole
entities:
- - uid: 12576
+ - uid: 12584
components:
- pos: 73.5,-31.5
parent: 2
type: Transform
- linkedPorts:
- 21390:
+ 21402:
- ArtifactAnalyzerSender: ArtifactAnalyzerReceiver
type: DeviceLinkSource
- proto: computerBodyScanner
entities:
- - uid: 12577
+ - uid: 12585
components:
- rot: -1.5707963267948966 rad
pos: 4.5,-65.5
parent: 2
type: Transform
- - uid: 12578
+ - uid: 12586
components:
- rot: 1.5707963267948966 rad
pos: -26.5,-60.5
@@ -78916,48 +78968,48 @@ entities:
type: Transform
- proto: ComputerBroken
entities:
- - uid: 12579
+ - uid: 12587
components:
- rot: -1.5707963267948966 rad
pos: 52.5,37.5
parent: 2
type: Transform
- - uid: 12580
+ - uid: 12588
components:
- pos: 51.5,36.5
parent: 2
type: Transform
- - uid: 12581
+ - uid: 12589
components:
- rot: -1.5707963267948966 rad
pos: 51.5,37.5
parent: 2
type: Transform
- - uid: 12582
+ - uid: 12590
components:
- rot: 1.5707963267948966 rad
pos: -0.5,73.5
parent: 2
type: Transform
- - uid: 12583
+ - uid: 12591
components:
- rot: -1.5707963267948966 rad
pos: -2.5,73.5
parent: 2
type: Transform
- - uid: 12584
+ - uid: 12592
components:
- rot: 1.5707963267948966 rad
pos: 2.5,69.5
parent: 2
type: Transform
- - uid: 12585
+ - uid: 12593
components:
- rot: -1.5707963267948966 rad
pos: -5.5,69.5
parent: 2
type: Transform
- - uid: 12586
+ - uid: 12594
components:
- rot: -1.5707963267948966 rad
pos: -50.5,-87.5
@@ -78965,36 +79017,36 @@ entities:
type: Transform
- proto: ComputerCargoBounty
entities:
- - uid: 12587
+ - uid: 12595
components:
- pos: -42.5,25.5
parent: 2
type: Transform
- proto: ComputerCargoOrders
entities:
- - uid: 12588
+ - uid: 12596
components:
- pos: -31.5,31.5
parent: 2
type: Transform
- - uid: 12589
+ - uid: 12597
components:
- pos: 29.5,-21.5
parent: 2
type: Transform
- - uid: 12590
+ - uid: 12598
components:
- pos: -27.5,23.5
parent: 2
type: Transform
- - uid: 12591
+ - uid: 12599
components:
- pos: -44.5,35.5
parent: 2
type: Transform
- proto: ComputerCargoShuttle
entities:
- - uid: 12592
+ - uid: 12600
components:
- rot: 3.141592653589793 rad
pos: -27.5,21.5
@@ -79002,12 +79054,12 @@ entities:
type: Transform
- proto: ComputerComms
entities:
- - uid: 12593
+ - uid: 12601
components:
- pos: 25.5,-21.5
parent: 2
type: Transform
- - uid: 12594
+ - uid: 12602
components:
- rot: 1.5707963267948966 rad
pos: 28.5,-30.5
@@ -79015,69 +79067,69 @@ entities:
type: Transform
- proto: ComputerCrewMonitoring
entities:
- - uid: 12595
+ - uid: 12603
components:
- pos: 23.5,-21.5
parent: 2
type: Transform
- - uid: 12596
+ - uid: 12604
components:
- pos: 54.5,13.5
parent: 2
type: Transform
- proto: ComputerCriminalRecords
entities:
- - uid: 12597
+ - uid: 12605
components:
- rot: -1.5707963267948966 rad
pos: 22.5,-45.5
parent: 2
type: Transform
- - uid: 12598
+ - uid: 12606
components:
- pos: -16.5,26.5
parent: 2
type: Transform
- - uid: 12599
+ - uid: 12607
components:
- pos: 23.5,23.5
parent: 2
type: Transform
- proto: ComputerFrame
entities:
- - uid: 12600
+ - uid: 12608
components:
- pos: -8.5,-63.5
parent: 2
type: Transform
- - uid: 12601
+ - uid: 12609
components:
- rot: 1.5707963267948966 rad
pos: 70.5,-36.5
parent: 2
type: Transform
- - uid: 12602
+ - uid: 12610
components:
- pos: 51.5,35.5
parent: 2
type: Transform
- - uid: 12603
+ - uid: 12611
components:
- pos: -10.5,37.5
parent: 2
type: Transform
- - uid: 12604
+ - uid: 12612
components:
- pos: -29.5,-96.5
parent: 2
type: Transform
- - uid: 12605
+ - uid: 12613
components:
- rot: 1.5707963267948966 rad
pos: -79.5,-54.5
parent: 2
type: Transform
- - uid: 12606
+ - uid: 12614
components:
- rot: 1.5707963267948966 rad
pos: -79.5,-53.5
@@ -79085,40 +79137,40 @@ entities:
type: Transform
- proto: ComputerId
entities:
- - uid: 12607
+ - uid: 12615
components:
- rot: 1.5707963267948966 rad
pos: -37.5,-17.5
parent: 2
type: Transform
- - uid: 12608
+ - uid: 12616
components:
- pos: 60.5,-53.5
parent: 2
type: Transform
- - uid: 12609
+ - uid: 12617
components:
- rot: 3.141592653589793 rad
pos: -30.5,29.5
parent: 2
type: Transform
- - uid: 12610
+ - uid: 12618
components:
- pos: 25.5,-24.5
parent: 2
type: Transform
- - uid: 12611
+ - uid: 12619
components:
- rot: 3.141592653589793 rad
pos: 4.5,20.5
parent: 2
type: Transform
- - uid: 12612
+ - uid: 12620
components:
- pos: -19.5,-54.5
parent: 2
type: Transform
- - uid: 12613
+ - uid: 12621
components:
- rot: 1.5707963267948966 rad
pos: 3.5,-4.5
@@ -79126,7 +79178,7 @@ entities:
type: Transform
- proto: ComputerMassMedia
entities:
- - uid: 12614
+ - uid: 12622
components:
- rot: -1.5707963267948966 rad
pos: -22.5,12.5
@@ -79134,18 +79186,18 @@ entities:
type: Transform
- proto: ComputerMedicalRecords
entities:
- - uid: 12615
+ - uid: 12623
components:
- pos: -20.5,-54.5
parent: 2
type: Transform
- - uid: 12616
+ - uid: 12624
components:
- rot: -1.5707963267948966 rad
pos: -3.5,-50.5
parent: 2
type: Transform
- - uid: 12617
+ - uid: 12625
components:
- rot: 3.141592653589793 rad
pos: 47.5,5.5
@@ -79153,34 +79205,34 @@ entities:
type: Transform
- proto: ComputerPowerMonitoring
entities:
- - uid: 12618
+ - uid: 12626
components:
- pos: -46.5,-22.5
parent: 2
type: Transform
- - uid: 12619
+ - uid: 12627
components:
- pos: -72.5,-31.5
parent: 2
type: Transform
- - uid: 12620
+ - uid: 12628
components:
- pos: 21.5,-21.5
parent: 2
type: Transform
- - uid: 12621
+ - uid: 12629
components:
- rot: 3.141592653589793 rad
pos: -27.5,-13.5
parent: 2
type: Transform
- - uid: 12622
+ - uid: 12630
components:
- rot: 1.5707963267948966 rad
pos: -55.5,-13.5
parent: 2
type: Transform
- - uid: 12623
+ - uid: 12631
components:
- rot: 3.141592653589793 rad
pos: -71.5,-39.5
@@ -79188,7 +79240,7 @@ entities:
type: Transform
- proto: ComputerRadar
entities:
- - uid: 12624
+ - uid: 12632
components:
- rot: 1.5707963267948966 rad
pos: -48.5,32.5
@@ -79196,40 +79248,40 @@ entities:
type: Transform
- proto: ComputerResearchAndDevelopment
entities:
- - uid: 12625
+ - uid: 12633
components:
- rot: 3.141592653589793 rad
pos: 61.5,-55.5
parent: 2
type: Transform
- - uid: 12626
+ - uid: 12634
components:
- rot: -1.5707963267948966 rad
pos: 43.5,-39.5
parent: 2
type: Transform
- - uid: 12627
+ - uid: 12635
components:
- pos: 68.5,-43.5
parent: 2
type: Transform
- - uid: 12628
+ - uid: 12636
components:
- pos: 50.5,-52.5
parent: 2
type: Transform
- - uid: 12629
+ - uid: 12637
components:
- rot: 3.141592653589793 rad
pos: 60.5,-36.5
parent: 2
type: Transform
- - uid: 12630
+ - uid: 12638
components:
- pos: 74.5,-31.5
parent: 2
type: Transform
- - uid: 12631
+ - uid: 12639
components:
- rot: 3.141592653589793 rad
pos: 52.5,-42.5
@@ -79237,14 +79289,14 @@ entities:
type: Transform
- proto: ComputerSalvageExpedition
entities:
- - uid: 12632
+ - uid: 12640
components:
- pos: -46.5,44.5
parent: 2
type: Transform
- proto: ComputerShuttleCargo
entities:
- - uid: 12633
+ - uid: 12641
components:
- rot: 1.5707963267948966 rad
pos: -48.5,21.5
@@ -79252,66 +79304,66 @@ entities:
type: Transform
- proto: ComputerShuttleSalvage
entities:
- - uid: 12634
+ - uid: 12642
components:
- pos: -47.5,44.5
parent: 2
type: Transform
- proto: ComputerSolarControl
entities:
- - uid: 12635
+ - uid: 12643
components:
- rot: 1.5707963267948966 rad
pos: -2.5,-77.5
parent: 2
type: Transform
- - uid: 12636
+ - uid: 12644
components:
- pos: 72.5,38.5
parent: 2
type: Transform
- proto: ComputerStationRecords
entities:
- - uid: 12637
+ - uid: 12645
components:
- rot: -1.5707963267948966 rad
pos: 5.5,-4.5
parent: 2
type: Transform
- - uid: 12638
+ - uid: 12646
components:
- rot: 1.5707963267948966 rad
pos: 2.5,-57.5
parent: 2
type: Transform
- - uid: 12639
+ - uid: 12647
components:
- pos: 18.5,-10.5
parent: 2
type: Transform
- - uid: 12640
+ - uid: 12648
components:
- pos: 24.5,-24.5
parent: 2
type: Transform
- - uid: 12641
+ - uid: 12649
components:
- rot: -1.5707963267948966 rad
pos: 26.5,20.5
parent: 2
type: Transform
- - uid: 12642
+ - uid: 12650
components:
- pos: 47.5,7.5
parent: 2
type: Transform
- - uid: 12643
+ - uid: 12651
components:
- rot: 3.141592653589793 rad
pos: 20.5,-47.5
parent: 2
type: Transform
- - uid: 12644
+ - uid: 12652
components:
- rot: 3.141592653589793 rad
pos: -16.5,-23.5
@@ -79319,57 +79371,57 @@ entities:
type: Transform
- proto: ComputerSurveillanceCameraMonitor
entities:
- - uid: 12645
+ - uid: 12653
components:
- pos: 26.5,-24.5
parent: 2
type: Transform
- - uid: 12646
+ - uid: 12654
components:
- rot: 3.141592653589793 rad
pos: 18.5,-12.5
parent: 2
type: Transform
- - uid: 12647
+ - uid: 12655
components:
- rot: 1.5707963267948966 rad
pos: 24.5,20.5
parent: 2
type: Transform
- - uid: 12648
+ - uid: 12656
components:
- pos: 53.5,13.5
parent: 2
type: Transform
- - uid: 12649
+ - uid: 12657
components:
- rot: 1.5707963267948966 rad
pos: -55.5,-14.5
parent: 2
type: Transform
- - uid: 12650
+ - uid: 12658
components:
- pos: -23.5,-69.5
parent: 2
type: Transform
- - uid: 12651
+ - uid: 12659
components:
- pos: -11.5,-14.5
parent: 2
type: Transform
- - uid: 12652
+ - uid: 12660
components:
- rot: 1.5707963267948966 rad
pos: -21.5,-49.5
parent: 2
type: Transform
- - uid: 12653
+ - uid: 12661
components:
- rot: 3.141592653589793 rad
pos: -37.5,-46.5
parent: 2
type: Transform
- - uid: 12654
+ - uid: 12662
components:
- rot: 1.5707963267948966 rad
pos: -27.5,15.5
@@ -79377,1067 +79429,1057 @@ entities:
type: Transform
- proto: ComputerTechnologyDiskTerminal
entities:
- - uid: 12655
+ - uid: 12663
components:
- pos: 56.5,-47.5
parent: 2
type: Transform
- proto: ComputerTelevision
entities:
- - uid: 12656
+ - uid: 12664
components:
- pos: -6.5,-48.5
parent: 2
type: Transform
- - uid: 12657
+ - uid: 12665
components:
- pos: -28.5,43.5
parent: 2
type: Transform
- - uid: 12658
+ - uid: 12666
components:
- pos: 15.5,9.5
parent: 2
type: Transform
- - uid: 12659
+ - uid: 12667
components:
- pos: -22.5,31.5
parent: 2
type: Transform
- - uid: 12660
+ - uid: 12668
components:
- pos: -18.5,35.5
parent: 2
type: Transform
- - uid: 12661
+ - uid: 12669
components:
- pos: -11.5,35.5
parent: 2
type: Transform
- - uid: 12662
+ - uid: 12670
components:
- pos: -21.5,39.5
parent: 2
type: Transform
- proto: ComputerTelevisionCircuitboard
entities:
- - uid: 12663
+ - uid: 12671
components:
- pos: 41.546516,-53.695484
parent: 2
type: Transform
- - uid: 12664
- components:
- - pos: -8.937697,37.5244
- parent: 2
- type: Transform
- - uid: 12665
- components:
- - pos: -9.312697,37.696274
- parent: 2
- type: Transform
- proto: ContainmentFieldGenerator
entities:
- - uid: 12666
+ - uid: 12672
components:
- pos: -70.5,-9.5
parent: 2
type: Transform
- - uid: 12667
+ - uid: 12673
components:
- pos: -62.5,-9.5
parent: 2
type: Transform
- - uid: 12668
+ - uid: 12674
components:
- pos: -62.5,-17.5
parent: 2
type: Transform
- - uid: 12669
+ - uid: 12675
components:
- pos: -70.5,-17.5
parent: 2
type: Transform
- - uid: 12670
+ - uid: 12676
components:
- pos: -74.5,-26.5
parent: 2
type: Transform
- - uid: 12671
+ - uid: 12677
components:
- pos: -73.5,-26.5
parent: 2
type: Transform
- - uid: 12672
+ - uid: 12678
components:
- pos: -74.5,-23.5
parent: 2
type: Transform
- - uid: 12673
+ - uid: 12679
components:
- pos: -73.5,-23.5
parent: 2
type: Transform
- proto: ConveyorBelt
entities:
- - uid: 12674
+ - uid: 12680
components:
- rot: 1.5707963267948966 rad
pos: 16.5,-55.5
parent: 2
type: Transform
- links:
- - 25841
+ - 25860
type: DeviceLinkSink
- - uid: 12675
+ - uid: 12681
components:
- pos: 18.5,-56.5
parent: 2
type: Transform
- links:
- - 25841
+ - 25860
type: DeviceLinkSink
- - uid: 12676
+ - uid: 12682
components:
- rot: 1.5707963267948966 rad
pos: 17.5,-55.5
parent: 2
type: Transform
- links:
- - 25841
+ - 25860
type: DeviceLinkSink
- - uid: 12677
+ - uid: 12683
components:
- rot: 1.5707963267948966 rad
pos: 15.5,-55.5
parent: 2
type: Transform
- links:
- - 25841
+ - 25860
type: DeviceLinkSink
- - uid: 12678
+ - uid: 12684
components:
- pos: 18.5,-55.5
parent: 2
type: Transform
- links:
- - 25841
+ - 25860
type: DeviceLinkSink
- - uid: 12679
+ - uid: 12685
components:
- rot: -1.5707963267948966 rad
pos: -12.5,-10.5
parent: 2
type: Transform
- links:
- - 25854
+ - 25873
type: DeviceLinkSink
- - uid: 12680
+ - uid: 12686
components:
- pos: 15.5,-54.5
parent: 2
type: Transform
- links:
- - 25841
+ - 25860
type: DeviceLinkSink
- - uid: 12681
+ - uid: 12687
components:
- pos: 18.5,-57.5
parent: 2
type: Transform
- links:
- - 25841
+ - 25860
type: DeviceLinkSink
- - uid: 12682
+ - uid: 12688
components:
- rot: -1.5707963267948966 rad
pos: 17.5,-54.5
parent: 2
type: Transform
- links:
- - 25841
+ - 25860
type: DeviceLinkSink
- - uid: 12683
+ - uid: 12689
components:
- rot: -1.5707963267948966 rad
pos: 16.5,-54.5
parent: 2
type: Transform
- links:
- - 25841
+ - 25860
type: DeviceLinkSink
- - uid: 12684
+ - uid: 12690
components:
- rot: -1.5707963267948966 rad
pos: 18.5,-54.5
parent: 2
type: Transform
- links:
- - 25841
+ - 25860
type: DeviceLinkSink
- - uid: 12685
+ - uid: 12691
components:
- rot: -1.5707963267948966 rad
pos: -14.5,-10.5
parent: 2
type: Transform
- links:
- - 25854
+ - 25873
type: DeviceLinkSink
- - uid: 12686
+ - uid: 12692
components:
- rot: -1.5707963267948966 rad
pos: -13.5,-10.5
parent: 2
type: Transform
- links:
- - 25854
+ - 25873
type: DeviceLinkSink
- - uid: 12687
+ - uid: 12693
components:
- rot: 3.141592653589793 rad
pos: -11.5,-10.5
parent: 2
type: Transform
- links:
- - 25854
+ - 25873
type: DeviceLinkSink
- - uid: 12688
+ - uid: 12694
components:
- rot: 1.5707963267948966 rad
pos: -25.5,25.5
parent: 2
type: Transform
- links:
- - 25842
+ - 25861
type: DeviceLinkSink
- - uid: 12689
+ - uid: 12695
components:
- rot: 1.5707963267948966 rad
pos: -26.5,25.5
parent: 2
type: Transform
- links:
- - 25842
+ - 25861
type: DeviceLinkSink
- - uid: 12690
+ - uid: 12696
components:
- rot: 1.5707963267948966 rad
pos: -27.5,25.5
parent: 2
type: Transform
- links:
- - 25842
+ - 25861
type: DeviceLinkSink
- - uid: 12691
+ - uid: 12697
components:
- rot: 1.5707963267948966 rad
pos: -28.5,25.5
parent: 2
type: Transform
- links:
- - 25842
+ - 25861
type: DeviceLinkSink
- - uid: 12692
+ - uid: 12698
components:
- rot: 1.5707963267948966 rad
pos: -30.5,25.5
parent: 2
type: Transform
- links:
- - 25842
+ - 25861
type: DeviceLinkSink
- - uid: 12693
+ - uid: 12699
components:
- rot: 1.5707963267948966 rad
pos: -29.5,25.5
parent: 2
type: Transform
- links:
- - 25842
+ - 25861
type: DeviceLinkSink
- - uid: 12694
+ - uid: 12700
components:
- rot: 1.5707963267948966 rad
pos: -35.5,25.5
parent: 2
type: Transform
- links:
- - 25846
+ - 25865
type: DeviceLinkSink
- - uid: 12695
+ - uid: 12701
components:
- rot: 1.5707963267948966 rad
pos: -34.5,25.5
parent: 2
type: Transform
- links:
- - 25846
+ - 25865
type: DeviceLinkSink
- - uid: 12696
+ - uid: 12702
components:
- rot: 1.5707963267948966 rad
pos: -36.5,25.5
parent: 2
type: Transform
- links:
- - 25846
+ - 25865
type: DeviceLinkSink
- - uid: 12697
+ - uid: 12703
components:
- rot: 1.5707963267948966 rad
pos: -37.5,25.5
parent: 2
type: Transform
- links:
- - 25846
+ - 25865
type: DeviceLinkSink
- - uid: 12698
+ - uid: 12704
components:
- rot: 1.5707963267948966 rad
pos: -38.5,25.5
parent: 2
type: Transform
- links:
- - 25846
+ - 25865
type: DeviceLinkSink
- - uid: 12699
+ - uid: 12705
components:
- rot: 1.5707963267948966 rad
pos: -48.5,19.5
parent: 2
type: Transform
- links:
- - 25845
+ - 25864
type: DeviceLinkSink
- - uid: 12700
+ - uid: 12706
components:
- rot: 1.5707963267948966 rad
pos: -49.5,19.5
parent: 2
type: Transform
- links:
- - 25845
+ - 25864
type: DeviceLinkSink
- - uid: 12701
+ - uid: 12707
components:
- rot: 1.5707963267948966 rad
pos: -50.5,19.5
parent: 2
type: Transform
- links:
- - 25845
+ - 25864
type: DeviceLinkSink
- - uid: 12702
+ - uid: 12708
components:
- rot: 1.5707963267948966 rad
pos: -51.5,19.5
parent: 2
type: Transform
- links:
- - 25845
+ - 25864
type: DeviceLinkSink
- - uid: 12703
+ - uid: 12709
components:
- rot: 1.5707963267948966 rad
pos: -48.5,23.5
parent: 2
type: Transform
- links:
- - 25844
+ - 25863
type: DeviceLinkSink
- - uid: 12704
+ - uid: 12710
components:
- rot: 1.5707963267948966 rad
pos: -49.5,23.5
parent: 2
type: Transform
- links:
- - 25844
+ - 25863
type: DeviceLinkSink
- - uid: 12705
+ - uid: 12711
components:
- rot: 1.5707963267948966 rad
pos: -50.5,23.5
parent: 2
type: Transform
- links:
- - 25844
+ - 25863
type: DeviceLinkSink
- - uid: 12706
+ - uid: 12712
components:
- rot: 1.5707963267948966 rad
pos: -51.5,23.5
parent: 2
type: Transform
- links:
- - 25844
+ - 25863
type: DeviceLinkSink
- - uid: 12707
+ - uid: 12713
components:
- rot: 1.5707963267948966 rad
pos: -52.5,19.5
parent: 2
type: Transform
- links:
- - 25845
+ - 25864
type: DeviceLinkSink
- - uid: 12708
+ - uid: 12714
components:
- rot: 1.5707963267948966 rad
pos: -53.5,19.5
parent: 2
type: Transform
- links:
- - 25845
+ - 25864
type: DeviceLinkSink
- - uid: 12709
+ - uid: 12715
components:
- rot: 1.5707963267948966 rad
pos: -47.5,19.5
parent: 2
type: Transform
- links:
- - 25845
+ - 25864
type: DeviceLinkSink
- - uid: 12710
+ - uid: 12716
components:
- rot: 1.5707963267948966 rad
pos: -46.5,19.5
parent: 2
type: Transform
- links:
- - 25845
+ - 25864
type: DeviceLinkSink
- - uid: 12711
+ - uid: 12717
components:
- rot: 1.5707963267948966 rad
pos: -47.5,23.5
parent: 2
type: Transform
- links:
- - 25844
+ - 25863
type: DeviceLinkSink
- - uid: 12712
+ - uid: 12718
components:
- rot: 1.5707963267948966 rad
pos: -46.5,23.5
parent: 2
type: Transform
- links:
- - 25844
+ - 25863
type: DeviceLinkSink
- - uid: 12713
+ - uid: 12719
components:
- rot: 1.5707963267948966 rad
pos: -53.5,23.5
parent: 2
type: Transform
- links:
- - 25844
+ - 25863
type: DeviceLinkSink
- - uid: 12714
+ - uid: 12720
components:
- rot: 1.5707963267948966 rad
pos: -52.5,23.5
parent: 2
type: Transform
- links:
- - 25844
+ - 25863
type: DeviceLinkSink
- - uid: 12715
+ - uid: 12721
components:
- rot: 3.141592653589793 rad
pos: -42.5,14.5
parent: 2
type: Transform
- links:
- - 25843
+ - 25862
type: DeviceLinkSink
- - uid: 12716
+ - uid: 12722
components:
- rot: 1.5707963267948966 rad
pos: -51.5,30.5
parent: 2
type: Transform
- links:
- - 25848
+ - 25867
type: DeviceLinkSink
- - uid: 12717
+ - uid: 12723
components:
- rot: 1.5707963267948966 rad
pos: -52.5,30.5
parent: 2
type: Transform
- links:
- - 25848
+ - 25867
type: DeviceLinkSink
- - uid: 12718
+ - uid: 12724
components:
- rot: 1.5707963267948966 rad
pos: -50.5,30.5
parent: 2
type: Transform
- links:
- - 25848
+ - 25867
type: DeviceLinkSink
- - uid: 12719
+ - uid: 12725
components:
- rot: 1.5707963267948966 rad
pos: -49.5,30.5
parent: 2
type: Transform
- links:
- - 25848
+ - 25867
type: DeviceLinkSink
- - uid: 12720
+ - uid: 12726
components:
- rot: 1.5707963267948966 rad
pos: -48.5,30.5
parent: 2
type: Transform
- links:
- - 25848
+ - 25867
type: DeviceLinkSink
- - uid: 12721
+ - uid: 12727
components:
- rot: 1.5707963267948966 rad
pos: -52.5,34.5
parent: 2
type: Transform
- links:
- - 25849
+ - 25868
type: DeviceLinkSink
- - uid: 12722
+ - uid: 12728
components:
- rot: 1.5707963267948966 rad
pos: -51.5,34.5
parent: 2
type: Transform
- links:
- - 25849
+ - 25868
type: DeviceLinkSink
- - uid: 12723
+ - uid: 12729
components:
- rot: 1.5707963267948966 rad
pos: -50.5,34.5
parent: 2
type: Transform
- links:
- - 25849
+ - 25868
type: DeviceLinkSink
- - uid: 12724
+ - uid: 12730
components:
- rot: 1.5707963267948966 rad
pos: -49.5,34.5
parent: 2
type: Transform
- links:
- - 25849
+ - 25868
type: DeviceLinkSink
- - uid: 12725
+ - uid: 12731
components:
- rot: 1.5707963267948966 rad
pos: -48.5,34.5
parent: 2
type: Transform
- links:
- - 25849
+ - 25868
type: DeviceLinkSink
- - uid: 12726
+ - uid: 12732
components:
- rot: 1.5707963267948966 rad
pos: -53.5,34.5
parent: 2
type: Transform
- links:
- - 25849
+ - 25868
type: DeviceLinkSink
- - uid: 12727
+ - uid: 12733
components:
- rot: 1.5707963267948966 rad
pos: -53.5,30.5
parent: 2
type: Transform
- links:
- - 25848
+ - 25867
type: DeviceLinkSink
- - uid: 12728
+ - uid: 12734
components:
- rot: 1.5707963267948966 rad
pos: -47.5,34.5
parent: 2
type: Transform
- links:
- - 25849
+ - 25868
type: DeviceLinkSink
- - uid: 12729
+ - uid: 12735
components:
- rot: 1.5707963267948966 rad
pos: -47.5,30.5
parent: 2
type: Transform
- links:
- - 25848
+ - 25867
type: DeviceLinkSink
- - uid: 12730
+ - uid: 12736
components:
- rot: -1.5707963267948966 rad
pos: -12.5,27.5
parent: 2
type: Transform
- links:
- - 25847
+ - 25866
type: DeviceLinkSink
- - uid: 12731
+ - uid: 12737
components:
- pos: -10.5,28.5
parent: 2
type: Transform
- links:
- - 25847
+ - 25866
type: DeviceLinkSink
- - uid: 12732
+ - uid: 12738
components:
- rot: -1.5707963267948966 rad
pos: -9.5,28.5
parent: 2
type: Transform
- links:
- - 25847
+ - 25866
type: DeviceLinkSink
- - uid: 12733
+ - uid: 12739
components:
- rot: 3.141592653589793 rad
pos: -42.5,15.5
parent: 2
type: Transform
- links:
- - 25843
+ - 25862
type: DeviceLinkSink
- - uid: 12734
+ - uid: 12740
components:
- rot: 3.141592653589793 rad
pos: -42.5,17.5
parent: 2
type: Transform
- links:
- - 25843
+ - 25862
type: DeviceLinkSink
- - uid: 12735
+ - uid: 12741
components:
- rot: 3.141592653589793 rad
pos: -42.5,13.5
parent: 2
type: Transform
- links:
- - 25843
+ - 25862
type: DeviceLinkSink
- - uid: 12736
+ - uid: 12742
components:
- pos: -47.5,13.5
parent: 2
type: Transform
- links:
- - 25850
+ - 25869
type: DeviceLinkSink
- - uid: 12737
+ - uid: 12743
components:
- pos: -47.5,14.5
parent: 2
type: Transform
- links:
- - 25850
+ - 25869
type: DeviceLinkSink
- - uid: 12738
+ - uid: 12744
components:
- pos: -47.5,12.5
parent: 2
type: Transform
- links:
- - 25850
+ - 25869
type: DeviceLinkSink
- - uid: 12739
+ - uid: 12745
components:
- rot: 1.5707963267948966 rad
pos: -8.5,22.5
parent: 2
type: Transform
- links:
- - 25847
+ - 25866
type: DeviceLinkSink
- - uid: 12740
+ - uid: 12746
components:
- rot: 1.5707963267948966 rad
pos: -7.5,22.5
parent: 2
type: Transform
- links:
- - 25847
+ - 25866
type: DeviceLinkSink
- - uid: 12741
+ - uid: 12747
components:
- rot: 1.5707963267948966 rad
pos: -6.5,22.5
parent: 2
type: Transform
- links:
- - 25847
+ - 25866
type: DeviceLinkSink
- - uid: 12742
+ - uid: 12748
components:
- rot: 1.5707963267948966 rad
pos: 43.5,37.5
parent: 2
type: Transform
- links:
- - 25851
+ - 25870
type: DeviceLinkSink
- - uid: 12743
+ - uid: 12749
components:
- rot: 1.5707963267948966 rad
pos: 44.5,37.5
parent: 2
type: Transform
- links:
- - 25851
+ - 25870
type: DeviceLinkSink
- - uid: 12744
+ - uid: 12750
components:
- rot: 1.5707963267948966 rad
pos: 45.5,37.5
parent: 2
type: Transform
- links:
- - 25851
+ - 25870
type: DeviceLinkSink
- - uid: 12745
+ - uid: 12751
components:
- pos: 46.5,37.5
parent: 2
type: Transform
- links:
- - 25851
+ - 25870
type: DeviceLinkSink
- - uid: 12746
+ - uid: 12752
components:
- rot: 1.5707963267948966 rad
pos: 46.5,36.5
parent: 2
type: Transform
- links:
- - 25851
+ - 25870
type: DeviceLinkSink
- - uid: 12747
+ - uid: 12753
components:
- rot: 1.5707963267948966 rad
pos: 47.5,36.5
parent: 2
type: Transform
- links:
- - 25851
+ - 25870
type: DeviceLinkSink
- - uid: 12748
+ - uid: 12754
components:
- rot: 3.141592653589793 rad
pos: 48.5,36.5
parent: 2
type: Transform
- links:
- - 25851
+ - 25870
type: DeviceLinkSink
- - uid: 12749
+ - uid: 12755
components:
- rot: 3.141592653589793 rad
pos: 48.5,37.5
parent: 2
type: Transform
- links:
- - 25851
+ - 25870
type: DeviceLinkSink
- - uid: 12750
+ - uid: 12756
components:
- rot: 1.5707963267948966 rad
pos: -9.5,22.5
parent: 2
type: Transform
- links:
- - 25847
+ - 25866
type: DeviceLinkSink
- - uid: 12751
+ - uid: 12757
components:
- pos: -9.5,27.5
parent: 2
type: Transform
- links:
- - 25847
+ - 25866
type: DeviceLinkSink
- - uid: 12752
+ - uid: 12758
components:
- pos: -9.5,26.5
parent: 2
type: Transform
- links:
- - 25847
+ - 25866
type: DeviceLinkSink
- - uid: 12753
+ - uid: 12759
components:
- pos: -9.5,25.5
parent: 2
type: Transform
- links:
- - 25847
+ - 25866
type: DeviceLinkSink
- - uid: 12754
+ - uid: 12760
components:
- pos: -9.5,24.5
parent: 2
type: Transform
- links:
- - 25847
+ - 25866
type: DeviceLinkSink
- - uid: 12755
+ - uid: 12761
components:
- pos: -9.5,23.5
parent: 2
type: Transform
- links:
- - 25847
+ - 25866
type: DeviceLinkSink
- type: ActiveConveyor
- - uid: 12756
+ - uid: 12762
components:
- rot: 3.141592653589793 rad
pos: -10.5,22.5
parent: 2
type: Transform
- links:
- - 25847
+ - 25866
type: DeviceLinkSink
- - uid: 12757
+ - uid: 12763
components:
- rot: 1.5707963267948966 rad
pos: -10.5,23.5
parent: 2
type: Transform
- links:
- - 25847
+ - 25866
type: DeviceLinkSink
- - uid: 12758
+ - uid: 12764
components:
- rot: -1.5707963267948966 rad
pos: -10.5,27.5
parent: 2
type: Transform
- links:
- - 25847
+ - 25866
type: DeviceLinkSink
- - uid: 12759
+ - uid: 12765
components:
- rot: -1.5707963267948966 rad
pos: -11.5,27.5
parent: 2
type: Transform
- links:
- - 25847
+ - 25866
type: DeviceLinkSink
- - uid: 12760
+ - uid: 12766
components:
- rot: 3.141592653589793 rad
pos: 48.5,38.5
parent: 2
type: Transform
- links:
- - 25851
+ - 25870
type: DeviceLinkSink
- - uid: 12761
+ - uid: 12767
components:
- rot: 3.141592653589793 rad
pos: -37.5,-99.5
parent: 2
type: Transform
- links:
- - 25852
- - 25853
+ - 25871
+ - 25872
type: DeviceLinkSink
- - uid: 12762
+ - uid: 12768
components:
- rot: 3.141592653589793 rad
pos: -37.5,-98.5
parent: 2
type: Transform
- links:
- - 25852
- - 25853
+ - 25871
+ - 25872
type: DeviceLinkSink
- - uid: 12763
+ - uid: 12769
components:
- rot: 3.141592653589793 rad
pos: -37.5,-100.5
parent: 2
type: Transform
- links:
- - 25852
- - 25853
+ - 25871
+ - 25872
type: DeviceLinkSink
- - uid: 12764
+ - uid: 12770
components:
- rot: 3.141592653589793 rad
pos: -37.5,-101.5
parent: 2
type: Transform
- links:
- - 25852
- - 25853
+ - 25871
+ - 25872
type: DeviceLinkSink
- - uid: 12765
+ - uid: 12771
components:
- rot: 3.141592653589793 rad
pos: -37.5,-102.5
parent: 2
type: Transform
- links:
- - 25852
- - 25853
+ - 25871
+ - 25872
type: DeviceLinkSink
- - uid: 12766
+ - uid: 12772
components:
- rot: 3.141592653589793 rad
pos: -37.5,-103.5
parent: 2
type: Transform
- links:
- - 25852
- - 25853
+ - 25871
+ - 25872
type: DeviceLinkSink
- - uid: 12767
+ - uid: 12773
components:
- rot: 3.141592653589793 rad
pos: -37.5,-104.5
parent: 2
type: Transform
- links:
- - 25852
- - 25853
+ - 25871
+ - 25872
type: DeviceLinkSink
- - uid: 12768
+ - uid: 12774
components:
- rot: -1.5707963267948966 rad
pos: -37.5,-105.5
parent: 2
type: Transform
- links:
- - 25852
- - 25853
+ - 25871
+ - 25872
type: DeviceLinkSink
- - uid: 12769
+ - uid: 12775
components:
- rot: -1.5707963267948966 rad
pos: -36.5,-105.5
parent: 2
type: Transform
- links:
- - 25852
- - 25853
+ - 25871
+ - 25872
type: DeviceLinkSink
- - uid: 12770
+ - uid: 12776
components:
- rot: 3.141592653589793 rad
pos: -38.5,-105.5
parent: 2
type: Transform
- links:
- - 25852
- - 25853
+ - 25871
+ - 25872
type: DeviceLinkSink
- - uid: 12771
+ - uid: 12777
components:
- rot: 1.5707963267948966 rad
pos: -38.5,-104.5
parent: 2
type: Transform
- links:
- - 25852
- - 25853
+ - 25871
+ - 25872
type: DeviceLinkSink
- - uid: 12772
+ - uid: 12778
components:
- rot: 3.141592653589793 rad
pos: -11.5,-11.5
parent: 2
type: Transform
- links:
- - 25854
+ - 25873
type: DeviceLinkSink
- - uid: 12773
+ - uid: 12779
components:
- rot: 3.141592653589793 rad
pos: -11.5,-12.5
parent: 2
type: Transform
- links:
- - 25854
+ - 25873
type: DeviceLinkSink
- - uid: 12774
+ - uid: 12780
components:
- rot: 3.141592653589793 rad
pos: -42.5,16.5
parent: 2
type: Transform
- links:
- - 25843
+ - 25862
type: DeviceLinkSink
- - uid: 12775
+ - uid: 12781
components:
- pos: -16.5,10.5
parent: 2
type: Transform
- invokeCounter: 2
links:
- - 25855
+ - 25874
type: DeviceLinkSink
- - uid: 12776
+ - uid: 12782
components:
- pos: -16.5,9.5
parent: 2
type: Transform
- invokeCounter: 2
links:
- - 25855
+ - 25874
type: DeviceLinkSink
- - uid: 12777
+ - uid: 12783
components:
- pos: -16.5,8.5
parent: 2
type: Transform
- invokeCounter: 2
links:
- - 25855
+ - 25874
type: DeviceLinkSink
- proto: ConveyorBeltAssembly
entities:
- - uid: 12778
+ - uid: 12784
components:
- pos: -27.603226,-31.351301
parent: 2
type: Transform
- proto: CounterWoodFrame
entities:
- - uid: 12779
+ - uid: 12785
components:
- pos: -47.5,-64.5
parent: 2
type: Transform
- proto: CrateAirlockKit
entities:
- - uid: 12780
+ - uid: 12786
components:
- pos: 44.5,-7.5
parent: 2
type: Transform
- proto: CrateArtifactContainer
entities:
- - uid: 12781
+ - uid: 12787
components:
- pos: 73.5,-36.5
parent: 2
@@ -80462,12 +80504,12 @@ entities:
type: EntityStorage
- proto: CrateCoffin
entities:
- - uid: 12782
+ - uid: 12788
components:
- pos: -31.5,10.5
parent: 2
type: Transform
- - uid: 12783
+ - uid: 12789
components:
- pos: -32.5,10.5
parent: 2
@@ -80490,7 +80532,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12784
+ - uid: 12790
components:
- pos: -31.5,8.5
parent: 2
@@ -80513,14 +80555,14 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12785
+ - uid: 12791
components:
- pos: -55.5,-67.5
parent: 2
type: Transform
- proto: CrateEmergencyFire
entities:
- - uid: 12786
+ - uid: 12792
components:
- pos: -39.5,-15.5
parent: 2
@@ -80543,7 +80585,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12787
+ - uid: 12793
components:
- pos: -38.5,23.5
parent: 2
@@ -80592,44 +80634,44 @@ entities:
type: PlaceableSurface
- proto: CrateEmptySpawner
entities:
- - uid: 12788
+ - uid: 12794
components:
- pos: -43.5,23.5
parent: 2
type: Transform
- - uid: 12789
+ - uid: 12795
components:
- pos: -44.5,22.5
parent: 2
type: Transform
- - uid: 12790
+ - uid: 12796
components:
- pos: -40.5,20.5
parent: 2
type: Transform
- - uid: 12791
+ - uid: 12797
components:
- pos: -38.5,19.5
parent: 2
type: Transform
- - uid: 12792
+ - uid: 12798
components:
- pos: 6.5,49.5
parent: 2
type: Transform
- - uid: 12793
+ - uid: 12799
components:
- pos: -35.5,-96.5
parent: 2
type: Transform
- - uid: 12794
+ - uid: 12800
components:
- pos: -36.5,-96.5
parent: 2
type: Transform
- proto: CrateEngineeringAMEJar
entities:
- - uid: 12795
+ - uid: 12801
components:
- pos: -50.5,-13.5
parent: 2
@@ -80654,7 +80696,7 @@ entities:
type: EntityStorage
- proto: CrateEngineeringAMEShielding
entities:
- - uid: 12796
+ - uid: 12802
components:
- pos: -50.5,-14.5
parent: 2
@@ -80677,7 +80719,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12797
+ - uid: 12803
components:
- pos: -50.5,-12.5
parent: 2
@@ -80702,7 +80744,7 @@ entities:
type: EntityStorage
- proto: CrateEngineeringCableLV
entities:
- - uid: 12798
+ - uid: 12804
components:
- pos: -42.5,-15.5
parent: 2
@@ -80727,7 +80769,7 @@ entities:
type: EntityStorage
- proto: CrateEngineeringElectricalSupplies
entities:
- - uid: 12799
+ - uid: 12805
components:
- pos: 22.5,-49.5
parent: 2
@@ -80752,24 +80794,24 @@ entities:
type: EntityStorage
- proto: CrateFilledSpawner
entities:
- - uid: 12800
+ - uid: 12806
components:
- pos: -31.5,-48.5
parent: 2
type: Transform
- - uid: 12801
+ - uid: 12807
components:
- pos: 72.5,-56.5
parent: 2
type: Transform
- - uid: 12802
+ - uid: 12808
components:
- pos: 71.5,-62.5
parent: 2
type: Transform
- proto: CrateFoodCooking
entities:
- - uid: 12803
+ - uid: 12809
components:
- pos: -47.5,-80.5
parent: 2
@@ -80794,7 +80836,7 @@ entities:
type: EntityStorage
- proto: CrateFunBoardGames
entities:
- - uid: 12804
+ - uid: 12810
components:
- pos: 63.5,6.5
parent: 2
@@ -80819,14 +80861,14 @@ entities:
type: EntityStorage
- proto: CrateFunToyBox
entities:
- - uid: 12805
+ - uid: 12811
components:
- pos: 1.5,-19.5
parent: 2
type: Transform
- proto: CrateHydroponicsSeeds
entities:
- - uid: 12806
+ - uid: 12812
components:
- pos: 12.5,-52.5
parent: 2
@@ -80851,7 +80893,7 @@ entities:
type: EntityStorage
- proto: CrateHydroponicsSeedsExotic
entities:
- - uid: 12807
+ - uid: 12813
components:
- pos: -47.5,-70.5
parent: 2
@@ -80876,21 +80918,21 @@ entities:
type: EntityStorage
- proto: CrateMaterialGlass
entities:
- - uid: 12808
+ - uid: 12814
components:
- pos: 43.5,-7.5
parent: 2
type: Transform
- proto: CrateMindShieldImplants
entities:
- - uid: 12809
+ - uid: 12815
components:
- pos: 29.5,29.5
parent: 2
type: Transform
- proto: CrateMousetrapBoxes
entities:
- - uid: 12810
+ - uid: 12816
components:
- pos: 60.5,42.5
parent: 2
@@ -80915,7 +80957,7 @@ entities:
type: EntityStorage
- proto: CratePirate
entities:
- - uid: 12811
+ - uid: 12817
components:
- pos: 3.5,-11.5
parent: 2
@@ -80940,7 +80982,7 @@ entities:
type: EntityStorage
- proto: CrateScience
entities:
- - uid: 12812
+ - uid: 12818
components:
- pos: 73.5,-34.5
parent: 2
@@ -80965,14 +81007,14 @@ entities:
type: EntityStorage
- proto: CrateSecurityNonlethal
entities:
- - uid: 12813
+ - uid: 12819
components:
- pos: 29.5,28.5
parent: 2
type: Transform
- proto: CrateServiceJanitorialSupplies
entities:
- - uid: 12814
+ - uid: 12820
components:
- pos: -9.5,-21.5
parent: 2
@@ -80997,7 +81039,7 @@ entities:
type: EntityStorage
- proto: CrateServiceSmokeables
entities:
- - uid: 12815
+ - uid: 12821
components:
- pos: 56.5,59.5
parent: 2
@@ -81022,7 +81064,7 @@ entities:
type: EntityStorage
- proto: CrateStoneGrave
entities:
- - uid: 12816
+ - uid: 12822
components:
- pos: -32.5,4.5
parent: 2
@@ -81047,63 +81089,63 @@ entities:
type: EntityStorage
- proto: CrateTrashCart
entities:
- - uid: 12817
+ - uid: 12823
components:
- pos: 19.5,-49.5
parent: 2
type: Transform
- - uid: 12818
+ - uid: 12824
components:
- pos: -38.5,-93.5
parent: 2
type: Transform
- - uid: 12819
+ - uid: 12825
components:
- pos: -10.5,14.5
parent: 2
type: Transform
- - uid: 12820
+ - uid: 12826
components:
- pos: -52.5,-34.5
parent: 2
type: Transform
- proto: CrateTrashCartFilled
entities:
- - uid: 12821
+ - uid: 12827
components:
- pos: 1.5,-12.5
parent: 2
type: Transform
- - uid: 12822
+ - uid: 12828
components:
- pos: 18.5,-49.5
parent: 2
type: Transform
- - uid: 12823
+ - uid: 12829
components:
- pos: 5.5,-17.5
parent: 2
type: Transform
- - uid: 12824
+ - uid: 12830
components:
- pos: -40.5,-3.5
parent: 2
type: Transform
- proto: CrateTrashCartJani
entities:
- - uid: 12825
+ - uid: 12831
components:
- pos: -15.5,-8.5
parent: 2
type: Transform
- proto: CrateWoodenGrave
entities:
- - uid: 12826
+ - uid: 12832
components:
- pos: -10.5,55.5
parent: 2
type: Transform
- - uid: 12827
+ - uid: 12833
components:
- pos: -30.5,4.5
parent: 2
@@ -81126,39 +81168,39 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12828
+ - uid: 12834
components:
- pos: -32.5,6.5
parent: 2
type: Transform
- proto: CrayonBox
entities:
- - uid: 12829
+ - uid: 12835
components:
- pos: -29.428709,8.545935
parent: 2
type: Transform
- - uid: 12830
+ - uid: 12836
components:
- rot: 3.141592653589793 rad
pos: 54.561592,-64.4996
parent: 2
type: Transform
- - uid: 12831
+ - uid: 12837
components:
- pos: 0.5708022,-23.573645
parent: 2
type: Transform
- proto: CrayonMime
entities:
- - uid: 12832
+ - uid: 12838
components:
- pos: -28.463287,46.56972
parent: 2
type: Transform
- proto: Crematorium
entities:
- - uid: 12833
+ - uid: 12839
components:
- pos: -33.5,11.5
parent: 2
@@ -81183,142 +81225,130 @@ entities:
type: EntityStorage
- proto: CrewMonitoringComputerCircuitboard
entities:
- - uid: 12834
+ - uid: 12840
components:
- pos: 53.35249,35.65033
parent: 2
type: Transform
- - uid: 12835
- components:
- - pos: -12.410412,37.664482
- parent: 2
- type: Transform
- proto: CrewMonitoringServer
entities:
- - uid: 12836
+ - uid: 12841
components:
- pos: 8.5,-58.5
parent: 2
type: Transform
-- proto: CrewMonitoringServerMachineCircuitboard
- entities:
- - uid: 12837
- components:
- - pos: -12.176037,37.430107
- parent: 2
- type: Transform
- proto: Crowbar
entities:
- - uid: 12838
+ - uid: 12842
components:
- pos: 73.47424,-38.51016
parent: 2
type: Transform
- - uid: 12839
+ - uid: 12843
components:
- pos: -29.495306,-23.60064
parent: 2
type: Transform
- - uid: 12840
+ - uid: 12844
components:
- pos: 40.56214,-53.476734
parent: 2
type: Transform
- - uid: 12841
+ - uid: 12845
components:
- pos: -56.61051,-70.40599
parent: 2
type: Transform
- - uid: 12842
+ - uid: 12846
components:
- pos: -23.432364,-28.473803
parent: 2
type: Transform
- - uid: 12843
+ - uid: 12847
components:
- pos: -36.564224,18.558977
parent: 2
type: Transform
- - uid: 12844
+ - uid: 12848
components:
- rot: 6.283185307179586 rad
pos: 57.539654,47.47334
parent: 2
type: Transform
- - uid: 12845
+ - uid: 12849
components:
- pos: -9.421157,-15.518739
parent: 2
type: Transform
- - uid: 12846
+ - uid: 12850
components:
- pos: 62.5,6.5
parent: 2
type: Transform
- proto: CrowbarRed
entities:
- - uid: 12847
+ - uid: 12851
components:
- pos: 52.637024,11.413784
parent: 2
type: Transform
- - uid: 12848
+ - uid: 12852
components:
- pos: -16.370653,65.49348
parent: 2
type: Transform
- - uid: 12849
+ - uid: 12853
components:
- pos: 2.5771694,-21.302826
parent: 2
type: Transform
- proto: CryoPod
entities:
- - uid: 12850
+ - uid: 12854
components:
- pos: -24.5,-59.5
parent: 2
type: Transform
- proto: CryoxadoneBeakerSmall
entities:
- - uid: 12851
+ - uid: 12855
components:
- pos: -26.756777,-59.261105
parent: 2
type: Transform
- proto: CultAltarSpawner
entities:
- - uid: 12852
+ - uid: 12856
components:
- pos: -56.5,-62.5
parent: 2
type: Transform
- proto: d10Dice
entities:
- - uid: 12853
+ - uid: 12857
components:
- pos: 9.458234,-7.2284737
parent: 2
type: Transform
- - uid: 12854
+ - uid: 12858
components:
- pos: -29.44911,-46.43667
parent: 2
type: Transform
- proto: d6Dice
entities:
- - uid: 12855
+ - uid: 12859
components:
- pos: -1.2845753,31.100819
parent: 2
type: Transform
- - uid: 12856
+ - uid: 12860
components:
- rot: 1.5707963267948966 rad
pos: 54.383816,29.301033
parent: 2
type: Transform
- - uid: 12857
+ - uid: 12861
components:
- rot: 1.5707963267948966 rad
pos: 54.165066,28.926033
@@ -81326,14 +81356,14 @@ entities:
type: Transform
- proto: d8Dice
entities:
- - uid: 12858
+ - uid: 12862
components:
- pos: 10.036359,-7.0722237
parent: 2
type: Transform
- proto: DefibrillatorCabinet
entities:
- - uid: 12859
+ - uid: 12863
components:
- rot: 1.5707963267948966 rad
pos: 19.5,21.5
@@ -81341,95 +81371,95 @@ entities:
type: Transform
- proto: DefibrillatorCabinetFilled
entities:
- - uid: 12860
+ - uid: 12864
components:
- rot: 1.5707963267948966 rad
pos: -26.5,-72.5
parent: 2
type: Transform
- - uid: 12861
+ - uid: 12865
components:
- pos: 44.5,16.5
parent: 2
type: Transform
- - uid: 12862
+ - uid: 12866
components:
- pos: -1.5,-58.5
parent: 2
type: Transform
- - uid: 12863
+ - uid: 12867
components:
- pos: -4.5,-58.5
parent: 2
type: Transform
- - uid: 12864
+ - uid: 12868
components:
- pos: -7.5,-58.5
parent: 2
type: Transform
- - uid: 12865
+ - uid: 12869
components:
- rot: -1.5707963267948966 rad
pos: -30.5,-38.5
parent: 2
type: Transform
- - uid: 12866
+ - uid: 12870
components:
- pos: -32.5,-8.5
parent: 2
type: Transform
- - uid: 12867
+ - uid: 12871
components:
- pos: -28.5,20.5
parent: 2
type: Transform
- - uid: 12868
+ - uid: 12872
components:
- pos: -9.5,47.5
parent: 2
type: Transform
- - uid: 12869
+ - uid: 12873
components:
- rot: -1.5707963267948966 rad
pos: 33.5,18.5
parent: 2
type: Transform
- - uid: 12870
+ - uid: 12874
components:
- pos: -5.5,-51.5
parent: 2
type: Transform
- - uid: 12871
+ - uid: 12875
components:
- pos: 29.5,-3.5
parent: 2
type: Transform
- - uid: 12872
+ - uid: 12876
components:
- pos: 33.5,-70.5
parent: 2
type: Transform
- - uid: 12873
+ - uid: 12877
components:
- pos: 56.5,-43.5
parent: 2
type: Transform
- - uid: 12874
+ - uid: 12878
components:
- pos: 6.5,-24.5
parent: 2
type: Transform
- - uid: 12875
+ - uid: 12879
components:
- pos: 32.5,-23.5
parent: 2
type: Transform
- - uid: 12876
+ - uid: 12880
components:
- pos: -48.5,45.5
parent: 2
type: Transform
- - uid: 12877
+ - uid: 12881
components:
- rot: -1.5707963267948966 rad
pos: 66.5,-10.5
@@ -81437,73 +81467,73 @@ entities:
type: Transform
- proto: DeployableBarrier
entities:
- - uid: 12878
+ - uid: 12882
components:
- pos: 29.5,25.5
parent: 2
type: Transform
- - uid: 12879
+ - uid: 12883
components:
- pos: -16.5,27.5
parent: 2
type: Transform
- - uid: 12880
+ - uid: 12884
components:
- pos: 62.5,7.5
parent: 2
type: Transform
- proto: DeskBell
entities:
- - uid: 12881
+ - uid: 12885
components:
- pos: 26.493649,19.578499
parent: 2
type: Transform
missingComponents:
- Item
- - uid: 12882
+ - uid: 12886
components:
- pos: -26.393543,22.737104
parent: 2
type: Transform
missingComponents:
- Item
- - uid: 12883
+ - uid: 12887
components:
- pos: 2.482698,4.566377
parent: 2
type: Transform
missingComponents:
- Item
- - uid: 12884
+ - uid: 12888
components:
- pos: 7.4455647,7.463886
parent: 2
type: Transform
missingComponents:
- Item
- - uid: 12885
+ - uid: 12889
components:
- pos: 15.491525,13.615058
parent: 2
type: Transform
missingComponents:
- Item
- - uid: 12886
+ - uid: 12890
components:
- pos: -2.9507003,-48.39704
parent: 2
type: Transform
missingComponents:
- Item
- - uid: 12887
+ - uid: 12891
components:
- pos: 42.281975,-40.51448
parent: 2
type: Transform
missingComponents:
- Item
- - uid: 12888
+ - uid: 12892
components:
- pos: 51.51352,-39.9676
parent: 2
@@ -81512,848 +81542,848 @@ entities:
- Item
- proto: DiceBag
entities:
- - uid: 12889
+ - uid: 12893
components:
- pos: 10.645734,-7.4315987
parent: 2
type: Transform
- - uid: 12890
+ - uid: 12894
components:
- pos: 23.269382,-29.34838
parent: 2
type: Transform
- - uid: 12891
+ - uid: 12895
components:
- pos: -0.45645034,30.694569
parent: 2
type: Transform
- - uid: 12892
+ - uid: 12896
components:
- pos: -16.724815,61.696495
parent: 2
type: Transform
- - uid: 12893
+ - uid: 12897
components:
- pos: -18.55294,62.55587
parent: 2
type: Transform
- proto: DiseaseDiagnoser
entities:
- - uid: 12894
+ - uid: 12898
components:
- pos: -22.5,-75.5
parent: 2
type: Transform
- proto: DisposalBend
entities:
- - uid: 12895
+ - uid: 12899
components:
- rot: 1.5707963267948966 rad
pos: -0.5,1.5
parent: 2
type: Transform
- - uid: 12896
+ - uid: 12900
components:
- pos: 21.5,-29.5
parent: 2
type: Transform
- - uid: 12897
+ - uid: 12901
components:
- rot: 1.5707963267948966 rad
pos: -19.5,-60.5
parent: 2
type: Transform
- - uid: 12898
+ - uid: 12902
components:
- pos: 34.5,8.5
parent: 2
type: Transform
- - uid: 12899
+ - uid: 12903
components:
- rot: 1.5707963267948966 rad
pos: -14.5,-9.5
parent: 2
type: Transform
- - uid: 12900
+ - uid: 12904
components:
- rot: 1.5707963267948966 rad
pos: 16.5,-18.5
parent: 2
type: Transform
- - uid: 12901
+ - uid: 12905
components:
- pos: 0.5,0.5
parent: 2
type: Transform
- - uid: 12902
+ - uid: 12906
components:
- rot: 1.5707963267948966 rad
pos: 0.5,2.5
parent: 2
type: Transform
- - uid: 12903
+ - uid: 12907
components:
- rot: 3.141592653589793 rad
pos: 8.5,13.5
parent: 2
type: Transform
- - uid: 12904
+ - uid: 12908
components:
- rot: 1.5707963267948966 rad
pos: 17.5,7.5
parent: 2
type: Transform
- - uid: 12905
+ - uid: 12909
components:
- rot: -1.5707963267948966 rad
pos: 22.5,7.5
parent: 2
type: Transform
- - uid: 12906
+ - uid: 12910
components:
- rot: 1.5707963267948966 rad
pos: 22.5,8.5
parent: 2
type: Transform
- - uid: 12907
+ - uid: 12911
components:
- rot: -1.5707963267948966 rad
pos: 20.5,-25.5
parent: 2
type: Transform
- - uid: 12908
+ - uid: 12912
components:
- pos: 36.5,-17.5
parent: 2
type: Transform
- - uid: 12909
+ - uid: 12913
components:
- pos: 1.5,-53.5
parent: 2
type: Transform
- - uid: 12910
+ - uid: 12914
components:
- rot: -1.5707963267948966 rad
pos: 34.5,-6.5
parent: 2
type: Transform
- - uid: 12911
+ - uid: 12915
components:
- pos: 18.5,-49.5
parent: 2
type: Transform
- - uid: 12912
- components:
- - rot: 3.141592653589793 rad
- pos: 15.5,-45.5
- parent: 2
- type: Transform
- - uid: 12913
+ - uid: 12916
components:
- rot: 3.141592653589793 rad
pos: -4.5,-12.5
parent: 2
type: Transform
- - uid: 12914
+ - uid: 12917
components:
- rot: 1.5707963267948966 rad
pos: -15.5,-53.5
parent: 2
type: Transform
- - uid: 12915
+ - uid: 12918
components:
- rot: -1.5707963267948966 rad
pos: -15.5,-54.5
parent: 2
type: Transform
- - uid: 12916
+ - uid: 12919
components:
- rot: 1.5707963267948966 rad
pos: -17.5,-54.5
parent: 2
type: Transform
- - uid: 12917
+ - uid: 12920
components:
- pos: 18.5,1.5
parent: 2
type: Transform
- - uid: 12918
+ - uid: 12921
components:
- rot: 3.141592653589793 rad
pos: 10.5,-3.5
parent: 2
type: Transform
- - uid: 12919
+ - uid: 12922
components:
- rot: -1.5707963267948966 rad
pos: 0.5,1.5
parent: 2
type: Transform
- - uid: 12920
+ - uid: 12923
components:
- rot: 3.141592653589793 rad
pos: 0.5,-0.5
parent: 2
type: Transform
- - uid: 12921
+ - uid: 12924
components:
- pos: 12.5,13.5
parent: 2
type: Transform
- - uid: 12922
+ - uid: 12925
components:
- rot: 3.141592653589793 rad
pos: 22.5,-11.5
parent: 2
type: Transform
- - uid: 12923
+ - uid: 12926
components:
- rot: 3.141592653589793 rad
pos: 18.5,-6.5
parent: 2
type: Transform
- - uid: 12924
+ - uid: 12927
components:
- rot: 3.141592653589793 rad
pos: -23.5,-84.5
parent: 2
type: Transform
- - uid: 12925
+ - uid: 12928
components:
- rot: -1.5707963267948966 rad
pos: 17.5,0.5
parent: 2
type: Transform
- - uid: 12926
- components:
- - pos: 17.5,-45.5
- parent: 2
- type: Transform
- - uid: 12927
+ - uid: 12929
components:
- rot: -1.5707963267948966 rad
pos: 24.5,-18.5
parent: 2
type: Transform
- - uid: 12928
+ - uid: 12930
components:
- rot: -1.5707963267948966 rad
pos: -17.5,-60.5
parent: 2
type: Transform
- - uid: 12929
+ - uid: 12931
components:
- rot: -1.5707963267948966 rad
pos: 13.5,-0.5
parent: 2
type: Transform
- - uid: 12930
+ - uid: 12932
components:
- rot: 1.5707963267948966 rad
pos: -23.5,-73.5
parent: 2
type: Transform
- - uid: 12931
+ - uid: 12933
components:
- pos: 15.5,19.5
parent: 2
type: Transform
- - uid: 12932
+ - uid: 12934
components:
- pos: -3.5,-12.5
parent: 2
type: Transform
- - uid: 12933
+ - uid: 12935
components:
- pos: 15.5,-25.5
parent: 2
type: Transform
- - uid: 12934
+ - uid: 12936
components:
- rot: 3.141592653589793 rad
pos: 17.5,-49.5
parent: 2
type: Transform
- - uid: 12935
+ - uid: 12937
components:
- rot: -1.5707963267948966 rad
pos: 34.5,16.5
parent: 2
type: Transform
- - uid: 12936
+ - uid: 12938
components:
- pos: 29.5,17.5
parent: 2
type: Transform
- - uid: 12937
+ - uid: 12939
components:
- rot: 3.141592653589793 rad
pos: 29.5,16.5
parent: 2
type: Transform
- - uid: 12938
+ - uid: 12940
components:
- pos: 41.5,6.5
parent: 2
type: Transform
- - uid: 12939
+ - uid: 12941
components:
- rot: 3.141592653589793 rad
pos: 52.5,-13.5
parent: 2
type: Transform
- - uid: 12940
+ - uid: 12942
components:
- pos: 54.5,-13.5
parent: 2
type: Transform
- - uid: 12941
+ - uid: 12943
components:
- pos: 49.5,-43.5
parent: 2
type: Transform
- - uid: 12942
+ - uid: 12944
components:
- rot: -1.5707963267948966 rad
pos: 49.5,-50.5
parent: 2
type: Transform
- - uid: 12943
+ - uid: 12945
components:
- pos: 67.5,-45.5
parent: 2
type: Transform
- - uid: 12944
+ - uid: 12946
components:
- pos: 49.5,-55.5
parent: 2
type: Transform
- - uid: 12945
+ - uid: 12947
components:
- rot: -1.5707963267948966 rad
pos: -6.5,-66.5
parent: 2
type: Transform
- - uid: 12946
+ - uid: 12948
components:
- rot: 3.141592653589793 rad
pos: -23.5,-15.5
parent: 2
type: Transform
- - uid: 12947
+ - uid: 12949
components:
- rot: 3.141592653589793 rad
pos: 25.5,-60.5
parent: 2
type: Transform
- - uid: 12948
+ - uid: 12950
components:
- pos: 39.5,-60.5
parent: 2
type: Transform
- - uid: 12949
+ - uid: 12951
components:
- rot: 3.141592653589793 rad
pos: -19.5,-43.5
parent: 2
type: Transform
- - uid: 12950
+ - uid: 12952
components:
- rot: -1.5707963267948966 rad
pos: 39.5,-73.5
parent: 2
type: Transform
- - uid: 12951
+ - uid: 12953
components:
- rot: -1.5707963267948966 rad
pos: -13.5,-6.5
parent: 2
type: Transform
- - uid: 12952
+ - uid: 12954
components:
- pos: -13.5,8.5
parent: 2
type: Transform
- - uid: 12953
+ - uid: 12955
components:
- rot: -1.5707963267948966 rad
pos: -19.5,6.5
parent: 2
type: Transform
- - uid: 12954
+ - uid: 12956
components:
- rot: 3.141592653589793 rad
pos: -25.5,-6.5
parent: 2
type: Transform
- - uid: 12955
+ - uid: 12957
components:
- rot: 3.141592653589793 rad
pos: -32.5,-13.5
parent: 2
type: Transform
- - uid: 12956
+ - uid: 12958
components:
- pos: -32.5,-10.5
parent: 2
type: Transform
- - uid: 12957
+ - uid: 12959
components:
- rot: 3.141592653589793 rad
pos: -36.5,-10.5
parent: 2
type: Transform
- - uid: 12958
+ - uid: 12960
components:
- pos: -36.5,-5.5
parent: 2
type: Transform
- - uid: 12959
+ - uid: 12961
components:
- rot: 3.141592653589793 rad
pos: -38.5,-5.5
parent: 2
type: Transform
- - uid: 12960
+ - uid: 12962
components:
- rot: 1.5707963267948966 rad
pos: -19.5,-75.5
parent: 2
type: Transform
- - uid: 12961
+ - uid: 12963
components:
- rot: -1.5707963267948966 rad
pos: -19.5,-77.5
parent: 2
type: Transform
- - uid: 12962
+ - uid: 12964
components:
- rot: 1.5707963267948966 rad
pos: -36.5,-77.5
parent: 2
type: Transform
- - uid: 12963
+ - uid: 12965
components:
- rot: 3.141592653589793 rad
pos: -42.5,23.5
parent: 2
type: Transform
- - uid: 12964
+ - uid: 12966
components:
- rot: 1.5707963267948966 rad
pos: -42.5,19.5
parent: 2
type: Transform
- - uid: 12965
+ - uid: 12967
components:
- rot: 1.5707963267948966 rad
pos: -45.5,5.5
parent: 2
type: Transform
- - uid: 12966
+ - uid: 12968
components:
- rot: 3.141592653589793 rad
pos: -45.5,-0.5
parent: 2
type: Transform
- - uid: 12967
+ - uid: 12969
components:
- pos: 2.5,-61.5
parent: 2
type: Transform
- - uid: 12968
+ - uid: 12970
components:
- rot: 1.5707963267948966 rad
pos: -13.5,-61.5
parent: 2
type: Transform
- - uid: 12969
+ - uid: 12971
components:
- rot: -1.5707963267948966 rad
pos: -13.5,-67.5
parent: 2
type: Transform
- - uid: 12970
+ - uid: 12972
components:
- rot: -1.5707963267948966 rad
pos: -12.5,5.5
parent: 2
type: Transform
- - uid: 12971
+ - uid: 12973
components:
- rot: -1.5707963267948966 rad
pos: -45.5,11.5
parent: 2
type: Transform
- - uid: 12972
+ - uid: 12974
components:
- rot: 1.5707963267948966 rad
pos: -45.5,18.5
parent: 2
type: Transform
- - uid: 12973
+ - uid: 12975
components:
- rot: -1.5707963267948966 rad
pos: 20.5,-40.5
parent: 2
type: Transform
- - uid: 12974
+ - uid: 12976
components:
- rot: 1.5707963267948966 rad
pos: 19.5,-40.5
parent: 2
type: Transform
- - uid: 12975
+ - uid: 12977
components:
- rot: 1.5707963267948966 rad
pos: -19.5,29.5
parent: 2
type: Transform
- - uid: 12976
+ - uid: 12978
components:
- rot: -1.5707963267948966 rad
pos: -15.5,29.5
parent: 2
type: Transform
- - uid: 12977
+ - uid: 12979
components:
- rot: 3.141592653589793 rad
pos: -17.5,44.5
parent: 2
type: Transform
- - uid: 12978
+ - uid: 12980
components:
- pos: -4.5,44.5
parent: 2
type: Transform
- - uid: 12979
+ - uid: 12981
components:
- pos: -13.5,50.5
parent: 2
type: Transform
- - uid: 12980
+ - uid: 12982
components:
- rot: 1.5707963267948966 rad
pos: -17.5,50.5
parent: 2
type: Transform
- - uid: 12981
+ - uid: 12983
components:
- rot: -1.5707963267948966 rad
pos: 75.5,-47.5
parent: 2
type: Transform
- - uid: 12982
+ - uid: 12984
components:
- pos: -5.5,-13.5
parent: 2
type: Transform
- - uid: 12983
+ - uid: 12985
components:
- rot: 3.141592653589793 rad
pos: -10.5,-13.5
parent: 2
type: Transform
- - uid: 12984
+ - uid: 12986
components:
- rot: 3.141592653589793 rad
pos: -18.5,-14.5
parent: 2
type: Transform
- - uid: 12985
+ - uid: 12987
components:
- rot: -1.5707963267948966 rad
pos: -12.5,-14.5
parent: 2
type: Transform
- - uid: 12986
+ - uid: 12988
components:
- pos: -18.5,-4.5
parent: 2
type: Transform
- - uid: 12987
+ - uid: 12989
components:
- rot: 3.141592653589793 rad
pos: -24.5,-4.5
parent: 2
type: Transform
- - uid: 12988
+ - uid: 12990
components:
- rot: 1.5707963267948966 rad
pos: -24.5,8.5
parent: 2
type: Transform
- - uid: 12989
+ - uid: 12991
components:
- rot: -1.5707963267948966 rad
pos: -20.5,8.5
parent: 2
type: Transform
- - uid: 12990
+ - uid: 12992
components:
- pos: -20.5,20.5
parent: 2
type: Transform
- - uid: 12991
+ - uid: 12993
components:
- rot: 1.5707963267948966 rad
pos: -25.5,20.5
parent: 2
type: Transform
- - uid: 12992
+ - uid: 12994
components:
- rot: -1.5707963267948966 rad
pos: -25.5,19.5
parent: 2
type: Transform
- - uid: 12993
+ - uid: 12995
components:
- rot: 1.5707963267948966 rad
pos: -46.5,11.5
parent: 2
type: Transform
- - uid: 12994
+ - uid: 12996
components:
- rot: 3.141592653589793 rad
pos: -46.5,0.5
parent: 2
type: Transform
- - uid: 12995
+ - uid: 12997
components:
- pos: -26.5,0.5
parent: 2
type: Transform
- - uid: 12996
+ - uid: 12998
components:
- rot: 3.141592653589793 rad
pos: -26.5,-5.5
parent: 2
type: Transform
- - uid: 12997
+ - uid: 12999
components:
- pos: -20.5,-5.5
parent: 2
type: Transform
- - uid: 12998
+ - uid: 13000
components:
- rot: 3.141592653589793 rad
pos: -20.5,-25.5
parent: 2
type: Transform
- - uid: 12999
+ - uid: 13001
components:
- rot: -1.5707963267948966 rad
pos: 30.5,-86.5
parent: 2
type: Transform
- - uid: 13000
+ - uid: 13002
components:
- rot: 1.5707963267948966 rad
pos: 24.5,-73.5
parent: 2
type: Transform
- - uid: 13001
+ - uid: 13003
components:
- rot: 3.141592653589793 rad
pos: 15.5,17.5
parent: 2
type: Transform
- - uid: 13002
+ - uid: 13004
components:
- pos: -67.5,-41.5
parent: 2
type: Transform
- - uid: 13003
+ - uid: 13005
components:
- rot: 3.141592653589793 rad
pos: -67.5,-42.5
parent: 2
type: Transform
- - uid: 13004
+ - uid: 13006
components:
- rot: -1.5707963267948966 rad
pos: 12.5,2.5
parent: 2
type: Transform
- - uid: 13005
+ - uid: 13007
components:
- rot: 1.5707963267948966 rad
pos: 13.5,0.5
parent: 2
type: Transform
- - uid: 13006
+ - uid: 13008
components:
- rot: 3.141592653589793 rad
pos: -43.5,-38.5
parent: 2
type: Transform
- - uid: 13007
+ - uid: 13009
components:
- rot: 3.141592653589793 rad
pos: 3.5,-3.5
parent: 2
type: Transform
- - uid: 13008
+ - uid: 13010
components:
- rot: 3.141592653589793 rad
pos: 3.5,-5.5
parent: 2
type: Transform
+ - uid: 13011
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 15.5,-41.5
+ parent: 2
+ type: Transform
+ - uid: 13012
+ components:
+ - pos: 17.5,-41.5
+ parent: 2
+ type: Transform
- proto: DisposalJunction
entities:
- - uid: 13009
+ - uid: 13013
components:
- rot: -1.5707963267948966 rad
pos: 19.5,-43.5
parent: 2
type: Transform
- - uid: 13010
+ - uid: 13014
components:
- rot: -1.5707963267948966 rad
pos: 25.5,8.5
parent: 2
type: Transform
- - uid: 13011
+ - uid: 13015
components:
- rot: 1.5707963267948966 rad
pos: -7.5,0.5
parent: 2
type: Transform
- - uid: 13012
+ - uid: 13016
components:
- rot: -1.5707963267948966 rad
pos: 6.5,2.5
parent: 2
type: Transform
- - uid: 13013
+ - uid: 13017
components:
- rot: -1.5707963267948966 rad
pos: -0.5,0.5
parent: 2
type: Transform
- - uid: 13014
+ - uid: 13018
components:
- rot: 3.141592653589793 rad
pos: 24.5,-10.5
parent: 2
type: Transform
- - uid: 13015
+ - uid: 13019
components:
- rot: -1.5707963267948966 rad
pos: 18.5,-29.5
parent: 2
type: Transform
- - uid: 13016
+ - uid: 13020
components:
- rot: 3.141592653589793 rad
pos: 34.5,6.5
parent: 2
type: Transform
- - uid: 13017
+ - uid: 13021
components:
- rot: 1.5707963267948966 rad
pos: -13.5,-43.5
parent: 2
type: Transform
- - uid: 13018
+ - uid: 13022
components:
- rot: 1.5707963267948966 rad
pos: -5.5,-53.5
parent: 2
type: Transform
- - uid: 13019
+ - uid: 13023
components:
- rot: 3.141592653589793 rad
pos: 16.5,-29.5
parent: 2
type: Transform
- - uid: 13020
+ - uid: 13024
components:
- rot: -1.5707963267948966 rad
pos: 18.5,7.5
parent: 2
type: Transform
- - uid: 13021
+ - uid: 13025
components:
- rot: 1.5707963267948966 rad
pos: -4.5,-27.5
parent: 2
type: Transform
- - uid: 13022
+ - uid: 13026
components:
- rot: -1.5707963267948966 rad
pos: 36.5,-43.5
parent: 2
type: Transform
- - uid: 13023
+ - uid: 13027
components:
- rot: -1.5707963267948966 rad
pos: 41.5,1.5
parent: 2
type: Transform
- - uid: 13024
+ - uid: 13028
components:
- rot: -1.5707963267948966 rad
pos: 46.5,-43.5
parent: 2
type: Transform
- - uid: 13025
+ - uid: 13029
components:
- rot: 3.141592653589793 rad
pos: 49.5,-45.5
parent: 2
type: Transform
- - uid: 13026
+ - uid: 13030
components:
- rot: 3.141592653589793 rad
pos: 49.5,-47.5
parent: 2
type: Transform
- - uid: 13027
+ - uid: 13031
components:
- rot: 3.141592653589793 rad
pos: 67.5,-47.5
parent: 2
type: Transform
- - uid: 13028
+ - uid: 13032
components:
- rot: 1.5707963267948966 rad
pos: -23.5,-13.5
parent: 2
type: Transform
- - uid: 13029
+ - uid: 13033
components:
- pos: -19.5,-13.5
parent: 2
type: Transform
- - uid: 13030
+ - uid: 13034
components:
- pos: -25.5,-0.5
parent: 2
type: Transform
- - uid: 13031
+ - uid: 13035
components:
- pos: -19.5,23.5
parent: 2
type: Transform
- - uid: 13032
+ - uid: 13036
components:
- rot: 1.5707963267948966 rad
pos: -6.5,-61.5
parent: 2
type: Transform
- - uid: 13033
+ - uid: 13037
components:
- pos: -15.5,37.5
parent: 2
type: Transform
- - uid: 13034
+ - uid: 13038
components:
- rot: 1.5707963267948966 rad
pos: 30.5,-73.5
parent: 2
type: Transform
- - uid: 13035
+ - uid: 13039
components:
- rot: -1.5707963267948966 rad
pos: 2.5,-27.5
@@ -82361,150 +82391,150 @@ entities:
type: Transform
- proto: DisposalJunctionFlipped
entities:
- - uid: 13036
+ - uid: 13040
components:
- rot: 1.5707963267948966 rad
pos: -9.5,0.5
parent: 2
type: Transform
- - uid: 13037
+ - uid: 13041
components:
- rot: -1.5707963267948966 rad
pos: -0.5,-43.5
parent: 2
type: Transform
- - uid: 13038
+ - uid: 13042
components:
- pos: 24.5,-17.5
parent: 2
type: Transform
- - uid: 13039
+ - uid: 13043
components:
- rot: 1.5707963267948966 rad
pos: 21.5,17.5
parent: 2
type: Transform
- - uid: 13040
+ - uid: 13044
components:
- rot: -1.5707963267948966 rad
pos: 3.5,-0.5
parent: 2
type: Transform
- - uid: 13041
+ - uid: 13045
components:
- pos: 36.5,-18.5
parent: 2
type: Transform
- - uid: 13042
+ - uid: 13046
components:
- pos: 16.5,-25.5
parent: 2
type: Transform
- - uid: 13043
+ - uid: 13047
components:
- rot: 1.5707963267948966 rad
pos: -5.5,-25.5
parent: 2
type: Transform
- - uid: 13044
+ - uid: 13048
components:
- rot: 3.141592653589793 rad
pos: -0.5,-45.5
parent: 2
type: Transform
- - uid: 13045
+ - uid: 13049
components:
- pos: 34.5,1.5
parent: 2
type: Transform
- - uid: 13046
+ - uid: 13050
components:
- rot: 3.141592653589793 rad
pos: -17.5,-57.5
parent: 2
type: Transform
- - uid: 13047
+ - uid: 13051
components:
- pos: 12.5,5.5
parent: 2
type: Transform
- - uid: 13048
+ - uid: 13052
components:
- rot: -1.5707963267948966 rad
pos: 10.5,-0.5
parent: 2
type: Transform
- - uid: 13049
+ - uid: 13053
components:
- rot: -1.5707963267948966 rad
pos: 6.5,-0.5
parent: 2
type: Transform
- - uid: 13050
+ - uid: 13054
components:
- rot: -1.5707963267948966 rad
pos: 24.5,-6.5
parent: 2
type: Transform
- - uid: 13051
+ - uid: 13055
components:
- rot: 3.141592653589793 rad
pos: 24.5,-11.5
parent: 2
type: Transform
- - uid: 13052
+ - uid: 13056
components:
- rot: 3.141592653589793 rad
pos: -4.5,-33.5
parent: 2
type: Transform
- - uid: 13053
+ - uid: 13057
components:
- rot: -1.5707963267948966 rad
pos: 6.5,-43.5
parent: 2
type: Transform
- - uid: 13054
+ - uid: 13058
components:
- pos: 17.5,1.5
parent: 2
type: Transform
- - uid: 13055
+ - uid: 13059
components:
- rot: 1.5707963267948966 rad
pos: -10.5,-27.5
parent: 2
type: Transform
- - uid: 13056
+ - uid: 13060
components:
- rot: -1.5707963267948966 rad
pos: 25.5,-43.5
parent: 2
type: Transform
- - uid: 13057
+ - uid: 13061
components:
- rot: 3.141592653589793 rad
pos: -23.5,-75.5
parent: 2
type: Transform
- - uid: 13058
+ - uid: 13062
components:
- rot: -1.5707963267948966 rad
pos: 29.5,-60.5
parent: 2
type: Transform
- - uid: 13059
+ - uid: 13063
components:
- pos: -13.5,5.5
parent: 2
type: Transform
- - uid: 13060
+ - uid: 13064
components:
- rot: 1.5707963267948966 rad
pos: -22.5,23.5
parent: 2
type: Transform
- - uid: 13061
+ - uid: 13065
components:
- rot: -1.5707963267948966 rad
pos: -3.5,-61.5
@@ -82512,6497 +82542,6497 @@ entities:
type: Transform
- proto: DisposalMachineFrame
entities:
- - uid: 13062
+ - uid: 13066
components:
- pos: 46.5,44.5
parent: 2
type: Transform
- - uid: 13063
+ - uid: 13067
components:
- pos: -57.5,-41.5
parent: 2
type: Transform
- - uid: 13064
+ - uid: 13068
components:
- pos: -22.5,-24.5
parent: 2
type: Transform
- - uid: 13065
+ - uid: 13069
components:
- pos: -19.5,-99.5
parent: 2
type: Transform
- proto: DisposalPipe
entities:
- - uid: 13066
+ - uid: 13070
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 17.5,-42.5
+ parent: 2
+ type: Transform
+ - uid: 13071
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 17.5,-44.5
+ parent: 2
+ type: Transform
+ - uid: 13072
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 17.5,-45.5
+ parent: 2
+ type: Transform
+ - uid: 13073
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 17.5,-43.5
+ parent: 2
+ type: Transform
+ - uid: 13074
components:
- rot: 3.141592653589793 rad
pos: 2.5,-25.5
parent: 2
type: Transform
- - uid: 13067
+ - uid: 13075
components:
- rot: 3.141592653589793 rad
pos: 2.5,-26.5
parent: 2
type: Transform
- - uid: 13068
+ - uid: 13076
components:
- rot: 3.141592653589793 rad
pos: 2.5,-24.5
parent: 2
type: Transform
- - uid: 13069
+ - uid: 13077
components:
- rot: 1.5707963267948966 rad
pos: -6.5,-9.5
parent: 2
type: Transform
- - uid: 13070
+ - uid: 13078
components:
- pos: 12.5,6.5
parent: 2
type: Transform
- - uid: 13071
+ - uid: 13079
components:
- rot: -1.5707963267948966 rad
pos: 1.5,2.5
parent: 2
type: Transform
- - uid: 13072
+ - uid: 13080
components:
- pos: 36.5,-25.5
parent: 2
type: Transform
- - uid: 13073
+ - uid: 13081
components:
- pos: 36.5,-22.5
parent: 2
type: Transform
- - uid: 13074
+ - uid: 13082
components:
- rot: -1.5707963267948966 rad
pos: 25.5,-6.5
parent: 2
type: Transform
- - uid: 13075
+ - uid: 13083
components:
- pos: 16.5,-42.5
parent: 2
type: Transform
- - uid: 13076
+ - uid: 13084
components:
- pos: 16.5,-41.5
parent: 2
type: Transform
- - uid: 13077
+ - uid: 13085
components:
- rot: -1.5707963267948966 rad
pos: 20.5,-43.5
parent: 2
type: Transform
- - uid: 13078
+ - uid: 13086
components:
- rot: 1.5707963267948966 rad
pos: 13.5,-43.5
parent: 2
type: Transform
- - uid: 13079
+ - uid: 13087
components:
- rot: 1.5707963267948966 rad
pos: 12.5,-43.5
parent: 2
type: Transform
- - uid: 13080
+ - uid: 13088
components:
- rot: 1.5707963267948966 rad
pos: 8.5,-43.5
parent: 2
type: Transform
- - uid: 13081
+ - uid: 13089
components:
- rot: 1.5707963267948966 rad
pos: 4.5,-43.5
parent: 2
type: Transform
- - uid: 13082
+ - uid: 13090
components:
- rot: -1.5707963267948966 rad
pos: 0.5,-43.5
parent: 2
type: Transform
- - uid: 13083
+ - uid: 13091
components:
- rot: -1.5707963267948966 rad
pos: 17.5,-29.5
parent: 2
type: Transform
- - uid: 13084
+ - uid: 13092
components:
- pos: 21.5,-33.5
parent: 2
type: Transform
- - uid: 13085
+ - uid: 13093
components:
- rot: 1.5707963267948966 rad
pos: -13.5,-27.5
parent: 2
type: Transform
- - uid: 13086
+ - uid: 13094
components:
- rot: -1.5707963267948966 rad
pos: 31.5,-17.5
parent: 2
type: Transform
- - uid: 13087
+ - uid: 13095
components:
- pos: 21.5,-30.5
parent: 2
type: Transform
- - uid: 13088
+ - uid: 13096
components:
- pos: 21.5,-31.5
parent: 2
type: Transform
- - uid: 13089
+ - uid: 13097
components:
- rot: -1.5707963267948966 rad
pos: 33.5,-17.5
parent: 2
type: Transform
- - uid: 13090
+ - uid: 13098
components:
- rot: -1.5707963267948966 rad
pos: 32.5,8.5
parent: 2
type: Transform
- - uid: 13091
+ - uid: 13099
components:
- rot: -1.5707963267948966 rad
pos: -6.5,-43.5
parent: 2
type: Transform
- - uid: 13092
+ - uid: 13100
components:
- rot: -1.5707963267948966 rad
pos: -8.5,-43.5
parent: 2
type: Transform
- - uid: 13093
+ - uid: 13101
components:
- pos: -13.5,-45.5
parent: 2
type: Transform
- - uid: 13094
+ - uid: 13102
components:
- pos: -17.5,-55.5
parent: 2
type: Transform
- - uid: 13095
+ - uid: 13103
components:
- rot: -1.5707963267948966 rad
pos: -18.5,-60.5
parent: 2
type: Transform
- - uid: 13096
+ - uid: 13104
components:
- pos: -19.5,-61.5
parent: 2
type: Transform
- - uid: 13097
+ - uid: 13105
components:
- rot: 1.5707963267948966 rad
pos: -6.5,-53.5
parent: 2
type: Transform
- - uid: 13098
+ - uid: 13106
components:
- rot: -1.5707963267948966 rad
pos: 11.5,-0.5
parent: 2
type: Transform
- - uid: 13099
+ - uid: 13107
components:
- rot: 1.5707963267948966 rad
pos: 8.5,2.5
parent: 2
type: Transform
- - uid: 13100
+ - uid: 13108
components:
- rot: 3.141592653589793 rad
pos: -4.5,-1.5
parent: 2
type: Transform
- - uid: 13101
+ - uid: 13109
components:
- rot: 3.141592653589793 rad
pos: 8.5,14.5
parent: 2
type: Transform
- - uid: 13102
+ - uid: 13110
components:
- pos: 19.5,-41.5
parent: 2
type: Transform
- - uid: 13103
+ - uid: 13111
components:
- pos: -9.5,1.5
parent: 2
type: Transform
- - uid: 13104
+ - uid: 13112
components:
- pos: -9.5,4.5
parent: 2
type: Transform
- - uid: 13105
+ - uid: 13113
components:
- pos: -9.5,3.5
parent: 2
type: Transform
- - uid: 13106
+ - uid: 13114
components:
- pos: -9.5,2.5
parent: 2
type: Transform
- - uid: 13107
+ - uid: 13115
components:
- rot: -1.5707963267948966 rad
pos: 10.5,13.5
parent: 2
type: Transform
- - uid: 13108
+ - uid: 13116
components:
- pos: 24.5,-9.5
parent: 2
type: Transform
- - uid: 13109
+ - uid: 13117
components:
- rot: 1.5707963267948966 rad
pos: 23.5,-6.5
parent: 2
type: Transform
- - uid: 13110
+ - uid: 13118
components:
- pos: 24.5,-7.5
parent: 2
type: Transform
- - uid: 13111
+ - uid: 13119
components:
- rot: -1.5707963267948966 rad
pos: 3.5,2.5
parent: 2
type: Transform
- - uid: 13112
+ - uid: 13120
components:
- rot: 1.5707963267948966 rad
pos: -5.5,0.5
parent: 2
type: Transform
- - uid: 13113
+ - uid: 13121
components:
- pos: -23.5,-74.5
parent: 2
type: Transform
- - uid: 13114
+ - uid: 13122
components:
- pos: 12.5,11.5
parent: 2
type: Transform
- - uid: 13115
+ - uid: 13123
components:
- rot: -1.5707963267948966 rad
pos: -14.5,-43.5
parent: 2
type: Transform
- - uid: 13116
+ - uid: 13124
components:
- rot: 1.5707963267948966 rad
pos: -8.5,0.5
parent: 2
type: Transform
- - uid: 13117
+ - uid: 13125
components:
- rot: 1.5707963267948966 rad
pos: -8.5,-27.5
parent: 2
type: Transform
- - uid: 13118
+ - uid: 13126
components:
- rot: 1.5707963267948966 rad
pos: -9.5,-9.5
parent: 2
type: Transform
- - uid: 13119
+ - uid: 13127
components:
- rot: 1.5707963267948966 rad
pos: -2.5,0.5
parent: 2
type: Transform
- - uid: 13120
+ - uid: 13128
components:
- rot: -1.5707963267948966 rad
pos: 21.5,7.5
parent: 2
type: Transform
- - uid: 13121
+ - uid: 13129
components:
- pos: 36.5,-24.5
parent: 2
type: Transform
- - uid: 13122
+ - uid: 13130
components:
- pos: 34.5,-4.5
parent: 2
type: Transform
- - uid: 13123
+ - uid: 13131
components:
- pos: 34.5,-2.5
parent: 2
type: Transform
- - uid: 13124
+ - uid: 13132
components:
- rot: 3.141592653589793 rad
pos: 34.5,5.5
parent: 2
type: Transform
- - uid: 13125
+ - uid: 13133
components:
- rot: -1.5707963267948966 rad
pos: 39.5,6.5
parent: 2
type: Transform
- - uid: 13126
+ - uid: 13134
components:
- rot: -1.5707963267948966 rad
pos: 28.5,-6.5
parent: 2
type: Transform
- - uid: 13127
+ - uid: 13135
components:
- rot: -1.5707963267948966 rad
pos: 26.5,-6.5
parent: 2
type: Transform
- - uid: 13128
+ - uid: 13136
components:
- rot: 1.5707963267948966 rad
pos: 11.5,-43.5
parent: 2
type: Transform
- - uid: 13129
+ - uid: 13137
components:
- rot: 1.5707963267948966 rad
pos: 9.5,-43.5
parent: 2
type: Transform
- - uid: 13130
+ - uid: 13138
components:
- rot: 1.5707963267948966 rad
pos: 10.5,-43.5
parent: 2
type: Transform
- - uid: 13131
+ - uid: 13139
components:
- rot: 1.5707963267948966 rad
pos: 7.5,-43.5
parent: 2
type: Transform
- - uid: 13132
+ - uid: 13140
components:
- rot: 1.5707963267948966 rad
pos: 5.5,-43.5
parent: 2
type: Transform
- - uid: 13133
+ - uid: 13141
components:
- rot: -1.5707963267948966 rad
pos: 1.5,-43.5
parent: 2
type: Transform
- - uid: 13134
+ - uid: 13142
components:
- pos: 6.5,-44.5
parent: 2
type: Transform
- - uid: 13135
+ - uid: 13143
components:
- pos: 21.5,-32.5
parent: 2
type: Transform
- - uid: 13136
+ - uid: 13144
components:
- rot: 1.5707963267948966 rad
pos: 20.5,-18.5
parent: 2
type: Transform
- - uid: 13137
+ - uid: 13145
components:
- pos: 24.5,-13.5
parent: 2
type: Transform
- - uid: 13138
+ - uid: 13146
components:
- rot: 1.5707963267948966 rad
pos: 22.5,17.5
parent: 2
type: Transform
- - uid: 13139
+ - uid: 13147
components:
- rot: -1.5707963267948966 rad
pos: 28.5,17.5
parent: 2
type: Transform
- - uid: 13140
+ - uid: 13148
components:
- pos: 25.5,15.5
parent: 2
type: Transform
- - uid: 13141
+ - uid: 13149
components:
- rot: 1.5707963267948966 rad
pos: 21.5,-6.5
parent: 2
type: Transform
- - uid: 13142
+ - uid: 13150
components:
- rot: -1.5707963267948966 rad
pos: 26.5,8.5
parent: 2
type: Transform
- - uid: 13143
+ - uid: 13151
components:
- rot: -1.5707963267948966 rad
pos: 11.5,2.5
parent: 2
type: Transform
- - uid: 13144
+ - uid: 13152
components:
- pos: 6.5,4.5
parent: 2
type: Transform
- - uid: 13145
+ - uid: 13153
components:
- rot: 1.5707963267948966 rad
pos: -17.5,-27.5
parent: 2
type: Transform
- - uid: 13146
+ - uid: 13154
components:
- rot: 1.5707963267948966 rad
pos: -15.5,-27.5
parent: 2
type: Transform
- - uid: 13147
+ - uid: 13155
components:
- rot: 1.5707963267948966 rad
pos: -16.5,-27.5
parent: 2
type: Transform
- - uid: 13148
+ - uid: 13156
components:
- rot: 1.5707963267948966 rad
pos: -6.5,-27.5
parent: 2
type: Transform
- - uid: 13149
+ - uid: 13157
components:
- rot: 1.5707963267948966 rad
pos: -5.5,-27.5
parent: 2
type: Transform
- - uid: 13150
+ - uid: 13158
components:
- rot: 1.5707963267948966 rad
pos: -14.5,-27.5
parent: 2
type: Transform
- - uid: 13151
+ - uid: 13159
components:
- rot: -1.5707963267948966 rad
pos: -5.5,-33.5
parent: 2
type: Transform
- - uid: 13152
+ - uid: 13160
components:
- pos: -19.5,-63.5
parent: 2
type: Transform
- - uid: 13153
+ - uid: 13161
components:
- rot: 1.5707963267948966 rad
pos: 8.5,-27.5
parent: 2
type: Transform
- - uid: 13154
+ - uid: 13162
components:
- rot: 1.5707963267948966 rad
pos: 7.5,-27.5
parent: 2
type: Transform
- - uid: 13155
+ - uid: 13163
components:
- rot: 1.5707963267948966 rad
pos: 5.5,-27.5
parent: 2
type: Transform
- - uid: 13156
+ - uid: 13164
components:
- rot: 1.5707963267948966 rad
pos: 3.5,-27.5
parent: 2
type: Transform
- - uid: 13157
+ - uid: 13165
components:
- pos: -23.5,-77.5
parent: 2
type: Transform
- - uid: 13158
+ - uid: 13166
components:
- rot: 1.5707963267948966 rad
pos: 1.5,-27.5
parent: 2
type: Transform
- - uid: 13159
+ - uid: 13167
components:
- rot: 1.5707963267948966 rad
pos: -0.5,-27.5
parent: 2
type: Transform
- - uid: 13160
+ - uid: 13168
components:
- rot: 1.5707963267948966 rad
pos: -2.5,-27.5
parent: 2
type: Transform
- - uid: 13161
+ - uid: 13169
components:
- rot: 1.5707963267948966 rad
pos: 2.5,-0.5
parent: 2
type: Transform
- - uid: 13162
+ - uid: 13170
components:
- pos: 18.5,-2.5
parent: 2
type: Transform
- - uid: 13163
+ - uid: 13171
components:
- rot: -1.5707963267948966 rad
pos: 27.5,17.5
parent: 2
type: Transform
- - uid: 13164
+ - uid: 13172
components:
- rot: 3.141592653589793 rad
pos: 16.5,-34.5
parent: 2
type: Transform
- - uid: 13165
+ - uid: 13173
components:
- rot: 3.141592653589793 rad
pos: 16.5,-32.5
parent: 2
type: Transform
- - uid: 13166
+ - uid: 13174
components:
- rot: 3.141592653589793 rad
pos: 16.5,-30.5
parent: 2
type: Transform
- - uid: 13167
+ - uid: 13175
components:
- rot: 3.141592653589793 rad
pos: 16.5,-28.5
parent: 2
type: Transform
- - uid: 13168
+ - uid: 13176
components:
- rot: -1.5707963267948966 rad
pos: 28.5,8.5
parent: 2
type: Transform
- - uid: 13169
+ - uid: 13177
components:
- rot: 1.5707963267948966 rad
pos: 7.5,-0.5
parent: 2
type: Transform
- - uid: 13170
+ - uid: 13178
components:
- rot: 3.141592653589793 rad
pos: 18.5,-26.5
parent: 2
type: Transform
- - uid: 13171
+ - uid: 13179
components:
- pos: 18.5,-3.5
parent: 2
type: Transform
- - uid: 13172
+ - uid: 13180
components:
- rot: 1.5707963267948966 rad
pos: 0.5,-27.5
parent: 2
type: Transform
- - uid: 13173
+ - uid: 13181
components:
- rot: 1.5707963267948966 rad
pos: -1.5,-27.5
parent: 2
type: Transform
- - uid: 13174
+ - uid: 13182
components:
- rot: 3.141592653589793 rad
pos: 16.5,-33.5
parent: 2
type: Transform
- - uid: 13175
+ - uid: 13183
components:
- rot: 3.141592653589793 rad
pos: 16.5,-31.5
parent: 2
type: Transform
- - uid: 13176
+ - uid: 13184
components:
- rot: -1.5707963267948966 rad
pos: 26.5,-17.5
parent: 2
type: Transform
- - uid: 13177
+ - uid: 13185
components:
- rot: 1.5707963267948966 rad
pos: 5.5,-0.5
parent: 2
type: Transform
- - uid: 13178
+ - uid: 13186
components:
- rot: 1.5707963267948966 rad
pos: -12.5,-53.5
parent: 2
type: Transform
- - uid: 13179
+ - uid: 13187
components:
- rot: 1.5707963267948966 rad
pos: 6.5,-27.5
parent: 2
type: Transform
- - uid: 13180
+ - uid: 13188
components:
- pos: 24.5,-15.5
parent: 2
type: Transform
- - uid: 13181
+ - uid: 13189
components:
- rot: 1.5707963267948966 rad
pos: 22.5,-18.5
parent: 2
type: Transform
- - uid: 13182
+ - uid: 13190
components:
- rot: 1.5707963267948966 rad
pos: 18.5,-18.5
parent: 2
type: Transform
- - uid: 13183
+ - uid: 13191
components:
- pos: 12.5,7.5
parent: 2
type: Transform
- - uid: 13184
+ - uid: 13192
components:
- rot: 3.141592653589793 rad
pos: 17.5,3.5
parent: 2
type: Transform
- - uid: 13185
+ - uid: 13193
components:
- rot: 1.5707963267948966 rad
pos: -1.5,0.5
parent: 2
type: Transform
- - uid: 13186
+ - uid: 13194
components:
- rot: 1.5707963267948966 rad
pos: -3.5,0.5
parent: 2
type: Transform
- - uid: 13187
+ - uid: 13195
components:
- pos: 10.5,-2.5
parent: 2
type: Transform
- - uid: 13188
+ - uid: 13196
components:
- rot: -1.5707963267948966 rad
pos: 14.5,0.5
parent: 2
type: Transform
- - uid: 13189
+ - uid: 13197
components:
- rot: -1.5707963267948966 rad
pos: 16.5,0.5
parent: 2
type: Transform
- - uid: 13190
+ - uid: 13198
components:
- rot: 3.141592653589793 rad
pos: -4.5,-7.5
parent: 2
type: Transform
- - uid: 13191
+ - uid: 13199
components:
- rot: 3.141592653589793 rad
pos: -3.5,-18.5
parent: 2
type: Transform
- - uid: 13192
+ - uid: 13200
components:
- rot: 3.141592653589793 rad
pos: 18.5,-51.5
parent: 2
type: Transform
- - uid: 13193
+ - uid: 13201
components:
- rot: 3.141592653589793 rad
pos: 18.5,-50.5
parent: 2
type: Transform
- - uid: 13194
- components:
- - rot: 3.141592653589793 rad
- pos: 15.5,-42.5
- parent: 2
- type: Transform
- - uid: 13195
+ - uid: 13202
components:
- pos: -4.5,-42.5
parent: 2
type: Transform
- - uid: 13196
+ - uid: 13203
components:
- pos: -4.5,-40.5
parent: 2
type: Transform
- - uid: 13197
+ - uid: 13204
components:
- pos: -4.5,-38.5
parent: 2
type: Transform
- - uid: 13198
+ - uid: 13205
components:
- pos: -4.5,-36.5
parent: 2
type: Transform
- - uid: 13199
+ - uid: 13206
components:
- pos: -4.5,-34.5
parent: 2
type: Transform
- - uid: 13200
+ - uid: 13207
components:
- pos: -4.5,-32.5
parent: 2
type: Transform
- - uid: 13201
+ - uid: 13208
components:
- pos: -4.5,-30.5
parent: 2
type: Transform
- - uid: 13202
+ - uid: 13209
components:
- rot: -1.5707963267948966 rad
pos: -17.5,-43.5
parent: 2
type: Transform
- - uid: 13203
+ - uid: 13210
components:
- rot: -1.5707963267948966 rad
pos: -16.5,-43.5
parent: 2
type: Transform
- - uid: 13204
+ - uid: 13211
components:
- rot: 1.5707963267948966 rad
pos: 11.5,-27.5
parent: 2
type: Transform
- - uid: 13205
+ - uid: 13212
components:
- rot: 1.5707963267948966 rad
pos: 9.5,-27.5
parent: 2
type: Transform
- - uid: 13206
+ - uid: 13213
components:
- rot: 1.5707963267948966 rad
pos: 10.5,-27.5
parent: 2
type: Transform
- - uid: 13207
+ - uid: 13214
components:
- rot: 1.5707963267948966 rad
pos: -9.5,-27.5
parent: 2
type: Transform
- - uid: 13208
+ - uid: 13215
components:
- rot: 1.5707963267948966 rad
pos: -7.5,-27.5
parent: 2
type: Transform
- - uid: 13209
+ - uid: 13216
components:
- rot: 1.5707963267948966 rad
pos: 15.5,-27.5
parent: 2
type: Transform
- - uid: 13210
+ - uid: 13217
components:
- rot: 1.5707963267948966 rad
pos: 14.5,-27.5
parent: 2
type: Transform
- - uid: 13211
+ - uid: 13218
components:
- rot: 1.5707963267948966 rad
pos: 13.5,-27.5
parent: 2
type: Transform
- - uid: 13212
+ - uid: 13219
components:
- rot: 1.5707963267948966 rad
pos: -12.5,-27.5
parent: 2
type: Transform
- - uid: 13213
+ - uid: 13220
components:
- rot: 1.5707963267948966 rad
pos: -11.5,-27.5
parent: 2
type: Transform
- - uid: 13214
+ - uid: 13221
components:
- pos: 17.5,-48.5
parent: 2
type: Transform
- - uid: 13215
+ - uid: 13222
components:
- rot: -1.5707963267948966 rad
pos: 1.5,-0.5
parent: 2
type: Transform
- - uid: 13216
+ - uid: 13223
components:
- rot: -1.5707963267948966 rad
pos: 2.5,2.5
parent: 2
type: Transform
- - uid: 13217
+ - uid: 13224
components:
- rot: -1.5707963267948966 rad
pos: 11.5,13.5
parent: 2
type: Transform
- - uid: 13218
+ - uid: 13225
components:
- pos: 12.5,12.5
parent: 2
type: Transform
- - uid: 13219
+ - uid: 13226
components:
- rot: 1.5707963267948966 rad
pos: 23.5,17.5
parent: 2
type: Transform
- - uid: 13220
+ - uid: 13227
components:
- rot: -1.5707963267948966 rad
pos: 35.5,-17.5
parent: 2
type: Transform
- - uid: 13221
+ - uid: 13228
components:
- pos: 36.5,-19.5
parent: 2
type: Transform
- - uid: 13222
+ - uid: 13229
components:
- rot: -1.5707963267948966 rad
pos: 30.5,8.5
parent: 2
type: Transform
- - uid: 13223
+ - uid: 13230
components:
- rot: -1.5707963267948966 rad
pos: 27.5,8.5
parent: 2
type: Transform
- - uid: 13224
+ - uid: 13231
components:
- rot: -1.5707963267948966 rad
pos: 29.5,8.5
parent: 2
type: Transform
- - uid: 13225
+ - uid: 13232
components:
- rot: -1.5707963267948966 rad
pos: 31.5,8.5
parent: 2
type: Transform
- - uid: 13226
+ - uid: 13233
components:
- rot: -1.5707963267948966 rad
pos: 26.5,-10.5
parent: 2
type: Transform
- - uid: 13227
+ - uid: 13234
components:
- rot: 1.5707963267948966 rad
pos: 23.5,-11.5
parent: 2
type: Transform
- - uid: 13228
+ - uid: 13235
components:
- rot: -1.5707963267948966 rad
pos: 20.5,7.5
parent: 2
type: Transform
- - uid: 13229
+ - uid: 13236
components:
- rot: -1.5707963267948966 rad
pos: 19.5,7.5
parent: 2
type: Transform
- - uid: 13230
+ - uid: 13237
components:
- rot: -1.5707963267948966 rad
pos: 23.5,8.5
parent: 2
type: Transform
- - uid: 13231
+ - uid: 13238
components:
- rot: -1.5707963267948966 rad
pos: 24.5,8.5
parent: 2
type: Transform
- - uid: 13232
+ - uid: 13239
components:
- pos: 25.5,9.5
parent: 2
type: Transform
- - uid: 13233
+ - uid: 13240
components:
- pos: 25.5,10.5
parent: 2
type: Transform
- - uid: 13234
+ - uid: 13241
components:
- pos: 25.5,11.5
parent: 2
type: Transform
- - uid: 13235
+ - uid: 13242
components:
- pos: 25.5,12.5
parent: 2
type: Transform
- - uid: 13236
+ - uid: 13243
components:
- pos: 25.5,13.5
parent: 2
type: Transform
- - uid: 13237
+ - uid: 13244
components:
- pos: 25.5,14.5
parent: 2
type: Transform
- - uid: 13238
+ - uid: 13245
components:
- pos: 25.5,16.5
parent: 2
type: Transform
- - uid: 13239
+ - uid: 13246
components:
- rot: -1.5707963267948966 rad
pos: 26.5,17.5
parent: 2
type: Transform
- - uid: 13240
+ - uid: 13247
components:
- rot: -1.5707963267948966 rad
pos: 24.5,17.5
parent: 2
type: Transform
- - uid: 13241
+ - uid: 13248
components:
- pos: 21.5,18.5
parent: 2
type: Transform
- - uid: 13242
+ - uid: 13249
components:
- pos: 21.5,19.5
parent: 2
type: Transform
- - uid: 13243
+ - uid: 13250
components:
- pos: 24.5,-12.5
parent: 2
type: Transform
- - uid: 13244
+ - uid: 13251
components:
- rot: 1.5707963267948966 rad
pos: 19.5,-18.5
parent: 2
type: Transform
- - uid: 13245
+ - uid: 13252
components:
- rot: 1.5707963267948966 rad
pos: 17.5,-18.5
parent: 2
type: Transform
- - uid: 13246
+ - uid: 13253
components:
- pos: 16.5,-20.5
parent: 2
type: Transform
- - uid: 13247
+ - uid: 13254
components:
- pos: 16.5,-21.5
parent: 2
type: Transform
- - uid: 13248
+ - uid: 13255
components:
- pos: 16.5,-22.5
parent: 2
type: Transform
- - uid: 13249
+ - uid: 13256
components:
- pos: 16.5,-23.5
parent: 2
type: Transform
- - uid: 13250
+ - uid: 13257
components:
- pos: 16.5,-24.5
parent: 2
type: Transform
- - uid: 13251
+ - uid: 13258
components:
- rot: -1.5707963267948966 rad
pos: 17.5,-25.5
parent: 2
type: Transform
- - uid: 13252
+ - uid: 13259
components:
- rot: -1.5707963267948966 rad
pos: 19.5,-25.5
parent: 2
type: Transform
- - uid: 13253
+ - uid: 13260
components:
- pos: 20.5,-24.5
parent: 2
type: Transform
- - uid: 13254
+ - uid: 13261
components:
- rot: -1.5707963267948966 rad
pos: 25.5,-17.5
parent: 2
type: Transform
- - uid: 13255
+ - uid: 13262
components:
- rot: -1.5707963267948966 rad
pos: 27.5,-17.5
parent: 2
type: Transform
- - uid: 13256
+ - uid: 13263
components:
- rot: -1.5707963267948966 rad
pos: 29.5,-17.5
parent: 2
type: Transform
- - uid: 13257
+ - uid: 13264
components:
- rot: -1.5707963267948966 rad
pos: 28.5,-17.5
parent: 2
type: Transform
- - uid: 13258
+ - uid: 13265
components:
- rot: -1.5707963267948966 rad
pos: 30.5,-17.5
parent: 2
type: Transform
- - uid: 13259
+ - uid: 13266
components:
- rot: -1.5707963267948966 rad
pos: 32.5,-17.5
parent: 2
type: Transform
- - uid: 13260
+ - uid: 13267
components:
- rot: 3.141592653589793 rad
pos: 16.5,-26.5
parent: 2
type: Transform
- - uid: 13261
+ - uid: 13268
components:
- rot: -1.5707963267948966 rad
pos: 19.5,-29.5
parent: 2
type: Transform
- - uid: 13262
+ - uid: 13269
components:
- rot: -1.5707963267948966 rad
pos: 20.5,-29.5
parent: 2
type: Transform
- - uid: 13263
+ - uid: 13270
components:
- rot: -1.5707963267948966 rad
pos: 34.5,-17.5
parent: 2
type: Transform
- - uid: 13264
+ - uid: 13271
components:
- rot: 3.141592653589793 rad
pos: 36.5,-20.5
parent: 2
type: Transform
- - uid: 13265
+ - uid: 13272
components:
- rot: 3.141592653589793 rad
pos: 36.5,-21.5
parent: 2
type: Transform
- - uid: 13266
+ - uid: 13273
components:
- rot: -1.5707963267948966 rad
pos: 33.5,8.5
parent: 2
type: Transform
- - uid: 13267
+ - uid: 13274
components:
- rot: 3.141592653589793 rad
pos: -4.5,-10.5
parent: 2
type: Transform
- - uid: 13268
+ - uid: 13275
components:
- rot: -1.5707963267948966 rad
pos: 7.5,-25.5
parent: 2
type: Transform
- - uid: 13269
+ - uid: 13276
components:
- pos: -7.5,-1.5
parent: 2
type: Transform
- - uid: 13270
+ - uid: 13277
components:
- rot: -1.5707963267948966 rad
pos: 20.5,17.5
parent: 2
type: Transform
- - uid: 13271
+ - uid: 13278
components:
- rot: -1.5707963267948966 rad
pos: 19.5,17.5
parent: 2
type: Transform
- - uid: 13272
+ - uid: 13279
components:
- rot: -1.5707963267948966 rad
pos: -4.5,-25.5
parent: 2
type: Transform
- - uid: 13273
+ - uid: 13280
components:
- pos: 16.5,-35.5
parent: 2
type: Transform
- - uid: 13274
+ - uid: 13281
components:
- pos: 16.5,-36.5
parent: 2
type: Transform
- - uid: 13275
+ - uid: 13282
components:
- pos: 16.5,-37.5
parent: 2
type: Transform
- - uid: 13276
+ - uid: 13283
components:
- pos: 16.5,-38.5
parent: 2
type: Transform
- - uid: 13277
+ - uid: 13284
components:
- pos: 16.5,-39.5
parent: 2
type: Transform
- - uid: 13278
+ - uid: 13285
components:
- pos: 16.5,-40.5
parent: 2
type: Transform
- - uid: 13279
+ - uid: 13286
components:
- rot: 3.141592653589793 rad
pos: 1.5,-58.5
parent: 2
type: Transform
- - uid: 13280
+ - uid: 13287
components:
- rot: 3.141592653589793 rad
pos: 1.5,-57.5
parent: 2
type: Transform
- - uid: 13281
+ - uid: 13288
components:
- rot: 3.141592653589793 rad
pos: 1.5,-56.5
parent: 2
type: Transform
- - uid: 13282
+ - uid: 13289
components:
- rot: 3.141592653589793 rad
pos: 1.5,-55.5
parent: 2
type: Transform
- - uid: 13283
+ - uid: 13290
components:
- rot: 3.141592653589793 rad
pos: 1.5,-54.5
parent: 2
type: Transform
- - uid: 13284
+ - uid: 13291
components:
- rot: -1.5707963267948966 rad
pos: 0.5,-53.5
parent: 2
type: Transform
- - uid: 13285
+ - uid: 13292
components:
- rot: -1.5707963267948966 rad
pos: -1.5,-45.5
parent: 2
type: Transform
- - uid: 13286
+ - uid: 13293
components:
- rot: 3.141592653589793 rad
pos: -0.5,-52.5
parent: 2
type: Transform
- - uid: 13287
+ - uid: 13294
components:
- rot: 3.141592653589793 rad
pos: -0.5,-51.5
parent: 2
type: Transform
- - uid: 13288
+ - uid: 13295
components:
- rot: 3.141592653589793 rad
pos: -0.5,-50.5
parent: 2
type: Transform
- - uid: 13289
+ - uid: 13296
components:
- rot: 3.141592653589793 rad
pos: -0.5,-48.5
parent: 2
type: Transform
- - uid: 13290
+ - uid: 13297
components:
- rot: 3.141592653589793 rad
pos: -0.5,-47.5
parent: 2
type: Transform
- - uid: 13291
+ - uid: 13298
components:
- pos: -0.5,-44.5
parent: 2
type: Transform
- - uid: 13292
+ - uid: 13299
components:
- rot: -1.5707963267948966 rad
pos: 27.5,-6.5
parent: 2
type: Transform
- - uid: 13293
+ - uid: 13300
components:
- rot: -1.5707963267948966 rad
pos: 29.5,-6.5
parent: 2
type: Transform
- - uid: 13294
+ - uid: 13301
components:
- rot: -1.5707963267948966 rad
pos: 30.5,-6.5
parent: 2
type: Transform
- - uid: 13295
+ - uid: 13302
components:
- rot: -1.5707963267948966 rad
pos: 31.5,-6.5
parent: 2
type: Transform
- - uid: 13296
+ - uid: 13303
components:
- rot: -1.5707963267948966 rad
pos: 32.5,-6.5
parent: 2
type: Transform
- - uid: 13297
+ - uid: 13304
components:
- rot: -1.5707963267948966 rad
pos: 33.5,-6.5
parent: 2
type: Transform
- - uid: 13298
+ - uid: 13305
components:
- rot: 3.141592653589793 rad
pos: 34.5,7.5
parent: 2
type: Transform
- - uid: 13299
+ - uid: 13306
components:
- rot: -1.5707963267948966 rad
pos: 35.5,6.5
parent: 2
type: Transform
- - uid: 13300
+ - uid: 13307
components:
- rot: -1.5707963267948966 rad
pos: 36.5,6.5
parent: 2
type: Transform
- - uid: 13301
+ - uid: 13308
components:
- rot: -1.5707963267948966 rad
pos: 37.5,6.5
parent: 2
type: Transform
- - uid: 13302
+ - uid: 13309
components:
- rot: -1.5707963267948966 rad
pos: 38.5,6.5
parent: 2
type: Transform
- - uid: 13303
+ - uid: 13310
components:
- rot: -1.5707963267948966 rad
pos: 40.5,6.5
parent: 2
type: Transform
- - uid: 13304
+ - uid: 13311
components:
- rot: 3.141592653589793 rad
pos: 34.5,3.5
parent: 2
type: Transform
- - uid: 13305
+ - uid: 13312
components:
- pos: 34.5,-0.5
parent: 2
type: Transform
- - uid: 13306
+ - uid: 13313
components:
- pos: 34.5,-1.5
parent: 2
type: Transform
- - uid: 13307
+ - uid: 13314
components:
- pos: 36.5,-27.5
parent: 2
type: Transform
- - uid: 13308
+ - uid: 13315
components:
- pos: 36.5,-28.5
parent: 2
type: Transform
- - uid: 13309
- components:
- - rot: 3.141592653589793 rad
- pos: 15.5,-44.5
- parent: 2
- type: Transform
- - uid: 13310
+ - uid: 13316
components:
- - rot: 1.5707963267948966 rad
- pos: 16.5,-45.5
+ - rot: -1.5707963267948966 rad
+ pos: 16.5,-41.5
parent: 2
type: Transform
- - uid: 13311
+ - uid: 13317
components:
- pos: 17.5,-46.5
parent: 2
type: Transform
- - uid: 13312
+ - uid: 13318
components:
- rot: 1.5707963267948966 rad
pos: 17.5,-43.5
parent: 2
type: Transform
- - uid: 13313
+ - uid: 13319
components:
- rot: 1.5707963267948966 rad
pos: 18.5,-43.5
parent: 2
type: Transform
- - uid: 13314
+ - uid: 13320
components:
- pos: 19.5,-42.5
parent: 2
type: Transform
- - uid: 13315
+ - uid: 13321
components:
- pos: 18.5,-27.5
parent: 2
type: Transform
- - uid: 13316
+ - uid: 13322
components:
- pos: -23.5,-80.5
parent: 2
type: Transform
- - uid: 13317
+ - uid: 13323
components:
- rot: -1.5707963267948966 rad
pos: -2.5,-25.5
parent: 2
type: Transform
- - uid: 13318
+ - uid: 13324
components:
- rot: -1.5707963267948966 rad
pos: -3.5,-25.5
parent: 2
type: Transform
- - uid: 13319
+ - uid: 13325
components:
- rot: 3.141592653589793 rad
pos: -4.5,-2.5
parent: 2
type: Transform
- - uid: 13320
+ - uid: 13326
components:
- rot: -1.5707963267948966 rad
pos: -1.5,-25.5
parent: 2
type: Transform
- - uid: 13321
+ - uid: 13327
components:
- rot: 3.141592653589793 rad
pos: 15.5,-33.5
parent: 2
type: Transform
- - uid: 13322
+ - uid: 13328
components:
- rot: -1.5707963267948966 rad
pos: -1.5,-43.5
parent: 2
type: Transform
- - uid: 13323
+ - uid: 13329
components:
- rot: -1.5707963267948966 rad
pos: -2.5,-43.5
parent: 2
type: Transform
- - uid: 13324
+ - uid: 13330
components:
- rot: -1.5707963267948966 rad
pos: -3.5,-43.5
parent: 2
type: Transform
- - uid: 13325
+ - uid: 13331
components:
- rot: -1.5707963267948966 rad
pos: -5.5,-43.5
parent: 2
type: Transform
- - uid: 13326
+ - uid: 13332
components:
- rot: -1.5707963267948966 rad
pos: -7.5,-43.5
parent: 2
type: Transform
- - uid: 13327
+ - uid: 13333
components:
- rot: -1.5707963267948966 rad
pos: -9.5,-43.5
parent: 2
type: Transform
- - uid: 13328
+ - uid: 13334
components:
- rot: -1.5707963267948966 rad
pos: -10.5,-43.5
parent: 2
type: Transform
- - uid: 13329
+ - uid: 13335
components:
- rot: -1.5707963267948966 rad
pos: -11.5,-43.5
parent: 2
type: Transform
- - uid: 13330
+ - uid: 13336
components:
- rot: -1.5707963267948966 rad
pos: -12.5,-43.5
parent: 2
type: Transform
- - uid: 13331
+ - uid: 13337
components:
- pos: -13.5,-44.5
parent: 2
type: Transform
- - uid: 13332
+ - uid: 13338
components:
- pos: -13.5,-46.5
parent: 2
type: Transform
- - uid: 13333
+ - uid: 13339
components:
- pos: -13.5,-47.5
parent: 2
type: Transform
- - uid: 13334
+ - uid: 13340
components:
- pos: -13.5,-48.5
parent: 2
type: Transform
- - uid: 13335
+ - uid: 13341
components:
- pos: -13.5,-49.5
parent: 2
type: Transform
- - uid: 13336
+ - uid: 13342
components:
- pos: -13.5,-50.5
parent: 2
type: Transform
- - uid: 13337
+ - uid: 13343
components:
- pos: -13.5,-51.5
parent: 2
type: Transform
- - uid: 13338
+ - uid: 13344
components:
- pos: -13.5,-52.5
parent: 2
type: Transform
- - uid: 13339
+ - uid: 13345
components:
- rot: 1.5707963267948966 rad
pos: -14.5,-53.5
parent: 2
type: Transform
- - uid: 13340
+ - uid: 13346
components:
- rot: 1.5707963267948966 rad
pos: -16.5,-54.5
parent: 2
type: Transform
- - uid: 13341
+ - uid: 13347
components:
- pos: -17.5,-56.5
parent: 2
type: Transform
- - uid: 13342
+ - uid: 13348
components:
- rot: 3.141592653589793 rad
pos: -17.5,-58.5
parent: 2
type: Transform
- - uid: 13343
+ - uid: 13349
components:
- rot: 3.141592653589793 rad
pos: -17.5,-59.5
parent: 2
type: Transform
- - uid: 13344
+ - uid: 13350
components:
- rot: 1.5707963267948966 rad
pos: -18.5,-57.5
parent: 2
type: Transform
- - uid: 13345
+ - uid: 13351
components:
- rot: 1.5707963267948966 rad
pos: -19.5,-57.5
parent: 2
type: Transform
- - uid: 13346
+ - uid: 13352
components:
- pos: -19.5,-69.5
parent: 2
type: Transform
- - uid: 13347
+ - uid: 13353
components:
- pos: -19.5,-70.5
parent: 2
type: Transform
- - uid: 13348
+ - uid: 13354
components:
- pos: -19.5,-71.5
parent: 2
type: Transform
- - uid: 13349
+ - uid: 13355
components:
- pos: -19.5,-72.5
parent: 2
type: Transform
- - uid: 13350
+ - uid: 13356
components:
- rot: 1.5707963267948966 rad
pos: -18.5,-73.5
parent: 2
type: Transform
- - uid: 13351
+ - uid: 13357
components:
- rot: 1.5707963267948966 rad
pos: -21.5,-73.5
parent: 2
type: Transform
- - uid: 13352
+ - uid: 13358
components:
- rot: -1.5707963267948966 rad
pos: -22.5,-73.5
parent: 2
type: Transform
- - uid: 13353
+ - uid: 13359
components:
- pos: -23.5,-82.5
parent: 2
type: Transform
- - uid: 13354
+ - uid: 13360
components:
- rot: 1.5707963267948966 rad
pos: -9.5,-53.5
parent: 2
type: Transform
- - uid: 13355
+ - uid: 13361
components:
- rot: 1.5707963267948966 rad
pos: -2.5,-53.5
parent: 2
type: Transform
- - uid: 13356
+ - uid: 13362
components:
- pos: 18.5,-4.5
parent: 2
type: Transform
- - uid: 13357
+ - uid: 13363
components:
- rot: -1.5707963267948966 rad
pos: 9.5,13.5
parent: 2
type: Transform
- - uid: 13358
+ - uid: 13364
components:
- rot: -1.5707963267948966 rad
pos: 1.5,-25.5
parent: 2
type: Transform
- - uid: 13359
+ - uid: 13365
components:
- pos: 30.5,-77.5
parent: 2
type: Transform
- - uid: 13360
+ - uid: 13366
components:
- pos: -4.5,-29.5
parent: 2
type: Transform
- - uid: 13361
+ - uid: 13367
components:
- rot: 3.141592653589793 rad
pos: 17.5,6.5
parent: 2
type: Transform
- - uid: 13362
+ - uid: 13368
components:
- pos: 12.5,10.5
parent: 2
type: Transform
- - uid: 13363
+ - uid: 13369
components:
- pos: 18.5,-0.5
parent: 2
type: Transform
- - uid: 13364
+ - uid: 13370
components:
- pos: 12.5,9.5
parent: 2
type: Transform
- - uid: 13365
+ - uid: 13371
components:
- pos: 12.5,3.5
parent: 2
type: Transform
- - uid: 13366
+ - uid: 13372
components:
- rot: 3.141592653589793 rad
pos: 17.5,4.5
parent: 2
type: Transform
- - uid: 13367
+ - uid: 13373
components:
- rot: 3.141592653589793 rad
pos: 17.5,2.5
parent: 2
type: Transform
- - uid: 13368
+ - uid: 13374
components:
- pos: 18.5,-1.5
parent: 2
type: Transform
- - uid: 13369
+ - uid: 13375
components:
- rot: -1.5707963267948966 rad
pos: 15.5,0.5
parent: 2
type: Transform
- - uid: 13370
+ - uid: 13376
components:
- pos: 10.5,-1.5
parent: 2
type: Transform
- - uid: 13371
+ - uid: 13377
components:
- pos: 6.5,-1.5
parent: 2
type: Transform
- - uid: 13372
+ - uid: 13378
components:
- rot: 1.5707963267948966 rad
pos: 8.5,-0.5
parent: 2
type: Transform
- - uid: 13373
+ - uid: 13379
components:
- rot: -1.5707963267948966 rad
pos: 2.5,-25.5
parent: 2
type: Transform
- - uid: 13374
+ - uid: 13380
components:
- rot: 1.5707963267948966 rad
pos: 4.5,2.5
parent: 2
type: Transform
- - uid: 13375
+ - uid: 13381
components:
- rot: 1.5707963267948966 rad
pos: 5.5,2.5
parent: 2
type: Transform
- - uid: 13376
+ - uid: 13382
components:
- rot: 1.5707963267948966 rad
pos: -11.5,-53.5
parent: 2
type: Transform
- - uid: 13377
+ - uid: 13383
components:
- rot: 1.5707963267948966 rad
pos: -22.5,-84.5
parent: 2
type: Transform
- - uid: 13378
+ - uid: 13384
components:
- pos: -23.5,-83.5
parent: 2
type: Transform
- - uid: 13379
+ - uid: 13385
components:
- pos: -23.5,-78.5
parent: 2
type: Transform
- - uid: 13380
+ - uid: 13386
components:
- rot: 1.5707963267948966 rad
pos: 7.5,2.5
parent: 2
type: Transform
- - uid: 13381
+ - uid: 13387
components:
- rot: -1.5707963267948966 rad
pos: 11.5,-25.5
parent: 2
type: Transform
- - uid: 13382
+ - uid: 13388
components:
- pos: 24.5,-16.5
parent: 2
type: Transform
- - uid: 13383
+ - uid: 13389
components:
- rot: -1.5707963267948966 rad
pos: -15.5,-43.5
parent: 2
type: Transform
- - uid: 13384
+ - uid: 13390
components:
- rot: -1.5707963267948966 rad
pos: 11.5,2.5
parent: 2
type: Transform
- - uid: 13385
+ - uid: 13391
components:
- rot: 1.5707963267948966 rad
pos: 22.5,-6.5
parent: 2
type: Transform
- - uid: 13386
+ - uid: 13392
components:
- pos: 24.5,-8.5
parent: 2
type: Transform
- - uid: 13387
+ - uid: 13393
components:
- rot: -1.5707963267948966 rad
pos: 25.5,-10.5
parent: 2
type: Transform
- - uid: 13388
+ - uid: 13394
components:
- pos: 16.5,-19.5
parent: 2
type: Transform
- - uid: 13389
+ - uid: 13395
components:
- rot: -1.5707963267948966 rad
pos: 6.5,-25.5
parent: 2
type: Transform
- - uid: 13390
+ - uid: 13396
components:
- rot: -1.5707963267948966 rad
pos: 5.5,-25.5
parent: 2
type: Transform
- - uid: 13391
+ - uid: 13397
components:
- rot: -1.5707963267948966 rad
pos: -0.5,-25.5
parent: 2
type: Transform
- - uid: 13392
+ - uid: 13398
components:
- pos: -7.5,-0.5
parent: 2
type: Transform
- - uid: 13393
+ - uid: 13399
components:
- rot: 3.141592653589793 rad
pos: -5.5,-22.5
parent: 2
type: Transform
- - uid: 13394
+ - uid: 13400
components:
- rot: -1.5707963267948966 rad
pos: 10.5,-25.5
parent: 2
type: Transform
- - uid: 13395
+ - uid: 13401
components:
- rot: 3.141592653589793 rad
pos: -0.5,-49.5
parent: 2
type: Transform
- - uid: 13396
+ - uid: 13402
components:
- rot: 3.141592653589793 rad
pos: -0.5,-46.5
parent: 2
type: Transform
- - uid: 13397
+ - uid: 13403
components:
- rot: 3.141592653589793 rad
pos: 15.5,-28.5
parent: 2
type: Transform
- - uid: 13398
+ - uid: 13404
components:
- pos: 18.5,-5.5
parent: 2
type: Transform
- - uid: 13399
+ - uid: 13405
components:
- rot: 3.141592653589793 rad
pos: 18.5,8.5
parent: 2
type: Transform
- - uid: 13400
+ - uid: 13406
components:
- rot: 1.5707963267948966 rad
pos: 19.5,-6.5
parent: 2
type: Transform
- - uid: 13401
+ - uid: 13407
components:
- rot: -1.5707963267948966 rad
pos: 4.5,-25.5
parent: 2
type: Transform
- - uid: 13402
+ - uid: 13408
components:
- rot: 1.5707963267948966 rad
pos: 4.5,-0.5
parent: 2
type: Transform
- - uid: 13403
+ - uid: 13409
components:
- rot: 3.141592653589793 rad
pos: -4.5,-5.5
parent: 2
type: Transform
- - uid: 13404
+ - uid: 13410
components:
- rot: 3.141592653589793 rad
pos: -3.5,-25.5
parent: 2
type: Transform
- - uid: 13405
+ - uid: 13411
components:
- rot: 1.5707963267948966 rad
pos: 12.5,-27.5
parent: 2
type: Transform
- - uid: 13406
+ - uid: 13412
components:
- pos: 18.5,-28.5
parent: 2
type: Transform
- - uid: 13407
+ - uid: 13413
components:
- pos: -23.5,-79.5
parent: 2
type: Transform
- - uid: 13408
+ - uid: 13414
components:
- rot: 1.5707963267948966 rad
pos: -24.5,-75.5
parent: 2
type: Transform
- - uid: 13409
+ - uid: 13415
components:
- rot: 1.5707963267948966 rad
pos: -7.5,-53.5
parent: 2
type: Transform
- - uid: 13410
+ - uid: 13416
components:
- rot: 1.5707963267948966 rad
pos: 9.5,-0.5
parent: 2
type: Transform
- - uid: 13411
+ - uid: 13417
components:
- rot: 1.5707963267948966 rad
pos: -5.5,-9.5
parent: 2
type: Transform
- - uid: 13412
+ - uid: 13418
components:
- pos: 6.5,3.5
parent: 2
type: Transform
- - uid: 13413
+ - uid: 13419
components:
- rot: -1.5707963267948966 rad
pos: 3.5,-25.5
parent: 2
type: Transform
- - uid: 13414
+ - uid: 13420
components:
- pos: 18.5,0.5
parent: 2
type: Transform
- - uid: 13415
+ - uid: 13421
components:
- rot: 3.141592653589793 rad
pos: 3.5,-1.5
parent: 2
type: Transform
- - uid: 13416
+ - uid: 13422
components:
- rot: 3.141592653589793 rad
pos: -3.5,-24.5
parent: 2
type: Transform
- - uid: 13417
+ - uid: 13423
components:
- rot: 1.5707963267948966 rad
pos: 15.5,-43.5
parent: 2
type: Transform
- - uid: 13418
+ - uid: 13424
components:
- rot: 3.141592653589793 rad
pos: -5.5,-21.5
parent: 2
type: Transform
- - uid: 13419
+ - uid: 13425
components:
- rot: 1.5707963267948966 rad
pos: 11.5,-3.5
parent: 2
type: Transform
- - uid: 13420
+ - uid: 13426
components:
- rot: -1.5707963267948966 rad
pos: 8.5,-25.5
parent: 2
type: Transform
- - uid: 13421
+ - uid: 13427
components:
- rot: 1.5707963267948966 rad
pos: 20.5,-6.5
parent: 2
type: Transform
- - uid: 13422
- components:
- - rot: 3.141592653589793 rad
- pos: 15.5,-41.5
- parent: 2
- type: Transform
- - uid: 13423
+ - uid: 13428
components:
- pos: -5.5,-54.5
parent: 2
type: Transform
- - uid: 13424
+ - uid: 13429
components:
- rot: -1.5707963267948966 rad
pos: 2.5,-43.5
parent: 2
type: Transform
- - uid: 13425
+ - uid: 13430
components:
- pos: -4.5,-35.5
parent: 2
type: Transform
- - uid: 13426
+ - uid: 13431
components:
- pos: -4.5,-31.5
parent: 2
type: Transform
- - uid: 13427
+ - uid: 13432
components:
- pos: -4.5,-28.5
parent: 2
type: Transform
- - uid: 13428
+ - uid: 13433
components:
- pos: -19.5,-65.5
parent: 2
type: Transform
- - uid: 13429
+ - uid: 13434
components:
- pos: 36.5,-26.5
parent: 2
type: Transform
- - uid: 13430
+ - uid: 13435
components:
- pos: 36.5,-23.5
parent: 2
type: Transform
- - uid: 13431
+ - uid: 13436
components:
- pos: 34.5,-5.5
parent: 2
type: Transform
- - uid: 13432
+ - uid: 13437
components:
- pos: 34.5,0.5
parent: 2
type: Transform
- - uid: 13433
+ - uid: 13438
components:
- rot: 3.141592653589793 rad
pos: 34.5,2.5
parent: 2
type: Transform
- - uid: 13434
+ - uid: 13439
components:
- rot: 3.141592653589793 rad
pos: 34.5,4.5
parent: 2
type: Transform
- - uid: 13435
+ - uid: 13440
components:
- pos: 34.5,-3.5
parent: 2
type: Transform
- - uid: 13436
+ - uid: 13441
components:
- rot: 1.5707963267948966 rad
pos: 14.5,-43.5
parent: 2
type: Transform
- - uid: 13437
+ - uid: 13442
components:
- rot: 1.5707963267948966 rad
pos: 3.5,-43.5
parent: 2
type: Transform
- - uid: 13438
+ - uid: 13443
components:
- rot: 1.5707963267948966 rad
pos: 22.5,-43.5
parent: 2
type: Transform
- - uid: 13439
+ - uid: 13444
components:
- rot: 3.141592653589793 rad
pos: -3.5,-19.5
parent: 2
type: Transform
- - uid: 13440
+ - uid: 13445
components:
- rot: 3.141592653589793 rad
pos: -4.5,-6.5
parent: 2
type: Transform
- - uid: 13441
+ - uid: 13446
components:
- rot: 1.5707963267948966 rad
pos: 21.5,-18.5
parent: 2
type: Transform
- - uid: 13442
+ - uid: 13447
components:
- rot: 1.5707963267948966 rad
pos: 23.5,-18.5
parent: 2
type: Transform
- - uid: 13443
+ - uid: 13448
components:
- pos: 24.5,-14.5
parent: 2
type: Transform
- - uid: 13444
+ - uid: 13449
components:
- rot: 1.5707963267948966 rad
pos: 9.5,2.5
parent: 2
type: Transform
- - uid: 13445
+ - uid: 13450
components:
- rot: 1.5707963267948966 rad
pos: 26.5,-43.5
parent: 2
type: Transform
- - uid: 13446
+ - uid: 13451
components:
- rot: 1.5707963267948966 rad
pos: -20.5,-73.5
parent: 2
type: Transform
- - uid: 13447
+ - uid: 13452
components:
- pos: -23.5,-76.5
parent: 2
type: Transform
- - uid: 13448
+ - uid: 13453
components:
- pos: -19.5,-64.5
parent: 2
type: Transform
- - uid: 13449
+ - uid: 13454
components:
- pos: -19.5,-62.5
parent: 2
type: Transform
- - uid: 13450
+ - uid: 13455
components:
- pos: -19.5,-66.5
parent: 2
type: Transform
- - uid: 13451
+ - uid: 13456
components:
- pos: -19.5,-68.5
parent: 2
type: Transform
- - uid: 13452
+ - uid: 13457
components:
- pos: -19.5,-67.5
parent: 2
type: Transform
- - uid: 13453
+ - uid: 13458
components:
- rot: 3.141592653589793 rad
pos: -3.5,-20.5
parent: 2
type: Transform
- - uid: 13454
+ - uid: 13459
components:
- rot: 3.141592653589793 rad
pos: 15.5,-26.5
parent: 2
type: Transform
- - uid: 13455
+ - uid: 13460
components:
- rot: 1.5707963267948966 rad
pos: -6.5,0.5
parent: 2
type: Transform
- - uid: 13456
+ - uid: 13461
components:
- rot: 3.141592653589793 rad
pos: -5.5,-23.5
parent: 2
type: Transform
- - uid: 13457
+ - uid: 13462
components:
- rot: 3.141592653589793 rad
pos: -5.5,-24.5
parent: 2
type: Transform
- - uid: 13458
+ - uid: 13463
components:
- rot: -1.5707963267948966 rad
pos: 13.5,5.5
parent: 2
type: Transform
- - uid: 13459
+ - uid: 13464
components:
- pos: 12.5,8.5
parent: 2
type: Transform
- - uid: 13460
+ - uid: 13465
components:
- rot: 3.141592653589793 rad
pos: 17.5,5.5
parent: 2
type: Transform
- - uid: 13461
+ - uid: 13466
components:
- pos: 17.5,9.5
parent: 2
type: Transform
- - uid: 13462
+ - uid: 13467
components:
- pos: 12.5,4.5
parent: 2
type: Transform
- - uid: 13463
+ - uid: 13468
components:
- rot: -1.5707963267948966 rad
pos: 12.5,-0.5
parent: 2
type: Transform
- - uid: 13464
+ - uid: 13469
components:
- pos: -4.5,-41.5
parent: 2
type: Transform
- - uid: 13465
+ - uid: 13470
components:
- pos: -4.5,-39.5
parent: 2
type: Transform
- - uid: 13466
+ - uid: 13471
components:
- pos: -4.5,-37.5
parent: 2
type: Transform
- - uid: 13467
+ - uid: 13472
components:
- rot: 1.5707963267948966 rad
pos: 4.5,-27.5
parent: 2
type: Transform
- - uid: 13468
+ - uid: 13473
components:
- rot: -1.5707963267948966 rad
pos: -18.5,-43.5
parent: 2
type: Transform
- - uid: 13469
+ - uid: 13474
components:
- rot: 1.5707963267948966 rad
pos: 33.5,-43.5
parent: 2
type: Transform
- - uid: 13470
+ - uid: 13475
components:
- rot: 3.141592653589793 rad
pos: -6.5,-65.5
parent: 2
type: Transform
- - uid: 13471
+ - uid: 13476
components:
- rot: 1.5707963267948966 rad
pos: -7.5,-66.5
parent: 2
type: Transform
- - uid: 13472
+ - uid: 13477
components:
- rot: 3.141592653589793 rad
pos: 18.5,-52.5
parent: 2
type: Transform
- - uid: 13473
+ - uid: 13478
components:
- pos: -10.5,-24.5
parent: 2
type: Transform
- - uid: 13474
+ - uid: 13479
components:
- pos: -10.5,-25.5
parent: 2
type: Transform
- - uid: 13475
+ - uid: 13480
components:
- pos: -10.5,-26.5
parent: 2
type: Transform
- - uid: 13476
+ - uid: 13481
components:
- rot: 1.5707963267948966 rad
pos: 21.5,-43.5
parent: 2
type: Transform
- - uid: 13477
+ - uid: 13482
components:
- rot: 3.141592653589793 rad
pos: 25.5,-46.5
parent: 2
type: Transform
- - uid: 13478
+ - uid: 13483
components:
- rot: 3.141592653589793 rad
pos: 25.5,-45.5
parent: 2
type: Transform
- - uid: 13479
+ - uid: 13484
components:
- rot: 3.141592653589793 rad
pos: 25.5,-44.5
parent: 2
type: Transform
- - uid: 13480
+ - uid: 13485
components:
- rot: 1.5707963267948966 rad
pos: 24.5,-43.5
parent: 2
type: Transform
- - uid: 13481
+ - uid: 13486
components:
- rot: 1.5707963267948966 rad
pos: 23.5,-43.5
parent: 2
type: Transform
- - uid: 13482
+ - uid: 13487
components:
- rot: 1.5707963267948966 rad
pos: 32.5,-43.5
parent: 2
type: Transform
- - uid: 13483
+ - uid: 13488
components:
- rot: 1.5707963267948966 rad
pos: 31.5,-43.5
parent: 2
type: Transform
- - uid: 13484
+ - uid: 13489
components:
- rot: 1.5707963267948966 rad
pos: 30.5,-43.5
parent: 2
type: Transform
- - uid: 13485
+ - uid: 13490
components:
- rot: 1.5707963267948966 rad
pos: 29.5,-43.5
parent: 2
type: Transform
- - uid: 13486
+ - uid: 13491
components:
- rot: 1.5707963267948966 rad
pos: 28.5,-43.5
parent: 2
type: Transform
- - uid: 13487
+ - uid: 13492
components:
- rot: 1.5707963267948966 rad
pos: 27.5,-43.5
parent: 2
type: Transform
- - uid: 13488
+ - uid: 13493
components:
- rot: 1.5707963267948966 rad
pos: 34.5,-43.5
parent: 2
type: Transform
- - uid: 13489
+ - uid: 13494
components:
- rot: 1.5707963267948966 rad
pos: -13.5,-9.5
parent: 2
type: Transform
- - uid: 13490
+ - uid: 13495
components:
- rot: 1.5707963267948966 rad
pos: -1.5,-53.5
parent: 2
type: Transform
- - uid: 13491
+ - uid: 13496
components:
- rot: 1.5707963267948966 rad
pos: -8.5,-53.5
parent: 2
type: Transform
- - uid: 13492
+ - uid: 13497
components:
- rot: 1.5707963267948966 rad
pos: -10.5,-53.5
parent: 2
type: Transform
- - uid: 13493
+ - uid: 13498
components:
- rot: 1.5707963267948966 rad
pos: -4.5,-53.5
parent: 2
type: Transform
- - uid: 13494
+ - uid: 13499
components:
- rot: 1.5707963267948966 rad
pos: -3.5,-53.5
parent: 2
type: Transform
- - uid: 13495
+ - uid: 13500
components:
- pos: 36.5,-29.5
parent: 2
type: Transform
- - uid: 13496
+ - uid: 13501
components:
- pos: 36.5,-30.5
parent: 2
type: Transform
- - uid: 13497
+ - uid: 13502
components:
- pos: 36.5,-31.5
parent: 2
type: Transform
- - uid: 13498
+ - uid: 13503
components:
- pos: 36.5,-32.5
parent: 2
type: Transform
- - uid: 13499
+ - uid: 13504
components:
- pos: 36.5,-33.5
parent: 2
type: Transform
- - uid: 13500
+ - uid: 13505
components:
- pos: 36.5,-34.5
parent: 2
type: Transform
- - uid: 13501
+ - uid: 13506
components:
- pos: 36.5,-35.5
parent: 2
type: Transform
- - uid: 13502
+ - uid: 13507
components:
- pos: 36.5,-36.5
parent: 2
type: Transform
- - uid: 13503
+ - uid: 13508
components:
- pos: 36.5,-37.5
parent: 2
type: Transform
- - uid: 13504
+ - uid: 13509
components:
- pos: 36.5,-38.5
parent: 2
type: Transform
- - uid: 13505
+ - uid: 13510
components:
- pos: 36.5,-39.5
parent: 2
type: Transform
- - uid: 13506
+ - uid: 13511
components:
- pos: 36.5,-40.5
parent: 2
type: Transform
- - uid: 13507
+ - uid: 13512
components:
- pos: 36.5,-41.5
parent: 2
type: Transform
- - uid: 13508
+ - uid: 13513
components:
- pos: 36.5,-42.5
parent: 2
type: Transform
- - uid: 13509
+ - uid: 13514
components:
- rot: -1.5707963267948966 rad
pos: 35.5,-43.5
parent: 2
type: Transform
- - uid: 13510
+ - uid: 13515
components:
- rot: -1.5707963267948966 rad
pos: 37.5,-43.5
parent: 2
type: Transform
- - uid: 13511
+ - uid: 13516
components:
- rot: -1.5707963267948966 rad
pos: 38.5,-43.5
parent: 2
type: Transform
- - uid: 13512
+ - uid: 13517
components:
- rot: -1.5707963267948966 rad
pos: 39.5,-43.5
parent: 2
type: Transform
- - uid: 13513
+ - uid: 13518
components:
- rot: -1.5707963267948966 rad
pos: 40.5,-43.5
parent: 2
type: Transform
- - uid: 13514
+ - uid: 13519
components:
- rot: -1.5707963267948966 rad
pos: 41.5,-43.5
parent: 2
type: Transform
- - uid: 13515
+ - uid: 13520
components:
- rot: -1.5707963267948966 rad
pos: 35.5,1.5
parent: 2
type: Transform
- - uid: 13516
+ - uid: 13521
components:
- rot: -1.5707963267948966 rad
pos: 36.5,1.5
parent: 2
type: Transform
- - uid: 13517
+ - uid: 13522
components:
- rot: -1.5707963267948966 rad
pos: 37.5,1.5
parent: 2
type: Transform
- - uid: 13518
+ - uid: 13523
components:
- rot: -1.5707963267948966 rad
pos: 38.5,1.5
parent: 2
type: Transform
- - uid: 13519
+ - uid: 13524
components:
- rot: -1.5707963267948966 rad
pos: 39.5,1.5
parent: 2
type: Transform
- - uid: 13520
+ - uid: 13525
components:
- rot: -1.5707963267948966 rad
pos: 17.5,17.5
parent: 2
type: Transform
- - uid: 13521
+ - uid: 13526
components:
- rot: -1.5707963267948966 rad
pos: 18.5,17.5
parent: 2
type: Transform
- - uid: 13522
+ - uid: 13527
components:
- rot: -1.5707963267948966 rad
pos: 16.5,17.5
parent: 2
type: Transform
- - uid: 13523
+ - uid: 13528
components:
- pos: 15.5,18.5
parent: 2
type: Transform
- - uid: 13524
+ - uid: 13529
components:
- rot: 1.5707963267948966 rad
pos: -10.5,0.5
parent: 2
type: Transform
- - uid: 13525
+ - uid: 13530
components:
- rot: 1.5707963267948966 rad
pos: -11.5,0.5
parent: 2
type: Transform
- - uid: 13526
+ - uid: 13531
components:
- rot: 1.5707963267948966 rad
pos: -12.5,0.5
parent: 2
type: Transform
- - uid: 13527
+ - uid: 13532
components:
- rot: 3.141592653589793 rad
pos: 15.5,-34.5
parent: 2
type: Transform
- - uid: 13528
+ - uid: 13533
components:
- rot: 3.141592653589793 rad
pos: -3.5,-21.5
parent: 2
type: Transform
- - uid: 13529
+ - uid: 13534
components:
- rot: -1.5707963267948966 rad
pos: 12.5,-25.5
parent: 2
type: Transform
- - uid: 13530
+ - uid: 13535
components:
- rot: -1.5707963267948966 rad
pos: 13.5,-25.5
parent: 2
type: Transform
- - uid: 13531
+ - uid: 13536
components:
- rot: 3.141592653589793 rad
pos: -4.5,-8.5
parent: 2
type: Transform
- - uid: 13532
+ - uid: 13537
components:
- rot: -1.5707963267948966 rad
pos: 0.5,-25.5
parent: 2
type: Transform
- - uid: 13533
+ - uid: 13538
components:
- rot: 1.5707963267948966 rad
pos: -8.5,-9.5
parent: 2
type: Transform
- - uid: 13534
+ - uid: 13539
components:
- rot: 1.5707963267948966 rad
pos: -11.5,-9.5
parent: 2
type: Transform
- - uid: 13535
+ - uid: 13540
components:
- rot: 1.5707963267948966 rad
pos: -10.5,-9.5
parent: 2
type: Transform
- - uid: 13536
+ - uid: 13541
components:
- rot: 1.5707963267948966 rad
pos: -12.5,-9.5
parent: 2
type: Transform
- - uid: 13537
+ - uid: 13542
components:
- pos: -4.5,-0.5
parent: 2
type: Transform
- - uid: 13538
+ - uid: 13543
components:
- rot: 3.141592653589793 rad
pos: 15.5,-32.5
parent: 2
type: Transform
- - uid: 13539
+ - uid: 13544
components:
- rot: 3.141592653589793 rad
pos: -4.5,-11.5
parent: 2
type: Transform
- - uid: 13540
+ - uid: 13545
components:
- rot: 3.141592653589793 rad
pos: 15.5,-29.5
parent: 2
type: Transform
- - uid: 13541
+ - uid: 13546
components:
- rot: 3.141592653589793 rad
pos: 15.5,-36.5
parent: 2
type: Transform
- - uid: 13542
+ - uid: 13547
components:
- rot: 3.141592653589793 rad
pos: 15.5,-35.5
parent: 2
type: Transform
- - uid: 13543
+ - uid: 13548
components:
- rot: 3.141592653589793 rad
pos: 15.5,-27.5
parent: 2
type: Transform
- - uid: 13544
+ - uid: 13549
components:
- rot: -1.5707963267948966 rad
pos: 9.5,-25.5
parent: 2
type: Transform
- - uid: 13545
+ - uid: 13550
components:
- rot: -1.5707963267948966 rad
pos: 14.5,-25.5
parent: 2
type: Transform
- - uid: 13546
+ - uid: 13551
components:
- rot: 3.141592653589793 rad
pos: -3.5,-14.5
parent: 2
type: Transform
- - uid: 13547
+ - uid: 13552
components:
- rot: 3.141592653589793 rad
pos: -3.5,-17.5
parent: 2
type: Transform
- - uid: 13548
+ - uid: 13553
components:
- rot: 3.141592653589793 rad
pos: -3.5,-15.5
parent: 2
type: Transform
- - uid: 13549
+ - uid: 13554
components:
- pos: 17.5,-47.5
parent: 2
type: Transform
- - uid: 13550
+ - uid: 13555
components:
- rot: 1.5707963267948966 rad
pos: 33.5,16.5
parent: 2
type: Transform
- - uid: 13551
+ - uid: 13556
components:
- rot: 1.5707963267948966 rad
pos: 32.5,16.5
parent: 2
type: Transform
- - uid: 13552
+ - uid: 13557
components:
- rot: 1.5707963267948966 rad
pos: 31.5,16.5
parent: 2
type: Transform
- - uid: 13553
+ - uid: 13558
components:
- rot: 1.5707963267948966 rad
pos: 30.5,16.5
parent: 2
type: Transform
- - uid: 13554
+ - uid: 13559
components:
- rot: 3.141592653589793 rad
pos: 41.5,5.5
parent: 2
type: Transform
- - uid: 13555
+ - uid: 13560
components:
- rot: 3.141592653589793 rad
pos: 41.5,4.5
parent: 2
type: Transform
- - uid: 13556
+ - uid: 13561
components:
- rot: 3.141592653589793 rad
pos: 41.5,3.5
parent: 2
type: Transform
- - uid: 13557
+ - uid: 13562
components:
- rot: 3.141592653589793 rad
pos: 41.5,2.5
parent: 2
type: Transform
- - uid: 13558
+ - uid: 13563
components:
- rot: -1.5707963267948966 rad
pos: 40.5,1.5
parent: 2
type: Transform
- - uid: 13559
+ - uid: 13564
components:
- rot: -1.5707963267948966 rad
pos: 42.5,1.5
parent: 2
type: Transform
- - uid: 13560
+ - uid: 13565
components:
- rot: -1.5707963267948966 rad
pos: 43.5,1.5
parent: 2
type: Transform
- - uid: 13561
+ - uid: 13566
components:
- rot: -1.5707963267948966 rad
pos: 44.5,1.5
parent: 2
type: Transform
- - uid: 13562
+ - uid: 13567
components:
- rot: -1.5707963267948966 rad
pos: 45.5,1.5
parent: 2
type: Transform
- - uid: 13563
+ - uid: 13568
components:
- rot: -1.5707963267948966 rad
pos: 46.5,1.5
parent: 2
type: Transform
- - uid: 13564
+ - uid: 13569
components:
- rot: -1.5707963267948966 rad
pos: 47.5,1.5
parent: 2
type: Transform
- - uid: 13565
+ - uid: 13570
components:
- rot: -1.5707963267948966 rad
pos: 48.5,1.5
parent: 2
type: Transform
- - uid: 13566
+ - uid: 13571
components:
- rot: -1.5707963267948966 rad
pos: 49.5,1.5
parent: 2
type: Transform
- - uid: 13567
+ - uid: 13572
components:
- rot: -1.5707963267948966 rad
pos: 50.5,1.5
parent: 2
type: Transform
- - uid: 13568
+ - uid: 13573
components:
- rot: -1.5707963267948966 rad
pos: 51.5,1.5
parent: 2
type: Transform
- - uid: 13569
+ - uid: 13574
components:
- rot: 3.141592653589793 rad
pos: 52.5,2.5
parent: 2
type: Transform
- - uid: 13570
+ - uid: 13575
components:
- rot: 3.141592653589793 rad
pos: 52.5,0.5
parent: 2
type: Transform
- - uid: 13571
+ - uid: 13576
components:
- rot: 3.141592653589793 rad
pos: 52.5,-0.5
parent: 2
type: Transform
- - uid: 13572
+ - uid: 13577
components:
- rot: 3.141592653589793 rad
pos: 52.5,-1.5
parent: 2
type: Transform
- - uid: 13573
+ - uid: 13578
components:
- rot: 3.141592653589793 rad
pos: 52.5,-2.5
parent: 2
type: Transform
- - uid: 13574
+ - uid: 13579
components:
- rot: 3.141592653589793 rad
pos: 52.5,-3.5
parent: 2
type: Transform
- - uid: 13575
+ - uid: 13580
components:
- rot: 3.141592653589793 rad
pos: 52.5,-4.5
parent: 2
type: Transform
- - uid: 13576
+ - uid: 13581
components:
- rot: 3.141592653589793 rad
pos: 52.5,-5.5
parent: 2
type: Transform
- - uid: 13577
+ - uid: 13582
components:
- rot: 3.141592653589793 rad
pos: 52.5,-6.5
parent: 2
type: Transform
- - uid: 13578
+ - uid: 13583
components:
- rot: 3.141592653589793 rad
pos: 52.5,-7.5
parent: 2
type: Transform
- - uid: 13579
+ - uid: 13584
components:
- rot: 3.141592653589793 rad
pos: 52.5,-8.5
parent: 2
type: Transform
- - uid: 13580
+ - uid: 13585
components:
- pos: 25.5,-47.5
parent: 2
type: Transform
- - uid: 13581
+ - uid: 13586
components:
- pos: 25.5,-48.5
parent: 2
type: Transform
- - uid: 13582
+ - uid: 13587
components:
- pos: 25.5,-49.5
parent: 2
type: Transform
- - uid: 13583
+ - uid: 13588
components:
- pos: 25.5,-50.5
parent: 2
type: Transform
- - uid: 13584
+ - uid: 13589
components:
- pos: 25.5,-51.5
parent: 2
type: Transform
- - uid: 13585
+ - uid: 13590
components:
- pos: 25.5,-52.5
parent: 2
type: Transform
- - uid: 13586
+ - uid: 13591
components:
- rot: 3.141592653589793 rad
pos: 15.5,-37.5
parent: 2
type: Transform
- - uid: 13587
+ - uid: 13592
components:
- pos: 25.5,-54.5
parent: 2
type: Transform
- - uid: 13588
+ - uid: 13593
components:
- pos: 25.5,-55.5
parent: 2
type: Transform
- - uid: 13589
+ - uid: 13594
components:
- pos: 25.5,-56.5
parent: 2
type: Transform
- - uid: 13590
+ - uid: 13595
components:
- pos: 25.5,-57.5
parent: 2
type: Transform
- - uid: 13591
+ - uid: 13596
components:
- pos: 25.5,-58.5
parent: 2
type: Transform
- - uid: 13592
+ - uid: 13597
components:
- rot: 3.141592653589793 rad
pos: -3.5,-16.5
parent: 2
type: Transform
- - uid: 13593
- components:
- - rot: 3.141592653589793 rad
- pos: 15.5,-43.5
- parent: 2
- type: Transform
- - uid: 13594
+ - uid: 13598
components:
- pos: 52.5,-9.5
parent: 2
type: Transform
- - uid: 13595
+ - uid: 13599
components:
- pos: 52.5,-10.5
parent: 2
type: Transform
- - uid: 13596
+ - uid: 13600
components:
- pos: 52.5,-11.5
parent: 2
type: Transform
- - uid: 13597
+ - uid: 13601
components:
- pos: 52.5,-12.5
parent: 2
type: Transform
- - uid: 13598
+ - uid: 13602
components:
- rot: -1.5707963267948966 rad
pos: 53.5,-13.5
parent: 2
type: Transform
- - uid: 13599
+ - uid: 13603
components:
- rot: -1.5707963267948966 rad
pos: 42.5,-43.5
parent: 2
type: Transform
- - uid: 13600
+ - uid: 13604
components:
- rot: -1.5707963267948966 rad
pos: 43.5,-43.5
parent: 2
type: Transform
- - uid: 13601
+ - uid: 13605
components:
- rot: -1.5707963267948966 rad
pos: 44.5,-43.5
parent: 2
type: Transform
- - uid: 13602
+ - uid: 13606
components:
- rot: -1.5707963267948966 rad
pos: 45.5,-43.5
parent: 2
type: Transform
- - uid: 13603
+ - uid: 13607
components:
- rot: -1.5707963267948966 rad
pos: 47.5,-43.5
parent: 2
type: Transform
- - uid: 13604
+ - uid: 13608
components:
- rot: -1.5707963267948966 rad
pos: 48.5,-43.5
parent: 2
type: Transform
- - uid: 13605
+ - uid: 13609
components:
- pos: 49.5,-44.5
parent: 2
type: Transform
- - uid: 13606
+ - uid: 13610
components:
- rot: 3.141592653589793 rad
pos: 49.5,-46.5
parent: 2
type: Transform
- - uid: 13607
+ - uid: 13611
components:
- rot: 1.5707963267948966 rad
pos: 50.5,-47.5
parent: 2
type: Transform
- - uid: 13608
+ - uid: 13612
components:
- pos: 49.5,-48.5
parent: 2
type: Transform
- - uid: 13609
+ - uid: 13613
components:
- pos: 49.5,-49.5
parent: 2
type: Transform
- - uid: 13610
+ - uid: 13614
components:
- rot: -1.5707963267948966 rad
pos: 50.5,-45.5
parent: 2
type: Transform
- - uid: 13611
+ - uid: 13615
components:
- rot: -1.5707963267948966 rad
pos: 51.5,-45.5
parent: 2
type: Transform
- - uid: 13612
+ - uid: 13616
components:
- rot: -1.5707963267948966 rad
pos: 52.5,-45.5
parent: 2
type: Transform
- - uid: 13613
+ - uid: 13617
components:
- rot: -1.5707963267948966 rad
pos: 53.5,-45.5
parent: 2
type: Transform
- - uid: 13614
+ - uid: 13618
components:
- rot: -1.5707963267948966 rad
pos: 54.5,-45.5
parent: 2
type: Transform
- - uid: 13615
+ - uid: 13619
components:
- rot: -1.5707963267948966 rad
pos: 55.5,-45.5
parent: 2
type: Transform
- - uid: 13616
+ - uid: 13620
components:
- rot: -1.5707963267948966 rad
pos: 56.5,-45.5
parent: 2
type: Transform
- - uid: 13617
+ - uid: 13621
components:
- rot: -1.5707963267948966 rad
pos: 57.5,-45.5
parent: 2
type: Transform
- - uid: 13618
+ - uid: 13622
components:
- rot: -1.5707963267948966 rad
pos: 58.5,-45.5
parent: 2
type: Transform
- - uid: 13619
+ - uid: 13623
components:
- rot: -1.5707963267948966 rad
pos: 59.5,-45.5
parent: 2
type: Transform
- - uid: 13620
+ - uid: 13624
components:
- rot: -1.5707963267948966 rad
pos: 60.5,-45.5
parent: 2
type: Transform
- - uid: 13621
+ - uid: 13625
components:
- rot: -1.5707963267948966 rad
pos: 61.5,-45.5
parent: 2
type: Transform
- - uid: 13622
+ - uid: 13626
components:
- rot: -1.5707963267948966 rad
pos: 62.5,-45.5
parent: 2
type: Transform
- - uid: 13623
+ - uid: 13627
components:
- rot: -1.5707963267948966 rad
pos: 63.5,-45.5
parent: 2
type: Transform
- - uid: 13624
+ - uid: 13628
components:
- rot: 3.141592653589793 rad
pos: 46.5,-42.5
parent: 2
type: Transform
- - uid: 13625
+ - uid: 13629
components:
- rot: 3.141592653589793 rad
pos: 46.5,-41.5
parent: 2
type: Transform
- - uid: 13626
+ - uid: 13630
components:
- rot: 3.141592653589793 rad
pos: 46.5,-40.5
parent: 2
type: Transform
- - uid: 13627
+ - uid: 13631
components:
- rot: 3.141592653589793 rad
pos: 46.5,-39.5
parent: 2
type: Transform
- - uid: 13628
+ - uid: 13632
components:
- rot: 3.141592653589793 rad
pos: 46.5,-38.5
parent: 2
type: Transform
- - uid: 13629
+ - uid: 13633
components:
- rot: 3.141592653589793 rad
pos: 46.5,-37.5
parent: 2
type: Transform
- - uid: 13630
+ - uid: 13634
components:
- rot: 3.141592653589793 rad
pos: 46.5,-36.5
parent: 2
type: Transform
- - uid: 13631
+ - uid: 13635
components:
- rot: -1.5707963267948966 rad
pos: 64.5,-45.5
parent: 2
type: Transform
- - uid: 13632
+ - uid: 13636
components:
- rot: -1.5707963267948966 rad
pos: 65.5,-45.5
parent: 2
type: Transform
- - uid: 13633
+ - uid: 13637
components:
- rot: -1.5707963267948966 rad
pos: 66.5,-45.5
parent: 2
type: Transform
- - uid: 13634
+ - uid: 13638
components:
- pos: 67.5,-46.5
parent: 2
type: Transform
- - uid: 13635
+ - uid: 13639
components:
- pos: 67.5,-48.5
parent: 2
type: Transform
- - uid: 13636
+ - uid: 13640
components:
- pos: 49.5,-56.5
parent: 2
type: Transform
- - uid: 13637
+ - uid: 13641
components:
- pos: 49.5,-57.5
parent: 2
type: Transform
- - uid: 13638
+ - uid: 13642
components:
- pos: 49.5,-58.5
parent: 2
type: Transform
- - uid: 13639
+ - uid: 13643
components:
- pos: 49.5,-59.5
parent: 2
type: Transform
- - uid: 13640
+ - uid: 13644
components:
- rot: 3.141592653589793 rad
pos: -3.5,-13.5
parent: 2
type: Transform
- - uid: 13641
+ - uid: 13645
components:
- pos: 29.5,-61.5
parent: 2
type: Transform
- - uid: 13642
+ - uid: 13646
components:
- rot: 3.141592653589793 rad
pos: 25.5,-59.5
parent: 2
type: Transform
- - uid: 13643
+ - uid: 13647
components:
- rot: 1.5707963267948966 rad
pos: 26.5,-60.5
parent: 2
type: Transform
- - uid: 13644
+ - uid: 13648
components:
- rot: 1.5707963267948966 rad
pos: 27.5,-60.5
parent: 2
type: Transform
- - uid: 13645
+ - uid: 13649
components:
- rot: 1.5707963267948966 rad
pos: 28.5,-60.5
parent: 2
type: Transform
- - uid: 13646
+ - uid: 13650
components:
- rot: 1.5707963267948966 rad
pos: 30.5,-60.5
parent: 2
type: Transform
- - uid: 13647
+ - uid: 13651
components:
- rot: 1.5707963267948966 rad
pos: 31.5,-60.5
parent: 2
type: Transform
- - uid: 13648
+ - uid: 13652
components:
- rot: 1.5707963267948966 rad
pos: 32.5,-60.5
parent: 2
type: Transform
- - uid: 13649
+ - uid: 13653
components:
- rot: 1.5707963267948966 rad
pos: 33.5,-60.5
parent: 2
type: Transform
- - uid: 13650
+ - uid: 13654
components:
- rot: 1.5707963267948966 rad
pos: 34.5,-60.5
parent: 2
type: Transform
- - uid: 13651
+ - uid: 13655
components:
- rot: 1.5707963267948966 rad
pos: 35.5,-60.5
parent: 2
type: Transform
- - uid: 13652
+ - uid: 13656
components:
- rot: 1.5707963267948966 rad
pos: 36.5,-60.5
parent: 2
type: Transform
- - uid: 13653
+ - uid: 13657
components:
- rot: 3.141592653589793 rad
pos: -23.5,-14.5
parent: 2
type: Transform
- - uid: 13654
+ - uid: 13658
components:
- rot: 1.5707963267948966 rad
pos: -22.5,-13.5
parent: 2
type: Transform
- - uid: 13655
+ - uid: 13659
components:
- rot: 1.5707963267948966 rad
pos: -21.5,-13.5
parent: 2
type: Transform
- - uid: 13656
+ - uid: 13660
components:
- rot: 1.5707963267948966 rad
pos: -20.5,-13.5
parent: 2
type: Transform
- - uid: 13657
+ - uid: 13661
components:
- pos: -19.5,-14.5
parent: 2
type: Transform
- - uid: 13658
+ - uid: 13662
components:
- pos: -19.5,-15.5
parent: 2
type: Transform
- - uid: 13659
+ - uid: 13663
components:
- pos: -19.5,-16.5
parent: 2
type: Transform
- - uid: 13660
+ - uid: 13664
components:
- pos: -19.5,-17.5
parent: 2
type: Transform
- - uid: 13661
+ - uid: 13665
components:
- pos: -19.5,-18.5
parent: 2
type: Transform
- - uid: 13662
+ - uid: 13666
components:
- pos: -19.5,-19.5
parent: 2
type: Transform
- - uid: 13663
+ - uid: 13667
components:
- pos: -19.5,-20.5
parent: 2
type: Transform
- - uid: 13664
+ - uid: 13668
components:
- pos: -19.5,-21.5
parent: 2
type: Transform
- - uid: 13665
+ - uid: 13669
components:
- pos: -19.5,-22.5
parent: 2
type: Transform
- - uid: 13666
+ - uid: 13670
components:
- pos: -19.5,-23.5
parent: 2
type: Transform
- - uid: 13667
+ - uid: 13671
components:
- pos: -19.5,-24.5
parent: 2
type: Transform
- - uid: 13668
+ - uid: 13672
components:
- pos: -19.5,-25.5
parent: 2
type: Transform
- - uid: 13669
+ - uid: 13673
components:
- pos: -19.5,-26.5
parent: 2
type: Transform
- - uid: 13670
+ - uid: 13674
components:
- rot: 1.5707963267948966 rad
pos: -18.5,-27.5
parent: 2
type: Transform
- - uid: 13671
+ - uid: 13675
components:
- pos: -19.5,-28.5
parent: 2
type: Transform
- - uid: 13672
+ - uid: 13676
components:
- pos: -19.5,-29.5
parent: 2
type: Transform
- - uid: 13673
+ - uid: 13677
components:
- pos: -19.5,-30.5
parent: 2
type: Transform
- - uid: 13674
+ - uid: 13678
components:
- pos: -19.5,-31.5
parent: 2
type: Transform
- - uid: 13675
+ - uid: 13679
components:
- pos: -19.5,-32.5
parent: 2
type: Transform
- - uid: 13676
+ - uid: 13680
components:
- rot: -1.5707963267948966 rad
pos: -24.5,-13.5
parent: 2
type: Transform
- - uid: 13677
+ - uid: 13681
components:
- rot: -1.5707963267948966 rad
pos: -25.5,-13.5
parent: 2
type: Transform
- - uid: 13678
+ - uid: 13682
components:
- rot: -1.5707963267948966 rad
pos: -26.5,-13.5
parent: 2
type: Transform
- - uid: 13679
+ - uid: 13683
components:
- rot: -1.5707963267948966 rad
pos: -27.5,-13.5
parent: 2
type: Transform
- - uid: 13680
+ - uid: 13684
components:
- rot: -1.5707963267948966 rad
pos: -28.5,-13.5
parent: 2
type: Transform
- - uid: 13681
+ - uid: 13685
components:
- rot: -1.5707963267948966 rad
pos: -29.5,-13.5
parent: 2
type: Transform
- - uid: 13682
+ - uid: 13686
components:
- rot: -1.5707963267948966 rad
pos: -30.5,-13.5
parent: 2
type: Transform
- - uid: 13683
+ - uid: 13687
components:
- rot: -1.5707963267948966 rad
pos: -31.5,-13.5
parent: 2
type: Transform
- - uid: 13684
+ - uid: 13688
components:
- rot: 3.141592653589793 rad
pos: 15.5,-39.5
parent: 2
type: Transform
- - uid: 13685
+ - uid: 13689
components:
- rot: 1.5707963267948966 rad
pos: 37.5,-60.5
parent: 2
type: Transform
- - uid: 13686
+ - uid: 13690
components:
- rot: 1.5707963267948966 rad
pos: 38.5,-60.5
parent: 2
type: Transform
- - uid: 13687
+ - uid: 13691
components:
- pos: 39.5,-61.5
parent: 2
type: Transform
- - uid: 13688
+ - uid: 13692
components:
- pos: 39.5,-62.5
parent: 2
type: Transform
- - uid: 13689
+ - uid: 13693
components:
- pos: 39.5,-63.5
parent: 2
type: Transform
- - uid: 13690
+ - uid: 13694
components:
- pos: 39.5,-64.5
parent: 2
type: Transform
- - uid: 13691
+ - uid: 13695
components:
- pos: 39.5,-65.5
parent: 2
type: Transform
- - uid: 13692
+ - uid: 13696
components:
- pos: 39.5,-66.5
parent: 2
type: Transform
- - uid: 13693
+ - uid: 13697
components:
- pos: 39.5,-67.5
parent: 2
type: Transform
- - uid: 13694
+ - uid: 13698
components:
- pos: 39.5,-68.5
parent: 2
type: Transform
- - uid: 13695
+ - uid: 13699
components:
- rot: 3.141592653589793 rad
pos: -19.5,-33.5
parent: 2
type: Transform
- - uid: 13696
+ - uid: 13700
components:
- rot: 3.141592653589793 rad
pos: -19.5,-34.5
parent: 2
type: Transform
- - uid: 13697
+ - uid: 13701
components:
- rot: 3.141592653589793 rad
pos: -19.5,-35.5
parent: 2
type: Transform
- - uid: 13698
+ - uid: 13702
components:
- rot: 3.141592653589793 rad
pos: -19.5,-36.5
parent: 2
type: Transform
- - uid: 13699
+ - uid: 13703
components:
- rot: 3.141592653589793 rad
pos: -19.5,-37.5
parent: 2
type: Transform
- - uid: 13700
+ - uid: 13704
components:
- rot: 3.141592653589793 rad
pos: -19.5,-38.5
parent: 2
type: Transform
- - uid: 13701
+ - uid: 13705
components:
- rot: 3.141592653589793 rad
pos: -19.5,-39.5
parent: 2
type: Transform
- - uid: 13702
+ - uid: 13706
components:
- rot: 3.141592653589793 rad
pos: -19.5,-40.5
parent: 2
type: Transform
- - uid: 13703
+ - uid: 13707
components:
- rot: 3.141592653589793 rad
pos: -19.5,-41.5
parent: 2
type: Transform
- - uid: 13704
+ - uid: 13708
components:
- rot: 3.141592653589793 rad
pos: -19.5,-42.5
parent: 2
type: Transform
- - uid: 13705
+ - uid: 13709
components:
- pos: 30.5,-80.5
parent: 2
type: Transform
- - uid: 13706
+ - uid: 13710
components:
- pos: 30.5,-78.5
parent: 2
type: Transform
- - uid: 13707
+ - uid: 13711
components:
- pos: 30.5,-79.5
parent: 2
type: Transform
- - uid: 13708
+ - uid: 13712
components:
- pos: 39.5,-69.5
parent: 2
type: Transform
- - uid: 13709
+ - uid: 13713
components:
- pos: 39.5,-70.5
parent: 2
type: Transform
- - uid: 13710
+ - uid: 13714
components:
- pos: 39.5,-71.5
parent: 2
type: Transform
- - uid: 13711
+ - uid: 13715
components:
- pos: 39.5,-72.5
parent: 2
type: Transform
- - uid: 13712
+ - uid: 13716
components:
- rot: 1.5707963267948966 rad
pos: 25.5,-73.5
parent: 2
type: Transform
- - uid: 13713
+ - uid: 13717
components:
- pos: 30.5,-83.5
parent: 2
type: Transform
- - uid: 13714
+ - uid: 13718
components:
- pos: 30.5,-84.5
parent: 2
type: Transform
- - uid: 13715
+ - uid: 13719
components:
- rot: 1.5707963267948966 rad
pos: 29.5,-86.5
parent: 2
type: Transform
- - uid: 13716
+ - uid: 13720
components:
- pos: 30.5,-85.5
parent: 2
type: Transform
- - uid: 13717
+ - uid: 13721
components:
- pos: -13.5,1.5
parent: 2
type: Transform
- - uid: 13718
+ - uid: 13722
components:
- pos: -13.5,-0.5
parent: 2
type: Transform
- - uid: 13719
+ - uid: 13723
components:
- pos: -13.5,-1.5
parent: 2
type: Transform
- - uid: 13720
+ - uid: 13724
components:
- pos: -13.5,-2.5
parent: 2
type: Transform
- - uid: 13721
+ - uid: 13725
components:
- pos: -13.5,-3.5
parent: 2
type: Transform
- - uid: 13722
+ - uid: 13726
components:
- pos: -13.5,-4.5
parent: 2
type: Transform
- - uid: 13723
+ - uid: 13727
components:
- pos: -13.5,-5.5
parent: 2
type: Transform
- - uid: 13724
+ - uid: 13728
components:
- pos: -13.5,2.5
parent: 2
type: Transform
- - uid: 13725
+ - uid: 13729
components:
- pos: -13.5,3.5
parent: 2
type: Transform
- - uid: 13726
+ - uid: 13730
components:
- pos: -13.5,4.5
parent: 2
type: Transform
- - uid: 13727
+ - uid: 13731
components:
- pos: -13.5,6.5
parent: 2
type: Transform
- - uid: 13728
+ - uid: 13732
components:
- pos: -13.5,7.5
parent: 2
type: Transform
- - uid: 13729
+ - uid: 13733
components:
- rot: -1.5707963267948966 rad
pos: -14.5,-6.5
parent: 2
type: Transform
- - uid: 13730
+ - uid: 13734
components:
- rot: -1.5707963267948966 rad
pos: -15.5,-6.5
parent: 2
type: Transform
- - uid: 13731
+ - uid: 13735
components:
- rot: -1.5707963267948966 rad
pos: -16.5,-6.5
parent: 2
type: Transform
- - uid: 13732
+ - uid: 13736
components:
- rot: -1.5707963267948966 rad
pos: -17.5,-6.5
parent: 2
type: Transform
- - uid: 13733
+ - uid: 13737
components:
- rot: -1.5707963267948966 rad
pos: -18.5,-6.5
parent: 2
type: Transform
- - uid: 13734
+ - uid: 13738
components:
- pos: -19.5,-12.5
parent: 2
type: Transform
- - uid: 13735
+ - uid: 13739
components:
- pos: -19.5,-11.5
parent: 2
type: Transform
- - uid: 13736
+ - uid: 13740
components:
- pos: -19.5,-10.5
parent: 2
type: Transform
- - uid: 13737
+ - uid: 13741
components:
- pos: -19.5,-9.5
parent: 2
type: Transform
- - uid: 13738
+ - uid: 13742
components:
- pos: -19.5,-8.5
parent: 2
type: Transform
- - uid: 13739
+ - uid: 13743
components:
- pos: -19.5,-7.5
parent: 2
type: Transform
- - uid: 13740
+ - uid: 13744
components:
- rot: -1.5707963267948966 rad
pos: -14.5,8.5
parent: 2
type: Transform
- - uid: 13741
+ - uid: 13745
components:
- rot: -1.5707963267948966 rad
pos: -15.5,8.5
parent: 2
type: Transform
- - uid: 13742
+ - uid: 13746
components:
- rot: -1.5707963267948966 rad
pos: -17.5,8.5
parent: 2
type: Transform
- - uid: 13743
+ - uid: 13747
components:
- rot: -1.5707963267948966 rad
pos: -18.5,8.5
parent: 2
type: Transform
- - uid: 13744
+ - uid: 13748
components:
- rot: 3.141592653589793 rad
pos: -19.5,7.5
parent: 2
type: Transform
- - uid: 13745
+ - uid: 13749
components:
- rot: -1.5707963267948966 rad
pos: -20.5,6.5
parent: 2
type: Transform
- - uid: 13746
+ - uid: 13750
components:
- rot: -1.5707963267948966 rad
pos: -21.5,6.5
parent: 2
type: Transform
- - uid: 13747
+ - uid: 13751
components:
- rot: -1.5707963267948966 rad
pos: -22.5,6.5
parent: 2
type: Transform
- - uid: 13748
+ - uid: 13752
components:
- rot: -1.5707963267948966 rad
pos: -23.5,6.5
parent: 2
type: Transform
- - uid: 13749
+ - uid: 13753
components:
- rot: -1.5707963267948966 rad
pos: -24.5,6.5
parent: 2
type: Transform
- - uid: 13750
+ - uid: 13754
components:
- rot: -1.5707963267948966 rad
pos: -20.5,-6.5
parent: 2
type: Transform
- - uid: 13751
+ - uid: 13755
components:
- rot: -1.5707963267948966 rad
pos: -21.5,-6.5
parent: 2
type: Transform
- - uid: 13752
+ - uid: 13756
components:
- rot: -1.5707963267948966 rad
pos: -22.5,-6.5
parent: 2
type: Transform
- - uid: 13753
+ - uid: 13757
components:
- rot: -1.5707963267948966 rad
pos: -23.5,-6.5
parent: 2
type: Transform
- - uid: 13754
+ - uid: 13758
components:
- rot: -1.5707963267948966 rad
pos: -24.5,-6.5
parent: 2
type: Transform
- - uid: 13755
+ - uid: 13759
components:
- pos: -25.5,5.5
parent: 2
type: Transform
- - uid: 13756
+ - uid: 13760
components:
- pos: -25.5,4.5
parent: 2
type: Transform
- - uid: 13757
+ - uid: 13761
components:
- pos: -25.5,3.5
parent: 2
type: Transform
- - uid: 13758
+ - uid: 13762
components:
- pos: -25.5,2.5
parent: 2
type: Transform
- - uid: 13759
+ - uid: 13763
components:
- pos: -25.5,1.5
parent: 2
type: Transform
- - uid: 13760
+ - uid: 13764
components:
- pos: -25.5,0.5
parent: 2
type: Transform
- - uid: 13761
+ - uid: 13765
components:
- pos: -25.5,-1.5
parent: 2
type: Transform
- - uid: 13762
+ - uid: 13766
components:
- pos: -25.5,-2.5
parent: 2
type: Transform
- - uid: 13763
+ - uid: 13767
components:
- pos: -25.5,-3.5
parent: 2
type: Transform
- - uid: 13764
+ - uid: 13768
components:
- pos: -25.5,-4.5
parent: 2
type: Transform
- - uid: 13765
+ - uid: 13769
components:
- pos: -25.5,-5.5
parent: 2
type: Transform
- - uid: 13766
+ - uid: 13770
components:
- pos: -19.5,9.5
parent: 2
type: Transform
- - uid: 13767
+ - uid: 13771
components:
- pos: -19.5,10.5
parent: 2
type: Transform
- - uid: 13768
+ - uid: 13772
components:
- pos: -19.5,11.5
parent: 2
type: Transform
- - uid: 13769
+ - uid: 13773
components:
- pos: -19.5,12.5
parent: 2
type: Transform
- - uid: 13770
+ - uid: 13774
components:
- rot: 1.5707963267948966 rad
pos: -26.5,6.5
parent: 2
type: Transform
- - uid: 13771
+ - uid: 13775
components:
- rot: 3.141592653589793 rad
pos: -32.5,-12.5
parent: 2
type: Transform
- - uid: 13772
+ - uid: 13776
components:
- rot: 3.141592653589793 rad
pos: -32.5,-11.5
parent: 2
type: Transform
- - uid: 13773
+ - uid: 13777
components:
- rot: -1.5707963267948966 rad
pos: -33.5,-10.5
parent: 2
type: Transform
- - uid: 13774
+ - uid: 13778
components:
- rot: -1.5707963267948966 rad
pos: -34.5,-10.5
parent: 2
type: Transform
- - uid: 13775
+ - uid: 13779
components:
- rot: -1.5707963267948966 rad
pos: -35.5,-10.5
parent: 2
type: Transform
- - uid: 13776
+ - uid: 13780
components:
- pos: -36.5,-9.5
parent: 2
type: Transform
- - uid: 13777
+ - uid: 13781
components:
- pos: -36.5,-8.5
parent: 2
type: Transform
- - uid: 13778
+ - uid: 13782
components:
- pos: -36.5,-7.5
parent: 2
type: Transform
- - uid: 13779
+ - uid: 13783
components:
- pos: -36.5,-6.5
parent: 2
type: Transform
- - uid: 13780
+ - uid: 13784
components:
- rot: -1.5707963267948966 rad
pos: -37.5,-5.5
parent: 2
type: Transform
- - uid: 13781
+ - uid: 13785
components:
- rot: -1.5707963267948966 rad
pos: -26.5,-0.5
parent: 2
type: Transform
- - uid: 13782
+ - uid: 13786
components:
- rot: -1.5707963267948966 rad
pos: -27.5,-0.5
parent: 2
type: Transform
- - uid: 13783
+ - uid: 13787
components:
- rot: -1.5707963267948966 rad
pos: -28.5,-0.5
parent: 2
type: Transform
- - uid: 13784
+ - uid: 13788
components:
- rot: -1.5707963267948966 rad
pos: -29.5,-0.5
parent: 2
type: Transform
- - uid: 13785
+ - uid: 13789
components:
- rot: -1.5707963267948966 rad
pos: -30.5,-0.5
parent: 2
type: Transform
- - uid: 13786
+ - uid: 13790
components:
- rot: -1.5707963267948966 rad
pos: -0.5,-75.5
parent: 2
type: Transform
- - uid: 13787
+ - uid: 13791
components:
- rot: -1.5707963267948966 rad
pos: -1.5,-75.5
parent: 2
type: Transform
- - uid: 13788
+ - uid: 13792
components:
- rot: -1.5707963267948966 rad
pos: -2.5,-75.5
parent: 2
type: Transform
- - uid: 13789
+ - uid: 13793
components:
- rot: -1.5707963267948966 rad
pos: -3.5,-75.5
parent: 2
type: Transform
- - uid: 13790
+ - uid: 13794
components:
- rot: -1.5707963267948966 rad
pos: -4.5,-75.5
parent: 2
type: Transform
- - uid: 13791
+ - uid: 13795
components:
- rot: -1.5707963267948966 rad
pos: -5.5,-75.5
parent: 2
type: Transform
- - uid: 13792
+ - uid: 13796
components:
- rot: -1.5707963267948966 rad
pos: -6.5,-75.5
parent: 2
type: Transform
- - uid: 13793
+ - uid: 13797
components:
- rot: -1.5707963267948966 rad
pos: -7.5,-75.5
parent: 2
type: Transform
- - uid: 13794
+ - uid: 13798
components:
- rot: -1.5707963267948966 rad
pos: -8.5,-75.5
parent: 2
type: Transform
- - uid: 13795
+ - uid: 13799
components:
- rot: -1.5707963267948966 rad
pos: -9.5,-75.5
parent: 2
type: Transform
- - uid: 13796
+ - uid: 13800
components:
- rot: -1.5707963267948966 rad
pos: -10.5,-75.5
parent: 2
type: Transform
- - uid: 13797
+ - uid: 13801
components:
- rot: -1.5707963267948966 rad
pos: -11.5,-75.5
parent: 2
type: Transform
- - uid: 13798
+ - uid: 13802
components:
- rot: -1.5707963267948966 rad
pos: -12.5,-75.5
parent: 2
type: Transform
- - uid: 13799
+ - uid: 13803
components:
- rot: -1.5707963267948966 rad
pos: -13.5,-75.5
parent: 2
type: Transform
- - uid: 13800
+ - uid: 13804
components:
- rot: -1.5707963267948966 rad
pos: -14.5,-75.5
parent: 2
type: Transform
- - uid: 13801
+ - uid: 13805
components:
- rot: -1.5707963267948966 rad
pos: -15.5,-75.5
parent: 2
type: Transform
- - uid: 13802
+ - uid: 13806
components:
- rot: -1.5707963267948966 rad
pos: -16.5,-75.5
parent: 2
type: Transform
- - uid: 13803
+ - uid: 13807
components:
- rot: -1.5707963267948966 rad
pos: -17.5,-75.5
parent: 2
type: Transform
- - uid: 13804
+ - uid: 13808
components:
- rot: -1.5707963267948966 rad
pos: -18.5,-75.5
parent: 2
type: Transform
- - uid: 13805
+ - uid: 13809
components:
- rot: 3.141592653589793 rad
pos: -19.5,-76.5
parent: 2
type: Transform
- - uid: 13806
+ - uid: 13810
components:
- rot: 1.5707963267948966 rad
pos: -20.5,-77.5
parent: 2
type: Transform
- - uid: 13807
+ - uid: 13811
components:
- rot: 1.5707963267948966 rad
pos: -21.5,-77.5
parent: 2
type: Transform
- - uid: 13808
+ - uid: 13812
components:
- rot: 1.5707963267948966 rad
pos: -22.5,-77.5
parent: 2
type: Transform
- - uid: 13809
+ - uid: 13813
components:
- rot: 1.5707963267948966 rad
pos: -23.5,-77.5
parent: 2
type: Transform
- - uid: 13810
+ - uid: 13814
components:
- rot: 1.5707963267948966 rad
pos: -24.5,-77.5
parent: 2
type: Transform
- - uid: 13811
+ - uid: 13815
components:
- rot: 1.5707963267948966 rad
pos: -25.5,-77.5
parent: 2
type: Transform
- - uid: 13812
+ - uid: 13816
components:
- rot: 1.5707963267948966 rad
pos: -26.5,-77.5
parent: 2
type: Transform
- - uid: 13813
+ - uid: 13817
components:
- rot: 1.5707963267948966 rad
pos: -27.5,-77.5
parent: 2
type: Transform
- - uid: 13814
+ - uid: 13818
components:
- rot: 1.5707963267948966 rad
pos: -28.5,-77.5
parent: 2
type: Transform
- - uid: 13815
+ - uid: 13819
components:
- rot: 1.5707963267948966 rad
pos: -29.5,-77.5
parent: 2
type: Transform
- - uid: 13816
+ - uid: 13820
components:
- rot: 1.5707963267948966 rad
pos: -30.5,-77.5
parent: 2
type: Transform
- - uid: 13817
+ - uid: 13821
components:
- rot: 1.5707963267948966 rad
pos: -31.5,-77.5
parent: 2
type: Transform
- - uid: 13818
+ - uid: 13822
components:
- rot: 1.5707963267948966 rad
pos: -32.5,-77.5
parent: 2
type: Transform
- - uid: 13819
+ - uid: 13823
components:
- rot: 1.5707963267948966 rad
pos: -33.5,-77.5
parent: 2
type: Transform
- - uid: 13820
+ - uid: 13824
components:
- rot: 1.5707963267948966 rad
pos: -34.5,-77.5
parent: 2
type: Transform
- - uid: 13821
+ - uid: 13825
components:
- rot: 1.5707963267948966 rad
pos: -35.5,-77.5
parent: 2
type: Transform
- - uid: 13822
+ - uid: 13826
components:
- pos: -36.5,-78.5
parent: 2
type: Transform
- - uid: 13823
+ - uid: 13827
components:
- pos: -36.5,-79.5
parent: 2
type: Transform
- - uid: 13824
+ - uid: 13828
components:
- rot: 3.141592653589793 rad
pos: -19.5,13.5
parent: 2
type: Transform
- - uid: 13825
+ - uid: 13829
components:
- rot: 3.141592653589793 rad
pos: -19.5,14.5
parent: 2
type: Transform
- - uid: 13826
+ - uid: 13830
components:
- rot: 3.141592653589793 rad
pos: -19.5,15.5
parent: 2
type: Transform
- - uid: 13827
+ - uid: 13831
components:
- rot: 3.141592653589793 rad
pos: -19.5,16.5
parent: 2
type: Transform
- - uid: 13828
+ - uid: 13832
components:
- rot: 3.141592653589793 rad
pos: -19.5,17.5
parent: 2
type: Transform
- - uid: 13829
+ - uid: 13833
components:
- rot: 3.141592653589793 rad
pos: -19.5,18.5
parent: 2
type: Transform
- - uid: 13830
+ - uid: 13834
components:
- rot: 3.141592653589793 rad
pos: -19.5,19.5
parent: 2
type: Transform
- - uid: 13831
+ - uid: 13835
components:
- rot: 3.141592653589793 rad
pos: -19.5,20.5
parent: 2
type: Transform
- - uid: 13832
+ - uid: 13836
components:
- rot: 3.141592653589793 rad
pos: -19.5,21.5
parent: 2
type: Transform
- - uid: 13833
+ - uid: 13837
components:
- rot: 3.141592653589793 rad
pos: -19.5,22.5
parent: 2
type: Transform
- - uid: 13834
+ - uid: 13838
components:
- rot: -1.5707963267948966 rad
pos: -20.5,23.5
parent: 2
type: Transform
- - uid: 13835
+ - uid: 13839
components:
- rot: -1.5707963267948966 rad
pos: -21.5,23.5
parent: 2
type: Transform
- - uid: 13836
+ - uid: 13840
components:
- rot: 3.141592653589793 rad
pos: -22.5,24.5
parent: 2
type: Transform
- - uid: 13837
+ - uid: 13841
components:
- rot: -1.5707963267948966 rad
pos: -41.5,19.5
parent: 2
type: Transform
- - uid: 13838
+ - uid: 13842
components:
- rot: -1.5707963267948966 rad
pos: -35.5,19.5
parent: 2
type: Transform
- - uid: 13839
+ - uid: 13843
components:
- rot: 1.5707963267948966 rad
pos: -23.5,23.5
parent: 2
type: Transform
- - uid: 13840
+ - uid: 13844
components:
- rot: 1.5707963267948966 rad
pos: -24.5,23.5
parent: 2
type: Transform
- - uid: 13841
+ - uid: 13845
components:
- rot: 1.5707963267948966 rad
pos: -25.5,23.5
parent: 2
type: Transform
- - uid: 13842
+ - uid: 13846
components:
- rot: 1.5707963267948966 rad
pos: -26.5,23.5
parent: 2
type: Transform
- - uid: 13843
+ - uid: 13847
components:
- rot: 1.5707963267948966 rad
pos: -27.5,23.5
parent: 2
type: Transform
- - uid: 13844
+ - uid: 13848
components:
- rot: 1.5707963267948966 rad
pos: -28.5,23.5
parent: 2
type: Transform
- - uid: 13845
+ - uid: 13849
components:
- rot: 1.5707963267948966 rad
pos: -29.5,23.5
parent: 2
type: Transform
- - uid: 13846
+ - uid: 13850
components:
- rot: 1.5707963267948966 rad
pos: -30.5,23.5
parent: 2
type: Transform
- - uid: 13847
+ - uid: 13851
components:
- rot: 1.5707963267948966 rad
pos: -31.5,23.5
parent: 2
type: Transform
- - uid: 13848
+ - uid: 13852
components:
- rot: 1.5707963267948966 rad
pos: -32.5,23.5
parent: 2
type: Transform
- - uid: 13849
+ - uid: 13853
components:
- rot: 1.5707963267948966 rad
pos: -33.5,23.5
parent: 2
type: Transform
- - uid: 13850
+ - uid: 13854
components:
- rot: 1.5707963267948966 rad
pos: -34.5,23.5
parent: 2
type: Transform
- - uid: 13851
+ - uid: 13855
components:
- rot: 1.5707963267948966 rad
pos: -35.5,23.5
parent: 2
type: Transform
- - uid: 13852
+ - uid: 13856
components:
- rot: 1.5707963267948966 rad
pos: -36.5,23.5
parent: 2
type: Transform
- - uid: 13853
+ - uid: 13857
components:
- rot: 1.5707963267948966 rad
pos: -37.5,23.5
parent: 2
type: Transform
- - uid: 13854
+ - uid: 13858
components:
- rot: 1.5707963267948966 rad
pos: -38.5,23.5
parent: 2
type: Transform
- - uid: 13855
+ - uid: 13859
components:
- rot: 3.141592653589793 rad
pos: -46.5,10.5
parent: 2
type: Transform
- - uid: 13856
+ - uid: 13860
components:
- rot: 1.5707963267948966 rad
pos: -40.5,23.5
parent: 2
type: Transform
- - uid: 13857
+ - uid: 13861
components:
- rot: 1.5707963267948966 rad
pos: -41.5,23.5
parent: 2
type: Transform
- - uid: 13858
+ - uid: 13862
components:
- rot: 3.141592653589793 rad
pos: -42.5,24.5
parent: 2
type: Transform
- - uid: 13859
+ - uid: 13863
components:
- rot: 3.141592653589793 rad
pos: -42.5,25.5
parent: 2
type: Transform
- - uid: 13860
+ - uid: 13864
components:
- rot: 3.141592653589793 rad
pos: -42.5,26.5
parent: 2
type: Transform
- - uid: 13861
+ - uid: 13865
components:
- rot: -1.5707963267948966 rad
pos: -38.5,19.5
parent: 2
type: Transform
- - uid: 13862
+ - uid: 13866
components:
- pos: -42.5,18.5
parent: 2
type: Transform
- - uid: 13863
+ - uid: 13867
components:
- pos: -42.5,17.5
parent: 2
type: Transform
- - uid: 13864
+ - uid: 13868
components:
- pos: -42.5,15.5
parent: 2
type: Transform
- - uid: 13865
+ - uid: 13869
components:
- pos: -42.5,16.5
parent: 2
type: Transform
- - uid: 13866
+ - uid: 13870
components:
- rot: 3.141592653589793 rad
pos: -5.5,-19.5
parent: 2
type: Transform
- - uid: 13867
+ - uid: 13871
components:
- rot: 3.141592653589793 rad
pos: -5.5,-17.5
parent: 2
type: Transform
- - uid: 13868
+ - uid: 13872
components:
- rot: -1.5707963267948966 rad
pos: -44.5,5.5
parent: 2
type: Transform
- - uid: 13869
+ - uid: 13873
components:
- pos: -45.5,4.5
parent: 2
type: Transform
- - uid: 13870
+ - uid: 13874
components:
- pos: -45.5,3.5
parent: 2
type: Transform
- - uid: 13871
+ - uid: 13875
components:
- pos: -45.5,2.5
parent: 2
type: Transform
- - uid: 13872
+ - uid: 13876
components:
- pos: -45.5,1.5
parent: 2
type: Transform
- - uid: 13873
+ - uid: 13877
components:
- pos: -45.5,0.5
parent: 2
type: Transform
- - uid: 13874
+ - uid: 13878
components:
- rot: -1.5707963267948966 rad
pos: -31.5,-0.5
parent: 2
type: Transform
- - uid: 13875
+ - uid: 13879
components:
- rot: -1.5707963267948966 rad
pos: -32.5,-0.5
parent: 2
type: Transform
- - uid: 13876
+ - uid: 13880
components:
- rot: -1.5707963267948966 rad
pos: -33.5,-0.5
parent: 2
type: Transform
- - uid: 13877
+ - uid: 13881
components:
- rot: -1.5707963267948966 rad
pos: -34.5,-0.5
parent: 2
type: Transform
- - uid: 13878
+ - uid: 13882
components:
- rot: -1.5707963267948966 rad
pos: -35.5,-0.5
parent: 2
type: Transform
- - uid: 13879
+ - uid: 13883
components:
- rot: -1.5707963267948966 rad
pos: -36.5,-0.5
parent: 2
type: Transform
- - uid: 13880
+ - uid: 13884
components:
- rot: -1.5707963267948966 rad
pos: -37.5,-0.5
parent: 2
type: Transform
- - uid: 13881
+ - uid: 13885
components:
- rot: -1.5707963267948966 rad
pos: -38.5,-0.5
parent: 2
type: Transform
- - uid: 13882
+ - uid: 13886
components:
- rot: -1.5707963267948966 rad
pos: -39.5,-0.5
parent: 2
type: Transform
- - uid: 13883
+ - uid: 13887
components:
- rot: -1.5707963267948966 rad
pos: -40.5,-0.5
parent: 2
type: Transform
- - uid: 13884
+ - uid: 13888
components:
- rot: -1.5707963267948966 rad
pos: -41.5,-0.5
parent: 2
type: Transform
- - uid: 13885
+ - uid: 13889
components:
- rot: -1.5707963267948966 rad
pos: -42.5,-0.5
parent: 2
type: Transform
- - uid: 13886
+ - uid: 13890
components:
- rot: -1.5707963267948966 rad
pos: -43.5,-0.5
parent: 2
type: Transform
- - uid: 13887
+ - uid: 13891
components:
- rot: -1.5707963267948966 rad
pos: -44.5,-0.5
parent: 2
type: Transform
- - uid: 13888
+ - uid: 13892
components:
- rot: 3.141592653589793 rad
pos: -5.5,-20.5
parent: 2
type: Transform
- - uid: 13889
+ - uid: 13893
components:
- rot: 3.141592653589793 rad
pos: -5.5,-18.5
parent: 2
type: Transform
- - uid: 13890
+ - uid: 13894
components:
- rot: -1.5707963267948966 rad
pos: -42.5,18.5
parent: 2
type: Transform
- - uid: 13891
+ - uid: 13895
components:
- rot: 3.141592653589793 rad
pos: -3.5,-22.5
parent: 2
type: Transform
- - uid: 13892
+ - uid: 13896
components:
- rot: 3.141592653589793 rad
pos: -3.5,-23.5
parent: 2
type: Transform
- - uid: 13893
+ - uid: 13897
components:
- rot: 1.5707963267948966 rad
pos: -7.5,-9.5
parent: 2
type: Transform
- - uid: 13894
+ - uid: 13898
components:
- rot: 1.5707963267948966 rad
pos: 28.5,-86.5
parent: 2
type: Transform
- - uid: 13895
+ - uid: 13899
components:
- rot: 3.141592653589793 rad
pos: 15.5,-30.5
parent: 2
type: Transform
- - uid: 13896
+ - uid: 13900
components:
- rot: 3.141592653589793 rad
pos: 25.5,-53.5
parent: 2
type: Transform
- - uid: 13897
+ - uid: 13901
components:
- rot: 3.141592653589793 rad
pos: 18.5,-53.5
parent: 2
type: Transform
- - uid: 13898
+ - uid: 13902
components:
- rot: 3.141592653589793 rad
pos: 15.5,-40.5
parent: 2
type: Transform
- - uid: 13899
+ - uid: 13903
components:
- rot: 3.141592653589793 rad
pos: 15.5,-38.5
parent: 2
type: Transform
- - uid: 13900
+ - uid: 13904
components:
- pos: -5.5,-55.5
parent: 2
type: Transform
- - uid: 13901
+ - uid: 13905
components:
- pos: -5.5,-56.5
parent: 2
type: Transform
- - uid: 13902
+ - uid: 13906
components:
- pos: -5.5,-57.5
parent: 2
type: Transform
- - uid: 13903
+ - uid: 13907
components:
- pos: -5.5,-58.5
parent: 2
type: Transform
- - uid: 13904
+ - uid: 13908
components:
- pos: -5.5,-59.5
parent: 2
type: Transform
- - uid: 13905
+ - uid: 13909
components:
- pos: -5.5,-60.5
parent: 2
type: Transform
- - uid: 13906
+ - uid: 13910
components:
- pos: -6.5,-62.5
parent: 2
type: Transform
- - uid: 13907
+ - uid: 13911
components:
- pos: -6.5,-63.5
parent: 2
type: Transform
- - uid: 13908
+ - uid: 13912
components:
- pos: -6.5,-64.5
parent: 2
type: Transform
- - uid: 13909
+ - uid: 13913
components:
- rot: 1.5707963267948966 rad
pos: -8.5,-66.5
parent: 2
type: Transform
- - uid: 13910
+ - uid: 13914
components:
- rot: 3.141592653589793 rad
pos: -3.5,-66.5
parent: 2
type: Transform
- - uid: 13911
+ - uid: 13915
components:
- rot: 3.141592653589793 rad
pos: -3.5,-65.5
parent: 2
type: Transform
- - uid: 13912
+ - uid: 13916
components:
- rot: 3.141592653589793 rad
pos: -3.5,-64.5
parent: 2
type: Transform
- - uid: 13913
+ - uid: 13917
components:
- rot: 3.141592653589793 rad
pos: -3.5,-63.5
parent: 2
type: Transform
- - uid: 13914
+ - uid: 13918
components:
- rot: 3.141592653589793 rad
pos: -3.5,-62.5
parent: 2
type: Transform
- - uid: 13915
+ - uid: 13919
components:
- rot: -1.5707963267948966 rad
pos: -4.5,-61.5
parent: 2
type: Transform
- - uid: 13916
+ - uid: 13920
components:
- rot: -1.5707963267948966 rad
pos: -2.5,-61.5
parent: 2
type: Transform
- - uid: 13917
+ - uid: 13921
components:
- rot: -1.5707963267948966 rad
pos: -1.5,-61.5
parent: 2
type: Transform
- - uid: 13918
+ - uid: 13922
components:
- rot: -1.5707963267948966 rad
pos: -0.5,-61.5
parent: 2
type: Transform
- - uid: 13919
+ - uid: 13923
components:
- rot: -1.5707963267948966 rad
pos: 0.5,-61.5
parent: 2
type: Transform
- - uid: 13920
+ - uid: 13924
components:
- rot: -1.5707963267948966 rad
pos: 1.5,-61.5
parent: 2
type: Transform
- - uid: 13921
+ - uid: 13925
components:
- pos: 2.5,-62.5
parent: 2
type: Transform
- - uid: 13922
+ - uid: 13926
components:
- rot: -1.5707963267948966 rad
pos: -7.5,-61.5
parent: 2
type: Transform
- - uid: 13923
+ - uid: 13927
components:
- rot: -1.5707963267948966 rad
pos: -8.5,-61.5
parent: 2
type: Transform
- - uid: 13924
+ - uid: 13928
components:
- rot: -1.5707963267948966 rad
pos: -9.5,-61.5
parent: 2
type: Transform
- - uid: 13925
+ - uid: 13929
components:
- rot: -1.5707963267948966 rad
pos: -10.5,-61.5
parent: 2
type: Transform
- - uid: 13926
+ - uid: 13930
components:
- rot: -1.5707963267948966 rad
pos: -11.5,-61.5
parent: 2
type: Transform
- - uid: 13927
+ - uid: 13931
components:
- rot: -1.5707963267948966 rad
pos: -12.5,-61.5
parent: 2
type: Transform
- - uid: 13928
+ - uid: 13932
components:
- pos: -13.5,-62.5
parent: 2
type: Transform
- - uid: 13929
+ - uid: 13933
components:
- rot: 3.141592653589793 rad
pos: -13.5,-63.5
parent: 2
type: Transform
- - uid: 13930
+ - uid: 13934
components:
- rot: 3.141592653589793 rad
pos: -13.5,-64.5
parent: 2
type: Transform
- - uid: 13931
+ - uid: 13935
components:
- rot: 3.141592653589793 rad
pos: -13.5,-65.5
parent: 2
type: Transform
- - uid: 13932
+ - uid: 13936
components:
- rot: 3.141592653589793 rad
pos: -13.5,-66.5
parent: 2
type: Transform
- - uid: 13933
+ - uid: 13937
components:
- rot: 1.5707963267948966 rad
pos: -14.5,-67.5
parent: 2
type: Transform
- - uid: 13934
+ - uid: 13938
components:
- rot: 1.5707963267948966 rad
pos: -15.5,-67.5
parent: 2
type: Transform
- - uid: 13935
+ - uid: 13939
components:
- rot: 3.141592653589793 rad
pos: -3.5,-26.5
parent: 2
type: Transform
- - uid: 13936
+ - uid: 13940
components:
- rot: 3.141592653589793 rad
pos: -12.5,6.5
parent: 2
type: Transform
- - uid: 13937
+ - uid: 13941
components:
- rot: 3.141592653589793 rad
pos: -12.5,7.5
parent: 2
type: Transform
- - uid: 13938
+ - uid: 13942
components:
- pos: -45.5,12.5
parent: 2
type: Transform
- - uid: 13939
+ - uid: 13943
components:
- pos: -45.5,13.5
parent: 2
type: Transform
- - uid: 13940
+ - uid: 13944
components:
- rot: 1.5707963267948966 rad
pos: -44.5,18.5
parent: 2
type: Transform
- - uid: 13941
+ - uid: 13945
components:
- rot: -1.5707963267948966 rad
pos: -39.5,23.5
parent: 2
type: Transform
- - uid: 13942
+ - uid: 13946
components:
- pos: -45.5,14.5
parent: 2
type: Transform
- - uid: 13943
+ - uid: 13947
components:
- pos: -45.5,15.5
parent: 2
type: Transform
- - uid: 13944
+ - uid: 13948
components:
- pos: -45.5,16.5
parent: 2
type: Transform
- - uid: 13945
+ - uid: 13949
components:
- pos: -45.5,17.5
parent: 2
type: Transform
- - uid: 13946
+ - uid: 13950
components:
- rot: -1.5707963267948966 rad
pos: -43.5,18.5
parent: 2
type: Transform
- - uid: 13947
+ - uid: 13951
components:
- pos: -19.5,24.5
parent: 2
type: Transform
- - uid: 13948
+ - uid: 13952
components:
- pos: -19.5,25.5
parent: 2
type: Transform
- - uid: 13949
+ - uid: 13953
components:
- pos: -19.5,26.5
parent: 2
type: Transform
- - uid: 13950
+ - uid: 13954
components:
- pos: -19.5,27.5
parent: 2
type: Transform
- - uid: 13951
+ - uid: 13955
components:
- pos: -19.5,28.5
parent: 2
type: Transform
- - uid: 13952
+ - uid: 13956
components:
- rot: 1.5707963267948966 rad
pos: -18.5,29.5
parent: 2
type: Transform
- - uid: 13953
+ - uid: 13957
components:
- rot: 1.5707963267948966 rad
pos: -17.5,29.5
parent: 2
type: Transform
- - uid: 13954
+ - uid: 13958
components:
- rot: 1.5707963267948966 rad
pos: -16.5,29.5
parent: 2
type: Transform
- - uid: 13955
+ - uid: 13959
components:
- rot: 3.141592653589793 rad
pos: -15.5,30.5
parent: 2
type: Transform
- - uid: 13956
+ - uid: 13960
components:
- rot: 3.141592653589793 rad
pos: -15.5,31.5
parent: 2
type: Transform
- - uid: 13957
+ - uid: 13961
components:
- rot: 3.141592653589793 rad
pos: -15.5,32.5
parent: 2
type: Transform
- - uid: 13958
+ - uid: 13962
components:
- rot: 3.141592653589793 rad
pos: -15.5,33.5
parent: 2
type: Transform
- - uid: 13959
+ - uid: 13963
components:
- rot: 3.141592653589793 rad
pos: -15.5,34.5
parent: 2
type: Transform
- - uid: 13960
+ - uid: 13964
components:
- rot: 3.141592653589793 rad
pos: -15.5,35.5
parent: 2
type: Transform
- - uid: 13961
+ - uid: 13965
components:
- rot: 3.141592653589793 rad
pos: -15.5,36.5
parent: 2
type: Transform
- - uid: 13962
+ - uid: 13966
components:
- rot: -1.5707963267948966 rad
pos: -16.5,37.5
parent: 2
type: Transform
- - uid: 13963
+ - uid: 13967
components:
- pos: -15.5,38.5
parent: 2
type: Transform
- - uid: 13964
+ - uid: 13968
components:
- pos: -15.5,39.5
parent: 2
type: Transform
- - uid: 13965
+ - uid: 13969
components:
- pos: -15.5,40.5
parent: 2
type: Transform
- - uid: 13966
+ - uid: 13970
components:
- pos: -15.5,41.5
parent: 2
type: Transform
- - uid: 13967
+ - uid: 13971
components:
- pos: -15.5,42.5
parent: 2
type: Transform
- - uid: 13968
+ - uid: 13972
components:
- pos: -15.5,43.5
parent: 2
type: Transform
- - uid: 13969
+ - uid: 13973
components:
- rot: -1.5707963267948966 rad
pos: -14.5,44.5
parent: 2
type: Transform
- - uid: 13970
+ - uid: 13974
components:
- rot: -1.5707963267948966 rad
pos: -13.5,44.5
parent: 2
type: Transform
- - uid: 13971
+ - uid: 13975
components:
- rot: -1.5707963267948966 rad
pos: -12.5,44.5
parent: 2
type: Transform
- - uid: 13972
+ - uid: 13976
components:
- rot: -1.5707963267948966 rad
pos: -11.5,44.5
parent: 2
type: Transform
- - uid: 13973
+ - uid: 13977
components:
- rot: -1.5707963267948966 rad
pos: -16.5,44.5
parent: 2
type: Transform
- - uid: 13974
+ - uid: 13978
components:
- rot: 3.141592653589793 rad
pos: -17.5,45.5
parent: 2
type: Transform
- - uid: 13975
+ - uid: 13979
components:
- rot: 3.141592653589793 rad
pos: -17.5,46.5
parent: 2
type: Transform
- - uid: 13976
+ - uid: 13980
components:
- rot: 3.141592653589793 rad
pos: -17.5,47.5
parent: 2
type: Transform
- - uid: 13977
+ - uid: 13981
components:
- rot: 3.141592653589793 rad
pos: -17.5,48.5
parent: 2
type: Transform
- - uid: 13978
+ - uid: 13982
components:
- rot: 3.141592653589793 rad
pos: -17.5,49.5
parent: 2
type: Transform
- - uid: 13979
+ - uid: 13983
components:
- rot: -1.5707963267948966 rad
pos: -5.5,44.5
parent: 2
type: Transform
- - uid: 13980
+ - uid: 13984
components:
- rot: -1.5707963267948966 rad
pos: -6.5,44.5
parent: 2
type: Transform
- - uid: 13981
+ - uid: 13985
components:
- rot: -1.5707963267948966 rad
pos: -7.5,44.5
parent: 2
type: Transform
- - uid: 13982
+ - uid: 13986
components:
- rot: -1.5707963267948966 rad
pos: -8.5,44.5
parent: 2
type: Transform
- - uid: 13983
+ - uid: 13987
components:
- rot: -1.5707963267948966 rad
pos: -9.5,44.5
parent: 2
type: Transform
- - uid: 13984
+ - uid: 13988
components:
- rot: -1.5707963267948966 rad
pos: -10.5,44.5
parent: 2
type: Transform
- - uid: 13985
+ - uid: 13989
components:
- rot: -1.5707963267948966 rad
pos: -14.5,50.5
parent: 2
type: Transform
- - uid: 13986
+ - uid: 13990
components:
- rot: -1.5707963267948966 rad
pos: -16.5,50.5
parent: 2
type: Transform
- - uid: 13987
+ - uid: 13991
components:
- rot: -1.5707963267948966 rad
pos: -15.5,50.5
parent: 2
type: Transform
- - uid: 13988
+ - uid: 13992
components:
- pos: -37.5,-94.5
parent: 2
type: Transform
- - uid: 13989
+ - uid: 13993
components:
- rot: -1.5707963267948966 rad
pos: -39.5,-95.5
parent: 2
type: Transform
- - uid: 13990
+ - uid: 13994
components:
- rot: -1.5707963267948966 rad
pos: -40.5,-95.5
parent: 2
type: Transform
- - uid: 13991
+ - uid: 13995
components:
- rot: 3.141592653589793 rad
pos: -41.5,-94.5
parent: 2
type: Transform
- - uid: 13992
+ - uid: 13996
components:
- rot: 3.141592653589793 rad
pos: -41.5,-93.5
parent: 2
type: Transform
- - uid: 13993
+ - uid: 13997
components:
- rot: 3.141592653589793 rad
pos: -41.5,-92.5
parent: 2
type: Transform
- - uid: 13994
+ - uid: 13998
components:
- rot: 3.141592653589793 rad
pos: -41.5,-91.5
parent: 2
type: Transform
- - uid: 13995
+ - uid: 13999
components:
- rot: 3.141592653589793 rad
pos: -41.5,-90.5
parent: 2
type: Transform
- - uid: 13996
+ - uid: 14000
components:
- rot: 3.141592653589793 rad
pos: -41.5,-89.5
parent: 2
type: Transform
- - uid: 13997
+ - uid: 14001
components:
- rot: 3.141592653589793 rad
pos: -41.5,-88.5
parent: 2
type: Transform
- - uid: 13998
+ - uid: 14002
components:
- rot: 1.5707963267948966 rad
pos: 68.5,-47.5
parent: 2
type: Transform
- - uid: 13999
+ - uid: 14003
components:
- rot: 1.5707963267948966 rad
pos: 69.5,-47.5
parent: 2
type: Transform
- - uid: 14000
+ - uid: 14004
components:
- rot: 1.5707963267948966 rad
pos: 70.5,-47.5
parent: 2
type: Transform
- - uid: 14001
+ - uid: 14005
components:
- rot: 1.5707963267948966 rad
pos: 71.5,-47.5
parent: 2
type: Transform
- - uid: 14002
+ - uid: 14006
components:
- rot: 1.5707963267948966 rad
pos: 72.5,-47.5
parent: 2
type: Transform
- - uid: 14003
+ - uid: 14007
components:
- rot: 1.5707963267948966 rad
pos: 73.5,-47.5
parent: 2
type: Transform
- - uid: 14004
+ - uid: 14008
components:
- rot: 1.5707963267948966 rad
pos: 74.5,-47.5
parent: 2
type: Transform
- - uid: 14005
+ - uid: 14009
components:
- rot: 3.141592653589793 rad
pos: 75.5,-46.5
parent: 2
type: Transform
- - uid: 14006
+ - uid: 14010
components:
- rot: 3.141592653589793 rad
pos: 75.5,-45.5
parent: 2
type: Transform
- - uid: 14007
+ - uid: 14011
components:
- rot: 3.141592653589793 rad
pos: 75.5,-44.5
parent: 2
type: Transform
- - uid: 14008
+ - uid: 14012
components:
- rot: 3.141592653589793 rad
pos: 75.5,-43.5
parent: 2
type: Transform
- - uid: 14009
+ - uid: 14013
components:
- rot: 3.141592653589793 rad
pos: 75.5,-42.5
parent: 2
type: Transform
- - uid: 14010
+ - uid: 14014
components:
- rot: 3.141592653589793 rad
pos: 75.5,-41.5
parent: 2
type: Transform
- - uid: 14011
+ - uid: 14015
components:
- rot: 3.141592653589793 rad
pos: 75.5,-40.5
parent: 2
type: Transform
- - uid: 14012
+ - uid: 14016
components:
- rot: 3.141592653589793 rad
pos: 75.5,-39.5
parent: 2
type: Transform
- - uid: 14013
+ - uid: 14017
components:
- rot: 3.141592653589793 rad
pos: 75.5,-38.5
parent: 2
type: Transform
- - uid: 14014
+ - uid: 14018
components:
- rot: 3.141592653589793 rad
pos: 75.5,-37.5
parent: 2
type: Transform
- - uid: 14015
+ - uid: 14019
components:
- rot: 3.141592653589793 rad
pos: 75.5,-36.5
parent: 2
type: Transform
- - uid: 14016
+ - uid: 14020
components:
- rot: 3.141592653589793 rad
pos: 75.5,-35.5
parent: 2
type: Transform
- - uid: 14017
+ - uid: 14021
components:
- rot: 3.141592653589793 rad
pos: 75.5,-34.5
parent: 2
type: Transform
- - uid: 14018
+ - uid: 14022
components:
- rot: 3.141592653589793 rad
pos: 75.5,-33.5
parent: 2
type: Transform
- - uid: 14019
+ - uid: 14023
components:
- rot: 3.141592653589793 rad
pos: -4.5,-3.5
parent: 2
type: Transform
- - uid: 14020
+ - uid: 14024
components:
- rot: 3.141592653589793 rad
pos: -4.5,-4.5
parent: 2
type: Transform
- - uid: 14021
+ - uid: 14025
components:
- rot: 3.141592653589793 rad
pos: 15.5,-31.5
parent: 2
type: Transform
- - uid: 14022
+ - uid: 14026
components:
- pos: -42.5,14.5
parent: 2
type: Transform
- - uid: 14023
+ - uid: 14027
components:
- rot: 1.5707963267948966 rad
pos: -53.5,-64.5
parent: 2
type: Transform
- - uid: 14024
+ - uid: 14028
components:
- pos: 30.5,-81.5
parent: 2
type: Transform
- - uid: 14025
+ - uid: 14029
components:
- rot: 3.141592653589793 rad
pos: -5.5,-16.5
parent: 2
type: Transform
- - uid: 14026
+ - uid: 14030
components:
- rot: 3.141592653589793 rad
pos: -5.5,-15.5
parent: 2
type: Transform
- - uid: 14027
+ - uid: 14031
components:
- rot: 3.141592653589793 rad
pos: -5.5,-14.5
parent: 2
type: Transform
- - uid: 14028
+ - uid: 14032
components:
- rot: -1.5707963267948966 rad
pos: -6.5,-13.5
parent: 2
type: Transform
- - uid: 14029
+ - uid: 14033
components:
- rot: -1.5707963267948966 rad
pos: -7.5,-13.5
parent: 2
type: Transform
- - uid: 14030
+ - uid: 14034
components:
- rot: -1.5707963267948966 rad
pos: -8.5,-13.5
parent: 2
type: Transform
- - uid: 14031
+ - uid: 14035
components:
- rot: -1.5707963267948966 rad
pos: -9.5,-13.5
parent: 2
type: Transform
- - uid: 14032
+ - uid: 14036
components:
- pos: -12.5,-13.5
parent: 2
type: Transform
- - uid: 14033
+ - uid: 14037
components:
- rot: -1.5707963267948966 rad
pos: -13.5,-14.5
parent: 2
type: Transform
- - uid: 14034
+ - uid: 14038
components:
- rot: -1.5707963267948966 rad
pos: -14.5,-14.5
parent: 2
type: Transform
- - uid: 14035
+ - uid: 14039
components:
- rot: -1.5707963267948966 rad
pos: -15.5,-14.5
parent: 2
type: Transform
- - uid: 14036
+ - uid: 14040
components:
- rot: -1.5707963267948966 rad
pos: -16.5,-14.5
parent: 2
type: Transform
- - uid: 14037
+ - uid: 14041
components:
- rot: -1.5707963267948966 rad
pos: -17.5,-14.5
parent: 2
type: Transform
- - uid: 14038
+ - uid: 14042
components:
- rot: 3.141592653589793 rad
pos: -18.5,-13.5
parent: 2
type: Transform
- - uid: 14039
+ - uid: 14043
components:
- rot: 3.141592653589793 rad
pos: -18.5,-12.5
parent: 2
type: Transform
- - uid: 14040
+ - uid: 14044
components:
- rot: 3.141592653589793 rad
pos: -18.5,-11.5
parent: 2
type: Transform
- - uid: 14041
+ - uid: 14045
components:
- rot: 3.141592653589793 rad
pos: -18.5,-10.5
parent: 2
type: Transform
- - uid: 14042
+ - uid: 14046
components:
- rot: 3.141592653589793 rad
pos: -18.5,-9.5
parent: 2
type: Transform
- - uid: 14043
+ - uid: 14047
components:
- rot: 3.141592653589793 rad
pos: -18.5,-8.5
parent: 2
type: Transform
- - uid: 14044
+ - uid: 14048
components:
- rot: 3.141592653589793 rad
pos: -18.5,-7.5
parent: 2
type: Transform
- - uid: 14045
+ - uid: 14049
components:
- rot: 3.141592653589793 rad
pos: -18.5,-6.5
parent: 2
type: Transform
- - uid: 14046
+ - uid: 14050
components:
- rot: 3.141592653589793 rad
pos: -18.5,-5.5
parent: 2
type: Transform
- - uid: 14047
+ - uid: 14051
components:
- rot: -1.5707963267948966 rad
pos: -19.5,-4.5
parent: 2
type: Transform
- - uid: 14048
+ - uid: 14052
components:
- rot: -1.5707963267948966 rad
pos: -20.5,-4.5
parent: 2
type: Transform
- - uid: 14049
+ - uid: 14053
components:
- rot: -1.5707963267948966 rad
pos: -21.5,-4.5
parent: 2
type: Transform
- - uid: 14050
+ - uid: 14054
components:
- rot: -1.5707963267948966 rad
pos: -22.5,-4.5
parent: 2
type: Transform
- - uid: 14051
+ - uid: 14055
components:
- rot: -1.5707963267948966 rad
pos: -23.5,-4.5
parent: 2
type: Transform
- - uid: 14052
+ - uid: 14056
components:
- rot: 3.141592653589793 rad
pos: -24.5,-3.5
parent: 2
type: Transform
- - uid: 14053
+ - uid: 14057
components:
- rot: 3.141592653589793 rad
pos: -24.5,-2.5
parent: 2
type: Transform
- - uid: 14054
+ - uid: 14058
components:
- rot: 3.141592653589793 rad
pos: -24.5,-1.5
parent: 2
type: Transform
- - uid: 14055
+ - uid: 14059
components:
- rot: 3.141592653589793 rad
pos: -24.5,-0.5
parent: 2
type: Transform
- - uid: 14056
+ - uid: 14060
components:
- rot: 3.141592653589793 rad
pos: -24.5,0.5
parent: 2
type: Transform
- - uid: 14057
+ - uid: 14061
components:
- rot: 3.141592653589793 rad
pos: -24.5,1.5
parent: 2
type: Transform
- - uid: 14058
+ - uid: 14062
components:
- rot: 3.141592653589793 rad
pos: -24.5,2.5
parent: 2
type: Transform
- - uid: 14059
+ - uid: 14063
components:
- rot: 3.141592653589793 rad
pos: -24.5,3.5
parent: 2
type: Transform
- - uid: 14060
+ - uid: 14064
components:
- rot: 3.141592653589793 rad
pos: -24.5,4.5
parent: 2
type: Transform
- - uid: 14061
+ - uid: 14065
components:
- rot: 3.141592653589793 rad
pos: -24.5,5.5
parent: 2
type: Transform
- - uid: 14062
+ - uid: 14066
components:
- rot: 3.141592653589793 rad
pos: -24.5,6.5
parent: 2
type: Transform
- - uid: 14063
+ - uid: 14067
components:
- rot: 3.141592653589793 rad
pos: -24.5,7.5
parent: 2
type: Transform
- - uid: 14064
+ - uid: 14068
components:
- rot: 1.5707963267948966 rad
pos: -23.5,8.5
parent: 2
type: Transform
- - uid: 14065
+ - uid: 14069
components:
- rot: 1.5707963267948966 rad
pos: -22.5,8.5
parent: 2
type: Transform
- - uid: 14066
+ - uid: 14070
components:
- rot: 1.5707963267948966 rad
pos: -21.5,8.5
parent: 2
type: Transform
- - uid: 14067
+ - uid: 14071
components:
- rot: 3.141592653589793 rad
pos: -20.5,9.5
parent: 2
type: Transform
- - uid: 14068
+ - uid: 14072
components:
- rot: 3.141592653589793 rad
pos: -20.5,10.5
parent: 2
type: Transform
- - uid: 14069
+ - uid: 14073
components:
- rot: 3.141592653589793 rad
pos: -20.5,11.5
parent: 2
type: Transform
- - uid: 14070
+ - uid: 14074
components:
- rot: 3.141592653589793 rad
pos: -20.5,12.5
parent: 2
type: Transform
- - uid: 14071
+ - uid: 14075
components:
- rot: 3.141592653589793 rad
pos: -20.5,13.5
parent: 2
type: Transform
- - uid: 14072
+ - uid: 14076
components:
- rot: 3.141592653589793 rad
pos: -20.5,14.5
parent: 2
type: Transform
- - uid: 14073
+ - uid: 14077
components:
- rot: 3.141592653589793 rad
pos: -20.5,15.5
parent: 2
type: Transform
- - uid: 14074
+ - uid: 14078
components:
- rot: 3.141592653589793 rad
pos: -20.5,16.5
parent: 2
type: Transform
- - uid: 14075
+ - uid: 14079
components:
- rot: 3.141592653589793 rad
pos: -20.5,17.5
parent: 2
type: Transform
- - uid: 14076
+ - uid: 14080
components:
- rot: 3.141592653589793 rad
pos: -20.5,18.5
parent: 2
type: Transform
- - uid: 14077
+ - uid: 14081
components:
- rot: 3.141592653589793 rad
pos: -20.5,19.5
parent: 2
type: Transform
- - uid: 14078
+ - uid: 14082
components:
- rot: -1.5707963267948966 rad
pos: -21.5,20.5
parent: 2
type: Transform
- - uid: 14079
+ - uid: 14083
components:
- rot: -1.5707963267948966 rad
pos: -22.5,20.5
parent: 2
type: Transform
- - uid: 14080
+ - uid: 14084
components:
- rot: -1.5707963267948966 rad
pos: -23.5,20.5
parent: 2
type: Transform
- - uid: 14081
+ - uid: 14085
components:
- rot: -1.5707963267948966 rad
pos: -24.5,20.5
parent: 2
type: Transform
- - uid: 14082
+ - uid: 14086
components:
- rot: -1.5707963267948966 rad
pos: -26.5,19.5
parent: 2
type: Transform
- - uid: 14083
+ - uid: 14087
components:
- rot: -1.5707963267948966 rad
pos: -27.5,19.5
parent: 2
type: Transform
- - uid: 14084
+ - uid: 14088
components:
- rot: -1.5707963267948966 rad
pos: -28.5,19.5
parent: 2
type: Transform
- - uid: 14085
+ - uid: 14089
components:
- rot: -1.5707963267948966 rad
pos: -29.5,19.5
parent: 2
type: Transform
- - uid: 14086
+ - uid: 14090
components:
- rot: -1.5707963267948966 rad
pos: -30.5,19.5
parent: 2
type: Transform
- - uid: 14087
+ - uid: 14091
components:
- rot: -1.5707963267948966 rad
pos: -31.5,19.5
parent: 2
type: Transform
- - uid: 14088
+ - uid: 14092
components:
- rot: -1.5707963267948966 rad
pos: -32.5,19.5
parent: 2
type: Transform
- - uid: 14089
+ - uid: 14093
components:
- rot: -1.5707963267948966 rad
pos: -33.5,19.5
parent: 2
type: Transform
- - uid: 14090
+ - uid: 14094
components:
- rot: -1.5707963267948966 rad
pos: -34.5,19.5
parent: 2
type: Transform
- - uid: 14091
+ - uid: 14095
components:
- rot: -1.5707963267948966 rad
pos: -36.5,19.5
parent: 2
type: Transform
- - uid: 14092
+ - uid: 14096
components:
- rot: -1.5707963267948966 rad
pos: -39.5,19.5
parent: 2
type: Transform
- - uid: 14093
+ - uid: 14097
components:
- rot: -1.5707963267948966 rad
pos: -40.5,19.5
parent: 2
type: Transform
- - uid: 14094
+ - uid: 14098
components:
- rot: -1.5707963267948966 rad
pos: -37.5,19.5
parent: 2
type: Transform
- - uid: 14095
+ - uid: 14099
components:
- rot: 3.141592653589793 rad
pos: -46.5,9.5
parent: 2
type: Transform
- - uid: 14096
+ - uid: 14100
components:
- rot: 3.141592653589793 rad
pos: -46.5,8.5
parent: 2
type: Transform
- - uid: 14097
+ - uid: 14101
components:
- rot: 3.141592653589793 rad
pos: -46.5,7.5
parent: 2
type: Transform
- - uid: 14098
+ - uid: 14102
components:
- rot: 3.141592653589793 rad
pos: -46.5,6.5
parent: 2
type: Transform
- - uid: 14099
+ - uid: 14103
components:
- rot: 3.141592653589793 rad
pos: -46.5,5.5
parent: 2
type: Transform
- - uid: 14100
+ - uid: 14104
components:
- rot: 3.141592653589793 rad
pos: -46.5,4.5
parent: 2
type: Transform
- - uid: 14101
+ - uid: 14105
components:
- rot: 3.141592653589793 rad
pos: -46.5,3.5
parent: 2
type: Transform
- - uid: 14102
+ - uid: 14106
components:
- rot: 3.141592653589793 rad
pos: -46.5,2.5
parent: 2
type: Transform
- - uid: 14103
+ - uid: 14107
components:
- rot: 3.141592653589793 rad
pos: -46.5,1.5
parent: 2
type: Transform
- - uid: 14104
+ - uid: 14108
components:
- rot: 1.5707963267948966 rad
pos: -45.5,0.5
parent: 2
type: Transform
- - uid: 14105
+ - uid: 14109
components:
- rot: 1.5707963267948966 rad
pos: -44.5,0.5
parent: 2
type: Transform
- - uid: 14106
+ - uid: 14110
components:
- rot: 1.5707963267948966 rad
pos: -43.5,0.5
parent: 2
type: Transform
- - uid: 14107
+ - uid: 14111
components:
- rot: 1.5707963267948966 rad
pos: -42.5,0.5
parent: 2
type: Transform
- - uid: 14108
+ - uid: 14112
components:
- rot: 1.5707963267948966 rad
pos: -41.5,0.5
parent: 2
type: Transform
- - uid: 14109
+ - uid: 14113
components:
- rot: 1.5707963267948966 rad
pos: -40.5,0.5
parent: 2
type: Transform
- - uid: 14110
+ - uid: 14114
components:
- rot: 1.5707963267948966 rad
pos: -39.5,0.5
parent: 2
type: Transform
- - uid: 14111
+ - uid: 14115
components:
- rot: 1.5707963267948966 rad
pos: -38.5,0.5
parent: 2
type: Transform
- - uid: 14112
+ - uid: 14116
components:
- rot: 1.5707963267948966 rad
pos: -37.5,0.5
parent: 2
type: Transform
- - uid: 14113
+ - uid: 14117
components:
- rot: 1.5707963267948966 rad
pos: -36.5,0.5
parent: 2
type: Transform
- - uid: 14114
+ - uid: 14118
components:
- rot: 1.5707963267948966 rad
pos: -35.5,0.5
parent: 2
type: Transform
- - uid: 14115
+ - uid: 14119
components:
- rot: 1.5707963267948966 rad
pos: -34.5,0.5
parent: 2
type: Transform
- - uid: 14116
+ - uid: 14120
components:
- rot: 1.5707963267948966 rad
pos: -33.5,0.5
parent: 2
type: Transform
- - uid: 14117
+ - uid: 14121
components:
- rot: 1.5707963267948966 rad
pos: -32.5,0.5
parent: 2
type: Transform
- - uid: 14118
+ - uid: 14122
components:
- rot: 1.5707963267948966 rad
pos: -31.5,0.5
parent: 2
type: Transform
- - uid: 14119
+ - uid: 14123
components:
- rot: 1.5707963267948966 rad
pos: -30.5,0.5
parent: 2
type: Transform
- - uid: 14120
+ - uid: 14124
components:
- rot: 1.5707963267948966 rad
pos: -29.5,0.5
parent: 2
type: Transform
- - uid: 14121
+ - uid: 14125
components:
- rot: 1.5707963267948966 rad
pos: -28.5,0.5
parent: 2
type: Transform
- - uid: 14122
+ - uid: 14126
components:
- rot: 1.5707963267948966 rad
pos: -27.5,0.5
parent: 2
type: Transform
- - uid: 14123
+ - uid: 14127
components:
- pos: -26.5,-0.5
parent: 2
type: Transform
- - uid: 14124
+ - uid: 14128
components:
- pos: -26.5,-1.5
parent: 2
type: Transform
- - uid: 14125
+ - uid: 14129
components:
- pos: -26.5,-2.5
parent: 2
type: Transform
- - uid: 14126
+ - uid: 14130
components:
- pos: -26.5,-3.5
parent: 2
type: Transform
- - uid: 14127
+ - uid: 14131
components:
- pos: -26.5,-4.5
parent: 2
type: Transform
- - uid: 14128
+ - uid: 14132
components:
- rot: 1.5707963267948966 rad
pos: -25.5,-5.5
parent: 2
type: Transform
- - uid: 14129
+ - uid: 14133
components:
- rot: 1.5707963267948966 rad
pos: -24.5,-5.5
parent: 2
type: Transform
- - uid: 14130
+ - uid: 14134
components:
- rot: 1.5707963267948966 rad
pos: -23.5,-5.5
parent: 2
type: Transform
- - uid: 14131
+ - uid: 14135
components:
- rot: 1.5707963267948966 rad
pos: -22.5,-5.5
parent: 2
type: Transform
- - uid: 14132
+ - uid: 14136
components:
- rot: 1.5707963267948966 rad
pos: -21.5,-5.5
parent: 2
type: Transform
- - uid: 14133
+ - uid: 14137
components:
- pos: -20.5,-6.5
parent: 2
type: Transform
- - uid: 14134
+ - uid: 14138
components:
- pos: -20.5,-7.5
parent: 2
type: Transform
- - uid: 14135
+ - uid: 14139
components:
- pos: -20.5,-8.5
parent: 2
type: Transform
- - uid: 14136
+ - uid: 14140
components:
- pos: -20.5,-9.5
parent: 2
type: Transform
- - uid: 14137
+ - uid: 14141
components:
- pos: -20.5,-10.5
parent: 2
type: Transform
- - uid: 14138
+ - uid: 14142
components:
- pos: -20.5,-11.5
parent: 2
type: Transform
- - uid: 14139
+ - uid: 14143
components:
- pos: -20.5,-12.5
parent: 2
type: Transform
- - uid: 14140
+ - uid: 14144
components:
- pos: -20.5,-13.5
parent: 2
type: Transform
- - uid: 14141
+ - uid: 14145
components:
- pos: -20.5,-14.5
parent: 2
type: Transform
- - uid: 14142
+ - uid: 14146
components:
- pos: -20.5,-15.5
parent: 2
type: Transform
- - uid: 14143
+ - uid: 14147
components:
- pos: -20.5,-16.5
parent: 2
type: Transform
- - uid: 14144
+ - uid: 14148
components:
- pos: -20.5,-17.5
parent: 2
type: Transform
- - uid: 14145
+ - uid: 14149
components:
- pos: -20.5,-18.5
parent: 2
type: Transform
- - uid: 14146
+ - uid: 14150
components:
- pos: -20.5,-19.5
parent: 2
type: Transform
- - uid: 14147
+ - uid: 14151
components:
- pos: -20.5,-20.5
parent: 2
type: Transform
- - uid: 14148
+ - uid: 14152
components:
- pos: -20.5,-21.5
parent: 2
type: Transform
- - uid: 14149
+ - uid: 14153
components:
- pos: -20.5,-22.5
parent: 2
type: Transform
- - uid: 14150
+ - uid: 14154
components:
- pos: -20.5,-23.5
parent: 2
type: Transform
- - uid: 14151
+ - uid: 14155
components:
- pos: -20.5,-24.5
parent: 2
type: Transform
- - uid: 14152
+ - uid: 14156
components:
- rot: 1.5707963267948966 rad
pos: -19.5,-25.5
parent: 2
type: Transform
- - uid: 14153
+ - uid: 14157
components:
- rot: 1.5707963267948966 rad
pos: -18.5,-25.5
parent: 2
type: Transform
- - uid: 14154
+ - uid: 14158
components:
- rot: 1.5707963267948966 rad
pos: -17.5,-25.5
parent: 2
type: Transform
- - uid: 14155
+ - uid: 14159
components:
- rot: 1.5707963267948966 rad
pos: -16.5,-25.5
parent: 2
type: Transform
- - uid: 14156
+ - uid: 14160
components:
- rot: 1.5707963267948966 rad
pos: -15.5,-25.5
parent: 2
type: Transform
- - uid: 14157
+ - uid: 14161
components:
- rot: 1.5707963267948966 rad
pos: -14.5,-25.5
parent: 2
type: Transform
- - uid: 14158
+ - uid: 14162
components:
- rot: 1.5707963267948966 rad
pos: -13.5,-25.5
parent: 2
type: Transform
- - uid: 14159
+ - uid: 14163
components:
- rot: 1.5707963267948966 rad
pos: -12.5,-25.5
parent: 2
type: Transform
- - uid: 14160
+ - uid: 14164
components:
- rot: 1.5707963267948966 rad
pos: -11.5,-25.5
parent: 2
type: Transform
- - uid: 14161
+ - uid: 14165
components:
- rot: 1.5707963267948966 rad
pos: -10.5,-25.5
parent: 2
type: Transform
- - uid: 14162
+ - uid: 14166
components:
- rot: 1.5707963267948966 rad
pos: -9.5,-25.5
parent: 2
type: Transform
- - uid: 14163
+ - uid: 14167
components:
- rot: 1.5707963267948966 rad
pos: -8.5,-25.5
parent: 2
type: Transform
- - uid: 14164
+ - uid: 14168
components:
- rot: 1.5707963267948966 rad
pos: -7.5,-25.5
parent: 2
type: Transform
- - uid: 14165
+ - uid: 14169
components:
- rot: 1.5707963267948966 rad
pos: -6.5,-25.5
parent: 2
type: Transform
- - uid: 14166
+ - uid: 14170
components:
- rot: -1.5707963267948966 rad
pos: -41.5,18.5
parent: 2
type: Transform
- - uid: 14167
+ - uid: 14171
components:
- pos: 30.5,-74.5
parent: 2
type: Transform
- - uid: 14168
+ - uid: 14172
components:
- rot: 1.5707963267948966 rad
pos: 26.5,-73.5
parent: 2
type: Transform
- - uid: 14169
+ - uid: 14173
components:
- rot: 1.5707963267948966 rad
pos: 27.5,-73.5
parent: 2
type: Transform
- - uid: 14170
+ - uid: 14174
components:
- rot: 1.5707963267948966 rad
pos: 28.5,-73.5
parent: 2
type: Transform
- - uid: 14171
+ - uid: 14175
components:
- rot: 1.5707963267948966 rad
pos: 29.5,-73.5
parent: 2
type: Transform
- - uid: 14172
+ - uid: 14176
components:
- pos: 30.5,-76.5
parent: 2
type: Transform
- - uid: 14173
+ - uid: 14177
components:
- pos: 30.5,-75.5
parent: 2
type: Transform
- - uid: 14174
+ - uid: 14178
components:
- pos: 30.5,-82.5
parent: 2
type: Transform
- - uid: 14175
+ - uid: 14179
components:
- rot: 1.5707963267948966 rad
pos: 31.5,-73.5
parent: 2
type: Transform
- - uid: 14176
+ - uid: 14180
components:
- rot: 1.5707963267948966 rad
pos: 32.5,-73.5
parent: 2
type: Transform
- - uid: 14177
+ - uid: 14181
components:
- rot: 1.5707963267948966 rad
pos: 33.5,-73.5
parent: 2
type: Transform
- - uid: 14178
+ - uid: 14182
components:
- rot: 1.5707963267948966 rad
pos: 34.5,-73.5
parent: 2
type: Transform
- - uid: 14179
+ - uid: 14183
components:
- rot: 1.5707963267948966 rad
pos: 35.5,-73.5
parent: 2
type: Transform
- - uid: 14180
+ - uid: 14184
components:
- rot: 1.5707963267948966 rad
pos: 36.5,-73.5
parent: 2
type: Transform
- - uid: 14181
+ - uid: 14185
components:
- rot: 1.5707963267948966 rad
pos: 37.5,-73.5
parent: 2
type: Transform
- - uid: 14182
+ - uid: 14186
components:
- rot: 1.5707963267948966 rad
pos: 38.5,-73.5
parent: 2
type: Transform
- - uid: 14183
+ - uid: 14187
components:
- rot: -1.5707963267948966 rad
pos: 10.5,2.5
parent: 2
type: Transform
- - uid: 14184
+ - uid: 14188
components:
- pos: -23.5,-81.5
parent: 2
type: Transform
- - uid: 14185
+ - uid: 14189
components:
- rot: 1.5707963267948966 rad
pos: -75.5,-41.5
parent: 2
type: Transform
- - uid: 14186
+ - uid: 14190
components:
- rot: 1.5707963267948966 rad
pos: -74.5,-41.5
parent: 2
type: Transform
- - uid: 14187
+ - uid: 14191
components:
- rot: 1.5707963267948966 rad
pos: -73.5,-41.5
parent: 2
type: Transform
- - uid: 14188
+ - uid: 14192
components:
- rot: 1.5707963267948966 rad
pos: -72.5,-41.5
parent: 2
type: Transform
- - uid: 14189
+ - uid: 14193
components:
- rot: 1.5707963267948966 rad
pos: -71.5,-41.5
parent: 2
type: Transform
- - uid: 14190
+ - uid: 14194
components:
- rot: 1.5707963267948966 rad
pos: -70.5,-41.5
parent: 2
type: Transform
- - uid: 14191
+ - uid: 14195
components:
- rot: 1.5707963267948966 rad
pos: -69.5,-41.5
parent: 2
type: Transform
- - uid: 14192
+ - uid: 14196
components:
- rot: 1.5707963267948966 rad
pos: -68.5,-41.5
parent: 2
type: Transform
- - uid: 14193
+ - uid: 14197
components:
- rot: 1.5707963267948966 rad
pos: -16.5,8.5
parent: 2
type: Transform
- - uid: 14194
+ - uid: 14198
components:
- pos: -43.5,-36.5
parent: 2
type: Transform
- - uid: 14195
+ - uid: 14199
components:
- pos: -43.5,-37.5
parent: 2
type: Transform
- - uid: 14196
+ - uid: 14200
components:
- pos: 3.5,-3.5
parent: 2
type: Transform
- - uid: 14197
+ - uid: 14201
components:
- pos: 3.5,-2.5
parent: 2
type: Transform
- - uid: 14198
+ - uid: 14202
components:
- pos: 3.5,-4.5
parent: 2
type: Transform
- - uid: 14199
+ - uid: 14203
components:
- rot: 1.5707963267948966 rad
pos: 4.5,-5.5
@@ -89010,417 +89040,417 @@ entities:
type: Transform
- proto: DisposalRouterFlipped
entities:
- - uid: 14200
+ - uid: 14204
components:
- rot: -1.5707963267948966 rad
pos: 18.5,-25.5
parent: 2
type: Transform
- - uid: 14201
+ - uid: 14205
components:
- rot: 1.5707963267948966 rad
pos: -13.5,-53.5
parent: 2
type: Transform
- - uid: 14202
+ - uid: 14206
components:
- pos: -13.5,0.5
parent: 2
type: Transform
- - uid: 14203
+ - uid: 14207
components:
- pos: -19.5,8.5
parent: 2
type: Transform
- proto: DisposalTrunk
entities:
- - uid: 14204
+ - uid: 14208
components:
- rot: -1.5707963267948966 rad
pos: 5.5,-5.5
parent: 2
type: Transform
- - uid: 14205
+ - uid: 14209
components:
- pos: 2.5,-23.5
parent: 2
type: Transform
- - uid: 14206
+ - uid: 14210
components:
- rot: 1.5707963267948966 rad
pos: -20.5,-57.5
parent: 2
type: Transform
- - uid: 14207
+ - uid: 14211
components:
- pos: 52.5,3.5
parent: 2
type: Transform
- - uid: 14208
+ - uid: 14212
components:
- pos: -9.5,5.5
parent: 2
type: Transform
- - uid: 14209
+ - uid: 14213
components:
- rot: -1.5707963267948966 rad
pos: 12.5,-3.5
parent: 2
type: Transform
- - uid: 14210
+ - uid: 14214
components:
- rot: 1.5707963267948966 rad
pos: -6.5,-33.5
parent: 2
type: Transform
- - uid: 14211
+ - uid: 14215
components:
- pos: 21.5,20.5
parent: 2
type: Transform
- - uid: 14212
+ - uid: 14216
components:
- rot: 3.141592653589793 rad
pos: 6.5,-2.5
parent: 2
type: Transform
- - uid: 14213
+ - uid: 14217
components:
- pos: 22.5,-10.5
parent: 2
type: Transform
- - uid: 14214
+ - uid: 14218
components:
- rot: -1.5707963267948966 rad
pos: 37.5,-18.5
parent: 2
type: Transform
- - uid: 14215
+ - uid: 14219
components:
- rot: 3.141592653589793 rad
pos: 1.5,-59.5
parent: 2
type: Transform
- - uid: 14216
+ - uid: 14220
components:
- pos: 6.5,5.5
parent: 2
type: Transform
- - uid: 14217
+ - uid: 14221
components:
- rot: -1.5707963267948966 rad
pos: -17.5,-73.5
parent: 2
type: Transform
- - uid: 14218
+ - uid: 14222
components:
- pos: 8.5,15.5
parent: 2
type: Transform
- - uid: 14219
+ - uid: 14223
components:
- pos: 18.5,9.5
parent: 2
type: Transform
- - uid: 14220
+ - uid: 14224
components:
- rot: -1.5707963267948966 rad
pos: 27.5,-10.5
parent: 2
type: Transform
- - uid: 14221
+ - uid: 14225
components:
- rot: 3.141592653589793 rad
pos: -7.5,-2.5
parent: 2
type: Transform
- - uid: 14222
+ - uid: 14226
components:
- rot: -1.5707963267948966 rad
pos: -21.5,-84.5
parent: 2
type: Transform
- - uid: 14223
+ - uid: 14227
components:
- rot: 1.5707963267948966 rad
pos: -25.5,-75.5
parent: 2
type: Transform
- - uid: 14224
+ - uid: 14228
components:
- rot: -1.5707963267948966 rad
pos: 14.5,5.5
parent: 2
type: Transform
- - uid: 14225
+ - uid: 14229
components:
- rot: 1.5707963267948966 rad
pos: -2.5,-45.5
parent: 2
type: Transform
- - uid: 14226
+ - uid: 14230
components:
- rot: 3.141592653589793 rad
pos: 18.5,-54.5
parent: 2
type: Transform
- - uid: 14227
+ - uid: 14231
components:
- pos: -10.5,-23.5
parent: 2
type: Transform
- - uid: 14228
+ - uid: 14232
components:
- rot: 1.5707963267948966 rad
pos: 14.5,19.5
parent: 2
type: Transform
- - uid: 14229
+ - uid: 14233
components:
- pos: 34.5,17.5
parent: 2
type: Transform
- - uid: 14230
+ - uid: 14234
components:
- rot: 3.141592653589793 rad
pos: -14.5,-10.5
parent: 2
type: Transform
- - uid: 14231
+ - uid: 14235
components:
- rot: 3.141592653589793 rad
pos: 54.5,-14.5
parent: 2
type: Transform
- - uid: 14232
+ - uid: 14236
components:
- rot: -1.5707963267948966 rad
pos: 51.5,-47.5
parent: 2
type: Transform
- - uid: 14233
+ - uid: 14237
components:
- pos: 46.5,-35.5
parent: 2
type: Transform
- - uid: 14234
+ - uid: 14238
components:
- rot: 3.141592653589793 rad
pos: 67.5,-49.5
parent: 2
type: Transform
- - uid: 14235
+ - uid: 14239
components:
- rot: 1.5707963267948966 rad
pos: 48.5,-50.5
parent: 2
type: Transform
- - uid: 14236
+ - uid: 14240
components:
- rot: 1.5707963267948966 rad
pos: 48.5,-55.5
parent: 2
type: Transform
- - uid: 14237
+ - uid: 14241
components:
- rot: 3.141592653589793 rad
pos: 49.5,-60.5
parent: 2
type: Transform
- - uid: 14238
+ - uid: 14242
components:
- rot: 1.5707963267948966 rad
pos: -27.5,6.5
parent: 2
type: Transform
- - uid: 14239
+ - uid: 14243
components:
- rot: 3.141592653589793 rad
pos: 29.5,-62.5
parent: 2
type: Transform
- - uid: 14240
+ - uid: 14244
components:
- rot: -1.5707963267948966 rad
pos: -22.5,-15.5
parent: 2
type: Transform
- - uid: 14241
+ - uid: 14245
components:
- rot: 3.141592653589793 rad
pos: 24.5,-74.5
parent: 2
type: Transform
- - uid: 14242
+ - uid: 14246
components:
- pos: -38.5,-4.5
parent: 2
type: Transform
- - uid: 14243
+ - uid: 14247
components:
- rot: -1.5707963267948966 rad
pos: 0.5,-75.5
parent: 2
type: Transform
- - uid: 14244
+ - uid: 14248
components:
- rot: 3.141592653589793 rad
pos: -36.5,-80.5
parent: 2
type: Transform
- - uid: 14245
+ - uid: 14249
components:
- pos: -22.5,25.5
parent: 2
type: Transform
- - uid: 14246
+ - uid: 14250
components:
- pos: -42.5,27.5
parent: 2
type: Transform
- - uid: 14247
+ - uid: 14251
components:
- rot: -1.5707963267948966 rad
pos: -43.5,5.5
parent: 2
type: Transform
- - uid: 14248
+ - uid: 14252
components:
- rot: 1.5707963267948966 rad
pos: 27.5,-86.5
parent: 2
type: Transform
- - uid: 14249
+ - uid: 14253
components:
- pos: 20.5,-23.5
parent: 2
type: Transform
- - uid: 14250
+ - uid: 14254
components:
- rot: 1.5707963267948966 rad
pos: -9.5,-66.5
parent: 2
type: Transform
- - uid: 14251
+ - uid: 14255
components:
- rot: 3.141592653589793 rad
pos: -3.5,-67.5
parent: 2
type: Transform
- - uid: 14252
+ - uid: 14256
components:
- rot: 3.141592653589793 rad
pos: 2.5,-63.5
parent: 2
type: Transform
- - uid: 14253
+ - uid: 14257
components:
- rot: 1.5707963267948966 rad
pos: -16.5,-67.5
parent: 2
type: Transform
- - uid: 14254
+ - uid: 14258
components:
- pos: -12.5,8.5
parent: 2
type: Transform
- - uid: 14255
+ - uid: 14259
components:
- pos: 20.5,-39.5
parent: 2
type: Transform
- - uid: 14256
+ - uid: 14260
components:
- rot: 1.5707963267948966 rad
pos: -17.5,37.5
parent: 2
type: Transform
- - uid: 14257
+ - uid: 14261
components:
- rot: 3.141592653589793 rad
pos: -4.5,43.5
parent: 2
type: Transform
- - uid: 14258
+ - uid: 14262
components:
- rot: 3.141592653589793 rad
pos: -13.5,49.5
parent: 2
type: Transform
- - uid: 14259
+ - uid: 14263
components:
- pos: -37.5,-93.5
parent: 2
type: Transform
- - uid: 14260
+ - uid: 14264
components:
- pos: 75.5,-32.5
parent: 2
type: Transform
- - uid: 14261
+ - uid: 14265
components:
- rot: 1.5707963267948966 rad
pos: -54.5,-64.5
parent: 2
type: Transform
- - uid: 14262
+ - uid: 14266
components:
- rot: -1.5707963267948966 rad
pos: -52.5,-64.5
parent: 2
type: Transform
- - uid: 14263
+ - uid: 14267
components:
- pos: -10.5,-12.5
parent: 2
type: Transform
- - uid: 14264
+ - uid: 14268
components:
- pos: -12.5,-12.5
parent: 2
type: Transform
- - uid: 14265
+ - uid: 14269
components:
- rot: 3.141592653589793 rad
pos: -42.5,13.5
parent: 2
type: Transform
- - uid: 14266
+ - uid: 14270
components:
- rot: -1.5707963267948966 rad
pos: -40.5,18.5
parent: 2
type: Transform
- - uid: 14267
+ - uid: 14271
components:
- rot: 3.141592653589793 rad
pos: 6.5,-45.5
parent: 2
type: Transform
- - uid: 14268
+ - uid: 14272
components:
- rot: 1.5707963267948966 rad
pos: -76.5,-41.5
parent: 2
type: Transform
- - uid: 14269
+ - uid: 14273
components:
- rot: -1.5707963267948966 rad
pos: -66.5,-42.5
parent: 2
type: Transform
- - uid: 14270
+ - uid: 14274
components:
- pos: -43.5,-35.5
parent: 2
type: Transform
- - uid: 14271
+ - uid: 14275
components:
- rot: -1.5707963267948966 rad
pos: -42.5,-38.5
parent: 2
type: Transform
- - uid: 14272
+ - uid: 14276
components:
- rot: -1.5707963267948966 rad
pos: 4.5,-3.5
@@ -89428,550 +89458,540 @@ entities:
type: Transform
- proto: DisposalUnit
entities:
- - uid: 14273
+ - uid: 14277
components:
- pos: 2.5,-23.5
parent: 2
type: Transform
- - uid: 14274
+ - uid: 14278
components:
- pos: 5.5,-5.5
parent: 2
type: Transform
- - uid: 14275
+ - uid: 14279
components:
- pos: 6.5,-45.5
parent: 2
type: Transform
- - uid: 14276
+ - uid: 14280
components:
- pos: -6.5,-33.5
parent: 2
type: Transform
- - uid: 14277
+ - uid: 14281
components:
- pos: 6.5,5.5
parent: 2
type: Transform
- - uid: 14278
+ - uid: 14282
components:
- pos: 22.5,-10.5
parent: 2
type: Transform
- - uid: 14279
+ - uid: 14283
components:
- pos: 27.5,-10.5
parent: 2
type: Transform
- - uid: 14280
+ - uid: 14284
components:
- pos: 21.5,20.5
parent: 2
type: Transform
- - uid: 14281
+ - uid: 14285
components:
- pos: 37.5,-18.5
parent: 2
type: Transform
- - uid: 14282
+ - uid: 14286
components:
- pos: 1.5,-59.5
parent: 2
type: Transform
- - uid: 14283
+ - uid: 14287
components:
- pos: -2.5,-45.5
parent: 2
type: Transform
- - uid: 14284
+ - uid: 14288
components:
- pos: -10.5,-23.5
parent: 2
type: Transform
- - uid: 14285
+ - uid: 14289
components:
- pos: -20.5,-57.5
parent: 2
type: Transform
- - uid: 14286
+ - uid: 14290
components:
- pos: -17.5,-73.5
parent: 2
type: Transform
- - uid: 14287
+ - uid: 14291
components:
- pos: 12.5,-3.5
parent: 2
type: Transform
- - uid: 14288
+ - uid: 14292
components:
- pos: -7.5,-2.5
parent: 2
type: Transform
- - uid: 14289
+ - uid: 14293
components:
- pos: -9.5,5.5
parent: 2
type: Transform
- - uid: 14290
+ - uid: 14294
components:
- pos: -21.5,-84.5
parent: 2
type: Transform
- - uid: 14291
+ - uid: 14295
components:
- pos: 8.5,15.5
parent: 2
type: Transform
- - uid: 14292
+ - uid: 14296
components:
- pos: 6.5,-2.5
parent: 2
type: Transform
- - uid: 14293
+ - uid: 14297
components:
- pos: 20.5,-23.5
parent: 2
type: Transform
- - uid: 14294
+ - uid: 14298
components:
- pos: -25.5,-75.5
parent: 2
type: Transform
- - uid: 14295
+ - uid: 14299
components:
- pos: 18.5,9.5
parent: 2
type: Transform
- - uid: 14296
+ - uid: 14300
components:
- pos: 14.5,5.5
parent: 2
type: Transform
- - uid: 14297
+ - uid: 14301
components:
- pos: -10.5,-12.5
parent: 2
type: Transform
- type: Timer
- - uid: 14298
+ - uid: 14302
components:
- name: cargo
type: MetaData
- pos: -12.5,-12.5
parent: 2
type: Transform
- - uid: 14299
+ - uid: 14303
components:
- pos: 14.5,19.5
parent: 2
type: Transform
- - uid: 14300
+ - uid: 14304
components:
- pos: 34.5,17.5
parent: 2
type: Transform
- - uid: 14301
+ - uid: 14305
components:
- pos: 52.5,3.5
parent: 2
type: Transform
- - uid: 14302
+ - uid: 14306
components:
- pos: 54.5,-14.5
parent: 2
type: Transform
- - uid: 14303
+ - uid: 14307
components:
- pos: 46.5,-35.5
parent: 2
type: Transform
- - uid: 14304
+ - uid: 14308
components:
- pos: 51.5,-47.5
parent: 2
type: Transform
- - uid: 14305
+ - uid: 14309
components:
- pos: 67.5,-49.5
parent: 2
type: Transform
- - uid: 14306
+ - uid: 14310
components:
- pos: 49.5,-60.5
parent: 2
type: Transform
- - uid: 14307
+ - uid: 14311
components:
- pos: 48.5,-55.5
parent: 2
type: Transform
- - uid: 14308
+ - uid: 14312
components:
- pos: 48.5,-50.5
parent: 2
type: Transform
- - uid: 14309
+ - uid: 14313
components:
- pos: -22.5,-15.5
parent: 2
type: Transform
- - uid: 14310
+ - uid: 14314
components:
- pos: 29.5,-62.5
parent: 2
type: Transform
- - uid: 14311
+ - uid: 14315
components:
- pos: 24.5,-74.5
parent: 2
type: Transform
- - uid: 14312
+ - uid: 14316
components:
- pos: 27.5,-86.5
parent: 2
type: Transform
- - uid: 14313
+ - uid: 14317
components:
- pos: -27.5,6.5
parent: 2
type: Transform
- - uid: 14314
+ - uid: 14318
components:
- pos: -38.5,-4.5
parent: 2
type: Transform
- - uid: 14315
+ - uid: 14319
components:
- name: suspicious disposal unit
type: MetaData
- pos: 0.5,-75.5
parent: 2
type: Transform
- - uid: 14316
+ - uid: 14320
components:
- pos: -22.5,25.5
parent: 2
type: Transform
- - uid: 14317
+ - uid: 14321
components:
- pos: -42.5,27.5
parent: 2
type: Transform
- - uid: 14318
+ - uid: 14322
components:
- pos: -43.5,5.5
parent: 2
type: Transform
- - uid: 14319
+ - uid: 14323
components:
- pos: -9.5,-66.5
parent: 2
type: Transform
- - uid: 14320
+ - uid: 14324
components:
- pos: -16.5,-67.5
parent: 2
type: Transform
- - uid: 14321
+ - uid: 14325
components:
- pos: -3.5,-67.5
parent: 2
type: Transform
- - uid: 14322
+ - uid: 14326
components:
- pos: 2.5,-63.5
parent: 2
type: Transform
- - uid: 14323
+ - uid: 14327
components:
- pos: -12.5,8.5
parent: 2
type: Transform
- - uid: 14324
+ - uid: 14328
components:
- pos: 20.5,-39.5
parent: 2
type: Transform
- - uid: 14325
+ - uid: 14329
components:
- pos: -17.5,37.5
parent: 2
type: Transform
- - uid: 14326
+ - uid: 14330
components:
- pos: -4.5,43.5
parent: 2
type: Transform
- - uid: 14327
+ - uid: 14331
components:
- pos: -13.5,49.5
parent: 2
type: Transform
- - uid: 14328
+ - uid: 14332
components:
- pos: -40.5,18.5
parent: 2
type: Transform
- - uid: 14329
+ - uid: 14333
components:
- pos: 75.5,-32.5
parent: 2
type: Transform
- - uid: 14330
+ - uid: 14334
components:
- pos: -54.5,-64.5
parent: 2
type: Transform
- - uid: 14331
+ - uid: 14335
components:
- pos: -52.5,-64.5
parent: 2
type: Transform
- - uid: 14332
+ - uid: 14336
components:
- pos: -36.5,-80.5
parent: 2
type: Transform
- - uid: 14333
+ - uid: 14337
components:
- pos: -66.5,-42.5
parent: 2
type: Transform
- - uid: 14334
+ - uid: 14338
components:
- pos: -42.5,-38.5
parent: 2
type: Transform
- proto: DisposalYJunction
entities:
- - uid: 14335
+ - uid: 14339
components:
- pos: 25.5,17.5
parent: 2
type: Transform
- - uid: 14336
+ - uid: 14340
components:
- rot: 3.141592653589793 rad
pos: -3.5,-27.5
parent: 2
type: Transform
- - uid: 14337
+ - uid: 14341
components:
- rot: 3.141592653589793 rad
pos: 16.5,-43.5
parent: 2
type: Transform
- - uid: 14338
+ - uid: 14342
components:
- rot: -1.5707963267948966 rad
pos: -4.5,-9.5
parent: 2
type: Transform
- - uid: 14339
+ - uid: 14343
components:
- pos: -4.5,0.5
parent: 2
type: Transform
- - uid: 14340
+ - uid: 14344
components:
- rot: -1.5707963267948966 rad
pos: 16.5,-27.5
parent: 2
type: Transform
- - uid: 14341
+ - uid: 14345
components:
- rot: 3.141592653589793 rad
pos: -0.5,-53.5
parent: 2
type: Transform
- - uid: 14342
+ - uid: 14346
components:
- rot: 3.141592653589793 rad
pos: -4.5,-43.5
parent: 2
type: Transform
- - uid: 14343
+ - uid: 14347
components:
- rot: 3.141592653589793 rad
pos: -19.5,-73.5
parent: 2
type: Transform
- - uid: 14344
+ - uid: 14348
components:
- rot: -1.5707963267948966 rad
pos: 52.5,1.5
parent: 2
type: Transform
- - uid: 14345
+ - uid: 14349
components:
- rot: 1.5707963267948966 rad
pos: -19.5,-27.5
parent: 2
type: Transform
- - uid: 14346
+ - uid: 14350
components:
- pos: -19.5,-6.5
parent: 2
type: Transform
- - uid: 14347
+ - uid: 14351
components:
- pos: -25.5,6.5
parent: 2
type: Transform
- - uid: 14348
+ - uid: 14352
components:
- rot: 3.141592653589793 rad
pos: -5.5,-61.5
parent: 2
type: Transform
- - uid: 14349
+ - uid: 14353
components:
- pos: -15.5,44.5
parent: 2
type: Transform
- proto: DogBed
entities:
- - uid: 14350
+ - uid: 14354
components:
- pos: 3.5,-7.5
parent: 2
type: Transform
- - uid: 14351
+ - uid: 14355
components:
- pos: 62.5,51.5
parent: 2
type: Transform
- - uid: 14352
+ - uid: 14356
components:
- name: fox bed
type: MetaData
- pos: 32.5,-28.5
parent: 2
type: Transform
- - uid: 14353
+ - uid: 14357
components:
- name: racoon bed
type: MetaData
- pos: -33.5,31.5
parent: 2
type: Transform
- - uid: 14354
+ - uid: 14358
components:
- pos: 26.5,23.5
parent: 2
type: Transform
- proto: DonkpocketBoxSpawner
entities:
- - uid: 14355
+ - uid: 14359
components:
- pos: -9.5,41.5
parent: 2
type: Transform
- - uid: 14356
+ - uid: 14360
components:
- pos: -10.5,41.5
parent: 2
type: Transform
- proto: DoorElectronics
entities:
- - uid: 14357
- components:
- - pos: -9.437697,39.446274
- parent: 2
- type: Transform
- - uid: 14358
- components:
- - pos: -9.640822,39.74315
- parent: 2
- type: Transform
- - uid: 14359
+ - uid: 14361
components:
- pos: -43.560223,-27.412916
parent: 2
type: Transform
- proto: DoubleEmergencyOxygenTankFilled
entities:
- - uid: 14360
+ - uid: 14362
components:
- pos: -36.45104,-33.42174
parent: 2
type: Transform
- proto: Dresser
entities:
- - uid: 14361
+ - uid: 14363
components:
- pos: 22.5,14.5
parent: 2
type: Transform
- - uid: 14362
+ - uid: 14364
components:
- pos: 32.5,-27.5
parent: 2
type: Transform
- - uid: 14363
+ - uid: 14365
components:
- pos: -26.5,46.5
parent: 2
type: Transform
- - uid: 14364
+ - uid: 14366
components:
- pos: 7.5,22.5
parent: 2
type: Transform
- - uid: 14365
+ - uid: 14367
components:
- pos: -42.5,11.5
parent: 2
type: Transform
- - uid: 14366
+ - uid: 14368
components:
- pos: -51.5,15.5
parent: 2
type: Transform
- - uid: 14367
+ - uid: 14369
components:
- pos: -52.5,6.5
parent: 2
type: Transform
- - uid: 14368
+ - uid: 14370
components:
- pos: -31.5,12.5
parent: 2
type: Transform
- - uid: 14369
+ - uid: 14371
components:
- pos: -24.5,31.5
parent: 2
type: Transform
- - uid: 14370
+ - uid: 14372
components:
- pos: 54.5,32.5
parent: 2
type: Transform
- - uid: 14371
+ - uid: 14373
components:
- pos: -19.5,35.5
parent: 2
type: Transform
- - uid: 14372
+ - uid: 14374
components:
- pos: -10.5,32.5
parent: 2
type: Transform
- - uid: 14373
+ - uid: 14375
components:
- pos: -20.5,39.5
parent: 2
type: Transform
- - uid: 14374
+ - uid: 14376
components:
- pos: -37.5,-20.5
parent: 2
type: Transform
- proto: Drill
entities:
- - uid: 14375
+ - uid: 14377
components:
- rot: -1.5707963267948966 rad
pos: -7.0942874,-100.40229
@@ -89979,396 +89999,396 @@ entities:
type: Transform
- proto: DrinkAntifreeze
entities:
- - uid: 14376
+ - uid: 14378
components:
- pos: -25.524792,55.598667
parent: 2
type: Transform
- - uid: 14377
+ - uid: 14379
components:
- pos: 40.348606,63.75022
parent: 2
type: Transform
- proto: DrinkBeerBottleFull
entities:
- - uid: 14378
+ - uid: 14380
components:
- pos: 16.20447,-64.18169
parent: 2
type: Transform
- - uid: 14379
+ - uid: 14381
components:
- pos: 16.48572,-64.21294
parent: 2
type: Transform
- - uid: 14380
+ - uid: 14382
components:
- pos: -56.96358,-25.301325
parent: 2
type: Transform
- proto: DrinkBlackRussianGlass
entities:
- - uid: 14381
+ - uid: 14383
components:
- pos: 65.5063,-0.9249393
parent: 2
type: Transform
- proto: DrinkBloodyMaryGlass
entities:
- - uid: 14382
+ - uid: 14384
components:
- pos: 61.61879,-53.35289
parent: 2
type: Transform
- proto: DrinkBlueCuracaoGlass
entities:
- - uid: 14383
+ - uid: 14385
components:
- pos: 38.58298,63.859596
parent: 2
type: Transform
- proto: DrinkBottleOfNothingFull
entities:
- - uid: 14384
+ - uid: 14386
components:
- pos: -28.300186,46.612503
parent: 2
type: Transform
- proto: DrinkBottleWhiskey
entities:
- - uid: 14385
+ - uid: 14387
components:
- pos: -10.628431,-32.17821
parent: 2
type: Transform
- proto: DrinkBottleWine
entities:
- - uid: 14386
+ - uid: 14388
components:
- pos: -37.38547,16.742819
parent: 2
type: Transform
- proto: DrinkCarrotJuice
entities:
- - uid: 14387
+ - uid: 14389
components:
- pos: -20.541529,49.622677
parent: 2
type: Transform
- proto: DrinkDetFlask
entities:
- - uid: 14388
+ - uid: 14390
components:
- pos: 20.044777,-12.206265
parent: 2
type: Transform
- proto: DrinkDoctorsDelightGlass
entities:
- - uid: 14389
+ - uid: 14391
components:
- pos: -18.294592,-56.251144
parent: 2
type: Transform
- proto: DrinkDriestMartiniGlass
entities:
- - uid: 14390
+ - uid: 14392
components:
- pos: 39.42673,62.828346
parent: 2
type: Transform
- proto: DrinkGinGlass
entities:
- - uid: 14391
+ - uid: 14393
components:
- pos: 39.55173,64.4221
parent: 2
type: Transform
- proto: DrinkGlass
entities:
- - uid: 14392
+ - uid: 14394
components:
- pos: 37.335964,-5.423753
parent: 2
type: Transform
- - uid: 14393
+ - uid: 14395
components:
- pos: 42.510113,-48.4107
parent: 2
type: Transform
- - uid: 14394
+ - uid: 14396
components:
- pos: 42.510113,-48.4107
parent: 2
type: Transform
- - uid: 14395
+ - uid: 14397
components:
- pos: -29.533712,-69.34898
parent: 2
type: Transform
- proto: DrinkGoldenCup
entities:
- - uid: 14396
+ - uid: 14398
components:
- pos: 48.422813,-25.09548
parent: 2
type: Transform
- proto: DrinkGoldschlagerBottleFull
entities:
- - uid: 14397
+ - uid: 14399
components:
- pos: 47.41234,-30.196692
parent: 2
type: Transform
- proto: DrinkGrapeJuice
entities:
- - uid: 14398
+ - uid: 14400
components:
- pos: -21.385279,49.66955
parent: 2
type: Transform
- proto: DrinkGrogGlass
entities:
- - uid: 14399
+ - uid: 14401
components:
- pos: -42.795,-78.417305
parent: 2
type: Transform
- - uid: 14400
+ - uid: 14402
components:
- pos: -40.300255,-77.37566
parent: 2
type: Transform
- - uid: 14401
+ - uid: 14403
components:
- pos: -41.117695,-78.40168
parent: 2
type: Transform
- proto: DrinkHippiesDelightGlass
entities:
- - uid: 14402
+ - uid: 14404
components:
- pos: -22.44165,-100.292145
parent: 2
type: Transform
- proto: DrinkHotCoffee
entities:
- - uid: 14403
+ - uid: 14405
components:
- pos: -26.93719,14.6217785
parent: 2
type: Transform
- proto: DrinkIrishCoffeeGlass
entities:
- - uid: 14404
+ - uid: 14406
components:
- pos: 31.04821,-61.292328
parent: 2
type: Transform
- proto: DrinkLongIslandIcedTeaGlass
entities:
- - uid: 14405
+ - uid: 14407
components:
- pos: 23.326912,-28.451742
parent: 2
type: Transform
- proto: DrinkMilkCarton
entities:
- - uid: 14406
+ - uid: 14408
components:
- pos: 4.089875,7.6089945
parent: 2
type: Transform
- - uid: 14407
+ - uid: 14409
components:
- pos: 4.246125,7.3902445
parent: 2
type: Transform
- proto: DrinkMugBlack
entities:
- - uid: 14408
+ - uid: 14410
components:
- pos: 53.58285,-67.465065
parent: 2
type: Transform
- proto: DrinkMugOne
entities:
- - uid: 14409
+ - uid: 14411
components:
- pos: 47.469124,50.58469
parent: 2
type: Transform
- - uid: 14410
+ - uid: 14412
components:
- pos: -31.248182,29.795187
parent: 2
type: Transform
- proto: DrinkShaker
entities:
- - uid: 14411
+ - uid: 14413
components:
- pos: 18.551043,13.384511
parent: 2
type: Transform
- - uid: 14412
+ - uid: 14414
components:
- pos: 18.316668,13.478261
parent: 2
type: Transform
- - uid: 14413
+ - uid: 14415
components:
- pos: 18.582293,13.603261
parent: 2
type: Transform
- proto: DrinkSpaceMountainWindGlass
entities:
- - uid: 14414
+ - uid: 14416
components:
- pos: 38.7514,49.607887
parent: 2
type: Transform
- proto: DrinkSpaceUpGlass
entities:
- - uid: 14415
+ - uid: 14417
components:
- pos: 38.377674,49.717262
parent: 2
type: Transform
- proto: DrinkToxinsSpecialGlass
entities:
- - uid: 14416
+ - uid: 14418
components:
- pos: -9.4857435,-36.467285
parent: 2
type: Transform
- proto: DrinkVodkaTonicGlass
entities:
- - uid: 14417
+ - uid: 14419
components:
- pos: 43.581966,-2.7850537
parent: 2
type: Transform
- proto: DrinkWaterBottleFull
entities:
- - uid: 14418
+ - uid: 14420
components:
- pos: -14.530239,-37.26908
parent: 2
type: Transform
- proto: DrinkWaterCup
entities:
- - uid: 14419
+ - uid: 14421
components:
- pos: -9.380106,-35.52635
parent: 2
type: Transform
- - uid: 14420
+ - uid: 14422
components:
- pos: -9.380106,-35.52635
parent: 2
type: Transform
- - uid: 14421
+ - uid: 14423
components:
- pos: -9.380106,-35.52635
parent: 2
type: Transform
- - uid: 14422
+ - uid: 14424
components:
- pos: -9.380106,-35.52635
parent: 2
type: Transform
- - uid: 14423
+ - uid: 14425
components:
- pos: -9.380106,-35.52635
parent: 2
type: Transform
- - uid: 14424
+ - uid: 14426
components:
- pos: -9.380106,-35.52635
parent: 2
type: Transform
- proto: DrinkWhiskeyBottleFull
entities:
- - uid: 14425
+ - uid: 14427
components:
- pos: -14.464556,-39.286304
parent: 2
type: Transform
- proto: DrinkWhiskeyGlass
entities:
- - uid: 14426
+ - uid: 14428
components:
- pos: -29.929981,15.531138
parent: 2
type: Transform
- - uid: 14427
+ - uid: 14429
components:
- pos: 15.324228,-79.460625
parent: 2
type: Transform
- proto: DrinkWhiskeySodaGlass
entities:
- - uid: 14428
+ - uid: 14430
components:
- pos: 7.0699005,20.752857
parent: 2
type: Transform
- proto: Dropper
entities:
- - uid: 14429
+ - uid: 14431
components:
- - pos: 7.590159,-45.315723
+ - pos: 7.3722568,-45.299557
parent: 2
type: Transform
- - uid: 14430
+ - uid: 14432
components:
- - pos: 7.480784,-45.628223
+ - pos: 7.3410068,-45.37768
parent: 2
type: Transform
- - uid: 14431
+ - uid: 14433
components:
- - pos: 7.449534,-45.440723
+ - pos: 7.3253818,-45.487057
parent: 2
type: Transform
- proto: EggplantSeeds
entities:
- - uid: 14432
+ - uid: 14434
components:
- pos: 11.993146,54.637722
parent: 2
type: Transform
- - uid: 14433
+ - uid: 14435
components:
- pos: 11.993146,54.637722
parent: 2
type: Transform
- - uid: 14434
+ - uid: 14436
components:
- pos: 11.993146,54.637722
parent: 2
type: Transform
- - uid: 14435
+ - uid: 14437
components:
- pos: 11.993146,54.637722
parent: 2
type: Transform
- - uid: 14436
+ - uid: 14438
components:
- pos: 11.993146,54.637722
parent: 2
type: Transform
- - uid: 14437
+ - uid: 14439
components:
- pos: 11.993146,54.637722
parent: 2
type: Transform
- proto: EmergencyLight
entities:
- - uid: 14438
+ - uid: 14440
components:
- pos: -70.5,-37.5
parent: 2
type: Transform
- - uid: 14439
+ - uid: 14441
components:
- rot: -1.5707963267948966 rad
pos: -44.5,7.5
@@ -90377,7 +90397,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14440
+ - uid: 14442
components:
- rot: 3.141592653589793 rad
pos: 22.5,-25.5
@@ -90386,7 +90406,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14441
+ - uid: 14443
components:
- rot: 3.141592653589793 rad
pos: 29.5,-25.5
@@ -90395,7 +90415,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14442
+ - uid: 14444
components:
- pos: 30.5,-41.5
parent: 2
@@ -90403,7 +90423,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14443
+ - uid: 14445
components:
- pos: -12.5,-52.5
parent: 2
@@ -90411,7 +90431,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14444
+ - uid: 14446
components:
- rot: 1.5707963267948966 rad
pos: -25.5,-76.5
@@ -90420,7 +90440,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14445
+ - uid: 14447
components:
- rot: -1.5707963267948966 rad
pos: 26.5,-50.5
@@ -90429,7 +90449,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14446
+ - uid: 14448
components:
- pos: 29.5,-4.5
parent: 2
@@ -90437,7 +90457,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14447
+ - uid: 14449
components:
- rot: 1.5707963267948966 rad
pos: 40.5,6.5
@@ -90446,7 +90466,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14448
+ - uid: 14450
components:
- pos: 54.5,-5.5
parent: 2
@@ -90454,7 +90474,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14449
+ - uid: 14451
components:
- rot: 3.141592653589793 rad
pos: -23.5,-62.5
@@ -90463,7 +90483,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14450
+ - uid: 14452
components:
- rot: 1.5707963267948966 rad
pos: -13.5,52.5
@@ -90472,7 +90492,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14451
+ - uid: 14453
components:
- pos: -5.5,59.5
parent: 2
@@ -90480,7 +90500,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14452
+ - uid: 14454
components:
- pos: -10.5,-59.5
parent: 2
@@ -90488,7 +90508,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14453
+ - uid: 14455
components:
- pos: -61.5,-23.5
parent: 2
@@ -90496,7 +90516,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14454
+ - uid: 14456
components:
- rot: -1.5707963267948966 rad
pos: -52.5,-15.5
@@ -90505,7 +90525,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14455
+ - uid: 14457
components:
- pos: 15.5,-52.5
parent: 2
@@ -90513,7 +90533,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14456
+ - uid: 14458
components:
- rot: 1.5707963267948966 rad
pos: 17.5,-4.5
@@ -90522,7 +90542,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14457
+ - uid: 14459
components:
- rot: -1.5707963267948966 rad
pos: -18.5,28.5
@@ -90531,7 +90551,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14458
+ - uid: 14460
components:
- rot: 1.5707963267948966 rad
pos: -16.5,36.5
@@ -90540,7 +90560,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14459
+ - uid: 14461
components:
- rot: -1.5707963267948966 rad
pos: 65.5,-12.5
@@ -90549,7 +90569,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14460
+ - uid: 14462
components:
- pos: -2.5,46.5
parent: 2
@@ -90557,7 +90577,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14461
+ - uid: 14463
components:
- rot: 1.5707963267948966 rad
pos: -22.5,54.5
@@ -90566,7 +90586,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14462
+ - uid: 14464
components:
- pos: -5.5,3.5
parent: 2
@@ -90574,7 +90594,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14463
+ - uid: 14465
components:
- pos: 8.5,3.5
parent: 2
@@ -90582,7 +90602,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14464
+ - uid: 14466
components:
- rot: 1.5707963267948966 rad
pos: -0.5,8.5
@@ -90591,7 +90611,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14465
+ - uid: 14467
components:
- pos: 14.5,14.5
parent: 2
@@ -90599,7 +90619,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14466
+ - uid: 14468
components:
- pos: -20.5,-4.5
parent: 2
@@ -90607,7 +90627,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14467
+ - uid: 14469
components:
- pos: -16.5,4.5
parent: 2
@@ -90615,7 +90635,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14468
+ - uid: 14470
components:
- rot: -1.5707963267948966 rad
pos: -18.5,-12.5
@@ -90624,7 +90644,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14469
+ - uid: 14471
components:
- pos: 30.5,8.5
parent: 2
@@ -90632,7 +90652,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14470
+ - uid: 14472
components:
- pos: 23.5,18.5
parent: 2
@@ -90640,7 +90660,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14471
+ - uid: 14473
components:
- pos: 10.5,-41.5
parent: 2
@@ -90648,7 +90668,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14472
+ - uid: 14474
components:
- pos: 38.5,-41.5
parent: 2
@@ -90656,7 +90676,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14473
+ - uid: 14475
components:
- pos: -14.5,-41.5
parent: 2
@@ -90664,7 +90684,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14474
+ - uid: 14476
components:
- rot: -1.5707963267948966 rad
pos: -34.5,-42.5
@@ -90673,7 +90693,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14475
+ - uid: 14477
components:
- rot: 1.5707963267948966 rad
pos: -35.5,-52.5
@@ -90682,7 +90702,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14476
+ - uid: 14478
components:
- rot: -1.5707963267948966 rad
pos: -23.5,-16.5
@@ -90691,7 +90711,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14477
+ - uid: 14479
components:
- pos: -12.5,-25.5
parent: 2
@@ -90699,7 +90719,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14478
+ - uid: 14480
components:
- rot: -1.5707963267948966 rad
pos: -31.5,-14.5
@@ -90708,7 +90728,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14479
+ - uid: 14481
components:
- rot: 3.141592653589793 rad
pos: -45.5,-6.5
@@ -90717,7 +90737,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14480
+ - uid: 14482
components:
- pos: -17.5,-69.5
parent: 2
@@ -90725,7 +90745,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14481
+ - uid: 14483
components:
- rot: 3.141592653589793 rad
pos: 30.5,-18.5
@@ -90734,7 +90754,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14482
+ - uid: 14484
components:
- rot: 3.141592653589793 rad
pos: 20.5,-18.5
@@ -90743,7 +90763,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14483
+ - uid: 14485
components:
- rot: -1.5707963267948966 rad
pos: 18.5,4.5
@@ -90752,7 +90772,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14484
+ - uid: 14486
components:
- pos: 37.5,-25.5
parent: 2
@@ -90760,7 +90780,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14485
+ - uid: 14487
components:
- rot: -1.5707963267948966 rad
pos: 42.5,-26.5
@@ -90769,7 +90789,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14486
+ - uid: 14488
components:
- rot: 3.141592653589793 rad
pos: 40.5,0.5
@@ -90778,7 +90798,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14487
+ - uid: 14489
components:
- rot: -1.5707963267948966 rad
pos: 54.5,1.5
@@ -90787,7 +90807,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14488
+ - uid: 14490
components:
- rot: -1.5707963267948966 rad
pos: 65.5,-35.5
@@ -90796,7 +90816,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14489
+ - uid: 14491
components:
- pos: 60.5,-51.5
parent: 2
@@ -90804,7 +90824,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14490
+ - uid: 14492
components:
- pos: 53.5,-51.5
parent: 2
@@ -90812,7 +90832,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14491
+ - uid: 14493
components:
- rot: -1.5707963267948966 rad
pos: 46.5,-47.5
@@ -90821,7 +90841,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14492
+ - uid: 14494
components:
- rot: -1.5707963267948966 rad
pos: 46.5,-38.5
@@ -90830,7 +90850,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14493
+ - uid: 14495
components:
- rot: -1.5707963267948966 rad
pos: 16.5,-27.5
@@ -90839,7 +90859,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14494
+ - uid: 14496
components:
- rot: 1.5707963267948966 rad
pos: 34.5,-27.5
@@ -90848,7 +90868,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14495
+ - uid: 14497
components:
- pos: 4.5,-25.5
parent: 2
@@ -90856,7 +90876,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14496
+ - uid: 14498
components:
- pos: -2.5,-25.5
parent: 2
@@ -90864,7 +90884,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14497
+ - uid: 14499
components:
- pos: 5.5,-41.5
parent: 2
@@ -90872,7 +90892,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14498
+ - uid: 14500
components:
- rot: -1.5707963267948966 rad
pos: -18.5,-35.5
@@ -90881,7 +90901,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14499
+ - uid: 14501
components:
- rot: 3.141592653589793 rad
pos: -30.5,-35.5
@@ -90890,7 +90910,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14500
+ - uid: 14502
components:
- rot: 1.5707963267948966 rad
pos: -55.5,-10.5
@@ -90899,7 +90919,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14501
+ - uid: 14503
components:
- rot: -1.5707963267948966 rad
pos: -64.5,-26.5
@@ -90908,7 +90928,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14502
+ - uid: 14504
components:
- pos: -71.5,-23.5
parent: 2
@@ -90916,7 +90936,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14503
+ - uid: 14505
components:
- rot: 3.141592653589793 rad
pos: -35.5,-0.5
@@ -90925,7 +90945,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14504
+ - uid: 14506
components:
- rot: -1.5707963267948966 rad
pos: 30.5,23.5
@@ -90934,7 +90954,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14505
+ - uid: 14507
components:
- rot: 3.141592653589793 rad
pos: 30.5,14.5
@@ -90943,7 +90963,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14506
+ - uid: 14508
components:
- rot: 1.5707963267948966 rad
pos: 20.5,20.5
@@ -90952,7 +90972,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14507
+ - uid: 14509
components:
- rot: -1.5707963267948966 rad
pos: -2.5,8.5
@@ -90961,7 +90981,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14508
+ - uid: 14510
components:
- rot: 3.141592653589793 rad
pos: -27.5,-14.5
@@ -90970,7 +90990,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14509
+ - uid: 14511
components:
- rot: 3.141592653589793 rad
pos: -34.5,-13.5
@@ -90979,7 +90999,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14510
+ - uid: 14512
components:
- rot: 1.5707963267948966 rad
pos: 4.5,20.5
@@ -90988,7 +91008,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14511
+ - uid: 14513
components:
- pos: 45.5,-71.5
parent: 2
@@ -90996,7 +91016,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14512
+ - uid: 14514
components:
- rot: -1.5707963267948966 rad
pos: 40.5,-61.5
@@ -91005,7 +91025,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14513
+ - uid: 14515
components:
- pos: 27.5,-58.5
parent: 2
@@ -91013,7 +91033,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14514
+ - uid: 14516
components:
- rot: 1.5707963267948966 rad
pos: -25.5,20.5
@@ -91022,7 +91042,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14515
+ - uid: 14517
components:
- rot: -1.5707963267948966 rad
pos: -36.5,20.5
@@ -91031,7 +91051,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14516
+ - uid: 14518
components:
- rot: 3.141592653589793 rad
pos: -44.5,28.5
@@ -91040,7 +91060,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14517
+ - uid: 14519
components:
- rot: 1.5707963267948966 rad
pos: -38.5,30.5
@@ -91049,7 +91069,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14518
+ - uid: 14520
components:
- rot: 3.141592653589793 rad
pos: -34.5,28.5
@@ -91058,7 +91078,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14519
+ - uid: 14521
components:
- pos: -17.5,7.5
parent: 2
@@ -91066,7 +91086,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14520
+ - uid: 14522
components:
- rot: -1.5707963267948966 rad
pos: -3.5,-30.5
@@ -91075,7 +91095,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14521
+ - uid: 14523
components:
- rot: 1.5707963267948966 rad
pos: 70.5,-35.5
@@ -91084,7 +91104,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14522
+ - uid: 14524
components:
- rot: 3.141592653589793 rad
pos: 74.5,-49.5
@@ -91093,7 +91113,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14523
+ - uid: 14525
components:
- pos: 60.5,-43.5
parent: 2
@@ -91101,7 +91121,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14524
+ - uid: 14526
components:
- pos: 6.5,-29.5
parent: 2
@@ -91109,7 +91129,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14525
+ - uid: 14527
components:
- pos: 30.5,-71.5
parent: 2
@@ -91117,7 +91137,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14526
+ - uid: 14528
components:
- rot: 3.141592653589793 rad
pos: 18.5,-86.5
@@ -91126,7 +91146,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14527
+ - uid: 14529
components:
- rot: -1.5707963267948966 rad
pos: 31.5,-83.5
@@ -91135,7 +91155,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14528
+ - uid: 14530
components:
- rot: -1.5707963267948966 rad
pos: 49.5,-84.5
@@ -91144,7 +91164,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14529
+ - uid: 14531
components:
- rot: -1.5707963267948966 rad
pos: 26.5,23.5
@@ -91153,96 +91173,96 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14530
+ - uid: 14532
components:
- pos: -59.5,-36.5
parent: 2
type: Transform
- - uid: 14531
+ - uid: 14533
components:
- pos: 25.5,-34.5
parent: 2
type: Transform
- proto: EmergencyOxygenTankFilled
entities:
- - uid: 14532
+ - uid: 14534
components:
- pos: -2.5493312,-73.46234
parent: 2
type: Transform
- proto: EmergencyRollerBed
entities:
- - uid: 14533
+ - uid: 14535
components:
- pos: -20.356709,-75.42545
parent: 2
type: Transform
- proto: Emitter
entities:
- - uid: 14534
+ - uid: 14536
components:
- pos: -55.5,-8.5
parent: 2
type: Transform
- - uid: 14535
+ - uid: 14537
components:
- pos: -62.5,-6.5
parent: 2
type: Transform
- - uid: 14536
+ - uid: 14538
components:
- rot: -1.5707963267948966 rad
pos: -59.5,-9.5
parent: 2
type: Transform
- - uid: 14537
+ - uid: 14539
components:
- rot: 1.5707963267948966 rad
pos: -73.5,-9.5
parent: 2
type: Transform
- - uid: 14538
+ - uid: 14540
components:
- pos: -70.5,-6.5
parent: 2
type: Transform
- - uid: 14539
+ - uid: 14541
components:
- rot: 1.5707963267948966 rad
pos: -73.5,-17.5
parent: 2
type: Transform
- - uid: 14540
+ - uid: 14542
components:
- rot: 3.141592653589793 rad
pos: -70.5,-20.5
parent: 2
type: Transform
- - uid: 14541
+ - uid: 14543
components:
- rot: 3.141592653589793 rad
pos: -62.5,-20.5
parent: 2
type: Transform
- - uid: 14542
+ - uid: 14544
components:
- rot: -1.5707963267948966 rad
pos: -59.5,-17.5
parent: 2
type: Transform
- - uid: 14543
+ - uid: 14545
components:
- rot: 3.141592653589793 rad
pos: -61.5,-30.5
parent: 2
type: Transform
- - uid: 14544
+ - uid: 14546
components:
- rot: 1.5707963267948966 rad
pos: -55.5,-7.5
parent: 2
type: Transform
- - uid: 14545
+ - uid: 14547
components:
- rot: 3.141592653589793 rad
pos: -60.5,-30.5
@@ -91250,104 +91270,104 @@ entities:
type: Transform
- proto: EncryptionKeyCargo
entities:
- - uid: 14547
+ - uid: 14549
components:
- flags: InContainer
type: MetaData
- - parent: 14546
+ - parent: 14548
type: Transform
- canCollide: False
type: Physics
- proto: EncryptionKeyCommand
entities:
- - uid: 14549
+ - uid: 14551
components:
- flags: InContainer
type: MetaData
- - parent: 14548
+ - parent: 14550
type: Transform
- canCollide: False
type: Physics
- proto: EncryptionKeyCommon
entities:
- - uid: 14551
+ - uid: 14553
components:
- flags: InContainer
type: MetaData
- - parent: 14550
+ - parent: 14552
type: Transform
- canCollide: False
type: Physics
- proto: EncryptionKeyEngineering
entities:
- - uid: 14553
+ - uid: 14555
components:
- flags: InContainer
type: MetaData
- - parent: 14552
+ - parent: 14554
type: Transform
- canCollide: False
type: Physics
- proto: EncryptionKeyMedical
entities:
- - uid: 14555
+ - uid: 14557
components:
- flags: InContainer
type: MetaData
- - parent: 14554
+ - parent: 14556
type: Transform
- canCollide: False
type: Physics
- proto: EncryptionKeyRobo
entities:
- - uid: 14557
+ - uid: 14559
components:
- flags: InContainer
type: MetaData
- - parent: 14556
+ - parent: 14558
type: Transform
- canCollide: False
type: Physics
- proto: EncryptionKeyScience
entities:
- - uid: 14558
+ - uid: 14560
components:
- flags: InContainer
type: MetaData
- - parent: 14556
+ - parent: 14558
type: Transform
- canCollide: False
type: Physics
- proto: EncryptionKeySecurity
entities:
- - uid: 14560
+ - uid: 14562
components:
- flags: InContainer
type: MetaData
- - parent: 14559
+ - parent: 14561
type: Transform
- canCollide: False
type: Physics
- proto: EncryptionKeyService
entities:
- - uid: 14562
+ - uid: 14564
components:
- flags: InContainer
type: MetaData
- - parent: 14561
+ - parent: 14563
type: Transform
- canCollide: False
type: Physics
- proto: ExosuitFabricator
entities:
- - uid: 14563
+ - uid: 14565
components:
- pos: 69.5,-43.5
parent: 2
type: Transform
- proto: ExplosivesSignMed
entities:
- - uid: 14564
+ - uid: 14566
components:
- rot: 1.5707963267948966 rad
pos: 67.5,-32.5
@@ -91355,186 +91375,186 @@ entities:
type: Transform
- proto: ExtendedEmergencyOxygenTankFilled
entities:
- - uid: 14565
+ - uid: 14567
components:
- pos: -70.53087,-25.890057
parent: 2
type: Transform
- - uid: 14566
+ - uid: 14568
components:
- pos: -40.389053,32.87297
parent: 2
type: Transform
- - uid: 14567
+ - uid: 14569
components:
- pos: 3.7780228,-75.4205
parent: 2
type: Transform
- proto: ExtinguisherCabinetFilled
entities:
- - uid: 14568
+ - uid: 14570
components:
- pos: -20.5,64.5
parent: 2
type: Transform
- - uid: 14569
+ - uid: 14571
components:
- pos: -1.5,47.5
parent: 2
type: Transform
- - uid: 14570
+ - uid: 14572
components:
- pos: -20.5,53.5
parent: 2
type: Transform
- - uid: 14571
+ - uid: 14573
components:
- pos: -13.5,32.5
parent: 2
type: Transform
- - uid: 14572
+ - uid: 14574
components:
- pos: -1.5,8.5
parent: 2
type: Transform
- - uid: 14573
+ - uid: 14575
components:
- pos: -33.5,-39.5
parent: 2
type: Transform
- - uid: 14574
+ - uid: 14576
components:
- pos: -15.5,-2.5
parent: 2
type: Transform
- - uid: 14575
+ - uid: 14577
components:
- pos: -17.5,-17.5
parent: 2
type: Transform
- - uid: 14576
+ - uid: 14578
components:
- pos: -21.5,-30.5
parent: 2
type: Transform
- - uid: 14577
+ - uid: 14579
components:
- pos: -2.5,-29.5
parent: 2
type: Transform
- - uid: 14578
+ - uid: 14580
components:
- pos: 52.5,-46.5
parent: 2
type: Transform
- - uid: 14579
+ - uid: 14581
components:
- pos: -10.5,-47.5
parent: 2
type: Transform
- - uid: 14580
+ - uid: 14582
components:
- pos: 19.5,18.5
parent: 2
type: Transform
- - uid: 14581
+ - uid: 14583
components:
- pos: 3.5,13.5
parent: 2
type: Transform
- - uid: 14582
+ - uid: 14584
components:
- pos: -6.5,-17.5
parent: 2
type: Transform
- - uid: 14583
+ - uid: 14585
components:
- pos: 23.5,-51.5
parent: 2
type: Transform
- - uid: 14584
+ - uid: 14586
components:
- pos: 77.5,-48.5
parent: 2
type: Transform
- - uid: 14585
+ - uid: 14587
components:
- pos: 76.5,-38.5
parent: 2
type: Transform
- proto: FaxMachineBase
entities:
- - uid: 14586
+ - uid: 14588
components:
- pos: -28.5,-9.5
parent: 2
type: Transform
- name: engineering fax
type: FaxMachine
- - uid: 14587
+ - uid: 14589
components:
- pos: -34.5,23.5
parent: 2
type: Transform
- name: cargo fax
type: FaxMachine
- - uid: 14588
+ - uid: 14590
components:
- pos: 40.5,-39.5
parent: 2
type: Transform
- name: science fax
type: FaxMachine
- - uid: 14589
+ - uid: 14591
components:
- pos: -16.5,-61.5
parent: 2
type: Transform
- name: medbay fax
type: FaxMachine
- - uid: 14590
+ - uid: 14592
components:
- pos: -25.5,-35.5
parent: 2
type: Transform
- name: atmos fax
type: FaxMachine
- - uid: 14591
+ - uid: 14593
components:
- pos: 18.5,-14.5
parent: 2
type: Transform
- name: detective fax
type: FaxMachine
- - uid: 14592
+ - uid: 14594
components:
- pos: 22.5,23.5
parent: 2
type: Transform
- name: security fax
type: FaxMachine
- - uid: 14593
+ - uid: 14595
components:
- pos: 12.5,-5.5
parent: 2
type: Transform
- name: library fax
type: FaxMachine
- - uid: 14594
+ - uid: 14596
components:
- pos: -22.5,-98.5
parent: 2
type: Transform
- name: maint fax
type: FaxMachine
- - uid: 14595
+ - uid: 14597
components:
- pos: -12.5,-19.5
parent: 2
type: Transform
- name: janitorial fax
type: FaxMachine
- - uid: 14596
+ - uid: 14598
components:
- pos: -1.5,-6.5
parent: 2
@@ -91543,57 +91563,57 @@ entities:
type: FaxMachine
- proto: FaxMachineCaptain
entities:
- - uid: 14597
+ - uid: 14599
components:
- pos: 30.5,-29.5
parent: 2
type: Transform
- proto: FenceMetalCorner
entities:
- - uid: 14598
+ - uid: 14600
components:
- rot: 3.141592653589793 rad
pos: 61.5,47.5
parent: 2
type: Transform
- - uid: 14599
+ - uid: 14601
components:
- rot: -1.5707963267948966 rad
pos: -44.5,-84.5
parent: 2
type: Transform
- - uid: 14600
+ - uid: 14602
components:
- rot: 1.5707963267948966 rad
pos: -39.5,-80.5
parent: 2
type: Transform
- - uid: 14601
+ - uid: 14603
components:
- rot: 3.141592653589793 rad
pos: -44.5,-80.5
parent: 2
type: Transform
- - uid: 14602
+ - uid: 14604
components:
- pos: -39.5,-84.5
parent: 2
type: Transform
- proto: FenceMetalGate
entities:
- - uid: 14603
+ - uid: 14605
components:
- rot: 3.141592653589793 rad
pos: -52.5,-30.5
parent: 2
type: Transform
- - uid: 14604
+ - uid: 14606
components:
- rot: 3.141592653589793 rad
pos: 62.5,47.5
parent: 2
type: Transform
- - uid: 14605
+ - uid: 14607
components:
- rot: 3.141592653589793 rad
pos: -41.5,-84.5
@@ -91605,98 +91625,98 @@ entities:
type: Physics
- proto: FenceMetalStraight
entities:
- - uid: 14606
+ - uid: 14608
components:
- pos: 61.5,49.5
parent: 2
type: Transform
- - uid: 14607
+ - uid: 14609
components:
- rot: 1.5707963267948966 rad
pos: 63.5,47.5
parent: 2
type: Transform
- - uid: 14608
+ - uid: 14610
components:
- pos: 61.5,48.5
parent: 2
type: Transform
- - uid: 14609
+ - uid: 14611
components:
- rot: 3.141592653589793 rad
pos: -39.5,-82.5
parent: 2
type: Transform
- - uid: 14610
+ - uid: 14612
components:
- rot: 3.141592653589793 rad
pos: -39.5,-81.5
parent: 2
type: Transform
- - uid: 14611
+ - uid: 14613
components:
- rot: -1.5707963267948966 rad
pos: -42.5,-80.5
parent: 2
type: Transform
- - uid: 14612
+ - uid: 14614
components:
- rot: -1.5707963267948966 rad
pos: -43.5,-80.5
parent: 2
type: Transform
- - uid: 14613
+ - uid: 14615
components:
- pos: -44.5,-82.5
parent: 2
type: Transform
- - uid: 14614
+ - uid: 14616
components:
- rot: -1.5707963267948966 rad
pos: -40.5,-84.5
parent: 2
type: Transform
- - uid: 14615
+ - uid: 14617
components:
- rot: -1.5707963267948966 rad
pos: -40.5,-80.5
parent: 2
type: Transform
- - uid: 14616
+ - uid: 14618
components:
- rot: 1.5707963267948966 rad
pos: -42.5,-84.5
parent: 2
type: Transform
- - uid: 14617
+ - uid: 14619
components:
- rot: 1.5707963267948966 rad
pos: -43.5,-84.5
parent: 2
type: Transform
- - uid: 14618
+ - uid: 14620
components:
- pos: -44.5,-83.5
parent: 2
type: Transform
- - uid: 14619
+ - uid: 14621
components:
- rot: -1.5707963267948966 rad
pos: -41.5,-80.5
parent: 2
type: Transform
- - uid: 14620
+ - uid: 14622
components:
- pos: -44.5,-81.5
parent: 2
type: Transform
- - uid: 14621
+ - uid: 14623
components:
- rot: 3.141592653589793 rad
pos: -39.5,-83.5
parent: 2
type: Transform
- - uid: 14622
+ - uid: 14624
components:
- rot: -1.5707963267948966 rad
pos: -51.5,-30.5
@@ -91704,2068 +91724,2063 @@ entities:
type: Transform
- proto: FigureSpawner
entities:
- - uid: 14623
+ - uid: 14625
components:
- pos: 9.5,-6.5
parent: 2
type: Transform
- - uid: 14624
+ - uid: 14626
components:
- pos: 10.5,-6.5
parent: 2
type: Transform
- - uid: 14625
+ - uid: 14627
components:
- pos: -0.5,31.5
parent: 2
type: Transform
- - uid: 14626
+ - uid: 14628
components:
- pos: -1.5,30.5
parent: 2
type: Transform
- proto: filingCabinet
entities:
- - uid: 14627
+ - uid: 14629
components:
- pos: 17.5,-14.5
parent: 2
type: Transform
- - uid: 14628
+ - uid: 14630
components:
- pos: 62.5,-3.5
parent: 2
type: Transform
- proto: filingCabinetDrawer
entities:
- - uid: 14629
+ - uid: 14631
components:
- pos: -24.5,-69.5
parent: 2
type: Transform
- - uid: 14630
+ - uid: 14632
components:
- pos: 58.5,31.5
parent: 2
type: Transform
- - uid: 14631
+ - uid: 14633
components:
- pos: 63.5,-3.5
parent: 2
type: Transform
- proto: filingCabinetDrawerRandom
entities:
- - uid: 14632
+ - uid: 14634
components:
- pos: 41.5,-3.5
parent: 2
type: Transform
- - uid: 14633
+ - uid: 14635
components:
- pos: -22.5,13.5
parent: 2
type: Transform
- proto: filingCabinetRandom
entities:
- - uid: 14634
+ - uid: 14636
components:
- pos: 41.5,-2.5
parent: 2
type: Transform
- - uid: 14635
+ - uid: 14637
components:
- pos: -23.5,13.5
parent: 2
type: Transform
- proto: filingCabinetTallRandom
entities:
- - uid: 14636
+ - uid: 14638
components:
- pos: 57.5,-40.5
parent: 2
type: Transform
- proto: FireAlarm
entities:
- - uid: 14637
+ - uid: 14639
components:
- pos: -6.5,-44.5
parent: 2
type: Transform
- devices:
- - 813
+ - 815
+ - 15080
- 15081
- - 15082
+ - 14734
+ - 14733
+ - 14755
- 14732
- 14731
- - 14753
- 14730
- - 14729
- - 14728
+ - 14925
- 14926
- - 14927
- - 14972
- - 15046
+ - 14971
- 15045
- - 15047
- - 14818
- - 14852
+ - 15044
+ - 15046
+ - 14819
+ - 14853
type: DeviceList
- - uid: 14638
+ - uid: 14640
components:
- pos: 30.5,-40.5
parent: 2
type: Transform
- devices:
- - 15023
- 15022
- 15021
- - 14975
- - 14897
- - 14919
- - 15110
- - 14986
- - 14912
+ - 15020
+ - 14974
+ - 14896
+ - 14918
+ - 15109
+ - 14985
- 14911
- - 14971
- - 14973
- - 14978
- - 15013
- - 14950
- - 14740
- - 818
- - 15001
- - 14999
- - 14842
+ - 14910
+ - 14970
+ - 14972
+ - 14977
+ - 15012
+ - 14949
+ - 14742
+ - 820
+ - 15000
+ - 14998
+ - 14843
type: DeviceList
- - uid: 14639
+ - uid: 14641
components:
- rot: -1.5707963267948966 rad
pos: -20.5,58.5
parent: 2
type: Transform
- devices:
- - 15163
+ - 15162
+ - 15157
- 15158
- - 15159
- - 15152
- 15151
- 15150
- - 15155
+ - 15149
- 15154
- - 859
- - 15142
+ - 15153
+ - 861
- 15141
+ - 15140
type: DeviceList
- - uid: 14640
+ - uid: 14642
components:
- rot: -1.5707963267948966 rad
pos: -11.5,62.5
parent: 2
type: Transform
- devices:
+ - 15157
- 15158
- - 15159
- - 15161
+ - 15160
+ - 15155
- 15156
- - 15157
- - 15153
- - 15131
- - 860
+ - 15152
+ - 15130
+ - 862
type: DeviceList
- - uid: 14641
+ - uid: 14643
components:
- pos: -29.5,-15.5
parent: 2
type: Transform
- devices:
- - 872
- - 15034
+ - 874
+ - 15033
+ - 15048
- 15049
- - 15050
- - 15063
- 15062
- - 14807
+ - 15061
+ - 14809
+ - 15063
- 15064
- - 15065
type: DeviceList
- - uid: 14642
+ - uid: 14644
components:
- rot: 1.5707963267948966 rad
pos: 51.5,12.5
parent: 2
type: Transform
- devices:
- - 854
+ - 856
+ - 14869
- 14868
- 14867
- 14866
- 14865
- - 14864
- - 14869
- 14870
- 14871
- - 15005
+ - 14872
- 15004
- - 15012
- - 15088
- - 15007
+ - 15003
+ - 15011
+ - 15087
+ - 15006
type: DeviceList
- - uid: 14643
+ - uid: 14645
components:
- pos: 28.5,-57.5
parent: 2
type: Transform
- devices:
- - 853
- - 15039
+ - 855
- 15038
- - 15040
- - 14725
- - 14912
- - 14986
- - 15110
- - 15115
+ - 15037
+ - 15039
+ - 14727
+ - 14911
+ - 14985
+ - 15109
+ - 15114
type: DeviceList
- - uid: 14644
+ - uid: 14646
components:
- rot: -1.5707963267948966 rad
pos: -17.5,20.5
parent: 2
type: Transform
- devices:
- - 890
- - 15072
+ - 892
- 15071
+ - 15070
+ - 15072
- 15073
- 15074
- - 15075
- - 15011
+ - 15010
+ - 15135
- 15136
- - 15137
- - 15076
+ - 15075
type: DeviceList
- - uid: 14645
+ - uid: 14647
components:
- pos: 65.5,-42.5
parent: 2
type: Transform
- devices:
- - 898
- - 15018
+ - 900
+ - 15017
+ - 14875
- 14874
- - 14873
- - 14766
- - 15019
+ - 14768
+ - 15018
+ - 15128
- 15129
- - 15130
type: DeviceList
- - uid: 14646
+ - uid: 14648
components:
- rot: 1.5707963267948966 rad
pos: -30.5,-11.5
parent: 2
type: Transform
- devices:
- - 15109
- - 14806
- - 14807
- - 919
+ - 15108
+ - 14808
+ - 14809
+ - 921
type: DeviceList
- - uid: 14647
+ - uid: 14649
components:
- rot: 3.141592653589793 rad
pos: -38.5,-14.5
parent: 2
type: Transform
- devices:
- - 894
- - 15052
+ - 896
- 15051
- - 15065
+ - 15050
- 15064
- - 15119
- - 15068
- - 14808
+ - 15063
+ - 15118
+ - 15067
+ - 14810
type: DeviceList
- - uid: 14648
+ - uid: 14650
components:
- pos: 8.5,18.5
parent: 2
type: Transform
- devices:
- - 15124
- - 14823
+ - 15123
- 14824
+ - 14825
+ - 14991
- 14992
- - 14993
- - 14742
- - 14756
- - 14948
- - 842
+ - 14744
+ - 14758
+ - 14947
+ - 844
type: DeviceList
- - uid: 14649
+ - uid: 14651
components:
- pos: -4.5,60.5
parent: 2
type: Transform
- devices:
+ - 15155
- 15156
- - 15157
- - 15162
- - 15149
+ - 15161
- 15148
- 15147
- - 861
+ - 15146
+ - 863
type: DeviceList
- - uid: 14650
+ - uid: 14652
components:
- rot: -1.5707963267948966 rad
pos: 47.5,-36.5
parent: 2
type: Transform
- devices:
- - 896
- - 14765
- - 15014
- - 14768
+ - 898
- 14767
+ - 15013
+ - 14770
+ - 14769
type: DeviceList
- - uid: 14651
+ - uid: 14653
components:
- pos: 6.5,4.5
parent: 2
type: Transform
- devices:
+ - 14996
+ - 14956
- 14997
- - 14957
- - 14998
- - 14963
- - 14905
- - 14943
- - 14941
- - 14949
- - 14884
+ - 14962
+ - 14904
+ - 14942
+ - 14940
+ - 14948
- 14883
- - 14917
- 14882
- - 14913
- - 14906
- - 14892
- - 14759
- - 840
+ - 14916
+ - 14881
+ - 14912
+ - 14905
+ - 14891
+ - 14761
+ - 842
type: DeviceList
- - uid: 14652
+ - uid: 14654
components:
- pos: -9.5,4.5
parent: 2
type: Transform
- devices:
- - 15111
+ - 15110
+ - 15101
- 15102
- - 15103
+ - 15099
- 15100
- - 15101
- - 14763
+ - 14765
+ - 14919
+ - 14965
- 14920
- - 14966
- - 14921
- - 14941
- - 14943
- - 14905
- - 14891
- 14940
+ - 14942
- 14904
- - 839
+ - 14890
+ - 14939
+ - 14903
+ - 841
type: DeviceList
- - uid: 14653
+ - uid: 14655
components:
- pos: -15.5,-3.5
parent: 2
type: Transform
- devices:
- - 863
- - 15092
+ - 865
- 15091
- - 15093
- - 15035
- - 15032
- - 14970
- - 15104
- - 15102
+ - 15090
+ - 15092
+ - 15034
+ - 15031
+ - 14969
- 15103
- - 15100
- 15101
- - 14750
+ - 15102
+ - 15099
+ - 15100
+ - 14752
type: DeviceList
- - uid: 14654
+ - uid: 14656
components:
- pos: 22.5,24.5
parent: 2
type: Transform
- devices:
- - 15123
- - 15108
+ - 15122
- 15107
- 15106
- - 15002
- - 849
+ - 15105
+ - 15001
+ - 851
type: DeviceList
- - uid: 14655
+ - uid: 14657
components:
- pos: 6.5,11.5
parent: 2
type: Transform
- devices:
+ - 14991
- 14992
- - 14993
- - 14939
- - 14959
- - 14890
+ - 14938
+ - 14958
+ - 14889
+ - 14996
+ - 14956
- 14997
- - 14957
- - 14998
- - 843
- - 14967
- - 14963
+ - 845
+ - 14966
+ - 14962
type: DeviceList
- - uid: 14656
+ - uid: 14658
components:
- rot: 1.5707963267948966 rad
pos: -26.5,-15.5
parent: 2
type: Transform
- devices:
- - 870
- - 15109
- - 14918
- - 14922
+ - 872
+ - 15108
+ - 14917
+ - 14921
+ - 15061
- 15062
- - 15063
- - 14806
+ - 14808
type: DeviceList
- - uid: 14657
+ - uid: 14659
components:
- pos: -13.5,-40.5
parent: 2
type: Transform
- devices:
- - 14902
- 14901
- 14900
- - 15000
- - 14728
- - 14729
+ - 14899
+ - 14999
- 14730
- - 14753
- 14731
- 14732
- - 14973
- - 14971
- - 14911
- - 814
+ - 14755
+ - 14733
+ - 14734
+ - 14972
+ - 14970
+ - 14910
+ - 816
+ - 14993
- 14994
- 14995
- - 14996
type: DeviceList
- - uid: 14658
+ - uid: 14660
components:
- rot: 3.141592653589793 rad
pos: 4.5,-51.5
parent: 2
type: Transform
- devices:
- - 831
- - 15083
- - 14899
+ - 833
- 15082
+ - 14898
- 15081
+ - 15080
type: DeviceList
- - uid: 14659
+ - uid: 14661
components:
- pos: -16.5,-24.5
parent: 2
type: Transform
- - devices:
- - 15054
- - 878
- - 14781
- - 14762
- - 15036
- - 14954
- - 14878
- - 14990
- - 15061
- - 15033
+ - devices:
+ - 15053
+ - 880
+ - 14783
+ - 14764
+ - 15035
+ - 14953
+ - 14877
+ - 14989
- 15060
+ - 15032
+ - 15059
+ - 15095
- 15096
- 15097
- - 15098
type: DeviceList
- - uid: 14660
+ - uid: 14662
components:
- pos: -16.5,-58.5
parent: 2
type: Transform
- devices:
- - 14930
- - 15084
- - 15085
- 14929
+ - 15083
+ - 15084
- 14928
- - 14956
+ - 14927
+ - 14955
+ - 15040
- 15041
- - 15042
- - 15048
- - 15089
- - 15113
- - 15114
+ - 15047
+ - 15088
- 15112
- - 15118
- - 817
- - 14734
- - 14747
+ - 15113
+ - 15111
+ - 15117
+ - 819
+ - 14736
+ - 14749
type: DeviceList
- - uid: 14661
+ - uid: 14663
components:
- rot: -1.5707963267948966 rad
pos: 41.5,-61.5
parent: 2
type: Transform
- devices:
- - 856
- - 15039
+ - 858
- 15038
- - 15040
- 15037
- - 14885
+ - 15039
+ - 15036
+ - 14884
+ - 15042
- 15043
- - 15044
type: DeviceList
- - uid: 14662
+ - uid: 14664
components:
- pos: -7.5,-24.5
parent: 2
type: Transform
- devices:
- - 837
+ - 839
+ - 15095
- 15096
- 15097
- - 15098
- - 14739
- - 14991
- - 14958
+ - 14741
+ - 14990
+ - 14957
+ - 14951
+ - 14922
- 14952
- - 14923
- - 14953
- - 14989
+ - 14988
+ - 14993
- 14994
- 14995
- - 14996
type: DeviceList
- - uid: 14663
+ - uid: 14665
components:
- pos: 27.5,-15.5
parent: 2
type: Transform
- devices:
- - 14938
- - 14925
- - 14964
- - 14980
- - 14881
- - 14977
- - 14903
- - 14942
+ - 14937
+ - 14924
+ - 14963
+ - 14979
+ - 14880
+ - 14976
+ - 14902
+ - 14941
+ - 14908
- 14909
- - 14910
- - 880
+ - 882
type: DeviceList
- - uid: 14664
+ - uid: 14666
components:
- pos: 24.5,-3.5
parent: 2
type: Transform
- devices:
- - 864
- - 14988
- - 14969
- - 14907
- - 14889
- - 14916
- - 14944
- - 14881
- - 14977
- - 14903
+ - 866
+ - 14987
+ - 14968
+ - 14906
+ - 14888
+ - 14915
+ - 14943
+ - 14880
+ - 14976
+ - 14902
type: DeviceList
- - uid: 14665
+ - uid: 14667
components:
- rot: -1.5707963267948966 rad
pos: 19.5,-3.5
parent: 2
type: Transform
- devices:
- - 865
- - 14882
- - 14913
- - 14906
- - 14892
- - 14886
+ - 867
+ - 14881
+ - 14912
+ - 14905
+ - 14891
+ - 14885
+ - 14945
- 14946
- - 14947
- - 14965
- - 14988
- - 14969
- - 14907
+ - 14964
+ - 14987
+ - 14968
+ - 14906
type: DeviceList
- - uid: 14666
+ - uid: 14668
components:
- pos: 12.5,-24.5
parent: 2
type: Transform
- devices:
- - 835
- - 14721
- - 14961
- - 14880
- - 14955
- - 14938
- - 14925
- - 14964
- - 14950
- - 15013
- - 14978
- - 14717
+ - 837
+ - 14723
+ - 14960
+ - 14879
+ - 14954
+ - 14937
+ - 14924
+ - 14963
+ - 14949
+ - 15012
+ - 14977
+ - 14719
type: DeviceList
- - uid: 14667
+ - uid: 14669
components:
- pos: 37.5,-24.5
parent: 2
type: Transform
- devices:
- - 14720
- - 14716
- - 14715
- - 821
- 14722
- - 14942
+ - 14718
+ - 14717
+ - 823
+ - 14724
+ - 14941
+ - 14908
- 14909
- - 14910
- - 14975
- - 14897
- - 14919
+ - 14974
+ - 14896
+ - 14918
type: DeviceList
- - uid: 14668
+ - uid: 14670
components:
- pos: 33.5,9.5
parent: 2
type: Transform
- devices:
- - 867
- - 14983
- - 14889
- - 14916
+ - 869
+ - 14982
+ - 14888
+ - 14915
+ - 14943
+ - 14930
+ - 14913
- 14944
+ - 14934
+ - 14959
+ - 15093
- 14931
- - 14914
- - 14945
- - 14935
- - 14960
- - 15094
- - 14932
type: DeviceList
- - uid: 14669
+ - uid: 14671
components:
- pos: 56.5,-4.5
parent: 2
type: Transform
- devices:
- - 14771
- - 852
- - 15028
- - 15010
+ - 14773
+ - 854
+ - 15027
- 15009
- 15008
- - 15116
- - 15027
+ - 15007
+ - 15115
+ - 15026
type: DeviceList
- - uid: 14670
+ - uid: 14672
components:
- pos: 40.5,3.5
parent: 2
type: Transform
- devices:
- - 850
- - 15082
+ - 852
- 15081
- - 831
- - 14935
- - 14960
- - 15094
- - 14976
+ - 15080
+ - 833
+ - 14934
+ - 14959
+ - 15093
+ - 14975
+ - 15007
- 15008
- 15009
- - 15010
- - 15165
- 15164
+ - 15163
type: DeviceList
- - uid: 14671
+ - uid: 14673
components:
- rot: -1.5707963267948966 rad
pos: -2.5,-10.5
parent: 2
type: Transform
- devices:
- - 838
- - 14991
- - 14958
- - 14952
- - 14921
- - 14966
+ - 840
+ - 14990
+ - 14957
+ - 14951
- 14920
+ - 14965
+ - 14919
type: DeviceList
- - uid: 14672
+ - uid: 14674
components:
- pos: -31.5,2.5
parent: 2
type: Transform
- devices:
- - 883
- - 14970
- - 15032
- - 15035
- - 14748
- - 15078
+ - 885
+ - 14969
+ - 15031
+ - 15034
+ - 14750
- 15077
+ - 15076
+ - 15078
- 15079
- - 15080
- - 15087
+ - 15086
type: DeviceList
- - uid: 14673
+ - uid: 14675
components:
- pos: -48.5,9.5
parent: 2
type: Transform
- devices:
- - 15090
- - 15086
- - 884
+ - 15089
+ - 15085
+ - 886
+ - 15078
- 15079
- - 15080
- - 15087
+ - 15086
type: DeviceList
- - uid: 14674
+ - uid: 14676
components:
- rot: -1.5707963267948966 rad
pos: -52.5,-10.5
parent: 2
type: Transform
- devices:
- - 893
- - 15058
+ - 895
- 15057
- - 14783
- - 14784
+ - 15056
+ - 14785
+ - 14786
type: DeviceList
- - uid: 14675
+ - uid: 14677
components:
- pos: -58.5,-22.5
parent: 2
type: Transform
- devices:
- - 892
- - 15069
- - 15099
- - 14779
+ - 894
+ - 15068
+ - 15098
+ - 14781
+ - 15056
- 15057
- - 15058
type: DeviceList
- - uid: 14676
+ - uid: 14678
components:
- rot: -1.5707963267948966 rad
pos: -29.5,-35.5
parent: 2
type: Transform
- devices:
- - 876
+ - 878
+ - 15054
- 15055
- - 15056
+ - 15028
- 15029
- - 15030
- - 14774
- - 14773
- - 14778
- - 14777
+ - 14776
+ - 14775
+ - 14780
+ - 14779
type: DeviceList
- - uid: 14677
+ - uid: 14679
components:
- pos: 52.5,-38.5
parent: 2
type: Transform
- devices:
- - 858
+ - 860
+ - 15013
+ - 15016
+ - 15025
- 15014
- - 15017
- - 15026
- 15015
- - 15016
- - 15020
+ - 15019
+ - 15023
- 15024
- - 15025
+ - 15126
- 15127
- - 15128
type: DeviceList
- - uid: 14678
+ - uid: 14680
components:
- pos: 22.5,9.5
parent: 2
type: Transform
- devices:
- - 866
- - 14736
+ - 868
+ - 14738
+ - 14728
- 14726
- - 14724
- - 14804
- - 14947
- - 14965
- - 14931
- - 14914
- - 14945
+ - 14806
+ - 14946
+ - 14964
+ - 14930
+ - 14913
+ - 14944
type: DeviceList
- - uid: 14679
+ - uid: 14681
components:
- pos: -26.5,-76.5
parent: 2
type: Transform
- devices:
- - 824
- - 15117
- - 14984
- - 14936
+ - 826
+ - 15116
+ - 14983
+ - 14935
type: DeviceList
- - uid: 14680
+ - uid: 14682
components:
- rot: 1.5707963267948966 rad
pos: 27.5,15.5
parent: 2
type: Transform
- devices:
- - 15006
- - 14915
- - 14937
- - 14888
- - 15002
- - 14757
- - 14746
- - 14727
- - 851
- - 15165
+ - 15005
+ - 14914
+ - 14936
+ - 14887
+ - 15001
+ - 14759
+ - 14748
+ - 14729
+ - 853
- 15164
+ - 15163
type: DeviceList
- - uid: 14681
+ - uid: 14683
components:
- pos: -17.5,-68.5
parent: 2
type: Transform
- devices:
- - 823
- - 15125
- - 15117
- - 14879
- - 14820
+ - 825
+ - 15124
+ - 15116
+ - 14878
+ - 14821
type: DeviceList
- - uid: 14682
+ - uid: 14684
components:
- pos: 46.5,-40.5
parent: 2
type: Transform
- devices:
- - 14765
- - 15017
- - 15026
- - 15015
- - 15023
+ - 14767
+ - 15016
+ - 15025
+ - 15014
- 15022
- 15021
- - 14767
- - 14768
- - 906
+ - 15020
+ - 14769
+ - 14770
+ - 908
type: DeviceList
- - uid: 14683
+ - uid: 14685
components:
- pos: -18.5,68.5
parent: 2
type: Transform
- devices:
- - 908
- - 15197
+ - 910
- 15196
+ - 15195
type: DeviceList
- - uid: 14684
+ - uid: 14686
components:
- rot: -1.5707963267948966 rad
pos: -13.5,40.5
parent: 2
type: Transform
- devices:
- - 910
+ - 912
+ - 15143
- 15144
- 15145
- - 15146
+ - 14830
+ - 14827
- 14829
- - 14826
- 14828
- - 14827
- - 15137
- 15136
+ - 15135
+ - 15132
- 15133
- 15134
- - 15135
+ - 15149
- 15150
- 15151
- - 15152
- - 14805
+ - 14807
type: DeviceList
- - uid: 14685
+ - uid: 14687
components:
- pos: -7.5,47.5
parent: 2
type: Transform
- devices:
- - 911
+ - 913
+ - 15143
- 15144
- 15145
- - 15146
+ - 15138
- 15139
- - 15140
+ - 15146
- 15147
- 15148
- - 15149
- - 15160
+ - 15159
type: DeviceList
- - uid: 14686
+ - uid: 14688
components:
- rot: 3.141592653589793 rad
pos: 65.5,-36.5
parent: 2
type: Transform
- devices:
- - 917
- - 14769
- - 14836
- - 14838
+ - 919
+ - 14771
- 14837
+ - 14839
+ - 14838
type: DeviceList
- - uid: 14687
+ - uid: 14689
components:
- pos: 73.5,-42.5
parent: 2
type: Transform
- devices:
+ - 15171
- 15172
- - 15173
+ - 14875
- 14874
- - 14873
- - 14766
- - 901
+ - 14768
+ - 903
type: DeviceList
- - uid: 14688
+ - uid: 14690
components:
- rot: -1.5707963267948966 rad
pos: -17.5,-13.5
parent: 2
type: Transform
- devices:
- - 15093
- - 15091
- 15092
- - 14918
- - 14922
+ - 15090
+ - 15091
+ - 14917
+ - 14921
+ - 15059
+ - 15032
- 15060
- - 15033
- - 15061
- - 14841
- - 871
- - 15031
+ - 14842
+ - 873
+ - 15030
+ - 15173
- 15174
- - 15175
type: DeviceList
- - uid: 14689
+ - uid: 14691
components:
- rot: 3.141592653589793 rad
pos: 21.5,-26.5
parent: 2
type: Transform
- devices:
- - 879
+ - 881
+ - 14724
- 14722
- - 14720
- - 14717
- - 14721
- - 14749
- - 14741
- - 14754
+ - 14719
+ - 14723
+ - 14751
+ - 14743
+ - 14756
type: DeviceList
- - uid: 14690
+ - uid: 14692
components:
- rot: 3.141592653589793 rad
pos: 72.5,-39.5
parent: 2
type: Transform
- devices:
- - 916
+ - 918
+ - 14841
- 14840
- - 14839
- - 15171
- 15170
+ - 15169
type: DeviceList
- - uid: 14691
+ - uid: 14693
components:
- pos: 30.5,-70.5
parent: 2
type: Transform
- devices:
- - 924
+ - 926
+ - 15186
- 15187
- 15188
- - 15189
- - 15186
- 15185
- 15184
+ - 15183
type: DeviceList
- - uid: 14692
+ - uid: 14694
components:
- rot: -1.5707963267948966 rad
pos: 20.5,-85.5
parent: 2
type: Transform
- devices:
- - 15183
- - 925
+ - 15182
+ - 927
type: DeviceList
- - uid: 14693
+ - uid: 14695
components:
- rot: -1.5707963267948966 rad
pos: 32.5,-81.5
parent: 2
type: Transform
- devices:
- - 907
- - 15182
+ - 909
+ - 15181
+ - 15183
- 15184
- 15185
- - 15186
type: DeviceList
- - uid: 14694
+ - uid: 14696
components:
- rot: 3.141592653589793 rad
pos: 42.5,-74.5
parent: 2
type: Transform
- devices:
+ - 15189
- 15190
- 15191
- - 15192
+ - 15186
- 15187
- 15188
- - 15189
- - 855
+ - 857
type: DeviceList
- - uid: 14695
+ - uid: 14697
components:
- rot: -1.5707963267948966 rad
pos: 50.5,-75.5
parent: 2
type: Transform
- devices:
- - 915
+ - 917
+ - 15189
- 15190
- 15191
- - 15192
- - 15195
- 15194
- 15193
+ - 15192
type: DeviceList
- - uid: 14696
+ - uid: 14698
components:
- rot: -1.5707963267948966 rad
pos: 50.5,-85.5
parent: 2
type: Transform
- devices:
- - 914
+ - 916
+ - 15192
- 15193
- 15194
- - 15195
type: DeviceList
- - uid: 14697
+ - uid: 14699
components:
- rot: -1.5707963267948966 rad
pos: 48.5,4.5
parent: 2
type: Transform
- devices:
- - 15198
- - 15105
- - 811
- - 15003
+ - 15197
+ - 15104
+ - 813
+ - 15002
type: DeviceList
- - uid: 14698
+ - uid: 14700
components:
- pos: 1.5,-51.5
parent: 2
type: Transform
- devices:
- - 15083
- - 14899
- - 816
- - 15046
+ - 15082
+ - 14898
+ - 818
- 15045
- - 15047
- - 14981
- - 15053
- - 14962
- - 14894
- - 14974
- - 14979
+ - 15044
+ - 15046
+ - 14980
+ - 15052
+ - 14961
+ - 14893
+ - 14973
+ - 14978
+ - 14925
- 14926
- - 14927
- - 14972
- - 14987
- - 14985
- - 15122
- - 14852
+ - 14971
+ - 14986
+ - 14984
+ - 15121
+ - 14853
type: DeviceList
- - uid: 14699
+ - uid: 14701
components:
- rot: 1.5707963267948966 rad
pos: -9.5,16.5
parent: 2
type: Transform
- ShutdownSubscribers:
- - 929
+ - 931
+ - 14855
+ - 14774
+ - 14801
- 14854
- - 14772
- - 14799
- - 14853
type: DeviceNetwork
- devices:
- - 929
+ - 931
+ - 14855
+ - 14774
+ - 14801
- 14854
- - 14772
- - 14799
- - 14853
type: DeviceList
- - uid: 14700
+ - uid: 14702
components:
- pos: -10.5,13.5
parent: 2
type: Transform
- ShutdownSubscribers:
- - 845
- - 15111
- - 14904
- - 14940
- - 14891
- - 14967
- - 14854
- - 14772
+ - 847
+ - 15110
+ - 14903
+ - 14939
+ - 14890
+ - 14966
+ - 14855
+ - 14774
type: DeviceNetwork
- devices:
- - 845
- - 15111
- - 14904
- - 14940
- - 14891
- - 14967
- - 14854
- - 14772
+ - 847
+ - 15110
+ - 14903
+ - 14939
+ - 14890
+ - 14966
+ - 14855
+ - 14774
type: DeviceList
- - uid: 14701
+ - uid: 14703
components:
- pos: -71.5,-36.5
parent: 2
type: Transform
- ShutdownSubscribers:
- - 14855
- - 14859
+ - 14856
+ - 14860
type: DeviceNetwork
- devices:
- - 930
+ - 932
+ - 15201
- 15202
- - 15203
- - 14855
- - 14859
+ - 14856
+ - 14860
type: DeviceList
- - uid: 14702
+ - uid: 14704
components:
- rot: -1.5707963267948966 rad
pos: 6.5,-6.5
parent: 2
type: Transform
- ShutdownSubscribers:
- - 15207
- 15206
- - 15204
- - 934
+ - 15205
+ - 15203
+ - 936
type: DeviceNetwork
- devices:
- - 934
- - 15204
+ - 936
+ - 15203
+ - 15205
- 15206
- - 15207
type: DeviceList
- - uid: 14703
+ - uid: 14705
components:
- rot: -1.5707963267948966 rad
pos: 0.5,-4.5
parent: 2
type: Transform
- ShutdownSubscribers:
- - 933
- - 15206
+ - 935
- 15205
+ - 15204
type: DeviceNetwork
- devices:
- - 933
- - 15206
+ - 935
- 15205
+ - 15204
type: DeviceList
- - uid: 14704
+ - uid: 14706
components:
- rot: 1.5707963267948966 rad
pos: -2.5,-22.5
parent: 2
type: Transform
- ShutdownSubscribers:
- - 935
+ - 937
+ - 15207
- 15208
- - 15209
type: DeviceNetwork
- devices:
- - 935
+ - 937
+ - 15207
- 15208
- - 15209
type: DeviceList
- - uid: 14705
+ - uid: 14707
components:
- rot: 1.5707963267948966 rad
pos: 20.5,-37.5
parent: 2
type: Transform
- ShutdownSubscribers:
+ - 15209
- 15210
- - 15211
- - 15213
- - 936
+ - 15212
+ - 938
type: DeviceNetwork
- devices:
+ - 15209
- 15210
- - 15211
- - 15213
- - 936
+ - 15212
+ - 938
type: DeviceList
- proto: FireAxeCabinetFilled
entities:
- - uid: 14706
+ - uid: 14708
components:
- rot: -1.5707963267948966 rad
pos: -36.5,-49.5
parent: 2
type: Transform
- - uid: 14707
+ - uid: 14709
components:
- pos: 30.5,-20.5
parent: 2
type: Transform
- proto: FireExtinguisher
entities:
- - uid: 14708
+ - uid: 14710
components:
- pos: -40.44795,34.218018
parent: 2
type: Transform
- - uid: 14709
+ - uid: 14711
components:
- pos: -40.7292,33.999268
parent: 2
type: Transform
- - uid: 14710
+ - uid: 14712
components:
- pos: -47.435944,26.604792
parent: 2
type: Transform
- - uid: 14711
+ - uid: 14713
components:
- pos: 22.516739,-54.502064
parent: 2
type: Transform
- proto: Firelock
entities:
- - uid: 14712
+ - uid: 14714
components:
- pos: -47.5,-25.5
parent: 2
type: Transform
- - uid: 14713
+ - uid: 14715
components:
- rot: 1.5707963267948966 rad
pos: -13.5,15.5
parent: 2
type: Transform
- - uid: 14714
+ - uid: 14716
components:
- pos: 10.5,-64.5
parent: 2
type: Transform
- - uid: 14715
+ - uid: 14717
components:
- pos: 39.5,-26.5
parent: 2
type: Transform
- - uid: 14716
+ - uid: 14718
components:
- pos: 39.5,-25.5
parent: 2
type: Transform
- - uid: 14717
+ - uid: 14719
components:
- pos: 18.5,-24.5
parent: 2
type: Transform
- - uid: 14718
+ - uid: 14720
components:
- pos: 56.5,-2.5
parent: 2
type: Transform
- - uid: 14719
+ - uid: 14721
components:
- rot: 3.141592653589793 rad
pos: 15.5,-13.5
parent: 2
type: Transform
- - uid: 14720
+ - uid: 14722
components:
- rot: 1.5707963267948966 rad
pos: 32.5,-25.5
parent: 2
type: Transform
- - uid: 14721
+ - uid: 14723
components:
- rot: 1.5707963267948966 rad
pos: 18.5,-25.5
parent: 2
type: Transform
- - uid: 14722
+ - uid: 14724
components:
- pos: 32.5,-24.5
parent: 2
type: Transform
- - uid: 14723
+ - uid: 14725
components:
- pos: 40.5,-14.5
parent: 2
type: Transform
- - uid: 14724
+ - uid: 14726
components:
- rot: 1.5707963267948966 rad
pos: 26.5,14.5
parent: 2
type: Transform
- - uid: 14725
+ - uid: 14727
components:
- pos: 23.5,-53.5
parent: 2
type: Transform
- - uid: 14726
+ - uid: 14728
components:
- rot: 1.5707963267948966 rad
pos: 25.5,14.5
parent: 2
type: Transform
- - uid: 14727
+ - uid: 14729
components:
- pos: 30.5,23.5
parent: 2
type: Transform
- - uid: 14728
+ - uid: 14730
components:
- pos: -9.5,-44.5
parent: 2
type: Transform
- - uid: 14729
+ - uid: 14731
components:
- pos: -8.5,-44.5
parent: 2
type: Transform
- - uid: 14730
+ - uid: 14732
components:
- pos: -7.5,-44.5
parent: 2
type: Transform
- - uid: 14731
+ - uid: 14733
components:
- pos: -0.5,-44.5
parent: 2
type: Transform
- - uid: 14732
+ - uid: 14734
components:
- pos: 0.5,-44.5
parent: 2
type: Transform
- - uid: 14733
+ - uid: 14735
components:
- rot: -1.5707963267948966 rad
pos: 11.5,-49.5
parent: 2
type: Transform
- - uid: 14734
+ - uid: 14736
components:
- pos: -13.5,-62.5
parent: 2
type: Transform
- - uid: 14735
+ - uid: 14737
components:
- pos: -21.5,-52.5
parent: 2
type: Transform
- - uid: 14736
+ - uid: 14738
components:
- rot: 1.5707963267948966 rad
pos: 24.5,14.5
parent: 2
type: Transform
- - uid: 14737
+ - uid: 14739
components:
- pos: 18.5,-51.5
parent: 2
type: Transform
- - uid: 14738
+ - uid: 14740
components:
- pos: -47.5,-27.5
parent: 2
type: Transform
- - uid: 14739
+ - uid: 14741
components:
- pos: -11.5,-24.5
parent: 2
type: Transform
- - uid: 14740
+ - uid: 14742
components:
- pos: 31.5,-44.5
parent: 2
type: Transform
- - uid: 14741
+ - uid: 14743
components:
- pos: 26.5,-26.5
parent: 2
type: Transform
- - uid: 14742
+ - uid: 14744
components:
- pos: 14.5,17.5
parent: 2
type: Transform
- - uid: 14743
+ - uid: 14745
components:
- rot: 1.5707963267948966 rad
pos: -27.5,-41.5
parent: 2
type: Transform
- - uid: 14744
+ - uid: 14746
components:
- pos: 14.5,-51.5
parent: 2
type: Transform
- - uid: 14745
+ - uid: 14747
components:
- pos: 54.5,38.5
parent: 2
type: Transform
- - uid: 14746
+ - uid: 14748
components:
- pos: 29.5,23.5
parent: 2
type: Transform
- - uid: 14747
+ - uid: 14749
components:
- pos: -19.5,-62.5
parent: 2
type: Transform
- - uid: 14748
+ - uid: 14750
components:
- pos: -29.5,-1.5
parent: 2
type: Transform
- - uid: 14749
+ - uid: 14751
components:
- pos: 23.5,-26.5
parent: 2
type: Transform
- - uid: 14750
+ - uid: 14752
components:
- pos: -19.5,-3.5
parent: 2
type: Transform
- - uid: 14751
+ - uid: 14753
components:
- pos: -10.5,-75.5
parent: 2
type: Transform
- - uid: 14752
+ - uid: 14754
components:
- pos: 34.5,22.5
parent: 2
type: Transform
- - uid: 14753
+ - uid: 14755
components:
- pos: -1.5,-44.5
parent: 2
type: Transform
- - uid: 14754
+ - uid: 14756
components:
- pos: 28.5,-26.5
parent: 2
type: Transform
- - uid: 14755
+ - uid: 14757
components:
- pos: -1.5,-72.5
parent: 2
type: Transform
- - uid: 14756
+ - uid: 14758
components:
- pos: 14.5,16.5
parent: 2
type: Transform
- - uid: 14757
+ - uid: 14759
components:
- pos: 28.5,23.5
parent: 2
type: Transform
- - uid: 14758
+ - uid: 14760
components:
- pos: -50.5,-76.5
parent: 2
type: Transform
- - uid: 14759
+ - uid: 14761
components:
- rot: 3.141592653589793 rad
pos: 14.5,-3.5
parent: 2
type: Transform
- - uid: 14760
+ - uid: 14762
components:
- pos: 19.5,-8.5
parent: 2
type: Transform
- - uid: 14761
+ - uid: 14763
components:
- pos: -9.5,-29.5
parent: 2
type: Transform
- - uid: 14762
+ - uid: 14764
components:
- rot: -1.5707963267948966 rad
pos: -16.5,-30.5
parent: 2
type: Transform
- - uid: 14763
+ - uid: 14765
components:
- rot: -1.5707963267948966 rad
pos: -9.5,-2.5
parent: 2
type: Transform
- - uid: 14764
+ - uid: 14766
components:
- rot: -1.5707963267948966 rad
pos: 37.5,20.5
parent: 2
type: Transform
- - uid: 14765
+ - uid: 14767
components:
- pos: 45.5,-40.5
parent: 2
type: Transform
- - uid: 14766
+ - uid: 14768
components:
- pos: 66.5,-48.5
parent: 2
type: Transform
- - uid: 14767
+ - uid: 14769
components:
- pos: 42.5,-40.5
parent: 2
type: Transform
- - uid: 14768
+ - uid: 14770
components:
- pos: 43.5,-40.5
parent: 2
type: Transform
- - uid: 14769
+ - uid: 14771
components:
- pos: 62.5,-37.5
parent: 2
type: Transform
- - uid: 14770
+ - uid: 14772
components:
- pos: -38.5,-22.5
parent: 2
type: Transform
- - uid: 14771
+ - uid: 14773
components:
- rot: -1.5707963267948966 rad
pos: 62.5,-16.5
parent: 2
type: Transform
- - uid: 14772
+ - uid: 14774
components:
- pos: -3.5,13.5
parent: 2
type: Transform
- ShutdownSubscribers:
- 95
- - 14699
- - 14700
+ - 14701
+ - 14702
type: DeviceNetwork
- - uid: 14773
+ - uid: 14775
components:
- pos: -31.5,-30.5
parent: 2
type: Transform
- - uid: 14774
+ - uid: 14776
components:
- pos: -32.5,-30.5
parent: 2
type: Transform
- - uid: 14775
+ - uid: 14777
components:
- pos: 41.5,-11.5
parent: 2
type: Transform
- - uid: 14776
+ - uid: 14778
components:
- pos: 36.5,-8.5
parent: 2
type: Transform
- - uid: 14777
+ - uid: 14779
components:
- pos: -29.5,-34.5
parent: 2
type: Transform
- - uid: 14778
+ - uid: 14780
components:
- pos: -29.5,-33.5
parent: 2
type: Transform
- - uid: 14779
+ - uid: 14781
components:
- pos: -60.5,-26.5
parent: 2
type: Transform
- - uid: 14780
+ - uid: 14782
components:
- rot: 1.5707963267948966 rad
pos: 6.5,-63.5
parent: 2
type: Transform
- - uid: 14781
+ - uid: 14783
components:
- pos: -22.5,-26.5
parent: 2
type: Transform
- - uid: 14782
+ - uid: 14784
components:
- pos: -29.5,-26.5
parent: 2
type: Transform
- - uid: 14783
+ - uid: 14785
components:
- pos: -49.5,-5.5
parent: 2
type: Transform
- - uid: 14784
+ - uid: 14786
components:
- pos: -49.5,-6.5
parent: 2
type: Transform
- - uid: 14785
+ - uid: 14787
components:
- pos: -51.5,-63.5
parent: 2
type: Transform
- - uid: 14786
+ - uid: 14788
components:
- pos: -56.5,-57.5
parent: 2
type: Transform
- - uid: 14787
+ - uid: 14789
components:
- pos: -23.5,-51.5
parent: 2
type: Transform
- - uid: 14788
+ - uid: 14790
components:
- pos: -42.5,-64.5
parent: 2
type: Transform
- - uid: 14789
+ - uid: 14791
components:
- pos: -24.5,-64.5
parent: 2
type: Transform
- - uid: 14790
+ - uid: 14792
components:
- pos: -30.5,-49.5
parent: 2
type: Transform
- - uid: 14791
+ - uid: 14793
components:
- pos: -28.5,-56.5
parent: 2
type: Transform
- - uid: 14792
+ - uid: 14794
components:
- pos: 44.5,-64.5
parent: 2
type: Transform
- - uid: 14793
+ - uid: 14795
components:
- pos: 58.5,27.5
parent: 2
type: Transform
- - uid: 14794
+ - uid: 14796
components:
- pos: 46.5,33.5
parent: 2
type: Transform
- - uid: 14795
+ - uid: 14797
components:
- pos: 48.5,30.5
parent: 2
type: Transform
- - uid: 14796
+ - uid: 14798
components:
- rot: -1.5707963267948966 rad
pos: 0.5,-14.5
parent: 2
type: Transform
- - uid: 14797
+ - uid: 14799
components:
- pos: -45.5,13.5
parent: 2
type: Transform
- - uid: 14798
+ - uid: 14800
components:
- pos: -26.5,22.5
parent: 2
type: Transform
- - uid: 14799
+ - uid: 14801
components:
- pos: -1.5,14.5
parent: 2
type: Transform
- ShutdownSubscribers:
- 95
- - 14699
+ - 14701
type: DeviceNetwork
- - uid: 14800
+ - uid: 14802
components:
- pos: -45.5,17.5
parent: 2
type: Transform
- - uid: 14801
+ - uid: 14803
components:
- rot: -1.5707963267948966 rad
pos: -55.5,-29.5
parent: 2
type: Transform
- - uid: 14802
+ - uid: 14804
components:
- pos: -24.5,-49.5
parent: 2
type: Transform
- - uid: 14803
+ - uid: 14805
components:
- rot: 3.141592653589793 rad
pos: -46.5,-2.5
parent: 2
type: Transform
- - uid: 14804
+ - uid: 14806
components:
- pos: 21.5,9.5
parent: 2
type: Transform
- - uid: 14805
+ - uid: 14807
components:
- rot: -1.5707963267948966 rad
pos: -15.5,28.5
parent: 2
type: Transform
- - uid: 14806
+ - uid: 14808
components:
- rot: -1.5707963267948966 rad
pos: -26.5,-14.5
parent: 2
type: Transform
- - uid: 14807
+ - uid: 14809
components:
- rot: -1.5707963267948966 rad
pos: -30.5,-10.5
parent: 2
type: Transform
- - uid: 14808
+ - uid: 14810
components:
- pos: -36.5,-14.5
parent: 2
type: Transform
- - uid: 14809
+ - uid: 14811
components:
- rot: -1.5707963267948966 rad
pos: 64.5,16.5
parent: 2
type: Transform
- - uid: 14810
+ - uid: 14812
components:
- rot: -1.5707963267948966 rad
pos: 65.5,3.5
parent: 2
type: Transform
- - uid: 14811
+ - uid: 14813
components:
- pos: 43.5,-55.5
parent: 2
type: Transform
- - uid: 14812
+ - uid: 14814
components:
- rot: 3.141592653589793 rad
pos: 4.5,-15.5
parent: 2
type: Transform
- - uid: 14813
+ - uid: 14815
components:
- rot: 3.141592653589793 rad
pos: -23.5,-45.5
parent: 2
type: Transform
- - uid: 14814
+ - uid: 14816
components:
- pos: 8.5,-54.5
parent: 2
type: Transform
- - uid: 14815
+ - uid: 14817
components:
- pos: 36.5,-47.5
parent: 2
type: Transform
- - uid: 14816
- components:
- - pos: 14.5,-46.5
- parent: 2
- type: Transform
- - uid: 14817
+ - uid: 14818
components:
- rot: -1.5707963267948966 rad
pos: 36.5,-55.5
parent: 2
type: Transform
- - uid: 14818
+ - uid: 14819
components:
- pos: -10.5,-46.5
parent: 2
type: Transform
- - uid: 14819
+ - uid: 14820
components:
- pos: 0.5,10.5
parent: 2
type: Transform
- - uid: 14820
+ - uid: 14821
components:
- pos: -16.5,-69.5
parent: 2
type: Transform
- - uid: 14821
+ - uid: 14822
components:
- pos: -29.5,-72.5
parent: 2
type: Transform
- - uid: 14822
+ - uid: 14823
components:
- pos: -35.5,-70.5
parent: 2
type: Transform
- - uid: 14823
+ - uid: 14824
components:
- pos: 3.5,17.5
parent: 2
type: Transform
- - uid: 14824
+ - uid: 14825
components:
- pos: 3.5,16.5
parent: 2
type: Transform
- - uid: 14825
+ - uid: 14826
components:
- pos: -19.5,45.5
parent: 2
type: Transform
- - uid: 14826
+ - uid: 14827
components:
- pos: -13.5,38.5
parent: 2
type: Transform
- - uid: 14827
+ - uid: 14828
components:
- pos: -17.5,34.5
parent: 2
type: Transform
- - uid: 14828
+ - uid: 14829
components:
- pos: -13.5,34.5
parent: 2
type: Transform
- - uid: 14829
+ - uid: 14830
components:
- pos: -13.5,41.5
parent: 2
type: Transform
- - uid: 14830
+ - uid: 14831
components:
- pos: -38.5,39.5
parent: 2
type: Transform
- - uid: 14831
+ - uid: 14832
components:
- pos: -25.5,41.5
parent: 2
type: Transform
- - uid: 14832
+ - uid: 14833
components:
- pos: -27.5,32.5
parent: 2
type: Transform
- - uid: 14833
+ - uid: 14834
components:
- pos: -8.5,-76.5
parent: 2
type: Transform
- - uid: 14834
+ - uid: 14835
components:
- pos: -13.5,-97.5
parent: 2
type: Transform
- - uid: 14835
+ - uid: 14836
components:
- rot: 1.5707963267948966 rad
pos: -72.5,-27.5
parent: 2
type: Transform
- - uid: 14836
+ - uid: 14837
components:
- pos: 61.5,-37.5
parent: 2
type: Transform
- - uid: 14837
+ - uid: 14838
components:
- pos: 66.5,-33.5
parent: 2
type: Transform
- - uid: 14838
+ - uid: 14839
components:
- pos: 66.5,-34.5
parent: 2
type: Transform
- - uid: 14839
+ - uid: 14840
components:
- pos: 69.5,-33.5
parent: 2
type: Transform
- - uid: 14840
+ - uid: 14841
components:
- pos: 69.5,-34.5
parent: 2
type: Transform
- - uid: 14841
+ - uid: 14842
components:
- pos: -17.5,-20.5
parent: 2
type: Transform
- - uid: 14842
+ - uid: 14843
components:
- pos: 19.5,-44.5
parent: 2
type: Transform
- - uid: 14843
+ - uid: 14844
components:
- rot: -1.5707963267948966 rad
pos: 68.5,-62.5
parent: 2
type: Transform
- - uid: 14844
+ - uid: 14845
components:
- rot: -1.5707963267948966 rad
pos: 65.5,-65.5
parent: 2
type: Transform
- - uid: 14845
+ - uid: 14846
components:
- rot: -1.5707963267948966 rad
pos: 57.5,-65.5
parent: 2
type: Transform
- - uid: 14846
+ - uid: 14847
components:
- rot: -1.5707963267948966 rad
pos: 73.5,-57.5
parent: 2
type: Transform
- - uid: 14847
+ - uid: 14848
components:
- pos: 16.5,30.5
parent: 2
type: Transform
- - uid: 14848
+ - uid: 14849
components:
- pos: -6.5,-9.5
parent: 2
type: Transform
- - uid: 14849
+ - uid: 14850
components:
- pos: -13.5,-7.5
parent: 2
type: Transform
- - uid: 14850
+ - uid: 14851
components:
- pos: -14.5,-14.5
parent: 2
type: Transform
- - uid: 14851
+ - uid: 14852
components:
- pos: -15.5,-17.5
parent: 2
type: Transform
- - uid: 14852
+ - uid: 14853
components:
- pos: -4.5,-51.5
parent: 2
type: Transform
- - uid: 14853
+ - uid: 14854
components:
- pos: -9.5,15.5
parent: 2
type: Transform
- ShutdownSubscribers:
- 95
- - 14699
+ - 14701
type: DeviceNetwork
- - uid: 14854
+ - uid: 14855
components:
- pos: -6.5,13.5
parent: 2
type: Transform
- ShutdownSubscribers:
- 95
- - 14699
- - 14700
+ - 14701
+ - 14702
type: DeviceNetwork
- - uid: 14855
+ - uid: 14856
components:
- rot: -1.5707963267948966 rad
pos: -64.5,-36.5
@@ -93773,25 +93788,25 @@ entities:
type: Transform
- ShutdownSubscribers:
- 96
- - 14701
+ - 14703
type: DeviceNetwork
- - uid: 14856
+ - uid: 14857
components:
- pos: -49.5,-16.5
parent: 2
type: Transform
- - uid: 14857
+ - uid: 14858
components:
- pos: -49.5,-17.5
parent: 2
type: Transform
- - uid: 14858
+ - uid: 14859
components:
- rot: -1.5707963267948966 rad
pos: -56.5,-40.5
parent: 2
type: Transform
- - uid: 14859
+ - uid: 14860
components:
- rot: -1.5707963267948966 rad
pos: -64.5,-37.5
@@ -93799,15 +93814,15 @@ entities:
type: Transform
- ShutdownSubscribers:
- 96
- - 14701
+ - 14703
type: DeviceNetwork
- - uid: 14860
+ - uid: 14861
components:
- rot: -1.5707963267948966 rad
pos: -51.5,-36.5
parent: 2
type: Transform
- - uid: 14861
+ - uid: 14862
components:
- rot: -1.5707963267948966 rad
pos: -51.5,-37.5
@@ -93815,1406 +93830,1394 @@ entities:
type: Transform
- proto: FirelockEdge
entities:
- - uid: 14862
+ - uid: 14863
components:
- rot: -1.5707963267948966 rad
pos: 10.5,13.5
parent: 2
type: Transform
- - uid: 14863
+ - uid: 14864
components:
- rot: -1.5707963267948966 rad
pos: 10.5,14.5
parent: 2
type: Transform
- - uid: 14864
+ - uid: 14865
components:
- rot: 3.141592653589793 rad
pos: 59.5,21.5
parent: 2
type: Transform
- - uid: 14865
+ - uid: 14866
components:
- rot: 3.141592653589793 rad
pos: 56.5,21.5
parent: 2
type: Transform
- - uid: 14866
+ - uid: 14867
components:
- rot: 3.141592653589793 rad
pos: 53.5,21.5
parent: 2
type: Transform
- - uid: 14867
+ - uid: 14868
components:
- rot: 3.141592653589793 rad
pos: 50.5,21.5
parent: 2
type: Transform
- - uid: 14868
+ - uid: 14869
components:
- rot: 3.141592653589793 rad
pos: 47.5,21.5
parent: 2
type: Transform
- - uid: 14869
+ - uid: 14870
components:
- rot: 1.5707963267948966 rad
pos: 59.5,18.5
parent: 2
type: Transform
- - uid: 14870
+ - uid: 14871
components:
- rot: 1.5707963267948966 rad
pos: 59.5,15.5
parent: 2
type: Transform
- - uid: 14871
+ - uid: 14872
components:
- rot: 1.5707963267948966 rad
pos: 59.5,13.5
parent: 2
type: Transform
- - uid: 14872
+ - uid: 14873
components:
- rot: -1.5707963267948966 rad
pos: 61.5,21.5
parent: 2
type: Transform
- - uid: 14873
+ - uid: 14874
components:
- rot: 1.5707963267948966 rad
pos: 65.5,-46.5
parent: 2
type: Transform
- - uid: 14874
+ - uid: 14875
components:
- rot: 1.5707963267948966 rad
pos: 65.5,-45.5
parent: 2
type: Transform
-- proto: FirelockElectronics
- entities:
- - uid: 14875
- components:
- - pos: -8.422072,39.102524
- parent: 2
- type: Transform
- - uid: 14876
- components:
- - pos: -8.656447,38.727524
- parent: 2
- type: Transform
- proto: FirelockGlass
entities:
- - uid: 14877
+ - uid: 14876
components:
- pos: -69.5,-23.5
parent: 2
type: Transform
- - uid: 14878
+ - uid: 14877
components:
- pos: -19.5,-39.5
parent: 2
type: Transform
- - uid: 14879
+ - uid: 14878
components:
- pos: -19.5,-68.5
parent: 2
type: Transform
- - uid: 14880
+ - uid: 14879
components:
- pos: 10.5,-26.5
parent: 2
type: Transform
- - uid: 14881
+ - uid: 14880
components:
- pos: 24.5,-15.5
parent: 2
type: Transform
- - uid: 14882
+ - uid: 14881
components:
- rot: -1.5707963267948966 rad
pos: 15.5,3.5
parent: 2
type: Transform
- - uid: 14883
+ - uid: 14882
components:
- pos: 11.5,4.5
parent: 2
type: Transform
- - uid: 14884
+ - uid: 14883
components:
- pos: 11.5,-2.5
parent: 2
type: Transform
- - uid: 14885
+ - uid: 14884
components:
- pos: 38.5,-69.5
parent: 2
type: Transform
- - uid: 14886
+ - uid: 14885
components:
- pos: 15.5,7.5
parent: 2
type: Transform
- - uid: 14887
+ - uid: 14886
components:
- pos: 16.5,18.5
parent: 2
type: Transform
- - uid: 14888
+ - uid: 14887
components:
- pos: 27.5,18.5
parent: 2
type: Transform
- - uid: 14889
+ - uid: 14888
components:
- pos: 31.5,-4.5
parent: 2
type: Transform
- - uid: 14890
+ - uid: 14889
components:
- pos: 7.5,7.5
parent: 2
type: Transform
- - uid: 14891
+ - uid: 14890
components:
- pos: -6.5,4.5
parent: 2
type: Transform
- ShutdownSubscribers:
- - 14700
+ - 14702
type: DeviceNetwork
- - uid: 14892
+ - uid: 14891
components:
- rot: -1.5707963267948966 rad
pos: 15.5,-1.5
parent: 2
type: Transform
- - uid: 14893
+ - uid: 14892
components:
- pos: 18.5,-32.5
parent: 2
type: Transform
- - uid: 14894
+ - uid: 14893
components:
- pos: -5.5,-55.5
parent: 2
type: Transform
- - uid: 14895
+ - uid: 14894
components:
- pos: 32.5,-32.5
parent: 2
type: Transform
- - uid: 14896
+ - uid: 14895
components:
- rot: -1.5707963267948966 rad
pos: 18.5,15.5
parent: 2
type: Transform
- - uid: 14897
+ - uid: 14896
components:
- pos: 35.5,-38.5
parent: 2
type: Transform
- - uid: 14898
+ - uid: 14897
components:
- pos: -0.5,-69.5
parent: 2
type: Transform
- - uid: 14899
+ - uid: 14898
components:
- rot: 3.141592653589793 rad
pos: 3.5,-51.5
parent: 2
type: Transform
- - uid: 14900
+ - uid: 14899
components:
- pos: -16.5,-43.5
parent: 2
type: Transform
- - uid: 14901
+ - uid: 14900
components:
- pos: -16.5,-42.5
parent: 2
type: Transform
- - uid: 14902
+ - uid: 14901
components:
- pos: -16.5,-41.5
parent: 2
type: Transform
- - uid: 14903
+ - uid: 14902
components:
- pos: 26.5,-15.5
parent: 2
type: Transform
- - uid: 14904
+ - uid: 14903
components:
- pos: -8.5,4.5
parent: 2
type: Transform
- ShutdownSubscribers:
- - 14700
+ - 14702
type: DeviceNetwork
- - uid: 14905
+ - uid: 14904
components:
- pos: -1.5,3.5
parent: 2
type: Transform
- - uid: 14906
+ - uid: 14905
components:
- rot: -1.5707963267948966 rad
pos: 15.5,-0.5
parent: 2
type: Transform
- - uid: 14907
+ - uid: 14906
components:
- pos: 19.5,-6.5
parent: 2
type: Transform
- - uid: 14908
+ - uid: 14907
components:
- pos: 8.5,-68.5
parent: 2
type: Transform
- - uid: 14909
+ - uid: 14908
components:
- pos: 35.5,-19.5
parent: 2
type: Transform
- - uid: 14910
+ - uid: 14909
components:
- pos: 36.5,-19.5
parent: 2
type: Transform
- - uid: 14911
+ - uid: 14910
components:
- pos: 7.5,-41.5
parent: 2
type: Transform
- - uid: 14912
+ - uid: 14911
components:
- pos: 24.5,-44.5
parent: 2
type: Transform
- - uid: 14913
+ - uid: 14912
components:
- rot: -1.5707963267948966 rad
pos: 15.5,2.5
parent: 2
type: Transform
- - uid: 14914
+ - uid: 14913
components:
- pos: 31.5,7.5
parent: 2
type: Transform
- - uid: 14915
+ - uid: 14914
components:
- rot: 1.5707963267948966 rad
pos: 43.5,14.5
parent: 2
type: Transform
- - uid: 14916
+ - uid: 14915
components:
- pos: 31.5,-5.5
parent: 2
type: Transform
- - uid: 14917
+ - uid: 14916
components:
- pos: 10.5,4.5
parent: 2
type: Transform
- - uid: 14918
+ - uid: 14917
components:
- pos: -21.5,-11.5
parent: 2
type: Transform
- - uid: 14919
+ - uid: 14918
components:
- pos: 36.5,-38.5
parent: 2
type: Transform
- - uid: 14920
+ - uid: 14919
components:
- pos: -3.5,-2.5
parent: 2
type: Transform
- - uid: 14921
+ - uid: 14920
components:
- pos: -5.5,-2.5
parent: 2
type: Transform
- - uid: 14922
+ - uid: 14921
components:
- pos: -21.5,-12.5
parent: 2
type: Transform
- - uid: 14923
+ - uid: 14922
components:
- pos: -0.5,-25.5
parent: 2
type: Transform
- - uid: 14924
+ - uid: 14923
components:
- rot: -1.5707963267948966 rad
pos: 17.5,15.5
parent: 2
type: Transform
- - uid: 14925
+ - uid: 14924
components:
- pos: 15.5,-19.5
parent: 2
type: Transform
- - uid: 14926
+ - uid: 14925
components:
- pos: -9.5,-51.5
parent: 2
type: Transform
- - uid: 14927
+ - uid: 14926
components:
- pos: -8.5,-51.5
parent: 2
type: Transform
- - uid: 14928
+ - uid: 14927
components:
- pos: -19.5,-58.5
parent: 2
type: Transform
- - uid: 14929
+ - uid: 14928
components:
- pos: -6.5,-62.5
parent: 2
type: Transform
- - uid: 14930
+ - uid: 14929
components:
- pos: -2.5,-62.5
parent: 2
type: Transform
- - uid: 14931
+ - uid: 14930
components:
- pos: 31.5,8.5
parent: 2
type: Transform
- - uid: 14932
+ - uid: 14931
components:
- pos: 31.5,1.5
parent: 2
type: Transform
- - uid: 14933
+ - uid: 14932
components:
- rot: -1.5707963267948966 rad
pos: 19.5,14.5
parent: 2
type: Transform
- - uid: 14934
+ - uid: 14933
components:
- pos: -46.5,27.5
parent: 2
type: Transform
- - uid: 14935
+ - uid: 14934
components:
- pos: 35.5,2.5
parent: 2
type: Transform
- - uid: 14936
+ - uid: 14935
components:
- pos: -23.5,-81.5
parent: 2
type: Transform
- - uid: 14937
+ - uid: 14936
components:
- pos: 27.5,17.5
parent: 2
type: Transform
- - uid: 14938
+ - uid: 14937
components:
- pos: 14.5,-19.5
parent: 2
type: Transform
- - uid: 14939
+ - uid: 14938
components:
- pos: 7.5,9.5
parent: 2
type: Transform
- - uid: 14940
+ - uid: 14939
components:
- pos: -7.5,4.5
parent: 2
type: Transform
- ShutdownSubscribers:
- - 14700
+ - 14702
type: DeviceNetwork
- - uid: 14941
+ - uid: 14940
components:
- pos: -1.5,-1.5
parent: 2
type: Transform
- - uid: 14942
+ - uid: 14941
components:
- pos: 34.5,-19.5
parent: 2
type: Transform
- - uid: 14943
+ - uid: 14942
components:
- pos: -1.5,2.5
parent: 2
type: Transform
- - uid: 14944
+ - uid: 14943
components:
- pos: 31.5,-6.5
parent: 2
type: Transform
- - uid: 14945
+ - uid: 14944
components:
- pos: 31.5,6.5
parent: 2
type: Transform
- - uid: 14946
+ - uid: 14945
components:
- pos: 15.5,6.5
parent: 2
type: Transform
- - uid: 14947
+ - uid: 14946
components:
- pos: 19.5,7.5
parent: 2
type: Transform
- - uid: 14948
+ - uid: 14947
components:
- pos: 11.5,18.5
parent: 2
type: Transform
- - uid: 14949
+ - uid: 14948
components:
- pos: 10.5,-2.5
parent: 2
type: Transform
- - uid: 14950
+ - uid: 14949
components:
- pos: 16.5,-38.5
parent: 2
type: Transform
- - uid: 14951
+ - uid: 14950
components:
- pos: 26.5,-31.5
parent: 2
type: Transform
- - uid: 14952
+ - uid: 14951
components:
- pos: -3.5,-22.5
parent: 2
type: Transform
- - uid: 14953
+ - uid: 14952
components:
- pos: -0.5,-26.5
parent: 2
type: Transform
- - uid: 14954
+ - uid: 14953
components:
- pos: -20.5,-39.5
parent: 2
type: Transform
- - uid: 14955
+ - uid: 14954
components:
- pos: 10.5,-27.5
parent: 2
type: Transform
- - uid: 14956
+ - uid: 14955
components:
- pos: -15.5,-58.5
parent: 2
type: Transform
- - uid: 14957
+ - uid: 14956
components:
- pos: 1.5,4.5
parent: 2
type: Transform
- - uid: 14958
+ - uid: 14957
components:
- pos: -4.5,-22.5
parent: 2
type: Transform
- - uid: 14959
+ - uid: 14958
components:
- pos: 7.5,8.5
parent: 2
type: Transform
- - uid: 14960
+ - uid: 14959
components:
- pos: 35.5,1.5
parent: 2
type: Transform
- - uid: 14961
+ - uid: 14960
components:
- pos: 10.5,-25.5
parent: 2
type: Transform
- - uid: 14962
+ - uid: 14961
components:
- pos: -2.5,-55.5
parent: 2
type: Transform
- - uid: 14963
+ - uid: 14962
components:
- pos: 5.5,4.5
parent: 2
type: Transform
- - uid: 14964
+ - uid: 14963
components:
- pos: 16.5,-19.5
parent: 2
type: Transform
- - uid: 14965
+ - uid: 14964
components:
- pos: 19.5,6.5
parent: 2
type: Transform
- - uid: 14966
+ - uid: 14965
components:
- pos: -4.5,-2.5
parent: 2
type: Transform
- - uid: 14967
+ - uid: 14966
components:
- pos: -1.5,7.5
parent: 2
type: Transform
- ShutdownSubscribers:
- - 14700
+ - 14702
type: DeviceNetwork
- - uid: 14968
+ - uid: 14967
components:
- rot: 3.141592653589793 rad
pos: -1.5,-0.5
parent: 2
type: Transform
- - uid: 14969
+ - uid: 14968
components:
- pos: 19.5,-5.5
parent: 2
type: Transform
- - uid: 14970
+ - uid: 14969
components:
- pos: -27.5,1.5
parent: 2
type: Transform
- - uid: 14971
+ - uid: 14970
components:
- pos: 7.5,-42.5
parent: 2
type: Transform
- - uid: 14972
+ - uid: 14971
components:
- pos: -7.5,-51.5
parent: 2
type: Transform
- - uid: 14973
+ - uid: 14972
components:
- pos: 7.5,-43.5
parent: 2
type: Transform
- - uid: 14974
+ - uid: 14973
components:
- pos: -8.5,-55.5
parent: 2
type: Transform
- - uid: 14975
+ - uid: 14974
components:
- pos: 34.5,-38.5
parent: 2
type: Transform
- - uid: 14976
+ - uid: 14975
components:
- pos: 38.5,-0.5
parent: 2
type: Transform
- - uid: 14977
+ - uid: 14976
components:
- pos: 25.5,-15.5
parent: 2
type: Transform
- - uid: 14978
+ - uid: 14977
components:
- pos: 14.5,-38.5
parent: 2
type: Transform
- - uid: 14979
+ - uid: 14978
components:
- pos: -11.5,-55.5
parent: 2
type: Transform
- - uid: 14980
+ - uid: 14979
components:
- pos: 20.5,-15.5
parent: 2
type: Transform
- - uid: 14981
+ - uid: 14980
components:
- pos: 0.5,-55.5
parent: 2
type: Transform
- - uid: 14982
+ - uid: 14981
components:
- pos: 11.5,-29.5
parent: 2
type: Transform
- - uid: 14983
+ - uid: 14982
components:
- pos: 35.5,-3.5
parent: 2
type: Transform
- - uid: 14984
+ - uid: 14983
components:
- pos: -22.5,-81.5
parent: 2
type: Transform
- - uid: 14985
+ - uid: 14984
components:
- pos: -15.5,-55.5
parent: 2
type: Transform
- - uid: 14986
+ - uid: 14985
components:
- pos: 25.5,-44.5
parent: 2
type: Transform
- - uid: 14987
+ - uid: 14986
components:
- pos: -14.5,-55.5
parent: 2
type: Transform
- - uid: 14988
+ - uid: 14987
components:
- pos: 19.5,-4.5
parent: 2
type: Transform
- - uid: 14989
+ - uid: 14988
components:
- pos: -0.5,-27.5
parent: 2
type: Transform
- - uid: 14990
+ - uid: 14989
components:
- pos: -18.5,-39.5
parent: 2
type: Transform
- - uid: 14991
+ - uid: 14990
components:
- pos: -5.5,-22.5
parent: 2
type: Transform
- - uid: 14992
+ - uid: 14991
components:
- pos: 4.5,11.5
parent: 2
type: Transform
- - uid: 14993
+ - uid: 14992
components:
- pos: 5.5,11.5
parent: 2
type: Transform
- - uid: 14994
+ - uid: 14993
components:
- pos: -5.5,-39.5
parent: 2
type: Transform
- - uid: 14995
+ - uid: 14994
components:
- pos: -4.5,-39.5
parent: 2
type: Transform
- - uid: 14996
+ - uid: 14995
components:
- pos: -3.5,-39.5
parent: 2
type: Transform
- - uid: 14997
+ - uid: 14996
components:
- pos: 0.5,4.5
parent: 2
type: Transform
- - uid: 14998
+ - uid: 14997
components:
- pos: 2.5,4.5
parent: 2
type: Transform
- - uid: 14999
+ - uid: 14998
components:
- pos: 22.5,-44.5
parent: 2
type: Transform
- - uid: 15000
+ - uid: 14999
components:
- pos: -8.5,-40.5
parent: 2
type: Transform
- - uid: 15001
+ - uid: 15000
components:
- pos: 21.5,-44.5
parent: 2
type: Transform
- - uid: 15002
+ - uid: 15001
components:
- pos: 27.5,21.5
parent: 2
type: Transform
- - uid: 15003
+ - uid: 15002
components:
- rot: 1.5707963267948966 rad
pos: 48.5,6.5
parent: 2
type: Transform
- - uid: 15004
+ - uid: 15003
components:
- rot: 1.5707963267948966 rad
pos: 43.5,19.5
parent: 2
type: Transform
- - uid: 15005
+ - uid: 15004
components:
- rot: 1.5707963267948966 rad
pos: 43.5,20.5
parent: 2
type: Transform
- - uid: 15006
+ - uid: 15005
components:
- rot: 1.5707963267948966 rad
pos: 43.5,15.5
parent: 2
type: Transform
- - uid: 15007
+ - uid: 15006
components:
- rot: 1.5707963267948966 rad
pos: 61.5,4.5
parent: 2
type: Transform
- - uid: 15008
+ - uid: 15007
components:
- pos: 51.5,-3.5
parent: 2
type: Transform
- - uid: 15009
+ - uid: 15008
components:
- pos: 52.5,-3.5
parent: 2
type: Transform
- - uid: 15010
+ - uid: 15009
components:
- pos: 53.5,-3.5
parent: 2
type: Transform
- - uid: 15011
+ - uid: 15010
components:
- pos: -21.5,30.5
parent: 2
type: Transform
- - uid: 15012
+ - uid: 15011
components:
- rot: 1.5707963267948966 rad
pos: 46.5,15.5
parent: 2
type: Transform
- - uid: 15013
+ - uid: 15012
components:
- pos: 15.5,-38.5
parent: 2
type: Transform
- - uid: 15014
+ - uid: 15013
components:
- pos: 47.5,-37.5
parent: 2
type: Transform
- - uid: 15015
+ - uid: 15014
components:
- pos: 47.5,-43.5
parent: 2
type: Transform
- - uid: 15016
+ - uid: 15015
components:
- pos: 47.5,-45.5
parent: 2
type: Transform
- - uid: 15017
+ - uid: 15016
components:
- pos: 47.5,-41.5
parent: 2
type: Transform
- - uid: 15018
+ - uid: 15017
components:
- pos: 62.5,-41.5
parent: 2
type: Transform
- - uid: 15019
+ - uid: 15018
components:
- pos: 62.5,-50.5
parent: 2
type: Transform
- - uid: 15020
+ - uid: 15019
components:
- pos: 47.5,-46.5
parent: 2
type: Transform
- - uid: 15021
+ - uid: 15020
components:
- pos: 40.5,-43.5
parent: 2
type: Transform
- - uid: 15022
+ - uid: 15021
components:
- pos: 40.5,-42.5
parent: 2
type: Transform
- - uid: 15023
+ - uid: 15022
components:
- pos: 40.5,-41.5
parent: 2
type: Transform
- - uid: 15024
+ - uid: 15023
components:
- pos: 49.5,-48.5
parent: 2
type: Transform
- - uid: 15025
+ - uid: 15024
components:
- pos: 50.5,-48.5
parent: 2
type: Transform
- - uid: 15026
+ - uid: 15025
components:
- pos: 47.5,-42.5
parent: 2
type: Transform
- - uid: 15027
+ - uid: 15026
components:
- pos: 46.5,-10.5
parent: 2
type: Transform
- - uid: 15028
+ - uid: 15027
components:
- rot: -1.5707963267948966 rad
pos: 64.5,-4.5
parent: 2
type: Transform
- - uid: 15029
+ - uid: 15028
components:
- pos: -34.5,-33.5
parent: 2
type: Transform
- - uid: 15030
+ - uid: 15029
components:
- pos: -34.5,-34.5
parent: 2
type: Transform
- - uid: 15031
+ - uid: 15030
components:
- pos: -21.5,-21.5
parent: 2
type: Transform
- - uid: 15032
+ - uid: 15031
components:
- pos: -27.5,0.5
parent: 2
type: Transform
- - uid: 15033
+ - uid: 15032
components:
- pos: -19.5,-24.5
parent: 2
type: Transform
- - uid: 15034
+ - uid: 15033
components:
- pos: -33.5,-16.5
parent: 2
type: Transform
- - uid: 15035
+ - uid: 15034
components:
- pos: -27.5,-0.5
parent: 2
type: Transform
- - uid: 15036
+ - uid: 15035
components:
- pos: -21.5,-32.5
parent: 2
type: Transform
- - uid: 15037
+ - uid: 15036
components:
- pos: 39.5,-57.5
parent: 2
type: Transform
- - uid: 15038
+ - uid: 15037
components:
- pos: 35.5,-59.5
parent: 2
type: Transform
- - uid: 15039
+ - uid: 15038
components:
- pos: 35.5,-58.5
parent: 2
type: Transform
- - uid: 15040
+ - uid: 15039
components:
- pos: 35.5,-60.5
parent: 2
type: Transform
- - uid: 15041
+ - uid: 15040
components:
- pos: -14.5,-58.5
parent: 2
type: Transform
- - uid: 15042
+ - uid: 15041
components:
- pos: -11.5,-58.5
parent: 2
type: Transform
- - uid: 15043
+ - uid: 15042
components:
- pos: 39.5,-69.5
parent: 2
type: Transform
- - uid: 15044
+ - uid: 15043
components:
- pos: 40.5,-69.5
parent: 2
type: Transform
- - uid: 15045
+ - uid: 15044
components:
- pos: -0.5,-51.5
parent: 2
type: Transform
- - uid: 15046
+ - uid: 15045
components:
- pos: -1.5,-51.5
parent: 2
type: Transform
- - uid: 15047
+ - uid: 15046
components:
- pos: 0.5,-51.5
parent: 2
type: Transform
- - uid: 15048
+ - uid: 15047
components:
- pos: -8.5,-58.5
parent: 2
type: Transform
- - uid: 15049
+ - uid: 15048
components:
- pos: -32.5,-19.5
parent: 2
type: Transform
- - uid: 15050
+ - uid: 15049
components:
- pos: -31.5,-19.5
parent: 2
type: Transform
- - uid: 15051
+ - uid: 15050
components:
- pos: -40.5,-6.5
parent: 2
type: Transform
- - uid: 15052
+ - uid: 15051
components:
- pos: -40.5,-5.5
parent: 2
type: Transform
- - uid: 15053
+ - uid: 15052
components:
- pos: 3.5,-55.5
parent: 2
type: Transform
- - uid: 15054
+ - uid: 15053
components:
- pos: -21.5,-34.5
parent: 2
type: Transform
- - uid: 15055
+ - uid: 15054
components:
- pos: -33.5,-40.5
parent: 2
type: Transform
- - uid: 15056
+ - uid: 15055
components:
- pos: -33.5,-41.5
parent: 2
type: Transform
- - uid: 15057
+ - uid: 15056
components:
- pos: -54.5,-21.5
parent: 2
type: Transform
- - uid: 15058
+ - uid: 15057
components:
- pos: -53.5,-21.5
parent: 2
type: Transform
- - uid: 15059
+ - uid: 15058
components:
- pos: -69.5,-24.5
parent: 2
type: Transform
- - uid: 15060
+ - uid: 15059
components:
- pos: -20.5,-24.5
parent: 2
type: Transform
- - uid: 15061
+ - uid: 15060
components:
- pos: -18.5,-24.5
parent: 2
type: Transform
- - uid: 15062
+ - uid: 15061
components:
- pos: -26.5,-16.5
parent: 2
type: Transform
- - uid: 15063
+ - uid: 15062
components:
- pos: -26.5,-17.5
parent: 2
type: Transform
- - uid: 15064
+ - uid: 15063
components:
- pos: -33.5,-11.5
parent: 2
type: Transform
- - uid: 15065
+ - uid: 15064
components:
- pos: -33.5,-10.5
parent: 2
type: Transform
- - uid: 15066
+ - uid: 15065
components:
- pos: -41.5,-8.5
parent: 2
type: Transform
- - uid: 15067
+ - uid: 15066
components:
- pos: -42.5,-8.5
parent: 2
type: Transform
- - uid: 15068
+ - uid: 15067
components:
- pos: -40.5,-10.5
parent: 2
type: Transform
- - uid: 15069
+ - uid: 15068
components:
- pos: -63.5,-23.5
parent: 2
type: Transform
- - uid: 15070
+ - uid: 15069
components:
- pos: -21.5,-60.5
parent: 2
type: Transform
- - uid: 15071
+ - uid: 15070
components:
- pos: -21.5,20.5
parent: 2
type: Transform
- - uid: 15072
+ - uid: 15071
components:
- pos: -21.5,21.5
parent: 2
type: Transform
- - uid: 15073
+ - uid: 15072
components:
- pos: -20.5,14.5
parent: 2
type: Transform
- - uid: 15074
+ - uid: 15073
components:
- pos: -19.5,14.5
parent: 2
type: Transform
- - uid: 15075
+ - uid: 15074
components:
- pos: -18.5,14.5
parent: 2
type: Transform
- - uid: 15076
+ - uid: 15075
components:
- rot: -1.5707963267948966 rad
pos: -17.5,25.5
parent: 2
type: Transform
- - uid: 15077
+ - uid: 15076
components:
- pos: -38.5,2.5
parent: 2
type: Transform
- - uid: 15078
+ - uid: 15077
components:
- pos: -37.5,2.5
parent: 2
type: Transform
- - uid: 15079
+ - uid: 15078
components:
- pos: -44.5,1.5
parent: 2
type: Transform
- - uid: 15080
+ - uid: 15079
components:
- pos: -44.5,0.5
parent: 2
type: Transform
- - uid: 15081
+ - uid: 15080
components:
- pos: 1.5,-46.5
parent: 2
type: Transform
- - uid: 15082
+ - uid: 15081
components:
- pos: 1.5,-48.5
parent: 2
type: Transform
- - uid: 15083
+ - uid: 15082
components:
- rot: 3.141592653589793 rad
pos: 5.5,-51.5
parent: 2
type: Transform
- - uid: 15084
+ - uid: 15083
components:
- pos: -3.5,-62.5
parent: 2
type: Transform
- - uid: 15085
+ - uid: 15084
components:
- pos: -5.5,-62.5
parent: 2
type: Transform
- - uid: 15086
+ - uid: 15085
components:
- pos: -45.5,9.5
parent: 2
type: Transform
- - uid: 15087
+ - uid: 15086
components:
- pos: -44.5,-0.5
parent: 2
type: Transform
- - uid: 15088
+ - uid: 15087
components:
- rot: 1.5707963267948966 rad
pos: 46.5,14.5
parent: 2
type: Transform
- - uid: 15089
+ - uid: 15088
components:
- pos: -5.5,-58.5
parent: 2
type: Transform
- - uid: 15090
+ - uid: 15089
components:
- pos: -46.5,9.5
parent: 2
type: Transform
- - uid: 15091
+ - uid: 15090
components:
- pos: -19.5,-7.5
parent: 2
type: Transform
- - uid: 15092
+ - uid: 15091
components:
- pos: -18.5,-7.5
parent: 2
type: Transform
- - uid: 15093
+ - uid: 15092
components:
- pos: -20.5,-7.5
parent: 2
type: Transform
- - uid: 15094
+ - uid: 15093
components:
- pos: 35.5,0.5
parent: 2
type: Transform
- - uid: 15095
+ - uid: 15094
components:
- pos: -32.5,27.5
parent: 2
type: Transform
- - uid: 15096
+ - uid: 15095
components:
- pos: -13.5,-25.5
parent: 2
type: Transform
- - uid: 15097
+ - uid: 15096
components:
- pos: -13.5,-26.5
parent: 2
type: Transform
- - uid: 15098
+ - uid: 15097
components:
- pos: -13.5,-27.5
parent: 2
type: Transform
- - uid: 15099
+ - uid: 15098
components:
- pos: -63.5,-24.5
parent: 2
type: Transform
- - uid: 15100
+ - uid: 15099
components:
- pos: -11.5,-0.5
parent: 2
type: Transform
- - uid: 15101
+ - uid: 15100
components:
- pos: -11.5,-1.5
parent: 2
type: Transform
- - uid: 15102
+ - uid: 15101
components:
- pos: -11.5,3.5
parent: 2
type: Transform
- - uid: 15103
+ - uid: 15102
components:
- pos: -11.5,2.5
parent: 2
type: Transform
- - uid: 15104
+ - uid: 15103
components:
- pos: -24.5,9.5
parent: 2
type: Transform
- - uid: 15105
+ - uid: 15104
components:
- rot: 3.141592653589793 rad
pos: 43.5,6.5
parent: 2
type: Transform
- - uid: 15106
+ - uid: 15105
components:
- pos: 26.5,19.5
parent: 2
type: Transform
- - uid: 15107
+ - uid: 15106
components:
- pos: 25.5,19.5
parent: 2
type: Transform
- - uid: 15108
+ - uid: 15107
components:
- pos: 24.5,19.5
parent: 2
type: Transform
- - uid: 15109
+ - uid: 15108
components:
- rot: 3.141592653589793 rad
pos: -26.5,-12.5
parent: 2
type: Transform
- - uid: 15110
+ - uid: 15109
components:
- pos: 26.5,-44.5
parent: 2
type: Transform
- - uid: 15111
+ - uid: 15110
components:
- pos: -10.5,4.5
parent: 2
type: Transform
- ShutdownSubscribers:
- - 14700
+ - 14702
type: DeviceNetwork
- - uid: 15112
+ - uid: 15111
components:
- pos: 3.5,-58.5
parent: 2
type: Transform
- - uid: 15113
+ - uid: 15112
components:
- pos: -2.5,-58.5
parent: 2
type: Transform
- - uid: 15114
+ - uid: 15113
components:
- pos: 0.5,-58.5
parent: 2
type: Transform
- - uid: 15115
+ - uid: 15114
components:
- pos: 31.5,-57.5
parent: 2
type: Transform
- - uid: 15116
+ - uid: 15115
components:
- pos: 49.5,-13.5
parent: 2
type: Transform
- - uid: 15117
+ - uid: 15116
components:
- pos: -24.5,-74.5
parent: 2
type: Transform
- - uid: 15118
+ - uid: 15117
components:
- pos: 3.5,-62.5
parent: 2
type: Transform
- - uid: 15119
+ - uid: 15118
components:
- pos: -40.5,-11.5
parent: 2
type: Transform
- - uid: 15120
+ - uid: 15119
components:
- pos: -43.5,-10.5
parent: 2
type: Transform
- - uid: 15121
+ - uid: 15120
components:
- pos: -43.5,-11.5
parent: 2
type: Transform
- - uid: 15122
+ - uid: 15121
components:
- pos: -13.5,-51.5
parent: 2
type: Transform
- - uid: 15123
+ - uid: 15122
components:
- pos: 22.5,19.5
parent: 2
type: Transform
- - uid: 15124
+ - uid: 15123
components:
- pos: 6.5,18.5
parent: 2
type: Transform
- - uid: 15125
+ - uid: 15124
components:
- pos: -18.5,-74.5
parent: 2
type: Transform
- - uid: 15126
+ - uid: 15125
components:
- pos: -20.5,-83.5
parent: 2
type: Transform
- - uid: 15127
+ - uid: 15126
components:
- pos: 54.5,-44.5
parent: 2
type: Transform
- - uid: 15128
+ - uid: 15127
components:
- pos: 54.5,-45.5
parent: 2
type: Transform
- - uid: 15129
+ - uid: 15128
components:
- pos: 58.5,-44.5
parent: 2
type: Transform
- - uid: 15130
+ - uid: 15129
components:
- pos: 58.5,-45.5
parent: 2
type: Transform
- - uid: 15131
+ - uid: 15130
components:
- pos: -12.5,68.5
parent: 2
@@ -95222,113 +95225,113 @@ entities:
- ShutdownSubscribers:
- 74
type: DeviceNetwork
- - uid: 15132
+ - uid: 15131
components:
- rot: 1.5707963267948966 rad
pos: -18.5,55.5
parent: 2
type: Transform
- - uid: 15133
+ - uid: 15132
components:
- pos: -19.5,43.5
parent: 2
type: Transform
- - uid: 15134
+ - uid: 15133
components:
- pos: -19.5,42.5
parent: 2
type: Transform
- - uid: 15135
+ - uid: 15134
components:
- pos: -19.5,41.5
parent: 2
type: Transform
- - uid: 15136
+ - uid: 15135
components:
- pos: -17.5,30.5
parent: 2
type: Transform
- - uid: 15137
+ - uid: 15136
components:
- pos: -17.5,29.5
parent: 2
type: Transform
- - uid: 15138
+ - uid: 15137
components:
- pos: -11.5,43.5
parent: 2
type: Transform
- - uid: 15139
+ - uid: 15138
components:
- pos: -10.5,43.5
parent: 2
type: Transform
- - uid: 15140
+ - uid: 15139
components:
- pos: -9.5,43.5
parent: 2
type: Transform
- - uid: 15141
+ - uid: 15140
components:
- pos: -20.5,49.5
parent: 2
type: Transform
- - uid: 15142
+ - uid: 15141
components:
- pos: -21.5,49.5
parent: 2
type: Transform
- - uid: 15143
+ - uid: 15142
components:
- pos: 8.5,-38.5
parent: 2
type: Transform
- - uid: 15144
+ - uid: 15143
components:
- pos: -13.5,46.5
parent: 2
type: Transform
- - uid: 15145
+ - uid: 15144
components:
- pos: -13.5,45.5
parent: 2
type: Transform
- - uid: 15146
+ - uid: 15145
components:
- pos: -13.5,44.5
parent: 2
type: Transform
- - uid: 15147
+ - uid: 15146
components:
- pos: 1.5,53.5
parent: 2
type: Transform
- - uid: 15148
+ - uid: 15147
components:
- pos: 0.5,53.5
parent: 2
type: Transform
- - uid: 15149
+ - uid: 15148
components:
- pos: -0.5,53.5
parent: 2
type: Transform
- - uid: 15150
+ - uid: 15149
components:
- pos: -18.5,48.5
parent: 2
type: Transform
- - uid: 15151
+ - uid: 15150
components:
- pos: -17.5,48.5
parent: 2
type: Transform
- - uid: 15152
+ - uid: 15151
components:
- pos: -16.5,48.5
parent: 2
type: Transform
- - uid: 15153
+ - uid: 15152
components:
- pos: -13.5,68.5
parent: 2
@@ -95336,17 +95339,17 @@ entities:
- ShutdownSubscribers:
- 74
type: DeviceNetwork
- - uid: 15154
+ - uid: 15153
components:
- pos: -21.5,68.5
parent: 2
type: Transform
- - uid: 15155
+ - uid: 15154
components:
- pos: -22.5,68.5
parent: 2
type: Transform
- - uid: 15156
+ - uid: 15155
components:
- pos: -11.5,59.5
parent: 2
@@ -95354,7 +95357,7 @@ entities:
- ShutdownSubscribers:
- 74
type: DeviceNetwork
- - uid: 15157
+ - uid: 15156
components:
- pos: -11.5,58.5
parent: 2
@@ -95362,7 +95365,7 @@ entities:
- ShutdownSubscribers:
- 74
type: DeviceNetwork
- - uid: 15158
+ - uid: 15157
components:
- pos: -15.5,51.5
parent: 2
@@ -95370,7 +95373,7 @@ entities:
- ShutdownSubscribers:
- 74
type: DeviceNetwork
- - uid: 15159
+ - uid: 15158
components:
- pos: -15.5,50.5
parent: 2
@@ -95378,13 +95381,13 @@ entities:
- ShutdownSubscribers:
- 74
type: DeviceNetwork
- - uid: 15160
+ - uid: 15159
components:
- rot: 3.141592653589793 rad
pos: -4.5,47.5
parent: 2
type: Transform
- - uid: 15161
+ - uid: 15160
components:
- rot: 3.141592653589793 rad
pos: -11.5,52.5
@@ -95393,194 +95396,194 @@ entities:
- ShutdownSubscribers:
- 74
type: DeviceNetwork
- - uid: 15162
+ - uid: 15161
components:
- rot: 3.141592653589793 rad
pos: -6.5,57.5
parent: 2
type: Transform
- - uid: 15163
+ - uid: 15162
components:
- pos: -24.5,48.5
parent: 2
type: Transform
- - uid: 15164
+ - uid: 15163
components:
- rot: 3.141592653589793 rad
pos: 42.5,3.5
parent: 2
type: Transform
- - uid: 15165
+ - uid: 15164
components:
- rot: 3.141592653589793 rad
pos: 41.5,3.5
parent: 2
type: Transform
- - uid: 15166
+ - uid: 15165
components:
- pos: -42.5,-86.5
parent: 2
type: Transform
- - uid: 15167
+ - uid: 15166
components:
- pos: -41.5,-86.5
parent: 2
type: Transform
- - uid: 15168
+ - uid: 15167
components:
- pos: -31.5,-97.5
parent: 2
type: Transform
- - uid: 15169
+ - uid: 15168
components:
- pos: 61.5,-41.5
parent: 2
type: Transform
- - uid: 15170
+ - uid: 15169
components:
- pos: 74.5,-39.5
parent: 2
type: Transform
- - uid: 15171
+ - uid: 15170
components:
- pos: 75.5,-39.5
parent: 2
type: Transform
- - uid: 15172
+ - uid: 15171
components:
- pos: 74.5,-42.5
parent: 2
type: Transform
- - uid: 15173
+ - uid: 15172
components:
- pos: 75.5,-42.5
parent: 2
type: Transform
- - uid: 15174
+ - uid: 15173
components:
- pos: -17.5,-22.5
parent: 2
type: Transform
- - uid: 15175
+ - uid: 15174
components:
- pos: -17.5,-23.5
parent: 2
type: Transform
- - uid: 15176
+ - uid: 15175
components:
- rot: 3.141592653589793 rad
pos: 43.5,-33.5
parent: 2
type: Transform
- - uid: 15177
+ - uid: 15176
components:
- pos: 4.5,-28.5
parent: 2
type: Transform
- - uid: 15178
+ - uid: 15177
components:
- pos: -45.5,27.5
parent: 2
type: Transform
- - uid: 15179
+ - uid: 15178
components:
- pos: 55.5,-29.5
parent: 2
type: Transform
- - uid: 15180
+ - uid: 15179
components:
- pos: -41.5,26.5
parent: 2
type: Transform
- - uid: 15181
+ - uid: 15180
components:
- rot: -1.5707963267948966 rad
pos: 6.5,-72.5
parent: 2
type: Transform
- - uid: 15182
+ - uid: 15181
components:
- pos: 23.5,-83.5
parent: 2
type: Transform
- - uid: 15183
+ - uid: 15182
components:
- pos: 20.5,-83.5
parent: 2
type: Transform
- - uid: 15184
+ - uid: 15183
components:
- rot: 3.141592653589793 rad
pos: 29.5,-76.5
parent: 2
type: Transform
- - uid: 15185
+ - uid: 15184
components:
- rot: 3.141592653589793 rad
pos: 30.5,-76.5
parent: 2
type: Transform
- - uid: 15186
+ - uid: 15185
components:
- rot: 3.141592653589793 rad
pos: 31.5,-76.5
parent: 2
type: Transform
- - uid: 15187
+ - uid: 15186
components:
- rot: 3.141592653589793 rad
pos: 32.5,-71.5
parent: 2
type: Transform
- - uid: 15188
+ - uid: 15187
components:
- rot: 3.141592653589793 rad
pos: 32.5,-72.5
parent: 2
type: Transform
- - uid: 15189
+ - uid: 15188
components:
- rot: 3.141592653589793 rad
pos: 32.5,-73.5
parent: 2
type: Transform
- - uid: 15190
+ - uid: 15189
components:
- rot: 3.141592653589793 rad
pos: 46.5,-71.5
parent: 2
type: Transform
- - uid: 15191
+ - uid: 15190
components:
- rot: 3.141592653589793 rad
pos: 46.5,-72.5
parent: 2
type: Transform
- - uid: 15192
+ - uid: 15191
components:
- rot: 3.141592653589793 rad
pos: 46.5,-73.5
parent: 2
type: Transform
- - uid: 15193
+ - uid: 15192
components:
- rot: 3.141592653589793 rad
pos: 47.5,-76.5
parent: 2
type: Transform
- - uid: 15194
+ - uid: 15193
components:
- rot: 3.141592653589793 rad
pos: 48.5,-76.5
parent: 2
type: Transform
- - uid: 15195
+ - uid: 15194
components:
- rot: 3.141592653589793 rad
pos: 49.5,-76.5
parent: 2
type: Transform
- - uid: 15196
+ - uid: 15195
components:
- rot: 3.141592653589793 rad
pos: -14.5,66.5
@@ -95589,220 +95592,220 @@ entities:
- ShutdownSubscribers:
- 74
type: DeviceNetwork
- - uid: 15197
+ - uid: 15196
components:
- rot: 3.141592653589793 rad
pos: -20.5,66.5
parent: 2
type: Transform
- - uid: 15198
+ - uid: 15197
components:
- pos: 45.5,3.5
parent: 2
type: Transform
- - uid: 15199
+ - uid: 15198
components:
- pos: 8.5,-83.5
parent: 2
type: Transform
- - uid: 15200
+ - uid: 15199
components:
- pos: -46.5,37.5
parent: 2
type: Transform
- - uid: 15201
+ - uid: 15200
components:
- pos: -45.5,37.5
parent: 2
type: Transform
- - uid: 15202
+ - uid: 15201
components:
- pos: -72.5,-36.5
parent: 2
type: Transform
- - uid: 15203
+ - uid: 15202
components:
- pos: -73.5,-36.5
parent: 2
type: Transform
- - uid: 15204
+ - uid: 15203
components:
- pos: 6.5,-7.5
parent: 2
type: Transform
- ShutdownSubscribers:
- - 14702
+ - 14704
- 99
type: DeviceNetwork
- - uid: 15205
+ - uid: 15204
components:
- pos: -2.5,-5.5
parent: 2
type: Transform
- ShutdownSubscribers:
- 100
- - 14703
+ - 14705
type: DeviceNetwork
- - uid: 15206
+ - uid: 15205
components:
- pos: 0.5,-5.5
parent: 2
type: Transform
- ShutdownSubscribers:
- - 14702
+ - 14704
- 99
- 100
- - 14703
+ - 14705
type: DeviceNetwork
- - uid: 15207
+ - uid: 15206
components:
- rot: 1.5707963267948966 rad
pos: 1.5,-8.5
parent: 2
type: Transform
- ShutdownSubscribers:
- - 14702
+ - 14704
- 99
type: DeviceNetwork
- - uid: 15208
+ - uid: 15207
components:
- pos: 0.5,-18.5
parent: 2
type: Transform
- ShutdownSubscribers:
- 101
- - 14704
+ - 14706
type: DeviceNetwork
- - uid: 15209
+ - uid: 15208
components:
- pos: -1.5,-24.5
parent: 2
type: Transform
- ShutdownSubscribers:
- 101
- - 14704
+ - 14706
type: DeviceNetwork
- - uid: 15210
+ - uid: 15209
components:
- pos: 22.5,-33.5
parent: 2
type: Transform
- ShutdownSubscribers:
- 79
- - 14705
+ - 14707
type: DeviceNetwork
- - uid: 15211
+ - uid: 15210
components:
- pos: 28.5,-33.5
parent: 2
type: Transform
- ShutdownSubscribers:
- 79
- - 14705
+ - 14707
type: DeviceNetwork
- - uid: 15212
+ - uid: 15211
components:
- pos: 7.5,-11.5
parent: 2
type: Transform
- - uid: 15213
+ - uid: 15212
components:
- pos: 25.5,-40.5
parent: 2
type: Transform
- ShutdownSubscribers:
- 79
- - 14705
+ - 14707
type: DeviceNetwork
- proto: Fireplace
entities:
- - uid: 15214
+ - uid: 15213
components:
- pos: 31.5,-27.5
parent: 2
type: Transform
- - uid: 15215
+ - uid: 15214
components:
- pos: 12.5,14.5
parent: 2
type: Transform
- - uid: 15216
+ - uid: 15215
components:
- pos: -0.5,-3.5
parent: 2
type: Transform
- - uid: 15217
+ - uid: 15216
components:
- pos: 5.5,-9.5
parent: 2
type: Transform
- proto: Flash
entities:
- - uid: 15218
+ - uid: 15217
components:
- pos: 2.3260884,20.921833
parent: 2
type: Transform
- - uid: 15219
+ - uid: 15218
components:
- pos: 2.5760884,21.156208
parent: 2
type: Transform
- - uid: 15220
+ - uid: 15219
components:
- pos: -15.513895,-23.550434
parent: 2
type: Transform
- proto: FlashlightLantern
entities:
- - uid: 15221
+ - uid: 15220
components:
- pos: -57.60324,-35.44005
parent: 2
type: Transform
- - uid: 15222
+ - uid: 15221
components:
- pos: 2.4386559,-17.536861
parent: 2
type: Transform
- - uid: 15223
+ - uid: 15222
components:
- pos: 11.541302,-66.381775
parent: 2
type: Transform
- - uid: 15224
+ - uid: 15223
components:
- pos: 10.459883,-56.492657
parent: 2
type: Transform
- - uid: 15225
+ - uid: 15224
components:
- pos: 6.4653053,-69.51486
parent: 2
type: Transform
- - uid: 15226
+ - uid: 15225
components:
- pos: -31.518282,-62.54614
parent: 2
type: Transform
- - uid: 15227
+ - uid: 15226
components:
- pos: 2.6315942,23.576332
parent: 2
type: Transform
- - uid: 15228
+ - uid: 15227
components:
- pos: 58.39165,-37.43153
parent: 2
type: Transform
- proto: FlashlightSeclite
entities:
- - uid: 15229
+ - uid: 15228
components:
- pos: 17.395416,21.653858
parent: 2
type: Transform
- - uid: 15230
+ - uid: 15229
components:
- rot: 3.141592653589793 rad
pos: 7.161119,12.488324
@@ -95810,129 +95813,129 @@ entities:
type: Transform
- proto: Floodlight
entities:
- - uid: 15231
+ - uid: 15230
components:
- pos: 6.532791,48.672844
parent: 2
type: Transform
- - uid: 15232
+ - uid: 15231
components:
- pos: 9.471183,54.298565
parent: 2
type: Transform
- - uid: 15233
+ - uid: 15232
components:
- pos: -69.53465,-52.447685
parent: 2
type: Transform
- proto: FloodlightBroken
entities:
- - uid: 15234
+ - uid: 15233
components:
- pos: 11.494867,-70.44923
parent: 2
type: Transform
- proto: FloorDrain
entities:
- - uid: 15235
+ - uid: 15234
components:
- pos: 3.5,-48.5
parent: 2
type: Transform
- fixtures: {}
type: Fixtures
- - uid: 15236
+ - uid: 15235
components:
- pos: -1.5,-66.5
parent: 2
type: Transform
- fixtures: {}
type: Fixtures
- - uid: 15237
+ - uid: 15236
components:
- pos: 3.5,8.5
parent: 2
type: Transform
- fixtures: {}
type: Fixtures
- - uid: 15238
+ - uid: 15237
components:
- pos: -15.5,-78.5
parent: 2
type: Transform
- fixtures: {}
type: Fixtures
- - uid: 15239
+ - uid: 15238
components:
- pos: -1.5,-64.5
parent: 2
type: Transform
- fixtures: {}
type: Fixtures
- - uid: 15240
+ - uid: 15239
components:
- pos: -7.5,-65.5
parent: 2
type: Transform
- fixtures: {}
type: Fixtures
- - uid: 15241
+ - uid: 15240
components:
- pos: -9.5,-22.5
parent: 2
type: Transform
- fixtures: {}
type: Fixtures
- - uid: 15242
+ - uid: 15241
components:
- pos: -15.5,-75.5
parent: 2
type: Transform
- fixtures: {}
type: Fixtures
- - uid: 15243
+ - uid: 15242
components:
- pos: -20.5,-89.5
parent: 2
type: Transform
- fixtures: {}
type: Fixtures
- - uid: 15244
+ - uid: 15243
components:
- pos: -25.5,-89.5
parent: 2
type: Transform
- fixtures: {}
type: Fixtures
- - uid: 15245
+ - uid: 15244
components:
- pos: 53.5,17.5
parent: 2
type: Transform
- fixtures: {}
type: Fixtures
- - uid: 15246
+ - uid: 15245
components:
- pos: 57.5,5.5
parent: 2
type: Transform
- fixtures: {}
type: Fixtures
- - uid: 15247
+ - uid: 15246
components:
- pos: 62.5,12.5
parent: 2
type: Transform
- fixtures: {}
type: Fixtures
- - uid: 15248
+ - uid: 15247
components:
- pos: 62.5,22.5
parent: 2
type: Transform
- fixtures: {}
type: Fixtures
- - uid: 15249
+ - uid: 15248
components:
- rot: 3.141592653589793 rad
pos: 71.5,-49.5
@@ -95940,28 +95943,28 @@ entities:
type: Transform
- fixtures: {}
type: Fixtures
- - uid: 15250
+ - uid: 15249
components:
- pos: -9.5,-69.5
parent: 2
type: Transform
- fixtures: {}
type: Fixtures
- - uid: 15251
+ - uid: 15250
components:
- pos: 3.5,-46.5
parent: 2
type: Transform
- fixtures: {}
type: Fixtures
- - uid: 15252
+ - uid: 15251
components:
- pos: 1.5,12.5
parent: 2
type: Transform
- fixtures: {}
type: Fixtures
- - uid: 15253
+ - uid: 15252
components:
- rot: 3.141592653589793 rad
pos: 45.5,6.5
@@ -95969,7 +95972,7 @@ entities:
type: Transform
- fixtures: {}
type: Fixtures
- - uid: 15254
+ - uid: 15253
components:
- pos: -15.5,-34.5
parent: 2
@@ -95978,7 +95981,7 @@ entities:
type: Fixtures
- proto: FloorTileItemBar
entities:
- - uid: 15255
+ - uid: 15254
components:
- pos: 37.575134,45.699768
parent: 2
@@ -95987,7 +95990,7 @@ entities:
type: Stack
- proto: FloorTileItemFreezer
entities:
- - uid: 15256
+ - uid: 15255
components:
- pos: -9.469288,-100.35687
parent: 2
@@ -95996,7 +95999,7 @@ entities:
type: Stack
- proto: FloorTileItemLaundry
entities:
- - uid: 15257
+ - uid: 15256
components:
- pos: -9.484913,-95.4242
parent: 2
@@ -96005,7 +96008,7 @@ entities:
type: Stack
- proto: FloorTileItemWhite
entities:
- - uid: 15258
+ - uid: 15257
components:
- pos: -10.013714,-95.45264
parent: 2
@@ -96014,291 +96017,291 @@ entities:
type: Stack
- proto: FloraRockSolid01
entities:
- - uid: 15259
+ - uid: 15258
components:
- pos: -35.842815,62.48777
parent: 2
type: Transform
- - uid: 15260
+ - uid: 15259
components:
- pos: 64.48079,45.764553
parent: 2
type: Transform
- proto: FloraRockSolid03
entities:
- - uid: 15261
+ - uid: 15260
components:
- pos: 63.527668,48.936428
parent: 2
type: Transform
- - uid: 15262
+ - uid: 15261
components:
- pos: 13.129076,49.02767
parent: 2
type: Transform
- - uid: 15263
+ - uid: 15262
components:
- pos: 16.257528,57.816456
parent: 2
type: Transform
- - uid: 15264
+ - uid: 15263
components:
- pos: 78.52854,-58.425747
parent: 2
type: Transform
- proto: FloraTree01
entities:
- - uid: 15265
+ - uid: 15264
components:
- pos: -40.510788,5.4778786
parent: 2
type: Transform
- - uid: 15266
+ - uid: 15265
components:
- pos: 45.883274,-86.48348
parent: 2
type: Transform
- proto: FloraTree02
entities:
- - uid: 15267
+ - uid: 15266
components:
- pos: -3.160706,55.605114
parent: 2
type: Transform
- - uid: 15268
+ - uid: 15267
components:
- pos: 33.292767,-85.71786
parent: 2
type: Transform
- proto: FloraTree03
entities:
- - uid: 15269
+ - uid: 15268
components:
- pos: 33.02714,-87.53036
parent: 2
type: Transform
- proto: FloraTree04
entities:
- - uid: 15270
+ - uid: 15269
components:
- pos: -9.341627,55.436527
parent: 2
type: Transform
- - uid: 15271
+ - uid: 15270
components:
- pos: -35.771816,4.543429
parent: 2
type: Transform
- proto: FloraTree05
entities:
- - uid: 15272
+ - uid: 15271
components:
- pos: -8.496121,50.8569
parent: 2
type: Transform
- proto: FloraTree06
entities:
- - uid: 15273
+ - uid: 15272
components:
- pos: -35.026413,5.9935036
parent: 2
type: Transform
- proto: FloraTreeChristmas01
entities:
- - uid: 15274
+ - uid: 15273
components:
- rot: -1.5707963267948966 rad
pos: 31.84649,-40.285706
parent: 2
type: Transform
- - uid: 15275
+ - uid: 15274
components:
- pos: 54.099407,-8.446931
parent: 2
type: Transform
- - uid: 15276
+ - uid: 15275
components:
- pos: 11.658023,0.9697406
parent: 2
type: Transform
- proto: FloraTreeChristmas02
entities:
- - uid: 15277
+ - uid: 15276
components:
- pos: 15.4937935,-83.927025
parent: 2
type: Transform
- proto: FloraTreeConifer02
entities:
- - uid: 15278
+ - uid: 15277
components:
- pos: 61.099407,-9.025056
parent: 2
type: Transform
- proto: FloraTreeSnow01
entities:
- - uid: 15279
+ - uid: 15278
components:
- pos: 14.3375435,-84.677025
parent: 2
type: Transform
- - uid: 15280
+ - uid: 15279
components:
- pos: 66.6474,-8.225101
parent: 2
type: Transform
- proto: FloraTreeSnow02
entities:
- - uid: 15281
+ - uid: 15280
components:
- pos: 50.346085,-10.740726
parent: 2
type: Transform
- proto: FloraTreeSnow03
entities:
- - uid: 15282
+ - uid: 15281
components:
- pos: 5.9392734,1.3447406
parent: 2
type: Transform
- - uid: 15283
+ - uid: 15282
components:
- pos: 50.51796,-6.2476535
parent: 2
type: Transform
- proto: FloraTreeSnow04
entities:
- - uid: 15284
+ - uid: 15283
components:
- pos: 10.798648,0.32911563
parent: 2
type: Transform
- - uid: 15285
+ - uid: 15284
components:
- pos: 53.693157,-9.392998
parent: 2
type: Transform
- proto: FloraTreeSnow06
entities:
- - uid: 15286
+ - uid: 15285
components:
- pos: 16.747952,-82.39699
parent: 2
type: Transform
- - uid: 15287
+ - uid: 15286
components:
- pos: 7.1423984,0.46974063
parent: 2
type: Transform
- proto: FoamBlade
entities:
- - uid: 15288
+ - uid: 15287
components:
- pos: -14.780027,-76.18346
parent: 2
type: Transform
- proto: FoamCrossbow
entities:
- - uid: 15289
+ - uid: 15288
components:
- pos: -11.410641,41.56952
parent: 2
type: Transform
- proto: FoodBakedCookieRaisin
entities:
- - uid: 15290
+ - uid: 15289
components:
- pos: -2.526709,-33.523388
parent: 2
type: Transform
- proto: FoodBowlBig
entities:
- - uid: 15291
+ - uid: 15290
components:
- pos: -22.492924,44.20428
parent: 2
type: Transform
- - uid: 15292
+ - uid: 15291
components:
- pos: -22.508549,43.813656
parent: 2
type: Transform
- proto: FoodBoxDonkpocketDink
entities:
- - uid: 15293
+ - uid: 15292
components:
- pos: 46.42201,-49.40806
parent: 2
type: Transform
- proto: FoodBoxDonkpocketHonk
entities:
- - uid: 15294
+ - uid: 15293
components:
- pos: 32.37506,-20.42581
parent: 2
type: Transform
- proto: FoodBoxDonkpocketPizza
entities:
- - uid: 15295
+ - uid: 15294
components:
- pos: -30.632925,-69.35548
parent: 2
type: Transform
- - uid: 15296
+ - uid: 15295
components:
- pos: 46.42201,-49.329933
parent: 2
type: Transform
- proto: FoodBoxDonkpocketSpicy
entities:
- - uid: 15297
+ - uid: 15296
components:
- pos: -39.41441,-32.343586
parent: 2
type: Transform
- proto: FoodBoxDonut
entities:
- - uid: 15298
+ - uid: 15297
components:
- pos: 52.62345,11.736868
parent: 2
type: Transform
- - uid: 15299
+ - uid: 15298
components:
- pos: 25.290524,19.578499
parent: 2
type: Transform
- proto: FoodBreadBanana
entities:
- - uid: 15300
+ - uid: 15299
components:
- pos: -36.588596,16.602194
parent: 2
type: Transform
- proto: FoodBurgerBrain
entities:
- - uid: 15301
+ - uid: 15300
components:
- pos: -12.411479,-50.405228
parent: 2
type: Transform
- proto: FoodCakeChristmas
entities:
- - uid: 15302
+ - uid: 15301
components:
- pos: 0.6606716,4.5542126
parent: 2
type: Transform
- proto: FoodCakeSpacemanSlice
entities:
- - uid: 15303
+ - uid: 15302
components:
- pos: -34.24552,17.570845
parent: 2
type: Transform
- proto: FoodCartHot
entities:
- - uid: 15304
+ - uid: 15303
components:
- rot: -1.5707963267948966 rad
pos: -0.5,9.5
@@ -96306,19 +96309,19 @@ entities:
type: Transform
- proto: FoodCondimentBottleEnzyme
entities:
- - uid: 15305
+ - uid: 15304
components:
- - pos: 3.5430002,6.7808695
+ - pos: 2.7293262,6.604941
parent: 2
type: Transform
- - uid: 15306
+ - uid: 15305
components:
- - pos: 3.2617502,6.8589945
+ - pos: 2.8230762,6.636191
parent: 2
type: Transform
- proto: FoodCornTrash
entities:
- - uid: 15307
+ - uid: 15306
components:
- rot: -1.5707963267948966 rad
pos: 48.732845,33.42303
@@ -96326,28 +96329,28 @@ entities:
type: Transform
- proto: FoodDonkpocketBerry
entities:
- - uid: 15308
+ - uid: 15307
components:
- pos: -9.518124,43.595463
parent: 2
type: Transform
- proto: FoodDonkpocketDink
entities:
- - uid: 15309
+ - uid: 15308
components:
- pos: -10.231451,43.574326
parent: 2
type: Transform
- proto: FoodDonutChocolate
entities:
- - uid: 15310
+ - uid: 15309
components:
- pos: 8.49275,13.726382
parent: 2
type: Transform
- proto: FoodFrozenPopsicleTrash
entities:
- - uid: 15311
+ - uid: 15310
components:
- rot: -1.5707963267948966 rad
pos: 50.420345,33.45428
@@ -96355,163 +96358,163 @@ entities:
type: Transform
- proto: FoodLemon
entities:
- - uid: 15312
+ - uid: 15311
components:
- pos: 55.628414,-67.334946
parent: 2
type: Transform
- proto: FoodMealEggplantParm
entities:
- - uid: 15313
+ - uid: 15312
components:
- pos: -23.359459,-71.33451
parent: 2
type: Transform
- proto: FoodMealFriesCarrot
entities:
- - uid: 15314
+ - uid: 15313
components:
- pos: -21.429913,47.709663
parent: 2
type: Transform
- proto: FoodMealPotatoYaki
entities:
- - uid: 15315
+ - uid: 15314
components:
- pos: 44.419395,-49.295273
parent: 2
type: Transform
- proto: FoodMeat
entities:
- - uid: 15316
+ - uid: 15315
components:
- pos: -16.53665,-77.55797
parent: 2
type: Transform
- - uid: 15317
+ - uid: 15316
components:
- pos: 64.3404,48.319218
parent: 2
type: Transform
- proto: FoodMeatHawaiianKebab
entities:
- - uid: 15318
+ - uid: 15317
components:
- pos: -12.469789,31.726183
parent: 2
type: Transform
- proto: FoodPieBananaCream
entities:
- - uid: 15319
+ - uid: 15318
components:
- pos: 1.5036734,4.5642977
parent: 2
type: Transform
- - uid: 15320
+ - uid: 15319
components:
- pos: -21.504532,37.662663
parent: 2
type: Transform
- - uid: 15321
+ - uid: 15320
components:
- pos: 5.023752,11.565053
parent: 2
type: Transform
- - uid: 15322
+ - uid: 15321
components:
- pos: -0.36896515,-23.435265
parent: 2
type: Transform
- proto: FoodPizzaMoldySlice
entities:
- - uid: 15323
+ - uid: 15322
components:
- pos: -58.327778,-27.35657
parent: 2
type: Transform
- proto: FoodPizzaPineapple
entities:
- - uid: 15324
+ - uid: 15323
components:
- pos: -25.559431,-79.20157
parent: 2
type: Transform
- proto: FoodPizzaVegetableSlice
entities:
- - uid: 15325
+ - uid: 15324
components:
- pos: 34.483707,-35.33738
parent: 2
type: Transform
- proto: FoodPlatePlastic
entities:
- - uid: 15326
+ - uid: 15325
components:
- pos: 58.37584,20.738062
parent: 2
type: Transform
- - uid: 15327
+ - uid: 15326
components:
- pos: 57.68834,19.831812
parent: 2
type: Transform
- proto: FoodPlateSmallTrash
entities:
- - uid: 15328
+ - uid: 15327
components:
- pos: 12.393527,-66.326096
parent: 2
type: Transform
- proto: FoodPlateTrash
entities:
- - uid: 15329
+ - uid: 15328
components:
- pos: 49.46722,33.501156
parent: 2
type: Transform
- proto: FoodRiceBoiled
entities:
- - uid: 15330
+ - uid: 15329
components:
- pos: -19.538637,41.826466
parent: 2
type: Transform
- proto: FoodRiceEgg
entities:
- - uid: 15331
+ - uid: 15330
components:
- pos: -19.538637,43.451466
parent: 2
type: Transform
- proto: FoodRicePork
entities:
- - uid: 15332
+ - uid: 15331
components:
- pos: -14.4963455,47.699337
parent: 2
type: Transform
- - uid: 15333
+ - uid: 15332
components:
- pos: -19.554262,42.701466
parent: 2
type: Transform
- proto: FoodRicePudding
entities:
- - uid: 15334
+ - uid: 15333
components:
- pos: -18.492641,33.633274
parent: 2
type: Transform
- proto: FoodSaladValid
entities:
- - uid: 15335
+ - uid: 15334
components:
- pos: -7.4460807,4.484113
parent: 2
type: Transform
- proto: FoodSnackBoritos
entities:
- - uid: 15336
+ - uid: 15335
components:
- rot: -1.5707963267948966 rad
pos: -11.473979,-49.827103
@@ -96519,14 +96522,14 @@ entities:
type: Transform
- proto: FoodSnackDanDanNoodles
entities:
- - uid: 15337
+ - uid: 15336
components:
- pos: -17.010939,42.53945
parent: 2
type: Transform
- proto: FoodSnackRaisins
entities:
- - uid: 15338
+ - uid: 15337
components:
- rot: -1.5707963267948966 rad
pos: -54.526974,-39.17369
@@ -96534,56 +96537,56 @@ entities:
type: Transform
- proto: FoodSnackSus
entities:
- - uid: 15339
+ - uid: 15338
components:
- pos: -12.469789,32.52306
parent: 2
type: Transform
- proto: FoodSoupClown
entities:
- - uid: 15340
+ - uid: 15339
components:
- pos: 48.47484,-21.900894
parent: 2
type: Transform
- proto: FoodSoupVegetable
entities:
- - uid: 15341
+ - uid: 15340
components:
- pos: -16.443905,21.40528
parent: 2
type: Transform
- proto: FoodTartGapple
entities:
- - uid: 15342
+ - uid: 15341
components:
- pos: 44.89154,-26.413532
parent: 2
type: Transform
- proto: FoodTartMime
entities:
- - uid: 15343
+ - uid: 15342
components:
- pos: -28.494537,45.97597
parent: 2
type: Transform
- proto: FoodTinPeachesMaint
entities:
- - uid: 15344
+ - uid: 15343
components:
- pos: -27.385347,-52.20374
parent: 2
type: Transform
- proto: FoodTinPeachesMaintOpen
entities:
- - uid: 15345
+ - uid: 15344
components:
- pos: 50.52597,42.757114
parent: 2
type: Transform
- proto: FoodTinPeachesTrash
entities:
- - uid: 15346
+ - uid: 15345
components:
- rot: -1.5707963267948966 rad
pos: 50.40472,33.469906
@@ -96591,12 +96594,19 @@ entities:
type: Transform
- proto: ForensicScanner
entities:
- - uid: 15347
+ - uid: 15346
components:
- rot: -1.5707963267948966 rad
pos: 22.266937,-14.419123
parent: 2
type: Transform
+- proto: FuelDispenser
+ entities:
+ - uid: 15347
+ components:
+ - pos: -27.5,-15.5
+ parent: 2
+ type: Transform
- proto: GarlicSeeds
entities:
- uid: 15348
@@ -96712,14 +96722,14 @@ entities:
type: Transform
- proto: GasMinerWaterVapor
entities:
- - uid: 15368
+ - uid: 15367
components:
- pos: -49.5,-48.5
parent: 2
type: Transform
- proto: GasMixer
entities:
- - uid: 15369
+ - uid: 15368
components:
- rot: 1.5707963267948966 rad
pos: 55.5,-59.5
@@ -96727,7 +96737,7 @@ entities:
type: Transform
- proto: GasMixerFlipped
entities:
- - uid: 15370
+ - uid: 15369
components:
- pos: -42.5,-51.5
parent: 2
@@ -96735,7 +96745,7 @@ entities:
- inletTwoConcentration: 0
inletOneConcentration: 1
type: GasMixer
- - uid: 15371
+ - uid: 15370
components:
- pos: -42.5,-52.5
parent: 2
@@ -96743,7 +96753,7 @@ entities:
- inletTwoConcentration: 1
inletOneConcentration: 0
type: GasMixer
- - uid: 15372
+ - uid: 15371
components:
- rot: -1.5707963267948966 rad
pos: -42.5,-55.5
@@ -96754,7 +96764,7 @@ entities:
type: GasMixer
- color: '#03FCD3FF'
type: AtmosPipeColor
- - uid: 15373
+ - uid: 15372
components:
- pos: -42.5,-49.5
parent: 2
@@ -96762,7 +96772,7 @@ entities:
- inletTwoConcentration: 0
inletOneConcentration: 1
type: GasMixer
- - uid: 15374
+ - uid: 15373
components:
- pos: -42.5,-47.5
parent: 2
@@ -96770,7 +96780,7 @@ entities:
- inletTwoConcentration: 0
inletOneConcentration: 1
type: GasMixer
- - uid: 15375
+ - uid: 15374
components:
- pos: -42.5,-45.5
parent: 2
@@ -96778,7 +96788,7 @@ entities:
- inletTwoConcentration: 0
inletOneConcentration: 1
type: GasMixer
- - uid: 15376
+ - uid: 15375
components:
- pos: -42.5,-43.5
parent: 2
@@ -96788,97 +96798,97 @@ entities:
type: GasMixer
- proto: GasOutletInjector
entities:
- - uid: 15377
+ - uid: 15376
components:
- rot: 1.5707963267948966 rad
pos: -48.5,-54.5
parent: 2
type: Transform
- - uid: 15378
+ - uid: 15377
components:
- rot: 1.5707963267948966 rad
pos: -48.5,-52.5
parent: 2
type: Transform
- - uid: 15379
+ - uid: 15378
components:
- rot: 1.5707963267948966 rad
pos: -48.5,-50.5
parent: 2
type: Transform
- - uid: 15380
+ - uid: 15379
components:
- rot: 1.5707963267948966 rad
pos: -48.5,-48.5
parent: 2
type: Transform
- - uid: 15381
+ - uid: 15380
components:
- rot: 1.5707963267948966 rad
pos: -48.5,-46.5
parent: 2
type: Transform
- - uid: 15382
+ - uid: 15381
components:
- rot: 1.5707963267948966 rad
pos: -48.5,-44.5
parent: 2
type: Transform
- - uid: 15383
+ - uid: 15382
components:
- rot: 1.5707963267948966 rad
pos: -48.5,-42.5
parent: 2
type: Transform
- - uid: 15384
+ - uid: 15383
components:
- pos: -42.5,-35.5
parent: 2
type: Transform
- proto: GasPassiveVent
entities:
- - uid: 15385
+ - uid: 15384
components:
- rot: 1.5707963267948966 rad
pos: 1.5,13.5
parent: 2
type: Transform
- - uid: 15386
+ - uid: 15385
components:
- pos: -44.5,-36.5
parent: 2
type: Transform
- - uid: 15387
+ - uid: 15386
components:
- rot: -1.5707963267948966 rad
pos: -63.5,-43.5
parent: 2
type: Transform
- - uid: 15388
+ - uid: 15387
components:
- pos: -50.5,-52.5
parent: 2
type: Transform
- - uid: 15389
+ - uid: 15388
components:
- pos: 73.5,-26.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15390
+ - uid: 15389
components:
- rot: 3.141592653589793 rad
pos: 51.5,-60.5
parent: 2
type: Transform
- - uid: 15391
+ - uid: 15390
components:
- rot: 3.141592653589793 rad
pos: 48.5,-60.5
parent: 2
type: Transform
- - uid: 15392
+ - uid: 15391
components:
- rot: 3.141592653589793 rad
pos: 49.5,-63.5
@@ -96886,56 +96896,56 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15393
+ - uid: 15392
components:
- pos: -50.5,-54.5
parent: 2
type: Transform
- - uid: 15394
+ - uid: 15393
components:
- pos: -50.5,-50.5
parent: 2
type: Transform
- - uid: 15395
+ - uid: 15394
components:
- pos: -50.5,-48.5
parent: 2
type: Transform
- - uid: 15396
+ - uid: 15395
components:
- pos: -50.5,-46.5
parent: 2
type: Transform
- - uid: 15397
+ - uid: 15396
components:
- pos: -50.5,-44.5
parent: 2
type: Transform
- - uid: 15398
+ - uid: 15397
components:
- pos: -50.5,-42.5
parent: 2
type: Transform
- - uid: 15399
+ - uid: 15398
components:
- rot: 3.141592653589793 rad
pos: -38.5,-60.5
parent: 2
type: Transform
- - uid: 15400
+ - uid: 15399
components:
- pos: 1.5,26.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15401
+ - uid: 15400
components:
- rot: 3.141592653589793 rad
pos: 70.5,32.5
parent: 2
type: Transform
- - uid: 15402
+ - uid: 15401
components:
- rot: 3.141592653589793 rad
pos: 3.5,64.5
@@ -96943,7 +96953,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15403
+ - uid: 15402
components:
- rot: 3.141592653589793 rad
pos: 2.5,63.5
@@ -96951,7 +96961,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15404
+ - uid: 15403
components:
- rot: 3.141592653589793 rad
pos: -5.5,63.5
@@ -96959,7 +96969,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15405
+ - uid: 15404
components:
- rot: 3.141592653589793 rad
pos: -6.5,64.5
@@ -96967,7 +96977,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15406
+ - uid: 15405
components:
- rot: 1.5707963267948966 rad
pos: -0.5,69.5
@@ -96975,7 +96985,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15407
+ - uid: 15406
components:
- rot: -1.5707963267948966 rad
pos: -2.5,69.5
@@ -96983,7 +96993,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15408
+ - uid: 15407
components:
- rot: 3.141592653589793 rad
pos: 66.5,-40.5
@@ -96991,27 +97001,27 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15409
+ - uid: 15408
components:
- pos: 72.5,-29.5
parent: 2
type: Transform
- color: '#999000FF'
type: AtmosPipeColor
- - uid: 15410
+ - uid: 15409
components:
- rot: 3.141592653589793 rad
pos: -55.5,-63.5
parent: 2
type: Transform
- - uid: 15411
+ - uid: 15410
components:
- pos: 71.5,-29.5
parent: 2
type: Transform
- color: '#9755CCFF'
type: AtmosPipeColor
- - uid: 15412
+ - uid: 15411
components:
- rot: 1.5707963267948966 rad
pos: 68.5,-38.5
@@ -97019,13 +97029,13 @@ entities:
type: Transform
- color: '#999000FF'
type: AtmosPipeColor
- - uid: 15413
+ - uid: 15412
components:
- rot: 3.141592653589793 rad
pos: 55.5,-51.5
parent: 2
type: Transform
- - uid: 15414
+ - uid: 15413
components:
- rot: 1.5707963267948966 rad
pos: 68.5,-37.5
@@ -97033,13 +97043,13 @@ entities:
type: Transform
- color: '#9755CCFF'
type: AtmosPipeColor
- - uid: 15415
+ - uid: 15414
components:
- rot: -1.5707963267948966 rad
pos: -44.5,-35.5
parent: 2
type: Transform
- - uid: 15416
+ - uid: 15415
components:
- rot: 1.5707963267948966 rad
pos: -76.5,-40.5
@@ -97047,7 +97057,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15417
+ - uid: 15416
components:
- rot: 1.5707963267948966 rad
pos: -76.5,-42.5
@@ -97055,7 +97065,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15418
+ - uid: 15417
components:
- rot: 3.141592653589793 rad
pos: 40.5,58.5
@@ -97065,6 +97075,12 @@ entities:
type: AtmosPipeColor
- proto: GasPipeBend
entities:
+ - uid: 15418
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 10.5,-47.5
+ parent: 2
+ type: Transform
- uid: 15419
components:
- rot: -1.5707963267948966 rad
@@ -99328,219 +99344,235 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
+ - uid: 15716
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 3.5,-46.5
+ parent: 2
+ type: Transform
+ - color: '#990000FF'
+ type: AtmosPipeColor
+ - uid: 15717
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 5.5,-47.5
+ parent: 2
+ type: Transform
+ - color: '#0055CCFF'
+ type: AtmosPipeColor
- proto: GasPipeFourway
entities:
- - uid: 15716
+ - uid: 15718
components:
- pos: 38.5,1.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15717
+ - uid: 15719
components:
- pos: 31.5,12.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15718
+ - uid: 15720
components:
- pos: 21.5,16.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15719
+ - uid: 15721
components:
- pos: 31.5,15.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15720
+ - uid: 15722
components:
- pos: 21.5,12.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15721
+ - uid: 15723
components:
- pos: 17.5,17.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15722
+ - uid: 15724
components:
- pos: 34.5,0.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15723
+ - uid: 15725
components:
- pos: -24.5,-60.5
parent: 2
type: Transform
- color: '#97C3FCCC'
type: AtmosPipeColor
- - uid: 15724
+ - uid: 15726
components:
- pos: -5.5,-27.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15725
+ - uid: 15727
components:
- pos: -33.5,20.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15726
+ - uid: 15728
components:
- pos: -3.5,-25.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15727
+ - uid: 15729
components:
- pos: 30.5,-18.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15728
+ - uid: 15730
components:
- pos: -32.5,23.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15729
+ - uid: 15731
components:
- pos: -18.5,29.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15730
+ - uid: 15732
components:
- pos: 49.5,20.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15731
+ - uid: 15733
components:
- pos: 50.5,21.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15732
+ - uid: 15734
components:
- pos: 42.5,1.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15733
+ - uid: 15735
components:
- pos: 44.5,-1.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15734
+ - uid: 15736
components:
- pos: 64.5,-34.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15735
+ - uid: 15737
components:
- pos: 29.5,-47.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15736
+ - uid: 15738
components:
- pos: -41.5,-11.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15737
+ - uid: 15739
components:
- pos: -42.5,-10.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15738
+ - uid: 15740
components:
- pos: -20.5,30.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15739
+ - uid: 15741
components:
- pos: -31.5,-34.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15740
+ - uid: 15742
components:
- pos: -32.5,-33.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15741
+ - uid: 15743
components:
- pos: -45.5,11.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15742
+ - uid: 15744
components:
- pos: -5.5,-14.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15743
+ - uid: 15745
components:
- pos: -16.5,43.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15744
+ - uid: 15746
components:
- pos: -15.5,44.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15745
+ - uid: 15747
components:
- pos: 68.5,-33.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15746
+ - uid: 15748
components:
- pos: -70.5,-42.5
parent: 2
@@ -99549,56 +99581,64 @@ entities:
type: AtmosPipeColor
- proto: GasPipeStraight
entities:
- - uid: 15747
+ - uid: 15749
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 8.5,-47.5
+ parent: 2
+ type: Transform
+ - color: '#0055CCFF'
+ type: AtmosPipeColor
+ - uid: 15750
components:
- pos: 39.5,53.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15748
+ - uid: 15751
components:
- pos: 39.5,54.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15749
+ - uid: 15752
components:
- pos: 22.5,-34.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15750
+ - uid: 15753
components:
- pos: 28.5,-35.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15751
+ - uid: 15754
components:
- pos: 28.5,-34.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15752
+ - uid: 15755
components:
- pos: 22.5,-35.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15753
+ - uid: 15756
components:
- pos: 2.5,-4.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15754
+ - uid: 15757
components:
- rot: 3.141592653589793 rad
pos: 1.5,-3.5
@@ -99606,7 +99646,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15755
+ - uid: 15758
components:
- rot: 1.5707963267948966 rad
pos: 1.5,-3.5
@@ -99614,21 +99654,21 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15756
+ - uid: 15759
components:
- pos: 2.5,-5.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15757
+ - uid: 15760
components:
- pos: 1.5,-4.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15758
+ - uid: 15761
components:
- rot: -1.5707963267948966 rad
pos: -49.5,-23.5
@@ -99636,21 +99676,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15759
+ - uid: 15762
components:
- pos: -47.5,-20.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15760
+ - uid: 15763
components:
- pos: -71.5,-43.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15761
+ - uid: 15764
components:
- rot: 1.5707963267948966 rad
pos: -73.5,-42.5
@@ -99658,7 +99698,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15762
+ - uid: 15765
components:
- rot: 1.5707963267948966 rad
pos: -67.5,-42.5
@@ -99666,7 +99706,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15763
+ - uid: 15766
components:
- rot: -1.5707963267948966 rad
pos: -69.5,-40.5
@@ -99674,14 +99714,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15764
+ - uid: 15767
components:
- pos: -72.5,-36.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15765
+ - uid: 15768
components:
- rot: 1.5707963267948966 rad
pos: -68.5,-42.5
@@ -99689,14 +99729,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15766
+ - uid: 15769
components:
- pos: -70.5,-40.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15767
+ - uid: 15770
components:
- rot: 3.141592653589793 rad
pos: -62.5,-40.5
@@ -99704,14 +99744,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15768
+ - uid: 15771
components:
- pos: -68.5,-41.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15769
+ - uid: 15772
components:
- rot: -1.5707963267948966 rad
pos: -65.5,-39.5
@@ -99719,7 +99759,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15770
+ - uid: 15773
components:
- rot: 1.5707963267948966 rad
pos: -69.5,-42.5
@@ -99727,126 +99767,126 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15771
+ - uid: 15774
components:
- pos: -68.5,-42.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15772
+ - uid: 15775
components:
- pos: -73.5,-27.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15773
+ - uid: 15776
components:
- pos: -71.5,-30.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15774
+ - uid: 15777
components:
- pos: -71.5,-28.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15775
+ - uid: 15778
components:
- pos: -73.5,-28.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15776
+ - uid: 15779
components:
- pos: -71.5,-26.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15777
+ - uid: 15780
components:
- pos: -73.5,-29.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15778
+ - uid: 15781
components:
- pos: -73.5,-30.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15779
+ - uid: 15782
components:
- pos: -73.5,-32.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15780
+ - uid: 15783
components:
- pos: -73.5,-33.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15781
+ - uid: 15784
components:
- pos: -73.5,-34.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15782
+ - uid: 15785
components:
- pos: -73.5,-35.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15783
+ - uid: 15786
components:
- pos: -73.5,-36.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15784
+ - uid: 15787
components:
- pos: -73.5,-37.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15785
+ - uid: 15788
components:
- pos: -72.5,-34.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15786
+ - uid: 15789
components:
- pos: -72.5,-35.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15787
+ - uid: 15790
components:
- pos: -72.5,-33.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15788
+ - uid: 15791
components:
- rot: 1.5707963267948966 rad
pos: -66.5,-42.5
@@ -99854,7 +99894,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15789
+ - uid: 15792
components:
- rot: 1.5707963267948966 rad
pos: -65.5,-42.5
@@ -99862,7 +99902,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15790
+ - uid: 15793
components:
- rot: 1.5707963267948966 rad
pos: -64.5,-42.5
@@ -99870,7 +99910,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15791
+ - uid: 15794
components:
- rot: 3.141592653589793 rad
pos: -62.5,-41.5
@@ -99878,41 +99918,41 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15792
+ - uid: 15795
components:
- rot: -1.5707963267948966 rad
pos: -74.5,-41.5
parent: 2
type: Transform
- - uid: 15793
+ - uid: 15796
components:
- pos: -73.5,-26.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15794
+ - uid: 15797
components:
- pos: -73.5,-25.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15795
+ - uid: 15798
components:
- pos: -71.5,-29.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15796
+ - uid: 15799
components:
- pos: -71.5,-27.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15797
+ - uid: 15800
components:
- rot: 3.141592653589793 rad
pos: -71.5,-45.5
@@ -99920,7 +99960,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15798
+ - uid: 15801
components:
- rot: 3.141592653589793 rad
pos: -71.5,-44.5
@@ -99928,7 +99968,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15799
+ - uid: 15802
components:
- rot: 3.141592653589793 rad
pos: -67.5,-45.5
@@ -99936,7 +99976,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15800
+ - uid: 15803
components:
- rot: 1.5707963267948966 rad
pos: -72.5,-23.5
@@ -99944,7 +99984,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15801
+ - uid: 15804
components:
- rot: -1.5707963267948966 rad
pos: -64.5,-39.5
@@ -99952,21 +99992,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15802
+ - uid: 15805
components:
- pos: -6.5,15.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15803
+ - uid: 15806
components:
- pos: -3.5,15.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15804
+ - uid: 15807
components:
- rot: 3.141592653589793 rad
pos: -3.5,13.5
@@ -99974,7 +100014,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15805
+ - uid: 15808
components:
- rot: 3.141592653589793 rad
pos: -3.5,12.5
@@ -99982,7 +100022,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15806
+ - uid: 15809
components:
- rot: 1.5707963267948966 rad
pos: -11.5,5.5
@@ -99990,7 +100030,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15807
+ - uid: 15810
components:
- rot: 3.141592653589793 rad
pos: 38.5,10.5
@@ -99998,7 +100038,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15808
+ - uid: 15811
components:
- rot: 3.141592653589793 rad
pos: 26.5,-26.5
@@ -100006,7 +100046,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15809
+ - uid: 15812
components:
- rot: 1.5707963267948966 rad
pos: 32.5,9.5
@@ -100014,14 +100054,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15810
+ - uid: 15813
components:
- pos: 28.5,-31.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15811
+ - uid: 15814
components:
- rot: 3.141592653589793 rad
pos: 42.5,10.5
@@ -100029,21 +100069,21 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15812
+ - uid: 15815
components:
- pos: -18.5,31.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15813
+ - uid: 15816
components:
- pos: 46.5,-25.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15814
+ - uid: 15817
components:
- rot: 3.141592653589793 rad
pos: 34.5,-36.5
@@ -100051,14 +100091,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15815
+ - uid: 15818
components:
- pos: 46.5,-24.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15816
+ - uid: 15819
components:
- rot: -1.5707963267948966 rad
pos: 24.5,-42.5
@@ -100066,14 +100106,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15817
+ - uid: 15820
components:
- pos: 34.5,-21.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15818
+ - uid: 15821
components:
- rot: 3.141592653589793 rad
pos: -9.5,-40.5
@@ -100081,7 +100121,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15819
+ - uid: 15822
components:
- rot: 3.141592653589793 rad
pos: -5.5,-34.5
@@ -100089,7 +100129,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15820
+ - uid: 15823
components:
- rot: -1.5707963267948966 rad
pos: -12.5,-41.5
@@ -100097,7 +100137,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15821
+ - uid: 15824
components:
- rot: 3.141592653589793 rad
pos: -14.5,-42.5
@@ -100105,7 +100145,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15822
+ - uid: 15825
components:
- rot: 3.141592653589793 rad
pos: -14.5,-44.5
@@ -100113,7 +100153,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15823
+ - uid: 15826
components:
- rot: 1.5707963267948966 rad
pos: -14.5,-60.5
@@ -100121,7 +100161,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15824
+ - uid: 15827
components:
- rot: 3.141592653589793 rad
pos: -12.5,-44.5
@@ -100129,7 +100169,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15825
+ - uid: 15828
components:
- rot: 1.5707963267948966 rad
pos: -10.5,-42.5
@@ -100137,42 +100177,42 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15826
+ - uid: 15829
components:
- pos: -7.5,-48.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15827
+ - uid: 15830
components:
- pos: -7.5,-47.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15828
+ - uid: 15831
components:
- pos: -0.5,-45.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15829
+ - uid: 15832
components:
- pos: -0.5,-44.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15830
+ - uid: 15833
components:
- pos: -0.5,-43.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15831
+ - uid: 15834
components:
- rot: -1.5707963267948966 rad
pos: 1.5,-41.5
@@ -100180,14 +100220,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15832
+ - uid: 15835
components:
- pos: -8.5,-45.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15833
+ - uid: 15836
components:
- rot: 3.141592653589793 rad
pos: 3.5,-44.5
@@ -100195,14 +100235,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15834
+ - uid: 15837
components:
- pos: -12.5,-61.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15835
+ - uid: 15838
components:
- rot: 3.141592653589793 rad
pos: -7.5,-62.5
@@ -100210,7 +100250,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15836
+ - uid: 15839
components:
- rot: -1.5707963267948966 rad
pos: -4.5,-59.5
@@ -100218,7 +100258,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15837
+ - uid: 15840
components:
- rot: -1.5707963267948966 rad
pos: -6.5,-59.5
@@ -100226,7 +100266,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15838
+ - uid: 15841
components:
- rot: -1.5707963267948966 rad
pos: 27.5,-6.5
@@ -100234,7 +100274,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15839
+ - uid: 15842
components:
- rot: -1.5707963267948966 rad
pos: 29.5,-6.5
@@ -100242,7 +100282,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15840
+ - uid: 15843
components:
- rot: 3.141592653589793 rad
pos: 40.5,6.5
@@ -100250,49 +100290,49 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15841
+ - uid: 15844
components:
- pos: 46.5,-26.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15842
+ - uid: 15845
components:
- pos: 46.5,-27.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15843
+ - uid: 15846
components:
- pos: 46.5,-28.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15844
+ - uid: 15847
components:
- pos: 46.5,-29.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15845
+ - uid: 15848
components:
- pos: 8.5,11.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15846
+ - uid: 15849
components:
- pos: 8.5,7.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15847
+ - uid: 15850
components:
- rot: -1.5707963267948966 rad
pos: -12.5,-38.5
@@ -100300,7 +100340,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15848
+ - uid: 15851
components:
- rot: 3.141592653589793 rad
pos: 34.5,-32.5
@@ -100308,7 +100348,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15849
+ - uid: 15852
components:
- rot: 1.5707963267948966 rad
pos: 9.5,17.5
@@ -100316,7 +100356,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15850
+ - uid: 15853
components:
- rot: 1.5707963267948966 rad
pos: 6.5,8.5
@@ -100324,7 +100364,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15851
+ - uid: 15854
components:
- rot: -1.5707963267948966 rad
pos: 45.5,-23.5
@@ -100332,14 +100372,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15852
+ - uid: 15855
components:
- pos: 30.5,-21.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15853
+ - uid: 15856
components:
- rot: 3.141592653589793 rad
pos: 34.5,-35.5
@@ -100347,7 +100387,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15854
+ - uid: 15857
components:
- rot: 3.141592653589793 rad
pos: -5.5,-35.5
@@ -100355,7 +100395,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15855
+ - uid: 15858
components:
- rot: -1.5707963267948966 rad
pos: 20.5,21.5
@@ -100363,7 +100403,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15856
+ - uid: 15859
components:
- rot: 1.5707963267948966 rad
pos: 23.5,21.5
@@ -100371,7 +100411,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15857
+ - uid: 15860
components:
- rot: 1.5707963267948966 rad
pos: 24.5,21.5
@@ -100379,7 +100419,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15858
+ - uid: 15861
components:
- rot: 1.5707963267948966 rad
pos: 25.5,21.5
@@ -100387,7 +100427,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15859
+ - uid: 15862
components:
- rot: 1.5707963267948966 rad
pos: 28.5,21.5
@@ -100395,21 +100435,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15860
+ - uid: 15863
components:
- pos: 29.5,20.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15861
+ - uid: 15864
components:
- pos: 29.5,19.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15862
+ - uid: 15865
components:
- rot: 3.141592653589793 rad
pos: 30.5,17.5
@@ -100417,14 +100457,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15863
+ - uid: 15866
components:
- pos: 24.5,-25.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15864
+ - uid: 15867
components:
- rot: -1.5707963267948966 rad
pos: 2.5,-61.5
@@ -100432,7 +100472,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15865
+ - uid: 15868
components:
- rot: 1.5707963267948966 rad
pos: 4.5,-61.5
@@ -100440,7 +100480,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15866
+ - uid: 15869
components:
- rot: -1.5707963267948966 rad
pos: -7.5,-61.5
@@ -100448,14 +100488,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15867
+ - uid: 15870
components:
- pos: -8.5,-62.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15868
+ - uid: 15871
components:
- rot: 3.141592653589793 rad
pos: -0.5,-63.5
@@ -100463,7 +100503,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15869
+ - uid: 15872
components:
- rot: 1.5707963267948966 rad
pos: -2.5,-60.5
@@ -100471,7 +100511,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15870
+ - uid: 15873
components:
- rot: -1.5707963267948966 rad
pos: 5.5,-60.5
@@ -100479,7 +100519,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15871
+ - uid: 15874
components:
- rot: -1.5707963267948966 rad
pos: 6.5,-60.5
@@ -100487,7 +100527,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15872
+ - uid: 15875
components:
- rot: -1.5707963267948966 rad
pos: 7.5,-60.5
@@ -100495,7 +100535,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15873
+ - uid: 15876
components:
- rot: -1.5707963267948966 rad
pos: 8.5,-60.5
@@ -100503,7 +100543,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15874
+ - uid: 15877
components:
- rot: -1.5707963267948966 rad
pos: 5.5,-61.5
@@ -100511,7 +100551,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15875
+ - uid: 15878
components:
- rot: -1.5707963267948966 rad
pos: 7.5,-61.5
@@ -100519,7 +100559,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15876
+ - uid: 15879
components:
- rot: -1.5707963267948966 rad
pos: 8.5,-61.5
@@ -100527,7 +100567,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15877
+ - uid: 15880
components:
- rot: 3.141592653589793 rad
pos: -5.5,-28.5
@@ -100535,14 +100575,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15878
+ - uid: 15881
components:
- pos: -3.5,-35.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15879
+ - uid: 15882
components:
- rot: -1.5707963267948966 rad
pos: 28.5,-43.5
@@ -100550,7 +100590,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15880
+ - uid: 15883
components:
- rot: 1.5707963267948966 rad
pos: -36.5,20.5
@@ -100558,35 +100598,35 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15881
+ - uid: 15884
components:
- pos: -20.5,-83.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15882
+ - uid: 15885
components:
- pos: -20.5,-74.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15883
+ - uid: 15886
components:
- pos: -25.5,-75.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15884
+ - uid: 15887
components:
- pos: -25.5,-73.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15885
+ - uid: 15888
components:
- rot: 1.5707963267948966 rad
pos: -24.5,-72.5
@@ -100594,14 +100634,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15886
+ - uid: 15889
components:
- pos: 35.5,6.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15887
+ - uid: 15890
components:
- rot: 1.5707963267948966 rad
pos: 33.5,9.5
@@ -100609,7 +100649,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15888
+ - uid: 15891
components:
- rot: 1.5707963267948966 rad
pos: -25.5,-80.5
@@ -100617,7 +100657,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15889
+ - uid: 15892
components:
- rot: 3.141592653589793 rad
pos: 5.5,13.5
@@ -100625,28 +100665,28 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15890
+ - uid: 15893
components:
- pos: -3.5,-29.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15891
+ - uid: 15894
components:
- pos: -3.5,-28.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15892
+ - uid: 15895
components:
- pos: -3.5,-26.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15893
+ - uid: 15896
components:
- rot: 1.5707963267948966 rad
pos: -5.5,-25.5
@@ -100654,7 +100694,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15894
+ - uid: 15897
components:
- rot: 3.141592653589793 rad
pos: -11.5,-26.5
@@ -100662,7 +100702,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15895
+ - uid: 15898
components:
- rot: 1.5707963267948966 rad
pos: -6.5,-27.5
@@ -100670,7 +100710,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15896
+ - uid: 15899
components:
- rot: 1.5707963267948966 rad
pos: 0.5,-25.5
@@ -100678,14 +100718,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15897
+ - uid: 15900
components:
- pos: 3.5,-28.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15898
+ - uid: 15901
components:
- rot: 1.5707963267948966 rad
pos: 3.5,-25.5
@@ -100693,7 +100733,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15899
+ - uid: 15902
components:
- rot: 1.5707963267948966 rad
pos: 1.5,-25.5
@@ -100701,7 +100741,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15900
+ - uid: 15903
components:
- rot: 3.141592653589793 rad
pos: -5.5,-36.5
@@ -100709,7 +100749,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15901
+ - uid: 15904
components:
- rot: 3.141592653589793 rad
pos: -5.5,-37.5
@@ -100717,7 +100757,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15902
+ - uid: 15905
components:
- rot: 3.141592653589793 rad
pos: -5.5,-38.5
@@ -100725,7 +100765,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15903
+ - uid: 15906
components:
- rot: 3.141592653589793 rad
pos: -5.5,-39.5
@@ -100733,7 +100773,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15904
+ - uid: 15907
components:
- rot: 3.141592653589793 rad
pos: -5.5,-40.5
@@ -100741,7 +100781,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15905
+ - uid: 15908
components:
- rot: 1.5707963267948966 rad
pos: 9.5,-27.5
@@ -100749,7 +100789,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15906
+ - uid: 15909
components:
- rot: 3.141592653589793 rad
pos: 14.5,-28.5
@@ -100757,7 +100797,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15907
+ - uid: 15910
components:
- rot: 1.5707963267948966 rad
pos: 13.5,-27.5
@@ -100765,7 +100805,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15908
+ - uid: 15911
components:
- rot: 1.5707963267948966 rad
pos: 13.5,-25.5
@@ -100773,7 +100813,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15909
+ - uid: 15912
components:
- rot: 3.141592653589793 rad
pos: 14.5,-35.5
@@ -100781,14 +100821,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15910
+ - uid: 15913
components:
- pos: 15.5,-37.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15911
+ - uid: 15914
components:
- rot: 1.5707963267948966 rad
pos: 22.5,-43.5
@@ -100796,7 +100836,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15912
+ - uid: 15915
components:
- rot: 1.5707963267948966 rad
pos: 12.5,-25.5
@@ -100804,7 +100844,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15913
+ - uid: 15916
components:
- rot: 1.5707963267948966 rad
pos: 21.5,-43.5
@@ -100812,7 +100852,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15914
+ - uid: 15917
components:
- rot: 1.5707963267948966 rad
pos: 30.5,-43.5
@@ -100820,21 +100860,21 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15915
+ - uid: 15918
components:
- pos: 20.5,-21.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15916
+ - uid: 15919
components:
- pos: 20.5,-19.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15917
+ - uid: 15920
components:
- rot: -1.5707963267948966 rad
pos: 23.5,-12.5
@@ -100842,7 +100882,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15918
+ - uid: 15921
components:
- rot: -1.5707963267948966 rad
pos: 25.5,-12.5
@@ -100850,7 +100890,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15919
+ - uid: 15922
components:
- rot: 1.5707963267948966 rad
pos: 4.5,19.5
@@ -100858,7 +100898,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15920
+ - uid: 15923
components:
- rot: -1.5707963267948966 rad
pos: 21.5,21.5
@@ -100866,14 +100906,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15921
+ - uid: 15924
components:
- pos: 19.5,20.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15922
+ - uid: 15925
components:
- rot: -1.5707963267948966 rad
pos: 35.5,12.5
@@ -100881,7 +100921,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15923
+ - uid: 15926
components:
- rot: 1.5707963267948966 rad
pos: 16.5,-43.5
@@ -100889,7 +100929,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15924
+ - uid: 15927
components:
- rot: 1.5707963267948966 rad
pos: 18.5,-43.5
@@ -100897,14 +100937,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15925
+ - uid: 15928
components:
- pos: 0.5,15.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15926
+ - uid: 15929
components:
- rot: 3.141592653589793 rad
pos: 40.5,4.5
@@ -100912,7 +100952,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15927
+ - uid: 15930
components:
- rot: 3.141592653589793 rad
pos: 42.5,8.5
@@ -100920,7 +100960,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15928
+ - uid: 15931
components:
- rot: 1.5707963267948966 rad
pos: 16.5,-41.5
@@ -100928,7 +100968,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15929
+ - uid: 15932
components:
- rot: 1.5707963267948966 rad
pos: 18.5,-41.5
@@ -100936,14 +100976,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15930
+ - uid: 15933
components:
- pos: -3.5,-40.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15931
+ - uid: 15934
components:
- rot: 3.141592653589793 rad
pos: 29.5,16.5
@@ -100951,7 +100991,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15932
+ - uid: 15935
components:
- rot: 1.5707963267948966 rad
pos: 27.5,17.5
@@ -100959,7 +100999,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15933
+ - uid: 15936
components:
- rot: 1.5707963267948966 rad
pos: 10.5,-25.5
@@ -100967,7 +101007,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15934
+ - uid: 15937
components:
- rot: -1.5707963267948966 rad
pos: 13.5,17.5
@@ -100975,7 +101015,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15935
+ - uid: 15938
components:
- rot: 1.5707963267948966 rad
pos: 1.5,17.5
@@ -100983,14 +101023,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15936
+ - uid: 15939
components:
- pos: 0.5,16.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15937
+ - uid: 15940
components:
- rot: 1.5707963267948966 rad
pos: -2.5,13.5
@@ -100998,7 +101038,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15938
+ - uid: 15941
components:
- rot: -1.5707963267948966 rad
pos: -5.5,14.5
@@ -101006,77 +101046,77 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15939
+ - uid: 15942
components:
- pos: -6.5,13.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15940
+ - uid: 15943
components:
- pos: -6.5,11.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15941
+ - uid: 15944
components:
- pos: -6.5,10.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15942
+ - uid: 15945
components:
- pos: -8.5,4.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15943
+ - uid: 15946
components:
- pos: 3.5,-29.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15944
+ - uid: 15947
components:
- pos: 15.5,-40.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15945
+ - uid: 15948
components:
- pos: 15.5,-32.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15946
+ - uid: 15949
components:
- pos: 15.5,-24.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15947
+ - uid: 15950
components:
- pos: -23.5,-77.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15948
+ - uid: 15951
components:
- pos: 17.5,18.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15949
+ - uid: 15952
components:
- rot: 1.5707963267948966 rad
pos: 9.5,8.5
@@ -101084,7 +101124,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15950
+ - uid: 15953
components:
- rot: 1.5707963267948966 rad
pos: 0.5,-1.5
@@ -101092,49 +101132,49 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15951
+ - uid: 15954
components:
- pos: -18.5,32.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15952
+ - uid: 15955
components:
- pos: -20.5,28.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15953
+ - uid: 15956
components:
- pos: 34.5,-24.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15954
+ - uid: 15957
components:
- pos: 31.5,-42.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15955
+ - uid: 15958
components:
- pos: 24.5,-27.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15956
+ - uid: 15959
components:
- pos: 36.5,-26.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15957
+ - uid: 15960
components:
- rot: -1.5707963267948966 rad
pos: 28.5,-18.5
@@ -101142,14 +101182,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15958
+ - uid: 15961
components:
- pos: 47.5,-24.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15959
+ - uid: 15962
components:
- rot: 3.141592653589793 rad
pos: 34.5,-38.5
@@ -101157,21 +101197,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15960
+ - uid: 15963
components:
- pos: 21.5,15.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15961
+ - uid: 15964
components:
- pos: 8.5,8.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15962
+ - uid: 15965
components:
- rot: 1.5707963267948966 rad
pos: 29.5,-22.5
@@ -101179,7 +101219,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15963
+ - uid: 15966
components:
- rot: 3.141592653589793 rad
pos: 38.5,6.5
@@ -101187,28 +101227,28 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15964
+ - uid: 15967
components:
- pos: -20.5,31.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15965
+ - uid: 15968
components:
- pos: 8.5,9.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15966
+ - uid: 15969
components:
- pos: -18.5,30.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15967
+ - uid: 15970
components:
- rot: 1.5707963267948966 rad
pos: -4.5,-1.5
@@ -101216,7 +101256,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15968
+ - uid: 15971
components:
- rot: 3.141592653589793 rad
pos: -5.5,-32.5
@@ -101224,7 +101264,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15969
+ - uid: 15972
components:
- rot: -1.5707963267948966 rad
pos: 6.5,-41.5
@@ -101232,56 +101272,56 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15970
+ - uid: 15973
components:
- pos: 15.5,-30.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15971
+ - uid: 15974
components:
- pos: -3.5,-13.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15972
+ - uid: 15975
components:
- pos: -3.5,-9.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15973
+ - uid: 15976
components:
- pos: -3.5,-8.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15974
+ - uid: 15977
components:
- pos: -3.5,-7.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15975
+ - uid: 15978
components:
- pos: -3.5,-5.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15976
+ - uid: 15979
components:
- pos: -5.5,-7.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15977
+ - uid: 15980
components:
- rot: -1.5707963267948966 rad
pos: 24.5,10.5
@@ -101289,7 +101329,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15978
+ - uid: 15981
components:
- rot: 1.5707963267948966 rad
pos: 17.5,-29.5
@@ -101297,7 +101337,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15979
+ - uid: 15982
components:
- rot: 1.5707963267948966 rad
pos: 18.5,-29.5
@@ -101305,7 +101345,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15980
+ - uid: 15983
components:
- rot: -1.5707963267948966 rad
pos: 20.5,-29.5
@@ -101313,7 +101353,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15981
+ - uid: 15984
components:
- rot: -1.5707963267948966 rad
pos: 22.5,-29.5
@@ -101321,7 +101361,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15982
+ - uid: 15985
components:
- rot: 1.5707963267948966 rad
pos: -15.5,-42.5
@@ -101329,7 +101369,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15983
+ - uid: 15986
components:
- rot: 1.5707963267948966 rad
pos: -14.5,-42.5
@@ -101337,7 +101377,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15984
+ - uid: 15987
components:
- rot: 3.141592653589793 rad
pos: -14.5,-45.5
@@ -101345,7 +101385,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15985
+ - uid: 15988
components:
- rot: 3.141592653589793 rad
pos: -17.5,-58.5
@@ -101353,7 +101393,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15986
+ - uid: 15989
components:
- rot: 3.141592653589793 rad
pos: -17.5,-59.5
@@ -101361,7 +101401,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15987
+ - uid: 15990
components:
- rot: 1.5707963267948966 rad
pos: -16.5,-60.5
@@ -101369,7 +101409,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15988
+ - uid: 15991
components:
- rot: 1.5707963267948966 rad
pos: -15.5,-60.5
@@ -101377,7 +101417,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15989
+ - uid: 15992
components:
- rot: 3.141592653589793 rad
pos: -12.5,-46.5
@@ -101385,7 +101425,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15990
+ - uid: 15993
components:
- rot: 3.141592653589793 rad
pos: -12.5,-43.5
@@ -101393,7 +101433,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15991
+ - uid: 15994
components:
- rot: 1.5707963267948966 rad
pos: -13.5,-42.5
@@ -101401,7 +101441,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15992
+ - uid: 15995
components:
- rot: 1.5707963267948966 rad
pos: -11.5,-42.5
@@ -101409,42 +101449,42 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15993
+ - uid: 15996
components:
- pos: -9.5,-59.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15994
+ - uid: 15997
components:
- pos: -9.5,-58.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15995
+ - uid: 15998
components:
- pos: -9.5,-57.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15996
+ - uid: 15999
components:
- pos: -9.5,-56.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15997
+ - uid: 16000
components:
- pos: -9.5,-55.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15998
+ - uid: 16001
components:
- rot: 3.141592653589793 rad
pos: -1.5,-52.5
@@ -101452,42 +101492,42 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15999
+ - uid: 16002
components:
- pos: -7.5,-52.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16000
+ - uid: 16003
components:
- pos: -7.5,-51.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16001
+ - uid: 16004
components:
- pos: -7.5,-50.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16002
+ - uid: 16005
components:
- pos: -7.5,-49.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16003
+ - uid: 16006
components:
- pos: -0.5,-42.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16004
+ - uid: 16007
components:
- rot: -1.5707963267948966 rad
pos: 0.5,-41.5
@@ -101495,7 +101535,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16005
+ - uid: 16008
components:
- rot: -1.5707963267948966 rad
pos: 2.5,-41.5
@@ -101503,21 +101543,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16006
+ - uid: 16009
components:
- pos: -8.5,-44.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16007
+ - uid: 16010
components:
- pos: -8.5,-43.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16008
+ - uid: 16011
components:
- rot: 3.141592653589793 rad
pos: 5.5,-43.5
@@ -101525,7 +101565,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16009
+ - uid: 16012
components:
- rot: -1.5707963267948966 rad
pos: -9.5,-60.5
@@ -101533,7 +101573,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16010
+ - uid: 16013
components:
- rot: -1.5707963267948966 rad
pos: -8.5,-60.5
@@ -101541,14 +101581,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16011
+ - uid: 16014
components:
- pos: -6.5,-64.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16012
+ - uid: 16015
components:
- rot: 3.141592653589793 rad
pos: -7.5,-61.5
@@ -101556,7 +101596,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16013
+ - uid: 16016
components:
- rot: -1.5707963267948966 rad
pos: -5.5,-59.5
@@ -101564,14 +101604,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16014
+ - uid: 16017
components:
- pos: 34.5,1.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16015
+ - uid: 16018
components:
- rot: 1.5707963267948966 rad
pos: 29.5,9.5
@@ -101579,7 +101619,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16016
+ - uid: 16019
components:
- rot: 1.5707963267948966 rad
pos: 37.5,0.5
@@ -101587,7 +101627,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16017
+ - uid: 16020
components:
- rot: 1.5707963267948966 rad
pos: 7.5,8.5
@@ -101595,14 +101635,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16018
+ - uid: 16021
components:
- pos: 17.5,-3.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16019
+ - uid: 16022
components:
- rot: -1.5707963267948966 rad
pos: 11.5,-0.5
@@ -101610,7 +101650,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16020
+ - uid: 16023
components:
- rot: -1.5707963267948966 rad
pos: 15.5,-0.5
@@ -101618,7 +101658,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16021
+ - uid: 16024
components:
- rot: -1.5707963267948966 rad
pos: 38.5,15.5
@@ -101626,7 +101666,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16022
+ - uid: 16025
components:
- rot: -1.5707963267948966 rad
pos: 36.5,15.5
@@ -101634,7 +101674,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16023
+ - uid: 16026
components:
- rot: -1.5707963267948966 rad
pos: 34.5,1.5
@@ -101642,7 +101682,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16024
+ - uid: 16027
components:
- rot: -1.5707963267948966 rad
pos: 30.5,1.5
@@ -101650,7 +101690,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16025
+ - uid: 16028
components:
- rot: -1.5707963267948966 rad
pos: 31.5,1.5
@@ -101658,7 +101698,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16026
+ - uid: 16029
components:
- rot: -1.5707963267948966 rad
pos: 32.5,1.5
@@ -101666,7 +101706,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16027
+ - uid: 16030
components:
- rot: -1.5707963267948966 rad
pos: 36.5,1.5
@@ -101674,14 +101714,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16028
+ - uid: 16031
components:
- pos: 42.5,14.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16029
+ - uid: 16032
components:
- rot: 1.5707963267948966 rad
pos: 22.5,16.5
@@ -101689,7 +101729,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16030
+ - uid: 16033
components:
- rot: 1.5707963267948966 rad
pos: 24.5,17.5
@@ -101697,7 +101737,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16031
+ - uid: 16034
components:
- rot: 1.5707963267948966 rad
pos: 25.5,17.5
@@ -101705,7 +101745,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16032
+ - uid: 16035
components:
- rot: 1.5707963267948966 rad
pos: 26.5,17.5
@@ -101713,35 +101753,35 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16033
+ - uid: 16036
components:
- pos: 38.5,2.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16034
+ - uid: 16037
components:
- pos: 38.5,4.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16035
+ - uid: 16038
components:
- pos: 25.5,10.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16036
+ - uid: 16039
components:
- pos: 25.5,11.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16037
+ - uid: 16040
components:
- rot: 1.5707963267948966 rad
pos: 26.5,12.5
@@ -101749,14 +101789,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16038
+ - uid: 16041
components:
- pos: 21.5,11.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16039
+ - uid: 16042
components:
- rot: 1.5707963267948966 rad
pos: 27.5,9.5
@@ -101764,7 +101804,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16040
+ - uid: 16043
components:
- rot: 1.5707963267948966 rad
pos: -6.5,-1.5
@@ -101772,21 +101812,21 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16041
+ - uid: 16044
components:
- pos: -5.5,0.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16042
+ - uid: 16045
components:
- pos: -5.5,-17.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16043
+ - uid: 16046
components:
- rot: -1.5707963267948966 rad
pos: 29.5,-42.5
@@ -101794,7 +101834,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16044
+ - uid: 16047
components:
- rot: 3.141592653589793 rad
pos: 17.5,-2.5
@@ -101802,7 +101842,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16045
+ - uid: 16048
components:
- rot: 3.141592653589793 rad
pos: 38.5,9.5
@@ -101810,7 +101850,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16046
+ - uid: 16049
components:
- rot: -1.5707963267948966 rad
pos: 7.5,12.5
@@ -101818,7 +101858,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16047
+ - uid: 16050
components:
- rot: 3.141592653589793 rad
pos: -3.5,-56.5
@@ -101826,7 +101866,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16048
+ - uid: 16051
components:
- rot: 3.141592653589793 rad
pos: -3.5,-57.5
@@ -101834,7 +101874,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16049
+ - uid: 16052
components:
- rot: 3.141592653589793 rad
pos: -1.5,-47.5
@@ -101842,42 +101882,42 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16050
+ - uid: 16053
components:
- pos: 15.5,-21.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16051
+ - uid: 16054
components:
- pos: -3.5,-23.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16052
+ - uid: 16055
components:
- pos: -3.5,-24.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16053
+ - uid: 16056
components:
- pos: -3.5,-22.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16054
+ - uid: 16057
components:
- pos: -3.5,-18.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16055
+ - uid: 16058
components:
- rot: 1.5707963267948966 rad
pos: 10.5,-27.5
@@ -101885,7 +101925,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16056
+ - uid: 16059
components:
- rot: -1.5707963267948966 rad
pos: 7.5,-27.5
@@ -101893,7 +101933,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16057
+ - uid: 16060
components:
- rot: 1.5707963267948966 rad
pos: 6.5,-27.5
@@ -101901,7 +101941,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16058
+ - uid: 16061
components:
- rot: 1.5707963267948966 rad
pos: 11.5,-25.5
@@ -101909,14 +101949,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16059
+ - uid: 16062
components:
- pos: -20.5,29.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16060
+ - uid: 16063
components:
- rot: -1.5707963267948966 rad
pos: 19.5,-43.5
@@ -101924,7 +101964,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16061
+ - uid: 16064
components:
- rot: 1.5707963267948966 rad
pos: 26.5,-16.5
@@ -101932,7 +101972,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16062
+ - uid: 16065
components:
- rot: 1.5707963267948966 rad
pos: 32.5,-16.5
@@ -101940,7 +101980,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16063
+ - uid: 16066
components:
- rot: 1.5707963267948966 rad
pos: -6.5,1.5
@@ -101948,7 +101988,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16064
+ - uid: 16067
components:
- rot: 1.5707963267948966 rad
pos: -7.5,1.5
@@ -101956,21 +101996,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16065
+ - uid: 16068
components:
- pos: -8.5,5.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16066
+ - uid: 16069
components:
- pos: -8.5,6.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16067
+ - uid: 16070
components:
- rot: 1.5707963267948966 rad
pos: 11.5,17.5
@@ -101978,7 +102018,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16068
+ - uid: 16071
components:
- rot: -1.5707963267948966 rad
pos: 23.5,10.5
@@ -101986,14 +102026,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16069
+ - uid: 16072
components:
- pos: -23.5,-82.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16070
+ - uid: 16073
components:
- rot: 1.5707963267948966 rad
pos: 30.5,-16.5
@@ -102001,7 +102041,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16071
+ - uid: 16074
components:
- rot: 3.141592653589793 rad
pos: 8.5,1.5
@@ -102009,7 +102049,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16072
+ - uid: 16075
components:
- rot: 3.141592653589793 rad
pos: 30.5,-19.5
@@ -102017,14 +102057,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16073
+ - uid: 16076
components:
- pos: -5.5,-23.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16074
+ - uid: 16077
components:
- rot: -1.5707963267948966 rad
pos: 4.5,-42.5
@@ -102032,7 +102072,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16075
+ - uid: 16078
components:
- rot: 1.5707963267948966 rad
pos: -10.5,-27.5
@@ -102040,7 +102080,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16076
+ - uid: 16079
components:
- rot: 1.5707963267948966 rad
pos: -6.5,-25.5
@@ -102048,7 +102088,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16077
+ - uid: 16080
components:
- rot: 1.5707963267948966 rad
pos: -4.5,-25.5
@@ -102056,7 +102096,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16078
+ - uid: 16081
components:
- rot: -1.5707963267948966 rad
pos: 29.5,-18.5
@@ -102064,7 +102104,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16079
+ - uid: 16082
components:
- rot: -1.5707963267948966 rad
pos: 27.5,-18.5
@@ -102072,7 +102112,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16080
+ - uid: 16083
components:
- rot: 1.5707963267948966 rad
pos: 28.5,-16.5
@@ -102080,7 +102120,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16081
+ - uid: 16084
components:
- rot: 1.5707963267948966 rad
pos: 25.5,-16.5
@@ -102088,7 +102128,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16082
+ - uid: 16085
components:
- rot: 3.141592653589793 rad
pos: 14.5,-29.5
@@ -102096,7 +102136,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16083
+ - uid: 16086
components:
- rot: 1.5707963267948966 rad
pos: 8.5,-27.5
@@ -102104,7 +102144,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16084
+ - uid: 16087
components:
- rot: 1.5707963267948966 rad
pos: 11.5,-27.5
@@ -102112,14 +102152,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16085
+ - uid: 16088
components:
- pos: -3.5,-21.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16086
+ - uid: 16089
components:
- rot: 3.141592653589793 rad
pos: 36.5,-29.5
@@ -102127,14 +102167,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16087
+ - uid: 16090
components:
- pos: 47.5,-25.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16088
+ - uid: 16091
components:
- rot: -1.5707963267948966 rad
pos: 9.5,16.5
@@ -102142,7 +102182,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16089
+ - uid: 16092
components:
- rot: -1.5707963267948966 rad
pos: 13.5,16.5
@@ -102150,7 +102190,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16090
+ - uid: 16093
components:
- rot: -1.5707963267948966 rad
pos: 35.5,1.5
@@ -102158,7 +102198,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16091
+ - uid: 16094
components:
- rot: -1.5707963267948966 rad
pos: 29.5,1.5
@@ -102166,7 +102206,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16092
+ - uid: 16095
components:
- rot: -1.5707963267948966 rad
pos: 34.5,15.5
@@ -102174,7 +102214,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16093
+ - uid: 16096
components:
- rot: -1.5707963267948966 rad
pos: 32.5,15.5
@@ -102182,7 +102222,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16094
+ - uid: 16097
components:
- rot: -1.5707963267948966 rad
pos: 41.5,15.5
@@ -102190,7 +102230,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16095
+ - uid: 16098
components:
- rot: -1.5707963267948966 rad
pos: 13.5,-0.5
@@ -102198,7 +102238,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16096
+ - uid: 16099
components:
- rot: -1.5707963267948966 rad
pos: 30.5,-42.5
@@ -102206,7 +102246,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16097
+ - uid: 16100
components:
- rot: -1.5707963267948966 rad
pos: -7.5,-42.5
@@ -102214,7 +102254,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16098
+ - uid: 16101
components:
- rot: 1.5707963267948966 rad
pos: -5.5,-42.5
@@ -102222,7 +102262,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16099
+ - uid: 16102
components:
- rot: -1.5707963267948966 rad
pos: 2.5,-42.5
@@ -102230,7 +102270,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16100
+ - uid: 16103
components:
- rot: 3.141592653589793 rad
pos: 14.5,-33.5
@@ -102238,7 +102278,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16101
+ - uid: 16104
components:
- rot: -1.5707963267948966 rad
pos: 10.5,-42.5
@@ -102246,7 +102286,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16102
+ - uid: 16105
components:
- rot: 3.141592653589793 rad
pos: -5.5,-33.5
@@ -102254,7 +102294,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16103
+ - uid: 16106
components:
- rot: 3.141592653589793 rad
pos: -5.5,-31.5
@@ -102262,7 +102302,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16104
+ - uid: 16107
components:
- rot: 3.141592653589793 rad
pos: -5.5,-29.5
@@ -102270,7 +102310,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16105
+ - uid: 16108
components:
- rot: 1.5707963267948966 rad
pos: 19.5,-5.5
@@ -102278,14 +102318,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16106
+ - uid: 16109
components:
- pos: 10.5,7.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16107
+ - uid: 16110
components:
- rot: 3.141592653589793 rad
pos: 42.5,7.5
@@ -102293,7 +102333,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16108
+ - uid: 16111
components:
- rot: 3.141592653589793 rad
pos: 8.5,4.5
@@ -102301,7 +102341,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16109
+ - uid: 16112
components:
- rot: 3.141592653589793 rad
pos: 38.5,7.5
@@ -102309,35 +102349,35 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16110
+ - uid: 16113
components:
- pos: 34.5,-25.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16111
+ - uid: 16114
components:
- pos: 10.5,18.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16112
+ - uid: 16115
components:
- pos: -5.5,-26.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16113
+ - uid: 16116
components:
- pos: -9.5,-4.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16114
+ - uid: 16117
components:
- rot: -1.5707963267948966 rad
pos: 6.5,-61.5
@@ -102345,21 +102385,21 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16115
+ - uid: 16118
components:
- pos: 0.5,14.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16116
+ - uid: 16119
components:
- pos: 34.5,4.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16117
+ - uid: 16120
components:
- rot: 3.141592653589793 rad
pos: 28.5,-32.5
@@ -102367,7 +102407,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16118
+ - uid: 16121
components:
- rot: 1.5707963267948966 rad
pos: 15.5,-30.5
@@ -102375,7 +102415,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16119
+ - uid: 16122
components:
- rot: 1.5707963267948966 rad
pos: 17.5,-30.5
@@ -102383,7 +102423,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16120
+ - uid: 16123
components:
- rot: -1.5707963267948966 rad
pos: 14.5,16.5
@@ -102391,7 +102431,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16121
+ - uid: 16124
components:
- rot: -1.5707963267948966 rad
pos: 10.5,16.5
@@ -102399,7 +102439,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16122
+ - uid: 16125
components:
- rot: -1.5707963267948966 rad
pos: 8.5,16.5
@@ -102407,28 +102447,28 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16123
+ - uid: 16126
components:
- pos: 21.5,10.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16124
+ - uid: 16127
components:
- pos: 21.5,9.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16125
+ - uid: 16128
components:
- pos: 21.5,8.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16126
+ - uid: 16129
components:
- rot: 1.5707963267948966 rad
pos: 27.5,12.5
@@ -102436,21 +102476,21 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16127
+ - uid: 16130
components:
- pos: 25.5,9.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16128
+ - uid: 16131
components:
- pos: 25.5,8.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16129
+ - uid: 16132
components:
- rot: -1.5707963267948966 rad
pos: 22.5,7.5
@@ -102458,7 +102498,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16130
+ - uid: 16133
components:
- rot: -1.5707963267948966 rad
pos: 23.5,7.5
@@ -102466,7 +102506,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16131
+ - uid: 16134
components:
- rot: 1.5707963267948966 rad
pos: 24.5,7.5
@@ -102474,28 +102514,28 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16132
+ - uid: 16135
components:
- pos: 38.5,3.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16133
+ - uid: 16136
components:
- pos: 31.5,13.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16134
+ - uid: 16137
components:
- pos: 31.5,14.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16135
+ - uid: 16138
components:
- rot: -1.5707963267948966 rad
pos: 30.5,15.5
@@ -102503,7 +102543,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16136
+ - uid: 16139
components:
- rot: 1.5707963267948966 rad
pos: 20.5,-5.5
@@ -102511,35 +102551,35 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16137
+ - uid: 16140
components:
- pos: 20.5,12.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16138
+ - uid: 16141
components:
- pos: 20.5,11.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16139
+ - uid: 16142
components:
- pos: 20.5,9.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16140
+ - uid: 16143
components:
- pos: 20.5,8.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16141
+ - uid: 16144
components:
- rot: 1.5707963267948966 rad
pos: 19.5,7.5
@@ -102547,7 +102587,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16142
+ - uid: 16145
components:
- rot: 3.141592653589793 rad
pos: 18.5,6.5
@@ -102555,7 +102595,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16143
+ - uid: 16146
components:
- rot: 3.141592653589793 rad
pos: 18.5,5.5
@@ -102563,7 +102603,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16144
+ - uid: 16147
components:
- rot: 3.141592653589793 rad
pos: 18.5,4.5
@@ -102571,7 +102611,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16145
+ - uid: 16148
components:
- rot: 1.5707963267948966 rad
pos: 19.5,13.5
@@ -102579,7 +102619,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16146
+ - uid: 16149
components:
- rot: 1.5707963267948966 rad
pos: 18.5,13.5
@@ -102587,7 +102627,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16147
+ - uid: 16150
components:
- rot: 3.141592653589793 rad
pos: 17.5,14.5
@@ -102595,7 +102635,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16148
+ - uid: 16151
components:
- rot: 3.141592653589793 rad
pos: 17.5,15.5
@@ -102603,7 +102643,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16149
+ - uid: 16152
components:
- rot: 3.141592653589793 rad
pos: 5.5,18.5
@@ -102611,7 +102651,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16150
+ - uid: 16153
components:
- rot: 1.5707963267948966 rad
pos: 14.5,17.5
@@ -102619,7 +102659,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16151
+ - uid: 16154
components:
- rot: 1.5707963267948966 rad
pos: 3.5,17.5
@@ -102627,7 +102667,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16152
+ - uid: 16155
components:
- rot: 1.5707963267948966 rad
pos: 2.5,17.5
@@ -102635,7 +102675,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16153
+ - uid: 16156
components:
- rot: 1.5707963267948966 rad
pos: -3.5,13.5
@@ -102643,14 +102683,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16154
+ - uid: 16157
components:
- pos: -8.5,3.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16155
+ - uid: 16158
components:
- rot: 1.5707963267948966 rad
pos: -4.5,1.5
@@ -102658,7 +102698,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16156
+ - uid: 16159
components:
- rot: 1.5707963267948966 rad
pos: -3.5,1.5
@@ -102666,7 +102706,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16157
+ - uid: 16160
components:
- rot: 1.5707963267948966 rad
pos: -2.5,1.5
@@ -102674,7 +102714,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16158
+ - uid: 16161
components:
- rot: 1.5707963267948966 rad
pos: -1.5,1.5
@@ -102682,7 +102722,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16159
+ - uid: 16162
components:
- rot: 1.5707963267948966 rad
pos: 0.5,1.5
@@ -102690,49 +102730,49 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16160
+ - uid: 16163
components:
- pos: 1.5,0.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16161
+ - uid: 16164
components:
- pos: 1.5,-0.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16162
+ - uid: 16165
components:
- pos: 1.5,-1.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16163
+ - uid: 16166
components:
- pos: 1.5,-2.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16164
+ - uid: 16167
components:
- pos: 9.5,0.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16165
+ - uid: 16168
components:
- pos: 9.5,-0.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16166
+ - uid: 16169
components:
- rot: 1.5707963267948966 rad
pos: 10.5,-1.5
@@ -102740,56 +102780,56 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16167
+ - uid: 16170
components:
- pos: 11.5,-2.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16168
+ - uid: 16171
components:
- pos: 11.5,-3.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16169
+ - uid: 16172
components:
- pos: 11.5,-4.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16170
+ - uid: 16173
components:
- pos: 11.5,-5.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16171
+ - uid: 16174
components:
- pos: 11.5,-6.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16172
+ - uid: 16175
components:
- pos: 11.5,-7.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16173
+ - uid: 16176
components:
- pos: 11.5,-8.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16174
+ - uid: 16177
components:
- rot: -1.5707963267948966 rad
pos: 9.5,-9.5
@@ -102797,7 +102837,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16175
+ - uid: 16178
components:
- rot: 3.141592653589793 rad
pos: 19.5,19.5
@@ -102805,7 +102845,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16176
+ - uid: 16179
components:
- rot: 1.5707963267948966 rad
pos: 26.5,21.5
@@ -102813,7 +102853,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16177
+ - uid: 16180
components:
- rot: 1.5707963267948966 rad
pos: 27.5,21.5
@@ -102821,21 +102861,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16178
+ - uid: 16181
components:
- pos: 23.5,18.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16179
+ - uid: 16182
components:
- pos: 23.5,19.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16180
+ - uid: 16183
components:
- rot: 1.5707963267948966 rad
pos: 24.5,20.5
@@ -102843,7 +102883,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16181
+ - uid: 16184
components:
- rot: 3.141592653589793 rad
pos: 25.5,21.5
@@ -102851,7 +102891,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16182
+ - uid: 16185
components:
- rot: -1.5707963267948966 rad
pos: -15.5,-38.5
@@ -102859,7 +102899,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16183
+ - uid: 16186
components:
- rot: -1.5707963267948966 rad
pos: -14.5,-38.5
@@ -102867,21 +102907,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16184
+ - uid: 16187
components:
- pos: 7.5,17.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16185
+ - uid: 16188
components:
- pos: 17.5,19.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16186
+ - uid: 16189
components:
- rot: 3.141592653589793 rad
pos: 16.5,19.5
@@ -102889,14 +102929,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16187
+ - uid: 16190
components:
- pos: 34.5,2.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16188
+ - uid: 16191
components:
- rot: -1.5707963267948966 rad
pos: 30.5,0.5
@@ -102904,7 +102944,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16189
+ - uid: 16192
components:
- rot: 1.5707963267948966 rad
pos: -6.5,-64.5
@@ -102912,14 +102952,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16190
+ - uid: 16193
components:
- pos: 21.5,-12.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16191
+ - uid: 16194
components:
- rot: 3.141592653589793 rad
pos: 34.5,-0.5
@@ -102927,7 +102967,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16192
+ - uid: 16195
components:
- rot: 3.141592653589793 rad
pos: 34.5,-1.5
@@ -102935,7 +102975,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16193
+ - uid: 16196
components:
- rot: 3.141592653589793 rad
pos: 34.5,-2.5
@@ -102943,7 +102983,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16194
+ - uid: 16197
components:
- rot: 3.141592653589793 rad
pos: 34.5,-3.5
@@ -102951,7 +102991,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16195
+ - uid: 16198
components:
- rot: 3.141592653589793 rad
pos: 34.5,-4.5
@@ -102959,7 +102999,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16196
+ - uid: 16199
components:
- rot: 3.141592653589793 rad
pos: 34.5,-5.5
@@ -102967,7 +103007,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16197
+ - uid: 16200
components:
- rot: -1.5707963267948966 rad
pos: 33.5,-6.5
@@ -102975,7 +103015,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16198
+ - uid: 16201
components:
- rot: -1.5707963267948966 rad
pos: 32.5,-6.5
@@ -102983,7 +103023,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16199
+ - uid: 16202
components:
- rot: -1.5707963267948966 rad
pos: 30.5,-6.5
@@ -102991,7 +103031,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16200
+ - uid: 16203
components:
- rot: -1.5707963267948966 rad
pos: 28.5,-6.5
@@ -102999,7 +103039,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16201
+ - uid: 16204
components:
- rot: 1.5707963267948966 rad
pos: 5.5,19.5
@@ -103007,7 +103047,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16202
+ - uid: 16205
components:
- rot: 1.5707963267948966 rad
pos: 3.5,19.5
@@ -103015,7 +103055,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16203
+ - uid: 16206
components:
- rot: 1.5707963267948966 rad
pos: 2.5,19.5
@@ -103023,7 +103063,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16204
+ - uid: 16207
components:
- rot: -1.5707963267948966 rad
pos: 1.5,19.5
@@ -103031,21 +103071,21 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16205
+ - uid: 16208
components:
- pos: 26.5,-9.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16206
+ - uid: 16209
components:
- pos: 26.5,-10.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16207
+ - uid: 16210
components:
- rot: -1.5707963267948966 rad
pos: 24.5,-12.5
@@ -103053,7 +103093,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16208
+ - uid: 16211
components:
- rot: -1.5707963267948966 rad
pos: 22.5,-12.5
@@ -103061,7 +103101,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16209
+ - uid: 16212
components:
- rot: 3.141592653589793 rad
pos: 26.5,-14.5
@@ -103069,7 +103109,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16210
+ - uid: 16213
components:
- rot: 3.141592653589793 rad
pos: 26.5,-15.5
@@ -103077,7 +103117,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16211
+ - uid: 16214
components:
- rot: 3.141592653589793 rad
pos: 26.5,-17.5
@@ -103085,7 +103125,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16212
+ - uid: 16215
components:
- rot: 1.5707963267948966 rad
pos: 23.5,-23.5
@@ -103093,7 +103133,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16213
+ - uid: 16216
components:
- rot: 1.5707963267948966 rad
pos: 22.5,-23.5
@@ -103101,7 +103141,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16214
+ - uid: 16217
components:
- rot: 1.5707963267948966 rad
pos: 28.5,-22.5
@@ -103109,7 +103149,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16215
+ - uid: 16218
components:
- rot: 3.141592653589793 rad
pos: 21.5,-15.5
@@ -103117,7 +103157,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16216
+ - uid: 16219
components:
- rot: 1.5707963267948966 rad
pos: 21.5,-23.5
@@ -103125,21 +103165,21 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16217
+ - uid: 16220
components:
- pos: 24.5,-26.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16218
+ - uid: 16221
components:
- pos: 24.5,-28.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16219
+ - uid: 16222
components:
- rot: 3.141592653589793 rad
pos: 26.5,-25.5
@@ -103147,7 +103187,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16220
+ - uid: 16223
components:
- rot: 3.141592653589793 rad
pos: 26.5,-28.5
@@ -103155,7 +103195,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16221
+ - uid: 16224
components:
- rot: 3.141592653589793 rad
pos: 26.5,-29.5
@@ -103163,7 +103203,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16222
+ - uid: 16225
components:
- rot: -1.5707963267948966 rad
pos: 28.5,-30.5
@@ -103171,7 +103211,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16223
+ - uid: 16226
components:
- rot: -1.5707963267948966 rad
pos: 26.5,-29.5
@@ -103179,28 +103219,28 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16224
+ - uid: 16227
components:
- pos: 28.5,-33.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16225
+ - uid: 16228
components:
- pos: 22.5,-31.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16226
+ - uid: 16229
components:
- pos: 22.5,-33.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16227
+ - uid: 16230
components:
- rot: 3.141592653589793 rad
pos: 21.5,-29.5
@@ -103208,21 +103248,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16228
+ - uid: 16231
components:
- pos: -11.5,-25.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16229
+ - uid: 16232
components:
- pos: -8.5,-24.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16230
+ - uid: 16233
components:
- rot: 1.5707963267948966 rad
pos: 2.5,-25.5
@@ -103230,7 +103270,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16231
+ - uid: 16234
components:
- rot: 1.5707963267948966 rad
pos: -6.5,7.5
@@ -103238,7 +103278,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16232
+ - uid: 16235
components:
- rot: 1.5707963267948966 rad
pos: -7.5,7.5
@@ -103246,7 +103286,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16233
+ - uid: 16236
components:
- rot: 1.5707963267948966 rad
pos: -8.5,7.5
@@ -103254,7 +103294,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16234
+ - uid: 16237
components:
- rot: 1.5707963267948966 rad
pos: -9.5,7.5
@@ -103262,7 +103302,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16235
+ - uid: 16238
components:
- rot: -1.5707963267948966 rad
pos: -9.5,1.5
@@ -103270,7 +103310,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16236
+ - uid: 16239
components:
- rot: -1.5707963267948966 rad
pos: -11.5,1.5
@@ -103278,7 +103318,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16237
+ - uid: 16240
components:
- rot: -1.5707963267948966 rad
pos: -12.5,1.5
@@ -103286,63 +103326,63 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16238
+ - uid: 16241
components:
- pos: -9.5,-2.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16239
+ - uid: 16242
components:
- pos: -9.5,-3.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16240
+ - uid: 16243
components:
- pos: -10.5,0.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16241
+ - uid: 16244
components:
- pos: -10.5,-0.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16242
+ - uid: 16245
components:
- pos: -10.5,-1.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16243
+ - uid: 16246
components:
- pos: -10.5,-3.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16244
+ - uid: 16247
components:
- pos: -10.5,-4.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16245
+ - uid: 16248
components:
- pos: -10.5,-5.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16246
+ - uid: 16249
components:
- rot: 3.141592653589793 rad
pos: -2.5,-64.5
@@ -103350,7 +103390,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16247
+ - uid: 16250
components:
- rot: 3.141592653589793 rad
pos: -2.5,-63.5
@@ -103358,7 +103398,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16248
+ - uid: 16251
components:
- rot: 3.141592653589793 rad
pos: -2.5,-62.5
@@ -103366,7 +103406,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16249
+ - uid: 16252
components:
- rot: -1.5707963267948966 rad
pos: -3.5,-61.5
@@ -103374,7 +103414,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16250
+ - uid: 16253
components:
- rot: -1.5707963267948966 rad
pos: -0.5,-61.5
@@ -103382,7 +103422,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16251
+ - uid: 16254
components:
- rot: -1.5707963267948966 rad
pos: 0.5,-61.5
@@ -103390,7 +103430,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16252
+ - uid: 16255
components:
- rot: -1.5707963267948966 rad
pos: 1.5,-61.5
@@ -103398,14 +103438,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16253
+ - uid: 16256
components:
- pos: -8.5,-63.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16254
+ - uid: 16257
components:
- rot: -1.5707963267948966 rad
pos: -10.5,-61.5
@@ -103413,7 +103453,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16255
+ - uid: 16258
components:
- rot: -1.5707963267948966 rad
pos: -11.5,-61.5
@@ -103421,7 +103461,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16256
+ - uid: 16259
components:
- rot: -1.5707963267948966 rad
pos: -12.5,-61.5
@@ -103429,7 +103469,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16257
+ - uid: 16260
components:
- rot: -1.5707963267948966 rad
pos: -13.5,-61.5
@@ -103437,7 +103477,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16258
+ - uid: 16261
components:
- rot: -1.5707963267948966 rad
pos: -14.5,-61.5
@@ -103445,28 +103485,28 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16259
+ - uid: 16262
components:
- pos: -15.5,-62.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16260
+ - uid: 16263
components:
- pos: -15.5,-63.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16261
+ - uid: 16264
components:
- pos: -15.5,-64.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16262
+ - uid: 16265
components:
- rot: 3.141592653589793 rad
pos: -0.5,-61.5
@@ -103474,7 +103514,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16263
+ - uid: 16266
components:
- rot: 3.141592653589793 rad
pos: -0.5,-62.5
@@ -103482,7 +103522,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16264
+ - uid: 16267
components:
- rot: 3.141592653589793 rad
pos: -0.5,-64.5
@@ -103490,7 +103530,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16265
+ - uid: 16268
components:
- rot: -1.5707963267948966 rad
pos: -10.5,-60.5
@@ -103498,7 +103538,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16266
+ - uid: 16269
components:
- rot: -1.5707963267948966 rad
pos: -11.5,-60.5
@@ -103506,28 +103546,28 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16267
+ - uid: 16270
components:
- pos: -12.5,-62.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16268
+ - uid: 16271
components:
- pos: -12.5,-63.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16269
+ - uid: 16272
components:
- pos: -12.5,-64.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16270
+ - uid: 16273
components:
- rot: -1.5707963267948966 rad
pos: 0.5,-60.5
@@ -103535,7 +103575,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16271
+ - uid: 16274
components:
- rot: -1.5707963267948966 rad
pos: 1.5,-60.5
@@ -103543,7 +103583,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16272
+ - uid: 16275
components:
- rot: 1.5707963267948966 rad
pos: 3.5,-60.5
@@ -103551,7 +103591,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16273
+ - uid: 16276
components:
- rot: -1.5707963267948966 rad
pos: 4.5,-60.5
@@ -103559,7 +103599,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16274
+ - uid: 16277
components:
- rot: 3.141592653589793 rad
pos: 5.5,-44.5
@@ -103567,7 +103607,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16275
+ - uid: 16278
components:
- rot: 3.141592653589793 rad
pos: 5.5,-42.5
@@ -103575,7 +103615,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16276
+ - uid: 16279
components:
- rot: 3.141592653589793 rad
pos: 3.5,-43.5
@@ -103583,7 +103623,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16277
+ - uid: 16280
components:
- rot: -1.5707963267948966 rad
pos: 1.5,-42.5
@@ -103591,7 +103631,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16278
+ - uid: 16281
components:
- rot: -1.5707963267948966 rad
pos: 0.5,-42.5
@@ -103599,7 +103639,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16279
+ - uid: 16282
components:
- rot: -1.5707963267948966 rad
pos: -0.5,-42.5
@@ -103607,7 +103647,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16280
+ - uid: 16283
components:
- rot: -1.5707963267948966 rad
pos: -1.5,-42.5
@@ -103615,7 +103655,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16281
+ - uid: 16284
components:
- rot: -1.5707963267948966 rad
pos: -2.5,-42.5
@@ -103623,7 +103663,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16282
+ - uid: 16285
components:
- rot: -1.5707963267948966 rad
pos: 4.5,-41.5
@@ -103631,7 +103671,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16283
+ - uid: 16286
components:
- rot: 3.141592653589793 rad
pos: -1.5,-51.5
@@ -103639,7 +103679,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16284
+ - uid: 16287
components:
- rot: 3.141592653589793 rad
pos: -9.5,-60.5
@@ -103647,7 +103687,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16285
+ - uid: 16288
components:
- rot: 1.5707963267948966 rad
pos: -13.5,-60.5
@@ -103655,7 +103695,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16286
+ - uid: 16289
components:
- rot: -1.5707963267948966 rad
pos: -13.5,-41.5
@@ -103663,7 +103703,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16287
+ - uid: 16290
components:
- rot: -1.5707963267948966 rad
pos: 19.5,-29.5
@@ -103671,7 +103711,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16288
+ - uid: 16291
components:
- rot: -1.5707963267948966 rad
pos: 21.5,10.5
@@ -103679,7 +103719,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16289
+ - uid: 16292
components:
- rot: 1.5707963267948966 rad
pos: 6.5,-25.5
@@ -103687,7 +103727,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16290
+ - uid: 16293
components:
- rot: 1.5707963267948966 rad
pos: -4.5,-27.5
@@ -103695,7 +103735,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16291
+ - uid: 16294
components:
- rot: 1.5707963267948966 rad
pos: -3.5,-27.5
@@ -103703,7 +103743,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16292
+ - uid: 16295
components:
- rot: 1.5707963267948966 rad
pos: -2.5,-27.5
@@ -103711,7 +103751,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16293
+ - uid: 16296
components:
- rot: 1.5707963267948966 rad
pos: 0.5,-27.5
@@ -103719,7 +103759,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16294
+ - uid: 16297
components:
- rot: 1.5707963267948966 rad
pos: -9.5,-27.5
@@ -103727,42 +103767,42 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16295
+ - uid: 16298
components:
- pos: -3.5,-33.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16296
+ - uid: 16299
components:
- pos: -3.5,-34.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16297
+ - uid: 16300
components:
- pos: -3.5,-36.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16298
+ - uid: 16301
components:
- pos: -3.5,-37.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16299
+ - uid: 16302
components:
- pos: -3.5,-38.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16300
+ - uid: 16303
components:
- rot: 1.5707963267948966 rad
pos: 17.5,-41.5
@@ -103770,7 +103810,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16301
+ - uid: 16304
components:
- rot: 1.5707963267948966 rad
pos: 23.5,-43.5
@@ -103778,7 +103818,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16302
+ - uid: 16305
components:
- rot: -1.5707963267948966 rad
pos: 25.5,-43.5
@@ -103786,7 +103826,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16303
+ - uid: 16306
components:
- rot: -1.5707963267948966 rad
pos: 26.5,-43.5
@@ -103794,7 +103834,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16304
+ - uid: 16307
components:
- rot: -1.5707963267948966 rad
pos: 27.5,-43.5
@@ -103802,7 +103842,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16305
+ - uid: 16308
components:
- rot: -1.5707963267948966 rad
pos: 29.5,-43.5
@@ -103810,7 +103850,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16306
+ - uid: 16309
components:
- rot: -1.5707963267948966 rad
pos: 21.5,-12.5
@@ -103818,7 +103858,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16307
+ - uid: 16310
components:
- rot: 3.141592653589793 rad
pos: -11.5,-40.5
@@ -103826,14 +103866,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16308
+ - uid: 16311
components:
- pos: 35.5,7.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16309
+ - uid: 16312
components:
- rot: 1.5707963267948966 rad
pos: -34.5,20.5
@@ -103841,7 +103881,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16310
+ - uid: 16313
components:
- rot: 1.5707963267948966 rad
pos: -32.5,20.5
@@ -103849,7 +103889,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16311
+ - uid: 16314
components:
- rot: -1.5707963267948966 rad
pos: -26.5,-77.5
@@ -103857,7 +103897,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16312
+ - uid: 16315
components:
- rot: 3.141592653589793 rad
pos: -18.5,-74.5
@@ -103865,7 +103905,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16313
+ - uid: 16316
components:
- rot: 3.141592653589793 rad
pos: -18.5,-77.5
@@ -103873,7 +103913,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16314
+ - uid: 16317
components:
- rot: 1.5707963267948966 rad
pos: -24.5,-78.5
@@ -103881,7 +103921,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16315
+ - uid: 16318
components:
- rot: 1.5707963267948966 rad
pos: -25.5,-78.5
@@ -103889,7 +103929,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16316
+ - uid: 16319
components:
- rot: 1.5707963267948966 rad
pos: -17.5,-61.5
@@ -103897,7 +103937,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16317
+ - uid: 16320
components:
- rot: 1.5707963267948966 rad
pos: -16.5,-61.5
@@ -103905,14 +103945,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16318
+ - uid: 16321
components:
- pos: -24.5,-87.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16319
+ - uid: 16322
components:
- rot: 1.5707963267948966 rad
pos: -18.5,-61.5
@@ -103920,35 +103960,35 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16320
+ - uid: 16323
components:
- pos: -3.5,-4.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16321
+ - uid: 16324
components:
- pos: 35.5,4.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16322
+ - uid: 16325
components:
- pos: 17.5,-4.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16323
+ - uid: 16326
components:
- pos: 17.5,-1.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16324
+ - uid: 16327
components:
- rot: -1.5707963267948966 rad
pos: 16.5,-0.5
@@ -103956,7 +103996,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16325
+ - uid: 16328
components:
- rot: -1.5707963267948966 rad
pos: 12.5,-0.5
@@ -103964,7 +104004,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16326
+ - uid: 16329
components:
- rot: -1.5707963267948966 rad
pos: 35.5,15.5
@@ -103972,7 +104012,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16327
+ - uid: 16330
components:
- rot: -1.5707963267948966 rad
pos: 33.5,15.5
@@ -103980,7 +104020,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16328
+ - uid: 16331
components:
- rot: 3.141592653589793 rad
pos: 21.5,13.5
@@ -103988,7 +104028,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16329
+ - uid: 16332
components:
- rot: 1.5707963267948966 rad
pos: 30.5,9.5
@@ -103996,7 +104036,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16330
+ - uid: 16333
components:
- rot: -1.5707963267948966 rad
pos: -4.5,7.5
@@ -104004,21 +104044,21 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16331
+ - uid: 16334
components:
- pos: -3.5,9.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16332
+ - uid: 16335
components:
- pos: 7.5,15.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16333
+ - uid: 16336
components:
- rot: 3.141592653589793 rad
pos: 2.5,4.5
@@ -104026,14 +104066,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16334
+ - uid: 16337
components:
- pos: 0.5,9.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16335
+ - uid: 16338
components:
- rot: 1.5707963267948966 rad
pos: -1.5,11.5
@@ -104041,7 +104081,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16336
+ - uid: 16339
components:
- rot: 1.5707963267948966 rad
pos: -7.5,-1.5
@@ -104049,7 +104089,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16337
+ - uid: 16340
components:
- rot: 1.5707963267948966 rad
pos: 1.5,-1.5
@@ -104057,28 +104097,28 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16338
+ - uid: 16341
components:
- pos: 10.5,4.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16339
+ - uid: 16342
components:
- pos: 10.5,6.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16340
+ - uid: 16343
components:
- pos: 10.5,5.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16341
+ - uid: 16344
components:
- rot: 3.141592653589793 rad
pos: -21.5,-86.5
@@ -104086,14 +104126,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16342
+ - uid: 16345
components:
- pos: -19.5,-58.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16343
+ - uid: 16346
components:
- rot: 1.5707963267948966 rad
pos: 24.5,-16.5
@@ -104101,7 +104141,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16344
+ - uid: 16347
components:
- rot: 1.5707963267948966 rad
pos: 29.5,-16.5
@@ -104109,21 +104149,21 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16345
+ - uid: 16348
components:
- pos: 31.5,-17.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16346
+ - uid: 16349
components:
- pos: 31.5,-15.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16347
+ - uid: 16350
components:
- rot: 3.141592653589793 rad
pos: 10.5,-3.5
@@ -104131,7 +104171,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16348
+ - uid: 16351
components:
- rot: 3.141592653589793 rad
pos: 10.5,-2.5
@@ -104139,7 +104179,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16349
+ - uid: 16352
components:
- rot: -1.5707963267948966 rad
pos: 7.5,-0.5
@@ -104147,7 +104187,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16350
+ - uid: 16353
components:
- rot: 3.141592653589793 rad
pos: 10.5,-1.5
@@ -104155,7 +104195,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16351
+ - uid: 16354
components:
- rot: 1.5707963267948966 rad
pos: 18.5,12.5
@@ -104163,7 +104203,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16352
+ - uid: 16355
components:
- rot: 1.5707963267948966 rad
pos: 19.5,12.5
@@ -104171,7 +104211,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16353
+ - uid: 16356
components:
- rot: -1.5707963267948966 rad
pos: 5.5,-0.5
@@ -104179,7 +104219,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16354
+ - uid: 16357
components:
- rot: -1.5707963267948966 rad
pos: 6.5,-0.5
@@ -104187,7 +104227,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16355
+ - uid: 16358
components:
- rot: -1.5707963267948966 rad
pos: 9.5,-0.5
@@ -104195,7 +104235,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16356
+ - uid: 16359
components:
- rot: 3.141592653589793 rad
pos: -9.5,-41.5
@@ -104203,14 +104243,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16357
+ - uid: 16360
components:
- pos: 8.5,6.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16358
+ - uid: 16361
components:
- rot: 3.141592653589793 rad
pos: 21.5,14.5
@@ -104218,28 +104258,28 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16359
+ - uid: 16362
components:
- pos: -3.5,-30.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16360
+ - uid: 16363
components:
- pos: -3.5,-31.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16361
+ - uid: 16364
components:
- pos: -3.5,-32.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16362
+ - uid: 16365
components:
- rot: 1.5707963267948966 rad
pos: -0.5,-1.5
@@ -104247,7 +104287,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16363
+ - uid: 16366
components:
- rot: 1.5707963267948966 rad
pos: 9.5,-25.5
@@ -104255,7 +104295,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16364
+ - uid: 16367
components:
- rot: 1.5707963267948966 rad
pos: 8.5,-25.5
@@ -104263,7 +104303,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16365
+ - uid: 16368
components:
- rot: 1.5707963267948966 rad
pos: -0.5,13.5
@@ -104271,28 +104311,28 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16366
+ - uid: 16369
components:
- pos: -6.5,12.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16367
+ - uid: 16370
components:
- pos: -6.5,9.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16368
+ - uid: 16371
components:
- pos: 15.5,-41.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16369
+ - uid: 16372
components:
- rot: 1.5707963267948966 rad
pos: 4.5,-27.5
@@ -104300,7 +104340,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16370
+ - uid: 16373
components:
- rot: 1.5707963267948966 rad
pos: 5.5,-27.5
@@ -104308,7 +104348,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16371
+ - uid: 16374
components:
- rot: 1.5707963267948966 rad
pos: 13.5,-43.5
@@ -104316,7 +104356,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16372
+ - uid: 16375
components:
- rot: -1.5707963267948966 rad
pos: 6.5,-42.5
@@ -104324,7 +104364,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16373
+ - uid: 16376
components:
- rot: 3.141592653589793 rad
pos: 14.5,-36.5
@@ -104332,7 +104372,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16374
+ - uid: 16377
components:
- rot: -1.5707963267948966 rad
pos: 11.5,-41.5
@@ -104340,7 +104380,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16375
+ - uid: 16378
components:
- rot: 3.141592653589793 rad
pos: 14.5,-39.5
@@ -104348,7 +104388,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16376
+ - uid: 16379
components:
- rot: 3.141592653589793 rad
pos: 14.5,-40.5
@@ -104356,7 +104396,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16377
+ - uid: 16380
components:
- rot: -1.5707963267948966 rad
pos: 12.5,-41.5
@@ -104364,7 +104404,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16378
+ - uid: 16381
components:
- rot: 3.141592653589793 rad
pos: 14.5,-38.5
@@ -104372,7 +104412,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16379
+ - uid: 16382
components:
- rot: -1.5707963267948966 rad
pos: 13.5,-41.5
@@ -104380,14 +104420,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16380
+ - uid: 16383
components:
- pos: 15.5,-36.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16381
+ - uid: 16384
components:
- rot: -1.5707963267948966 rad
pos: 8.5,-41.5
@@ -104395,7 +104435,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16382
+ - uid: 16385
components:
- rot: -1.5707963267948966 rad
pos: 7.5,-41.5
@@ -104403,7 +104443,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16383
+ - uid: 16386
components:
- rot: -1.5707963267948966 rad
pos: 9.5,-41.5
@@ -104411,14 +104451,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16384
+ - uid: 16387
components:
- pos: 15.5,-38.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16385
+ - uid: 16388
components:
- rot: 3.141592653589793 rad
pos: 40.5,-72.5
@@ -104426,7 +104466,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16386
+ - uid: 16389
components:
- rot: 3.141592653589793 rad
pos: 16.5,17.5
@@ -104434,7 +104474,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16387
+ - uid: 16390
components:
- rot: 3.141592653589793 rad
pos: 16.5,18.5
@@ -104442,7 +104482,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16388
+ - uid: 16391
components:
- rot: 3.141592653589793 rad
pos: 16.5,20.5
@@ -104450,7 +104490,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16389
+ - uid: 16392
components:
- rot: 3.141592653589793 rad
pos: 16.5,21.5
@@ -104458,7 +104498,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16390
+ - uid: 16393
components:
- rot: -1.5707963267948966 rad
pos: 33.5,0.5
@@ -104466,7 +104506,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16391
+ - uid: 16394
components:
- rot: -1.5707963267948966 rad
pos: 32.5,0.5
@@ -104474,7 +104514,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16392
+ - uid: 16395
components:
- rot: -1.5707963267948966 rad
pos: 31.5,0.5
@@ -104482,7 +104522,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16393
+ - uid: 16396
components:
- rot: -1.5707963267948966 rad
pos: 29.5,0.5
@@ -104490,7 +104530,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16394
+ - uid: 16397
components:
- rot: -1.5707963267948966 rad
pos: 28.5,0.5
@@ -104498,7 +104538,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16395
+ - uid: 16398
components:
- rot: 3.141592653589793 rad
pos: 14.5,-34.5
@@ -104506,14 +104546,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16396
+ - uid: 16399
components:
- pos: 15.5,-42.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16397
+ - uid: 16400
components:
- rot: 3.141592653589793 rad
pos: 14.5,-31.5
@@ -104521,49 +104561,49 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16398
+ - uid: 16401
components:
- pos: 15.5,-33.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16399
+ - uid: 16402
components:
- pos: 15.5,-35.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16400
+ - uid: 16403
components:
- pos: 15.5,-31.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16401
+ - uid: 16404
components:
- pos: 15.5,-34.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16402
+ - uid: 16405
components:
- pos: 15.5,-20.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16403
+ - uid: 16406
components:
- pos: 15.5,-19.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16404
+ - uid: 16407
components:
- rot: 1.5707963267948966 rad
pos: 19.5,-17.5
@@ -104571,14 +104611,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16405
+ - uid: 16408
components:
- pos: 15.5,-18.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16406
+ - uid: 16409
components:
- rot: 1.5707963267948966 rad
pos: 16.5,-17.5
@@ -104586,7 +104626,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16407
+ - uid: 16410
components:
- rot: 1.5707963267948966 rad
pos: 17.5,-17.5
@@ -104594,7 +104634,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16408
+ - uid: 16411
components:
- rot: 1.5707963267948966 rad
pos: 18.5,-17.5
@@ -104602,7 +104642,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16409
+ - uid: 16412
components:
- rot: 3.141592653589793 rad
pos: 15.5,-27.5
@@ -104610,14 +104650,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16410
+ - uid: 16413
components:
- pos: 26.5,-8.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16411
+ - uid: 16414
components:
- rot: 1.5707963267948966 rad
pos: -2.5,-25.5
@@ -104625,7 +104665,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16412
+ - uid: 16415
components:
- rot: -1.5707963267948966 rad
pos: 20.5,-30.5
@@ -104633,7 +104673,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16413
+ - uid: 16416
components:
- rot: -1.5707963267948966 rad
pos: 19.5,-30.5
@@ -104641,7 +104681,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16414
+ - uid: 16417
components:
- rot: -1.5707963267948966 rad
pos: 23.5,-30.5
@@ -104649,14 +104689,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16415
+ - uid: 16418
components:
- pos: 28.5,-30.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16416
+ - uid: 16419
components:
- rot: 3.141592653589793 rad
pos: 15.5,-28.5
@@ -104664,14 +104704,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16417
+ - uid: 16420
components:
- pos: -3.5,-16.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16418
+ - uid: 16421
components:
- rot: 1.5707963267948966 rad
pos: 16.5,-30.5
@@ -104679,7 +104719,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16419
+ - uid: 16422
components:
- rot: 3.141592653589793 rad
pos: 15.5,-26.5
@@ -104687,14 +104727,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16420
+ - uid: 16423
components:
- pos: -3.5,-19.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16421
+ - uid: 16424
components:
- rot: 1.5707963267948966 rad
pos: -29.5,-80.5
@@ -104702,7 +104742,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16422
+ - uid: 16425
components:
- rot: -1.5707963267948966 rad
pos: -20.5,-73.5
@@ -104710,14 +104750,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16423
+ - uid: 16426
components:
- pos: -3.5,8.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16424
+ - uid: 16427
components:
- rot: -1.5707963267948966 rad
pos: -8.5,-41.5
@@ -104725,21 +104765,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16425
+ - uid: 16428
components:
- pos: -23.5,-76.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16426
+ - uid: 16429
components:
- pos: -23.5,-75.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16427
+ - uid: 16430
components:
- rot: -1.5707963267948966 rad
pos: -19.5,-73.5
@@ -104747,7 +104787,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16428
+ - uid: 16431
components:
- rot: -1.5707963267948966 rad
pos: 8.5,12.5
@@ -104755,7 +104795,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16429
+ - uid: 16432
components:
- rot: 3.141592653589793 rad
pos: 8.5,12.5
@@ -104763,7 +104803,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16430
+ - uid: 16433
components:
- rot: -1.5707963267948966 rad
pos: -9.5,-41.5
@@ -104771,7 +104811,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16431
+ - uid: 16434
components:
- rot: 3.141592653589793 rad
pos: -12.5,-45.5
@@ -104779,14 +104819,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16432
+ - uid: 16435
components:
- pos: -9.5,-54.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16433
+ - uid: 16436
components:
- rot: 3.141592653589793 rad
pos: -3.5,-54.5
@@ -104794,7 +104834,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16434
+ - uid: 16437
components:
- rot: 3.141592653589793 rad
pos: -3.5,-55.5
@@ -104802,7 +104842,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16435
+ - uid: 16438
components:
- rot: 3.141592653589793 rad
pos: -1.5,-49.5
@@ -104810,7 +104850,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16436
+ - uid: 16439
components:
- rot: -1.5707963267948966 rad
pos: -1.5,-41.5
@@ -104818,7 +104858,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16437
+ - uid: 16440
components:
- rot: -1.5707963267948966 rad
pos: -2.5,-41.5
@@ -104826,28 +104866,28 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16438
+ - uid: 16441
components:
- pos: -5.5,-16.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16439
+ - uid: 16442
components:
- pos: -5.5,-13.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16440
+ - uid: 16443
components:
- pos: -5.5,-11.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16441
+ - uid: 16444
components:
- rot: -1.5707963267948966 rad
pos: -6.5,-41.5
@@ -104855,77 +104895,77 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16442
+ - uid: 16445
components:
- pos: -5.5,-6.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16443
+ - uid: 16446
components:
- pos: -5.5,-4.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16444
+ - uid: 16447
components:
- pos: -5.5,-3.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16445
+ - uid: 16448
components:
- pos: -5.5,-1.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16446
+ - uid: 16449
components:
- pos: -5.5,-0.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16447
+ - uid: 16450
components:
- pos: -5.5,-12.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16448
+ - uid: 16451
components:
- pos: -5.5,-15.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16449
+ - uid: 16452
components:
- pos: -5.5,-20.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16450
+ - uid: 16453
components:
- pos: -5.5,-19.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16451
+ - uid: 16454
components:
- pos: -5.5,-5.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16452
+ - uid: 16455
components:
- rot: 1.5707963267948966 rad
pos: -1.5,13.5
@@ -104933,7 +104973,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16453
+ - uid: 16456
components:
- rot: 3.141592653589793 rad
pos: -1.5,-48.5
@@ -104941,7 +104981,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16454
+ - uid: 16457
components:
- rot: 3.141592653589793 rad
pos: -21.5,-88.5
@@ -104949,7 +104989,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16455
+ - uid: 16458
components:
- rot: 3.141592653589793 rad
pos: 34.5,-31.5
@@ -104957,7 +104997,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16456
+ - uid: 16459
components:
- rot: -1.5707963267948966 rad
pos: -1.5,-14.5
@@ -104965,7 +105005,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16457
+ - uid: 16460
components:
- rot: 3.141592653589793 rad
pos: 34.5,-30.5
@@ -104973,7 +105013,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16458
+ - uid: 16461
components:
- rot: 1.5707963267948966 rad
pos: 43.5,-24.5
@@ -104981,7 +105021,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16459
+ - uid: 16462
components:
- rot: 1.5707963267948966 rad
pos: -28.5,-78.5
@@ -104989,7 +105029,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16460
+ - uid: 16463
components:
- rot: 1.5707963267948966 rad
pos: -29.5,-78.5
@@ -104997,7 +105037,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16461
+ - uid: 16464
components:
- rot: -1.5707963267948966 rad
pos: -21.5,30.5
@@ -105005,7 +105045,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16462
+ - uid: 16465
components:
- rot: 3.141592653589793 rad
pos: 34.5,-37.5
@@ -105013,7 +105053,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16463
+ - uid: 16466
components:
- rot: 3.141592653589793 rad
pos: 34.5,-33.5
@@ -105021,7 +105061,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16464
+ - uid: 16467
components:
- rot: -1.5707963267948966 rad
pos: 30.5,12.5
@@ -105029,7 +105069,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16465
+ - uid: 16468
components:
- rot: -1.5707963267948966 rad
pos: 19.5,16.5
@@ -105037,7 +105077,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16466
+ - uid: 16469
components:
- rot: 3.141592653589793 rad
pos: -12.5,6.5
@@ -105045,7 +105085,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16467
+ - uid: 16470
components:
- rot: -1.5707963267948966 rad
pos: 32.5,12.5
@@ -105053,7 +105093,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16468
+ - uid: 16471
components:
- rot: 3.141592653589793 rad
pos: 30.5,-20.5
@@ -105061,7 +105101,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16469
+ - uid: 16472
components:
- rot: 3.141592653589793 rad
pos: 10.5,10.5
@@ -105069,7 +105109,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16470
+ - uid: 16473
components:
- rot: 1.5707963267948966 rad
pos: 8.5,8.5
@@ -105077,7 +105117,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16471
+ - uid: 16474
components:
- rot: -1.5707963267948966 rad
pos: -22.5,30.5
@@ -105085,7 +105125,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16472
+ - uid: 16475
components:
- rot: -1.5707963267948966 rad
pos: -20.5,29.5
@@ -105093,21 +105133,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16473
+ - uid: 16476
components:
- pos: -20.5,26.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16474
+ - uid: 16477
components:
- pos: 26.5,-27.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16475
+ - uid: 16478
components:
- rot: 3.141592653589793 rad
pos: 2.5,-2.5
@@ -105115,35 +105155,35 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16476
+ - uid: 16479
components:
- pos: -3.5,-3.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16477
+ - uid: 16480
components:
- pos: -3.5,-2.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16478
+ - uid: 16481
components:
- pos: -3.5,-15.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16479
+ - uid: 16482
components:
- pos: 47.5,-27.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16480
+ - uid: 16483
components:
- rot: 3.141592653589793 rad
pos: 8.5,5.5
@@ -105151,7 +105191,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16481
+ - uid: 16484
components:
- rot: -1.5707963267948966 rad
pos: 29.5,12.5
@@ -105159,7 +105199,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16482
+ - uid: 16485
components:
- rot: 3.141592653589793 rad
pos: 40.5,3.5
@@ -105167,7 +105207,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16483
+ - uid: 16486
components:
- rot: 1.5707963267948966 rad
pos: 42.5,-27.5
@@ -105175,7 +105215,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16484
+ - uid: 16487
components:
- rot: 1.5707963267948966 rad
pos: 17.5,12.5
@@ -105183,7 +105223,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16485
+ - uid: 16488
components:
- rot: 1.5707963267948966 rad
pos: 43.5,-27.5
@@ -105191,7 +105231,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16486
+ - uid: 16489
components:
- rot: -1.5707963267948966 rad
pos: 10.5,12.5
@@ -105199,21 +105239,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16487
+ - uid: 16490
components:
- pos: 26.5,-11.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16488
+ - uid: 16491
components:
- pos: 26.5,-16.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16489
+ - uid: 16492
components:
- rot: -1.5707963267948966 rad
pos: 27.5,-30.5
@@ -105221,7 +105261,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16490
+ - uid: 16493
components:
- rot: -1.5707963267948966 rad
pos: 22.5,-42.5
@@ -105229,7 +105269,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16491
+ - uid: 16494
components:
- rot: -1.5707963267948966 rad
pos: 23.5,-42.5
@@ -105237,7 +105277,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16492
+ - uid: 16495
components:
- rot: -1.5707963267948966 rad
pos: 27.5,-42.5
@@ -105245,7 +105285,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16493
+ - uid: 16496
components:
- rot: 3.141592653589793 rad
pos: 8.5,2.5
@@ -105253,14 +105293,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16494
+ - uid: 16497
components:
- pos: -11.5,-24.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16495
+ - uid: 16498
components:
- rot: 3.141592653589793 rad
pos: -8.5,-23.5
@@ -105268,7 +105308,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16496
+ - uid: 16499
components:
- rot: 3.141592653589793 rad
pos: 10.5,9.5
@@ -105276,7 +105316,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16497
+ - uid: 16500
components:
- rot: -1.5707963267948966 rad
pos: 20.5,16.5
@@ -105284,7 +105324,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16498
+ - uid: 16501
components:
- rot: 1.5707963267948966 rad
pos: 23.5,-54.5
@@ -105292,28 +105332,28 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16499
+ - uid: 16502
components:
- pos: -3.5,-17.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16500
+ - uid: 16503
components:
- pos: -5.5,-22.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16501
+ - uid: 16504
components:
- pos: -5.5,-18.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16502
+ - uid: 16505
components:
- rot: -1.5707963267948966 rad
pos: -23.5,30.5
@@ -105321,7 +105361,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16503
+ - uid: 16506
components:
- rot: -1.5707963267948966 rad
pos: -16.5,29.5
@@ -105329,7 +105369,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16504
+ - uid: 16507
components:
- rot: -1.5707963267948966 rad
pos: -19.5,29.5
@@ -105337,7 +105377,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16505
+ - uid: 16508
components:
- rot: -1.5707963267948966 rad
pos: 10.5,-9.5
@@ -105345,7 +105385,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16506
+ - uid: 16509
components:
- rot: 3.141592653589793 rad
pos: 34.5,-34.5
@@ -105353,7 +105393,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16507
+ - uid: 16510
components:
- rot: 1.5707963267948966 rad
pos: 6.5,19.5
@@ -105361,7 +105401,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16508
+ - uid: 16511
components:
- rot: 3.141592653589793 rad
pos: 40.5,1.5
@@ -105369,21 +105409,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16509
+ - uid: 16512
components:
- pos: 0.5,8.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16510
+ - uid: 16513
components:
- pos: 0.5,10.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16511
+ - uid: 16514
components:
- rot: 1.5707963267948966 rad
pos: -0.5,11.5
@@ -105391,7 +105431,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16512
+ - uid: 16515
components:
- rot: 3.141592653589793 rad
pos: 2.5,3.5
@@ -105399,12 +105439,12 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16513
+ - uid: 16516
components:
- pos: 2.5,12.5
parent: 2
type: Transform
- - uid: 16514
+ - uid: 16517
components:
- rot: 3.141592653589793 rad
pos: 8.5,3.5
@@ -105412,21 +105452,21 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16515
+ - uid: 16518
components:
- pos: 34.5,-27.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16516
+ - uid: 16519
components:
- pos: 2.5,-0.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16517
+ - uid: 16520
components:
- rot: 1.5707963267948966 rad
pos: 3.5,0.5
@@ -105434,7 +105474,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16518
+ - uid: 16521
components:
- rot: 1.5707963267948966 rad
pos: -2.5,-1.5
@@ -105442,7 +105482,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16519
+ - uid: 16522
components:
- rot: 1.5707963267948966 rad
pos: -5.5,-1.5
@@ -105450,7 +105490,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16520
+ - uid: 16523
components:
- rot: 3.141592653589793 rad
pos: -1.5,-50.5
@@ -105458,7 +105498,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16521
+ - uid: 16524
components:
- rot: -1.5707963267948966 rad
pos: 37.5,11.5
@@ -105466,7 +105506,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16522
+ - uid: 16525
components:
- rot: 1.5707963267948966 rad
pos: 8.5,17.5
@@ -105474,7 +105514,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16523
+ - uid: 16526
components:
- rot: 1.5707963267948966 rad
pos: 7.5,17.5
@@ -105482,7 +105522,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16524
+ - uid: 16527
components:
- rot: 1.5707963267948966 rad
pos: 6.5,17.5
@@ -105490,14 +105530,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16525
+ - uid: 16528
components:
- pos: -8.5,7.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16526
+ - uid: 16529
components:
- rot: 1.5707963267948966 rad
pos: 12.5,17.5
@@ -105505,7 +105545,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16527
+ - uid: 16530
components:
- rot: 3.141592653589793 rad
pos: -3.5,-58.5
@@ -105513,14 +105553,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16528
+ - uid: 16531
components:
- pos: -3.5,-20.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16529
+ - uid: 16532
components:
- rot: -1.5707963267948966 rad
pos: -6.5,-42.5
@@ -105528,7 +105568,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16530
+ - uid: 16533
components:
- rot: 3.141592653589793 rad
pos: 2.5,2.5
@@ -105536,7 +105576,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16531
+ - uid: 16534
components:
- rot: -1.5707963267948966 rad
pos: 18.5,-12.5
@@ -105544,7 +105584,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16532
+ - uid: 16535
components:
- rot: 1.5707963267948966 rad
pos: 22.5,-16.5
@@ -105552,7 +105592,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16533
+ - uid: 16536
components:
- rot: 1.5707963267948966 rad
pos: 23.5,-16.5
@@ -105560,7 +105600,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16534
+ - uid: 16537
components:
- rot: 1.5707963267948966 rad
pos: 27.5,-16.5
@@ -105568,7 +105608,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16535
+ - uid: 16538
components:
- rot: 1.5707963267948966 rad
pos: 31.5,-16.5
@@ -105576,56 +105616,56 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16536
+ - uid: 16539
components:
- pos: 21.5,-13.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16537
+ - uid: 16540
components:
- pos: 21.5,-10.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16538
+ - uid: 16541
components:
- pos: 21.5,-11.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16539
+ - uid: 16542
components:
- pos: 21.5,-9.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16540
+ - uid: 16543
components:
- pos: 21.5,-7.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16541
+ - uid: 16544
components:
- pos: 21.5,-8.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16542
+ - uid: 16545
components:
- pos: 21.5,-6.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16543
+ - uid: 16546
components:
- rot: 3.141592653589793 rad
pos: 26.5,-23.5
@@ -105633,7 +105673,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16544
+ - uid: 16547
components:
- rot: 1.5707963267948966 rad
pos: 27.5,-22.5
@@ -105641,14 +105681,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16545
+ - uid: 16548
components:
- pos: 20.5,-22.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16546
+ - uid: 16549
components:
- rot: 3.141592653589793 rad
pos: 26.5,-13.5
@@ -105656,35 +105696,35 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16547
+ - uid: 16550
components:
- pos: 31.5,-16.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16548
+ - uid: 16551
components:
- pos: 33.5,-15.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16549
+ - uid: 16552
components:
- pos: -5.5,-25.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16550
+ - uid: 16553
components:
- pos: -5.5,-24.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16551
+ - uid: 16554
components:
- rot: -1.5707963267948966 rad
pos: 28.5,-42.5
@@ -105692,7 +105732,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16552
+ - uid: 16555
components:
- rot: -1.5707963267948966 rad
pos: 25.5,-29.5
@@ -105700,7 +105740,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16553
+ - uid: 16556
components:
- rot: -1.5707963267948966 rad
pos: 6.5,12.5
@@ -105708,7 +105748,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16554
+ - uid: 16557
components:
- rot: -1.5707963267948966 rad
pos: 9.5,12.5
@@ -105716,7 +105756,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16555
+ - uid: 16558
components:
- rot: -1.5707963267948966 rad
pos: 20.5,-12.5
@@ -105724,7 +105764,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16556
+ - uid: 16559
components:
- rot: 1.5707963267948966 rad
pos: 15.5,-41.5
@@ -105732,7 +105772,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16557
+ - uid: 16560
components:
- rot: -1.5707963267948966 rad
pos: -17.5,29.5
@@ -105740,7 +105780,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16558
+ - uid: 16561
components:
- rot: -1.5707963267948966 rad
pos: -17.5,30.5
@@ -105748,7 +105788,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16559
+ - uid: 16562
components:
- rot: -1.5707963267948966 rad
pos: -18.5,30.5
@@ -105756,7 +105796,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16560
+ - uid: 16563
components:
- rot: -1.5707963267948966 rad
pos: -19.5,30.5
@@ -105764,7 +105804,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16561
+ - uid: 16564
components:
- rot: -1.5707963267948966 rad
pos: -22.5,29.5
@@ -105772,7 +105812,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16562
+ - uid: 16565
components:
- rot: -1.5707963267948966 rad
pos: -21.5,29.5
@@ -105780,21 +105820,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16563
+ - uid: 16566
components:
- pos: 36.5,-24.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16564
+ - uid: 16567
components:
- pos: 36.5,-23.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16565
+ - uid: 16568
components:
- rot: 3.141592653589793 rad
pos: -10.5,6.5
@@ -105802,28 +105842,28 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16566
+ - uid: 16569
components:
- pos: -18.5,27.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16567
+ - uid: 16570
components:
- pos: 36.5,-22.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16568
+ - uid: 16571
components:
- pos: 47.5,-26.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16569
+ - uid: 16572
components:
- rot: -1.5707963267948966 rad
pos: 25.5,-30.5
@@ -105831,7 +105871,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16570
+ - uid: 16573
components:
- rot: 3.141592653589793 rad
pos: 34.5,-29.5
@@ -105839,7 +105879,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16571
+ - uid: 16574
components:
- rot: -1.5707963267948966 rad
pos: 19.5,-12.5
@@ -105847,7 +105887,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16572
+ - uid: 16575
components:
- rot: -1.5707963267948966 rad
pos: -1.5,-61.5
@@ -105855,14 +105895,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16573
+ - uid: 16576
components:
- pos: -10.5,-2.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16574
+ - uid: 16577
components:
- rot: -1.5707963267948966 rad
pos: 24.5,-30.5
@@ -105870,7 +105910,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16575
+ - uid: 16578
components:
- rot: 1.5707963267948966 rad
pos: 16.5,17.5
@@ -105878,7 +105918,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16576
+ - uid: 16579
components:
- rot: 1.5707963267948966 rad
pos: 18.5,-5.5
@@ -105886,7 +105926,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16577
+ - uid: 16580
components:
- rot: -1.5707963267948966 rad
pos: 15.5,16.5
@@ -105894,7 +105934,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16578
+ - uid: 16581
components:
- rot: -1.5707963267948966 rad
pos: 18.5,16.5
@@ -105902,7 +105942,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16579
+ - uid: 16582
components:
- rot: -1.5707963267948966 rad
pos: 17.5,16.5
@@ -105910,7 +105950,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16580
+ - uid: 16583
components:
- rot: -1.5707963267948966 rad
pos: 33.5,12.5
@@ -105918,7 +105958,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16581
+ - uid: 16584
components:
- rot: 3.141592653589793 rad
pos: 40.5,2.5
@@ -105926,28 +105966,28 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16582
+ - uid: 16585
components:
- pos: -20.5,27.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16583
+ - uid: 16586
components:
- pos: 22.5,-32.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16584
+ - uid: 16587
components:
- pos: -20.5,32.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16585
+ - uid: 16588
components:
- rot: 1.5707963267948966 rad
pos: 46.5,-28.5
@@ -105955,14 +105995,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16586
+ - uid: 16589
components:
- pos: 36.5,-21.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16587
+ - uid: 16590
components:
- rot: 1.5707963267948966 rad
pos: 42.5,-24.5
@@ -105970,7 +106010,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16588
+ - uid: 16591
components:
- rot: 1.5707963267948966 rad
pos: -7.5,-64.5
@@ -105978,14 +106018,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16589
+ - uid: 16592
components:
- pos: -23.5,-81.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16590
+ - uid: 16593
components:
- rot: 1.5707963267948966 rad
pos: -27.5,-80.5
@@ -105993,7 +106033,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16591
+ - uid: 16594
components:
- rot: -1.5707963267948966 rad
pos: 8.5,-42.5
@@ -106001,14 +106041,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16592
+ - uid: 16595
components:
- pos: -23.5,-79.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16593
+ - uid: 16596
components:
- rot: 1.5707963267948966 rad
pos: -28.5,-80.5
@@ -106016,7 +106056,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16594
+ - uid: 16597
components:
- rot: 1.5707963267948966 rad
pos: -26.5,-80.5
@@ -106024,7 +106064,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16595
+ - uid: 16598
components:
- rot: -1.5707963267948966 rad
pos: 7.5,-42.5
@@ -106032,7 +106072,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16596
+ - uid: 16599
components:
- rot: -1.5707963267948966 rad
pos: 5.5,-42.5
@@ -106040,7 +106080,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16597
+ - uid: 16600
components:
- rot: 3.141592653589793 rad
pos: 14.5,-37.5
@@ -106048,7 +106088,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16598
+ - uid: 16601
components:
- rot: 1.5707963267948966 rad
pos: 12.5,-43.5
@@ -106056,7 +106096,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16599
+ - uid: 16602
components:
- rot: 1.5707963267948966 rad
pos: 14.5,-25.5
@@ -106064,7 +106104,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16600
+ - uid: 16603
components:
- rot: 1.5707963267948966 rad
pos: 14.5,-43.5
@@ -106072,14 +106112,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16601
+ - uid: 16604
components:
- pos: 15.5,-39.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16602
+ - uid: 16605
components:
- rot: 3.141592653589793 rad
pos: 5.5,14.5
@@ -106087,7 +106127,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16603
+ - uid: 16606
components:
- rot: 3.141592653589793 rad
pos: 5.5,15.5
@@ -106095,28 +106135,28 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16604
+ - uid: 16607
components:
- pos: -3.5,-27.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16605
+ - uid: 16608
components:
- pos: 20.5,-18.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16606
+ - uid: 16609
components:
- pos: 20.5,-20.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16607
+ - uid: 16610
components:
- rot: -1.5707963267948966 rad
pos: 39.5,15.5
@@ -106124,7 +106164,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16608
+ - uid: 16611
components:
- rot: -1.5707963267948966 rad
pos: 14.5,-0.5
@@ -106132,7 +106172,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16609
+ - uid: 16612
components:
- rot: -1.5707963267948966 rad
pos: 37.5,15.5
@@ -106140,7 +106180,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16610
+ - uid: 16613
components:
- rot: 3.141592653589793 rad
pos: -21.5,-85.5
@@ -106148,7 +106188,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16611
+ - uid: 16614
components:
- rot: 3.141592653589793 rad
pos: -21.5,-87.5
@@ -106156,7 +106196,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16612
+ - uid: 16615
components:
- rot: -1.5707963267948966 rad
pos: -22.5,-88.5
@@ -106164,7 +106204,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16613
+ - uid: 16616
components:
- rot: -1.5707963267948966 rad
pos: -23.5,-88.5
@@ -106172,14 +106212,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16614
+ - uid: 16617
components:
- pos: -24.5,-86.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16615
+ - uid: 16618
components:
- rot: -1.5707963267948966 rad
pos: 27.5,-29.5
@@ -106187,7 +106227,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16616
+ - uid: 16619
components:
- rot: -1.5707963267948966 rad
pos: 31.5,-6.5
@@ -106195,28 +106235,28 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16617
+ - uid: 16620
components:
- pos: -3.5,-10.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16618
+ - uid: 16621
components:
- pos: -3.5,-6.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16619
+ - uid: 16622
components:
- pos: -5.5,-8.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16620
+ - uid: 16623
components:
- rot: -1.5707963267948966 rad
pos: 22.5,10.5
@@ -106224,7 +106264,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16621
+ - uid: 16624
components:
- rot: -1.5707963267948966 rad
pos: 25.5,10.5
@@ -106232,7 +106272,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16622
+ - uid: 16625
components:
- rot: -1.5707963267948966 rad
pos: 16.5,-29.5
@@ -106240,7 +106280,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16623
+ - uid: 16626
components:
- rot: -1.5707963267948966 rad
pos: 21.5,-29.5
@@ -106248,7 +106288,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16624
+ - uid: 16627
components:
- rot: -1.5707963267948966 rad
pos: -10.5,-41.5
@@ -106256,7 +106296,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16625
+ - uid: 16628
components:
- rot: 3.141592653589793 rad
pos: -5.5,-30.5
@@ -106264,28 +106304,28 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16626
+ - uid: 16629
components:
- pos: -3.5,-41.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16627
+ - uid: 16630
components:
- pos: -19.5,-60.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16628
+ - uid: 16631
components:
- pos: -19.5,-59.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16629
+ - uid: 16632
components:
- rot: 1.5707963267948966 rad
pos: 19.5,-41.5
@@ -106293,7 +106333,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16630
+ - uid: 16633
components:
- rot: 1.5707963267948966 rad
pos: -0.5,-25.5
@@ -106301,7 +106341,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16631
+ - uid: 16634
components:
- rot: 1.5707963267948966 rad
pos: -0.5,-27.5
@@ -106309,7 +106349,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16632
+ - uid: 16635
components:
- rot: 1.5707963267948966 rad
pos: -1.5,-27.5
@@ -106317,7 +106357,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16633
+ - uid: 16636
components:
- rot: 1.5707963267948966 rad
pos: 1.5,-27.5
@@ -106325,7 +106365,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16634
+ - uid: 16637
components:
- rot: 1.5707963267948966 rad
pos: -7.5,-27.5
@@ -106333,14 +106373,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16635
+ - uid: 16638
components:
- pos: -3.5,-39.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16636
+ - uid: 16639
components:
- rot: 3.141592653589793 rad
pos: 34.5,-39.5
@@ -106348,7 +106388,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16637
+ - uid: 16640
components:
- rot: 3.141592653589793 rad
pos: 34.5,-40.5
@@ -106356,28 +106396,28 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16638
+ - uid: 16641
components:
- pos: 34.5,-22.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16639
+ - uid: 16642
components:
- pos: -18.5,28.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16640
+ - uid: 16643
components:
- pos: -18.5,26.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16641
+ - uid: 16644
components:
- rot: -1.5707963267948966 rad
pos: 3.5,-41.5
@@ -106385,7 +106425,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16642
+ - uid: 16645
components:
- rot: -1.5707963267948966 rad
pos: -7.5,-41.5
@@ -106393,7 +106433,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16643
+ - uid: 16646
components:
- rot: 1.5707963267948966 rad
pos: -3.5,-41.5
@@ -106401,7 +106441,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16644
+ - uid: 16647
components:
- rot: -1.5707963267948966 rad
pos: -2.5,-14.5
@@ -106409,7 +106449,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16645
+ - uid: 16648
components:
- rot: -1.5707963267948966 rad
pos: 31.5,-42.5
@@ -106417,14 +106457,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16646
+ - uid: 16649
components:
- pos: -23.5,-74.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16647
+ - uid: 16650
components:
- rot: -1.5707963267948966 rad
pos: -22.5,-73.5
@@ -106432,7 +106472,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16648
+ - uid: 16651
components:
- rot: 1.5707963267948966 rad
pos: 33.5,-18.5
@@ -106440,7 +106480,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16649
+ - uid: 16652
components:
- rot: 1.5707963267948966 rad
pos: 32.5,-18.5
@@ -106448,7 +106488,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16650
+ - uid: 16653
components:
- rot: 3.141592653589793 rad
pos: 34.5,-19.5
@@ -106456,7 +106496,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16651
+ - uid: 16654
components:
- rot: 3.141592653589793 rad
pos: 34.5,-20.5
@@ -106464,7 +106504,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16652
+ - uid: 16655
components:
- rot: 3.141592653589793 rad
pos: 36.5,-20.5
@@ -106472,7 +106512,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16653
+ - uid: 16656
components:
- rot: 3.141592653589793 rad
pos: 36.5,-19.5
@@ -106480,7 +106520,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16654
+ - uid: 16657
components:
- rot: 3.141592653589793 rad
pos: 36.5,-18.5
@@ -106488,7 +106528,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16655
+ - uid: 16658
components:
- rot: 3.141592653589793 rad
pos: 36.5,-17.5
@@ -106496,7 +106536,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16656
+ - uid: 16659
components:
- rot: -1.5707963267948966 rad
pos: 35.5,-16.5
@@ -106504,7 +106544,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16657
+ - uid: 16660
components:
- rot: -1.5707963267948966 rad
pos: 34.5,-16.5
@@ -106512,14 +106552,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16658
+ - uid: 16661
components:
- pos: 25.5,-6.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16659
+ - uid: 16662
components:
- rot: 3.141592653589793 rad
pos: 24.5,-45.5
@@ -106527,7 +106567,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16660
+ - uid: 16663
components:
- rot: 3.141592653589793 rad
pos: 24.5,-44.5
@@ -106535,7 +106575,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16661
+ - uid: 16664
components:
- rot: 3.141592653589793 rad
pos: 26.5,-45.5
@@ -106543,7 +106583,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16662
+ - uid: 16665
components:
- rot: 3.141592653589793 rad
pos: 26.5,-44.5
@@ -106551,7 +106591,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16663
+ - uid: 16666
components:
- rot: 3.141592653589793 rad
pos: 26.5,-43.5
@@ -106559,7 +106599,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16664
+ - uid: 16667
components:
- rot: -1.5707963267948966 rad
pos: 40.5,-25.5
@@ -106567,7 +106607,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16665
+ - uid: 16668
components:
- rot: -1.5707963267948966 rad
pos: 35.5,-26.5
@@ -106575,7 +106615,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16666
+ - uid: 16669
components:
- rot: -1.5707963267948966 rad
pos: 36.5,-26.5
@@ -106583,7 +106623,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16667
+ - uid: 16670
components:
- rot: -1.5707963267948966 rad
pos: 37.5,-26.5
@@ -106591,7 +106631,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16668
+ - uid: 16671
components:
- rot: -1.5707963267948966 rad
pos: 38.5,-26.5
@@ -106599,7 +106639,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16669
+ - uid: 16672
components:
- rot: -1.5707963267948966 rad
pos: 39.5,-26.5
@@ -106607,7 +106647,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16670
+ - uid: 16673
components:
- rot: -1.5707963267948966 rad
pos: 40.5,-26.5
@@ -106615,14 +106655,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16671
+ - uid: 16674
components:
- pos: 36.5,-28.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16672
+ - uid: 16675
components:
- rot: -1.5707963267948966 rad
pos: 39.5,-25.5
@@ -106630,7 +106670,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16673
+ - uid: 16676
components:
- rot: -1.5707963267948966 rad
pos: 38.5,-25.5
@@ -106638,7 +106678,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16674
+ - uid: 16677
components:
- rot: -1.5707963267948966 rad
pos: 37.5,-25.5
@@ -106646,21 +106686,21 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16675
+ - uid: 16678
components:
- pos: 34.5,-28.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16676
+ - uid: 16679
components:
- pos: 36.5,-27.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16677
+ - uid: 16680
components:
- rot: 1.5707963267948966 rad
pos: 45.5,-28.5
@@ -106668,70 +106708,70 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16678
+ - uid: 16681
components:
- pos: -27.5,-78.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16679
+ - uid: 16682
components:
- pos: -20.5,-82.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16680
+ - uid: 16683
components:
- pos: -20.5,-81.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16681
+ - uid: 16684
components:
- pos: -20.5,-79.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16682
+ - uid: 16685
components:
- pos: -20.5,-78.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16683
+ - uid: 16686
components:
- pos: -20.5,-77.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16684
+ - uid: 16687
components:
- pos: -20.5,-76.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16685
+ - uid: 16688
components:
- pos: -20.5,-73.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16686
+ - uid: 16689
components:
- pos: -25.5,-74.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16687
+ - uid: 16690
components:
- rot: 1.5707963267948966 rad
pos: -23.5,-72.5
@@ -106739,7 +106779,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16688
+ - uid: 16691
components:
- rot: 1.5707963267948966 rad
pos: -22.5,-72.5
@@ -106747,7 +106787,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16689
+ - uid: 16692
components:
- rot: 3.141592653589793 rad
pos: -20.5,-71.5
@@ -106755,7 +106795,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16690
+ - uid: 16693
components:
- rot: 1.5707963267948966 rad
pos: -21.5,-72.5
@@ -106763,21 +106803,21 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16691
+ - uid: 16694
components:
- pos: -23.5,-84.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16692
+ - uid: 16695
components:
- pos: -23.5,-83.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16693
+ - uid: 16696
components:
- rot: 1.5707963267948966 rad
pos: -27.5,-78.5
@@ -106785,7 +106825,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16694
+ - uid: 16697
components:
- rot: 1.5707963267948966 rad
pos: -26.5,-78.5
@@ -106793,7 +106833,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16695
+ - uid: 16698
components:
- rot: 3.141592653589793 rad
pos: -18.5,-76.5
@@ -106801,7 +106841,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16696
+ - uid: 16699
components:
- rot: 3.141592653589793 rad
pos: -18.5,-75.5
@@ -106809,7 +106849,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16697
+ - uid: 16700
components:
- rot: -1.5707963267948966 rad
pos: -21.5,-73.5
@@ -106817,7 +106857,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16698
+ - uid: 16701
components:
- rot: 3.141592653589793 rad
pos: -25.5,-76.5
@@ -106825,14 +106865,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16699
+ - uid: 16702
components:
- pos: -20.5,-80.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16700
+ - uid: 16703
components:
- rot: 3.141592653589793 rad
pos: -18.5,-70.5
@@ -106840,56 +106880,55 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16701
+ - uid: 16704
components:
- - pos: 9.5,-43.5
+ - rot: 1.5707963267948966 rad
+ pos: 5.5,-46.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16702
+ - uid: 16705
components:
- - pos: 9.5,-44.5
+ - rot: 1.5707963267948966 rad
+ pos: 4.5,-46.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16703
+ - uid: 16706
components:
- - pos: 9.5,-45.5
+ - rot: -1.5707963267948966 rad
+ pos: 7.5,-46.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16704
- components:
- - pos: 10.5,-42.5
- parent: 2
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
- - uid: 16705
+ - uid: 16707
components:
- - pos: 10.5,-43.5
+ - rot: -1.5707963267948966 rad
+ pos: 7.5,-47.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16706
+ - uid: 16708
components:
- - pos: 10.5,-44.5
+ - rot: -1.5707963267948966 rad
+ pos: 8.5,-46.5
parent: 2
type: Transform
- - color: '#0055CCFF'
+ - color: '#990000FF'
type: AtmosPipeColor
- - uid: 16707
+ - uid: 16709
components:
- - pos: 10.5,-45.5
+ - rot: 1.5707963267948966 rad
+ pos: 10.5,-41.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16708
+ - uid: 16710
components:
- rot: -1.5707963267948966 rad
pos: -21.5,-88.5
@@ -106897,7 +106936,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16709
+ - uid: 16711
components:
- rot: 3.141592653589793 rad
pos: -18.5,-69.5
@@ -106905,7 +106944,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16710
+ - uid: 16712
components:
- rot: 3.141592653589793 rad
pos: -18.5,-68.5
@@ -106913,7 +106952,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16711
+ - uid: 16713
components:
- rot: 3.141592653589793 rad
pos: -20.5,-68.5
@@ -106921,7 +106960,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16712
+ - uid: 16714
components:
- rot: 3.141592653589793 rad
pos: -20.5,-67.5
@@ -106929,7 +106968,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16713
+ - uid: 16715
components:
- rot: 3.141592653589793 rad
pos: -18.5,-66.5
@@ -106937,7 +106976,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16714
+ - uid: 16716
components:
- rot: 3.141592653589793 rad
pos: -18.5,-65.5
@@ -106945,7 +106984,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16715
+ - uid: 16717
components:
- rot: 3.141592653589793 rad
pos: -20.5,-65.5
@@ -106953,7 +106992,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16716
+ - uid: 16718
components:
- rot: 3.141592653589793 rad
pos: -20.5,-64.5
@@ -106961,35 +107000,35 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16717
+ - uid: 16719
components:
- pos: -20.5,-62.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16718
+ - uid: 16720
components:
- pos: -18.5,-63.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16719
+ - uid: 16721
components:
- pos: -18.5,-62.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16720
+ - uid: 16722
components:
- pos: -18.5,-61.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16721
+ - uid: 16723
components:
- rot: 3.141592653589793 rad
pos: 36.5,-30.5
@@ -106997,7 +107036,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16722
+ - uid: 16724
components:
- rot: 3.141592653589793 rad
pos: 36.5,-32.5
@@ -107005,7 +107044,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16723
+ - uid: 16725
components:
- rot: 3.141592653589793 rad
pos: 36.5,-33.5
@@ -107013,7 +107052,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16724
+ - uid: 16726
components:
- rot: 3.141592653589793 rad
pos: 36.5,-34.5
@@ -107021,7 +107060,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16725
+ - uid: 16727
components:
- rot: 3.141592653589793 rad
pos: 36.5,-35.5
@@ -107029,7 +107068,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16726
+ - uid: 16728
components:
- rot: 3.141592653589793 rad
pos: 36.5,-36.5
@@ -107037,7 +107076,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16727
+ - uid: 16729
components:
- rot: 3.141592653589793 rad
pos: 36.5,-37.5
@@ -107045,7 +107084,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16728
+ - uid: 16730
components:
- rot: 3.141592653589793 rad
pos: 36.5,-38.5
@@ -107053,7 +107092,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16729
+ - uid: 16731
components:
- rot: 3.141592653589793 rad
pos: 36.5,-39.5
@@ -107061,7 +107100,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16730
+ - uid: 16732
components:
- rot: 3.141592653589793 rad
pos: 36.5,-40.5
@@ -107069,7 +107108,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16731
+ - uid: 16733
components:
- rot: 3.141592653589793 rad
pos: 36.5,-41.5
@@ -107077,7 +107116,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16732
+ - uid: 16734
components:
- rot: 3.141592653589793 rad
pos: 36.5,-42.5
@@ -107085,7 +107124,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16733
+ - uid: 16735
components:
- rot: 1.5707963267948966 rad
pos: 35.5,-43.5
@@ -107093,7 +107132,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16734
+ - uid: 16736
components:
- rot: 1.5707963267948966 rad
pos: 34.5,-43.5
@@ -107101,7 +107140,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16735
+ - uid: 16737
components:
- rot: 1.5707963267948966 rad
pos: 33.5,-43.5
@@ -107109,7 +107148,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16736
+ - uid: 16738
components:
- rot: 1.5707963267948966 rad
pos: 32.5,-43.5
@@ -107117,7 +107156,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16737
+ - uid: 16739
components:
- rot: -1.5707963267948966 rad
pos: 35.5,0.5
@@ -107125,7 +107164,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16738
+ - uid: 16740
components:
- rot: -1.5707963267948966 rad
pos: 36.5,0.5
@@ -107133,7 +107172,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16739
+ - uid: 16741
components:
- rot: 1.5707963267948966 rad
pos: 37.5,1.5
@@ -107141,7 +107180,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16740
+ - uid: 16742
components:
- rot: -1.5707963267948966 rad
pos: 38.5,0.5
@@ -107149,7 +107188,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16741
+ - uid: 16743
components:
- rot: -1.5707963267948966 rad
pos: 39.5,0.5
@@ -107157,7 +107196,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16742
+ - uid: 16744
components:
- rot: 1.5707963267948966 rad
pos: 20.5,12.5
@@ -107165,21 +107204,21 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16743
+ - uid: 16745
components:
- pos: 11.5,18.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16744
+ - uid: 16746
components:
- pos: 11.5,17.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16745
+ - uid: 16747
components:
- rot: 3.141592653589793 rad
pos: 7.5,18.5
@@ -107187,7 +107226,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16746
+ - uid: 16748
components:
- rot: 3.141592653589793 rad
pos: -11.5,-37.5
@@ -107195,7 +107234,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16747
+ - uid: 16749
components:
- rot: 3.141592653589793 rad
pos: -11.5,-36.5
@@ -107203,7 +107242,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16748
+ - uid: 16750
components:
- rot: 3.141592653589793 rad
pos: -11.5,-35.5
@@ -107211,7 +107250,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16749
+ - uid: 16751
components:
- rot: 3.141592653589793 rad
pos: -11.5,-34.5
@@ -107219,7 +107258,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16750
+ - uid: 16752
components:
- rot: 3.141592653589793 rad
pos: -11.5,-33.5
@@ -107227,7 +107266,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16751
+ - uid: 16753
components:
- rot: 3.141592653589793 rad
pos: -9.5,-38.5
@@ -107235,7 +107274,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16752
+ - uid: 16754
components:
- rot: -1.5707963267948966 rad
pos: -10.5,-37.5
@@ -107243,7 +107282,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16753
+ - uid: 16755
components:
- rot: -1.5707963267948966 rad
pos: -11.5,-37.5
@@ -107251,7 +107290,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16754
+ - uid: 16756
components:
- rot: -1.5707963267948966 rad
pos: -12.5,-37.5
@@ -107259,7 +107298,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16755
+ - uid: 16757
components:
- rot: -1.5707963267948966 rad
pos: -13.5,-37.5
@@ -107267,7 +107306,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16756
+ - uid: 16758
components:
- rot: 3.141592653589793 rad
pos: -9.5,-36.5
@@ -107275,7 +107314,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16757
+ - uid: 16759
components:
- rot: 3.141592653589793 rad
pos: -9.5,-35.5
@@ -107283,7 +107322,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16758
+ - uid: 16760
components:
- rot: 3.141592653589793 rad
pos: -9.5,-34.5
@@ -107291,7 +107330,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16759
+ - uid: 16761
components:
- rot: 3.141592653589793 rad
pos: -9.5,-33.5
@@ -107299,7 +107338,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16760
+ - uid: 16762
components:
- rot: -1.5707963267948966 rad
pos: -13.5,-38.5
@@ -107307,14 +107346,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16761
+ - uid: 16763
components:
- pos: 11.5,10.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16762
+ - uid: 16764
components:
- rot: 1.5707963267948966 rad
pos: -4.5,-10.5
@@ -107322,7 +107361,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16763
+ - uid: 16765
components:
- rot: 1.5707963267948966 rad
pos: -3.5,-10.5
@@ -107330,7 +107369,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16764
+ - uid: 16766
components:
- rot: 1.5707963267948966 rad
pos: -2.5,-10.5
@@ -107338,7 +107377,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16765
+ - uid: 16767
components:
- rot: 1.5707963267948966 rad
pos: -1.5,-10.5
@@ -107346,7 +107385,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16766
+ - uid: 16768
components:
- rot: -1.5707963267948966 rad
pos: 35.5,-41.5
@@ -107354,7 +107393,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16767
+ - uid: 16769
components:
- rot: -1.5707963267948966 rad
pos: 36.5,-41.5
@@ -107362,7 +107401,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16768
+ - uid: 16770
components:
- rot: -1.5707963267948966 rad
pos: 37.5,-41.5
@@ -107370,7 +107409,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16769
+ - uid: 16771
components:
- rot: -1.5707963267948966 rad
pos: 39.5,-41.5
@@ -107378,7 +107417,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16770
+ - uid: 16772
components:
- rot: -1.5707963267948966 rad
pos: 38.5,-41.5
@@ -107386,7 +107425,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16771
+ - uid: 16773
components:
- rot: -1.5707963267948966 rad
pos: 40.5,-41.5
@@ -107394,7 +107433,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16772
+ - uid: 16774
components:
- rot: -1.5707963267948966 rad
pos: 41.5,-41.5
@@ -107402,7 +107441,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16773
+ - uid: 16775
components:
- rot: -1.5707963267948966 rad
pos: 37.5,-43.5
@@ -107410,7 +107449,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16774
+ - uid: 16776
components:
- rot: -1.5707963267948966 rad
pos: 38.5,-43.5
@@ -107418,7 +107457,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16775
+ - uid: 16777
components:
- rot: -1.5707963267948966 rad
pos: 39.5,-43.5
@@ -107426,7 +107465,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16776
+ - uid: 16778
components:
- rot: -1.5707963267948966 rad
pos: 40.5,-43.5
@@ -107434,7 +107473,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16777
+ - uid: 16779
components:
- rot: -1.5707963267948966 rad
pos: 41.5,-43.5
@@ -107442,35 +107481,35 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16778
+ - uid: 16780
components:
- pos: 21.5,-43.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16779
+ - uid: 16781
components:
- pos: 21.5,-45.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16780
+ - uid: 16782
components:
- pos: 20.5,-45.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16781
+ - uid: 16783
components:
- pos: 20.5,-46.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16782
+ - uid: 16784
components:
- rot: 3.141592653589793 rad
pos: 40.5,7.5
@@ -107478,7 +107517,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16783
+ - uid: 16785
components:
- rot: 3.141592653589793 rad
pos: 30.5,16.5
@@ -107486,7 +107525,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16784
+ - uid: 16786
components:
- rot: 3.141592653589793 rad
pos: 30.5,15.5
@@ -107494,7 +107533,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16785
+ - uid: 16787
components:
- rot: 3.141592653589793 rad
pos: 30.5,20.5
@@ -107502,7 +107541,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16786
+ - uid: 16788
components:
- rot: 3.141592653589793 rad
pos: 30.5,21.5
@@ -107510,7 +107549,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16787
+ - uid: 16789
components:
- rot: 3.141592653589793 rad
pos: 30.5,22.5
@@ -107518,7 +107557,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16788
+ - uid: 16790
components:
- rot: 3.141592653589793 rad
pos: 30.5,23.5
@@ -107526,7 +107565,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16789
+ - uid: 16791
components:
- rot: 3.141592653589793 rad
pos: 30.5,24.5
@@ -107534,7 +107573,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16790
+ - uid: 16792
components:
- rot: 3.141592653589793 rad
pos: 30.5,25.5
@@ -107542,7 +107581,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16791
+ - uid: 16793
components:
- rot: 3.141592653589793 rad
pos: 30.5,26.5
@@ -107550,7 +107589,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16792
+ - uid: 16794
components:
- rot: 3.141592653589793 rad
pos: 30.5,27.5
@@ -107558,7 +107597,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16793
+ - uid: 16795
components:
- rot: 3.141592653589793 rad
pos: 28.5,18.5
@@ -107566,7 +107605,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16794
+ - uid: 16796
components:
- rot: 3.141592653589793 rad
pos: 28.5,19.5
@@ -107574,7 +107613,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16795
+ - uid: 16797
components:
- rot: 3.141592653589793 rad
pos: 28.5,20.5
@@ -107582,7 +107621,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16796
+ - uid: 16798
components:
- rot: 3.141592653589793 rad
pos: 28.5,21.5
@@ -107590,7 +107629,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16797
+ - uid: 16799
components:
- rot: 3.141592653589793 rad
pos: 28.5,23.5
@@ -107598,7 +107637,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16798
+ - uid: 16800
components:
- rot: 3.141592653589793 rad
pos: 28.5,24.5
@@ -107606,7 +107645,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16799
+ - uid: 16801
components:
- rot: 3.141592653589793 rad
pos: 28.5,25.5
@@ -107614,7 +107653,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16800
+ - uid: 16802
components:
- rot: 3.141592653589793 rad
pos: 28.5,26.5
@@ -107622,7 +107661,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16801
+ - uid: 16803
components:
- rot: 3.141592653589793 rad
pos: 28.5,27.5
@@ -107630,7 +107669,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16802
+ - uid: 16804
components:
- rot: 1.5707963267948966 rad
pos: 40.5,15.5
@@ -107638,7 +107677,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16803
+ - uid: 16805
components:
- rot: -1.5707963267948966 rad
pos: 43.5,15.5
@@ -107646,7 +107685,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16804
+ - uid: 16806
components:
- rot: -1.5707963267948966 rad
pos: 43.5,14.5
@@ -107654,7 +107693,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16805
+ - uid: 16807
components:
- rot: -1.5707963267948966 rad
pos: 42.5,14.5
@@ -107662,7 +107701,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16806
+ - uid: 16808
components:
- rot: -1.5707963267948966 rad
pos: 40.5,14.5
@@ -107670,7 +107709,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16807
+ - uid: 16809
components:
- rot: -1.5707963267948966 rad
pos: 39.5,14.5
@@ -107678,7 +107717,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16808
+ - uid: 16810
components:
- rot: -1.5707963267948966 rad
pos: 38.5,14.5
@@ -107686,7 +107725,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16809
+ - uid: 16811
components:
- rot: -1.5707963267948966 rad
pos: 37.5,14.5
@@ -107694,7 +107733,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16810
+ - uid: 16812
components:
- rot: -1.5707963267948966 rad
pos: 36.5,14.5
@@ -107702,7 +107741,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16811
+ - uid: 16813
components:
- rot: -1.5707963267948966 rad
pos: 35.5,14.5
@@ -107710,7 +107749,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16812
+ - uid: 16814
components:
- rot: -1.5707963267948966 rad
pos: 34.5,14.5
@@ -107718,7 +107757,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16813
+ - uid: 16815
components:
- rot: -1.5707963267948966 rad
pos: 33.5,14.5
@@ -107726,7 +107765,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16814
+ - uid: 16816
components:
- rot: -1.5707963267948966 rad
pos: 32.5,14.5
@@ -107734,7 +107773,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16815
+ - uid: 16817
components:
- rot: -1.5707963267948966 rad
pos: 31.5,14.5
@@ -107742,7 +107781,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16816
+ - uid: 16818
components:
- rot: 1.5707963267948966 rad
pos: 44.5,14.5
@@ -107750,7 +107789,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16817
+ - uid: 16819
components:
- rot: 1.5707963267948966 rad
pos: 45.5,15.5
@@ -107758,7 +107797,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16818
+ - uid: 16820
components:
- rot: 1.5707963267948966 rad
pos: 46.5,15.5
@@ -107766,7 +107805,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16819
+ - uid: 16821
components:
- rot: 1.5707963267948966 rad
pos: 46.5,14.5
@@ -107774,7 +107813,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16820
+ - uid: 16822
components:
- rot: 1.5707963267948966 rad
pos: 48.5,15.5
@@ -107782,7 +107821,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16821
+ - uid: 16823
components:
- rot: 1.5707963267948966 rad
pos: 48.5,14.5
@@ -107790,7 +107829,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16822
+ - uid: 16824
components:
- rot: -1.5707963267948966 rad
pos: 49.5,14.5
@@ -107798,7 +107837,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16823
+ - uid: 16825
components:
- rot: 3.141592653589793 rad
pos: 49.5,16.5
@@ -107806,7 +107845,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16824
+ - uid: 16826
components:
- rot: 3.141592653589793 rad
pos: 49.5,17.5
@@ -107814,7 +107853,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16825
+ - uid: 16827
components:
- rot: 3.141592653589793 rad
pos: 49.5,18.5
@@ -107822,7 +107861,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16826
+ - uid: 16828
components:
- rot: 3.141592653589793 rad
pos: 49.5,19.5
@@ -107830,7 +107869,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16827
+ - uid: 16829
components:
- rot: -1.5707963267948966 rad
pos: 50.5,20.5
@@ -107838,7 +107877,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16828
+ - uid: 16830
components:
- rot: 3.141592653589793 rad
pos: 50.5,20.5
@@ -107846,7 +107885,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16829
+ - uid: 16831
components:
- rot: 3.141592653589793 rad
pos: 50.5,18.5
@@ -107854,7 +107893,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16830
+ - uid: 16832
components:
- rot: 3.141592653589793 rad
pos: 50.5,17.5
@@ -107862,7 +107901,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16831
+ - uid: 16833
components:
- rot: 3.141592653589793 rad
pos: 50.5,16.5
@@ -107870,7 +107909,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16832
+ - uid: 16834
components:
- rot: 3.141592653589793 rad
pos: 50.5,15.5
@@ -107878,7 +107917,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16833
+ - uid: 16835
components:
- rot: 1.5707963267948966 rad
pos: 48.5,20.5
@@ -107886,7 +107925,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16834
+ - uid: 16836
components:
- rot: 1.5707963267948966 rad
pos: 47.5,20.5
@@ -107894,7 +107933,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16835
+ - uid: 16837
components:
- rot: 1.5707963267948966 rad
pos: 49.5,21.5
@@ -107902,7 +107941,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16836
+ - uid: 16838
components:
- rot: 1.5707963267948966 rad
pos: 48.5,21.5
@@ -107910,7 +107949,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16837
+ - uid: 16839
components:
- rot: 3.141592653589793 rad
pos: 49.5,21.5
@@ -107918,7 +107957,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16838
+ - uid: 16840
components:
- rot: 3.141592653589793 rad
pos: 49.5,22.5
@@ -107926,7 +107965,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16839
+ - uid: 16841
components:
- rot: 3.141592653589793 rad
pos: 50.5,22.5
@@ -107934,7 +107973,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16840
+ - uid: 16842
components:
- rot: 3.141592653589793 rad
pos: 46.5,21.5
@@ -107942,7 +107981,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16841
+ - uid: 16843
components:
- rot: 3.141592653589793 rad
pos: 46.5,22.5
@@ -107950,7 +107989,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16842
+ - uid: 16844
components:
- rot: 3.141592653589793 rad
pos: 47.5,22.5
@@ -107958,7 +107997,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16843
+ - uid: 16845
components:
- rot: 1.5707963267948966 rad
pos: 51.5,21.5
@@ -107966,7 +108005,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16844
+ - uid: 16846
components:
- rot: 1.5707963267948966 rad
pos: 52.5,21.5
@@ -107974,7 +108013,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16845
+ - uid: 16847
components:
- rot: 3.141592653589793 rad
pos: 53.5,22.5
@@ -107982,7 +108021,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16846
+ - uid: 16848
components:
- rot: 3.141592653589793 rad
pos: 52.5,22.5
@@ -107990,7 +108029,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16847
+ - uid: 16849
components:
- rot: 3.141592653589793 rad
pos: 52.5,21.5
@@ -107998,7 +108037,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16848
+ - uid: 16850
components:
- rot: 1.5707963267948966 rad
pos: 51.5,20.5
@@ -108006,7 +108045,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16849
+ - uid: 16851
components:
- rot: 1.5707963267948966 rad
pos: 53.5,20.5
@@ -108014,7 +108053,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16850
+ - uid: 16852
components:
- rot: 1.5707963267948966 rad
pos: 54.5,20.5
@@ -108022,7 +108061,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16851
+ - uid: 16853
components:
- rot: 1.5707963267948966 rad
pos: 56.5,20.5
@@ -108030,7 +108069,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16852
+ - uid: 16854
components:
- rot: 1.5707963267948966 rad
pos: 57.5,20.5
@@ -108038,7 +108077,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16853
+ - uid: 16855
components:
- rot: 3.141592653589793 rad
pos: 55.5,21.5
@@ -108046,7 +108085,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16854
+ - uid: 16856
components:
- rot: 3.141592653589793 rad
pos: 55.5,22.5
@@ -108054,7 +108093,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16855
+ - uid: 16857
components:
- rot: 3.141592653589793 rad
pos: 58.5,21.5
@@ -108062,7 +108101,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16856
+ - uid: 16858
components:
- rot: 3.141592653589793 rad
pos: 58.5,22.5
@@ -108070,7 +108109,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16857
+ - uid: 16859
components:
- rot: 1.5707963267948966 rad
pos: 54.5,21.5
@@ -108078,7 +108117,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16858
+ - uid: 16860
components:
- rot: 1.5707963267948966 rad
pos: 55.5,21.5
@@ -108086,7 +108125,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16859
+ - uid: 16861
components:
- rot: 1.5707963267948966 rad
pos: 57.5,21.5
@@ -108094,7 +108133,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16860
+ - uid: 16862
components:
- rot: 1.5707963267948966 rad
pos: 58.5,21.5
@@ -108102,7 +108141,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16861
+ - uid: 16863
components:
- rot: 3.141592653589793 rad
pos: 56.5,22.5
@@ -108110,7 +108149,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16862
+ - uid: 16864
components:
- rot: 3.141592653589793 rad
pos: 59.5,22.5
@@ -108118,7 +108157,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16863
+ - uid: 16865
components:
- rot: 3.141592653589793 rad
pos: 59.5,20.5
@@ -108126,7 +108165,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16864
+ - uid: 16866
components:
- rot: 3.141592653589793 rad
pos: 59.5,19.5
@@ -108134,7 +108173,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16865
+ - uid: 16867
components:
- rot: 1.5707963267948966 rad
pos: 60.5,18.5
@@ -108142,7 +108181,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16866
+ - uid: 16868
components:
- rot: -1.5707963267948966 rad
pos: 59.5,19.5
@@ -108150,7 +108189,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16867
+ - uid: 16869
components:
- rot: -1.5707963267948966 rad
pos: 60.5,19.5
@@ -108158,7 +108197,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16868
+ - uid: 16870
components:
- rot: -1.5707963267948966 rad
pos: 60.5,16.5
@@ -108166,7 +108205,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16869
+ - uid: 16871
components:
- rot: -1.5707963267948966 rad
pos: 59.5,16.5
@@ -108174,7 +108213,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16870
+ - uid: 16872
components:
- rot: -1.5707963267948966 rad
pos: 60.5,15.5
@@ -108182,21 +108221,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16871
+ - uid: 16873
components:
- pos: 49.5,14.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16872
+ - uid: 16874
components:
- pos: 49.5,13.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16873
+ - uid: 16875
components:
- rot: -1.5707963267948966 rad
pos: 51.5,13.5
@@ -108204,7 +108243,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16874
+ - uid: 16876
components:
- rot: -1.5707963267948966 rad
pos: 50.5,12.5
@@ -108212,7 +108251,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16875
+ - uid: 16877
components:
- rot: -1.5707963267948966 rad
pos: 51.5,12.5
@@ -108220,77 +108259,77 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16876
+ - uid: 16878
components:
- pos: 58.5,18.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16877
+ - uid: 16879
components:
- pos: 58.5,17.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16878
+ - uid: 16880
components:
- pos: 59.5,17.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16879
+ - uid: 16881
components:
- pos: 59.5,16.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16880
+ - uid: 16882
components:
- pos: 58.5,15.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16881
+ - uid: 16883
components:
- pos: 58.5,14.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16882
+ - uid: 16884
components:
- pos: 58.5,13.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16883
+ - uid: 16885
components:
- pos: 59.5,14.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16884
+ - uid: 16886
components:
- pos: 59.5,13.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16885
+ - uid: 16887
components:
- pos: 59.5,12.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16886
+ - uid: 16888
components:
- rot: 1.5707963267948966 rad
pos: 44.5,20.5
@@ -108298,7 +108337,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16887
+ - uid: 16889
components:
- rot: 1.5707963267948966 rad
pos: 43.5,20.5
@@ -108306,7 +108345,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16888
+ - uid: 16890
components:
- rot: 1.5707963267948966 rad
pos: 42.5,20.5
@@ -108314,7 +108353,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16889
+ - uid: 16891
components:
- rot: 1.5707963267948966 rad
pos: 41.5,20.5
@@ -108322,7 +108361,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16890
+ - uid: 16892
components:
- rot: -1.5707963267948966 rad
pos: 39.5,20.5
@@ -108330,7 +108369,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16891
+ - uid: 16893
components:
- rot: -1.5707963267948966 rad
pos: 38.5,20.5
@@ -108338,7 +108377,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16892
+ - uid: 16894
components:
- rot: -1.5707963267948966 rad
pos: 37.5,20.5
@@ -108346,7 +108385,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16893
+ - uid: 16895
components:
- rot: -1.5707963267948966 rad
pos: 36.5,20.5
@@ -108354,7 +108393,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16894
+ - uid: 16896
components:
- rot: -1.5707963267948966 rad
pos: 35.5,20.5
@@ -108362,7 +108401,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16895
+ - uid: 16897
components:
- rot: -1.5707963267948966 rad
pos: 49.5,19.5
@@ -108370,7 +108409,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16896
+ - uid: 16898
components:
- rot: -1.5707963267948966 rad
pos: 48.5,19.5
@@ -108378,7 +108417,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16897
+ - uid: 16899
components:
- rot: -1.5707963267948966 rad
pos: 47.5,19.5
@@ -108386,7 +108425,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16898
+ - uid: 16900
components:
- rot: -1.5707963267948966 rad
pos: 46.5,19.5
@@ -108394,7 +108433,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16899
+ - uid: 16901
components:
- rot: -1.5707963267948966 rad
pos: 45.5,19.5
@@ -108402,7 +108441,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16900
+ - uid: 16902
components:
- rot: -1.5707963267948966 rad
pos: 43.5,19.5
@@ -108410,7 +108449,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16901
+ - uid: 16903
components:
- rot: -1.5707963267948966 rad
pos: 42.5,19.5
@@ -108418,7 +108457,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16902
+ - uid: 16904
components:
- rot: -1.5707963267948966 rad
pos: 41.5,19.5
@@ -108426,7 +108465,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16903
+ - uid: 16905
components:
- rot: -1.5707963267948966 rad
pos: 40.5,19.5
@@ -108434,7 +108473,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16904
+ - uid: 16906
components:
- rot: -1.5707963267948966 rad
pos: 38.5,19.5
@@ -108442,7 +108481,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16905
+ - uid: 16907
components:
- rot: -1.5707963267948966 rad
pos: 37.5,19.5
@@ -108450,7 +108489,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16906
+ - uid: 16908
components:
- rot: -1.5707963267948966 rad
pos: 36.5,19.5
@@ -108458,7 +108497,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16907
+ - uid: 16909
components:
- rot: -1.5707963267948966 rad
pos: 35.5,19.5
@@ -108466,7 +108505,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16908
+ - uid: 16910
components:
- rot: -1.5707963267948966 rad
pos: 39.5,1.5
@@ -108474,7 +108513,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16909
+ - uid: 16911
components:
- rot: -1.5707963267948966 rad
pos: 40.5,1.5
@@ -108482,7 +108521,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16910
+ - uid: 16912
components:
- rot: -1.5707963267948966 rad
pos: 41.5,1.5
@@ -108490,7 +108529,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16911
+ - uid: 16913
components:
- rot: -1.5707963267948966 rad
pos: 43.5,1.5
@@ -108498,7 +108537,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16912
+ - uid: 16914
components:
- rot: -1.5707963267948966 rad
pos: 41.5,0.5
@@ -108506,7 +108545,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16913
+ - uid: 16915
components:
- rot: -1.5707963267948966 rad
pos: 42.5,0.5
@@ -108514,7 +108553,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16914
+ - uid: 16916
components:
- rot: -1.5707963267948966 rad
pos: 43.5,0.5
@@ -108522,7 +108561,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16915
+ - uid: 16917
components:
- rot: -1.5707963267948966 rad
pos: 44.5,1.5
@@ -108530,7 +108569,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16916
+ - uid: 16918
components:
- rot: -1.5707963267948966 rad
pos: 45.5,1.5
@@ -108538,7 +108577,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16917
+ - uid: 16919
components:
- rot: -1.5707963267948966 rad
pos: 46.5,1.5
@@ -108546,7 +108585,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16918
+ - uid: 16920
components:
- rot: -1.5707963267948966 rad
pos: 47.5,1.5
@@ -108554,7 +108593,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16919
+ - uid: 16921
components:
- rot: -1.5707963267948966 rad
pos: 48.5,1.5
@@ -108562,7 +108601,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16920
+ - uid: 16922
components:
- rot: -1.5707963267948966 rad
pos: 49.5,1.5
@@ -108570,7 +108609,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16921
+ - uid: 16923
components:
- rot: -1.5707963267948966 rad
pos: 50.5,1.5
@@ -108578,7 +108617,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16922
+ - uid: 16924
components:
- rot: -1.5707963267948966 rad
pos: 51.5,1.5
@@ -108586,7 +108625,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16923
+ - uid: 16925
components:
- rot: -1.5707963267948966 rad
pos: 46.5,0.5
@@ -108594,7 +108633,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16924
+ - uid: 16926
components:
- rot: -1.5707963267948966 rad
pos: 47.5,0.5
@@ -108602,7 +108641,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16925
+ - uid: 16927
components:
- rot: -1.5707963267948966 rad
pos: 48.5,0.5
@@ -108610,7 +108649,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16926
+ - uid: 16928
components:
- rot: -1.5707963267948966 rad
pos: 49.5,0.5
@@ -108618,7 +108657,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16927
+ - uid: 16929
components:
- rot: -1.5707963267948966 rad
pos: 50.5,0.5
@@ -108626,7 +108665,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16928
+ - uid: 16930
components:
- rot: -1.5707963267948966 rad
pos: 51.5,0.5
@@ -108634,7 +108673,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16929
+ - uid: 16931
components:
- rot: -1.5707963267948966 rad
pos: 52.5,0.5
@@ -108642,7 +108681,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16930
+ - uid: 16932
components:
- rot: -1.5707963267948966 rad
pos: 54.5,0.5
@@ -108650,7 +108689,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16931
+ - uid: 16933
components:
- rot: -1.5707963267948966 rad
pos: 55.5,0.5
@@ -108658,7 +108697,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16932
+ - uid: 16934
components:
- rot: -1.5707963267948966 rad
pos: 56.5,0.5
@@ -108666,7 +108705,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16933
+ - uid: 16935
components:
- rot: -1.5707963267948966 rad
pos: 53.5,1.5
@@ -108674,7 +108713,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16934
+ - uid: 16936
components:
- rot: -1.5707963267948966 rad
pos: 54.5,1.5
@@ -108682,7 +108721,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16935
+ - uid: 16937
components:
- rot: -1.5707963267948966 rad
pos: 55.5,1.5
@@ -108690,105 +108729,105 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16936
+ - uid: 16938
components:
- pos: 52.5,0.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16937
+ - uid: 16939
components:
- pos: 52.5,-0.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16938
+ - uid: 16940
components:
- pos: 52.5,-1.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16939
+ - uid: 16941
components:
- pos: 52.5,-2.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16940
+ - uid: 16942
components:
- pos: 52.5,-3.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16941
+ - uid: 16943
components:
- pos: 52.5,-4.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16942
+ - uid: 16944
components:
- pos: 52.5,-5.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16943
+ - uid: 16945
components:
- pos: 52.5,-6.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16944
+ - uid: 16946
components:
- pos: 52.5,-7.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16945
+ - uid: 16947
components:
- pos: 53.5,-0.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16946
+ - uid: 16948
components:
- pos: 53.5,-1.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16947
+ - uid: 16949
components:
- pos: 53.5,-2.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16948
+ - uid: 16950
components:
- pos: 53.5,-3.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16949
+ - uid: 16951
components:
- pos: 53.5,-4.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16950
+ - uid: 16952
components:
- rot: 1.5707963267948966 rad
pos: 54.5,-5.5
@@ -108796,7 +108835,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16951
+ - uid: 16953
components:
- rot: 1.5707963267948966 rad
pos: 55.5,-5.5
@@ -108804,21 +108843,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16952
+ - uid: 16954
components:
- pos: 42.5,0.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16953
+ - uid: 16955
components:
- pos: 42.5,-0.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16954
+ - uid: 16956
components:
- rot: 3.141592653589793 rad
pos: 44.5,-0.5
@@ -108826,7 +108865,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16955
+ - uid: 16957
components:
- rot: 3.141592653589793 rad
pos: 44.5,-2.5
@@ -108834,7 +108873,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16956
+ - uid: 16958
components:
- rot: 1.5707963267948966 rad
pos: 43.5,-3.5
@@ -108842,7 +108881,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16957
+ - uid: 16959
components:
- rot: 1.5707963267948966 rad
pos: 42.5,-3.5
@@ -108850,7 +108889,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16958
+ - uid: 16960
components:
- rot: 1.5707963267948966 rad
pos: 41.5,-3.5
@@ -108858,7 +108897,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16959
+ - uid: 16961
components:
- rot: 1.5707963267948966 rad
pos: 40.5,-3.5
@@ -108866,7 +108905,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16960
+ - uid: 16962
components:
- rot: 1.5707963267948966 rad
pos: 39.5,-3.5
@@ -108874,7 +108913,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16961
+ - uid: 16963
components:
- rot: 1.5707963267948966 rad
pos: 38.5,-3.5
@@ -108882,7 +108921,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16962
+ - uid: 16964
components:
- rot: 1.5707963267948966 rad
pos: 37.5,-3.5
@@ -108890,7 +108929,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16963
+ - uid: 16965
components:
- rot: 1.5707963267948966 rad
pos: 41.5,-2.5
@@ -108898,7 +108937,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16964
+ - uid: 16966
components:
- rot: 1.5707963267948966 rad
pos: 40.5,-2.5
@@ -108906,7 +108945,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16965
+ - uid: 16967
components:
- rot: 1.5707963267948966 rad
pos: 39.5,-2.5
@@ -108914,7 +108953,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16966
+ - uid: 16968
components:
- rot: 1.5707963267948966 rad
pos: 38.5,-2.5
@@ -108922,7 +108961,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16967
+ - uid: 16969
components:
- rot: 1.5707963267948966 rad
pos: 37.5,-2.5
@@ -108930,56 +108969,56 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16968
+ - uid: 16970
components:
- pos: 42.5,13.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16969
+ - uid: 16971
components:
- pos: 42.5,12.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16970
+ - uid: 16972
components:
- pos: 41.5,13.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16971
+ - uid: 16973
components:
- pos: 41.5,12.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16972
+ - uid: 16974
components:
- pos: 41.5,11.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16973
+ - uid: 16975
components:
- pos: 41.5,9.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16974
+ - uid: 16976
components:
- pos: 42.5,11.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16975
+ - uid: 16977
components:
- rot: -1.5707963267948966 rad
pos: 39.5,10.5
@@ -108987,49 +109026,49 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16976
+ - uid: 16978
components:
- pos: 24.5,-46.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16977
+ - uid: 16979
components:
- pos: 24.5,-47.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16978
+ - uid: 16980
components:
- pos: 24.5,-48.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16979
+ - uid: 16981
components:
- pos: 24.5,-49.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16980
+ - uid: 16982
components:
- pos: 24.5,-50.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16981
+ - uid: 16983
components:
- pos: 24.5,-51.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16982
+ - uid: 16984
components:
- rot: 3.141592653589793 rad
pos: 25.5,-59.5
@@ -109037,7 +109076,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16983
+ - uid: 16985
components:
- rot: 3.141592653589793 rad
pos: 25.5,-53.5
@@ -109045,7 +109084,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16984
+ - uid: 16986
components:
- rot: 3.141592653589793 rad
pos: 25.5,-54.5
@@ -109053,77 +109092,77 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16985
+ - uid: 16987
components:
- pos: 26.5,-46.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16986
+ - uid: 16988
components:
- pos: 26.5,-47.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16987
+ - uid: 16989
components:
- pos: 26.5,-48.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16988
+ - uid: 16990
components:
- pos: 26.5,-49.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16989
+ - uid: 16991
components:
- pos: 26.5,-50.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16990
+ - uid: 16992
components:
- pos: 26.5,-51.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16991
+ - uid: 16993
components:
- pos: 26.5,-52.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16992
+ - uid: 16994
components:
- pos: 26.5,-54.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16993
+ - uid: 16995
components:
- pos: 26.5,-55.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16994
+ - uid: 16996
components:
- pos: 26.5,-57.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16995
+ - uid: 16997
components:
- rot: 1.5707963267948966 rad
pos: 43.5,-2.5
@@ -109131,7 +109170,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16996
+ - uid: 16998
components:
- rot: 1.5707963267948966 rad
pos: 44.5,-2.5
@@ -109139,7 +109178,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16997
+ - uid: 16999
components:
- rot: 1.5707963267948966 rad
pos: 45.5,-2.5
@@ -109147,7 +109186,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16998
+ - uid: 17000
components:
- rot: 1.5707963267948966 rad
pos: 45.5,-1.5
@@ -109155,28 +109194,28 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16999
+ - uid: 17001
components:
- pos: 52.5,-8.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17000
+ - uid: 17002
components:
- pos: 52.5,-9.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17001
+ - uid: 17003
components:
- pos: 52.5,-10.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17002
+ - uid: 17004
components:
- rot: 1.5707963267948966 rad
pos: 53.5,-11.5
@@ -109184,7 +109223,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17003
+ - uid: 17005
components:
- rot: 1.5707963267948966 rad
pos: 54.5,-11.5
@@ -109192,7 +109231,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17004
+ - uid: 17006
components:
- rot: 1.5707963267948966 rad
pos: 56.5,-12.5
@@ -109200,7 +109239,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17005
+ - uid: 17007
components:
- rot: 1.5707963267948966 rad
pos: 56.5,-5.5
@@ -109208,35 +109247,35 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17006
+ - uid: 17008
components:
- pos: 62.5,-38.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17007
+ - uid: 17009
components:
- pos: 62.5,-37.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17008
+ - uid: 17010
components:
- pos: 73.5,-27.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17009
+ - uid: 17011
components:
- pos: 49.5,-56.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17010
+ - uid: 17012
components:
- rot: 1.5707963267948966 rad
pos: 42.5,-43.5
@@ -109244,7 +109283,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17011
+ - uid: 17013
components:
- rot: 1.5707963267948966 rad
pos: 43.5,-41.5
@@ -109252,7 +109291,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17012
+ - uid: 17014
components:
- rot: 1.5707963267948966 rad
pos: 45.5,-41.5
@@ -109260,7 +109299,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17013
+ - uid: 17015
components:
- rot: 1.5707963267948966 rad
pos: 46.5,-41.5
@@ -109268,7 +109307,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17014
+ - uid: 17016
components:
- rot: 1.5707963267948966 rad
pos: 47.5,-41.5
@@ -109276,7 +109315,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17015
+ - uid: 17017
components:
- rot: 1.5707963267948966 rad
pos: 48.5,-41.5
@@ -109284,7 +109323,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17016
+ - uid: 17018
components:
- rot: 1.5707963267948966 rad
pos: 44.5,-43.5
@@ -109292,7 +109331,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17017
+ - uid: 17019
components:
- rot: 1.5707963267948966 rad
pos: 46.5,-43.5
@@ -109300,7 +109339,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17018
+ - uid: 17020
components:
- rot: 1.5707963267948966 rad
pos: 47.5,-43.5
@@ -109308,7 +109347,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17019
+ - uid: 17021
components:
- rot: 1.5707963267948966 rad
pos: 48.5,-43.5
@@ -109316,63 +109355,63 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17020
+ - uid: 17022
components:
- pos: 43.5,-42.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17021
+ - uid: 17023
components:
- pos: 43.5,-40.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17022
+ - uid: 17024
components:
- pos: 43.5,-41.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17023
+ - uid: 17025
components:
- pos: 43.5,-39.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17024
+ - uid: 17026
components:
- pos: 43.5,-38.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17025
+ - uid: 17027
components:
- pos: 42.5,-39.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17026
+ - uid: 17028
components:
- pos: 42.5,-40.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17027
+ - uid: 17029
components:
- pos: 42.5,-38.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17028
+ - uid: 17030
components:
- rot: 3.141592653589793 rad
pos: 49.5,-44.5
@@ -109380,7 +109419,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17029
+ - uid: 17031
components:
- rot: 1.5707963267948966 rad
pos: 51.5,-41.5
@@ -109388,7 +109427,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17030
+ - uid: 17032
components:
- rot: 1.5707963267948966 rad
pos: 52.5,-41.5
@@ -109396,7 +109435,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17031
+ - uid: 17033
components:
- rot: 1.5707963267948966 rad
pos: 53.5,-41.5
@@ -109404,7 +109443,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17032
+ - uid: 17034
components:
- rot: 1.5707963267948966 rad
pos: 54.5,-41.5
@@ -109412,7 +109451,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17033
+ - uid: 17035
components:
- rot: 1.5707963267948966 rad
pos: 55.5,-41.5
@@ -109420,21 +109459,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17034
+ - uid: 17036
components:
- pos: 57.5,-42.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17035
+ - uid: 17037
components:
- pos: 57.5,-43.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17036
+ - uid: 17038
components:
- rot: 1.5707963267948966 rad
pos: 50.5,-45.5
@@ -109442,7 +109481,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17037
+ - uid: 17039
components:
- rot: 1.5707963267948966 rad
pos: 51.5,-45.5
@@ -109450,7 +109489,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17038
+ - uid: 17040
components:
- rot: -1.5707963267948966 rad
pos: 52.5,-45.5
@@ -109458,7 +109497,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17039
+ - uid: 17041
components:
- rot: 1.5707963267948966 rad
pos: 53.5,-45.5
@@ -109466,7 +109505,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17040
+ - uid: 17042
components:
- rot: 1.5707963267948966 rad
pos: 54.5,-45.5
@@ -109474,7 +109513,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17041
+ - uid: 17043
components:
- rot: 3.141592653589793 rad
pos: 55.5,-44.5
@@ -109482,7 +109521,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17042
+ - uid: 17044
components:
- rot: 3.141592653589793 rad
pos: 55.5,-43.5
@@ -109490,56 +109529,56 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17043
+ - uid: 17045
components:
- pos: 50.5,-42.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17044
+ - uid: 17046
components:
- pos: 50.5,-43.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17045
+ - uid: 17047
components:
- pos: 50.5,-44.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17046
+ - uid: 17048
components:
- pos: 50.5,-45.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17047
+ - uid: 17049
components:
- pos: 50.5,-47.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17048
+ - uid: 17050
components:
- pos: 50.5,-48.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17049
+ - uid: 17051
components:
- pos: 49.5,-53.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17050
+ - uid: 17052
components:
- rot: -1.5707963267948966 rad
pos: 48.5,-45.5
@@ -109547,7 +109586,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17051
+ - uid: 17053
components:
- rot: -1.5707963267948966 rad
pos: 47.5,-45.5
@@ -109555,7 +109594,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17052
+ - uid: 17054
components:
- rot: -1.5707963267948966 rad
pos: 46.5,-45.5
@@ -109563,7 +109602,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17053
+ - uid: 17055
components:
- rot: -1.5707963267948966 rad
pos: 45.5,-45.5
@@ -109571,7 +109610,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17054
+ - uid: 17056
components:
- rot: 1.5707963267948966 rad
pos: 49.5,-46.5
@@ -109579,7 +109618,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17055
+ - uid: 17057
components:
- rot: 1.5707963267948966 rad
pos: 48.5,-46.5
@@ -109587,7 +109626,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17056
+ - uid: 17058
components:
- rot: 1.5707963267948966 rad
pos: 47.5,-46.5
@@ -109595,7 +109634,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17057
+ - uid: 17059
components:
- rot: 1.5707963267948966 rad
pos: 46.5,-46.5
@@ -109603,7 +109642,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17058
+ - uid: 17060
components:
- rot: 1.5707963267948966 rad
pos: 45.5,-46.5
@@ -109611,7 +109650,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17059
+ - uid: 17061
components:
- rot: 3.141592653589793 rad
pos: 73.5,-32.5
@@ -109619,7 +109658,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17060
+ - uid: 17062
components:
- rot: -1.5707963267948966 rad
pos: 58.5,-44.5
@@ -109627,7 +109666,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17061
+ - uid: 17063
components:
- rot: -1.5707963267948966 rad
pos: 59.5,-44.5
@@ -109635,7 +109674,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17062
+ - uid: 17064
components:
- rot: -1.5707963267948966 rad
pos: 60.5,-44.5
@@ -109643,7 +109682,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17063
+ - uid: 17065
components:
- rot: -1.5707963267948966 rad
pos: 57.5,-45.5
@@ -109651,7 +109690,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17064
+ - uid: 17066
components:
- rot: -1.5707963267948966 rad
pos: 58.5,-45.5
@@ -109659,7 +109698,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17065
+ - uid: 17067
components:
- rot: -1.5707963267948966 rad
pos: 59.5,-45.5
@@ -109667,7 +109706,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17066
+ - uid: 17068
components:
- rot: -1.5707963267948966 rad
pos: 60.5,-45.5
@@ -109675,7 +109714,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17067
+ - uid: 17069
components:
- rot: -1.5707963267948966 rad
pos: 61.5,-45.5
@@ -109683,7 +109722,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17068
+ - uid: 17070
components:
- rot: -1.5707963267948966 rad
pos: 62.5,-45.5
@@ -109691,7 +109730,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17069
+ - uid: 17071
components:
- rot: 3.141592653589793 rad
pos: 61.5,-43.5
@@ -109699,7 +109738,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17070
+ - uid: 17072
components:
- rot: 3.141592653589793 rad
pos: 61.5,-42.5
@@ -109707,7 +109746,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17071
+ - uid: 17073
components:
- rot: 3.141592653589793 rad
pos: 61.5,-41.5
@@ -109715,7 +109754,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17072
+ - uid: 17074
components:
- rot: 3.141592653589793 rad
pos: 61.5,-40.5
@@ -109723,7 +109762,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17073
+ - uid: 17075
components:
- rot: 3.141592653589793 rad
pos: 61.5,-39.5
@@ -109731,7 +109770,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17074
+ - uid: 17076
components:
- rot: 3.141592653589793 rad
pos: 61.5,-37.5
@@ -109739,7 +109778,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17075
+ - uid: 17077
components:
- rot: 3.141592653589793 rad
pos: 61.5,-36.5
@@ -109747,7 +109786,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17076
+ - uid: 17078
components:
- rot: 3.141592653589793 rad
pos: 63.5,-44.5
@@ -109755,7 +109794,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17077
+ - uid: 17079
components:
- rot: 3.141592653589793 rad
pos: 63.5,-43.5
@@ -109763,28 +109802,28 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17078
+ - uid: 17080
components:
- pos: 62.5,-41.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17079
+ - uid: 17081
components:
- pos: 62.5,-40.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17080
+ - uid: 17082
components:
- pos: 62.5,-36.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17081
+ - uid: 17083
components:
- rot: -1.5707963267948966 rad
pos: 63.5,-35.5
@@ -109792,7 +109831,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17082
+ - uid: 17084
components:
- rot: 3.141592653589793 rad
pos: 61.5,-45.5
@@ -109800,7 +109839,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17083
+ - uid: 17085
components:
- rot: 1.5707963267948966 rad
pos: 62.5,-34.5
@@ -109808,7 +109847,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17084
+ - uid: 17086
components:
- rot: 1.5707963267948966 rad
pos: 61.5,-34.5
@@ -109816,21 +109855,21 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17085
+ - uid: 17087
components:
- pos: 64.5,-33.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17086
+ - uid: 17088
components:
- pos: 60.5,-34.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17087
+ - uid: 17089
components:
- rot: 3.141592653589793 rad
pos: 63.5,-30.5
@@ -109838,7 +109877,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17088
+ - uid: 17090
components:
- rot: 3.141592653589793 rad
pos: 63.5,-29.5
@@ -109846,7 +109885,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17089
+ - uid: 17091
components:
- rot: 3.141592653589793 rad
pos: 63.5,-28.5
@@ -109854,7 +109893,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17090
+ - uid: 17092
components:
- rot: 3.141592653589793 rad
pos: 63.5,-27.5
@@ -109862,7 +109901,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17091
+ - uid: 17093
components:
- rot: 3.141592653589793 rad
pos: 61.5,-31.5
@@ -109870,7 +109909,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17092
+ - uid: 17094
components:
- rot: 3.141592653589793 rad
pos: 61.5,-30.5
@@ -109878,7 +109917,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17093
+ - uid: 17095
components:
- rot: 3.141592653589793 rad
pos: 61.5,-29.5
@@ -109886,7 +109925,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17094
+ - uid: 17096
components:
- rot: 3.141592653589793 rad
pos: 61.5,-28.5
@@ -109894,7 +109933,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17095
+ - uid: 17097
components:
- rot: 3.141592653589793 rad
pos: 61.5,-27.5
@@ -109902,7 +109941,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17096
+ - uid: 17098
components:
- rot: 3.141592653589793 rad
pos: 61.5,-26.5
@@ -109910,7 +109949,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17097
+ - uid: 17099
components:
- rot: 3.141592653589793 rad
pos: 61.5,-25.5
@@ -109918,399 +109957,399 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17098
+ - uid: 17100
components:
- pos: 61.5,-23.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17099
+ - uid: 17101
components:
- pos: 61.5,-22.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17100
+ - uid: 17102
components:
- pos: 61.5,-21.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17101
+ - uid: 17103
components:
- pos: 61.5,-20.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17102
+ - uid: 17104
components:
- pos: 61.5,-19.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17103
+ - uid: 17105
components:
- pos: 61.5,-18.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17104
+ - uid: 17106
components:
- pos: 61.5,-17.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17105
+ - uid: 17107
components:
- pos: 61.5,-16.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17106
+ - uid: 17108
components:
- pos: 61.5,-15.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17107
+ - uid: 17109
components:
- pos: 61.5,-14.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17108
+ - uid: 17110
components:
- pos: 61.5,-13.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17109
+ - uid: 17111
components:
- pos: 61.5,-12.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17110
+ - uid: 17112
components:
- pos: 61.5,-11.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17111
+ - uid: 17113
components:
- pos: 62.5,-7.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17112
+ - uid: 17114
components:
- pos: 62.5,-8.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17113
+ - uid: 17115
components:
- pos: 62.5,-9.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17114
+ - uid: 17116
components:
- pos: 61.5,-5.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17115
+ - uid: 17117
components:
- pos: 61.5,-4.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17116
+ - uid: 17118
components:
- pos: 61.5,-3.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17117
+ - uid: 17119
components:
- pos: 63.5,-25.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17118
+ - uid: 17120
components:
- pos: 63.5,-24.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17119
+ - uid: 17121
components:
- pos: 63.5,-23.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17120
+ - uid: 17122
components:
- pos: 63.5,-22.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17121
+ - uid: 17123
components:
- pos: 63.5,-21.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17122
+ - uid: 17124
components:
- pos: 63.5,-20.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17123
+ - uid: 17125
components:
- pos: 63.5,-19.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17124
+ - uid: 17126
components:
- pos: 63.5,-18.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17125
+ - uid: 17127
components:
- pos: 63.5,-17.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17126
+ - uid: 17128
components:
- pos: 63.5,-16.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17127
+ - uid: 17129
components:
- pos: 63.5,-15.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17128
+ - uid: 17130
components:
- pos: 63.5,-14.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17129
+ - uid: 17131
components:
- pos: 63.5,-13.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17130
+ - uid: 17132
components:
- pos: 63.5,-12.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17131
+ - uid: 17133
components:
- pos: 63.5,-10.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17132
+ - uid: 17134
components:
- pos: 63.5,-9.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17133
+ - uid: 17135
components:
- pos: 63.5,-8.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17134
+ - uid: 17136
components:
- pos: 63.5,-7.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17135
+ - uid: 17137
components:
- pos: 63.5,-6.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17136
+ - uid: 17138
components:
- pos: 63.5,-5.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17137
+ - uid: 17139
components:
- pos: 63.5,-4.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17138
+ - uid: 17140
components:
- pos: 63.5,-3.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17139
+ - uid: 17141
components:
- pos: 64.5,-48.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17140
+ - uid: 17142
components:
- pos: 64.5,-49.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17141
+ - uid: 17143
components:
- pos: 64.5,-50.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17142
+ - uid: 17144
components:
- pos: 64.5,-51.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17143
+ - uid: 17145
components:
- pos: 60.5,-47.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17144
+ - uid: 17146
components:
- pos: 60.5,-49.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17145
+ - uid: 17147
components:
- pos: 60.5,-50.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17146
+ - uid: 17148
components:
- pos: 60.5,-51.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17147
+ - uid: 17149
components:
- pos: 50.5,-49.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17148
+ - uid: 17150
components:
- pos: 49.5,-57.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17149
+ - uid: 17151
components:
- pos: 49.5,-58.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17150
+ - uid: 17152
components:
- pos: 49.5,-59.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17151
+ - uid: 17153
components:
- pos: 50.5,-50.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17152
+ - uid: 17154
components:
- pos: 50.5,-51.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17153
+ - uid: 17155
components:
- pos: 49.5,-55.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17154
+ - uid: 17156
components:
- rot: 1.5707963267948966 rad
pos: 44.5,-45.5
@@ -110318,7 +110357,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17155
+ - uid: 17157
components:
- rot: 1.5707963267948966 rad
pos: 43.5,-45.5
@@ -110326,7 +110365,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17156
+ - uid: 17158
components:
- rot: 1.5707963267948966 rad
pos: 65.5,-47.5
@@ -110334,7 +110373,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17157
+ - uid: 17159
components:
- rot: 1.5707963267948966 rad
pos: 66.5,-47.5
@@ -110342,7 +110381,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17158
+ - uid: 17160
components:
- rot: 1.5707963267948966 rad
pos: 67.5,-47.5
@@ -110350,7 +110389,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17159
+ - uid: 17161
components:
- rot: 1.5707963267948966 rad
pos: 68.5,-47.5
@@ -110358,7 +110397,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17160
+ - uid: 17162
components:
- rot: 1.5707963267948966 rad
pos: 68.5,-48.5
@@ -110366,7 +110405,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17161
+ - uid: 17163
components:
- rot: 1.5707963267948966 rad
pos: 67.5,-48.5
@@ -110374,7 +110413,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17162
+ - uid: 17164
components:
- rot: 1.5707963267948966 rad
pos: 66.5,-48.5
@@ -110382,7 +110421,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17163
+ - uid: 17165
components:
- rot: 1.5707963267948966 rad
pos: 65.5,-48.5
@@ -110390,7 +110429,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17164
+ - uid: 17166
components:
- rot: 1.5707963267948966 rad
pos: 64.5,-48.5
@@ -110398,7 +110437,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17165
+ - uid: 17167
components:
- rot: 1.5707963267948966 rad
pos: 63.5,-48.5
@@ -110406,7 +110445,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17166
+ - uid: 17168
components:
- rot: 1.5707963267948966 rad
pos: 62.5,-48.5
@@ -110414,7 +110453,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17167
+ - uid: 17169
components:
- rot: 1.5707963267948966 rad
pos: 61.5,-48.5
@@ -110422,7 +110461,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17168
+ - uid: 17170
components:
- rot: 1.5707963267948966 rad
pos: 70.5,-48.5
@@ -110430,7 +110469,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17169
+ - uid: 17171
components:
- rot: 1.5707963267948966 rad
pos: 69.5,-48.5
@@ -110438,7 +110477,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17170
+ - uid: 17172
components:
- rot: 3.141592653589793 rad
pos: 25.5,-55.5
@@ -110446,7 +110485,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17171
+ - uid: 17173
components:
- rot: 1.5707963267948966 rad
pos: 27.5,-58.5
@@ -110454,7 +110493,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17172
+ - uid: 17174
components:
- rot: 1.5707963267948966 rad
pos: 28.5,-58.5
@@ -110462,7 +110501,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17173
+ - uid: 17175
components:
- rot: 3.141592653589793 rad
pos: 25.5,-56.5
@@ -110470,7 +110509,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17174
+ - uid: 17176
components:
- rot: 1.5707963267948966 rad
pos: 26.5,-60.5
@@ -110478,7 +110517,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17175
+ - uid: 17177
components:
- rot: 1.5707963267948966 rad
pos: 27.5,-60.5
@@ -110486,7 +110525,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17176
+ - uid: 17178
components:
- rot: 1.5707963267948966 rad
pos: 28.5,-60.5
@@ -110494,7 +110533,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17177
+ - uid: 17179
components:
- rot: 1.5707963267948966 rad
pos: 29.5,-60.5
@@ -110502,7 +110541,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17178
+ - uid: 17180
components:
- rot: 1.5707963267948966 rad
pos: 30.5,-60.5
@@ -110510,7 +110549,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17179
+ - uid: 17181
components:
- rot: 1.5707963267948966 rad
pos: 31.5,-60.5
@@ -110518,7 +110557,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17180
+ - uid: 17182
components:
- rot: 3.141592653589793 rad
pos: 29.5,-57.5
@@ -110526,56 +110565,56 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17181
+ - uid: 17183
components:
- pos: 29.5,-55.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17182
+ - uid: 17184
components:
- pos: 29.5,-54.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17183
+ - uid: 17185
components:
- pos: 29.5,-53.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17184
+ - uid: 17186
components:
- pos: 29.5,-51.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17185
+ - uid: 17187
components:
- pos: 29.5,-50.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17186
+ - uid: 17188
components:
- pos: 29.5,-49.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17187
+ - uid: 17189
components:
- pos: 29.5,-48.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17188
+ - uid: 17190
components:
- rot: -1.5707963267948966 rad
pos: 30.5,-47.5
@@ -110583,7 +110622,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17189
+ - uid: 17191
components:
- rot: -1.5707963267948966 rad
pos: 31.5,-47.5
@@ -110591,7 +110630,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17190
+ - uid: 17192
components:
- rot: -1.5707963267948966 rad
pos: 32.5,-47.5
@@ -110599,7 +110638,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17191
+ - uid: 17193
components:
- rot: 3.141592653589793 rad
pos: 29.5,-46.5
@@ -110607,7 +110646,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17192
+ - uid: 17194
components:
- rot: 1.5707963267948966 rad
pos: 30.5,-58.5
@@ -110615,49 +110654,49 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17193
+ - uid: 17195
components:
- pos: 32.5,-59.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17194
+ - uid: 17196
components:
- pos: 32.5,-58.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17195
+ - uid: 17197
components:
- pos: 32.5,-57.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17196
+ - uid: 17198
components:
- pos: 32.5,-55.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17197
+ - uid: 17199
components:
- pos: 32.5,-54.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17198
+ - uid: 17200
components:
- pos: 32.5,-53.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17199
+ - uid: 17201
components:
- rot: 1.5707963267948966 rad
pos: 33.5,-52.5
@@ -110665,7 +110704,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17200
+ - uid: 17202
components:
- rot: 3.141592653589793 rad
pos: 34.5,-51.5
@@ -110673,7 +110712,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17201
+ - uid: 17203
components:
- rot: 3.141592653589793 rad
pos: 34.5,-50.5
@@ -110681,7 +110720,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17202
+ - uid: 17204
components:
- rot: -1.5707963267948966 rad
pos: 33.5,-49.5
@@ -110689,7 +110728,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17203
+ - uid: 17205
components:
- rot: 3.141592653589793 rad
pos: 34.5,-47.5
@@ -110697,7 +110736,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17204
+ - uid: 17206
components:
- rot: 3.141592653589793 rad
pos: 34.5,-46.5
@@ -110705,7 +110744,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17205
+ - uid: 17207
components:
- rot: -1.5707963267948966 rad
pos: 32.5,-49.5
@@ -110713,7 +110752,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17206
+ - uid: 17208
components:
- rot: -1.5707963267948966 rad
pos: 31.5,-49.5
@@ -110721,7 +110760,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17207
+ - uid: 17209
components:
- rot: -1.5707963267948966 rad
pos: 30.5,-49.5
@@ -110729,7 +110768,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17208
+ - uid: 17210
components:
- rot: -1.5707963267948966 rad
pos: 29.5,-49.5
@@ -110737,33 +110776,33 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17209
+ - uid: 17211
components:
- rot: 3.141592653589793 rad
pos: 48.5,-59.5
parent: 2
type: Transform
- - uid: 17210
+ - uid: 17212
components:
- rot: 3.141592653589793 rad
pos: 51.5,-59.5
parent: 2
type: Transform
- - uid: 17211
+ - uid: 17213
components:
- pos: 49.5,-60.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17212
+ - uid: 17214
components:
- pos: 49.5,-62.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17213
+ - uid: 17215
components:
- rot: -1.5707963267948966 rad
pos: -14.5,7.5
@@ -110771,7 +110810,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17214
+ - uid: 17216
components:
- rot: -1.5707963267948966 rad
pos: -15.5,7.5
@@ -110779,7 +110818,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17215
+ - uid: 17217
components:
- rot: -1.5707963267948966 rad
pos: -16.5,7.5
@@ -110787,7 +110826,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17216
+ - uid: 17218
components:
- rot: -1.5707963267948966 rad
pos: -17.5,7.5
@@ -110795,7 +110834,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17217
+ - uid: 17219
components:
- rot: -1.5707963267948966 rad
pos: -18.5,7.5
@@ -110803,7 +110842,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17218
+ - uid: 17220
components:
- rot: 1.5707963267948966 rad
pos: -15.5,1.5
@@ -110811,7 +110850,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17219
+ - uid: 17221
components:
- rot: 1.5707963267948966 rad
pos: -16.5,1.5
@@ -110819,21 +110858,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17220
+ - uid: 17222
components:
- pos: -19.5,6.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17221
+ - uid: 17223
components:
- pos: -19.5,5.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17222
+ - uid: 17224
components:
- rot: 1.5707963267948966 rad
pos: -9.5,-25.5
@@ -110841,7 +110880,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17223
+ - uid: 17225
components:
- rot: 1.5707963267948966 rad
pos: -10.5,-25.5
@@ -110849,7 +110888,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17224
+ - uid: 17226
components:
- rot: 1.5707963267948966 rad
pos: -11.5,-25.5
@@ -110857,7 +110896,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17225
+ - uid: 17227
components:
- rot: 1.5707963267948966 rad
pos: -12.5,-25.5
@@ -110865,7 +110904,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17226
+ - uid: 17228
components:
- rot: 1.5707963267948966 rad
pos: -13.5,-25.5
@@ -110873,7 +110912,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17227
+ - uid: 17229
components:
- rot: 1.5707963267948966 rad
pos: -14.5,-25.5
@@ -110881,7 +110920,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17228
+ - uid: 17230
components:
- rot: 1.5707963267948966 rad
pos: -15.5,-25.5
@@ -110889,7 +110928,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17229
+ - uid: 17231
components:
- rot: 1.5707963267948966 rad
pos: -16.5,-25.5
@@ -110897,7 +110936,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17230
+ - uid: 17232
components:
- rot: 1.5707963267948966 rad
pos: -17.5,-25.5
@@ -110905,7 +110944,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17231
+ - uid: 17233
components:
- rot: 1.5707963267948966 rad
pos: -12.5,-27.5
@@ -110913,7 +110952,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17232
+ - uid: 17234
components:
- rot: 1.5707963267948966 rad
pos: -13.5,-27.5
@@ -110921,7 +110960,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17233
+ - uid: 17235
components:
- rot: 1.5707963267948966 rad
pos: -14.5,-27.5
@@ -110929,7 +110968,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17234
+ - uid: 17236
components:
- rot: 1.5707963267948966 rad
pos: -15.5,-27.5
@@ -110937,7 +110976,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17235
+ - uid: 17237
components:
- rot: 1.5707963267948966 rad
pos: -16.5,-27.5
@@ -110945,7 +110984,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17236
+ - uid: 17238
components:
- rot: 1.5707963267948966 rad
pos: -17.5,-27.5
@@ -110953,7 +110992,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17237
+ - uid: 17239
components:
- rot: -1.5707963267948966 rad
pos: -18.5,-27.5
@@ -110961,7 +111000,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17238
+ - uid: 17240
components:
- rot: -1.5707963267948966 rad
pos: -19.5,-27.5
@@ -110969,7 +111008,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17239
+ - uid: 17241
components:
- rot: 3.141592653589793 rad
pos: -18.5,-26.5
@@ -110977,7 +111016,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17240
+ - uid: 17242
components:
- rot: 3.141592653589793 rad
pos: -18.5,-27.5
@@ -110985,7 +111024,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17241
+ - uid: 17243
components:
- rot: 3.141592653589793 rad
pos: -18.5,-28.5
@@ -110993,7 +111032,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17242
+ - uid: 17244
components:
- rot: 3.141592653589793 rad
pos: -18.5,-29.5
@@ -111001,7 +111040,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17243
+ - uid: 17245
components:
- rot: 3.141592653589793 rad
pos: -18.5,-30.5
@@ -111009,7 +111048,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17244
+ - uid: 17246
components:
- rot: 3.141592653589793 rad
pos: -20.5,-28.5
@@ -111017,7 +111056,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17245
+ - uid: 17247
components:
- rot: 3.141592653589793 rad
pos: -20.5,-29.5
@@ -111025,7 +111064,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17246
+ - uid: 17248
components:
- rot: 3.141592653589793 rad
pos: -20.5,-30.5
@@ -111033,7 +111072,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17247
+ - uid: 17249
components:
- rot: 3.141592653589793 rad
pos: -20.5,-31.5
@@ -111041,7 +111080,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17248
+ - uid: 17250
components:
- rot: 3.141592653589793 rad
pos: -20.5,-32.5
@@ -111049,7 +111088,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17249
+ - uid: 17251
components:
- rot: 3.141592653589793 rad
pos: -20.5,-26.5
@@ -111057,7 +111096,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17250
+ - uid: 17252
components:
- rot: 3.141592653589793 rad
pos: -20.5,-25.5
@@ -111065,7 +111104,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17251
+ - uid: 17253
components:
- rot: 3.141592653589793 rad
pos: -20.5,-24.5
@@ -111073,7 +111112,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17252
+ - uid: 17254
components:
- rot: 3.141592653589793 rad
pos: -20.5,-23.5
@@ -111081,7 +111120,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17253
+ - uid: 17255
components:
- rot: 3.141592653589793 rad
pos: -18.5,-24.5
@@ -111089,7 +111128,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17254
+ - uid: 17256
components:
- rot: 3.141592653589793 rad
pos: -18.5,-23.5
@@ -111097,7 +111136,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17255
+ - uid: 17257
components:
- rot: 3.141592653589793 rad
pos: -18.5,-22.5
@@ -111105,7 +111144,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17256
+ - uid: 17258
components:
- rot: 3.141592653589793 rad
pos: -18.5,-20.5
@@ -111113,7 +111152,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17257
+ - uid: 17259
components:
- rot: 3.141592653589793 rad
pos: -20.5,-21.5
@@ -111121,7 +111160,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17258
+ - uid: 17260
components:
- rot: 3.141592653589793 rad
pos: -20.5,-20.5
@@ -111129,7 +111168,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17259
+ - uid: 17261
components:
- rot: 3.141592653589793 rad
pos: -20.5,-19.5
@@ -111137,7 +111176,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17260
+ - uid: 17262
components:
- rot: 3.141592653589793 rad
pos: -18.5,-18.5
@@ -111145,7 +111184,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17261
+ - uid: 17263
components:
- rot: 3.141592653589793 rad
pos: -18.5,-17.5
@@ -111153,14 +111192,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17262
+ - uid: 17264
components:
- pos: -23.5,-15.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17263
+ - uid: 17265
components:
- rot: 3.141592653589793 rad
pos: -20.5,-17.5
@@ -111168,7 +111207,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17264
+ - uid: 17266
components:
- rot: 3.141592653589793 rad
pos: -20.5,-16.5
@@ -111176,7 +111215,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17265
+ - uid: 17267
components:
- rot: 3.141592653589793 rad
pos: -20.5,-15.5
@@ -111184,7 +111223,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17266
+ - uid: 17268
components:
- rot: 3.141592653589793 rad
pos: -18.5,-15.5
@@ -111192,7 +111231,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17267
+ - uid: 17269
components:
- rot: 3.141592653589793 rad
pos: -18.5,-14.5
@@ -111200,7 +111239,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17268
+ - uid: 17270
components:
- rot: 3.141592653589793 rad
pos: -18.5,-13.5
@@ -111208,7 +111247,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17269
+ - uid: 17271
components:
- rot: 3.141592653589793 rad
pos: -18.5,-12.5
@@ -111216,7 +111255,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17270
+ - uid: 17272
components:
- rot: 3.141592653589793 rad
pos: -18.5,-11.5
@@ -111224,7 +111263,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17271
+ - uid: 17273
components:
- rot: -1.5707963267948966 rad
pos: -21.5,-13.5
@@ -111232,7 +111271,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17272
+ - uid: 17274
components:
- rot: -1.5707963267948966 rad
pos: -22.5,-13.5
@@ -111240,7 +111279,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17273
+ - uid: 17275
components:
- rot: -1.5707963267948966 rad
pos: -23.5,-13.5
@@ -111248,7 +111287,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17274
+ - uid: 17276
components:
- rot: -1.5707963267948966 rad
pos: -19.5,-10.5
@@ -111256,7 +111295,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17275
+ - uid: 17277
components:
- rot: -1.5707963267948966 rad
pos: -20.5,-10.5
@@ -111264,7 +111303,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17276
+ - uid: 17278
components:
- rot: -1.5707963267948966 rad
pos: -21.5,-10.5
@@ -111272,7 +111311,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17277
+ - uid: 17279
components:
- rot: -1.5707963267948966 rad
pos: -22.5,-10.5
@@ -111280,7 +111319,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17278
+ - uid: 17280
components:
- rot: -1.5707963267948966 rad
pos: -25.5,-10.5
@@ -111288,7 +111327,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17279
+ - uid: 17281
components:
- rot: -1.5707963267948966 rad
pos: -26.5,-10.5
@@ -111296,7 +111335,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17280
+ - uid: 17282
components:
- rot: -1.5707963267948966 rad
pos: -27.5,-10.5
@@ -111304,7 +111343,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17281
+ - uid: 17283
components:
- rot: 1.5707963267948966 rad
pos: -26.5,-13.5
@@ -111312,7 +111351,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17282
+ - uid: 17284
components:
- rot: 1.5707963267948966 rad
pos: -27.5,-13.5
@@ -111320,91 +111359,91 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17283
+ - uid: 17285
components:
- pos: -20.5,-12.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17284
+ - uid: 17286
components:
- pos: -20.5,-11.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17285
+ - uid: 17287
components:
- pos: -20.5,-10.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17286
+ - uid: 17288
components:
- pos: -20.5,-9.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17287
+ - uid: 17289
components:
- pos: -20.5,-8.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17288
+ - uid: 17290
components:
- pos: -20.5,-7.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17289
+ - uid: 17291
components:
- pos: -20.5,-6.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17290
+ - uid: 17292
components:
- pos: -18.5,-9.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17291
+ - uid: 17293
components:
- pos: -18.5,-8.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17292
+ - uid: 17294
components:
- pos: -18.5,-7.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17293
+ - uid: 17295
components:
- pos: -18.5,-6.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17294
+ - uid: 17296
components:
- pos: -18.5,-5.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17295
+ - uid: 17297
components:
- rot: -1.5707963267948966 rad
pos: -21.5,-22.5
@@ -111412,7 +111451,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17296
+ - uid: 17298
components:
- rot: -1.5707963267948966 rad
pos: -22.5,-22.5
@@ -111420,7 +111459,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17297
+ - uid: 17299
components:
- rot: -1.5707963267948966 rad
pos: -23.5,-22.5
@@ -111428,7 +111467,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17298
+ - uid: 17300
components:
- rot: -1.5707963267948966 rad
pos: -19.5,-21.5
@@ -111436,7 +111475,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17299
+ - uid: 17301
components:
- rot: -1.5707963267948966 rad
pos: -20.5,-21.5
@@ -111444,7 +111483,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17300
+ - uid: 17302
components:
- rot: -1.5707963267948966 rad
pos: -21.5,-21.5
@@ -111452,7 +111491,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17301
+ - uid: 17303
components:
- rot: -1.5707963267948966 rad
pos: -22.5,-21.5
@@ -111460,28 +111499,28 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17302
+ - uid: 17304
components:
- pos: -25.5,-15.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17303
+ - uid: 17305
components:
- pos: -25.5,-16.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17304
+ - uid: 17306
components:
- pos: -25.5,-14.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17305
+ - uid: 17307
components:
- rot: 1.5707963267948966 rad
pos: -26.5,-17.5
@@ -111489,7 +111528,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17306
+ - uid: 17308
components:
- rot: 1.5707963267948966 rad
pos: -27.5,-17.5
@@ -111497,7 +111536,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17307
+ - uid: 17309
components:
- rot: 3.141592653589793 rad
pos: -20.5,-18.5
@@ -111505,42 +111544,42 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17308
+ - uid: 17310
components:
- pos: -23.5,-14.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17309
+ - uid: 17311
components:
- pos: -23.5,-13.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17310
+ - uid: 17312
components:
- pos: -23.5,-12.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17311
+ - uid: 17313
components:
- pos: -23.5,-11.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17312
+ - uid: 17314
components:
- pos: -18.5,-16.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17313
+ - uid: 17315
components:
- rot: -1.5707963267948966 rad
pos: -24.5,-16.5
@@ -111548,7 +111587,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17314
+ - uid: 17316
components:
- rot: -1.5707963267948966 rad
pos: -25.5,-16.5
@@ -111556,7 +111595,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17315
+ - uid: 17317
components:
- rot: -1.5707963267948966 rad
pos: -26.5,-16.5
@@ -111564,7 +111603,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17316
+ - uid: 17318
components:
- rot: -1.5707963267948966 rad
pos: -27.5,-16.5
@@ -111572,7 +111611,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17317
+ - uid: 17319
components:
- rot: -1.5707963267948966 rad
pos: -28.5,-16.5
@@ -111580,7 +111619,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17318
+ - uid: 17320
components:
- rot: -1.5707963267948966 rad
pos: -17.5,-42.5
@@ -111588,7 +111627,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17319
+ - uid: 17321
components:
- rot: -1.5707963267948966 rad
pos: -16.5,-42.5
@@ -111596,7 +111635,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17320
+ - uid: 17322
components:
- rot: 1.5707963267948966 rad
pos: 31.5,-58.5
@@ -111604,7 +111643,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17321
+ - uid: 17323
components:
- rot: 1.5707963267948966 rad
pos: 32.5,-58.5
@@ -111612,7 +111651,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17322
+ - uid: 17324
components:
- rot: 1.5707963267948966 rad
pos: 33.5,-58.5
@@ -111620,7 +111659,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17323
+ - uid: 17325
components:
- rot: 1.5707963267948966 rad
pos: 34.5,-58.5
@@ -111628,7 +111667,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17324
+ - uid: 17326
components:
- rot: 1.5707963267948966 rad
pos: 35.5,-58.5
@@ -111636,7 +111675,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17325
+ - uid: 17327
components:
- rot: 1.5707963267948966 rad
pos: 36.5,-58.5
@@ -111644,7 +111683,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17326
+ - uid: 17328
components:
- rot: 1.5707963267948966 rad
pos: 33.5,-60.5
@@ -111652,7 +111691,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17327
+ - uid: 17329
components:
- rot: 1.5707963267948966 rad
pos: 34.5,-60.5
@@ -111660,7 +111699,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17328
+ - uid: 17330
components:
- rot: 1.5707963267948966 rad
pos: 35.5,-60.5
@@ -111668,7 +111707,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17329
+ - uid: 17331
components:
- rot: 1.5707963267948966 rad
pos: 36.5,-60.5
@@ -111676,7 +111715,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17330
+ - uid: 17332
components:
- rot: 1.5707963267948966 rad
pos: 37.5,-60.5
@@ -111684,7 +111723,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17331
+ - uid: 17333
components:
- rot: -1.5707963267948966 rad
pos: 50.5,-61.5
@@ -111692,7 +111731,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17332
+ - uid: 17334
components:
- rot: -1.5707963267948966 rad
pos: 51.5,-61.5
@@ -111700,7 +111739,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17333
+ - uid: 17335
components:
- rot: -1.5707963267948966 rad
pos: 52.5,-61.5
@@ -111708,7 +111747,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17334
+ - uid: 17336
components:
- rot: -1.5707963267948966 rad
pos: 53.5,-61.5
@@ -111716,7 +111755,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17335
+ - uid: 17337
components:
- rot: -1.5707963267948966 rad
pos: 37.5,-58.5
@@ -111724,7 +111763,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17336
+ - uid: 17338
components:
- rot: -1.5707963267948966 rad
pos: 38.5,-60.5
@@ -111732,7 +111771,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17337
+ - uid: 17339
components:
- rot: -1.5707963267948966 rad
pos: 39.5,-60.5
@@ -111740,7 +111779,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17338
+ - uid: 17340
components:
- rot: 3.141592653589793 rad
pos: 38.5,-57.5
@@ -111748,7 +111787,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17339
+ - uid: 17341
components:
- rot: 3.141592653589793 rad
pos: 38.5,-56.5
@@ -111756,7 +111795,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17340
+ - uid: 17342
components:
- rot: 3.141592653589793 rad
pos: 40.5,-59.5
@@ -111764,7 +111803,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17341
+ - uid: 17343
components:
- rot: 3.141592653589793 rad
pos: 40.5,-58.5
@@ -111772,7 +111811,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17342
+ - uid: 17344
components:
- rot: 3.141592653589793 rad
pos: 40.5,-57.5
@@ -111780,7 +111819,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17343
+ - uid: 17345
components:
- rot: 3.141592653589793 rad
pos: 40.5,-56.5
@@ -111788,7 +111827,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17344
+ - uid: 17346
components:
- rot: 3.141592653589793 rad
pos: 38.5,-59.5
@@ -111796,7 +111835,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17345
+ - uid: 17347
components:
- rot: 3.141592653589793 rad
pos: 38.5,-60.5
@@ -111804,7 +111843,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17346
+ - uid: 17348
components:
- rot: 3.141592653589793 rad
pos: 38.5,-61.5
@@ -111812,7 +111851,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17347
+ - uid: 17349
components:
- rot: 3.141592653589793 rad
pos: 38.5,-62.5
@@ -111820,7 +111859,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17348
+ - uid: 17350
components:
- rot: 3.141592653589793 rad
pos: 40.5,-61.5
@@ -111828,7 +111867,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17349
+ - uid: 17351
components:
- rot: 3.141592653589793 rad
pos: 40.5,-62.5
@@ -111836,7 +111875,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17350
+ - uid: 17352
components:
- rot: 3.141592653589793 rad
pos: 40.5,-63.5
@@ -111844,7 +111883,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17351
+ - uid: 17353
components:
- rot: 3.141592653589793 rad
pos: 40.5,-64.5
@@ -111852,7 +111891,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17352
+ - uid: 17354
components:
- rot: 3.141592653589793 rad
pos: 38.5,-64.5
@@ -111860,7 +111899,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17353
+ - uid: 17355
components:
- rot: 3.141592653589793 rad
pos: 38.5,-65.5
@@ -111868,7 +111907,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17354
+ - uid: 17356
components:
- rot: 3.141592653589793 rad
pos: 38.5,-66.5
@@ -111876,7 +111915,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17355
+ - uid: 17357
components:
- rot: 3.141592653589793 rad
pos: 38.5,-67.5
@@ -111884,7 +111923,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17356
+ - uid: 17358
components:
- rot: 3.141592653589793 rad
pos: 38.5,-68.5
@@ -111892,7 +111931,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17357
+ - uid: 17359
components:
- rot: 3.141592653589793 rad
pos: 40.5,-66.5
@@ -111900,7 +111939,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17358
+ - uid: 17360
components:
- rot: 3.141592653589793 rad
pos: 40.5,-67.5
@@ -111908,7 +111947,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17359
+ - uid: 17361
components:
- rot: 3.141592653589793 rad
pos: 40.5,-68.5
@@ -111916,14 +111955,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17360
+ - uid: 17362
components:
- pos: 50.5,-53.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17361
+ - uid: 17363
components:
- rot: 3.141592653589793 rad
pos: 52.5,-56.5
@@ -111931,7 +111970,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17362
+ - uid: 17364
components:
- rot: 3.141592653589793 rad
pos: 52.5,-55.5
@@ -111939,7 +111978,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17363
+ - uid: 17365
components:
- rot: 1.5707963267948966 rad
pos: 51.5,-54.5
@@ -111947,7 +111986,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17364
+ - uid: 17366
components:
- rot: 3.141592653589793 rad
pos: -14.5,2.5
@@ -111955,7 +111994,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17365
+ - uid: 17367
components:
- rot: 3.141592653589793 rad
pos: -14.5,3.5
@@ -111963,7 +112002,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17366
+ - uid: 17368
components:
- rot: 3.141592653589793 rad
pos: -14.5,4.5
@@ -111971,7 +112010,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17367
+ - uid: 17369
components:
- rot: 3.141592653589793 rad
pos: -14.5,5.5
@@ -111979,7 +112018,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17368
+ - uid: 17370
components:
- rot: -1.5707963267948966 rad
pos: -15.5,6.5
@@ -111987,7 +112026,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17369
+ - uid: 17371
components:
- rot: -1.5707963267948966 rad
pos: -16.5,6.5
@@ -111995,7 +112034,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17370
+ - uid: 17372
components:
- rot: -1.5707963267948966 rad
pos: -17.5,6.5
@@ -112003,7 +112042,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17371
+ - uid: 17373
components:
- rot: 3.141592653589793 rad
pos: -18.5,7.5
@@ -112011,7 +112050,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17372
+ - uid: 17374
components:
- rot: 3.141592653589793 rad
pos: -18.5,8.5
@@ -112019,7 +112058,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17373
+ - uid: 17375
components:
- rot: 3.141592653589793 rad
pos: -18.5,9.5
@@ -112027,7 +112066,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17374
+ - uid: 17376
components:
- rot: 3.141592653589793 rad
pos: -18.5,10.5
@@ -112035,7 +112074,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17375
+ - uid: 17377
components:
- rot: 3.141592653589793 rad
pos: -18.5,11.5
@@ -112043,7 +112082,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17376
+ - uid: 17378
components:
- rot: 3.141592653589793 rad
pos: -20.5,8.5
@@ -112051,7 +112090,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17377
+ - uid: 17379
components:
- rot: 3.141592653589793 rad
pos: -20.5,9.5
@@ -112059,7 +112098,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17378
+ - uid: 17380
components:
- rot: 3.141592653589793 rad
pos: -20.5,10.5
@@ -112067,7 +112106,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17379
+ - uid: 17381
components:
- rot: 3.141592653589793 rad
pos: -20.5,11.5
@@ -112075,7 +112114,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17380
+ - uid: 17382
components:
- rot: -1.5707963267948966 rad
pos: -19.5,-4.5
@@ -112083,7 +112122,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17381
+ - uid: 17383
components:
- rot: -1.5707963267948966 rad
pos: -20.5,-4.5
@@ -112091,7 +112130,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17382
+ - uid: 17384
components:
- rot: -1.5707963267948966 rad
pos: -21.5,-4.5
@@ -112099,7 +112138,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17383
+ - uid: 17385
components:
- rot: -1.5707963267948966 rad
pos: -22.5,-4.5
@@ -112107,7 +112146,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17384
+ - uid: 17386
components:
- rot: -1.5707963267948966 rad
pos: -23.5,-4.5
@@ -112115,7 +112154,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17385
+ - uid: 17387
components:
- rot: -1.5707963267948966 rad
pos: -21.5,-5.5
@@ -112123,7 +112162,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17386
+ - uid: 17388
components:
- rot: -1.5707963267948966 rad
pos: -22.5,-5.5
@@ -112131,7 +112170,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17387
+ - uid: 17389
components:
- rot: -1.5707963267948966 rad
pos: -23.5,-5.5
@@ -112139,7 +112178,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17388
+ - uid: 17390
components:
- rot: -1.5707963267948966 rad
pos: -24.5,-5.5
@@ -112147,7 +112186,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17389
+ - uid: 17391
components:
- rot: -1.5707963267948966 rad
pos: -25.5,-5.5
@@ -112155,7 +112194,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17390
+ - uid: 17392
components:
- rot: -1.5707963267948966 rad
pos: -29.5,-13.5
@@ -112163,7 +112202,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17391
+ - uid: 17393
components:
- rot: -1.5707963267948966 rad
pos: -30.5,-13.5
@@ -112171,7 +112210,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17392
+ - uid: 17394
components:
- rot: -1.5707963267948966 rad
pos: -29.5,-10.5
@@ -112179,7 +112218,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17393
+ - uid: 17395
components:
- rot: -1.5707963267948966 rad
pos: -30.5,-10.5
@@ -112187,7 +112226,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17394
+ - uid: 17396
components:
- rot: -1.5707963267948966 rad
pos: -31.5,-10.5
@@ -112195,152 +112234,152 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17395
+ - uid: 17397
components:
- rot: -1.5707963267948966 rad
pos: 51.5,-60.5
parent: 2
type: Transform
- - uid: 17396
+ - uid: 17398
components:
- rot: -1.5707963267948966 rad
pos: 52.5,-60.5
parent: 2
type: Transform
- - uid: 17397
+ - uid: 17399
components:
- pos: -18.5,-41.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17398
+ - uid: 17400
components:
- pos: -18.5,-40.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17399
+ - uid: 17401
components:
- pos: -18.5,-39.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17400
+ - uid: 17402
components:
- pos: -18.5,-38.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17401
+ - uid: 17403
components:
- pos: -18.5,-37.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17402
+ - uid: 17404
components:
- pos: -18.5,-36.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17403
+ - uid: 17405
components:
- pos: -18.5,-35.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17404
+ - uid: 17406
components:
- pos: -18.5,-34.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17405
+ - uid: 17407
components:
- pos: -18.5,-33.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17406
+ - uid: 17408
components:
- pos: -18.5,-32.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17407
+ - uid: 17409
components:
- pos: -20.5,-34.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17408
+ - uid: 17410
components:
- pos: -20.5,-35.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17409
+ - uid: 17411
components:
- pos: -20.5,-36.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17410
+ - uid: 17412
components:
- pos: -20.5,-37.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17411
+ - uid: 17413
components:
- pos: -20.5,-38.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17412
+ - uid: 17414
components:
- pos: -20.5,-39.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17413
+ - uid: 17415
components:
- pos: -20.5,-40.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17414
+ - uid: 17416
components:
- pos: -18.5,-44.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17415
+ - uid: 17417
components:
- pos: -18.5,-45.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17416
+ - uid: 17418
components:
- rot: 3.141592653589793 rad
pos: -20.5,-42.5
@@ -112348,7 +112387,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17417
+ - uid: 17419
components:
- rot: 3.141592653589793 rad
pos: -20.5,-44.5
@@ -112356,7 +112395,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17418
+ - uid: 17420
components:
- rot: 3.141592653589793 rad
pos: -20.5,-45.5
@@ -112364,7 +112403,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17419
+ - uid: 17421
components:
- rot: 3.141592653589793 rad
pos: -20.5,-46.5
@@ -112372,7 +112411,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17420
+ - uid: 17422
components:
- rot: 1.5707963267948966 rad
pos: 45.5,-72.5
@@ -112380,7 +112419,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17421
+ - uid: 17423
components:
- rot: 3.141592653589793 rad
pos: 29.5,-79.5
@@ -112388,7 +112427,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17422
+ - uid: 17424
components:
- rot: 3.141592653589793 rad
pos: 29.5,-84.5
@@ -112396,7 +112435,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17423
+ - uid: 17425
components:
- rot: 3.141592653589793 rad
pos: 48.5,-79.5
@@ -112404,7 +112443,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17424
+ - uid: 17426
components:
- rot: 3.141592653589793 rad
pos: 48.5,-75.5
@@ -112412,7 +112451,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17425
+ - uid: 17427
components:
- rot: 1.5707963267948966 rad
pos: 41.5,-72.5
@@ -112420,7 +112459,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17426
+ - uid: 17428
components:
- rot: 1.5707963267948966 rad
pos: 39.5,-72.5
@@ -112428,35 +112467,35 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17427
+ - uid: 17429
components:
- pos: 38.5,-70.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17428
+ - uid: 17430
components:
- pos: 38.5,-69.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17429
+ - uid: 17431
components:
- pos: 40.5,-69.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17430
+ - uid: 17432
components:
- pos: 40.5,-70.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17431
+ - uid: 17433
components:
- rot: 1.5707963267948966 rad
pos: 44.5,-73.5
@@ -112464,7 +112503,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17432
+ - uid: 17434
components:
- rot: 1.5707963267948966 rad
pos: 43.5,-73.5
@@ -112472,7 +112511,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17433
+ - uid: 17435
components:
- rot: 1.5707963267948966 rad
pos: 42.5,-73.5
@@ -112480,7 +112519,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17434
+ - uid: 17436
components:
- rot: 3.141592653589793 rad
pos: 30.5,-81.5
@@ -112488,7 +112527,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17435
+ - uid: 17437
components:
- rot: 3.141592653589793 rad
pos: 29.5,-80.5
@@ -112496,7 +112535,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17436
+ - uid: 17438
components:
- rot: 1.5707963267948966 rad
pos: 46.5,-72.5
@@ -112504,7 +112543,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17437
+ - uid: 17439
components:
- rot: 3.141592653589793 rad
pos: 47.5,-79.5
@@ -112512,7 +112551,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17438
+ - uid: 17440
components:
- rot: 1.5707963267948966 rad
pos: 40.5,-72.5
@@ -112520,7 +112559,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17439
+ - uid: 17441
components:
- rot: 3.141592653589793 rad
pos: 47.5,-73.5
@@ -112528,7 +112567,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17440
+ - uid: 17442
components:
- rot: 3.141592653589793 rad
pos: 29.5,-78.5
@@ -112536,7 +112575,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17441
+ - uid: 17443
components:
- rot: 3.141592653589793 rad
pos: 30.5,-73.5
@@ -112544,7 +112583,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17442
+ - uid: 17444
components:
- rot: 3.141592653589793 rad
pos: 29.5,-81.5
@@ -112552,7 +112591,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17443
+ - uid: 17445
components:
- rot: 3.141592653589793 rad
pos: 2.5,-59.5
@@ -112560,7 +112599,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17444
+ - uid: 17446
components:
- rot: 3.141592653589793 rad
pos: 2.5,-58.5
@@ -112568,7 +112607,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17445
+ - uid: 17447
components:
- rot: 3.141592653589793 rad
pos: 3.5,-60.5
@@ -112576,7 +112615,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17446
+ - uid: 17448
components:
- rot: 3.141592653589793 rad
pos: 3.5,-59.5
@@ -112584,7 +112623,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17447
+ - uid: 17449
components:
- rot: 3.141592653589793 rad
pos: 3.5,-58.5
@@ -112592,7 +112631,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17448
+ - uid: 17450
components:
- rot: 3.141592653589793 rad
pos: 2.5,-57.5
@@ -112600,7 +112639,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17449
+ - uid: 17451
components:
- rot: 3.141592653589793 rad
pos: -41.5,-7.5
@@ -112608,14 +112647,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17450
+ - uid: 17452
components:
- pos: -31.5,-12.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17451
+ - uid: 17453
components:
- rot: 1.5707963267948966 rad
pos: -29.5,-17.5
@@ -112623,7 +112662,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17452
+ - uid: 17454
components:
- rot: 1.5707963267948966 rad
pos: -30.5,-17.5
@@ -112631,7 +112670,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17453
+ - uid: 17455
components:
- rot: -1.5707963267948966 rad
pos: -30.5,-16.5
@@ -112639,7 +112678,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17454
+ - uid: 17456
components:
- rot: -1.5707963267948966 rad
pos: -31.5,-16.5
@@ -112647,28 +112686,28 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17455
+ - uid: 17457
components:
- pos: -31.5,-18.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17456
+ - uid: 17458
components:
- pos: -31.5,-16.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17457
+ - uid: 17459
components:
- pos: -31.5,-14.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17458
+ - uid: 17460
components:
- rot: 3.141592653589793 rad
pos: -32.5,-11.5
@@ -112676,7 +112715,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17459
+ - uid: 17461
components:
- rot: 3.141592653589793 rad
pos: -32.5,-12.5
@@ -112684,7 +112723,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17460
+ - uid: 17462
components:
- rot: 3.141592653589793 rad
pos: -32.5,-13.5
@@ -112692,7 +112731,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17461
+ - uid: 17463
components:
- rot: 3.141592653589793 rad
pos: -32.5,-14.5
@@ -112700,7 +112739,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17462
+ - uid: 17464
components:
- rot: 3.141592653589793 rad
pos: -32.5,-15.5
@@ -112708,7 +112747,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17463
+ - uid: 17465
components:
- rot: 1.5707963267948966 rad
pos: -32.5,-11.5
@@ -112716,7 +112755,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17464
+ - uid: 17466
components:
- rot: 1.5707963267948966 rad
pos: -33.5,-11.5
@@ -112724,7 +112763,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17465
+ - uid: 17467
components:
- rot: 1.5707963267948966 rad
pos: -34.5,-11.5
@@ -112732,7 +112771,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17466
+ - uid: 17468
components:
- rot: 1.5707963267948966 rad
pos: -35.5,-11.5
@@ -112740,7 +112779,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17467
+ - uid: 17469
components:
- rot: 1.5707963267948966 rad
pos: -33.5,-10.5
@@ -112748,7 +112787,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17468
+ - uid: 17470
components:
- rot: 1.5707963267948966 rad
pos: -34.5,-10.5
@@ -112756,112 +112795,112 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17469
+ - uid: 17471
components:
- pos: -32.5,-18.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17470
+ - uid: 17472
components:
- pos: -32.5,-19.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17471
+ - uid: 17473
components:
- pos: -32.5,-20.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17472
+ - uid: 17474
components:
- pos: -31.5,-19.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17473
+ - uid: 17475
components:
- pos: -31.5,-20.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17474
+ - uid: 17476
components:
- pos: -31.5,-21.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17475
+ - uid: 17477
components:
- pos: -32.5,-21.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17476
+ - uid: 17478
components:
- pos: -32.5,-22.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17477
+ - uid: 17479
components:
- pos: -32.5,-23.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17478
+ - uid: 17480
components:
- pos: -32.5,-24.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17479
+ - uid: 17481
components:
- pos: -31.5,-22.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17480
+ - uid: 17482
components:
- pos: -31.5,-23.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17481
+ - uid: 17483
components:
- pos: -31.5,-24.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17482
+ - uid: 17484
components:
- pos: -31.5,-25.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17483
+ - uid: 17485
components:
- pos: -31.5,-26.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17484
+ - uid: 17486
components:
- rot: 3.141592653589793 rad
pos: -32.5,-26.5
@@ -112869,7 +112908,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17485
+ - uid: 17487
components:
- rot: 3.141592653589793 rad
pos: -32.5,-27.5
@@ -112877,7 +112916,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17486
+ - uid: 17488
components:
- rot: 3.141592653589793 rad
pos: -32.5,-28.5
@@ -112885,7 +112924,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17487
+ - uid: 17489
components:
- rot: 3.141592653589793 rad
pos: -32.5,-29.5
@@ -112893,7 +112932,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17488
+ - uid: 17490
components:
- rot: 3.141592653589793 rad
pos: -32.5,-30.5
@@ -112901,7 +112940,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17489
+ - uid: 17491
components:
- rot: 3.141592653589793 rad
pos: -31.5,-28.5
@@ -112909,7 +112948,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17490
+ - uid: 17492
components:
- rot: 3.141592653589793 rad
pos: -31.5,-29.5
@@ -112917,7 +112956,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17491
+ - uid: 17493
components:
- rot: 3.141592653589793 rad
pos: -31.5,-30.5
@@ -112925,7 +112964,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17492
+ - uid: 17494
components:
- rot: 1.5707963267948966 rad
pos: -32.5,-15.5
@@ -112933,7 +112972,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17493
+ - uid: 17495
components:
- rot: 1.5707963267948966 rad
pos: -33.5,-15.5
@@ -112941,7 +112980,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17494
+ - uid: 17496
components:
- rot: 1.5707963267948966 rad
pos: -33.5,-17.5
@@ -112949,7 +112988,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17495
+ - uid: 17497
components:
- rot: -1.5707963267948966 rad
pos: -37.5,-11.5
@@ -112957,7 +112996,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17496
+ - uid: 17498
components:
- rot: -1.5707963267948966 rad
pos: -38.5,-11.5
@@ -112965,7 +113004,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17497
+ - uid: 17499
components:
- rot: -1.5707963267948966 rad
pos: -39.5,-11.5
@@ -112973,7 +113012,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17498
+ - uid: 17500
components:
- rot: -1.5707963267948966 rad
pos: -40.5,-11.5
@@ -112981,7 +113020,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17499
+ - uid: 17501
components:
- rot: -1.5707963267948966 rad
pos: -36.5,-10.5
@@ -112989,7 +113028,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17500
+ - uid: 17502
components:
- rot: -1.5707963267948966 rad
pos: -37.5,-10.5
@@ -112997,7 +113036,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17501
+ - uid: 17503
components:
- rot: -1.5707963267948966 rad
pos: -38.5,-10.5
@@ -113005,7 +113044,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17502
+ - uid: 17504
components:
- rot: -1.5707963267948966 rad
pos: -39.5,-10.5
@@ -113013,7 +113052,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17503
+ - uid: 17505
components:
- rot: -1.5707963267948966 rad
pos: -40.5,-10.5
@@ -113021,7 +113060,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17504
+ - uid: 17506
components:
- rot: -1.5707963267948966 rad
pos: -41.5,-10.5
@@ -113029,70 +113068,70 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17505
+ - uid: 17507
components:
- pos: -42.5,-11.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17506
+ - uid: 17508
components:
- pos: -42.5,-12.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17507
+ - uid: 17509
components:
- pos: -42.5,-13.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17508
+ - uid: 17510
components:
- pos: -42.5,-14.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17509
+ - uid: 17511
components:
- pos: -41.5,-12.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17510
+ - uid: 17512
components:
- pos: -41.5,-13.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17511
+ - uid: 17513
components:
- pos: -41.5,-14.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17512
+ - uid: 17514
components:
- pos: -41.5,-15.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17513
+ - uid: 17515
components:
- pos: -20.5,12.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17514
+ - uid: 17516
components:
- rot: -1.5707963267948966 rad
pos: -19.5,6.5
@@ -113100,7 +113139,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17515
+ - uid: 17517
components:
- rot: -1.5707963267948966 rad
pos: -20.5,6.5
@@ -113108,7 +113147,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17516
+ - uid: 17518
components:
- rot: -1.5707963267948966 rad
pos: -21.5,6.5
@@ -113116,7 +113155,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17517
+ - uid: 17519
components:
- rot: -1.5707963267948966 rad
pos: -22.5,6.5
@@ -113124,7 +113163,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17518
+ - uid: 17520
components:
- rot: -1.5707963267948966 rad
pos: -23.5,6.5
@@ -113132,7 +113171,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17519
+ - uid: 17521
components:
- rot: -1.5707963267948966 rad
pos: -21.5,7.5
@@ -113140,7 +113179,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17520
+ - uid: 17522
components:
- rot: -1.5707963267948966 rad
pos: -22.5,7.5
@@ -113148,7 +113187,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17521
+ - uid: 17523
components:
- rot: -1.5707963267948966 rad
pos: -23.5,7.5
@@ -113156,7 +113195,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17522
+ - uid: 17524
components:
- rot: -1.5707963267948966 rad
pos: -24.5,6.5
@@ -113164,7 +113203,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17523
+ - uid: 17525
components:
- rot: -1.5707963267948966 rad
pos: -25.5,6.5
@@ -113172,7 +113211,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17524
+ - uid: 17526
components:
- rot: 3.141592653589793 rad
pos: -26.5,-3.5
@@ -113180,7 +113219,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17525
+ - uid: 17527
components:
- rot: 3.141592653589793 rad
pos: -26.5,-2.5
@@ -113188,7 +113227,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17526
+ - uid: 17528
components:
- rot: 3.141592653589793 rad
pos: -26.5,-1.5
@@ -113196,7 +113235,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17527
+ - uid: 17529
components:
- rot: 3.141592653589793 rad
pos: -26.5,-0.5
@@ -113204,7 +113243,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17528
+ - uid: 17530
components:
- rot: 3.141592653589793 rad
pos: -26.5,0.5
@@ -113212,7 +113251,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17529
+ - uid: 17531
components:
- rot: 3.141592653589793 rad
pos: -26.5,2.5
@@ -113220,7 +113259,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17530
+ - uid: 17532
components:
- rot: 3.141592653589793 rad
pos: -26.5,3.5
@@ -113228,7 +113267,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17531
+ - uid: 17533
components:
- rot: 3.141592653589793 rad
pos: -26.5,4.5
@@ -113236,7 +113275,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17532
+ - uid: 17534
components:
- rot: 3.141592653589793 rad
pos: -26.5,5.5
@@ -113244,7 +113283,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17533
+ - uid: 17535
components:
- rot: 3.141592653589793 rad
pos: -24.5,6.5
@@ -113252,7 +113291,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17534
+ - uid: 17536
components:
- rot: 3.141592653589793 rad
pos: -24.5,5.5
@@ -113260,7 +113299,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17535
+ - uid: 17537
components:
- rot: 3.141592653589793 rad
pos: -24.5,4.5
@@ -113268,7 +113307,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17536
+ - uid: 17538
components:
- rot: 3.141592653589793 rad
pos: -24.5,3.5
@@ -113276,7 +113315,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17537
+ - uid: 17539
components:
- rot: 3.141592653589793 rad
pos: -24.5,2.5
@@ -113284,7 +113323,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17538
+ - uid: 17540
components:
- rot: 3.141592653589793 rad
pos: -24.5,1.5
@@ -113292,7 +113331,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17539
+ - uid: 17541
components:
- rot: 3.141592653589793 rad
pos: -24.5,-0.5
@@ -113300,7 +113339,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17540
+ - uid: 17542
components:
- rot: 3.141592653589793 rad
pos: -24.5,-1.5
@@ -113308,7 +113347,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17541
+ - uid: 17543
components:
- rot: 3.141592653589793 rad
pos: -24.5,-3.5
@@ -113316,7 +113355,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17542
+ - uid: 17544
components:
- rot: -1.5707963267948966 rad
pos: -43.5,-10.5
@@ -113324,7 +113363,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17543
+ - uid: 17545
components:
- rot: -1.5707963267948966 rad
pos: -42.5,-11.5
@@ -113332,7 +113371,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17544
+ - uid: 17546
components:
- rot: -1.5707963267948966 rad
pos: -43.5,-11.5
@@ -113340,7 +113379,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17545
+ - uid: 17547
components:
- rot: 3.141592653589793 rad
pos: -41.5,-10.5
@@ -113348,7 +113387,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17546
+ - uid: 17548
components:
- rot: 3.141592653589793 rad
pos: -42.5,-7.5
@@ -113356,7 +113395,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17547
+ - uid: 17549
components:
- rot: 1.5707963267948966 rad
pos: -42.5,-5.5
@@ -113364,7 +113403,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17548
+ - uid: 17550
components:
- rot: 1.5707963267948966 rad
pos: -43.5,-5.5
@@ -113372,7 +113411,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17549
+ - uid: 17551
components:
- rot: 1.5707963267948966 rad
pos: -44.5,-5.5
@@ -113380,7 +113419,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17550
+ - uid: 17552
components:
- rot: 1.5707963267948966 rad
pos: -45.5,-5.5
@@ -113388,7 +113427,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17551
+ - uid: 17553
components:
- rot: 3.141592653589793 rad
pos: -41.5,-9.5
@@ -113396,7 +113435,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17552
+ - uid: 17554
components:
- rot: 3.141592653589793 rad
pos: -42.5,-9.5
@@ -113404,7 +113443,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17553
+ - uid: 17555
components:
- rot: 3.141592653589793 rad
pos: -42.5,-8.5
@@ -113412,7 +113451,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17554
+ - uid: 17556
components:
- rot: 1.5707963267948966 rad
pos: -43.5,-6.5
@@ -113420,7 +113459,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17555
+ - uid: 17557
components:
- rot: 1.5707963267948966 rad
pos: -44.5,-6.5
@@ -113428,7 +113467,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17556
+ - uid: 17558
components:
- rot: 1.5707963267948966 rad
pos: -45.5,-6.5
@@ -113436,7 +113475,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17557
+ - uid: 17559
components:
- rot: 1.5707963267948966 rad
pos: -46.5,-6.5
@@ -113444,7 +113483,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17558
+ - uid: 17560
components:
- rot: 1.5707963267948966 rad
pos: -47.5,-5.5
@@ -113452,7 +113491,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17559
+ - uid: 17561
components:
- rot: 1.5707963267948966 rad
pos: -48.5,-5.5
@@ -113460,7 +113499,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17560
+ - uid: 17562
components:
- rot: 1.5707963267948966 rad
pos: -49.5,-5.5
@@ -113468,7 +113507,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17561
+ - uid: 17563
components:
- rot: 1.5707963267948966 rad
pos: -50.5,-5.5
@@ -113476,7 +113515,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17562
+ - uid: 17564
components:
- rot: 1.5707963267948966 rad
pos: -51.5,-5.5
@@ -113484,7 +113523,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17563
+ - uid: 17565
components:
- rot: 1.5707963267948966 rad
pos: -52.5,-5.5
@@ -113492,7 +113531,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17564
+ - uid: 17566
components:
- rot: 1.5707963267948966 rad
pos: -48.5,-6.5
@@ -113500,7 +113539,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17565
+ - uid: 17567
components:
- rot: 1.5707963267948966 rad
pos: -49.5,-6.5
@@ -113508,7 +113547,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17566
+ - uid: 17568
components:
- rot: 1.5707963267948966 rad
pos: -50.5,-6.5
@@ -113516,7 +113555,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17567
+ - uid: 17569
components:
- rot: 1.5707963267948966 rad
pos: -51.5,-6.5
@@ -113524,119 +113563,119 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17568
+ - uid: 17570
components:
- pos: -53.5,-6.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17569
+ - uid: 17571
components:
- pos: -53.5,-7.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17570
+ - uid: 17572
components:
- pos: -53.5,-8.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17571
+ - uid: 17573
components:
- pos: -53.5,-9.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17572
+ - uid: 17574
components:
- pos: -53.5,-10.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17573
+ - uid: 17575
components:
- pos: -53.5,-11.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17574
+ - uid: 17576
components:
- pos: -53.5,-12.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17575
+ - uid: 17577
components:
- pos: -52.5,-7.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17576
+ - uid: 17578
components:
- pos: -52.5,-8.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17577
+ - uid: 17579
components:
- pos: -52.5,-9.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17578
+ - uid: 17580
components:
- pos: -52.5,-10.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17579
+ - uid: 17581
components:
- pos: -52.5,-11.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17580
+ - uid: 17582
components:
- pos: -52.5,-12.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17581
+ - uid: 17583
components:
- pos: -52.5,-13.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17582
+ - uid: 17584
components:
- pos: -52.5,-14.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17583
+ - uid: 17585
components:
- pos: -52.5,-15.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17584
+ - uid: 17586
components:
- rot: 3.141592653589793 rad
pos: -53.5,-14.5
@@ -113644,7 +113683,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17585
+ - uid: 17587
components:
- rot: 3.141592653589793 rad
pos: -53.5,-15.5
@@ -113652,7 +113691,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17586
+ - uid: 17588
components:
- rot: 3.141592653589793 rad
pos: -53.5,-16.5
@@ -113660,7 +113699,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17587
+ - uid: 17589
components:
- rot: 3.141592653589793 rad
pos: -53.5,-17.5
@@ -113668,7 +113707,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17588
+ - uid: 17590
components:
- rot: 3.141592653589793 rad
pos: -53.5,-18.5
@@ -113676,7 +113715,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17589
+ - uid: 17591
components:
- rot: 1.5707963267948966 rad
pos: -51.5,-17.5
@@ -113684,7 +113723,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17590
+ - uid: 17592
components:
- rot: 1.5707963267948966 rad
pos: -52.5,-19.5
@@ -113692,56 +113731,56 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17591
+ - uid: 17593
components:
- pos: -50.5,-18.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17592
+ - uid: 17594
components:
- pos: -50.5,-20.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17593
+ - uid: 17595
components:
- pos: -50.5,-21.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17594
+ - uid: 17596
components:
- pos: -51.5,-20.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17595
+ - uid: 17597
components:
- pos: -51.5,-21.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17596
+ - uid: 17598
components:
- pos: -51.5,-22.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17597
+ - uid: 17599
components:
- pos: -47.5,-21.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17598
+ - uid: 17600
components:
- rot: 1.5707963267948966 rad
pos: -48.5,-19.5
@@ -113749,7 +113788,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17599
+ - uid: 17601
components:
- rot: 1.5707963267948966 rad
pos: -49.5,-19.5
@@ -113757,7 +113796,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17600
+ - uid: 17602
components:
- rot: 3.141592653589793 rad
pos: -41.5,-6.5
@@ -113765,7 +113804,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17601
+ - uid: 17603
components:
- rot: -1.5707963267948966 rad
pos: -60.5,-23.5
@@ -113773,7 +113812,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17602
+ - uid: 17604
components:
- rot: -1.5707963267948966 rad
pos: -62.5,-23.5
@@ -113781,77 +113820,77 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17603
+ - uid: 17605
components:
- pos: -53.5,-20.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17604
+ - uid: 17606
components:
- pos: -53.5,-21.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17605
+ - uid: 17607
components:
- pos: -53.5,-22.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17606
+ - uid: 17608
components:
- pos: -53.5,-23.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17607
+ - uid: 17609
components:
- pos: -53.5,-24.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17608
+ - uid: 17610
components:
- pos: -54.5,-18.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17609
+ - uid: 17611
components:
- pos: -54.5,-19.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17610
+ - uid: 17612
components:
- pos: -54.5,-20.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17611
+ - uid: 17613
components:
- pos: -54.5,-21.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17612
+ - uid: 17614
components:
- pos: -54.5,-22.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17613
+ - uid: 17615
components:
- rot: -1.5707963267948966 rad
pos: -53.5,-17.5
@@ -113859,7 +113898,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17614
+ - uid: 17616
components:
- rot: 1.5707963267948966 rad
pos: -54.5,-25.5
@@ -113867,7 +113906,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17615
+ - uid: 17617
components:
- rot: 1.5707963267948966 rad
pos: -55.5,-25.5
@@ -113875,7 +113914,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17616
+ - uid: 17618
components:
- rot: 1.5707963267948966 rad
pos: -56.5,-25.5
@@ -113883,7 +113922,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17617
+ - uid: 17619
components:
- rot: 1.5707963267948966 rad
pos: -57.5,-25.5
@@ -113891,7 +113930,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17618
+ - uid: 17620
components:
- rot: 1.5707963267948966 rad
pos: -58.5,-25.5
@@ -113899,7 +113938,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17619
+ - uid: 17621
components:
- rot: 1.5707963267948966 rad
pos: -55.5,-23.5
@@ -113907,7 +113946,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17620
+ - uid: 17622
components:
- rot: 1.5707963267948966 rad
pos: -57.5,-23.5
@@ -113915,7 +113954,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17621
+ - uid: 17623
components:
- rot: 1.5707963267948966 rad
pos: -58.5,-23.5
@@ -113923,7 +113962,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17622
+ - uid: 17624
components:
- rot: -1.5707963267948966 rad
pos: -59.5,-23.5
@@ -113931,7 +113970,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17623
+ - uid: 17625
components:
- rot: -1.5707963267948966 rad
pos: -61.5,-23.5
@@ -113939,7 +113978,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17624
+ - uid: 17626
components:
- rot: -1.5707963267948966 rad
pos: -63.5,-23.5
@@ -113947,7 +113986,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17625
+ - uid: 17627
components:
- rot: -1.5707963267948966 rad
pos: -64.5,-23.5
@@ -113955,7 +113994,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17626
+ - uid: 17628
components:
- rot: -1.5707963267948966 rad
pos: -65.5,-23.5
@@ -113963,7 +114002,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17627
+ - uid: 17629
components:
- rot: -1.5707963267948966 rad
pos: -66.5,-23.5
@@ -113971,7 +114010,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17628
+ - uid: 17630
components:
- rot: -1.5707963267948966 rad
pos: -67.5,-23.5
@@ -113979,49 +114018,49 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17629
+ - uid: 17631
components:
- pos: -68.5,-24.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17630
+ - uid: 17632
components:
- pos: -68.5,-25.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17631
+ - uid: 17633
components:
- pos: -68.5,-26.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17632
+ - uid: 17634
components:
- pos: -68.5,-28.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17633
+ - uid: 17635
components:
- pos: -68.5,-29.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17634
+ - uid: 17636
components:
- pos: -68.5,-30.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17635
+ - uid: 17637
components:
- rot: -1.5707963267948966 rad
pos: -60.5,-25.5
@@ -114029,7 +114068,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17636
+ - uid: 17638
components:
- rot: -1.5707963267948966 rad
pos: -61.5,-25.5
@@ -114037,7 +114076,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17637
+ - uid: 17639
components:
- rot: -1.5707963267948966 rad
pos: -62.5,-25.5
@@ -114045,7 +114084,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17638
+ - uid: 17640
components:
- rot: -1.5707963267948966 rad
pos: -63.5,-25.5
@@ -114053,14 +114092,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17639
+ - uid: 17641
components:
- pos: -64.5,-26.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17640
+ - uid: 17642
components:
- rot: 3.141592653589793 rad
pos: -64.5,-28.5
@@ -114068,7 +114107,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17641
+ - uid: 17643
components:
- rot: 3.141592653589793 rad
pos: -64.5,-29.5
@@ -114076,7 +114115,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17642
+ - uid: 17644
components:
- rot: 3.141592653589793 rad
pos: -64.5,-30.5
@@ -114084,486 +114123,486 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17643
+ - uid: 17645
components:
- rot: 1.5707963267948966 rad
pos: -47.5,-42.5
parent: 2
type: Transform
- - uid: 17644
+ - uid: 17646
components:
- rot: 1.5707963267948966 rad
pos: -47.5,-44.5
parent: 2
type: Transform
- - uid: 17645
+ - uid: 17647
components:
- rot: 1.5707963267948966 rad
pos: -47.5,-46.5
parent: 2
type: Transform
- - uid: 17646
+ - uid: 17648
components:
- rot: 1.5707963267948966 rad
pos: -47.5,-48.5
parent: 2
type: Transform
- - uid: 17647
+ - uid: 17649
components:
- rot: 1.5707963267948966 rad
pos: -47.5,-50.5
parent: 2
type: Transform
- - uid: 17648
+ - uid: 17650
components:
- rot: 1.5707963267948966 rad
pos: -47.5,-52.5
parent: 2
type: Transform
- - uid: 17649
+ - uid: 17651
components:
- rot: 1.5707963267948966 rad
pos: -47.5,-54.5
parent: 2
type: Transform
- - uid: 17650
+ - uid: 17652
components:
- rot: 1.5707963267948966 rad
pos: -49.5,-55.5
parent: 2
type: Transform
- - uid: 17651
+ - uid: 17653
components:
- rot: 1.5707963267948966 rad
pos: -48.5,-55.5
parent: 2
type: Transform
- - uid: 17652
+ - uid: 17654
components:
- rot: 1.5707963267948966 rad
pos: -47.5,-55.5
parent: 2
type: Transform
- - uid: 17653
+ - uid: 17655
components:
- rot: 1.5707963267948966 rad
pos: -49.5,-53.5
parent: 2
type: Transform
- - uid: 17654
+ - uid: 17656
components:
- rot: 1.5707963267948966 rad
pos: -48.5,-53.5
parent: 2
type: Transform
- - uid: 17655
+ - uid: 17657
components:
- rot: 1.5707963267948966 rad
pos: -47.5,-53.5
parent: 2
type: Transform
- - uid: 17656
+ - uid: 17658
components:
- rot: 1.5707963267948966 rad
pos: -49.5,-51.5
parent: 2
type: Transform
- - uid: 17657
+ - uid: 17659
components:
- rot: 1.5707963267948966 rad
pos: -48.5,-51.5
parent: 2
type: Transform
- - uid: 17658
+ - uid: 17660
components:
- rot: 1.5707963267948966 rad
pos: -47.5,-51.5
parent: 2
type: Transform
- - uid: 17659
+ - uid: 17661
components:
- rot: 1.5707963267948966 rad
pos: -49.5,-49.5
parent: 2
type: Transform
- - uid: 17660
+ - uid: 17662
components:
- rot: 1.5707963267948966 rad
pos: -48.5,-49.5
parent: 2
type: Transform
- - uid: 17661
+ - uid: 17663
components:
- rot: 1.5707963267948966 rad
pos: -47.5,-49.5
parent: 2
type: Transform
- - uid: 17662
+ - uid: 17664
components:
- rot: 1.5707963267948966 rad
pos: -49.5,-47.5
parent: 2
type: Transform
- - uid: 17663
+ - uid: 17665
components:
- rot: 1.5707963267948966 rad
pos: -48.5,-47.5
parent: 2
type: Transform
- - uid: 17664
+ - uid: 17666
components:
- rot: 1.5707963267948966 rad
pos: -47.5,-47.5
parent: 2
type: Transform
- - uid: 17665
+ - uid: 17667
components:
- rot: 1.5707963267948966 rad
pos: -49.5,-45.5
parent: 2
type: Transform
- - uid: 17666
+ - uid: 17668
components:
- rot: 1.5707963267948966 rad
pos: -48.5,-45.5
parent: 2
type: Transform
- - uid: 17667
+ - uid: 17669
components:
- rot: 1.5707963267948966 rad
pos: -47.5,-45.5
parent: 2
type: Transform
- - uid: 17668
+ - uid: 17670
components:
- rot: 1.5707963267948966 rad
pos: -49.5,-43.5
parent: 2
type: Transform
- - uid: 17669
+ - uid: 17671
components:
- rot: 1.5707963267948966 rad
pos: -48.5,-43.5
parent: 2
type: Transform
- - uid: 17670
+ - uid: 17672
components:
- rot: 1.5707963267948966 rad
pos: -47.5,-43.5
parent: 2
type: Transform
- - uid: 17671
+ - uid: 17673
components:
- rot: 1.5707963267948966 rad
pos: -46.5,-52.5
parent: 2
type: Transform
- - uid: 17672
+ - uid: 17674
components:
- rot: 1.5707963267948966 rad
pos: -45.5,-52.5
parent: 2
type: Transform
- - uid: 17673
+ - uid: 17675
components:
- rot: 1.5707963267948966 rad
pos: -46.5,-54.5
parent: 2
type: Transform
- - uid: 17674
+ - uid: 17676
components:
- rot: 1.5707963267948966 rad
pos: -45.5,-54.5
parent: 2
type: Transform
- - uid: 17675
+ - uid: 17677
components:
- rot: 1.5707963267948966 rad
pos: -46.5,-50.5
parent: 2
type: Transform
- - uid: 17676
+ - uid: 17678
components:
- rot: 1.5707963267948966 rad
pos: -45.5,-50.5
parent: 2
type: Transform
- - uid: 17677
+ - uid: 17679
components:
- rot: 1.5707963267948966 rad
pos: -46.5,-48.5
parent: 2
type: Transform
- - uid: 17678
+ - uid: 17680
components:
- rot: 1.5707963267948966 rad
pos: -45.5,-48.5
parent: 2
type: Transform
- - uid: 17679
+ - uid: 17681
components:
- rot: 1.5707963267948966 rad
pos: -46.5,-46.5
parent: 2
type: Transform
- - uid: 17680
+ - uid: 17682
components:
- rot: 1.5707963267948966 rad
pos: -45.5,-46.5
parent: 2
type: Transform
- - uid: 17681
+ - uid: 17683
components:
- rot: 1.5707963267948966 rad
pos: -46.5,-44.5
parent: 2
type: Transform
- - uid: 17682
+ - uid: 17684
components:
- rot: 1.5707963267948966 rad
pos: -45.5,-44.5
parent: 2
type: Transform
- - uid: 17683
+ - uid: 17685
components:
- rot: 1.5707963267948966 rad
pos: -46.5,-42.5
parent: 2
type: Transform
- - uid: 17684
+ - uid: 17686
components:
- rot: 1.5707963267948966 rad
pos: -45.5,-42.5
parent: 2
type: Transform
- - uid: 17685
+ - uid: 17687
components:
- rot: 1.5707963267948966 rad
pos: -45.5,-55.5
parent: 2
type: Transform
- - uid: 17686
+ - uid: 17688
components:
- rot: 1.5707963267948966 rad
pos: -46.5,-55.5
parent: 2
type: Transform
- - uid: 17687
+ - uid: 17689
components:
- rot: 1.5707963267948966 rad
pos: -46.5,-53.5
parent: 2
type: Transform
- - uid: 17688
+ - uid: 17690
components:
- rot: 1.5707963267948966 rad
pos: -45.5,-53.5
parent: 2
type: Transform
- - uid: 17689
+ - uid: 17691
components:
- rot: 1.5707963267948966 rad
pos: -43.5,-53.5
parent: 2
type: Transform
- - uid: 17690
+ - uid: 17692
components:
- rot: 1.5707963267948966 rad
pos: -46.5,-51.5
parent: 2
type: Transform
- - uid: 17691
+ - uid: 17693
components:
- rot: 1.5707963267948966 rad
pos: -45.5,-51.5
parent: 2
type: Transform
- - uid: 17692
+ - uid: 17694
components:
- rot: 1.5707963267948966 rad
pos: -43.5,-51.5
parent: 2
type: Transform
- - uid: 17693
+ - uid: 17695
components:
- rot: 1.5707963267948966 rad
pos: -46.5,-49.5
parent: 2
type: Transform
- - uid: 17694
+ - uid: 17696
components:
- rot: 1.5707963267948966 rad
pos: -45.5,-49.5
parent: 2
type: Transform
- - uid: 17695
+ - uid: 17697
components:
- rot: 1.5707963267948966 rad
pos: -43.5,-49.5
parent: 2
type: Transform
- - uid: 17696
+ - uid: 17698
components:
- rot: 1.5707963267948966 rad
pos: -46.5,-47.5
parent: 2
type: Transform
- - uid: 17697
+ - uid: 17699
components:
- rot: 1.5707963267948966 rad
pos: -45.5,-47.5
parent: 2
type: Transform
- - uid: 17698
+ - uid: 17700
components:
- rot: 1.5707963267948966 rad
pos: -43.5,-47.5
parent: 2
type: Transform
- - uid: 17699
+ - uid: 17701
components:
- rot: 1.5707963267948966 rad
pos: -46.5,-45.5
parent: 2
type: Transform
- - uid: 17700
+ - uid: 17702
components:
- rot: 1.5707963267948966 rad
pos: -45.5,-45.5
parent: 2
type: Transform
- - uid: 17701
+ - uid: 17703
components:
- rot: 1.5707963267948966 rad
pos: -43.5,-45.5
parent: 2
type: Transform
- - uid: 17702
+ - uid: 17704
components:
- rot: 1.5707963267948966 rad
pos: -46.5,-43.5
parent: 2
type: Transform
- - uid: 17703
+ - uid: 17705
components:
- rot: 1.5707963267948966 rad
pos: -45.5,-43.5
parent: 2
type: Transform
- - uid: 17704
+ - uid: 17706
components:
- rot: 1.5707963267948966 rad
pos: -43.5,-43.5
parent: 2
type: Transform
- - uid: 17705
+ - uid: 17707
components:
- rot: 3.141592653589793 rad
pos: -42.5,-54.5
parent: 2
type: Transform
- - uid: 17706
+ - uid: 17708
components:
- rot: 3.141592653589793 rad
pos: -43.5,-54.5
parent: 2
type: Transform
- - uid: 17707
+ - uid: 17709
components:
- rot: 3.141592653589793 rad
pos: -43.5,-53.5
parent: 2
type: Transform
- - uid: 17708
+ - uid: 17710
components:
- pos: -42.5,-50.5
parent: 2
type: Transform
- - uid: 17709
+ - uid: 17711
components:
- pos: -42.5,-48.5
parent: 2
type: Transform
- - uid: 17710
+ - uid: 17712
components:
- pos: -42.5,-46.5
parent: 2
type: Transform
- - uid: 17711
+ - uid: 17713
components:
- pos: -42.5,-44.5
parent: 2
type: Transform
- - uid: 17712
+ - uid: 17714
components:
- pos: -42.5,-42.5
parent: 2
type: Transform
- - uid: 17713
+ - uid: 17715
components:
- pos: -44.5,-43.5
parent: 2
type: Transform
- - uid: 17714
+ - uid: 17716
components:
- pos: -44.5,-45.5
parent: 2
type: Transform
- - uid: 17715
+ - uid: 17717
components:
- pos: -44.5,-47.5
parent: 2
type: Transform
- - uid: 17716
+ - uid: 17718
components:
- pos: -44.5,-49.5
parent: 2
type: Transform
- - uid: 17717
+ - uid: 17719
components:
- pos: -44.5,-51.5
parent: 2
type: Transform
- - uid: 17718
+ - uid: 17720
components:
- pos: -44.5,-53.5
parent: 2
type: Transform
- - uid: 17719
+ - uid: 17721
components:
- pos: -44.5,-55.5
parent: 2
type: Transform
- - uid: 17720
+ - uid: 17722
components:
- pos: -44.5,-56.5
parent: 2
type: Transform
- - uid: 17721
+ - uid: 17723
components:
- rot: 1.5707963267948966 rad
pos: -43.5,-57.5
parent: 2
type: Transform
- - uid: 17722
+ - uid: 17724
components:
- rot: 1.5707963267948966 rad
pos: -42.5,-57.5
parent: 2
type: Transform
- - uid: 17723
+ - uid: 17725
components:
- rot: 1.5707963267948966 rad
pos: -41.5,-57.5
parent: 2
type: Transform
- - uid: 17724
+ - uid: 17726
components:
- rot: 1.5707963267948966 rad
pos: -40.5,-57.5
parent: 2
type: Transform
- - uid: 17725
+ - uid: 17727
components:
- rot: 1.5707963267948966 rad
pos: -41.5,-55.5
@@ -114571,7 +114610,7 @@ entities:
type: Transform
- color: '#03FCD3FF'
type: AtmosPipeColor
- - uid: 17726
+ - uid: 17728
components:
- rot: 1.5707963267948966 rad
pos: -36.5,-57.5
@@ -114579,37 +114618,37 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17727
+ - uid: 17729
components:
- rot: 3.141592653589793 rad
pos: -42.5,-39.5
parent: 2
type: Transform
- - uid: 17728
+ - uid: 17730
components:
- rot: 3.141592653589793 rad
pos: -42.5,-38.5
parent: 2
type: Transform
- - uid: 17729
+ - uid: 17731
components:
- rot: 3.141592653589793 rad
pos: -42.5,-37.5
parent: 2
type: Transform
- - uid: 17730
+ - uid: 17732
components:
- rot: 3.141592653589793 rad
pos: -42.5,-36.5
parent: 2
type: Transform
- - uid: 17731
+ - uid: 17733
components:
- rot: 3.141592653589793 rad
pos: -38.5,-59.5
parent: 2
type: Transform
- - uid: 17732
+ - uid: 17734
components:
- rot: 3.141592653589793 rad
pos: -40.5,-52.5
@@ -114617,7 +114656,7 @@ entities:
type: Transform
- color: '#947507FF'
type: AtmosPipeColor
- - uid: 17733
+ - uid: 17735
components:
- rot: 3.141592653589793 rad
pos: -37.5,-52.5
@@ -114625,7 +114664,7 @@ entities:
type: Transform
- color: '#947507FF'
type: AtmosPipeColor
- - uid: 17734
+ - uid: 17736
components:
- rot: 1.5707963267948966 rad
pos: -37.5,-55.5
@@ -114633,7 +114672,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17735
+ - uid: 17737
components:
- rot: -1.5707963267948966 rad
pos: -38.5,-55.5
@@ -114641,7 +114680,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17736
+ - uid: 17738
components:
- rot: 1.5707963267948966 rad
pos: -39.5,-48.5
@@ -114649,7 +114688,7 @@ entities:
type: Transform
- color: '#947507FF'
type: AtmosPipeColor
- - uid: 17737
+ - uid: 17739
components:
- rot: 3.141592653589793 rad
pos: -38.5,-47.5
@@ -114657,7 +114696,7 @@ entities:
type: Transform
- color: '#947507FF'
type: AtmosPipeColor
- - uid: 17738
+ - uid: 17740
components:
- rot: 3.141592653589793 rad
pos: -38.5,-46.5
@@ -114665,7 +114704,7 @@ entities:
type: Transform
- color: '#947507FF'
type: AtmosPipeColor
- - uid: 17739
+ - uid: 17741
components:
- rot: 1.5707963267948966 rad
pos: -35.5,-57.5
@@ -114673,35 +114712,35 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17740
+ - uid: 17742
components:
- pos: -31.5,-31.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17741
+ - uid: 17743
components:
- pos: -32.5,-31.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17742
+ - uid: 17744
components:
- pos: -32.5,-32.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17743
+ - uid: 17745
components:
- pos: -31.5,-32.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17744
+ - uid: 17746
components:
- rot: 3.141592653589793 rad
pos: -31.5,-33.5
@@ -114709,7 +114748,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17745
+ - uid: 17747
components:
- rot: 3.141592653589793 rad
pos: -32.5,-34.5
@@ -114717,7 +114756,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17746
+ - uid: 17748
components:
- rot: 1.5707963267948966 rad
pos: -31.5,-33.5
@@ -114725,7 +114764,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17747
+ - uid: 17749
components:
- rot: 1.5707963267948966 rad
pos: -30.5,-33.5
@@ -114733,7 +114772,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17748
+ - uid: 17750
components:
- rot: 1.5707963267948966 rad
pos: -29.5,-33.5
@@ -114741,7 +114780,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17749
+ - uid: 17751
components:
- rot: 1.5707963267948966 rad
pos: -28.5,-33.5
@@ -114749,7 +114788,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17750
+ - uid: 17752
components:
- rot: 1.5707963267948966 rad
pos: -27.5,-33.5
@@ -114757,7 +114796,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17751
+ - uid: 17753
components:
- rot: 1.5707963267948966 rad
pos: -26.5,-33.5
@@ -114765,7 +114804,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17752
+ - uid: 17754
components:
- rot: 1.5707963267948966 rad
pos: -25.5,-33.5
@@ -114773,7 +114812,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17753
+ - uid: 17755
components:
- rot: 1.5707963267948966 rad
pos: -34.5,-33.5
@@ -114781,7 +114820,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17754
+ - uid: 17756
components:
- rot: 1.5707963267948966 rad
pos: -35.5,-33.5
@@ -114789,7 +114828,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17755
+ - uid: 17757
components:
- rot: 1.5707963267948966 rad
pos: -36.5,-33.5
@@ -114797,7 +114836,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17756
+ - uid: 17758
components:
- rot: 1.5707963267948966 rad
pos: -37.5,-33.5
@@ -114805,7 +114844,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17757
+ - uid: 17759
components:
- rot: 1.5707963267948966 rad
pos: -32.5,-34.5
@@ -114813,7 +114852,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17758
+ - uid: 17760
components:
- rot: 1.5707963267948966 rad
pos: -33.5,-34.5
@@ -114821,7 +114860,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17759
+ - uid: 17761
components:
- rot: 1.5707963267948966 rad
pos: -34.5,-34.5
@@ -114829,7 +114868,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17760
+ - uid: 17762
components:
- rot: 1.5707963267948966 rad
pos: -35.5,-34.5
@@ -114837,7 +114876,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17761
+ - uid: 17763
components:
- rot: 1.5707963267948966 rad
pos: -36.5,-34.5
@@ -114845,7 +114884,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17762
+ - uid: 17764
components:
- rot: 1.5707963267948966 rad
pos: -37.5,-34.5
@@ -114853,70 +114892,70 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17763
+ - uid: 17765
components:
- pos: -32.5,-35.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17764
+ - uid: 17766
components:
- pos: -32.5,-36.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17765
+ - uid: 17767
components:
- pos: -32.5,-39.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17766
+ - uid: 17768
components:
- pos: -31.5,-35.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17767
+ - uid: 17769
components:
- pos: -31.5,-36.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17768
+ - uid: 17770
components:
- pos: -31.5,-38.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17769
+ - uid: 17771
components:
- pos: -31.5,-37.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17770
+ - uid: 17772
components:
- pos: -31.5,-40.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17771
+ - uid: 17773
components:
- pos: -32.5,-38.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17772
+ - uid: 17774
components:
- rot: -1.5707963267948966 rad
pos: -29.5,-34.5
@@ -114924,7 +114963,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17773
+ - uid: 17775
components:
- rot: -1.5707963267948966 rad
pos: -28.5,-34.5
@@ -114932,7 +114971,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17774
+ - uid: 17776
components:
- rot: -1.5707963267948966 rad
pos: -27.5,-34.5
@@ -114940,7 +114979,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17775
+ - uid: 17777
components:
- rot: -1.5707963267948966 rad
pos: -26.5,-34.5
@@ -114948,7 +114987,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17776
+ - uid: 17778
components:
- rot: -1.5707963267948966 rad
pos: -25.5,-34.5
@@ -114956,7 +114995,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17777
+ - uid: 17779
components:
- rot: -1.5707963267948966 rad
pos: -24.5,-34.5
@@ -114964,21 +115003,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17778
+ - uid: 17780
components:
- pos: -37.5,-55.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17779
+ - uid: 17781
components:
- pos: -37.5,-56.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17780
+ - uid: 17782
components:
- rot: 1.5707963267948966 rad
pos: -36.5,-55.5
@@ -114986,7 +115025,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17781
+ - uid: 17783
components:
- rot: 3.141592653589793 rad
pos: -35.5,-54.5
@@ -114994,7 +115033,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17782
+ - uid: 17784
components:
- rot: 3.141592653589793 rad
pos: -35.5,-52.5
@@ -115002,7 +115041,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17783
+ - uid: 17785
components:
- rot: 3.141592653589793 rad
pos: -35.5,-51.5
@@ -115010,7 +115049,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17784
+ - uid: 17786
components:
- rot: 3.141592653589793 rad
pos: -35.5,-50.5
@@ -115018,7 +115057,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17785
+ - uid: 17787
components:
- rot: 3.141592653589793 rad
pos: -35.5,-49.5
@@ -115026,7 +115065,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17786
+ - uid: 17788
components:
- rot: 3.141592653589793 rad
pos: -35.5,-48.5
@@ -115034,7 +115073,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17787
+ - uid: 17789
components:
- rot: 3.141592653589793 rad
pos: -35.5,-47.5
@@ -115042,7 +115081,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17788
+ - uid: 17790
components:
- rot: 3.141592653589793 rad
pos: -35.5,-46.5
@@ -115050,7 +115089,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17789
+ - uid: 17791
components:
- rot: 3.141592653589793 rad
pos: -35.5,-45.5
@@ -115058,7 +115097,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17790
+ - uid: 17792
components:
- rot: 3.141592653589793 rad
pos: -35.5,-43.5
@@ -115066,7 +115105,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17791
+ - uid: 17793
components:
- rot: 3.141592653589793 rad
pos: -35.5,-42.5
@@ -115074,7 +115113,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17792
+ - uid: 17794
components:
- rot: 3.141592653589793 rad
pos: -34.5,-56.5
@@ -115082,7 +115121,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17793
+ - uid: 17795
components:
- rot: 3.141592653589793 rad
pos: -34.5,-55.5
@@ -115090,7 +115129,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17794
+ - uid: 17796
components:
- rot: 3.141592653589793 rad
pos: -34.5,-54.5
@@ -115098,7 +115137,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17795
+ - uid: 17797
components:
- rot: 3.141592653589793 rad
pos: -34.5,-53.5
@@ -115106,7 +115145,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17796
+ - uid: 17798
components:
- rot: 3.141592653589793 rad
pos: -34.5,-52.5
@@ -115114,7 +115153,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17797
+ - uid: 17799
components:
- rot: 3.141592653589793 rad
pos: -34.5,-51.5
@@ -115122,7 +115161,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17798
+ - uid: 17800
components:
- rot: 3.141592653589793 rad
pos: -34.5,-50.5
@@ -115130,7 +115169,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17799
+ - uid: 17801
components:
- rot: 3.141592653589793 rad
pos: -34.5,-49.5
@@ -115138,7 +115177,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17800
+ - uid: 17802
components:
- rot: 3.141592653589793 rad
pos: -34.5,-48.5
@@ -115146,7 +115185,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17801
+ - uid: 17803
components:
- rot: 3.141592653589793 rad
pos: -34.5,-47.5
@@ -115154,7 +115193,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17802
+ - uid: 17804
components:
- rot: 3.141592653589793 rad
pos: -34.5,-46.5
@@ -115162,7 +115201,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17803
+ - uid: 17805
components:
- rot: -1.5707963267948966 rad
pos: -33.5,-40.5
@@ -115170,14 +115209,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17804
+ - uid: 17806
components:
- pos: -34.5,-41.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17805
+ - uid: 17807
components:
- rot: -1.5707963267948966 rad
pos: -34.5,-41.5
@@ -115185,7 +115224,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17806
+ - uid: 17808
components:
- rot: -1.5707963267948966 rad
pos: -33.5,-41.5
@@ -115193,7 +115232,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17807
+ - uid: 17809
components:
- rot: -1.5707963267948966 rad
pos: -32.5,-41.5
@@ -115201,63 +115240,63 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17808
+ - uid: 17810
components:
- pos: -38.5,-44.5
parent: 2
type: Transform
- color: '#947507FF'
type: AtmosPipeColor
- - uid: 17809
+ - uid: 17811
components:
- pos: -38.5,-43.5
parent: 2
type: Transform
- color: '#947507FF'
type: AtmosPipeColor
- - uid: 17810
+ - uid: 17812
components:
- pos: -38.5,-41.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17811
+ - uid: 17813
components:
- pos: -38.5,-40.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17812
+ - uid: 17814
components:
- pos: -38.5,-39.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17813
+ - uid: 17815
components:
- pos: -38.5,-38.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17814
+ - uid: 17816
components:
- pos: -38.5,-37.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17815
+ - uid: 17817
components:
- pos: -38.5,-36.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17816
+ - uid: 17818
components:
- rot: -1.5707963267948966 rad
pos: -39.5,-35.5
@@ -115265,7 +115304,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17817
+ - uid: 17819
components:
- rot: -1.5707963267948966 rad
pos: -41.5,-34.5
@@ -115273,7 +115312,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17818
+ - uid: 17820
components:
- rot: -1.5707963267948966 rad
pos: -42.5,-34.5
@@ -115281,7 +115320,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17819
+ - uid: 17821
components:
- rot: 3.141592653589793 rad
pos: -41.5,-8.5
@@ -115289,7 +115328,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17820
+ - uid: 17822
components:
- rot: -1.5707963267948966 rad
pos: -23.5,-57.5
@@ -115297,7 +115336,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17821
+ - uid: 17823
components:
- rot: -1.5707963267948966 rad
pos: -22.5,-57.5
@@ -115305,7 +115344,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17822
+ - uid: 17824
components:
- rot: -1.5707963267948966 rad
pos: -20.5,-57.5
@@ -115313,7 +115352,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17823
+ - uid: 17825
components:
- rot: -1.5707963267948966 rad
pos: -21.5,-57.5
@@ -115321,7 +115360,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17824
+ - uid: 17826
components:
- rot: -1.5707963267948966 rad
pos: -19.5,-60.5
@@ -115329,7 +115368,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17825
+ - uid: 17827
components:
- rot: -1.5707963267948966 rad
pos: -19.5,-71.5
@@ -115337,7 +115376,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17826
+ - uid: 17828
components:
- rot: -1.5707963267948966 rad
pos: -20.5,-71.5
@@ -115345,7 +115384,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17827
+ - uid: 17829
components:
- rot: -1.5707963267948966 rad
pos: -21.5,-71.5
@@ -115353,7 +115392,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17828
+ - uid: 17830
components:
- rot: -1.5707963267948966 rad
pos: -22.5,-71.5
@@ -115361,7 +115400,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17829
+ - uid: 17831
components:
- rot: -1.5707963267948966 rad
pos: -23.5,-71.5
@@ -115369,7 +115408,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17830
+ - uid: 17832
components:
- rot: -1.5707963267948966 rad
pos: -24.5,-71.5
@@ -115377,7 +115416,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17831
+ - uid: 17833
components:
- rot: -1.5707963267948966 rad
pos: -25.5,-71.5
@@ -115385,7 +115424,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17832
+ - uid: 17834
components:
- rot: -1.5707963267948966 rad
pos: -26.5,-71.5
@@ -115393,7 +115432,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17833
+ - uid: 17835
components:
- rot: 3.141592653589793 rad
pos: -28.5,-71.5
@@ -115401,7 +115440,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17834
+ - uid: 17836
components:
- rot: -1.5707963267948966 rad
pos: -27.5,-71.5
@@ -115409,7 +115448,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17835
+ - uid: 17837
components:
- rot: 3.141592653589793 rad
pos: -28.5,-70.5
@@ -115417,7 +115456,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17836
+ - uid: 17838
components:
- rot: -1.5707963267948966 rad
pos: -31.5,-71.5
@@ -115425,7 +115464,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17837
+ - uid: 17839
components:
- rot: -1.5707963267948966 rad
pos: -32.5,-71.5
@@ -115433,7 +115472,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17838
+ - uid: 17840
components:
- rot: -1.5707963267948966 rad
pos: -33.5,-71.5
@@ -115441,7 +115480,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17839
+ - uid: 17841
components:
- rot: -1.5707963267948966 rad
pos: -34.5,-71.5
@@ -115449,7 +115488,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17840
+ - uid: 17842
components:
- rot: -1.5707963267948966 rad
pos: -35.5,-71.5
@@ -115457,7 +115496,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17841
+ - uid: 17843
components:
- rot: -1.5707963267948966 rad
pos: -36.5,-71.5
@@ -115465,7 +115504,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17842
+ - uid: 17844
components:
- rot: -1.5707963267948966 rad
pos: -37.5,-71.5
@@ -115473,7 +115512,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17843
+ - uid: 17845
components:
- rot: -1.5707963267948966 rad
pos: -38.5,-71.5
@@ -115481,7 +115520,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17844
+ - uid: 17846
components:
- rot: -1.5707963267948966 rad
pos: -39.5,-71.5
@@ -115489,7 +115528,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17845
+ - uid: 17847
components:
- rot: -1.5707963267948966 rad
pos: -21.5,-69.5
@@ -115497,7 +115536,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17846
+ - uid: 17848
components:
- rot: -1.5707963267948966 rad
pos: -22.5,-69.5
@@ -115505,7 +115544,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17847
+ - uid: 17849
components:
- rot: -1.5707963267948966 rad
pos: -23.5,-69.5
@@ -115513,7 +115552,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17848
+ - uid: 17850
components:
- rot: -1.5707963267948966 rad
pos: -24.5,-69.5
@@ -115521,7 +115560,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17849
+ - uid: 17851
components:
- rot: -1.5707963267948966 rad
pos: -25.5,-69.5
@@ -115529,7 +115568,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17850
+ - uid: 17852
components:
- rot: -1.5707963267948966 rad
pos: -26.5,-69.5
@@ -115537,7 +115576,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17851
+ - uid: 17853
components:
- rot: -1.5707963267948966 rad
pos: -28.5,-71.5
@@ -115545,7 +115584,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17852
+ - uid: 17854
components:
- rot: -1.5707963267948966 rad
pos: -29.5,-69.5
@@ -115553,7 +115592,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17853
+ - uid: 17855
components:
- rot: -1.5707963267948966 rad
pos: -31.5,-69.5
@@ -115561,7 +115600,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17854
+ - uid: 17856
components:
- rot: -1.5707963267948966 rad
pos: -32.5,-69.5
@@ -115569,7 +115608,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17855
+ - uid: 17857
components:
- rot: -1.5707963267948966 rad
pos: -33.5,-69.5
@@ -115577,7 +115616,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17856
+ - uid: 17858
components:
- rot: -1.5707963267948966 rad
pos: -34.5,-69.5
@@ -115585,7 +115624,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17857
+ - uid: 17859
components:
- rot: -1.5707963267948966 rad
pos: -35.5,-69.5
@@ -115593,7 +115632,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17858
+ - uid: 17860
components:
- rot: -1.5707963267948966 rad
pos: -36.5,-69.5
@@ -115601,7 +115640,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17859
+ - uid: 17861
components:
- rot: -1.5707963267948966 rad
pos: -37.5,-69.5
@@ -115609,7 +115648,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17860
+ - uid: 17862
components:
- rot: -1.5707963267948966 rad
pos: -38.5,-69.5
@@ -115617,7 +115656,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17861
+ - uid: 17863
components:
- rot: -1.5707963267948966 rad
pos: -39.5,-69.5
@@ -115625,7 +115664,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17862
+ - uid: 17864
components:
- rot: -1.5707963267948966 rad
pos: -40.5,-69.5
@@ -115633,7 +115672,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17863
+ - uid: 17865
components:
- rot: -1.5707963267948966 rad
pos: -41.5,-69.5
@@ -115641,14 +115680,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17864
+ - uid: 17866
components:
- pos: -42.5,-70.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17865
+ - uid: 17867
components:
- rot: 1.5707963267948966 rad
pos: -22.5,-58.5
@@ -115656,7 +115695,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17866
+ - uid: 17868
components:
- rot: 1.5707963267948966 rad
pos: -21.5,-58.5
@@ -115664,7 +115703,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17867
+ - uid: 17869
components:
- rot: 3.141592653589793 rad
pos: 21.5,-28.5
@@ -115672,14 +115711,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17868
+ - uid: 17870
components:
- pos: 23.5,-28.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17869
+ - uid: 17871
components:
- rot: 1.5707963267948966 rad
pos: -35.5,20.5
@@ -115687,7 +115726,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17870
+ - uid: 17872
components:
- rot: -1.5707963267948966 rad
pos: -13.5,39.5
@@ -115695,7 +115734,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17871
+ - uid: 17873
components:
- rot: -1.5707963267948966 rad
pos: -15.5,39.5
@@ -115703,7 +115742,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17872
+ - uid: 17874
components:
- rot: -1.5707963267948966 rad
pos: -14.5,39.5
@@ -115711,7 +115750,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17873
+ - uid: 17875
components:
- rot: -1.5707963267948966 rad
pos: -20.5,23.5
@@ -115719,91 +115758,91 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17874
+ - uid: 17876
components:
- pos: -20.5,14.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17875
+ - uid: 17877
components:
- pos: -20.5,15.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17876
+ - uid: 17878
components:
- pos: -20.5,17.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17877
+ - uid: 17879
components:
- pos: -20.5,18.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17878
+ - uid: 17880
components:
- pos: -20.5,19.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17879
+ - uid: 17881
components:
- pos: -18.5,13.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17880
+ - uid: 17882
components:
- pos: -18.5,14.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17881
+ - uid: 17883
components:
- pos: -18.5,15.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17882
+ - uid: 17884
components:
- pos: -18.5,16.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17883
+ - uid: 17885
components:
- pos: -18.5,17.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17884
+ - uid: 17886
components:
- pos: -18.5,18.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17885
+ - uid: 17887
components:
- pos: -18.5,20.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17886
+ - uid: 17888
components:
- rot: 3.141592653589793 rad
pos: -18.5,21.5
@@ -115811,7 +115850,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17887
+ - uid: 17889
components:
- rot: -1.5707963267948966 rad
pos: -21.5,20.5
@@ -115819,7 +115858,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17888
+ - uid: 17890
components:
- rot: -1.5707963267948966 rad
pos: -22.5,20.5
@@ -115827,7 +115866,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17889
+ - uid: 17891
components:
- rot: 3.141592653589793 rad
pos: -18.5,22.5
@@ -115835,7 +115874,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17890
+ - uid: 17892
components:
- rot: -1.5707963267948966 rad
pos: -19.5,23.5
@@ -115843,7 +115882,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17891
+ - uid: 17893
components:
- rot: -1.5707963267948966 rad
pos: -21.5,23.5
@@ -115851,7 +115890,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17892
+ - uid: 17894
components:
- rot: -1.5707963267948966 rad
pos: -22.5,23.5
@@ -115859,7 +115898,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17893
+ - uid: 17895
components:
- rot: -1.5707963267948966 rad
pos: -23.5,23.5
@@ -115867,7 +115906,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17894
+ - uid: 17896
components:
- rot: -1.5707963267948966 rad
pos: -25.5,23.5
@@ -115875,7 +115914,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17895
+ - uid: 17897
components:
- rot: -1.5707963267948966 rad
pos: -26.5,23.5
@@ -115883,7 +115922,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17896
+ - uid: 17898
components:
- rot: -1.5707963267948966 rad
pos: -27.5,23.5
@@ -115891,7 +115930,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17897
+ - uid: 17899
components:
- rot: 1.5707963267948966 rad
pos: -27.5,20.5
@@ -115899,7 +115938,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17898
+ - uid: 17900
components:
- rot: 1.5707963267948966 rad
pos: -26.5,20.5
@@ -115907,7 +115946,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17899
+ - uid: 17901
components:
- rot: 1.5707963267948966 rad
pos: -25.5,20.5
@@ -115915,7 +115954,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17900
+ - uid: 17902
components:
- rot: 1.5707963267948966 rad
pos: -24.5,20.5
@@ -115923,7 +115962,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17901
+ - uid: 17903
components:
- rot: 1.5707963267948966 rad
pos: -29.5,23.5
@@ -115931,7 +115970,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17902
+ - uid: 17904
components:
- rot: 1.5707963267948966 rad
pos: -30.5,23.5
@@ -115939,7 +115978,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17903
+ - uid: 17905
components:
- rot: 1.5707963267948966 rad
pos: -31.5,23.5
@@ -115947,7 +115986,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17904
+ - uid: 17906
components:
- rot: 1.5707963267948966 rad
pos: -29.5,20.5
@@ -115955,7 +115994,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17905
+ - uid: 17907
components:
- rot: 1.5707963267948966 rad
pos: -30.5,20.5
@@ -115963,7 +116002,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17906
+ - uid: 17908
components:
- rot: 1.5707963267948966 rad
pos: -31.5,20.5
@@ -115971,7 +116010,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17907
+ - uid: 17909
components:
- rot: 1.5707963267948966 rad
pos: -33.5,23.5
@@ -115979,7 +116018,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17908
+ - uid: 17910
components:
- rot: 1.5707963267948966 rad
pos: -34.5,23.5
@@ -115987,7 +116026,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17909
+ - uid: 17911
components:
- rot: 1.5707963267948966 rad
pos: -35.5,23.5
@@ -115995,7 +116034,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17910
+ - uid: 17912
components:
- rot: 1.5707963267948966 rad
pos: -36.5,23.5
@@ -116003,84 +116042,84 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17911
+ - uid: 17913
components:
- pos: -32.5,24.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17912
+ - uid: 17914
components:
- pos: -32.5,25.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17913
+ - uid: 17915
components:
- pos: -32.5,26.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17914
+ - uid: 17916
components:
- pos: -32.5,27.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17915
+ - uid: 17917
components:
- pos: -33.5,21.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17916
+ - uid: 17918
components:
- pos: -33.5,22.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17917
+ - uid: 17919
components:
- pos: -33.5,23.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17918
+ - uid: 17920
components:
- pos: -33.5,24.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17919
+ - uid: 17921
components:
- pos: -33.5,25.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17920
+ - uid: 17922
components:
- pos: -33.5,26.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17921
+ - uid: 17923
components:
- pos: -33.5,27.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17922
+ - uid: 17924
components:
- rot: 1.5707963267948966 rad
pos: -37.5,23.5
@@ -116088,7 +116127,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17923
+ - uid: 17925
components:
- rot: 1.5707963267948966 rad
pos: -38.5,23.5
@@ -116096,7 +116135,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17924
+ - uid: 17926
components:
- rot: 1.5707963267948966 rad
pos: -39.5,23.5
@@ -116104,7 +116143,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17925
+ - uid: 17927
components:
- rot: 1.5707963267948966 rad
pos: -37.5,20.5
@@ -116112,7 +116151,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17926
+ - uid: 17928
components:
- rot: 1.5707963267948966 rad
pos: -38.5,20.5
@@ -116120,7 +116159,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17927
+ - uid: 17929
components:
- rot: 1.5707963267948966 rad
pos: -39.5,20.5
@@ -116128,7 +116167,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17928
+ - uid: 17930
components:
- rot: 1.5707963267948966 rad
pos: -40.5,20.5
@@ -116136,84 +116175,84 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17929
+ - uid: 17931
components:
- pos: -40.5,24.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17930
+ - uid: 17932
components:
- pos: -40.5,25.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17931
+ - uid: 17933
components:
- pos: -40.5,26.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17932
+ - uid: 17934
components:
- pos: -40.5,27.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17933
+ - uid: 17935
components:
- pos: -41.5,21.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17934
+ - uid: 17936
components:
- pos: -41.5,22.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17935
+ - uid: 17937
components:
- pos: -41.5,23.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17936
+ - uid: 17938
components:
- pos: -41.5,24.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17937
+ - uid: 17939
components:
- pos: -41.5,25.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17938
+ - uid: 17940
components:
- pos: -41.5,26.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17939
+ - uid: 17941
components:
- pos: -41.5,27.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17940
+ - uid: 17942
components:
- rot: -1.5707963267948966 rad
pos: -12.5,39.5
@@ -116221,49 +116260,49 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17941
+ - uid: 17943
components:
- pos: -40.5,32.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17942
+ - uid: 17944
components:
- pos: -40.5,31.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17943
+ - uid: 17945
components:
- pos: -41.5,30.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17944
+ - uid: 17946
components:
- pos: -40.5,29.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17945
+ - uid: 17947
components:
- pos: -40.5,28.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17946
+ - uid: 17948
components:
- pos: -41.5,28.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17947
+ - uid: 17949
components:
- rot: -1.5707963267948966 rad
pos: -40.5,29.5
@@ -116271,7 +116310,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17948
+ - uid: 17950
components:
- rot: -1.5707963267948966 rad
pos: -39.5,29.5
@@ -116279,7 +116318,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17949
+ - uid: 17951
components:
- rot: -1.5707963267948966 rad
pos: -38.5,29.5
@@ -116287,7 +116326,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17950
+ - uid: 17952
components:
- rot: -1.5707963267948966 rad
pos: -39.5,30.5
@@ -116295,7 +116334,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17951
+ - uid: 17953
components:
- rot: -1.5707963267948966 rad
pos: -38.5,30.5
@@ -116303,7 +116342,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17952
+ - uid: 17954
components:
- rot: -1.5707963267948966 rad
pos: -41.5,33.5
@@ -116311,7 +116350,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17953
+ - uid: 17955
components:
- rot: -1.5707963267948966 rad
pos: -42.5,33.5
@@ -116319,7 +116358,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17954
+ - uid: 17956
components:
- rot: -1.5707963267948966 rad
pos: -43.5,33.5
@@ -116327,7 +116366,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17955
+ - uid: 17957
components:
- rot: -1.5707963267948966 rad
pos: -42.5,31.5
@@ -116335,7 +116374,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17956
+ - uid: 17958
components:
- rot: -1.5707963267948966 rad
pos: -43.5,31.5
@@ -116343,14 +116382,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17957
+ - uid: 17959
components:
- pos: -49.5,32.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17958
+ - uid: 17960
components:
- rot: 1.5707963267948966 rad
pos: -48.5,33.5
@@ -116358,7 +116397,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17959
+ - uid: 17961
components:
- rot: 1.5707963267948966 rad
pos: -47.5,33.5
@@ -116366,7 +116405,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17960
+ - uid: 17962
components:
- rot: 1.5707963267948966 rad
pos: -46.5,33.5
@@ -116374,7 +116413,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17961
+ - uid: 17963
components:
- rot: 1.5707963267948966 rad
pos: -45.5,31.5
@@ -116382,7 +116421,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17962
+ - uid: 17964
components:
- rot: -1.5707963267948966 rad
pos: -21.5,13.5
@@ -116390,7 +116429,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17963
+ - uid: 17965
components:
- rot: -1.5707963267948966 rad
pos: -22.5,13.5
@@ -116398,7 +116437,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17964
+ - uid: 17966
components:
- rot: -1.5707963267948966 rad
pos: -23.5,13.5
@@ -116406,7 +116445,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17965
+ - uid: 17967
components:
- rot: -1.5707963267948966 rad
pos: -24.5,13.5
@@ -116414,7 +116453,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17966
+ - uid: 17968
components:
- rot: -1.5707963267948966 rad
pos: -19.5,12.5
@@ -116422,7 +116461,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17967
+ - uid: 17969
components:
- rot: -1.5707963267948966 rad
pos: -20.5,12.5
@@ -116430,7 +116469,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17968
+ - uid: 17970
components:
- rot: -1.5707963267948966 rad
pos: -21.5,12.5
@@ -116438,7 +116477,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17969
+ - uid: 17971
components:
- rot: -1.5707963267948966 rad
pos: -22.5,12.5
@@ -116446,7 +116485,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17970
+ - uid: 17972
components:
- rot: -1.5707963267948966 rad
pos: -23.5,12.5
@@ -116454,7 +116493,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17971
+ - uid: 17973
components:
- rot: -1.5707963267948966 rad
pos: -24.5,12.5
@@ -116462,7 +116501,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17972
+ - uid: 17974
components:
- rot: -1.5707963267948966 rad
pos: -25.5,12.5
@@ -116470,14 +116509,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17973
+ - uid: 17975
components:
- pos: 71.5,-30.5
parent: 2
type: Transform
- color: '#9755CCFF'
type: AtmosPipeColor
- - uid: 17974
+ - uid: 17976
components:
- rot: -1.5707963267948966 rad
pos: -27.5,1.5
@@ -116485,7 +116524,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17975
+ - uid: 17977
components:
- rot: -1.5707963267948966 rad
pos: -29.5,1.5
@@ -116493,7 +116532,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17976
+ - uid: 17978
components:
- rot: -1.5707963267948966 rad
pos: -30.5,1.5
@@ -116501,7 +116540,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17977
+ - uid: 17979
components:
- rot: -1.5707963267948966 rad
pos: -31.5,1.5
@@ -116509,7 +116548,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17978
+ - uid: 17980
components:
- rot: -1.5707963267948966 rad
pos: -32.5,1.5
@@ -116517,7 +116556,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17979
+ - uid: 17981
components:
- rot: -1.5707963267948966 rad
pos: -33.5,1.5
@@ -116525,7 +116564,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17980
+ - uid: 17982
components:
- rot: -1.5707963267948966 rad
pos: -34.5,1.5
@@ -116533,7 +116572,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17981
+ - uid: 17983
components:
- rot: -1.5707963267948966 rad
pos: -35.5,1.5
@@ -116541,7 +116580,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17982
+ - uid: 17984
components:
- rot: -1.5707963267948966 rad
pos: -36.5,1.5
@@ -116549,7 +116588,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17983
+ - uid: 17985
components:
- rot: -1.5707963267948966 rad
pos: -25.5,0.5
@@ -116557,7 +116596,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17984
+ - uid: 17986
components:
- rot: -1.5707963267948966 rad
pos: -26.5,0.5
@@ -116565,7 +116604,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17985
+ - uid: 17987
components:
- rot: -1.5707963267948966 rad
pos: -27.5,0.5
@@ -116573,7 +116612,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17986
+ - uid: 17988
components:
- rot: -1.5707963267948966 rad
pos: -28.5,0.5
@@ -116581,7 +116620,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17987
+ - uid: 17989
components:
- rot: -1.5707963267948966 rad
pos: -30.5,0.5
@@ -116589,7 +116628,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17988
+ - uid: 17990
components:
- rot: -1.5707963267948966 rad
pos: -31.5,0.5
@@ -116597,7 +116636,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17989
+ - uid: 17991
components:
- rot: -1.5707963267948966 rad
pos: -32.5,0.5
@@ -116605,7 +116644,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17990
+ - uid: 17992
components:
- rot: -1.5707963267948966 rad
pos: -33.5,0.5
@@ -116613,7 +116652,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17991
+ - uid: 17993
components:
- rot: -1.5707963267948966 rad
pos: -34.5,0.5
@@ -116621,7 +116660,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17992
+ - uid: 17994
components:
- rot: -1.5707963267948966 rad
pos: -35.5,0.5
@@ -116629,7 +116668,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17993
+ - uid: 17995
components:
- rot: -1.5707963267948966 rad
pos: -36.5,0.5
@@ -116637,7 +116676,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17994
+ - uid: 17996
components:
- rot: -1.5707963267948966 rad
pos: -37.5,0.5
@@ -116645,56 +116684,56 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17995
+ - uid: 17997
components:
- pos: -28.5,0.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17996
+ - uid: 17998
components:
- pos: -28.5,-0.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17997
+ - uid: 17999
components:
- pos: -28.5,-1.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17998
+ - uid: 18000
components:
- pos: -28.5,-2.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17999
+ - uid: 18001
components:
- pos: -29.5,-0.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18000
+ - uid: 18002
components:
- pos: -29.5,-1.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18001
+ - uid: 18003
components:
- pos: -29.5,-2.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18002
+ - uid: 18004
components:
- rot: 3.141592653589793 rad
pos: -37.5,2.5
@@ -116702,7 +116741,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18003
+ - uid: 18005
components:
- rot: 3.141592653589793 rad
pos: -37.5,3.5
@@ -116710,7 +116749,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18004
+ - uid: 18006
components:
- rot: 3.141592653589793 rad
pos: -37.5,4.5
@@ -116718,7 +116757,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18005
+ - uid: 18007
components:
- rot: 3.141592653589793 rad
pos: -37.5,6.5
@@ -116726,7 +116765,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18006
+ - uid: 18008
components:
- rot: 3.141592653589793 rad
pos: -37.5,7.5
@@ -116734,7 +116773,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18007
+ - uid: 18009
components:
- rot: 3.141592653589793 rad
pos: -38.5,1.5
@@ -116742,7 +116781,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18008
+ - uid: 18010
components:
- rot: 3.141592653589793 rad
pos: -38.5,2.5
@@ -116750,7 +116789,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18009
+ - uid: 18011
components:
- rot: 3.141592653589793 rad
pos: -38.5,4.5
@@ -116758,7 +116797,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18010
+ - uid: 18012
components:
- rot: 3.141592653589793 rad
pos: -38.5,5.5
@@ -116766,7 +116805,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18011
+ - uid: 18013
components:
- rot: 3.141592653589793 rad
pos: -38.5,6.5
@@ -116774,7 +116813,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18012
+ - uid: 18014
components:
- rot: 3.141592653589793 rad
pos: -38.5,7.5
@@ -116782,7 +116821,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18013
+ - uid: 18015
components:
- rot: 3.141592653589793 rad
pos: -37.5,9.5
@@ -116790,7 +116829,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18014
+ - uid: 18016
components:
- rot: 3.141592653589793 rad
pos: -37.5,10.5
@@ -116798,7 +116837,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18015
+ - uid: 18017
components:
- rot: 3.141592653589793 rad
pos: -37.5,11.5
@@ -116806,7 +116845,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18016
+ - uid: 18018
components:
- rot: 3.141592653589793 rad
pos: -37.5,12.5
@@ -116814,7 +116853,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18017
+ - uid: 18019
components:
- rot: 3.141592653589793 rad
pos: -38.5,9.5
@@ -116822,7 +116861,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18018
+ - uid: 18020
components:
- rot: 3.141592653589793 rad
pos: -38.5,10.5
@@ -116830,7 +116869,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18019
+ - uid: 18021
components:
- rot: 3.141592653589793 rad
pos: -38.5,11.5
@@ -116838,7 +116877,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18020
+ - uid: 18022
components:
- rot: 3.141592653589793 rad
pos: -38.5,12.5
@@ -116846,14 +116885,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18021
+ - uid: 18023
components:
- pos: -38.5,13.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18022
+ - uid: 18024
components:
- rot: 1.5707963267948966 rad
pos: -37.5,14.5
@@ -116861,7 +116900,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18023
+ - uid: 18025
components:
- rot: 1.5707963267948966 rad
pos: -36.5,14.5
@@ -116869,7 +116908,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18024
+ - uid: 18026
components:
- rot: 1.5707963267948966 rad
pos: -35.5,14.5
@@ -116877,7 +116916,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18025
+ - uid: 18027
components:
- rot: 1.5707963267948966 rad
pos: -34.5,14.5
@@ -116885,7 +116924,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18026
+ - uid: 18028
components:
- rot: 1.5707963267948966 rad
pos: -33.5,14.5
@@ -116893,7 +116932,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18027
+ - uid: 18029
components:
- rot: 1.5707963267948966 rad
pos: -32.5,14.5
@@ -116901,7 +116940,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18028
+ - uid: 18030
components:
- rot: 1.5707963267948966 rad
pos: -31.5,14.5
@@ -116909,7 +116948,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18029
+ - uid: 18031
components:
- rot: 1.5707963267948966 rad
pos: -36.5,13.5
@@ -116917,7 +116956,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18030
+ - uid: 18032
components:
- rot: 1.5707963267948966 rad
pos: -35.5,13.5
@@ -116925,7 +116964,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18031
+ - uid: 18033
components:
- rot: 1.5707963267948966 rad
pos: -34.5,13.5
@@ -116933,7 +116972,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18032
+ - uid: 18034
components:
- rot: 1.5707963267948966 rad
pos: -33.5,13.5
@@ -116941,7 +116980,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18033
+ - uid: 18035
components:
- rot: 1.5707963267948966 rad
pos: -32.5,13.5
@@ -116949,7 +116988,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18034
+ - uid: 18036
components:
- rot: 1.5707963267948966 rad
pos: -31.5,13.5
@@ -116957,7 +116996,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18035
+ - uid: 18037
components:
- rot: -1.5707963267948966 rad
pos: -38.5,1.5
@@ -116965,7 +117004,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18036
+ - uid: 18038
components:
- rot: -1.5707963267948966 rad
pos: -39.5,1.5
@@ -116973,7 +117012,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18037
+ - uid: 18039
components:
- rot: -1.5707963267948966 rad
pos: -40.5,1.5
@@ -116981,7 +117020,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18038
+ - uid: 18040
components:
- rot: -1.5707963267948966 rad
pos: -40.5,0.5
@@ -116989,7 +117028,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18039
+ - uid: 18041
components:
- rot: -1.5707963267948966 rad
pos: -41.5,0.5
@@ -116997,7 +117036,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18040
+ - uid: 18042
components:
- rot: -1.5707963267948966 rad
pos: -42.5,0.5
@@ -117005,7 +117044,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18041
+ - uid: 18043
components:
- rot: -1.5707963267948966 rad
pos: -43.5,0.5
@@ -117013,7 +117052,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18042
+ - uid: 18044
components:
- rot: -1.5707963267948966 rad
pos: -42.5,1.5
@@ -117021,7 +117060,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18043
+ - uid: 18045
components:
- rot: -1.5707963267948966 rad
pos: -43.5,1.5
@@ -117029,7 +117068,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18044
+ - uid: 18046
components:
- rot: -1.5707963267948966 rad
pos: -30.5,13.5
@@ -117037,7 +117076,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18045
+ - uid: 18047
components:
- rot: 3.141592653589793 rad
pos: -30.5,13.5
@@ -117045,7 +117084,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18046
+ - uid: 18048
components:
- rot: 3.141592653589793 rad
pos: -30.5,12.5
@@ -117053,7 +117092,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18047
+ - uid: 18049
components:
- rot: 3.141592653589793 rad
pos: -30.5,11.5
@@ -117061,7 +117100,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18048
+ - uid: 18050
components:
- rot: 3.141592653589793 rad
pos: -30.5,10.5
@@ -117069,7 +117108,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18049
+ - uid: 18051
components:
- rot: 3.141592653589793 rad
pos: -29.5,12.5
@@ -117077,7 +117116,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18050
+ - uid: 18052
components:
- rot: 3.141592653589793 rad
pos: -29.5,11.5
@@ -117085,7 +117124,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18051
+ - uid: 18053
components:
- rot: 3.141592653589793 rad
pos: -29.5,10.5
@@ -117093,7 +117132,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18052
+ - uid: 18054
components:
- rot: 3.141592653589793 rad
pos: -29.5,14.5
@@ -117101,7 +117140,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18053
+ - uid: 18055
components:
- rot: -1.5707963267948966 rad
pos: -44.5,1.5
@@ -117109,7 +117148,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18054
+ - uid: 18056
components:
- rot: -1.5707963267948966 rad
pos: -44.5,0.5
@@ -117117,7 +117156,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18055
+ - uid: 18057
components:
- rot: -1.5707963267948966 rad
pos: -45.5,0.5
@@ -117125,7 +117164,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18056
+ - uid: 18058
components:
- rot: -1.5707963267948966 rad
pos: -46.5,0.5
@@ -117133,49 +117172,49 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18057
+ - uid: 18059
components:
- pos: -45.5,2.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18058
+ - uid: 18060
components:
- pos: -45.5,3.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18059
+ - uid: 18061
components:
- pos: -45.5,4.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18060
+ - uid: 18062
components:
- pos: -45.5,5.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18061
+ - uid: 18063
components:
- pos: -47.5,1.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18062
+ - uid: 18064
components:
- pos: -47.5,2.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18063
+ - uid: 18065
components:
- rot: 3.141592653589793 rad
pos: -47.5,4.5
@@ -117183,7 +117222,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18064
+ - uid: 18066
components:
- rot: 3.141592653589793 rad
pos: -47.5,5.5
@@ -117191,7 +117230,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18065
+ - uid: 18067
components:
- rot: 3.141592653589793 rad
pos: -47.5,6.5
@@ -117199,7 +117238,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18066
+ - uid: 18068
components:
- rot: 3.141592653589793 rad
pos: -47.5,7.5
@@ -117207,7 +117246,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18067
+ - uid: 18069
components:
- rot: 3.141592653589793 rad
pos: -47.5,8.5
@@ -117215,7 +117254,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18068
+ - uid: 18070
components:
- rot: 3.141592653589793 rad
pos: -47.5,9.5
@@ -117223,7 +117262,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18069
+ - uid: 18071
components:
- rot: -1.5707963267948966 rad
pos: -48.5,10.5
@@ -117231,7 +117270,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18070
+ - uid: 18072
components:
- rot: 3.141592653589793 rad
pos: -46.5,11.5
@@ -117239,7 +117278,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18071
+ - uid: 18073
components:
- rot: 3.141592653589793 rad
pos: -46.5,12.5
@@ -117247,7 +117286,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18072
+ - uid: 18074
components:
- rot: 3.141592653589793 rad
pos: -46.5,13.5
@@ -117255,7 +117294,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18073
+ - uid: 18075
components:
- rot: 1.5707963267948966 rad
pos: -49.5,10.5
@@ -117263,7 +117302,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18074
+ - uid: 18076
components:
- rot: 1.5707963267948966 rad
pos: -50.5,10.5
@@ -117271,42 +117310,42 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18075
+ - uid: 18077
components:
- pos: -52.5,11.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18076
+ - uid: 18078
components:
- pos: -52.5,12.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18077
+ - uid: 18079
components:
- pos: -52.5,13.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18078
+ - uid: 18080
components:
- pos: -52.5,9.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18079
+ - uid: 18081
components:
- pos: -52.5,8.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18080
+ - uid: 18082
components:
- rot: -1.5707963267948966 rad
pos: -45.5,10.5
@@ -117314,7 +117353,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18081
+ - uid: 18083
components:
- rot: -1.5707963267948966 rad
pos: -44.5,10.5
@@ -117322,7 +117361,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18082
+ - uid: 18084
components:
- rot: -1.5707963267948966 rad
pos: -43.5,10.5
@@ -117330,7 +117369,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18083
+ - uid: 18085
components:
- rot: 1.5707963267948966 rad
pos: -46.5,7.5
@@ -117338,7 +117377,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18084
+ - uid: 18086
components:
- rot: 1.5707963267948966 rad
pos: -47.5,7.5
@@ -117346,7 +117385,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18085
+ - uid: 18087
components:
- rot: 1.5707963267948966 rad
pos: -48.5,7.5
@@ -117354,7 +117393,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18086
+ - uid: 18088
components:
- rot: 1.5707963267948966 rad
pos: -49.5,7.5
@@ -117362,7 +117401,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18087
+ - uid: 18089
components:
- rot: 1.5707963267948966 rad
pos: -50.5,7.5
@@ -117370,28 +117409,28 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18088
+ - uid: 18090
components:
- pos: -45.5,8.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18089
+ - uid: 18091
components:
- pos: -45.5,9.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18090
+ - uid: 18092
components:
- pos: -45.5,10.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18091
+ - uid: 18093
components:
- rot: 3.141592653589793 rad
pos: -45.5,12.5
@@ -117399,7 +117438,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18092
+ - uid: 18094
components:
- rot: 3.141592653589793 rad
pos: -45.5,13.5
@@ -117407,7 +117446,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18093
+ - uid: 18095
components:
- rot: 1.5707963267948966 rad
pos: -44.5,11.5
@@ -117415,7 +117454,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18094
+ - uid: 18096
components:
- rot: 1.5707963267948966 rad
pos: -46.5,11.5
@@ -117423,7 +117462,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18095
+ - uid: 18097
components:
- rot: 1.5707963267948966 rad
pos: -47.5,11.5
@@ -117431,7 +117470,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18096
+ - uid: 18098
components:
- rot: 1.5707963267948966 rad
pos: -48.5,11.5
@@ -117439,7 +117478,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18097
+ - uid: 18099
components:
- rot: -1.5707963267948966 rad
pos: -49.5,11.5
@@ -117447,7 +117486,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18098
+ - uid: 18100
components:
- rot: 1.5707963267948966 rad
pos: -50.5,11.5
@@ -117455,7 +117494,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18099
+ - uid: 18101
components:
- rot: 3.141592653589793 rad
pos: -51.5,12.5
@@ -117463,7 +117502,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18100
+ - uid: 18102
components:
- rot: 3.141592653589793 rad
pos: -51.5,13.5
@@ -117471,14 +117510,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18101
+ - uid: 18103
components:
- pos: -46.5,14.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18102
+ - uid: 18104
components:
- rot: 3.141592653589793 rad
pos: -18.5,25.5
@@ -117486,7 +117525,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18103
+ - uid: 18105
components:
- rot: 3.141592653589793 rad
pos: -20.5,21.5
@@ -117494,7 +117533,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18104
+ - uid: 18106
components:
- rot: 3.141592653589793 rad
pos: -20.5,22.5
@@ -117502,7 +117541,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18105
+ - uid: 18107
components:
- rot: 3.141592653589793 rad
pos: -20.5,23.5
@@ -117510,7 +117549,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18106
+ - uid: 18108
components:
- rot: 3.141592653589793 rad
pos: -20.5,24.5
@@ -117518,7 +117557,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18107
+ - uid: 18109
components:
- rot: 1.5707963267948966 rad
pos: 37.5,-72.5
@@ -117526,7 +117565,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18108
+ - uid: 18110
components:
- rot: 1.5707963267948966 rad
pos: 22.5,-54.5
@@ -117534,7 +117573,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18109
+ - uid: 18111
components:
- rot: 1.5707963267948966 rad
pos: 25.5,-53.5
@@ -117542,7 +117581,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18110
+ - uid: 18112
components:
- rot: 1.5707963267948966 rad
pos: 24.5,-53.5
@@ -117550,7 +117589,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18111
+ - uid: 18113
components:
- rot: 1.5707963267948966 rad
pos: 23.5,-53.5
@@ -117558,7 +117597,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18112
+ - uid: 18114
components:
- rot: 1.5707963267948966 rad
pos: 22.5,-53.5
@@ -117566,7 +117605,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18113
+ - uid: 18115
components:
- rot: 1.5707963267948966 rad
pos: 21.5,-53.5
@@ -117574,7 +117613,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18114
+ - uid: 18116
components:
- rot: 1.5707963267948966 rad
pos: 20.5,-53.5
@@ -117582,7 +117621,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18115
+ - uid: 18117
components:
- rot: -1.5707963267948966 rad
pos: -43.5,-71.5
@@ -117590,7 +117629,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18116
+ - uid: 18118
components:
- rot: -1.5707963267948966 rad
pos: -44.5,-71.5
@@ -117598,35 +117637,35 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18117
+ - uid: 18119
components:
- pos: -45.5,-72.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18118
+ - uid: 18120
components:
- pos: -45.5,-73.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18119
+ - uid: 18121
components:
- pos: -45.5,-74.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18120
+ - uid: 18122
components:
- pos: -45.5,-75.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18121
+ - uid: 18123
components:
- rot: -1.5707963267948966 rad
pos: -46.5,-76.5
@@ -117634,7 +117673,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18122
+ - uid: 18124
components:
- rot: -1.5707963267948966 rad
pos: -47.5,-76.5
@@ -117642,7 +117681,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18123
+ - uid: 18125
components:
- rot: -1.5707963267948966 rad
pos: -48.5,-76.5
@@ -117650,7 +117689,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18124
+ - uid: 18126
components:
- rot: -1.5707963267948966 rad
pos: -49.5,-76.5
@@ -117658,7 +117697,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18125
+ - uid: 18127
components:
- rot: -1.5707963267948966 rad
pos: -50.5,-76.5
@@ -117666,7 +117705,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18126
+ - uid: 18128
components:
- rot: -1.5707963267948966 rad
pos: -51.5,-76.5
@@ -117674,7 +117713,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18127
+ - uid: 18129
components:
- rot: -1.5707963267948966 rad
pos: -52.5,-76.5
@@ -117682,7 +117721,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18128
+ - uid: 18130
components:
- rot: -1.5707963267948966 rad
pos: -53.5,-76.5
@@ -117690,7 +117729,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18129
+ - uid: 18131
components:
- rot: -1.5707963267948966 rad
pos: -41.5,-72.5
@@ -117698,7 +117737,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18130
+ - uid: 18132
components:
- rot: -1.5707963267948966 rad
pos: -42.5,-72.5
@@ -117706,7 +117745,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18131
+ - uid: 18133
components:
- rot: -1.5707963267948966 rad
pos: -43.5,-72.5
@@ -117714,7 +117753,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18132
+ - uid: 18134
components:
- rot: -1.5707963267948966 rad
pos: -44.5,-72.5
@@ -117722,7 +117761,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18133
+ - uid: 18135
components:
- rot: -1.5707963267948966 rad
pos: -45.5,-72.5
@@ -117730,7 +117769,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18134
+ - uid: 18136
components:
- rot: 3.141592653589793 rad
pos: -46.5,-73.5
@@ -117738,7 +117777,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18135
+ - uid: 18137
components:
- rot: 3.141592653589793 rad
pos: -46.5,-74.5
@@ -117746,7 +117785,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18136
+ - uid: 18138
components:
- rot: 1.5707963267948966 rad
pos: -47.5,-75.5
@@ -117754,7 +117793,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18137
+ - uid: 18139
components:
- rot: 1.5707963267948966 rad
pos: -48.5,-75.5
@@ -117762,7 +117801,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18138
+ - uid: 18140
components:
- rot: 1.5707963267948966 rad
pos: -49.5,-75.5
@@ -117770,7 +117809,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18139
+ - uid: 18141
components:
- rot: 1.5707963267948966 rad
pos: -50.5,-75.5
@@ -117778,7 +117817,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18140
+ - uid: 18142
components:
- rot: 1.5707963267948966 rad
pos: -51.5,-75.5
@@ -117786,7 +117825,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18141
+ - uid: 18143
components:
- rot: 1.5707963267948966 rad
pos: -52.5,-75.5
@@ -117794,7 +117833,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18142
+ - uid: 18144
components:
- rot: 1.5707963267948966 rad
pos: -53.5,-75.5
@@ -117802,7 +117841,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18143
+ - uid: 18145
components:
- rot: 1.5707963267948966 rad
pos: -18.5,-41.5
@@ -117810,7 +117849,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18144
+ - uid: 18146
components:
- rot: 1.5707963267948966 rad
pos: -17.5,-41.5
@@ -117818,7 +117857,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18145
+ - uid: 18147
components:
- rot: 1.5707963267948966 rad
pos: -16.5,-41.5
@@ -117826,21 +117865,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18146
+ - uid: 18148
components:
- pos: -15.5,-42.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18147
+ - uid: 18149
components:
- pos: -19.5,-42.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18148
+ - uid: 18150
components:
- rot: 3.141592653589793 rad
pos: 1.5,12.5
@@ -117848,7 +117887,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18149
+ - uid: 18151
components:
- rot: 3.141592653589793 rad
pos: 1.5,13.5
@@ -117856,7 +117895,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18150
+ - uid: 18152
components:
- rot: 3.141592653589793 rad
pos: 1.5,14.5
@@ -117864,7 +117903,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18151
+ - uid: 18153
components:
- rot: 3.141592653589793 rad
pos: 1.5,15.5
@@ -117872,7 +117911,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18152
+ - uid: 18154
components:
- rot: 3.141592653589793 rad
pos: 1.5,16.5
@@ -117880,7 +117919,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18153
+ - uid: 18155
components:
- rot: 3.141592653589793 rad
pos: 1.5,17.5
@@ -117888,7 +117927,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18154
+ - uid: 18156
components:
- rot: 3.141592653589793 rad
pos: 1.5,18.5
@@ -117896,7 +117935,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18155
+ - uid: 18157
components:
- rot: 3.141592653589793 rad
pos: 1.5,19.5
@@ -117904,7 +117943,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18156
+ - uid: 18158
components:
- rot: 3.141592653589793 rad
pos: 1.5,20.5
@@ -117912,7 +117951,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18157
+ - uid: 18159
components:
- rot: 3.141592653589793 rad
pos: 1.5,21.5
@@ -117920,7 +117959,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18158
+ - uid: 18160
components:
- rot: 3.141592653589793 rad
pos: 1.5,22.5
@@ -117928,7 +117967,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18159
+ - uid: 18161
components:
- rot: 3.141592653589793 rad
pos: 1.5,23.5
@@ -117936,7 +117975,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18160
+ - uid: 18162
components:
- rot: 3.141592653589793 rad
pos: 1.5,24.5
@@ -117944,7 +117983,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18161
+ - uid: 18163
components:
- rot: 3.141592653589793 rad
pos: 1.5,25.5
@@ -117952,7 +117991,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18162
+ - uid: 18164
components:
- rot: -1.5707963267948966 rad
pos: 28.5,1.5
@@ -117960,14 +117999,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18163
+ - uid: 18165
components:
- pos: -20.5,-59.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18164
+ - uid: 18166
components:
- rot: -1.5707963267948966 rad
pos: -69.5,-23.5
@@ -117975,7 +118014,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18165
+ - uid: 18167
components:
- rot: -1.5707963267948966 rad
pos: -70.5,-23.5
@@ -117983,7 +118022,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18166
+ - uid: 18168
components:
- rot: -1.5707963267948966 rad
pos: -71.5,-23.5
@@ -117991,7 +118030,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18167
+ - uid: 18169
components:
- rot: -1.5707963267948966 rad
pos: -65.5,-25.5
@@ -117999,7 +118038,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18168
+ - uid: 18170
components:
- rot: -1.5707963267948966 rad
pos: -66.5,-25.5
@@ -118007,7 +118046,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18169
+ - uid: 18171
components:
- rot: -1.5707963267948966 rad
pos: -67.5,-25.5
@@ -118015,7 +118054,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18170
+ - uid: 18172
components:
- rot: -1.5707963267948966 rad
pos: -68.5,-25.5
@@ -118023,7 +118062,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18171
+ - uid: 18173
components:
- rot: -1.5707963267948966 rad
pos: -69.5,-25.5
@@ -118031,7 +118070,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18172
+ - uid: 18174
components:
- rot: -1.5707963267948966 rad
pos: -70.5,-25.5
@@ -118039,7 +118078,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18173
+ - uid: 18175
components:
- rot: 1.5707963267948966 rad
pos: 18.5,-30.5
@@ -118047,7 +118086,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18174
+ - uid: 18176
components:
- rot: 3.141592653589793 rad
pos: -23.5,-61.5
@@ -118055,7 +118094,7 @@ entities:
type: Transform
- color: '#97C3FCCC'
type: AtmosPipeColor
- - uid: 18175
+ - uid: 18177
components:
- rot: 3.141592653589793 rad
pos: 30.5,-83.5
@@ -118063,7 +118102,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18176
+ - uid: 18178
components:
- rot: 3.141592653589793 rad
pos: 25.5,-58.5
@@ -118071,7 +118110,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18177
+ - uid: 18179
components:
- rot: 3.141592653589793 rad
pos: 25.5,-57.5
@@ -118079,7 +118118,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18178
+ - uid: 18180
components:
- rot: 3.141592653589793 rad
pos: 47.5,-80.5
@@ -118087,7 +118126,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18179
+ - uid: 18181
components:
- rot: 3.141592653589793 rad
pos: 42.5,5.5
@@ -118095,7 +118134,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18180
+ - uid: 18182
components:
- rot: 3.141592653589793 rad
pos: 42.5,2.5
@@ -118103,7 +118142,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18181
+ - uid: 18183
components:
- rot: 3.141592653589793 rad
pos: 42.5,4.5
@@ -118111,7 +118150,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18182
+ - uid: 18184
components:
- rot: 3.141592653589793 rad
pos: 42.5,3.5
@@ -118119,7 +118158,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18183
+ - uid: 18185
components:
- rot: -1.5707963267948966 rad
pos: 25.5,-42.5
@@ -118127,7 +118166,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18184
+ - uid: 18186
components:
- rot: 3.141592653589793 rad
pos: 45.5,21.5
@@ -118135,7 +118174,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18185
+ - uid: 18187
components:
- rot: 3.141592653589793 rad
pos: 45.5,22.5
@@ -118143,7 +118182,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18186
+ - uid: 18188
components:
- rot: 3.141592653589793 rad
pos: 45.5,23.5
@@ -118151,7 +118190,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18187
+ - uid: 18189
components:
- rot: 3.141592653589793 rad
pos: 45.5,24.5
@@ -118159,7 +118198,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18188
+ - uid: 18190
components:
- rot: 3.141592653589793 rad
pos: 45.5,25.5
@@ -118167,7 +118206,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18189
+ - uid: 18191
components:
- rot: 3.141592653589793 rad
pos: 45.5,26.5
@@ -118175,7 +118214,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18190
+ - uid: 18192
components:
- rot: 3.141592653589793 rad
pos: 44.5,21.5
@@ -118183,7 +118222,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18191
+ - uid: 18193
components:
- rot: 3.141592653589793 rad
pos: 44.5,22.5
@@ -118191,7 +118230,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18192
+ - uid: 18194
components:
- rot: 3.141592653589793 rad
pos: 44.5,23.5
@@ -118199,7 +118238,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18193
+ - uid: 18195
components:
- rot: 3.141592653589793 rad
pos: 44.5,24.5
@@ -118207,7 +118246,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18194
+ - uid: 18196
components:
- rot: 3.141592653589793 rad
pos: 44.5,25.5
@@ -118215,7 +118254,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18195
+ - uid: 18197
components:
- rot: 3.141592653589793 rad
pos: 44.5,20.5
@@ -118223,7 +118262,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18196
+ - uid: 18198
components:
- rot: 1.5707963267948966 rad
pos: 46.5,27.5
@@ -118231,7 +118270,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18197
+ - uid: 18199
components:
- rot: 1.5707963267948966 rad
pos: 47.5,27.5
@@ -118239,7 +118278,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18198
+ - uid: 18200
components:
- rot: 1.5707963267948966 rad
pos: 45.5,26.5
@@ -118247,7 +118286,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18199
+ - uid: 18201
components:
- rot: 1.5707963267948966 rad
pos: 46.5,26.5
@@ -118255,7 +118294,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18200
+ - uid: 18202
components:
- rot: 1.5707963267948966 rad
pos: 47.5,26.5
@@ -118263,7 +118302,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18201
+ - uid: 18203
components:
- rot: 1.5707963267948966 rad
pos: 48.5,26.5
@@ -118271,7 +118310,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18202
+ - uid: 18204
components:
- rot: 1.5707963267948966 rad
pos: 49.5,26.5
@@ -118279,7 +118318,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18203
+ - uid: 18205
components:
- rot: 1.5707963267948966 rad
pos: 50.5,26.5
@@ -118287,7 +118326,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18204
+ - uid: 18206
components:
- rot: 1.5707963267948966 rad
pos: 51.5,26.5
@@ -118295,7 +118334,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18205
+ - uid: 18207
components:
- rot: 1.5707963267948966 rad
pos: 52.5,26.5
@@ -118303,7 +118342,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18206
+ - uid: 18208
components:
- rot: 1.5707963267948966 rad
pos: 53.5,26.5
@@ -118311,7 +118350,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18207
+ - uid: 18209
components:
- rot: 1.5707963267948966 rad
pos: 48.5,27.5
@@ -118319,7 +118358,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18208
+ - uid: 18210
components:
- rot: 1.5707963267948966 rad
pos: 49.5,27.5
@@ -118327,7 +118366,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18209
+ - uid: 18211
components:
- rot: 1.5707963267948966 rad
pos: 50.5,27.5
@@ -118335,7 +118374,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18210
+ - uid: 18212
components:
- rot: 1.5707963267948966 rad
pos: 51.5,27.5
@@ -118343,7 +118382,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18211
+ - uid: 18213
components:
- rot: 3.141592653589793 rad
pos: 52.5,28.5
@@ -118351,7 +118390,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18212
+ - uid: 18214
components:
- rot: 3.141592653589793 rad
pos: 52.5,29.5
@@ -118359,7 +118398,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18213
+ - uid: 18215
components:
- rot: 3.141592653589793 rad
pos: 52.5,30.5
@@ -118367,7 +118406,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18214
+ - uid: 18216
components:
- rot: 3.141592653589793 rad
pos: 52.5,31.5
@@ -118375,7 +118414,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18215
+ - uid: 18217
components:
- rot: 3.141592653589793 rad
pos: 52.5,32.5
@@ -118383,7 +118422,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18216
+ - uid: 18218
components:
- rot: 3.141592653589793 rad
pos: 52.5,33.5
@@ -118391,7 +118430,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18217
+ - uid: 18219
components:
- rot: 3.141592653589793 rad
pos: 52.5,34.5
@@ -118399,7 +118438,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18218
+ - uid: 18220
components:
- rot: 3.141592653589793 rad
pos: 52.5,35.5
@@ -118407,7 +118446,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18219
+ - uid: 18221
components:
- rot: 3.141592653589793 rad
pos: 52.5,36.5
@@ -118415,7 +118454,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18220
+ - uid: 18222
components:
- rot: 3.141592653589793 rad
pos: 52.5,37.5
@@ -118423,7 +118462,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18221
+ - uid: 18223
components:
- rot: 3.141592653589793 rad
pos: 52.5,38.5
@@ -118431,7 +118470,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18222
+ - uid: 18224
components:
- rot: 3.141592653589793 rad
pos: 52.5,39.5
@@ -118439,7 +118478,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18223
+ - uid: 18225
components:
- rot: 3.141592653589793 rad
pos: 52.5,40.5
@@ -118447,7 +118486,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18224
+ - uid: 18226
components:
- rot: 3.141592653589793 rad
pos: 52.5,41.5
@@ -118455,7 +118494,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18225
+ - uid: 18227
components:
- rot: 3.141592653589793 rad
pos: 52.5,42.5
@@ -118463,7 +118502,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18226
+ - uid: 18228
components:
- rot: 3.141592653589793 rad
pos: 54.5,27.5
@@ -118471,7 +118510,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18227
+ - uid: 18229
components:
- rot: 3.141592653589793 rad
pos: 54.5,28.5
@@ -118479,7 +118518,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18228
+ - uid: 18230
components:
- rot: 3.141592653589793 rad
pos: 54.5,29.5
@@ -118487,7 +118526,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18229
+ - uid: 18231
components:
- rot: 3.141592653589793 rad
pos: 54.5,30.5
@@ -118495,7 +118534,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18230
+ - uid: 18232
components:
- rot: 3.141592653589793 rad
pos: 54.5,31.5
@@ -118503,7 +118542,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18231
+ - uid: 18233
components:
- rot: 3.141592653589793 rad
pos: 54.5,32.5
@@ -118511,7 +118550,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18232
+ - uid: 18234
components:
- rot: 3.141592653589793 rad
pos: 54.5,33.5
@@ -118519,7 +118558,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18233
+ - uid: 18235
components:
- rot: 3.141592653589793 rad
pos: 54.5,34.5
@@ -118527,7 +118566,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18234
+ - uid: 18236
components:
- rot: 3.141592653589793 rad
pos: 54.5,35.5
@@ -118535,7 +118574,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18235
+ - uid: 18237
components:
- rot: 3.141592653589793 rad
pos: 54.5,36.5
@@ -118543,7 +118582,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18236
+ - uid: 18238
components:
- rot: 3.141592653589793 rad
pos: 54.5,37.5
@@ -118551,7 +118590,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18237
+ - uid: 18239
components:
- rot: 3.141592653589793 rad
pos: 54.5,38.5
@@ -118559,7 +118598,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18238
+ - uid: 18240
components:
- rot: 3.141592653589793 rad
pos: 54.5,39.5
@@ -118567,7 +118606,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18239
+ - uid: 18241
components:
- rot: 3.141592653589793 rad
pos: 54.5,40.5
@@ -118575,7 +118614,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18240
+ - uid: 18242
components:
- rot: 3.141592653589793 rad
pos: 54.5,41.5
@@ -118583,7 +118622,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18241
+ - uid: 18243
components:
- rot: 3.141592653589793 rad
pos: 54.5,42.5
@@ -118591,7 +118630,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18242
+ - uid: 18244
components:
- rot: 3.141592653589793 rad
pos: 54.5,44.5
@@ -118599,7 +118638,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18243
+ - uid: 18245
components:
- rot: 3.141592653589793 rad
pos: 54.5,45.5
@@ -118607,7 +118646,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18244
+ - uid: 18246
components:
- rot: 3.141592653589793 rad
pos: 54.5,46.5
@@ -118615,7 +118654,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18245
+ - uid: 18247
components:
- rot: 3.141592653589793 rad
pos: 54.5,47.5
@@ -118623,7 +118662,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18246
+ - uid: 18248
components:
- rot: 3.141592653589793 rad
pos: 54.5,48.5
@@ -118631,7 +118670,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18247
+ - uid: 18249
components:
- rot: 3.141592653589793 rad
pos: 54.5,49.5
@@ -118639,7 +118678,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18248
+ - uid: 18250
components:
- rot: 3.141592653589793 rad
pos: 54.5,51.5
@@ -118647,7 +118686,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18249
+ - uid: 18251
components:
- rot: 3.141592653589793 rad
pos: 54.5,52.5
@@ -118655,7 +118694,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18250
+ - uid: 18252
components:
- rot: 3.141592653589793 rad
pos: 54.5,53.5
@@ -118663,7 +118702,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18251
+ - uid: 18253
components:
- rot: 3.141592653589793 rad
pos: 54.5,54.5
@@ -118671,7 +118710,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18252
+ - uid: 18254
components:
- rot: 3.141592653589793 rad
pos: 54.5,55.5
@@ -118679,7 +118718,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18253
+ - uid: 18255
components:
- rot: 3.141592653589793 rad
pos: 52.5,44.5
@@ -118687,7 +118726,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18254
+ - uid: 18256
components:
- rot: 3.141592653589793 rad
pos: 52.5,45.5
@@ -118695,7 +118734,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18255
+ - uid: 18257
components:
- rot: 3.141592653589793 rad
pos: 52.5,46.5
@@ -118703,7 +118742,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18256
+ - uid: 18258
components:
- rot: 3.141592653589793 rad
pos: 52.5,47.5
@@ -118711,7 +118750,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18257
+ - uid: 18259
components:
- rot: 3.141592653589793 rad
pos: 52.5,48.5
@@ -118719,7 +118758,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18258
+ - uid: 18260
components:
- rot: 3.141592653589793 rad
pos: 52.5,50.5
@@ -118727,7 +118766,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18259
+ - uid: 18261
components:
- rot: 3.141592653589793 rad
pos: 52.5,51.5
@@ -118735,7 +118774,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18260
+ - uid: 18262
components:
- rot: 3.141592653589793 rad
pos: 52.5,52.5
@@ -118743,7 +118782,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18261
+ - uid: 18263
components:
- rot: 3.141592653589793 rad
pos: 52.5,53.5
@@ -118751,7 +118790,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18262
+ - uid: 18264
components:
- rot: 3.141592653589793 rad
pos: 52.5,54.5
@@ -118759,7 +118798,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18263
+ - uid: 18265
components:
- rot: 3.141592653589793 rad
pos: 52.5,55.5
@@ -118767,49 +118806,49 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18264
+ - uid: 18266
components:
- pos: -16.5,31.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18265
+ - uid: 18267
components:
- pos: -15.5,30.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18266
+ - uid: 18268
components:
- pos: -15.5,31.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18267
+ - uid: 18269
components:
- pos: -15.5,32.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18268
+ - uid: 18270
components:
- pos: -16.5,32.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18269
+ - uid: 18271
components:
- pos: -16.5,33.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18270
+ - uid: 18272
components:
- rot: 1.5707963267948966 rad
pos: -15.5,34.5
@@ -118817,7 +118856,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18271
+ - uid: 18273
components:
- rot: 1.5707963267948966 rad
pos: -14.5,34.5
@@ -118825,7 +118864,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18272
+ - uid: 18274
components:
- rot: 1.5707963267948966 rad
pos: -13.5,34.5
@@ -118833,7 +118872,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18273
+ - uid: 18275
components:
- rot: 1.5707963267948966 rad
pos: -14.5,33.5
@@ -118841,7 +118880,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18274
+ - uid: 18276
components:
- rot: 1.5707963267948966 rad
pos: -13.5,33.5
@@ -118849,133 +118888,133 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18275
+ - uid: 18277
components:
- pos: -16.5,35.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18276
+ - uid: 18278
components:
- pos: -16.5,36.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18277
+ - uid: 18279
components:
- pos: -16.5,37.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18278
+ - uid: 18280
components:
- pos: -16.5,38.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18279
+ - uid: 18281
components:
- pos: -16.5,40.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18280
+ - uid: 18282
components:
- pos: -16.5,41.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18281
+ - uid: 18283
components:
- pos: -16.5,42.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18282
+ - uid: 18284
components:
- pos: -15.5,34.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18283
+ - uid: 18285
components:
- pos: -15.5,35.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18284
+ - uid: 18286
components:
- pos: -15.5,36.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18285
+ - uid: 18287
components:
- pos: -15.5,37.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18286
+ - uid: 18288
components:
- pos: -15.5,39.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18287
+ - uid: 18289
components:
- pos: -15.5,40.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18288
+ - uid: 18290
components:
- pos: -15.5,41.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18289
+ - uid: 18291
components:
- pos: -15.5,42.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18290
+ - uid: 18292
components:
- pos: -15.5,43.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18291
+ - uid: 18293
components:
- pos: -16.5,44.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18292
+ - uid: 18294
components:
- pos: -16.5,45.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18293
+ - uid: 18295
components:
- rot: 1.5707963267948966 rad
pos: -17.5,43.5
@@ -118983,7 +119022,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18294
+ - uid: 18296
components:
- rot: 1.5707963267948966 rad
pos: -18.5,43.5
@@ -118991,7 +119030,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18295
+ - uid: 18297
components:
- rot: 1.5707963267948966 rad
pos: -19.5,43.5
@@ -118999,7 +119038,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18296
+ - uid: 18298
components:
- rot: 1.5707963267948966 rad
pos: -16.5,44.5
@@ -119007,7 +119046,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18297
+ - uid: 18299
components:
- rot: 1.5707963267948966 rad
pos: -17.5,44.5
@@ -119015,7 +119054,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18298
+ - uid: 18300
components:
- rot: 1.5707963267948966 rad
pos: -18.5,44.5
@@ -119023,7 +119062,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18299
+ - uid: 18301
components:
- rot: 1.5707963267948966 rad
pos: -19.5,44.5
@@ -119031,7 +119070,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18300
+ - uid: 18302
components:
- rot: -1.5707963267948966 rad
pos: -16.5,45.5
@@ -119039,7 +119078,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18301
+ - uid: 18303
components:
- rot: 3.141592653589793 rad
pos: -17.5,46.5
@@ -119047,7 +119086,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18302
+ - uid: 18304
components:
- rot: 3.141592653589793 rad
pos: -17.5,47.5
@@ -119055,7 +119094,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18303
+ - uid: 18305
components:
- rot: 3.141592653589793 rad
pos: -17.5,48.5
@@ -119063,7 +119102,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18304
+ - uid: 18306
components:
- rot: 3.141592653589793 rad
pos: -17.5,49.5
@@ -119071,7 +119110,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18305
+ - uid: 18307
components:
- rot: 3.141592653589793 rad
pos: -16.5,47.5
@@ -119079,7 +119118,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18306
+ - uid: 18308
components:
- rot: 3.141592653589793 rad
pos: -16.5,48.5
@@ -119087,7 +119126,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18307
+ - uid: 18309
components:
- rot: 3.141592653589793 rad
pos: -16.5,49.5
@@ -119095,7 +119134,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18308
+ - uid: 18310
components:
- rot: 1.5707963267948966 rad
pos: -15.5,43.5
@@ -119103,7 +119142,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18309
+ - uid: 18311
components:
- rot: -1.5707963267948966 rad
pos: -15.5,46.5
@@ -119111,7 +119150,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18310
+ - uid: 18312
components:
- rot: -1.5707963267948966 rad
pos: -14.5,46.5
@@ -119119,7 +119158,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18311
+ - uid: 18313
components:
- rot: -1.5707963267948966 rad
pos: -13.5,46.5
@@ -119127,7 +119166,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18312
+ - uid: 18314
components:
- rot: -1.5707963267948966 rad
pos: -12.5,46.5
@@ -119135,7 +119174,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18313
+ - uid: 18315
components:
- rot: -1.5707963267948966 rad
pos: -13.5,44.5
@@ -119143,7 +119182,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18314
+ - uid: 18316
components:
- rot: -1.5707963267948966 rad
pos: -12.5,44.5
@@ -119151,32 +119190,32 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18315
+ - uid: 18317
components:
- pos: 1.5,47.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18316
+ - uid: 18318
components:
- rot: 3.141592653589793 rad
pos: 70.5,35.5
parent: 2
type: Transform
- - uid: 18317
+ - uid: 18319
components:
- rot: 3.141592653589793 rad
pos: 70.5,34.5
parent: 2
type: Transform
- - uid: 18318
+ - uid: 18320
components:
- rot: 3.141592653589793 rad
pos: 70.5,33.5
parent: 2
type: Transform
- - uid: 18319
+ - uid: 18321
components:
- rot: -1.5707963267948966 rad
pos: -14.5,38.5
@@ -119184,7 +119223,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18320
+ - uid: 18322
components:
- rot: -1.5707963267948966 rad
pos: -13.5,38.5
@@ -119192,7 +119231,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18321
+ - uid: 18323
components:
- rot: -1.5707963267948966 rad
pos: -12.5,38.5
@@ -119200,7 +119239,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18322
+ - uid: 18324
components:
- rot: -1.5707963267948966 rad
pos: 53.5,50.5
@@ -119208,7 +119247,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18323
+ - uid: 18325
components:
- rot: -1.5707963267948966 rad
pos: 52.5,50.5
@@ -119216,7 +119255,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18324
+ - uid: 18326
components:
- rot: -1.5707963267948966 rad
pos: 51.5,50.5
@@ -119224,7 +119263,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18325
+ - uid: 18327
components:
- rot: -1.5707963267948966 rad
pos: 50.5,50.5
@@ -119232,7 +119271,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18326
+ - uid: 18328
components:
- rot: -1.5707963267948966 rad
pos: 49.5,50.5
@@ -119240,7 +119279,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18327
+ - uid: 18329
components:
- rot: -1.5707963267948966 rad
pos: 48.5,50.5
@@ -119248,7 +119287,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18328
+ - uid: 18330
components:
- rot: -1.5707963267948966 rad
pos: 51.5,49.5
@@ -119256,7 +119295,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18329
+ - uid: 18331
components:
- rot: -1.5707963267948966 rad
pos: 50.5,49.5
@@ -119264,7 +119303,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18330
+ - uid: 18332
components:
- rot: -1.5707963267948966 rad
pos: 49.5,49.5
@@ -119272,7 +119311,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18331
+ - uid: 18333
components:
- rot: -1.5707963267948966 rad
pos: 48.5,49.5
@@ -119280,7 +119319,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18332
+ - uid: 18334
components:
- rot: -1.5707963267948966 rad
pos: 47.5,49.5
@@ -119288,7 +119327,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18333
+ - uid: 18335
components:
- rot: -1.5707963267948966 rad
pos: 46.5,49.5
@@ -119296,49 +119335,49 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18334
+ - uid: 18336
components:
- pos: 47.5,49.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18335
+ - uid: 18337
components:
- pos: 47.5,48.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18336
+ - uid: 18338
components:
- pos: 47.5,47.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18337
+ - uid: 18339
components:
- pos: 45.5,48.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18338
+ - uid: 18340
components:
- pos: 45.5,47.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18339
+ - uid: 18341
components:
- pos: 45.5,46.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18340
+ - uid: 18342
components:
- rot: -1.5707963267948966 rad
pos: 46.5,46.5
@@ -119346,7 +119385,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18341
+ - uid: 18343
components:
- rot: -1.5707963267948966 rad
pos: 45.5,46.5
@@ -119354,7 +119393,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18342
+ - uid: 18344
components:
- rot: -1.5707963267948966 rad
pos: 43.5,46.5
@@ -119362,7 +119401,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18343
+ - uid: 18345
components:
- rot: -1.5707963267948966 rad
pos: 44.5,46.5
@@ -119370,7 +119409,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18344
+ - uid: 18346
components:
- rot: -1.5707963267948966 rad
pos: 42.5,46.5
@@ -119378,7 +119417,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18345
+ - uid: 18347
components:
- rot: -1.5707963267948966 rad
pos: 41.5,46.5
@@ -119386,7 +119425,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18346
+ - uid: 18348
components:
- rot: -1.5707963267948966 rad
pos: 44.5,45.5
@@ -119394,7 +119433,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18347
+ - uid: 18349
components:
- rot: -1.5707963267948966 rad
pos: 43.5,45.5
@@ -119402,7 +119441,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18348
+ - uid: 18350
components:
- rot: -1.5707963267948966 rad
pos: 42.5,45.5
@@ -119410,7 +119449,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18349
+ - uid: 18351
components:
- rot: -1.5707963267948966 rad
pos: 41.5,45.5
@@ -119418,7 +119457,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18350
+ - uid: 18352
components:
- rot: 3.141592653589793 rad
pos: 2.5,67.5
@@ -119426,7 +119465,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18351
+ - uid: 18353
components:
- rot: 3.141592653589793 rad
pos: 2.5,66.5
@@ -119434,7 +119473,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18352
+ - uid: 18354
components:
- rot: 3.141592653589793 rad
pos: 2.5,65.5
@@ -119442,7 +119481,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18353
+ - uid: 18355
components:
- rot: 3.141592653589793 rad
pos: 2.5,64.5
@@ -119450,7 +119489,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18354
+ - uid: 18356
components:
- rot: 3.141592653589793 rad
pos: -5.5,67.5
@@ -119458,7 +119497,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18355
+ - uid: 18357
components:
- rot: 3.141592653589793 rad
pos: -5.5,66.5
@@ -119466,7 +119505,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18356
+ - uid: 18358
components:
- rot: 3.141592653589793 rad
pos: -5.5,65.5
@@ -119474,7 +119513,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18357
+ - uid: 18359
components:
- rot: 3.141592653589793 rad
pos: -5.5,64.5
@@ -119482,7 +119521,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18358
+ - uid: 18360
components:
- rot: 3.141592653589793 rad
pos: -6.5,68.5
@@ -119490,7 +119529,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18359
+ - uid: 18361
components:
- rot: 3.141592653589793 rad
pos: -6.5,67.5
@@ -119498,7 +119537,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18360
+ - uid: 18362
components:
- rot: 3.141592653589793 rad
pos: -6.5,66.5
@@ -119506,7 +119545,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18361
+ - uid: 18363
components:
- rot: 3.141592653589793 rad
pos: -6.5,65.5
@@ -119514,7 +119553,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18362
+ - uid: 18364
components:
- rot: 3.141592653589793 rad
pos: 3.5,68.5
@@ -119522,7 +119561,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18363
+ - uid: 18365
components:
- rot: 3.141592653589793 rad
pos: 3.5,67.5
@@ -119530,7 +119569,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18364
+ - uid: 18366
components:
- rot: 3.141592653589793 rad
pos: 3.5,66.5
@@ -119538,7 +119577,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18365
+ - uid: 18367
components:
- rot: 3.141592653589793 rad
pos: 3.5,65.5
@@ -119546,7 +119585,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18366
+ - uid: 18368
components:
- rot: 1.5707963267948966 rad
pos: 0.5,69.5
@@ -119554,7 +119593,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18367
+ - uid: 18369
components:
- rot: 1.5707963267948966 rad
pos: -3.5,69.5
@@ -119562,91 +119601,91 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18368
+ - uid: 18370
components:
- pos: -2.5,66.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18369
+ - uid: 18371
components:
- pos: -2.5,65.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18370
+ - uid: 18372
components:
- pos: -2.5,64.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18371
+ - uid: 18373
components:
- pos: -2.5,63.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18372
+ - uid: 18374
components:
- pos: -2.5,61.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18373
+ - uid: 18375
components:
- pos: -2.5,60.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18374
+ - uid: 18376
components:
- pos: -2.5,59.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18375
+ - uid: 18377
components:
- pos: -1.5,65.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18376
+ - uid: 18378
components:
- pos: -1.5,64.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18377
+ - uid: 18379
components:
- pos: -1.5,63.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18378
+ - uid: 18380
components:
- pos: -1.5,62.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18379
+ - uid: 18381
components:
- pos: -1.5,60.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18380
+ - uid: 18382
components:
- rot: -1.5707963267948966 rad
pos: -11.5,46.5
@@ -119654,7 +119693,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18381
+ - uid: 18383
components:
- rot: -1.5707963267948966 rad
pos: -10.5,46.5
@@ -119662,7 +119701,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18382
+ - uid: 18384
components:
- rot: -1.5707963267948966 rad
pos: -9.5,46.5
@@ -119670,7 +119709,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18383
+ - uid: 18385
components:
- rot: -1.5707963267948966 rad
pos: -8.5,46.5
@@ -119678,7 +119717,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18384
+ - uid: 18386
components:
- rot: -1.5707963267948966 rad
pos: -7.5,46.5
@@ -119686,7 +119725,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18385
+ - uid: 18387
components:
- rot: -1.5707963267948966 rad
pos: -6.5,46.5
@@ -119694,7 +119733,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18386
+ - uid: 18388
components:
- rot: -1.5707963267948966 rad
pos: -5.5,46.5
@@ -119702,7 +119741,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18387
+ - uid: 18389
components:
- rot: -1.5707963267948966 rad
pos: -4.5,46.5
@@ -119710,7 +119749,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18388
+ - uid: 18390
components:
- rot: -1.5707963267948966 rad
pos: -3.5,46.5
@@ -119718,7 +119757,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18389
+ - uid: 18391
components:
- rot: -1.5707963267948966 rad
pos: -2.5,46.5
@@ -119726,7 +119765,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18390
+ - uid: 18392
components:
- rot: -1.5707963267948966 rad
pos: -1.5,46.5
@@ -119734,7 +119773,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18391
+ - uid: 18393
components:
- rot: -1.5707963267948966 rad
pos: -11.5,44.5
@@ -119742,7 +119781,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18392
+ - uid: 18394
components:
- rot: -1.5707963267948966 rad
pos: -10.5,44.5
@@ -119750,7 +119789,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18393
+ - uid: 18395
components:
- rot: -1.5707963267948966 rad
pos: -9.5,44.5
@@ -119758,7 +119797,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18394
+ - uid: 18396
components:
- rot: -1.5707963267948966 rad
pos: -8.5,44.5
@@ -119766,7 +119805,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18395
+ - uid: 18397
components:
- rot: -1.5707963267948966 rad
pos: -7.5,44.5
@@ -119774,7 +119813,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18396
+ - uid: 18398
components:
- rot: -1.5707963267948966 rad
pos: -6.5,44.5
@@ -119782,7 +119821,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18397
+ - uid: 18399
components:
- rot: -1.5707963267948966 rad
pos: -5.5,44.5
@@ -119790,7 +119829,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18398
+ - uid: 18400
components:
- rot: -1.5707963267948966 rad
pos: -4.5,44.5
@@ -119798,7 +119837,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18399
+ - uid: 18401
components:
- rot: -1.5707963267948966 rad
pos: -3.5,44.5
@@ -119806,7 +119845,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18400
+ - uid: 18402
components:
- rot: -1.5707963267948966 rad
pos: -2.5,44.5
@@ -119814,7 +119853,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18401
+ - uid: 18403
components:
- rot: -1.5707963267948966 rad
pos: -1.5,44.5
@@ -119822,7 +119861,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18402
+ - uid: 18404
components:
- rot: -1.5707963267948966 rad
pos: -0.5,44.5
@@ -119830,7 +119869,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18403
+ - uid: 18405
components:
- rot: -1.5707963267948966 rad
pos: 0.5,44.5
@@ -119838,7 +119877,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18404
+ - uid: 18406
components:
- rot: 3.141592653589793 rad
pos: 1.5,45.5
@@ -119846,7 +119885,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18405
+ - uid: 18407
components:
- rot: 3.141592653589793 rad
pos: -0.5,47.5
@@ -119854,98 +119893,98 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18406
+ - uid: 18408
components:
- pos: 1.5,48.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18407
+ - uid: 18409
components:
- pos: 1.5,49.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18408
+ - uid: 18410
components:
- pos: 1.5,50.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18409
+ - uid: 18411
components:
- pos: 1.5,51.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18410
+ - uid: 18412
components:
- pos: 1.5,52.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18411
+ - uid: 18413
components:
- pos: 1.5,53.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18412
+ - uid: 18414
components:
- pos: 1.5,54.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18413
+ - uid: 18415
components:
- pos: -0.5,49.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18414
+ - uid: 18416
components:
- pos: -0.5,50.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18415
+ - uid: 18417
components:
- pos: -0.5,51.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18416
+ - uid: 18418
components:
- pos: -0.5,52.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18417
+ - uid: 18419
components:
- pos: -0.5,53.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18418
+ - uid: 18420
components:
- pos: -0.5,54.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18419
+ - uid: 18421
components:
- rot: -1.5707963267948966 rad
pos: -17.5,51.5
@@ -119953,7 +119992,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18420
+ - uid: 18422
components:
- rot: -1.5707963267948966 rad
pos: -18.5,51.5
@@ -119961,7 +120000,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18421
+ - uid: 18423
components:
- rot: -1.5707963267948966 rad
pos: -19.5,51.5
@@ -119969,7 +120008,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18422
+ - uid: 18424
components:
- rot: -1.5707963267948966 rad
pos: -18.5,50.5
@@ -119977,7 +120016,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18423
+ - uid: 18425
components:
- rot: -1.5707963267948966 rad
pos: -19.5,50.5
@@ -119985,7 +120024,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18424
+ - uid: 18426
components:
- rot: -1.5707963267948966 rad
pos: -20.5,50.5
@@ -119993,7 +120032,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18425
+ - uid: 18427
components:
- rot: 3.141592653589793 rad
pos: -20.5,50.5
@@ -120001,7 +120040,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18426
+ - uid: 18428
components:
- rot: 3.141592653589793 rad
pos: -20.5,49.5
@@ -120009,7 +120048,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18427
+ - uid: 18429
components:
- rot: 3.141592653589793 rad
pos: -21.5,49.5
@@ -120017,7 +120056,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18428
+ - uid: 18430
components:
- rot: 3.141592653589793 rad
pos: -16.5,50.5
@@ -120025,7 +120064,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18429
+ - uid: 18431
components:
- rot: 1.5707963267948966 rad
pos: -16.5,50.5
@@ -120033,7 +120072,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18430
+ - uid: 18432
components:
- rot: 1.5707963267948966 rad
pos: -15.5,50.5
@@ -120041,7 +120080,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18431
+ - uid: 18433
components:
- rot: 1.5707963267948966 rad
pos: -14.5,50.5
@@ -120049,7 +120088,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18432
+ - uid: 18434
components:
- rot: 1.5707963267948966 rad
pos: -13.5,50.5
@@ -120057,7 +120096,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18433
+ - uid: 18435
components:
- rot: 1.5707963267948966 rad
pos: -15.5,51.5
@@ -120065,7 +120104,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18434
+ - uid: 18436
components:
- rot: 1.5707963267948966 rad
pos: -14.5,51.5
@@ -120073,140 +120112,140 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18435
+ - uid: 18437
components:
- pos: -21.5,52.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18436
+ - uid: 18438
components:
- pos: -21.5,53.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18437
+ - uid: 18439
components:
- pos: -21.5,54.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18438
+ - uid: 18440
components:
- pos: -21.5,55.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18439
+ - uid: 18441
components:
- pos: -21.5,56.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18440
+ - uid: 18442
components:
- pos: -21.5,57.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18441
+ - uid: 18443
components:
- pos: -22.5,51.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18442
+ - uid: 18444
components:
- pos: -22.5,52.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18443
+ - uid: 18445
components:
- pos: -22.5,53.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18444
+ - uid: 18446
components:
- pos: -22.5,54.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18445
+ - uid: 18447
components:
- pos: -22.5,55.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18446
+ - uid: 18448
components:
- pos: -22.5,56.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18447
+ - uid: 18449
components:
- pos: -22.5,57.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18448
+ - uid: 18450
components:
- pos: -22.5,58.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18449
+ - uid: 18451
components:
- pos: -22.5,59.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18450
+ - uid: 18452
components:
- pos: -21.5,59.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18451
+ - uid: 18453
components:
- pos: -21.5,60.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18452
+ - uid: 18454
components:
- pos: -21.5,61.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18453
+ - uid: 18455
components:
- pos: -22.5,62.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18454
+ - uid: 18456
components:
- rot: -1.5707963267948966 rad
pos: -20.5,62.5
@@ -120214,7 +120253,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18455
+ - uid: 18457
components:
- rot: -1.5707963267948966 rad
pos: -19.5,62.5
@@ -120222,7 +120261,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18456
+ - uid: 18458
components:
- rot: -1.5707963267948966 rad
pos: -18.5,62.5
@@ -120230,7 +120269,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18457
+ - uid: 18459
components:
- rot: -1.5707963267948966 rad
pos: -21.5,61.5
@@ -120238,7 +120277,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18458
+ - uid: 18460
components:
- rot: -1.5707963267948966 rad
pos: -20.5,61.5
@@ -120246,7 +120285,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18459
+ - uid: 18461
components:
- rot: -1.5707963267948966 rad
pos: -19.5,61.5
@@ -120254,7 +120293,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18460
+ - uid: 18462
components:
- rot: -1.5707963267948966 rad
pos: -18.5,61.5
@@ -120262,140 +120301,140 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18461
+ - uid: 18463
components:
- pos: -22.5,63.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18462
+ - uid: 18464
components:
- pos: -22.5,64.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18463
+ - uid: 18465
components:
- pos: -22.5,65.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18464
+ - uid: 18466
components:
- pos: -22.5,67.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18465
+ - uid: 18467
components:
- pos: -22.5,68.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18466
+ - uid: 18468
components:
- pos: -22.5,69.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18467
+ - uid: 18469
components:
- pos: -22.5,70.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18468
+ - uid: 18470
components:
- pos: -22.5,71.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18469
+ - uid: 18471
components:
- pos: -22.5,72.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18470
+ - uid: 18472
components:
- pos: -21.5,63.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18471
+ - uid: 18473
components:
- pos: -21.5,64.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18472
+ - uid: 18474
components:
- pos: -21.5,65.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18473
+ - uid: 18475
components:
- pos: -21.5,66.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18474
+ - uid: 18476
components:
- pos: -21.5,67.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18475
+ - uid: 18477
components:
- pos: -21.5,68.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18476
+ - uid: 18478
components:
- pos: -21.5,69.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18477
+ - uid: 18479
components:
- pos: -21.5,70.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18478
+ - uid: 18480
components:
- pos: -21.5,71.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18479
+ - uid: 18481
components:
- pos: -21.5,72.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18480
+ - uid: 18482
components:
- rot: -1.5707963267948966 rad
pos: -16.5,62.5
@@ -120403,7 +120442,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18481
+ - uid: 18483
components:
- rot: -1.5707963267948966 rad
pos: -15.5,62.5
@@ -120411,7 +120450,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18482
+ - uid: 18484
components:
- rot: -1.5707963267948966 rad
pos: -14.5,62.5
@@ -120419,7 +120458,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18483
+ - uid: 18485
components:
- rot: -1.5707963267948966 rad
pos: -16.5,61.5
@@ -120427,7 +120466,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18484
+ - uid: 18486
components:
- rot: -1.5707963267948966 rad
pos: -15.5,61.5
@@ -120435,7 +120474,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18485
+ - uid: 18487
components:
- rot: -1.5707963267948966 rad
pos: -14.5,61.5
@@ -120443,7 +120482,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18486
+ - uid: 18488
components:
- rot: -1.5707963267948966 rad
pos: -13.5,61.5
@@ -120451,168 +120490,168 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18487
+ - uid: 18489
components:
- pos: -13.5,61.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18488
+ - uid: 18490
components:
- pos: -13.5,60.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18489
+ - uid: 18491
components:
- pos: -13.5,59.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18490
+ - uid: 18492
components:
- pos: -12.5,62.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18491
+ - uid: 18493
components:
- pos: -12.5,63.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18492
+ - uid: 18494
components:
- pos: -12.5,64.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18493
+ - uid: 18495
components:
- pos: -12.5,65.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18494
+ - uid: 18496
components:
- pos: -12.5,66.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18495
+ - uid: 18497
components:
- pos: -12.5,67.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18496
+ - uid: 18498
components:
- pos: -12.5,68.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18497
+ - uid: 18499
components:
- pos: -12.5,69.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18498
+ - uid: 18500
components:
- pos: -12.5,70.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18499
+ - uid: 18501
components:
- pos: -12.5,71.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18500
+ - uid: 18502
components:
- pos: -12.5,72.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18501
+ - uid: 18503
components:
- pos: -13.5,63.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18502
+ - uid: 18504
components:
- pos: -13.5,64.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18503
+ - uid: 18505
components:
- pos: -13.5,65.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18504
+ - uid: 18506
components:
- pos: -13.5,67.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18505
+ - uid: 18507
components:
- pos: -13.5,68.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18506
+ - uid: 18508
components:
- pos: -13.5,69.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18507
+ - uid: 18509
components:
- pos: -13.5,70.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18508
+ - uid: 18510
components:
- pos: -13.5,71.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18509
+ - uid: 18511
components:
- pos: -13.5,72.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18510
+ - uid: 18512
components:
- rot: 1.5707963267948966 rad
pos: -11.5,59.5
@@ -120620,7 +120659,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18511
+ - uid: 18513
components:
- rot: 1.5707963267948966 rad
pos: -10.5,59.5
@@ -120628,7 +120667,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18512
+ - uid: 18514
components:
- rot: 1.5707963267948966 rad
pos: -9.5,59.5
@@ -120636,7 +120675,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18513
+ - uid: 18515
components:
- rot: 1.5707963267948966 rad
pos: -8.5,59.5
@@ -120644,7 +120683,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18514
+ - uid: 18516
components:
- rot: 1.5707963267948966 rad
pos: -7.5,59.5
@@ -120652,7 +120691,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18515
+ - uid: 18517
components:
- rot: 1.5707963267948966 rad
pos: -6.5,59.5
@@ -120660,7 +120699,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18516
+ - uid: 18518
components:
- rot: 1.5707963267948966 rad
pos: -5.5,59.5
@@ -120668,7 +120707,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18517
+ - uid: 18519
components:
- rot: 1.5707963267948966 rad
pos: -4.5,59.5
@@ -120676,7 +120715,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18518
+ - uid: 18520
components:
- rot: 1.5707963267948966 rad
pos: -12.5,58.5
@@ -120684,7 +120723,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18519
+ - uid: 18521
components:
- rot: 1.5707963267948966 rad
pos: -11.5,58.5
@@ -120692,7 +120731,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18520
+ - uid: 18522
components:
- rot: 1.5707963267948966 rad
pos: -10.5,58.5
@@ -120700,7 +120739,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18521
+ - uid: 18523
components:
- rot: 1.5707963267948966 rad
pos: -9.5,58.5
@@ -120708,7 +120747,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18522
+ - uid: 18524
components:
- rot: 1.5707963267948966 rad
pos: -8.5,58.5
@@ -120716,7 +120755,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18523
+ - uid: 18525
components:
- rot: 1.5707963267948966 rad
pos: -7.5,58.5
@@ -120724,7 +120763,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18524
+ - uid: 18526
components:
- rot: 1.5707963267948966 rad
pos: -6.5,58.5
@@ -120732,7 +120771,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18525
+ - uid: 18527
components:
- rot: 1.5707963267948966 rad
pos: -5.5,58.5
@@ -120740,98 +120779,98 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18526
+ - uid: 18528
components:
- pos: -12.5,58.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18527
+ - uid: 18529
components:
- pos: -12.5,57.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18528
+ - uid: 18530
components:
- pos: -12.5,56.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18529
+ - uid: 18531
components:
- pos: -12.5,55.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18530
+ - uid: 18532
components:
- pos: -12.5,54.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18531
+ - uid: 18533
components:
- pos: -12.5,53.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18532
+ - uid: 18534
components:
- pos: -12.5,52.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18533
+ - uid: 18535
components:
- pos: -12.5,51.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18534
+ - uid: 18536
components:
- pos: -13.5,56.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18535
+ - uid: 18537
components:
- pos: -13.5,55.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18536
+ - uid: 18538
components:
- pos: -13.5,54.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18537
+ - uid: 18539
components:
- pos: -13.5,53.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18538
+ - uid: 18540
components:
- pos: -13.5,52.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18539
+ - uid: 18541
components:
- rot: 1.5707963267948966 rad
pos: -3.5,59.5
@@ -120839,7 +120878,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18540
+ - uid: 18542
components:
- rot: 1.5707963267948966 rad
pos: -2.5,59.5
@@ -120847,7 +120886,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18541
+ - uid: 18543
components:
- rot: 1.5707963267948966 rad
pos: -4.5,58.5
@@ -120855,7 +120894,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18542
+ - uid: 18544
components:
- rot: 1.5707963267948966 rad
pos: -3.5,58.5
@@ -120863,7 +120902,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18543
+ - uid: 18545
components:
- rot: -1.5707963267948966 rad
pos: 0.5,59.5
@@ -120871,7 +120910,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18544
+ - uid: 18546
components:
- rot: 1.5707963267948966 rad
pos: -1.5,58.5
@@ -120879,14 +120918,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18545
+ - uid: 18547
components:
- pos: -0.5,57.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18546
+ - uid: 18548
components:
- rot: 1.5707963267948966 rad
pos: -0.5,59.5
@@ -120894,35 +120933,35 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18547
+ - uid: 18549
components:
- pos: -0.5,55.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18548
+ - uid: 18550
components:
- pos: 1.5,58.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18549
+ - uid: 18551
components:
- pos: 1.5,56.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18550
+ - uid: 18552
components:
- pos: 1.5,55.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18551
+ - uid: 18553
components:
- rot: -1.5707963267948966 rad
pos: 38.5,47.5
@@ -120930,7 +120969,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18552
+ - uid: 18554
components:
- rot: -1.5707963267948966 rad
pos: 37.5,47.5
@@ -120938,7 +120977,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18553
+ - uid: 18555
components:
- rot: -1.5707963267948966 rad
pos: 36.5,47.5
@@ -120946,7 +120985,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18554
+ - uid: 18556
components:
- rot: -1.5707963267948966 rad
pos: 35.5,47.5
@@ -120954,7 +120993,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18555
+ - uid: 18557
components:
- rot: -1.5707963267948966 rad
pos: 34.5,47.5
@@ -120962,7 +121001,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18556
+ - uid: 18558
components:
- rot: -1.5707963267948966 rad
pos: 33.5,47.5
@@ -120970,7 +121009,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18557
+ - uid: 18559
components:
- rot: -1.5707963267948966 rad
pos: 32.5,47.5
@@ -120978,7 +121017,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18558
+ - uid: 18560
components:
- rot: -1.5707963267948966 rad
pos: 31.5,47.5
@@ -120986,7 +121025,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18559
+ - uid: 18561
components:
- rot: -1.5707963267948966 rad
pos: 30.5,47.5
@@ -120994,7 +121033,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18560
+ - uid: 18562
components:
- rot: -1.5707963267948966 rad
pos: 28.5,45.5
@@ -121002,7 +121041,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18561
+ - uid: 18563
components:
- rot: -1.5707963267948966 rad
pos: 27.5,45.5
@@ -121010,7 +121049,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18562
+ - uid: 18564
components:
- rot: -1.5707963267948966 rad
pos: 26.5,45.5
@@ -121018,7 +121057,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18563
+ - uid: 18565
components:
- rot: -1.5707963267948966 rad
pos: 25.5,45.5
@@ -121026,7 +121065,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18564
+ - uid: 18566
components:
- rot: -1.5707963267948966 rad
pos: 28.5,46.5
@@ -121034,7 +121073,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18565
+ - uid: 18567
components:
- rot: -1.5707963267948966 rad
pos: 27.5,46.5
@@ -121042,7 +121081,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18566
+ - uid: 18568
components:
- rot: -1.5707963267948966 rad
pos: 26.5,46.5
@@ -121050,7 +121089,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18567
+ - uid: 18569
components:
- rot: -1.5707963267948966 rad
pos: 25.5,46.5
@@ -121058,7 +121097,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18568
+ - uid: 18570
components:
- rot: -1.5707963267948966 rad
pos: 24.5,46.5
@@ -121066,7 +121105,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18569
+ - uid: 18571
components:
- rot: 1.5707963267948966 rad
pos: 30.5,44.5
@@ -121074,7 +121113,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18570
+ - uid: 18572
components:
- rot: 1.5707963267948966 rad
pos: 31.5,44.5
@@ -121082,7 +121121,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18571
+ - uid: 18573
components:
- rot: 1.5707963267948966 rad
pos: 32.5,44.5
@@ -121090,7 +121129,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18572
+ - uid: 18574
components:
- rot: 1.5707963267948966 rad
pos: 33.5,44.5
@@ -121098,7 +121137,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18573
+ - uid: 18575
components:
- rot: 1.5707963267948966 rad
pos: 34.5,44.5
@@ -121106,7 +121145,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18574
+ - uid: 18576
components:
- rot: 1.5707963267948966 rad
pos: 35.5,44.5
@@ -121114,7 +121153,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18575
+ - uid: 18577
components:
- rot: 1.5707963267948966 rad
pos: 36.5,44.5
@@ -121122,7 +121161,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18576
+ - uid: 18578
components:
- rot: 1.5707963267948966 rad
pos: 37.5,44.5
@@ -121130,7 +121169,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18577
+ - uid: 18579
components:
- rot: 1.5707963267948966 rad
pos: 38.5,44.5
@@ -121138,7 +121177,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18578
+ - uid: 18580
components:
- rot: 1.5707963267948966 rad
pos: 39.5,44.5
@@ -121146,7 +121185,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18579
+ - uid: 18581
components:
- rot: 3.141592653589793 rad
pos: -6.5,-91.5
@@ -121154,98 +121193,98 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18580
+ - uid: 18582
components:
- pos: -22.5,-90.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18581
+ - uid: 18583
components:
- pos: -22.5,-91.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18582
+ - uid: 18584
components:
- pos: -22.5,-92.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18583
+ - uid: 18585
components:
- pos: -22.5,-93.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18584
+ - uid: 18586
components:
- pos: -22.5,-94.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18585
+ - uid: 18587
components:
- pos: -22.5,-95.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18586
+ - uid: 18588
components:
- pos: -20.5,-89.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18587
+ - uid: 18589
components:
- pos: -20.5,-90.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18588
+ - uid: 18590
components:
- pos: -20.5,-91.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18589
+ - uid: 18591
components:
- pos: -20.5,-92.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18590
+ - uid: 18592
components:
- pos: -20.5,-93.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18591
+ - uid: 18593
components:
- pos: -20.5,-94.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18592
+ - uid: 18594
components:
- pos: -20.5,-95.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18593
+ - uid: 18595
components:
- rot: 3.141592653589793 rad
pos: -22.5,-97.5
@@ -121253,7 +121292,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18594
+ - uid: 18596
components:
- rot: 1.5707963267948966 rad
pos: -21.5,-97.5
@@ -121261,7 +121300,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18595
+ - uid: 18597
components:
- rot: 1.5707963267948966 rad
pos: -22.5,-97.5
@@ -121269,7 +121308,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18596
+ - uid: 18598
components:
- rot: 1.5707963267948966 rad
pos: -23.5,-97.5
@@ -121277,7 +121316,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18597
+ - uid: 18599
components:
- rot: 1.5707963267948966 rad
pos: -24.5,-97.5
@@ -121285,7 +121324,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18598
+ - uid: 18600
components:
- rot: 1.5707963267948966 rad
pos: -25.5,-97.5
@@ -121293,7 +121332,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18599
+ - uid: 18601
components:
- rot: 1.5707963267948966 rad
pos: -26.5,-97.5
@@ -121301,7 +121340,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18600
+ - uid: 18602
components:
- rot: 1.5707963267948966 rad
pos: -27.5,-97.5
@@ -121309,7 +121348,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18601
+ - uid: 18603
components:
- rot: 1.5707963267948966 rad
pos: -28.5,-97.5
@@ -121317,7 +121356,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18602
+ - uid: 18604
components:
- rot: 1.5707963267948966 rad
pos: -29.5,-97.5
@@ -121325,7 +121364,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18603
+ - uid: 18605
components:
- rot: 1.5707963267948966 rad
pos: -30.5,-97.5
@@ -121333,7 +121372,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18604
+ - uid: 18606
components:
- rot: 1.5707963267948966 rad
pos: -23.5,-96.5
@@ -121341,7 +121380,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18605
+ - uid: 18607
components:
- rot: 1.5707963267948966 rad
pos: -24.5,-96.5
@@ -121349,7 +121388,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18606
+ - uid: 18608
components:
- rot: 1.5707963267948966 rad
pos: -25.5,-96.5
@@ -121357,7 +121396,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18607
+ - uid: 18609
components:
- rot: 1.5707963267948966 rad
pos: -26.5,-96.5
@@ -121365,7 +121404,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18608
+ - uid: 18610
components:
- rot: 1.5707963267948966 rad
pos: -27.5,-96.5
@@ -121373,7 +121412,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18609
+ - uid: 18611
components:
- rot: 1.5707963267948966 rad
pos: -28.5,-96.5
@@ -121381,7 +121420,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18610
+ - uid: 18612
components:
- rot: 1.5707963267948966 rad
pos: -29.5,-96.5
@@ -121389,7 +121428,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18611
+ - uid: 18613
components:
- rot: 1.5707963267948966 rad
pos: -30.5,-96.5
@@ -121397,7 +121436,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18612
+ - uid: 18614
components:
- rot: 1.5707963267948966 rad
pos: -20.5,-98.5
@@ -121405,7 +121444,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18613
+ - uid: 18615
components:
- rot: 1.5707963267948966 rad
pos: -19.5,-98.5
@@ -121413,7 +121452,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18614
+ - uid: 18616
components:
- rot: 1.5707963267948966 rad
pos: -18.5,-98.5
@@ -121421,7 +121460,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18615
+ - uid: 18617
components:
- rot: 1.5707963267948966 rad
pos: -17.5,-98.5
@@ -121429,7 +121468,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18616
+ - uid: 18618
components:
- rot: 1.5707963267948966 rad
pos: -16.5,-98.5
@@ -121437,7 +121476,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18617
+ - uid: 18619
components:
- rot: 1.5707963267948966 rad
pos: -19.5,-97.5
@@ -121445,7 +121484,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18618
+ - uid: 18620
components:
- rot: 1.5707963267948966 rad
pos: -18.5,-97.5
@@ -121453,7 +121492,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18619
+ - uid: 18621
components:
- rot: 1.5707963267948966 rad
pos: -17.5,-97.5
@@ -121461,7 +121500,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18620
+ - uid: 18622
components:
- rot: 1.5707963267948966 rad
pos: -16.5,-97.5
@@ -121469,7 +121508,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18621
+ - uid: 18623
components:
- rot: 1.5707963267948966 rad
pos: -15.5,-97.5
@@ -121477,7 +121516,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18622
+ - uid: 18624
components:
- rot: 1.5707963267948966 rad
pos: -14.5,-97.5
@@ -121485,7 +121524,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18623
+ - uid: 18625
components:
- rot: 1.5707963267948966 rad
pos: -13.5,-97.5
@@ -121493,7 +121532,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18624
+ - uid: 18626
components:
- rot: 1.5707963267948966 rad
pos: -12.5,-97.5
@@ -121501,7 +121540,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18625
+ - uid: 18627
components:
- rot: 1.5707963267948966 rad
pos: -11.5,-97.5
@@ -121509,7 +121548,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18626
+ - uid: 18628
components:
- rot: 1.5707963267948966 rad
pos: -10.5,-97.5
@@ -121517,7 +121556,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18627
+ - uid: 18629
components:
- rot: 1.5707963267948966 rad
pos: -15.5,-98.5
@@ -121525,7 +121564,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18628
+ - uid: 18630
components:
- rot: 1.5707963267948966 rad
pos: -14.5,-98.5
@@ -121533,7 +121572,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18629
+ - uid: 18631
components:
- rot: 1.5707963267948966 rad
pos: -13.5,-98.5
@@ -121541,7 +121580,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18630
+ - uid: 18632
components:
- rot: 1.5707963267948966 rad
pos: -12.5,-98.5
@@ -121549,7 +121588,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18631
+ - uid: 18633
components:
- rot: 1.5707963267948966 rad
pos: -11.5,-98.5
@@ -121557,7 +121596,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18632
+ - uid: 18634
components:
- rot: 1.5707963267948966 rad
pos: -10.5,-98.5
@@ -121565,7 +121604,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18633
+ - uid: 18635
components:
- rot: 1.5707963267948966 rad
pos: -9.5,-98.5
@@ -121573,7 +121612,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18634
+ - uid: 18636
components:
- rot: 1.5707963267948966 rad
pos: -8.5,-98.5
@@ -121581,7 +121620,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18635
+ - uid: 18637
components:
- rot: 1.5707963267948966 rad
pos: -9.5,-97.5
@@ -121589,112 +121628,112 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18636
+ - uid: 18638
components:
- pos: -8.5,-96.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18637
+ - uid: 18639
components:
- pos: -8.5,-95.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18638
+ - uid: 18640
components:
- pos: -8.5,-94.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18639
+ - uid: 18641
components:
- pos: -8.5,-93.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18640
+ - uid: 18642
components:
- pos: -8.5,-92.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18641
+ - uid: 18643
components:
- pos: -7.5,-97.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18642
+ - uid: 18644
components:
- pos: -7.5,-96.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18643
+ - uid: 18645
components:
- pos: -7.5,-95.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18644
+ - uid: 18646
components:
- pos: -7.5,-94.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18645
+ - uid: 18647
components:
- pos: -8.5,-90.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18646
+ - uid: 18648
components:
- pos: -8.5,-89.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18647
+ - uid: 18649
components:
- pos: -8.5,-88.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18648
+ - uid: 18650
components:
- pos: -8.5,-87.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18649
+ - uid: 18651
components:
- pos: -8.5,-86.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18650
+ - uid: 18652
components:
- pos: -8.5,-85.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18651
+ - uid: 18653
components:
- rot: 3.141592653589793 rad
pos: -6.5,-89.5
@@ -121702,7 +121741,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18652
+ - uid: 18654
components:
- rot: 3.141592653589793 rad
pos: -6.5,-90.5
@@ -121710,7 +121749,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18653
+ - uid: 18655
components:
- rot: 3.141592653589793 rad
pos: -6.5,-92.5
@@ -121718,7 +121757,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18654
+ - uid: 18656
components:
- rot: 3.141592653589793 rad
pos: -6.5,-88.5
@@ -121726,7 +121765,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18655
+ - uid: 18657
components:
- rot: 3.141592653589793 rad
pos: -6.5,-87.5
@@ -121734,7 +121773,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18656
+ - uid: 18658
components:
- rot: 3.141592653589793 rad
pos: -6.5,-86.5
@@ -121742,7 +121781,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18657
+ - uid: 18659
components:
- rot: 3.141592653589793 rad
pos: -6.5,-85.5
@@ -121750,7 +121789,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18658
+ - uid: 18660
components:
- rot: -1.5707963267948966 rad
pos: -31.5,-96.5
@@ -121758,7 +121797,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18659
+ - uid: 18661
components:
- rot: -1.5707963267948966 rad
pos: -31.5,-97.5
@@ -121766,7 +121805,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18660
+ - uid: 18662
components:
- rot: -1.5707963267948966 rad
pos: -32.5,-96.5
@@ -121774,7 +121813,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18661
+ - uid: 18663
components:
- rot: -1.5707963267948966 rad
pos: -32.5,-97.5
@@ -121782,7 +121821,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18662
+ - uid: 18664
components:
- rot: -1.5707963267948966 rad
pos: -33.5,-96.5
@@ -121790,7 +121829,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18663
+ - uid: 18665
components:
- rot: -1.5707963267948966 rad
pos: -33.5,-97.5
@@ -121798,7 +121837,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18664
+ - uid: 18666
components:
- rot: 1.5707963267948966 rad
pos: 36.5,-72.5
@@ -121806,7 +121845,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18665
+ - uid: 18667
components:
- rot: 1.5707963267948966 rad
pos: 63.5,-34.5
@@ -121814,14 +121853,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18666
+ - uid: 18668
components:
- pos: 70.5,-48.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18667
+ - uid: 18669
components:
- rot: -1.5707963267948966 rad
pos: 61.5,-33.5
@@ -121829,7 +121868,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18668
+ - uid: 18670
components:
- rot: -1.5707963267948966 rad
pos: 62.5,-33.5
@@ -121837,7 +121876,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18669
+ - uid: 18671
components:
- rot: -1.5707963267948966 rad
pos: 63.5,-33.5
@@ -121845,7 +121884,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18670
+ - uid: 18672
components:
- rot: -1.5707963267948966 rad
pos: 64.5,-33.5
@@ -121853,7 +121892,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18671
+ - uid: 18673
components:
- rot: -1.5707963267948966 rad
pos: 66.5,-33.5
@@ -121861,7 +121900,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18672
+ - uid: 18674
components:
- rot: -1.5707963267948966 rad
pos: 67.5,-33.5
@@ -121869,7 +121908,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18673
+ - uid: 18675
components:
- rot: -1.5707963267948966 rad
pos: 66.5,-34.5
@@ -121877,7 +121916,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18674
+ - uid: 18676
components:
- rot: -1.5707963267948966 rad
pos: 68.5,-34.5
@@ -121885,7 +121924,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18675
+ - uid: 18677
components:
- rot: -1.5707963267948966 rad
pos: 69.5,-34.5
@@ -121893,7 +121932,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18676
+ - uid: 18678
components:
- rot: -1.5707963267948966 rad
pos: 69.5,-33.5
@@ -121901,7 +121940,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18677
+ - uid: 18679
components:
- rot: -1.5707963267948966 rad
pos: 70.5,-33.5
@@ -121909,7 +121948,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18678
+ - uid: 18680
components:
- rot: -1.5707963267948966 rad
pos: 70.5,-34.5
@@ -121917,14 +121956,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18679
+ - uid: 18681
components:
- pos: 72.5,-32.5
parent: 2
type: Transform
- color: '#999000FF'
type: AtmosPipeColor
- - uid: 18680
+ - uid: 18682
components:
- rot: -1.5707963267948966 rad
pos: 71.5,-34.5
@@ -121932,7 +121971,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18681
+ - uid: 18683
components:
- rot: -1.5707963267948966 rad
pos: 72.5,-34.5
@@ -121940,70 +121979,70 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18682
+ - uid: 18684
components:
- pos: 74.5,-35.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18683
+ - uid: 18685
components:
- pos: 74.5,-36.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18684
+ - uid: 18686
components:
- pos: 74.5,-37.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18685
+ - uid: 18687
components:
- pos: 74.5,-38.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18686
+ - uid: 18688
components:
- pos: 74.5,-39.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18687
+ - uid: 18689
components:
- pos: 74.5,-40.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18688
+ - uid: 18690
components:
- pos: 75.5,-34.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18689
+ - uid: 18691
components:
- pos: 75.5,-35.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18690
+ - uid: 18692
components:
- pos: 75.5,-36.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18691
+ - uid: 18693
components:
- rot: 1.5707963267948966 rad
pos: 74.5,-37.5
@@ -122011,21 +122050,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18692
+ - uid: 18694
components:
- pos: 75.5,-38.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18693
+ - uid: 18695
components:
- pos: 75.5,-39.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18694
+ - uid: 18696
components:
- rot: 3.141592653589793 rad
pos: 72.5,-30.5
@@ -122033,7 +122072,7 @@ entities:
type: Transform
- color: '#999000FF'
type: AtmosPipeColor
- - uid: 18695
+ - uid: 18697
components:
- rot: 3.141592653589793 rad
pos: 75.5,-41.5
@@ -122041,7 +122080,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18696
+ - uid: 18698
components:
- rot: 3.141592653589793 rad
pos: 75.5,-42.5
@@ -122049,7 +122088,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18697
+ - uid: 18699
components:
- rot: 3.141592653589793 rad
pos: 74.5,-42.5
@@ -122057,7 +122096,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18698
+ - uid: 18700
components:
- rot: 3.141592653589793 rad
pos: 74.5,-43.5
@@ -122065,7 +122104,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18699
+ - uid: 18701
components:
- rot: 3.141592653589793 rad
pos: 74.5,-44.5
@@ -122073,7 +122112,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18700
+ - uid: 18702
components:
- rot: 3.141592653589793 rad
pos: 75.5,-43.5
@@ -122081,7 +122120,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18701
+ - uid: 18703
components:
- rot: 3.141592653589793 rad
pos: 75.5,-44.5
@@ -122089,7 +122128,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18702
+ - uid: 18704
components:
- rot: 3.141592653589793 rad
pos: 75.5,-45.5
@@ -122097,7 +122136,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18703
+ - uid: 18705
components:
- rot: 1.5707963267948966 rad
pos: 71.5,-48.5
@@ -122105,7 +122144,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18704
+ - uid: 18706
components:
- rot: 1.5707963267948966 rad
pos: 74.5,-46.5
@@ -122113,7 +122152,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18705
+ - uid: 18707
components:
- rot: 1.5707963267948966 rad
pos: 69.5,-47.5
@@ -122121,7 +122160,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18706
+ - uid: 18708
components:
- rot: -1.5707963267948966 rad
pos: 73.5,-45.5
@@ -122129,7 +122168,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18707
+ - uid: 18709
components:
- rot: -1.5707963267948966 rad
pos: 72.5,-45.5
@@ -122137,21 +122176,21 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18708
+ - uid: 18710
components:
- pos: 5.5,-26.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18709
+ - uid: 18711
components:
- pos: 5.5,-27.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18710
+ - uid: 18712
components:
- rot: -1.5707963267948966 rad
pos: 4.5,-25.5
@@ -122159,7 +122198,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18711
+ - uid: 18713
components:
- rot: -1.5707963267948966 rad
pos: 62.5,-11.5
@@ -122167,14 +122206,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18712
+ - uid: 18714
components:
- pos: 66.5,-39.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18713
+ - uid: 18715
components:
- rot: 1.5707963267948966 rad
pos: 73.5,-37.5
@@ -122182,7 +122221,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18714
+ - uid: 18716
components:
- rot: -1.5707963267948966 rad
pos: 70.5,-36.5
@@ -122190,7 +122229,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18715
+ - uid: 18717
components:
- rot: -1.5707963267948966 rad
pos: 68.5,-36.5
@@ -122198,7 +122237,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18716
+ - uid: 18718
components:
- rot: -1.5707963267948966 rad
pos: 69.5,-37.5
@@ -122206,7 +122245,7 @@ entities:
type: Transform
- color: '#9755CCFF'
type: AtmosPipeColor
- - uid: 18717
+ - uid: 18719
components:
- rot: -1.5707963267948966 rad
pos: 69.5,-36.5
@@ -122214,14 +122253,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18718
+ - uid: 18720
components:
- pos: 71.5,-32.5
parent: 2
type: Transform
- color: '#9755CCFF'
type: AtmosPipeColor
- - uid: 18719
+ - uid: 18721
components:
- rot: 1.5707963267948966 rad
pos: 71.5,-33.5
@@ -122229,7 +122268,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18720
+ - uid: 18722
components:
- rot: 1.5707963267948966 rad
pos: 72.5,-33.5
@@ -122237,12 +122276,12 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18721
+ - uid: 18723
components:
- pos: -55.5,-62.5
parent: 2
type: Transform
- - uid: 18722
+ - uid: 18724
components:
- rot: -1.5707963267948966 rad
pos: 71.5,-38.5
@@ -122250,7 +122289,7 @@ entities:
type: Transform
- color: '#999000FF'
type: AtmosPipeColor
- - uid: 18723
+ - uid: 18725
components:
- rot: -1.5707963267948966 rad
pos: 69.5,-38.5
@@ -122258,7 +122297,7 @@ entities:
type: Transform
- color: '#999000FF'
type: AtmosPipeColor
- - uid: 18724
+ - uid: 18726
components:
- rot: 3.141592653589793 rad
pos: 73.5,-31.5
@@ -122266,7 +122305,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18725
+ - uid: 18727
components:
- rot: 3.141592653589793 rad
pos: 73.5,-30.5
@@ -122274,21 +122313,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18726
+ - uid: 18728
components:
- pos: 5.5,-28.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18727
+ - uid: 18729
components:
- pos: 5.5,-29.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18728
+ - uid: 18730
components:
- rot: 1.5707963267948966 rad
pos: 60.5,-34.5
@@ -122296,35 +122335,35 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18729
+ - uid: 18731
components:
- rot: 3.141592653589793 rad
pos: 55.5,-50.5
parent: 2
type: Transform
- - uid: 18730
+ - uid: 18732
components:
- rot: 3.141592653589793 rad
pos: 55.5,-49.5
parent: 2
type: Transform
- - uid: 18731
+ - uid: 18733
components:
- rot: 1.5707963267948966 rad
pos: 54.5,-48.5
parent: 2
type: Transform
- - uid: 18732
+ - uid: 18734
components:
- pos: -54.5,-62.5
parent: 2
type: Transform
- - uid: 18733
+ - uid: 18735
components:
- pos: -54.5,-61.5
parent: 2
type: Transform
- - uid: 18734
+ - uid: 18736
components:
- rot: -1.5707963267948966 rad
pos: 61.5,-11.5
@@ -122332,7 +122371,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18735
+ - uid: 18737
components:
- rot: -1.5707963267948966 rad
pos: 60.5,-11.5
@@ -122340,7 +122379,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18736
+ - uid: 18738
components:
- rot: -1.5707963267948966 rad
pos: 59.5,-11.5
@@ -122348,7 +122387,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18737
+ - uid: 18739
components:
- rot: -1.5707963267948966 rad
pos: 58.5,-11.5
@@ -122356,7 +122395,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18738
+ - uid: 18740
components:
- rot: -1.5707963267948966 rad
pos: 57.5,-11.5
@@ -122364,7 +122403,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18739
+ - uid: 18741
components:
- rot: -1.5707963267948966 rad
pos: 56.5,-11.5
@@ -122372,7 +122411,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18740
+ - uid: 18742
components:
- rot: 1.5707963267948966 rad
pos: 54.5,-6.5
@@ -122380,7 +122419,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18741
+ - uid: 18743
components:
- rot: 1.5707963267948966 rad
pos: 55.5,-6.5
@@ -122388,7 +122427,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18742
+ - uid: 18744
components:
- rot: 1.5707963267948966 rad
pos: 56.5,-6.5
@@ -122396,7 +122435,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18743
+ - uid: 18745
components:
- rot: 1.5707963267948966 rad
pos: 57.5,-6.5
@@ -122404,7 +122443,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18744
+ - uid: 18746
components:
- rot: 1.5707963267948966 rad
pos: 58.5,-6.5
@@ -122412,7 +122451,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18745
+ - uid: 18747
components:
- rot: 1.5707963267948966 rad
pos: 59.5,-6.5
@@ -122420,7 +122459,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18746
+ - uid: 18748
components:
- rot: 1.5707963267948966 rad
pos: 60.5,-6.5
@@ -122428,7 +122467,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18747
+ - uid: 18749
components:
- rot: 1.5707963267948966 rad
pos: 31.5,-72.5
@@ -122436,7 +122475,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18748
+ - uid: 18750
components:
- rot: 1.5707963267948966 rad
pos: 35.5,-72.5
@@ -122444,7 +122483,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18749
+ - uid: 18751
components:
- rot: 1.5707963267948966 rad
pos: -19.5,25.5
@@ -122452,7 +122491,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18750
+ - uid: 18752
components:
- rot: 1.5707963267948966 rad
pos: -18.5,25.5
@@ -122460,7 +122499,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18751
+ - uid: 18753
components:
- rot: 1.5707963267948966 rad
pos: -17.5,25.5
@@ -122468,7 +122507,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18752
+ - uid: 18754
components:
- rot: 1.5707963267948966 rad
pos: -16.5,25.5
@@ -122476,7 +122515,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18753
+ - uid: 18755
components:
- rot: 1.5707963267948966 rad
pos: -17.5,24.5
@@ -122484,7 +122523,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18754
+ - uid: 18756
components:
- rot: 1.5707963267948966 rad
pos: -16.5,24.5
@@ -122492,7 +122531,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18755
+ - uid: 18757
components:
- rot: -1.5707963267948966 rad
pos: 71.5,-36.5
@@ -122500,7 +122539,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18756
+ - uid: 18758
components:
- rot: -1.5707963267948966 rad
pos: 71.5,-37.5
@@ -122508,14 +122547,14 @@ entities:
type: Transform
- color: '#9755CCFF'
type: AtmosPipeColor
- - uid: 18757
+ - uid: 18759
components:
- pos: -5.5,-9.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18758
+ - uid: 18760
components:
- rot: -1.5707963267948966 rad
pos: -4.5,-12.5
@@ -122523,7 +122562,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18759
+ - uid: 18761
components:
- rot: -1.5707963267948966 rad
pos: -5.5,-12.5
@@ -122531,7 +122570,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18760
+ - uid: 18762
components:
- rot: -1.5707963267948966 rad
pos: -6.5,-12.5
@@ -122539,7 +122578,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18761
+ - uid: 18763
components:
- rot: -1.5707963267948966 rad
pos: -7.5,-12.5
@@ -122547,7 +122586,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18762
+ - uid: 18764
components:
- rot: -1.5707963267948966 rad
pos: -6.5,-14.5
@@ -122555,7 +122594,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18763
+ - uid: 18765
components:
- rot: -1.5707963267948966 rad
pos: -7.5,-14.5
@@ -122563,7 +122602,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18764
+ - uid: 18766
components:
- rot: 3.141592653589793 rad
pos: -11.5,-23.5
@@ -122571,7 +122610,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18765
+ - uid: 18767
components:
- rot: 3.141592653589793 rad
pos: -11.5,-21.5
@@ -122579,7 +122618,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18766
+ - uid: 18768
components:
- rot: 3.141592653589793 rad
pos: -11.5,-20.5
@@ -122587,7 +122626,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18767
+ - uid: 18769
components:
- rot: 3.141592653589793 rad
pos: -11.5,-19.5
@@ -122595,7 +122634,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18768
+ - uid: 18770
components:
- rot: 3.141592653589793 rad
pos: -10.5,-19.5
@@ -122603,7 +122642,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18769
+ - uid: 18771
components:
- rot: 3.141592653589793 rad
pos: -10.5,-20.5
@@ -122611,7 +122650,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18770
+ - uid: 18772
components:
- rot: -1.5707963267948966 rad
pos: -9.5,-21.5
@@ -122619,14 +122658,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18771
+ - uid: 18773
components:
- pos: -25.5,-58.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18772
+ - uid: 18774
components:
- rot: 3.141592653589793 rad
pos: -28.5,-72.5
@@ -122634,7 +122673,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18773
+ - uid: 18775
components:
- rot: 3.141592653589793 rad
pos: -28.5,-73.5
@@ -122642,7 +122681,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18774
+ - uid: 18776
components:
- rot: 3.141592653589793 rad
pos: -30.5,-72.5
@@ -122650,7 +122689,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18775
+ - uid: 18777
components:
- rot: 3.141592653589793 rad
pos: -30.5,-73.5
@@ -122658,7 +122697,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18776
+ - uid: 18778
components:
- rot: 1.5707963267948966 rad
pos: 34.5,-72.5
@@ -122666,7 +122705,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18777
+ - uid: 18779
components:
- rot: 1.5707963267948966 rad
pos: 33.5,-72.5
@@ -122674,25 +122713,25 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18778
+ - uid: 18780
components:
- rot: -1.5707963267948966 rad
pos: -45.5,-35.5
parent: 2
type: Transform
- - uid: 18779
+ - uid: 18781
components:
- rot: -1.5707963267948966 rad
pos: -46.5,-35.5
parent: 2
type: Transform
- - uid: 18780
+ - uid: 18782
components:
- rot: -1.5707963267948966 rad
pos: -47.5,-35.5
parent: 2
type: Transform
- - uid: 18781
+ - uid: 18783
components:
- rot: 3.141592653589793 rad
pos: 30.5,-80.5
@@ -122700,7 +122739,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18782
+ - uid: 18784
components:
- rot: 3.141592653589793 rad
pos: 47.5,-76.5
@@ -122708,7 +122747,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18783
+ - uid: 18785
components:
- rot: 3.141592653589793 rad
pos: 47.5,-77.5
@@ -122716,7 +122755,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18784
+ - uid: 18786
components:
- rot: 3.141592653589793 rad
pos: 47.5,-78.5
@@ -122724,7 +122763,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18785
+ - uid: 18787
components:
- rot: 3.141592653589793 rad
pos: 29.5,-82.5
@@ -122732,7 +122771,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18786
+ - uid: 18788
components:
- rot: 1.5707963267948966 rad
pos: 47.5,-73.5
@@ -122740,7 +122779,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18787
+ - uid: 18789
components:
- rot: 3.141592653589793 rad
pos: 48.5,-80.5
@@ -122748,7 +122787,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18788
+ - uid: 18790
components:
- rot: 1.5707963267948966 rad
pos: 43.5,-72.5
@@ -122756,7 +122795,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18789
+ - uid: 18791
components:
- rot: 3.141592653589793 rad
pos: 29.5,-75.5
@@ -122764,7 +122803,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18790
+ - uid: 18792
components:
- rot: 1.5707963267948966 rad
pos: 29.5,-72.5
@@ -122772,7 +122811,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18791
+ - uid: 18793
components:
- rot: 1.5707963267948966 rad
pos: 28.5,-72.5
@@ -122780,7 +122819,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18792
+ - uid: 18794
components:
- rot: 1.5707963267948966 rad
pos: 27.5,-72.5
@@ -122788,7 +122827,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18793
+ - uid: 18795
components:
- rot: 1.5707963267948966 rad
pos: 26.5,-72.5
@@ -122796,7 +122835,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18794
+ - uid: 18796
components:
- rot: 1.5707963267948966 rad
pos: 39.5,-73.5
@@ -122804,7 +122843,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18795
+ - uid: 18797
components:
- rot: 1.5707963267948966 rad
pos: 38.5,-73.5
@@ -122812,7 +122851,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18796
+ - uid: 18798
components:
- rot: 1.5707963267948966 rad
pos: 37.5,-73.5
@@ -122820,7 +122859,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18797
+ - uid: 18799
components:
- rot: 1.5707963267948966 rad
pos: 36.5,-73.5
@@ -122828,7 +122867,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18798
+ - uid: 18800
components:
- rot: 1.5707963267948966 rad
pos: 35.5,-73.5
@@ -122836,7 +122875,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18799
+ - uid: 18801
components:
- rot: 1.5707963267948966 rad
pos: 34.5,-73.5
@@ -122844,7 +122883,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18800
+ - uid: 18802
components:
- rot: 1.5707963267948966 rad
pos: 33.5,-73.5
@@ -122852,7 +122891,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18801
+ - uid: 18803
components:
- rot: 1.5707963267948966 rad
pos: 31.5,-73.5
@@ -122860,7 +122899,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18802
+ - uid: 18804
components:
- rot: 1.5707963267948966 rad
pos: 30.5,-73.5
@@ -122868,7 +122907,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18803
+ - uid: 18805
components:
- rot: 3.141592653589793 rad
pos: 29.5,-74.5
@@ -122876,7 +122915,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18804
+ - uid: 18806
components:
- rot: 1.5707963267948966 rad
pos: 28.5,-73.5
@@ -122884,7 +122923,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18805
+ - uid: 18807
components:
- rot: 1.5707963267948966 rad
pos: 27.5,-73.5
@@ -122892,7 +122931,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18806
+ - uid: 18808
components:
- rot: 1.5707963267948966 rad
pos: 26.5,-73.5
@@ -122900,7 +122939,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18807
+ - uid: 18809
components:
- rot: -1.5707963267948966 rad
pos: 25.5,-73.5
@@ -122908,7 +122947,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18808
+ - uid: 18810
components:
- rot: 1.5707963267948966 rad
pos: 26.5,-82.5
@@ -122916,7 +122955,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18809
+ - uid: 18811
components:
- rot: 3.141592653589793 rad
pos: 29.5,-76.5
@@ -122924,7 +122963,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18810
+ - uid: 18812
components:
- rot: 3.141592653589793 rad
pos: 29.5,-77.5
@@ -122932,7 +122971,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18811
+ - uid: 18813
components:
- rot: 1.5707963267948966 rad
pos: 27.5,-82.5
@@ -122940,7 +122979,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18812
+ - uid: 18814
components:
- rot: 1.5707963267948966 rad
pos: 28.5,-82.5
@@ -122948,7 +122987,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18813
+ - uid: 18815
components:
- rot: 1.5707963267948966 rad
pos: 24.5,-83.5
@@ -122956,7 +122995,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18814
+ - uid: 18816
components:
- rot: 1.5707963267948966 rad
pos: 25.5,-83.5
@@ -122964,7 +123003,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18815
+ - uid: 18817
components:
- rot: 1.5707963267948966 rad
pos: 26.5,-83.5
@@ -122972,7 +123011,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18816
+ - uid: 18818
components:
- rot: 1.5707963267948966 rad
pos: 27.5,-83.5
@@ -122980,7 +123019,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18817
+ - uid: 18819
components:
- rot: 1.5707963267948966 rad
pos: 28.5,-83.5
@@ -122988,7 +123027,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18818
+ - uid: 18820
components:
- rot: -1.5707963267948966 rad
pos: 23.5,-82.5
@@ -122996,7 +123035,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18819
+ - uid: 18821
components:
- rot: -1.5707963267948966 rad
pos: 22.5,-82.5
@@ -123004,7 +123043,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18820
+ - uid: 18822
components:
- rot: -1.5707963267948966 rad
pos: 21.5,-82.5
@@ -123012,7 +123051,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18821
+ - uid: 18823
components:
- rot: -1.5707963267948966 rad
pos: 20.5,-82.5
@@ -123020,7 +123059,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18822
+ - uid: 18824
components:
- rot: -1.5707963267948966 rad
pos: 19.5,-82.5
@@ -123028,7 +123067,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18823
+ - uid: 18825
components:
- rot: -1.5707963267948966 rad
pos: 23.5,-83.5
@@ -123036,7 +123075,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18824
+ - uid: 18826
components:
- rot: -1.5707963267948966 rad
pos: 22.5,-83.5
@@ -123044,7 +123083,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18825
+ - uid: 18827
components:
- rot: -1.5707963267948966 rad
pos: 21.5,-83.5
@@ -123052,7 +123091,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18826
+ - uid: 18828
components:
- rot: -1.5707963267948966 rad
pos: 20.5,-83.5
@@ -123060,7 +123099,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18827
+ - uid: 18829
components:
- rot: -1.5707963267948966 rad
pos: 29.5,-82.5
@@ -123068,7 +123107,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18828
+ - uid: 18830
components:
- rot: 1.5707963267948966 rad
pos: 25.5,-82.5
@@ -123076,7 +123115,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18829
+ - uid: 18831
components:
- rot: 1.5707963267948966 rad
pos: 24.5,-82.5
@@ -123084,7 +123123,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18830
+ - uid: 18832
components:
- rot: 3.141592653589793 rad
pos: 30.5,-74.5
@@ -123092,7 +123131,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18831
+ - uid: 18833
components:
- rot: 3.141592653589793 rad
pos: 30.5,-78.5
@@ -123100,7 +123139,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18832
+ - uid: 18834
components:
- rot: 3.141592653589793 rad
pos: 30.5,-77.5
@@ -123108,7 +123147,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18833
+ - uid: 18835
components:
- rot: 3.141592653589793 rad
pos: 30.5,-75.5
@@ -123116,7 +123155,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18834
+ - uid: 18836
components:
- rot: 3.141592653589793 rad
pos: 30.5,-76.5
@@ -123124,7 +123163,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18835
+ - uid: 18837
components:
- rot: 3.141592653589793 rad
pos: 30.5,-79.5
@@ -123132,7 +123171,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18836
+ - uid: 18838
components:
- rot: 1.5707963267948966 rad
pos: 41.5,-73.5
@@ -123140,7 +123179,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18837
+ - uid: 18839
components:
- rot: 3.141592653589793 rad
pos: 48.5,-74.5
@@ -123148,7 +123187,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18838
+ - uid: 18840
components:
- rot: 3.141592653589793 rad
pos: 48.5,-76.5
@@ -123156,7 +123195,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18839
+ - uid: 18841
components:
- rot: 3.141592653589793 rad
pos: 48.5,-83.5
@@ -123164,7 +123203,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18840
+ - uid: 18842
components:
- rot: 3.141592653589793 rad
pos: 48.5,-84.5
@@ -123172,7 +123211,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18841
+ - uid: 18843
components:
- rot: 3.141592653589793 rad
pos: 48.5,-77.5
@@ -123180,7 +123219,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18842
+ - uid: 18844
components:
- rot: 3.141592653589793 rad
pos: 48.5,-78.5
@@ -123188,7 +123227,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18843
+ - uid: 18845
components:
- rot: 3.141592653589793 rad
pos: 48.5,-81.5
@@ -123196,7 +123235,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18844
+ - uid: 18846
components:
- rot: 3.141592653589793 rad
pos: 48.5,-82.5
@@ -123204,7 +123243,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18845
+ - uid: 18847
components:
- rot: 1.5707963267948966 rad
pos: 44.5,-72.5
@@ -123212,7 +123251,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18846
+ - uid: 18848
components:
- rot: 1.5707963267948966 rad
pos: 42.5,-72.5
@@ -123220,7 +123259,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18847
+ - uid: 18849
components:
- rot: 3.141592653589793 rad
pos: 47.5,-84.5
@@ -123228,7 +123267,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18848
+ - uid: 18850
components:
- rot: 3.141592653589793 rad
pos: 47.5,-74.5
@@ -123236,7 +123275,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18849
+ - uid: 18851
components:
- rot: 3.141592653589793 rad
pos: 47.5,-75.5
@@ -123244,7 +123283,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18850
+ - uid: 18852
components:
- rot: 1.5707963267948966 rad
pos: 45.5,-73.5
@@ -123252,7 +123291,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18851
+ - uid: 18853
components:
- rot: 1.5707963267948966 rad
pos: 46.5,-73.5
@@ -123260,7 +123299,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18852
+ - uid: 18854
components:
- rot: 3.141592653589793 rad
pos: 47.5,-85.5
@@ -123268,7 +123307,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18853
+ - uid: 18855
components:
- rot: 3.141592653589793 rad
pos: 47.5,-81.5
@@ -123276,7 +123315,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18854
+ - uid: 18856
components:
- rot: 3.141592653589793 rad
pos: 47.5,-82.5
@@ -123284,7 +123323,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18855
+ - uid: 18857
components:
- rot: 3.141592653589793 rad
pos: 47.5,-83.5
@@ -123292,7 +123331,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18856
+ - uid: 18858
components:
- rot: 1.5707963267948966 rad
pos: -21.5,66.5
@@ -123300,7 +123339,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18857
+ - uid: 18859
components:
- rot: 1.5707963267948966 rad
pos: -20.5,66.5
@@ -123308,7 +123347,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18858
+ - uid: 18860
components:
- rot: 1.5707963267948966 rad
pos: -19.5,66.5
@@ -123316,7 +123355,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18859
+ - uid: 18861
components:
- rot: 1.5707963267948966 rad
pos: -15.5,66.5
@@ -123324,7 +123363,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18860
+ - uid: 18862
components:
- rot: 1.5707963267948966 rad
pos: -14.5,66.5
@@ -123332,7 +123371,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18861
+ - uid: 18863
components:
- rot: -1.5707963267948966 rad
pos: 32.5,-72.5
@@ -123340,7 +123379,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18862
+ - uid: 18864
components:
- rot: -1.5707963267948966 rad
pos: 32.5,-73.5
@@ -123348,7 +123387,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18863
+ - uid: 18865
components:
- rot: -1.5707963267948966 rad
pos: 14.5,-22.5
@@ -123356,7 +123395,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18864
+ - uid: 18866
components:
- rot: -1.5707963267948966 rad
pos: 13.5,-22.5
@@ -123364,7 +123403,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18865
+ - uid: 18867
components:
- rot: -1.5707963267948966 rad
pos: 12.5,-22.5
@@ -123372,7 +123411,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18866
+ - uid: 18868
components:
- rot: -1.5707963267948966 rad
pos: 11.5,-22.5
@@ -123380,7 +123419,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18867
+ - uid: 18869
components:
- rot: -1.5707963267948966 rad
pos: 10.5,-22.5
@@ -123388,7 +123427,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18868
+ - uid: 18870
components:
- rot: -1.5707963267948966 rad
pos: 9.5,-22.5
@@ -123396,7 +123435,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18869
+ - uid: 18871
components:
- rot: -1.5707963267948966 rad
pos: 8.5,-22.5
@@ -123404,35 +123443,35 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18870
+ - uid: 18872
components:
- pos: 12.5,-25.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18871
+ - uid: 18873
components:
- pos: 12.5,-26.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18872
+ - uid: 18874
components:
- pos: 12.5,-23.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18873
+ - uid: 18875
components:
- pos: 12.5,-24.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18874
+ - uid: 18876
components:
- rot: 3.141592653589793 rad
pos: 40.5,9.5
@@ -123440,7 +123479,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18875
+ - uid: 18877
components:
- rot: 3.141592653589793 rad
pos: 40.5,8.5
@@ -123448,7 +123487,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18876
+ - uid: 18878
components:
- rot: 1.5707963267948966 rad
pos: 43.5,6.5
@@ -123456,7 +123495,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18877
+ - uid: 18879
components:
- rot: 1.5707963267948966 rad
pos: 44.5,6.5
@@ -123464,7 +123503,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18878
+ - uid: 18880
components:
- rot: 1.5707963267948966 rad
pos: 41.5,5.5
@@ -123472,7 +123511,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18879
+ - uid: 18881
components:
- rot: 1.5707963267948966 rad
pos: 42.5,5.5
@@ -123480,7 +123519,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18880
+ - uid: 18882
components:
- rot: 1.5707963267948966 rad
pos: 43.5,5.5
@@ -123488,7 +123527,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18881
+ - uid: 18883
components:
- rot: 1.5707963267948966 rad
pos: 44.5,5.5
@@ -123496,7 +123535,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18882
+ - uid: 18884
components:
- rot: 1.5707963267948966 rad
pos: -46.5,31.5
@@ -123504,147 +123543,147 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18883
+ - uid: 18885
components:
- pos: -47.5,33.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18884
+ - uid: 18886
components:
- pos: -47.5,32.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18885
+ - uid: 18887
components:
- pos: -45.5,34.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18886
+ - uid: 18888
components:
- pos: -45.5,35.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18887
+ - uid: 18889
components:
- pos: -45.5,36.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18888
+ - uid: 18890
components:
- pos: -45.5,37.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18889
+ - uid: 18891
components:
- pos: -45.5,38.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18890
+ - uid: 18892
components:
- pos: -45.5,39.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18891
+ - uid: 18893
components:
- pos: -45.5,40.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18892
+ - uid: 18894
components:
- pos: -45.5,41.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18893
+ - uid: 18895
components:
- pos: -45.5,42.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18894
+ - uid: 18896
components:
- pos: -46.5,35.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18895
+ - uid: 18897
components:
- pos: -46.5,36.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18896
+ - uid: 18898
components:
- pos: -46.5,37.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18897
+ - uid: 18899
components:
- pos: -46.5,38.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18898
+ - uid: 18900
components:
- pos: -46.5,39.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18899
+ - uid: 18901
components:
- pos: -46.5,40.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18900
+ - uid: 18902
components:
- pos: -46.5,41.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18901
+ - uid: 18903
components:
- pos: -46.5,42.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18902
+ - uid: 18904
components:
- pos: 68.5,-32.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18903
+ - uid: 18905
components:
- rot: 1.5707963267948966 rad
pos: 64.5,-31.5
@@ -123652,7 +123691,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18904
+ - uid: 18906
components:
- rot: 1.5707963267948966 rad
pos: 65.5,-31.5
@@ -123660,7 +123699,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18905
+ - uid: 18907
components:
- rot: 1.5707963267948966 rad
pos: 66.5,-31.5
@@ -123668,7 +123707,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18906
+ - uid: 18908
components:
- rot: 3.141592653589793 rad
pos: -3.5,10.5
@@ -123676,14 +123715,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18907
+ - uid: 18909
components:
- pos: -3.5,14.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18908
+ - uid: 18910
components:
- rot: -1.5707963267948966 rad
pos: -70.5,-40.5
@@ -123691,26 +123730,26 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18909
+ - uid: 18911
components:
- rot: -1.5707963267948966 rad
pos: -64.5,-43.5
parent: 2
type: Transform
- - uid: 18910
+ - uid: 18912
components:
- pos: -70.5,-45.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18911
+ - uid: 18913
components:
- rot: 1.5707963267948966 rad
pos: -74.5,-41.5
parent: 2
type: Transform
- - uid: 18912
+ - uid: 18914
components:
- rot: 1.5707963267948966 rad
pos: -74.5,-42.5
@@ -123718,7 +123757,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18913
+ - uid: 18915
components:
- rot: 1.5707963267948966 rad
pos: -75.5,-42.5
@@ -123726,7 +123765,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18914
+ - uid: 18916
components:
- rot: 1.5707963267948966 rad
pos: -75.5,-40.5
@@ -123734,7 +123773,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18915
+ - uid: 18917
components:
- rot: 1.5707963267948966 rad
pos: -73.5,-40.5
@@ -123742,7 +123781,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18916
+ - uid: 18918
components:
- rot: 1.5707963267948966 rad
pos: -74.5,-40.5
@@ -123750,7 +123789,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18917
+ - uid: 18919
components:
- rot: 1.5707963267948966 rad
pos: -68.5,-41.5
@@ -123758,7 +123797,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18918
+ - uid: 18920
components:
- rot: 1.5707963267948966 rad
pos: -69.5,-41.5
@@ -123766,22 +123805,22 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18919
+ - uid: 18921
components:
- pos: -44.5,-37.5
parent: 2
type: Transform
- - uid: 18920
+ - uid: 18922
components:
- pos: -44.5,-39.5
parent: 2
type: Transform
- - uid: 18921
+ - uid: 18923
components:
- pos: -44.5,-38.5
parent: 2
type: Transform
- - uid: 18922
+ - uid: 18924
components:
- rot: -1.5707963267948966 rad
pos: -50.5,-23.5
@@ -123789,7 +123828,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18923
+ - uid: 18925
components:
- rot: -1.5707963267948966 rad
pos: -48.5,-23.5
@@ -123797,7 +123836,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18924
+ - uid: 18926
components:
- rot: -1.5707963267948966 rad
pos: -47.5,-23.5
@@ -123805,7 +123844,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18925
+ - uid: 18927
components:
- rot: -1.5707963267948966 rad
pos: -46.5,-23.5
@@ -123813,56 +123852,56 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18926
+ - uid: 18928
components:
- pos: 2.5,-3.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18927
+ - uid: 18929
components:
- pos: -0.5,-3.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18928
+ - uid: 18930
components:
- pos: -1.5,-2.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18929
+ - uid: 18931
components:
- pos: -0.5,-2.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18930
+ - uid: 18932
components:
- pos: -0.5,-1.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18931
+ - uid: 18933
components:
- pos: -0.5,0.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18932
+ - uid: 18934
components:
- pos: -0.5,-0.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18933
+ - uid: 18935
components:
- rot: 1.5707963267948966 rad
pos: -3.5,-21.5
@@ -123870,7 +123909,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18934
+ - uid: 18936
components:
- rot: 1.5707963267948966 rad
pos: -4.5,-21.5
@@ -123878,7 +123917,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18935
+ - uid: 18937
components:
- rot: 3.141592653589793 rad
pos: -1.5,-23.5
@@ -123886,7 +123925,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18936
+ - uid: 18938
components:
- rot: 1.5707963267948966 rad
pos: -2.5,-21.5
@@ -123894,7 +123933,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18937
+ - uid: 18939
components:
- rot: 3.141592653589793 rad
pos: -1.5,-24.5
@@ -123902,28 +123941,28 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18938
+ - uid: 18940
components:
- pos: 28.5,-36.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18939
+ - uid: 18941
components:
- pos: 28.5,-37.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18940
+ - uid: 18942
components:
- pos: 22.5,-36.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18941
+ - uid: 18943
components:
- rot: -1.5707963267948966 rad
pos: 15.5,17.5
@@ -123931,107 +123970,136 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18942
+ - uid: 18944
components:
- pos: 17.5,16.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18943
+ - uid: 18945
components:
- pos: 39.5,59.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18944
+ - uid: 18946
components:
- pos: 40.5,60.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18945
+ - uid: 18947
components:
- pos: 40.5,59.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18946
+ - uid: 18948
components:
- pos: 39.5,55.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18947
+ - uid: 18949
components:
- pos: 39.5,56.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18948
+ - uid: 18950
components:
- pos: 39.5,57.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18949
+ - uid: 18951
components:
- pos: 39.5,58.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18950
+ - uid: 18952
components:
- pos: 39.5,60.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18951
+ - uid: 18953
components:
- pos: 39.5,52.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18952
+ - uid: 18954
components:
- pos: 39.5,51.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18953
+ - uid: 18955
components:
- pos: 39.5,50.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18954
+ - uid: 18956
components:
- pos: 39.5,49.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18955
+ - uid: 18957
components:
- pos: 39.5,48.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
+ - uid: 18958
+ components:
+ - pos: 3.5,-45.5
+ parent: 2
+ type: Transform
+ - color: '#990000FF'
+ type: AtmosPipeColor
+ - uid: 18959
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 9.5,-42.5
+ parent: 2
+ type: Transform
+ - color: '#990000FF'
+ type: AtmosPipeColor
+ - uid: 18960
+ components:
+ - pos: 5.5,-45.5
+ parent: 2
+ type: Transform
+ - color: '#0055CCFF'
+ type: AtmosPipeColor
+ - uid: 18961
+ components:
+ - pos: 5.5,-46.5
+ parent: 2
+ type: Transform
+ - color: '#0055CCFF'
+ type: AtmosPipeColor
- proto: GasPipeTJunction
entities:
- - uid: 18956
+ - uid: 18962
components:
- rot: 3.141592653589793 rad
pos: 39.5,47.5
@@ -124039,20 +124107,20 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18957
+ - uid: 18963
components:
- rot: -1.5707963267948966 rad
pos: 2.5,13.5
parent: 2
type: Transform
- - uid: 18958
+ - uid: 18964
components:
- pos: 18.5,17.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18959
+ - uid: 18965
components:
- rot: 3.141592653589793 rad
pos: 26.5,-30.5
@@ -124060,7 +124128,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18960
+ - uid: 18966
components:
- rot: 3.141592653589793 rad
pos: 24.5,-29.5
@@ -124068,7 +124136,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18961
+ - uid: 18967
components:
- rot: 3.141592653589793 rad
pos: -1.5,-25.5
@@ -124076,7 +124144,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18962
+ - uid: 18968
components:
- rot: 1.5707963267948966 rad
pos: -5.5,-21.5
@@ -124084,21 +124152,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18963
+ - uid: 18969
components:
- pos: -0.5,1.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18964
+ - uid: 18970
components:
- pos: -1.5,-1.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18965
+ - uid: 18971
components:
- rot: 1.5707963267948966 rad
pos: -50.5,-19.5
@@ -124106,7 +124174,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18966
+ - uid: 18972
components:
- rot: 1.5707963267948966 rad
pos: -51.5,-23.5
@@ -124114,14 +124182,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18967
+ - uid: 18973
components:
- pos: -71.5,-42.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18968
+ - uid: 18974
components:
- rot: 1.5707963267948966 rad
pos: -70.5,-39.5
@@ -124129,7 +124197,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18969
+ - uid: 18975
components:
- rot: 1.5707963267948966 rad
pos: -72.5,-37.5
@@ -124137,7 +124205,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18970
+ - uid: 18976
components:
- rot: -1.5707963267948966 rad
pos: -73.5,-31.5
@@ -124145,7 +124213,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18971
+ - uid: 18977
components:
- rot: 3.141592653589793 rad
pos: -69.5,-39.5
@@ -124153,7 +124221,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18972
+ - uid: 18978
components:
- rot: 3.141592653589793 rad
pos: -66.5,-39.5
@@ -124161,7 +124229,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18973
+ - uid: 18979
components:
- rot: 3.141592653589793 rad
pos: -68.5,-39.5
@@ -124169,7 +124237,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18974
+ - uid: 18980
components:
- rot: 3.141592653589793 rad
pos: -67.5,-39.5
@@ -124177,7 +124245,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18975
+ - uid: 18981
components:
- rot: 1.5707963267948966 rad
pos: -71.5,-31.5
@@ -124185,7 +124253,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18976
+ - uid: 18982
components:
- rot: 3.141592653589793 rad
pos: -71.5,-46.5
@@ -124193,7 +124261,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18977
+ - uid: 18983
components:
- rot: 1.5707963267948966 rad
pos: -68.5,-43.5
@@ -124201,7 +124269,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18978
+ - uid: 18984
components:
- rot: 3.141592653589793 rad
pos: -67.5,-46.5
@@ -124209,7 +124277,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18979
+ - uid: 18985
components:
- rot: 1.5707963267948966 rad
pos: -67.5,-44.5
@@ -124217,7 +124285,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18980
+ - uid: 18986
components:
- rot: 1.5707963267948966 rad
pos: -3.5,11.5
@@ -124225,7 +124293,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18981
+ - uid: 18987
components:
- rot: 1.5707963267948966 rad
pos: 63.5,-31.5
@@ -124233,7 +124301,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18982
+ - uid: 18988
components:
- rot: 1.5707963267948966 rad
pos: 40.5,5.5
@@ -124241,28 +124309,28 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18983
+ - uid: 18989
components:
- pos: 28.5,-29.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18984
+ - uid: 18990
components:
- pos: -8.5,-53.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18985
+ - uid: 18991
components:
- pos: -12.5,-42.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18986
+ - uid: 18992
components:
- rot: -1.5707963267948966 rad
pos: 26.5,-7.5
@@ -124270,7 +124338,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18987
+ - uid: 18993
components:
- rot: 1.5707963267948966 rad
pos: 8.5,10.5
@@ -124278,7 +124346,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18988
+ - uid: 18994
components:
- rot: 1.5707963267948966 rad
pos: 8.5,0.5
@@ -124286,7 +124354,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18989
+ - uid: 18995
components:
- rot: -1.5707963267948966 rad
pos: -11.5,-38.5
@@ -124294,7 +124362,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18990
+ - uid: 18996
components:
- rot: -1.5707963267948966 rad
pos: 7.5,14.5
@@ -124302,7 +124370,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18991
+ - uid: 18997
components:
- rot: 3.141592653589793 rad
pos: 22.5,21.5
@@ -124310,7 +124378,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18992
+ - uid: 18998
components:
- rot: 3.141592653589793 rad
pos: 2.5,-60.5
@@ -124318,21 +124386,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18993
+ - uid: 18999
components:
- pos: -5.5,-60.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18994
+ - uid: 19000
components:
- pos: -8.5,-61.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18995
+ - uid: 19001
components:
- rot: 1.5707963267948966 rad
pos: -8.5,-64.5
@@ -124340,7 +124408,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18996
+ - uid: 19002
components:
- rot: 3.141592653589793 rad
pos: -24.5,-80.5
@@ -124348,7 +124416,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18997
+ - uid: 19003
components:
- rot: -1.5707963267948966 rad
pos: 20.5,13.5
@@ -124356,7 +124424,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18998
+ - uid: 19004
components:
- rot: 3.141592653589793 rad
pos: 31.5,-43.5
@@ -124364,7 +124432,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18999
+ - uid: 19005
components:
- rot: 3.141592653589793 rad
pos: 17.5,-43.5
@@ -124372,7 +124440,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19000
+ - uid: 19006
components:
- rot: 1.5707963267948966 rad
pos: 35.5,8.5
@@ -124380,7 +124448,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19001
+ - uid: 19007
components:
- rot: -1.5707963267948966 rad
pos: 26.5,10.5
@@ -124388,14 +124456,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19002
+ - uid: 19008
components:
- pos: 7.5,-25.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19003
+ - uid: 19009
components:
- rot: -1.5707963267948966 rad
pos: 0.5,13.5
@@ -124403,14 +124471,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19004
+ - uid: 19010
components:
- pos: -24.5,-57.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19005
+ - uid: 19011
components:
- rot: -1.5707963267948966 rad
pos: 2.5,-1.5
@@ -124418,7 +124486,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19006
+ - uid: 19012
components:
- rot: 1.5707963267948966 rad
pos: 2.5,0.5
@@ -124426,7 +124494,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19007
+ - uid: 19013
components:
- rot: 1.5707963267948966 rad
pos: -20.5,-33.5
@@ -124434,7 +124502,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19008
+ - uid: 19014
components:
- rot: 1.5707963267948966 rad
pos: 15.5,-29.5
@@ -124442,7 +124510,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19009
+ - uid: 19015
components:
- rot: 3.141592653589793 rad
pos: -11.5,-41.5
@@ -124450,7 +124518,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19010
+ - uid: 19016
components:
- rot: -1.5707963267948966 rad
pos: -14.5,-43.5
@@ -124458,7 +124526,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19011
+ - uid: 19017
components:
- rot: 3.141592653589793 rad
pos: -17.5,-60.5
@@ -124466,7 +124534,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19012
+ - uid: 19018
components:
- rot: 3.141592653589793 rad
pos: -9.5,-42.5
@@ -124474,21 +124542,21 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19013
+ - uid: 19019
components:
- pos: -0.5,-41.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19014
+ - uid: 19020
components:
- pos: -8.5,-42.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19015
+ - uid: 19021
components:
- rot: -1.5707963267948966 rad
pos: -7.5,-60.5
@@ -124496,7 +124564,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19016
+ - uid: 19022
components:
- rot: -1.5707963267948966 rad
pos: -3.5,-59.5
@@ -124504,7 +124572,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19017
+ - uid: 19023
components:
- rot: 1.5707963267948966 rad
pos: 35.5,5.5
@@ -124512,7 +124580,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19018
+ - uid: 19024
components:
- rot: 3.141592653589793 rad
pos: 28.5,9.5
@@ -124520,7 +124588,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19019
+ - uid: 19025
components:
- rot: -1.5707963267948966 rad
pos: 17.5,-0.5
@@ -124528,14 +124596,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19020
+ - uid: 19026
components:
- pos: 41.5,14.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19021
+ - uid: 19027
components:
- rot: 3.141592653589793 rad
pos: 33.5,1.5
@@ -124543,7 +124611,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19022
+ - uid: 19028
components:
- rot: 1.5707963267948966 rad
pos: 23.5,17.5
@@ -124551,7 +124619,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19023
+ - uid: 19029
components:
- rot: 1.5707963267948966 rad
pos: 7.5,16.5
@@ -124559,14 +124627,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19024
+ - uid: 19030
components:
- pos: 44.5,-27.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19025
+ - uid: 19031
components:
- rot: 3.141592653589793 rad
pos: -3.5,-42.5
@@ -124574,7 +124642,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19026
+ - uid: 19032
components:
- rot: 3.141592653589793 rad
pos: 12.5,-27.5
@@ -124582,14 +124650,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19027
+ - uid: 19033
components:
- pos: -7.5,-25.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19028
+ - uid: 19034
components:
- rot: 3.141592653589793 rad
pos: 33.5,-16.5
@@ -124597,7 +124665,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19029
+ - uid: 19035
components:
- rot: 1.5707963267948966 rad
pos: -18.5,-25.5
@@ -124605,7 +124673,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19030
+ - uid: 19036
components:
- rot: 3.141592653589793 rad
pos: -8.5,1.5
@@ -124613,7 +124681,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19031
+ - uid: 19037
components:
- rot: 3.141592653589793 rad
pos: 17.5,13.5
@@ -124621,14 +124689,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19032
+ - uid: 19038
components:
- pos: 28.5,12.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19033
+ - uid: 19039
components:
- rot: -1.5707963267948966 rad
pos: 38.5,8.5
@@ -124636,7 +124704,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19034
+ - uid: 19040
components:
- rot: -1.5707963267948966 rad
pos: 38.5,5.5
@@ -124644,7 +124712,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19035
+ - uid: 19041
components:
- rot: -1.5707963267948966 rad
pos: 38.5,11.5
@@ -124652,14 +124720,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19036
+ - uid: 19042
components:
- pos: 34.5,12.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19037
+ - uid: 19043
components:
- rot: 3.141592653589793 rad
pos: -8.5,-27.5
@@ -124667,7 +124735,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19038
+ - uid: 19044
components:
- rot: -1.5707963267948966 rad
pos: -8.5,2.5
@@ -124675,7 +124743,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19039
+ - uid: 19045
components:
- rot: 3.141592653589793 rad
pos: 2.5,-27.5
@@ -124683,7 +124751,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19040
+ - uid: 19046
components:
- rot: 3.141592653589793 rad
pos: 12.5,16.5
@@ -124691,7 +124759,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19041
+ - uid: 19047
components:
- rot: 3.141592653589793 rad
pos: -5.5,-41.5
@@ -124699,14 +124767,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19042
+ - uid: 19048
components:
- pos: 3.5,-42.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19043
+ - uid: 19049
components:
- rot: 3.141592653589793 rad
pos: 8.5,-0.5
@@ -124714,7 +124782,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19044
+ - uid: 19050
components:
- rot: 3.141592653589793 rad
pos: 16.5,16.5
@@ -124722,7 +124790,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19045
+ - uid: 19051
components:
- rot: 3.141592653589793 rad
pos: 25.5,7.5
@@ -124730,7 +124798,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19046
+ - uid: 19052
components:
- rot: 3.141592653589793 rad
pos: 28.5,17.5
@@ -124738,7 +124806,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19047
+ - uid: 19053
components:
- rot: 1.5707963267948966 rad
pos: 20.5,10.5
@@ -124746,14 +124814,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19048
+ - uid: 19054
components:
- pos: 4.5,17.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19049
+ - uid: 19055
components:
- rot: -1.5707963267948966 rad
pos: 9.5,1.5
@@ -124761,7 +124829,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19050
+ - uid: 19056
components:
- rot: 1.5707963267948966 rad
pos: 19.5,18.5
@@ -124769,7 +124837,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19051
+ - uid: 19057
components:
- rot: -1.5707963267948966 rad
pos: 30.5,18.5
@@ -124777,14 +124845,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19052
+ - uid: 19058
components:
- pos: 21.5,-5.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19053
+ - uid: 19059
components:
- rot: -1.5707963267948966 rad
pos: 26.5,-12.5
@@ -124792,7 +124860,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19054
+ - uid: 19060
components:
- rot: 1.5707963267948966 rad
pos: 26.5,-24.5
@@ -124800,7 +124868,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19055
+ - uid: 19061
components:
- rot: -1.5707963267948966 rad
pos: 21.5,-17.5
@@ -124808,14 +124876,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19056
+ - uid: 19062
components:
- pos: 20.5,-17.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19057
+ - uid: 19063
components:
- rot: 3.141592653589793 rad
pos: 23.5,-29.5
@@ -124823,7 +124891,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19058
+ - uid: 19064
components:
- rot: 1.5707963267948966 rad
pos: -8.5,-22.5
@@ -124831,21 +124899,21 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19059
+ - uid: 19065
components:
- pos: -10.5,1.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19060
+ - uid: 19066
components:
- pos: -2.5,-61.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19061
+ - uid: 19067
components:
- rot: 3.141592653589793 rad
pos: -9.5,-61.5
@@ -124853,21 +124921,21 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19062
+ - uid: 19068
components:
- pos: -15.5,-61.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19063
+ - uid: 19069
components:
- pos: -0.5,-60.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19064
+ - uid: 19070
components:
- rot: 3.141592653589793 rad
pos: -1.5,-60.5
@@ -124875,14 +124943,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19065
+ - uid: 19071
components:
- pos: -12.5,-60.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19066
+ - uid: 19072
components:
- rot: 3.141592653589793 rad
pos: 3.5,-61.5
@@ -124890,14 +124958,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19067
+ - uid: 19073
components:
- pos: 5.5,-41.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19068
+ - uid: 19074
components:
- rot: 1.5707963267948966 rad
pos: -8.5,-46.5
@@ -124905,14 +124973,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19069
+ - uid: 19075
components:
- pos: 5.5,-25.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19070
+ - uid: 19076
components:
- rot: 3.141592653589793 rad
pos: -11.5,-27.5
@@ -124920,21 +124988,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19071
+ - uid: 19077
components:
- pos: 24.5,-43.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19072
+ - uid: 19078
components:
- pos: 20.5,-43.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19073
+ - uid: 19079
components:
- rot: 3.141592653589793 rad
pos: 31.5,9.5
@@ -124942,7 +125010,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19074
+ - uid: 19080
components:
- rot: -1.5707963267948966 rad
pos: -23.5,-78.5
@@ -124950,7 +125018,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19075
+ - uid: 19081
components:
- rot: -1.5707963267948966 rad
pos: -23.5,-80.5
@@ -124958,7 +125026,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19076
+ - uid: 19082
components:
- rot: 3.141592653589793 rad
pos: 34.5,9.5
@@ -124966,7 +125034,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19077
+ - uid: 19083
components:
- rot: -1.5707963267948966 rad
pos: 1.5,6.5
@@ -124974,7 +125042,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19078
+ - uid: 19084
components:
- rot: 1.5707963267948966 rad
pos: 2.5,1.5
@@ -124982,14 +125050,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19079
+ - uid: 19085
components:
- pos: 10.5,-0.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19080
+ - uid: 19086
components:
- rot: 1.5707963267948966 rad
pos: -9.5,-39.5
@@ -124997,14 +125065,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19081
+ - uid: 19087
components:
- pos: 0.5,17.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19082
+ - uid: 19088
components:
- rot: 3.141592653589793 rad
pos: -7.5,8.5
@@ -125012,7 +125080,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19083
+ - uid: 19089
components:
- rot: -1.5707963267948966 rad
pos: -20.5,-84.5
@@ -125020,7 +125088,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19084
+ - uid: 19090
components:
- rot: 3.141592653589793 rad
pos: 15.5,-43.5
@@ -125028,7 +125096,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19085
+ - uid: 19091
components:
- rot: 1.5707963267948966 rad
pos: 14.5,-32.5
@@ -125036,7 +125104,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19086
+ - uid: 19092
components:
- rot: 3.141592653589793 rad
pos: 21.5,-30.5
@@ -125044,7 +125112,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19087
+ - uid: 19093
components:
- rot: 1.5707963267948966 rad
pos: 15.5,-23.5
@@ -125052,7 +125120,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19088
+ - uid: 19094
components:
- rot: 1.5707963267948966 rad
pos: 14.5,-30.5
@@ -125060,14 +125128,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19089
+ - uid: 19095
components:
- pos: 22.5,-30.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19090
+ - uid: 19096
components:
- rot: 3.141592653589793 rad
pos: -8.5,-25.5
@@ -125075,7 +125143,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19091
+ - uid: 19097
components:
- rot: -1.5707963267948966 rad
pos: 15.5,-25.5
@@ -125083,7 +125151,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19092
+ - uid: 19098
components:
- rot: -1.5707963267948966 rad
pos: 15.5,-22.5
@@ -125091,7 +125159,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19093
+ - uid: 19099
components:
- rot: -1.5707963267948966 rad
pos: -0.5,-46.5
@@ -125099,14 +125167,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19094
+ - uid: 19100
components:
- pos: 0.5,11.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19095
+ - uid: 19101
components:
- rot: -1.5707963267948966 rad
pos: -3.5,-11.5
@@ -125114,7 +125182,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19096
+ - uid: 19102
components:
- rot: 1.5707963267948966 rad
pos: -5.5,-10.5
@@ -125122,7 +125190,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19097
+ - uid: 19103
components:
- rot: -1.5707963267948966 rad
pos: 36.5,-31.5
@@ -125130,14 +125198,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19098
+ - uid: 19104
components:
- pos: -5.5,7.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19099
+ - uid: 19105
components:
- rot: 1.5707963267948966 rad
pos: -4.5,13.5
@@ -125145,7 +125213,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19100
+ - uid: 19106
components:
- rot: -1.5707963267948966 rad
pos: -3.5,-12.5
@@ -125153,14 +125221,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19101
+ - uid: 19107
components:
- pos: -20.5,-88.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19102
+ - uid: 19108
components:
- rot: -1.5707963267948966 rad
pos: 10.5,3.5
@@ -125168,7 +125236,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19103
+ - uid: 19109
components:
- rot: 1.5707963267948966 rad
pos: -11.5,-22.5
@@ -125176,7 +125244,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19104
+ - uid: 19110
components:
- rot: 3.141592653589793 rad
pos: 44.5,-24.5
@@ -125184,7 +125252,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19105
+ - uid: 19111
components:
- rot: 1.5707963267948966 rad
pos: 34.5,3.5
@@ -125192,7 +125260,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19106
+ - uid: 19112
components:
- rot: 3.141592653589793 rad
pos: -19.5,-61.5
@@ -125200,14 +125268,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19107
+ - uid: 19113
components:
- pos: -5.5,1.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19108
+ - uid: 19114
components:
- rot: 3.141592653589793 rad
pos: -8.5,-1.5
@@ -125215,7 +125283,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19109
+ - uid: 19115
components:
- rot: -1.5707963267948966 rad
pos: -11.5,-39.5
@@ -125223,7 +125291,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19110
+ - uid: 19116
components:
- rot: 3.141592653589793 rad
pos: 5.5,17.5
@@ -125231,7 +125299,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19111
+ - uid: 19117
components:
- rot: 3.141592653589793 rad
pos: -2.5,-53.5
@@ -125239,7 +125307,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19112
+ - uid: 19118
components:
- rot: -1.5707963267948966 rad
pos: 21.5,-14.5
@@ -125247,7 +125315,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19113
+ - uid: 19119
components:
- rot: 3.141592653589793 rad
pos: 31.5,-18.5
@@ -125255,7 +125323,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19114
+ - uid: 19120
components:
- rot: -1.5707963267948966 rad
pos: -18.5,-64.5
@@ -125263,7 +125331,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19115
+ - uid: 19121
components:
- rot: 1.5707963267948966 rad
pos: 21.5,-16.5
@@ -125271,7 +125339,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19116
+ - uid: 19122
components:
- rot: -1.5707963267948966 rad
pos: 20.5,-41.5
@@ -125279,7 +125347,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19117
+ - uid: 19123
components:
- rot: -1.5707963267948966 rad
pos: 10.5,8.5
@@ -125287,7 +125355,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19118
+ - uid: 19124
components:
- rot: -1.5707963267948966 rad
pos: 11.5,11.5
@@ -125295,35 +125363,35 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19119
+ - uid: 19125
components:
- pos: -22.5,-89.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19120
+ - uid: 19126
components:
- pos: 26.5,-42.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19121
+ - uid: 19127
components:
- - pos: 10.5,-41.5
+ - pos: 6.5,-46.5
parent: 2
type: Transform
- - color: '#0055CCFF'
+ - color: '#990000FF'
type: AtmosPipeColor
- - uid: 19122
+ - uid: 19128
components:
- - pos: 9.5,-42.5
+ - pos: 6.5,-47.5
parent: 2
type: Transform
- - color: '#990000FF'
+ - color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19123
+ - uid: 19129
components:
- rot: 3.141592653589793 rad
pos: 14.5,-41.5
@@ -125331,14 +125399,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19124
+ - uid: 19130
components:
- pos: 5.5,16.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19125
+ - uid: 19131
components:
- rot: 1.5707963267948966 rad
pos: -24.5,-88.5
@@ -125346,7 +125414,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19126
+ - uid: 19132
components:
- rot: -1.5707963267948966 rad
pos: 24.5,-24.5
@@ -125354,35 +125422,35 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19127
+ - uid: 19133
components:
- pos: 7.5,19.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19128
+ - uid: 19134
components:
- pos: -3.5,-1.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19129
+ - uid: 19135
components:
- pos: -19.5,-57.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19130
+ - uid: 19136
components:
- pos: 41.5,-26.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19131
+ - uid: 19137
components:
- rot: 3.141592653589793 rad
pos: 41.5,-25.5
@@ -125390,7 +125458,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19132
+ - uid: 19138
components:
- rot: 1.5707963267948966 rad
pos: 36.5,-25.5
@@ -125398,7 +125466,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19133
+ - uid: 19139
components:
- rot: 1.5707963267948966 rad
pos: 34.5,-26.5
@@ -125406,14 +125474,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19134
+ - uid: 19140
components:
- pos: -27.5,-77.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19135
+ - uid: 19141
components:
- rot: 3.141592653589793 rad
pos: -25.5,-77.5
@@ -125421,7 +125489,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19136
+ - uid: 19142
components:
- rot: -1.5707963267948966 rad
pos: -23.5,-85.5
@@ -125429,7 +125497,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19137
+ - uid: 19143
components:
- rot: 1.5707963267948966 rad
pos: -18.5,-72.5
@@ -125437,7 +125505,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19138
+ - uid: 19144
components:
- rot: -1.5707963267948966 rad
pos: -18.5,-73.5
@@ -125445,7 +125513,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19139
+ - uid: 19145
components:
- rot: -1.5707963267948966 rad
pos: -20.5,-72.5
@@ -125453,7 +125521,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19140
+ - uid: 19146
components:
- rot: -1.5707963267948966 rad
pos: -20.5,-69.5
@@ -125461,7 +125529,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19141
+ - uid: 19147
components:
- rot: 1.5707963267948966 rad
pos: -20.5,-75.5
@@ -125469,7 +125537,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19142
+ - uid: 19148
components:
- rot: 1.5707963267948966 rad
pos: -20.5,-70.5
@@ -125477,7 +125545,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19143
+ - uid: 19149
components:
- rot: -1.5707963267948966 rad
pos: -18.5,-71.5
@@ -125485,7 +125553,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19144
+ - uid: 19150
components:
- rot: -1.5707963267948966 rad
pos: -21.5,-89.5
@@ -125493,7 +125561,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19145
+ - uid: 19151
components:
- rot: -1.5707963267948966 rad
pos: -18.5,-67.5
@@ -125501,7 +125569,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19146
+ - uid: 19152
components:
- rot: 1.5707963267948966 rad
pos: -20.5,-66.5
@@ -125509,7 +125577,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19147
+ - uid: 19153
components:
- rot: 1.5707963267948966 rad
pos: -20.5,-63.5
@@ -125517,14 +125585,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19148
+ - uid: 19154
components:
- pos: -18.5,-60.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19149
+ - uid: 19155
components:
- rot: 1.5707963267948966 rad
pos: 34.5,-23.5
@@ -125532,7 +125600,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19150
+ - uid: 19156
components:
- rot: 3.141592653589793 rad
pos: 36.5,-43.5
@@ -125540,7 +125608,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19151
+ - uid: 19157
components:
- rot: 3.141592653589793 rad
pos: 34.5,-41.5
@@ -125548,14 +125616,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19152
+ - uid: 19158
components:
- pos: 33.5,-41.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19153
+ - uid: 19159
components:
- rot: 3.141592653589793 rad
pos: 10.5,17.5
@@ -125563,7 +125631,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19154
+ - uid: 19160
components:
- rot: 3.141592653589793 rad
pos: 11.5,16.5
@@ -125571,7 +125639,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19155
+ - uid: 19161
components:
- rot: -1.5707963267948966 rad
pos: -9.5,-37.5
@@ -125579,7 +125647,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19156
+ - uid: 19162
components:
- rot: 1.5707963267948966 rad
pos: -3.5,-14.5
@@ -125587,14 +125655,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19157
+ - uid: 19163
components:
- pos: 21.5,-42.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19158
+ - uid: 19164
components:
- rot: 3.141592653589793 rad
pos: 56.5,21.5
@@ -125602,14 +125670,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19159
+ - uid: 19165
components:
- pos: 40.5,10.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19160
+ - uid: 19166
components:
- rot: 1.5707963267948966 rad
pos: 28.5,22.5
@@ -125617,7 +125685,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19161
+ - uid: 19167
components:
- rot: -1.5707963267948966 rad
pos: 30.5,19.5
@@ -125625,21 +125693,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19162
+ - uid: 19168
components:
- pos: 42.5,15.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19163
+ - uid: 19169
components:
- pos: 44.5,15.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19164
+ - uid: 19170
components:
- rot: 3.141592653589793 rad
pos: 45.5,14.5
@@ -125647,14 +125715,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19165
+ - uid: 19171
components:
- pos: 47.5,14.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19166
+ - uid: 19172
components:
- rot: 3.141592653589793 rad
pos: 47.5,15.5
@@ -125662,7 +125730,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19167
+ - uid: 19173
components:
- rot: -1.5707963267948966 rad
pos: 49.5,15.5
@@ -125670,7 +125738,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19168
+ - uid: 19174
components:
- rot: -1.5707963267948966 rad
pos: 50.5,14.5
@@ -125678,7 +125746,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19169
+ - uid: 19175
components:
- rot: -1.5707963267948966 rad
pos: 50.5,19.5
@@ -125686,7 +125754,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19170
+ - uid: 19176
components:
- rot: 3.141592653589793 rad
pos: 46.5,20.5
@@ -125694,7 +125762,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19171
+ - uid: 19177
components:
- rot: 3.141592653589793 rad
pos: 53.5,21.5
@@ -125702,7 +125770,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19172
+ - uid: 19178
components:
- rot: -1.5707963267948966 rad
pos: 58.5,20.5
@@ -125710,7 +125778,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19173
+ - uid: 19179
components:
- rot: 3.141592653589793 rad
pos: 55.5,20.5
@@ -125718,7 +125786,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19174
+ - uid: 19180
components:
- rot: 3.141592653589793 rad
pos: 52.5,20.5
@@ -125726,7 +125794,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19175
+ - uid: 19181
components:
- rot: -1.5707963267948966 rad
pos: 59.5,21.5
@@ -125734,7 +125802,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19176
+ - uid: 19182
components:
- rot: 1.5707963267948966 rad
pos: 59.5,18.5
@@ -125742,7 +125810,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19177
+ - uid: 19183
components:
- rot: 1.5707963267948966 rad
pos: 59.5,15.5
@@ -125750,7 +125818,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19178
+ - uid: 19184
components:
- rot: 1.5707963267948966 rad
pos: 58.5,16.5
@@ -125758,7 +125826,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19179
+ - uid: 19185
components:
- rot: 1.5707963267948966 rad
pos: 58.5,19.5
@@ -125766,14 +125834,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19180
+ - uid: 19186
components:
- pos: 40.5,20.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19181
+ - uid: 19187
components:
- rot: 3.141592653589793 rad
pos: 45.5,20.5
@@ -125781,7 +125849,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19182
+ - uid: 19188
components:
- rot: 3.141592653589793 rad
pos: 39.5,19.5
@@ -125789,7 +125857,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19183
+ - uid: 19189
components:
- rot: 3.141592653589793 rad
pos: 40.5,0.5
@@ -125797,14 +125865,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19184
+ - uid: 19190
components:
- pos: 44.5,0.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19185
+ - uid: 19191
components:
- rot: 3.141592653589793 rad
pos: 45.5,0.5
@@ -125812,21 +125880,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19186
+ - uid: 19192
components:
- pos: 53.5,0.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19187
+ - uid: 19193
components:
- pos: 52.5,1.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19188
+ - uid: 19194
components:
- rot: 1.5707963267948966 rad
pos: 53.5,-5.5
@@ -125834,7 +125902,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19189
+ - uid: 19195
components:
- rot: -1.5707963267948966 rad
pos: 42.5,-1.5
@@ -125842,7 +125910,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19190
+ - uid: 19196
components:
- rot: 3.141592653589793 rad
pos: 42.5,-2.5
@@ -125850,7 +125918,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19191
+ - uid: 19197
components:
- rot: -1.5707963267948966 rad
pos: 41.5,10.5
@@ -125858,7 +125926,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19192
+ - uid: 19198
components:
- rot: -1.5707963267948966 rad
pos: 42.5,9.5
@@ -125866,7 +125934,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19193
+ - uid: 19199
components:
- rot: -1.5707963267948966 rad
pos: 26.5,-53.5
@@ -125874,7 +125942,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19194
+ - uid: 19200
components:
- rot: -1.5707963267948966 rad
pos: 26.5,-56.5
@@ -125882,7 +125950,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19195
+ - uid: 19201
components:
- rot: 3.141592653589793 rad
pos: 61.5,-6.5
@@ -125890,7 +125958,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19196
+ - uid: 19202
components:
- rot: -1.5707963267948966 rad
pos: 63.5,-11.5
@@ -125898,7 +125966,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19197
+ - uid: 19203
components:
- rot: -1.5707963267948966 rad
pos: 62.5,-39.5
@@ -125906,7 +125974,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19198
+ - uid: 19204
components:
- rot: 3.141592653589793 rad
pos: 42.5,-41.5
@@ -125914,7 +125982,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19199
+ - uid: 19205
components:
- rot: 3.141592653589793 rad
pos: 43.5,-43.5
@@ -125922,7 +125990,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19200
+ - uid: 19206
components:
- rot: 3.141592653589793 rad
pos: 45.5,-43.5
@@ -125930,28 +125998,28 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19201
+ - uid: 19207
components:
- pos: 44.5,-41.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19202
+ - uid: 19208
components:
- pos: 49.5,-41.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19203
+ - uid: 19209
components:
- pos: 49.5,-43.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19204
+ - uid: 19210
components:
- rot: 3.141592653589793 rad
pos: 49.5,-45.5
@@ -125959,21 +126027,21 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19205
+ - uid: 19211
components:
- pos: 50.5,-41.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19206
+ - uid: 19212
components:
- pos: 56.5,-41.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19207
+ - uid: 19213
components:
- rot: 3.141592653589793 rad
pos: 56.5,-45.5
@@ -125981,7 +126049,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19208
+ - uid: 19214
components:
- rot: 3.141592653589793 rad
pos: 55.5,-45.5
@@ -125989,7 +126057,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19209
+ - uid: 19215
components:
- rot: -1.5707963267948966 rad
pos: 50.5,-46.5
@@ -125997,7 +126065,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19210
+ - uid: 19216
components:
- rot: 1.5707963267948966 rad
pos: 49.5,-54.5
@@ -126005,7 +126073,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19211
+ - uid: 19217
components:
- rot: 1.5707963267948966 rad
pos: 57.5,-44.5
@@ -126013,7 +126081,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19212
+ - uid: 19218
components:
- rot: -1.5707963267948966 rad
pos: 63.5,-45.5
@@ -126021,7 +126089,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19213
+ - uid: 19219
components:
- rot: -1.5707963267948966 rad
pos: 61.5,-44.5
@@ -126029,7 +126097,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19214
+ - uid: 19220
components:
- rot: 1.5707963267948966 rad
pos: 63.5,-46.5
@@ -126037,7 +126105,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19215
+ - uid: 19221
components:
- rot: -1.5707963267948966 rad
pos: 61.5,-46.5
@@ -126045,7 +126113,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19216
+ - uid: 19222
components:
- rot: 1.5707963267948966 rad
pos: 60.5,-33.5
@@ -126053,14 +126121,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19217
+ - uid: 19223
components:
- pos: 60.5,-32.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19218
+ - uid: 19224
components:
- rot: -1.5707963267948966 rad
pos: 63.5,-26.5
@@ -126068,7 +126136,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19219
+ - uid: 19225
components:
- rot: 1.5707963267948966 rad
pos: 61.5,-24.5
@@ -126076,14 +126144,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19220
+ - uid: 19226
components:
- pos: 55.5,-11.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19221
+ - uid: 19227
components:
- rot: 1.5707963267948966 rad
pos: 60.5,-48.5
@@ -126091,7 +126159,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19222
+ - uid: 19228
components:
- rot: 1.5707963267948966 rad
pos: 64.5,-47.5
@@ -126099,7 +126167,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19223
+ - uid: 19229
components:
- rot: 1.5707963267948966 rad
pos: 50.5,-52.5
@@ -126107,7 +126175,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19224
+ - uid: 19230
components:
- rot: 3.141592653589793 rad
pos: 29.5,-58.5
@@ -126115,7 +126183,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19225
+ - uid: 19231
components:
- rot: 3.141592653589793 rad
pos: 32.5,-60.5
@@ -126123,7 +126191,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19226
+ - uid: 19232
components:
- rot: 1.5707963267948966 rad
pos: 29.5,-56.5
@@ -126131,7 +126199,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19227
+ - uid: 19233
components:
- rot: 1.5707963267948966 rad
pos: 29.5,-52.5
@@ -126139,7 +126207,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19228
+ - uid: 19234
components:
- rot: 1.5707963267948966 rad
pos: 32.5,-56.5
@@ -126147,7 +126215,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19229
+ - uid: 19235
components:
- rot: -1.5707963267948966 rad
pos: 34.5,-48.5
@@ -126155,14 +126223,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19230
+ - uid: 19236
components:
- pos: 32.5,-52.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19231
+ - uid: 19237
components:
- rot: -1.5707963267948966 rad
pos: 34.5,-49.5
@@ -126170,19 +126238,19 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19232
+ - uid: 19238
components:
- rot: -1.5707963267948966 rad
pos: 51.5,-58.5
parent: 2
type: Transform
- - uid: 19233
+ - uid: 19239
components:
- rot: -1.5707963267948966 rad
pos: 48.5,-58.5
parent: 2
type: Transform
- - uid: 19234
+ - uid: 19240
components:
- rot: 1.5707963267948966 rad
pos: 49.5,-61.5
@@ -126190,14 +126258,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19235
+ - uid: 19241
components:
- pos: -19.5,7.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19236
+ - uid: 19242
components:
- rot: 3.141592653589793 rad
pos: -13.5,1.5
@@ -126205,7 +126273,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19237
+ - uid: 19243
components:
- rot: 3.141592653589793 rad
pos: -14.5,1.5
@@ -126213,14 +126281,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19238
+ - uid: 19244
components:
- pos: -13.5,7.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19239
+ - uid: 19245
components:
- rot: 1.5707963267948966 rad
pos: -20.5,-27.5
@@ -126228,7 +126296,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19240
+ - uid: 19246
components:
- rot: -1.5707963267948966 rad
pos: -18.5,-19.5
@@ -126236,7 +126304,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19241
+ - uid: 19247
components:
- rot: -1.5707963267948966 rad
pos: -20.5,-22.5
@@ -126244,7 +126312,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19242
+ - uid: 19248
components:
- rot: -1.5707963267948966 rad
pos: -18.5,-21.5
@@ -126252,7 +126320,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19243
+ - uid: 19249
components:
- rot: 1.5707963267948966 rad
pos: -20.5,-14.5
@@ -126260,7 +126328,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19244
+ - uid: 19250
components:
- rot: -1.5707963267948966 rad
pos: -20.5,-13.5
@@ -126268,7 +126336,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19245
+ - uid: 19251
components:
- rot: -1.5707963267948966 rad
pos: -18.5,-10.5
@@ -126276,14 +126344,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19246
+ - uid: 19252
components:
- pos: -23.5,-10.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19247
+ - uid: 19253
components:
- rot: 3.141592653589793 rad
pos: -24.5,-10.5
@@ -126291,21 +126359,21 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19248
+ - uid: 19254
components:
- pos: -24.5,-13.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19249
+ - uid: 19255
components:
- pos: -28.5,-10.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19250
+ - uid: 19256
components:
- rot: 3.141592653589793 rad
pos: -28.5,-13.5
@@ -126313,14 +126381,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19251
+ - uid: 19257
components:
- pos: -25.5,-13.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19252
+ - uid: 19258
components:
- rot: 3.141592653589793 rad
pos: -28.5,-17.5
@@ -126328,7 +126396,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19253
+ - uid: 19259
components:
- rot: 1.5707963267948966 rad
pos: -18.5,-42.5
@@ -126336,7 +126404,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19254
+ - uid: 19260
components:
- rot: -1.5707963267948966 rad
pos: 38.5,-58.5
@@ -126344,7 +126412,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19255
+ - uid: 19261
components:
- rot: -1.5707963267948966 rad
pos: 40.5,-60.5
@@ -126352,7 +126420,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19256
+ - uid: 19262
components:
- rot: 1.5707963267948966 rad
pos: 38.5,-63.5
@@ -126360,7 +126428,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19257
+ - uid: 19263
components:
- rot: -1.5707963267948966 rad
pos: 40.5,-65.5
@@ -126368,7 +126436,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19258
+ - uid: 19264
components:
- rot: 3.141592653589793 rad
pos: -18.5,6.5
@@ -126376,7 +126444,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19259
+ - uid: 19265
components:
- rot: 3.141592653589793 rad
pos: -20.5,7.5
@@ -126384,7 +126452,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19260
+ - uid: 19266
components:
- rot: 1.5707963267948966 rad
pos: -31.5,-13.5
@@ -126392,7 +126460,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19261
+ - uid: 19267
components:
- rot: -1.5707963267948966 rad
pos: -18.5,-31.5
@@ -126400,7 +126468,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19262
+ - uid: 19268
components:
- rot: 1.5707963267948966 rad
pos: -20.5,-41.5
@@ -126408,7 +126476,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19263
+ - uid: 19269
components:
- rot: 1.5707963267948966 rad
pos: -18.5,-43.5
@@ -126416,7 +126484,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19264
+ - uid: 19270
components:
- rot: 1.5707963267948966 rad
pos: -20.5,-43.5
@@ -126424,14 +126492,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19265
+ - uid: 19271
components:
- pos: 48.5,-73.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19266
+ - uid: 19272
components:
- rot: 1.5707963267948966 rad
pos: 40.5,-71.5
@@ -126439,7 +126507,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19267
+ - uid: 19273
components:
- rot: -1.5707963267948966 rad
pos: 38.5,-71.5
@@ -126447,7 +126515,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19268
+ - uid: 19274
components:
- rot: -1.5707963267948966 rad
pos: 29.5,-83.5
@@ -126455,21 +126523,21 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19269
+ - uid: 19275
components:
- pos: 47.5,-72.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19270
+ - uid: 19276
components:
- pos: -29.5,-16.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19271
+ - uid: 19277
components:
- rot: 1.5707963267948966 rad
pos: -32.5,-16.5
@@ -126477,7 +126545,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19272
+ - uid: 19278
components:
- rot: 1.5707963267948966 rad
pos: -31.5,-17.5
@@ -126485,7 +126553,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19273
+ - uid: 19279
components:
- rot: -1.5707963267948966 rad
pos: -32.5,-17.5
@@ -126493,7 +126561,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19274
+ - uid: 19280
components:
- rot: -1.5707963267948966 rad
pos: -31.5,-15.5
@@ -126501,7 +126569,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19275
+ - uid: 19281
components:
- rot: 1.5707963267948966 rad
pos: -32.5,-25.5
@@ -126509,7 +126577,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19276
+ - uid: 19282
components:
- rot: -1.5707963267948966 rad
pos: -31.5,-27.5
@@ -126517,7 +126585,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19277
+ - uid: 19283
components:
- rot: 3.141592653589793 rad
pos: -35.5,-10.5
@@ -126525,14 +126593,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19278
+ - uid: 19284
components:
- pos: -36.5,-11.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19279
+ - uid: 19285
components:
- rot: 1.5707963267948966 rad
pos: 42.5,6.5
@@ -126540,7 +126608,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19280
+ - uid: 19286
components:
- rot: -1.5707963267948966 rad
pos: -24.5,-2.5
@@ -126548,7 +126616,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19281
+ - uid: 19287
components:
- rot: -1.5707963267948966 rad
pos: -24.5,0.5
@@ -126556,7 +126624,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19282
+ - uid: 19288
components:
- rot: -1.5707963267948966 rad
pos: -26.5,1.5
@@ -126564,7 +126632,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19283
+ - uid: 19289
components:
- rot: -1.5707963267948966 rad
pos: -18.5,12.5
@@ -126572,7 +126640,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19284
+ - uid: 19290
components:
- rot: 3.141592653589793 rad
pos: -52.5,-17.5
@@ -126580,21 +126648,21 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19285
+ - uid: 19291
components:
- pos: -32.5,-10.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19286
+ - uid: 19292
components:
- pos: -46.5,-5.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19287
+ - uid: 19293
components:
- rot: 3.141592653589793 rad
pos: -47.5,-6.5
@@ -126602,7 +126670,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19288
+ - uid: 19294
components:
- rot: -1.5707963267948966 rad
pos: -53.5,-13.5
@@ -126610,7 +126678,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19289
+ - uid: 19295
components:
- rot: -1.5707963267948966 rad
pos: -52.5,-16.5
@@ -126618,7 +126686,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19290
+ - uid: 19296
components:
- rot: 1.5707963267948966 rad
pos: -53.5,-19.5
@@ -126626,7 +126694,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19291
+ - uid: 19297
components:
- rot: 3.141592653589793 rad
pos: -59.5,-25.5
@@ -126634,21 +126702,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19292
+ - uid: 19298
components:
- pos: -56.5,-23.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19293
+ - uid: 19299
components:
- pos: -68.5,-23.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19294
+ - uid: 19300
components:
- rot: 1.5707963267948966 rad
pos: -68.5,-27.5
@@ -126656,14 +126724,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19295
+ - uid: 19301
components:
- pos: -64.5,-25.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19296
+ - uid: 19302
components:
- rot: -1.5707963267948966 rad
pos: -64.5,-27.5
@@ -126671,19 +126739,19 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19297
+ - uid: 19303
components:
- rot: 3.141592653589793 rad
pos: -43.5,-55.5
parent: 2
type: Transform
- - uid: 19298
+ - uid: 19304
components:
- rot: -1.5707963267948966 rad
pos: -42.5,-53.5
parent: 2
type: Transform
- - uid: 19299
+ - uid: 19305
components:
- rot: 3.141592653589793 rad
pos: -40.5,-55.5
@@ -126691,7 +126759,7 @@ entities:
type: Transform
- color: '#03FCD3FF'
type: AtmosPipeColor
- - uid: 19300
+ - uid: 19306
components:
- rot: 1.5707963267948966 rad
pos: -44.5,-41.5
@@ -126699,13 +126767,13 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19301
+ - uid: 19307
components:
- rot: -1.5707963267948966 rad
pos: -42.5,-41.5
parent: 2
type: Transform
- - uid: 19302
+ - uid: 19308
components:
- rot: 3.141592653589793 rad
pos: -37.5,-57.5
@@ -126713,7 +126781,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19303
+ - uid: 19309
components:
- rot: -1.5707963267948966 rad
pos: -37.5,-51.5
@@ -126721,7 +126789,7 @@ entities:
type: Transform
- color: '#947507FF'
type: AtmosPipeColor
- - uid: 19304
+ - uid: 19310
components:
- rot: 1.5707963267948966 rad
pos: -40.5,-51.5
@@ -126729,7 +126797,7 @@ entities:
type: Transform
- color: '#947507FF'
type: AtmosPipeColor
- - uid: 19305
+ - uid: 19311
components:
- rot: 1.5707963267948966 rad
pos: -40.5,-50.5
@@ -126737,7 +126805,7 @@ entities:
type: Transform
- color: '#947507FF'
type: AtmosPipeColor
- - uid: 19306
+ - uid: 19312
components:
- rot: 1.5707963267948966 rad
pos: -40.5,-49.5
@@ -126745,7 +126813,7 @@ entities:
type: Transform
- color: '#947507FF'
type: AtmosPipeColor
- - uid: 19307
+ - uid: 19313
components:
- rot: -1.5707963267948966 rad
pos: -37.5,-49.5
@@ -126753,7 +126821,7 @@ entities:
type: Transform
- color: '#947507FF'
type: AtmosPipeColor
- - uid: 19308
+ - uid: 19314
components:
- rot: -1.5707963267948966 rad
pos: -37.5,-50.5
@@ -126761,14 +126829,14 @@ entities:
type: Transform
- color: '#947507FF'
type: AtmosPipeColor
- - uid: 19309
+ - uid: 19315
components:
- pos: -38.5,-57.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19310
+ - uid: 19316
components:
- rot: 3.141592653589793 rad
pos: -38.5,-48.5
@@ -126776,14 +126844,14 @@ entities:
type: Transform
- color: '#947507FF'
type: AtmosPipeColor
- - uid: 19311
+ - uid: 19317
components:
- pos: -33.5,-33.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19312
+ - uid: 19318
components:
- rot: 3.141592653589793 rad
pos: -30.5,-34.5
@@ -126791,7 +126859,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19313
+ - uid: 19319
components:
- rot: 1.5707963267948966 rad
pos: -32.5,-37.5
@@ -126799,7 +126867,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19314
+ - uid: 19320
components:
- rot: -1.5707963267948966 rad
pos: -31.5,-39.5
@@ -126807,7 +126875,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19315
+ - uid: 19321
components:
- rot: 3.141592653589793 rad
pos: -35.5,-55.5
@@ -126815,7 +126883,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19316
+ - uid: 19322
components:
- rot: 1.5707963267948966 rad
pos: -35.5,-53.5
@@ -126823,7 +126891,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19317
+ - uid: 19323
components:
- rot: -1.5707963267948966 rad
pos: -35.5,-44.5
@@ -126831,7 +126899,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19318
+ - uid: 19324
components:
- rot: 1.5707963267948966 rad
pos: -34.5,-43.5
@@ -126839,7 +126907,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19319
+ - uid: 19325
components:
- rot: 1.5707963267948966 rad
pos: -34.5,-45.5
@@ -126847,7 +126915,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19320
+ - uid: 19326
components:
- rot: 1.5707963267948966 rad
pos: -34.5,-44.5
@@ -126855,7 +126923,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19321
+ - uid: 19327
components:
- rot: -1.5707963267948966 rad
pos: -34.5,-42.5
@@ -126863,7 +126931,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19322
+ - uid: 19328
components:
- rot: -1.5707963267948966 rad
pos: -23.5,-60.5
@@ -126871,21 +126939,21 @@ entities:
type: Transform
- color: '#97C3FCCC'
type: AtmosPipeColor
- - uid: 19323
+ - uid: 19329
components:
- pos: -27.5,-69.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19324
+ - uid: 19330
components:
- pos: -40.5,-71.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19325
+ - uid: 19331
components:
- rot: 3.141592653589793 rad
pos: -29.5,-71.5
@@ -126893,14 +126961,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19326
+ - uid: 19332
components:
- pos: -30.5,-69.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19327
+ - uid: 19333
components:
- rot: -1.5707963267948966 rad
pos: -42.5,-71.5
@@ -126908,7 +126976,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19328
+ - uid: 19334
components:
- rot: 1.5707963267948966 rad
pos: -23.5,-58.5
@@ -126916,7 +126984,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19329
+ - uid: 19335
components:
- rot: -1.5707963267948966 rad
pos: -20.5,13.5
@@ -126924,7 +126992,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19330
+ - uid: 19336
components:
- rot: 1.5707963267948966 rad
pos: -20.5,16.5
@@ -126932,7 +127000,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19331
+ - uid: 19337
components:
- rot: -1.5707963267948966 rad
pos: -18.5,19.5
@@ -126940,7 +127008,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19332
+ - uid: 19338
components:
- rot: -1.5707963267948966 rad
pos: -20.5,20.5
@@ -126948,7 +127016,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19333
+ - uid: 19339
components:
- rot: -1.5707963267948966 rad
pos: -18.5,23.5
@@ -126956,28 +127024,28 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19334
+ - uid: 19340
components:
- pos: -24.5,23.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19335
+ - uid: 19341
components:
- pos: -23.5,20.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19336
+ - uid: 19342
components:
- pos: -28.5,23.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19337
+ - uid: 19343
components:
- rot: 3.141592653589793 rad
pos: -28.5,20.5
@@ -126985,7 +127053,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19338
+ - uid: 19344
components:
- rot: 3.141592653589793 rad
pos: -40.5,23.5
@@ -126993,7 +127061,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19339
+ - uid: 19345
components:
- rot: 3.141592653589793 rad
pos: -41.5,20.5
@@ -127001,7 +127069,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19340
+ - uid: 19346
components:
- rot: 1.5707963267948966 rad
pos: -40.5,30.5
@@ -127009,7 +127077,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19341
+ - uid: 19347
components:
- rot: 1.5707963267948966 rad
pos: -41.5,29.5
@@ -127017,7 +127085,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19342
+ - uid: 19348
components:
- rot: 3.141592653589793 rad
pos: -44.5,33.5
@@ -127025,28 +127093,28 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19343
+ - uid: 19349
components:
- pos: -49.5,33.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19344
+ - uid: 19350
components:
- pos: -28.5,1.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19345
+ - uid: 19351
components:
- pos: -29.5,0.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19346
+ - uid: 19352
components:
- rot: 3.141592653589793 rad
pos: -37.5,1.5
@@ -127054,7 +127122,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19347
+ - uid: 19353
components:
- rot: 3.141592653589793 rad
pos: -38.5,0.5
@@ -127062,7 +127130,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19348
+ - uid: 19354
components:
- rot: 1.5707963267948966 rad
pos: -38.5,3.5
@@ -127070,7 +127138,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19349
+ - uid: 19355
components:
- rot: -1.5707963267948966 rad
pos: -37.5,5.5
@@ -127078,7 +127146,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19350
+ - uid: 19356
components:
- rot: 1.5707963267948966 rad
pos: -37.5,8.5
@@ -127086,7 +127154,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19351
+ - uid: 19357
components:
- rot: -1.5707963267948966 rad
pos: -38.5,8.5
@@ -127094,21 +127162,21 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19352
+ - uid: 19358
components:
- pos: -39.5,0.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19353
+ - uid: 19359
components:
- pos: -41.5,1.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19354
+ - uid: 19360
components:
- rot: -1.5707963267948966 rad
pos: -30.5,14.5
@@ -127116,7 +127184,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19355
+ - uid: 19361
components:
- rot: -1.5707963267948966 rad
pos: -29.5,13.5
@@ -127124,7 +127192,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19356
+ - uid: 19362
components:
- rot: 1.5707963267948966 rad
pos: -47.5,0.5
@@ -127132,7 +127200,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19357
+ - uid: 19363
components:
- rot: 1.5707963267948966 rad
pos: -45.5,1.5
@@ -127140,7 +127208,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19358
+ - uid: 19364
components:
- rot: -1.5707963267948966 rad
pos: -47.5,3.5
@@ -127148,14 +127216,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19359
+ - uid: 19365
components:
- pos: -47.5,10.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19360
+ - uid: 19366
components:
- rot: 3.141592653589793 rad
pos: -46.5,10.5
@@ -127163,7 +127231,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19361
+ - uid: 19367
components:
- rot: 3.141592653589793 rad
pos: -51.5,10.5
@@ -127171,7 +127239,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19362
+ - uid: 19368
components:
- rot: 1.5707963267948966 rad
pos: -52.5,10.5
@@ -127179,7 +127247,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19363
+ - uid: 19369
components:
- rot: 1.5707963267948966 rad
pos: -45.5,6.5
@@ -127187,7 +127255,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19364
+ - uid: 19370
components:
- rot: -1.5707963267948966 rad
pos: -45.5,7.5
@@ -127195,7 +127263,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19365
+ - uid: 19371
components:
- rot: 3.141592653589793 rad
pos: -51.5,11.5
@@ -127203,7 +127271,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19366
+ - uid: 19372
components:
- rot: 1.5707963267948966 rad
pos: -20.5,25.5
@@ -127211,7 +127279,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19367
+ - uid: 19373
components:
- rot: 1.5707963267948966 rad
pos: -18.5,24.5
@@ -127219,7 +127287,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19368
+ - uid: 19374
components:
- rot: 3.141592653589793 rad
pos: -4.5,-41.5
@@ -127227,14 +127295,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19369
+ - uid: 19375
components:
- pos: -4.5,-42.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19370
+ - uid: 19376
components:
- rot: 1.5707963267948966 rad
pos: -26.5,-4.5
@@ -127242,7 +127310,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19371
+ - uid: 19377
components:
- rot: -1.5707963267948966 rad
pos: 25.5,-52.5
@@ -127250,7 +127318,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19372
+ - uid: 19378
components:
- rot: 3.141592653589793 rad
pos: 44.5,19.5
@@ -127258,7 +127326,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19373
+ - uid: 19379
components:
- rot: 1.5707963267948966 rad
pos: 54.5,43.5
@@ -127266,7 +127334,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19374
+ - uid: 19380
components:
- rot: -1.5707963267948966 rad
pos: 52.5,43.5
@@ -127274,7 +127342,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19375
+ - uid: 19381
components:
- rot: -1.5707963267948966 rad
pos: 54.5,50.5
@@ -127282,7 +127350,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19376
+ - uid: 19382
components:
- rot: -1.5707963267948966 rad
pos: 52.5,49.5
@@ -127290,7 +127358,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19377
+ - uid: 19383
components:
- rot: 1.5707963267948966 rad
pos: -16.5,34.5
@@ -127298,7 +127366,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19378
+ - uid: 19384
components:
- rot: 1.5707963267948966 rad
pos: -15.5,33.5
@@ -127306,7 +127374,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19379
+ - uid: 19385
components:
- rot: 1.5707963267948966 rad
pos: -16.5,39.5
@@ -127314,7 +127382,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19380
+ - uid: 19386
components:
- rot: 1.5707963267948966 rad
pos: -15.5,38.5
@@ -127322,7 +127390,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19381
+ - uid: 19387
components:
- rot: 1.5707963267948966 rad
pos: -16.5,46.5
@@ -127330,7 +127398,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19382
+ - uid: 19388
components:
- rot: 3.141592653589793 rad
pos: -14.5,44.5
@@ -127338,7 +127406,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19383
+ - uid: 19389
components:
- rot: 3.141592653589793 rad
pos: 40.5,46.5
@@ -127346,14 +127414,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19384
+ - uid: 19390
components:
- pos: 40.5,45.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19385
+ - uid: 19391
components:
- rot: 1.5707963267948966 rad
pos: -1.5,61.5
@@ -127361,7 +127429,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19386
+ - uid: 19392
components:
- rot: 1.5707963267948966 rad
pos: -2.5,62.5
@@ -127369,7 +127437,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19387
+ - uid: 19393
components:
- rot: 3.141592653589793 rad
pos: -1.5,59.5
@@ -127377,7 +127445,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19388
+ - uid: 19394
components:
- rot: -1.5707963267948966 rad
pos: 1.5,46.5
@@ -127385,7 +127453,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19389
+ - uid: 19395
components:
- rot: 1.5707963267948966 rad
pos: -0.5,48.5
@@ -127393,35 +127461,35 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19390
+ - uid: 19396
components:
- pos: -17.5,50.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19391
+ - uid: 19397
components:
- pos: -16.5,51.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19392
+ - uid: 19398
components:
- pos: -21.5,50.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19393
+ - uid: 19399
components:
- pos: -20.5,51.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19394
+ - uid: 19400
components:
- rot: -1.5707963267948966 rad
pos: -21.5,58.5
@@ -127429,7 +127497,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19395
+ - uid: 19401
components:
- rot: 1.5707963267948966 rad
pos: -22.5,60.5
@@ -127437,7 +127505,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19396
+ - uid: 19402
components:
- rot: 1.5707963267948966 rad
pos: -22.5,61.5
@@ -127445,7 +127513,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19397
+ - uid: 19403
components:
- rot: 1.5707963267948966 rad
pos: -21.5,62.5
@@ -127453,7 +127521,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19398
+ - uid: 19404
components:
- rot: 3.141592653589793 rad
pos: -17.5,62.5
@@ -127461,14 +127529,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19399
+ - uid: 19405
components:
- pos: -17.5,61.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19400
+ - uid: 19406
components:
- rot: 1.5707963267948966 rad
pos: -22.5,66.5
@@ -127476,7 +127544,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19401
+ - uid: 19407
components:
- rot: -1.5707963267948966 rad
pos: -13.5,62.5
@@ -127484,7 +127552,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19402
+ - uid: 19408
components:
- rot: -1.5707963267948966 rad
pos: -12.5,61.5
@@ -127492,7 +127560,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19403
+ - uid: 19409
components:
- rot: -1.5707963267948966 rad
pos: -12.5,60.5
@@ -127500,7 +127568,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19404
+ - uid: 19410
components:
- rot: 1.5707963267948966 rad
pos: -13.5,58.5
@@ -127508,7 +127576,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19405
+ - uid: 19411
components:
- rot: -1.5707963267948966 rad
pos: -13.5,66.5
@@ -127516,7 +127584,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19406
+ - uid: 19412
components:
- rot: 1.5707963267948966 rad
pos: -12.5,59.5
@@ -127524,7 +127592,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19407
+ - uid: 19413
components:
- rot: 1.5707963267948966 rad
pos: -13.5,57.5
@@ -127532,7 +127600,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19408
+ - uid: 19414
components:
- rot: 3.141592653589793 rad
pos: -2.5,58.5
@@ -127540,7 +127608,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19409
+ - uid: 19415
components:
- rot: 1.5707963267948966 rad
pos: -0.5,56.5
@@ -127548,7 +127616,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19410
+ - uid: 19416
components:
- rot: -1.5707963267948966 rad
pos: 1.5,57.5
@@ -127556,7 +127624,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19411
+ - uid: 19417
components:
- rot: 3.141592653589793 rad
pos: 29.5,46.5
@@ -127564,14 +127632,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19412
+ - uid: 19418
components:
- pos: 29.5,45.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19413
+ - uid: 19419
components:
- rot: -1.5707963267948966 rad
pos: -22.5,-96.5
@@ -127579,7 +127647,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19414
+ - uid: 19420
components:
- rot: -1.5707963267948966 rad
pos: -20.5,-96.5
@@ -127587,7 +127655,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19415
+ - uid: 19421
components:
- rot: 3.141592653589793 rad
pos: -20.5,-97.5
@@ -127595,7 +127663,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19416
+ - uid: 19422
components:
- rot: 3.141592653589793 rad
pos: -21.5,-98.5
@@ -127603,7 +127671,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19417
+ - uid: 19423
components:
- rot: 3.141592653589793 rad
pos: -8.5,-97.5
@@ -127611,7 +127679,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19418
+ - uid: 19424
components:
- rot: 3.141592653589793 rad
pos: -7.5,-98.5
@@ -127619,7 +127687,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19419
+ - uid: 19425
components:
- rot: 1.5707963267948966 rad
pos: -8.5,-91.5
@@ -127627,7 +127695,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19420
+ - uid: 19426
components:
- rot: 1.5707963267948966 rad
pos: -7.5,-93.5
@@ -127635,7 +127703,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19421
+ - uid: 19427
components:
- rot: 3.141592653589793 rad
pos: 65.5,-33.5
@@ -127643,14 +127711,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19422
+ - uid: 19428
components:
- pos: 65.5,-34.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19423
+ - uid: 19429
components:
- rot: 3.141592653589793 rad
pos: 67.5,-34.5
@@ -127658,14 +127726,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19424
+ - uid: 19430
components:
- pos: 73.5,-34.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19425
+ - uid: 19431
components:
- rot: 3.141592653589793 rad
pos: 73.5,-33.5
@@ -127673,7 +127741,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19426
+ - uid: 19432
components:
- rot: -1.5707963267948966 rad
pos: 75.5,-40.5
@@ -127681,7 +127749,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19427
+ - uid: 19433
components:
- rot: 1.5707963267948966 rad
pos: 74.5,-41.5
@@ -127689,14 +127757,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19428
+ - uid: 19434
components:
- pos: 72.5,-48.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19429
+ - uid: 19435
components:
- rot: 1.5707963267948966 rad
pos: 73.5,-47.5
@@ -127704,14 +127772,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19430
+ - uid: 19436
components:
- pos: 70.5,-47.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19431
+ - uid: 19437
components:
- rot: 1.5707963267948966 rad
pos: 71.5,-46.5
@@ -127719,7 +127787,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19432
+ - uid: 19438
components:
- rot: -1.5707963267948966 rad
pos: 75.5,-37.5
@@ -127727,7 +127795,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19433
+ - uid: 19439
components:
- rot: 3.141592653589793 rad
pos: 74.5,-33.5
@@ -127735,13 +127803,13 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19434
+ - uid: 19440
components:
- rot: -1.5707963267948966 rad
pos: -56.5,-60.5
parent: 2
type: Transform
- - uid: 19435
+ - uid: 19441
components:
- rot: 1.5707963267948966 rad
pos: 61.5,-38.5
@@ -127749,14 +127817,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19436
+ - uid: 19442
components:
- pos: 3.5,-27.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19437
+ - uid: 19443
components:
- rot: 3.141592653589793 rad
pos: 38.5,-72.5
@@ -127764,7 +127832,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19438
+ - uid: 19444
components:
- rot: 3.141592653589793 rad
pos: 40.5,-73.5
@@ -127772,21 +127840,21 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19439
+ - uid: 19445
components:
- pos: -30.5,-71.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19440
+ - uid: 19446
components:
- pos: -28.5,-69.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19441
+ - uid: 19447
components:
- rot: -1.5707963267948966 rad
pos: 30.5,-82.5
@@ -127794,28 +127862,28 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19442
+ - uid: 19448
components:
- pos: 30.5,-72.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19443
+ - uid: 19449
components:
- pos: 29.5,-73.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19444
+ - uid: 19450
components:
- pos: -44.5,31.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19445
+ - uid: 19451
components:
- rot: 1.5707963267948966 rad
pos: -6.5,14.5
@@ -127823,14 +127891,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19446
+ - uid: 19452
components:
- pos: -71.5,-25.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19447
+ - uid: 19453
components:
- rot: -1.5707963267948966 rad
pos: -73.5,-24.5
@@ -127838,21 +127906,21 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19448
+ - uid: 19454
components:
- pos: -68.5,-40.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19449
+ - uid: 19455
components:
- pos: -71.5,-40.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19450
+ - uid: 19456
components:
- rot: 1.5707963267948966 rad
pos: -70.5,-41.5
@@ -127862,13 +127930,13 @@ entities:
type: AtmosPipeColor
- proto: GasPort
entities:
- - uid: 19451
+ - uid: 19457
components:
- rot: -1.5707963267948966 rad
pos: -66.5,-41.5
parent: 2
type: Transform
- - uid: 19452
+ - uid: 19458
components:
- rot: -1.5707963267948966 rad
pos: -66.5,-46.5
@@ -127876,52 +127944,52 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19453
+ - uid: 19459
components:
- pos: 45.5,-58.5
parent: 2
type: Transform
- - uid: 19454
+ - uid: 19460
components:
- rot: -1.5707963267948966 rad
pos: 46.5,-59.5
parent: 2
type: Transform
- - uid: 19455
+ - uid: 19461
components:
- rot: 3.141592653589793 rad
pos: 45.5,-60.5
parent: 2
type: Transform
- - uid: 19456
+ - uid: 19462
components:
- pos: 47.5,-56.5
parent: 2
type: Transform
- - uid: 19457
+ - uid: 19463
components:
- pos: 50.5,-56.5
parent: 2
type: Transform
- - uid: 19458
+ - uid: 19464
components:
- rot: 3.141592653589793 rad
pos: 55.5,-61.5
parent: 2
type: Transform
- - uid: 19459
+ - uid: 19465
components:
- rot: 1.5707963267948966 rad
pos: 53.5,-59.5
parent: 2
type: Transform
- - uid: 19460
+ - uid: 19466
components:
- rot: -1.5707963267948966 rad
pos: 57.5,-59.5
parent: 2
type: Transform
- - uid: 19461
+ - uid: 19467
components:
- name: scrubber to connector port
type: MetaData
@@ -127929,7 +127997,7 @@ entities:
pos: 54.5,-60.5
parent: 2
type: Transform
- - uid: 19462
+ - uid: 19468
components:
- rot: -1.5707963267948966 rad
pos: -39.5,-49.5
@@ -127937,7 +128005,7 @@ entities:
type: Transform
- color: '#947507FF'
type: AtmosPipeColor
- - uid: 19463
+ - uid: 19469
components:
- rot: -1.5707963267948966 rad
pos: -39.5,-50.5
@@ -127945,7 +128013,7 @@ entities:
type: Transform
- color: '#947507FF'
type: AtmosPipeColor
- - uid: 19464
+ - uid: 19470
components:
- rot: -1.5707963267948966 rad
pos: -39.5,-51.5
@@ -127953,7 +128021,7 @@ entities:
type: Transform
- color: '#947507FF'
type: AtmosPipeColor
- - uid: 19465
+ - uid: 19471
components:
- rot: 1.5707963267948966 rad
pos: -38.5,-49.5
@@ -127961,7 +128029,7 @@ entities:
type: Transform
- color: '#947507FF'
type: AtmosPipeColor
- - uid: 19466
+ - uid: 19472
components:
- rot: 1.5707963267948966 rad
pos: -38.5,-50.5
@@ -127969,7 +128037,7 @@ entities:
type: Transform
- color: '#947507FF'
type: AtmosPipeColor
- - uid: 19467
+ - uid: 19473
components:
- rot: 1.5707963267948966 rad
pos: -38.5,-51.5
@@ -127977,13 +128045,13 @@ entities:
type: Transform
- color: '#947507FF'
type: AtmosPipeColor
- - uid: 19468
+ - uid: 19474
components:
- rot: 3.141592653589793 rad
pos: -24.5,-62.5
parent: 2
type: Transform
- - uid: 19469
+ - uid: 19475
components:
- rot: 3.141592653589793 rad
pos: -5.5,-65.5
@@ -127991,7 +128059,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19470
+ - uid: 19476
components:
- rot: -1.5707963267948966 rad
pos: -33.5,-43.5
@@ -127999,7 +128067,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19471
+ - uid: 19477
components:
- rot: -1.5707963267948966 rad
pos: -33.5,-44.5
@@ -128007,7 +128075,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19472
+ - uid: 19478
components:
- rot: -1.5707963267948966 rad
pos: -33.5,-45.5
@@ -128015,12 +128083,12 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19473
+ - uid: 19479
components:
- pos: 70.5,38.5
parent: 2
type: Transform
- - uid: 19474
+ - uid: 19480
components:
- rot: -1.5707963267948966 rad
pos: 72.5,-37.5
@@ -128028,7 +128096,7 @@ entities:
type: Transform
- color: '#9755CCFF'
type: AtmosPipeColor
- - uid: 19475
+ - uid: 19481
components:
- rot: -1.5707963267948966 rad
pos: 72.5,-38.5
@@ -128036,7 +128104,7 @@ entities:
type: Transform
- color: '#999000FF'
type: AtmosPipeColor
- - uid: 19476
+ - uid: 19482
components:
- rot: 3.141592653589793 rad
pos: 71.5,-33.5
@@ -128044,7 +128112,7 @@ entities:
type: Transform
- color: '#9755CCFF'
type: AtmosPipeColor
- - uid: 19477
+ - uid: 19483
components:
- rot: 3.141592653589793 rad
pos: 72.5,-33.5
@@ -128052,30 +128120,30 @@ entities:
type: Transform
- color: '#999000FF'
type: AtmosPipeColor
- - uid: 19478
+ - uid: 19484
components:
- rot: 1.5707963267948966 rad
pos: -57.5,-58.5
parent: 2
type: Transform
- - uid: 19479
+ - uid: 19485
components:
- pos: -54.5,-59.5
parent: 2
type: Transform
- - uid: 19480
+ - uid: 19486
components:
- rot: 3.141592653589793 rad
pos: -48.5,-38.5
parent: 2
type: Transform
- - uid: 19481
+ - uid: 19487
components:
- rot: -1.5707963267948966 rad
pos: -66.5,-40.5
parent: 2
type: Transform
- - uid: 19482
+ - uid: 19488
components:
- rot: 1.5707963267948966 rad
pos: -72.5,-46.5
@@ -128083,9 +128151,15 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
+ - uid: 19489
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 11.5,-47.5
+ parent: 2
+ type: Transform
- proto: GasPressurePump
entities:
- - uid: 19483
+ - uid: 19490
components:
- rot: -1.5707963267948966 rad
pos: -67.5,-41.5
@@ -128093,92 +128167,92 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19484
+ - uid: 19491
components:
- rot: 1.5707963267948966 rad
pos: -73.5,-41.5
parent: 2
type: Transform
- - uid: 19485
+ - uid: 19492
components:
- pos: -70.5,-38.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19486
+ - uid: 19493
components:
- pos: -68.5,-45.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19487
+ - uid: 19494
components:
- rot: 3.141592653589793 rad
pos: 50.5,-57.5
parent: 2
type: Transform
- - uid: 19488
+ - uid: 19495
components:
- pos: 47.5,-57.5
parent: 2
type: Transform
- - uid: 19489
+ - uid: 19496
components:
- rot: 3.141592653589793 rad
pos: 55.5,-60.5
parent: 2
type: Transform
- - uid: 19490
+ - uid: 19497
components:
- rot: 1.5707963267948966 rad
pos: 54.5,-59.5
parent: 2
type: Transform
- - uid: 19491
+ - uid: 19498
components:
- rot: 1.5707963267948966 rad
pos: -44.5,-53.5
parent: 2
type: Transform
- - uid: 19492
+ - uid: 19499
components:
- rot: 1.5707963267948966 rad
pos: -44.5,-55.5
parent: 2
type: Transform
- - uid: 19493
+ - uid: 19500
components:
- rot: 1.5707963267948966 rad
pos: -44.5,-51.5
parent: 2
type: Transform
- - uid: 19494
+ - uid: 19501
components:
- rot: 1.5707963267948966 rad
pos: -44.5,-49.5
parent: 2
type: Transform
- - uid: 19495
+ - uid: 19502
components:
- rot: 1.5707963267948966 rad
pos: -44.5,-47.5
parent: 2
type: Transform
- - uid: 19496
+ - uid: 19503
components:
- rot: 1.5707963267948966 rad
pos: -44.5,-45.5
parent: 2
type: Transform
- - uid: 19497
+ - uid: 19504
components:
- rot: 1.5707963267948966 rad
pos: -44.5,-43.5
parent: 2
type: Transform
- - uid: 19498
+ - uid: 19505
components:
- rot: 1.5707963267948966 rad
pos: -39.5,-55.5
@@ -128186,34 +128260,34 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19499
+ - uid: 19506
components:
- pos: -40.5,-54.5
parent: 2
type: Transform
- color: '#03FCD3FF'
type: AtmosPipeColor
- - uid: 19500
+ - uid: 19507
components:
- rot: 3.141592653589793 rad
pos: -42.5,-40.5
parent: 2
type: Transform
- - uid: 19501
+ - uid: 19508
components:
- pos: -37.5,-54.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19502
+ - uid: 19509
components:
- pos: -38.5,-45.5
parent: 2
type: Transform
- color: '#947507FF'
type: AtmosPipeColor
- - uid: 19503
+ - uid: 19510
components:
- rot: 3.141592653589793 rad
pos: -24.5,-61.5
@@ -128221,7 +128295,7 @@ entities:
type: Transform
- color: '#97C3FCCC'
type: AtmosPipeColor
- - uid: 19504
+ - uid: 19511
components:
- rot: 3.141592653589793 rad
pos: -25.5,-59.5
@@ -128229,14 +128303,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19505
+ - uid: 19512
components:
- pos: -23.5,-59.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19506
+ - uid: 19513
components:
- rot: 3.141592653589793 rad
pos: 72.5,-31.5
@@ -128244,19 +128318,19 @@ entities:
type: Transform
- color: '#999000FF'
type: AtmosPipeColor
- - uid: 19507
+ - uid: 19514
components:
- pos: 71.5,-31.5
parent: 2
type: Transform
- color: '#9755CCFF'
type: AtmosPipeColor
- - uid: 19508
+ - uid: 19515
components:
- pos: -56.5,-59.5
parent: 2
type: Transform
- - uid: 19509
+ - uid: 19516
components:
- rot: -1.5707963267948966 rad
pos: 70.5,-38.5
@@ -128264,13 +128338,13 @@ entities:
type: Transform
- color: '#999000FF'
type: AtmosPipeColor
- - uid: 19510
+ - uid: 19517
components:
- rot: 3.141592653589793 rad
pos: -54.5,-60.5
parent: 2
type: Transform
- - uid: 19511
+ - uid: 19518
components:
- rot: 1.5707963267948966 rad
pos: 70.5,-37.5
@@ -128278,12 +128352,12 @@ entities:
type: Transform
- color: '#9755CCFF'
type: AtmosPipeColor
- - uid: 19512
+ - uid: 19519
components:
- pos: -48.5,-37.5
parent: 2
type: Transform
- - uid: 19513
+ - uid: 19520
components:
- rot: 3.141592653589793 rad
pos: -70.5,-43.5
@@ -128291,7 +128365,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19514
+ - uid: 19521
components:
- rot: -1.5707963267948966 rad
pos: -67.5,-40.5
@@ -128301,62 +128375,62 @@ entities:
type: AtmosPipeColor
- proto: GasRecyclerMachineCircuitboard
entities:
- - uid: 19515
+ - uid: 19522
components:
- pos: 53.993114,35.55658
parent: 2
type: Transform
- proto: GasThermoMachineFreezer
entities:
- - uid: 19516
+ - uid: 19523
components:
- pos: 51.5,-57.5
parent: 2
type: Transform
- - uid: 19517
+ - uid: 19524
components:
- pos: 2.5,14.5
parent: 2
type: Transform
- - uid: 19518
+ - uid: 19525
components:
- pos: -33.5,-52.5
parent: 2
type: Transform
- - uid: 19519
+ - uid: 19526
components:
- pos: 2.5,68.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19520
+ - uid: 19527
components:
- pos: 2.5,70.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19521
+ - uid: 19528
components:
- pos: -5.5,68.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19522
+ - uid: 19529
components:
- pos: -5.5,70.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19523
+ - uid: 19530
components:
- pos: 53.5,-47.5
parent: 2
type: Transform
- - uid: 19524
+ - uid: 19531
components:
- pos: -22.5,-61.5
parent: 2
@@ -128365,28 +128439,28 @@ entities:
type: AtmosPipeColor
- proto: GasThermoMachineFreezerEnabled
entities:
- - uid: 19525
+ - uid: 19532
components:
- pos: -66.5,-38.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19526
+ - uid: 19533
components:
- pos: -69.5,-38.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19527
+ - uid: 19534
components:
- pos: -67.5,-38.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19528
+ - uid: 19535
components:
- pos: -68.5,-38.5
parent: 2
@@ -128395,31 +128469,31 @@ entities:
type: AtmosPipeColor
- proto: GasThermoMachineHeater
entities:
- - uid: 19529
+ - uid: 19536
components:
- pos: 48.5,-57.5
parent: 2
type: Transform
- - uid: 19530
+ - uid: 19537
components:
- pos: -33.5,-54.5
parent: 2
type: Transform
- - uid: 19531
+ - uid: 19538
components:
- pos: -57.5,-59.5
parent: 2
type: Transform
- proto: GasValve
entities:
- - uid: 19532
+ - uid: 19539
components:
- pos: -44.5,-40.5
parent: 2
type: Transform
- open: False
type: GasValve
- - uid: 19533
+ - uid: 19540
components:
- rot: 1.5707963267948966 rad
pos: -72.5,-41.5
@@ -128429,7 +128503,7 @@ entities:
type: GasValve
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19534
+ - uid: 19541
components:
- rot: -1.5707963267948966 rad
pos: -72.5,-40.5
@@ -128439,7 +128513,7 @@ entities:
type: GasValve
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19535
+ - uid: 19542
components:
- rot: -1.5707963267948966 rad
pos: -72.5,-42.5
@@ -128449,7 +128523,7 @@ entities:
type: GasValve
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19536
+ - uid: 19543
components:
- rot: -1.5707963267948966 rad
pos: 56.5,-59.5
@@ -128457,7 +128531,7 @@ entities:
type: Transform
- open: False
type: GasValve
- - uid: 19537
+ - uid: 19544
components:
- rot: 1.5707963267948966 rad
pos: 53.5,-60.5
@@ -128465,7 +128539,7 @@ entities:
type: Transform
- open: False
type: GasValve
- - uid: 19538
+ - uid: 19545
components:
- rot: -1.5707963267948966 rad
pos: -43.5,-41.5
@@ -128473,7 +128547,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19539
+ - uid: 19546
components:
- pos: -40.5,-53.5
parent: 2
@@ -128482,7 +128556,7 @@ entities:
type: GasValve
- color: '#947507FF'
type: AtmosPipeColor
- - uid: 19540
+ - uid: 19547
components:
- rot: 3.141592653589793 rad
pos: -38.5,-58.5
@@ -128492,7 +128566,7 @@ entities:
type: GasValve
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19541
+ - uid: 19548
components:
- pos: -37.5,-53.5
parent: 2
@@ -128501,7 +128575,7 @@ entities:
type: GasValve
- color: '#947507FF'
type: AtmosPipeColor
- - uid: 19542
+ - uid: 19549
components:
- pos: -38.5,-42.5
parent: 2
@@ -128510,7 +128584,7 @@ entities:
type: GasValve
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19543
+ - uid: 19550
components:
- rot: -1.5707963267948966 rad
pos: -34.5,-53.5
@@ -128520,7 +128594,7 @@ entities:
type: GasValve
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19544
+ - uid: 19551
components:
- rot: 1.5707963267948966 rad
pos: -34.5,-55.5
@@ -128530,14 +128604,14 @@ entities:
type: GasValve
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19545
+ - uid: 19552
components:
- pos: -48.5,-36.5
parent: 2
type: Transform
- open: False
type: GasValve
- - uid: 19546
+ - uid: 19553
components:
- rot: 1.5707963267948966 rad
pos: -66.5,-44.5
@@ -128547,7 +128621,7 @@ entities:
type: GasValve
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19547
+ - uid: 19554
components:
- rot: 1.5707963267948966 rad
pos: -71.5,-37.5
@@ -128559,7 +128633,15 @@ entities:
type: AtmosPipeColor
- proto: GasVentPump
entities:
- - uid: 19548
+ - uid: 19555
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 9.5,-47.5
+ parent: 2
+ type: Transform
+ - color: '#0055CCFF'
+ type: AtmosPipeColor
+ - uid: 19556
components:
- rot: 3.141592653589793 rad
pos: 18.5,16.5
@@ -128567,7 +128649,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19549
+ - uid: 19557
components:
- rot: 3.141592653589793 rad
pos: -0.5,-4.5
@@ -128578,7 +128660,7 @@ entities:
type: DeviceNetwork
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19550
+ - uid: 19558
components:
- rot: 3.141592653589793 rad
pos: 1.5,-5.5
@@ -128589,7 +128671,7 @@ entities:
type: DeviceNetwork
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19551
+ - uid: 19559
components:
- rot: -1.5707963267948966 rad
pos: -70.5,-31.5
@@ -128597,7 +128679,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19552
+ - uid: 19560
components:
- rot: 3.141592653589793 rad
pos: -72.5,-38.5
@@ -128605,7 +128687,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19553
+ - uid: 19561
components:
- rot: 1.5707963267948966 rad
pos: -72.5,-25.5
@@ -128613,7 +128695,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19554
+ - uid: 19562
components:
- rot: 1.5707963267948966 rad
pos: -9.5,2.5
@@ -128621,14 +128703,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19555
+ - uid: 19563
components:
- pos: -1.5,-59.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19556
+ - uid: 19564
components:
- rot: 3.141592653589793 rad
pos: -14.5,-46.5
@@ -128636,14 +128718,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19557
+ - uid: 19565
components:
- pos: 25.5,-5.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19558
+ - uid: 19566
components:
- rot: 1.5707963267948966 rad
pos: -12.5,-39.5
@@ -128651,7 +128733,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19559
+ - uid: 19567
components:
- rot: 3.141592653589793 rad
pos: -0.5,-65.5
@@ -128659,7 +128741,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19560
+ - uid: 19568
components:
- rot: 3.141592653589793 rad
pos: -23.5,-86.5
@@ -128667,21 +128749,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19561
+ - uid: 19569
components:
- pos: 2.5,-26.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19562
+ - uid: 19570
components:
- pos: 20.5,-40.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19563
+ - uid: 19571
components:
- rot: -1.5707963267948966 rad
pos: 6.5,16.5
@@ -128689,14 +128771,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19564
+ - uid: 19572
components:
- pos: 26.5,11.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19565
+ - uid: 19573
components:
- rot: 1.5707963267948966 rad
pos: 5.5,8.5
@@ -128704,7 +128786,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19566
+ - uid: 19574
components:
- rot: -1.5707963267948966 rad
pos: -4.5,-14.5
@@ -128712,14 +128794,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19567
+ - uid: 19575
components:
- pos: -17.5,-57.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19568
+ - uid: 19576
components:
- rot: -1.5707963267948966 rad
pos: 32.5,10.5
@@ -128727,7 +128809,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19569
+ - uid: 19577
components:
- rot: 1.5707963267948966 rad
pos: 16.5,13.5
@@ -128735,7 +128817,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19570
+ - uid: 19578
components:
- rot: -1.5707963267948966 rad
pos: 45.5,-27.5
@@ -128743,14 +128825,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19571
+ - uid: 19579
components:
- pos: 10.5,19.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19572
+ - uid: 19580
components:
- rot: -1.5707963267948966 rad
pos: 29.5,10.5
@@ -128758,7 +128840,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19573
+ - uid: 19581
components:
- rot: 3.141592653589793 rad
pos: 18.5,3.5
@@ -128766,7 +128848,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19574
+ - uid: 19582
components:
- rot: 1.5707963267948966 rad
pos: 8.5,1.5
@@ -128774,7 +128856,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19575
+ - uid: 19583
components:
- rot: 1.5707963267948966 rad
pos: 8.5,-9.5
@@ -128782,14 +128864,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19576
+ - uid: 19584
components:
- pos: 22.5,22.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19577
+ - uid: 19585
components:
- rot: 1.5707963267948966 rad
pos: -0.5,17.5
@@ -128797,7 +128879,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19578
+ - uid: 19586
components:
- rot: -1.5707963267948966 rad
pos: -10.5,-22.5
@@ -128805,7 +128887,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19579
+ - uid: 19587
components:
- rot: -1.5707963267948966 rad
pos: -9.5,-6.5
@@ -128813,7 +128895,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19580
+ - uid: 19588
components:
- rot: 3.141592653589793 rad
pos: -6.5,-65.5
@@ -128821,7 +128903,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19581
+ - uid: 19589
components:
- rot: 3.141592653589793 rad
pos: -12.5,-65.5
@@ -128829,22 +128911,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19582
+ - uid: 19590
components:
- pos: -2.5,-52.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19583
- components:
- - rot: 3.141592653589793 rad
- pos: 5.5,-45.5
- parent: 2
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
- - uid: 19584
+ - uid: 19591
components:
- rot: 3.141592653589793 rad
pos: -0.5,-47.5
@@ -128852,7 +128926,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19585
+ - uid: 19592
components:
- rot: -1.5707963267948966 rad
pos: 9.5,-60.5
@@ -128860,7 +128934,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19586
+ - uid: 19593
components:
- rot: -1.5707963267948966 rad
pos: 35.5,10.5
@@ -128868,7 +128942,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19587
+ - uid: 19594
components:
- rot: 1.5707963267948966 rad
pos: -30.5,-80.5
@@ -128876,7 +128950,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19588
+ - uid: 19595
components:
- rot: 3.141592653589793 rad
pos: 36.5,7.5
@@ -128884,7 +128958,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19589
+ - uid: 19596
components:
- rot: 3.141592653589793 rad
pos: 11.5,9.5
@@ -128892,7 +128966,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19590
+ - uid: 19597
components:
- rot: 1.5707963267948966 rad
pos: 9.5,3.5
@@ -128900,21 +128974,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19591
+ - uid: 19598
components:
- pos: 20.5,14.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19592
+ - uid: 19599
components:
- pos: 5.5,19.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19593
+ - uid: 19600
components:
- rot: 3.141592653589793 rad
pos: 0.5,12.5
@@ -128922,14 +128996,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19594
+ - uid: 19601
components:
- pos: -24.5,-79.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19595
+ - uid: 19602
components:
- rot: 3.141592653589793 rad
pos: -18.5,-78.5
@@ -128937,7 +129011,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19596
+ - uid: 19603
components:
- rot: -1.5707963267948966 rad
pos: 20.5,18.5
@@ -128945,14 +129019,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19597
+ - uid: 19604
components:
- pos: 17.5,20.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19598
+ - uid: 19605
components:
- rot: 1.5707963267948966 rad
pos: 33.5,5.5
@@ -128960,14 +129034,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19599
+ - uid: 19606
components:
- pos: -4.5,-40.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19600
+ - uid: 19607
components:
- rot: 3.141592653589793 rad
pos: -4.5,12.5
@@ -128975,14 +129049,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19601
+ - uid: 19608
components:
- pos: -29.5,-70.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19602
+ - uid: 19609
components:
- rot: 1.5707963267948966 rad
pos: -23.5,29.5
@@ -128990,14 +129064,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19603
+ - uid: 19610
components:
- pos: 47.5,-23.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19604
+ - uid: 19611
components:
- rot: 1.5707963267948966 rad
pos: 27.5,0.5
@@ -129005,14 +129079,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19605
+ - uid: 19612
components:
- pos: -7.5,9.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19606
+ - uid: 19613
components:
- rot: -1.5707963267948966 rad
pos: 15.5,-32.5
@@ -129020,7 +129094,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19607
+ - uid: 19614
components:
- rot: 1.5707963267948966 rad
pos: 17.5,-12.5
@@ -129028,21 +129102,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19608
+ - uid: 19615
components:
- pos: 30.5,-17.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19609
+ - uid: 19616
components:
- pos: -18.5,33.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19610
+ - uid: 19617
components:
- rot: 3.141592653589793 rad
pos: 36.5,4.5
@@ -129050,7 +129124,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19611
+ - uid: 19618
components:
- rot: -1.5707963267948966 rad
pos: 27.5,-24.5
@@ -129058,7 +129132,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19612
+ - uid: 19619
components:
- rot: 3.141592653589793 rad
pos: -24.5,-89.5
@@ -129066,7 +129140,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19613
+ - uid: 19620
components:
- rot: 1.5707963267948966 rad
pos: -19.5,-64.5
@@ -129074,14 +129148,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19614
+ - uid: 19621
components:
- pos: 31.5,-14.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19615
+ - uid: 19622
components:
- rot: -1.5707963267948966 rad
pos: 42.5,-26.5
@@ -129089,7 +129163,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19616
+ - uid: 19623
components:
- rot: -1.5707963267948966 rad
pos: -17.5,-72.5
@@ -129097,7 +129171,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19617
+ - uid: 19624
components:
- rot: 1.5707963267948966 rad
pos: -19.5,-67.5
@@ -129105,7 +129179,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19618
+ - uid: 19625
components:
- rot: -1.5707963267948966 rad
pos: -19.5,-88.5
@@ -129113,15 +129187,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19619
- components:
- - rot: 3.141592653589793 rad
- pos: 10.5,-46.5
- parent: 2
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
- - uid: 19620
+ - uid: 19626
components:
- rot: -1.5707963267948966 rad
pos: 35.5,-23.5
@@ -129129,21 +129195,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19621
+ - uid: 19627
components:
- pos: -16.5,-37.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19622
+ - uid: 19628
components:
- pos: -11.5,-32.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19623
+ - uid: 19629
components:
- rot: -1.5707963267948966 rad
pos: -0.5,-10.5
@@ -129151,7 +129217,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19624
+ - uid: 19630
components:
- rot: 3.141592653589793 rad
pos: 21.5,-46.5
@@ -129159,21 +129225,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19625
+ - uid: 19631
components:
- pos: 30.5,28.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19626
+ - uid: 19632
components:
- pos: 45.5,15.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19627
+ - uid: 19633
components:
- rot: -1.5707963267948966 rad
pos: 61.5,15.5
@@ -129181,7 +129247,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19628
+ - uid: 19634
components:
- rot: -1.5707963267948966 rad
pos: 52.5,13.5
@@ -129189,7 +129255,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19629
+ - uid: 19635
components:
- rot: -1.5707963267948966 rad
pos: 61.5,18.5
@@ -129197,42 +129263,42 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19630
+ - uid: 19636
components:
- pos: 59.5,23.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19631
+ - uid: 19637
components:
- pos: 56.5,23.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19632
+ - uid: 19638
components:
- pos: 53.5,23.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19633
+ - uid: 19639
components:
- pos: 50.5,23.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19634
+ - uid: 19640
components:
- pos: 47.5,23.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19635
+ - uid: 19641
components:
- rot: 3.141592653589793 rad
pos: 47.5,13.5
@@ -129240,7 +129306,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19636
+ - uid: 19642
components:
- rot: -1.5707963267948966 rad
pos: 60.5,11.5
@@ -129248,14 +129314,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19637
+ - uid: 19643
components:
- pos: 39.5,20.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19638
+ - uid: 19644
components:
- rot: 1.5707963267948966 rad
pos: 34.5,19.5
@@ -129263,14 +129329,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19639
+ - uid: 19645
components:
- pos: 45.5,1.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19640
+ - uid: 19646
components:
- rot: -1.5707963267948966 rad
pos: 57.5,0.5
@@ -129278,7 +129344,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19641
+ - uid: 19647
components:
- rot: 1.5707963267948966 rad
pos: 43.5,-1.5
@@ -129286,7 +129352,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19642
+ - uid: 19648
components:
- rot: 1.5707963267948966 rad
pos: 36.5,-3.5
@@ -129294,7 +129360,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19643
+ - uid: 19649
components:
- rot: 3.141592653589793 rad
pos: 41.5,8.5
@@ -129302,7 +129368,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19644
+ - uid: 19650
components:
- rot: 1.5707963267948966 rad
pos: 29.5,19.5
@@ -129310,7 +129376,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19645
+ - uid: 19651
components:
- rot: 1.5707963267948966 rad
pos: 38.5,10.5
@@ -129318,7 +129384,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19646
+ - uid: 19652
components:
- rot: -1.5707963267948966 rad
pos: 46.5,-1.5
@@ -129326,7 +129392,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19647
+ - uid: 19653
components:
- rot: -1.5707963267948966 rad
pos: 57.5,-5.5
@@ -129334,7 +129400,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19648
+ - uid: 19654
components:
- rot: 3.141592653589793 rad
pos: 49.5,-42.5
@@ -129342,7 +129408,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19649
+ - uid: 19655
components:
- rot: 3.141592653589793 rad
pos: 56.5,-42.5
@@ -129350,7 +129416,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19650
+ - uid: 19656
components:
- rot: 3.141592653589793 rad
pos: 44.5,-42.5
@@ -129358,7 +129424,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19651
+ - uid: 19657
components:
- rot: 3.141592653589793 rad
pos: 57.5,-45.5
@@ -129366,7 +129432,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19652
+ - uid: 19658
components:
- rot: 3.141592653589793 rad
pos: 61.5,-47.5
@@ -129374,7 +129440,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19653
+ - uid: 19659
components:
- rot: 1.5707963267948966 rad
pos: 59.5,-32.5
@@ -129382,7 +129448,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19654
+ - uid: 19660
components:
- rot: -1.5707963267948966 rad
pos: 62.5,-24.5
@@ -129390,14 +129456,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19655
+ - uid: 19661
components:
- pos: 61.5,-2.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19656
+ - uid: 19662
components:
- rot: 3.141592653589793 rad
pos: 60.5,-52.5
@@ -129405,7 +129471,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19657
+ - uid: 19663
components:
- rot: 1.5707963267948966 rad
pos: 44.5,-46.5
@@ -129413,7 +129479,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19658
+ - uid: 19664
components:
- rot: -1.5707963267948966 rad
pos: 51.5,-52.5
@@ -129421,7 +129487,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19659
+ - uid: 19665
components:
- rot: 1.5707963267948966 rad
pos: 25.5,-56.5
@@ -129429,7 +129495,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19660
+ - uid: 19666
components:
- rot: -1.5707963267948966 rad
pos: 30.5,-56.5
@@ -129437,7 +129503,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19661
+ - uid: 19667
components:
- rot: -1.5707963267948966 rad
pos: 30.5,-52.5
@@ -129445,7 +129511,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19662
+ - uid: 19668
components:
- rot: 1.5707963267948966 rad
pos: 28.5,-47.5
@@ -129453,7 +129519,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19663
+ - uid: 19669
components:
- rot: -1.5707963267948966 rad
pos: 33.5,-47.5
@@ -129461,14 +129527,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19664
+ - uid: 19670
components:
- pos: 29.5,-45.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19665
+ - uid: 19671
components:
- rot: -1.5707963267948966 rad
pos: 53.5,-57.5
@@ -129476,14 +129542,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19666
+ - uid: 19672
components:
- pos: -13.5,2.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19667
+ - uid: 19673
components:
- rot: 1.5707963267948966 rad
pos: -17.5,1.5
@@ -129491,7 +129557,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19668
+ - uid: 19674
components:
- rot: 3.141592653589793 rad
pos: -24.5,-14.5
@@ -129499,14 +129565,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19669
+ - uid: 19675
components:
- pos: -28.5,-12.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19670
+ - uid: 19676
components:
- rot: -1.5707963267948966 rad
pos: -19.5,-14.5
@@ -129514,7 +129580,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19671
+ - uid: 19677
components:
- rot: 3.141592653589793 rad
pos: -24.5,-23.5
@@ -129522,14 +129588,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19672
+ - uid: 19678
components:
- pos: 38.5,-55.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19673
+ - uid: 19679
components:
- rot: -1.5707963267948966 rad
pos: 39.5,-63.5
@@ -129537,7 +129603,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19674
+ - uid: 19680
components:
- rot: -1.5707963267948966 rad
pos: -19.5,-41.5
@@ -129545,7 +129611,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19675
+ - uid: 19681
components:
- rot: -1.5707963267948966 rad
pos: -19.5,-47.5
@@ -129553,7 +129619,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19676
+ - uid: 19682
components:
- rot: -1.5707963267948966 rad
pos: -19.5,-33.5
@@ -129561,7 +129627,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19677
+ - uid: 19683
components:
- rot: 1.5707963267948966 rad
pos: 37.5,-71.5
@@ -129569,7 +129635,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19678
+ - uid: 19684
components:
- rot: -1.5707963267948966 rad
pos: 3.5,-56.5
@@ -129577,14 +129643,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19679
+ - uid: 19685
components:
- pos: -28.5,-16.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19680
+ - uid: 19686
components:
- rot: 1.5707963267948966 rad
pos: -32.5,-27.5
@@ -129592,7 +129658,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19681
+ - uid: 19687
components:
- rot: 1.5707963267948966 rad
pos: -34.5,-15.5
@@ -129600,7 +129666,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19682
+ - uid: 19688
components:
- rot: 3.141592653589793 rad
pos: -36.5,-12.5
@@ -129608,7 +129674,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19683
+ - uid: 19689
components:
- rot: 3.141592653589793 rad
pos: -41.5,-16.5
@@ -129616,7 +129682,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19684
+ - uid: 19690
components:
- rot: -1.5707963267948966 rad
pos: -25.5,-4.5
@@ -129624,7 +129690,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19685
+ - uid: 19691
components:
- rot: 3.141592653589793 rad
pos: -44.5,-12.5
@@ -129632,7 +129698,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19686
+ - uid: 19692
components:
- rot: 3.141592653589793 rad
pos: -46.5,-6.5
@@ -129640,7 +129706,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19687
+ - uid: 19693
components:
- rot: 1.5707963267948966 rad
pos: -54.5,-13.5
@@ -129648,7 +129714,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19688
+ - uid: 19694
components:
- rot: -1.5707963267948966 rad
pos: -50.5,-24.5
@@ -129656,21 +129722,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19689
+ - uid: 19695
components:
- pos: -45.5,-22.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19690
+ - uid: 19696
components:
- pos: -59.5,-24.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19691
+ - uid: 19697
components:
- rot: 1.5707963267948966 rad
pos: -65.5,-27.5
@@ -129678,7 +129744,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19692
+ - uid: 19698
components:
- rot: 3.141592653589793 rad
pos: -64.5,-31.5
@@ -129686,7 +129752,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19693
+ - uid: 19699
components:
- rot: 1.5707963267948966 rad
pos: -32.5,-39.5
@@ -129694,14 +129760,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19694
+ - uid: 19700
components:
- pos: -30.5,-33.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19695
+ - uid: 19701
components:
- rot: 1.5707963267948966 rad
pos: -38.5,-34.5
@@ -129709,7 +129775,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19696
+ - uid: 19702
components:
- rot: -1.5707963267948966 rad
pos: -23.5,-34.5
@@ -129717,14 +129783,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19697
+ - uid: 19703
components:
- pos: -23.5,-57.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19698
+ - uid: 19704
components:
- rot: 1.5707963267948966 rad
pos: -41.5,-71.5
@@ -129732,14 +129798,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19699
+ - uid: 19705
components:
- pos: 21.5,-27.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19700
+ - uid: 19706
components:
- rot: -1.5707963267948966 rad
pos: 29.5,-30.5
@@ -129747,7 +129813,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19701
+ - uid: 19707
components:
- rot: 1.5707963267948966 rad
pos: -19.5,19.5
@@ -129755,7 +129821,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19702
+ - uid: 19708
components:
- rot: 3.141592653589793 rad
pos: -28.5,22.5
@@ -129763,7 +129829,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19703
+ - uid: 19709
components:
- rot: 3.141592653589793 rad
pos: -32.5,22.5
@@ -129771,14 +129837,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19704
+ - uid: 19710
components:
- pos: -32.5,28.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19705
+ - uid: 19711
components:
- rot: 1.5707963267948966 rad
pos: -41.5,23.5
@@ -129786,7 +129852,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19706
+ - uid: 19712
components:
- rot: 3.141592653589793 rad
pos: -24.5,22.5
@@ -129794,7 +129860,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19707
+ - uid: 19713
components:
- rot: 1.5707963267948966 rad
pos: -50.5,33.5
@@ -129802,7 +129868,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19708
+ - uid: 19714
components:
- rot: 1.5707963267948966 rad
pos: -50.5,31.5
@@ -129810,14 +129876,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19709
+ - uid: 19715
components:
- pos: -44.5,34.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19710
+ - uid: 19716
components:
- rot: -1.5707963267948966 rad
pos: -37.5,30.5
@@ -129825,7 +129891,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19711
+ - uid: 19717
components:
- rot: 1.5707963267948966 rad
pos: -26.5,12.5
@@ -129833,7 +129899,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19712
+ - uid: 19718
components:
- rot: 3.141592653589793 rad
pos: -28.5,-3.5
@@ -129841,7 +129907,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19713
+ - uid: 19719
components:
- rot: 3.141592653589793 rad
pos: -29.5,9.5
@@ -129849,14 +129915,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19714
+ - uid: 19720
components:
- pos: -29.5,15.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19715
+ - uid: 19721
components:
- rot: -1.5707963267948966 rad
pos: -36.5,8.5
@@ -129864,7 +129930,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19716
+ - uid: 19722
components:
- rot: 1.5707963267948966 rad
pos: -38.5,5.5
@@ -129872,7 +129938,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19717
+ - uid: 19723
components:
- rot: 3.141592653589793 rad
pos: -41.5,0.5
@@ -129880,7 +129946,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19718
+ - uid: 19724
components:
- rot: 3.141592653589793 rad
pos: -45.5,0.5
@@ -129888,7 +129954,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19719
+ - uid: 19725
components:
- rot: -1.5707963267948966 rad
pos: -44.5,6.5
@@ -129896,7 +129962,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19720
+ - uid: 19726
components:
- rot: 1.5707963267948966 rad
pos: -51.5,7.5
@@ -129904,7 +129970,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19721
+ - uid: 19727
components:
- rot: -1.5707963267948966 rad
pos: -43.5,11.5
@@ -129912,21 +129978,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19722
+ - uid: 19728
components:
- pos: -45.5,14.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19723
+ - uid: 19729
components:
- pos: -51.5,14.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19724
+ - uid: 19730
components:
- rot: 1.5707963267948966 rad
pos: -52.5,11.5
@@ -129934,7 +130000,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19725
+ - uid: 19731
components:
- rot: 3.141592653589793 rad
pos: 19.5,-54.5
@@ -129942,7 +130008,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19726
+ - uid: 19732
components:
- rot: 3.141592653589793 rad
pos: 19.5,-54.5
@@ -129950,21 +130016,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19727
+ - uid: 19733
components:
- pos: -54.5,-74.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19728
+ - uid: 19734
components:
- pos: -8.5,-26.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19729
+ - uid: 19735
components:
- rot: 3.141592653589793 rad
pos: 33.5,-42.5
@@ -129972,7 +130038,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19730
+ - uid: 19736
components:
- rot: 1.5707963267948966 rad
pos: -36.5,-44.5
@@ -129980,7 +130046,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19731
+ - uid: 19737
components:
- rot: 1.5707963267948966 rad
pos: -30.5,-78.5
@@ -129988,7 +130054,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19732
+ - uid: 19738
components:
- rot: 1.5707963267948966 rad
pos: 39.5,46.5
@@ -129996,14 +130062,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19733
+ - uid: 19739
components:
- pos: 54.5,56.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19734
+ - uid: 19740
components:
- rot: -1.5707963267948966 rad
pos: 55.5,43.5
@@ -130011,7 +130077,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19735
+ - uid: 19741
components:
- rot: -1.5707963267948966 rad
pos: -12.5,33.5
@@ -130019,7 +130085,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19736
+ - uid: 19742
components:
- rot: 1.5707963267948966 rad
pos: -20.5,44.5
@@ -130027,20 +130093,20 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19737
+ - uid: 19743
components:
- pos: -14.5,45.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19738
+ - uid: 19744
components:
- rot: 3.141592653589793 rad
pos: 70.5,37.5
parent: 2
type: Transform
- - uid: 19739
+ - uid: 19745
components:
- rot: -1.5707963267948966 rad
pos: -11.5,38.5
@@ -130048,14 +130114,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19740
+ - uid: 19746
components:
- pos: -1.5,66.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19741
+ - uid: 19747
components:
- rot: -1.5707963267948966 rad
pos: -0.5,61.5
@@ -130063,7 +130129,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19742
+ - uid: 19748
components:
- rot: 1.5707963267948966 rad
pos: 0.5,46.5
@@ -130071,7 +130137,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19743
+ - uid: 19749
components:
- rot: 1.5707963267948966 rad
pos: -13.5,60.5
@@ -130082,7 +130148,7 @@ entities:
type: DeviceNetwork
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19744
+ - uid: 19750
components:
- rot: 3.141592653589793 rad
pos: -17.5,60.5
@@ -130090,21 +130156,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19745
+ - uid: 19751
components:
- pos: -12.5,73.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19746
+ - uid: 19752
components:
- pos: -22.5,73.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19747
+ - uid: 19753
components:
- rot: -1.5707963267948966 rad
pos: -21.5,60.5
@@ -130112,7 +130178,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19748
+ - uid: 19754
components:
- rot: 1.5707963267948966 rad
pos: 0.5,57.5
@@ -130120,7 +130186,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19749
+ - uid: 19755
components:
- rot: -1.5707963267948966 rad
pos: 30.5,46.5
@@ -130128,7 +130194,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19750
+ - uid: 19756
components:
- rot: 3.141592653589793 rad
pos: 23.5,45.5
@@ -130136,7 +130202,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19751
+ - uid: 19757
components:
- rot: -1.5707963267948966 rad
pos: -7.5,-91.5
@@ -130144,7 +130210,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19752
+ - uid: 19758
components:
- rot: 1.5707963267948966 rad
pos: -21.5,-96.5
@@ -130152,7 +130218,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19753
+ - uid: 19759
components:
- rot: -1.5707963267948966 rad
pos: -7.5,-97.5
@@ -130160,14 +130226,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19754
+ - uid: 19760
components:
- pos: -8.5,-84.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19755
+ - uid: 19761
components:
- rot: 1.5707963267948966 rad
pos: -34.5,-97.5
@@ -130175,14 +130241,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19756
+ - uid: 19762
components:
- pos: 65.5,-32.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19757
+ - uid: 19763
components:
- rot: 3.141592653589793 rad
pos: 68.5,-34.5
@@ -130190,7 +130256,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19758
+ - uid: 19764
components:
- rot: 1.5707963267948966 rad
pos: 74.5,-40.5
@@ -130198,7 +130264,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19759
+ - uid: 19765
components:
- rot: -1.5707963267948966 rad
pos: 74.5,-47.5
@@ -130206,7 +130272,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19760
+ - uid: 19766
components:
- rot: 1.5707963267948966 rad
pos: 66.5,-37.5
@@ -130214,21 +130280,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19761
+ - uid: 19767
components:
- pos: 74.5,-32.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19762
+ - uid: 19768
components:
- pos: 73.5,-29.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19763
+ - uid: 19769
components:
- rot: 3.141592653589793 rad
pos: 3.5,-30.5
@@ -130236,7 +130302,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19764
+ - uid: 19770
components:
- rot: -1.5707963267948966 rad
pos: -18.5,66.5
@@ -130244,7 +130310,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19765
+ - uid: 19771
components:
- rot: 3.141592653589793 rad
pos: 72.5,-49.5
@@ -130252,7 +130318,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19766
+ - uid: 19772
components:
- rot: -1.5707963267948966 rad
pos: -15.5,24.5
@@ -130260,7 +130326,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19767
+ - uid: 19773
components:
- rot: 1.5707963267948966 rad
pos: -8.5,-14.5
@@ -130268,14 +130334,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19768
+ - uid: 19774
components:
- pos: -11.5,-18.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19769
+ - uid: 19775
components:
- rot: 3.141592653589793 rad
pos: -30.5,-74.5
@@ -130283,7 +130349,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19770
+ - uid: 19776
components:
- rot: -1.5707963267948966 rad
pos: 62.5,-38.5
@@ -130291,7 +130357,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19771
+ - uid: 19777
components:
- rot: 3.141592653589793 rad
pos: 30.5,-84.5
@@ -130299,7 +130365,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19772
+ - uid: 19778
components:
- rot: -1.5707963267948966 rad
pos: 48.5,-72.5
@@ -130307,14 +130373,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19773
+ - uid: 19779
components:
- pos: 25.5,-71.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19774
+ - uid: 19780
components:
- rot: 3.141592653589793 rad
pos: 18.5,-83.5
@@ -130322,7 +130388,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19775
+ - uid: 19781
components:
- rot: -1.5707963267948966 rad
pos: 48.5,-86.5
@@ -130330,14 +130396,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19776
+ - uid: 19782
components:
- pos: 12.5,-22.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19777
+ - uid: 19783
components:
- rot: -1.5707963267948966 rad
pos: 45.5,5.5
@@ -130345,21 +130411,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19778
+ - uid: 19784
components:
- pos: -45.5,43.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19779
+ - uid: 19785
components:
- pos: 68.5,-31.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19780
+ - uid: 19786
components:
- rot: -1.5707963267948966 rad
pos: -5.5,16.5
@@ -130370,7 +130436,7 @@ entities:
type: DeviceNetwork
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19781
+ - uid: 19787
components:
- rot: -1.5707963267948966 rad
pos: -1.5,-21.5
@@ -130381,7 +130447,7 @@ entities:
type: DeviceNetwork
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19782
+ - uid: 19788
components:
- rot: 3.141592653589793 rad
pos: 22.5,-37.5
@@ -130392,14 +130458,14 @@ entities:
type: DeviceNetwork
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19783
+ - uid: 19789
components:
- pos: 42.5,-37.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19784
+ - uid: 19790
components:
- rot: 1.5707963267948966 rad
pos: 38.5,61.5
@@ -130407,9 +130473,33 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
+ - uid: 19791
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 6.5,-48.5
+ parent: 2
+ type: Transform
+ - color: '#0055CCFF'
+ type: AtmosPipeColor
- proto: GasVentScrubber
entities:
- - uid: 19785
+ - uid: 19792
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 6.5,-47.5
+ parent: 2
+ type: Transform
+ - color: '#990000FF'
+ type: AtmosPipeColor
+ - uid: 19793
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 9.5,-46.5
+ parent: 2
+ type: Transform
+ - color: '#990000FF'
+ type: AtmosPipeColor
+ - uid: 19794
components:
- rot: 1.5707963267948966 rad
pos: 1.5,-6.5
@@ -130420,7 +130510,7 @@ entities:
type: DeviceNetwork
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19786
+ - uid: 19795
components:
- rot: 1.5707963267948966 rad
pos: -74.5,-24.5
@@ -130428,7 +130518,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19787
+ - uid: 19796
components:
- rot: 3.141592653589793 rad
pos: -73.5,-38.5
@@ -130436,7 +130526,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19788
+ - uid: 19797
components:
- rot: -1.5707963267948966 rad
pos: -2.5,11.5
@@ -130444,28 +130534,28 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19789
+ - uid: 19798
components:
- pos: 25.5,-51.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19790
+ - uid: 19799
components:
- pos: 22.5,-4.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19791
+ - uid: 19800
components:
- pos: 11.5,19.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19792
+ - uid: 19801
components:
- rot: 1.5707963267948966 rad
pos: 27.5,1.5
@@ -130473,7 +130563,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19793
+ - uid: 19802
components:
- rot: 3.141592653589793 rad
pos: 7.5,-26.5
@@ -130481,28 +130571,28 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19794
+ - uid: 19803
components:
- pos: -8.5,-0.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19795
+ - uid: 19804
components:
- pos: 31.5,-41.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19796
+ - uid: 19805
components:
- pos: 31.5,16.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19797
+ - uid: 19806
components:
- rot: 3.141592653589793 rad
pos: -5.5,6.5
@@ -130510,7 +130600,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19798
+ - uid: 19807
components:
- rot: -1.5707963267948966 rad
pos: -8.5,-39.5
@@ -130518,7 +130608,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19799
+ - uid: 19808
components:
- rot: 3.141592653589793 rad
pos: 31.5,11.5
@@ -130526,7 +130616,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19800
+ - uid: 19809
components:
- rot: 1.5707963267948966 rad
pos: 37.5,8.5
@@ -130534,7 +130624,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19801
+ - uid: 19810
components:
- rot: 1.5707963267948966 rad
pos: 37.5,5.5
@@ -130542,7 +130632,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19802
+ - uid: 19811
components:
- rot: 3.141592653589793 rad
pos: 28.5,11.5
@@ -130550,14 +130640,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19803
+ - uid: 19812
components:
- pos: 38.5,12.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19804
+ - uid: 19813
components:
- rot: 3.141592653589793 rad
pos: -4.5,-43.5
@@ -130565,7 +130655,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19805
+ - uid: 19814
components:
- rot: 1.5707963267948966 rad
pos: 16.5,12.5
@@ -130573,7 +130663,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19806
+ - uid: 19815
components:
- rot: 3.141592653589793 rad
pos: 34.5,11.5
@@ -130581,7 +130671,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19807
+ - uid: 19816
components:
- rot: -1.5707963267948966 rad
pos: 26.5,7.5
@@ -130589,7 +130679,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19808
+ - uid: 19817
components:
- rot: -1.5707963267948966 rad
pos: 8.5,19.5
@@ -130597,7 +130687,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19809
+ - uid: 19818
components:
- rot: -1.5707963267948966 rad
pos: 22.5,-18.5
@@ -130605,7 +130695,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19810
+ - uid: 19819
components:
- rot: -1.5707963267948966 rad
pos: 29.5,-29.5
@@ -130613,14 +130703,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19811
+ - uid: 19820
components:
- pos: 23.5,-27.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19812
+ - uid: 19821
components:
- rot: -1.5707963267948966 rad
pos: -8.5,-5.5
@@ -130628,7 +130718,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19813
+ - uid: 19822
components:
- rot: 3.141592653589793 rad
pos: -2.5,-65.5
@@ -130636,7 +130726,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19814
+ - uid: 19823
components:
- rot: 3.141592653589793 rad
pos: -8.5,-65.5
@@ -130644,7 +130734,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19815
+ - uid: 19824
components:
- rot: 3.141592653589793 rad
pos: -15.5,-65.5
@@ -130652,7 +130742,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19816
+ - uid: 19825
components:
- rot: 3.141592653589793 rad
pos: -5.5,-61.5
@@ -130660,7 +130750,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19817
+ - uid: 19826
components:
- rot: 3.141592653589793 rad
pos: -8.5,-54.5
@@ -130668,15 +130758,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19818
- components:
- - rot: 3.141592653589793 rad
- pos: 3.5,-45.5
- parent: 2
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
- - uid: 19819
+ - uid: 19827
components:
- rot: 3.141592653589793 rad
pos: -8.5,-47.5
@@ -130684,7 +130766,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19820
+ - uid: 19828
components:
- rot: -1.5707963267948966 rad
pos: 9.5,-61.5
@@ -130692,7 +130774,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19821
+ - uid: 19829
components:
- rot: 3.141592653589793 rad
pos: -12.5,-47.5
@@ -130700,7 +130782,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19822
+ - uid: 19830
components:
- rot: 3.141592653589793 rad
pos: -20.5,-85.5
@@ -130708,7 +130790,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19823
+ - uid: 19831
components:
- rot: -1.5707963267948966 rad
pos: -24.5,-77.5
@@ -130716,7 +130798,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19824
+ - uid: 19832
components:
- rot: 1.5707963267948966 rad
pos: -28.5,-77.5
@@ -130724,21 +130806,21 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19825
+ - uid: 19833
components:
- pos: 17.5,0.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19826
+ - uid: 19834
components:
- pos: 33.5,2.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19827
+ - uid: 19835
components:
- rot: -1.5707963267948966 rad
pos: 1.5,11.5
@@ -130746,7 +130828,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19828
+ - uid: 19836
components:
- rot: -1.5707963267948966 rad
pos: 9.5,0.5
@@ -130754,7 +130836,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19829
+ - uid: 19837
components:
- rot: 1.5707963267948966 rad
pos: -23.5,-89.5
@@ -130762,7 +130844,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19830
+ - uid: 19838
components:
- rot: 3.141592653589793 rad
pos: -21.5,-90.5
@@ -130770,14 +130852,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19831
+ - uid: 19839
components:
- pos: 33.5,-14.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19832
+ - uid: 19840
components:
- rot: 3.141592653589793 rad
pos: 10.5,-4.5
@@ -130785,21 +130867,21 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19833
+ - uid: 19841
components:
- pos: 25.5,22.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19834
+ - uid: 19842
components:
- pos: 16.5,22.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19835
+ - uid: 19843
components:
- rot: -1.5707963267948966 rad
pos: 16.5,-23.5
@@ -130807,7 +130889,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19836
+ - uid: 19844
components:
- rot: 1.5707963267948966 rad
pos: -4.5,-11.5
@@ -130815,7 +130897,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19837
+ - uid: 19845
components:
- rot: -1.5707963267948966 rad
pos: 22.5,12.5
@@ -130823,7 +130905,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19838
+ - uid: 19846
components:
- rot: 3.141592653589793 rad
pos: 46.5,-30.5
@@ -130831,7 +130913,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19839
+ - uid: 19847
components:
- rot: -1.5707963267948966 rad
pos: 45.5,-24.5
@@ -130839,14 +130921,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19840
+ - uid: 19848
components:
- pos: -20.5,33.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19841
+ - uid: 19849
components:
- rot: -1.5707963267948966 rad
pos: 3.5,1.5
@@ -130854,14 +130936,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19842
+ - uid: 19850
components:
- pos: 21.5,17.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19843
+ - uid: 19851
components:
- rot: 1.5707963267948966 rad
pos: 0.5,6.5
@@ -130869,7 +130951,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19844
+ - uid: 19852
components:
- rot: 1.5707963267948966 rad
pos: -28.5,-79.5
@@ -130877,7 +130959,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19845
+ - uid: 19853
components:
- rot: 1.5707963267948966 rad
pos: 20.5,-14.5
@@ -130885,14 +130967,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19846
+ - uid: 19854
components:
- pos: 12.5,17.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19847
+ - uid: 19855
components:
- rot: 1.5707963267948966 rad
pos: 23.5,-24.5
@@ -130900,7 +130982,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19848
+ - uid: 19856
components:
- rot: 1.5707963267948966 rad
pos: 6.5,14.5
@@ -130908,7 +130990,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19849
+ - uid: 19857
components:
- rot: -1.5707963267948966 rad
pos: 42.5,-25.5
@@ -130916,7 +130998,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19850
+ - uid: 19858
components:
- rot: -1.5707963267948966 rad
pos: -19.5,-75.5
@@ -130924,7 +131006,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19851
+ - uid: 19859
components:
- rot: -1.5707963267948966 rad
pos: -19.5,-70.5
@@ -130932,7 +131014,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19852
+ - uid: 19860
components:
- rot: -1.5707963267948966 rad
pos: -19.5,-66.5
@@ -130940,7 +131022,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19853
+ - uid: 19861
components:
- rot: -1.5707963267948966 rad
pos: -19.5,-63.5
@@ -130948,15 +131030,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19854
- components:
- - rot: 3.141592653589793 rad
- pos: 9.5,-46.5
- parent: 2
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
- - uid: 19855
+ - uid: 19862
components:
- rot: 1.5707963267948966 rad
pos: 35.5,-31.5
@@ -130964,7 +131038,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19856
+ - uid: 19863
components:
- rot: -1.5707963267948966 rad
pos: 9.5,10.5
@@ -130972,7 +131046,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19857
+ - uid: 19864
components:
- rot: 1.5707963267948966 rad
pos: -14.5,-37.5
@@ -130980,14 +131054,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19858
+ - uid: 19865
components:
- pos: -9.5,-32.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19859
+ - uid: 19866
components:
- rot: 1.5707963267948966 rad
pos: 0.5,19.5
@@ -130995,14 +131069,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19860
+ - uid: 19867
components:
- pos: -0.5,-13.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19861
+ - uid: 19868
components:
- rot: 3.141592653589793 rad
pos: 20.5,-47.5
@@ -131010,14 +131084,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19862
+ - uid: 19869
components:
- pos: 28.5,28.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19863
+ - uid: 19870
components:
- rot: 3.141592653589793 rad
pos: 44.5,14.5
@@ -131025,14 +131099,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19864
+ - uid: 19871
components:
- pos: 47.5,16.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19865
+ - uid: 19872
components:
- rot: -1.5707963267948966 rad
pos: 52.5,12.5
@@ -131040,42 +131114,42 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19866
+ - uid: 19873
components:
- pos: 46.5,23.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19867
+ - uid: 19874
components:
- pos: 49.5,23.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19868
+ - uid: 19875
components:
- pos: 52.5,23.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19869
+ - uid: 19876
components:
- pos: 55.5,23.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19870
+ - uid: 19877
components:
- pos: 58.5,23.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19871
+ - uid: 19878
components:
- rot: -1.5707963267948966 rad
pos: 61.5,19.5
@@ -131083,7 +131157,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19872
+ - uid: 19879
components:
- rot: -1.5707963267948966 rad
pos: 61.5,16.5
@@ -131091,7 +131165,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19873
+ - uid: 19880
components:
- rot: 1.5707963267948966 rad
pos: 57.5,12.5
@@ -131099,7 +131173,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19874
+ - uid: 19881
components:
- rot: 3.141592653589793 rad
pos: 40.5,19.5
@@ -131107,7 +131181,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19875
+ - uid: 19882
components:
- rot: 1.5707963267948966 rad
pos: 34.5,20.5
@@ -131115,7 +131189,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19876
+ - uid: 19883
components:
- rot: -1.5707963267948966 rad
pos: 56.5,1.5
@@ -131123,7 +131197,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19877
+ - uid: 19884
components:
- rot: 1.5707963267948966 rad
pos: 41.5,-1.5
@@ -131131,7 +131205,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19878
+ - uid: 19885
components:
- rot: 1.5707963267948966 rad
pos: 36.5,-2.5
@@ -131139,7 +131213,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19879
+ - uid: 19886
components:
- rot: -1.5707963267948966 rad
pos: 29.5,22.5
@@ -131147,7 +131221,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19880
+ - uid: 19887
components:
- rot: 3.141592653589793 rad
pos: 38.5,0.5
@@ -131155,7 +131229,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19881
+ - uid: 19888
components:
- rot: -1.5707963267948966 rad
pos: 46.5,-2.5
@@ -131163,7 +131237,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19882
+ - uid: 19889
components:
- rot: 1.5707963267948966 rad
pos: 41.5,9.5
@@ -131171,7 +131245,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19883
+ - uid: 19890
components:
- rot: -1.5707963267948966 rad
pos: 57.5,-12.5
@@ -131179,7 +131253,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19884
+ - uid: 19891
components:
- rot: 3.141592653589793 rad
pos: 73.5,-28.5
@@ -131187,14 +131261,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19885
+ - uid: 19892
components:
- pos: 43.5,-37.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19886
+ - uid: 19893
components:
- rot: -1.5707963267948966 rad
pos: 50.5,-43.5
@@ -131202,28 +131276,28 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19887
+ - uid: 19894
components:
- pos: 55.5,-42.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19888
+ - uid: 19895
components:
- pos: 45.5,-42.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19889
+ - uid: 19896
components:
- pos: 56.5,-44.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19890
+ - uid: 19897
components:
- rot: 3.141592653589793 rad
pos: 63.5,-47.5
@@ -131231,7 +131305,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19891
+ - uid: 19898
components:
- rot: 1.5707963267948966 rad
pos: 62.5,-26.5
@@ -131239,14 +131313,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19892
+ - uid: 19899
components:
- pos: 63.5,-2.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19893
+ - uid: 19900
components:
- rot: 3.141592653589793 rad
pos: 64.5,-52.5
@@ -131254,7 +131328,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19894
+ - uid: 19901
components:
- rot: 3.141592653589793 rad
pos: 42.5,-46.5
@@ -131262,7 +131336,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19895
+ - uid: 19902
components:
- rot: -1.5707963267948966 rad
pos: 50.5,-54.5
@@ -131270,7 +131344,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19896
+ - uid: 19903
components:
- rot: 1.5707963267948966 rad
pos: 48.5,-52.5
@@ -131278,7 +131352,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19897
+ - uid: 19904
components:
- rot: 3.141592653589793 rad
pos: 70.5,-49.5
@@ -131286,7 +131360,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19898
+ - uid: 19905
components:
- rot: 1.5707963267948966 rad
pos: 31.5,-52.5
@@ -131294,7 +131368,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19899
+ - uid: 19906
components:
- rot: -1.5707963267948966 rad
pos: 33.5,-56.5
@@ -131302,7 +131376,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19900
+ - uid: 19907
components:
- rot: 1.5707963267948966 rad
pos: 33.5,-48.5
@@ -131310,21 +131384,21 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19901
+ - uid: 19908
components:
- pos: 34.5,-45.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19902
+ - uid: 19909
components:
- pos: 28.5,-48.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19903
+ - uid: 19910
components:
- rot: 3.141592653589793 rad
pos: -13.5,6.5
@@ -131332,7 +131406,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19904
+ - uid: 19911
components:
- rot: 3.141592653589793 rad
pos: -19.5,4.5
@@ -131340,14 +131414,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19905
+ - uid: 19912
components:
- pos: -24.5,-9.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19906
+ - uid: 19913
components:
- rot: 3.141592653589793 rad
pos: -28.5,-11.5
@@ -131355,7 +131429,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19907
+ - uid: 19914
components:
- rot: 1.5707963267948966 rad
pos: -19.5,-19.5
@@ -131363,7 +131437,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19908
+ - uid: 19915
components:
- rot: 3.141592653589793 rad
pos: -23.5,-22.5
@@ -131371,7 +131445,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19909
+ - uid: 19916
components:
- rot: -1.5707963267948966 rad
pos: 54.5,-61.5
@@ -131379,20 +131453,20 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19910
+ - uid: 19917
components:
- rot: 1.5707963267948966 rad
pos: 50.5,-60.5
parent: 2
type: Transform
- - uid: 19911
+ - uid: 19918
components:
- pos: 40.5,-55.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19912
+ - uid: 19919
components:
- rot: 1.5707963267948966 rad
pos: 39.5,-65.5
@@ -131400,7 +131474,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19913
+ - uid: 19920
components:
- rot: -1.5707963267948966 rad
pos: -17.5,-43.5
@@ -131408,7 +131482,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19914
+ - uid: 19921
components:
- rot: 1.5707963267948966 rad
pos: -19.5,-31.5
@@ -131416,7 +131490,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19915
+ - uid: 19922
components:
- rot: 1.5707963267948966 rad
pos: -19.5,-46.5
@@ -131424,7 +131498,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19916
+ - uid: 19923
components:
- rot: -1.5707963267948966 rad
pos: 30.5,-85.5
@@ -131432,7 +131506,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19917
+ - uid: 19924
components:
- rot: -1.5707963267948966 rad
pos: 49.5,-73.5
@@ -131440,7 +131514,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19918
+ - uid: 19925
components:
- rot: -1.5707963267948966 rad
pos: 41.5,-71.5
@@ -131448,14 +131522,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19919
+ - uid: 19926
components:
- pos: 3.5,-57.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19920
+ - uid: 19927
components:
- rot: 3.141592653589793 rad
pos: -29.5,-17.5
@@ -131463,7 +131537,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19921
+ - uid: 19928
components:
- rot: -1.5707963267948966 rad
pos: -31.5,-25.5
@@ -131471,7 +131545,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19922
+ - uid: 19929
components:
- rot: 1.5707963267948966 rad
pos: -34.5,-17.5
@@ -131479,14 +131553,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19923
+ - uid: 19930
components:
- pos: -35.5,-9.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19924
+ - uid: 19931
components:
- rot: -1.5707963267948966 rad
pos: -41.5,-15.5
@@ -131494,14 +131568,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19925
+ - uid: 19932
components:
- pos: -44.5,-9.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19926
+ - uid: 19933
components:
- rot: 3.141592653589793 rad
pos: -47.5,-22.5
@@ -131509,7 +131583,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19927
+ - uid: 19934
components:
- rot: 3.141592653589793 rad
pos: -50.5,-22.5
@@ -131517,7 +131591,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19928
+ - uid: 19935
components:
- rot: 1.5707963267948966 rad
pos: -53.5,-16.5
@@ -131525,14 +131599,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19929
+ - uid: 19936
components:
- pos: -47.5,-5.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19930
+ - uid: 19937
components:
- rot: 3.141592653589793 rad
pos: -56.5,-24.5
@@ -131540,7 +131614,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19931
+ - uid: 19938
components:
- rot: -1.5707963267948966 rad
pos: -67.5,-27.5
@@ -131548,7 +131622,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19932
+ - uid: 19939
components:
- rot: 3.141592653589793 rad
pos: -68.5,-31.5
@@ -131556,7 +131630,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19933
+ - uid: 19940
components:
- rot: -1.5707963267948966 rad
pos: -31.5,-37.5
@@ -131564,7 +131638,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19934
+ - uid: 19941
components:
- rot: 3.141592653589793 rad
pos: -33.5,-34.5
@@ -131572,7 +131646,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19935
+ - uid: 19942
components:
- rot: 1.5707963267948966 rad
pos: -38.5,-33.5
@@ -131580,7 +131654,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19936
+ - uid: 19943
components:
- rot: -1.5707963267948966 rad
pos: -24.5,-33.5
@@ -131588,7 +131662,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19937
+ - uid: 19944
components:
- rot: 1.5707963267948966 rad
pos: -43.5,-34.5
@@ -131599,7 +131673,7 @@ entities:
type: DeviceNetwork
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19938
+ - uid: 19945
components:
- rot: 3.141592653589793 rad
pos: -24.5,-58.5
@@ -131607,7 +131681,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19939
+ - uid: 19946
components:
- rot: 3.141592653589793 rad
pos: -27.5,-70.5
@@ -131615,7 +131689,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19940
+ - uid: 19947
components:
- rot: -1.5707963267948966 rad
pos: -18.5,-57.5
@@ -131623,7 +131697,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19941
+ - uid: 19948
components:
- rot: 3.141592653589793 rad
pos: -42.5,-72.5
@@ -131631,7 +131705,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19942
+ - uid: 19949
components:
- rot: -1.5707963267948966 rad
pos: -19.5,16.5
@@ -131639,7 +131713,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19943
+ - uid: 19950
components:
- rot: 3.141592653589793 rad
pos: -23.5,19.5
@@ -131647,14 +131721,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19944
+ - uid: 19951
components:
- pos: -28.5,21.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19945
+ - uid: 19952
components:
- rot: 3.141592653589793 rad
pos: -33.5,19.5
@@ -131662,7 +131736,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19946
+ - uid: 19953
components:
- rot: 1.5707963267948966 rad
pos: -42.5,20.5
@@ -131670,14 +131744,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19947
+ - uid: 19954
components:
- pos: -33.5,28.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19948
+ - uid: 19955
components:
- rot: -1.5707963267948966 rad
pos: -37.5,29.5
@@ -131685,7 +131759,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19949
+ - uid: 19956
components:
- rot: 1.5707963267948966 rad
pos: -25.5,13.5
@@ -131693,7 +131767,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19950
+ - uid: 19957
components:
- rot: 3.141592653589793 rad
pos: -29.5,-3.5
@@ -131701,7 +131775,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19951
+ - uid: 19958
components:
- rot: 3.141592653589793 rad
pos: -39.5,-0.5
@@ -131709,7 +131783,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19952
+ - uid: 19959
components:
- rot: -1.5707963267948966 rad
pos: -37.5,3.5
@@ -131717,7 +131791,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19953
+ - uid: 19960
components:
- rot: 1.5707963267948966 rad
pos: -39.5,8.5
@@ -131725,14 +131799,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19954
+ - uid: 19961
components:
- pos: -30.5,15.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19955
+ - uid: 19962
components:
- rot: 3.141592653589793 rad
pos: -30.5,9.5
@@ -131740,7 +131814,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19956
+ - uid: 19963
components:
- rot: 3.141592653589793 rad
pos: -52.5,7.5
@@ -131748,21 +131822,21 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19957
+ - uid: 19964
components:
- pos: -51.5,11.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19958
+ - uid: 19965
components:
- pos: -52.5,14.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19959
+ - uid: 19966
components:
- rot: -1.5707963267948966 rad
pos: -42.5,10.5
@@ -131770,7 +131844,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19960
+ - uid: 19967
components:
- rot: 1.5707963267948966 rad
pos: -48.5,3.5
@@ -131778,7 +131852,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19961
+ - uid: 19968
components:
- rot: 3.141592653589793 rad
pos: -47.5,-0.5
@@ -131786,14 +131860,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19962
+ - uid: 19969
components:
- pos: -46.5,15.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19963
+ - uid: 19970
components:
- rot: 1.5707963267948966 rad
pos: 21.5,-54.5
@@ -131801,7 +131875,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19964
+ - uid: 19971
components:
- rot: 3.141592653589793 rad
pos: -54.5,-77.5
@@ -131809,7 +131883,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19965
+ - uid: 19972
components:
- rot: 3.141592653589793 rad
pos: -7.5,-26.5
@@ -131817,14 +131891,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19966
+ - uid: 19973
components:
- pos: 17.5,-42.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19967
+ - uid: 19974
components:
- rot: 1.5707963267948966 rad
pos: -25.5,-2.5
@@ -131832,7 +131906,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19968
+ - uid: 19975
components:
- rot: 1.5707963267948966 rad
pos: -35.5,-42.5
@@ -131840,7 +131914,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19969
+ - uid: 19976
components:
- rot: 1.5707963267948966 rad
pos: 39.5,45.5
@@ -131848,7 +131922,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19970
+ - uid: 19977
components:
- rot: 1.5707963267948966 rad
pos: 51.5,43.5
@@ -131856,14 +131930,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19971
+ - uid: 19978
components:
- pos: 52.5,56.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19972
+ - uid: 19979
components:
- rot: -1.5707963267948966 rad
pos: -12.5,34.5
@@ -131871,7 +131945,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19973
+ - uid: 19980
components:
- rot: 1.5707963267948966 rad
pos: -24.5,30.5
@@ -131879,7 +131953,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19974
+ - uid: 19981
components:
- rot: -1.5707963267948966 rad
pos: -14.5,43.5
@@ -131887,7 +131961,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19975
+ - uid: 19982
components:
- rot: 1.5707963267948966 rad
pos: -20.5,43.5
@@ -131895,12 +131969,12 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19976
+ - uid: 19983
components:
- pos: 70.5,36.5
parent: 2
type: Transform
- - uid: 19977
+ - uid: 19984
components:
- rot: -1.5707963267948966 rad
pos: -11.5,39.5
@@ -131908,7 +131982,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19978
+ - uid: 19985
components:
- rot: -1.5707963267948966 rad
pos: 1.5,69.5
@@ -131916,7 +131990,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19979
+ - uid: 19986
components:
- rot: 1.5707963267948966 rad
pos: -4.5,69.5
@@ -131924,7 +131998,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19980
+ - uid: 19987
components:
- rot: -1.5707963267948966 rad
pos: -1.5,62.5
@@ -131932,14 +132006,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19981
+ - uid: 19988
components:
- pos: -1.5,68.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19982
+ - uid: 19989
components:
- rot: -1.5707963267948966 rad
pos: 0.5,48.5
@@ -131947,7 +132021,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19983
+ - uid: 19990
components:
- rot: 1.5707963267948966 rad
pos: -22.5,58.5
@@ -131955,28 +132029,28 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19984
+ - uid: 19991
components:
- pos: -17.5,63.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19985
+ - uid: 19992
components:
- pos: -21.5,73.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19986
+ - uid: 19993
components:
- pos: -13.5,73.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19987
+ - uid: 19994
components:
- rot: -1.5707963267948966 rad
pos: -12.5,57.5
@@ -131987,7 +132061,7 @@ entities:
type: DeviceNetwork
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19988
+ - uid: 19995
components:
- rot: -1.5707963267948966 rad
pos: 0.5,56.5
@@ -131995,7 +132069,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19989
+ - uid: 19996
components:
- rot: -1.5707963267948966 rad
pos: 30.5,45.5
@@ -132003,7 +132077,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19990
+ - uid: 19997
components:
- rot: 1.5707963267948966 rad
pos: 24.5,45.5
@@ -132011,21 +132085,21 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19991
+ - uid: 19998
components:
- pos: -7.5,-92.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19992
+ - uid: 19999
components:
- pos: -21.5,-97.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19993
+ - uid: 20000
components:
- rot: -1.5707963267948966 rad
pos: -6.5,-98.5
@@ -132033,14 +132107,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19994
+ - uid: 20001
components:
- pos: -6.5,-84.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19995
+ - uid: 20002
components:
- rot: 1.5707963267948966 rad
pos: -34.5,-96.5
@@ -132048,7 +132122,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19996
+ - uid: 20003
components:
- rot: 3.141592653589793 rad
pos: 65.5,-35.5
@@ -132056,14 +132130,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19997
+ - uid: 20004
components:
- pos: 67.5,-33.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19998
+ - uid: 20005
components:
- rot: 3.141592653589793 rad
pos: 73.5,-35.5
@@ -132071,7 +132145,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19999
+ - uid: 20006
components:
- rot: -1.5707963267948966 rad
pos: 75.5,-41.5
@@ -132079,7 +132153,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 20000
+ - uid: 20007
components:
- rot: -1.5707963267948966 rad
pos: 72.5,-46.5
@@ -132087,14 +132161,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 20001
+ - uid: 20008
components:
- pos: 66.5,-38.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 20002
+ - uid: 20009
components:
- rot: 3.141592653589793 rad
pos: 5.5,-30.5
@@ -132102,7 +132176,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 20003
+ - uid: 20010
components:
- rot: 1.5707963267948966 rad
pos: 59.5,-34.5
@@ -132110,13 +132184,13 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 20004
+ - uid: 20011
components:
- rot: 3.141592653589793 rad
pos: -54.5,-63.5
parent: 2
type: Transform
- - uid: 20005
+ - uid: 20012
components:
- rot: -1.5707963267948966 rad
pos: -15.5,25.5
@@ -132124,7 +132198,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 20006
+ - uid: 20013
components:
- rot: 1.5707963267948966 rad
pos: -8.5,-12.5
@@ -132132,7 +132206,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 20007
+ - uid: 20014
components:
- rot: -1.5707963267948966 rad
pos: -7.5,-22.5
@@ -132140,14 +132214,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 20008
+ - uid: 20015
components:
- pos: -10.5,-18.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 20009
+ - uid: 20016
components:
- rot: 3.141592653589793 rad
pos: -30.5,-70.5
@@ -132155,7 +132229,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 20010
+ - uid: 20017
components:
- rot: 3.141592653589793 rad
pos: -28.5,-74.5
@@ -132163,7 +132237,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 20011
+ - uid: 20018
components:
- rot: 1.5707963267948966 rad
pos: 61.5,-39.5
@@ -132171,7 +132245,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 20012
+ - uid: 20019
components:
- rot: 1.5707963267948966 rad
pos: 19.5,-83.5
@@ -132179,14 +132253,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 20013
+ - uid: 20020
components:
- pos: 24.5,-72.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 20014
+ - uid: 20021
components:
- rot: 3.141592653589793 rad
pos: 48.5,-85.5
@@ -132194,7 +132268,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 20015
+ - uid: 20022
components:
- rot: 1.5707963267948966 rad
pos: -16.5,66.5
@@ -132202,7 +132276,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 20016
+ - uid: 20023
components:
- rot: 1.5707963267948966 rad
pos: 7.5,-22.5
@@ -132210,14 +132284,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 20017
+ - uid: 20024
components:
- pos: 45.5,7.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 20018
+ - uid: 20025
components:
- rot: 3.141592653589793 rad
pos: -44.5,30.5
@@ -132225,14 +132299,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 20019
+ - uid: 20026
components:
- pos: -46.5,43.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 20020
+ - uid: 20027
components:
- rot: -1.5707963267948966 rad
pos: 67.5,-31.5
@@ -132240,7 +132314,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 20021
+ - uid: 20028
components:
- rot: 1.5707963267948966 rad
pos: -4.5,16.5
@@ -132251,7 +132325,7 @@ entities:
type: DeviceNetwork
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 20022
+ - uid: 20029
components:
- rot: 1.5707963267948966 rad
pos: -75.5,-41.5
@@ -132260,7 +132334,7 @@ entities:
- ShutdownSubscribers:
- 97
type: DeviceNetwork
- - uid: 20023
+ - uid: 20030
components:
- rot: 3.141592653589793 rad
pos: -1.5,-3.5
@@ -132271,7 +132345,7 @@ entities:
type: DeviceNetwork
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 20024
+ - uid: 20031
components:
- pos: -1.5,-22.5
parent: 2
@@ -132281,7 +132355,7 @@ entities:
type: DeviceNetwork
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 20025
+ - uid: 20032
components:
- rot: 3.141592653589793 rad
pos: 28.5,-38.5
@@ -132292,7 +132366,7 @@ entities:
type: DeviceNetwork
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 20026
+ - uid: 20033
components:
- pos: 40.5,61.5
parent: 2
@@ -132301,7 +132375,13 @@ entities:
type: AtmosPipeColor
- proto: GasVolumePump
entities:
- - uid: 20027
+ - uid: 20034
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 10.5,-46.5
+ parent: 2
+ type: Transform
+ - uid: 20035
components:
- rot: -1.5707963267948966 rad
pos: -39.5,-57.5
@@ -132311,5277 +132391,5289 @@ entities:
type: AtmosPipeColor
- proto: Gauze1
entities:
- - uid: 20028
+ - uid: 20036
components:
- pos: -6.3074856,-49.39305
parent: 2
type: Transform
- proto: GeneratorBasic15kW
entities:
- - uid: 20029
+ - uid: 20037
components:
- pos: -58.5,-87.5
parent: 2
type: Transform
- proto: Girder
entities:
- - uid: 20030
+ - uid: 20038
components:
- pos: -36.5,-68.5
parent: 2
type: Transform
- - uid: 20031
+ - uid: 20039
components:
- pos: 20.5,-54.5
parent: 2
type: Transform
- - uid: 20032
+ - uid: 20040
components:
- pos: -22.5,-64.5
parent: 2
type: Transform
- - uid: 20033
+ - uid: 20041
components:
- pos: -23.5,-42.5
parent: 2
type: Transform
- - uid: 20034
+ - uid: 20042
components:
- pos: -28.5,-39.5
parent: 2
type: Transform
- - uid: 20035
+ - uid: 20043
components:
- pos: -16.5,13.5
parent: 2
type: Transform
- proto: GoldOre1
entities:
- - uid: 20036
+ - uid: 20044
components:
- rot: 3.141592653589793 rad
pos: 19.789879,45.273663
parent: 2
type: Transform
- - uid: 20037
+ - uid: 20045
components:
- pos: 79.30878,-64.25522
parent: 2
type: Transform
- proto: GrassBattlemap
entities:
- - uid: 20038
+ - uid: 20046
components:
- pos: 10.688803,-6.590752
parent: 2
type: Transform
- proto: GravityGenerator
entities:
- - uid: 20039
+ - uid: 20047
components:
- pos: -19.5,2.5
parent: 2
type: Transform
- proto: GrenadeFlashBang
entities:
- - uid: 20040
+ - uid: 20048
components:
- pos: 52.279568,11.553763
parent: 2
type: Transform
- proto: Grille
entities:
- - uid: 20041
+ - uid: 20049
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 8.5,-46.5
+ parent: 2
+ type: Transform
+ - uid: 20050
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 8.5,-45.5
+ parent: 2
+ type: Transform
+ - uid: 20051
components:
- rot: 3.141592653589793 rad
pos: -26.5,-91.5
parent: 2
type: Transform
- - uid: 20042
+ - uid: 20052
components:
- rot: 3.141592653589793 rad
pos: -18.5,-90.5
parent: 2
type: Transform
- - uid: 20043
+ - uid: 20053
components:
- rot: 3.141592653589793 rad
pos: -24.5,-91.5
parent: 2
type: Transform
- - uid: 20044
+ - uid: 20054
components:
- rot: 3.141592653589793 rad
pos: -19.5,-91.5
parent: 2
type: Transform
- - uid: 20045
+ - uid: 20055
components:
- rot: -1.5707963267948966 rad
pos: -6.5,-12.5
parent: 2
type: Transform
- - uid: 20046
+ - uid: 20056
components:
- pos: -51.5,-21.5
parent: 2
type: Transform
- - uid: 20047
+ - uid: 20057
components:
- pos: 9.5,29.5
parent: 2
type: Transform
- - uid: 20048
+ - uid: 20058
components:
- pos: -62.5,-35.5
parent: 2
type: Transform
- - uid: 20049
+ - uid: 20059
components:
- pos: -44.5,-37.5
parent: 2
type: Transform
- - uid: 20050
+ - uid: 20060
components:
- rot: -1.5707963267948966 rad
pos: -77.5,-43.5
parent: 2
type: Transform
- - uid: 20051
+ - uid: 20061
components:
- rot: 3.141592653589793 rad
pos: -71.5,-27.5
parent: 2
type: Transform
- - uid: 20052
+ - uid: 20062
components:
- rot: -1.5707963267948966 rad
pos: -74.5,-42.5
parent: 2
type: Transform
- - uid: 20053
+ - uid: 20063
components:
- pos: -76.5,-32.5
parent: 2
type: Transform
- - uid: 20054
+ - uid: 20064
components:
- rot: 1.5707963267948966 rad
pos: -64.5,-42.5
parent: 2
type: Transform
- - uid: 20055
+ - uid: 20065
components:
- rot: 1.5707963267948966 rad
pos: -64.5,-41.5
parent: 2
type: Transform
- - uid: 20056
+ - uid: 20066
components:
- rot: 1.5707963267948966 rad
pos: -64.5,-40.5
parent: 2
type: Transform
- - uid: 20057
+ - uid: 20067
components:
- rot: 1.5707963267948966 rad
pos: -64.5,-39.5
parent: 2
type: Transform
- - uid: 20058
+ - uid: 20068
components:
- rot: 1.5707963267948966 rad
pos: -74.5,-35.5
parent: 2
type: Transform
- - uid: 20059
+ - uid: 20069
components:
- rot: 1.5707963267948966 rad
pos: -74.5,-34.5
parent: 2
type: Transform
- - uid: 20060
+ - uid: 20070
components:
- rot: -1.5707963267948966 rad
pos: -75.5,-43.5
parent: 2
type: Transform
- - uid: 20061
+ - uid: 20071
components:
- rot: -1.5707963267948966 rad
pos: -77.5,-39.5
parent: 2
type: Transform
- - uid: 20062
+ - uid: 20072
components:
- rot: -1.5707963267948966 rad
pos: -75.5,-39.5
parent: 2
type: Transform
- - uid: 20063
+ - uid: 20073
components:
- rot: -1.5707963267948966 rad
pos: -76.5,-43.5
parent: 2
type: Transform
- - uid: 20064
+ - uid: 20074
components:
- pos: -5.5,20.5
parent: 2
type: Transform
- - uid: 20065
+ - uid: 20075
components:
- rot: 1.5707963267948966 rad
pos: -7.5,13.5
parent: 2
type: Transform
- - uid: 20066
+ - uid: 20076
components:
- pos: -4.5,20.5
parent: 2
type: Transform
- - uid: 20067
+ - uid: 20077
components:
- rot: 3.141592653589793 rad
pos: 5.5,18.5
parent: 2
type: Transform
- - uid: 20068
+ - uid: 20078
components:
- rot: -1.5707963267948966 rad
pos: -46.5,45.5
parent: 2
type: Transform
- - uid: 20069
+ - uid: 20079
components:
- rot: -1.5707963267948966 rad
pos: -45.5,45.5
parent: 2
type: Transform
- - uid: 20070
+ - uid: 20080
components:
- rot: -1.5707963267948966 rad
pos: -47.5,45.5
parent: 2
type: Transform
- - uid: 20071
+ - uid: 20081
components:
- pos: 32.5,-9.5
parent: 2
type: Transform
- - uid: 20072
+ - uid: 20082
components:
- rot: 3.141592653589793 rad
pos: 28.5,-63.5
parent: 2
type: Transform
- - uid: 20073
+ - uid: 20083
components:
- pos: 19.5,-0.5
parent: 2
type: Transform
- - uid: 20074
+ - uid: 20084
components:
- pos: -18.5,-88.5
parent: 2
type: Transform
- - uid: 20075
+ - uid: 20085
components:
- pos: -18.5,-58.5
parent: 2
type: Transform
- - uid: 20076
+ - uid: 20086
components:
- pos: 31.5,-15.5
parent: 2
type: Transform
- - uid: 20077
+ - uid: 20087
components:
- pos: -9.5,-55.5
parent: 2
type: Transform
- - uid: 20078
+ - uid: 20088
components:
- pos: -12.5,-55.5
parent: 2
type: Transform
- - uid: 20079
+ - uid: 20089
components:
- pos: -4.5,-56.5
parent: 2
type: Transform
- - uid: 20080
+ - uid: 20090
components:
- pos: 22.5,-20.5
parent: 2
type: Transform
- - uid: 20081
+ - uid: 20091
components:
- pos: 21.5,5.5
parent: 2
type: Transform
- - uid: 20082
+ - uid: 20092
components:
- pos: 23.5,5.5
parent: 2
type: Transform
- - uid: 20083
+ - uid: 20093
components:
- pos: 25.5,5.5
parent: 2
type: Transform
- - uid: 20084
+ - uid: 20094
components:
- pos: 3.5,-39.5
parent: 2
type: Transform
- - uid: 20085
+ - uid: 20095
components:
- pos: -7.5,-56.5
parent: 2
type: Transform
- - uid: 20086
+ - uid: 20096
components:
- pos: 1.5,-47.5
parent: 2
type: Transform
- - uid: 20087
+ - uid: 20097
components:
- pos: 29.5,26.5
parent: 2
type: Transform
- - uid: 20088
+ - uid: 20098
components:
- pos: -13.5,-56.5
parent: 2
type: Transform
- - uid: 20089
+ - uid: 20099
components:
- pos: -7.5,-57.5
parent: 2
type: Transform
- - uid: 20090
+ - uid: 20100
components:
- pos: 7.5,-59.5
parent: 2
type: Transform
- - uid: 20091
+ - uid: 20101
components:
- pos: -18.5,-68.5
parent: 2
type: Transform
- - uid: 20092
+ - uid: 20102
components:
- pos: -20.5,-68.5
parent: 2
type: Transform
- - uid: 20093
+ - uid: 20103
components:
- pos: -3.5,-44.5
parent: 2
type: Transform
- - uid: 20094
+ - uid: 20104
components:
- pos: 12.5,-34.5
parent: 2
type: Transform
- - uid: 20095
+ - uid: 20105
components:
- pos: -1.5,49.5
parent: 2
type: Transform
- - uid: 20096
+ - uid: 20106
components:
- rot: 3.141592653589793 rad
pos: 3.5,-44.5
parent: 2
type: Transform
- - uid: 20097
+ - uid: 20107
components:
- pos: 7.5,18.5
parent: 2
type: Transform
- - uid: 20098
+ - uid: 20108
components:
- rot: 1.5707963267948966 rad
pos: 23.5,-46.5
parent: 2
type: Transform
- - uid: 20099
+ - uid: 20109
components:
- pos: 2.5,-62.5
parent: 2
type: Transform
- - uid: 20100
+ - uid: 20110
components:
- pos: 3.5,-78.5
parent: 2
type: Transform
- - uid: 20101
+ - uid: 20111
components:
- pos: -6.5,-55.5
parent: 2
type: Transform
- - uid: 20102
+ - uid: 20112
components:
- pos: -12.5,-58.5
parent: 2
type: Transform
- - uid: 20103
+ - uid: 20113
components:
- rot: 1.5707963267948966 rad
pos: -17.5,26.5
parent: 2
type: Transform
- - uid: 20104
+ - uid: 20114
components:
- pos: -1.5,-35.5
parent: 2
type: Transform
- - uid: 20105
+ - uid: 20115
components:
- pos: -28.5,-47.5
parent: 2
type: Transform
- - uid: 20106
+ - uid: 20116
components:
- pos: 24.5,-60.5
parent: 2
type: Transform
- - uid: 20107
+ - uid: 20117
components:
- rot: 3.141592653589793 rad
pos: 22.5,30.5
parent: 2
type: Transform
- - uid: 20108
+ - uid: 20118
components:
- pos: 21.5,-3.5
parent: 2
type: Transform
- - uid: 20109
+ - uid: 20119
components:
- pos: 23.5,-3.5
parent: 2
type: Transform
- - uid: 20110
+ - uid: 20120
components:
- pos: -6.5,-58.5
parent: 2
type: Transform
- - uid: 20111
+ - uid: 20121
components:
- pos: 25.5,24.5
parent: 2
type: Transform
- - uid: 20112
+ - uid: 20122
components:
- pos: -10.5,-57.5
parent: 2
type: Transform
- - uid: 20113
+ - uid: 20123
components:
- pos: 29.5,9.5
parent: 2
type: Transform
- - uid: 20114
+ - uid: 20124
components:
- rot: 3.141592653589793 rad
pos: 22.5,32.5
parent: 2
type: Transform
- - uid: 20115
+ - uid: 20125
components:
- pos: 15.5,18.5
parent: 2
type: Transform
- - uid: 20116
+ - uid: 20126
components:
- pos: -13.5,-11.5
parent: 2
type: Transform
- - uid: 20117
+ - uid: 20127
components:
- rot: 3.141592653589793 rad
pos: 33.5,-63.5
parent: 2
type: Transform
- - uid: 20118
+ - uid: 20128
components:
- rot: 3.141592653589793 rad
pos: 22.5,-55.5
parent: 2
type: Transform
- - uid: 20119
+ - uid: 20129
components:
- pos: -9.5,-62.5
parent: 2
type: Transform
- - uid: 20120
+ - uid: 20130
components:
- pos: 4.5,-85.5
parent: 2
type: Transform
- - uid: 20121
+ - uid: 20131
components:
- pos: 18.5,-38.5
parent: 2
type: Transform
- - uid: 20122
+ - uid: 20132
components:
- pos: 17.5,-36.5
parent: 2
type: Transform
- - uid: 20123
+ - uid: 20133
components:
- pos: 17.5,-34.5
parent: 2
type: Transform
- - uid: 20124
+ - uid: 20134
components:
- pos: -27.5,-89.5
parent: 2
type: Transform
- - uid: 20125
+ - uid: 20135
components:
- pos: -1.5,-33.5
parent: 2
type: Transform
- - uid: 20126
+ - uid: 20136
components:
- pos: 4.5,-84.5
parent: 2
type: Transform
- - uid: 20127
+ - uid: 20137
components:
- pos: -14.5,-77.5
parent: 2
type: Transform
- - uid: 20128
+ - uid: 20138
components:
- pos: 4.5,-88.5
parent: 2
type: Transform
- - uid: 20129
+ - uid: 20139
components:
- pos: 4.5,-81.5
parent: 2
type: Transform
- - uid: 20130
+ - uid: 20140
components:
- pos: -18.5,-89.5
parent: 2
type: Transform
- - uid: 20131
+ - uid: 20141
components:
- pos: 4.5,-87.5
parent: 2
type: Transform
- - uid: 20132
+ - uid: 20142
components:
- pos: 19.5,0.5
parent: 2
type: Transform
- - uid: 20133
+ - uid: 20143
components:
- pos: 19.5,-38.5
parent: 2
type: Transform
- - uid: 20134
+ - uid: 20144
components:
- pos: 23.5,-12.5
parent: 2
type: Transform
- - uid: 20135
+ - uid: 20145
components:
- pos: 21.5,-15.5
parent: 2
type: Transform
- - uid: 20136
+ - uid: 20146
components:
- pos: 19.5,1.5
parent: 2
type: Transform
- - uid: 20137
+ - uid: 20147
components:
- pos: 28.5,-20.5
parent: 2
type: Transform
- - uid: 20138
+ - uid: 20148
components:
- rot: 3.141592653589793 rad
pos: 20.5,-55.5
parent: 2
type: Transform
- - uid: 20139
+ - uid: 20149
components:
- rot: 3.141592653589793 rad
pos: 21.5,-55.5
parent: 2
type: Transform
- - uid: 20140
+ - uid: 20150
components:
- pos: 18.5,-66.5
parent: 2
type: Transform
- - uid: 20141
+ - uid: 20151
components:
- pos: 18.5,-65.5
parent: 2
type: Transform
- - uid: 20142
+ - uid: 20152
components:
- rot: 3.141592653589793 rad
pos: 28.5,-62.5
parent: 2
type: Transform
- - uid: 20143
+ - uid: 20153
components:
- pos: 42.5,-23.5
parent: 2
type: Transform
- - uid: 20144
+ - uid: 20154
components:
- pos: 41.5,-23.5
parent: 2
type: Transform
- - uid: 20145
+ - uid: 20155
components:
- rot: 3.141592653589793 rad
pos: 31.5,-64.5
parent: 2
type: Transform
- - uid: 20146
+ - uid: 20156
components:
- pos: -21.5,11.5
parent: 2
type: Transform
- - uid: 20147
+ - uid: 20157
components:
- pos: -10.5,-11.5
parent: 2
type: Transform
- - uid: 20148
+ - uid: 20158
components:
- pos: -12.5,-16.5
parent: 2
type: Transform
- - uid: 20149
+ - uid: 20159
components:
- rot: -1.5707963267948966 rad
pos: -26.5,-9.5
parent: 2
type: Transform
- - uid: 20150
+ - uid: 20160
components:
- pos: 12.5,-33.5
parent: 2
type: Transform
- - uid: 20151
+ - uid: 20161
components:
- pos: 12.5,-32.5
parent: 2
type: Transform
- - uid: 20152
+ - uid: 20162
components:
- rot: 3.141592653589793 rad
pos: 26.5,-20.5
parent: 2
type: Transform
- - uid: 20153
+ - uid: 20163
components:
- pos: 3.5,-36.5
parent: 2
type: Transform
- - uid: 20154
+ - uid: 20164
components:
- pos: 2.5,-39.5
parent: 2
type: Transform
- - uid: 20155
+ - uid: 20165
components:
- rot: 3.141592653589793 rad
pos: 22.5,29.5
parent: 2
type: Transform
- - uid: 20156
+ - uid: 20166
components:
- rot: 3.141592653589793 rad
pos: 22.5,31.5
parent: 2
type: Transform
- - uid: 20157
+ - uid: 20167
components:
- rot: 3.141592653589793 rad
pos: 22.5,33.5
parent: 2
type: Transform
- - uid: 20158
+ - uid: 20168
components:
- rot: 3.141592653589793 rad
pos: 22.5,37.5
parent: 2
type: Transform
- - uid: 20159
+ - uid: 20169
components:
- pos: 5.5,-58.5
parent: 2
type: Transform
- - uid: 20160
+ - uid: 20170
components:
- rot: -1.5707963267948966 rad
pos: 43.5,5.5
parent: 2
type: Transform
- - uid: 20161
+ - uid: 20171
components:
- pos: 4.5,-86.5
parent: 2
type: Transform
- - uid: 20162
+ - uid: 20172
components:
- pos: 4.5,-83.5
parent: 2
type: Transform
- - uid: 20163
+ - uid: 20173
components:
- pos: 18.5,33.5
parent: 2
type: Transform
- - uid: 20164
+ - uid: 20174
components:
- pos: -1.5,-31.5
parent: 2
type: Transform
- - uid: 20165
+ - uid: 20175
components:
- pos: 15.5,-68.5
parent: 2
type: Transform
- - uid: 20166
+ - uid: 20176
components:
- pos: 42.5,-28.5
parent: 2
type: Transform
- - uid: 20167
+ - uid: 20177
components:
- pos: 41.5,-28.5
parent: 2
type: Transform
- - uid: 20168
+ - uid: 20178
components:
- rot: -1.5707963267948966 rad
pos: -31.5,-77.5
parent: 2
type: Transform
- - uid: 20169
+ - uid: 20179
components:
- pos: -1.5,-32.5
parent: 2
type: Transform
- - uid: 20170
+ - uid: 20180
components:
- rot: 3.141592653589793 rad
pos: 6.5,-20.5
parent: 2
type: Transform
- - uid: 20171
+ - uid: 20181
components:
- pos: 0.5,-62.5
parent: 2
type: Transform
- - uid: 20172
+ - uid: 20182
components:
- pos: 7.5,-61.5
parent: 2
type: Transform
- - uid: 20173
+ - uid: 20183
components:
- pos: 26.5,-3.5
parent: 2
type: Transform
- - uid: 20174
+ - uid: 20184
components:
- pos: -13.5,37.5
parent: 2
type: Transform
- - uid: 20175
+ - uid: 20185
components:
- pos: -15.5,-77.5
parent: 2
type: Transform
- - uid: 20176
+ - uid: 20186
components:
- pos: 3.5,-79.5
parent: 2
type: Transform
- - uid: 20177
+ - uid: 20187
components:
- pos: 19.5,2.5
parent: 2
type: Transform
- - uid: 20178
+ - uid: 20188
components:
- rot: -1.5707963267948966 rad
pos: -21.5,-20.5
parent: 2
type: Transform
- - uid: 20179
+ - uid: 20189
components:
- pos: 34.5,9.5
parent: 2
type: Transform
- - uid: 20180
+ - uid: 20190
components:
- pos: 35.5,4.5
parent: 2
type: Transform
- - uid: 20181
+ - uid: 20191
components:
- pos: 1.5,-56.5
parent: 2
type: Transform
- - uid: 20182
+ - uid: 20192
components:
- pos: 1.5,-57.5
parent: 2
type: Transform
- - uid: 20183
+ - uid: 20193
components:
- pos: -10.5,-56.5
parent: 2
type: Transform
- - uid: 20184
+ - uid: 20194
components:
- pos: -13.5,-57.5
parent: 2
type: Transform
- - uid: 20185
+ - uid: 20195
components:
- pos: -4.5,-44.5
parent: 2
type: Transform
- - uid: 20186
+ - uid: 20196
components:
- pos: -5.5,-44.5
parent: 2
type: Transform
- - uid: 20187
+ - uid: 20197
components:
- pos: 5.5,-44.5
parent: 2
type: Transform
- - uid: 20188
+ - uid: 20198
components:
- pos: 4.5,-44.5
parent: 2
type: Transform
- - uid: 20189
+ - uid: 20199
components:
- pos: 18.5,32.5
parent: 2
type: Transform
- - uid: 20190
+ - uid: 20200
components:
- pos: -0.5,-62.5
parent: 2
type: Transform
- - uid: 20191
+ - uid: 20201
components:
- pos: -8.5,-62.5
parent: 2
type: Transform
- - uid: 20192
+ - uid: 20202
components:
- pos: 3.5,-77.5
parent: 2
type: Transform
- - uid: 20193
+ - uid: 20203
components:
- rot: 3.141592653589793 rad
pos: 33.5,-62.5
parent: 2
type: Transform
- - uid: 20194
+ - uid: 20204
components:
- rot: 3.141592653589793 rad
pos: 30.5,-64.5
parent: 2
type: Transform
- - uid: 20195
+ - uid: 20205
components:
- pos: 9.5,14.5
parent: 2
type: Transform
- - uid: 20196
+ - uid: 20206
components:
- rot: 3.141592653589793 rad
pos: 22.5,28.5
parent: 2
type: Transform
- - uid: 20197
+ - uid: 20207
components:
- pos: 68.5,-56.5
parent: 2
type: Transform
- - uid: 20198
+ - uid: 20208
components:
- pos: -1.5,-57.5
parent: 2
type: Transform
- - uid: 20199
+ - uid: 20209
components:
- pos: -1.5,-56.5
parent: 2
type: Transform
- - uid: 20200
+ - uid: 20210
components:
- pos: 2.5,-58.5
parent: 2
type: Transform
- - uid: 20201
+ - uid: 20211
components:
- pos: -3.5,-58.5
parent: 2
type: Transform
- - uid: 20202
+ - uid: 20212
components:
- pos: 4.5,-62.5
parent: 2
type: Transform
- - uid: 20203
+ - uid: 20213
components:
- pos: -0.5,-58.5
parent: 2
type: Transform
- - uid: 20204
+ - uid: 20214
components:
- pos: 31.5,-38.5
parent: 2
type: Transform
- - uid: 20205
+ - uid: 20215
components:
- pos: 33.5,-36.5
parent: 2
type: Transform
- - uid: 20206
+ - uid: 20216
components:
- pos: 33.5,-34.5
parent: 2
type: Transform
- - uid: 20207
+ - uid: 20217
components:
- pos: 26.5,5.5
parent: 2
type: Transform
- - uid: 20208
+ - uid: 20218
components:
- pos: 9.5,13.5
parent: 2
type: Transform
- - uid: 20209
+ - uid: 20219
components:
- pos: 17.5,18.5
parent: 2
type: Transform
- - uid: 20210
+ - uid: 20220
components:
- rot: 3.141592653589793 rad
pos: -7.5,-76.5
parent: 2
type: Transform
- - uid: 20211
+ - uid: 20221
components:
- pos: 24.5,-59.5
parent: 2
type: Transform
- - uid: 20212
+ - uid: 20222
components:
- pos: -29.5,45.5
parent: 2
type: Transform
- - uid: 20213
+ - uid: 20223
components:
- pos: 24.5,-58.5
parent: 2
type: Transform
- - uid: 20214
+ - uid: 20224
components:
- pos: -6.5,-36.5
parent: 2
type: Transform
- - uid: 20215
+ - uid: 20225
components:
- pos: 19.5,-1.5
parent: 2
type: Transform
- - uid: 20216
+ - uid: 20226
components:
- pos: -1.5,-34.5
parent: 2
type: Transform
- - uid: 20217
+ - uid: 20227
components:
- pos: -27.5,-88.5
parent: 2
type: Transform
- - uid: 20218
+ - uid: 20228
components:
- pos: 17.5,-35.5
parent: 2
type: Transform
- - uid: 20219
+ - uid: 20229
components:
- pos: 33.5,-35.5
parent: 2
type: Transform
- - uid: 20220
+ - uid: 20230
components:
- pos: 22.5,5.5
parent: 2
type: Transform
- - uid: 20221
+ - uid: 20231
components:
- pos: 27.5,5.5
parent: 2
type: Transform
- - uid: 20222
+ - uid: 20232
components:
- pos: 35.5,7.5
parent: 2
type: Transform
- - uid: 20223
+ - uid: 20233
components:
- pos: 32.5,9.5
parent: 2
type: Transform
- - uid: 20224
+ - uid: 20234
components:
- rot: 3.141592653589793 rad
pos: 22.5,34.5
parent: 2
type: Transform
- - uid: 20225
+ - uid: 20235
components:
- pos: -3.5,-55.5
parent: 2
type: Transform
- - uid: 20226
+ - uid: 20236
components:
- pos: -0.5,-55.5
parent: 2
type: Transform
- - uid: 20227
+ - uid: 20237
components:
- pos: 2.5,-55.5
parent: 2
type: Transform
- - uid: 20228
+ - uid: 20238
components:
- pos: -20.5,-58.5
parent: 2
type: Transform
- - uid: 20229
+ - uid: 20239
components:
- pos: -9.5,-58.5
parent: 2
type: Transform
- - uid: 20230
+ - uid: 20240
components:
- rot: -1.5707963267948966 rad
pos: -31.5,-79.5
parent: 2
type: Transform
- - uid: 20231
+ - uid: 20241
components:
- rot: 3.141592653589793 rad
pos: 37.5,-35.5
parent: 2
type: Transform
- - uid: 20232
+ - uid: 20242
components:
- pos: 33.5,-15.5
parent: 2
type: Transform
- - uid: 20233
+ - uid: 20243
components:
- pos: -13.5,39.5
parent: 2
type: Transform
- - uid: 20234
+ - uid: 20244
components:
- pos: -4.5,-57.5
parent: 2
type: Transform
- - uid: 20235
+ - uid: 20245
components:
- pos: 19.5,3.5
parent: 2
type: Transform
- - uid: 20236
+ - uid: 20246
components:
- pos: 4.5,-82.5
parent: 2
type: Transform
- - uid: 20237
+ - uid: 20247
components:
- pos: 32.5,-38.5
parent: 2
type: Transform
- - uid: 20238
+ - uid: 20248
components:
- rot: 3.141592653589793 rad
pos: 6.5,-19.5
parent: 2
type: Transform
- - uid: 20239
+ - uid: 20249
components:
- pos: 23.5,-20.5
parent: 2
type: Transform
- - uid: 20240
+ - uid: 20250
components:
- pos: 25.5,-20.5
parent: 2
type: Transform
- - uid: 20241
+ - uid: 20251
components:
- pos: 27.5,-20.5
parent: 2
type: Transform
- - uid: 20242
+ - uid: 20252
components:
- pos: 19.5,-15.5
parent: 2
type: Transform
- - uid: 20243
+ - uid: 20253
components:
- pos: 23.5,-11.5
parent: 2
type: Transform
- - uid: 20244
+ - uid: 20254
components:
- pos: 25.5,-3.5
parent: 2
type: Transform
- - uid: 20245
+ - uid: 20255
components:
- pos: 27.5,-3.5
parent: 2
type: Transform
- - uid: 20246
+ - uid: 20256
components:
- pos: 22.5,-3.5
parent: 2
type: Transform
- - uid: 20247
+ - uid: 20257
components:
- rot: 3.141592653589793 rad
pos: -9.5,-76.5
parent: 2
type: Transform
- - uid: 20248
+ - uid: 20258
components:
- rot: 3.141592653589793 rad
pos: 24.5,-20.5
parent: 2
type: Transform
- - uid: 20249
+ - uid: 20259
components:
- pos: 16.5,-68.5
parent: 2
type: Transform
- - uid: 20250
+ - uid: 20260
components:
- rot: 3.141592653589793 rad
pos: 31.5,13.5
parent: 2
type: Transform
- - uid: 20251
+ - uid: 20261
components:
- rot: 3.141592653589793 rad
pos: 34.5,13.5
parent: 2
type: Transform
- - uid: 20252
+ - uid: 20262
components:
- pos: -6.5,-37.5
parent: 2
type: Transform
- - uid: 20253
+ - uid: 20263
components:
- pos: -6.5,-38.5
parent: 2
type: Transform
- - uid: 20254
+ - uid: 20264
components:
- pos: -9.5,-40.5
parent: 2
type: Transform
- - uid: 20255
+ - uid: 20265
components:
- pos: -10.5,-40.5
parent: 2
type: Transform
- - uid: 20256
+ - uid: 20266
components:
- pos: -11.5,-40.5
parent: 2
type: Transform
- - uid: 20257
+ - uid: 20267
components:
- rot: -1.5707963267948966 rad
pos: 68.5,-4.5
parent: 2
type: Transform
- - uid: 20258
+ - uid: 20268
components:
- pos: -12.5,-11.5
parent: 2
type: Transform
- - uid: 20259
+ - uid: 20269
components:
- pos: -9.5,-11.5
parent: 2
type: Transform
- - uid: 20260
+ - uid: 20270
components:
- pos: -8.5,-11.5
parent: 2
type: Transform
- - uid: 20261
+ - uid: 20271
components:
- pos: -10.5,-16.5
parent: 2
type: Transform
- - uid: 20262
+ - uid: 20272
components:
- rot: 3.141592653589793 rad
pos: 28.5,13.5
parent: 2
type: Transform
- - uid: 20263
+ - uid: 20273
components:
- rot: 3.141592653589793 rad
pos: 39.5,8.5
parent: 2
type: Transform
- - uid: 20264
+ - uid: 20274
components:
- rot: 3.141592653589793 rad
pos: 39.5,5.5
parent: 2
type: Transform
- - uid: 20265
+ - uid: 20275
components:
- pos: -12.5,14.5
parent: 2
type: Transform
- - uid: 20266
+ - uid: 20276
components:
- rot: 1.5707963267948966 rad
pos: 20.5,-44.5
parent: 2
type: Transform
- - uid: 20267
+ - uid: 20277
components:
- pos: 37.5,-36.5
parent: 2
type: Transform
- - uid: 20268
+ - uid: 20278
components:
- pos: 33.5,37.5
parent: 2
type: Transform
- - uid: 20269
+ - uid: 20279
components:
- pos: 32.5,37.5
parent: 2
type: Transform
- - uid: 20270
+ - uid: 20280
components:
- pos: 31.5,37.5
parent: 2
type: Transform
- - uid: 20271
+ - uid: 20281
components:
- pos: 30.5,37.5
parent: 2
type: Transform
- - uid: 20272
+ - uid: 20282
components:
- pos: 29.5,37.5
parent: 2
type: Transform
- - uid: 20273
+ - uid: 20283
components:
- pos: 28.5,37.5
parent: 2
type: Transform
- - uid: 20274
+ - uid: 20284
components:
- pos: 27.5,37.5
parent: 2
type: Transform
- - uid: 20275
+ - uid: 20285
components:
- pos: 26.5,37.5
parent: 2
type: Transform
- - uid: 20276
+ - uid: 20286
components:
- pos: 25.5,37.5
parent: 2
type: Transform
- - uid: 20277
+ - uid: 20287
components:
- rot: 3.141592653589793 rad
pos: 23.5,37.5
parent: 2
type: Transform
- - uid: 20278
+ - uid: 20288
components:
- pos: 43.5,11.5
parent: 2
type: Transform
- - uid: 20279
+ - uid: 20289
components:
- pos: 43.5,10.5
parent: 2
type: Transform
- - uid: 20280
+ - uid: 20290
components:
- pos: 53.5,14.5
parent: 2
type: Transform
- - uid: 20281
+ - uid: 20291
components:
- pos: 52.5,14.5
parent: 2
type: Transform
- - uid: 20282
+ - uid: 20292
components:
- pos: 54.5,14.5
parent: 2
type: Transform
- - uid: 20283
+ - uid: 20293
components:
- pos: 51.5,13.5
parent: 2
type: Transform
- - uid: 20284
+ - uid: 20294
components:
- pos: 51.5,11.5
parent: 2
type: Transform
- - uid: 20285
+ - uid: 20295
components:
- pos: 55.5,13.5
parent: 2
type: Transform
- - uid: 20286
+ - uid: 20296
components:
- pos: 55.5,12.5
parent: 2
type: Transform
- - uid: 20287
+ - uid: 20297
components:
- pos: 55.5,11.5
parent: 2
type: Transform
- - uid: 20288
+ - uid: 20298
components:
- pos: 52.5,10.5
parent: 2
type: Transform
- - uid: 20289
+ - uid: 20299
components:
- pos: 54.5,10.5
parent: 2
type: Transform
- - uid: 20290
+ - uid: 20300
components:
- pos: 27.5,22.5
parent: 2
type: Transform
- - uid: 20291
+ - uid: 20301
components:
- pos: -15.5,2.5
parent: 2
type: Transform
- - uid: 20292
+ - uid: 20302
components:
- pos: 48.5,-0.5
parent: 2
type: Transform
- - uid: 20293
+ - uid: 20303
components:
- pos: 43.5,-0.5
parent: 2
type: Transform
- - uid: 20294
+ - uid: 20304
components:
- pos: 42.5,-0.5
parent: 2
type: Transform
- - uid: 20295
+ - uid: 20305
components:
- pos: 41.5,-0.5
parent: 2
type: Transform
- - uid: 20296
+ - uid: 20306
components:
- pos: 39.5,-0.5
parent: 2
type: Transform
- - uid: 20297
+ - uid: 20307
components:
- pos: 37.5,-0.5
parent: 2
type: Transform
- - uid: 20298
+ - uid: 20308
components:
- pos: 35.5,-1.5
parent: 2
type: Transform
- - uid: 20299
+ - uid: 20309
components:
- pos: 35.5,-2.5
parent: 2
type: Transform
- - uid: 20300
+ - uid: 20310
components:
- pos: 35.5,-4.5
parent: 2
type: Transform
- - uid: 20301
+ - uid: 20311
components:
- pos: 35.5,-5.5
parent: 2
type: Transform
- - uid: 20302
+ - uid: 20312
components:
- rot: -1.5707963267948966 rad
pos: 36.5,24.5
parent: 2
type: Transform
- - uid: 20303
+ - uid: 20313
components:
- rot: -1.5707963267948966 rad
pos: 38.5,24.5
parent: 2
type: Transform
- - uid: 20304
+ - uid: 20314
components:
- rot: -1.5707963267948966 rad
pos: 40.5,24.5
parent: 2
type: Transform
- - uid: 20305
+ - uid: 20315
components:
- rot: -1.5707963267948966 rad
pos: 42.5,24.5
parent: 2
type: Transform
- - uid: 20306
+ - uid: 20316
components:
- rot: 3.141592653589793 rad
pos: 22.5,27.5
parent: 2
type: Transform
- - uid: 20307
+ - uid: 20317
components:
- pos: 43.5,7.5
parent: 2
type: Transform
- - uid: 20308
+ - uid: 20318
components:
- pos: 66.5,25.5
parent: 2
type: Transform
- - uid: 20309
+ - uid: 20319
components:
- pos: 66.5,23.5
parent: 2
type: Transform
- - uid: 20310
+ - uid: 20320
components:
- pos: 64.5,27.5
parent: 2
type: Transform
- - uid: 20311
+ - uid: 20321
components:
- pos: 62.5,27.5
parent: 2
type: Transform
- - uid: 20312
+ - uid: 20322
components:
- rot: -1.5707963267948966 rad
pos: 42.5,-44.5
parent: 2
type: Transform
- - uid: 20313
+ - uid: 20323
components:
- pos: 46.5,9.5
parent: 2
type: Transform
- - uid: 20314
+ - uid: 20324
components:
- rot: -1.5707963267948966 rad
pos: 67.5,-7.5
parent: 2
type: Transform
- - uid: 20315
+ - uid: 20325
components:
- rot: -1.5707963267948966 rad
pos: 66.5,-0.5
parent: 2
type: Transform
- - uid: 20316
+ - uid: 20326
components:
- rot: -1.5707963267948966 rad
pos: 66.5,-1.5
parent: 2
type: Transform
- - uid: 20317
+ - uid: 20327
components:
- pos: 60.5,-4.5
parent: 2
type: Transform
- - uid: 20318
+ - uid: 20328
components:
- rot: -1.5707963267948966 rad
pos: 67.5,-8.5
parent: 2
type: Transform
- - uid: 20319
+ - uid: 20329
components:
- rot: -1.5707963267948966 rad
pos: 67.5,-9.5
parent: 2
type: Transform
- - uid: 20320
+ - uid: 20330
components:
- rot: -1.5707963267948966 rad
pos: 68.5,-2.5
parent: 2
type: Transform
- - uid: 20321
+ - uid: 20331
components:
- rot: -1.5707963267948966 rad
pos: 68.5,-10.5
parent: 2
type: Transform
- - uid: 20322
+ - uid: 20332
components:
- rot: -1.5707963267948966 rad
pos: 68.5,-12.5
parent: 2
type: Transform
- - uid: 20323
+ - uid: 20333
components:
- rot: -1.5707963267948966 rad
pos: 68.5,-6.5
parent: 2
type: Transform
- - uid: 20324
+ - uid: 20334
components:
- pos: 61.5,-18.5
parent: 2
type: Transform
- - uid: 20325
+ - uid: 20335
components:
- pos: 63.5,-18.5
parent: 2
type: Transform
- - uid: 20326
+ - uid: 20336
components:
- pos: 61.5,-20.5
parent: 2
type: Transform
- - uid: 20327
+ - uid: 20337
components:
- pos: 63.5,-20.5
parent: 2
type: Transform
- - uid: 20328
+ - uid: 20338
components:
- pos: 61.5,-22.5
parent: 2
type: Transform
- - uid: 20329
+ - uid: 20339
components:
- pos: 63.5,-22.5
parent: 2
type: Transform
- - uid: 20330
+ - uid: 20340
components:
- pos: 61.5,-24.5
parent: 2
type: Transform
- - uid: 20331
+ - uid: 20341
components:
- pos: 63.5,-24.5
parent: 2
type: Transform
- - uid: 20332
+ - uid: 20342
components:
- pos: 63.5,-26.5
parent: 2
type: Transform
- - uid: 20333
+ - uid: 20343
components:
- pos: 49.5,-62.5
parent: 2
type: Transform
- - uid: 20334
+ - uid: 20344
components:
- pos: 56.5,-46.5
parent: 2
type: Transform
- - uid: 20335
+ - uid: 20345
components:
- pos: 63.5,-50.5
parent: 2
type: Transform
- - uid: 20336
+ - uid: 20346
components:
- pos: 61.5,-50.5
parent: 2
type: Transform
- - uid: 20337
+ - uid: 20347
components:
- pos: 58.5,-51.5
parent: 2
type: Transform
- - uid: 20338
+ - uid: 20348
components:
- pos: 58.5,-52.5
parent: 2
type: Transform
- - uid: 20339
+ - uid: 20349
components:
- pos: 54.5,-51.5
parent: 2
type: Transform
- - uid: 20340
+ - uid: 20350
components:
- pos: 54.5,-52.5
parent: 2
type: Transform
- - uid: 20341
+ - uid: 20351
components:
- pos: 54.5,-53.5
parent: 2
type: Transform
- - uid: 20342
+ - uid: 20352
components:
- pos: 61.5,-56.5
parent: 2
type: Transform
- - uid: 20343
+ - uid: 20353
components:
- pos: 62.5,-56.5
parent: 2
type: Transform
- - uid: 20344
+ - uid: 20354
components:
- pos: 63.5,-56.5
parent: 2
type: Transform
- - uid: 20345
+ - uid: 20355
components:
- pos: 66.5,-51.5
parent: 2
type: Transform
- - uid: 20346
+ - uid: 20356
components:
- pos: 66.5,-52.5
parent: 2
type: Transform
- - uid: 20347
+ - uid: 20357
components:
- pos: 36.5,33.5
parent: 2
type: Transform
- - uid: 20348
+ - uid: 20358
components:
- pos: 36.5,32.5
parent: 2
type: Transform
- - uid: 20349
+ - uid: 20359
components:
- pos: 36.5,31.5
parent: 2
type: Transform
- - uid: 20350
+ - uid: 20360
components:
- pos: 36.5,30.5
parent: 2
type: Transform
- - uid: 20351
+ - uid: 20361
components:
- pos: 36.5,29.5
parent: 2
type: Transform
- - uid: 20352
+ - uid: 20362
components:
- pos: 36.5,28.5
parent: 2
type: Transform
- - uid: 20353
+ - uid: 20363
components:
- pos: 36.5,27.5
parent: 2
type: Transform
- - uid: 20354
+ - uid: 20364
components:
- pos: 51.5,-62.5
parent: 2
type: Transform
- - uid: 20355
+ - uid: 20365
components:
- rot: -1.5707963267948966 rad
pos: 71.5,-50.5
parent: 2
type: Transform
- - uid: 20356
+ - uid: 20366
components:
- pos: 68.5,-42.5
parent: 2
type: Transform
- - uid: 20357
+ - uid: 20367
components:
- pos: 77.5,-38.5
parent: 2
type: Transform
- - uid: 20358
+ - uid: 20368
components:
- pos: 78.5,-46.5
parent: 2
type: Transform
- - uid: 20359
+ - uid: 20369
components:
- rot: 1.5707963267948966 rad
pos: 33.5,-57.5
parent: 2
type: Transform
- - uid: 20360
+ - uid: 20370
components:
- rot: 1.5707963267948966 rad
pos: 32.5,-57.5
parent: 2
type: Transform
- - uid: 20361
+ - uid: 20371
components:
- rot: 1.5707963267948966 rad
pos: 30.5,-57.5
parent: 2
type: Transform
- - uid: 20362
+ - uid: 20372
components:
- rot: 1.5707963267948966 rad
pos: 29.5,-57.5
parent: 2
type: Transform
- - uid: 20363
+ - uid: 20373
components:
- rot: 1.5707963267948966 rad
pos: 27.5,-54.5
parent: 2
type: Transform
- - uid: 20364
+ - uid: 20374
components:
- rot: 1.5707963267948966 rad
pos: 27.5,-55.5
parent: 2
type: Transform
- - uid: 20365
+ - uid: 20375
components:
- rot: 1.5707963267948966 rad
pos: 27.5,-51.5
parent: 2
type: Transform
- - uid: 20366
+ - uid: 20376
components:
- rot: 1.5707963267948966 rad
pos: 27.5,-47.5
parent: 2
type: Transform
- - uid: 20367
+ - uid: 20377
components:
- rot: 3.141592653589793 rad
pos: 64.5,-37.5
parent: 2
type: Transform
- - uid: 20368
+ - uid: 20378
components:
- pos: -12.5,-44.5
parent: 2
type: Transform
- - uid: 20369
+ - uid: 20379
components:
- pos: -13.5,-44.5
parent: 2
type: Transform
- - uid: 20370
+ - uid: 20380
components:
- pos: -14.5,-44.5
parent: 2
type: Transform
- - uid: 20371
+ - uid: 20381
components:
- rot: 3.141592653589793 rad
pos: 49.5,-59.5
parent: 2
type: Transform
- - uid: 20372
+ - uid: 20382
components:
- rot: 3.141592653589793 rad
pos: 50.5,-59.5
parent: 2
type: Transform
- - uid: 20373
+ - uid: 20383
components:
- pos: -19.5,5.5
parent: 2
type: Transform
- - uid: 20374
+ - uid: 20384
components:
- pos: -23.5,2.5
parent: 2
type: Transform
- - uid: 20375
+ - uid: 20385
components:
- pos: -2.5,42.5
parent: 2
type: Transform
- - uid: 20376
+ - uid: 20386
components:
- rot: -1.5707963267948966 rad
pos: -21.5,-22.5
parent: 2
type: Transform
- - uid: 20377
+ - uid: 20387
components:
- pos: -21.5,-13.5
parent: 2
type: Transform
- - uid: 20378
+ - uid: 20388
components:
- pos: -21.5,-14.5
parent: 2
type: Transform
- - uid: 20379
+ - uid: 20389
components:
- pos: -21.5,-9.5
parent: 2
type: Transform
- - uid: 20380
+ - uid: 20390
components:
- pos: -21.5,-10.5
parent: 2
type: Transform
- - uid: 20381
+ - uid: 20391
components:
- pos: -26.5,-10.5
parent: 2
type: Transform
- - uid: 20382
+ - uid: 20392
components:
- pos: -26.5,-11.5
parent: 2
type: Transform
- - uid: 20383
+ - uid: 20393
components:
- pos: -30.5,-12.5
parent: 2
type: Transform
- - uid: 20384
+ - uid: 20394
components:
- pos: -30.5,-13.5
parent: 2
type: Transform
- - uid: 20385
+ - uid: 20395
components:
- pos: -22.5,-3.5
parent: 2
type: Transform
- - uid: 20386
+ - uid: 20396
components:
- pos: -21.5,-3.5
parent: 2
type: Transform
- - uid: 20387
+ - uid: 20397
components:
- pos: -22.5,-1.5
parent: 2
type: Transform
- - uid: 20388
+ - uid: 20398
components:
- pos: -21.5,-1.5
parent: 2
type: Transform
- - uid: 20389
+ - uid: 20399
components:
- pos: -17.5,-1.5
parent: 2
type: Transform
- - uid: 20390
+ - uid: 20400
components:
- pos: -16.5,-1.5
parent: 2
type: Transform
- - uid: 20391
+ - uid: 20401
components:
- pos: -19.5,0.5
parent: 2
type: Transform
- - uid: 20392
+ - uid: 20402
components:
- pos: -17.5,0.5
parent: 2
type: Transform
- - uid: 20393
+ - uid: 20403
components:
- pos: -16.5,0.5
parent: 2
type: Transform
- - uid: 20394
+ - uid: 20404
components:
- pos: -17.5,-3.5
parent: 2
type: Transform
- - uid: 20395
+ - uid: 20405
components:
- pos: -16.5,-3.5
parent: 2
type: Transform
- - uid: 20396
+ - uid: 20406
components:
- rot: 1.5707963267948966 rad
pos: -26.5,-13.5
parent: 2
type: Transform
- - uid: 20397
+ - uid: 20407
components:
- rot: -1.5707963267948966 rad
pos: -24.5,-18.5
parent: 2
type: Transform
- - uid: 20398
+ - uid: 20408
components:
- pos: 52.5,-57.5
parent: 2
type: Transform
- - uid: 20399
+ - uid: 20409
components:
- rot: 3.141592653589793 rad
pos: 56.5,-55.5
parent: 2
type: Transform
- - uid: 20400
+ - uid: 20410
components:
- rot: 3.141592653589793 rad
pos: 59.5,-54.5
parent: 2
type: Transform
- - uid: 20401
+ - uid: 20411
components:
- rot: 3.141592653589793 rad
pos: 65.5,-54.5
parent: 2
type: Transform
- - uid: 20402
+ - uid: 20412
components:
- pos: 41.5,-74.5
parent: 2
type: Transform
- - uid: 20403
+ - uid: 20413
components:
- pos: 32.5,-77.5
parent: 2
type: Transform
- - uid: 20404
+ - uid: 20414
components:
- pos: 32.5,-78.5
parent: 2
type: Transform
- - uid: 20405
+ - uid: 20415
components:
- pos: 32.5,-79.5
parent: 2
type: Transform
- - uid: 20406
+ - uid: 20416
components:
- rot: 3.141592653589793 rad
pos: 25.5,-80.5
parent: 2
type: Transform
- - uid: 20407
+ - uid: 20417
components:
- rot: 3.141592653589793 rad
pos: 51.5,-73.5
parent: 2
type: Transform
- - uid: 20408
+ - uid: 20418
components:
- rot: 1.5707963267948966 rad
pos: 34.5,-84.5
parent: 2
type: Transform
- - uid: 20409
+ - uid: 20419
components:
- pos: 17.5,-71.5
parent: 2
type: Transform
- - uid: 20410
+ - uid: 20420
components:
- pos: 18.5,-71.5
parent: 2
type: Transform
- - uid: 20411
+ - uid: 20421
components:
- rot: 1.5707963267948966 rad
pos: 34.5,-85.5
parent: 2
type: Transform
- - uid: 20412
+ - uid: 20422
components:
- rot: 1.5707963267948966 rad
pos: 34.5,-86.5
parent: 2
type: Transform
- - uid: 20413
+ - uid: 20423
components:
- pos: 15.5,-71.5
parent: 2
type: Transform
- - uid: 20414
+ - uid: 20424
components:
- pos: 18.5,-74.5
parent: 2
type: Transform
- - uid: 20415
+ - uid: 20425
components:
- pos: 17.5,-74.5
parent: 2
type: Transform
- - uid: 20416
+ - uid: 20426
components:
- pos: 14.5,-71.5
parent: 2
type: Transform
- - uid: 20417
+ - uid: 20427
components:
- pos: 14.5,-74.5
parent: 2
type: Transform
- - uid: 20418
+ - uid: 20428
components:
- pos: 15.5,-74.5
parent: 2
type: Transform
- - uid: 20419
+ - uid: 20429
components:
- rot: 1.5707963267948966 rad
pos: 44.5,-86.5
parent: 2
type: Transform
- - uid: 20420
+ - uid: 20430
components:
- rot: 1.5707963267948966 rad
pos: 44.5,-87.5
parent: 2
type: Transform
- - uid: 20421
+ - uid: 20431
components:
- rot: 1.5707963267948966 rad
pos: 34.5,-87.5
parent: 2
type: Transform
- - uid: 20422
+ - uid: 20432
components:
- rot: 1.5707963267948966 rad
pos: 44.5,-84.5
parent: 2
type: Transform
- - uid: 20423
+ - uid: 20433
components:
- rot: 1.5707963267948966 rad
pos: 44.5,-85.5
parent: 2
type: Transform
- - uid: 20424
+ - uid: 20434
components:
- rot: 1.5707963267948966 rad
pos: 42.5,-69.5
parent: 2
type: Transform
- - uid: 20425
+ - uid: 20435
components:
- rot: 1.5707963267948966 rad
pos: 43.5,-69.5
parent: 2
type: Transform
- - uid: 20426
+ - uid: 20436
components:
- rot: 1.5707963267948966 rad
pos: 44.5,-69.5
parent: 2
type: Transform
- - uid: 20427
+ - uid: 20437
components:
- rot: 1.5707963267948966 rad
pos: 34.5,-69.5
parent: 2
type: Transform
- - uid: 20428
+ - uid: 20438
components:
- rot: 1.5707963267948966 rad
pos: 35.5,-69.5
parent: 2
type: Transform
- - uid: 20429
+ - uid: 20439
components:
- rot: 1.5707963267948966 rad
pos: 36.5,-69.5
parent: 2
type: Transform
- - uid: 20430
+ - uid: 20440
components:
- rot: 1.5707963267948966 rad
pos: 37.5,-66.5
parent: 2
type: Transform
- - uid: 20431
+ - uid: 20441
components:
- rot: -1.5707963267948966 rad
pos: -37.5,-14.5
parent: 2
type: Transform
- - uid: 20432
+ - uid: 20442
components:
- pos: -33.5,-17.5
parent: 2
type: Transform
- - uid: 20433
+ - uid: 20443
components:
- pos: -33.5,-15.5
parent: 2
type: Transform
- - uid: 20434
+ - uid: 20444
components:
- rot: 3.141592653589793 rad
pos: -33.5,-12.5
parent: 2
type: Transform
- - uid: 20435
+ - uid: 20445
components:
- rot: 3.141592653589793 rad
pos: -33.5,-9.5
parent: 2
type: Transform
- - uid: 20436
+ - uid: 20446
components:
- rot: 3.141592653589793 rad
pos: -40.5,-9.5
parent: 2
type: Transform
- - uid: 20437
+ - uid: 20447
components:
- rot: 3.141592653589793 rad
pos: -40.5,-12.5
parent: 2
type: Transform
- - uid: 20438
+ - uid: 20448
components:
- pos: 50.5,-31.5
parent: 2
type: Transform
- - uid: 20439
+ - uid: 20449
components:
- pos: 51.5,-31.5
parent: 2
type: Transform
- - uid: 20440
+ - uid: 20450
components:
- rot: -1.5707963267948966 rad
pos: -21.5,-35.5
parent: 2
type: Transform
- - uid: 20441
+ - uid: 20451
components:
- pos: -38.5,-37.5
parent: 2
type: Transform
- - uid: 20442
+ - uid: 20452
components:
- pos: -37.5,-37.5
parent: 2
type: Transform
- - uid: 20443
+ - uid: 20453
components:
- pos: -45.5,-18.5
parent: 2
type: Transform
- - uid: 20444
+ - uid: 20454
components:
- rot: 3.141592653589793 rad
pos: -43.5,-13.5
parent: 2
type: Transform
- - uid: 20445
+ - uid: 20455
components:
- rot: 3.141592653589793 rad
pos: -46.5,-7.5
parent: 2
type: Transform
- - uid: 20446
+ - uid: 20456
components:
- rot: 3.141592653589793 rad
pos: -49.5,-19.5
parent: 2
type: Transform
- - uid: 20447
+ - uid: 20457
components:
- pos: -68.5,-22.5
parent: 2
type: Transform
- - uid: 20448
+ - uid: 20458
components:
- pos: -67.5,-22.5
parent: 2
type: Transform
- - uid: 20449
+ - uid: 20459
components:
- pos: -66.5,-22.5
parent: 2
type: Transform
- - uid: 20450
+ - uid: 20460
components:
- pos: -65.5,-22.5
parent: 2
type: Transform
- - uid: 20451
+ - uid: 20461
components:
- pos: -64.5,-22.5
parent: 2
type: Transform
- - uid: 20452
+ - uid: 20462
components:
- pos: -66.5,-29.5
parent: 2
type: Transform
- - uid: 20453
+ - uid: 20463
components:
- pos: -56.5,-11.5
parent: 2
type: Transform
- - uid: 20454
+ - uid: 20464
components:
- pos: -56.5,-12.5
parent: 2
type: Transform
- - uid: 20455
+ - uid: 20465
components:
- pos: -56.5,-13.5
parent: 2
type: Transform
- - uid: 20456
+ - uid: 20466
components:
- pos: -56.5,-14.5
parent: 2
type: Transform
- - uid: 20457
+ - uid: 20467
components:
- pos: -56.5,-15.5
parent: 2
type: Transform
- - uid: 20458
+ - uid: 20468
components:
- pos: -61.5,-35.5
parent: 2
type: Transform
- - uid: 20459
+ - uid: 20469
components:
- pos: -60.5,-35.5
parent: 2
type: Transform
- - uid: 20460
+ - uid: 20470
components:
- pos: -62.5,-38.5
parent: 2
type: Transform
- - uid: 20461
+ - uid: 20471
components:
- pos: -61.5,-31.5
parent: 2
type: Transform
- - uid: 20462
+ - uid: 20472
components:
- pos: -47.5,-54.5
parent: 2
type: Transform
- - uid: 20463
+ - uid: 20473
components:
- pos: -47.5,-52.5
parent: 2
type: Transform
- - uid: 20464
+ - uid: 20474
components:
- pos: -47.5,-50.5
parent: 2
type: Transform
- - uid: 20465
+ - uid: 20475
components:
- pos: -47.5,-48.5
parent: 2
type: Transform
- - uid: 20466
+ - uid: 20476
components:
- pos: -47.5,-46.5
parent: 2
type: Transform
- - uid: 20467
+ - uid: 20477
components:
- pos: -47.5,-44.5
parent: 2
type: Transform
- - uid: 20468
+ - uid: 20478
components:
- pos: -47.5,-42.5
parent: 2
type: Transform
- - uid: 20469
+ - uid: 20479
components:
- pos: -41.5,-34.5
parent: 2
type: Transform
- - uid: 20470
+ - uid: 20480
components:
- pos: -41.5,-35.5
parent: 2
type: Transform
- - uid: 20471
+ - uid: 20481
components:
- pos: -59.5,-3.5
parent: 2
type: Transform
- - uid: 20472
+ - uid: 20482
components:
- pos: -60.5,-3.5
parent: 2
type: Transform
- - uid: 20473
+ - uid: 20483
components:
- pos: -61.5,-3.5
parent: 2
type: Transform
- - uid: 20474
+ - uid: 20484
components:
- pos: -62.5,-3.5
parent: 2
type: Transform
- - uid: 20475
+ - uid: 20485
components:
- pos: -66.5,-3.5
parent: 2
type: Transform
- - uid: 20476
+ - uid: 20486
components:
- pos: -67.5,-3.5
parent: 2
type: Transform
- - uid: 20477
+ - uid: 20487
components:
- pos: -68.5,-3.5
parent: 2
type: Transform
- - uid: 20478
+ - uid: 20488
components:
- pos: -69.5,-3.5
parent: 2
type: Transform
- - uid: 20479
+ - uid: 20489
components:
- pos: -76.5,-3.5
parent: 2
type: Transform
- - uid: 20480
+ - uid: 20490
components:
- pos: -73.5,-3.5
parent: 2
type: Transform
- - uid: 20481
+ - uid: 20491
components:
- pos: -74.5,-3.5
parent: 2
type: Transform
- - uid: 20482
+ - uid: 20492
components:
- pos: -75.5,-3.5
parent: 2
type: Transform
- - uid: 20483
+ - uid: 20493
components:
- pos: -76.5,-7.5
parent: 2
type: Transform
- - uid: 20484
+ - uid: 20494
components:
- pos: -76.5,-8.5
parent: 2
type: Transform
- - uid: 20485
+ - uid: 20495
components:
- pos: -76.5,-9.5
parent: 2
type: Transform
- - uid: 20486
+ - uid: 20496
components:
- pos: -76.5,-10.5
parent: 2
type: Transform
- - uid: 20487
+ - uid: 20497
components:
- pos: -76.5,-14.5
parent: 2
type: Transform
- - uid: 20488
+ - uid: 20498
components:
- pos: -76.5,-15.5
parent: 2
type: Transform
- - uid: 20489
+ - uid: 20499
components:
- pos: -76.5,-16.5
parent: 2
type: Transform
- - uid: 20490
+ - uid: 20500
components:
- pos: -76.5,-17.5
parent: 2
type: Transform
- - uid: 20491
+ - uid: 20501
components:
- pos: -76.5,-21.5
parent: 2
type: Transform
- - uid: 20492
+ - uid: 20502
components:
- pos: -76.5,-22.5
parent: 2
type: Transform
- - uid: 20493
+ - uid: 20503
components:
- rot: -1.5707963267948966 rad
pos: -76.5,-24.5
parent: 2
type: Transform
- - uid: 20494
+ - uid: 20504
components:
- pos: -76.5,-23.5
parent: 2
type: Transform
- - uid: 20495
+ - uid: 20505
components:
- pos: -35.5,-58.5
parent: 2
type: Transform
- - uid: 20496
+ - uid: 20506
components:
- rot: 3.141592653589793 rad
pos: -38.5,-59.5
parent: 2
type: Transform
- - uid: 20497
+ - uid: 20507
components:
- pos: -41.5,-58.5
parent: 2
type: Transform
- - uid: 20498
+ - uid: 20508
components:
- pos: -42.5,-58.5
parent: 2
type: Transform
- - uid: 20499
+ - uid: 20509
components:
- pos: -44.5,-58.5
parent: 2
type: Transform
- - uid: 20500
+ - uid: 20510
components:
- pos: -21.5,-61.5
parent: 2
type: Transform
- - uid: 20501
+ - uid: 20511
components:
- rot: -1.5707963267948966 rad
pos: -53.5,-83.5
parent: 2
type: Transform
- - uid: 20502
+ - uid: 20512
components:
- pos: -28.5,-72.5
parent: 2
type: Transform
- - uid: 20503
+ - uid: 20513
components:
- pos: -35.5,-76.5
parent: 2
type: Transform
- - uid: 20504
+ - uid: 20514
components:
- pos: -35.5,-77.5
parent: 2
type: Transform
- - uid: 20505
+ - uid: 20515
components:
- pos: -35.5,-78.5
parent: 2
type: Transform
- - uid: 20506
+ - uid: 20516
components:
- pos: -35.5,-81.5
parent: 2
type: Transform
- - uid: 20507
+ - uid: 20517
components:
- pos: -35.5,-82.5
parent: 2
type: Transform
- - uid: 20508
+ - uid: 20518
components:
- pos: -35.5,-83.5
parent: 2
type: Transform
- - uid: 20509
+ - uid: 20519
components:
- pos: -40.5,-86.5
parent: 2
type: Transform
- - uid: 20510
+ - uid: 20520
components:
- pos: -43.5,-86.5
parent: 2
type: Transform
- - uid: 20511
+ - uid: 20521
components:
- pos: -21.5,-59.5
parent: 2
type: Transform
- - uid: 20512
+ - uid: 20522
components:
- rot: -1.5707963267948966 rad
pos: -55.5,-83.5
parent: 2
type: Transform
- - uid: 20513
+ - uid: 20523
components:
- pos: -57.5,-75.5
parent: 2
type: Transform
- - uid: 20514
+ - uid: 20524
components:
- pos: -57.5,-76.5
parent: 2
type: Transform
- - uid: 20515
+ - uid: 20525
components:
- pos: -57.5,-77.5
parent: 2
type: Transform
- - uid: 20516
+ - uid: 20526
components:
- pos: -58.5,-52.5
parent: 2
type: Transform
- - uid: 20517
+ - uid: 20527
components:
- pos: -58.5,-51.5
parent: 2
type: Transform
- - uid: 20518
+ - uid: 20528
components:
- pos: -58.5,-48.5
parent: 2
type: Transform
- - uid: 20519
+ - uid: 20529
components:
- pos: -58.5,-47.5
parent: 2
type: Transform
- - uid: 20520
+ - uid: 20530
components:
- rot: 1.5707963267948966 rad
pos: -58.5,-59.5
parent: 2
type: Transform
- - uid: 20521
+ - uid: 20531
components:
- pos: -48.5,-81.5
parent: 2
type: Transform
- - uid: 20522
+ - uid: 20532
components:
- rot: -1.5707963267948966 rad
pos: -3.5,27.5
parent: 2
type: Transform
- - uid: 20523
+ - uid: 20533
components:
- pos: -2.5,35.5
parent: 2
type: Transform
- - uid: 20524
+ - uid: 20534
components:
- pos: -1.5,35.5
parent: 2
type: Transform
- - uid: 20525
+ - uid: 20535
components:
- pos: -0.5,35.5
parent: 2
type: Transform
- - uid: 20526
+ - uid: 20536
components:
- pos: 6.5,25.5
parent: 2
type: Transform
- - uid: 20527
+ - uid: 20537
components:
- pos: 4.5,25.5
parent: 2
type: Transform
- - uid: 20528
+ - uid: 20538
components:
- pos: 2.5,25.5
parent: 2
type: Transform
- - uid: 20529
+ - uid: 20539
components:
- rot: -1.5707963267948966 rad
pos: -1.5,27.5
parent: 2
type: Transform
- - uid: 20530
+ - uid: 20540
components:
- pos: -21.5,24.5
parent: 2
type: Transform
- - uid: 20531
+ - uid: 20541
components:
- pos: -21.5,23.5
parent: 2
type: Transform
- - uid: 20532
+ - uid: 20542
components:
- pos: -26.5,21.5
parent: 2
type: Transform
- - uid: 20533
+ - uid: 20543
components:
- rot: -1.5707963267948966 rad
pos: -26.5,23.5
parent: 2
type: Transform
- - uid: 20534
+ - uid: 20544
components:
- pos: -1.5,42.5
parent: 2
type: Transform
- - uid: 20535
+ - uid: 20545
components:
- pos: -29.5,23.5
parent: 2
type: Transform
- - uid: 20536
+ - uid: 20546
components:
- pos: -29.5,21.5
parent: 2
type: Transform
- - uid: 20537
+ - uid: 20547
components:
- rot: 1.5707963267948966 rad
pos: -50.5,21.5
parent: 2
type: Transform
- - uid: 20538
+ - uid: 20548
components:
- rot: 1.5707963267948966 rad
pos: -49.5,21.5
parent: 2
type: Transform
- - uid: 20539
+ - uid: 20549
components:
- rot: -1.5707963267948966 rad
pos: -50.5,18.5
parent: 2
type: Transform
- - uid: 20540
+ - uid: 20550
components:
- rot: -1.5707963267948966 rad
pos: -50.5,24.5
parent: 2
type: Transform
- - uid: 20541
+ - uid: 20551
components:
- pos: -33.5,27.5
parent: 2
type: Transform
- - uid: 20542
+ - uid: 20552
components:
- pos: -33.5,32.5
parent: 2
type: Transform
- - uid: 20543
+ - uid: 20553
components:
- pos: -32.5,32.5
parent: 2
type: Transform
- - uid: 20544
+ - uid: 20554
components:
- pos: -31.5,32.5
parent: 2
type: Transform
- - uid: 20545
+ - uid: 20555
components:
- pos: -31.5,27.5
parent: 2
type: Transform
- - uid: 20546
+ - uid: 20556
components:
- pos: -30.5,27.5
parent: 2
type: Transform
- - uid: 20547
+ - uid: 20557
components:
- rot: -1.5707963267948966 rad
pos: -52.5,21.5
parent: 2
type: Transform
- - uid: 20548
+ - uid: 20558
components:
- rot: -1.5707963267948966 rad
pos: -53.5,21.5
parent: 2
type: Transform
- - uid: 20549
+ - uid: 20559
components:
- rot: -1.5707963267948966 rad
pos: -49.5,29.5
parent: 2
type: Transform
- - uid: 20550
+ - uid: 20560
components:
- rot: -1.5707963267948966 rad
pos: -52.5,29.5
parent: 2
type: Transform
- - uid: 20551
+ - uid: 20561
components:
- rot: -1.5707963267948966 rad
pos: -52.5,35.5
parent: 2
type: Transform
- - uid: 20552
+ - uid: 20562
components:
- rot: -1.5707963267948966 rad
pos: -49.5,35.5
parent: 2
type: Transform
- - uid: 20553
+ - uid: 20563
components:
- pos: -52.5,24.5
parent: 2
type: Transform
- - uid: 20554
+ - uid: 20564
components:
- pos: -52.5,18.5
parent: 2
type: Transform
- - uid: 20555
+ - uid: 20565
components:
- pos: -39.5,31.5
parent: 2
type: Transform
- - uid: 20556
+ - uid: 20566
components:
- rot: 1.5707963267948966 rad
pos: -17.5,24.5
parent: 2
type: Transform
- - uid: 20557
+ - uid: 20567
components:
- rot: 1.5707963267948966 rad
pos: -21.5,12.5
parent: 2
type: Transform
- - uid: 20558
+ - uid: 20568
components:
- rot: 1.5707963267948966 rad
pos: -22.5,9.5
parent: 2
type: Transform
- - uid: 20559
+ - uid: 20569
components:
- rot: 1.5707963267948966 rad
pos: -23.5,9.5
parent: 2
type: Transform
- - uid: 20560
+ - uid: 20570
components:
- rot: 1.5707963267948966 rad
pos: -25.5,9.5
parent: 2
type: Transform
- - uid: 20561
+ - uid: 20571
components:
- rot: 1.5707963267948966 rad
pos: -26.5,9.5
parent: 2
type: Transform
- - uid: 20562
+ - uid: 20572
components:
- pos: -36.5,7.5
parent: 2
type: Transform
- - uid: 20563
+ - uid: 20573
components:
- pos: -41.5,2.5
parent: 2
type: Transform
- - uid: 20564
+ - uid: 20574
components:
- pos: -35.5,2.5
parent: 2
type: Transform
- - uid: 20565
+ - uid: 20575
components:
- pos: -34.5,2.5
parent: 2
type: Transform
- - uid: 20566
+ - uid: 20576
components:
- pos: -40.5,2.5
parent: 2
type: Transform
- - uid: 20567
+ - uid: 20577
components:
- pos: -39.5,2.5
parent: 2
type: Transform
- - uid: 20568
+ - uid: 20578
components:
- pos: -36.5,2.5
parent: 2
type: Transform
- - uid: 20569
+ - uid: 20579
components:
- pos: -39.5,7.5
parent: 2
type: Transform
- - uid: 20570
+ - uid: 20580
components:
- pos: -1.5,50.5
parent: 2
type: Transform
- - uid: 20571
+ - uid: 20581
components:
- pos: 29.5,24.5
parent: 2
type: Transform
- - uid: 20572
+ - uid: 20582
components:
- rot: -1.5707963267948966 rad
pos: -49.5,13.5
parent: 2
type: Transform
- - uid: 20573
+ - uid: 20583
components:
- pos: -46.5,13.5
parent: 2
type: Transform
- - uid: 20574
+ - uid: 20584
components:
- pos: -53.5,11.5
parent: 2
type: Transform
- - uid: 20575
+ - uid: 20585
components:
- pos: -53.5,10.5
parent: 2
type: Transform
- - uid: 20576
+ - uid: 20586
components:
- rot: -1.5707963267948966 rad
pos: -48.5,13.5
parent: 2
type: Transform
- - uid: 20577
+ - uid: 20587
components:
- rot: 1.5707963267948966 rad
pos: -52.5,-0.5
parent: 2
type: Transform
- - uid: 20578
+ - uid: 20588
components:
- pos: 2.5,-94.5
parent: 2
type: Transform
- - uid: 20579
+ - uid: 20589
components:
- pos: 2.5,-95.5
parent: 2
type: Transform
- - uid: 20580
+ - uid: 20590
components:
- pos: 2.5,-96.5
parent: 2
type: Transform
- - uid: 20581
+ - uid: 20591
components:
- pos: 2.5,-97.5
parent: 2
type: Transform
- - uid: 20582
+ - uid: 20592
components:
- pos: 2.5,-98.5
parent: 2
type: Transform
- - uid: 20583
+ - uid: 20593
components:
- pos: 2.5,-99.5
parent: 2
type: Transform
- - uid: 20584
+ - uid: 20594
components:
- pos: 2.5,-100.5
parent: 2
type: Transform
- - uid: 20585
+ - uid: 20595
components:
- pos: 2.5,-101.5
parent: 2
type: Transform
- - uid: 20586
+ - uid: 20596
components:
- pos: 2.5,-102.5
parent: 2
type: Transform
- - uid: 20587
+ - uid: 20597
components:
- pos: 2.5,-103.5
parent: 2
type: Transform
- - uid: 20588
+ - uid: 20598
components:
- pos: 2.5,-104.5
parent: 2
type: Transform
- - uid: 20589
+ - uid: 20599
components:
- pos: 4.5,-107.5
parent: 2
type: Transform
- - uid: 20590
+ - uid: 20600
components:
- pos: 5.5,-107.5
parent: 2
type: Transform
- - uid: 20591
+ - uid: 20601
components:
- pos: 6.5,-107.5
parent: 2
type: Transform
- - uid: 20592
+ - uid: 20602
components:
- pos: 7.5,-107.5
parent: 2
type: Transform
- - uid: 20593
+ - uid: 20603
components:
- pos: 8.5,-107.5
parent: 2
type: Transform
- - uid: 20594
+ - uid: 20604
components:
- pos: 9.5,-107.5
parent: 2
type: Transform
- - uid: 20595
+ - uid: 20605
components:
- pos: 10.5,-107.5
parent: 2
type: Transform
- - uid: 20596
+ - uid: 20606
components:
- pos: 11.5,-107.5
parent: 2
type: Transform
- - uid: 20597
+ - uid: 20607
components:
- pos: 12.5,-107.5
parent: 2
type: Transform
- - uid: 20598
+ - uid: 20608
components:
- pos: 13.5,-107.5
parent: 2
type: Transform
- - uid: 20599
+ - uid: 20609
components:
- pos: 14.5,-107.5
parent: 2
type: Transform
- - uid: 20600
+ - uid: 20610
components:
- pos: 15.5,-107.5
parent: 2
type: Transform
- - uid: 20601
+ - uid: 20611
components:
- pos: 16.5,-107.5
parent: 2
type: Transform
- - uid: 20602
+ - uid: 20612
components:
- pos: 17.5,-107.5
parent: 2
type: Transform
- - uid: 20603
+ - uid: 20613
components:
- pos: 20.5,-105.5
parent: 2
type: Transform
- - uid: 20604
+ - uid: 20614
components:
- pos: 20.5,-104.5
parent: 2
type: Transform
- - uid: 20605
+ - uid: 20615
components:
- pos: 20.5,-103.5
parent: 2
type: Transform
- - uid: 20606
+ - uid: 20616
components:
- pos: 20.5,-102.5
parent: 2
type: Transform
- - uid: 20607
+ - uid: 20617
components:
- pos: 20.5,-101.5
parent: 2
type: Transform
- - uid: 20608
+ - uid: 20618
components:
- pos: 20.5,-100.5
parent: 2
type: Transform
- - uid: 20609
+ - uid: 20619
components:
- pos: 20.5,-99.5
parent: 2
type: Transform
- - uid: 20610
+ - uid: 20620
components:
- pos: 20.5,-98.5
parent: 2
type: Transform
- - uid: 20611
+ - uid: 20621
components:
- pos: 20.5,-97.5
parent: 2
type: Transform
- - uid: 20612
+ - uid: 20622
components:
- pos: 20.5,-96.5
parent: 2
type: Transform
- - uid: 20613
+ - uid: 20623
components:
- pos: 20.5,-95.5
parent: 2
type: Transform
- - uid: 20614
+ - uid: 20624
components:
- pos: 20.5,-94.5
parent: 2
type: Transform
- - uid: 20615
+ - uid: 20625
components:
- pos: 13.5,-92.5
parent: 2
type: Transform
- - uid: 20616
+ - uid: 20626
components:
- pos: 14.5,-92.5
parent: 2
type: Transform
- - uid: 20617
+ - uid: 20627
components:
- pos: 15.5,-92.5
parent: 2
type: Transform
- - uid: 20618
+ - uid: 20628
components:
- pos: 16.5,-92.5
parent: 2
type: Transform
- - uid: 20619
+ - uid: 20629
components:
- pos: 17.5,-92.5
parent: 2
type: Transform
- - uid: 20620
+ - uid: 20630
components:
- pos: 18.5,-92.5
parent: 2
type: Transform
- - uid: 20621
+ - uid: 20631
components:
- pos: 38.5,-57.5
parent: 2
type: Transform
- - uid: 20622
+ - uid: 20632
components:
- pos: 40.5,-57.5
parent: 2
type: Transform
- - uid: 20623
+ - uid: 20633
components:
- pos: 37.5,-21.5
parent: 2
type: Transform
- - uid: 20624
+ - uid: 20634
components:
- pos: 37.5,-22.5
parent: 2
type: Transform
- - uid: 20625
+ - uid: 20635
components:
- rot: -1.5707963267948966 rad
pos: -76.5,-11.5
parent: 2
type: Transform
- - uid: 20626
+ - uid: 20636
components:
- rot: -1.5707963267948966 rad
pos: -76.5,-13.5
parent: 2
type: Transform
- - uid: 20627
+ - uid: 20637
components:
- pos: 55.5,-15.5
parent: 2
type: Transform
- - uid: 20628
+ - uid: 20638
components:
- pos: 56.5,-15.5
parent: 2
type: Transform
- - uid: 20629
+ - uid: 20639
components:
- pos: 58.5,-15.5
parent: 2
type: Transform
- - uid: 20630
+ - uid: 20640
components:
- pos: 59.5,-15.5
parent: 2
type: Transform
- - uid: 20631
+ - uid: 20641
components:
- pos: 58.5,-59.5
parent: 2
type: Transform
- - uid: 20632
+ - uid: 20642
components:
- pos: 58.5,-60.5
parent: 2
type: Transform
- - uid: 20633
+ - uid: 20643
components:
- pos: 42.5,-31.5
parent: 2
type: Transform
- - uid: 20634
+ - uid: 20644
components:
- pos: 37.5,-64.5
parent: 2
type: Transform
- - uid: 20635
+ - uid: 20645
components:
- rot: 3.141592653589793 rad
pos: 24.5,37.5
parent: 2
type: Transform
- - uid: 20636
+ - uid: 20646
components:
- rot: 3.141592653589793 rad
pos: 21.5,37.5
parent: 2
type: Transform
- - uid: 20637
+ - uid: 20647
components:
- pos: 32.5,35.5
parent: 2
type: Transform
- - uid: 20638
+ - uid: 20648
components:
- pos: 26.5,35.5
parent: 2
type: Transform
- - uid: 20639
+ - uid: 20649
components:
- pos: 34.5,37.5
parent: 2
type: Transform
- - uid: 20640
+ - uid: 20650
components:
- pos: 35.5,37.5
parent: 2
type: Transform
- - uid: 20641
+ - uid: 20651
components:
- pos: 36.5,37.5
parent: 2
type: Transform
- - uid: 20642
+ - uid: 20652
components:
- pos: 36.5,36.5
parent: 2
type: Transform
- - uid: 20643
+ - uid: 20653
components:
- pos: 36.5,35.5
parent: 2
type: Transform
- - uid: 20644
+ - uid: 20654
components:
- pos: 36.5,34.5
parent: 2
type: Transform
- - uid: 20645
+ - uid: 20655
components:
- pos: -45.5,-42.5
parent: 2
type: Transform
- - uid: 20646
+ - uid: 20656
components:
- pos: -45.5,-43.5
parent: 2
type: Transform
- - uid: 20647
+ - uid: 20657
components:
- pos: -45.5,-44.5
parent: 2
type: Transform
- - uid: 20648
+ - uid: 20658
components:
- pos: -45.5,-45.5
parent: 2
type: Transform
- - uid: 20649
+ - uid: 20659
components:
- pos: -45.5,-46.5
parent: 2
type: Transform
- - uid: 20650
+ - uid: 20660
components:
- pos: -45.5,-47.5
parent: 2
type: Transform
- - uid: 20651
+ - uid: 20661
components:
- pos: -45.5,-48.5
parent: 2
type: Transform
- - uid: 20652
+ - uid: 20662
components:
- pos: -45.5,-49.5
parent: 2
type: Transform
- - uid: 20653
+ - uid: 20663
components:
- pos: -45.5,-50.5
parent: 2
type: Transform
- - uid: 20654
+ - uid: 20664
components:
- pos: -45.5,-51.5
parent: 2
type: Transform
- - uid: 20655
+ - uid: 20665
components:
- pos: -45.5,-52.5
parent: 2
type: Transform
- - uid: 20656
+ - uid: 20666
components:
- pos: -45.5,-53.5
parent: 2
type: Transform
- - uid: 20657
+ - uid: 20667
components:
- pos: -45.5,-54.5
parent: 2
type: Transform
- - uid: 20658
+ - uid: 20668
components:
- pos: -45.5,-55.5
parent: 2
type: Transform
- - uid: 20659
+ - uid: 20669
components:
- rot: 3.141592653589793 rad
pos: 46.5,3.5
parent: 2
type: Transform
- - uid: 20660
+ - uid: 20670
components:
- rot: -1.5707963267948966 rad
pos: 27.5,20.5
parent: 2
type: Transform
- - uid: 20661
+ - uid: 20671
components:
- pos: 41.5,-31.5
parent: 2
type: Transform
- - uid: 20662
+ - uid: 20672
components:
- pos: -48.5,-82.5
parent: 2
type: Transform
- - uid: 20663
+ - uid: 20673
components:
- pos: -48.5,-83.5
parent: 2
type: Transform
- - uid: 20664
+ - uid: 20674
components:
- pos: 20.5,-35.5
parent: 2
type: Transform
- - uid: 20665
+ - uid: 20675
components:
- pos: 20.5,-36.5
parent: 2
type: Transform
- - uid: 20666
+ - uid: 20676
components:
- pos: -30.5,-72.5
parent: 2
type: Transform
- - uid: 20667
+ - uid: 20677
components:
- pos: 10.5,18.5
parent: 2
type: Transform
- - uid: 20668
+ - uid: 20678
components:
- pos: 12.5,18.5
parent: 2
type: Transform
- - uid: 20669
+ - uid: 20679
components:
- rot: -1.5707963267948966 rad
pos: 59.5,33.5
parent: 2
type: Transform
- - uid: 20670
+ - uid: 20680
components:
- rot: -1.5707963267948966 rad
pos: 59.5,32.5
parent: 2
type: Transform
- - uid: 20671
+ - uid: 20681
components:
- rot: 3.141592653589793 rad
pos: 59.5,43.5
parent: 2
type: Transform
- - uid: 20672
+ - uid: 20682
components:
- pos: 2.5,51.5
parent: 2
type: Transform
- - uid: 20673
+ - uid: 20683
components:
- pos: -14.5,65.5
parent: 2
type: Transform
- - uid: 20674
+ - uid: 20684
components:
- rot: 3.141592653589793 rad
pos: -14.5,67.5
parent: 2
type: Transform
- - uid: 20675
+ - uid: 20685
components:
- rot: -1.5707963267948966 rad
pos: 7.5,35.5
parent: 2
type: Transform
- - uid: 20676
+ - uid: 20686
components:
- rot: -1.5707963267948966 rad
pos: 8.5,35.5
parent: 2
type: Transform
- - uid: 20677
+ - uid: 20687
components:
- rot: -1.5707963267948966 rad
pos: 7.5,29.5
parent: 2
type: Transform
- - uid: 20678
+ - uid: 20688
components:
- rot: -1.5707963267948966 rad
pos: 8.5,29.5
parent: 2
type: Transform
- - uid: 20679
+ - uid: 20689
components:
- rot: -1.5707963267948966 rad
pos: 68.5,11.5
parent: 2
type: Transform
- - uid: 20680
+ - uid: 20690
components:
- rot: -1.5707963267948966 rad
pos: 68.5,10.5
parent: 2
type: Transform
- - uid: 20681
+ - uid: 20691
components:
- rot: -1.5707963267948966 rad
pos: 68.5,8.5
parent: 2
type: Transform
- - uid: 20682
+ - uid: 20692
components:
- rot: -1.5707963267948966 rad
pos: 68.5,7.5
parent: 2
type: Transform
- - uid: 20683
+ - uid: 20693
components:
- rot: -1.5707963267948966 rad
pos: -7.5,28.5
parent: 2
type: Transform
- - uid: 20684
+ - uid: 20694
components:
- rot: -1.5707963267948966 rad
pos: -7.5,27.5
parent: 2
type: Transform
- - uid: 20685
+ - uid: 20695
components:
- rot: -1.5707963267948966 rad
pos: -33.5,35.5
parent: 2
type: Transform
- - uid: 20686
+ - uid: 20696
components:
- rot: -1.5707963267948966 rad
pos: -32.5,35.5
parent: 2
type: Transform
- - uid: 20687
+ - uid: 20697
components:
- rot: -1.5707963267948966 rad
pos: -31.5,35.5
parent: 2
type: Transform
- - uid: 20688
+ - uid: 20698
components:
- rot: 1.5707963267948966 rad
pos: 46.5,-17.5
parent: 2
type: Transform
- - uid: 20689
+ - uid: 20699
components:
- rot: 1.5707963267948966 rad
pos: 45.5,-17.5
parent: 2
type: Transform
- - uid: 20690
+ - uid: 20700
components:
- rot: 3.141592653589793 rad
pos: -19.5,44.5
parent: 2
type: Transform
- - uid: 20691
+ - uid: 20701
components:
- pos: 2.5,50.5
parent: 2
type: Transform
- - uid: 20692
+ - uid: 20702
components:
- pos: 2.5,47.5
parent: 2
type: Transform
- - uid: 20693
+ - uid: 20703
components:
- rot: 3.141592653589793 rad
pos: 41.5,32.5
parent: 2
type: Transform
- - uid: 20694
+ - uid: 20704
components:
- rot: 3.141592653589793 rad
pos: 41.5,31.5
parent: 2
type: Transform
- - uid: 20695
+ - uid: 20705
components:
- rot: 3.141592653589793 rad
pos: 41.5,30.5
parent: 2
type: Transform
- - uid: 20696
+ - uid: 20706
components:
- rot: 1.5707963267948966 rad
pos: 45.5,40.5
parent: 2
type: Transform
- - uid: 20697
+ - uid: 20707
components:
- rot: 1.5707963267948966 rad
pos: 47.5,40.5
parent: 2
type: Transform
- - uid: 20698
+ - uid: 20708
components:
- rot: -1.5707963267948966 rad
pos: 41.5,42.5
parent: 2
type: Transform
- - uid: 20699
+ - uid: 20709
components:
- rot: -1.5707963267948966 rad
pos: 40.5,42.5
parent: 2
type: Transform
- - uid: 20700
+ - uid: 20710
components:
- rot: -1.5707963267948966 rad
pos: 39.5,42.5
parent: 2
type: Transform
- - uid: 20701
+ - uid: 20711
components:
- rot: 3.141592653589793 rad
pos: -20.5,65.5
parent: 2
type: Transform
- - uid: 20702
+ - uid: 20712
components:
- pos: -2.5,60.5
parent: 2
type: Transform
- - uid: 20703
+ - uid: 20713
components:
- pos: -0.5,60.5
parent: 2
type: Transform
- - uid: 20704
+ - uid: 20714
components:
- pos: 71.5,39.5
parent: 2
type: Transform
- - uid: 20705
+ - uid: 20715
components:
- pos: 73.5,39.5
parent: 2
type: Transform
- - uid: 20706
+ - uid: 20716
components:
- pos: 73.5,33.5
parent: 2
type: Transform
- - uid: 20707
+ - uid: 20717
components:
- pos: 71.5,33.5
parent: 2
type: Transform
- - uid: 20708
+ - uid: 20718
components:
- pos: 5.5,69.5
parent: 2
type: Transform
- - uid: 20709
+ - uid: 20719
components:
- pos: -8.5,69.5
parent: 2
type: Transform
- - uid: 20710
+ - uid: 20720
components:
- pos: -3.5,42.5
parent: 2
type: Transform
- - uid: 20711
+ - uid: 20721
components:
- pos: 78.5,46.5
parent: 2
type: Transform
- - uid: 20712
+ - uid: 20722
components:
- pos: 79.5,46.5
parent: 2
type: Transform
- - uid: 20713
+ - uid: 20723
components:
- pos: 80.5,46.5
parent: 2
type: Transform
- - uid: 20714
+ - uid: 20724
components:
- pos: 81.5,46.5
parent: 2
type: Transform
- - uid: 20715
+ - uid: 20725
components:
- pos: 82.5,46.5
parent: 2
type: Transform
- - uid: 20716
+ - uid: 20726
components:
- pos: 86.5,46.5
parent: 2
type: Transform
- - uid: 20717
+ - uid: 20727
components:
- pos: 87.5,46.5
parent: 2
type: Transform
- - uid: 20718
+ - uid: 20728
components:
- pos: 88.5,46.5
parent: 2
type: Transform
- - uid: 20719
+ - uid: 20729
components:
- pos: 89.5,46.5
parent: 2
type: Transform
- - uid: 20720
+ - uid: 20730
components:
- pos: 90.5,46.5
parent: 2
type: Transform
- - uid: 20721
+ - uid: 20731
components:
- pos: 93.5,41.5
parent: 2
type: Transform
- - uid: 20722
+ - uid: 20732
components:
- pos: 93.5,40.5
parent: 2
type: Transform
- - uid: 20723
+ - uid: 20733
components:
- pos: 93.5,39.5
parent: 2
type: Transform
- - uid: 20724
+ - uid: 20734
components:
- pos: 93.5,38.5
parent: 2
type: Transform
- - uid: 20725
+ - uid: 20735
components:
- pos: 93.5,37.5
parent: 2
type: Transform
- - uid: 20726
+ - uid: 20736
components:
- pos: 93.5,36.5
parent: 2
type: Transform
- - uid: 20727
+ - uid: 20737
components:
- pos: 93.5,35.5
parent: 2
type: Transform
- - uid: 20728
+ - uid: 20738
components:
- pos: 93.5,34.5
parent: 2
type: Transform
- - uid: 20729
+ - uid: 20739
components:
- pos: 93.5,33.5
parent: 2
type: Transform
- - uid: 20730
+ - uid: 20740
components:
- pos: 93.5,32.5
parent: 2
type: Transform
- - uid: 20731
+ - uid: 20741
components:
- pos: 93.5,31.5
parent: 2
type: Transform
- - uid: 20732
+ - uid: 20742
components:
- pos: 93.5,30.5
parent: 2
type: Transform
- - uid: 20733
+ - uid: 20743
components:
- pos: 90.5,26.5
parent: 2
type: Transform
- - uid: 20734
+ - uid: 20744
components:
- pos: 89.5,26.5
parent: 2
type: Transform
- - uid: 20735
+ - uid: 20745
components:
- pos: 88.5,26.5
parent: 2
type: Transform
- - uid: 20736
+ - uid: 20746
components:
- pos: 87.5,26.5
parent: 2
type: Transform
- - uid: 20737
+ - uid: 20747
components:
- pos: 86.5,26.5
parent: 2
type: Transform
- - uid: 20738
+ - uid: 20748
components:
- pos: 85.5,26.5
parent: 2
type: Transform
- - uid: 20739
+ - uid: 20749
components:
- pos: 81.5,26.5
parent: 2
type: Transform
- - uid: 20740
+ - uid: 20750
components:
- pos: 80.5,26.5
parent: 2
type: Transform
- - uid: 20741
+ - uid: 20751
components:
- pos: 79.5,26.5
parent: 2
type: Transform
- - uid: 20742
+ - uid: 20752
components:
- pos: 78.5,26.5
parent: 2
type: Transform
- - uid: 20743
+ - uid: 20753
components:
- pos: 77.5,26.5
parent: 2
type: Transform
- - uid: 20744
+ - uid: 20754
components:
- pos: 70.5,29.5
parent: 2
type: Transform
- - uid: 20745
+ - uid: 20755
components:
- pos: 71.5,29.5
parent: 2
type: Transform
- - uid: 20746
+ - uid: 20756
components:
- pos: 72.5,29.5
parent: 2
type: Transform
- - uid: 20747
+ - uid: 20757
components:
- pos: 73.5,29.5
parent: 2
type: Transform
- - uid: 20748
+ - uid: 20758
components:
- pos: 74.5,29.5
parent: 2
type: Transform
- - uid: 20749
+ - uid: 20759
components:
- pos: -33.5,40.5
parent: 2
type: Transform
- - uid: 20750
+ - uid: 20760
components:
- pos: -32.5,40.5
parent: 2
type: Transform
- - uid: 20751
+ - uid: 20761
components:
- pos: -32.5,37.5
parent: 2
type: Transform
- - uid: 20752
+ - uid: 20762
components:
- pos: -16.5,55.5
parent: 2
type: Transform
- - uid: 20753
+ - uid: 20763
components:
- pos: -16.5,56.5
parent: 2
type: Transform
- - uid: 20754
+ - uid: 20764
components:
- pos: -14.5,56.5
parent: 2
type: Transform
- - uid: 20755
+ - uid: 20765
components:
- pos: -14.5,55.5
parent: 2
type: Transform
- - uid: 20756
+ - uid: 20766
components:
- pos: -20.5,62.5
parent: 2
type: Transform
- - uid: 20757
+ - uid: 20767
components:
- pos: -14.5,62.5
parent: 2
type: Transform
- - uid: 20758
+ - uid: 20768
components:
- pos: -11.5,69.5
parent: 2
type: Transform
- - uid: 20759
+ - uid: 20769
components:
- pos: -11.5,68.5
parent: 2
type: Transform
- - uid: 20760
+ - uid: 20770
components:
- pos: -11.5,67.5
parent: 2
type: Transform
- - uid: 20761
+ - uid: 20771
components:
- pos: -11.5,73.5
parent: 2
type: Transform
- - uid: 20762
+ - uid: 20772
components:
- pos: -14.5,73.5
parent: 2
type: Transform
- - uid: 20763
+ - uid: 20773
components:
- pos: -20.5,73.5
parent: 2
type: Transform
- - uid: 20764
+ - uid: 20774
components:
- pos: -23.5,73.5
parent: 2
type: Transform
- - uid: 20765
+ - uid: 20775
components:
- pos: -23.5,63.5
parent: 2
type: Transform
- - uid: 20766
+ - uid: 20776
components:
- pos: -23.5,62.5
parent: 2
type: Transform
- - uid: 20767
+ - uid: 20777
components:
- pos: -23.5,61.5
parent: 2
type: Transform
- - uid: 20768
+ - uid: 20778
components:
- rot: 1.5707963267948966 rad
pos: 39.5,52.5
parent: 2
type: Transform
- - uid: 20769
+ - uid: 20779
components:
- rot: 3.141592653589793 rad
pos: -11.5,51.5
parent: 2
type: Transform
- - uid: 20770
+ - uid: 20780
components:
- rot: 3.141592653589793 rad
pos: -11.5,53.5
parent: 2
type: Transform
- - uid: 20771
+ - uid: 20781
components:
- rot: 3.141592653589793 rad
pos: -5.5,47.5
parent: 2
type: Transform
- - uid: 20772
+ - uid: 20782
components:
- rot: 3.141592653589793 rad
pos: -3.5,47.5
parent: 2
type: Transform
- - uid: 20773
+ - uid: 20783
components:
- rot: 3.141592653589793 rad
pos: -5.5,57.5
parent: 2
type: Transform
- - uid: 20774
+ - uid: 20784
components:
- rot: 3.141592653589793 rad
pos: -7.5,57.5
parent: 2
type: Transform
- - uid: 20775
+ - uid: 20785
components:
- rot: 3.141592653589793 rad
pos: -20.5,67.5
parent: 2
type: Transform
- - uid: 20776
+ - uid: 20786
components:
- rot: -1.5707963267948966 rad
pos: -26.5,54.5
parent: 2
type: Transform
- - uid: 20777
+ - uid: 20787
components:
- rot: -1.5707963267948966 rad
pos: -26.5,53.5
parent: 2
type: Transform
- - uid: 20778
+ - uid: 20788
components:
- pos: 46.5,43.5
parent: 2
type: Transform
- - uid: 20779
+ - uid: 20789
components:
- rot: -1.5707963267948966 rad
pos: -16.5,-88.5
parent: 2
type: Transform
- - uid: 20780
+ - uid: 20790
components:
- rot: -1.5707963267948966 rad
pos: -2.5,-82.5
parent: 2
type: Transform
- - uid: 20781
+ - uid: 20791
components:
- rot: -1.5707963267948966 rad
pos: -0.5,-82.5
parent: 2
type: Transform
- - uid: 20782
+ - uid: 20792
components:
- pos: -26.5,-97.5
parent: 2
type: Transform
- - uid: 20783
+ - uid: 20793
components:
- pos: -18.5,-97.5
parent: 2
type: Transform
- - uid: 20784
+ - uid: 20794
components:
- pos: -21.5,-94.5
parent: 2
type: Transform
- - uid: 20785
+ - uid: 20795
components:
- pos: -22.5,-94.5
parent: 2
type: Transform
- - uid: 20786
+ - uid: 20796
components:
- pos: -23.5,-94.5
parent: 2
type: Transform
- - uid: 20787
+ - uid: 20797
components:
- pos: -3.5,-97.5
parent: 2
type: Transform
- - uid: 20788
+ - uid: 20798
components:
- pos: -3.5,-98.5
parent: 2
type: Transform
- - uid: 20789
+ - uid: 20799
components:
- pos: -5.5,-101.5
parent: 2
type: Transform
- - uid: 20790
+ - uid: 20800
components:
- pos: -6.5,-101.5
parent: 2
type: Transform
- - uid: 20791
+ - uid: 20801
components:
- pos: -8.5,-101.5
parent: 2
type: Transform
- - uid: 20792
+ - uid: 20802
components:
- pos: -9.5,-101.5
parent: 2
type: Transform
- - uid: 20793
+ - uid: 20803
components:
- rot: 3.141592653589793 rad
pos: -44.5,-89.5
parent: 2
type: Transform
- - uid: 20794
+ - uid: 20804
components:
- rot: 3.141592653589793 rad
pos: -44.5,-90.5
parent: 2
type: Transform
- - uid: 20795
+ - uid: 20805
components:
- pos: -36.5,-100.5
parent: 2
type: Transform
- - uid: 20796
+ - uid: 20806
components:
- pos: -21.5,-101.5
parent: 2
type: Transform
- - uid: 20797
+ - uid: 20807
components:
- pos: -34.5,-100.5
parent: 2
type: Transform
- - uid: 20798
+ - uid: 20808
components:
- rot: 1.5707963267948966 rad
pos: -39.5,-89.5
parent: 2
type: Transform
- - uid: 20799
+ - uid: 20809
components:
- rot: 1.5707963267948966 rad
pos: -39.5,-90.5
parent: 2
type: Transform
- - uid: 20800
+ - uid: 20810
components:
- rot: 1.5707963267948966 rad
pos: -44.5,-95.5
parent: 2
type: Transform
- - uid: 20801
+ - uid: 20811
components:
- rot: 1.5707963267948966 rad
pos: -44.5,-96.5
parent: 2
type: Transform
- - uid: 20802
+ - uid: 20812
components:
- rot: 1.5707963267948966 rad
pos: -42.5,-98.5
parent: 2
type: Transform
- - uid: 20803
+ - uid: 20813
components:
- rot: 1.5707963267948966 rad
pos: -41.5,-98.5
parent: 2
type: Transform
- - uid: 20804
+ - uid: 20814
components:
- pos: -23.5,-101.5
parent: 2
type: Transform
- - uid: 20805
+ - uid: 20815
components:
- pos: -22.5,-101.5
parent: 2
type: Transform
- - uid: 20806
+ - uid: 20816
components:
- rot: 3.141592653589793 rad
pos: -73.5,-27.5
parent: 2
type: Transform
- - uid: 20807
+ - uid: 20817
components:
- pos: 78.5,-38.5
parent: 2
type: Transform
- - uid: 20808
+ - uid: 20818
components:
- pos: 76.5,-35.5
parent: 2
type: Transform
- - uid: 20809
+ - uid: 20819
components:
- pos: 77.5,-35.5
parent: 2
type: Transform
- - uid: 20810
+ - uid: 20820
components:
- pos: 78.5,-35.5
parent: 2
type: Transform
- - uid: 20811
+ - uid: 20821
components:
- pos: 79.5,-35.5
parent: 2
type: Transform
- - uid: 20812
+ - uid: 20822
components:
- pos: 77.5,-32.5
parent: 2
type: Transform
- - uid: 20813
+ - uid: 20823
components:
- pos: 78.5,-32.5
parent: 2
type: Transform
- - uid: 20814
+ - uid: 20824
components:
- pos: 78.5,-44.5
parent: 2
type: Transform
- - uid: 20815
+ - uid: 20825
components:
- pos: 78.5,-45.5
parent: 2
type: Transform
- - uid: 20816
+ - uid: 20826
components:
- pos: 69.5,-42.5
parent: 2
type: Transform
- - uid: 20817
+ - uid: 20827
components:
- pos: 70.5,-42.5
parent: 2
type: Transform
- - uid: 20818
+ - uid: 20828
components:
- rot: -1.5707963267948966 rad
pos: 72.5,-50.5
parent: 2
type: Transform
- - uid: 20819
+ - uid: 20829
components:
- pos: 63.5,-61.5
parent: 2
type: Transform
- - uid: 20820
+ - uid: 20830
components:
- pos: 62.5,-61.5
parent: 2
type: Transform
- - uid: 20821
+ - uid: 20831
components:
- pos: 61.5,-61.5
parent: 2
type: Transform
- - uid: 20822
+ - uid: 20832
components:
- pos: 52.5,-61.5
parent: 2
type: Transform
- - uid: 20823
+ - uid: 20833
components:
- pos: 50.5,-64.5
parent: 2
type: Transform
- - uid: 20824
+ - uid: 20834
components:
- pos: 3.5,-28.5
parent: 2
type: Transform
- - uid: 20825
+ - uid: 20835
components:
- pos: 1.5,-30.5
parent: 2
type: Transform
- - uid: 20826
+ - uid: 20836
components:
- pos: 61.5,-70.5
parent: 2
type: Transform
- - uid: 20827
+ - uid: 20837
components:
- pos: 5.5,-28.5
parent: 2
type: Transform
- - uid: 20828
+ - uid: 20838
components:
- pos: 1.5,-31.5
parent: 2
type: Transform
- - uid: 20829
+ - uid: 20839
components:
- pos: 9.5,-31.5
parent: 2
type: Transform
- - uid: 20830
+ - uid: 20840
components:
- pos: 9.5,-34.5
parent: 2
type: Transform
- - uid: 20831
+ - uid: 20841
components:
- rot: -1.5707963267948966 rad
pos: 69.5,-36.5
parent: 2
type: Transform
- - uid: 20832
+ - uid: 20842
components:
- rot: -1.5707963267948966 rad
pos: 69.5,-38.5
parent: 2
type: Transform
- - uid: 20833
+ - uid: 20843
components:
- rot: 3.141592653589793 rad
pos: 68.5,-39.5
parent: 2
type: Transform
- - uid: 20834
+ - uid: 20844
components:
- rot: 3.141592653589793 rad
pos: 66.5,-39.5
parent: 2
type: Transform
- - uid: 20835
+ - uid: 20845
components:
- rot: 3.141592653589793 rad
pos: 73.5,-30.5
parent: 2
type: Transform
- - uid: 20836
+ - uid: 20846
components:
- rot: 3.141592653589793 rad
pos: 71.5,-27.5
parent: 2
type: Transform
- - uid: 20837
+ - uid: 20847
components:
- rot: 3.141592653589793 rad
pos: 73.5,-27.5
parent: 2
type: Transform
- - uid: 20838
+ - uid: 20848
components:
- rot: 1.5707963267948966 rad
pos: -58.5,-60.5
parent: 2
type: Transform
- - uid: 20839
+ - uid: 20849
components:
- rot: 1.5707963267948966 rad
pos: -54.5,-57.5
parent: 2
type: Transform
- - uid: 20840
+ - uid: 20850
components:
- rot: 1.5707963267948966 rad
pos: -52.5,-60.5
parent: 2
type: Transform
- - uid: 20841
+ - uid: 20851
components:
- rot: 3.141592653589793 rad
pos: 31.5,-33.5
parent: 2
type: Transform
- - uid: 20842
+ - uid: 20852
components:
- rot: 3.141592653589793 rad
pos: 19.5,-33.5
parent: 2
type: Transform
- - uid: 20843
+ - uid: 20853
components:
- pos: 60.5,-70.5
parent: 2
type: Transform
- - uid: 20844
+ - uid: 20854
components:
- pos: 2.5,-36.5
parent: 2
type: Transform
- - uid: 20845
+ - uid: 20855
components:
- pos: 51.5,-68.5
parent: 2
type: Transform
- - uid: 20846
+ - uid: 20856
components:
- pos: 50.5,-68.5
parent: 2
type: Transform
- - uid: 20847
+ - uid: 20857
components:
- rot: -1.5707963267948966 rad
pos: 43.5,-44.5
parent: 2
type: Transform
- - uid: 20848
+ - uid: 20858
components:
- rot: -1.5707963267948966 rad
pos: 44.5,-44.5
parent: 2
type: Transform
- - uid: 20849
+ - uid: 20859
components:
- rot: -1.5707963267948966 rad
pos: 16.5,38.5
parent: 2
type: Transform
- - uid: 20850
+ - uid: 20860
components:
- rot: -1.5707963267948966 rad
pos: 18.5,37.5
parent: 2
type: Transform
- - uid: 20851
+ - uid: 20861
components:
- rot: -1.5707963267948966 rad
pos: 14.5,37.5
parent: 2
type: Transform
- - uid: 20852
+ - uid: 20862
components:
- pos: 62.5,-70.5
parent: 2
type: Transform
- - uid: 20853
+ - uid: 20863
components:
- pos: 71.5,-64.5
parent: 2
type: Transform
- - uid: 20854
+ - uid: 20864
components:
- rot: -1.5707963267948966 rad
pos: 54.5,-68.5
parent: 2
type: Transform
- - uid: 20855
+ - uid: 20865
components:
- rot: -1.5707963267948966 rad
pos: 55.5,-68.5
parent: 2
type: Transform
- - uid: 20856
+ - uid: 20866
components:
- rot: -1.5707963267948966 rad
pos: 56.5,-68.5
parent: 2
type: Transform
- - uid: 20857
+ - uid: 20867
components:
- pos: 54.5,-25.5
parent: 2
type: Transform
- - uid: 20858
+ - uid: 20868
components:
- pos: 56.5,-25.5
parent: 2
type: Transform
- - uid: 20859
+ - uid: 20869
components:
- pos: 58.5,-25.5
parent: 2
type: Transform
- - uid: 20860
+ - uid: 20870
components:
- pos: 68.5,-57.5
parent: 2
type: Transform
- - uid: 20861
+ - uid: 20871
components:
- pos: 71.5,-54.5
parent: 2
type: Transform
- - uid: 20862
+ - uid: 20872
components:
- pos: 70.5,-54.5
parent: 2
type: Transform
- - uid: 20863
+ - uid: 20873
components:
- pos: -12.5,43.5
parent: 2
type: Transform
- - uid: 20864
+ - uid: 20874
components:
- pos: -8.5,43.5
parent: 2
type: Transform
- - uid: 20865
+ - uid: 20875
components:
- pos: 73.5,46.5
parent: 2
type: Transform
- - uid: 20866
+ - uid: 20876
components:
- pos: 72.5,46.5
parent: 2
type: Transform
- - uid: 20867
+ - uid: 20877
components:
- rot: -1.5707963267948966 rad
pos: 70.5,-50.5
parent: 2
type: Transform
- - uid: 20868
+ - uid: 20878
components:
- rot: -1.5707963267948966 rad
pos: -25.5,-18.5
parent: 2
type: Transform
- - uid: 20869
+ - uid: 20879
components:
- pos: 36.5,18.5
parent: 2
type: Transform
- - uid: 20870
+ - uid: 20880
components:
- pos: 35.5,18.5
parent: 2
type: Transform
- - uid: 20871
+ - uid: 20881
components:
- pos: 34.5,18.5
parent: 2
type: Transform
- - uid: 20872
+ - uid: 20882
components:
- rot: 3.141592653589793 rad
pos: 71.5,-30.5
parent: 2
type: Transform
- - uid: 20873
+ - uid: 20883
components:
- rot: 1.5707963267948966 rad
pos: -49.5,-87.5
parent: 2
type: Transform
- - uid: 20874
+ - uid: 20884
components:
- pos: -31.5,72.5
parent: 2
type: Transform
- - uid: 20875
+ - uid: 20885
components:
- pos: -30.5,72.5
parent: 2
type: Transform
- - uid: 20876
+ - uid: 20886
components:
- pos: -29.5,72.5
parent: 2
type: Transform
- - uid: 20877
+ - uid: 20887
components:
- pos: -28.5,72.5
parent: 2
type: Transform
- - uid: 20878
+ - uid: 20888
components:
- pos: -27.5,72.5
parent: 2
type: Transform
- - uid: 20879
+ - uid: 20889
components:
- pos: -26.5,72.5
parent: 2
type: Transform
- - uid: 20880
+ - uid: 20890
components:
- pos: -40.5,-62.5
parent: 2
type: Transform
- - uid: 20881
+ - uid: 20891
components:
- pos: -41.5,-62.5
parent: 2
type: Transform
- - uid: 20882
+ - uid: 20892
components:
- pos: -47.5,-34.5
parent: 2
type: Transform
- - uid: 20883
+ - uid: 20893
components:
- pos: -47.5,-35.5
parent: 2
type: Transform
- - uid: 20884
+ - uid: 20894
components:
- pos: 46.5,-78.5
parent: 2
type: Transform
- - uid: 20885
+ - uid: 20895
components:
- pos: 46.5,-77.5
parent: 2
type: Transform
- - uid: 20886
+ - uid: 20896
components:
- pos: 46.5,-79.5
parent: 2
type: Transform
- - uid: 20887
+ - uid: 20897
components:
- rot: 3.141592653589793 rad
pos: 24.5,-80.5
parent: 2
type: Transform
- - uid: 20888
+ - uid: 20898
components:
- rot: 3.141592653589793 rad
pos: 28.5,-89.5
parent: 2
type: Transform
- - uid: 20889
+ - uid: 20899
components:
- rot: 3.141592653589793 rad
pos: 25.5,-75.5
parent: 2
type: Transform
- - uid: 20890
+ - uid: 20900
components:
- rot: 3.141592653589793 rad
pos: 26.5,-75.5
parent: 2
type: Transform
- - uid: 20891
+ - uid: 20901
components:
- rot: 3.141592653589793 rad
pos: 28.5,-90.5
parent: 2
type: Transform
- - uid: 20892
+ - uid: 20902
components:
- rot: 3.141592653589793 rad
pos: 14.5,-78.5
parent: 2
type: Transform
- - uid: 20893
+ - uid: 20903
components:
- rot: 3.141592653589793 rad
pos: 13.5,-78.5
parent: 2
type: Transform
- - uid: 20894
+ - uid: 20904
components:
- rot: 3.141592653589793 rad
pos: 25.5,-86.5
parent: 2
type: Transform
- - uid: 20895
+ - uid: 20905
components:
- rot: 3.141592653589793 rad
pos: 25.5,-67.5
parent: 2
type: Transform
- - uid: 20896
+ - uid: 20906
components:
- rot: 1.5707963267948966 rad
pos: 37.5,-74.5
parent: 2
type: Transform
- - uid: 20897
+ - uid: 20907
components:
- rot: 3.141592653589793 rad
pos: 26.5,-67.5
parent: 2
type: Transform
- - uid: 20898
+ - uid: 20908
components:
- rot: 3.141592653589793 rad
pos: 17.5,-78.5
parent: 2
type: Transform
- - uid: 20899
+ - uid: 20909
components:
- rot: 3.141592653589793 rad
pos: 16.5,-78.5
parent: 2
type: Transform
- - uid: 20900
+ - uid: 20910
components:
- rot: 3.141592653589793 rad
pos: 14.5,-88.5
parent: 2
type: Transform
- - uid: 20901
+ - uid: 20911
components:
- rot: 3.141592653589793 rad
pos: 13.5,-88.5
parent: 2
type: Transform
- - uid: 20902
+ - uid: 20912
components:
- rot: 3.141592653589793 rad
pos: 17.5,-88.5
parent: 2
type: Transform
- - uid: 20903
+ - uid: 20913
components:
- rot: 3.141592653589793 rad
pos: 16.5,-88.5
parent: 2
type: Transform
- - uid: 20904
+ - uid: 20914
components:
- rot: 3.141592653589793 rad
pos: 24.5,-86.5
parent: 2
type: Transform
- - uid: 20905
+ - uid: 20915
components:
- rot: 3.141592653589793 rad
pos: 51.5,-72.5
parent: 2
type: Transform
- - uid: 20906
+ - uid: 20916
components:
- rot: 3.141592653589793 rad
pos: 51.5,-71.5
parent: 2
type: Transform
- - uid: 20907
+ - uid: 20917
components:
- pos: 9.5,-18.5
parent: 2
type: Transform
- - uid: 20908
+ - uid: 20918
components:
- rot: 3.141592653589793 rad
pos: 6.5,-22.5
parent: 2
type: Transform
- - uid: 20909
+ - uid: 20919
components:
- rot: 3.141592653589793 rad
pos: 6.5,-23.5
parent: 2
type: Transform
- - uid: 20910
+ - uid: 20920
components:
- pos: 45.5,9.5
parent: 2
type: Transform
- - uid: 20911
+ - uid: 20921
components:
- pos: 48.5,7.5
parent: 2
type: Transform
- - uid: 20912
+ - uid: 20922
components:
- rot: -1.5707963267948966 rad
pos: 1.5,-74.5
parent: 2
type: Transform
- - uid: 20913
+ - uid: 20923
components:
- pos: -76.5,-25.5
parent: 2
type: Transform
- - uid: 20914
+ - uid: 20924
components:
- pos: -76.5,-12.5
parent: 2
type: Transform
- - uid: 20915
+ - uid: 20925
components:
- rot: -1.5707963267948966 rad
pos: 31.5,35.5
parent: 2
type: Transform
- - uid: 20916
+ - uid: 20926
components:
- rot: -1.5707963267948966 rad
pos: 30.5,35.5
parent: 2
type: Transform
- - uid: 20917
+ - uid: 20927
components:
- rot: -1.5707963267948966 rad
pos: 29.5,35.5
parent: 2
type: Transform
- - uid: 20918
+ - uid: 20928
components:
- rot: -1.5707963267948966 rad
pos: 28.5,35.5
parent: 2
type: Transform
- - uid: 20919
+ - uid: 20929
components:
- rot: -1.5707963267948966 rad
pos: 27.5,35.5
parent: 2
type: Transform
- - uid: 20920
+ - uid: 20930
components:
- pos: 67.5,-32.5
parent: 2
type: Transform
- - uid: 20921
+ - uid: 20931
components:
- rot: 1.5707963267948966 rad
pos: -77.5,-51.5
parent: 2
type: Transform
- - uid: 20922
+ - uid: 20932
components:
- rot: 1.5707963267948966 rad
pos: 38.5,-74.5
parent: 2
type: Transform
- - uid: 20923
+ - uid: 20933
components:
- rot: 1.5707963267948966 rad
pos: 39.5,-74.5
parent: 2
type: Transform
- - uid: 20924
+ - uid: 20934
components:
- rot: 1.5707963267948966 rad
pos: 40.5,-74.5
parent: 2
type: Transform
- - uid: 20925
+ - uid: 20935
components:
- rot: 1.5707963267948966 rad
pos: -80.5,-54.5
parent: 2
type: Transform
- - uid: 20926
+ - uid: 20936
components:
- rot: 1.5707963267948966 rad
pos: -8.5,13.5
parent: 2
type: Transform
- - uid: 20927
+ - uid: 20937
components:
- rot: 1.5707963267948966 rad
pos: -78.5,-56.5
parent: 2
type: Transform
- - uid: 20928
+ - uid: 20938
components:
- pos: -72.5,-50.5
parent: 2
type: Transform
- - uid: 20929
+ - uid: 20939
components:
- rot: 1.5707963267948966 rad
pos: -77.5,-56.5
parent: 2
type: Transform
- - uid: 20930
+ - uid: 20940
components:
- rot: 1.5707963267948966 rad
pos: -80.5,-53.5
parent: 2
type: Transform
- - uid: 20931
+ - uid: 20941
components:
- rot: 1.5707963267948966 rad
pos: -78.5,-51.5
parent: 2
type: Transform
- - uid: 20932
+ - uid: 20942
components:
- rot: -1.5707963267948966 rad
pos: -72.5,-57.5
parent: 2
type: Transform
- - uid: 20933
+ - uid: 20943
components:
- rot: -1.5707963267948966 rad
pos: -74.5,-40.5
parent: 2
type: Transform
- - uid: 20934
+ - uid: 20944
components:
- pos: -70.5,-47.5
parent: 2
type: Transform
- - uid: 20935
+ - uid: 20945
components:
- pos: -69.5,-47.5
parent: 2
type: Transform
- - uid: 20936
+ - uid: 20946
components:
- pos: -68.5,-47.5
parent: 2
type: Transform
- - uid: 20937
+ - uid: 20947
components:
- pos: -64.5,-43.5
parent: 2
type: Transform
- - uid: 20938
+ - uid: 20948
components:
- pos: -82.5,-28.5
parent: 2
type: Transform
- - uid: 20939
+ - uid: 20949
components:
- pos: -82.5,-29.5
parent: 2
type: Transform
- - uid: 20940
+ - uid: 20950
components:
- pos: -82.5,-30.5
parent: 2
type: Transform
- - uid: 20941
+ - uid: 20951
components:
- pos: -82.5,-31.5
parent: 2
type: Transform
- - uid: 20942
+ - uid: 20952
components:
- pos: -82.5,-32.5
parent: 2
type: Transform
- - uid: 20943
+ - uid: 20953
components:
- pos: -82.5,-33.5
parent: 2
type: Transform
- - uid: 20944
+ - uid: 20954
components:
- pos: -82.5,-34.5
parent: 2
type: Transform
- - uid: 20945
+ - uid: 20955
components:
- pos: -82.5,-35.5
parent: 2
type: Transform
- - uid: 20946
+ - uid: 20956
components:
- pos: -82.5,-36.5
parent: 2
type: Transform
- - uid: 20947
+ - uid: 20957
components:
- pos: -82.5,-37.5
parent: 2
type: Transform
- - uid: 20948
+ - uid: 20958
components:
- pos: -82.5,-38.5
parent: 2
type: Transform
- - uid: 20949
+ - uid: 20959
components:
- pos: -82.5,-39.5
parent: 2
type: Transform
- - uid: 20950
+ - uid: 20960
components:
- pos: -82.5,-40.5
parent: 2
type: Transform
- - uid: 20951
+ - uid: 20961
components:
- pos: -82.5,-41.5
parent: 2
type: Transform
- - uid: 20952
+ - uid: 20962
components:
- pos: -82.5,-42.5
parent: 2
type: Transform
- - uid: 20953
+ - uid: 20963
components:
- pos: -82.5,-43.5
parent: 2
type: Transform
- - uid: 20954
+ - uid: 20964
components:
- pos: -82.5,-44.5
parent: 2
type: Transform
- - uid: 20955
+ - uid: 20965
components:
- pos: -82.5,-45.5
parent: 2
type: Transform
- - uid: 20956
+ - uid: 20966
components:
- pos: -82.5,-46.5
parent: 2
type: Transform
- - uid: 20957
+ - uid: 20967
components:
- pos: -82.5,-47.5
parent: 2
type: Transform
- - uid: 20958
+ - uid: 20968
components:
- pos: -82.5,-48.5
parent: 2
type: Transform
- - uid: 20959
+ - uid: 20969
components:
- pos: -82.5,-27.5
parent: 2
type: Transform
- - uid: 20960
+ - uid: 20970
components:
- pos: -82.5,-26.5
parent: 2
type: Transform
- - uid: 20961
+ - uid: 20971
components:
- pos: -81.5,-26.5
parent: 2
type: Transform
- - uid: 20962
+ - uid: 20972
components:
- rot: 1.5707963267948966 rad
pos: -15.5,9.5
parent: 2
type: Transform
- - uid: 20963
+ - uid: 20973
components:
- pos: -51.5,-13.5
parent: 2
type: Transform
- - uid: 20964
+ - uid: 20974
components:
- rot: 1.5707963267948966 rad
pos: -14.5,9.5
parent: 2
type: Transform
- - uid: 20965
+ - uid: 20975
components:
- rot: 3.141592653589793 rad
pos: -61.5,-44.5
parent: 2
type: Transform
- - uid: 20966
+ - uid: 20976
components:
- rot: 1.5707963267948966 rad
pos: -13.5,9.5
parent: 2
type: Transform
- - uid: 20967
+ - uid: 20977
components:
- pos: -60.5,-38.5
parent: 2
type: Transform
- - uid: 20968
+ - uid: 20978
components:
- rot: -1.5707963267948966 rad
pos: -46.5,-38.5
parent: 2
type: Transform
- - uid: 20969
+ - uid: 20979
components:
- pos: -52.5,-38.5
parent: 2
type: Transform
- - uid: 20970
+ - uid: 20980
components:
- rot: 3.141592653589793 rad
pos: -78.5,-45.5
parent: 2
type: Transform
- - uid: 20971
+ - uid: 20981
components:
- pos: -42.5,-37.5
parent: 2
type: Transform
- - uid: 20972
+ - uid: 20982
components:
- rot: -1.5707963267948966 rad
pos: -53.5,-31.5
parent: 2
type: Transform
- - uid: 20973
+ - uid: 20983
components:
- rot: -1.5707963267948966 rad
pos: -53.5,-32.5
parent: 2
type: Transform
- - uid: 20974
+ - uid: 20984
components:
- rot: 3.141592653589793 rad
pos: 20.5,-34.5
parent: 2
type: Transform
- - uid: 20975
+ - uid: 20985
components:
- rot: -1.5707963267948966 rad
pos: 2.5,-3.5
parent: 2
type: Transform
- - uid: 20976
+ - uid: 20986
components:
- rot: -1.5707963267948966 rad
pos: 1.5,-3.5
parent: 2
type: Transform
- - uid: 20977
+ - uid: 20987
components:
- pos: 3.5,-3.5
parent: 2
type: Transform
- - uid: 20978
+ - uid: 20988
components:
- rot: -1.5707963267948966 rad
pos: 23.5,-40.5
parent: 2
type: Transform
- - uid: 20979
+ - uid: 20989
components:
- rot: -1.5707963267948966 rad
pos: 24.5,-40.5
parent: 2
type: Transform
- - uid: 20980
+ - uid: 20990
components:
- rot: -1.5707963267948966 rad
pos: 26.5,-40.5
parent: 2
type: Transform
- - uid: 20981
+ - uid: 20991
components:
- rot: -1.5707963267948966 rad
pos: 27.5,-40.5
parent: 2
type: Transform
- - uid: 20982
+ - uid: 20992
components:
- pos: 8.5,27.5
parent: 2
type: Transform
- - uid: 20983
+ - uid: 20993
components:
- pos: 10.5,29.5
parent: 2
type: Transform
- - uid: 20984
+ - uid: 20994
components:
- pos: 10.5,27.5
parent: 2
type: Transform
- - uid: 20985
+ - uid: 20995
components:
- pos: 9.5,27.5
parent: 2
type: Transform
- - uid: 20986
+ - uid: 20996
components:
- rot: -1.5707963267948966 rad
pos: 54.5,-40.5
parent: 2
type: Transform
- - uid: 20987
+ - uid: 20997
components:
- rot: -1.5707963267948966 rad
pos: 54.5,-42.5
parent: 2
type: Transform
- - uid: 20988
+ - uid: 20998
components:
- pos: -29.5,-63.5
parent: 2
type: Transform
- - uid: 20989
+ - uid: 20999
components:
- rot: -1.5707963267948966 rad
pos: -6.5,-13.5
parent: 2
type: Transform
- - uid: 20990
+ - uid: 21000
components:
- rot: 3.141592653589793 rad
pos: -21.5,-91.5
parent: 2
type: Transform
- - uid: 20991
+ - uid: 21001
components:
- rot: 3.141592653589793 rad
pos: -23.5,-91.5
parent: 2
type: Transform
- - uid: 20992
+ - uid: 21002
components:
- rot: 1.5707963267948966 rad
pos: -38.5,17.5
parent: 2
type: Transform
- - uid: 20993
+ - uid: 21003
components:
- rot: 3.141592653589793 rad
pos: -27.5,-90.5
parent: 2
type: Transform
- - uid: 20994
+ - uid: 21004
components:
- rot: -1.5707963267948966 rad
pos: 55.5,62.5
parent: 2
type: Transform
- - uid: 20995
+ - uid: 21005
components:
- rot: -1.5707963267948966 rad
pos: 54.5,62.5
parent: 2
type: Transform
- - uid: 20996
+ - uid: 21006
components:
- rot: -1.5707963267948966 rad
pos: 53.5,62.5
parent: 2
type: Transform
- - uid: 20997
+ - uid: 21007
components:
- rot: -1.5707963267948966 rad
pos: 49.5,58.5
parent: 2
type: Transform
- - uid: 20998
+ - uid: 21008
components:
- rot: -1.5707963267948966 rad
pos: 49.5,57.5
parent: 2
type: Transform
- - uid: 20999
+ - uid: 21009
components:
- rot: -1.5707963267948966 rad
pos: 49.5,56.5
parent: 2
type: Transform
- - uid: 21000
+ - uid: 21010
components:
- rot: -1.5707963267948966 rad
pos: 59.5,58.5
parent: 2
type: Transform
- - uid: 21001
+ - uid: 21011
components:
- rot: -1.5707963267948966 rad
pos: 59.5,57.5
parent: 2
type: Transform
- - uid: 21002
+ - uid: 21012
components:
- rot: -1.5707963267948966 rad
pos: 59.5,56.5
parent: 2
type: Transform
- - uid: 21003
+ - uid: 21013
components:
- rot: 3.141592653589793 rad
pos: -22.5,-91.5
parent: 2
type: Transform
- - uid: 21004
+ - uid: 21014
components:
- rot: 3.141592653589793 rad
pos: 39.5,67.5
parent: 2
type: Transform
- - uid: 21005
+ - uid: 21015
components:
- rot: 3.141592653589793 rad
pos: 35.5,63.5
parent: 2
type: Transform
- - uid: 21006
+ - uid: 21016
components:
- rot: 3.141592653589793 rad
pos: 43.5,63.5
parent: 2
type: Transform
- - uid: 21007
+ - uid: 21017
components:
- rot: 3.141592653589793 rad
pos: 78.5,-43.5
parent: 2
type: Transform
- - uid: 21008
+ - uid: 21018
components:
- rot: 3.141592653589793 rad
pos: 78.5,-47.5
parent: 2
type: Transform
- - uid: 21009
+ - uid: 21019
components:
- rot: 1.5707963267948966 rad
pos: -37.5,17.5
parent: 2
type: Transform
- - uid: 21010
+ - uid: 21020
components:
- rot: 3.141592653589793 rad
pos: -57.5,-87.5
parent: 2
type: Transform
- - uid: 21011
+ - uid: 21021
components:
- rot: 1.5707963267948966 rad
pos: -64.5,-53.5
parent: 2
type: Transform
- - uid: 21012
+ - uid: 21022
components:
- rot: 1.5707963267948966 rad
pos: -64.5,-54.5
parent: 2
type: Transform
- - uid: 21013
+ - uid: 21023
components:
- rot: 1.5707963267948966 rad
pos: -64.5,-52.5
parent: 2
type: Transform
- - uid: 21014
+ - uid: 21024
components:
- rot: 1.5707963267948966 rad
pos: -64.5,-55.5
parent: 2
type: Transform
- - uid: 21015
+ - uid: 21025
components:
- rot: 1.5707963267948966 rad
pos: -51.5,-85.5
parent: 2
type: Transform
- - uid: 21016
+ - uid: 21026
components:
- rot: 1.5707963267948966 rad
pos: -51.5,-89.5
@@ -137589,384 +137681,384 @@ entities:
type: Transform
- proto: GrilleBroken
entities:
- - uid: 21017
+ - uid: 21027
components:
- rot: 3.141592653589793 rad
pos: -2.5,-71.5
parent: 2
type: Transform
- - uid: 21018
+ - uid: 21028
components:
- pos: -2.5,-71.5
parent: 2
type: Transform
- - uid: 21019
+ - uid: 21029
components:
- rot: -1.5707963267948966 rad
pos: -54.5,-83.5
parent: 2
type: Transform
- - uid: 21020
+ - uid: 21030
components:
- rot: 1.5707963267948966 rad
pos: -54.5,-83.5
parent: 2
type: Transform
- - uid: 21021
+ - uid: 21031
components:
- rot: -1.5707963267948966 rad
pos: 2.5,49.5
parent: 2
type: Transform
- - uid: 21022
+ - uid: 21032
components:
- rot: 1.5707963267948966 rad
pos: 2.5,49.5
parent: 2
type: Transform
- - uid: 21023
+ - uid: 21033
components:
- rot: 3.141592653589793 rad
pos: 2.5,48.5
parent: 2
type: Transform
- - uid: 21024
+ - uid: 21034
components:
- pos: 2.5,48.5
parent: 2
type: Transform
- proto: GrilleDiagonal
entities:
- - uid: 21025
+ - uid: 21035
components:
- rot: 3.141592653589793 rad
pos: -1.5,-36.5
parent: 2
type: Transform
- - uid: 21026
+ - uid: 21036
components:
- rot: -1.5707963267948966 rad
pos: -1.5,-30.5
parent: 2
type: Transform
- - uid: 21027
+ - uid: 21037
components:
- pos: -50.5,-88.5
parent: 2
type: Transform
- - uid: 21028
+ - uid: 21038
components:
- rot: -1.5707963267948966 rad
pos: 59.5,59.5
parent: 2
type: Transform
- - uid: 21029
+ - uid: 21039
components:
- rot: 3.141592653589793 rad
pos: 59.5,55.5
parent: 2
type: Transform
- - uid: 21030
+ - uid: 21040
components:
- pos: 49.5,59.5
parent: 2
type: Transform
- - uid: 21031
+ - uid: 21041
components:
- rot: -1.5707963267948966 rad
pos: -1.5,-30.5
parent: 2
type: Transform
- - uid: 21032
+ - uid: 21042
components:
- rot: 1.5707963267948966 rad
pos: -27.5,-91.5
parent: 2
type: Transform
- - uid: 21033
+ - uid: 21043
components:
- rot: 3.141592653589793 rad
pos: -18.5,-91.5
parent: 2
type: Transform
- - uid: 21034
+ - uid: 21044
components:
- rot: 3.141592653589793 rad
pos: 18.5,-88.5
parent: 2
type: Transform
- - uid: 21035
+ - uid: 21045
components:
- rot: -1.5707963267948966 rad
pos: 18.5,-78.5
parent: 2
type: Transform
- - uid: 21036
+ - uid: 21046
components:
- rot: 1.5707963267948966 rad
pos: 12.5,-88.5
parent: 2
type: Transform
- - uid: 21037
+ - uid: 21047
components:
- pos: 12.5,-78.5
parent: 2
type: Transform
- - uid: 21038
+ - uid: 21048
components:
- rot: -1.5707963267948966 rad
pos: 78.5,-42.5
parent: 2
type: Transform
- - uid: 21039
+ - uid: 21049
components:
- rot: 3.141592653589793 rad
pos: -1.5,-36.5
parent: 2
type: Transform
- - uid: 21040
+ - uid: 21050
components:
- rot: 3.141592653589793 rad
pos: -50.5,-89.5
parent: 2
type: Transform
- - uid: 21041
+ - uid: 21051
components:
- rot: 3.141592653589793 rad
pos: -49.5,-88.5
parent: 2
type: Transform
- - uid: 21042
+ - uid: 21052
components:
- rot: -1.5707963267948966 rad
pos: -49.5,-86.5
parent: 2
type: Transform
- - uid: 21043
+ - uid: 21053
components:
- rot: 1.5707963267948966 rad
pos: -50.5,-86.5
parent: 2
type: Transform
- - uid: 21044
+ - uid: 21054
components:
- rot: -1.5707963267948966 rad
pos: -50.5,-85.5
parent: 2
type: Transform
- - uid: 21045
+ - uid: 21055
components:
- rot: 1.5707963267948966 rad
pos: 49.5,55.5
parent: 2
type: Transform
- - uid: 21046
+ - uid: 21056
components:
- pos: 52.5,62.5
parent: 2
type: Transform
- - uid: 21047
+ - uid: 21057
components:
- rot: -1.5707963267948966 rad
pos: 56.5,62.5
parent: 2
type: Transform
- - uid: 21048
+ - uid: 21058
components:
- rot: 1.5707963267948966 rad
pos: 38.5,59.5
parent: 2
type: Transform
- - uid: 21049
+ - uid: 21059
components:
- rot: -1.5707963267948966 rad
pos: 38.5,60.5
parent: 2
type: Transform
- - uid: 21050
+ - uid: 21060
components:
- rot: 1.5707963267948966 rad
pos: 37.5,60.5
parent: 2
type: Transform
- - uid: 21051
+ - uid: 21061
components:
- rot: -1.5707963267948966 rad
pos: 37.5,61.5
parent: 2
type: Transform
- - uid: 21052
+ - uid: 21062
components:
- rot: 1.5707963267948966 rad
pos: 36.5,61.5
parent: 2
type: Transform
- - uid: 21053
+ - uid: 21063
components:
- rot: -1.5707963267948966 rad
pos: 36.5,62.5
parent: 2
type: Transform
- - uid: 21054
+ - uid: 21064
components:
- rot: 1.5707963267948966 rad
pos: 35.5,62.5
parent: 2
type: Transform
- - uid: 21055
+ - uid: 21065
components:
- pos: 35.5,64.5
parent: 2
type: Transform
- - uid: 21056
+ - uid: 21066
components:
- rot: 3.141592653589793 rad
pos: 36.5,64.5
parent: 2
type: Transform
- - uid: 21057
+ - uid: 21067
components:
- pos: 36.5,65.5
parent: 2
type: Transform
- - uid: 21058
+ - uid: 21068
components:
- rot: 3.141592653589793 rad
pos: 37.5,65.5
parent: 2
type: Transform
- - uid: 21059
+ - uid: 21069
components:
- pos: 37.5,66.5
parent: 2
type: Transform
- - uid: 21060
+ - uid: 21070
components:
- rot: 3.141592653589793 rad
pos: 38.5,66.5
parent: 2
type: Transform
- - uid: 21061
+ - uid: 21071
components:
- pos: 38.5,67.5
parent: 2
type: Transform
- - uid: 21062
+ - uid: 21072
components:
- rot: -1.5707963267948966 rad
pos: 40.5,67.5
parent: 2
type: Transform
- - uid: 21063
+ - uid: 21073
components:
- rot: 1.5707963267948966 rad
pos: 40.5,66.5
parent: 2
type: Transform
- - uid: 21064
+ - uid: 21074
components:
- rot: -1.5707963267948966 rad
pos: 41.5,66.5
parent: 2
type: Transform
- - uid: 21065
+ - uid: 21075
components:
- rot: 1.5707963267948966 rad
pos: 41.5,65.5
parent: 2
type: Transform
- - uid: 21066
+ - uid: 21076
components:
- rot: -1.5707963267948966 rad
pos: 42.5,65.5
parent: 2
type: Transform
- - uid: 21067
+ - uid: 21077
components:
- rot: 1.5707963267948966 rad
pos: 42.5,64.5
parent: 2
type: Transform
- - uid: 21068
+ - uid: 21078
components:
- rot: -1.5707963267948966 rad
pos: 43.5,64.5
parent: 2
type: Transform
- - uid: 21069
+ - uid: 21079
components:
- rot: 3.141592653589793 rad
pos: 43.5,62.5
parent: 2
type: Transform
- - uid: 21070
+ - uid: 21080
components:
- pos: 42.5,62.5
parent: 2
type: Transform
- - uid: 21071
+ - uid: 21081
components:
- rot: 3.141592653589793 rad
pos: 42.5,61.5
parent: 2
type: Transform
- - uid: 21072
+ - uid: 21082
components:
- pos: 41.5,61.5
parent: 2
type: Transform
- - uid: 21073
+ - uid: 21083
components:
- rot: 3.141592653589793 rad
pos: 41.5,60.5
parent: 2
type: Transform
- - uid: 21074
+ - uid: 21084
components:
- pos: 40.5,60.5
parent: 2
type: Transform
- - uid: 21075
+ - uid: 21085
components:
- rot: 3.141592653589793 rad
pos: 40.5,59.5
parent: 2
type: Transform
- - uid: 21076
+ - uid: 21086
components:
- rot: 3.141592653589793 rad
pos: 78.5,-48.5
parent: 2
type: Transform
- - uid: 21077
+ - uid: 21087
components:
- pos: -79.5,-51.5
parent: 2
type: Transform
- - uid: 21078
+ - uid: 21088
components:
- rot: 3.141592653589793 rad
pos: -79.5,-52.5
parent: 2
type: Transform
- - uid: 21079
+ - uid: 21089
components:
- pos: -80.5,-52.5
parent: 2
type: Transform
- - uid: 21080
+ - uid: 21090
components:
- rot: 1.5707963267948966 rad
pos: -80.5,-55.5
parent: 2
type: Transform
- - uid: 21081
+ - uid: 21091
components:
- rot: -1.5707963267948966 rad
pos: -79.5,-55.5
parent: 2
type: Transform
- - uid: 21082
+ - uid: 21092
components:
- rot: 1.5707963267948966 rad
pos: -79.5,-56.5
@@ -137974,7 +138066,7 @@ entities:
type: Transform
- proto: GrilleSpawner
entities:
- - uid: 21083
+ - uid: 21093
components:
- rot: 3.141592653589793 rad
pos: -47.5,-30.5
@@ -137982,92 +138074,92 @@ entities:
type: Transform
- proto: GunpetInstrument
entities:
- - uid: 21084
+ - uid: 21094
components:
- pos: 18.804333,-20.357145
parent: 2
type: Transform
- proto: GunSafeDisabler
entities:
- - uid: 21085
+ - uid: 21095
components:
- pos: 23.5,20.5
parent: 2
type: Transform
- proto: Handcuffs
entities:
- - uid: 21086
+ - uid: 21096
components:
- pos: -1.4479281,19.547018
parent: 2
type: Transform
- - uid: 21087
+ - uid: 21097
components:
- pos: -15.367192,-23.36869
parent: 2
type: Transform
- proto: HandheldHealthAnalyzer
entities:
- - uid: 21088
+ - uid: 21098
components:
- pos: 10.274347,-58.341446
parent: 2
type: Transform
- - uid: 21089
+ - uid: 21099
components:
- pos: 10.539972,-58.60707
parent: 2
type: Transform
- - uid: 21090
+ - uid: 21100
components:
- pos: 45.505707,8.483616
parent: 2
type: Transform
- proto: HandLabeler
entities:
- - uid: 21091
- components:
- - pos: 7.5090528,-45.828945
- parent: 2
- type: Transform
- - uid: 21092
+ - uid: 21101
components:
- pos: 39.184,-39.455414
parent: 2
type: Transform
- - uid: 21093
+ - uid: 21102
components:
- pos: -33.328754,17.574179
parent: 2
type: Transform
- - uid: 21094
+ - uid: 21103
components:
- pos: -28.559744,21.679361
parent: 2
type: Transform
- - uid: 21095
+ - uid: 21104
components:
- rot: 3.141592653589793 rad
pos: -32.198154,29.656374
parent: 2
type: Transform
+ - uid: 21105
+ components:
+ - pos: 7.5597568,-45.455807
+ parent: 2
+ type: Transform
- proto: HappyHonkNukie
entities:
- - uid: 21096
+ - uid: 21106
components:
- pos: 22.60001,-29.307062
parent: 2
type: Transform
- proto: HarmonicaInstrument
entities:
- - uid: 21097
+ - uid: 21107
components:
- pos: 53.479427,24.562923
parent: 2
type: Transform
- proto: HeatExchanger
entities:
- - uid: 21098
+ - uid: 21108
components:
- rot: -1.5707963267948966 rad
pos: -63.5,-42.5
@@ -138075,7 +138167,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 21099
+ - uid: 21109
components:
- rot: -1.5707963267948966 rad
pos: -63.5,-39.5
@@ -138083,14 +138175,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 21100
+ - uid: 21110
components:
- pos: -62.5,-41.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 21101
+ - uid: 21111
components:
- pos: -62.5,-40.5
parent: 2
@@ -138099,60 +138191,60 @@ entities:
type: AtmosPipeColor
- proto: Hemostat
entities:
- - uid: 21102
+ - uid: 21112
components:
- pos: 0.5210637,-64.93571
parent: 2
type: Transform
- - uid: 21103
+ - uid: 21113
components:
- pos: 73.5331,-48.317677
parent: 2
type: Transform
- proto: HighSecArmoryLocked
entities:
- - uid: 21104
+ - uid: 21114
components:
- pos: 28.5,26.5
parent: 2
type: Transform
- - uid: 21105
+ - uid: 21115
components:
- pos: 30.5,26.5
parent: 2
type: Transform
- - uid: 21106
+ - uid: 21116
components:
- pos: 30.5,24.5
parent: 2
type: Transform
- - uid: 21107
+ - uid: 21117
components:
- pos: 28.5,24.5
parent: 2
type: Transform
- proto: HighSecCaptainLocked
entities:
- - uid: 21108
+ - uid: 21118
components:
- name: vault
type: MetaData
- pos: 43.5,-24.5
parent: 2
type: Transform
- - uid: 21109
+ - uid: 21119
components:
- name: vault
type: MetaData
- pos: 43.5,-27.5
parent: 2
type: Transform
- - uid: 21110
+ - uid: 21120
components:
- pos: -1.5,64.5
parent: 2
type: Transform
- - uid: 21111
+ - uid: 21121
components:
- name: AI
type: MetaData
@@ -138161,21 +138253,21 @@ entities:
type: Transform
- proto: HighSecCommandLocked
entities:
- - uid: 21112
+ - uid: 21122
components:
- pos: 13.5,-21.5
parent: 2
type: Transform
- proto: HolofanProjector
entities:
- - uid: 21113
+ - uid: 21123
components:
- pos: -37.369167,-8.432599
parent: 2
type: Transform
- proto: HospitalCurtains
entities:
- - uid: 21114
+ - uid: 21124
components:
- pos: 60.5,21.5
parent: 2
@@ -138186,30 +138278,36 @@ entities:
type: Door
- canCollide: False
type: Physics
- - uid: 21115
+ - uid: 21125
components:
- rot: 3.141592653589793 rad
pos: 60.5,13.5
parent: 2
type: Transform
+ - uid: 21126
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -37.5,-19.5
+ parent: 2
+ type: Transform
- proto: HospitalCurtainsOpen
entities:
- - uid: 21116
+ - uid: 21127
components:
- pos: -2.5,-55.5
parent: 2
type: Transform
- - uid: 21117
+ - uid: 21128
components:
- pos: -5.5,-55.5
parent: 2
type: Transform
- - uid: 21118
+ - uid: 21129
components:
- pos: -11.5,-55.5
parent: 2
type: Transform
- - uid: 21119
+ - uid: 21130
components:
- pos: 3.5,-62.5
parent: 2
@@ -138220,99 +138318,105 @@ entities:
type: Occluder
- canCollide: True
type: Physics
- - uid: 21120
+ - uid: 21131
components:
- pos: 0.5,-55.5
parent: 2
type: Transform
- - uid: 21121
+ - uid: 21132
components:
- pos: -8.5,-55.5
parent: 2
type: Transform
+ - uid: 21133
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -36.5,-19.5
+ parent: 2
+ type: Transform
- proto: hydroponicsSoil
entities:
- - uid: 21122
+ - uid: 21134
components:
- pos: 9.5,55.5
parent: 2
type: Transform
- - uid: 21123
+ - uid: 21135
components:
- pos: 8.5,55.5
parent: 2
type: Transform
- - uid: 21124
+ - uid: 21136
components:
- pos: 10.5,55.5
parent: 2
type: Transform
- - uid: 21125
+ - uid: 21137
components:
- pos: 11.5,55.5
parent: 2
type: Transform
- - uid: 21126
+ - uid: 21138
components:
- pos: 7.5,55.5
parent: 2
type: Transform
- - uid: 21127
+ - uid: 21139
components:
- pos: 11.5,52.5
parent: 2
type: Transform
- - uid: 21128
+ - uid: 21140
components:
- pos: 10.5,52.5
parent: 2
type: Transform
- - uid: 21129
+ - uid: 21141
components:
- pos: 9.5,52.5
parent: 2
type: Transform
- - uid: 21130
+ - uid: 21142
components:
- pos: -6.5,49.5
parent: 2
type: Transform
- - uid: 21131
+ - uid: 21143
components:
- pos: -4.5,55.5
parent: 2
type: Transform
- - uid: 21132
+ - uid: 21144
components:
- rot: -1.5707963267948966 rad
pos: -28.5,4.5
parent: 2
type: Transform
- - uid: 21133
+ - uid: 21145
components:
- rot: -1.5707963267948966 rad
pos: -28.5,3.5
parent: 2
type: Transform
- - uid: 21134
+ - uid: 21146
components:
- rot: -1.5707963267948966 rad
pos: -4.5,19.5
parent: 2
type: Transform
- - uid: 21135
+ - uid: 21147
components:
- rot: -1.5707963267948966 rad
pos: -7.5,19.5
parent: 2
type: Transform
- - uid: 21136
+ - uid: 21148
components:
- rot: 1.5707963267948966 rad
pos: -54.5,-68.5
parent: 2
type: Transform
- - uid: 21137
+ - uid: 21149
components:
- rot: 1.5707963267948966 rad
pos: -55.5,-68.5
@@ -138320,296 +138424,296 @@ entities:
type: Transform
- proto: HydroponicsToolClippers
entities:
- - uid: 21138
+ - uid: 21150
components:
- pos: -47.467487,-3.558907
parent: 2
type: Transform
- proto: HydroponicsToolHatchet
entities:
- - uid: 21139
+ - uid: 21151
components:
- pos: 9.725508,-56.44578
parent: 2
type: Transform
- proto: HydroponicsToolMiniHoe
entities:
- - uid: 21140
+ - uid: 21152
components:
- pos: 57.497448,6.490094
parent: 2
type: Transform
- - uid: 21141
+ - uid: 21153
components:
- pos: -28.501194,4.4131045
parent: 2
type: Transform
- - uid: 21142
+ - uid: 21154
components:
- pos: 55.4544,56.501
parent: 2
type: Transform
- - uid: 21143
+ - uid: 21155
components:
- pos: 7.1714664,53.671818
parent: 2
type: Transform
- proto: HydroponicsToolScythe
entities:
- - uid: 21144
+ - uid: 21156
components:
- pos: -2.5396576,10.576576
parent: 2
type: Transform
- proto: HydroponicsToolSpade
entities:
- - uid: 21145
+ - uid: 21157
components:
- pos: 57.622448,6.583844
parent: 2
type: Transform
- - uid: 21146
+ - uid: 21158
components:
- pos: -28.61099,3.5269613
parent: 2
type: Transform
- - uid: 21147
+ - uid: 21159
components:
- pos: 55.54815,56.53225
parent: 2
type: Transform
- proto: hydroponicsTray
entities:
- - uid: 21148
+ - uid: 21160
components:
- pos: -10.5,11.5
parent: 2
type: Transform
- - uid: 21149
+ - uid: 21161
components:
- pos: -6.5,10.5
parent: 2
type: Transform
- - uid: 21150
+ - uid: 21162
components:
- pos: -10.5,10.5
parent: 2
type: Transform
- - uid: 21151
+ - uid: 21163
components:
- pos: -4.5,7.5
parent: 2
type: Transform
- - uid: 21152
+ - uid: 21164
components:
- pos: -8.5,9.5
parent: 2
type: Transform
- - uid: 21153
+ - uid: 21165
components:
- pos: -6.5,7.5
parent: 2
type: Transform
- - uid: 21154
+ - uid: 21166
components:
- pos: -6.5,9.5
parent: 2
type: Transform
- - uid: 21155
+ - uid: 21167
components:
- pos: -8.5,8.5
parent: 2
type: Transform
- - uid: 21156
+ - uid: 21168
components:
- pos: -4.5,8.5
parent: 2
type: Transform
- - uid: 21157
+ - uid: 21169
components:
- pos: -8.5,10.5
parent: 2
type: Transform
- - uid: 21158
+ - uid: 21170
components:
- pos: -6.5,11.5
parent: 2
type: Transform
- - uid: 21159
+ - uid: 21171
components:
- pos: -6.5,8.5
parent: 2
type: Transform
- - uid: 21160
+ - uid: 21172
components:
- pos: -10.5,8.5
parent: 2
type: Transform
- - uid: 21161
+ - uid: 21173
components:
- pos: -8.5,7.5
parent: 2
type: Transform
- - uid: 21162
+ - uid: 21174
components:
- pos: -10.5,7.5
parent: 2
type: Transform
- - uid: 21163
+ - uid: 21175
components:
- pos: -10.5,9.5
parent: 2
type: Transform
- - uid: 21164
+ - uid: 21176
components:
- pos: -8.5,11.5
parent: 2
type: Transform
- - uid: 21165
+ - uid: 21177
components:
- pos: 58.5,8.5
parent: 2
type: Transform
- - uid: 21166
+ - uid: 21178
components:
- pos: 58.5,7.5
parent: 2
type: Transform
- - uid: 21167
+ - uid: 21179
components:
- pos: 58.5,6.5
parent: 2
type: Transform
- - uid: 21168
+ - uid: 21180
components:
- pos: 56.5,8.5
parent: 2
type: Transform
- - uid: 21169
+ - uid: 21181
components:
- pos: 56.5,7.5
parent: 2
type: Transform
- - uid: 21170
+ - uid: 21182
components:
- pos: 56.5,6.5
parent: 2
type: Transform
- - uid: 21171
+ - uid: 21183
components:
- pos: 52.5,55.5
parent: 2
type: Transform
- - uid: 21172
+ - uid: 21184
components:
- pos: 56.5,55.5
parent: 2
type: Transform
- proto: HydroponicsTrayMachineCircuitboard
entities:
- - uid: 21173
+ - uid: 21185
components:
- pos: 38.518326,-56.124916
parent: 2
type: Transform
- proto: InflatableDoorStack1
entities:
- - uid: 21174
+ - uid: 21186
components:
- pos: 41.577766,-55.382984
parent: 2
type: Transform
- proto: InflatableWall
entities:
- - uid: 21175
+ - uid: 21187
components:
- pos: -51.5,-66.5
parent: 2
type: Transform
- - uid: 21176
+ - uid: 21188
components:
- pos: -51.5,-67.5
parent: 2
type: Transform
- - uid: 21177
+ - uid: 21189
components:
- pos: -49.5,-72.5
parent: 2
type: Transform
- proto: InflatableWallStack
entities:
- - uid: 21178
+ - uid: 21190
components:
- pos: 7.4753633,-16.474928
parent: 2
type: Transform
- proto: InflatableWallStack1
entities:
- - uid: 21179
+ - uid: 21191
components:
- pos: -38.56672,-98.45029
parent: 2
type: Transform
- proto: IngotGold
entities:
- - uid: 21180
+ - uid: 21192
components:
- pos: 48.54513,-24.041304
parent: 2
type: Transform
- - uid: 21181
+ - uid: 21193
components:
- pos: 48.16234,-27.566782
parent: 2
type: Transform
- proto: IngotGold1
entities:
- - uid: 21182
+ - uid: 21194
components:
- pos: 14.545005,56.593597
parent: 2
type: Transform
- - uid: 21183
+ - uid: 21195
components:
- pos: 59.385517,-51.41954
parent: 2
type: Transform
- - uid: 21184
+ - uid: 21196
components:
- pos: 59.432392,-51.591415
parent: 2
type: Transform
- proto: IntercomAll
entities:
- - uid: 21185
+ - uid: 21197
components:
- pos: 20.5,-20.5
parent: 2
type: Transform
- proto: IntercomCommand
entities:
- - uid: 21186
+ - uid: 21198
components:
- pos: -34.5,-14.5
parent: 2
type: Transform
- - uid: 21187
+ - uid: 21199
components:
- pos: 64.5,0.5
parent: 2
type: Transform
- - uid: 21188
+ - uid: 21200
components:
- pos: 64.5,-50.5
parent: 2
type: Transform
- - uid: 21189
+ - uid: 21201
components:
- rot: -1.5707963267948966 rad
pos: 9.5,21.5
parent: 2
type: Transform
- - uid: 21190
+ - uid: 21202
components:
- rot: -1.5707963267948966 rad
pos: -16.5,-57.5
@@ -138617,147 +138721,147 @@ entities:
type: Transform
- proto: IntercomCommon
entities:
- - uid: 21191
+ - uid: 21203
components:
- pos: -38.5,-70.5
parent: 2
type: Transform
- - uid: 21192
+ - uid: 21204
components:
- rot: 1.5707963267948966 rad
pos: -14.5,57.5
parent: 2
type: Transform
- - uid: 21193
+ - uid: 21205
components:
- pos: 37.5,-69.5
parent: 2
type: Transform
- - uid: 21194
+ - uid: 21206
components:
- rot: -1.5707963267948966 rad
pos: 29.5,-2.5
parent: 2
type: Transform
- - uid: 21195
+ - uid: 21207
components:
- rot: -1.5707963267948966 rad
pos: 7.5,6.5
parent: 2
type: Transform
- - uid: 21196
+ - uid: 21208
components:
- pos: 14.5,4.5
parent: 2
type: Transform
- - uid: 21197
+ - uid: 21209
components:
- pos: 9.5,11.5
parent: 2
type: Transform
- - uid: 21198
+ - uid: 21210
components:
- rot: 1.5707963267948966 rad
pos: 15.5,-3.5
parent: 2
type: Transform
- - uid: 21199
+ - uid: 21211
components:
- pos: -31.5,11.5
parent: 2
type: Transform
- - uid: 21200
+ - uid: 21212
components:
- pos: -30.5,2.5
parent: 2
type: Transform
- - uid: 21201
+ - uid: 21213
components:
- pos: -15.5,-24.5
parent: 2
type: Transform
- - uid: 21202
+ - uid: 21214
components:
- pos: 4.5,-39.5
parent: 2
type: Transform
- - uid: 21203
+ - uid: 21215
components:
- pos: 39.5,-40.5
parent: 2
type: Transform
- - uid: 21204
+ - uid: 21216
components:
- pos: 29.5,-15.5
parent: 2
type: Transform
- - uid: 21205
+ - uid: 21217
components:
- pos: 39.5,3.5
parent: 2
type: Transform
- - uid: 21206
+ - uid: 21218
components:
- pos: 54.5,-4.5
parent: 2
type: Transform
- - uid: 21207
+ - uid: 21219
components:
- rot: -1.5707963267948966 rad
pos: 13.5,-8.5
parent: 2
type: Transform
- - uid: 21208
+ - uid: 21220
components:
- rot: 1.5707963267948966 rad
pos: -1.5,48.5
parent: 2
type: Transform
- - uid: 21209
+ - uid: 21221
components:
- rot: 1.5707963267948966 rad
pos: -19.5,40.5
parent: 2
type: Transform
- - uid: 21210
+ - uid: 21222
components:
- rot: -1.5707963267948966 rad
pos: -2.5,-18.5
parent: 2
type: Transform
- - uid: 21211
+ - uid: 21223
components:
- pos: -14.5,-40.5
parent: 2
type: Transform
- - uid: 21212
+ - uid: 21224
components:
- rot: -1.5707963267948966 rad
pos: 17.5,-28.5
parent: 2
type: Transform
- - uid: 21213
+ - uid: 21225
components:
- pos: 17.5,-51.5
parent: 2
type: Transform
- - uid: 21214
+ - uid: 21226
components:
- pos: -25.5,-94.5
parent: 2
type: Transform
- - uid: 21215
+ - uid: 21227
components:
- rot: 1.5707963267948966 rad
pos: -21.5,29.5
parent: 2
type: Transform
- - uid: 21216
+ - uid: 21228
components:
- pos: 23.5,-69.5
parent: 2
type: Transform
- - uid: 21217
+ - uid: 21229
components:
- rot: -1.5707963267948966 rad
pos: 20.5,-84.5
@@ -138765,44 +138869,44 @@ entities:
type: Transform
- proto: IntercomEngineering
entities:
- - uid: 21218
+ - uid: 21230
components:
- pos: -24.5,-7.5
parent: 2
type: Transform
- - uid: 21219
+ - uid: 21231
components:
- pos: -35.5,-4.5
parent: 2
type: Transform
- - uid: 21220
+ - uid: 21232
components:
- rot: -1.5707963267948966 rad
pos: -52.5,-9.5
parent: 2
type: Transform
- - uid: 21221
+ - uid: 21233
components:
- pos: -61.5,-26.5
parent: 2
type: Transform
- - uid: 21222
+ - uid: 21234
components:
- pos: -28.5,-32.5
parent: 2
type: Transform
- - uid: 21223
+ - uid: 21235
components:
- rot: -1.5707963267948966 rad
pos: -32.5,-49.5
parent: 2
type: Transform
- - uid: 21224
+ - uid: 21236
components:
- pos: -67.5,-35.5
parent: 2
type: Transform
- - uid: 21225
+ - uid: 21237
components:
- rot: -1.5707963267948966 rad
pos: -49.5,-22.5
@@ -138810,159 +138914,159 @@ entities:
type: Transform
- proto: IntercomMedical
entities:
- - uid: 21226
+ - uid: 21238
components:
- pos: -13.5,-58.5
parent: 2
type: Transform
- - uid: 21227
+ - uid: 21239
components:
- rot: 1.5707963267948966 rad
pos: -32.5,-70.5
parent: 2
type: Transform
- - uid: 21228
+ - uid: 21240
components:
- pos: -24.5,-56.5
parent: 2
type: Transform
- - uid: 21229
+ - uid: 21241
components:
- pos: 2.5,-51.5
parent: 2
type: Transform
- - uid: 21230
+ - uid: 21242
components:
- pos: -25.5,-68.5
parent: 2
type: Transform
- - uid: 21231
+ - uid: 21243
components:
- rot: -1.5707963267948966 rad
pos: -4.5,-64.5
parent: 2
type: Transform
- - uid: 21232
+ - uid: 21244
components:
- rot: 1.5707963267948966 rad
pos: -13.5,-36.5
parent: 2
type: Transform
- - uid: 21233
+ - uid: 21245
components:
- rot: 1.5707963267948966 rad
pos: -27.5,-85.5
parent: 2
type: Transform
- - uid: 21234
+ - uid: 21246
components:
- rot: -1.5707963267948966 rad
pos: -21.5,-80.5
parent: 2
type: Transform
- - uid: 21235
+ - uid: 21247
components:
- pos: -19.5,-74.5
parent: 2
type: Transform
- proto: IntercomScience
entities:
- - uid: 21236
+ - uid: 21248
components:
- pos: 42.5,-34.5
parent: 2
type: Transform
- - uid: 21237
+ - uid: 21249
components:
- pos: 44.5,-40.5
parent: 2
type: Transform
- - uid: 21238
+ - uid: 21250
components:
- rot: 1.5707963267948966 rad
pos: 40.5,-45.5
parent: 2
type: Transform
- - uid: 21239
+ - uid: 21251
components:
- rot: -1.5707963267948966 rad
pos: 53.5,-55.5
parent: 2
type: Transform
- - uid: 21240
+ - uid: 21252
components:
- pos: 67.5,-42.5
parent: 2
type: Transform
- - uid: 21241
+ - uid: 21253
components:
- rot: -1.5707963267948966 rad
pos: 76.5,-40.5
parent: 2
type: Transform
- - uid: 21242
+ - uid: 21254
components:
- pos: 60.5,-30.5
parent: 2
type: Transform
- - uid: 21243
+ - uid: 21255
components:
- pos: 49.5,-36.5
parent: 2
type: Transform
- proto: IntercomSecurity
entities:
- - uid: 21244
+ - uid: 21256
components:
- rot: 1.5707963267948966 rad
pos: 3.5,14.5
parent: 2
type: Transform
- - uid: 21245
+ - uid: 21257
components:
- rot: -1.5707963267948966 rad
pos: -13.5,24.5
parent: 2
type: Transform
- - uid: 21246
+ - uid: 21258
components:
- pos: -16.5,-19.5
parent: 2
type: Transform
- - uid: 21247
+ - uid: 21259
components:
- rot: 1.5707963267948966 rad
pos: -2.5,18.5
parent: 2
type: Transform
- - uid: 21248
+ - uid: 21260
components:
- pos: 26.5,24.5
parent: 2
type: Transform
- - uid: 21249
+ - uid: 21261
components:
- pos: 16.5,24.5
parent: 2
type: Transform
- - uid: 21250
+ - uid: 21262
components:
- rot: 1.5707963267948966 rad
pos: 18.5,-45.5
parent: 2
type: Transform
- - uid: 21251
+ - uid: 21263
components:
- rot: 1.5707963267948966 rad
pos: 16.5,-13.5
parent: 2
type: Transform
- - uid: 21252
+ - uid: 21264
components:
- pos: 4.5,-55.5
parent: 2
type: Transform
- - uid: 21253
+ - uid: 21265
components:
- rot: -1.5707963267948966 rad
pos: 43.5,9.5
@@ -138970,58 +139074,58 @@ entities:
type: Transform
- proto: IntercomService
entities:
- - uid: 21254
+ - uid: 21266
components:
- pos: 20.5,15.5
parent: 2
type: Transform
- - uid: 21255
+ - uid: 21267
components:
- pos: -26.5,16.5
parent: 2
type: Transform
- - uid: 21256
+ - uid: 21268
components:
- rot: 1.5707963267948966 rad
pos: -11.5,5.5
parent: 2
type: Transform
- - uid: 21257
+ - uid: 21269
components:
- pos: 1.5,-18.5
parent: 2
type: Transform
- proto: IntercomSupply
entities:
- - uid: 21258
+ - uid: 21270
components:
- rot: -1.5707963267948966 rad
pos: -29.5,24.5
parent: 2
type: Transform
- - uid: 21259
+ - uid: 21271
components:
- pos: -48.5,17.5
parent: 2
type: Transform
- - uid: 21260
+ - uid: 21272
components:
- rot: 1.5707963267948966 rad
pos: -26.5,20.5
parent: 2
type: Transform
- - uid: 21261
+ - uid: 21273
components:
- rot: 1.5707963267948966 rad
pos: -35.5,30.5
parent: 2
type: Transform
- - uid: 21262
+ - uid: 21274
components:
- pos: -43.5,26.5
parent: 2
type: Transform
- - uid: 21263
+ - uid: 21275
components:
- rot: -1.5707963267948966 rad
pos: -39.5,28.5
@@ -139029,7 +139133,7 @@ entities:
type: Transform
- proto: JanitorialTrolley
entities:
- - uid: 21264
+ - uid: 21276
components:
- rot: -1.5707963267948966 rad
pos: -7.5,-22.5
@@ -139037,172 +139141,179 @@ entities:
type: Transform
- proto: JetpackBlueFilled
entities:
- - uid: 21265
+ - uid: 21277
components:
- rot: 3.141592653589793 rad
pos: 33.468403,-14.391748
parent: 2
type: Transform
- - uid: 21266
+ - uid: 21278
components:
- rot: 3.141592653589793 rad
pos: 33.499653,-14.469873
parent: 2
type: Transform
- - uid: 21267
+ - uid: 21279
components:
- rot: 3.141592653589793 rad
pos: 33.640278,-14.579248
parent: 2
type: Transform
+- proto: KitchenElectricGrill
+ entities:
+ - uid: 21280
+ components:
+ - pos: 3.5,6.5
+ parent: 2
+ type: Transform
- proto: KitchenMicrowave
entities:
- - uid: 21268
+ - uid: 21281
components:
- pos: -31.5,-69.5
parent: 2
type: Transform
- - uid: 21269
+ - uid: 21282
components:
- pos: 2.5,7.5
parent: 2
type: Transform
- - uid: 21270
+ - uid: 21283
components:
- pos: 4.5,6.5
parent: 2
type: Transform
- - uid: 21271
+ - uid: 21284
components:
- pos: 31.5,-20.5
parent: 2
type: Transform
- - uid: 21272
+ - uid: 21285
components:
- pos: 52.5,18.5
parent: 2
type: Transform
- - uid: 21273
+ - uid: 21286
components:
- pos: 45.5,-49.5
parent: 2
type: Transform
- - uid: 21274
+ - uid: 21287
components:
- pos: -38.5,-32.5
parent: 2
type: Transform
- - uid: 21275
+ - uid: 21288
components:
- pos: -22.5,45.5
parent: 2
type: Transform
- - uid: 21276
+ - uid: 21289
components:
- pos: -8.5,41.5
parent: 2
type: Transform
- proto: KitchenReagentGrinder
entities:
- - uid: 21277
+ - uid: 21290
components:
- pos: -3.5,5.5
parent: 2
type: Transform
- - uid: 21278
+ - uid: 21291
components:
- pos: 3.5,-47.5
parent: 2
type: Transform
- - uid: 21279
+ - uid: 21292
components:
- pos: 3.5,7.5
parent: 2
type: Transform
- - uid: 21280
+ - uid: 21293
components:
- pos: 53.5,18.5
parent: 2
type: Transform
- proto: KitchenSpike
entities:
- - uid: 21281
+ - uid: 21294
components:
- pos: -0.5,11.5
parent: 2
type: Transform
- proto: Lamp
entities:
- - uid: 21282
+ - uid: 21295
components:
- rot: -1.5707963267948966 rad
pos: -3.8543606,-48.096176
parent: 2
type: Transform
- - uid: 21283
+ - uid: 21296
components:
- rot: 1.5707963267948966 rad
pos: 24.558033,-21.226107
parent: 2
type: Transform
- - uid: 21284
+ - uid: 21297
components:
- pos: 21.425192,-12.111239
parent: 2
type: Transform
- - uid: 21285
+ - uid: 21298
components:
- rot: -1.5707963267948966 rad
pos: 7.6524577,20.90233
parent: 2
type: Transform
- - uid: 21286
+ - uid: 21299
components:
- rot: -1.5707963267948966 rad
pos: -9.565374,-37.00866
parent: 2
type: Transform
- - uid: 21287
+ - uid: 21300
components:
- rot: 1.5707963267948966 rad
pos: 51.608532,-40.935013
parent: 2
type: Transform
- - uid: 21288
+ - uid: 21301
components:
- pos: 59.696476,-1.1797758
parent: 2
type: Transform
- - uid: 21289
+ - uid: 21302
components:
- rot: 1.5707963267948966 rad
pos: -33.336697,29.910027
parent: 2
type: Transform
- - uid: 21290
+ - uid: 21303
components:
- pos: -24.34436,11.920202
parent: 2
type: Transform
- - uid: 21291
+ - uid: 21304
components:
- rot: 1.5707963267948966 rad
pos: -28.600471,45.10426
parent: 2
type: Transform
- - uid: 21292
+ - uid: 21305
components:
- pos: -12.458234,-18.122696
parent: 2
type: Transform
- proto: LampBanana
entities:
- - uid: 21293
+ - uid: 21306
components:
- pos: -22.53235,37.89803
parent: 2
type: Transform
- - uid: 21294
+ - uid: 21307
components:
- rot: -1.5707963267948966 rad
pos: 2.6784086,-21.06689
@@ -139210,49 +139321,49 @@ entities:
type: Transform
- proto: LampGold
entities:
- - uid: 21295
+ - uid: 21308
components:
- pos: -22.537891,-69.31316
parent: 2
type: Transform
- - uid: 21296
+ - uid: 21309
components:
- pos: -18.78946,-56.159798
parent: 2
type: Transform
- - uid: 21297
+ - uid: 21310
components:
- pos: -10.485052,-3.11381
parent: 2
type: Transform
- - uid: 21298
+ - uid: 21311
components:
- rot: 1.5707963267948966 rad
pos: 43.557644,-4.1465535
parent: 2
type: Transform
- - uid: 21299
+ - uid: 21312
components:
- pos: 37.53909,-2.5487528
parent: 2
type: Transform
- - uid: 21300
+ - uid: 21313
components:
- pos: 32.892563,-50.10114
parent: 2
type: Transform
- - uid: 21301
+ - uid: 21314
components:
- pos: 28.845686,-50.06989
parent: 2
type: Transform
- - uid: 21302
+ - uid: 21315
components:
- rot: 1.5707963267948966 rad
pos: -22.520432,-96.69095
parent: 2
type: Transform
- - uid: 21303
+ - uid: 21316
components:
- rot: 1.5707963267948966 rad
pos: 3.3403625,-9.918977
@@ -139260,70 +139371,70 @@ entities:
type: Transform
- proto: LargeBeaker
entities:
- - uid: 21304
+ - uid: 21317
components:
- - pos: 3.6272888,-45.59047
+ - pos: 3.7316318,-45.40893
parent: 2
type: Transform
- - uid: 21305
+ - uid: 21318
components:
- - pos: 3.2216597,-45.50144
+ - pos: 4.621125,7.7027445
parent: 2
type: Transform
- - uid: 21306
+ - uid: 21319
components:
- - pos: 3.6444578,-45.294815
+ - pos: -25.403534,-78.32023
parent: 2
type: Transform
- - uid: 21307
+ - uid: 21320
components:
- - pos: 4.621125,7.7027445
+ - pos: -25.716034,-78.71085
parent: 2
type: Transform
- - uid: 21308
+ - uid: 21321
components:
- - pos: -25.403534,-78.32023
+ - pos: -25.591316,-84.223625
parent: 2
type: Transform
- - uid: 21309
+ - uid: 21322
components:
- - pos: -25.716034,-78.71085
+ - pos: 3.2785068,-45.424557
parent: 2
type: Transform
- - uid: 21310
+ - uid: 21323
components:
- - pos: -25.591316,-84.223625
+ - pos: 3.4503818,-45.143307
parent: 2
type: Transform
- proto: LauncherCreamPie
entities:
- - uid: 21311
+ - uid: 21324
components:
- pos: 0.32515657,-23.45843
parent: 2
type: Transform
- proto: Lighter
entities:
- - uid: 21312
+ - uid: 21325
components:
- pos: 13.70992,-34.538578
parent: 2
type: Transform
- - uid: 21313
+ - uid: 21326
components:
- pos: 15.667978,-79.47625
parent: 2
type: Transform
- proto: LightTube
entities:
- - uid: 21314
+ - uid: 21327
components:
- pos: -39.78844,-85.422134
parent: 2
type: Transform
- proto: LockerAtmosphericsFilled
entities:
- - uid: 21315
+ - uid: 21328
components:
- pos: -33.5,-32.5
parent: 2
@@ -139346,7 +139457,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21316
+ - uid: 21329
components:
- pos: -39.5,-36.5
parent: 2
@@ -139369,7 +139480,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21317
+ - uid: 21330
components:
- pos: -37.5,-36.5
parent: 2
@@ -139392,7 +139503,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21318
+ - uid: 21331
components:
- pos: -35.5,-36.5
parent: 2
@@ -139417,7 +139528,7 @@ entities:
type: EntityStorage
- proto: LockerBoozeFilled
entities:
- - uid: 21319
+ - uid: 21332
components:
- pos: 22.5,12.5
parent: 2
@@ -139442,7 +139553,7 @@ entities:
type: EntityStorage
- proto: LockerBotanistFilled
entities:
- - uid: 21320
+ - uid: 21333
components:
- pos: -4.5,11.5
parent: 2
@@ -139467,7 +139578,7 @@ entities:
type: EntityStorage
- proto: LockerCaptainFilled
entities:
- - uid: 21321
+ - uid: 21334
components:
- pos: 29.5,-27.5
parent: 2
@@ -139492,14 +139603,14 @@ entities:
type: EntityStorage
- proto: LockerChemistryFilled
entities:
- - uid: 21322
+ - uid: 21335
components:
- pos: 7.5,-50.5
parent: 2
type: Transform
- proto: LockerChiefEngineerFilled
entities:
- - uid: 21323
+ - uid: 21336
components:
- pos: -37.5,-15.5
parent: 2
@@ -139524,7 +139635,7 @@ entities:
type: EntityStorage
- proto: LockerChiefMedicalOfficerFilled
entities:
- - uid: 21324
+ - uid: 21337
components:
- pos: -18.5,-54.5
parent: 2
@@ -139547,9 +139658,16 @@ entities:
- 0
- 0
type: EntityStorage
+- proto: LockerClown
+ entities:
+ - uid: 31538
+ components:
+ - pos: -20.5,37.5
+ parent: 2
+ type: Transform
- proto: LockerDetectiveFilled
entities:
- - uid: 21325
+ - uid: 21338
components:
- pos: 17.5,-10.5
parent: 2
@@ -139574,7 +139692,7 @@ entities:
type: EntityStorage
- proto: LockerElectricalSupplies
entities:
- - uid: 21326
+ - uid: 21339
components:
- pos: -7.5,-17.5
parent: 2
@@ -139599,7 +139717,7 @@ entities:
type: EntityStorage
- proto: LockerElectricalSuppliesFilled
entities:
- - uid: 21327
+ - uid: 21340
components:
- pos: 46.5,-3.5
parent: 2
@@ -139622,276 +139740,9 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21328
- components:
- - pos: -53.5,0.5
- parent: 2
- type: Transform
- - air:
- volume: 200
- immutable: False
- temperature: 293.14957
- moles:
- - 8.402782
- - 31.610466
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- type: EntityStorage
- - uid: 21329
- components:
- - pos: 32.5,25.5
- parent: 2
- type: Transform
- - air:
- volume: 200
- immutable: False
- temperature: 293.14957
- moles:
- - 8.402782
- - 31.610466
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- type: EntityStorage
- - uid: 21330
- components:
- - pos: 39.5,-28.5
- parent: 2
- type: Transform
- - air:
- volume: 200
- immutable: False
- temperature: 293.14957
- moles:
- - 8.402782
- - 31.610466
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- type: EntityStorage
-- proto: LockerEngineerFilled
- entities:
- - uid: 21331
- components:
- - pos: -39.5,-7.5
- parent: 2
- type: Transform
- - air:
- volume: 200
- immutable: False
- temperature: 293.14957
- moles:
- - 8.402782
- - 31.610466
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- type: EntityStorage
- - uid: 21332
- components:
- - pos: -39.5,-12.5
- parent: 2
- type: Transform
- - air:
- volume: 200
- immutable: False
- temperature: 293.14957
- moles:
- - 8.402782
- - 31.610466
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- type: EntityStorage
- - uid: 21333
- components:
- - pos: -39.5,-8.5
- parent: 2
- type: Transform
- - air:
- volume: 200
- immutable: False
- temperature: 293.14957
- moles:
- - 8.402782
- - 31.610466
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- type: EntityStorage
- - uid: 21334
- components:
- - pos: -39.5,-9.5
- parent: 2
- type: Transform
- - air:
- volume: 200
- immutable: False
- temperature: 293.14957
- moles:
- - 8.402782
- - 31.610466
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- type: EntityStorage
- - uid: 21335
- components:
- - pos: -50.5,-20.5
- parent: 2
- type: Transform
- - air:
- volume: 200
- immutable: False
- temperature: 293.14957
- moles:
- - 8.402782
- - 31.610466
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- type: EntityStorage
-- proto: LockerEvidence
- entities:
- - uid: 21336
- components:
- - pos: 4.5,-57.5
- parent: 2
- type: Transform
- - air:
- volume: 200
- immutable: False
- temperature: 293.14957
- moles:
- - 8.402782
- - 31.610466
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- type: EntityStorage
- - uid: 21337
- components:
- - pos: 34.5,-45.5
- parent: 2
- type: Transform
- - air:
- volume: 200
- immutable: False
- temperature: 293.14957
- moles:
- - 8.402782
- - 31.610466
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- type: EntityStorage
- - uid: 21338
- components:
- - pos: 18.5,23.5
- parent: 2
- type: Transform
- - air:
- volume: 200
- immutable: False
- temperature: 293.14957
- moles:
- - 8.402782
- - 31.610466
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- type: EntityStorage
- - uid: 21339
- components:
- - pos: 37.5,12.5
- parent: 2
- type: Transform
- - uid: 21340
- components:
- - pos: 37.5,11.5
- parent: 2
- type: Transform
- uid: 21341
components:
- - pos: 41.5,16.5
+ - pos: -53.5,0.5
parent: 2
type: Transform
- air:
@@ -139914,7 +139765,7 @@ entities:
type: EntityStorage
- uid: 21342
components:
- - pos: 40.5,16.5
+ - pos: 32.5,25.5
parent: 2
type: Transform
- air:
@@ -139937,7 +139788,7 @@ entities:
type: EntityStorage
- uid: 21343
components:
- - pos: 39.5,16.5
+ - pos: 39.5,-28.5
parent: 2
type: Transform
- air:
@@ -139958,9 +139809,11 @@ entities:
- 0
- 0
type: EntityStorage
+- proto: LockerEngineerFilled
+ entities:
- uid: 21344
components:
- - pos: 38.5,16.5
+ - pos: -39.5,-7.5
parent: 2
type: Transform
- air:
@@ -139983,7 +139836,7 @@ entities:
type: EntityStorage
- uid: 21345
components:
- - pos: 42.5,16.5
+ - pos: -39.5,-12.5
parent: 2
type: Transform
- air:
@@ -140006,7 +139859,7 @@ entities:
type: EntityStorage
- uid: 21346
components:
- - pos: 37.5,16.5
+ - pos: -39.5,-8.5
parent: 2
type: Transform
- air:
@@ -140028,13 +139881,278 @@ entities:
- 0
type: EntityStorage
- uid: 21347
+ components:
+ - pos: -39.5,-9.5
+ parent: 2
+ type: Transform
+ - air:
+ volume: 200
+ immutable: False
+ temperature: 293.14957
+ moles:
+ - 8.402782
+ - 31.610466
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ type: EntityStorage
+ - uid: 21348
+ components:
+ - pos: -50.5,-20.5
+ parent: 2
+ type: Transform
+ - air:
+ volume: 200
+ immutable: False
+ temperature: 293.14957
+ moles:
+ - 8.402782
+ - 31.610466
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ type: EntityStorage
+- proto: LockerEvidence
+ entities:
+ - uid: 21349
+ components:
+ - pos: 4.5,-57.5
+ parent: 2
+ type: Transform
+ - air:
+ volume: 200
+ immutable: False
+ temperature: 293.14957
+ moles:
+ - 8.402782
+ - 31.610466
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ type: EntityStorage
+ - uid: 21350
+ components:
+ - pos: 34.5,-45.5
+ parent: 2
+ type: Transform
+ - air:
+ volume: 200
+ immutable: False
+ temperature: 293.14957
+ moles:
+ - 8.402782
+ - 31.610466
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ type: EntityStorage
+ - uid: 21351
+ components:
+ - pos: 18.5,23.5
+ parent: 2
+ type: Transform
+ - air:
+ volume: 200
+ immutable: False
+ temperature: 293.14957
+ moles:
+ - 8.402782
+ - 31.610466
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ type: EntityStorage
+ - uid: 21352
+ components:
+ - pos: 37.5,12.5
+ parent: 2
+ type: Transform
+ - uid: 21353
+ components:
+ - pos: 37.5,11.5
+ parent: 2
+ type: Transform
+ - uid: 21354
+ components:
+ - pos: 41.5,16.5
+ parent: 2
+ type: Transform
+ - air:
+ volume: 200
+ immutable: False
+ temperature: 293.14957
+ moles:
+ - 8.402782
+ - 31.610466
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ type: EntityStorage
+ - uid: 21355
+ components:
+ - pos: 40.5,16.5
+ parent: 2
+ type: Transform
+ - air:
+ volume: 200
+ immutable: False
+ temperature: 293.14957
+ moles:
+ - 8.402782
+ - 31.610466
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ type: EntityStorage
+ - uid: 21356
+ components:
+ - pos: 39.5,16.5
+ parent: 2
+ type: Transform
+ - air:
+ volume: 200
+ immutable: False
+ temperature: 293.14957
+ moles:
+ - 8.402782
+ - 31.610466
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ type: EntityStorage
+ - uid: 21357
+ components:
+ - pos: 38.5,16.5
+ parent: 2
+ type: Transform
+ - air:
+ volume: 200
+ immutable: False
+ temperature: 293.14957
+ moles:
+ - 8.402782
+ - 31.610466
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ type: EntityStorage
+ - uid: 21358
+ components:
+ - pos: 42.5,16.5
+ parent: 2
+ type: Transform
+ - air:
+ volume: 200
+ immutable: False
+ temperature: 293.14957
+ moles:
+ - 8.402782
+ - 31.610466
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ type: EntityStorage
+ - uid: 21359
+ components:
+ - pos: 37.5,16.5
+ parent: 2
+ type: Transform
+ - air:
+ volume: 200
+ immutable: False
+ temperature: 293.14957
+ moles:
+ - 8.402782
+ - 31.610466
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ type: EntityStorage
+ - uid: 21360
components:
- pos: 37.5,10.5
parent: 2
type: Transform
- proto: LockerFreezer
entities:
- - uid: 21348
+ - uid: 21361
components:
- pos: -38.5,37.5
parent: 2
@@ -140057,7 +140175,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21349
+ - uid: 21362
components:
- pos: -38.5,36.5
parent: 2
@@ -140080,7 +140198,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21350
+ - uid: 21363
components:
- pos: 1.5,14.5
parent: 2
@@ -140103,7 +140221,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21351
+ - uid: 21364
components:
- pos: -5.5,-95.5
parent: 2
@@ -140128,14 +140246,14 @@ entities:
type: EntityStorage
- proto: LockerHeadOfPersonnelFilled
entities:
- - uid: 21352
+ - uid: 21365
components:
- pos: -1.5,-3.5
parent: 2
type: Transform
- proto: LockerHeadOfSecurityFilled
entities:
- - uid: 12328
+ - uid: 12336
components:
- pos: 4.5,22.5
parent: 2
@@ -140163,8 +140281,8 @@ entities:
showEnts: False
occludes: True
ents:
- - 12330
- - 12329
+ - 12338
+ - 12337
paper_label: !type:ContainerSlot
showEnts: False
occludes: True
@@ -140172,7 +140290,7 @@ entities:
type: ContainerContainer
- proto: LockerMedicalFilled
entities:
- - uid: 21353
+ - uid: 21366
components:
- pos: -15.5,-49.5
parent: 2
@@ -140195,7 +140313,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21354
+ - uid: 21367
components:
- pos: -15.5,-47.5
parent: 2
@@ -140218,7 +140336,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21355
+ - uid: 21368
components:
- pos: -15.5,-45.5
parent: 2
@@ -140241,26 +140359,33 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21356
+ - uid: 21369
components:
- pos: -15.5,-61.5
parent: 2
type: Transform
- - uid: 21357
+ - uid: 21370
components:
- pos: -14.5,-61.5
parent: 2
type: Transform
+- proto: LockerMime
+ entities:
+ - uid: 22707
+ components:
+ - pos: -27.5,46.5
+ parent: 2
+ type: Transform
- proto: LockerParamedicFilled
entities:
- - uid: 21358
+ - uid: 21371
components:
- pos: 2.5,-64.5
parent: 2
type: Transform
- proto: LockerQuarterMasterFilled
entities:
- - uid: 21359
+ - uid: 21372
components:
- pos: -34.5,31.5
parent: 2
@@ -140285,7 +140410,7 @@ entities:
type: EntityStorage
- proto: LockerResearchDirectorFilled
entities:
- - uid: 21360
+ - uid: 21373
components:
- pos: 63.5,-55.5
parent: 2
@@ -140310,7 +140435,7 @@ entities:
type: EntityStorage
- proto: LockerSalvageSpecialistFilled
entities:
- - uid: 21361
+ - uid: 21374
components:
- pos: -36.5,32.5
parent: 2
@@ -140333,7 +140458,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21362
+ - uid: 21375
components:
- pos: -36.5,30.5
parent: 2
@@ -140356,7 +140481,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21363
+ - uid: 21376
components:
- pos: -36.5,28.5
parent: 2
@@ -140379,14 +140504,14 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21364
+ - uid: 21377
components:
- pos: -45.5,44.5
parent: 2
type: Transform
- proto: LockerScienceFilled
entities:
- - uid: 21365
+ - uid: 21378
components:
- pos: 44.5,-45.5
parent: 2
@@ -140409,7 +140534,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21366
+ - uid: 21379
components:
- pos: 42.5,-45.5
parent: 2
@@ -140432,7 +140557,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21367
+ - uid: 21380
components:
- pos: 41.5,-45.5
parent: 2
@@ -140457,7 +140582,7 @@ entities:
type: EntityStorage
- proto: LockerSecurity
entities:
- - uid: 21368
+ - uid: 21381
components:
- pos: 19.5,-47.5
parent: 2
@@ -140480,7 +140605,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21369
+ - uid: 21382
components:
- pos: 52.5,13.5
parent: 2
@@ -140505,17 +140630,17 @@ entities:
type: EntityStorage
- proto: LockerSecurityFilled
entities:
- - uid: 21370
+ - uid: 21383
components:
- pos: 31.5,19.5
parent: 2
type: Transform
- - uid: 21371
+ - uid: 21384
components:
- pos: 32.5,19.5
parent: 2
type: Transform
- - uid: 21372
+ - uid: 21385
components:
- pos: -0.5,17.5
parent: 2
@@ -140538,7 +140663,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21373
+ - uid: 21386
components:
- pos: -0.5,19.5
parent: 2
@@ -140561,38 +140686,38 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21374
+ - uid: 21387
components:
- pos: -14.5,23.5
parent: 2
type: Transform
- - uid: 21375
+ - uid: 21388
components:
- pos: -0.5,21.5
parent: 2
type: Transform
- proto: LockerSyndicatePersonal
entities:
- - uid: 21376
+ - uid: 21389
components:
- pos: -52.5,-86.5
parent: 2
type: Transform
- proto: LockerWallMedicalDoctorFilled
entities:
- - uid: 21377
+ - uid: 21390
components:
- pos: 6.5,-58.5
parent: 2
type: Transform
- - uid: 21378
+ - uid: 21391
components:
- pos: -15.5,-51.5
parent: 2
type: Transform
- proto: LockerWallMedicalFilled
entities:
- - uid: 21379
+ - uid: 21392
components:
- pos: -26.5,-56.5
parent: 2
@@ -140617,7 +140742,7 @@ entities:
type: EntityStorage
- proto: LockerWardenFilled
entities:
- - uid: 21380
+ - uid: 21393
components:
- pos: 20.5,23.5
parent: 2
@@ -140642,7 +140767,7 @@ entities:
type: EntityStorage
- proto: LockerWeldingSuppliesFilled
entities:
- - uid: 21381
+ - uid: 21394
components:
- pos: 38.5,-53.5
parent: 2
@@ -140665,30 +140790,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21382
- components:
- - pos: 13.5,-47.5
- parent: 2
- type: Transform
- - air:
- volume: 200
- immutable: False
- temperature: 293.14957
- moles:
- - 8.402782
- - 31.610466
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- type: EntityStorage
- - uid: 21383
+ - uid: 21395
components:
- pos: -53.5,-61.5
parent: 2
@@ -140713,38 +140815,38 @@ entities:
type: EntityStorage
- proto: MachineAnomalyGenerator
entities:
- - uid: 21384
+ - uid: 21396
components:
- pos: 62.5,-30.5
parent: 2
type: Transform
- proto: MachineAnomalyVessel
entities:
- - uid: 21385
+ - uid: 21397
components:
- pos: 58.5,-32.5
parent: 2
type: Transform
- - uid: 21386
+ - uid: 21398
components:
- pos: 57.5,-32.5
parent: 2
type: Transform
- proto: MachineAPE
entities:
- - uid: 21387
+ - uid: 21399
components:
- rot: 1.5707963267948966 rad
pos: 57.5,-34.5
parent: 2
type: Transform
- - uid: 21388
+ - uid: 21400
components:
- rot: 1.5707963267948966 rad
pos: 57.5,-35.5
parent: 2
type: Transform
- - uid: 21389
+ - uid: 21401
components:
- rot: 1.5707963267948966 rad
pos: 58.5,-35.5
@@ -140752,105 +140854,105 @@ entities:
type: Transform
- proto: MachineArtifactAnalyzer
entities:
- - uid: 21390
+ - uid: 21402
components:
- rot: -1.5707963267948966 rad
pos: 72.5,-28.5
parent: 2
type: Transform
- links:
- - 12576
+ - 12584
type: DeviceLinkSink
- proto: MachineFrame
entities:
- - uid: 21391
+ - uid: 21403
components:
- pos: -7.5,-63.5
parent: 2
type: Transform
- - uid: 21392
+ - uid: 21404
components:
- pos: -9.5,-63.5
parent: 2
type: Transform
- proto: MachineFrameDestroyed
entities:
- - uid: 21393
+ - uid: 21405
components:
- pos: 45.5,44.5
parent: 2
type: Transform
- - uid: 21394
+ - uid: 21406
components:
- pos: -16.5,-8.5
parent: 2
type: Transform
- - uid: 21395
+ - uid: 21407
components:
- pos: -36.5,-29.5
parent: 2
type: Transform
- proto: MagazinePistol
entities:
- - uid: 21396
+ - uid: 21408
components:
- pos: 32.305683,32.48245
parent: 2
type: Transform
- - uid: 21397
+ - uid: 21409
components:
- pos: 32.32131,32.48245
parent: 2
type: Transform
- - uid: 21398
+ - uid: 21410
components:
- pos: 32.32131,32.48245
parent: 2
type: Transform
- - uid: 21399
+ - uid: 21411
components:
- pos: 32.305683,32.48245
parent: 2
type: Transform
- - uid: 21400
+ - uid: 21412
components:
- pos: 32.42361,32.439632
parent: 2
type: Transform
- - uid: 21401
+ - uid: 21413
components:
- pos: 32.439236,32.392757
parent: 2
type: Transform
- proto: MagazinePistolSubMachineGun
entities:
- - uid: 21402
+ - uid: 21414
components:
- pos: 29.960567,32.527683
parent: 2
type: Transform
- - uid: 21403
+ - uid: 21415
components:
- pos: 29.952528,32.56383
parent: 2
type: Transform
- - uid: 21404
+ - uid: 21416
components:
- pos: 29.936903,32.548206
parent: 2
type: Transform
- - uid: 21405
+ - uid: 21417
components:
- pos: 29.968153,32.610706
parent: 2
type: Transform
- - uid: 21406
+ - uid: 21418
components:
- rot: 3.141592653589793 rad
pos: 29.992437,32.514297
parent: 2
type: Transform
- - uid: 21407
+ - uid: 21419
components:
- rot: 3.141592653589793 rad
pos: 29.976812,32.483047
@@ -140858,413 +140960,413 @@ entities:
type: Transform
- proto: MagazinePistolSubMachineGunTopMounted
entities:
- - uid: 21408
+ - uid: 21420
components:
- pos: 6.551134,22.646631
parent: 2
type: Transform
- - uid: 21409
+ - uid: 21421
components:
- pos: 6.5377827,22.587479
parent: 2
type: Transform
- proto: MagicDiceBag
entities:
- - uid: 21410
+ - uid: 21422
components:
- pos: -47.440662,5.801874
parent: 2
type: Transform
- proto: MaintenanceFluffSpawner
entities:
- - uid: 21411
+ - uid: 21423
components:
- rot: 3.141592653589793 rad
pos: 30.5,46.5
parent: 2
type: Transform
- - uid: 21412
+ - uid: 21424
components:
- rot: 3.141592653589793 rad
pos: 22.5,51.5
parent: 2
type: Transform
- - uid: 21413
+ - uid: 21425
components:
- rot: 3.141592653589793 rad
pos: 70.5,-66.5
parent: 2
type: Transform
- - uid: 21414
+ - uid: 21426
components:
- pos: 15.5,-66.5
parent: 2
type: Transform
- - uid: 21415
+ - uid: 21427
components:
- pos: 12.5,-53.5
parent: 2
type: Transform
- - uid: 21416
+ - uid: 21428
components:
- pos: -15.5,-29.5
parent: 2
type: Transform
- - uid: 21417
+ - uid: 21429
components:
- rot: -1.5707963267948966 rad
pos: -16.5,-16.5
parent: 2
type: Transform
- - uid: 21418
+ - uid: 21430
components:
- rot: -1.5707963267948966 rad
pos: -8.5,-10.5
parent: 2
type: Transform
- - uid: 21419
+ - uid: 21431
components:
- rot: -1.5707963267948966 rad
pos: -11.5,-8.5
parent: 2
type: Transform
- - uid: 21420
+ - uid: 21432
components:
- pos: -35.5,-22.5
parent: 2
type: Transform
- - uid: 21421
+ - uid: 21433
components:
- pos: 43.5,-8.5
parent: 2
type: Transform
- - uid: 21422
+ - uid: 21434
components:
- pos: -50.5,-62.5
parent: 2
type: Transform
- - uid: 21423
+ - uid: 21435
components:
- pos: -36.5,-69.5
parent: 2
type: Transform
- - uid: 21424
+ - uid: 21436
components:
- pos: 57.5,-3.5
parent: 2
type: Transform
- - uid: 21425
+ - uid: 21437
components:
- pos: -3.5,30.5
parent: 2
type: Transform
- - uid: 21426
+ - uid: 21438
components:
- pos: -15.5,21.5
parent: 2
type: Transform
- - uid: 21427
+ - uid: 21439
components:
- pos: -49.5,15.5
parent: 2
type: Transform
- - uid: 21428
+ - uid: 21440
components:
- pos: 15.5,57.5
parent: 2
type: Transform
- - uid: 21429
+ - uid: 21441
components:
- pos: -14.5,-82.5
parent: 2
type: Transform
- - uid: 21430
+ - uid: 21442
components:
- rot: 3.141592653589793 rad
pos: 43.5,-62.5
parent: 2
type: Transform
- - uid: 21431
+ - uid: 21443
components:
- pos: -32.5,-7.5
parent: 2
type: Transform
- - uid: 21432
+ - uid: 21444
components:
- pos: 6.5,-13.5
parent: 2
type: Transform
- - uid: 21433
+ - uid: 21445
components:
- pos: 54.5,61.5
parent: 2
type: Transform
- proto: MaintenancePlantSpawner
entities:
- - uid: 21434
+ - uid: 21446
components:
- pos: -55.5,-66.5
parent: 2
type: Transform
- - uid: 21435
+ - uid: 21447
components:
- pos: -52.5,-68.5
parent: 2
type: Transform
- - uid: 21436
+ - uid: 21448
components:
- pos: -53.5,-68.5
parent: 2
type: Transform
- - uid: 21437
+ - uid: 21449
components:
- pos: -56.5,-68.5
parent: 2
type: Transform
- - uid: 21438
+ - uid: 21450
components:
- pos: -53.5,-66.5
parent: 2
type: Transform
- - uid: 21439
+ - uid: 21451
components:
- pos: -54.5,-67.5
parent: 2
type: Transform
- - uid: 21440
+ - uid: 21452
components:
- pos: -26.5,31.5
parent: 2
type: Transform
- - uid: 21441
+ - uid: 21453
components:
- pos: 52.5,39.5
parent: 2
type: Transform
- - uid: 21442
+ - uid: 21454
components:
- pos: -7.5,49.5
parent: 2
type: Transform
- - uid: 21443
+ - uid: 21455
components:
- pos: -28.5,-98.5
parent: 2
type: Transform
- - uid: 21444
+ - uid: 21456
components:
- pos: -54.5,-66.5
parent: 2
type: Transform
- - uid: 21445
+ - uid: 21457
components:
- pos: 22.5,-50.5
parent: 2
type: Transform
- - uid: 21446
+ - uid: 21458
components:
- pos: -4.5,53.5
parent: 2
type: Transform
- - uid: 21447
+ - uid: 21459
components:
- pos: 10.5,53.5
parent: 2
type: Transform
- - uid: 21448
+ - uid: 21460
components:
- pos: 8.5,53.5
parent: 2
type: Transform
- - uid: 21449
+ - uid: 21461
components:
- pos: 7.5,54.5
parent: 2
type: Transform
- proto: MaintenanceToolSpawner
entities:
- - uid: 21450
+ - uid: 21462
components:
- pos: -13.5,12.5
parent: 2
type: Transform
- - uid: 21451
+ - uid: 21463
components:
- pos: 36.5,-50.5
parent: 2
type: Transform
- - uid: 21452
+ - uid: 21464
components:
- rot: 1.5707963267948966 rad
pos: -55.5,-6.5
parent: 2
type: Transform
- - uid: 21453
+ - uid: 21465
components:
- pos: -52.5,-15.5
parent: 2
type: Transform
- - uid: 21454
+ - uid: 21466
components:
- pos: -24.5,-52.5
parent: 2
type: Transform
- - uid: 21455
+ - uid: 21467
components:
- pos: 0.5,23.5
parent: 2
type: Transform
- - uid: 21456
+ - uid: 21468
components:
- pos: -3.5,34.5
parent: 2
type: Transform
- - uid: 21457
+ - uid: 21469
components:
- pos: -49.5,14.5
parent: 2
type: Transform
- - uid: 21458
+ - uid: 21470
components:
- pos: 3.5,-17.5
parent: 2
type: Transform
- - uid: 21459
+ - uid: 21471
components:
- pos: 59.5,2.5
parent: 2
type: Transform
- - uid: 21460
+ - uid: 21472
components:
- pos: 53.5,47.5
parent: 2
type: Transform
- - uid: 21461
+ - uid: 21473
components:
- pos: 67.5,8.5
parent: 2
type: Transform
- - uid: 21462
+ - uid: 21474
components:
- pos: 18.5,39.5
parent: 2
type: Transform
- - uid: 21463
+ - uid: 21475
components:
- pos: 16.5,56.5
parent: 2
type: Transform
- - uid: 21464
+ - uid: 21476
components:
- pos: -4.5,-82.5
parent: 2
type: Transform
- - uid: 21465
+ - uid: 21477
components:
- pos: -8.5,-82.5
parent: 2
type: Transform
- - uid: 21466
+ - uid: 21478
components:
- pos: 58.5,-30.5
parent: 2
type: Transform
- - uid: 21467
+ - uid: 21479
components:
- pos: 53.5,-28.5
parent: 2
type: Transform
- - uid: 21468
+ - uid: 21480
components:
- pos: 46.5,-63.5
parent: 2
type: Transform
- - uid: 21469
+ - uid: 21481
components:
- pos: 44.5,-8.5
parent: 2
type: Transform
- - uid: 21470
+ - uid: 21482
components:
- pos: 5.5,-13.5
parent: 2
type: Transform
- proto: MaintenanceWeaponSpawner
entities:
- - uid: 21471
+ - uid: 21483
components:
- pos: 55.5,61.5
parent: 2
type: Transform
- - uid: 21472
+ - uid: 21484
components:
- pos: -49.5,-74.5
parent: 2
type: Transform
- - uid: 21473
+ - uid: 21485
components:
- pos: 35.5,-12.5
parent: 2
type: Transform
- - uid: 21474
+ - uid: 21486
components:
- pos: -29.5,-28.5
parent: 2
type: Transform
- - uid: 21475
+ - uid: 21487
components:
- pos: -12.5,17.5
parent: 2
type: Transform
- - uid: 21476
+ - uid: 21488
components:
- pos: 51.5,45.5
parent: 2
type: Transform
- - uid: 21477
+ - uid: 21489
components:
- pos: 43.5,37.5
parent: 2
type: Transform
- - uid: 21478
+ - uid: 21490
components:
- pos: -6.5,-88.5
parent: 2
type: Transform
- - uid: 21479
+ - uid: 21491
components:
- rot: 3.141592653589793 rad
pos: 49.5,-66.5
parent: 2
type: Transform
- - uid: 21480
+ - uid: 21492
components:
- rot: 3.141592653589793 rad
pos: 66.5,-61.5
parent: 2
type: Transform
- - uid: 21481
+ - uid: 21493
components:
- pos: -48.5,16.5
parent: 2
type: Transform
- - uid: 21482
+ - uid: 21494
components:
- pos: -28.5,-5.5
parent: 2
type: Transform
- - uid: 21483
+ - uid: 21495
components:
- pos: 42.5,-7.5
parent: 2
type: Transform
- - uid: 21484
+ - uid: 21496
components:
- rot: -1.5707963267948966 rad
pos: -51.5,-88.5
parent: 2
type: Transform
- - uid: 21485
+ - uid: 21497
components:
- rot: 1.5707963267948966 rad
pos: -51.5,-86.5
@@ -141272,300 +141374,300 @@ entities:
type: Transform
- proto: Matchbox
entities:
- - uid: 21486
+ - uid: 21498
components:
- pos: 61.092392,-1.3427626
parent: 2
type: Transform
- - uid: 21487
+ - uid: 21499
components:
- pos: -38.035473,16.606607
parent: 2
type: Transform
- proto: MaterialCloth
entities:
- - uid: 21488
+ - uid: 21500
components:
- pos: 2.4694777,-7.332773
parent: 2
type: Transform
- - uid: 21489
+ - uid: 21501
components:
- pos: 2.5319777,-7.395273
parent: 2
type: Transform
- - uid: 21490
+ - uid: 21502
components:
- pos: 2.4851027,-7.379648
parent: 2
type: Transform
- proto: MaterialDiamond1
entities:
- - uid: 21491
+ - uid: 21503
components:
- pos: 59.45189,-51.928257
parent: 2
type: Transform
- proto: MaterialDurathread
entities:
- - uid: 21492
+ - uid: 21504
components:
- pos: 2.6569777,-7.614023
parent: 2
type: Transform
- proto: MaterialReclaimer
entities:
- - uid: 21493
+ - uid: 21505
components:
- pos: -39.5,18.5
parent: 2
type: Transform
- proto: MaterialWoodPlank
entities:
- - uid: 21494
+ - uid: 21506
components:
- rot: 3.141592653589793 rad
pos: 38.425755,46.464603
parent: 2
type: Transform
- - uid: 21495
+ - uid: 21507
components:
- pos: -32.447933,-98.42257
parent: 2
type: Transform
- proto: MaterialWoodPlank1
entities:
- - uid: 21496
+ - uid: 21508
components:
- pos: 50.46261,24.730665
parent: 2
type: Transform
- - uid: 21497
+ - uid: 21509
components:
- pos: 17.500986,29.51836
parent: 2
type: Transform
- proto: MedicalBed
entities:
- - uid: 21498
+ - uid: 21510
components:
- pos: 44.5,5.5
parent: 2
type: Transform
- - uid: 21499
+ - uid: 21511
components:
- pos: -9.5,-57.5
parent: 2
type: Transform
- - uid: 21500
+ - uid: 21512
components:
- pos: -12.5,-57.5
parent: 2
type: Transform
- - uid: 21501
+ - uid: 21513
components:
- pos: -3.5,-57.5
parent: 2
type: Transform
- - uid: 21502
+ - uid: 21514
components:
- pos: -0.5,-57.5
parent: 2
type: Transform
- - uid: 21503
+ - uid: 21515
components:
- pos: -21.5,-54.5
parent: 2
type: Transform
- - uid: 21504
+ - uid: 21516
components:
- pos: 44.5,4.5
parent: 2
type: Transform
- - uid: 21505
+ - uid: 21517
components:
- pos: -6.5,-57.5
parent: 2
type: Transform
- - uid: 21506
+ - uid: 21518
components:
- pos: 6.5,-56.5
parent: 2
type: Transform
- proto: MedicalTechFab
entities:
- - uid: 21507
+ - uid: 21519
components:
- pos: -16.5,-48.5
parent: 2
type: Transform
- proto: MedkitBruteFilled
entities:
- - uid: 21508
+ - uid: 21520
components:
- pos: 45.394405,8.60885
parent: 2
type: Transform
- - uid: 21509
+ - uid: 21521
components:
- pos: 19.413246,-20.453436
parent: 2
type: Transform
- - uid: 21510
+ - uid: 21522
components:
- pos: 9.446222,-62.560196
parent: 2
type: Transform
- - uid: 21511
+ - uid: 21523
components:
- pos: 29.573622,4.6594224
parent: 2
type: Transform
- - uid: 21512
+ - uid: 21524
components:
- pos: 9.774347,-62.35707
parent: 2
type: Transform
- - uid: 21513
+ - uid: 21525
components:
- pos: 55.59084,42.504738
parent: 2
type: Transform
- proto: MedkitBurnFilled
entities:
- - uid: 21514
+ - uid: 21526
components:
- pos: 9.368097,-58.216446
parent: 2
type: Transform
- - uid: 21515
+ - uid: 21527
components:
- pos: 9.633722,-58.372696
parent: 2
type: Transform
- - uid: 21516
+ - uid: 21528
components:
- pos: 18.55885,-21.682238
parent: 2
type: Transform
- proto: MedkitCombatFilled
entities:
- - uid: 21517
+ - uid: 21529
components:
- pos: -22.488134,-54.362434
parent: 2
type: Transform
- proto: MedkitFilled
entities:
- - uid: 21518
+ - uid: 21530
components:
- pos: 18.506996,-21.230959
parent: 2
type: Transform
- - uid: 21519
+ - uid: 21531
components:
- pos: 52.41982,-43.535877
parent: 2
type: Transform
- proto: MedkitOxygenFilled
entities:
- - uid: 21520
+ - uid: 21532
components:
- pos: 10.352472,-61.403946
parent: 2
type: Transform
- - uid: 21521
+ - uid: 21533
components:
- pos: 10.649347,-61.57582
parent: 2
type: Transform
- - uid: 21522
+ - uid: 21534
components:
- pos: 18.533411,-22.207966
parent: 2
type: Transform
- - uid: 21523
+ - uid: 21535
components:
- pos: -23.768847,-36.553474
parent: 2
type: Transform
- - uid: 21524
+ - uid: 21536
components:
- pos: 59.446957,-3.3832169
parent: 2
type: Transform
- - uid: 21525
+ - uid: 21537
components:
- pos: 65.55114,-6.3846307
parent: 2
type: Transform
- - uid: 21526
+ - uid: 21538
components:
- pos: -34.54821,20.589455
parent: 2
type: Transform
- - uid: 21527
+ - uid: 21539
components:
- pos: 64.63776,28.514448
parent: 2
type: Transform
- - uid: 21528
+ - uid: 21540
components:
- pos: -70.47538,-28.482313
parent: 2
type: Transform
- proto: MedkitRadiationFilled
entities:
- - uid: 21529
+ - uid: 21541
components:
- pos: 10.352472,-60.278946
parent: 2
type: Transform
- - uid: 21530
+ - uid: 21542
components:
- pos: 10.649347,-60.466446
parent: 2
type: Transform
- - uid: 21531
+ - uid: 21543
components:
- pos: -62.43085,-27.543978
parent: 2
type: Transform
- proto: MedkitToxinFilled
entities:
- - uid: 21532
+ - uid: 21544
components:
- pos: 10.350285,-59.237457
parent: 2
type: Transform
- - uid: 21533
+ - uid: 21545
components:
- pos: 10.649347,-59.372696
parent: 2
type: Transform
- proto: MicroManipulatorStockPart
entities:
- - uid: 21534
+ - uid: 21546
components:
- pos: 57.42882,-47.52101
parent: 2
type: Transform
- proto: MicrowaveMachineCircuitboard
entities:
- - uid: 21535
+ - uid: 21547
components:
- pos: 41.53089,-54.195484
parent: 2
type: Transform
- proto: Mirror
entities:
- - uid: 21536
+ - uid: 21548
components:
- rot: -1.5707963267948966 rad
pos: -32.5,-3.5
parent: 2
type: Transform
- - uid: 21537
+ - uid: 21549
components:
- rot: -1.5707963267948966 rad
pos: -32.5,-2.5
@@ -141573,14 +141675,14 @@ entities:
type: Transform
- proto: ModularGrenade
entities:
- - uid: 21538
+ - uid: 21550
components:
- pos: 65.475975,-29.06539
parent: 2
type: Transform
- proto: MonkeyCube
entities:
- - uid: 21539
+ - uid: 21551
components:
- rot: -1.5707963267948966 rad
pos: -10.530531,-95.43873
@@ -141588,93 +141690,93 @@ entities:
type: Transform
- proto: MonkeyCubeBox
entities:
- - uid: 21540
+ - uid: 21552
components:
- pos: -24.421421,-84.24069
parent: 2
type: Transform
- proto: MonkeyCubeWrapped
entities:
- - uid: 21541
+ - uid: 21553
components:
- pos: 73.2274,-38.215343
parent: 2
type: Transform
- - uid: 21542
+ - uid: 21554
components:
- pos: 73.19615,-38.35597
parent: 2
type: Transform
- - uid: 21543
+ - uid: 21555
components:
- pos: -6.631571,49.76703
parent: 2
type: Transform
- - uid: 21544
+ - uid: 21556
components:
- pos: -6.787821,49.64203
parent: 2
type: Transform
- proto: MoonBattlemap
entities:
- - uid: 21545
+ - uid: 21557
components:
- pos: 10.548178,-6.825127
parent: 2
type: Transform
- proto: MopBucket
entities:
- - uid: 21546
+ - uid: 21558
components:
- pos: -9.522026,-69.41262
parent: 2
type: Transform
- - uid: 21547
+ - uid: 21559
components:
- pos: -7.441774,-23.373123
parent: 2
type: Transform
- - uid: 21548
+ - uid: 21560
components:
- pos: 52.057404,15.557394
parent: 2
type: Transform
- - uid: 21549
+ - uid: 21561
components:
- pos: 15.4907,31.562498
parent: 2
type: Transform
- - uid: 21550
+ - uid: 21562
components:
- pos: -8.510638,-21.457159
parent: 2
type: Transform
- proto: MopItem
entities:
- - uid: 21551
+ - uid: 21563
components:
- rot: -1.5707963267948966 rad
pos: -9.459526,-68.63137
parent: 2
type: Transform
- - uid: 21552
+ - uid: 21564
components:
- pos: -13.596031,-22.66943
parent: 2
type: Transform
- - uid: 21553
+ - uid: 21565
components:
- pos: -13.473024,-22.732498
parent: 2
type: Transform
- - uid: 21554
+ - uid: 21566
components:
- pos: 51.744904,15.651144
parent: 2
type: Transform
- proto: Morgue
entities:
- - uid: 21555
+ - uid: 21567
components:
- rot: -1.5707963267948966 rad
pos: -11.5,-65.5
@@ -141698,7 +141800,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21556
+ - uid: 21568
components:
- rot: -1.5707963267948966 rad
pos: -11.5,-64.5
@@ -141722,7 +141824,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21557
+ - uid: 21569
components:
- rot: 1.5707963267948966 rad
pos: -13.5,-64.5
@@ -141746,7 +141848,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21558
+ - uid: 21570
components:
- rot: 1.5707963267948966 rad
pos: -13.5,-65.5
@@ -141770,7 +141872,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21559
+ - uid: 21571
components:
- rot: 1.5707963267948966 rad
pos: -13.5,-66.5
@@ -141794,7 +141896,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21560
+ - uid: 21572
components:
- rot: -1.5707963267948966 rad
pos: -14.5,-64.5
@@ -141818,7 +141920,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21561
+ - uid: 21573
components:
- rot: -1.5707963267948966 rad
pos: -14.5,-65.5
@@ -141842,7 +141944,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21562
+ - uid: 21574
components:
- rot: -1.5707963267948966 rad
pos: -14.5,-66.5
@@ -141866,7 +141968,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21563
+ - uid: 21575
components:
- rot: -1.5707963267948966 rad
pos: -11.5,-66.5
@@ -141890,7 +141992,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21564
+ - uid: 21576
components:
- rot: -1.5707963267948966 rad
pos: -11.5,-63.5
@@ -141914,7 +142016,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21565
+ - uid: 21577
components:
- rot: 1.5707963267948966 rad
pos: -16.5,-63.5
@@ -141938,7 +142040,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21566
+ - uid: 21578
components:
- rot: 1.5707963267948966 rad
pos: -16.5,-64.5
@@ -141962,7 +142064,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21567
+ - uid: 21579
components:
- rot: 1.5707963267948966 rad
pos: -16.5,-65.5
@@ -141986,7 +142088,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21568
+ - uid: 21580
components:
- rot: 1.5707963267948966 rad
pos: -16.5,-66.5
@@ -142010,7 +142112,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21569
+ - uid: 21581
components:
- rot: -1.5707963267948966 rad
pos: -28.5,10.5
@@ -142034,7 +142136,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21570
+ - uid: 21582
components:
- rot: -1.5707963267948966 rad
pos: -28.5,9.5
@@ -142060,277 +142162,277 @@ entities:
type: EntityStorage
- proto: MouseTimedSpawner
entities:
- - uid: 21571
+ - uid: 21583
components:
- pos: -56.5,-48.5
parent: 2
type: Transform
- - uid: 21572
+ - uid: 21584
components:
- pos: 43.5,-10.5
parent: 2
type: Transform
- - uid: 21573
+ - uid: 21585
components:
- pos: 62.5,13.5
parent: 2
type: Transform
- - uid: 21574
+ - uid: 21586
components:
- pos: 5.5,-70.5
parent: 2
type: Transform
- proto: Multitool
entities:
- - uid: 21575
+ - uid: 21587
components:
- rot: 1.5707963267948966 rad
pos: 12.526134,20.708286
parent: 2
type: Transform
- - uid: 21576
+ - uid: 21588
components:
- pos: 53.354275,-43.443607
parent: 2
type: Transform
- - uid: 21577
+ - uid: 21589
components:
- pos: -25.14612,-19.37103
parent: 2
type: Transform
- - uid: 21578
+ - uid: 21590
components:
- pos: -23.347115,-36.422188
parent: 2
type: Transform
- - uid: 21579
+ - uid: 21591
components:
- rot: -1.5707963267948966 rad
pos: -36.559425,-33.012554
parent: 2
type: Transform
- - uid: 21580
+ - uid: 21592
components:
- pos: -56.47646,-35.42343
parent: 2
type: Transform
- - uid: 21581
+ - uid: 21593
components:
- pos: -40.522213,25.653383
parent: 2
type: Transform
- - uid: 21582
+ - uid: 21594
components:
- rot: 3.141592653589793 rad
pos: -32.80296,29.595348
parent: 2
type: Transform
- - uid: 21583
+ - uid: 21595
components:
- pos: -27.507483,24.649845
parent: 2
type: Transform
- - uid: 21584
+ - uid: 21596
components:
- pos: 73.29074,-44.41717
parent: 2
type: Transform
- - uid: 21585
+ - uid: 21597
components:
- pos: 58.474205,51.52541
parent: 2
type: Transform
- - uid: 21586
+ - uid: 21598
components:
- pos: -57.653404,-25.398897
parent: 2
type: Transform
- devices:
- 'UID: 31532': 12649
+ 'UID: 31532': 12657
type: NetworkConfigurator
- - uid: 21587
+ - uid: 21599
components:
- pos: -9.540877,-65.36475
parent: 2
type: Transform
- - uid: 21588
+ - uid: 21600
components:
- pos: 72.48785,36.5135
parent: 2
type: Transform
- - uid: 21589
+ - uid: 21601
components:
- pos: -29.3818,-98.32888
parent: 2
type: Transform
- devices:
- 'UID: 39451': 19755
- 'UID: 39450': 19995
- 'UID: 39636': 913
+ 'UID: 39451': 19761
+ 'UID: 39450': 20002
+ 'UID: 39636': 915
type: NetworkConfigurator
- - uid: 21590
+ - uid: 21602
components:
- pos: 65.54721,-51.514313
parent: 2
type: Transform
- - uid: 21591
+ - uid: 21603
components:
- pos: -28.40416,-19.522995
parent: 2
type: Transform
- - uid: 21592
+ - uid: 21604
components:
- pos: -26.512882,-61.421627
parent: 2
type: Transform
- - uid: 21593
+ - uid: 21605
components:
- pos: -71.37105,-28.43189
parent: 2
type: Transform
- devices:
- 'UID: 32940': 930
- 'UID: 32944': 15202
- 'UID: 32945': 15203
+ 'UID: 32940': 932
+ 'UID: 32944': 15201
+ 'UID: 32945': 15202
linkModeActive: False
type: NetworkConfigurator
- proto: NitrogenCanister
entities:
- - uid: 21594
+ - uid: 21606
components:
- pos: -8.5,-72.5
parent: 2
type: Transform
- - uid: 21595
+ - uid: 21607
components:
- pos: 45.5,-51.5
parent: 2
type: Transform
- - uid: 21596
+ - uid: 21608
components:
- pos: -50.5,-54.5
parent: 2
type: Transform
- - uid: 21597
+ - uid: 21609
components:
- pos: -39.5,-38.5
parent: 2
type: Transform
- - uid: 21598
+ - uid: 21610
components:
- pos: -51.5,-70.5
parent: 2
type: Transform
- - uid: 21599
+ - uid: 21611
components:
- pos: -26.5,37.5
parent: 2
type: Transform
- - uid: 21600
+ - uid: 21612
components:
- pos: -28.5,41.5
parent: 2
type: Transform
- - uid: 21601
+ - uid: 21613
components:
- pos: 72.5,-35.5
parent: 2
type: Transform
- - uid: 21602
+ - uid: 21614
components:
- pos: 46.5,-51.5
parent: 2
type: Transform
- - uid: 21603
+ - uid: 21615
components:
- pos: -22.5,-62.5
parent: 2
type: Transform
- - uid: 21604
+ - uid: 21616
components:
- pos: 3.5,-73.5
parent: 2
type: Transform
- proto: NitrogenTankFilled
entities:
- - uid: 21605
+ - uid: 21617
components:
- pos: -22.469156,-57.61924
parent: 2
type: Transform
- - uid: 21606
+ - uid: 21618
components:
- pos: -54.344475,0.46202505
parent: 2
type: Transform
- - uid: 21607
+ - uid: 21619
components:
- pos: -49.491314,1.5773844
parent: 2
type: Transform
- - uid: 21608
+ - uid: 21620
components:
- pos: -70.575325,-25.445038
parent: 2
type: Transform
- - uid: 21609
+ - uid: 21621
components:
- pos: 64.52838,29.170698
parent: 2
type: Transform
- proto: NitrousOxideCanister
entities:
- - uid: 21610
+ - uid: 21622
components:
- pos: -38.5,-38.5
parent: 2
type: Transform
- - uid: 21611
+ - uid: 21623
components:
- pos: 54.5,-55.5
parent: 2
type: Transform
- - uid: 21612
+ - uid: 21624
components:
- pos: -76.5,-46.5
parent: 2
type: Transform
- proto: NitrousOxideTank
entities:
- - uid: 21613
+ - uid: 21625
components:
- pos: -3.498691,-65.92361
parent: 2
type: Transform
- proto: NitrousOxideTankFilled
entities:
- - uid: 21614
+ - uid: 21626
components:
- pos: -15.868101,-35.49305
parent: 2
type: Transform
- proto: NodeScanner
entities:
- - uid: 21615
+ - uid: 21627
components:
- pos: 73.66279,-38.523205
parent: 2
type: Transform
- proto: NoticeBoard
entities:
- - uid: 21616
+ - uid: 21628
components:
- pos: -0.5,4.5
parent: 2
type: Transform
- - uid: 21617
+ - uid: 21629
components:
- pos: 13.5,15.5
parent: 2
type: Transform
- proto: NuclearBomb
entities:
- - uid: 21618
+ - uid: 21630
components:
- rot: -1.5707963267948966 rad
pos: 46.5,-22.5
@@ -142338,517 +142440,445 @@ entities:
type: Transform
- proto: NuclearBombKeg
entities:
- - uid: 21619
+ - uid: 21631
components:
- pos: 46.5,-29.5
parent: 2
type: Transform
- proto: Ointment
entities:
- - uid: 21620
+ - uid: 21632
components:
- rot: -1.5707963267948966 rad
pos: 47.628784,4.507307
parent: 2
type: Transform
- - uid: 21621
+ - uid: 21633
components:
- pos: -12.245195,-56.394966
parent: 2
type: Transform
- - uid: 21622
+ - uid: 21634
components:
- pos: -9.307695,-56.332466
parent: 2
type: Transform
- - uid: 21623
+ - uid: 21635
components:
- pos: -6.2759557,-56.37934
parent: 2
type: Transform
- - uid: 21624
+ - uid: 21636
components:
- pos: -3.256374,-56.363716
parent: 2
type: Transform
- - uid: 21625
+ - uid: 21637
components:
- pos: -0.2810341,-56.37934
parent: 2
type: Transform
- proto: OnionRedSeeds
entities:
- - uid: 21626
+ - uid: 21638
components:
- pos: -32.362232,6.029836
parent: 2
type: Transform
- proto: OnionSeeds
entities:
- - uid: 21627
+ - uid: 21639
components:
- pos: -32.52041,6.4317174
parent: 2
type: Transform
- proto: OperatingTable
entities:
- - uid: 21628
+ - uid: 21640
components:
- pos: -15.5,-33.5
parent: 2
type: Transform
- - uid: 21629
+ - uid: 21641
components:
- pos: -1.5,-65.5
parent: 2
type: Transform
- - uid: 21630
+ - uid: 21642
components:
- pos: -7.5,-97.5
parent: 2
type: Transform
- - uid: 21631
+ - uid: 21643
components:
- pos: 71.5,-48.5
parent: 2
type: Transform
- proto: OreBag
entities:
- - uid: 21632
+ - uid: 21644
components:
- pos: -41.057323,35.546143
parent: 2
type: Transform
- proto: OreBox
entities:
- - uid: 21633
+ - uid: 21645
components:
- pos: -43.5,35.5
parent: 2
type: Transform
- - uid: 21634
+ - uid: 21646
components:
- pos: -42.5,35.5
parent: 2
type: Transform
- proto: OreProcessor
entities:
- - uid: 21635
+ - uid: 21647
components:
- pos: -41.5,26.5
parent: 2
type: Transform
- proto: OxygenCanister
entities:
- - uid: 21636
+ - uid: 21648
components:
- pos: -76.5,-44.5
parent: 2
type: Transform
- - uid: 21637
+ - uid: 21649
components:
- pos: -9.5,-72.5
parent: 2
type: Transform
- - uid: 21638
+ - uid: 21650
components:
- pos: 59.5,29.5
parent: 2
type: Transform
- - uid: 21639
+ - uid: 21651
components:
- pos: 45.5,-52.5
parent: 2
type: Transform
- - uid: 21640
+ - uid: 21652
components:
- pos: -25.5,-31.5
parent: 2
type: Transform
- - uid: 21641
+ - uid: 21653
components:
- pos: -50.5,-52.5
parent: 2
type: Transform
- - uid: 21642
+ - uid: 21654
components:
- pos: -37.5,-38.5
parent: 2
type: Transform
- - uid: 21643
+ - uid: 21655
components:
- pos: -25.5,-55.5
parent: 2
type: Transform
- - uid: 21644
+ - uid: 21656
components:
- pos: -34.5,-30.5
parent: 2
type: Transform
- - uid: 21645
+ - uid: 21657
components:
- pos: -48.5,28.5
parent: 2
type: Transform
- - uid: 21646
+ - uid: 21658
components:
- pos: -31.5,17.5
parent: 2
type: Transform
- - uid: 21647
+ - uid: 21659
components:
- pos: -29.5,41.5
parent: 2
type: Transform
- - uid: 21648
+ - uid: 21660
components:
- pos: 73.5,-35.5
parent: 2
type: Transform
- - uid: 21649
+ - uid: 21661
components:
- pos: 46.5,-52.5
parent: 2
type: Transform
- - uid: 21650
+ - uid: 21662
components:
- pos: -25.5,-62.5
parent: 2
type: Transform
- - uid: 21651
+ - uid: 21663
components:
- pos: 4.5,-73.5
parent: 2
type: Transform
- proto: OxygenTankFilled
entities:
- - uid: 21652
+ - uid: 21664
components:
- pos: -54.60223,0.49364984
parent: 2
type: Transform
- - uid: 21653
+ - uid: 21665
components:
- pos: -22.609781,-57.353615
parent: 2
type: Transform
- proto: PaintingAmogusTriptych
entities:
- - uid: 21654
+ - uid: 21666
components:
- pos: -16.5,-36.5
parent: 2
type: Transform
- - uid: 21655
+ - uid: 21667
components:
- pos: 45.5,-12.5
parent: 2
type: Transform
- proto: PaintingMonkey
entities:
- - uid: 21656
+ - uid: 21668
components:
- pos: 13.5,-9.5
parent: 2
type: Transform
- proto: PaintingNightHawks
entities:
- - uid: 21657
+ - uid: 21669
components:
- pos: -9.5,-34.5
parent: 2
type: Transform
- proto: PaintingSkeletonBoof
entities:
- - uid: 21658
+ - uid: 21670
components:
- pos: 9.5,-3.5
parent: 2
type: Transform
- proto: PaintingSkeletonCigarette
entities:
- - uid: 21659
+ - uid: 21671
components:
- pos: -14.5,-36.5
parent: 2
type: Transform
- proto: PaintingTheGreatWave
entities:
- - uid: 21660
+ - uid: 21672
components:
- pos: 30.5,-26.5
parent: 2
type: Transform
- proto: PaintingTheScream
entities:
- - uid: 21661
+ - uid: 21673
components:
- pos: -7.5,-35.5
parent: 2
type: Transform
- proto: PaintingTheSonOfMan
entities:
- - uid: 21662
+ - uid: 21674
components:
- pos: -25.5,16.5
parent: 2
type: Transform
- proto: Paper
entities:
- - uid: 21663
+ - uid: 21675
components:
- pos: 20.483978,-12.296361
parent: 2
type: Transform
- - uid: 21664
+ - uid: 21676
components:
- pos: 20.661783,-12.471693
parent: 2
type: Transform
- - uid: 21665
+ - uid: 21677
components:
- pos: 24.486351,19.53259
parent: 2
type: Transform
- - uid: 21666
+ - uid: 21678
components:
- pos: 6.351438,20.675463
parent: 2
type: Transform
- - uid: 21667
+ - uid: 21679
components:
- rot: -1.5707963267948966 rad
pos: -12.583234,-18.98207
parent: 2
type: Transform
- - uid: 21668
+ - uid: 21680
components:
- rot: 1.5707963267948966 rad
pos: -28.478912,45.366596
parent: 2
type: Transform
- - uid: 21669
+ - uid: 21681
components:
- rot: 1.5707963267948966 rad
pos: -28.478912,45.366596
parent: 2
type: Transform
- - uid: 21670
+ - uid: 21682
components:
- rot: 1.5707963267948966 rad
pos: -28.478912,45.366596
parent: 2
type: Transform
- - uid: 21671
+ - uid: 21683
components:
- rot: 1.5707963267948966 rad
pos: -28.478912,45.366596
parent: 2
type: Transform
- - uid: 21672
+ - uid: 21684
components:
- rot: 1.5707963267948966 rad
pos: -28.478912,45.366596
parent: 2
type: Transform
- - uid: 21673
+ - uid: 21685
components:
- rot: 1.5707963267948966 rad
pos: -28.478912,45.366596
parent: 2
type: Transform
- - uid: 21674
+ - uid: 21686
components:
- rot: 1.5707963267948966 rad
pos: -28.478912,45.366596
parent: 2
type: Transform
- - uid: 21675
+ - uid: 21687
components:
- rot: 1.5707963267948966 rad
pos: -28.478912,45.366596
parent: 2
type: Transform
- - uid: 21676
+ - uid: 21688
components:
- rot: 1.5707963267948966 rad
pos: -28.478912,45.366596
parent: 2
type: Transform
- - uid: 21677
+ - uid: 21689
components:
- rot: 1.5707963267948966 rad
pos: -28.478912,45.366596
parent: 2
type: Transform
- - uid: 21678
+ - uid: 21690
components:
- rot: 1.5707963267948966 rad
pos: -28.478912,45.366596
parent: 2
type: Transform
- - uid: 21679
+ - uid: 21691
components:
- rot: 3.141592653589793 rad
pos: -10.57877,-37.384254
parent: 2
type: Transform
- - uid: 21680
+ - uid: 21692
components:
- rot: 3.141592653589793 rad
pos: -10.57877,-37.384254
parent: 2
type: Transform
- - uid: 21681
+ - uid: 21693
components:
- rot: 3.141592653589793 rad
pos: -10.57877,-37.384254
parent: 2
type: Transform
- - uid: 21682
+ - uid: 21694
components:
- rot: 3.141592653589793 rad
pos: -10.57877,-37.384254
parent: 2
type: Transform
- - uid: 21683
+ - uid: 21695
components:
- rot: 3.141592653589793 rad
pos: -10.57877,-37.384254
parent: 2
type: Transform
- - uid: 21684
+ - uid: 21696
components:
- pos: 24.486351,19.53259
parent: 2
type: Transform
- - uid: 21685
+ - uid: 21697
components:
- pos: 24.486351,19.53259
parent: 2
type: Transform
- - uid: 21686
+ - uid: 21698
components:
- pos: 24.486351,19.53259
parent: 2
type: Transform
- - uid: 21687
+ - uid: 21699
components:
- pos: 24.486351,19.53259
parent: 2
type: Transform
- - uid: 21688
+ - uid: 21700
components:
- pos: 24.486351,19.53259
parent: 2
type: Transform
- - uid: 21689
+ - uid: 21701
components:
- pos: 24.486351,19.53259
parent: 2
type: Transform
- - uid: 21690
+ - uid: 21702
components:
- rot: 3.141592653589793 rad
pos: 16.421602,22.571196
parent: 2
type: Transform
- - uid: 21691
+ - uid: 21703
components:
- rot: 3.141592653589793 rad
pos: 16.515352,22.55557
parent: 2
type: Transform
- - uid: 21692
+ - uid: 21704
components:
- rot: 3.141592653589793 rad
pos: 16.499727,22.571196
parent: 2
type: Transform
- - uid: 21693
+ - uid: 21705
components:
- rot: 3.141592653589793 rad
pos: 16.499727,22.571196
parent: 2
type: Transform
- - uid: 21694
+ - uid: 21706
components:
- rot: 3.141592653589793 rad
pos: 16.499727,22.571196
parent: 2
type: Transform
- - uid: 21695
- components:
- - rot: 1.5707963267948966 rad
- pos: 43.519466,-3.4569287
- parent: 2
- type: Transform
- - uid: 21696
- components:
- - rot: 1.5707963267948966 rad
- pos: 43.519466,-3.4569287
- parent: 2
- type: Transform
- - uid: 21697
- components:
- - rot: 1.5707963267948966 rad
- pos: 43.519466,-3.4569287
- parent: 2
- type: Transform
- - uid: 21698
- components:
- - rot: 1.5707963267948966 rad
- pos: 43.519466,-3.4569287
- parent: 2
- type: Transform
- - uid: 21699
- components:
- - rot: 1.5707963267948966 rad
- pos: 43.519466,-3.4569287
- parent: 2
- type: Transform
- - uid: 21700
- components:
- - rot: 1.5707963267948966 rad
- pos: 43.519466,-3.4569287
- parent: 2
- type: Transform
- - uid: 21701
- components:
- - rot: 1.5707963267948966 rad
- pos: 43.519466,-3.4569287
- parent: 2
- type: Transform
- - uid: 21702
- components:
- - rot: 1.5707963267948966 rad
- pos: 43.519466,-3.4569287
- parent: 2
- type: Transform
- - uid: 21703
- components:
- - rot: 1.5707963267948966 rad
- pos: 43.519466,-3.4569287
- parent: 2
- type: Transform
- - uid: 21704
- components:
- - rot: 1.5707963267948966 rad
- pos: 43.519466,-3.4569287
- parent: 2
- type: Transform
- - uid: 21705
- components:
- - rot: 1.5707963267948966 rad
- pos: 43.519466,-3.4569287
- parent: 2
- type: Transform
- - uid: 21706
- components:
- - rot: 1.5707963267948966 rad
- pos: 43.519466,-3.4569287
- parent: 2
- type: Transform
- uid: 21707
components:
- rot: 1.5707963267948966 rad
@@ -142888,318 +142918,390 @@ entities:
- uid: 21713
components:
- rot: 1.5707963267948966 rad
- pos: 37.488216,-3.5194297
+ pos: 43.519466,-3.4569287
parent: 2
type: Transform
- uid: 21714
components:
- rot: 1.5707963267948966 rad
- pos: 37.488216,-3.5194297
+ pos: 43.519466,-3.4569287
parent: 2
type: Transform
- uid: 21715
components:
- rot: 1.5707963267948966 rad
- pos: 37.488216,-3.5194297
+ pos: 43.519466,-3.4569287
parent: 2
type: Transform
- uid: 21716
components:
- rot: 1.5707963267948966 rad
- pos: 37.488216,-3.5194297
+ pos: 43.519466,-3.4569287
parent: 2
type: Transform
- uid: 21717
components:
- rot: 1.5707963267948966 rad
- pos: 37.59759,-3.6288047
+ pos: 43.519466,-3.4569287
parent: 2
type: Transform
- uid: 21718
components:
- rot: 1.5707963267948966 rad
- pos: 37.59759,-3.6288047
+ pos: 43.519466,-3.4569287
parent: 2
type: Transform
- uid: 21719
components:
- rot: 1.5707963267948966 rad
- pos: 37.550716,-3.6131797
+ pos: 43.519466,-3.4569287
parent: 2
type: Transform
- uid: 21720
components:
- rot: 1.5707963267948966 rad
- pos: 37.550716,-3.6131797
+ pos: 43.519466,-3.4569287
parent: 2
type: Transform
- uid: 21721
components:
- rot: 1.5707963267948966 rad
- pos: 37.56634,-3.6131797
+ pos: 43.519466,-3.4569287
parent: 2
type: Transform
- uid: 21722
components:
- rot: 1.5707963267948966 rad
- pos: 37.59759,-3.6288047
+ pos: 43.519466,-3.4569287
parent: 2
type: Transform
- uid: 21723
components:
- rot: 1.5707963267948966 rad
- pos: 37.59759,-3.6288047
+ pos: 43.519466,-3.4569287
parent: 2
type: Transform
- uid: 21724
components:
- rot: 1.5707963267948966 rad
- pos: 37.59759,-3.6288047
+ pos: 43.519466,-3.4569287
parent: 2
type: Transform
- uid: 21725
components:
- - pos: 38.47659,-2.4393778
+ - rot: 1.5707963267948966 rad
+ pos: 37.488216,-3.5194297
parent: 2
type: Transform
- uid: 21726
components:
- - pos: 38.47659,-2.4393778
+ - rot: 1.5707963267948966 rad
+ pos: 37.488216,-3.5194297
parent: 2
type: Transform
- uid: 21727
components:
- - pos: 38.47659,-2.4393778
+ - rot: 1.5707963267948966 rad
+ pos: 37.488216,-3.5194297
parent: 2
type: Transform
- uid: 21728
components:
- - pos: 38.47659,-2.4393778
+ - rot: 1.5707963267948966 rad
+ pos: 37.488216,-3.5194297
parent: 2
type: Transform
- uid: 21729
components:
- - pos: 38.47659,-2.4393778
+ - rot: 1.5707963267948966 rad
+ pos: 37.59759,-3.6288047
parent: 2
type: Transform
- uid: 21730
components:
- - pos: 38.47659,-2.4393778
+ - rot: 1.5707963267948966 rad
+ pos: 37.59759,-3.6288047
parent: 2
type: Transform
- uid: 21731
components:
- - pos: 38.47659,-2.4393778
+ - rot: 1.5707963267948966 rad
+ pos: 37.550716,-3.6131797
parent: 2
type: Transform
- uid: 21732
components:
- rot: 1.5707963267948966 rad
- pos: 51.483532,-41.966263
+ pos: 37.550716,-3.6131797
parent: 2
type: Transform
- uid: 21733
components:
- rot: 1.5707963267948966 rad
- pos: 51.467907,-41.966263
+ pos: 37.56634,-3.6131797
parent: 2
type: Transform
- uid: 21734
components:
- rot: 1.5707963267948966 rad
- pos: 51.467907,-41.966263
+ pos: 37.59759,-3.6288047
parent: 2
type: Transform
- uid: 21735
components:
- rot: 1.5707963267948966 rad
- pos: 51.467907,-41.966263
+ pos: 37.59759,-3.6288047
parent: 2
type: Transform
- uid: 21736
components:
- rot: 1.5707963267948966 rad
- pos: 51.467907,-41.966263
+ pos: 37.59759,-3.6288047
parent: 2
type: Transform
- uid: 21737
+ components:
+ - pos: 38.47659,-2.4393778
+ parent: 2
+ type: Transform
+ - uid: 21738
+ components:
+ - pos: 38.47659,-2.4393778
+ parent: 2
+ type: Transform
+ - uid: 21739
+ components:
+ - pos: 38.47659,-2.4393778
+ parent: 2
+ type: Transform
+ - uid: 21740
+ components:
+ - pos: 38.47659,-2.4393778
+ parent: 2
+ type: Transform
+ - uid: 21741
+ components:
+ - pos: 38.47659,-2.4393778
+ parent: 2
+ type: Transform
+ - uid: 21742
+ components:
+ - pos: 38.47659,-2.4393778
+ parent: 2
+ type: Transform
+ - uid: 21743
+ components:
+ - pos: 38.47659,-2.4393778
+ parent: 2
+ type: Transform
+ - uid: 21744
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 51.483532,-41.966263
+ parent: 2
+ type: Transform
+ - uid: 21745
components:
- rot: 1.5707963267948966 rad
pos: 51.467907,-41.966263
parent: 2
type: Transform
- - uid: 21738
+ - uid: 21746
components:
- rot: 1.5707963267948966 rad
pos: 51.467907,-41.966263
parent: 2
type: Transform
- - uid: 21739
+ - uid: 21747
components:
- rot: 1.5707963267948966 rad
pos: 51.467907,-41.966263
parent: 2
type: Transform
- - uid: 21740
+ - uid: 21748
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 51.467907,-41.966263
+ parent: 2
+ type: Transform
+ - uid: 21749
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 51.467907,-41.966263
+ parent: 2
+ type: Transform
+ - uid: 21750
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 51.467907,-41.966263
+ parent: 2
+ type: Transform
+ - uid: 21751
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 51.467907,-41.966263
+ parent: 2
+ type: Transform
+ - uid: 21752
components:
- rot: -1.5707963267948966 rad
pos: -35.51461,-16.473585
parent: 2
type: Transform
- - uid: 21741
+ - uid: 21753
components:
- rot: -1.5707963267948966 rad
pos: -35.51461,-16.473585
parent: 2
type: Transform
- - uid: 21742
+ - uid: 21754
components:
- rot: -1.5707963267948966 rad
pos: -35.51461,-16.473585
parent: 2
type: Transform
- - uid: 21743
+ - uid: 21755
components:
- rot: -1.5707963267948966 rad
pos: -35.51461,-16.473585
parent: 2
type: Transform
- - uid: 21744
+ - uid: 21756
components:
- rot: -1.5707963267948966 rad
pos: -35.51461,-16.473585
parent: 2
type: Transform
- - uid: 21745
+ - uid: 21757
components:
- rot: -1.5707963267948966 rad
pos: -35.51461,-16.473585
parent: 2
type: Transform
- - uid: 21746
+ - uid: 21758
components:
- rot: -1.5707963267948966 rad
pos: -35.51461,-16.473585
parent: 2
type: Transform
- - uid: 21747
+ - uid: 21759
components:
- rot: -1.5707963267948966 rad
pos: -35.51461,-16.473585
parent: 2
type: Transform
- - uid: 21748
+ - uid: 21760
components:
- rot: -1.5707963267948966 rad
pos: -35.51461,-16.473585
parent: 2
type: Transform
- - uid: 21749
+ - uid: 21761
components:
- rot: -1.5707963267948966 rad
pos: -35.467735,-16.567335
parent: 2
type: Transform
- - uid: 21750
+ - uid: 21762
components:
- rot: -1.5707963267948966 rad
pos: -35.467735,-16.567335
parent: 2
type: Transform
- - uid: 21751
+ - uid: 21763
components:
- rot: -1.5707963267948966 rad
pos: -35.467735,-16.567335
parent: 2
type: Transform
- - uid: 21752
+ - uid: 21764
components:
- rot: -1.5707963267948966 rad
pos: -35.467735,-16.567335
parent: 2
type: Transform
- - uid: 21753
+ - uid: 21765
components:
- pos: 1.3868889,23.62748
parent: 2
type: Transform
- - uid: 21754
+ - uid: 21766
components:
- pos: 1.3868889,23.643105
parent: 2
type: Transform
- - uid: 21755
+ - uid: 21767
components:
- rot: 3.141592653589793 rad
pos: -26.49969,14.6061535
parent: 2
type: Transform
- - uid: 21756
+ - uid: 21768
components:
- rot: 3.141592653589793 rad
pos: -26.49969,14.6061535
parent: 2
type: Transform
- - uid: 21757
+ - uid: 21769
components:
- rot: 3.141592653589793 rad
pos: -26.49969,14.6061535
parent: 2
type: Transform
- - uid: 21758
+ - uid: 21770
components:
- rot: 3.141592653589793 rad
pos: -26.49969,14.6061535
parent: 2
type: Transform
- - uid: 21759
+ - uid: 21771
components:
- rot: 3.141592653589793 rad
pos: -26.49969,14.6061535
parent: 2
type: Transform
- - uid: 21760
+ - uid: 21772
components:
- rot: 3.141592653589793 rad
pos: -26.49969,14.6061535
parent: 2
type: Transform
- - uid: 21761
+ - uid: 21773
components:
- pos: -31.206972,15.691786
parent: 2
type: Transform
- - uid: 21762
+ - uid: 21774
components:
- pos: -31.206972,15.691786
parent: 2
type: Transform
- - uid: 21763
+ - uid: 21775
components:
- pos: -31.363222,15.551161
parent: 2
type: Transform
- - uid: 21764
+ - uid: 21776
components:
- pos: -31.363222,15.551161
parent: 2
type: Transform
- - uid: 21765
+ - uid: 21777
components:
- pos: 10.165828,-6.3936543
parent: 2
type: Transform
- - uid: 21766
+ - uid: 21778
components:
- pos: 10.165828,-6.3936543
parent: 2
type: Transform
- - uid: 21767
+ - uid: 21779
components:
- pos: 9.367039,-7.0613875
parent: 2
type: Transform
- - uid: 21768
+ - uid: 21780
components:
- pos: -11.489469,-13.479897
parent: 2
@@ -143209,7 +143311,7 @@ entities:
Anything suspicious, please inform security.
type: Paper
- - uid: 21769
+ - uid: 21781
components:
- pos: -42.540462,17.447073
parent: 2
@@ -143219,53 +143321,53 @@ entities:
type: Paper
- proto: PaperBin10
entities:
- - uid: 21770
+ - uid: 21782
components:
- rot: -1.5707963267948966 rad
pos: 22.5,-21.5
parent: 2
type: Transform
- - uid: 21771
+ - uid: 21783
components:
- pos: -22.48288,-97.58025
parent: 2
type: Transform
- proto: PaperBin5
entities:
- - uid: 21772
+ - uid: 21784
components:
- pos: -19.490406,-56.387535
parent: 2
type: Transform
- - uid: 21773
+ - uid: 21785
components:
- pos: -34.544167,24.426237
parent: 2
type: Transform
- - uid: 21774
+ - uid: 21786
components:
- rot: 3.141592653589793 rad
pos: -25.63709,-36.050198
parent: 2
type: Transform
- - uid: 21775
+ - uid: 21787
components:
- pos: -27.800707,-9.411719
parent: 2
type: Transform
- - uid: 21776
+ - uid: 21788
components:
- pos: 39.827625,-39.412262
parent: 2
type: Transform
- - uid: 21777
+ - uid: 21789
components:
- pos: -17.5,-61.5
parent: 2
type: Transform
- proto: PaperCaptainsThoughts
entities:
- - uid: 21778
+ - uid: 21790
components:
- rot: 1.5707963267948966 rad
pos: 30.690884,-28.507551
@@ -143273,21 +143375,21 @@ entities:
type: Transform
- proto: PaperRolling
entities:
- - uid: 21779
+ - uid: 21791
components:
- pos: 50.67044,57.737556
parent: 2
type: Transform
- proto: ParticleAcceleratorControlBoxUnfinished
entities:
- - uid: 21780
+ - uid: 21792
components:
- pos: -66.5,-30.5
parent: 2
type: Transform
- proto: ParticleAcceleratorEmitterForeUnfinished
entities:
- - uid: 21781
+ - uid: 21793
components:
- rot: 3.141592653589793 rad
pos: -66.5,-24.5
@@ -143295,7 +143397,7 @@ entities:
type: Transform
- proto: ParticleAcceleratorEmitterPortUnfinished
entities:
- - uid: 21782
+ - uid: 21794
components:
- rot: 3.141592653589793 rad
pos: -67.5,-24.5
@@ -143303,7 +143405,7 @@ entities:
type: Transform
- proto: ParticleAcceleratorEmitterStarboard
entities:
- - uid: 21783
+ - uid: 21795
components:
- rot: 3.141592653589793 rad
pos: -65.5,-24.5
@@ -143311,7 +143413,7 @@ entities:
type: Transform
- proto: ParticleAcceleratorEndCapUnfinished
entities:
- - uid: 21784
+ - uid: 21796
components:
- rot: 3.141592653589793 rad
pos: -66.5,-27.5
@@ -143319,7 +143421,7 @@ entities:
type: Transform
- proto: ParticleAcceleratorFuelChamberUnfinished
entities:
- - uid: 21785
+ - uid: 21797
components:
- rot: 3.141592653589793 rad
pos: -65.5,-26.5
@@ -143327,7 +143429,7 @@ entities:
type: Transform
- proto: ParticleAcceleratorPowerBoxUnfinished
entities:
- - uid: 21786
+ - uid: 21798
components:
- rot: 3.141592653589793 rad
pos: -66.5,-25.5
@@ -143335,40 +143437,40 @@ entities:
type: Transform
- proto: PartRodMetal
entities:
- - uid: 21787
+ - uid: 21799
components:
- pos: -40.15428,-18.425268
parent: 2
type: Transform
- - uid: 21788
+ - uid: 21800
components:
- pos: -39.68701,25.670773
parent: 2
type: Transform
- - uid: 21789
+ - uid: 21801
components:
- pos: -40.541622,33.38082
parent: 2
type: Transform
- - uid: 21790
+ - uid: 21802
components:
- pos: -47.52058,40.270145
parent: 2
type: Transform
- proto: PartRodMetal1
entities:
- - uid: 21791
+ - uid: 21803
components:
- pos: -34.56476,-25.498856
parent: 2
type: Transform
- - uid: 21792
+ - uid: 21804
components:
- rot: -1.5707963267948966 rad
pos: 3.9014397,49.543682
parent: 2
type: Transform
- - uid: 21793
+ - uid: 21805
components:
- rot: 3.141592653589793 rad
pos: 1.4099668,48.504288
@@ -143376,46 +143478,46 @@ entities:
type: Transform
- proto: Pen
entities:
- - uid: 21794
+ - uid: 21806
components:
- rot: -1.5707963267948966 rad
pos: -4.7918606,-48.471176
parent: 2
type: Transform
- - uid: 21795
+ - uid: 21807
components:
- rot: 3.141592653589793 rad
pos: -10.781895,-37.52488
parent: 2
type: Transform
- - uid: 21796
+ - uid: 21808
components:
- rot: 3.141592653589793 rad
pos: 16.218477,22.61807
parent: 2
type: Transform
- - uid: 21797
+ - uid: 21809
components:
- pos: 16.327852,21.55557
parent: 2
type: Transform
- - uid: 21798
+ - uid: 21810
components:
- pos: 43.66009,-3.5506787
parent: 2
type: Transform
- - uid: 21799
+ - uid: 21811
components:
- pos: 37.66009,-3.7069297
parent: 2
type: Transform
- - uid: 21800
+ - uid: 21812
components:
- rot: -1.5707963267948966 rad
pos: -35.775307,-16.265104
parent: 2
type: Transform
- - uid: 21801
+ - uid: 21813
components:
- rot: 1.5707963267948966 rad
pos: 3.6684875,-10.184602
@@ -143423,35 +143525,35 @@ entities:
type: Transform
- proto: PersonalAI
entities:
- - uid: 21802
+ - uid: 21814
components:
- flags: SessionSpecific
type: MetaData
- pos: 26.517971,-21.50738
parent: 2
type: Transform
- - uid: 21803
+ - uid: 21815
components:
- flags: SessionSpecific
type: MetaData
- pos: 11.402888,8.363556
parent: 2
type: Transform
- - uid: 21804
+ - uid: 21816
components:
- flags: SessionSpecific
type: MetaData
- pos: 12.500859,-4.4425125
parent: 2
type: Transform
- - uid: 21805
+ - uid: 21817
components:
- flags: SessionSpecific
type: MetaData
- pos: -48.458683,6.4665513
parent: 2
type: Transform
- - uid: 21806
+ - uid: 21818
components:
- flags: SessionSpecific
type: MetaData
@@ -143460,14 +143562,14 @@ entities:
type: Transform
- proto: PhoneInstrument
entities:
- - uid: 21807
+ - uid: 21819
components:
- pos: 60.321476,-1.3655583
parent: 2
type: Transform
- proto: PianoInstrument
entities:
- - uid: 21808
+ - uid: 21820
components:
- rot: -1.5707963267948966 rad
pos: 8.5,0.5
@@ -143475,234 +143577,234 @@ entities:
type: Transform
- proto: Pickaxe
entities:
- - uid: 21809
+ - uid: 21821
components:
- pos: -38.26402,27.606245
parent: 2
type: Transform
- - uid: 21810
+ - uid: 21822
components:
- pos: -38.54527,27.71562
parent: 2
type: Transform
- - uid: 21811
+ - uid: 21823
components:
- pos: -47.972298,26.558094
parent: 2
type: Transform
- - uid: 21812
+ - uid: 21824
components:
- pos: 68.4767,50.00708
parent: 2
type: Transform
- - uid: 21813
+ - uid: 21825
components:
- pos: 20.350138,46.202785
parent: 2
type: Transform
- - uid: 21814
+ - uid: 21826
components:
- pos: -47.48462,39.252865
parent: 2
type: Transform
- - uid: 21815
+ - uid: 21827
components:
- pos: 63.54565,-33.402943
parent: 2
type: Transform
- proto: PillCanister
entities:
- - uid: 21816
+ - uid: 21828
components:
- pos: -10.04752,-37.290504
parent: 2
type: Transform
- proto: PillDexalin
entities:
- - uid: 21817
+ - uid: 21829
components:
- pos: -10.034681,-32.27196
parent: 2
type: Transform
- - uid: 21818
+ - uid: 21830
components:
- pos: -10.034681,-32.27196
parent: 2
type: Transform
- - uid: 21819
+ - uid: 21831
components:
- pos: -10.019056,-32.27196
parent: 2
type: Transform
- - uid: 21820
+ - uid: 21832
components:
- pos: -10.019056,-32.27196
parent: 2
type: Transform
- proto: PillDylovene
entities:
- - uid: 21821
+ - uid: 21833
components:
- pos: -9.519056,-32.52196
parent: 2
type: Transform
- - uid: 21822
+ - uid: 21834
components:
- pos: -9.519056,-32.52196
parent: 2
type: Transform
- - uid: 21823
+ - uid: 21835
components:
- pos: -9.503431,-32.52196
parent: 2
type: Transform
- - uid: 21824
+ - uid: 21836
components:
- pos: -9.487806,-32.537586
parent: 2
type: Transform
- proto: PillHyronalin
entities:
- - uid: 21825
+ - uid: 21837
components:
- pos: -9.534681,-32.256336
parent: 2
type: Transform
- - uid: 21826
+ - uid: 21838
components:
- pos: -9.534681,-32.256336
parent: 2
type: Transform
- - uid: 21827
+ - uid: 21839
components:
- pos: -9.534681,-32.256336
parent: 2
type: Transform
- - uid: 21828
+ - uid: 21840
components:
- pos: -9.534681,-32.256336
parent: 2
type: Transform
- proto: PillIron
entities:
- - uid: 21829
+ - uid: 21841
components:
- pos: -9.034681,-32.506336
parent: 2
type: Transform
- - uid: 21830
+ - uid: 21842
components:
- pos: -9.034681,-32.506336
parent: 2
type: Transform
- - uid: 21831
+ - uid: 21843
components:
- pos: -9.034681,-32.506336
parent: 2
type: Transform
- - uid: 21832
+ - uid: 21844
components:
- pos: -9.034681,-32.506336
parent: 2
type: Transform
- proto: PillKelotane
entities:
- - uid: 21833
+ - uid: 21845
components:
- pos: -9.034681,-32.24071
parent: 2
type: Transform
- - uid: 21834
+ - uid: 21846
components:
- pos: -9.034681,-32.24071
parent: 2
type: Transform
- - uid: 21835
+ - uid: 21847
components:
- pos: -9.034681,-32.24071
parent: 2
type: Transform
- - uid: 21836
+ - uid: 21848
components:
- pos: -9.034681,-32.24071
parent: 2
type: Transform
- proto: PillSpaceDrugs
entities:
- - uid: 21837
+ - uid: 21849
components:
- pos: -8.5,-32.5
parent: 2
type: Transform
- - uid: 21838
+ - uid: 21850
components:
- pos: -8.5,-32.5
parent: 2
type: Transform
- - uid: 21839
+ - uid: 21851
components:
- pos: -8.5,-32.5
parent: 2
type: Transform
- - uid: 21840
+ - uid: 21852
components:
- pos: -8.5,-32.5
parent: 2
type: Transform
- proto: PillTricordrazine
entities:
- - uid: 21841
+ - uid: 21853
components:
- pos: -8.519056,-32.256336
parent: 2
type: Transform
- - uid: 21842
+ - uid: 21854
components:
- pos: -8.503431,-32.256336
parent: 2
type: Transform
- - uid: 21843
+ - uid: 21855
components:
- pos: -8.519056,-32.256336
parent: 2
type: Transform
- - uid: 21844
+ - uid: 21856
components:
- pos: -8.519056,-32.256336
parent: 2
type: Transform
- proto: PinpointerNuclear
entities:
- - uid: 21845
+ - uid: 21857
components:
- pos: 47.542713,-21.502851
parent: 2
type: Transform
- proto: PlasmaCanister
entities:
- - uid: 21846
+ - uid: 21858
components:
- pos: 55.5,-55.5
parent: 2
type: Transform
- - uid: 21847
+ - uid: 21859
components:
- pos: -40.5,-39.5
parent: 2
type: Transform
- - uid: 21848
+ - uid: 21860
components:
- pos: -50.5,-46.5
parent: 2
type: Transform
- - uid: 21849
+ - uid: 21861
components:
- pos: -75.5,-44.5
parent: 2
type: Transform
- proto: PlasmaOre1
entities:
- - uid: 21850
+ - uid: 21862
components:
- rot: 3.141592653589793 rad
pos: 13.8918705,48.240677
@@ -143710,47 +143812,47 @@ entities:
type: Transform
- proto: PlasticFlapsAirtightClear
entities:
- - uid: 21851
+ - uid: 21863
components:
- pos: -49.5,19.5
parent: 2
type: Transform
- - uid: 21852
+ - uid: 21864
components:
- pos: -49.5,23.5
parent: 2
type: Transform
- - uid: 21853
+ - uid: 21865
components:
- pos: -49.5,30.5
parent: 2
type: Transform
- - uid: 21854
+ - uid: 21866
components:
- pos: -49.5,34.5
parent: 2
type: Transform
- - uid: 21855
+ - uid: 21867
components:
- pos: -52.5,34.5
parent: 2
type: Transform
- - uid: 21856
+ - uid: 21868
components:
- pos: -52.5,30.5
parent: 2
type: Transform
- - uid: 21857
+ - uid: 21869
components:
- pos: -53.5,23.5
parent: 2
type: Transform
- - uid: 21858
+ - uid: 21870
components:
- pos: -53.5,19.5
parent: 2
type: Transform
- - uid: 21859
+ - uid: 21871
components:
- rot: -1.5707963267948966 rad
pos: 18.5,-56.5
@@ -143758,12 +143860,12 @@ entities:
type: Transform
- proto: PlasticFlapsAirtightOpaque
entities:
- - uid: 21860
+ - uid: 21872
components:
- pos: -35.5,25.5
parent: 2
type: Transform
- - uid: 21861
+ - uid: 21873
components:
- rot: -1.5707963267948966 rad
pos: -37.5,-99.5
@@ -143771,35 +143873,35 @@ entities:
type: Transform
- proto: PlasticFlapsClear
entities:
- - uid: 21862
+ - uid: 21874
components:
- pos: -26.5,25.5
parent: 2
type: Transform
- - uid: 21863
+ - uid: 21875
components:
- pos: -29.5,25.5
parent: 2
type: Transform
- - uid: 21864
+ - uid: 21876
components:
- rot: -1.5707963267948966 rad
pos: -47.5,13.5
parent: 2
type: Transform
- - uid: 21865
+ - uid: 21877
components:
- rot: 1.5707963267948966 rad
pos: -42.5,16.5
parent: 2
type: Transform
- - uid: 21866
+ - uid: 21878
components:
- rot: -1.5707963267948966 rad
pos: -11.5,-11.5
parent: 2
type: Transform
- - uid: 21867
+ - uid: 21879
components:
- rot: 1.5707963267948966 rad
pos: -16.5,9.5
@@ -143807,29 +143909,29 @@ entities:
type: Transform
- proto: PlasticFlapsOpaque
entities:
- - uid: 21868
+ - uid: 21880
components:
- pos: -11.5,27.5
parent: 2
type: Transform
- - uid: 21869
+ - uid: 21881
components:
- rot: -1.5707963267948966 rad
pos: -9.5,25.5
parent: 2
type: Transform
- - uid: 21870
+ - uid: 21882
components:
- pos: -7.5,22.5
parent: 2
type: Transform
- - uid: 21871
+ - uid: 21883
components:
- rot: 3.141592653589793 rad
pos: 44.5,37.5
parent: 2
type: Transform
- - uid: 21872
+ - uid: 21884
components:
- rot: 1.5707963267948966 rad
pos: 48.5,37.5
@@ -143837,121 +143939,121 @@ entities:
type: Transform
- proto: PlushieAtmosian
entities:
- - uid: 21873
+ - uid: 21885
components:
- pos: -22.54358,-34.49993
parent: 2
type: Transform
- proto: PlushieBee
entities:
- - uid: 21874
+ - uid: 21886
components:
- pos: 10.893783,54.42024
parent: 2
type: Transform
- - uid: 21875
+ - uid: 21887
components:
- pos: 8.284408,54.20149
parent: 2
type: Transform
- - uid: 21876
+ - uid: 21888
components:
- pos: -7.8529105,54.918877
parent: 2
type: Transform
- - uid: 21877
+ - uid: 21889
components:
- pos: -6.6029105,50.731377
parent: 2
type: Transform
- proto: PlushieCarp
entities:
- - uid: 21878
+ - uid: 21890
components:
- pos: -38.3623,28.544445
parent: 2
type: Transform
- proto: PlushieDiona
entities:
- - uid: 21879
+ - uid: 21891
components:
- pos: 17.550053,-79.57761
parent: 2
type: Transform
- proto: PlushieHampter
entities:
- - uid: 21880
+ - uid: 21892
components:
- pos: -46.5,-30.5
parent: 2
type: Transform
- - uid: 21881
+ - uid: 21893
components:
- pos: 2.519814,7.511129
parent: 2
type: Transform
- proto: PlushieLizard
entities:
- - uid: 21882
+ - uid: 21894
components:
- pos: 61.496056,-69.34596
parent: 2
type: Transform
- proto: PlushieMoth
entities:
- - uid: 21883
+ - uid: 21895
components:
- pos: -55.418537,-64.31985
parent: 2
type: Transform
- proto: PlushieNar
entities:
- - uid: 21884
+ - uid: 21896
components:
- pos: 44.413727,31.423994
parent: 2
type: Transform
- proto: PlushieNuke
entities:
- - uid: 21885
+ - uid: 21897
components:
- pos: -14.485033,-78.68338
parent: 2
type: Transform
- - uid: 21886
+ - uid: 21898
components:
- pos: 54.48294,57.40943
parent: 2
type: Transform
- proto: PlushieRatvar
entities:
- - uid: 21887
+ - uid: 21899
components:
- pos: 22.555937,-28.535349
parent: 2
type: Transform
- proto: PlushieRGBee
entities:
- - uid: 21888
+ - uid: 21900
components:
- pos: 56.511868,-8.541915
parent: 2
type: Transform
- proto: PlushieSharkGrey
entities:
- - uid: 21889
+ - uid: 21901
components:
- pos: -52.480396,-88.49494
parent: 2
type: Transform
- proto: PlushieSharkPink
entities:
- - uid: 21890
+ - uid: 21902
components:
- pos: -44.508965,16.421295
parent: 2
type: Transform
- - uid: 21891
+ - uid: 21903
components:
- desc: It eerily feels... cute?
name: Cult shark plushie
@@ -143965,184 +144067,184 @@ entities:
type: PointLight
- proto: PlushieSlime
entities:
- - uid: 21892
+ - uid: 21904
components:
- pos: 44.49185,33.486496
parent: 2
type: Transform
- proto: PlushieSnake
entities:
- - uid: 21893
+ - uid: 21905
components:
- pos: 43.507477,33.486496
parent: 2
type: Transform
- - uid: 21894
+ - uid: 21906
components:
- pos: -55.49481,-49.261024
parent: 2
type: Transform
- proto: PlushieSpaceLizard
entities:
- - uid: 21895
+ - uid: 21907
components:
- pos: -44.46209,15.43692
parent: 2
type: Transform
- - uid: 21896
+ - uid: 21908
components:
- pos: 42.55435,33.392746
parent: 2
type: Transform
- proto: PlushieVox
entities:
- - uid: 21897
+ - uid: 21909
components:
- pos: 32.421734,-47.539772
parent: 2
type: Transform
- proto: PortableFlasher
entities:
- - uid: 21898
+ - uid: 21910
components:
- pos: 32.5,31.5
parent: 2
type: Transform
- proto: PortableGeneratorJrPacman
entities:
- - uid: 21899
+ - uid: 21911
components:
- pos: -30.5,-61.5
parent: 2
type: Transform
- - uid: 21900
+ - uid: 21912
components:
- pos: 15.5,-72.5
parent: 2
type: Transform
- - uid: 21901
+ - uid: 21913
components:
- pos: -54.5,-30.5
parent: 2
type: Transform
- - uid: 21902
+ - uid: 21914
components:
- pos: 30.5,44.5
parent: 2
type: Transform
- proto: PortableGeneratorPacman
entities:
- - uid: 21903
+ - uid: 21915
components:
- pos: -65.5,-51.5
parent: 2
type: Transform
- - uid: 21904
+ - uid: 21916
components:
- pos: 4.5,-22.5
parent: 2
type: Transform
- - uid: 21905
+ - uid: 21917
components:
- pos: 4.5,-23.5
parent: 2
type: Transform
- proto: PortableScrubber
entities:
- - uid: 21906
+ - uid: 21918
components:
- pos: -9.5,-68.5
parent: 2
type: Transform
- - uid: 21907
+ - uid: 21919
components:
- pos: -33.5,-43.5
parent: 2
type: Transform
- - uid: 21908
+ - uid: 21920
components:
- pos: -33.5,-44.5
parent: 2
type: Transform
- - uid: 21909
+ - uid: 21921
components:
- pos: -33.5,-45.5
parent: 2
type: Transform
- proto: PosterBroken
entities:
- - uid: 21910
+ - uid: 21922
components:
- pos: 0.5,-70.5
parent: 2
type: Transform
- proto: PosterContrabandAmbrosiaVulgaris
entities:
- - uid: 21911
+ - uid: 21923
components:
- pos: -10.5,-34.5
parent: 2
type: Transform
- proto: PosterContrabandAtmosiaDeclarationIndependence
entities:
- - uid: 21912
+ - uid: 21924
components:
- pos: -36.5,-52.5
parent: 2
type: Transform
- proto: PosterContrabandBeachStarYamamoto
entities:
- - uid: 21913
+ - uid: 21925
components:
- pos: -16.5,-81.5
parent: 2
type: Transform
- - uid: 21914
+ - uid: 21926
components:
- pos: -9.5,-31.5
parent: 2
type: Transform
- proto: PosterContrabandBorgFancy
entities:
- - uid: 21915
+ - uid: 21927
components:
- pos: 16.5,-4.5
parent: 2
type: Transform
- proto: PosterContrabandBountyHunters
entities:
- - uid: 21916
+ - uid: 21928
components:
- pos: 14.5,-56.5
parent: 2
type: Transform
- - uid: 21917
+ - uid: 21929
components:
- pos: -42.5,26.5
parent: 2
type: Transform
- proto: PosterContrabandCC64KAd
entities:
- - uid: 21918
+ - uid: 21930
components:
- pos: 20.5,-3.5
parent: 2
type: Transform
- proto: PosterContrabandClown
entities:
- - uid: 21919
+ - uid: 21931
components:
- rot: 1.5707963267948966 rad
pos: -23.5,39.5
parent: 2
type: Transform
- - uid: 21920
+ - uid: 21932
components:
- rot: -1.5707963267948966 rad
pos: 0.5,-24.5
parent: 2
type: Transform
- - uid: 21921
+ - uid: 21933
components:
- rot: -1.5707963267948966 rad
pos: -0.5,-18.5
@@ -144150,19 +144252,19 @@ entities:
type: Transform
- proto: PosterContrabandCommunistState
entities:
- - uid: 21922
+ - uid: 21934
components:
- pos: 0.5,-15.5
parent: 2
type: Transform
- - uid: 21923
+ - uid: 21935
components:
- pos: 53.5,-64.5
parent: 2
type: Transform
- proto: PosterContrabandCybersun600
entities:
- - uid: 21924
+ - uid: 21936
components:
- rot: 1.5707963267948966 rad
pos: -15.5,48.5
@@ -144170,28 +144272,28 @@ entities:
type: Transform
- proto: PosterContrabandDDayPromo
entities:
- - uid: 21925
+ - uid: 21937
components:
- pos: 14.5,33.5
parent: 2
type: Transform
- proto: PosterContrabandDonutCorp
entities:
- - uid: 21926
+ - uid: 21938
components:
- pos: 49.5,34.5
parent: 2
type: Transform
- proto: PosterContrabandEAT
entities:
- - uid: 21927
+ - uid: 21939
components:
- pos: 4.5,4.5
parent: 2
type: Transform
- proto: PosterContrabandEnlistGorlex
entities:
- - uid: 21928
+ - uid: 21940
components:
- rot: 1.5707963267948966 rad
pos: 53.5,54.5
@@ -144199,59 +144301,59 @@ entities:
type: Transform
- proto: PosterContrabandFreeSyndicateEncryptionKey
entities:
- - uid: 21929
+ - uid: 21941
components:
- pos: -53.5,-85.5
parent: 2
type: Transform
- proto: PosterContrabandFreeTonto
entities:
- - uid: 21930
+ - uid: 21942
components:
- pos: -6.5,-14.5
parent: 2
type: Transform
- proto: PosterContrabandFunPolice
entities:
- - uid: 21931
+ - uid: 21943
components:
- pos: 4.5,18.5
parent: 2
type: Transform
- proto: PosterContrabandGreyTide
entities:
- - uid: 21932
+ - uid: 21944
components:
- pos: 55.5,-9.5
parent: 2
type: Transform
- - uid: 21933
+ - uid: 21945
components:
- pos: 41.5,-57.5
parent: 2
type: Transform
- - uid: 21934
+ - uid: 21946
components:
- pos: -19.5,64.5
parent: 2
type: Transform
- proto: PosterContrabandHackingGuide
entities:
- - uid: 21935
+ - uid: 21947
components:
- pos: 15.5,40.5
parent: 2
type: Transform
- proto: PosterContrabandHighEffectEngineering
entities:
- - uid: 21936
+ - uid: 21948
components:
- pos: -48.5,-7.5
parent: 2
type: Transform
- proto: PosterContrabandInterdyne
entities:
- - uid: 21937
+ - uid: 21949
components:
- rot: -1.5707963267948966 rad
pos: 7.5,-44.5
@@ -144259,195 +144361,195 @@ entities:
type: Transform
- proto: PosterContrabandKosmicheskayaStantsiya
entities:
- - uid: 21938
+ - uid: 21950
components:
- pos: -25.5,-63.5
parent: 2
type: Transform
- proto: PosterContrabandLamarr
entities:
- - uid: 21939
+ - uid: 21951
components:
- pos: 10.5,35.5
parent: 2
type: Transform
- proto: PosterContrabandLustyExomorph
entities:
- - uid: 21940
+ - uid: 21952
components:
- pos: -9.5,-73.5
parent: 2
type: Transform
- - uid: 21941
+ - uid: 21953
components:
- pos: 45.5,50.5
parent: 2
type: Transform
- proto: PosterContrabandMaskedMen
entities:
- - uid: 21942
+ - uid: 21954
components:
- pos: 47.5,51.5
parent: 2
type: Transform
- proto: PosterContrabandMissingGloves
entities:
- - uid: 21943
+ - uid: 21955
components:
- pos: 20.5,19.5
parent: 2
type: Transform
- - uid: 21944
+ - uid: 21956
components:
- pos: 41.5,-52.5
parent: 2
type: Transform
- - uid: 21945
+ - uid: 21957
components:
- pos: -26.5,-18.5
parent: 2
type: Transform
- proto: PosterContrabandNuclearDeviceInformational
entities:
- - uid: 21946
+ - uid: 21958
components:
- pos: 39.5,-24.5
parent: 2
type: Transform
- proto: PosterContrabandPower
entities:
- - uid: 21947
+ - uid: 21959
components:
- pos: -61.5,-22.5
parent: 2
type: Transform
- - uid: 21948
+ - uid: 21960
components:
- pos: -23.5,-7.5
parent: 2
type: Transform
- proto: PosterContrabandRebelsUnite
entities:
- - uid: 21949
+ - uid: 21961
components:
- pos: -0.5,-72.5
parent: 2
type: Transform
- - uid: 21950
+ - uid: 21962
components:
- pos: -42.5,-73.5
parent: 2
type: Transform
- proto: PosterContrabandRedRum
entities:
- - uid: 21951
+ - uid: 21963
components:
- pos: 13.5,4.5
parent: 2
type: Transform
- - uid: 21952
+ - uid: 21964
components:
- pos: 11.5,15.5
parent: 2
type: Transform
- - uid: 21953
+ - uid: 21965
components:
- pos: 35.5,49.5
parent: 2
type: Transform
- proto: PosterContrabandRevolt
entities:
- - uid: 21954
+ - uid: 21966
components:
- pos: -40.5,-73.5
parent: 2
type: Transform
- - uid: 21955
+ - uid: 21967
components:
- pos: -7.5,-73.5
parent: 2
type: Transform
- - uid: 21956
+ - uid: 21968
components:
- pos: 57.5,55.5
parent: 2
type: Transform
- - uid: 21957
+ - uid: 21969
components:
- pos: 51.5,55.5
parent: 2
type: Transform
- - uid: 21958
+ - uid: 21970
components:
- pos: 56.5,60.5
parent: 2
type: Transform
- - uid: 21959
+ - uid: 21971
components:
- pos: 52.5,60.5
parent: 2
type: Transform
- - uid: 21960
+ - uid: 21972
components:
- pos: 51.5,59.5
parent: 2
type: Transform
- - uid: 21961
+ - uid: 21973
components:
- pos: 57.5,59.5
parent: 2
type: Transform
- proto: PosterContrabandRevolver
entities:
- - uid: 21962
+ - uid: 21974
components:
- pos: -30.5,-42.5
parent: 2
type: Transform
- - uid: 21963
+ - uid: 21975
components:
- pos: 42.5,49.5
parent: 2
type: Transform
- proto: PosterContrabandRIPBadger
entities:
- - uid: 21964
+ - uid: 21976
components:
- pos: -41.5,-27.5
parent: 2
type: Transform
- proto: PosterContrabandRise
entities:
- - uid: 21965
+ - uid: 21977
components:
- pos: 63.5,10.5
parent: 2
type: Transform
- - uid: 21966
+ - uid: 21978
components:
- pos: -28.5,-50.5
parent: 2
type: Transform
- - uid: 21967
+ - uid: 21979
components:
- pos: -40.5,-69.5
parent: 2
type: Transform
- - uid: 21968
+ - uid: 21980
components:
- pos: 57.5,53.5
parent: 2
type: Transform
- proto: PosterContrabandRobustSoftdrinks
entities:
- - uid: 21969
+ - uid: 21981
components:
- pos: -6.5,-31.5
parent: 2
type: Transform
- proto: PosterContrabandShamblersJuice
entities:
- - uid: 21970
+ - uid: 21982
components:
- name: changs
type: MetaData
@@ -144457,274 +144559,274 @@ entities:
type: Transform
- proto: PosterContrabandSmoke
entities:
- - uid: 21971
+ - uid: 21983
components:
- pos: -6.5,-51.5
parent: 2
type: Transform
- proto: PosterContrabandSyndicatePistol
entities:
- - uid: 21972
+ - uid: 21984
components:
- pos: -46.5,-71.5
parent: 2
type: Transform
- proto: PosterContrabandSyndicateRecruitment
entities:
- - uid: 21973
+ - uid: 21985
components:
- pos: -44.5,-74.5
parent: 2
type: Transform
- - uid: 21974
+ - uid: 21986
components:
- pos: 30.5,48.5
parent: 2
type: Transform
- proto: PosterContrabandTheGriffin
entities:
- - uid: 21975
+ - uid: 21987
components:
- pos: -43.5,-73.5
parent: 2
type: Transform
- proto: PosterContrabandTools
entities:
- - uid: 21976
+ - uid: 21988
components:
- pos: -54.5,-69.5
parent: 2
type: Transform
- - uid: 21977
+ - uid: 21989
components:
- pos: -22.5,-19.5
parent: 2
type: Transform
- proto: PosterContrabandVoteWeh
entities:
- - uid: 21978
+ - uid: 21990
components:
- pos: -46.5,-65.5
parent: 2
type: Transform
- - uid: 21979
+ - uid: 21991
components:
- pos: 59.5,41.5
parent: 2
type: Transform
- proto: PosterContrabandWehWatches
entities:
- - uid: 21980
+ - uid: 21992
components:
- pos: 55.5,-4.5
parent: 2
type: Transform
- proto: PosterLegit12Gauge
entities:
- - uid: 21981
+ - uid: 21993
components:
- pos: 31.5,23.5
parent: 2
type: Transform
- proto: PosterLegit50thAnniversaryVintageReprint
entities:
- - uid: 21982
+ - uid: 21994
components:
- pos: 44.5,-34.5
parent: 2
type: Transform
- proto: PosterLegitAnatomyPoster
entities:
- - uid: 21983
+ - uid: 21995
components:
- pos: -4.5,-63.5
parent: 2
type: Transform
- proto: PosterLegitBlessThisSpess
entities:
- - uid: 21984
+ - uid: 21996
components:
- pos: 61.5,-4.5
parent: 2
type: Transform
- proto: PosterLegitBuild
entities:
- - uid: 21985
+ - uid: 21997
components:
- pos: -34.5,-4.5
parent: 2
type: Transform
- proto: PosterLegitCarbonDioxide
entities:
- - uid: 21986
+ - uid: 21998
components:
- pos: 46.5,-55.5
parent: 2
type: Transform
- proto: PosterLegitCarpMount
entities:
- - uid: 21987
+ - uid: 21999
components:
- pos: 24.5,-26.5
parent: 2
type: Transform
- proto: PosterLegitCleanliness
entities:
- - uid: 21988
+ - uid: 22000
components:
- pos: -10.5,-24.5
parent: 2
type: Transform
- - uid: 21989
+ - uid: 22001
components:
- pos: 1.5,-58.5
parent: 2
type: Transform
- proto: PosterLegitCohibaRobustoAd
entities:
- - uid: 21990
+ - uid: 22002
components:
- pos: 13.5,-30.5
parent: 2
type: Transform
- - uid: 21991
+ - uid: 22003
components:
- pos: 57.5,-9.5
parent: 2
type: Transform
- proto: PosterLegitDickGumshue
entities:
- - uid: 21992
+ - uid: 22004
components:
- pos: 17.5,-15.5
parent: 2
type: Transform
- proto: PosterLegitDoNotQuestion
entities:
- - uid: 21993
+ - uid: 22005
components:
- pos: 23.5,19.5
parent: 2
type: Transform
- - uid: 21994
+ - uid: 22006
components:
- pos: -17.5,-21.5
parent: 2
type: Transform
- proto: PosterLegitEnlist
entities:
- - uid: 21995
+ - uid: 22007
components:
- pos: -17.5,-31.5
parent: 2
type: Transform
- - uid: 21996
+ - uid: 22008
components:
- pos: 59.5,-9.5
parent: 2
type: Transform
- - uid: 21997
+ - uid: 22009
components:
- pos: -13.5,27.5
parent: 2
type: Transform
- proto: PosterLegitFoamForceAd
entities:
- - uid: 21998
+ - uid: 22010
components:
- pos: 1.5,-39.5
parent: 2
type: Transform
- proto: PosterLegitFruitBowl
entities:
- - uid: 21999
+ - uid: 22011
components:
- pos: -4.5,9.5
parent: 2
type: Transform
- - uid: 22000
+ - uid: 22012
components:
- pos: -22.5,49.5
parent: 2
type: Transform
- proto: PosterLegitGetYourLEGS
entities:
- - uid: 22001
+ - uid: 22013
components:
- pos: -16.5,64.5
parent: 2
type: Transform
- proto: PosterLegitHelpOthers
entities:
- - uid: 22002
+ - uid: 22014
components:
- pos: -7.5,-40.5
parent: 2
type: Transform
- proto: PosterLegitHereForYourSafety
entities:
- - uid: 22003
+ - uid: 22015
components:
- pos: 28.5,9.5
parent: 2
type: Transform
- proto: PosterLegitHighClassMartini
entities:
- - uid: 22004
+ - uid: 22016
components:
- pos: 8.5,11.5
parent: 2
type: Transform
- - uid: 22005
+ - uid: 22017
components:
- pos: -39.5,-74.5
parent: 2
type: Transform
- proto: PosterLegitIan
entities:
- - uid: 22006
+ - uid: 22018
components:
- rot: 3.141592653589793 rad
pos: 5.5,-2.5
parent: 2
type: Transform
- - uid: 22007
+ - uid: 22019
components:
- pos: 21.5,-40.5
parent: 2
type: Transform
- proto: PosterLegitIonRifle
entities:
- - uid: 22008
+ - uid: 22020
components:
- pos: 27.5,33.5
parent: 2
type: Transform
- proto: PosterLegitJustAWeekAway
entities:
- - uid: 22009
+ - uid: 22021
components:
- pos: 27.5,-33.5
parent: 2
type: Transform
- - uid: 22010
+ - uid: 22022
components:
- pos: -37.5,-31.5
parent: 2
type: Transform
- - uid: 22011
+ - uid: 22023
components:
- pos: 30.5,-35.5
parent: 2
type: Transform
- proto: PosterLegitLoveIan
entities:
- - uid: 22012
+ - uid: 22024
components:
- pos: 21.5,-33.5
parent: 2
type: Transform
- - uid: 22013
+ - uid: 22025
components:
- rot: 3.141592653589793 rad
pos: 0.5,-2.5
@@ -144732,7 +144834,7 @@ entities:
type: Transform
- proto: PosterLegitMime
entities:
- - uid: 22014
+ - uid: 22026
components:
- rot: 1.5707963267948966 rad
pos: -27.5,47.5
@@ -144740,37 +144842,37 @@ entities:
type: Transform
- proto: PosterLegitNanomichiAd
entities:
- - uid: 22015
+ - uid: 22027
components:
- pos: -21.5,-27.5
parent: 2
type: Transform
- proto: PosterLegitNanotrasenLogo
entities:
- - uid: 22016
+ - uid: 22028
components:
- pos: 28.5,-31.5
parent: 2
type: Transform
- - uid: 22017
+ - uid: 22029
components:
- pos: 25.5,-33.5
parent: 2
type: Transform
- proto: PosterLegitNoERP
entities:
- - uid: 22018
+ - uid: 22030
components:
- pos: 40.5,49.5
parent: 2
type: Transform
- - uid: 22019
+ - uid: 22031
components:
- rot: 3.141592653589793 rad
pos: -15.5,-36.5
parent: 2
type: Transform
- - uid: 22020
+ - uid: 22032
components:
- rot: 3.141592653589793 rad
pos: -47.5,9.5
@@ -144778,52 +144880,52 @@ entities:
type: Transform
- proto: PosterLegitObey
entities:
- - uid: 22021
+ - uid: 22033
components:
- pos: 31.5,-3.5
parent: 2
type: Transform
- proto: PosterLegitPDAAd
entities:
- - uid: 22022
+ - uid: 22034
components:
- pos: 29.5,-40.5
parent: 2
type: Transform
- proto: PosterLegitReportCrimes
entities:
- - uid: 22023
+ - uid: 22035
components:
- pos: 18.5,-15.5
parent: 2
type: Transform
- - uid: 22024
+ - uid: 22036
components:
- pos: 30.5,-46.5
parent: 2
type: Transform
- proto: PosterLegitSafetyEyeProtection
entities:
- - uid: 22025
+ - uid: 22037
components:
- pos: -33.5,-31.5
parent: 2
type: Transform
- proto: PosterLegitSafetyInternals
entities:
- - uid: 22026
+ - uid: 22038
components:
- pos: -39.5,-31.5
parent: 2
type: Transform
- - uid: 22027
+ - uid: 22039
components:
- pos: 24.5,-54.5
parent: 2
type: Transform
- proto: PosterLegitSafetyMothHardhat
entities:
- - uid: 22028
+ - uid: 22040
components:
- rot: 1.5707963267948966 rad
pos: -28.5,-15.5
@@ -144831,17 +144933,17 @@ entities:
type: Transform
- proto: PosterLegitSecWatch
entities:
- - uid: 22029
+ - uid: 22041
components:
- pos: 10.5,15.5
parent: 2
type: Transform
- - uid: 22030
+ - uid: 22042
components:
- pos: 18.5,-9.5
parent: 2
type: Transform
- - uid: 22031
+ - uid: 22043
components:
- rot: 3.141592653589793 rad
pos: -18.5,-44.5
@@ -144849,19 +144951,19 @@ entities:
type: Transform
- proto: PosterLegitStateLaws
entities:
- - uid: 22032
+ - uid: 22044
components:
- pos: 37.5,-32.5
parent: 2
type: Transform
- - uid: 22033
+ - uid: 22045
components:
- pos: -17.5,27.5
parent: 2
type: Transform
- proto: PosterLegitThereIsNoGasGiant
entities:
- - uid: 22034
+ - uid: 22046
components:
- rot: -1.5707963267948966 rad
pos: -41.5,-40.5
@@ -144869,7 +144971,7 @@ entities:
type: Transform
- proto: PosterLegitVacation
entities:
- - uid: 22035
+ - uid: 22047
components:
- rot: 1.5707963267948966 rad
pos: 47.5,-70.5
@@ -144877,347 +144979,341 @@ entities:
type: Transform
- proto: PosterLegitWalk
entities:
- - uid: 22036
+ - uid: 22048
components:
- pos: -7.5,-28.5
parent: 2
type: Transform
- proto: PottedPlant1
entities:
- - uid: 22037
+ - uid: 22049
components:
- pos: -2.5,-40.5
parent: 2
type: Transform
- proto: PottedPlant14
entities:
- - uid: 22038
+ - uid: 22050
components:
- pos: 36.5,-16.5
parent: 2
type: Transform
- proto: PottedPlant24
entities:
- - uid: 22039
+ - uid: 22051
components:
- pos: -6.5,-40.5
parent: 2
type: Transform
- proto: PottedPlant26
entities:
- - uid: 22040
+ - uid: 22052
components:
- pos: 6.5,-52.5
parent: 2
type: Transform
- proto: PottedPlant27
entities:
- - uid: 22041
+ - uid: 22053
components:
- pos: 46.5,31.5
parent: 2
type: Transform
- - uid: 22042
+ - uid: 22054
components:
- pos: -43.5,-87.5
parent: 2
type: Transform
- proto: PottedPlant28
entities:
- - uid: 22043
+ - uid: 22055
components:
- pos: 46.5,30.5
parent: 2
type: Transform
- - uid: 22044
+ - uid: 22056
components:
- pos: -54.5,-47.5
parent: 2
type: Transform
- proto: PottedPlant29
entities:
- - uid: 22045
+ - uid: 22057
components:
- pos: 46.5,29.5
parent: 2
type: Transform
- - uid: 22046
+ - uid: 22058
components:
- pos: -54.5,-50.5
parent: 2
type: Transform
- - uid: 22047
+ - uid: 22059
components:
- pos: -40.5,-87.5
parent: 2
type: Transform
- proto: PottedPlant3
entities:
- - uid: 22048
+ - uid: 22060
components:
- pos: 14.5,-16.5
parent: 2
type: Transform
- - uid: 22049
+ - uid: 22061
components:
- pos: 54.5,-1.5
parent: 2
type: Transform
- proto: PottedPlant5
entities:
- - uid: 22050
+ - uid: 22062
components:
- pos: -26.5,8.5
parent: 2
type: Transform
- - uid: 22051
+ - uid: 22063
components:
- pos: 50.5,-1.5
parent: 2
type: Transform
- proto: PottedPlant8
entities:
- - uid: 22052
+ - uid: 22064
components:
- pos: -22.5,8.5
parent: 2
type: Transform
- proto: PottedPlantBioluminscent
entities:
- - uid: 22053
+ - uid: 22065
components:
- pos: -27.5,17.5
parent: 2
type: Transform
- proto: PottedPlantRandom
entities:
- - uid: 22054
+ - uid: 22066
components:
- pos: 20.5,18.5
parent: 2
type: Transform
- - uid: 22055
+ - uid: 22067
components:
- pos: 1.5,-40.5
parent: 2
type: Transform
- - uid: 22056
+ - uid: 22068
components:
- pos: 24.5,-81.5
parent: 2
type: Transform
- - uid: 22057
+ - uid: 22069
components:
- pos: -44.5,8.5
parent: 2
type: Transform
- - uid: 22058
+ - uid: 22070
components:
- pos: -49.5,8.5
parent: 2
type: Transform
- - uid: 22059
+ - uid: 22071
components:
- pos: 23.5,-43.5
parent: 2
type: Transform
- - uid: 22060
+ - uid: 22072
components:
- pos: 27.5,-43.5
parent: 2
type: Transform
- - uid: 22061
+ - uid: 22073
components:
- pos: -23.5,-73.5
parent: 2
type: Transform
- - uid: 22062
+ - uid: 22074
components:
- pos: -49.5,12.5
parent: 2
type: Transform
- - uid: 22063
+ - uid: 22075
components:
- pos: -19.5,-73.5
parent: 2
type: Transform
- - uid: 22064
+ - uid: 22076
components:
- pos: -2.5,46.5
parent: 2
type: Transform
- - uid: 22065
+ - uid: 22077
components:
- pos: -14.5,42.5
parent: 2
type: Transform
- - uid: 22066
+ - uid: 22078
components:
- pos: -6.5,46.5
parent: 2
type: Transform
- - uid: 22067
+ - uid: 22079
components:
- pos: 24.5,-85.5
parent: 2
type: Transform
- - uid: 22068
+ - uid: 22080
components:
- pos: 25.5,-74.5
parent: 2
type: Transform
- - uid: 22069
+ - uid: 22081
components:
- pos: -20.5,-66.5
parent: 2
type: Transform
- - uid: 22070
+ - uid: 22082
components:
- pos: -18.5,-66.5
parent: 2
type: Transform
- proto: PottedPlantRandomPlastic
entities:
- - uid: 22071
+ - uid: 22083
components:
- pos: -6.5,-45.5
parent: 2
type: Transform
- - uid: 22072
+ - uid: 22084
components:
- pos: -55.5,-58.5
parent: 2
type: Transform
- - uid: 22073
+ - uid: 22085
components:
- pos: 54.5,31.5
parent: 2
type: Transform
- - uid: 22074
+ - uid: 22086
components:
- pos: -12.5,-96.5
parent: 2
type: Transform
- - uid: 22075
+ - uid: 22087
components:
- pos: -57.5,-60.5
parent: 2
type: Transform
- proto: PowerCellRecharger
entities:
- - uid: 22076
+ - uid: 22088
components:
- pos: -10.5,-61.5
parent: 2
type: Transform
- - uid: 22077
+ - uid: 22089
components:
- pos: -11.5,-61.5
parent: 2
type: Transform
- - uid: 22078
+ - uid: 22090
components:
- pos: -26.5,-20.5
parent: 2
type: Transform
- - uid: 22079
+ - uid: 22091
components:
- pos: 8.5,14.5
parent: 2
type: Transform
- - uid: 22080
+ - uid: 22092
components:
- pos: -23.5,-8.5
parent: 2
type: Transform
- - uid: 22081
+ - uid: 22093
components:
- pos: -35.5,-13.5
parent: 2
type: Transform
- - uid: 22082
+ - uid: 22094
components:
- pos: -32.5,17.5
parent: 2
type: Transform
- - uid: 22083
+ - uid: 22095
components:
- pos: -22.5,-33.5
parent: 2
type: Transform
- - uid: 22084
+ - uid: 22096
components:
- pos: 38.5,-55.5
parent: 2
type: Transform
- - uid: 22085
+ - uid: 22097
components:
- pos: -22.5,17.5
parent: 2
type: Transform
- - uid: 22086
+ - uid: 22098
components:
- pos: 43.5,-40.5
parent: 2
type: Transform
- proto: PowerDrill
entities:
- - uid: 22087
+ - uid: 22099
components:
- pos: 62.617344,-53.460384
parent: 2
type: Transform
- - uid: 22088
+ - uid: 22100
components:
- pos: -52.61403,65.565544
parent: 2
type: Transform
- proto: Poweredlight
entities:
- - uid: 22089
+ - uid: 22101
components:
- rot: 1.5707963267948966 rad
pos: 20.5,-28.5
parent: 2
type: Transform
- - uid: 22090
+ - uid: 22102
components:
- rot: -1.5707963267948966 rad
pos: 5.5,-5.5
parent: 2
type: Transform
- links:
- - 24193
+ - 24214
type: DeviceLinkSink
- - uid: 22091
- components:
- - rot: 3.141592653589793 rad
- pos: -35.5,-18.5
- parent: 2
- type: Transform
- - uid: 22092
+ - uid: 22103
components:
- pos: 62.5,-28.5
parent: 2
type: Transform
- - uid: 22093
+ - uid: 22104
components:
- rot: 3.141592653589793 rad
pos: -61.5,-37.5
parent: 2
type: Transform
- - uid: 22094
+ - uid: 22105
components:
- pos: -44.5,-8.5
parent: 2
type: Transform
- - uid: 22095
+ - uid: 22106
components:
- rot: 3.141592653589793 rad
pos: -5.5,14.5
parent: 2
type: Transform
- - uid: 22096
+ - uid: 22107
components:
- rot: -1.5707963267948966 rad
pos: -22.5,-77.5
@@ -145225,7 +145321,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22097
+ - uid: 22108
components:
- rot: 1.5707963267948966 rad
pos: -42.5,-9.5
@@ -145233,7 +145329,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22098
+ - uid: 22109
components:
- rot: -1.5707963267948966 rad
pos: 48.5,-29.5
@@ -145241,7 +145337,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22099
+ - uid: 22110
components:
- rot: -1.5707963267948966 rad
pos: 14.5,8.5
@@ -145249,7 +145345,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22100
+ - uid: 22111
components:
- rot: 3.141592653589793 rad
pos: -10.5,-1.5
@@ -145257,7 +145353,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22101
+ - uid: 22112
components:
- rot: 3.141592653589793 rad
pos: -2.5,-1.5
@@ -145265,14 +145361,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22102
+ - uid: 22113
components:
- pos: 4.5,-59.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22103
+ - uid: 22114
components:
- rot: 1.5707963267948966 rad
pos: -5.5,-31.5
@@ -145280,7 +145376,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22104
+ - uid: 22115
components:
- rot: -1.5707963267948966 rad
pos: 16.5,-22.5
@@ -145288,21 +145384,21 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22105
+ - uid: 22116
components:
- pos: 30.5,-47.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22106
+ - uid: 22117
components:
- pos: 40.5,-25.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22107
+ - uid: 22118
components:
- rot: 1.5707963267948966 rad
pos: 44.5,-23.5
@@ -145310,7 +145406,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22108
+ - uid: 22119
components:
- rot: 3.141592653589793 rad
pos: -10.5,-61.5
@@ -145318,7 +145414,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22109
+ - uid: 22120
components:
- rot: 3.141592653589793 rad
pos: -4.5,-61.5
@@ -145326,7 +145422,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22110
+ - uid: 22121
components:
- rot: 1.5707963267948966 rad
pos: -20.5,-77.5
@@ -145334,7 +145430,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22111
+ - uid: 22122
components:
- rot: 3.141592653589793 rad
pos: -9.5,-27.5
@@ -145342,7 +145438,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22112
+ - uid: 22123
components:
- rot: 3.141592653589793 rad
pos: 12.5,-27.5
@@ -145350,21 +145446,21 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22113
+ - uid: 22124
components:
- pos: 21.5,-41.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22114
+ - uid: 22125
components:
- pos: 29.5,-45.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22115
+ - uid: 22126
components:
- rot: -1.5707963267948966 rad
pos: 42.5,8.5
@@ -145372,7 +145468,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22116
+ - uid: 22127
components:
- rot: 3.141592653589793 rad
pos: 24.5,-2.5
@@ -145380,14 +145476,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22117
+ - uid: 22128
components:
- pos: 33.5,-45.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22118
+ - uid: 22129
components:
- rot: 3.141592653589793 rad
pos: 2.5,-43.5
@@ -145395,15 +145491,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22119
- components:
- - rot: -1.5707963267948966 rad
- pos: 7.5,-46.5
- parent: 2
- type: Transform
- - powerLoad: 0
- type: ApcPowerReceiver
- - uid: 22120
+ - uid: 22130
components:
- rot: -1.5707963267948966 rad
pos: -27.5,-70.5
@@ -145411,7 +145499,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22121
+ - uid: 22131
components:
- rot: -1.5707963267948966 rad
pos: 30.5,0.5
@@ -145419,14 +145507,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22122
+ - uid: 22132
components:
- pos: -23.5,-8.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22123
+ - uid: 22133
components:
- rot: -1.5707963267948966 rad
pos: 10.5,-60.5
@@ -145434,7 +145522,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22124
+ - uid: 22134
components:
- rot: 1.5707963267948966 rad
pos: -5.5,-35.5
@@ -145442,7 +145530,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22125
+ - uid: 22135
components:
- rot: 3.141592653589793 rad
pos: -8.5,44.5
@@ -145450,7 +145538,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22126
+ - uid: 22136
components:
- rot: -1.5707963267948966 rad
pos: -0.5,62.5
@@ -145458,14 +145546,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22127
+ - uid: 22137
components:
- pos: 4.5,3.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22128
+ - uid: 22138
components:
- rot: 1.5707963267948966 rad
pos: 44.5,-28.5
@@ -145473,7 +145561,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22129
+ - uid: 22139
components:
- rot: -1.5707963267948966 rad
pos: 42.5,-25.5
@@ -145481,7 +145569,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22130
+ - uid: 22140
components:
- rot: -1.5707963267948966 rad
pos: 32.5,-29.5
@@ -145489,7 +145577,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22131
+ - uid: 22141
components:
- rot: 1.5707963267948966 rad
pos: 8.5,-9.5
@@ -145497,28 +145585,28 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22132
+ - uid: 22142
components:
- pos: -21.5,-84.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22133
+ - uid: 22143
components:
- pos: 12.5,3.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22134
+ - uid: 22144
components:
- pos: 29.5,-41.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22135
+ - uid: 22145
components:
- rot: -1.5707963267948966 rad
pos: -18.5,-9.5
@@ -145526,14 +145614,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22136
+ - uid: 22146
components:
- pos: 4.5,-56.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22137
+ - uid: 22147
components:
- rot: -1.5707963267948966 rad
pos: 34.5,3.5
@@ -145543,7 +145631,7 @@ entities:
type: PointLight
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22138
+ - uid: 22148
components:
- rot: 1.5707963267948966 rad
pos: -35.5,-50.5
@@ -145551,7 +145639,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22139
+ - uid: 22149
components:
- rot: -1.5707963267948966 rad
pos: 65.5,-2.5
@@ -145559,14 +145647,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22140
+ - uid: 22150
components:
- pos: 27.5,-16.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22141
+ - uid: 22151
components:
- rot: 1.5707963267948966 rad
pos: -3.5,-65.5
@@ -145574,7 +145662,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22142
+ - uid: 22152
components:
- rot: 1.5707963267948966 rad
pos: -9.5,-64.5
@@ -145582,7 +145670,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22143
+ - uid: 22153
components:
- rot: -1.5707963267948966 rad
pos: 0.5,-45.5
@@ -145590,7 +145678,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22144
+ - uid: 22154
components:
- rot: 1.5707963267948966 rad
pos: -9.5,-48.5
@@ -145598,14 +145686,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22145
+ - uid: 22155
components:
- pos: -23.5,-69.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22146
+ - uid: 22156
components:
- rot: 3.141592653589793 rad
pos: -22.5,-73.5
@@ -145613,14 +145701,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22147
+ - uid: 22157
components:
- pos: 16.5,-16.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22148
+ - uid: 22158
components:
- rot: 1.5707963267948966 rad
pos: -5.5,-11.5
@@ -145628,7 +145716,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22149
+ - uid: 22159
components:
- rot: -1.5707963267948966 rad
pos: 48.5,-22.5
@@ -145636,14 +145724,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22150
+ - uid: 22160
components:
- pos: 24.5,4.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22151
+ - uid: 22161
components:
- rot: 1.5707963267948966 rad
pos: 10.5,11.5
@@ -145651,14 +145739,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22152
+ - uid: 22162
components:
- pos: 16.5,14.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22153
+ - uid: 22163
components:
- rot: 1.5707963267948966 rad
pos: -12.5,-37.5
@@ -145666,14 +145754,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22154
+ - uid: 22164
components:
- pos: -8.5,-35.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22155
+ - uid: 22165
components:
- rot: 1.5707963267948966 rad
pos: -10.5,8.5
@@ -145681,14 +145769,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22156
+ - uid: 22166
components:
- pos: 6.5,22.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22157
+ - uid: 22167
components:
- rot: 1.5707963267948966 rad
pos: 24.5,-47.5
@@ -145696,14 +145784,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22158
+ - uid: 22168
components:
- pos: 13.5,17.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22159
+ - uid: 22169
components:
- rot: 1.5707963267948966 rad
pos: 14.5,21.5
@@ -145711,14 +145799,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22160
+ - uid: 22170
components:
- pos: 44.5,8.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22161
+ - uid: 22171
components:
- rot: 3.141592653589793 rad
pos: 47.5,4.5
@@ -145726,21 +145814,21 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22162
+ - uid: 22172
components:
- pos: 44.5,2.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22163
+ - uid: 22173
components:
- pos: -4.5,3.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22164
+ - uid: 22174
components:
- rot: -1.5707963267948966 rad
pos: -3.5,-6.5
@@ -145748,7 +145836,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22165
+ - uid: 22175
components:
- rot: 3.141592653589793 rad
pos: -2.5,-27.5
@@ -145756,7 +145844,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22166
+ - uid: 22176
components:
- rot: 1.5707963267948966 rad
pos: -5.5,-18.5
@@ -145764,14 +145852,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22167
+ - uid: 22177
components:
- pos: -9.5,-21.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22168
+ - uid: 22178
components:
- rot: 1.5707963267948966 rad
pos: -13.5,-22.5
@@ -145779,7 +145867,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22169
+ - uid: 22179
components:
- rot: -1.5707963267948966 rad
pos: 39.5,-2.5
@@ -145787,7 +145875,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22170
+ - uid: 22180
components:
- rot: 3.141592653589793 rad
pos: 36.5,-6.5
@@ -145795,7 +145883,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22171
+ - uid: 22181
components:
- rot: 1.5707963267948966 rad
pos: 26.5,31.5
@@ -145803,7 +145891,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22172
+ - uid: 22182
components:
- rot: 3.141592653589793 rad
pos: 29.5,27.5
@@ -145811,7 +145899,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22173
+ - uid: 22183
components:
- rot: -1.5707963267948966 rad
pos: 30.5,20.5
@@ -145819,7 +145907,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22174
+ - uid: 22184
components:
- rot: 1.5707963267948966 rad
pos: 28.5,14.5
@@ -145827,35 +145915,35 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22175
+ - uid: 22185
components:
- pos: 33.5,16.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22176
+ - uid: 22186
components:
- pos: 39.5,16.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22177
+ - uid: 22187
components:
- pos: 55.5,9.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22178
+ - uid: 22188
components:
- pos: 51.5,9.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22179
+ - uid: 22189
components:
- rot: 3.141592653589793 rad
pos: 55.5,15.5
@@ -145863,7 +145951,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22180
+ - uid: 22190
components:
- rot: 3.141592653589793 rad
pos: 51.5,15.5
@@ -145871,7 +145959,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22181
+ - uid: 22191
components:
- rot: 3.141592653589793 rad
pos: 48.5,12.5
@@ -145879,7 +145967,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22182
+ - uid: 22192
components:
- rot: 3.141592653589793 rad
pos: 58.5,12.5
@@ -145887,7 +145975,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22183
+ - uid: 22193
components:
- rot: -1.5707963267948966 rad
pos: 59.5,20.5
@@ -145895,7 +145983,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22184
+ - uid: 22194
components:
- rot: 3.141592653589793 rad
pos: 59.5,4.5
@@ -145903,7 +145991,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22185
+ - uid: 22195
components:
- rot: 3.141592653589793 rad
pos: 48.5,18.5
@@ -145911,7 +145999,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22186
+ - uid: 22196
components:
- rot: 1.5707963267948966 rad
pos: 32.5,-3.5
@@ -145919,7 +146007,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22187
+ - uid: 22197
components:
- rot: 3.141592653589793 rad
pos: 24.5,6.5
@@ -145927,7 +146015,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22188
+ - uid: 22198
components:
- rot: 3.141592653589793 rad
pos: 29.5,6.5
@@ -145935,7 +146023,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22189
+ - uid: 22199
components:
- rot: 1.5707963267948966 rad
pos: 24.5,-13.5
@@ -145943,7 +146031,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22190
+ - uid: 22200
components:
- rot: 3.141592653589793 rad
pos: 21.5,-6.5
@@ -145951,7 +146039,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22191
+ - uid: 22201
components:
- rot: -1.5707963267948966 rad
pos: 26.5,-9.5
@@ -145959,7 +146047,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22192
+ - uid: 22202
components:
- rot: 3.141592653589793 rad
pos: 57.5,-6.5
@@ -145967,14 +146055,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22193
+ - uid: 22203
components:
- pos: 57.5,-10.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22194
+ - uid: 22204
components:
- rot: -1.5707963267948966 rad
pos: 54.5,-8.5
@@ -145982,7 +146070,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22195
+ - uid: 22205
components:
- rot: 1.5707963267948966 rad
pos: 59.5,-1.5
@@ -145990,7 +146078,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22196
+ - uid: 22206
components:
- rot: 3.141592653589793 rad
pos: 57.5,-14.5
@@ -145998,7 +146086,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22197
+ - uid: 22207
components:
- rot: 3.141592653589793 rad
pos: 33.5,-60.5
@@ -146006,7 +146094,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22198
+ - uid: 22208
components:
- rot: 3.141592653589793 rad
pos: 45.5,-43.5
@@ -146014,14 +146102,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22199
+ - uid: 22209
components:
- pos: 72.5,-43.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22200
+ - uid: 22210
components:
- rot: 3.141592653589793 rad
pos: 67.5,-49.5
@@ -146029,7 +146117,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22201
+ - uid: 22211
components:
- rot: 3.141592653589793 rad
pos: 60.5,-49.5
@@ -146037,13 +146125,13 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22202
+ - uid: 22212
components:
- rot: 3.141592653589793 rad
pos: 57.5,-45.5
parent: 2
type: Transform
- - uid: 22203
+ - uid: 22213
components:
- rot: 1.5707963267948966 rad
pos: 48.5,-38.5
@@ -146051,7 +146139,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22204
+ - uid: 22214
components:
- rot: 1.5707963267948966 rad
pos: 48.5,-47.5
@@ -146059,21 +146147,21 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22205
+ - uid: 22215
components:
- pos: 39.5,-35.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22206
+ - uid: 22216
components:
- pos: 44.5,-35.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22207
+ - uid: 22217
components:
- rot: 3.141592653589793 rad
pos: 10.5,-43.5
@@ -146081,7 +146169,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22208
+ - uid: 22218
components:
- rot: 3.141592653589793 rad
pos: 35.5,-43.5
@@ -146089,7 +146177,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22209
+ - uid: 22219
components:
- rot: 3.141592653589793 rad
pos: 28.5,-6.5
@@ -146097,7 +146185,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22210
+ - uid: 22220
components:
- rot: 3.141592653589793 rad
pos: 16.5,-43.5
@@ -146105,21 +146193,21 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22211
+ - uid: 22221
components:
- pos: 33.5,-39.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22212
+ - uid: 22222
components:
- pos: 45.5,-45.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22213
+ - uid: 22223
components:
- rot: 3.141592653589793 rad
pos: 42.5,-49.5
@@ -146127,7 +146215,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22214
+ - uid: 22224
components:
- rot: 3.141592653589793 rad
pos: 65.5,-35.5
@@ -146135,7 +146223,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22215
+ - uid: 22225
components:
- rot: -1.5707963267948966 rad
pos: 64.5,-53.5
@@ -146143,14 +146231,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22216
+ - uid: 22226
components:
- pos: 32.5,-47.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22217
+ - uid: 22227
components:
- rot: -1.5707963267948966 rad
pos: 34.5,-51.5
@@ -146158,7 +146246,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22218
+ - uid: 22228
components:
- rot: 1.5707963267948966 rad
pos: 28.5,-50.5
@@ -146166,7 +146254,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22219
+ - uid: 22229
components:
- rot: -1.5707963267948966 rad
pos: 34.5,-55.5
@@ -146174,7 +146262,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22220
+ - uid: 22230
components:
- rot: 1.5707963267948966 rad
pos: 28.5,-56.5
@@ -146182,7 +146270,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22221
+ - uid: 22231
components:
- rot: 1.5707963267948966 rad
pos: 24.5,-52.5
@@ -146190,7 +146278,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22222
+ - uid: 22232
components:
- rot: -1.5707963267948966 rad
pos: 26.5,-56.5
@@ -146198,21 +146286,21 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22223
+ - uid: 22233
components:
- pos: 28.5,-58.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22224
+ - uid: 22234
components:
- pos: -15.5,-41.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22225
+ - uid: 22235
components:
- rot: 3.141592653589793 rad
pos: 37.5,-60.5
@@ -146220,13 +146308,13 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22226
+ - uid: 22236
components:
- rot: 3.141592653589793 rad
pos: -27.5,-17.5
parent: 2
type: Transform
- - uid: 22227
+ - uid: 22237
components:
- rot: -1.5707963267948966 rad
pos: 16.5,-31.5
@@ -146234,7 +146322,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22228
+ - uid: 22238
components:
- rot: 1.5707963267948966 rad
pos: -20.5,-15.5
@@ -146242,7 +146330,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22229
+ - uid: 22239
components:
- rot: 1.5707963267948966 rad
pos: -20.5,-19.5
@@ -146250,7 +146338,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22230
+ - uid: 22240
components:
- rot: 1.5707963267948966 rad
pos: -26.5,-21.5
@@ -146258,14 +146346,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22231
+ - uid: 22241
components:
- pos: -30.5,-16.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22232
+ - uid: 22242
components:
- rot: 3.141592653589793 rad
pos: -28.5,-14.5
@@ -146273,7 +146361,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22233
+ - uid: 22243
components:
- rot: 1.5707963267948966 rad
pos: -39.5,-8.5
@@ -146281,7 +146369,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22234
+ - uid: 22244
components:
- rot: 1.5707963267948966 rad
pos: 38.5,-54.5
@@ -146289,14 +146377,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22235
+ - uid: 22245
components:
- pos: 56.5,-58.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22236
+ - uid: 22246
components:
- rot: -1.5707963267948966 rad
pos: 51.5,-56.5
@@ -146304,14 +146392,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22237
+ - uid: 22247
components:
- pos: 45.5,-56.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22238
+ - uid: 22248
components:
- rot: -1.5707963267948966 rad
pos: 52.5,-50.5
@@ -146319,7 +146407,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22239
+ - uid: 22249
components:
- rot: 1.5707963267948966 rad
pos: 48.5,-61.5
@@ -146327,7 +146415,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22240
+ - uid: 22250
components:
- rot: -1.5707963267948966 rad
pos: 12.5,-5.5
@@ -146335,7 +146423,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22241
+ - uid: 22251
components:
- rot: -1.5707963267948966 rad
pos: 49.5,-86.5
@@ -146343,7 +146431,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22242
+ - uid: 22252
components:
- rot: 1.5707963267948966 rad
pos: 24.5,-84.5
@@ -146351,7 +146439,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22243
+ - uid: 22253
components:
- rot: -1.5707963267948966 rad
pos: 49.5,-91.5
@@ -146359,21 +146447,21 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22244
+ - uid: 22254
components:
- pos: 41.5,-70.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22245
+ - uid: 22255
components:
- pos: 37.5,-70.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22246
+ - uid: 22256
components:
- rot: 1.5707963267948966 rad
pos: 38.5,-61.5
@@ -146381,7 +146469,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22247
+ - uid: 22257
components:
- rot: 3.141592653589793 rad
pos: -35.5,-13.5
@@ -146389,21 +146477,21 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22248
+ - uid: 22258
components:
- pos: -35.5,-5.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22249
+ - uid: 22259
components:
- pos: -16.5,-25.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22250
+ - uid: 22260
components:
- rot: 1.5707963267948966 rad
pos: -20.5,-29.5
@@ -146411,7 +146499,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22251
+ - uid: 22261
components:
- rot: 1.5707963267948966 rad
pos: -20.5,-37.5
@@ -146419,7 +146507,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22252
+ - uid: 22262
components:
- rot: 1.5707963267948966 rad
pos: -20.5,-41.5
@@ -146427,7 +146515,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22253
+ - uid: 22263
components:
- rot: -1.5707963267948966 rad
pos: 44.5,-3.5
@@ -146435,7 +146523,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22254
+ - uid: 22264
components:
- rot: -1.5707963267948966 rad
pos: -6.5,11.5
@@ -146443,34 +146531,34 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22255
+ - uid: 22265
components:
- pos: -41.5,-41.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22256
+ - uid: 22266
components:
- pos: -36.5,-41.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22257
+ - uid: 22267
components:
- pos: -36.5,-53.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22258
+ - uid: 22268
components:
- rot: 3.141592653589793 rad
pos: -43.5,-57.5
parent: 2
type: Transform
- - uid: 22259
+ - uid: 22269
components:
- rot: 1.5707963267948966 rad
pos: -46.5,-43.5
@@ -146478,7 +146566,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22260
+ - uid: 22270
components:
- rot: 1.5707963267948966 rad
pos: -46.5,-45.5
@@ -146486,7 +146574,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22261
+ - uid: 22271
components:
- rot: 1.5707963267948966 rad
pos: -46.5,-47.5
@@ -146494,7 +146582,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22262
+ - uid: 22272
components:
- rot: 1.5707963267948966 rad
pos: -46.5,-49.5
@@ -146502,7 +146590,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22263
+ - uid: 22273
components:
- rot: 1.5707963267948966 rad
pos: -46.5,-51.5
@@ -146510,7 +146598,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22264
+ - uid: 22274
components:
- rot: 1.5707963267948966 rad
pos: -46.5,-53.5
@@ -146518,7 +146606,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22265
+ - uid: 22275
components:
- rot: 1.5707963267948966 rad
pos: -46.5,-55.5
@@ -146526,7 +146614,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22266
+ - uid: 22276
components:
- rot: -1.5707963267948966 rad
pos: -31.5,-39.5
@@ -146534,14 +146622,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22267
+ - uid: 22277
components:
- pos: -27.5,-33.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22268
+ - uid: 22278
components:
- rot: -1.5707963267948966 rad
pos: -22.5,-33.5
@@ -146549,7 +146637,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22269
+ - uid: 22279
components:
- rot: 3.141592653589793 rad
pos: -33.5,-35.5
@@ -146557,7 +146645,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22270
+ - uid: 22280
components:
- rot: 3.141592653589793 rad
pos: -39.5,-36.5
@@ -146565,7 +146653,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22271
+ - uid: 22281
components:
- rot: -1.5707963267948966 rad
pos: -33.5,-47.5
@@ -146573,7 +146661,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22272
+ - uid: 22282
components:
- rot: -1.5707963267948966 rad
pos: -54.5,-48.5
@@ -146581,7 +146669,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22273
+ - uid: 22283
components:
- rot: -1.5707963267948966 rad
pos: 18.5,5.5
@@ -146589,7 +146677,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22274
+ - uid: 22284
components:
- rot: 1.5707963267948966 rad
pos: 16.5,1.5
@@ -146597,7 +146685,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22275
+ - uid: 22285
components:
- rot: -1.5707963267948966 rad
pos: -12.5,5.5
@@ -146605,14 +146693,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22276
+ - uid: 22286
components:
- pos: -18.5,-4.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22277
+ - uid: 22287
components:
- rot: 3.141592653589793 rad
pos: -14.5,-6.5
@@ -146620,7 +146708,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22278
+ - uid: 22288
components:
- rot: 3.141592653589793 rad
pos: -19.5,6.5
@@ -146628,7 +146716,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22279
+ - uid: 22289
components:
- rot: 1.5707963267948966 rad
pos: -26.5,5.5
@@ -146636,7 +146724,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22280
+ - uid: 22290
components:
- rot: 1.5707963267948966 rad
pos: -26.5,-1.5
@@ -146644,21 +146732,21 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22281
+ - uid: 22291
components:
- pos: -72.5,-23.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22282
+ - uid: 22292
components:
- pos: -66.5,-30.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22283
+ - uid: 22293
components:
- rot: 1.5707963267948966 rad
pos: -68.5,-25.5
@@ -146666,7 +146754,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22284
+ - uid: 22294
components:
- rot: -1.5707963267948966 rad
pos: -52.5,-14.5
@@ -146674,7 +146762,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22285
+ - uid: 22295
components:
- rot: 1.5707963267948966 rad
pos: -55.5,-8.5
@@ -146682,27 +146770,27 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22286
+ - uid: 22296
components:
- pos: -51.5,-5.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22287
+ - uid: 22297
components:
- rot: -1.5707963267948966 rad
pos: -50.5,-18.5
parent: 2
type: Transform
- - uid: 22288
+ - uid: 22298
components:
- pos: -46.5,-19.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22289
+ - uid: 22299
components:
- rot: 1.5707963267948966 rad
pos: -42.5,-21.5
@@ -146710,7 +146798,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22290
+ - uid: 22300
components:
- rot: 1.5707963267948966 rad
pos: -48.5,-11.5
@@ -146718,7 +146806,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22291
+ - uid: 22301
components:
- rot: 1.5707963267948966 rad
pos: -48.5,-15.5
@@ -146726,14 +146814,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22292
+ - uid: 22302
components:
- pos: -45.5,-5.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22293
+ - uid: 22303
components:
- rot: -1.5707963267948966 rad
pos: -31.5,-13.5
@@ -146741,7 +146829,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22294
+ - uid: 22304
components:
- rot: 1.5707963267948966 rad
pos: -32.5,-24.5
@@ -146749,7 +146837,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22295
+ - uid: 22305
components:
- rot: -1.5707963267948966 rad
pos: 2.5,13.5
@@ -146757,7 +146845,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22296
+ - uid: 22306
components:
- rot: -1.5707963267948966 rad
pos: -2.5,11.5
@@ -146765,14 +146853,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22297
+ - uid: 22307
components:
- pos: -4.5,8.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22298
+ - uid: 22308
components:
- rot: 3.141592653589793 rad
pos: 3.5,5.5
@@ -146780,7 +146868,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22299
+ - uid: 22309
components:
- rot: -1.5707963267948966 rad
pos: 6.5,10.5
@@ -146788,27 +146876,27 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22300
+ - uid: 22310
components:
- rot: 1.5707963267948966 rad
pos: -1.5,18.5
parent: 2
type: Transform
- - uid: 22301
+ - uid: 22311
components:
- pos: 1.5,21.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22302
+ - uid: 22312
components:
- pos: -42.5,1.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22303
+ - uid: 22313
components:
- rot: -1.5707963267948966 rad
pos: 8.5,15.5
@@ -146816,7 +146904,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22304
+ - uid: 22314
components:
- rot: 3.141592653589793 rad
pos: 23.5,16.5
@@ -146824,21 +146912,21 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22305
+ - uid: 22315
components:
- pos: 25.5,23.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22306
+ - uid: 22316
components:
- pos: 38.5,2.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22307
+ - uid: 22317
components:
- rot: 3.141592653589793 rad
pos: 49.5,0.5
@@ -146846,7 +146934,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22308
+ - uid: 22318
components:
- rot: -1.5707963267948966 rad
pos: 54.5,0.5
@@ -146854,7 +146942,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22309
+ - uid: 22319
components:
- rot: 3.141592653589793 rad
pos: -23.5,17.5
@@ -146862,7 +146950,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22310
+ - uid: 22320
components:
- rot: 3.141592653589793 rad
pos: -50.5,29.5
@@ -146870,14 +146958,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22311
+ - uid: 22321
components:
- pos: -22.5,25.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22312
+ - uid: 22322
components:
- rot: -1.5707963267948966 rad
pos: -18.5,15.5
@@ -146885,7 +146973,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22313
+ - uid: 22323
components:
- rot: -1.5707963267948966 rad
pos: -18.5,22.5
@@ -146893,14 +146981,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22314
+ - uid: 22324
components:
- pos: -27.5,23.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22315
+ - uid: 22325
components:
- rot: 1.5707963267948966 rad
pos: -34.5,23.5
@@ -146908,7 +146996,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22316
+ - uid: 22326
components:
- rot: 3.141592653589793 rad
pos: -29.5,17.5
@@ -146916,7 +147004,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22317
+ - uid: 22327
components:
- rot: -1.5707963267948966 rad
pos: -30.5,30.5
@@ -146924,7 +147012,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22318
+ - uid: 22328
components:
- rot: 3.141592653589793 rad
pos: -39.5,18.5
@@ -146932,7 +147020,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22319
+ - uid: 22329
components:
- rot: -1.5707963267948966 rad
pos: -36.5,23.5
@@ -146940,14 +147028,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22320
+ - uid: 22330
components:
- pos: -43.5,25.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22321
+ - uid: 22331
components:
- rot: 1.5707963267948966 rad
pos: -48.5,21.5
@@ -146955,7 +147043,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22322
+ - uid: 22332
components:
- rot: 1.5707963267948966 rad
pos: -48.5,26.5
@@ -146963,7 +147051,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22323
+ - uid: 22333
components:
- rot: -1.5707963267948966 rad
pos: -36.5,30.5
@@ -146971,7 +147059,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22324
+ - uid: 22334
components:
- rot: 3.141592653589793 rad
pos: -47.5,28.5
@@ -146979,14 +147067,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22325
+ - uid: 22335
components:
- pos: -47.5,36.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22326
+ - uid: 22336
components:
- rot: 1.5707963267948966 rad
pos: -48.5,32.5
@@ -146994,7 +147082,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22327
+ - uid: 22337
components:
- rot: 3.141592653589793 rad
pos: -51.5,19.5
@@ -147002,21 +147090,21 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22328
+ - uid: 22338
components:
- pos: -7.5,-41.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22329
+ - uid: 22339
components:
- pos: -1.5,-41.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22330
+ - uid: 22340
components:
- rot: -1.5707963267948966 rad
pos: -11.5,-47.5
@@ -147024,7 +147112,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22331
+ - uid: 22341
components:
- rot: 3.141592653589793 rad
pos: 1.5,-54.5
@@ -147032,14 +147120,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22332
+ - uid: 22342
components:
- pos: -3.5,-52.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22333
+ - uid: 22343
components:
- rot: 3.141592653589793 rad
pos: -7.5,-54.5
@@ -147047,14 +147135,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22334
+ - uid: 22344
components:
- pos: -11.5,-52.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22335
+ - uid: 22345
components:
- rot: 1.5707963267948966 rad
pos: -15.5,-53.5
@@ -147062,21 +147150,21 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22336
+ - uid: 22346
components:
- pos: -17.5,-54.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22337
+ - uid: 22347
components:
- pos: -17.5,-59.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22338
+ - uid: 22348
components:
- rot: -1.5707963267948966 rad
pos: -22.5,11.5
@@ -147084,14 +147172,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22339
+ - uid: 22349
components:
- pos: -26.5,15.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22340
+ - uid: 22350
components:
- rot: -1.5707963267948966 rad
pos: 26.5,11.5
@@ -147099,7 +147187,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22341
+ - uid: 22351
components:
- rot: 1.5707963267948966 rad
pos: -48.5,16.5
@@ -147107,14 +147195,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22342
+ - uid: 22352
components:
- pos: -47.5,8.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22343
+ - uid: 22353
components:
- rot: 3.141592653589793 rad
pos: -46.5,-0.5
@@ -147122,21 +147210,21 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22344
+ - uid: 22354
components:
- pos: 8.5,-25.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22345
+ - uid: 22355
components:
- pos: 1.5,-25.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22346
+ - uid: 22356
components:
- rot: -1.5707963267948966 rad
pos: 36.5,-34.5
@@ -147144,7 +147232,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22347
+ - uid: 22357
components:
- rot: 1.5707963267948966 rad
pos: 34.5,-29.5
@@ -147152,7 +147240,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22348
+ - uid: 22358
components:
- rot: -1.5707963267948966 rad
pos: 36.5,-24.5
@@ -147160,28 +147248,28 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22349
+ - uid: 22359
components:
- pos: 21.5,-21.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22350
+ - uid: 22360
components:
- pos: 29.5,-21.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22351
+ - uid: 22361
components:
- pos: -29.5,1.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22352
+ - uid: 22362
components:
- rot: 3.141592653589793 rad
pos: -38.5,-0.5
@@ -147189,7 +147277,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22353
+ - uid: 22363
components:
- rot: 3.141592653589793 rad
pos: -51.5,10.5
@@ -147197,7 +147285,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22354
+ - uid: 22364
components:
- rot: 1.5707963267948966 rad
pos: 19.5,-46.5
@@ -147205,14 +147293,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22355
+ - uid: 22365
components:
- pos: 32.5,19.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22356
+ - uid: 22366
components:
- rot: -1.5707963267948966 rad
pos: 13.5,-11.5
@@ -147220,7 +147308,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22357
+ - uid: 22367
components:
- rot: 3.141592653589793 rad
pos: 3.5,-65.5
@@ -147228,7 +147316,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22358
+ - uid: 22368
components:
- rot: 1.5707963267948966 rad
pos: 38.5,19.5
@@ -147236,14 +147324,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22359
+ - uid: 22369
components:
- pos: 64.5,-43.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22360
+ - uid: 22370
components:
- rot: 3.141592653589793 rad
pos: -24.5,-6.5
@@ -147251,7 +147339,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22361
+ - uid: 22371
components:
- rot: 1.5707963267948966 rad
pos: -26.5,-60.5
@@ -147259,14 +147347,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22362
+ - uid: 22372
components:
- pos: -23.5,-57.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22363
+ - uid: 22373
components:
- rot: 1.5707963267948966 rad
pos: -31.5,-73.5
@@ -147274,7 +147362,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22364
+ - uid: 22374
components:
- rot: -1.5707963267948966 rad
pos: 18.5,9.5
@@ -147282,7 +147370,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22365
+ - uid: 22375
components:
- rot: 3.141592653589793 rad
pos: -18.5,65.5
@@ -147290,14 +147378,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22366
+ - uid: 22376
components:
- pos: -21.5,45.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22367
+ - uid: 22377
components:
- rot: 1.5707963267948966 rad
pos: -16.5,32.5
@@ -147305,7 +147393,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22368
+ - uid: 22378
components:
- rot: -1.5707963267948966 rad
pos: -14.5,40.5
@@ -147313,7 +147401,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22369
+ - uid: 22379
components:
- rot: 1.5707963267948966 rad
pos: -18.5,46.5
@@ -147321,7 +147409,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22370
+ - uid: 22380
components:
- rot: 1.5707963267948966 rad
pos: -20.5,28.5
@@ -147329,7 +147417,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22371
+ - uid: 22381
components:
- rot: -1.5707963267948966 rad
pos: -2.5,52.5
@@ -147337,7 +147425,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22372
+ - uid: 22382
components:
- rot: 1.5707963267948966 rad
pos: -10.5,55.5
@@ -147345,7 +147433,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22373
+ - uid: 22383
components:
- rot: 1.5707963267948966 rad
pos: -10.5,49.5
@@ -147353,7 +147441,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22374
+ - uid: 22384
components:
- rot: -1.5707963267948966 rad
pos: -40.5,32.5
@@ -147361,14 +147449,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22375
+ - uid: 22385
components:
- pos: -1.5,46.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22376
+ - uid: 22386
components:
- rot: 1.5707963267948966 rad
pos: -0.5,51.5
@@ -147376,7 +147464,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22377
+ - uid: 22387
components:
- rot: 1.5707963267948966 rad
pos: -0.5,57.5
@@ -147384,21 +147472,21 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22378
+ - uid: 22388
components:
- pos: -6.5,59.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22379
+ - uid: 22389
components:
- pos: -19.5,51.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22380
+ - uid: 22390
components:
- rot: 1.5707963267948966 rad
pos: -22.5,55.5
@@ -147406,7 +147494,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22381
+ - uid: 22391
components:
- rot: 1.5707963267948966 rad
pos: -22.5,66.5
@@ -147414,7 +147502,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22382
+ - uid: 22392
components:
- rot: -1.5707963267948966 rad
pos: -12.5,66.5
@@ -147422,7 +147510,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22383
+ - uid: 22393
components:
- rot: 1.5707963267948966 rad
pos: -13.5,60.5
@@ -147430,7 +147518,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22384
+ - uid: 22394
components:
- rot: -1.5707963267948966 rad
pos: -12.5,54.5
@@ -147438,7 +147526,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22385
+ - uid: 22395
components:
- rot: 3.141592653589793 rad
pos: 28.5,44.5
@@ -147446,7 +147534,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22386
+ - uid: 22396
components:
- rot: 3.141592653589793 rad
pos: -44.5,-85.5
@@ -147454,7 +147542,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22387
+ - uid: 22397
components:
- rot: -1.5707963267948966 rad
pos: -35.5,-95.5
@@ -147462,7 +147550,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22388
+ - uid: 22398
components:
- rot: 3.141592653589793 rad
pos: -71.5,-32.5
@@ -147470,7 +147558,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22389
+ - uid: 22399
components:
- rot: -1.5707963267948966 rad
pos: 18.5,-2.5
@@ -147478,7 +147566,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22390
+ - uid: 22400
components:
- rot: 1.5707963267948966 rad
pos: 60.5,-8.5
@@ -147486,7 +147574,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22391
+ - uid: 22401
components:
- rot: 1.5707963267948966 rad
pos: 57.5,-33.5
@@ -147494,7 +147582,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22392
+ - uid: 22402
components:
- rot: -1.5707963267948966 rad
pos: 75.5,-35.5
@@ -147502,7 +147590,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22393
+ - uid: 22403
components:
- rot: -1.5707963267948966 rad
pos: -5.5,-65.5
@@ -147510,7 +147598,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22394
+ - uid: 22404
components:
- rot: -1.5707963267948966 rad
pos: -15.5,-21.5
@@ -147518,14 +147606,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22395
+ - uid: 22405
components:
- pos: 67.5,-36.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22396
+ - uid: 22406
components:
- rot: 1.5707963267948966 rad
pos: 60.5,-31.5
@@ -147533,14 +147621,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22397
+ - uid: 22407
components:
- pos: -62.5,-23.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22398
+ - uid: 22408
components:
- rot: -1.5707963267948966 rad
pos: 73.5,-28.5
@@ -147548,7 +147636,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22399
+ - uid: 22409
components:
- rot: -1.5707963267948966 rad
pos: -53.5,-59.5
@@ -147556,7 +147644,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22400
+ - uid: 22410
components:
- rot: 1.5707963267948966 rad
pos: 71.5,-31.5
@@ -147564,7 +147652,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22401
+ - uid: 22411
components:
- rot: 3.141592653589793 rad
pos: 4.5,-35.5
@@ -147572,7 +147660,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22402
+ - uid: 22412
components:
- rot: -1.5707963267948966 rad
pos: 32.5,28.5
@@ -147580,21 +147668,21 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22403
+ - uid: 22413
components:
- pos: 58.5,-28.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22404
+ - uid: 22414
components:
- pos: 34.5,-16.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22405
+ - uid: 22415
components:
- rot: -1.5707963267948966 rad
pos: 6.5,-30.5
@@ -147602,14 +147690,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22406
+ - uid: 22416
components:
- pos: 55.5,-47.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22407
+ - uid: 22417
components:
- rot: -1.5707963267948966 rad
pos: -43.5,4.5
@@ -147617,7 +147705,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22408
+ - uid: 22418
components:
- rot: -1.5707963267948966 rad
pos: 76.5,-49.5
@@ -147625,7 +147713,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22409
+ - uid: 22419
components:
- rot: -1.5707963267948966 rad
pos: -60.5,-28.5
@@ -147633,14 +147721,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22410
+ - uid: 22420
components:
- pos: -50.5,35.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22411
+ - uid: 22421
components:
- rot: -1.5707963267948966 rad
pos: -14.5,25.5
@@ -147648,7 +147736,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22412
+ - uid: 22422
components:
- rot: 1.5707963267948966 rad
pos: -0.5,6.5
@@ -147656,7 +147744,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22413
+ - uid: 22423
components:
- rot: 3.141592653589793 rad
pos: 25.5,-25.5
@@ -147664,14 +147752,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22414
+ - uid: 22424
components:
- pos: -21.5,8.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22415
+ - uid: 22425
components:
- rot: 3.141592653589793 rad
pos: -33.5,-0.5
@@ -147679,14 +147767,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22416
+ - uid: 22426
components:
- pos: -51.5,23.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22417
+ - uid: 22427
components:
- rot: -1.5707963267948966 rad
pos: -44.5,15.5
@@ -147694,7 +147782,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22418
+ - uid: 22428
components:
- rot: -1.5707963267948966 rad
pos: -10.5,-18.5
@@ -147702,7 +147790,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22419
+ - uid: 22429
components:
- rot: 1.5707963267948966 rad
pos: -25.5,-15.5
@@ -147710,7 +147798,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22420
+ - uid: 22430
components:
- rot: 1.5707963267948966 rad
pos: -14.5,-0.5
@@ -147718,7 +147806,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22421
+ - uid: 22431
components:
- rot: -1.5707963267948966 rad
pos: -45.5,10.5
@@ -147726,7 +147814,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22422
+ - uid: 22432
components:
- rot: 1.5707963267948966 rad
pos: 2.5,-49.5
@@ -147734,7 +147822,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22423
+ - uid: 22433
components:
- rot: -1.5707963267948966 rad
pos: 32.5,-21.5
@@ -147742,7 +147830,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22424
+ - uid: 22434
components:
- rot: 1.5707963267948966 rad
pos: 18.5,-21.5
@@ -147750,7 +147838,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22425
+ - uid: 22435
components:
- rot: 1.5707963267948966 rad
pos: -0.5,9.5
@@ -147758,7 +147846,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22426
+ - uid: 22436
components:
- rot: -1.5707963267948966 rad
pos: 6.5,5.5
@@ -147766,7 +147854,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22427
+ - uid: 22437
components:
- rot: 3.141592653589793 rad
pos: 9.5,-1.5
@@ -147774,7 +147862,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22428
+ - uid: 22438
components:
- rot: 1.5707963267948966 rad
pos: -50.5,-38.5
@@ -147782,21 +147870,21 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22429
+ - uid: 22439
components:
- pos: -49.5,-34.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22430
+ - uid: 22440
components:
- pos: 28.5,-80.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22431
+ - uid: 22441
components:
- rot: -1.5707963267948966 rad
pos: 31.5,-88.5
@@ -147804,7 +147892,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22432
+ - uid: 22442
components:
- rot: -1.5707963267948966 rad
pos: 49.5,-80.5
@@ -147812,14 +147900,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22433
+ - uid: 22443
components:
- pos: 48.5,-71.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22434
+ - uid: 22444
components:
- rot: -1.5707963267948966 rad
pos: 19.5,-82.5
@@ -147827,7 +147915,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22435
+ - uid: 22445
components:
- rot: 3.141592653589793 rad
pos: 12.5,-86.5
@@ -147835,7 +147923,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22436
+ - uid: 22446
components:
- rot: 1.5707963267948966 rad
pos: 22.5,-72.5
@@ -147843,14 +147931,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22437
+ - uid: 22447
components:
- pos: 29.5,-71.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22438
+ - uid: 22448
components:
- rot: -1.5707963267948966 rad
pos: 40.5,-66.5
@@ -147858,21 +147946,21 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22439
+ - uid: 22449
components:
- pos: 24.5,-69.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22440
+ - uid: 22450
components:
- pos: 15.5,-79.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22441
+ - uid: 22451
components:
- rot: 1.5707963267948966 rad
pos: 37.5,11.5
@@ -147880,7 +147968,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22442
+ - uid: 22452
components:
- rot: 3.141592653589793 rad
pos: 28.5,-2.5
@@ -147888,191 +147976,208 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22443
+ - uid: 22453
components:
- rot: -1.5707963267948966 rad
pos: -38.5,-47.5
parent: 2
type: Transform
- - uid: 22444
+ - uid: 22454
components:
- rot: 1.5707963267948966 rad
pos: -44.5,-41.5
parent: 2
type: Transform
- - uid: 22445
+ - uid: 22455
components:
- rot: 1.5707963267948966 rad
pos: 20.5,22.5
parent: 2
type: Transform
- - uid: 22446
+ - uid: 22456
components:
- rot: -1.5707963267948966 rad
pos: -45.5,41.5
parent: 2
type: Transform
- - uid: 22447
+ - uid: 22457
components:
- rot: 1.5707963267948966 rad
pos: -50.5,44.5
parent: 2
type: Transform
- - uid: 22448
+ - uid: 22458
components:
- rot: 3.141592653589793 rad
pos: 67.5,-31.5
parent: 2
type: Transform
- - uid: 22449
+ - uid: 22459
components:
- rot: 1.5707963267948966 rad
pos: 65.5,-29.5
parent: 2
type: Transform
- - uid: 22450
+ - uid: 22460
components:
- rot: -1.5707963267948966 rad
pos: -3.5,17.5
parent: 2
type: Transform
- - uid: 22451
+ - uid: 22461
components:
- rot: 1.5707963267948966 rad
pos: -8.5,17.5
parent: 2
type: Transform
- - uid: 22452
+ - uid: 22462
components:
- rot: 3.141592653589793 rad
pos: -44.5,-17.5
parent: 2
type: Transform
- - uid: 22453
+ - uid: 22463
components:
- pos: 77.5,-43.5
parent: 2
type: Transform
- - uid: 22454
+ - uid: 22464
components:
- pos: -71.5,-37.5
parent: 2
type: Transform
- - uid: 22455
+ - uid: 22465
components:
- rot: 3.141592653589793 rad
pos: -65.5,-46.5
parent: 2
type: Transform
- - uid: 22456
+ - uid: 22466
components:
- rot: 3.141592653589793 rad
pos: -71.5,-46.5
parent: 2
type: Transform
- - uid: 22457
+ - uid: 22467
components:
- pos: -65.5,-36.5
parent: 2
type: Transform
- - uid: 22458
+ - uid: 22468
components:
- rot: 3.141592653589793 rad
pos: -66.5,-34.5
parent: 2
type: Transform
- - uid: 22459
+ - uid: 22469
components:
- rot: -1.5707963267948966 rad
pos: -30.5,-32.5
parent: 2
type: Transform
- - uid: 22460
+ - uid: 22470
components:
- pos: -35.5,-15.5
parent: 2
type: Transform
- - uid: 22461
+ - uid: 22471
components:
- rot: 1.5707963267948966 rad
pos: -1.5,-4.5
parent: 2
type: Transform
- - uid: 22462
+ - uid: 22472
components:
- rot: 1.5707963267948966 rad
pos: 1.5,-7.5
parent: 2
type: Transform
- links:
- - 24193
+ - 24214
type: DeviceLinkSink
- - uid: 22463
+ - uid: 22473
components:
- rot: -1.5707963267948966 rad
pos: 29.5,-38.5
parent: 2
type: Transform
- - uid: 22464
+ - uid: 22474
components:
- rot: 3.141592653589793 rad
pos: 21.5,-37.5
parent: 2
type: Transform
- - uid: 22465
+ - uid: 22475
components:
- pos: 24.5,-34.5
parent: 2
type: Transform
- - uid: 22466
+ - uid: 22476
components:
- rot: 3.141592653589793 rad
pos: 1.5,-23.5
parent: 2
type: Transform
- - uid: 22467
+ - uid: 22477
components:
- pos: -1.5,-19.5
parent: 2
type: Transform
- - uid: 22468
+ - uid: 22478
components:
- rot: 3.141592653589793 rad
pos: 5.5,-11.5
parent: 2
type: Transform
- - uid: 22469
+ - uid: 22479
components:
- rot: -1.5707963267948966 rad
pos: 57.5,-41.5
parent: 2
type: Transform
- - uid: 22470
+ - uid: 22480
components:
- rot: 3.141592653589793 rad
pos: -52.5,-25.5
parent: 2
type: Transform
- - uid: 22471
+ - uid: 22481
components:
- rot: -1.5707963267948966 rad
pos: 53.5,-43.5
parent: 2
type: Transform
- - uid: 22472
+ - uid: 22482
components:
- rot: -1.5707963267948966 rad
pos: 53.5,-39.5
parent: 2
type: Transform
- - uid: 22473
+ - uid: 22483
components:
- pos: 11.5,23.5
parent: 2
type: Transform
+ - uid: 22484
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 11.5,-46.5
+ parent: 2
+ type: Transform
+ - uid: 22485
+ components:
+ - pos: 7.5,-45.5
+ parent: 2
+ type: Transform
+ - uid: 22486
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -37.5,-17.5
+ parent: 2
+ type: Transform
- proto: PoweredlightEmpty
entities:
- - uid: 22474
+ - uid: 22487
components:
- rot: 3.141592653589793 rad
pos: -39.5,-85.5
@@ -148080,7 +148185,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22475
+ - uid: 22488
components:
- rot: 3.141592653589793 rad
pos: -40.5,-92.5
@@ -148088,7 +148193,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22476
+ - uid: 22489
components:
- rot: 3.141592653589793 rad
pos: -40.5,-97.5
@@ -148096,7 +148201,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22477
+ - uid: 22490
components:
- rot: 3.141592653589793 rad
pos: -28.5,-98.5
@@ -148104,7 +148209,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22478
+ - uid: 22491
components:
- rot: 3.141592653589793 rad
pos: -16.5,-98.5
@@ -148112,21 +148217,21 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22479
+ - uid: 22492
components:
- pos: -13.5,13.5
parent: 2
type: Transform
- proto: PoweredlightExterior
entities:
- - uid: 22480
+ - uid: 22493
components:
- pos: -1.5,72.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22481
+ - uid: 22494
components:
- rot: 1.5707963267948966 rad
pos: -7.5,68.5
@@ -148134,7 +148239,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22482
+ - uid: 22495
components:
- rot: -1.5707963267948966 rad
pos: 4.5,68.5
@@ -148142,7 +148247,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22483
+ - uid: 22496
components:
- rot: -1.5707963267948966 rad
pos: -54.5,-85.5
@@ -148150,7 +148255,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22484
+ - uid: 22497
components:
- rot: -1.5707963267948966 rad
pos: -54.5,-89.5
@@ -148158,43 +148263,43 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22485
+ - uid: 22498
components:
- pos: 39.5,66.5
parent: 2
type: Transform
- - uid: 22486
+ - uid: 22499
components:
- rot: -1.5707963267948966 rad
pos: 42.5,63.5
parent: 2
type: Transform
- - uid: 22487
+ - uid: 22500
components:
- rot: 1.5707963267948966 rad
pos: 36.5,63.5
parent: 2
type: Transform
- - uid: 22488
+ - uid: 22501
components:
- pos: -52.5,-86.5
parent: 2
type: Transform
- proto: PoweredLightPostSmall
entities:
- - uid: 22489
+ - uid: 22502
components:
- pos: -0.5,-85.5
parent: 2
type: Transform
- - uid: 22490
+ - uid: 22503
components:
- pos: -2.5,-85.5
parent: 2
type: Transform
- proto: PoweredlightSodium
entities:
- - uid: 22491
+ - uid: 22504
components:
- rot: 3.141592653589793 rad
pos: 72.5,34.5
@@ -148202,7 +148307,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22492
+ - uid: 22505
components:
- rot: 1.5707963267948966 rad
pos: 14.5,-65.5
@@ -148210,28 +148315,28 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22493
+ - uid: 22506
components:
- pos: -18.5,4.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22494
+ - uid: 22507
components:
- pos: -40.5,-15.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22495
+ - uid: 22508
components:
- pos: -20.5,-95.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22496
+ - uid: 22509
components:
- rot: 3.141592653589793 rad
pos: -7.5,-100.5
@@ -148239,7 +148344,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22497
+ - uid: 22510
components:
- rot: -1.5707963267948966 rad
pos: 12.5,-20.5
@@ -148249,40 +148354,52 @@ entities:
type: ApcPowerReceiver
- proto: PoweredSmallLight
entities:
- - uid: 22498
+ - uid: 22511
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -35.5,-26.5
+ parent: 2
+ type: Transform
+ - uid: 22512
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 15.5,-46.5
+ parent: 2
+ type: Transform
+ - uid: 22513
components:
- pos: 12.5,25.5
parent: 2
type: Transform
- - uid: 22499
+ - uid: 22514
components:
- pos: -43.5,-34.5
parent: 2
type: Transform
- - uid: 22500
+ - uid: 22515
components:
- pos: -76.5,-31.5
parent: 2
type: Transform
- - uid: 22501
+ - uid: 22516
components:
- pos: 51.5,-82.5
parent: 2
type: Transform
- - uid: 22502
+ - uid: 22517
components:
- rot: -1.5707963267948966 rad
pos: -49.5,46.5
parent: 2
type: Transform
- - uid: 22503
+ - uid: 22518
components:
- pos: 20.5,-52.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22504
+ - uid: 22519
components:
- rot: 3.141592653589793 rad
pos: 16.5,-55.5
@@ -148290,21 +148407,21 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22505
+ - uid: 22520
components:
- pos: 16.5,-52.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22506
+ - uid: 22521
components:
- pos: 1.5,-40.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22507
+ - uid: 22522
components:
- rot: 1.5707963267948966 rad
pos: -31.5,-47.5
@@ -148312,7 +148429,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22508
+ - uid: 22523
components:
- rot: 3.141592653589793 rad
pos: 20.5,-32.5
@@ -148320,7 +148437,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22509
+ - uid: 22524
components:
- rot: -1.5707963267948966 rad
pos: -4.5,-74.5
@@ -148328,21 +148445,21 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22510
+ - uid: 22525
components:
- pos: 0.5,-73.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22511
+ - uid: 22526
components:
- pos: 33.5,-10.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22512
+ - uid: 22527
components:
- rot: 3.141592653589793 rad
pos: 10.5,-17.5
@@ -148350,7 +148467,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22513
+ - uid: 22528
components:
- rot: 1.5707963267948966 rad
pos: 17.5,-12.5
@@ -148358,7 +148475,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22514
+ - uid: 22529
components:
- rot: -1.5707963267948966 rad
pos: 22.5,-13.5
@@ -148366,7 +148483,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22515
+ - uid: 22530
components:
- rot: 1.5707963267948966 rad
pos: -74.5,-12.5
@@ -148374,7 +148491,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22516
+ - uid: 22531
components:
- rot: 1.5707963267948966 rad
pos: 6.5,49.5
@@ -148382,14 +148499,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22517
+ - uid: 22532
components:
- pos: 33.5,-89.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22518
+ - uid: 22533
components:
- rot: -1.5707963267948966 rad
pos: 26.5,-29.5
@@ -148397,7 +148514,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22519
+ - uid: 22534
components:
- rot: 1.5707963267948966 rad
pos: -2.5,-78.5
@@ -148405,14 +148522,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22520
+ - uid: 22535
components:
- pos: -15.5,-63.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22521
+ - uid: 22536
components:
- rot: 3.141592653589793 rad
pos: -13.5,-67.5
@@ -148420,14 +148537,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22522
+ - uid: 22537
components:
- pos: -20.5,-66.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22523
+ - uid: 22538
components:
- rot: 3.141592653589793 rad
pos: -5.5,-50.5
@@ -148435,28 +148552,28 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22524
+ - uid: 22539
components:
- pos: -20.5,-63.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22525
+ - uid: 22540
components:
- pos: -15.5,-75.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22526
+ - uid: 22541
components:
- pos: -15.5,-69.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22527
+ - uid: 22542
components:
- rot: 3.141592653589793 rad
pos: -15.5,-79.5
@@ -148464,7 +148581,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22528
+ - uid: 22543
components:
- rot: 1.5707963267948966 rad
pos: -30.5,-80.5
@@ -148472,7 +148589,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22529
+ - uid: 22544
components:
- rot: 1.5707963267948966 rad
pos: -30.5,-78.5
@@ -148480,7 +148597,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22530
+ - uid: 22545
components:
- rot: 3.141592653589793 rad
pos: -30.5,-7.5
@@ -148488,7 +148605,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22531
+ - uid: 22546
components:
- rot: -1.5707963267948966 rad
pos: 22.5,12.5
@@ -148496,7 +148613,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22532
+ - uid: 22547
components:
- rot: -1.5707963267948966 rad
pos: -14.5,-37.5
@@ -148504,7 +148621,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22533
+ - uid: 22548
components:
- rot: -1.5707963267948966 rad
pos: 55.5,29.5
@@ -148512,28 +148629,28 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22534
+ - uid: 22549
components:
- pos: 49.5,-33.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22535
+ - uid: 22550
components:
- pos: -8.5,-29.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22536
+ - uid: 22551
components:
- pos: -16.5,-29.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22537
+ - uid: 22552
components:
- rot: -1.5707963267948966 rad
pos: 30.5,25.5
@@ -148541,21 +148658,21 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22538
+ - uid: 22553
components:
- pos: 37.5,8.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22539
+ - uid: 22554
components:
- pos: 37.5,5.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22540
+ - uid: 22555
components:
- rot: 1.5707963267948966 rad
pos: 34.5,11.5
@@ -148563,7 +148680,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22541
+ - uid: 22556
components:
- rot: 1.5707963267948966 rad
pos: 31.5,11.5
@@ -148571,7 +148688,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22542
+ - uid: 22557
components:
- rot: 1.5707963267948966 rad
pos: 28.5,11.5
@@ -148579,7 +148696,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22543
+ - uid: 22558
components:
- rot: 3.141592653589793 rad
pos: 45.5,14.5
@@ -148587,7 +148704,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22544
+ - uid: 22559
components:
- rot: 1.5707963267948966 rad
pos: 58.5,23.5
@@ -148595,7 +148712,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22545
+ - uid: 22560
components:
- rot: 1.5707963267948966 rad
pos: 55.5,23.5
@@ -148603,7 +148720,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22546
+ - uid: 22561
components:
- rot: 1.5707963267948966 rad
pos: 52.5,23.5
@@ -148611,7 +148728,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22547
+ - uid: 22562
components:
- rot: 1.5707963267948966 rad
pos: 49.5,23.5
@@ -148619,7 +148736,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22548
+ - uid: 22563
components:
- rot: 1.5707963267948966 rad
pos: 46.5,23.5
@@ -148627,21 +148744,21 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22549
+ - uid: 22564
components:
- pos: 61.5,19.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22550
+ - uid: 22565
components:
- pos: 61.5,16.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22551
+ - uid: 22566
components:
- rot: 1.5707963267948966 rad
pos: 62.5,11.5
@@ -148649,14 +148766,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22552
+ - uid: 22567
components:
- pos: 62.5,22.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22553
+ - uid: 22568
components:
- rot: -1.5707963267948966 rad
pos: 54.5,12.5
@@ -148664,7 +148781,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22554
+ - uid: 22569
components:
- rot: 1.5707963267948966 rad
pos: 62.5,6.5
@@ -148672,14 +148789,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22555
+ - uid: 22570
components:
- pos: 60.5,2.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22556
+ - uid: 22571
components:
- rot: 1.5707963267948966 rad
pos: 56.5,-1.5
@@ -148687,14 +148804,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22557
+ - uid: 22572
components:
- pos: 35.5,20.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22558
+ - uid: 22573
components:
- rot: 1.5707963267948966 rad
pos: 44.5,18.5
@@ -148702,7 +148819,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22559
+ - uid: 22574
components:
- rot: -1.5707963267948966 rad
pos: 48.5,-2.5
@@ -148710,14 +148827,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22560
+ - uid: 22575
components:
- pos: 49.5,-7.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22561
+ - uid: 22576
components:
- rot: -1.5707963267948966 rad
pos: 62.5,-38.5
@@ -148725,7 +148842,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22562
+ - uid: 22577
components:
- rot: -1.5707963267948966 rad
pos: 39.5,-45.5
@@ -148733,7 +148850,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22563
+ - uid: 22578
components:
- rot: 1.5707963267948966 rad
pos: 62.5,-19.5
@@ -148741,7 +148858,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22564
+ - uid: 22579
components:
- rot: -1.5707963267948966 rad
pos: 62.5,-15.5
@@ -148749,14 +148866,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22565
+ - uid: 22580
components:
- pos: -18.5,-0.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22566
+ - uid: 22581
components:
- rot: -1.5707963267948966 rad
pos: -28.5,-21.5
@@ -148764,28 +148881,28 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22567
+ - uid: 22582
components:
- pos: 46.5,-51.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22568
+ - uid: 22583
components:
- pos: 12.5,-72.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22569
+ - uid: 22584
components:
- pos: 45.5,-89.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22570
+ - uid: 22585
components:
- rot: 1.5707963267948966 rad
pos: 48.5,-94.5
@@ -148793,14 +148910,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22571
+ - uid: 22586
components:
- pos: 20.5,-73.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22572
+ - uid: 22587
components:
- rot: 1.5707963267948966 rad
pos: -32.5,-5.5
@@ -148808,28 +148925,28 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22573
+ - uid: 22588
components:
- pos: -20.5,-45.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22574
+ - uid: 22589
components:
- pos: -26.5,-26.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22575
+ - uid: 22590
components:
- pos: 43.5,-51.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22576
+ - uid: 22591
components:
- rot: 1.5707963267948966 rad
pos: 36.5,-51.5
@@ -148837,50 +148954,42 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22577
- components:
- - rot: -1.5707963267948966 rad
- pos: 15.5,-48.5
- parent: 2
- type: Transform
- - powerLoad: 0
- type: ApcPowerReceiver
- - uid: 22578
+ - uid: 22592
components:
- pos: 10.5,-55.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22579
+ - uid: 22593
components:
- pos: 15.5,-57.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22580
+ - uid: 22594
components:
- pos: 9.5,-64.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22581
+ - uid: 22595
components:
- pos: -5.5,-68.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22582
+ - uid: 22596
components:
- pos: -33.5,-69.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22583
+ - uid: 22597
components:
- rot: 1.5707963267948966 rad
pos: -56.5,-78.5
@@ -148888,7 +148997,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22584
+ - uid: 22598
components:
- rot: 3.141592653589793 rad
pos: -51.5,-79.5
@@ -148896,14 +149005,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22585
+ - uid: 22599
components:
- pos: -26.5,-66.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22586
+ - uid: 22600
components:
- rot: 1.5707963267948966 rad
pos: -28.5,-61.5
@@ -148911,7 +149020,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22587
+ - uid: 22601
components:
- rot: 1.5707963267948966 rad
pos: -50.5,-68.5
@@ -148919,21 +149028,21 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22588
+ - uid: 22602
components:
- pos: -37.5,-63.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22589
+ - uid: 22603
components:
- pos: -44.5,-63.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22590
+ - uid: 22604
components:
- rot: 1.5707963267948966 rad
pos: -22.5,-55.5
@@ -148941,14 +149050,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22591
+ - uid: 22605
components:
- pos: -29.5,-43.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22592
+ - uid: 22606
components:
- rot: 1.5707963267948966 rad
pos: -28.5,-53.5
@@ -148956,14 +149065,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22593
+ - uid: 22607
components:
- pos: -22.5,-41.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22594
+ - uid: 22608
components:
- rot: 1.5707963267948966 rad
pos: -29.5,-41.5
@@ -148971,14 +149080,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22595
+ - uid: 22609
components:
- pos: 44.5,-13.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22596
+ - uid: 22610
components:
- rot: 1.5707963267948966 rad
pos: 35.5,-13.5
@@ -148986,21 +149095,21 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22597
+ - uid: 22611
components:
- pos: 39.5,-7.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22598
+ - uid: 22612
components:
- pos: 31.5,-8.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22599
+ - uid: 22613
components:
- rot: 1.5707963267948966 rad
pos: 46.5,-7.5
@@ -149008,7 +149117,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22600
+ - uid: 22614
components:
- rot: 1.5707963267948966 rad
pos: 65.5,24.5
@@ -149016,14 +149125,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22601
+ - uid: 22615
components:
- pos: 57.5,26.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22602
+ - uid: 22616
components:
- rot: 3.141592653589793 rad
pos: 49.5,26.5
@@ -149031,28 +149140,28 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22603
+ - uid: 22617
components:
- pos: -41.5,-24.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22604
+ - uid: 22618
components:
- pos: -39.5,-28.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22605
+ - uid: 22619
components:
- pos: -45.5,-27.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22606
+ - uid: 22620
components:
- rot: 1.5707963267948966 rad
pos: -44.5,-30.5
@@ -149060,7 +149169,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22607
+ - uid: 22621
components:
- rot: -1.5707963267948966 rad
pos: -35.5,-29.5
@@ -149068,7 +149177,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22608
+ - uid: 22622
components:
- rot: -1.5707963267948966 rad
pos: -54.5,-33.5
@@ -149076,7 +149185,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22609
+ - uid: 22623
components:
- rot: 1.5707963267948966 rad
pos: -57.5,-38.5
@@ -149084,7 +149193,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22610
+ - uid: 22624
components:
- rot: 1.5707963267948966 rad
pos: -29.5,-29.5
@@ -149092,29 +149201,21 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22611
+ - uid: 22625
components:
- pos: -29.5,-25.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22612
- components:
- - rot: 3.141592653589793 rad
- pos: -35.5,-26.5
- parent: 2
- type: Transform
- - powerLoad: 0
- type: ApcPowerReceiver
- - uid: 22613
+ - uid: 22626
components:
- pos: 15.5,-8.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22614
+ - uid: 22627
components:
- rot: 1.5707963267948966 rad
pos: 14.5,-4.5
@@ -149122,7 +149223,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22615
+ - uid: 22628
components:
- rot: 3.141592653589793 rad
pos: 14.5,-14.5
@@ -149130,7 +149231,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22616
+ - uid: 22629
components:
- rot: 1.5707963267948966 rad
pos: -0.5,-13.5
@@ -149138,20 +149239,20 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22617
+ - uid: 22630
components:
- pos: 1.5,-16.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22618
+ - uid: 22631
components:
- rot: -1.5707963267948966 rad
pos: -72.5,-34.5
parent: 2
type: Transform
- - uid: 22619
+ - uid: 22632
components:
- rot: 1.5707963267948966 rad
pos: -32.5,-7.5
@@ -149159,7 +149260,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22620
+ - uid: 22633
components:
- rot: 1.5707963267948966 rad
pos: 62.5,28.5
@@ -149167,56 +149268,56 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22621
+ - uid: 22634
components:
- pos: -49.5,-42.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22622
+ - uid: 22635
components:
- pos: -49.5,-44.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22623
+ - uid: 22636
components:
- pos: -49.5,-46.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22624
+ - uid: 22637
components:
- pos: -49.5,-48.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22625
+ - uid: 22638
components:
- pos: -49.5,-50.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22626
+ - uid: 22639
components:
- pos: -49.5,-52.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22627
+ - uid: 22640
components:
- pos: -49.5,-54.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22628
+ - uid: 22641
components:
- rot: 1.5707963267948966 rad
pos: 15.5,33.5
@@ -149224,21 +149325,21 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22629
+ - uid: 22642
components:
- pos: 21.5,25.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22630
+ - uid: 22643
components:
- pos: -6.5,32.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22631
+ - uid: 22644
components:
- rot: -1.5707963267948966 rad
pos: 0.5,33.5
@@ -149246,7 +149347,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22632
+ - uid: 22645
components:
- rot: 1.5707963267948966 rad
pos: -0.5,-10.5
@@ -149254,7 +149355,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22633
+ - uid: 22646
components:
- rot: 1.5707963267948966 rad
pos: -54.5,-0.5
@@ -149262,7 +149363,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22634
+ - uid: 22647
components:
- rot: -1.5707963267948966 rad
pos: -28.5,-3.5
@@ -149270,7 +149371,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22635
+ - uid: 22648
components:
- rot: 1.5707963267948966 rad
pos: -41.5,4.5
@@ -149278,7 +149379,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22636
+ - uid: 22649
components:
- rot: 3.141592653589793 rad
pos: -30.5,3.5
@@ -149286,7 +149387,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22637
+ - uid: 22650
components:
- rot: 1.5707963267948966 rad
pos: -33.5,9.5
@@ -149294,7 +149395,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22638
+ - uid: 22651
components:
- rot: -1.5707963267948966 rad
pos: -28.5,9.5
@@ -149302,7 +149403,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22639
+ - uid: 22652
components:
- rot: -1.5707963267948966 rad
pos: -29.5,14.5
@@ -149310,7 +149411,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22640
+ - uid: 22653
components:
- rot: -1.5707963267948966 rad
pos: -35.5,9.5
@@ -149318,7 +149419,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22641
+ - uid: 22654
components:
- rot: 1.5707963267948966 rad
pos: -40.5,9.5
@@ -149326,7 +149427,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22642
+ - uid: 22655
components:
- rot: -1.5707963267948966 rad
pos: -12.5,19.5
@@ -149334,7 +149435,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22643
+ - uid: 22656
components:
- rot: 1.5707963267948966 rad
pos: -16.5,21.5
@@ -149342,7 +149443,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22644
+ - uid: 22657
components:
- rot: 3.141592653589793 rad
pos: -9.5,21.5
@@ -149350,14 +149451,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22645
+ - uid: 22658
components:
- pos: -0.5,24.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22646
+ - uid: 22659
components:
- rot: -1.5707963267948966 rad
pos: -42.5,10.5
@@ -149365,7 +149466,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22647
+ - uid: 22660
components:
- rot: 1.5707963267948966 rad
pos: -52.5,14.5
@@ -149373,7 +149474,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22648
+ - uid: 22661
components:
- rot: -1.5707963267948966 rad
pos: -51.5,7.5
@@ -149381,28 +149482,28 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22649
+ - uid: 22662
components:
- pos: -44.5,-2.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22650
+ - uid: 22663
components:
- pos: -40.5,-2.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22651
+ - uid: 22664
components:
- pos: -49.5,1.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22652
+ - uid: 22665
components:
- rot: -1.5707963267948966 rad
pos: -37.5,-39.5
@@ -149410,14 +149511,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22653
+ - uid: 22666
components:
- pos: -35.5,-38.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22654
+ - uid: 22667
components:
- rot: -1.5707963267948966 rad
pos: 2.5,-69.5
@@ -149425,7 +149526,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22655
+ - uid: 22668
components:
- rot: 3.141592653589793 rad
pos: -63.5,-21.5
@@ -149433,7 +149534,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22656
+ - uid: 22669
components:
- rot: 3.141592653589793 rad
pos: -69.5,-21.5
@@ -149441,21 +149542,21 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22657
+ - uid: 22670
components:
- pos: -68.5,-5.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22658
+ - uid: 22671
components:
- pos: -64.5,-5.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22659
+ - uid: 22672
components:
- rot: -1.5707963267948966 rad
pos: -57.5,-10.5
@@ -149463,7 +149564,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22660
+ - uid: 22673
components:
- rot: -1.5707963267948966 rad
pos: -57.5,-16.5
@@ -149471,7 +149572,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22661
+ - uid: 22674
components:
- rot: -1.5707963267948966 rad
pos: 61.5,24.5
@@ -149479,7 +149580,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22662
+ - uid: 22675
components:
- rot: -1.5707963267948966 rad
pos: 63.5,24.5
@@ -149487,7 +149588,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22663
+ - uid: 22676
components:
- rot: 3.141592653589793 rad
pos: 63.5,13.5
@@ -149495,7 +149596,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22664
+ - uid: 22677
components:
- rot: 3.141592653589793 rad
pos: 63.5,11.5
@@ -149503,7 +149604,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22665
+ - uid: 22678
components:
- rot: 3.141592653589793 rad
pos: 63.5,9.5
@@ -149511,7 +149612,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22666
+ - uid: 22679
components:
- rot: 3.141592653589793 rad
pos: -47.5,53.5
@@ -149519,7 +149620,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22667
+ - uid: 22680
components:
- rot: 3.141592653589793 rad
pos: -41.5,53.5
@@ -149527,7 +149628,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22668
+ - uid: 22681
components:
- rot: 1.5707963267948966 rad
pos: -40.5,52.5
@@ -149535,7 +149636,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22669
+ - uid: 22682
components:
- rot: 1.5707963267948966 rad
pos: -46.5,52.5
@@ -149543,37 +149644,29 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22670
- components:
- - rot: -1.5707963267948966 rad
- pos: 23.5,34.5
- parent: 2
- type: Transform
- - powerLoad: 0
- type: ApcPowerReceiver
- - uid: 22671
+ - uid: 22683
components:
- - rot: 1.5707963267948966 rad
- pos: 13.5,-45.5
+ - rot: -1.5707963267948966 rad
+ pos: 23.5,34.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22672
+ - uid: 22684
components:
- pos: -51.5,-73.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22673
+ - uid: 22685
components:
- pos: -8.5,-71.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22674
+ - uid: 22686
components:
- rot: 1.5707963267948966 rad
pos: 7.5,-17.5
@@ -149581,7 +149674,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22675
+ - uid: 22687
components:
- rot: 3.141592653589793 rad
pos: 39.5,-30.5
@@ -149589,29 +149682,21 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22676
+ - uid: 22688
components:
- pos: -30.5,-54.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22677
- components:
- - rot: 3.141592653589793 rad
- pos: 10.5,-47.5
- parent: 2
- type: Transform
- - powerLoad: 0
- type: ApcPowerReceiver
- - uid: 22678
+ - uid: 22689
components:
- pos: 56.5,59.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22679
+ - uid: 22690
components:
- rot: 3.141592653589793 rad
pos: 52.5,55.5
@@ -149619,7 +149704,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22680
+ - uid: 22691
components:
- rot: 3.141592653589793 rad
pos: 58.5,42.5
@@ -149627,7 +149712,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22681
+ - uid: 22692
components:
- rot: 3.141592653589793 rad
pos: 51.5,42.5
@@ -149635,14 +149720,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22682
+ - uid: 22693
components:
- pos: 15.5,39.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22683
+ - uid: 22694
components:
- rot: 1.5707963267948966 rad
pos: 60.5,46.5
@@ -149650,7 +149735,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22684
+ - uid: 22695
components:
- rot: 1.5707963267948966 rad
pos: 65.5,9.5
@@ -149658,21 +149743,21 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22685
+ - uid: 22696
components:
- pos: 9.5,34.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22686
+ - uid: 22697
components:
- pos: -23.5,31.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22687
+ - uid: 22698
components:
- rot: 3.141592653589793 rad
pos: 57.5,28.5
@@ -149680,7 +149765,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22688
+ - uid: 22699
components:
- rot: 1.5707963267948966 rad
pos: -21.5,33.5
@@ -149688,28 +149773,28 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22689
+ - uid: 22700
components:
- pos: 46.5,39.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22690
+ - uid: 22701
components:
- pos: 54.5,50.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22691
+ - uid: 22702
components:
- pos: 45.5,32.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22692
+ - uid: 22703
components:
- rot: -1.5707963267948966 rad
pos: 48.5,46.5
@@ -149717,7 +149802,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22693
+ - uid: 22704
components:
- rot: -1.5707963267948966 rad
pos: -11.5,33.5
@@ -149725,14 +149810,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22694
+ - uid: 22705
components:
- pos: -11.5,39.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22695
+ - uid: 22706
components:
- rot: 3.141592653589793 rad
pos: 43.5,44.5
@@ -149740,22 +149825,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22696
- components:
- - rot: 3.141592653589793 rad
- pos: -20.5,37.5
- parent: 2
- type: Transform
- - powerLoad: 0
- type: ApcPowerReceiver
- - uid: 22697
- components:
- - pos: -27.5,46.5
- parent: 2
- type: Transform
- - powerLoad: 0
- type: ApcPowerReceiver
- - uid: 22698
+ - uid: 22708
components:
- rot: -1.5707963267948966 rad
pos: -20.5,48.5
@@ -149763,14 +149833,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22699
+ - uid: 22709
components:
- pos: -10.5,29.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22700
+ - uid: 22710
components:
- rot: -1.5707963267948966 rad
pos: -17.5,69.5
@@ -149778,7 +149848,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22701
+ - uid: 22711
components:
- rot: -1.5707963267948966 rad
pos: -12.5,74.5
@@ -149786,7 +149856,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22702
+ - uid: 22712
components:
- rot: 1.5707963267948966 rad
pos: -22.5,74.5
@@ -149794,7 +149864,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22703
+ - uid: 22713
components:
- rot: 3.141592653589793 rad
pos: -15.5,60.5
@@ -149802,14 +149872,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22704
+ - uid: 22714
components:
- pos: -18.5,55.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22705
+ - uid: 22715
components:
- rot: -1.5707963267948966 rad
pos: -24.5,42.5
@@ -149817,7 +149887,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22706
+ - uid: 22716
components:
- rot: 3.141592653589793 rad
pos: -25.5,33.5
@@ -149825,21 +149895,21 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22707
+ - uid: 22717
components:
- pos: -30.5,39.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22708
+ - uid: 22718
components:
- pos: -42.5,39.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22709
+ - uid: 22719
components:
- rot: 3.141592653589793 rad
pos: -28.5,27.5
@@ -149847,7 +149917,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22710
+ - uid: 22720
components:
- rot: 3.141592653589793 rad
pos: 54.5,52.5
@@ -149855,7 +149925,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22711
+ - uid: 22721
components:
- rot: -1.5707963267948966 rad
pos: -45.5,-87.5
@@ -149863,7 +149933,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22712
+ - uid: 22722
components:
- rot: 1.5707963267948966 rad
pos: 8.5,-37.5
@@ -149871,7 +149941,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22713
+ - uid: 22723
components:
- rot: 1.5707963267948966 rad
pos: 74.5,-40.5
@@ -149879,28 +149949,28 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22714
+ - uid: 22724
components:
- pos: 67.5,-33.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22715
+ - uid: 22725
components:
- pos: 67.5,-11.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22716
+ - uid: 22726
components:
- pos: 67.5,-3.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22717
+ - uid: 22727
components:
- rot: -1.5707963267948966 rad
pos: -5.5,-56.5
@@ -149908,21 +149978,21 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22718
+ - uid: 22728
components:
- pos: 67.5,-5.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22719
+ - uid: 22729
components:
- pos: 67.5,-13.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22720
+ - uid: 22730
components:
- rot: -1.5707963267948966 rad
pos: -8.5,-56.5
@@ -149930,7 +150000,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22721
+ - uid: 22731
components:
- rot: -1.5707963267948966 rad
pos: -11.5,-56.5
@@ -149938,7 +150008,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22722
+ - uid: 22732
components:
- rot: -1.5707963267948966 rad
pos: 0.5,-56.5
@@ -149946,7 +150016,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22723
+ - uid: 22733
components:
- rot: -1.5707963267948966 rad
pos: -2.5,-56.5
@@ -149954,21 +150024,21 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22724
+ - uid: 22734
components:
- pos: 78.5,-33.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22725
+ - uid: 22735
components:
- pos: 78.5,-36.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22726
+ - uid: 22736
components:
- rot: 1.5707963267948966 rad
pos: 54.5,-55.5
@@ -149976,7 +150046,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22727
+ - uid: 22737
components:
- rot: 3.141592653589793 rad
pos: 41.5,-33.5
@@ -149984,7 +150054,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22728
+ - uid: 22738
components:
- rot: 1.5707963267948966 rad
pos: 77.5,-57.5
@@ -149992,7 +150062,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22729
+ - uid: 22739
components:
- rot: -1.5707963267948966 rad
pos: 43.5,-63.5
@@ -150000,7 +150070,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22730
+ - uid: 22740
components:
- rot: -1.5707963267948966 rad
pos: 56.5,-66.5
@@ -150008,7 +150078,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22731
+ - uid: 22741
components:
- rot: 3.141592653589793 rad
pos: 54.5,-37.5
@@ -150016,7 +150086,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22732
+ - uid: 22742
components:
- rot: 1.5707963267948966 rad
pos: 53.5,-26.5
@@ -150024,14 +150094,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22733
+ - uid: 22743
components:
- pos: 59.5,-26.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22734
+ - uid: 22744
components:
- rot: -1.5707963267948966 rad
pos: 63.5,-68.5
@@ -150039,7 +150109,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22735
+ - uid: 22745
components:
- rot: 1.5707963267948966 rad
pos: 58.5,-66.5
@@ -150047,7 +150117,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22736
+ - uid: 22746
components:
- rot: 3.141592653589793 rad
pos: 67.5,-66.5
@@ -150055,7 +150125,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22737
+ - uid: 22747
components:
- rot: 1.5707963267948966 rad
pos: 72.5,-67.5
@@ -150063,7 +150133,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22738
+ - uid: 22748
components:
- rot: 1.5707963267948966 rad
pos: 75.5,-53.5
@@ -150071,7 +150141,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22739
+ - uid: 22749
components:
- rot: 1.5707963267948966 rad
pos: 73.5,-63.5
@@ -150079,7 +150149,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22740
+ - uid: 22750
components:
- rot: -1.5707963267948966 rad
pos: 72.5,-55.5
@@ -150087,7 +150157,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22741
+ - uid: 22751
components:
- rot: 3.141592653589793 rad
pos: -11.5,41.5
@@ -150095,7 +150165,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22742
+ - uid: 22752
components:
- rot: 1.5707963267948966 rad
pos: -42.5,13.5
@@ -150103,7 +150173,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22743
+ - uid: 22753
components:
- rot: -1.5707963267948966 rad
pos: 30.5,-94.5
@@ -150111,7 +150181,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22744
+ - uid: 22754
components:
- rot: 1.5707963267948966 rad
pos: -8.5,-18.5
@@ -150119,7 +150189,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22745
+ - uid: 22755
components:
- rot: 1.5707963267948966 rad
pos: -13.5,-13.5
@@ -150127,21 +150197,21 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22746
+ - uid: 22756
components:
- pos: -8.5,-8.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22747
+ - uid: 22757
components:
- pos: -12.5,-8.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22748
+ - uid: 22758
components:
- rot: 1.5707963267948966 rad
pos: -16.5,-9.5
@@ -150149,14 +150219,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22749
+ - uid: 22759
components:
- pos: -15.5,-12.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22750
+ - uid: 22760
components:
- rot: -1.5707963267948966 rad
pos: -28.5,-5.5
@@ -150164,7 +150234,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22751
+ - uid: 22761
components:
- rot: -1.5707963267948966 rad
pos: -28.5,-7.5
@@ -150172,7 +150242,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22752
+ - uid: 22762
components:
- rot: -1.5707963267948966 rad
pos: -8.5,-68.5
@@ -150180,21 +150250,21 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22753
+ - uid: 22763
components:
- pos: 13.5,-31.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22754
+ - uid: 22764
components:
- pos: -19.5,-51.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22755
+ - uid: 22765
components:
- rot: 3.141592653589793 rad
pos: -19.5,-49.5
@@ -150202,7 +150272,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22756
+ - uid: 22766
components:
- rot: 1.5707963267948966 rad
pos: 28.5,-14.5
@@ -150210,7 +150280,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22757
+ - uid: 22767
components:
- rot: 1.5707963267948966 rad
pos: 29.5,-12.5
@@ -150218,14 +150288,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22758
+ - uid: 22768
components:
- pos: 22.5,-83.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22759
+ - uid: 22769
components:
- rot: 3.141592653589793 rad
pos: 5.5,-23.5
@@ -150233,14 +150303,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22760
+ - uid: 22770
components:
- pos: -57.5,-18.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22761
+ - uid: 22771
components:
- rot: 1.5707963267948966 rad
pos: 6.5,-78.5
@@ -150248,14 +150318,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22762
+ - uid: 22772
components:
- pos: 3.5,-73.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22763
+ - uid: 22773
components:
- rot: -1.5707963267948966 rad
pos: 6.5,-85.5
@@ -150263,134 +150333,157 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22764
+ - uid: 22774
components:
- rot: 3.141592653589793 rad
pos: 32.5,-25.5
parent: 2
type: Transform
- - uid: 22765
+ - uid: 22775
components:
- rot: 3.141592653589793 rad
pos: 18.5,-25.5
parent: 2
type: Transform
- - uid: 22766
+ - uid: 22776
components:
- pos: -52.5,43.5
parent: 2
type: Transform
- - uid: 22767
+ - uid: 22777
components:
- rot: -1.5707963267948966 rad
pos: -37.5,42.5
parent: 2
type: Transform
- - uid: 22768
+ - uid: 22778
components:
- rot: 3.141592653589793 rad
pos: -10.5,-33.5
parent: 2
type: Transform
- - uid: 22769
+ - uid: 22779
components:
- pos: -15.5,-33.5
parent: 2
type: Transform
- - uid: 22770
+ - uid: 22780
components:
- pos: 51.5,-89.5
parent: 2
type: Transform
- - uid: 22771
+ - uid: 22781
components:
- rot: 3.141592653589793 rad
pos: 33.5,-82.5
parent: 2
type: Transform
- - uid: 22772
+ - uid: 22782
components:
- rot: 3.141592653589793 rad
pos: 45.5,-82.5
parent: 2
type: Transform
- - uid: 22773
+ - uid: 22783
components:
- pos: -59.5,-54.5
parent: 2
type: Transform
- - uid: 22774
+ - uid: 22784
components:
- pos: -76.5,-40.5
parent: 2
type: Transform
- - uid: 22775
+ - uid: 22785
components:
- rot: 3.141592653589793 rad
pos: -76.5,-46.5
parent: 2
type: Transform
- - uid: 22776
+ - uid: 22786
components:
- rot: 3.141592653589793 rad
pos: -63.5,-45.5
parent: 2
type: Transform
- - uid: 22777
+ - uid: 22787
components:
- pos: -53.5,-27.5
parent: 2
type: Transform
- - uid: 22778
+ - uid: 22788
components:
- rot: 1.5707963267948966 rad
pos: 18.5,-28.5
parent: 2
type: Transform
- - uid: 22779
+ - uid: 22789
components:
- pos: 31.5,-32.5
parent: 2
type: Transform
- - uid: 22780
+ - uid: 22790
components:
- rot: -1.5707963267948966 rad
pos: -7.5,-14.5
parent: 2
type: Transform
- - uid: 22781
+ - uid: 22791
components:
- rot: 3.141592653589793 rad
pos: -8.5,-6.5
parent: 2
type: Transform
- - uid: 22782
+ - uid: 22792
components:
- rot: 3.141592653589793 rad
pos: -25.5,-90.5
parent: 2
type: Transform
- - uid: 22783
+ - uid: 22793
components:
- rot: 3.141592653589793 rad
pos: -20.5,-90.5
parent: 2
type: Transform
- - uid: 22784
+ - uid: 22794
components:
- rot: -1.5707963267948966 rad
pos: -33.5,15.5
parent: 2
type: Transform
- - uid: 22785
+ - uid: 22795
components:
- rot: 1.5707963267948966 rad
pos: -40.5,15.5
parent: 2
type: Transform
+ - uid: 22796
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 68.5,-68.5
+ parent: 2
+ type: Transform
+ - uid: 22797
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -56.5,-1.5
+ parent: 2
+ type: Transform
+ - uid: 25598
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -28.5,44.5
+ parent: 2
+ type: Transform
+ - uid: 31539
+ components:
+ - pos: -19.5,38.5
+ parent: 2
+ type: Transform
- proto: PoweredSmallLightEmpty
entities:
- - uid: 22786
+ - uid: 22798
components:
- rot: -1.5707963267948966 rad
pos: -36.5,-79.5
@@ -150398,7 +150491,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22787
+ - uid: 22799
components:
- rot: 3.141592653589793 rad
pos: -37.5,-84.5
@@ -150406,7 +150499,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22788
+ - uid: 22800
components:
- rot: 3.141592653589793 rad
pos: -46.5,-84.5
@@ -150414,7 +150507,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22789
+ - uid: 22801
components:
- rot: 1.5707963267948966 rad
pos: -47.5,-79.5
@@ -150422,14 +150515,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22790
+ - uid: 22802
components:
- pos: -42.5,-74.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22791
+ - uid: 22803
components:
- rot: -1.5707963267948966 rad
pos: -36.5,-72.5
@@ -150437,7 +150530,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22792
+ - uid: 22804
components:
- rot: 1.5707963267948966 rad
pos: -47.5,-72.5
@@ -150445,7 +150538,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22793
+ - uid: 22805
components:
- rot: 1.5707963267948966 rad
pos: -56.5,-80.5
@@ -150453,7 +150546,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22794
+ - uid: 22806
components:
- rot: 1.5707963267948966 rad
pos: -56.5,-74.5
@@ -150461,7 +150554,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22795
+ - uid: 22807
components:
- rot: 1.5707963267948966 rad
pos: -56.5,-72.5
@@ -150469,7 +150562,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22796
+ - uid: 22808
components:
- rot: -1.5707963267948966 rad
pos: -27.5,-36.5
@@ -150477,14 +150570,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22797
+ - uid: 22809
components:
- pos: 57.5,34.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22798
+ - uid: 22810
components:
- rot: -1.5707963267948966 rad
pos: 43.5,47.5
@@ -150492,7 +150585,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22799
+ - uid: 22811
components:
- rot: 1.5707963267948966 rad
pos: 36.5,50.5
@@ -150500,7 +150593,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22800
+ - uid: 22812
components:
- rot: 3.141592653589793 rad
pos: 37.5,43.5
@@ -150508,7 +150601,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22801
+ - uid: 22813
components:
- pos: 34.5,47.5
parent: 2
@@ -150517,49 +150610,49 @@ entities:
type: ApcPowerReceiver
- proto: PresentRandom
entities:
- - uid: 22802
+ - uid: 22814
components:
- pos: 12.423648,0.6728656
parent: 2
type: Transform
- - uid: 22803
+ - uid: 22815
components:
- pos: 5.7986484,0.6416156
parent: 2
type: Transform
- - uid: 22804
+ - uid: 22816
components:
- pos: 32.4075,-40.3605
parent: 2
type: Transform
- - uid: 22805
+ - uid: 22817
components:
- pos: 13.28658,14.60049
parent: 2
type: Transform
- - uid: 22806
+ - uid: 22818
components:
- pos: 11.72408,14.616115
parent: 2
type: Transform
- - uid: 22807
+ - uid: 22819
components:
- pos: 16.344246,-84.26074
parent: 2
type: Transform
- - uid: 22808
+ - uid: 22820
components:
- pos: 14.469246,-82.54199
parent: 2
type: Transform
- - uid: 22809
+ - uid: 22821
components:
- pos: 15.141121,-84.60449
parent: 2
type: Transform
- proto: Protolathe
entities:
- - uid: 22810
+ - uid: 22822
components:
- pos: 43.5,-35.5
parent: 2
@@ -150573,1063 +150666,1070 @@ entities:
type: MaterialStorage
- proto: ProtolatheMachineCircuitboard
entities:
- - uid: 22811
+ - uid: 22823
components:
- pos: -37.545918,-18.274307
parent: 2
type: Transform
- proto: ProximitySensor
entities:
- - uid: 22812
+ - uid: 22824
components:
- pos: 59.550594,-52.45363
parent: 2
type: Transform
+- proto: PsychBed
+ entities:
+ - uid: 22825
+ components:
+ - pos: -15.5,-39.5
+ parent: 2
+ type: Transform
- proto: Rack
entities:
- - uid: 22813
+ - uid: 22826
components:
- pos: 26.5,29.5
parent: 2
type: Transform
- - uid: 22814
+ - uid: 22827
components:
- pos: 29.5,-13.5
parent: 2
type: Transform
- - uid: 22815
+ - uid: 22828
components:
- pos: 13.5,-72.5
parent: 2
type: Transform
- - uid: 22816
+ - uid: 22829
components:
- pos: 10.5,-16.5
parent: 2
type: Transform
- - uid: 22817
+ - uid: 22830
components:
- pos: 31.5,-11.5
parent: 2
type: Transform
- - uid: 22818
+ - uid: 22831
components:
- pos: 22.5,-54.5
parent: 2
type: Transform
- - uid: 22819
+ - uid: 22832
components:
- pos: 33.5,-11.5
parent: 2
type: Transform
- - uid: 22820
+ - uid: 22833
components:
- pos: 33.5,-13.5
parent: 2
type: Transform
- - uid: 22821
+ - uid: 22834
components:
- pos: 31.5,-13.5
parent: 2
type: Transform
- - uid: 22822
+ - uid: 22835
components:
- pos: 29.5,-11.5
parent: 2
type: Transform
- - uid: 22823
+ - uid: 22836
components:
- pos: -6.5,-68.5
parent: 2
type: Transform
- - uid: 22824
+ - uid: 22837
components:
- pos: 4.5,-69.5
parent: 2
type: Transform
- - uid: 22825
+ - uid: 22838
components:
- pos: 6.5,-69.5
parent: 2
type: Transform
- - uid: 22826
+ - uid: 22839
components:
- rot: 3.141592653589793 rad
pos: -28.5,-19.5
parent: 2
type: Transform
- - uid: 22827
+ - uid: 22840
components:
- pos: -16.5,-15.5
parent: 2
type: Transform
- - uid: 22828
+ - uid: 22841
components:
- pos: 36.5,-50.5
parent: 2
type: Transform
- - uid: 22829
+ - uid: 22842
components:
- pos: 37.5,-50.5
parent: 2
type: Transform
- - uid: 22830
+ - uid: 22843
components:
- pos: 42.5,-7.5
parent: 2
type: Transform
- - uid: 22831
+ - uid: 22844
components:
- pos: -8.5,-10.5
parent: 2
type: Transform
- - uid: 22832
+ - uid: 22845
components:
- pos: -16.5,-16.5
parent: 2
type: Transform
- - uid: 22833
+ - uid: 22846
components:
- pos: -9.5,-10.5
parent: 2
type: Transform
- - uid: 22834
+ - uid: 22847
components:
- pos: -11.5,-8.5
parent: 2
type: Transform
- - uid: 22835
+ - uid: 22848
components:
- pos: -50.5,-29.5
parent: 2
type: Transform
- - uid: 22836
+ - uid: 22849
components:
- pos: -50.5,-28.5
parent: 2
type: Transform
- - uid: 22837
+ - uid: 22850
components:
- pos: -50.5,-27.5
parent: 2
type: Transform
- - uid: 22838
+ - uid: 22851
components:
- pos: -45.5,-19.5
parent: 2
type: Transform
- - uid: 22839
+ - uid: 22852
components:
- pos: -47.5,-19.5
parent: 2
type: Transform
- - uid: 22840
+ - uid: 22853
components:
- pos: -55.5,-6.5
parent: 2
type: Transform
- - uid: 22841
+ - uid: 22854
components:
- pos: -31.5,-56.5
parent: 2
type: Transform
- - uid: 22842
+ - uid: 22855
components:
- pos: -56.5,-70.5
parent: 2
type: Transform
- - uid: 22843
+ - uid: 22856
components:
- pos: -38.5,-67.5
parent: 2
type: Transform
- - uid: 22844
+ - uid: 22857
components:
- pos: -32.5,-62.5
parent: 2
type: Transform
- - uid: 22845
+ - uid: 22858
components:
- pos: -31.5,-62.5
parent: 2
type: Transform
- - uid: 22846
+ - uid: 22859
components:
- pos: -46.5,-30.5
parent: 2
type: Transform
- - uid: 22847
+ - uid: 22860
components:
- pos: -44.5,-25.5
parent: 2
type: Transform
- - uid: 22848
+ - uid: 22861
components:
- pos: -42.5,-24.5
parent: 2
type: Transform
- - uid: 22849
+ - uid: 22862
components:
- pos: 35.5,-12.5
parent: 2
type: Transform
- - uid: 22850
+ - uid: 22863
components:
- pos: -31.5,-43.5
parent: 2
type: Transform
- - uid: 22851
+ - uid: 22864
components:
- pos: -29.5,-46.5
parent: 2
type: Transform
- - uid: 22852
+ - uid: 22865
components:
- pos: -28.5,-28.5
parent: 2
type: Transform
- - uid: 22853
+ - uid: 22866
components:
- pos: -23.5,-28.5
parent: 2
type: Transform
- - uid: 22854
+ - uid: 22867
components:
- pos: -34.5,-25.5
parent: 2
type: Transform
- - uid: 22855
+ - uid: 22868
components:
- pos: -42.5,-20.5
parent: 2
type: Transform
- - uid: 22856
+ - uid: 22869
components:
- pos: -42.5,-21.5
parent: 2
type: Transform
- - uid: 22857
+ - uid: 22870
components:
- pos: 4.5,-17.5
parent: 2
type: Transform
- - uid: 22858
+ - uid: 22871
components:
- pos: 3.5,-17.5
parent: 2
type: Transform
- - uid: 22859
+ - uid: 22872
components:
- pos: -44.5,16.5
parent: 2
type: Transform
- - uid: 22860
+ - uid: 22873
components:
- pos: -3.5,21.5
parent: 2
type: Transform
- - uid: 22861
+ - uid: 22874
components:
- pos: 0.5,23.5
parent: 2
type: Transform
- - uid: 22862
+ - uid: 22875
components:
- pos: -3.5,34.5
parent: 2
type: Transform
- - uid: 22863
+ - uid: 22876
components:
- pos: 15.5,34.5
parent: 2
type: Transform
- - uid: 22864
+ - uid: 22877
components:
- pos: -12.5,17.5
parent: 2
type: Transform
- - uid: 22865
+ - uid: 22878
components:
- pos: -49.5,15.5
parent: 2
type: Transform
- - uid: 22866
+ - uid: 22879
components:
- pos: -49.5,14.5
parent: 2
type: Transform
- - uid: 22867
+ - uid: 22880
components:
- pos: -44.5,15.5
parent: 2
type: Transform
- - uid: 22868
+ - uid: 22881
components:
- pos: -47.5,-3.5
parent: 2
type: Transform
- - uid: 22869
+ - uid: 22882
components:
- pos: -52.5,2.5
parent: 2
type: Transform
- - uid: 22870
+ - uid: 22883
components:
- pos: -56.5,-4.5
parent: 2
type: Transform
- - uid: 22871
+ - uid: 22884
components:
- pos: 18.5,39.5
parent: 2
type: Transform
- - uid: 22872
+ - uid: 22885
components:
- pos: -24.5,-67.5
parent: 2
type: Transform
- - uid: 22873
+ - uid: 22886
components:
- pos: -23.5,-67.5
parent: 2
type: Transform
- - uid: 22874
+ - uid: 22887
components:
- pos: 9.5,-16.5
parent: 2
type: Transform
- - uid: 22875
+ - uid: 22888
components:
- pos: 39.5,-30.5
parent: 2
type: Transform
- - uid: 22876
+ - uid: 22889
components:
- pos: 59.5,2.5
parent: 2
type: Transform
- - uid: 22877
+ - uid: 22890
components:
- pos: -34.5,-72.5
parent: 2
type: Transform
- - uid: 22878
+ - uid: 22891
components:
- pos: -33.5,-72.5
parent: 2
type: Transform
- - uid: 22879
+ - uid: 22892
components:
- pos: -41.5,37.5
parent: 2
type: Transform
- - uid: 22880
+ - uid: 22893
components:
- pos: -36.5,35.5
parent: 2
type: Transform
- - uid: 22881
+ - uid: 22894
components:
- pos: -26.5,39.5
parent: 2
type: Transform
- - uid: 22882
+ - uid: 22895
components:
- pos: -26.5,30.5
parent: 2
type: Transform
- - uid: 22883
+ - uid: 22896
components:
- pos: -8.5,-82.5
parent: 2
type: Transform
- - uid: 22884
+ - uid: 22897
components:
- pos: -14.5,-82.5
parent: 2
type: Transform
- - uid: 22885
+ - uid: 22898
components:
- pos: -4.5,-82.5
parent: 2
type: Transform
- - uid: 22886
+ - uid: 22899
components:
- pos: -6.5,-88.5
parent: 2
type: Transform
- - uid: 22887
+ - uid: 22900
components:
- pos: -19.5,53.5
parent: 2
type: Transform
- - uid: 22888
+ - uid: 22901
components:
- pos: 42.5,-32.5
parent: 2
type: Transform
- - uid: 22889
+ - uid: 22902
components:
- pos: 54.5,-63.5
parent: 2
type: Transform
- - uid: 22890
+ - uid: 22903
components:
- pos: 54.5,-64.5
parent: 2
type: Transform
- - uid: 22891
+ - uid: 22904
components:
- pos: 54.5,-30.5
parent: 2
type: Transform
- - uid: 22892
+ - uid: 22905
components:
- pos: 37.5,-10.5
parent: 2
type: Transform
- - uid: 22893
+ - uid: 22906
components:
- pos: -8.5,-17.5
parent: 2
type: Transform
- - uid: 22894
+ - uid: 22907
components:
- rot: 1.5707963267948966 rad
pos: -28.5,-20.5
parent: 2
type: Transform
- - uid: 22895
+ - uid: 22908
components:
- pos: -48.5,16.5
parent: 2
type: Transform
- - uid: 22896
+ - uid: 22909
components:
- pos: -13.5,-13.5
parent: 2
type: Transform
- - uid: 22897
+ - uid: 22910
components:
- pos: -13.5,-12.5
parent: 2
type: Transform
- - uid: 22898
+ - uid: 22911
components:
- pos: -20.5,-51.5
parent: 2
type: Transform
- - uid: 22899
+ - uid: 22912
components:
- pos: 44.5,-8.5
parent: 2
type: Transform
- - uid: 22900
+ - uid: 22913
components:
- pos: 7.5,-80.5
parent: 2
type: Transform
- - uid: 22901
+ - uid: 22914
components:
- pos: 31.5,27.5
parent: 2
type: Transform
- - uid: 22902
+ - uid: 22915
components:
- pos: 27.5,27.5
parent: 2
type: Transform
- - uid: 22903
+ - uid: 22916
components:
- pos: 6.5,-13.5
parent: 2
type: Transform
- proto: RadiationCollector
entities:
- - uid: 22904
+ - uid: 22917
components:
- pos: -63.5,-20.5
parent: 2
type: Transform
- - uid: 22905
+ - uid: 22918
components:
- pos: -64.5,-20.5
parent: 2
type: Transform
- - uid: 22906
+ - uid: 22919
components:
- pos: -65.5,-20.5
parent: 2
type: Transform
- - uid: 22907
+ - uid: 22920
components:
- pos: -67.5,-20.5
parent: 2
type: Transform
- - uid: 22908
+ - uid: 22921
components:
- pos: -68.5,-20.5
parent: 2
type: Transform
- - uid: 22909
+ - uid: 22922
components:
- pos: -69.5,-20.5
parent: 2
type: Transform
- - uid: 22910
+ - uid: 22923
components:
- pos: -63.5,-6.5
parent: 2
type: Transform
- - uid: 22911
+ - uid: 22924
components:
- pos: -64.5,-6.5
parent: 2
type: Transform
- - uid: 22912
+ - uid: 22925
components:
- pos: -65.5,-6.5
parent: 2
type: Transform
- - uid: 22913
+ - uid: 22926
components:
- pos: -69.5,-6.5
parent: 2
type: Transform
- - uid: 22914
+ - uid: 22927
components:
- pos: -68.5,-6.5
parent: 2
type: Transform
- - uid: 22915
+ - uid: 22928
components:
- pos: -67.5,-6.5
parent: 2
type: Transform
- proto: RadioHandheld
entities:
- - uid: 22916
+ - uid: 22929
components:
- pos: -21.414516,35.539524
parent: 2
type: Transform
- proto: Railing
entities:
- - uid: 22917
+ - uid: 22930
components:
- rot: -1.5707963267948966 rad
pos: -8.5,18.5
parent: 2
type: Transform
- - uid: 22918
+ - uid: 22931
components:
- pos: 24.5,-1.5
parent: 2
type: Transform
- - uid: 22919
+ - uid: 22932
components:
- pos: 25.5,-1.5
parent: 2
type: Transform
- - uid: 22920
+ - uid: 22933
components:
- rot: -1.5707963267948966 rad
pos: 21.5,1.5
parent: 2
type: Transform
- - uid: 22921
+ - uid: 22934
components:
- rot: 3.141592653589793 rad
pos: 24.5,-19.5
parent: 2
type: Transform
- - uid: 22922
+ - uid: 22935
components:
- rot: -1.5707963267948966 rad
pos: 21.5,0.5
parent: 2
type: Transform
- - uid: 22923
+ - uid: 22936
components:
- rot: 3.141592653589793 rad
pos: 25.5,3.5
parent: 2
type: Transform
- - uid: 22924
+ - uid: 22937
components:
- rot: 3.141592653589793 rad
pos: 11.5,1.5
parent: 2
type: Transform
- - uid: 22925
+ - uid: 22938
components:
- pos: 22.5,-1.5
parent: 2
type: Transform
- - uid: 22926
+ - uid: 22939
components:
- pos: 10.5,0.5
parent: 2
type: Transform
- - uid: 22927
+ - uid: 22940
components:
- rot: 1.5707963267948966 rad
pos: 26.5,2.5
parent: 2
type: Transform
- - uid: 22928
+ - uid: 22941
components:
- rot: 3.141592653589793 rad
pos: 24.5,3.5
parent: 2
type: Transform
- - uid: 22929
+ - uid: 22942
components:
- pos: 6.5,0.5
parent: 2
type: Transform
- - uid: 22930
+ - uid: 22943
components:
- rot: 3.141592653589793 rad
pos: 22.5,3.5
parent: 2
type: Transform
- - uid: 22931
+ - uid: 22944
components:
- rot: 3.141592653589793 rad
pos: 10.5,1.5
parent: 2
type: Transform
- - uid: 22932
+ - uid: 22945
components:
- rot: 3.141592653589793 rad
pos: 26.5,-19.5
parent: 2
type: Transform
- - uid: 22933
+ - uid: 22946
components:
- rot: 1.5707963267948966 rad
pos: 26.5,-0.5
parent: 2
type: Transform
- - uid: 22934
+ - uid: 22947
components:
- rot: 3.141592653589793 rad
pos: 25.5,-19.5
parent: 2
type: Transform
- - uid: 22935
+ - uid: 22948
components:
- rot: 3.141592653589793 rad
pos: 23.5,-19.5
parent: 2
type: Transform
- - uid: 22936
+ - uid: 22949
components:
- pos: 23.5,-1.5
parent: 2
type: Transform
- - uid: 22937
+ - uid: 22950
components:
- rot: 3.141592653589793 rad
pos: 28.5,-19.5
parent: 2
type: Transform
- - uid: 22938
+ - uid: 22951
components:
- rot: -1.5707963267948966 rad
pos: 21.5,-0.5
parent: 2
type: Transform
- - uid: 22939
+ - uid: 22952
components:
- rot: -1.5707963267948966 rad
pos: 21.5,2.5
parent: 2
type: Transform
- - uid: 22940
+ - uid: 22953
components:
- pos: 11.5,0.5
parent: 2
type: Transform
- - uid: 22941
+ - uid: 22954
components:
- rot: 3.141592653589793 rad
pos: 6.5,1.5
parent: 2
type: Transform
- - uid: 22942
+ - uid: 22955
components:
- rot: 3.141592653589793 rad
pos: 7.5,1.5
parent: 2
type: Transform
- - uid: 22943
+ - uid: 22956
components:
- pos: 7.5,0.5
parent: 2
type: Transform
- - uid: 22944
+ - uid: 22957
components:
- rot: 3.141592653589793 rad
pos: 23.5,3.5
parent: 2
type: Transform
- - uid: 22945
+ - uid: 22958
components:
- rot: 3.141592653589793 rad
pos: 27.5,-19.5
parent: 2
type: Transform
- - uid: 22946
+ - uid: 22959
components:
- rot: 1.5707963267948966 rad
pos: 26.5,1.5
parent: 2
type: Transform
- - uid: 22947
+ - uid: 22960
components:
- rot: 3.141592653589793 rad
pos: 22.5,-19.5
parent: 2
type: Transform
- - uid: 22948
+ - uid: 22961
components:
- rot: 3.141592653589793 rad
pos: 54.5,19.5
parent: 2
type: Transform
- - uid: 22949
+ - uid: 22962
components:
- rot: 3.141592653589793 rad
pos: 53.5,19.5
parent: 2
type: Transform
- - uid: 22950
+ - uid: 22963
components:
- rot: 3.141592653589793 rad
pos: 52.5,19.5
parent: 2
type: Transform
- - uid: 22951
+ - uid: 22964
components:
- rot: -1.5707963267948966 rad
pos: 51.5,18.5
parent: 2
type: Transform
- - uid: 22952
+ - uid: 22965
components:
- rot: -1.5707963267948966 rad
pos: 51.5,17.5
parent: 2
type: Transform
- - uid: 22953
+ - uid: 22966
components:
- rot: -1.5707963267948966 rad
pos: 51.5,15.5
parent: 2
type: Transform
- - uid: 22954
+ - uid: 22967
components:
- rot: 1.5707963267948966 rad
pos: 55.5,18.5
parent: 2
type: Transform
- - uid: 22955
+ - uid: 22968
components:
- rot: 1.5707963267948966 rad
pos: 55.5,17.5
parent: 2
type: Transform
- - uid: 22956
+ - uid: 22969
components:
- rot: 1.5707963267948966 rad
pos: 55.5,15.5
parent: 2
type: Transform
- - uid: 22957
+ - uid: 22970
components:
- rot: 3.141592653589793 rad
pos: 58.5,8.5
parent: 2
type: Transform
- - uid: 22958
+ - uid: 22971
components:
- rot: 3.141592653589793 rad
pos: 56.5,8.5
parent: 2
type: Transform
- - uid: 22959
+ - uid: 22972
components:
- rot: -1.5707963267948966 rad
pos: 55.5,6.5
parent: 2
type: Transform
- - uid: 22960
+ - uid: 22973
components:
- rot: 1.5707963267948966 rad
pos: 59.5,7.5
parent: 2
type: Transform
- - uid: 22961
+ - uid: 22974
components:
- rot: 1.5707963267948966 rad
pos: 59.5,6.5
parent: 2
type: Transform
- - uid: 22962
+ - uid: 22975
components:
- pos: 58.5,5.5
parent: 2
type: Transform
- - uid: 22963
+ - uid: 22976
components:
- pos: 56.5,5.5
parent: 2
type: Transform
- - uid: 22964
+ - uid: 22977
components:
- rot: 3.141592653589793 rad
pos: 57.5,8.5
parent: 2
type: Transform
- - uid: 22965
+ - uid: 22978
components:
- rot: 1.5707963267948966 rad
pos: 61.5,-8.5
parent: 2
type: Transform
- - uid: 22966
+ - uid: 22979
components:
- pos: 54.5,-9.5
parent: 2
type: Transform
- - uid: 22967
+ - uid: 22980
components:
- rot: 3.141592653589793 rad
pos: 54.5,-7.5
parent: 2
type: Transform
- - uid: 22968
+ - uid: 22981
components:
- rot: 1.5707963267948966 rad
pos: 50.5,-5.5
parent: 2
type: Transform
- - uid: 22969
+ - uid: 22982
components:
- rot: 1.5707963267948966 rad
pos: 50.5,-11.5
parent: 2
type: Transform
- - uid: 22970
+ - uid: 22983
components:
- rot: -1.5707963267948966 rad
pos: 53.5,-8.5
parent: 2
type: Transform
- - uid: 22971
+ - uid: 22984
components:
- rot: 1.5707963267948966 rad
pos: 46.5,-86.5
parent: 2
type: Transform
- - uid: 22972
+ - uid: 22985
components:
- rot: -1.5707963267948966 rad
pos: 32.5,-84.5
parent: 2
type: Transform
- - uid: 22973
+ - uid: 22986
components:
- rot: -1.5707963267948966 rad
pos: 32.5,-85.5
parent: 2
type: Transform
- - uid: 22974
+ - uid: 22987
components:
- rot: 1.5707963267948966 rad
pos: 46.5,-87.5
parent: 2
type: Transform
- - uid: 22975
+ - uid: 22988
components:
- rot: -1.5707963267948966 rad
pos: 32.5,-86.5
parent: 2
type: Transform
- - uid: 22976
+ - uid: 22989
components:
- rot: 1.5707963267948966 rad
pos: 46.5,-84.5
parent: 2
type: Transform
- - uid: 22977
+ - uid: 22990
components:
- rot: -1.5707963267948966 rad
pos: 32.5,-87.5
parent: 2
type: Transform
- - uid: 22978
+ - uid: 22991
components:
- rot: 3.141592653589793 rad
pos: -39.5,-29.5
parent: 2
type: Transform
- - uid: 22979
+ - uid: 22992
components:
- rot: 3.141592653589793 rad
pos: -38.5,-29.5
parent: 2
type: Transform
- - uid: 22980
+ - uid: 22993
components:
- rot: -1.5707963267948966 rad
pos: 66.5,-8.5
parent: 2
type: Transform
- - uid: 22981
+ - uid: 22994
components:
- rot: -1.5707963267948966 rad
pos: 66.5,-7.5
parent: 2
type: Transform
- - uid: 22982
+ - uid: 22995
components:
- rot: -1.5707963267948966 rad
pos: 66.5,-9.5
parent: 2
type: Transform
- - uid: 22983
+ - uid: 22996
components:
- rot: 3.141592653589793 rad
pos: -40.5,38.5
parent: 2
type: Transform
- - uid: 22984
+ - uid: 22997
components:
- rot: 3.141592653589793 rad
pos: -43.5,38.5
parent: 2
type: Transform
- - uid: 22985
+ - uid: 22998
components:
- pos: 60.5,-9.5
parent: 2
type: Transform
- - uid: 22986
+ - uid: 22999
components:
- rot: 3.141592653589793 rad
pos: 60.5,-7.5
parent: 2
type: Transform
- - uid: 22987
+ - uid: 23000
components:
- rot: 1.5707963267948966 rad
pos: -39.5,3.5
parent: 2
type: Transform
- - uid: 22988
+ - uid: 23001
components:
- rot: 1.5707963267948966 rad
pos: -39.5,4.5
parent: 2
type: Transform
- - uid: 22989
+ - uid: 23002
components:
- pos: 31.5,-40.5
parent: 2
type: Transform
- - uid: 22990
+ - uid: 23003
components:
- rot: 1.5707963267948966 rad
pos: 32.5,-39.5
parent: 2
type: Transform
- - uid: 22991
+ - uid: 23004
components:
- rot: 1.5707963267948966 rad
pos: -39.5,5.5
parent: 2
type: Transform
- - uid: 22992
+ - uid: 23005
components:
- rot: 1.5707963267948966 rad
pos: -39.5,6.5
parent: 2
type: Transform
- - uid: 22993
+ - uid: 23006
components:
- rot: -1.5707963267948966 rad
pos: -36.5,6.5
parent: 2
type: Transform
- - uid: 22994
+ - uid: 23007
components:
- rot: -1.5707963267948966 rad
pos: -36.5,5.5
parent: 2
type: Transform
- - uid: 22995
+ - uid: 23008
components:
- rot: -1.5707963267948966 rad
pos: -36.5,4.5
parent: 2
type: Transform
- - uid: 22996
+ - uid: 23009
components:
- rot: -1.5707963267948966 rad
pos: -36.5,3.5
parent: 2
type: Transform
- - uid: 22997
+ - uid: 23010
components:
- rot: 1.5707963267948966 rad
pos: 46.5,-85.5
parent: 2
type: Transform
- - uid: 22998
+ - uid: 23011
components:
- pos: 69.5,-29.5
parent: 2
type: Transform
- - uid: 22999
+ - uid: 23012
components:
- rot: -1.5707963267948966 rad
pos: 67.5,-28.5
parent: 2
type: Transform
- - uid: 23000
+ - uid: 23013
components:
- rot: 1.5707963267948966 rad
pos: -6.5,18.5
parent: 2
type: Transform
- - uid: 23001
+ - uid: 23014
components:
- rot: 1.5707963267948966 rad
pos: -3.5,18.5
parent: 2
type: Transform
- - uid: 23002
+ - uid: 23015
components:
- rot: -1.5707963267948966 rad
pos: -5.5,18.5
parent: 2
type: Transform
- - uid: 23003
+ - uid: 23016
components:
- rot: 3.141592653589793 rad
pos: -7.5,19.5
parent: 2
type: Transform
- - uid: 23004
+ - uid: 23017
components:
- rot: 3.141592653589793 rad
pos: -4.5,19.5
parent: 2
type: Transform
- - uid: 23005
+ - uid: 23018
components:
- rot: -1.5707963267948966 rad
pos: 67.5,-27.5
@@ -151637,185 +151737,185 @@ entities:
type: Transform
- proto: RailingCorner
entities:
- - uid: 23006
+ - uid: 23019
components:
- rot: -1.5707963267948966 rad
pos: 67.5,-29.5
parent: 2
type: Transform
- - uid: 23007
+ - uid: 23020
components:
- rot: -1.5707963267948966 rad
pos: -5.5,17.5
parent: 2
type: Transform
- - uid: 23008
+ - uid: 23021
components:
- rot: -1.5707963267948966 rad
pos: -8.5,17.5
parent: 2
type: Transform
- - uid: 23009
+ - uid: 23022
components:
- rot: 3.141592653589793 rad
pos: -8.5,19.5
parent: 2
type: Transform
- - uid: 23010
+ - uid: 23023
components:
- pos: -6.5,17.5
parent: 2
type: Transform
- - uid: 23011
+ - uid: 23024
components:
- rot: 1.5707963267948966 rad
pos: 61.5,-7.5
parent: 2
type: Transform
- - uid: 23012
+ - uid: 23025
components:
- rot: -1.5707963267948966 rad
pos: 5.5,0.5
parent: 2
type: Transform
- - uid: 23013
+ - uid: 23026
components:
- pos: 26.5,-1.5
parent: 2
type: Transform
- - uid: 23014
+ - uid: 23027
components:
- rot: 1.5707963267948966 rad
pos: 26.5,3.5
parent: 2
type: Transform
- - uid: 23015
+ - uid: 23028
components:
- rot: 3.141592653589793 rad
pos: 5.5,1.5
parent: 2
type: Transform
- - uid: 23016
+ - uid: 23029
components:
- pos: 12.5,0.5
parent: 2
type: Transform
- - uid: 23017
+ - uid: 23030
components:
- rot: 3.141592653589793 rad
pos: 21.5,3.5
parent: 2
type: Transform
- - uid: 23018
+ - uid: 23031
components:
- rot: 1.5707963267948966 rad
pos: 12.5,1.5
parent: 2
type: Transform
- - uid: 23019
+ - uid: 23032
components:
- rot: -1.5707963267948966 rad
pos: 21.5,-1.5
parent: 2
type: Transform
- - uid: 23020
+ - uid: 23033
components:
- rot: 1.5707963267948966 rad
pos: 29.5,-19.5
parent: 2
type: Transform
- - uid: 23021
+ - uid: 23034
components:
- rot: 3.141592653589793 rad
pos: 21.5,-19.5
parent: 2
type: Transform
- - uid: 23022
+ - uid: 23035
components:
- pos: 32.5,-40.5
parent: 2
type: Transform
- - uid: 23023
+ - uid: 23036
components:
- rot: 3.141592653589793 rad
pos: 51.5,19.5
parent: 2
type: Transform
- - uid: 23024
+ - uid: 23037
components:
- rot: 1.5707963267948966 rad
pos: 55.5,19.5
parent: 2
type: Transform
- - uid: 23025
+ - uid: 23038
components:
- pos: 59.5,5.5
parent: 2
type: Transform
- - uid: 23026
+ - uid: 23039
components:
- rot: -1.5707963267948966 rad
pos: 55.5,5.5
parent: 2
type: Transform
- - uid: 23027
+ - uid: 23040
components:
- rot: 3.141592653589793 rad
pos: 55.5,8.5
parent: 2
type: Transform
- - uid: 23028
+ - uid: 23041
components:
- rot: 1.5707963267948966 rad
pos: 59.5,8.5
parent: 2
type: Transform
- - uid: 23029
+ - uid: 23042
components:
- rot: 1.5707963267948966 rad
pos: 50.5,-10.5
parent: 2
type: Transform
- - uid: 23030
+ - uid: 23043
components:
- pos: 50.5,-6.5
parent: 2
type: Transform
- - uid: 23031
+ - uid: 23044
components:
- rot: -1.5707963267948966 rad
pos: 53.5,-9.5
parent: 2
type: Transform
- - uid: 23032
+ - uid: 23045
components:
- rot: 3.141592653589793 rad
pos: 53.5,-7.5
parent: 2
type: Transform
- - uid: 23033
+ - uid: 23046
components:
- pos: 61.5,-9.5
parent: 2
type: Transform
- - uid: 23034
+ - uid: 23047
components:
- pos: -3.5,17.5
parent: 2
type: Transform
- - uid: 23035
+ - uid: 23048
components:
- rot: 1.5707963267948966 rad
pos: -6.5,19.5
parent: 2
type: Transform
- - uid: 23036
+ - uid: 23049
components:
- rot: 3.141592653589793 rad
pos: -5.5,19.5
parent: 2
type: Transform
- - uid: 23037
+ - uid: 23050
components:
- rot: 1.5707963267948966 rad
pos: -3.5,19.5
@@ -151823,650 +151923,692 @@ entities:
type: Transform
- proto: RandomArcade
entities:
- - uid: 23038
+ - uid: 23051
components:
- pos: 44.5,12.5
parent: 2
type: Transform
- - uid: 23039
+ - uid: 23052
components:
- pos: 45.5,12.5
parent: 2
type: Transform
- - uid: 23040
+ - uid: 23053
components:
- pos: 9.5,34.5
parent: 2
type: Transform
- - uid: 23041
+ - uid: 23054
components:
- pos: 7.5,34.5
parent: 2
type: Transform
- - uid: 23042
+ - uid: 23055
components:
- rot: 3.141592653589793 rad
pos: 9.5,30.5
parent: 2
type: Transform
- - uid: 23043
+ - uid: 23056
components:
- rot: 3.141592653589793 rad
pos: 7.5,30.5
parent: 2
type: Transform
- - uid: 23044
+ - uid: 23057
components:
- pos: 4.5,-32.5
parent: 2
type: Transform
- - uid: 23045
+ - uid: 23058
components:
- pos: 4.5,-30.5
parent: 2
type: Transform
- - uid: 23046
+ - uid: 23059
components:
- pos: 2.5,-30.5
parent: 2
type: Transform
- - uid: 23047
+ - uid: 23060
components:
- pos: 2.5,-32.5
parent: 2
type: Transform
- - uid: 23048
+ - uid: 23061
components:
- pos: 6.5,-30.5
parent: 2
type: Transform
- - uid: 23049
+ - uid: 23062
components:
- pos: 6.5,-32.5
parent: 2
type: Transform
- proto: RandomArtifactSpawner
entities:
- - uid: 23050
+ - uid: 23063
components:
- pos: 67.5,-37.5
parent: 2
type: Transform
- - uid: 23051
+ - uid: 23064
components:
- pos: -46.5,65.5
parent: 2
type: Transform
- - uid: 23052
+ - uid: 23065
components:
- pos: 71.5,-28.5
parent: 2
type: Transform
- proto: RandomArtifactSpawner20
entities:
- - uid: 23053
+ - uid: 23066
components:
- pos: 50.5,51.5
parent: 2
type: Transform
- - uid: 23054
+ - uid: 23067
components:
- pos: -20.5,-99.5
parent: 2
type: Transform
- - uid: 23055
+ - uid: 23068
components:
- pos: 11.5,53.5
parent: 2
type: Transform
- - uid: 23056
+ - uid: 23069
components:
- pos: -51.5,22.5
parent: 2
type: Transform
- - uid: 23057
+ - uid: 23070
components:
- pos: 78.5,-34.5
parent: 2
type: Transform
+- proto: RandomBoard
+ entities:
+ - uid: 23071
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 57.5,-30.5
+ parent: 2
+ type: Transform
+ - uid: 23072
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -8.5,39.5
+ parent: 2
+ type: Transform
+ - uid: 23073
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -9.5,39.5
+ parent: 2
+ type: Transform
+ - uid: 23074
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -12.5,37.5
+ parent: 2
+ type: Transform
+ - uid: 23075
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -9.5,37.5
+ parent: 2
+ type: Transform
+ - uid: 23076
+ components:
+ - pos: -8.5,37.5
+ parent: 2
+ type: Transform
+ - uid: 23077
+ components:
+ - pos: -8.5,38.5
+ parent: 2
+ type: Transform
- proto: RandomDrinkBottle
entities:
- - uid: 23058
+ - uid: 23078
components:
- pos: 15.5,13.5
parent: 2
type: Transform
- proto: RandomDrinkGlass
entities:
- - uid: 23059
+ - uid: 23079
components:
- pos: 15.5,11.5
parent: 2
type: Transform
- - uid: 23060
+ - uid: 23080
components:
- pos: 15.5,11.5
parent: 2
type: Transform
- - uid: 23061
+ - uid: 23081
components:
- pos: 18.5,15.5
parent: 2
type: Transform
- - uid: 23062
+ - uid: 23082
components:
- pos: -8.5,1.5
parent: 2
type: Transform
- - uid: 23063
+ - uid: 23083
components:
- pos: 27.5,-35.5
parent: 2
type: Transform
- - uid: 23064
+ - uid: 23084
components:
- pos: 27.5,-37.5
parent: 2
type: Transform
- - uid: 23065
+ - uid: 23085
components:
- pos: 22.5,-38.5
parent: 2
type: Transform
- proto: RandomFoodBakedSingle
entities:
- - uid: 23066
+ - uid: 23086
components:
- pos: 2.5,0.5
parent: 2
type: Transform
- - uid: 23067
+ - uid: 23087
components:
- pos: -4.5,1.5
parent: 2
type: Transform
- - uid: 23068
+ - uid: 23088
components:
- pos: -8.5,0.5
parent: 2
type: Transform
- proto: RandomFoodMeal
entities:
- - uid: 23069
+ - uid: 23089
components:
- pos: 25.5,-68.5
parent: 2
type: Transform
- proto: RandomFoodSingle
entities:
- - uid: 23070
+ - uid: 23090
components:
- pos: 11.5,7.5
parent: 2
type: Transform
- - uid: 23071
+ - uid: 23091
components:
- pos: 67.5,10.5
parent: 2
type: Transform
- proto: RandomInstruments
entities:
- - uid: 23072
+ - uid: 23092
components:
- pos: -0.5,-8.5
parent: 2
type: Transform
- - uid: 23073
+ - uid: 23093
components:
- pos: 54.5,-28.5
parent: 2
type: Transform
- proto: RandomPainting
entities:
- - uid: 23074
+ - uid: 23094
components:
- pos: 49.5,48.5
parent: 2
type: Transform
- proto: RandomPosterAny
entities:
- - uid: 23075
+ - uid: 23095
+ components:
+ - pos: -17.5,-16.5
+ parent: 2
+ type: Transform
+ - uid: 23096
components:
- pos: -52.5,-61.5
parent: 2
type: Transform
- - uid: 23076
+ - uid: 23097
components:
- pos: -55.5,-57.5
parent: 2
type: Transform
- - uid: 23077
+ - uid: 23098
components:
- pos: -57.5,-57.5
parent: 2
type: Transform
- proto: RandomPosterContraband
entities:
- - uid: 23078
+ - uid: 23099
components:
- pos: 7.5,-68.5
parent: 2
type: Transform
- - uid: 23079
+ - uid: 23100
components:
- pos: -30.5,-45.5
parent: 2
type: Transform
- - uid: 23080
+ - uid: 23101
components:
- pos: -24.5,-50.5
parent: 2
type: Transform
- - uid: 23081
+ - uid: 23102
components:
- pos: -26.5,-50.5
parent: 2
type: Transform
- - uid: 23082
+ - uid: 23103
components:
- pos: -5.5,-94.5
parent: 2
type: Transform
- - uid: 23083
+ - uid: 23104
components:
- pos: -36.5,-92.5
parent: 2
type: Transform
- - uid: 23084
+ - uid: 23105
components:
- pos: -48.5,-73.5
parent: 2
type: Transform
- - uid: 23085
+ - uid: 23106
components:
- pos: -41.5,-65.5
parent: 2
type: Transform
- - uid: 23086
+ - uid: 23107
components:
- pos: -39.5,-88.5
parent: 2
type: Transform
- - uid: 23087
+ - uid: 23108
components:
- pos: -20.5,-94.5
parent: 2
type: Transform
- - uid: 23088
+ - uid: 23109
components:
- pos: -29.5,-53.5
parent: 2
type: Transform
- - uid: 23089
+ - uid: 23110
components:
- pos: -11.5,-99.5
parent: 2
type: Transform
- - uid: 23090
+ - uid: 23111
components:
- pos: -27.5,-95.5
parent: 2
type: Transform
- - uid: 23091
+ - uid: 23112
components:
- pos: -15.5,14.5
parent: 2
type: Transform
- - uid: 23092
+ - uid: 23113
components:
- pos: -9.5,14.5
parent: 2
type: Transform
- - uid: 23093
+ - uid: 23114
components:
- pos: 11.5,-54.5
parent: 2
type: Transform
- - uid: 23094
- components:
- - pos: 15.5,-46.5
- parent: 2
- type: Transform
- - uid: 23095
+ - uid: 23115
components:
- pos: 11.5,-48.5
parent: 2
type: Transform
- - uid: 23096
+ - uid: 23116
components:
- pos: -24.5,-43.5
parent: 2
type: Transform
- - uid: 23097
+ - uid: 23117
components:
- pos: -25.5,-37.5
parent: 2
type: Transform
- - uid: 23098
+ - uid: 23118
components:
- pos: -13.5,-32.5
parent: 2
type: Transform
- - uid: 23099
+ - uid: 23119
components:
- pos: -15.5,-30.5
parent: 2
type: Transform
- - uid: 23100
- components:
- - pos: 16.5,-49.5
- parent: 2
- type: Transform
- - uid: 23101
+ - uid: 23120
components:
- pos: 11.5,-48.5
parent: 2
type: Transform
- - uid: 23102
+ - uid: 23121
components:
- pos: 12.5,-54.5
parent: 2
type: Transform
- - uid: 23103
+ - uid: 23122
components:
- pos: 13.5,-63.5
parent: 2
type: Transform
- - uid: 23104
+ - uid: 23123
components:
- pos: 41.5,-50.5
parent: 2
type: Transform
- - uid: 23105
+ - uid: 23124
components:
- pos: 37.5,-47.5
parent: 2
type: Transform
- - uid: 23106
+ - uid: 23125
components:
- pos: 61.5,-16.5
parent: 2
type: Transform
- - uid: 23107
+ - uid: 23126
components:
- pos: 55.5,1.5
parent: 2
type: Transform
- - uid: 23108
+ - uid: 23127
components:
- pos: 54.5,30.5
parent: 2
type: Transform
- - uid: 23109
+ - uid: 23128
components:
- pos: 52.5,30.5
parent: 2
type: Transform
- - uid: 23110
+ - uid: 23129
components:
- pos: 59.5,30.5
parent: 2
type: Transform
- - uid: 23111
+ - uid: 23130
components:
- pos: 60.5,27.5
parent: 2
type: Transform
- - uid: 23112
+ - uid: 23131
components:
- pos: 12.5,-13.5
parent: 2
type: Transform
- - uid: 23113
+ - uid: 23132
components:
- pos: 8.5,-13.5
parent: 2
type: Transform
- - uid: 23114
+ - uid: 23133
components:
- pos: -9.5,-94.5
parent: 2
type: Transform
- - uid: 23115
+ - uid: 23134
components:
- pos: -17.5,-95.5
parent: 2
type: Transform
- - uid: 23116
+ - uid: 23135
components:
- pos: -24.5,-94.5
parent: 2
type: Transform
- - uid: 23117
+ - uid: 23136
components:
- pos: -11.5,63.5
parent: 2
type: Transform
- - uid: 23118
+ - uid: 23137
components:
- pos: 53.5,-66.5
parent: 2
type: Transform
- - uid: 23119
+ - uid: 23138
components:
- pos: 6.5,-28.5
parent: 2
type: Transform
- - uid: 23120
+ - uid: 23139
components:
- pos: 1.5,-29.5
parent: 2
type: Transform
- - uid: 23121
+ - uid: 23140
components:
- pos: 52.5,-34.5
parent: 2
type: Transform
- - uid: 23122
+ - uid: 23141
components:
- pos: 59.5,-27.5
parent: 2
type: Transform
- - uid: 23123
+ - uid: 23142
components:
- pos: 44.5,-32.5
parent: 2
type: Transform
- - uid: 23124
+ - uid: 23143
components:
- pos: 69.5,-62.5
parent: 2
type: Transform
- - uid: 23125
+ - uid: 23144
components:
- pos: 58.5,-61.5
parent: 2
type: Transform
- - uid: 23126
+ - uid: 23145
components:
- pos: 57.5,-67.5
parent: 2
type: Transform
- - uid: 23127
+ - uid: 23146
components:
- pos: 48.5,-64.5
parent: 2
type: Transform
- - uid: 23128
+ - uid: 23147
components:
- pos: -29.5,-62.5
parent: 2
type: Transform
- - uid: 23129
+ - uid: 23148
components:
- rot: 3.141592653589793 rad
pos: 15.5,-78.5
parent: 2
type: Transform
- - uid: 23130
+ - uid: 23149
components:
- rot: 3.141592653589793 rad
pos: 15.5,-88.5
parent: 2
type: Transform
- - uid: 23131
+ - uid: 23150
components:
- pos: 4.5,-72.5
parent: 2
type: Transform
- proto: RandomPosterLegit
entities:
- - uid: 23132
+ - uid: 23151
components:
- pos: -40.5,-7.5
parent: 2
type: Transform
- - uid: 23133
+ - uid: 23152
components:
- pos: -24.5,14.5
parent: 2
type: Transform
- - uid: 23134
+ - uid: 23153
components:
- pos: -21.5,-40.5
parent: 2
type: Transform
- - uid: 23135
+ - uid: 23154
components:
- rot: 3.141592653589793 rad
pos: -19.5,32.5
parent: 2
type: Transform
- - uid: 23136
+ - uid: 23155
components:
- rot: 3.141592653589793 rad
pos: -13.5,35.5
parent: 2
type: Transform
- - uid: 23137
+ - uid: 23156
components:
- rot: 3.141592653589793 rad
pos: -8.5,47.5
parent: 2
type: Transform
- - uid: 23138
+ - uid: 23157
components:
- rot: 3.141592653589793 rad
pos: 23.5,-74.5
parent: 2
type: Transform
- - uid: 23139
+ - uid: 23158
components:
- pos: 50.5,-80.5
parent: 2
type: Transform
- - uid: 23140
+ - uid: 23159
components:
- pos: 49.5,-70.5
parent: 2
type: Transform
- - uid: 23141
+ - uid: 23160
components:
- rot: 3.141592653589793 rad
pos: -1.5,55.5
parent: 2
type: Transform
- - uid: 23142
+ - uid: 23161
components:
- rot: 3.141592653589793 rad
pos: -7.5,60.5
parent: 2
type: Transform
- - uid: 23143
+ - uid: 23162
components:
- rot: 3.141592653589793 rad
pos: -5.5,60.5
parent: 2
type: Transform
- - uid: 23144
+ - uid: 23163
components:
- rot: 3.141592653589793 rad
pos: -14.5,58.5
parent: 2
type: Transform
- - uid: 23145
+ - uid: 23164
components:
- rot: 3.141592653589793 rad
pos: -20.5,57.5
parent: 2
type: Transform
- - uid: 23146
+ - uid: 23165
components:
- rot: 3.141592653589793 rad
pos: -23.5,60.5
parent: 2
type: Transform
- - uid: 23147
+ - uid: 23166
components:
- rot: 3.141592653589793 rad
pos: -23.5,67.5
parent: 2
type: Transform
- - uid: 23148
+ - uid: 23167
components:
- rot: 3.141592653589793 rad
pos: -11.5,65.5
parent: 2
type: Transform
- - uid: 23149
+ - uid: 23168
components:
- pos: 2.5,-28.5
parent: 2
type: Transform
- - uid: 23150
+ - uid: 23169
components:
- pos: 32.5,-91.5
parent: 2
type: Transform
- - uid: 23151
+ - uid: 23170
components:
- pos: 66.5,-62.5
parent: 2
type: Transform
- - uid: 23152
+ - uid: 23171
components:
- pos: 34.5,-57.5
parent: 2
type: Transform
- - uid: 23153
+ - uid: 23172
components:
- pos: 41.5,-65.5
parent: 2
type: Transform
- - uid: 23154
+ - uid: 23173
components:
- pos: -44.5,12.5
parent: 2
type: Transform
- - uid: 23155
+ - uid: 23174
components:
- pos: 28.5,-79.5
parent: 2
type: Transform
- - uid: 23156
+ - uid: 23175
components:
- rot: 3.141592653589793 rad
pos: 31.5,-70.5
parent: 2
type: Transform
- - uid: 23157
+ - uid: 23176
components:
- pos: 5.5,-75.5
parent: 2
type: Transform
+ - uid: 23177
+ components:
+ - pos: -17.5,-36.5
+ parent: 2
+ type: Transform
- proto: RandomSnacks
entities:
- - uid: 23158
+ - uid: 23178
components:
- rot: -1.5707963267948966 rad
pos: 37.5,-50.5
@@ -152474,416 +152616,416 @@ entities:
type: Transform
- proto: RandomSoap
entities:
- - uid: 23159
+ - uid: 23179
components:
- pos: -6.5,-68.5
parent: 2
type: Transform
- - uid: 23160
+ - uid: 23180
components:
- pos: -50.5,62.5
parent: 2
type: Transform
- - uid: 23161
+ - uid: 23181
components:
- pos: -56.5,-62.5
parent: 2
type: Transform
- proto: RandomSpawner
entities:
- - uid: 23162
+ - uid: 23182
components:
- pos: 34.5,15.5
parent: 2
type: Transform
- - uid: 23163
+ - uid: 23183
components:
- pos: 16.5,-65.5
parent: 2
type: Transform
- - uid: 23164
+ - uid: 23184
components:
- pos: -5.5,-26.5
parent: 2
type: Transform
- - uid: 23165
+ - uid: 23185
components:
- pos: 25.5,7.5
parent: 2
type: Transform
- - uid: 23166
+ - uid: 23186
components:
- pos: -6.5,-74.5
parent: 2
type: Transform
- - uid: 23167
+ - uid: 23187
components:
- pos: 35.5,-72.5
parent: 2
type: Transform
- - uid: 23168
+ - uid: 23188
components:
- pos: 22.5,17.5
parent: 2
type: Transform
- - uid: 23169
+ - uid: 23189
components:
- pos: 5.5,13.5
parent: 2
type: Transform
- - uid: 23170
+ - uid: 23190
components:
- pos: 6.5,15.5
parent: 2
type: Transform
- - uid: 23171
+ - uid: 23191
components:
- pos: 17.5,0.5
parent: 2
type: Transform
- - uid: 23172
+ - uid: 23192
components:
- pos: 33.5,0.5
parent: 2
type: Transform
- - uid: 23173
+ - uid: 23193
components:
- pos: 32.5,-2.5
parent: 2
type: Transform
- - uid: 23174
+ - uid: 23194
components:
- pos: 26.5,-11.5
parent: 2
type: Transform
- - uid: 23175
+ - uid: 23195
components:
- pos: -5.5,-32.5
parent: 2
type: Transform
- - uid: 23176
+ - uid: 23196
components:
- pos: -2.5,-46.5
parent: 2
type: Transform
- - uid: 23177
+ - uid: 23197
components:
- pos: 35.5,-17.5
parent: 2
type: Transform
- - uid: 23178
+ - uid: 23198
components:
- pos: 49.5,32.5
parent: 2
type: Transform
- - uid: 23179
+ - uid: 23199
components:
- pos: 49.5,33.5
parent: 2
type: Transform
- - uid: 23180
+ - uid: 23200
components:
- pos: 50.5,32.5
parent: 2
type: Transform
- - uid: 23181
+ - uid: 23201
components:
- pos: 48.5,32.5
parent: 2
type: Transform
- - uid: 23182
+ - uid: 23202
components:
- pos: 50.5,33.5
parent: 2
type: Transform
- - uid: 23183
+ - uid: 23203
components:
- pos: 54.5,-12.5
parent: 2
type: Transform
- - uid: 23184
+ - uid: 23204
components:
- pos: 52.5,-6.5
parent: 2
type: Transform
- - uid: 23185
+ - uid: 23205
components:
- pos: 52.5,0.5
parent: 2
type: Transform
- - uid: 23186
+ - uid: 23206
components:
- pos: 50.5,-45.5
parent: 2
type: Transform
- - uid: 23187
+ - uid: 23207
components:
- pos: 42.5,-49.5
parent: 2
type: Transform
- - uid: 23188
+ - uid: 23208
components:
- pos: -4.5,-0.5
parent: 2
type: Transform
- - uid: 23189
+ - uid: 23209
components:
- pos: 7.5,2.5
parent: 2
type: Transform
- - uid: 23190
+ - uid: 23210
components:
- pos: 17.5,-41.5
parent: 2
type: Transform
- - uid: 23191
+ - uid: 23211
components:
- pos: -7.5,-53.5
parent: 2
type: Transform
- - uid: 23192
+ - uid: 23212
components:
- rot: 3.141592653589793 rad
pos: 29.5,-72.5
parent: 2
type: Transform
- - uid: 23193
+ - uid: 23213
components:
- pos: -37.5,-6.5
parent: 2
type: Transform
- - uid: 23194
+ - uid: 23214
components:
- pos: -25.5,-67.5
parent: 2
type: Transform
- - uid: 23195
+ - uid: 23215
components:
- pos: -24.5,-53.5
parent: 2
type: Transform
- - uid: 23196
+ - uid: 23216
components:
- pos: -26.5,-46.5
parent: 2
type: Transform
- - uid: 23197
+ - uid: 23217
components:
- pos: -20.5,-29.5
parent: 2
type: Transform
- - uid: 23198
+ - uid: 23218
components:
- pos: -32.5,-23.5
parent: 2
type: Transform
- - uid: 23199
+ - uid: 23219
components:
- pos: -23.5,-13.5
parent: 2
type: Transform
- - uid: 23200
+ - uid: 23220
components:
- pos: -53.5,-18.5
parent: 2
type: Transform
- - uid: 23201
+ - uid: 23221
components:
- pos: -32.5,-34.5
parent: 2
type: Transform
- - uid: 23202
+ - uid: 23222
components:
- pos: -33.5,-46.5
parent: 2
type: Transform
- - uid: 23203
+ - uid: 23223
components:
- pos: -37.5,-76.5
parent: 2
type: Transform
- - uid: 23204
+ - uid: 23224
components:
- pos: -46.5,-78.5
parent: 2
type: Transform
- - uid: 23205
+ - uid: 23225
components:
- pos: -45.5,-73.5
parent: 2
type: Transform
- - uid: 23206
+ - uid: 23226
components:
- pos: -52.5,-74.5
parent: 2
type: Transform
- - uid: 23207
+ - uid: 23227
components:
- pos: -45.5,-28.5
parent: 2
type: Transform
- - uid: 23208
+ - uid: 23228
components:
- pos: -57.5,-33.5
parent: 2
type: Transform
- - uid: 23209
+ - uid: 23229
components:
- pos: -31.5,-51.5
parent: 2
type: Transform
- - uid: 23210
+ - uid: 23230
components:
- rot: 3.141592653589793 rad
pos: -47.5,11.5
parent: 2
type: Transform
- - uid: 23211
+ - uid: 23231
components:
- rot: 3.141592653589793 rad
pos: -45.5,6.5
parent: 2
type: Transform
- - uid: 23212
+ - uid: 23232
components:
- rot: 3.141592653589793 rad
pos: -46.5,3.5
parent: 2
type: Transform
- - uid: 23213
+ - uid: 23233
components:
- rot: 3.141592653589793 rad
pos: -34.5,0.5
parent: 2
type: Transform
- - uid: 23214
+ - uid: 23234
components:
- rot: 3.141592653589793 rad
pos: 25.5,-71.5
parent: 2
type: Transform
- - uid: 23215
+ - uid: 23235
components:
- rot: 3.141592653589793 rad
pos: 17.5,-84.5
parent: 2
type: Transform
- - uid: 23216
+ - uid: 23236
components:
- pos: 48.5,33.5
parent: 2
type: Transform
- - uid: 23217
+ - uid: 23237
components:
- pos: 22.5,7.5
parent: 2
type: Transform
- - uid: 23218
+ - uid: 23238
components:
- pos: 26.5,-18.5
parent: 2
type: Transform
- - uid: 23219
+ - uid: 23239
components:
- rot: -1.5707963267948966 rad
pos: 14.5,-27.5
parent: 2
type: Transform
- - uid: 23220
+ - uid: 23240
components:
- pos: -15.5,36.5
parent: 2
type: Transform
- - uid: 23221
+ - uid: 23241
components:
- pos: -19.5,26.5
parent: 2
type: Transform
- - uid: 23222
+ - uid: 23242
components:
- pos: -17.5,44.5
parent: 2
type: Transform
- - uid: 23223
+ - uid: 23243
components:
- pos: -14.5,45.5
parent: 2
type: Transform
- - uid: 23224
+ - uid: 23244
components:
- pos: 0.5,32.5
parent: 2
type: Transform
- - uid: 23225
+ - uid: 23245
components:
- pos: 53.5,36.5
parent: 2
type: Transform
- - uid: 23226
+ - uid: 23246
components:
- pos: 65.5,22.5
parent: 2
type: Transform
- - uid: 23227
+ - uid: 23247
components:
- pos: -23.5,-98.5
parent: 2
type: Transform
- - uid: 23228
+ - uid: 23248
components:
- pos: -33.5,-97.5
parent: 2
type: Transform
- - uid: 23229
+ - uid: 23249
components:
- pos: -41.5,-89.5
parent: 2
type: Transform
- - uid: 23230
+ - uid: 23250
components:
- pos: -43.5,-91.5
parent: 2
type: Transform
- - uid: 23231
+ - uid: 23251
components:
- pos: -10.5,-97.5
parent: 2
type: Transform
- - uid: 23232
+ - uid: 23252
components:
- pos: -8.5,-85.5
parent: 2
type: Transform
- - uid: 23233
+ - uid: 23253
components:
- rot: 3.141592653589793 rad
pos: 29.5,-81.5
parent: 2
type: Transform
- - uid: 23234
+ - uid: 23254
components:
- rot: 3.141592653589793 rad
pos: 30.5,-84.5
parent: 2
type: Transform
- - uid: 23235
+ - uid: 23255
components:
- rot: 3.141592653589793 rad
pos: 49.5,-88.5
parent: 2
type: Transform
- - uid: 23236
+ - uid: 23256
components:
- rot: 3.141592653589793 rad
pos: 48.5,-80.5
parent: 2
type: Transform
- - uid: 23237
+ - uid: 23257
components:
- pos: 13.5,7.5
parent: 2
type: Transform
- - uid: 23238
+ - uid: 23258
components:
- rot: 3.141592653589793 rad
pos: 49.5,-73.5
@@ -152891,408 +153033,408 @@ entities:
type: Transform
- proto: RCD
entities:
- - uid: 23239
+ - uid: 23259
components:
- pos: -35.581818,-15.369191
parent: 2
type: Transform
- proto: RCDAmmo
entities:
- - uid: 23240
+ - uid: 23260
components:
- pos: -35.753693,-15.681691
parent: 2
type: Transform
- proto: ReagentContainerFlour
entities:
- - uid: 23241
+ - uid: 23261
components:
- pos: 2.337051,6.9047713
parent: 2
type: Transform
- - uid: 23242
+ - uid: 23262
components:
- pos: 2.696426,6.7797713
parent: 2
type: Transform
- - uid: 23243
+ - uid: 23263
components:
- pos: 2.399551,6.5610213
parent: 2
type: Transform
- - uid: 23244
+ - uid: 23264
components:
- pos: 54.086075,18.83411
parent: 2
type: Transform
- - uid: 23245
+ - uid: 23265
components:
- pos: 53.9767,18.568485
parent: 2
type: Transform
- - uid: 23246
+ - uid: 23266
components:
- pos: 54.2892,18.568485
parent: 2
type: Transform
- proto: ReagentContainerRice
entities:
- - uid: 23247
+ - uid: 23267
components:
- pos: -22.276304,44.96307
parent: 2
type: Transform
- - uid: 23248
+ - uid: 23268
components:
- pos: -22.620054,44.759945
parent: 2
type: Transform
- proto: ReagentContainerSugar
entities:
- - uid: 23249
+ - uid: 23269
components:
- pos: 4.6055,7.306335
parent: 2
type: Transform
- proto: Recycler
entities:
- - uid: 23250
+ - uid: 23270
components:
- rot: 1.5707963267948966 rad
pos: 17.5,-55.5
parent: 2
type: Transform
- links:
- - 25841
+ - 25860
type: DeviceLinkSink
- proto: ReinforcedPlasmaWindow
entities:
- - uid: 23251
+ - uid: 23271
components:
- rot: 3.141592653589793 rad
pos: -57.5,-87.5
parent: 2
type: Transform
- - uid: 23252
+ - uid: 23272
components:
- pos: -42.5,-37.5
parent: 2
type: Transform
- - uid: 23253
+ - uid: 23273
components:
- rot: -1.5707963267948966 rad
pos: -77.5,-43.5
parent: 2
type: Transform
- - uid: 23254
+ - uid: 23274
components:
- rot: -1.5707963267948966 rad
pos: -76.5,-43.5
parent: 2
type: Transform
- - uid: 23255
+ - uid: 23275
components:
- rot: -1.5707963267948966 rad
pos: -75.5,-43.5
parent: 2
type: Transform
- - uid: 23256
+ - uid: 23276
components:
- rot: -1.5707963267948966 rad
pos: -74.5,-42.5
parent: 2
type: Transform
- - uid: 23257
+ - uid: 23277
components:
- rot: 3.141592653589793 rad
pos: 28.5,-20.5
parent: 2
type: Transform
- - uid: 23258
+ - uid: 23278
components:
- pos: -23.5,2.5
parent: 2
type: Transform
- - uid: 23259
+ - uid: 23279
components:
- pos: 71.5,-27.5
parent: 2
type: Transform
- - uid: 23260
+ - uid: 23280
components:
- pos: 29.5,26.5
parent: 2
type: Transform
- - uid: 23261
+ - uid: 23281
components:
- pos: -15.5,2.5
parent: 2
type: Transform
- - uid: 23262
+ - uid: 23282
components:
- rot: 3.141592653589793 rad
pos: 23.5,-20.5
parent: 2
type: Transform
- - uid: 23263
+ - uid: 23283
components:
- pos: 29.5,24.5
parent: 2
type: Transform
- - uid: 23264
+ - uid: 23284
components:
- rot: 3.141592653589793 rad
pos: 25.5,-20.5
parent: 2
type: Transform
- - uid: 23265
+ - uid: 23285
components:
- pos: -19.5,5.5
parent: 2
type: Transform
- - uid: 23266
+ - uid: 23286
components:
- rot: 3.141592653589793 rad
pos: 22.5,-20.5
parent: 2
type: Transform
- - uid: 23267
+ - uid: 23287
components:
- rot: 3.141592653589793 rad
pos: 27.5,-20.5
parent: 2
type: Transform
- - uid: 23268
+ - uid: 23288
components:
- rot: 3.141592653589793 rad
pos: 6.5,-20.5
parent: 2
type: Transform
- - uid: 23269
+ - uid: 23289
components:
- rot: 3.141592653589793 rad
pos: 26.5,-20.5
parent: 2
type: Transform
- - uid: 23270
+ - uid: 23290
components:
- rot: 3.141592653589793 rad
pos: 24.5,-20.5
parent: 2
type: Transform
- - uid: 23271
+ - uid: 23291
components:
- pos: 66.5,-39.5
parent: 2
type: Transform
- - uid: 23272
+ - uid: 23292
components:
- pos: -41.5,-35.5
parent: 2
type: Transform
- - uid: 23273
+ - uid: 23293
components:
- pos: -41.5,-34.5
parent: 2
type: Transform
- - uid: 23274
+ - uid: 23294
components:
- pos: -56.5,-11.5
parent: 2
type: Transform
- - uid: 23275
+ - uid: 23295
components:
- pos: -56.5,-12.5
parent: 2
type: Transform
- - uid: 23276
+ - uid: 23296
components:
- pos: -56.5,-13.5
parent: 2
type: Transform
- - uid: 23277
+ - uid: 23297
components:
- pos: -56.5,-14.5
parent: 2
type: Transform
- - uid: 23278
+ - uid: 23298
components:
- pos: -68.5,-22.5
parent: 2
type: Transform
- - uid: 23279
+ - uid: 23299
components:
- pos: -67.5,-22.5
parent: 2
type: Transform
- - uid: 23280
+ - uid: 23300
components:
- pos: -66.5,-22.5
parent: 2
type: Transform
- - uid: 23281
+ - uid: 23301
components:
- pos: -65.5,-22.5
parent: 2
type: Transform
- - uid: 23282
+ - uid: 23302
components:
- pos: -64.5,-22.5
parent: 2
type: Transform
- - uid: 23283
+ - uid: 23303
components:
- pos: -47.5,-54.5
parent: 2
type: Transform
- - uid: 23284
+ - uid: 23304
components:
- pos: -47.5,-50.5
parent: 2
type: Transform
- - uid: 23285
+ - uid: 23305
components:
- pos: -47.5,-52.5
parent: 2
type: Transform
- - uid: 23286
+ - uid: 23306
components:
- pos: -47.5,-48.5
parent: 2
type: Transform
- - uid: 23287
+ - uid: 23307
components:
- pos: -47.5,-46.5
parent: 2
type: Transform
- - uid: 23288
+ - uid: 23308
components:
- pos: -47.5,-44.5
parent: 2
type: Transform
- - uid: 23289
+ - uid: 23309
components:
- pos: -47.5,-42.5
parent: 2
type: Transform
- - uid: 23290
+ - uid: 23310
components:
- pos: -49.5,-87.5
parent: 2
type: Transform
- - uid: 23291
+ - uid: 23311
components:
- pos: -0.5,60.5
parent: 2
type: Transform
- - uid: 23292
+ - uid: 23312
components:
- pos: -2.5,60.5
parent: 2
type: Transform
- - uid: 23293
+ - uid: 23313
components:
- pos: 5.5,69.5
parent: 2
type: Transform
- - uid: 23294
+ - uid: 23314
components:
- pos: -8.5,69.5
parent: 2
type: Transform
- - uid: 23295
+ - uid: 23315
components:
- pos: -56.5,-15.5
parent: 2
type: Transform
- - uid: 23296
+ - uid: 23316
components:
- pos: 68.5,-39.5
parent: 2
type: Transform
- - uid: 23297
+ - uid: 23317
components:
- pos: 73.5,-30.5
parent: 2
type: Transform
- - uid: 23298
+ - uid: 23318
components:
- pos: 73.5,-27.5
parent: 2
type: Transform
- - uid: 23299
+ - uid: 23319
components:
- pos: 69.5,-36.5
parent: 2
type: Transform
- - uid: 23300
+ - uid: 23320
components:
- pos: 69.5,-38.5
parent: 2
type: Transform
- - uid: 23301
+ - uid: 23321
components:
- pos: -44.5,-37.5
parent: 2
type: Transform
- - uid: 23302
+ - uid: 23322
components:
- pos: 71.5,-30.5
parent: 2
type: Transform
- - uid: 23303
+ - uid: 23323
components:
- rot: 3.141592653589793 rad
pos: 6.5,-22.5
parent: 2
type: Transform
- - uid: 23304
+ - uid: 23324
components:
- rot: 3.141592653589793 rad
pos: 6.5,-23.5
parent: 2
type: Transform
- - uid: 23305
+ - uid: 23325
components:
- pos: 9.5,-18.5
parent: 2
type: Transform
- - uid: 23306
+ - uid: 23326
components:
- rot: 3.141592653589793 rad
pos: 6.5,-19.5
parent: 2
type: Transform
- - uid: 23307
+ - uid: 23327
components:
- pos: 67.5,-32.5
parent: 2
type: Transform
- - uid: 23308
+ - uid: 23328
components:
- rot: -1.5707963267948966 rad
pos: -75.5,-39.5
parent: 2
type: Transform
- - uid: 23309
+ - uid: 23329
components:
- rot: -1.5707963267948966 rad
pos: -74.5,-40.5
parent: 2
type: Transform
- - uid: 23310
+ - uid: 23330
components:
- rot: -1.5707963267948966 rad
pos: -77.5,-39.5
parent: 2
type: Transform
- - uid: 23311
+ - uid: 23331
components:
- rot: 1.5707963267948966 rad
pos: -51.5,-89.5
parent: 2
type: Transform
- - uid: 23312
+ - uid: 23332
components:
- rot: 1.5707963267948966 rad
pos: -51.5,-85.5
@@ -153300,36 +153442,36 @@ entities:
type: Transform
- proto: ReinforcedPlasmaWindowDiagonal
entities:
- - uid: 23313
+ - uid: 23333
components:
- pos: -50.5,-88.5
parent: 2
type: Transform
- - uid: 23314
+ - uid: 23334
components:
- rot: 1.5707963267948966 rad
pos: -50.5,-86.5
parent: 2
type: Transform
- - uid: 23315
+ - uid: 23335
components:
- rot: 3.141592653589793 rad
pos: -49.5,-88.5
parent: 2
type: Transform
- - uid: 23316
+ - uid: 23336
components:
- rot: -1.5707963267948966 rad
pos: -50.5,-85.5
parent: 2
type: Transform
- - uid: 23317
+ - uid: 23337
components:
- rot: 3.141592653589793 rad
pos: -50.5,-89.5
parent: 2
type: Transform
- - uid: 23318
+ - uid: 23338
components:
- rot: -1.5707963267948966 rad
pos: -49.5,-86.5
@@ -153337,3293 +153479,3304 @@ entities:
type: Transform
- proto: ReinforcedWindow
entities:
- - uid: 23319
+ - uid: 23339
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 8.5,-45.5
+ parent: 2
+ type: Transform
+ - uid: 23340
components:
- rot: 3.141592653589793 rad
pos: -22.5,-91.5
parent: 2
type: Transform
- - uid: 23320
+ - uid: 23341
components:
- pos: -19.5,-91.5
parent: 2
type: Transform
- - uid: 23321
+ - uid: 23342
components:
- pos: -27.5,-90.5
parent: 2
type: Transform
- - uid: 23322
+ - uid: 23343
components:
- rot: 1.5707963267948966 rad
pos: 59.5,57.5
parent: 2
type: Transform
- - uid: 23323
+ - uid: 23344
components:
- rot: 1.5707963267948966 rad
pos: 49.5,57.5
parent: 2
type: Transform
- - uid: 23324
+ - uid: 23345
components:
- rot: 1.5707963267948966 rad
pos: 49.5,56.5
parent: 2
type: Transform
- - uid: 23325
+ - uid: 23346
components:
- rot: 1.5707963267948966 rad
pos: 59.5,58.5
parent: 2
type: Transform
- - uid: 23326
+ - uid: 23347
components:
- rot: 1.5707963267948966 rad
pos: 49.5,58.5
parent: 2
type: Transform
- - uid: 23327
+ - uid: 23348
components:
- rot: 3.141592653589793 rad
pos: -21.5,-91.5
parent: 2
type: Transform
- - uid: 23328
+ - uid: 23349
components:
- rot: -1.5707963267948966 rad
pos: -6.5,-13.5
parent: 2
type: Transform
- - uid: 23329
+ - uid: 23350
components:
- rot: -1.5707963267948966 rad
pos: -6.5,-12.5
parent: 2
type: Transform
- - uid: 23330
+ - uid: 23351
components:
- pos: -51.5,-21.5
parent: 2
type: Transform
- - uid: 23331
+ - uid: 23352
components:
- rot: -1.5707963267948966 rad
pos: 26.5,-40.5
parent: 2
type: Transform
- - uid: 23332
+ - uid: 23353
components:
- rot: 3.141592653589793 rad
pos: 20.5,-34.5
parent: 2
type: Transform
- - uid: 23333
+ - uid: 23354
components:
- pos: -61.5,-35.5
parent: 2
type: Transform
- - uid: 23334
+ - uid: 23355
components:
- rot: 1.5707963267948966 rad
pos: -13.5,9.5
parent: 2
type: Transform
- - uid: 23335
+ - uid: 23356
components:
- rot: 1.5707963267948966 rad
pos: -64.5,-39.5
parent: 2
type: Transform
- - uid: 23336
+ - uid: 23357
components:
- rot: 1.5707963267948966 rad
pos: -74.5,-35.5
parent: 2
type: Transform
- - uid: 23337
+ - uid: 23358
components:
- rot: 1.5707963267948966 rad
pos: -74.5,-34.5
parent: 2
type: Transform
- - uid: 23338
+ - uid: 23359
components:
- rot: 1.5707963267948966 rad
pos: -64.5,-42.5
parent: 2
type: Transform
- - uid: 23339
+ - uid: 23360
components:
- rot: 1.5707963267948966 rad
pos: -64.5,-41.5
parent: 2
type: Transform
- - uid: 23340
+ - uid: 23361
components:
- rot: 1.5707963267948966 rad
pos: -64.5,-40.5
parent: 2
type: Transform
- - uid: 23341
+ - uid: 23362
components:
- pos: -64.5,-43.5
parent: 2
type: Transform
- - uid: 23342
+ - uid: 23363
components:
- pos: -76.5,-32.5
parent: 2
type: Transform
- - uid: 23343
+ - uid: 23364
components:
- rot: 1.5707963267948966 rad
pos: -7.5,13.5
parent: 2
type: Transform
- - uid: 23344
+ - uid: 23365
components:
- rot: 1.5707963267948966 rad
pos: 40.5,-74.5
parent: 2
type: Transform
- - uid: 23345
+ - uid: 23366
components:
- rot: 1.5707963267948966 rad
pos: 39.5,-74.5
parent: 2
type: Transform
- - uid: 23346
+ - uid: 23367
components:
- rot: 1.5707963267948966 rad
pos: 38.5,-74.5
parent: 2
type: Transform
- - uid: 23347
+ - uid: 23368
components:
- rot: 3.141592653589793 rad
pos: 5.5,18.5
parent: 2
type: Transform
- - uid: 23348
+ - uid: 23369
components:
- rot: -1.5707963267948966 rad
pos: -46.5,45.5
parent: 2
type: Transform
- - uid: 23349
+ - uid: 23370
components:
- rot: -1.5707963267948966 rad
pos: -47.5,45.5
parent: 2
type: Transform
- - uid: 23350
+ - uid: 23371
components:
- pos: 69.5,-42.5
parent: 2
type: Transform
- - uid: 23351
+ - uid: 23372
components:
- pos: 68.5,-42.5
parent: 2
type: Transform
- - uid: 23352
+ - uid: 23373
components:
- pos: 78.5,-45.5
parent: 2
type: Transform
- - uid: 23353
+ - uid: 23374
components:
- pos: 3.5,-39.5
parent: 2
type: Transform
- - uid: 23354
+ - uid: 23375
components:
- pos: 70.5,-42.5
parent: 2
type: Transform
- - uid: 23355
+ - uid: 23376
components:
- rot: 3.141592653589793 rad
pos: 28.5,-62.5
parent: 2
type: Transform
- - uid: 23356
+ - uid: 23377
components:
- rot: 3.141592653589793 rad
pos: 31.5,-64.5
parent: 2
type: Transform
- - uid: 23357
+ - uid: 23378
components:
- rot: 3.141592653589793 rad
pos: 22.5,-55.5
parent: 2
type: Transform
- - uid: 23358
+ - uid: 23379
components:
- rot: 3.141592653589793 rad
pos: 33.5,-63.5
parent: 2
type: Transform
- - uid: 23359
+ - uid: 23380
components:
- pos: 32.5,-9.5
parent: 2
type: Transform
- - uid: 23360
+ - uid: 23381
components:
- pos: 3.5,-28.5
parent: 2
type: Transform
- - uid: 23361
+ - uid: 23382
components:
- rot: -1.5707963267948966 rad
pos: -15.5,-77.5
parent: 2
type: Transform
- - uid: 23362
+ - uid: 23383
components:
- pos: 19.5,-15.5
parent: 2
type: Transform
- - uid: 23363
+ - uid: 23384
components:
- pos: -18.5,-89.5
parent: 2
type: Transform
- - uid: 23364
+ - uid: 23385
components:
- rot: 3.141592653589793 rad
pos: 31.5,-33.5
parent: 2
type: Transform
- - uid: 23365
+ - uid: 23386
components:
- pos: 7.5,-59.5
parent: 2
type: Transform
- - uid: 23366
+ - uid: 23387
components:
- rot: 3.141592653589793 rad
pos: -9.5,-76.5
parent: 2
type: Transform
- - uid: 23367
+ - uid: 23388
components:
- rot: -1.5707963267948966 rad
pos: 35.5,4.5
parent: 2
type: Transform
- - uid: 23368
+ - uid: 23389
components:
- pos: -26.5,-91.5
parent: 2
type: Transform
- - uid: 23369
+ - uid: 23390
components:
- pos: -1.5,-35.5
parent: 2
type: Transform
- - uid: 23370
+ - uid: 23391
components:
- rot: 1.5707963267948966 rad
pos: 39.5,52.5
parent: 2
type: Transform
- - uid: 23371
+ - uid: 23392
components:
- rot: 1.5707963267948966 rad
pos: 23.5,-46.5
parent: 2
type: Transform
- - uid: 23372
+ - uid: 23393
components:
- pos: -17.5,-1.5
parent: 2
type: Transform
- - uid: 23373
+ - uid: 23394
components:
- rot: -1.5707963267948966 rad
pos: -13.5,-11.5
parent: 2
type: Transform
- - uid: 23374
+ - uid: 23395
components:
- pos: -45.5,-50.5
parent: 2
type: Transform
- - uid: 23375
+ - uid: 23396
components:
- rot: -1.5707963267948966 rad
pos: -14.5,-77.5
parent: 2
type: Transform
- - uid: 23376
+ - uid: 23397
components:
- pos: 20.5,-35.5
parent: 2
type: Transform
- - uid: 23377
+ - uid: 23398
components:
- pos: 20.5,-36.5
parent: 2
type: Transform
- - uid: 23378
+ - uid: 23399
components:
- pos: 43.5,11.5
parent: 2
type: Transform
- - uid: 23379
+ - uid: 23400
components:
- pos: -16.5,-1.5
parent: 2
type: Transform
- - uid: 23380
+ - uid: 23401
components:
- rot: -1.5707963267948966 rad
pos: 5.5,-44.5
parent: 2
type: Transform
- - uid: 23381
+ - uid: 23402
components:
- rot: -1.5707963267948966 rad
pos: -10.5,-11.5
parent: 2
type: Transform
- - uid: 23382
+ - uid: 23403
components:
- pos: 17.5,18.5
parent: 2
type: Transform
- - uid: 23383
+ - uid: 23404
components:
- pos: -1.5,-32.5
parent: 2
type: Transform
- - uid: 23384
+ - uid: 23405
components:
- pos: 23.5,-12.5
parent: 2
type: Transform
- - uid: 23385
+ - uid: 23406
components:
- pos: -1.5,-34.5
parent: 2
type: Transform
- - uid: 23386
+ - uid: 23407
components:
- rot: -1.5707963267948966 rad
pos: 32.5,9.5
parent: 2
type: Transform
- - uid: 23387
+ - uid: 23408
components:
- rot: 3.141592653589793 rad
pos: 28.5,13.5
parent: 2
type: Transform
- - uid: 23388
+ - uid: 23409
components:
- pos: 31.5,-38.5
parent: 2
type: Transform
- - uid: 23389
+ - uid: 23410
components:
- pos: 18.5,-38.5
parent: 2
type: Transform
- - uid: 23390
+ - uid: 23411
components:
- rot: 3.141592653589793 rad
pos: 10.5,18.5
parent: 2
type: Transform
- - uid: 23391
+ - uid: 23412
components:
- rot: 3.141592653589793 rad
pos: 21.5,-55.5
parent: 2
type: Transform
- - uid: 23392
+ - uid: 23413
components:
- rot: 3.141592653589793 rad
pos: 33.5,-15.5
parent: 2
type: Transform
- - uid: 23393
+ - uid: 23414
components:
- rot: 3.141592653589793 rad
pos: 37.5,-35.5
parent: 2
type: Transform
- - uid: 23394
+ - uid: 23415
components:
- rot: -1.5707963267948966 rad
pos: 34.5,9.5
parent: 2
type: Transform
- - uid: 23395
+ - uid: 23416
components:
- pos: 43.5,7.5
parent: 2
type: Transform
- - uid: 23396
+ - uid: 23417
components:
- pos: 23.5,-11.5
parent: 2
type: Transform
- - uid: 23397
+ - uid: 23418
components:
- pos: 35.5,18.5
parent: 2
type: Transform
- - uid: 23398
+ - uid: 23419
components:
- rot: 3.141592653589793 rad
pos: 39.5,5.5
parent: 2
type: Transform
- - uid: 23399
+ - uid: 23420
components:
- rot: 3.141592653589793 rad
pos: 34.5,13.5
parent: 2
type: Transform
- - uid: 23400
+ - uid: 23421
components:
- rot: 3.141592653589793 rad
pos: 31.5,-15.5
parent: 2
type: Transform
- - uid: 23401
+ - uid: 23422
components:
- pos: 37.5,-21.5
parent: 2
type: Transform
- - uid: 23402
+ - uid: 23423
components:
- pos: 37.5,-22.5
parent: 2
type: Transform
- - uid: 23403
+ - uid: 23424
components:
- pos: 43.5,10.5
parent: 2
type: Transform
- - uid: 23404
+ - uid: 23425
components:
- pos: 17.5,-34.5
parent: 2
type: Transform
- - uid: 23405
+ - uid: 23426
components:
- pos: 17.5,-35.5
parent: 2
type: Transform
- - uid: 23406
+ - uid: 23427
components:
- pos: 17.5,-36.5
parent: 2
type: Transform
- - uid: 23407
+ - uid: 23428
components:
- pos: 19.5,-38.5
parent: 2
type: Transform
- - uid: 23408
+ - uid: 23429
components:
- pos: 32.5,-38.5
parent: 2
type: Transform
- - uid: 23409
+ - uid: 23430
components:
- pos: 33.5,-34.5
parent: 2
type: Transform
- - uid: 23410
+ - uid: 23431
components:
- pos: 33.5,-36.5
parent: 2
type: Transform
- - uid: 23411
+ - uid: 23432
components:
- pos: 33.5,-35.5
parent: 2
type: Transform
- - uid: 23412
+ - uid: 23433
components:
- rot: -1.5707963267948966 rad
pos: -9.5,-11.5
parent: 2
type: Transform
- - uid: 23413
+ - uid: 23434
components:
- pos: 48.5,-0.5
parent: 2
type: Transform
- - uid: 23414
+ - uid: 23435
components:
- rot: -1.5707963267948966 rad
pos: -26.5,-10.5
parent: 2
type: Transform
- - uid: 23415
+ - uid: 23436
components:
- rot: 1.5707963267948966 rad
pos: -26.5,-13.5
parent: 2
type: Transform
- - uid: 23416
+ - uid: 23437
components:
- rot: -1.5707963267948966 rad
pos: 4.5,-44.5
parent: 2
type: Transform
- - uid: 23417
+ - uid: 23438
components:
- pos: 12.5,-33.5
parent: 2
type: Transform
- - uid: 23418
+ - uid: 23439
components:
- pos: 12.5,-32.5
parent: 2
type: Transform
- - uid: 23419
+ - uid: 23440
components:
- pos: 2.5,-39.5
parent: 2
type: Transform
- - uid: 23420
+ - uid: 23441
components:
- pos: -18.5,-58.5
parent: 2
type: Transform
- - uid: 23421
+ - uid: 23442
components:
- pos: -20.5,-58.5
parent: 2
type: Transform
- - uid: 23422
+ - uid: 23443
components:
- pos: 27.5,22.5
parent: 2
type: Transform
- - uid: 23423
+ - uid: 23444
components:
- pos: -27.5,-89.5
parent: 2
type: Transform
- - uid: 23424
+ - uid: 23445
components:
- pos: -48.5,-81.5
parent: 2
type: Transform
- - uid: 23425
+ - uid: 23446
components:
- pos: -48.5,-82.5
parent: 2
type: Transform
- - uid: 23426
+ - uid: 23447
components:
- pos: 21.5,-15.5
parent: 2
type: Transform
- - uid: 23427
+ - uid: 23448
components:
- pos: -22.5,-3.5
parent: 2
type: Transform
- - uid: 23428
+ - uid: 23449
components:
- pos: -16.5,-3.5
parent: 2
type: Transform
- - uid: 23429
+ - uid: 23450
components:
- pos: 9.5,13.5
parent: 2
type: Transform
- - uid: 23430
+ - uid: 23451
components:
- rot: -1.5707963267948966 rad
pos: 27.5,20.5
parent: 2
type: Transform
- - uid: 23431
+ - uid: 23452
components:
- rot: -1.5707963267948966 rad
pos: -12.5,-11.5
parent: 2
type: Transform
- - uid: 23432
+ - uid: 23453
components:
- rot: 3.141592653589793 rad
pos: 31.5,13.5
parent: 2
type: Transform
- - uid: 23433
+ - uid: 23454
components:
- rot: -1.5707963267948966 rad
pos: -0.5,-82.5
parent: 2
type: Transform
- - uid: 23434
+ - uid: 23455
components:
- rot: 3.141592653589793 rad
pos: 39.5,8.5
parent: 2
type: Transform
- - uid: 23435
+ - uid: 23456
components:
- pos: 42.5,-28.5
parent: 2
type: Transform
- - uid: 23436
+ - uid: 23457
components:
- pos: 16.5,-68.5
parent: 2
type: Transform
- - uid: 23437
+ - uid: 23458
components:
- rot: 3.141592653589793 rad
pos: -7.5,-76.5
parent: 2
type: Transform
- - uid: 23438
+ - uid: 23459
components:
- rot: -1.5707963267948966 rad
pos: -8.5,-11.5
parent: 2
type: Transform
- - uid: 23439
+ - uid: 23460
components:
- pos: -27.5,-88.5
parent: 2
type: Transform
- - uid: 23440
+ - uid: 23461
components:
- rot: -1.5707963267948966 rad
pos: -26.5,-11.5
parent: 2
type: Transform
- - uid: 23441
+ - uid: 23462
components:
- pos: -1.5,-31.5
parent: 2
type: Transform
- - uid: 23442
+ - uid: 23463
components:
- pos: 1.5,-30.5
parent: 2
type: Transform
- - uid: 23443
+ - uid: 23464
components:
- rot: 3.141592653589793 rad
pos: 3.5,-44.5
parent: 2
type: Transform
- - uid: 23444
+ - uid: 23465
components:
- rot: -1.5707963267948966 rad
pos: 29.5,9.5
parent: 2
type: Transform
- - uid: 23445
+ - uid: 23466
components:
- rot: -1.5707963267948966 rad
pos: 7.5,18.5
parent: 2
type: Transform
- - uid: 23446
+ - uid: 23467
components:
- pos: -21.5,-3.5
parent: 2
type: Transform
- - uid: 23447
+ - uid: 23468
components:
- pos: 37.5,-36.5
parent: 2
type: Transform
- - uid: 23448
+ - uid: 23469
components:
- rot: -1.5707963267948966 rad
pos: 1.5,-74.5
parent: 2
type: Transform
- - uid: 23449
+ - uid: 23470
components:
- pos: -29.5,45.5
parent: 2
type: Transform
- - uid: 23450
+ - uid: 23471
components:
- pos: 9.5,14.5
parent: 2
type: Transform
- - uid: 23451
+ - uid: 23472
components:
- pos: -18.5,-90.5
parent: 2
type: Transform
- - uid: 23452
+ - uid: 23473
components:
- pos: -24.5,-91.5
parent: 2
type: Transform
- - uid: 23453
+ - uid: 23474
components:
- rot: -1.5707963267948966 rad
pos: 35.5,7.5
parent: 2
type: Transform
- - uid: 23454
+ - uid: 23475
components:
- rot: -1.5707963267948966 rad
pos: -31.5,-79.5
parent: 2
type: Transform
- - uid: 23455
+ - uid: 23476
components:
- rot: -1.5707963267948966 rad
pos: -31.5,-77.5
parent: 2
type: Transform
- - uid: 23456
+ - uid: 23477
components:
- pos: 15.5,18.5
parent: 2
type: Transform
- - uid: 23457
+ - uid: 23478
components:
- pos: 5.5,-28.5
parent: 2
type: Transform
- - uid: 23458
+ - uid: 23479
components:
- pos: 18.5,-65.5
parent: 2
type: Transform
- - uid: 23459
+ - uid: 23480
components:
- rot: 3.141592653589793 rad
pos: 28.5,-63.5
parent: 2
type: Transform
- - uid: 23460
+ - uid: 23481
components:
- pos: -45.5,-49.5
parent: 2
type: Transform
- - uid: 23461
+ - uid: 23482
components:
- pos: 7.5,-61.5
parent: 2
type: Transform
- - uid: 23462
+ - uid: 23483
components:
- rot: 3.141592653589793 rad
pos: 12.5,18.5
parent: 2
type: Transform
- - uid: 23463
+ - uid: 23484
components:
- pos: 1.5,-31.5
parent: 2
type: Transform
- - uid: 23464
+ - uid: 23485
components:
- rot: -1.5707963267948966 rad
pos: -13.5,37.5
parent: 2
type: Transform
- - uid: 23465
+ - uid: 23486
components:
- pos: 15.5,-68.5
parent: 2
type: Transform
- - uid: 23466
+ - uid: 23487
components:
- rot: 3.141592653589793 rad
pos: 30.5,-64.5
parent: 2
type: Transform
- - uid: 23467
+ - uid: 23488
components:
- rot: 3.141592653589793 rad
pos: 33.5,-62.5
parent: 2
type: Transform
- - uid: 23468
+ - uid: 23489
components:
- rot: -1.5707963267948966 rad
pos: -2.5,-82.5
parent: 2
type: Transform
- - uid: 23469
+ - uid: 23490
components:
- pos: -18.5,-88.5
parent: 2
type: Transform
- - uid: 23470
+ - uid: 23491
components:
- rot: -1.5707963267948966 rad
pos: 1.5,-47.5
parent: 2
type: Transform
- - uid: 23471
+ - uid: 23492
components:
- pos: -1.5,-33.5
parent: 2
type: Transform
- - uid: 23472
+ - uid: 23493
components:
- pos: -22.5,-1.5
parent: 2
type: Transform
- - uid: 23473
+ - uid: 23494
components:
- pos: -21.5,-1.5
parent: 2
type: Transform
- - uid: 23474
+ - uid: 23495
components:
- pos: -17.5,-3.5
parent: 2
type: Transform
- - uid: 23475
+ - uid: 23496
components:
- pos: 12.5,-34.5
parent: 2
type: Transform
- - uid: 23476
+ - uid: 23497
components:
- rot: 3.141592653589793 rad
pos: 20.5,-55.5
parent: 2
type: Transform
- - uid: 23477
+ - uid: 23498
components:
- pos: 18.5,-66.5
parent: 2
type: Transform
- - uid: 23478
+ - uid: 23499
components:
- pos: 42.5,-23.5
parent: 2
type: Transform
- - uid: 23479
+ - uid: 23500
components:
- pos: 41.5,-28.5
parent: 2
type: Transform
- - uid: 23480
+ - uid: 23501
components:
- pos: 41.5,-23.5
parent: 2
type: Transform
- - uid: 23481
+ - uid: 23502
components:
- pos: -2.5,42.5
parent: 2
type: Transform
- - uid: 23482
+ - uid: 23503
components:
- pos: 6.5,25.5
parent: 2
type: Transform
- - uid: 23483
+ - uid: 23504
components:
- pos: 2.5,25.5
parent: 2
type: Transform
- - uid: 23484
+ - uid: 23505
components:
- pos: 18.5,32.5
parent: 2
type: Transform
- - uid: 23485
+ - uid: 23506
components:
- pos: 18.5,33.5
parent: 2
type: Transform
- - uid: 23486
+ - uid: 23507
components:
- rot: -1.5707963267948966 rad
pos: 7.5,35.5
parent: 2
type: Transform
- - uid: 23487
+ - uid: 23508
components:
- pos: 4.5,25.5
parent: 2
type: Transform
- - uid: 23488
+ - uid: 23509
components:
- rot: -1.5707963267948966 rad
pos: 36.5,24.5
parent: 2
type: Transform
- - uid: 23489
+ - uid: 23510
components:
- rot: -1.5707963267948966 rad
pos: 38.5,24.5
parent: 2
type: Transform
- - uid: 23490
+ - uid: 23511
components:
- rot: -1.5707963267948966 rad
pos: 40.5,24.5
parent: 2
type: Transform
- - uid: 23491
+ - uid: 23512
components:
- rot: 3.141592653589793 rad
pos: 52.5,14.5
parent: 2
type: Transform
- - uid: 23492
+ - uid: 23513
components:
- rot: 3.141592653589793 rad
pos: 53.5,14.5
parent: 2
type: Transform
- - uid: 23493
+ - uid: 23514
components:
- rot: 3.141592653589793 rad
pos: 54.5,14.5
parent: 2
type: Transform
- - uid: 23494
+ - uid: 23515
components:
- rot: 3.141592653589793 rad
pos: 51.5,13.5
parent: 2
type: Transform
- - uid: 23495
+ - uid: 23516
components:
- rot: 3.141592653589793 rad
pos: 51.5,11.5
parent: 2
type: Transform
- - uid: 23496
+ - uid: 23517
components:
- rot: 3.141592653589793 rad
pos: 52.5,10.5
parent: 2
type: Transform
- - uid: 23497
+ - uid: 23518
components:
- rot: 3.141592653589793 rad
pos: 54.5,10.5
parent: 2
type: Transform
- - uid: 23498
+ - uid: 23519
components:
- rot: 3.141592653589793 rad
pos: 55.5,11.5
parent: 2
type: Transform
- - uid: 23499
+ - uid: 23520
components:
- rot: 3.141592653589793 rad
pos: 55.5,12.5
parent: 2
type: Transform
- - uid: 23500
+ - uid: 23521
components:
- rot: 3.141592653589793 rad
pos: 55.5,13.5
parent: 2
type: Transform
- - uid: 23501
+ - uid: 23522
components:
- pos: 46.5,9.5
parent: 2
type: Transform
- - uid: 23502
+ - uid: 23523
components:
- rot: -1.5707963267948966 rad
pos: 42.5,24.5
parent: 2
type: Transform
- - uid: 23503
+ - uid: 23524
components:
- rot: -1.5707963267948966 rad
pos: 43.5,5.5
parent: 2
type: Transform
- - uid: 23504
+ - uid: 23525
components:
- pos: 24.5,-58.5
parent: 2
type: Transform
- - uid: 23505
+ - uid: 23526
components:
- pos: 24.5,-59.5
parent: 2
type: Transform
- - uid: 23506
+ - uid: 23527
components:
- pos: 66.5,25.5
parent: 2
type: Transform
- - uid: 23507
+ - uid: 23528
components:
- pos: 66.5,23.5
parent: 2
type: Transform
- - uid: 23508
+ - uid: 23529
components:
- pos: 64.5,27.5
parent: 2
type: Transform
- - uid: 23509
+ - uid: 23530
components:
- pos: 62.5,27.5
parent: 2
type: Transform
- - uid: 23510
+ - uid: 23531
components:
- rot: 1.5707963267948966 rad
pos: 68.5,-6.5
parent: 2
type: Transform
- - uid: 23511
+ - uid: 23532
components:
- pos: 60.5,-4.5
parent: 2
type: Transform
- - uid: 23512
+ - uid: 23533
components:
- rot: 1.5707963267948966 rad
pos: 68.5,-12.5
parent: 2
type: Transform
- - uid: 23513
+ - uid: 23534
components:
- rot: 1.5707963267948966 rad
pos: 68.5,-10.5
parent: 2
type: Transform
- - uid: 23514
+ - uid: 23535
components:
- rot: 1.5707963267948966 rad
pos: 68.5,-4.5
parent: 2
type: Transform
- - uid: 23515
+ - uid: 23536
components:
- pos: 59.5,-15.5
parent: 2
type: Transform
- - uid: 23516
+ - uid: 23537
components:
- pos: 58.5,-15.5
parent: 2
type: Transform
- - uid: 23517
+ - uid: 23538
components:
- pos: 56.5,-15.5
parent: 2
type: Transform
- - uid: 23518
+ - uid: 23539
components:
- pos: 55.5,-15.5
parent: 2
type: Transform
- - uid: 23519
+ - uid: 23540
components:
- pos: 63.5,-26.5
parent: 2
type: Transform
- - uid: 23520
+ - uid: 23541
components:
- pos: 63.5,-24.5
parent: 2
type: Transform
- - uid: 23521
+ - uid: 23542
components:
- pos: 61.5,-22.5
parent: 2
type: Transform
- - uid: 23522
+ - uid: 23543
components:
- pos: 61.5,-20.5
parent: 2
type: Transform
- - uid: 23523
+ - uid: 23544
components:
- pos: 63.5,-18.5
parent: 2
type: Transform
- - uid: 23524
+ - uid: 23545
components:
- pos: 61.5,-24.5
parent: 2
type: Transform
- - uid: 23525
+ - uid: 23546
components:
- pos: 63.5,-22.5
parent: 2
type: Transform
- - uid: 23526
+ - uid: 23547
components:
- pos: 63.5,-20.5
parent: 2
type: Transform
- - uid: 23527
+ - uid: 23548
components:
- pos: 61.5,-18.5
parent: 2
type: Transform
- - uid: 23528
+ - uid: 23549
components:
- rot: 1.5707963267948966 rad
pos: 68.5,-2.5
parent: 2
type: Transform
- - uid: 23529
+ - uid: 23550
components:
- pos: 64.5,-37.5
parent: 2
type: Transform
- - uid: 23530
+ - uid: 23551
components:
- pos: 78.5,-38.5
parent: 2
type: Transform
- - uid: 23531
+ - uid: 23552
components:
- pos: 77.5,-32.5
parent: 2
type: Transform
- - uid: 23532
+ - uid: 23553
components:
- pos: 78.5,-32.5
parent: 2
type: Transform
- - uid: 23533
+ - uid: 23554
components:
- pos: 77.5,-38.5
parent: 2
type: Transform
- - uid: 23534
+ - uid: 23555
components:
- rot: -1.5707963267948966 rad
pos: 42.5,-31.5
parent: 2
type: Transform
- - uid: 23535
+ - uid: 23556
components:
- pos: 56.5,-46.5
parent: 2
type: Transform
- - uid: 23536
+ - uid: 23557
components:
- pos: 61.5,-56.5
parent: 2
type: Transform
- - uid: 23537
+ - uid: 23558
components:
- pos: 61.5,-50.5
parent: 2
type: Transform
- - uid: 23538
+ - uid: 23559
components:
- pos: 63.5,-50.5
parent: 2
type: Transform
- - uid: 23539
+ - uid: 23560
components:
- pos: 62.5,-56.5
parent: 2
type: Transform
- - uid: 23540
+ - uid: 23561
components:
- pos: 58.5,-52.5
parent: 2
type: Transform
- - uid: 23541
+ - uid: 23562
components:
- pos: 58.5,-51.5
parent: 2
type: Transform
- - uid: 23542
+ - uid: 23563
components:
- pos: 66.5,-52.5
parent: 2
type: Transform
- - uid: 23543
+ - uid: 23564
components:
- pos: 66.5,-51.5
parent: 2
type: Transform
- - uid: 23544
+ - uid: 23565
components:
- pos: 63.5,-56.5
parent: 2
type: Transform
- - uid: 23545
+ - uid: 23566
components:
- pos: 54.5,-51.5
parent: 2
type: Transform
- - uid: 23546
+ - uid: 23567
components:
- pos: 54.5,-52.5
parent: 2
type: Transform
- - uid: 23547
+ - uid: 23568
components:
- pos: 54.5,-53.5
parent: 2
type: Transform
- - uid: 23548
+ - uid: 23569
components:
- pos: 50.5,-31.5
parent: 2
type: Transform
- - uid: 23549
+ - uid: 23570
components:
- pos: 51.5,-31.5
parent: 2
type: Transform
- - uid: 23550
+ - uid: 23571
components:
- pos: 79.5,-35.5
parent: 2
type: Transform
- - uid: 23551
+ - uid: 23572
components:
- pos: 58.5,-25.5
parent: 2
type: Transform
- - uid: 23552
+ - uid: 23573
components:
- pos: 76.5,-35.5
parent: 2
type: Transform
- - uid: 23553
+ - uid: 23574
components:
- pos: 77.5,-35.5
parent: 2
type: Transform
- - uid: 23554
+ - uid: 23575
components:
- pos: 78.5,-35.5
parent: 2
type: Transform
- - uid: 23555
+ - uid: 23576
components:
- pos: 78.5,-46.5
parent: 2
type: Transform
- - uid: 23556
+ - uid: 23577
components:
- pos: -45.5,-51.5
parent: 2
type: Transform
- - uid: 23557
+ - uid: 23578
components:
- pos: 49.5,-59.5
parent: 2
type: Transform
- - uid: 23558
+ - uid: 23579
components:
- pos: 50.5,-59.5
parent: 2
type: Transform
- - uid: 23559
+ - uid: 23580
components:
- pos: 52.5,-61.5
parent: 2
type: Transform
- - uid: 23560
+ - uid: 23581
components:
- pos: 49.5,-62.5
parent: 2
type: Transform
- - uid: 23561
+ - uid: 23582
components:
- pos: 51.5,-62.5
parent: 2
type: Transform
- - uid: 23562
+ - uid: 23583
components:
- pos: 43.5,-69.5
parent: 2
type: Transform
- - uid: 23563
+ - uid: 23584
components:
- pos: 42.5,-69.5
parent: 2
type: Transform
- - uid: 23564
+ - uid: 23585
components:
- pos: 35.5,-69.5
parent: 2
type: Transform
- - uid: 23565
+ - uid: 23586
components:
- pos: 44.5,-69.5
parent: 2
type: Transform
- - uid: 23566
+ - uid: 23587
components:
- rot: 1.5707963267948966 rad
pos: 20.5,-44.5
parent: 2
type: Transform
- - uid: 23567
+ - uid: 23588
components:
- pos: -40.5,-12.5
parent: 2
type: Transform
- - uid: 23568
+ - uid: 23589
components:
- pos: -40.5,-9.5
parent: 2
type: Transform
- - uid: 23569
+ - uid: 23590
components:
- pos: -33.5,-17.5
parent: 2
type: Transform
- - uid: 23570
+ - uid: 23591
components:
- pos: -33.5,-15.5
parent: 2
type: Transform
- - uid: 23571
+ - uid: 23592
components:
- rot: -1.5707963267948966 rad
pos: -30.5,-12.5
parent: 2
type: Transform
- - uid: 23572
+ - uid: 23593
components:
- rot: -1.5707963267948966 rad
pos: -30.5,-13.5
parent: 2
type: Transform
- - uid: 23573
+ - uid: 23594
components:
- pos: -26.5,-9.5
parent: 2
type: Transform
- - uid: 23574
+ - uid: 23595
components:
- rot: -1.5707963267948966 rad
pos: -21.5,-35.5
parent: 2
type: Transform
- - uid: 23575
+ - uid: 23596
components:
- pos: 58.5,-59.5
parent: 2
type: Transform
- - uid: 23576
+ - uid: 23597
components:
- pos: 58.5,-60.5
parent: 2
type: Transform
- - uid: 23577
+ - uid: 23598
components:
- pos: 54.5,-25.5
parent: 2
type: Transform
- - uid: 23578
+ - uid: 23599
components:
- rot: 3.141592653589793 rad
pos: 56.5,-55.5
parent: 2
type: Transform
- - uid: 23579
+ - uid: 23600
components:
- rot: 3.141592653589793 rad
pos: 59.5,-54.5
parent: 2
type: Transform
- - uid: 23580
+ - uid: 23601
components:
- rot: 3.141592653589793 rad
pos: 65.5,-54.5
parent: 2
type: Transform
- - uid: 23581
+ - uid: 23602
components:
- rot: 1.5707963267948966 rad
pos: 44.5,-85.5
parent: 2
type: Transform
- - uid: 23582
+ - uid: 23603
components:
- pos: 41.5,-74.5
parent: 2
type: Transform
- - uid: 23583
+ - uid: 23604
components:
- rot: -1.5707963267948966 rad
pos: 37.5,-74.5
parent: 2
type: Transform
- - uid: 23584
+ - uid: 23605
components:
- pos: 37.5,-66.5
parent: 2
type: Transform
- - uid: 23585
+ - uid: 23606
components:
- pos: 36.5,-69.5
parent: 2
type: Transform
- - uid: 23586
+ - uid: 23607
components:
- pos: 34.5,-69.5
parent: 2
type: Transform
- - uid: 23587
+ - uid: 23608
components:
- pos: 37.5,-64.5
parent: 2
type: Transform
- - uid: 23588
+ - uid: 23609
components:
- rot: 1.5707963267948966 rad
pos: 34.5,-86.5
parent: 2
type: Transform
- - uid: 23589
+ - uid: 23610
components:
- rot: 1.5707963267948966 rad
pos: 34.5,-87.5
parent: 2
type: Transform
- - uid: 23590
+ - uid: 23611
components:
- rot: 1.5707963267948966 rad
pos: 46.5,-78.5
parent: 2
type: Transform
- - uid: 23591
+ - uid: 23612
components:
- rot: 1.5707963267948966 rad
pos: 16.5,-88.5
parent: 2
type: Transform
- - uid: 23592
+ - uid: 23613
components:
- rot: 1.5707963267948966 rad
pos: 13.5,-78.5
parent: 2
type: Transform
- - uid: 23593
+ - uid: 23614
components:
- rot: 1.5707963267948966 rad
pos: 14.5,-88.5
parent: 2
type: Transform
- - uid: 23594
+ - uid: 23615
components:
- rot: 1.5707963267948966 rad
pos: 17.5,-78.5
parent: 2
type: Transform
- - uid: 23595
+ - uid: 23616
components:
- rot: 1.5707963267948966 rad
pos: 44.5,-84.5
parent: 2
type: Transform
- - uid: 23596
+ - uid: 23617
components:
- pos: 17.5,-74.5
parent: 2
type: Transform
- - uid: 23597
+ - uid: 23618
components:
- pos: 18.5,-74.5
parent: 2
type: Transform
- - uid: 23598
+ - uid: 23619
components:
- pos: 14.5,-74.5
parent: 2
type: Transform
- - uid: 23599
+ - uid: 23620
components:
- pos: 17.5,-71.5
parent: 2
type: Transform
- - uid: 23600
+ - uid: 23621
components:
- rot: 1.5707963267948966 rad
pos: 44.5,-86.5
parent: 2
type: Transform
- - uid: 23601
+ - uid: 23622
components:
- pos: 15.5,-71.5
parent: 2
type: Transform
- - uid: 23602
+ - uid: 23623
components:
- pos: 15.5,-74.5
parent: 2
type: Transform
- - uid: 23603
+ - uid: 23624
components:
- rot: 3.141592653589793 rad
pos: 26.5,-67.5
parent: 2
type: Transform
- - uid: 23604
+ - uid: 23625
components:
- rot: 3.141592653589793 rad
pos: 28.5,-90.5
parent: 2
type: Transform
- - uid: 23605
+ - uid: 23626
components:
- rot: 3.141592653589793 rad
pos: 24.5,-80.5
parent: 2
type: Transform
- - uid: 23606
+ - uid: 23627
components:
- pos: 14.5,-71.5
parent: 2
type: Transform
- - uid: 23607
+ - uid: 23628
components:
- pos: 18.5,-71.5
parent: 2
type: Transform
- - uid: 23608
+ - uid: 23629
components:
- rot: 3.141592653589793 rad
pos: 25.5,-80.5
parent: 2
type: Transform
- - uid: 23609
+ - uid: 23630
components:
- rot: 1.5707963267948966 rad
pos: 46.5,-79.5
parent: 2
type: Transform
- - uid: 23610
+ - uid: 23631
components:
- rot: 1.5707963267948966 rad
pos: 13.5,-88.5
parent: 2
type: Transform
- - uid: 23611
+ - uid: 23632
components:
- rot: 1.5707963267948966 rad
pos: 17.5,-88.5
parent: 2
type: Transform
- - uid: 23612
+ - uid: 23633
components:
- rot: 1.5707963267948966 rad
pos: 32.5,-77.5
parent: 2
type: Transform
- - uid: 23613
+ - uid: 23634
components:
- rot: 1.5707963267948966 rad
pos: 16.5,-78.5
parent: 2
type: Transform
- - uid: 23614
+ - uid: 23635
components:
- rot: 1.5707963267948966 rad
pos: 14.5,-78.5
parent: 2
type: Transform
- - uid: 23615
+ - uid: 23636
components:
- rot: 3.141592653589793 rad
pos: 25.5,-67.5
parent: 2
type: Transform
- - uid: 23616
+ - uid: 23637
components:
- rot: -1.5707963267948966 rad
pos: 50.5,-64.5
parent: 2
type: Transform
- - uid: 23617
+ - uid: 23638
components:
- pos: -33.5,-9.5
parent: 2
type: Transform
- - uid: 23618
+ - uid: 23639
components:
- pos: -33.5,-12.5
parent: 2
type: Transform
- - uid: 23619
+ - uid: 23640
components:
- pos: -45.5,-47.5
parent: 2
type: Transform
- - uid: 23620
+ - uid: 23641
components:
- rot: -1.5707963267948966 rad
pos: -37.5,-14.5
parent: 2
type: Transform
- - uid: 23621
+ - uid: 23642
components:
- pos: -45.5,-48.5
parent: 2
type: Transform
- - uid: 23622
+ - uid: 23643
components:
- pos: 78.5,-44.5
parent: 2
type: Transform
- - uid: 23623
+ - uid: 23644
components:
- pos: 68.5,-56.5
parent: 2
type: Transform
- - uid: 23624
+ - uid: 23645
components:
- pos: -43.5,-13.5
parent: 2
type: Transform
- - uid: 23625
+ - uid: 23646
components:
- pos: 48.5,7.5
parent: 2
type: Transform
- - uid: 23626
+ - uid: 23647
components:
- pos: 70.5,-54.5
parent: 2
type: Transform
- - uid: 23627
+ - uid: 23648
components:
- pos: 61.5,-61.5
parent: 2
type: Transform
- - uid: 23628
+ - uid: 23649
components:
- pos: 62.5,-61.5
parent: 2
type: Transform
- - uid: 23629
+ - uid: 23650
components:
- pos: 63.5,-61.5
parent: 2
type: Transform
- - uid: 23630
+ - uid: 23651
components:
- pos: 71.5,-64.5
parent: 2
type: Transform
- - uid: 23631
+ - uid: 23652
components:
- pos: -38.5,-37.5
parent: 2
type: Transform
- - uid: 23632
+ - uid: 23653
components:
- pos: -37.5,-37.5
parent: 2
type: Transform
- - uid: 23633
+ - uid: 23654
components:
- pos: -46.5,-7.5
parent: 2
type: Transform
- - uid: 23634
+ - uid: 23655
components:
- pos: -45.5,-18.5
parent: 2
type: Transform
- - uid: 23635
+ - uid: 23656
components:
- rot: 3.141592653589793 rad
pos: -49.5,-19.5
parent: 2
type: Transform
- - uid: 23636
+ - uid: 23657
components:
- pos: -61.5,-31.5
parent: 2
type: Transform
- - uid: 23637
+ - uid: 23658
components:
- rot: 3.141592653589793 rad
pos: -61.5,-44.5
parent: 2
type: Transform
- - uid: 23638
+ - uid: 23659
components:
- pos: -45.5,-43.5
parent: 2
type: Transform
- - uid: 23639
+ - uid: 23660
components:
- pos: -45.5,-45.5
parent: 2
type: Transform
- - uid: 23640
+ - uid: 23661
components:
- pos: -45.5,-46.5
parent: 2
type: Transform
- - uid: 23641
+ - uid: 23662
components:
- pos: -45.5,-44.5
parent: 2
type: Transform
- - uid: 23642
+ - uid: 23663
components:
- pos: -45.5,-42.5
parent: 2
type: Transform
- - uid: 23643
+ - uid: 23664
components:
- pos: -35.5,-58.5
parent: 2
type: Transform
- - uid: 23644
+ - uid: 23665
components:
- rot: 3.141592653589793 rad
pos: -38.5,-59.5
parent: 2
type: Transform
- - uid: 23645
+ - uid: 23666
components:
- pos: -44.5,-58.5
parent: 2
type: Transform
- - uid: 23646
+ - uid: 23667
components:
- pos: -42.5,-58.5
parent: 2
type: Transform
- - uid: 23647
+ - uid: 23668
components:
- pos: -41.5,-58.5
parent: 2
type: Transform
- - uid: 23648
+ - uid: 23669
components:
- rot: 3.141592653589793 rad
pos: -73.5,-27.5
parent: 2
type: Transform
- - uid: 23649
+ - uid: 23670
components:
- pos: -62.5,-35.5
parent: 2
type: Transform
- - uid: 23650
+ - uid: 23671
components:
- rot: 1.5707963267948966 rad
pos: -52.5,-60.5
parent: 2
type: Transform
- - uid: 23651
+ - uid: 23672
components:
- rot: 1.5707963267948966 rad
pos: -58.5,-60.5
parent: 2
type: Transform
- - uid: 23652
+ - uid: 23673
components:
- rot: 1.5707963267948966 rad
pos: -58.5,-59.5
parent: 2
type: Transform
- - uid: 23653
+ - uid: 23674
components:
- pos: -58.5,-52.5
parent: 2
type: Transform
- - uid: 23654
+ - uid: 23675
components:
- pos: -58.5,-51.5
parent: 2
type: Transform
- - uid: 23655
+ - uid: 23676
components:
- pos: -58.5,-48.5
parent: 2
type: Transform
- - uid: 23656
+ - uid: 23677
components:
- pos: -58.5,-47.5
parent: 2
type: Transform
- - uid: 23657
+ - uid: 23678
components:
- pos: -41.5,-62.5
parent: 2
type: Transform
- - uid: 23658
+ - uid: 23679
components:
- pos: -40.5,-62.5
parent: 2
type: Transform
- - uid: 23659
+ - uid: 23680
components:
- rot: -1.5707963267948966 rad
pos: -55.5,-83.5
parent: 2
type: Transform
- - uid: 23660
+ - uid: 23681
components:
- rot: -1.5707963267948966 rad
pos: -53.5,-83.5
parent: 2
type: Transform
- - uid: 23661
+ - uid: 23682
components:
- pos: -57.5,-75.5
parent: 2
type: Transform
- - uid: 23662
+ - uid: 23683
components:
- pos: -57.5,-76.5
parent: 2
type: Transform
- - uid: 23663
+ - uid: 23684
components:
- pos: -57.5,-77.5
parent: 2
type: Transform
- - uid: 23664
+ - uid: 23685
components:
- pos: -48.5,-83.5
parent: 2
type: Transform
- - uid: 23665
+ - uid: 23686
components:
- pos: -35.5,-82.5
parent: 2
type: Transform
- - uid: 23666
+ - uid: 23687
components:
- pos: -35.5,-81.5
parent: 2
type: Transform
- - uid: 23667
+ - uid: 23688
components:
- pos: -35.5,-77.5
parent: 2
type: Transform
- - uid: 23668
+ - uid: 23689
components:
- pos: -35.5,-83.5
parent: 2
type: Transform
- - uid: 23669
+ - uid: 23690
components:
- pos: -35.5,-76.5
parent: 2
type: Transform
- - uid: 23670
+ - uid: 23691
components:
- pos: -35.5,-78.5
parent: 2
type: Transform
- - uid: 23671
+ - uid: 23692
components:
- pos: -40.5,-86.5
parent: 2
type: Transform
- - uid: 23672
+ - uid: 23693
components:
- pos: -43.5,-86.5
parent: 2
type: Transform
- - uid: 23673
+ - uid: 23694
components:
- rot: 3.141592653589793 rad
pos: 19.5,-33.5
parent: 2
type: Transform
- - uid: 23674
+ - uid: 23695
components:
- rot: -1.5707963267948966 rad
pos: -46.5,-38.5
parent: 2
type: Transform
- - uid: 23675
+ - uid: 23696
components:
- rot: -1.5707963267948966 rad
pos: 8.5,35.5
parent: 2
type: Transform
- - uid: 23676
+ - uid: 23697
components:
- rot: 3.141592653589793 rad
pos: 59.5,56.5
parent: 2
type: Transform
- - uid: 23677
+ - uid: 23698
components:
- rot: -1.5707963267948966 rad
pos: -7.5,28.5
parent: 2
type: Transform
- - uid: 23678
+ - uid: 23699
components:
- rot: -1.5707963267948966 rad
pos: -7.5,27.5
parent: 2
type: Transform
- - uid: 23679
+ - uid: 23700
components:
- pos: -0.5,35.5
parent: 2
type: Transform
- - uid: 23680
+ - uid: 23701
components:
- pos: -1.5,35.5
parent: 2
type: Transform
- - uid: 23681
+ - uid: 23702
components:
- pos: -2.5,35.5
parent: 2
type: Transform
- - uid: 23682
+ - uid: 23703
components:
- rot: 1.5707963267948966 rad
pos: 53.5,62.5
parent: 2
type: Transform
- - uid: 23683
+ - uid: 23704
components:
- rot: -1.5707963267948966 rad
pos: 7.5,29.5
parent: 2
type: Transform
- - uid: 23684
+ - uid: 23705
components:
- rot: -1.5707963267948966 rad
pos: -26.5,23.5
parent: 2
type: Transform
- - uid: 23685
+ - uid: 23706
components:
- pos: -3.5,42.5
parent: 2
type: Transform
- - uid: 23686
+ - uid: 23707
components:
- pos: 45.5,9.5
parent: 2
type: Transform
- - uid: 23687
+ - uid: 23708
components:
- pos: -29.5,21.5
parent: 2
type: Transform
- - uid: 23688
+ - uid: 23709
components:
- pos: -29.5,23.5
parent: 2
type: Transform
- - uid: 23689
+ - uid: 23710
components:
- pos: -26.5,21.5
parent: 2
type: Transform
- - uid: 23690
+ - uid: 23711
components:
- pos: -31.5,27.5
parent: 2
type: Transform
- - uid: 23691
+ - uid: 23712
components:
- pos: -33.5,27.5
parent: 2
type: Transform
- - uid: 23692
+ - uid: 23713
components:
- pos: -30.5,27.5
parent: 2
type: Transform
- - uid: 23693
+ - uid: 23714
components:
- rot: 1.5707963267948966 rad
pos: -49.5,21.5
parent: 2
type: Transform
- - uid: 23694
+ - uid: 23715
components:
- rot: 1.5707963267948966 rad
pos: -50.5,21.5
parent: 2
type: Transform
- - uid: 23695
+ - uid: 23716
components:
- rot: -1.5707963267948966 rad
pos: -50.5,18.5
parent: 2
type: Transform
- - uid: 23696
+ - uid: 23717
components:
- rot: -1.5707963267948966 rad
pos: -50.5,24.5
parent: 2
type: Transform
- - uid: 23697
+ - uid: 23718
components:
- rot: -1.5707963267948966 rad
pos: 8.5,29.5
parent: 2
type: Transform
- - uid: 23698
+ - uid: 23719
components:
- rot: 1.5707963267948966 rad
pos: 54.5,62.5
parent: 2
type: Transform
- - uid: 23699
+ - uid: 23720
components:
- rot: 1.5707963267948966 rad
pos: 55.5,62.5
parent: 2
type: Transform
- - uid: 23700
+ - uid: 23721
components:
- rot: 1.5707963267948966 rad
pos: 67.5,-8.5
parent: 2
type: Transform
- - uid: 23701
+ - uid: 23722
components:
- pos: -33.5,32.5
parent: 2
type: Transform
- - uid: 23702
+ - uid: 23723
components:
- pos: -32.5,32.5
parent: 2
type: Transform
- - uid: 23703
+ - uid: 23724
components:
- pos: -31.5,32.5
parent: 2
type: Transform
- - uid: 23704
+ - uid: 23725
components:
- pos: -49.5,29.5
parent: 2
type: Transform
- - uid: 23705
+ - uid: 23726
components:
- pos: -49.5,35.5
parent: 2
type: Transform
- - uid: 23706
+ - uid: 23727
components:
- pos: -52.5,35.5
parent: 2
type: Transform
- - uid: 23707
+ - uid: 23728
components:
- pos: -52.5,29.5
parent: 2
type: Transform
- - uid: 23708
+ - uid: 23729
components:
- pos: -52.5,18.5
parent: 2
type: Transform
- - uid: 23709
+ - uid: 23730
components:
- pos: -52.5,24.5
parent: 2
type: Transform
- - uid: 23710
+ - uid: 23731
components:
- rot: -1.5707963267948966 rad
pos: -52.5,21.5
parent: 2
type: Transform
- - uid: 23711
+ - uid: 23732
components:
- rot: -1.5707963267948966 rad
pos: -53.5,21.5
parent: 2
type: Transform
- - uid: 23712
+ - uid: 23733
components:
- rot: -1.5707963267948966 rad
pos: -31.5,35.5
parent: 2
type: Transform
- - uid: 23713
+ - uid: 23734
components:
- pos: -39.5,31.5
parent: 2
type: Transform
- - uid: 23714
+ - uid: 23735
components:
- rot: -1.5707963267948966 rad
pos: -32.5,35.5
parent: 2
type: Transform
- - uid: 23715
+ - uid: 23736
components:
- rot: -1.5707963267948966 rad
pos: -17.5,26.5
parent: 2
type: Transform
- - uid: 23716
+ - uid: 23737
components:
- rot: 1.5707963267948966 rad
pos: 66.5,-1.5
parent: 2
type: Transform
- - uid: 23717
+ - uid: 23738
components:
- pos: -53.5,11.5
parent: 2
type: Transform
- - uid: 23718
+ - uid: 23739
components:
- pos: -53.5,10.5
parent: 2
type: Transform
- - uid: 23719
+ - uid: 23740
components:
- rot: -1.5707963267948966 rad
pos: -49.5,13.5
parent: 2
type: Transform
- - uid: 23720
+ - uid: 23741
components:
- rot: -1.5707963267948966 rad
pos: -48.5,13.5
parent: 2
type: Transform
- - uid: 23721
+ - uid: 23742
components:
- pos: 56.5,-25.5
parent: 2
type: Transform
- - uid: 23722
+ - uid: 23743
components:
- rot: 1.5707963267948966 rad
pos: 67.5,-7.5
parent: 2
type: Transform
- - uid: 23723
+ - uid: 23744
components:
- rot: 1.5707963267948966 rad
pos: 67.5,-9.5
parent: 2
type: Transform
- - uid: 23724
+ - uid: 23745
components:
- rot: 1.5707963267948966 rad
pos: 66.5,-0.5
parent: 2
type: Transform
- - uid: 23725
+ - uid: 23746
components:
- rot: 1.5707963267948966 rad
pos: 46.5,-77.5
parent: 2
type: Transform
- - uid: 23726
+ - uid: 23747
components:
- pos: 25.5,24.5
parent: 2
type: Transform
- - uid: 23727
+ - uid: 23748
components:
- pos: -45.5,-52.5
parent: 2
type: Transform
- - uid: 23728
+ - uid: 23749
components:
- pos: -45.5,-53.5
parent: 2
type: Transform
- - uid: 23729
+ - uid: 23750
components:
- pos: -45.5,-54.5
parent: 2
type: Transform
- - uid: 23730
+ - uid: 23751
components:
- pos: -45.5,-55.5
parent: 2
type: Transform
- - uid: 23731
+ - uid: 23752
components:
- pos: 24.5,-60.5
parent: 2
type: Transform
- - uid: 23732
+ - uid: 23753
components:
- pos: 46.5,43.5
parent: 2
type: Transform
- - uid: 23733
+ - uid: 23754
components:
- rot: 3.141592653589793 rad
pos: 46.5,3.5
parent: 2
type: Transform
- - uid: 23734
+ - uid: 23755
components:
- rot: 3.141592653589793 rad
pos: 59.5,43.5
parent: 2
type: Transform
- - uid: 23735
+ - uid: 23756
components:
- rot: -1.5707963267948966 rad
pos: -13.5,39.5
parent: 2
type: Transform
- - uid: 23736
+ - uid: 23757
components:
- pos: -14.5,56.5
parent: 2
type: Transform
- - uid: 23737
+ - uid: 23758
components:
- pos: -11.5,69.5
parent: 2
type: Transform
- - uid: 23738
+ - uid: 23759
components:
- pos: -14.5,55.5
parent: 2
type: Transform
- - uid: 23739
+ - uid: 23760
components:
- pos: -16.5,55.5
parent: 2
type: Transform
- - uid: 23740
+ - uid: 23761
components:
- pos: -16.5,56.5
parent: 2
type: Transform
- - uid: 23741
+ - uid: 23762
components:
- pos: -23.5,61.5
parent: 2
type: Transform
- - uid: 23742
+ - uid: 23763
components:
- pos: -23.5,62.5
parent: 2
type: Transform
- - uid: 23743
+ - uid: 23764
components:
- pos: -11.5,68.5
parent: 2
type: Transform
- - uid: 23744
+ - uid: 23765
components:
- pos: -11.5,67.5
parent: 2
type: Transform
- - uid: 23745
+ - uid: 23766
components:
- pos: -14.5,73.5
parent: 2
type: Transform
- - uid: 23746
+ - uid: 23767
components:
- pos: -20.5,73.5
parent: 2
type: Transform
- - uid: 23747
+ - uid: 23768
components:
- pos: -11.5,73.5
parent: 2
type: Transform
- - uid: 23748
+ - uid: 23769
components:
- pos: -23.5,63.5
parent: 2
type: Transform
- - uid: 23749
+ - uid: 23770
components:
- pos: -23.5,73.5
parent: 2
type: Transform
- - uid: 23750
+ - uid: 23771
components:
- rot: -1.5707963267948966 rad
pos: -17.5,24.5
parent: 2
type: Transform
- - uid: 23751
+ - uid: 23772
components:
- rot: -1.5707963267948966 rad
pos: 68.5,11.5
parent: 2
type: Transform
- - uid: 23752
+ - uid: 23773
components:
- rot: -1.5707963267948966 rad
pos: 68.5,10.5
parent: 2
type: Transform
- - uid: 23753
+ - uid: 23774
components:
- rot: -1.5707963267948966 rad
pos: 68.5,8.5
parent: 2
type: Transform
- - uid: 23754
+ - uid: 23775
components:
- rot: -1.5707963267948966 rad
pos: 68.5,7.5
parent: 2
type: Transform
- - uid: 23755
+ - uid: 23776
components:
- rot: -1.5707963267948966 rad
pos: 59.5,33.5
parent: 2
type: Transform
- - uid: 23756
+ - uid: 23777
components:
- rot: -1.5707963267948966 rad
pos: 59.5,32.5
parent: 2
type: Transform
- - uid: 23757
+ - uid: 23778
components:
- rot: -1.5707963267948966 rad
pos: -1.5,27.5
parent: 2
type: Transform
- - uid: 23758
+ - uid: 23779
components:
- rot: -1.5707963267948966 rad
pos: -3.5,27.5
parent: 2
type: Transform
- - uid: 23759
+ - uid: 23780
components:
- rot: -1.5707963267948966 rad
pos: -33.5,35.5
parent: 2
type: Transform
- - uid: 23760
+ - uid: 23781
components:
- rot: 3.141592653589793 rad
pos: -32.5,37.5
parent: 2
type: Transform
- - uid: 23761
+ - uid: 23782
components:
- rot: 1.5707963267948966 rad
pos: 46.5,-17.5
parent: 2
type: Transform
- - uid: 23762
+ - uid: 23783
components:
- rot: 1.5707963267948966 rad
pos: 45.5,-17.5
parent: 2
type: Transform
- - uid: 23763
+ - uid: 23784
components:
- pos: -46.5,13.5
parent: 2
type: Transform
- - uid: 23764
+ - uid: 23785
components:
- pos: -1.5,42.5
parent: 2
type: Transform
- - uid: 23765
+ - uid: 23786
components:
- rot: 1.5707963267948966 rad
pos: 47.5,40.5
parent: 2
type: Transform
- - uid: 23766
+ - uid: 23787
components:
- rot: 1.5707963267948966 rad
pos: 45.5,40.5
parent: 2
type: Transform
- - uid: 23767
+ - uid: 23788
components:
- rot: -1.5707963267948966 rad
pos: 41.5,42.5
parent: 2
type: Transform
- - uid: 23768
+ - uid: 23789
components:
- rot: 3.141592653589793 rad
pos: 41.5,32.5
parent: 2
type: Transform
- - uid: 23769
+ - uid: 23790
components:
- rot: 3.141592653589793 rad
pos: 41.5,31.5
parent: 2
type: Transform
- - uid: 23770
+ - uid: 23791
components:
- rot: 3.141592653589793 rad
pos: 41.5,30.5
parent: 2
type: Transform
- - uid: 23771
+ - uid: 23792
components:
- rot: -1.5707963267948966 rad
pos: 40.5,42.5
parent: 2
type: Transform
- - uid: 23772
+ - uid: 23793
components:
- rot: -1.5707963267948966 rad
pos: 39.5,42.5
parent: 2
type: Transform
- - uid: 23773
+ - uid: 23794
components:
- pos: 71.5,39.5
parent: 2
type: Transform
- - uid: 23774
+ - uid: 23795
components:
- pos: 73.5,39.5
parent: 2
type: Transform
- - uid: 23775
+ - uid: 23796
components:
- pos: 73.5,33.5
parent: 2
type: Transform
- - uid: 23776
+ - uid: 23797
components:
- pos: 71.5,33.5
parent: 2
type: Transform
- - uid: 23777
+ - uid: 23798
components:
- pos: -33.5,40.5
parent: 2
type: Transform
- - uid: 23778
+ - uid: 23799
components:
- pos: -32.5,40.5
parent: 2
type: Transform
- - uid: 23779
+ - uid: 23800
components:
- pos: -26.5,54.5
parent: 2
type: Transform
- - uid: 23780
+ - uid: 23801
components:
- pos: -26.5,53.5
parent: 2
type: Transform
- - uid: 23781
+ - uid: 23802
components:
- rot: -1.5707963267948966 rad
pos: -16.5,-88.5
parent: 2
type: Transform
- - uid: 23782
+ - uid: 23803
components:
- pos: -18.5,-97.5
parent: 2
type: Transform
- - uid: 23783
+ - uid: 23804
components:
- pos: -26.5,-97.5
parent: 2
type: Transform
- - uid: 23784
+ - uid: 23805
components:
- pos: -23.5,-94.5
parent: 2
type: Transform
- - uid: 23785
+ - uid: 23806
components:
- pos: -22.5,-94.5
parent: 2
type: Transform
- - uid: 23786
+ - uid: 23807
components:
- pos: -21.5,-94.5
parent: 2
type: Transform
- - uid: 23787
+ - uid: 23808
components:
- pos: -9.5,-101.5
parent: 2
type: Transform
- - uid: 23788
+ - uid: 23809
components:
- pos: -8.5,-101.5
parent: 2
type: Transform
- - uid: 23789
+ - uid: 23810
components:
- pos: -6.5,-101.5
parent: 2
type: Transform
- - uid: 23790
+ - uid: 23811
components:
- pos: -5.5,-101.5
parent: 2
type: Transform
- - uid: 23791
+ - uid: 23812
components:
- pos: -3.5,-97.5
parent: 2
type: Transform
- - uid: 23792
+ - uid: 23813
components:
- pos: -3.5,-98.5
parent: 2
type: Transform
- - uid: 23793
+ - uid: 23814
components:
- rot: 3.141592653589793 rad
pos: -44.5,-90.5
parent: 2
type: Transform
- - uid: 23794
+ - uid: 23815
components:
- rot: 3.141592653589793 rad
pos: -44.5,-89.5
parent: 2
type: Transform
- - uid: 23795
+ - uid: 23816
components:
- pos: -39.5,-90.5
parent: 2
type: Transform
- - uid: 23796
+ - uid: 23817
components:
- pos: -39.5,-89.5
parent: 2
type: Transform
- - uid: 23797
+ - uid: 23818
components:
- pos: -34.5,-100.5
parent: 2
type: Transform
- - uid: 23798
+ - uid: 23819
components:
- pos: -36.5,-100.5
parent: 2
type: Transform
- - uid: 23799
+ - uid: 23820
components:
- rot: 1.5707963267948966 rad
pos: -44.5,-95.5
parent: 2
type: Transform
- - uid: 23800
+ - uid: 23821
components:
- rot: 1.5707963267948966 rad
pos: -44.5,-96.5
parent: 2
type: Transform
- - uid: 23801
+ - uid: 23822
components:
- rot: 1.5707963267948966 rad
pos: -42.5,-98.5
parent: 2
type: Transform
- - uid: 23802
+ - uid: 23823
components:
- rot: 1.5707963267948966 rad
pos: -41.5,-98.5
parent: 2
type: Transform
- - uid: 23803
+ - uid: 23824
components:
- pos: -23.5,-101.5
parent: 2
type: Transform
- - uid: 23804
+ - uid: 23825
components:
- pos: -22.5,-101.5
parent: 2
type: Transform
- - uid: 23805
+ - uid: 23826
components:
- pos: -21.5,-101.5
parent: 2
type: Transform
- - uid: 23806
+ - uid: 23827
components:
- rot: -1.5707963267948966 rad
pos: 72.5,-50.5
parent: 2
type: Transform
- - uid: 23807
+ - uid: 23828
components:
- rot: -1.5707963267948966 rad
pos: 70.5,-50.5
parent: 2
type: Transform
- - uid: 23808
+ - uid: 23829
components:
- rot: -1.5707963267948966 rad
pos: 71.5,-50.5
parent: 2
type: Transform
- - uid: 23809
+ - uid: 23830
components:
- pos: 51.5,-68.5
parent: 2
type: Transform
- - uid: 23810
+ - uid: 23831
components:
- rot: 3.141592653589793 rad
pos: 55.5,-68.5
parent: 2
type: Transform
- - uid: 23811
+ - uid: 23832
components:
- rot: 3.141592653589793 rad
pos: 56.5,-68.5
parent: 2
type: Transform
- - uid: 23812
+ - uid: 23833
components:
- pos: 61.5,-70.5
parent: 2
type: Transform
- - uid: 23813
+ - uid: 23834
components:
- pos: 62.5,-70.5
parent: 2
type: Transform
- - uid: 23814
+ - uid: 23835
components:
- rot: 3.141592653589793 rad
pos: 54.5,-68.5
parent: 2
type: Transform
- - uid: 23815
+ - uid: 23836
components:
- pos: 50.5,-68.5
parent: 2
type: Transform
- - uid: 23816
+ - uid: 23837
components:
- pos: 3.5,-36.5
parent: 2
type: Transform
- - uid: 23817
+ - uid: 23838
components:
- pos: 68.5,-57.5
parent: 2
type: Transform
- - uid: 23818
+ - uid: 23839
components:
- pos: 71.5,-54.5
parent: 2
type: Transform
- - uid: 23819
+ - uid: 23840
components:
- rot: 1.5707963267948966 rad
pos: -54.5,-57.5
parent: 2
type: Transform
- - uid: 23820
+ - uid: 23841
components:
- rot: -1.5707963267948966 rad
pos: 41.5,-31.5
parent: 2
type: Transform
- - uid: 23821
+ - uid: 23842
components:
- pos: 60.5,-70.5
parent: 2
type: Transform
- - uid: 23822
+ - uid: 23843
components:
- pos: 9.5,-31.5
parent: 2
type: Transform
- - uid: 23823
+ - uid: 23844
components:
- pos: 9.5,-34.5
parent: 2
type: Transform
- - uid: 23824
+ - uid: 23845
components:
- pos: 2.5,-36.5
parent: 2
type: Transform
- - uid: 23825
+ - uid: 23846
components:
- pos: 36.5,18.5
parent: 2
type: Transform
- - uid: 23826
+ - uid: 23847
components:
- pos: 34.5,18.5
parent: 2
type: Transform
- - uid: 23827
+ - uid: 23848
components:
- pos: 52.5,-57.5
parent: 2
type: Transform
- - uid: 23828
+ - uid: 23849
components:
- pos: -60.5,-35.5
parent: 2
type: Transform
- - uid: 23829
+ - uid: 23850
components:
- pos: -52.5,-38.5
parent: 2
type: Transform
- - uid: 23830
+ - uid: 23851
components:
- pos: -47.5,-34.5
parent: 2
type: Transform
- - uid: 23831
+ - uid: 23852
components:
- pos: -47.5,-35.5
parent: 2
type: Transform
- - uid: 23832
+ - uid: 23853
components:
- rot: 3.141592653589793 rad
pos: 51.5,-72.5
parent: 2
type: Transform
- - uid: 23833
+ - uid: 23854
components:
- rot: 3.141592653589793 rad
pos: 51.5,-71.5
parent: 2
type: Transform
- - uid: 23834
+ - uid: 23855
components:
- rot: 3.141592653589793 rad
pos: 24.5,-86.5
parent: 2
type: Transform
- - uid: 23835
+ - uid: 23856
components:
- rot: 3.141592653589793 rad
pos: 25.5,-86.5
parent: 2
type: Transform
- - uid: 23836
+ - uid: 23857
components:
- rot: 3.141592653589793 rad
pos: 25.5,-75.5
parent: 2
type: Transform
- - uid: 23837
+ - uid: 23858
components:
- rot: 3.141592653589793 rad
pos: 28.5,-89.5
parent: 2
type: Transform
- - uid: 23838
+ - uid: 23859
components:
- rot: 1.5707963267948966 rad
pos: 32.5,-79.5
parent: 2
type: Transform
- - uid: 23839
+ - uid: 23860
components:
- rot: 1.5707963267948966 rad
pos: 34.5,-84.5
parent: 2
type: Transform
- - uid: 23840
+ - uid: 23861
components:
- rot: 1.5707963267948966 rad
pos: 34.5,-85.5
parent: 2
type: Transform
- - uid: 23841
+ - uid: 23862
components:
- rot: 3.141592653589793 rad
pos: 26.5,-75.5
parent: 2
type: Transform
- - uid: 23842
+ - uid: 23863
components:
- rot: 3.141592653589793 rad
pos: 51.5,-73.5
parent: 2
type: Transform
- - uid: 23843
+ - uid: 23864
components:
- rot: 1.5707963267948966 rad
pos: 32.5,-78.5
parent: 2
type: Transform
- - uid: 23844
+ - uid: 23865
components:
- rot: 1.5707963267948966 rad
pos: 44.5,-87.5
parent: 2
type: Transform
- - uid: 23845
+ - uid: 23866
components:
- rot: -1.5707963267948966 rad
pos: -45.5,45.5
parent: 2
type: Transform
- - uid: 23846
+ - uid: 23867
components:
- rot: 1.5707963267948966 rad
pos: -8.5,13.5
parent: 2
type: Transform
- - uid: 23847
+ - uid: 23868
components:
- pos: -4.5,20.5
parent: 2
type: Transform
- - uid: 23848
+ - uid: 23869
components:
- pos: -5.5,20.5
parent: 2
type: Transform
- - uid: 23849
+ - uid: 23870
components:
- rot: 3.141592653589793 rad
pos: -71.5,-27.5
parent: 2
type: Transform
- - uid: 23850
+ - uid: 23871
components:
- pos: -70.5,-47.5
parent: 2
type: Transform
- - uid: 23851
+ - uid: 23872
components:
- pos: -69.5,-47.5
parent: 2
type: Transform
- - uid: 23852
+ - uid: 23873
components:
- pos: -68.5,-47.5
parent: 2
type: Transform
- - uid: 23853
+ - uid: 23874
components:
- pos: -60.5,-38.5
parent: 2
type: Transform
- - uid: 23854
+ - uid: 23875
components:
- pos: -62.5,-38.5
parent: 2
type: Transform
- - uid: 23855
+ - uid: 23876
components:
- pos: -51.5,-13.5
parent: 2
type: Transform
- - uid: 23856
+ - uid: 23877
components:
- rot: 3.141592653589793 rad
pos: -78.5,-45.5
parent: 2
type: Transform
- - uid: 23857
+ - uid: 23878
components:
- rot: 1.5707963267948966 rad
pos: -15.5,9.5
parent: 2
type: Transform
- - uid: 23858
+ - uid: 23879
components:
- rot: 1.5707963267948966 rad
pos: -14.5,9.5
parent: 2
type: Transform
- - uid: 23859
+ - uid: 23880
components:
- pos: 3.5,-3.5
parent: 2
type: Transform
- - uid: 23860
+ - uid: 23881
components:
- rot: 3.141592653589793 rad
pos: 2.5,-3.5
parent: 2
type: Transform
- - uid: 23861
+ - uid: 23882
components:
- rot: 3.141592653589793 rad
pos: 1.5,-3.5
parent: 2
type: Transform
- - uid: 23862
+ - uid: 23883
components:
- rot: -1.5707963267948966 rad
pos: 23.5,-40.5
parent: 2
type: Transform
- - uid: 23863
+ - uid: 23884
components:
- rot: -1.5707963267948966 rad
pos: 27.5,-40.5
parent: 2
type: Transform
- - uid: 23864
+ - uid: 23885
components:
- rot: -1.5707963267948966 rad
pos: 24.5,-40.5
parent: 2
type: Transform
- - uid: 23865
+ - uid: 23886
components:
- rot: -1.5707963267948966 rad
pos: 54.5,-40.5
parent: 2
type: Transform
- - uid: 23866
+ - uid: 23887
components:
- rot: -1.5707963267948966 rad
pos: 54.5,-42.5
parent: 2
type: Transform
- - uid: 23867
+ - uid: 23888
components:
- pos: 10.5,29.5
parent: 2
type: Transform
- - uid: 23868
+ - uid: 23889
components:
- pos: 8.5,27.5
parent: 2
type: Transform
- - uid: 23869
+ - uid: 23890
components:
- pos: 10.5,27.5
parent: 2
type: Transform
- - uid: 23870
+ - uid: 23891
components:
- pos: 9.5,27.5
parent: 2
type: Transform
- - uid: 23871
+ - uid: 23892
components:
- pos: 9.5,29.5
parent: 2
type: Transform
- - uid: 23872
+ - uid: 23893
components:
- pos: -29.5,-63.5
parent: 2
type: Transform
- - uid: 23873
+ - uid: 23894
components:
- rot: 3.141592653589793 rad
pos: -23.5,-91.5
parent: 2
type: Transform
- - uid: 23874
+ - uid: 23895
components:
- pos: 78.5,-47.5
parent: 2
type: Transform
- - uid: 23875
+ - uid: 23896
components:
- pos: 78.5,-43.5
parent: 2
type: Transform
- - uid: 23876
+ - uid: 23897
components:
- rot: 1.5707963267948966 rad
pos: 43.5,63.5
parent: 2
type: Transform
- - uid: 23877
+ - uid: 23898
components:
- rot: 1.5707963267948966 rad
pos: 35.5,63.5
parent: 2
type: Transform
- - uid: 23878
+ - uid: 23899
components:
- rot: 1.5707963267948966 rad
pos: 39.5,67.5
parent: 2
type: Transform
+ - uid: 23900
+ components:
+ - pos: 8.5,-46.5
+ parent: 2
+ type: Transform
- proto: ReinforcedWindowDiagonal
entities:
- - uid: 23879
+ - uid: 23901
components:
- pos: 12.5,-78.5
parent: 2
type: Transform
- - uid: 23880
+ - uid: 23902
components:
- rot: -1.5707963267948966 rad
pos: -1.5,-30.5
parent: 2
type: Transform
- - uid: 23881
+ - uid: 23903
components:
- rot: 1.5707963267948966 rad
pos: 49.5,55.5
parent: 2
type: Transform
- - uid: 23882
+ - uid: 23904
components:
- rot: -1.5707963267948966 rad
pos: 59.5,59.5
parent: 2
type: Transform
- - uid: 23883
+ - uid: 23905
components:
- pos: 49.5,59.5
parent: 2
type: Transform
- - uid: 23884
+ - uid: 23906
components:
- pos: 52.5,62.5
parent: 2
type: Transform
- - uid: 23885
+ - uid: 23907
components:
- rot: -1.5707963267948966 rad
pos: 56.5,62.5
parent: 2
type: Transform
- - uid: 23886
+ - uid: 23908
components:
- rot: 3.141592653589793 rad
pos: 59.5,55.5
parent: 2
type: Transform
- - uid: 23887
+ - uid: 23909
components:
- rot: 3.141592653589793 rad
pos: -1.5,-36.5
parent: 2
type: Transform
- - uid: 23888
+ - uid: 23910
components:
- rot: 3.141592653589793 rad
pos: -18.5,-91.5
parent: 2
type: Transform
- - uid: 23889
+ - uid: 23911
components:
- rot: 1.5707963267948966 rad
pos: -27.5,-91.5
parent: 2
type: Transform
- - uid: 23890
+ - uid: 23912
components:
- rot: -1.5707963267948966 rad
pos: 78.5,-42.5
parent: 2
type: Transform
- - uid: 23891
+ - uid: 23913
components:
- rot: 3.141592653589793 rad
pos: 43.5,62.5
parent: 2
type: Transform
- - uid: 23892
+ - uid: 23914
components:
- pos: 42.5,62.5
parent: 2
type: Transform
- - uid: 23893
+ - uid: 23915
components:
- rot: 3.141592653589793 rad
pos: 42.5,61.5
parent: 2
type: Transform
- - uid: 23894
+ - uid: 23916
components:
- pos: 41.5,61.5
parent: 2
type: Transform
- - uid: 23895
+ - uid: 23917
components:
- rot: 3.141592653589793 rad
pos: 41.5,60.5
parent: 2
type: Transform
- - uid: 23896
+ - uid: 23918
components:
- pos: 40.5,60.5
parent: 2
type: Transform
- - uid: 23897
+ - uid: 23919
components:
- rot: 3.141592653589793 rad
pos: 40.5,59.5
parent: 2
type: Transform
- - uid: 23898
+ - uid: 23920
components:
- rot: 1.5707963267948966 rad
pos: 38.5,59.5
parent: 2
type: Transform
- - uid: 23899
+ - uid: 23921
components:
- rot: -1.5707963267948966 rad
pos: 38.5,60.5
parent: 2
type: Transform
- - uid: 23900
+ - uid: 23922
components:
- rot: 1.5707963267948966 rad
pos: 37.5,60.5
parent: 2
type: Transform
- - uid: 23901
+ - uid: 23923
components:
- rot: -1.5707963267948966 rad
pos: 37.5,61.5
parent: 2
type: Transform
- - uid: 23902
+ - uid: 23924
components:
- rot: 1.5707963267948966 rad
pos: 36.5,61.5
parent: 2
type: Transform
- - uid: 23903
+ - uid: 23925
components:
- rot: 1.5707963267948966 rad
pos: 35.5,62.5
parent: 2
type: Transform
- - uid: 23904
+ - uid: 23926
components:
- rot: -1.5707963267948966 rad
pos: 36.5,62.5
parent: 2
type: Transform
- - uid: 23905
+ - uid: 23927
components:
- pos: 35.5,64.5
parent: 2
type: Transform
- - uid: 23906
+ - uid: 23928
components:
- rot: 3.141592653589793 rad
pos: 36.5,64.5
parent: 2
type: Transform
- - uid: 23907
+ - uid: 23929
components:
- pos: 36.5,65.5
parent: 2
type: Transform
- - uid: 23908
+ - uid: 23930
components:
- rot: 3.141592653589793 rad
pos: 37.5,65.5
parent: 2
type: Transform
- - uid: 23909
+ - uid: 23931
components:
- pos: 37.5,66.5
parent: 2
type: Transform
- - uid: 23910
+ - uid: 23932
components:
- rot: 3.141592653589793 rad
pos: 38.5,66.5
parent: 2
type: Transform
- - uid: 23911
+ - uid: 23933
components:
- pos: 38.5,67.5
parent: 2
type: Transform
- - uid: 23912
+ - uid: 23934
components:
- rot: -1.5707963267948966 rad
pos: 40.5,67.5
parent: 2
type: Transform
- - uid: 23913
+ - uid: 23935
components:
- rot: 1.5707963267948966 rad
pos: 40.5,66.5
parent: 2
type: Transform
- - uid: 23914
+ - uid: 23936
components:
- rot: -1.5707963267948966 rad
pos: 41.5,66.5
parent: 2
type: Transform
- - uid: 23915
+ - uid: 23937
components:
- rot: 1.5707963267948966 rad
pos: 41.5,65.5
parent: 2
type: Transform
- - uid: 23916
+ - uid: 23938
components:
- rot: -1.5707963267948966 rad
pos: 42.5,65.5
parent: 2
type: Transform
- - uid: 23917
+ - uid: 23939
components:
- rot: 1.5707963267948966 rad
pos: 42.5,64.5
parent: 2
type: Transform
- - uid: 23918
+ - uid: 23940
components:
- rot: -1.5707963267948966 rad
pos: 43.5,64.5
parent: 2
type: Transform
- - uid: 23919
+ - uid: 23941
components:
- rot: 3.141592653589793 rad
pos: 78.5,-48.5
parent: 2
type: Transform
- - uid: 23920
+ - uid: 23942
components:
- rot: -1.5707963267948966 rad
pos: 18.5,-78.5
parent: 2
type: Transform
- - uid: 23921
+ - uid: 23943
components:
- rot: 1.5707963267948966 rad
pos: 12.5,-88.5
parent: 2
type: Transform
- - uid: 23922
+ - uid: 23944
components:
- rot: 3.141592653589793 rad
pos: 18.5,-88.5
@@ -156631,86 +156784,86 @@ entities:
type: Transform
- proto: RemoteSignaller
entities:
- - uid: 23923
+ - uid: 23945
components:
- pos: 4.3008337,-7.3968306
parent: 2
type: Transform
- linkedPorts:
- 556:
- - Pressed: DoorBolt
557:
- Pressed: DoorBolt
- 627:
+ 558:
+ - Pressed: DoorBolt
+ 628:
- Pressed: DoorBolt
type: DeviceLinkSource
- proto: ResearchAndDevelopmentServer
entities:
- - uid: 23924
+ - uid: 23946
components:
- pos: 55.5,-49.5
parent: 2
type: Transform
- proto: Retractor
entities:
- - uid: 23925
+ - uid: 23947
components:
- pos: 0.5210637,-65.43571
parent: 2
type: Transform
- - uid: 23926
+ - uid: 23948
components:
- pos: 73.5331,-48.86455
parent: 2
type: Transform
- proto: RevolverCapGun
entities:
- - uid: 23927
+ - uid: 23949
components:
- pos: 48.521713,-29.492037
parent: 2
type: Transform
- - uid: 23928
+ - uid: 23950
components:
- pos: 3.523116,-35.41609
parent: 2
type: Transform
- proto: RiceSeeds
entities:
- - uid: 23929
+ - uid: 23951
components:
- pos: -32.424732,6.232961
parent: 2
type: Transform
- proto: RockGuitarInstrument
entities:
- - uid: 23930
+ - uid: 23952
components:
- pos: -10.563177,-6.285685
parent: 2
type: Transform
- proto: RollerBed
entities:
- - uid: 23931
+ - uid: 23953
components:
- pos: -29.534147,-77.30682
parent: 2
type: Transform
- - uid: 23932
+ - uid: 23954
components:
- pos: -29.534147,-79.2912
parent: 2
type: Transform
- proto: SalvageHumanCorpseSpawner
entities:
- - uid: 23933
+ - uid: 23955
components:
- pos: -7.5,-97.5
parent: 2
type: Transform
- proto: SalvageMagnet
entities:
- - uid: 23934
+ - uid: 23956
components:
- rot: -1.5707963267948966 rad
pos: -46.5,32.5
@@ -156718,89 +156871,82 @@ entities:
type: Transform
- proto: Saw
entities:
- - uid: 23935
+ - uid: 23957
components:
- pos: 0.4741887,-64.29508
parent: 2
type: Transform
- - uid: 23936
+ - uid: 23958
components:
- pos: 73.565475,-49.416637
parent: 2
type: Transform
- proto: SawElectric
entities:
- - uid: 23937
+ - uid: 23959
components:
- pos: 0.5054387,-66.18094
parent: 2
type: Transform
- proto: Scalpel
entities:
- - uid: 23938
+ - uid: 23960
components:
- pos: 69.49932,-48.836205
parent: 2
type: Transform
- - uid: 23939
+ - uid: 23961
components:
- pos: 0.4585637,-63.810703
parent: 2
type: Transform
- proto: ScalpelShiv
entities:
- - uid: 23940
+ - uid: 23962
components:
- rot: -1.5707963267948966 rad
pos: -7.55561,-100.43354
parent: 2
type: Transform
- - uid: 23941
+ - uid: 23963
components:
- pos: 54.135303,18.76531
parent: 2
type: Transform
-- proto: ScreenTimerElectronics
- entities:
- - uid: 23942
- components:
- - pos: -8.601834,37.95101
- parent: 2
- type: Transform
- proto: Screwdriver
entities:
- - uid: 23943
+ - uid: 23964
components:
- pos: 43.519844,-49.259262
parent: 2
type: Transform
- - uid: 23944
+ - uid: 23965
components:
- pos: -25.458826,-24.443584
parent: 2
type: Transform
- - uid: 23945
+ - uid: 23966
components:
- pos: -9.599733,-10.450774
parent: 2
type: Transform
- - uid: 23946
+ - uid: 23967
components:
- pos: -62.449627,-28.095568
parent: 2
type: Transform
- - uid: 23947
+ - uid: 23968
components:
- pos: -38.450848,-27.350416
parent: 2
type: Transform
- - uid: 23948
+ - uid: 23969
components:
- rot: 12.566370614359172 rad
pos: 72.048706,-43.392498
parent: 2
type: Transform
- - uid: 23949
+ - uid: 23970
components:
- rot: 3.141592653589793 rad
pos: 12.463634,20.302036
@@ -156808,7 +156954,7 @@ entities:
type: Transform
- proto: SecurityTechFab
entities:
- - uid: 23950
+ - uid: 23971
components:
- pos: 20.5,22.5
parent: 2
@@ -156820,49 +156966,49 @@ entities:
type: MaterialStorage
- proto: SeedExtractor
entities:
- - uid: 23951
+ - uid: 23972
components:
- pos: -9.5,12.5
parent: 2
type: Transform
- - uid: 23952
+ - uid: 23973
components:
- pos: 57.5,8.5
parent: 2
type: Transform
- proto: ShardGlass
entities:
- - uid: 23953
+ - uid: 23974
components:
- pos: -54.711452,-83.287796
parent: 2
type: Transform
- proto: ShardGlassReinforced
entities:
- - uid: 23954
+ - uid: 23975
components:
- rot: 1.5707963267948966 rad
pos: -54.638016,-82.45104
parent: 2
type: Transform
- - uid: 23955
+ - uid: 23976
components:
- rot: 3.141592653589793 rad
pos: 2.3392181,49.47093
parent: 2
type: Transform
- - uid: 23956
+ - uid: 23977
components:
- rot: 3.141592653589793 rad
pos: 1.651718,49.767803
parent: 2
type: Transform
- - uid: 23957
+ - uid: 23978
components:
- pos: 3.3860931,48.767803
parent: 2
type: Transform
- - uid: 23958
+ - uid: 23979
components:
- rot: -1.5707963267948966 rad
pos: 1.745468,48.361553
@@ -156870,31 +157016,31 @@ entities:
type: Transform
- proto: SheetGlass
entities:
- - uid: 23959
+ - uid: 23980
components:
- pos: 38.525932,-39.04589
parent: 2
type: Transform
- count: 28
type: Stack
- - uid: 23960
+ - uid: 23981
components:
- pos: -42.541218,-17.668886
parent: 2
type: Transform
- - uid: 23961
+ - uid: 23982
components:
- pos: -55.463116,-25.47082
parent: 2
type: Transform
- - uid: 23962
+ - uid: 23983
components:
- pos: -24.799974,-52.361668
parent: 2
type: Transform
- proto: SheetGlass1
entities:
- - uid: 23963
+ - uid: 23984
components:
- rot: 12.566370614359172 rad
pos: 77.45773,-46.509197
@@ -156904,1158 +157050,1158 @@ entities:
type: Stack
- proto: SheetPaper1
entities:
- - uid: 23964
+ - uid: 23985
components:
- pos: -4.555317,-48.4215
parent: 2
type: Transform
- proto: SheetPlasma
entities:
- - uid: 23965
+ - uid: 23986
components:
- pos: 62.516293,-33.369144
parent: 2
type: Transform
- proto: SheetPlasma1
entities:
- - uid: 23966
- components:
- - pos: 7.512034,-46.1751
- parent: 2
- type: Transform
- - uid: 23967
+ - uid: 23987
components:
- pos: 39.28695,-35.266556
parent: 2
type: Transform
- - uid: 23968
+ - uid: 23988
components:
- pos: 39.583824,-35.40718
parent: 2
type: Transform
- proto: SheetPlasteel
entities:
- - uid: 23969
+ - uid: 23989
components:
- pos: -42.49803,-16.612768
parent: 2
type: Transform
- - uid: 23970
+ - uid: 23990
components:
- pos: -43.304523,25.592714
parent: 2
type: Transform
- proto: SheetPlastic
entities:
- - uid: 23971
+ - uid: 23991
components:
- pos: 38.479057,-36.60921
parent: 2
type: Transform
- - uid: 23972
+ - uid: 23992
components:
- pos: -42.44606,-18.09971
parent: 2
type: Transform
- proto: SheetRGlass
entities:
- - uid: 23973
+ - uid: 23993
components:
- pos: -42.558216,-17.530426
parent: 2
type: Transform
- proto: SheetSteel
entities:
- - uid: 23974
+ - uid: 23994
components:
- rot: 3.141592653589793 rad
pos: -37.461926,-7.6284776
parent: 2
type: Transform
- - uid: 23975
+ - uid: 23995
components:
- pos: 38.51507,-38.238213
parent: 2
type: Transform
- - uid: 23976
+ - uid: 23996
components:
- pos: 38.494682,-37.42171
parent: 2
type: Transform
- - uid: 23977
+ - uid: 23997
components:
- pos: -27.53877,-10.535285
parent: 2
type: Transform
- - uid: 23978
+ - uid: 23998
components:
- pos: -39.513657,-16.565893
parent: 2
type: Transform
- - uid: 23979
+ - uid: 23999
components:
- pos: -39.544514,-17.164497
parent: 2
type: Transform
- - uid: 23980
+ - uid: 24000
components:
- pos: 58.50727,52.410095
parent: 2
type: Transform
- - uid: 23981
+ - uid: 24001
components:
- pos: 77.369896,-46.771843
parent: 2
type: Transform
- - uid: 23982
+ - uid: 24002
components:
- pos: -42.505978,14.552313
parent: 2
type: Transform
- - uid: 23983
+ - uid: 24003
components:
- pos: -72.541214,-39.47832
parent: 2
type: Transform
+ - uid: 24004
+ components:
+ - pos: -35.44409,-49.59786
+ parent: 2
+ type: Transform
- proto: ShipBattlemap
entities:
- - uid: 23984
+ - uid: 24005
components:
- pos: 12.360678,-6.028252
parent: 2
type: Transform
- proto: Shovel
entities:
- - uid: 23985
+ - uid: 24006
components:
- pos: -52.711685,-67.34979
parent: 2
type: Transform
- - uid: 23986
+ - uid: 24007
components:
- pos: -40.5417,35.280518
parent: 2
type: Transform
- - uid: 23987
+ - uid: 24008
components:
- pos: -40.51045,34.905518
parent: 2
type: Transform
- - uid: 23988
+ - uid: 24009
components:
- pos: -48.500484,26.545332
parent: 2
type: Transform
- - uid: 23989
+ - uid: 24010
components:
- pos: -9.892679,54.810154
parent: 2
type: Transform
- proto: ShowcaseRobot
entities:
- - uid: 23990
+ - uid: 24011
components:
- pos: 62.5,-45.5
parent: 2
type: Transform
- - uid: 23991
+ - uid: 24012
components:
- pos: -0.5,63.5
parent: 2
type: Transform
- - uid: 23992
+ - uid: 24013
components:
- pos: -2.5,63.5
parent: 2
type: Transform
- proto: ShowcaseRobotAntique
entities:
- - uid: 23993
+ - uid: 24014
components:
- pos: 61.5,-46.5
parent: 2
type: Transform
- proto: ShowcaseRobotMarauder
entities:
- - uid: 23994
+ - uid: 24015
components:
- pos: 63.5,-46.5
parent: 2
type: Transform
- proto: ShowcaseRobotWhite
entities:
- - uid: 23995
+ - uid: 24016
components:
- pos: 62.5,-47.5
parent: 2
type: Transform
- proto: ShuttersNormal
entities:
- - uid: 23996
+ - uid: 24017
components:
- pos: -9.5,-24.5
parent: 2
type: Transform
- - uid: 23997
+ - uid: 24018
components:
- pos: -8.5,-24.5
parent: 2
type: Transform
- - uid: 23998
+ - uid: 24019
components:
- rot: -1.5707963267948966 rad
pos: 66.5,-45.5
parent: 2
type: Transform
- links:
- - 24141
+ - 24162
type: DeviceLinkSink
- - uid: 23999
+ - uid: 24020
components:
- rot: -1.5707963267948966 rad
pos: 66.5,-46.5
parent: 2
type: Transform
- links:
- - 24141
+ - 24162
type: DeviceLinkSink
- proto: ShuttersNormalOpen
entities:
- - uid: 24000
+ - uid: 24021
components:
- pos: -4.5,20.5
parent: 2
type: Transform
- invokeCounter: 4
links:
- - 24189
+ - 24210
type: DeviceLinkSink
- - uid: 24001
+ - uid: 24022
components:
- pos: -5.5,20.5
parent: 2
type: Transform
- invokeCounter: 4
links:
- - 24189
+ - 24210
type: DeviceLinkSink
- - uid: 24002
+ - uid: 24023
components:
- rot: -1.5707963267948966 rad
pos: 15.5,13.5
parent: 2
type: Transform
- links:
- - 24138
+ - 24159
type: DeviceLinkSink
- - uid: 24003
+ - uid: 24024
components:
- rot: -1.5707963267948966 rad
pos: 15.5,9.5
parent: 2
type: Transform
- - uid: 24004
+ - uid: 24025
components:
- pos: -32.5,32.5
parent: 2
type: Transform
- links:
- - 24169
+ - 24190
type: DeviceLinkSink
- - uid: 24005
+ - uid: 24026
components:
- pos: 37.5,-0.5
parent: 2
type: Transform
- links:
- - 24140
+ - 24161
type: DeviceLinkSink
- - uid: 24006
+ - uid: 24027
components:
- pos: -8.5,4.5
parent: 2
type: Transform
- links:
- - 24185
+ - 24206
type: DeviceLinkSink
- - uid: 24007
+ - uid: 24028
components:
- rot: -1.5707963267948966 rad
pos: 15.5,11.5
parent: 2
type: Transform
- links:
- - 24138
+ - 24159
type: DeviceLinkSink
- - uid: 24008
+ - uid: 24029
components:
- rot: -1.5707963267948966 rad
pos: 15.5,10.5
parent: 2
type: Transform
- links:
- - 24138
+ - 24159
type: DeviceLinkSink
- - uid: 24009
+ - uid: 24030
components:
- pos: 18.5,15.5
parent: 2
type: Transform
- links:
- - 24138
+ - 24159
type: DeviceLinkSink
- - uid: 24010
+ - uid: 24031
components:
- pos: 17.5,15.5
parent: 2
type: Transform
- links:
- - 24138
+ - 24159
type: DeviceLinkSink
- - uid: 24011
+ - uid: 24032
components:
- pos: -6.5,4.5
parent: 2
type: Transform
- links:
- - 24185
+ - 24206
type: DeviceLinkSink
- - uid: 24012
+ - uid: 24033
components:
- rot: 1.5707963267948966 rad
pos: 48.5,6.5
parent: 2
type: Transform
- links:
- - 24137
+ - 24158
type: DeviceLinkSink
- - uid: 24013
+ - uid: 24034
components:
- rot: -1.5707963267948966 rad
pos: 35.5,4.5
parent: 2
type: Transform
- links:
- - 24179
+ - 24200
type: DeviceLinkSink
- - uid: 24014
+ - uid: 24035
components:
- rot: -1.5707963267948966 rad
pos: 15.5,12.5
parent: 2
type: Transform
- links:
- - 24138
+ - 24159
type: DeviceLinkSink
- - uid: 24015
+ - uid: 24036
components:
- pos: 61.5,-56.5
parent: 2
type: Transform
- links:
- - 24180
+ - 24201
type: DeviceLinkSink
- - uid: 24016
+ - uid: 24037
components:
- rot: -1.5707963267948966 rad
pos: 15.5,14.5
parent: 2
type: Transform
- links:
- - 24138
+ - 24159
type: DeviceLinkSink
- - uid: 24017
+ - uid: 24038
components:
- pos: 45.5,9.5
parent: 2
type: Transform
- links:
- - 24137
+ - 24158
type: DeviceLinkSink
- - uid: 24018
+ - uid: 24039
components:
- pos: 43.5,7.5
parent: 2
type: Transform
- links:
- - 24137
+ - 24158
type: DeviceLinkSink
- - uid: 24019
+ - uid: 24040
components:
- pos: 62.5,-56.5
parent: 2
type: Transform
- links:
- - 24180
+ - 24201
type: DeviceLinkSink
- - uid: 24020
+ - uid: 24041
components:
- pos: 63.5,-56.5
parent: 2
type: Transform
- links:
- - 24180
+ - 24201
type: DeviceLinkSink
- - uid: 24021
+ - uid: 24042
components:
- pos: -30.5,27.5
parent: 2
type: Transform
- links:
- - 24169
+ - 24190
type: DeviceLinkSink
- - uid: 24022
+ - uid: 24043
components:
- pos: 29.5,9.5
parent: 2
type: Transform
- links:
- - 24179
+ - 24200
type: DeviceLinkSink
- - uid: 24023
+ - uid: 24044
components:
- pos: 34.5,9.5
parent: 2
type: Transform
- links:
- - 24179
+ - 24200
type: DeviceLinkSink
- - uid: 24024
+ - uid: 24045
components:
- pos: -31.5,27.5
parent: 2
type: Transform
- links:
- - 24169
+ - 24190
type: DeviceLinkSink
- - uid: 24025
+ - uid: 24046
components:
- rot: -1.5707963267948966 rad
pos: 35.5,7.5
parent: 2
type: Transform
- links:
- - 24179
+ - 24200
type: DeviceLinkSink
- - uid: 24026
+ - uid: 24047
components:
- pos: -33.5,27.5
parent: 2
type: Transform
- links:
- - 24169
+ - 24190
type: DeviceLinkSink
- - uid: 24027
+ - uid: 24048
components:
- pos: -49.5,13.5
parent: 2
type: Transform
- links:
- - 24155
+ - 24176
type: DeviceLinkSink
- - uid: 24028
+ - uid: 24049
components:
- pos: -48.5,13.5
parent: 2
type: Transform
- links:
- - 24155
+ - 24176
type: DeviceLinkSink
- - uid: 24029
+ - uid: 24050
components:
- pos: -31.5,32.5
parent: 2
type: Transform
- links:
- - 24169
+ - 24190
type: DeviceLinkSink
- - uid: 24030
+ - uid: 24051
components:
- pos: 32.5,9.5
parent: 2
type: Transform
- links:
- - 24179
+ - 24200
type: DeviceLinkSink
- - uid: 24031
+ - uid: 24052
components:
- pos: 39.5,-0.5
parent: 2
type: Transform
- links:
- - 24140
+ - 24161
type: DeviceLinkSink
- - uid: 24032
+ - uid: 24053
components:
- pos: -33.5,32.5
parent: 2
type: Transform
- links:
- - 24169
+ - 24190
type: DeviceLinkSink
- - uid: 24033
+ - uid: 24054
components:
- pos: -46.5,13.5
parent: 2
type: Transform
- links:
- - 24155
+ - 24176
type: DeviceLinkSink
- - uid: 24034
+ - uid: 24055
components:
- pos: -47.5,13.5
parent: 2
type: Transform
- links:
- - 24155
+ - 24176
type: DeviceLinkSink
- - uid: 24035
+ - uid: 24056
components:
- pos: 43.5,5.5
parent: 2
type: Transform
- links:
- - 24137
+ - 24158
type: DeviceLinkSink
- - uid: 24036
+ - uid: 24057
components:
- pos: 59.5,-54.5
parent: 2
type: Transform
- links:
- - 24180
+ - 24201
type: DeviceLinkSink
- - uid: 24037
+ - uid: 24058
components:
- pos: 65.5,-54.5
parent: 2
type: Transform
- links:
- - 24180
+ - 24201
type: DeviceLinkSink
- - uid: 24038
+ - uid: 24059
components:
- rot: 1.5707963267948966 rad
pos: 66.5,-51.5
parent: 2
type: Transform
- links:
- - 24180
+ - 24201
type: DeviceLinkSink
- - uid: 24039
+ - uid: 24060
components:
- rot: 1.5707963267948966 rad
pos: 66.5,-52.5
parent: 2
type: Transform
- links:
- - 24180
+ - 24201
type: DeviceLinkSink
- - uid: 24040
+ - uid: 24061
components:
- rot: -1.5707963267948966 rad
pos: 58.5,-51.5
parent: 2
type: Transform
- links:
- - 24180
+ - 24201
type: DeviceLinkSink
- - uid: 24041
+ - uid: 24062
components:
- rot: -1.5707963267948966 rad
pos: 58.5,-52.5
parent: 2
type: Transform
- links:
- - 24180
+ - 24201
type: DeviceLinkSink
- - uid: 24042
+ - uid: 24063
components:
- pos: 61.5,-50.5
parent: 2
type: Transform
- links:
- - 24180
+ - 24201
type: DeviceLinkSink
- - uid: 24043
+ - uid: 24064
components:
- pos: 63.5,-50.5
parent: 2
type: Transform
- links:
- - 24180
+ - 24201
type: DeviceLinkSink
- - uid: 24044
+ - uid: 24065
components:
- pos: -20.5,-58.5
parent: 2
type: Transform
- links:
- - 24181
+ - 24202
type: DeviceLinkSink
- - uid: 24045
+ - uid: 24066
components:
- pos: -18.5,-58.5
parent: 2
type: Transform
- links:
- - 24181
+ - 24202
type: DeviceLinkSink
- - uid: 24046
+ - uid: 24067
components:
- pos: -37.5,-14.5
parent: 2
type: Transform
- - uid: 24047
+ - uid: 24068
components:
- rot: -1.5707963267948966 rad
pos: -33.5,-15.5
parent: 2
type: Transform
- links:
- - 24135
+ - 24156
type: DeviceLinkSink
- - uid: 24048
+ - uid: 24069
components:
- rot: -1.5707963267948966 rad
pos: -33.5,-17.5
parent: 2
type: Transform
- links:
- - 24135
+ - 24156
type: DeviceLinkSink
- - uid: 24049
+ - uid: 24070
components:
- rot: -1.5707963267948966 rad
pos: 7.5,9.5
parent: 2
type: Transform
- links:
- - 24183
+ - 24204
type: DeviceLinkSink
- - uid: 24050
+ - uid: 24071
components:
- rot: -1.5707963267948966 rad
pos: 7.5,8.5
parent: 2
type: Transform
- links:
- - 24183
+ - 24204
type: DeviceLinkSink
- - uid: 24051
+ - uid: 24072
components:
- rot: -1.5707963267948966 rad
pos: 7.5,7.5
parent: 2
type: Transform
- links:
- - 24183
+ - 24204
type: DeviceLinkSink
- - uid: 24052
+ - uid: 24073
components:
- pos: 2.5,4.5
parent: 2
type: Transform
- links:
- - 24183
+ - 24204
type: DeviceLinkSink
- - uid: 24053
+ - uid: 24074
components:
- pos: 1.5,4.5
parent: 2
type: Transform
- links:
- - 24183
+ - 24204
type: DeviceLinkSink
- - uid: 24054
+ - uid: 24075
components:
- pos: 0.5,4.5
parent: 2
type: Transform
- links:
- - 24183
+ - 24204
type: DeviceLinkSink
- - uid: 24055
+ - uid: 24076
components:
- pos: 5.5,11.5
parent: 2
type: Transform
- links:
- - 24183
+ - 24204
type: DeviceLinkSink
- - uid: 24056
+ - uid: 24077
components:
- pos: 4.5,11.5
parent: 2
type: Transform
- links:
- - 24183
+ - 24204
type: DeviceLinkSink
- - uid: 24057
+ - uid: 24078
components:
- rot: -1.5707963267948966 rad
pos: 1.5,-46.5
parent: 2
type: Transform
- links:
- - 24136
+ - 24157
type: DeviceLinkSink
- - uid: 24058
+ - uid: 24079
components:
- pos: 34.5,18.5
parent: 2
type: Transform
- links:
- - 24184
+ - 24205
type: DeviceLinkSink
- - uid: 24059
+ - uid: 24080
components:
- pos: 35.5,18.5
parent: 2
type: Transform
- links:
- - 24184
+ - 24205
type: DeviceLinkSink
- - uid: 24060
+ - uid: 24081
components:
- pos: 36.5,18.5
parent: 2
type: Transform
- links:
- - 24184
+ - 24205
type: DeviceLinkSink
- - uid: 24061
+ - uid: 24082
components:
- pos: -7.5,4.5
parent: 2
type: Transform
- links:
- - 24185
+ - 24206
type: DeviceLinkSink
- - uid: 24062
+ - uid: 24083
components:
- rot: 1.5707963267948966 rad
pos: 48.5,7.5
parent: 2
type: Transform
- links:
- - 24137
+ - 24158
type: DeviceLinkSink
- - uid: 24063
+ - uid: 24084
components:
- pos: 46.5,9.5
parent: 2
type: Transform
- links:
- - 24137
+ - 24158
type: DeviceLinkSink
- - uid: 24064
+ - uid: 24085
components:
- rot: 1.5707963267948966 rad
pos: 35.5,-1.5
parent: 2
type: Transform
- links:
- - 24140
+ - 24161
type: DeviceLinkSink
- - uid: 24065
+ - uid: 24086
components:
- rot: 1.5707963267948966 rad
pos: 35.5,-2.5
parent: 2
type: Transform
- links:
- - 24140
+ - 24161
type: DeviceLinkSink
- - uid: 24066
+ - uid: 24087
components:
- rot: 1.5707963267948966 rad
pos: 35.5,-4.5
parent: 2
type: Transform
- links:
- - 24140
+ - 24161
type: DeviceLinkSink
- - uid: 24067
+ - uid: 24088
components:
- rot: 1.5707963267948966 rad
pos: 35.5,-5.5
parent: 2
type: Transform
- links:
- - 24140
+ - 24161
type: DeviceLinkSink
- - uid: 24068
+ - uid: 24089
components:
- pos: 41.5,-0.5
parent: 2
type: Transform
- links:
- - 24186
+ - 24207
type: DeviceLinkSink
- - uid: 24069
+ - uid: 24090
components:
- pos: 42.5,-0.5
parent: 2
type: Transform
- links:
- - 24186
+ - 24207
type: DeviceLinkSink
- - uid: 24070
+ - uid: 24091
components:
- pos: 43.5,-0.5
parent: 2
type: Transform
- links:
- - 24186
+ - 24207
type: DeviceLinkSink
- - uid: 24071
+ - uid: 24092
components:
- pos: 46.5,3.5
parent: 2
type: Transform
- links:
- - 24137
+ - 24158
type: DeviceLinkSink
- - uid: 24072
+ - uid: 24093
components:
- rot: -1.5707963267948966 rad
pos: 1.5,-47.5
parent: 2
type: Transform
- links:
- - 24136
+ - 24157
type: DeviceLinkSink
- - uid: 24073
+ - uid: 24094
components:
- rot: -1.5707963267948966 rad
pos: 1.5,-48.5
parent: 2
type: Transform
- links:
- - 24136
+ - 24157
type: DeviceLinkSink
- - uid: 24074
+ - uid: 24095
components:
- pos: 3.5,-44.5
parent: 2
type: Transform
- links:
- - 24136
+ - 24157
type: DeviceLinkSink
- - uid: 24075
+ - uid: 24096
components:
- pos: 4.5,-44.5
parent: 2
type: Transform
- links:
- - 24136
+ - 24157
type: DeviceLinkSink
- - uid: 24076
+ - uid: 24097
components:
- pos: 5.5,-44.5
parent: 2
type: Transform
- links:
- - 24136
+ - 24157
type: DeviceLinkSink
- - uid: 24077
+ - uid: 24098
components:
- pos: 3.5,-51.5
parent: 2
type: Transform
- links:
- - 24136
+ - 24157
type: DeviceLinkSink
- - uid: 24078
+ - uid: 24099
components:
- pos: 23.5,5.5
parent: 2
type: Transform
- links:
- - 24187
+ - 24208
type: DeviceLinkSink
- - uid: 24079
+ - uid: 24100
components:
- pos: 22.5,5.5
parent: 2
type: Transform
- links:
- - 24187
+ - 24208
type: DeviceLinkSink
- - uid: 24080
+ - uid: 24101
components:
- pos: 21.5,5.5
parent: 2
type: Transform
- links:
- - 24187
+ - 24208
type: DeviceLinkSink
- - uid: 24081
+ - uid: 24102
components:
- pos: 25.5,5.5
parent: 2
type: Transform
- links:
- - 24187
+ - 24208
type: DeviceLinkSink
- - uid: 24082
+ - uid: 24103
components:
- pos: 26.5,5.5
parent: 2
type: Transform
- links:
- - 24187
+ - 24208
type: DeviceLinkSink
- - uid: 24083
+ - uid: 24104
components:
- pos: 27.5,5.5
parent: 2
type: Transform
- links:
- - 24187
+ - 24208
type: DeviceLinkSink
- - uid: 24084
+ - uid: 24105
components:
- pos: 27.5,-3.5
parent: 2
type: Transform
- links:
- - 24187
+ - 24208
type: DeviceLinkSink
- - uid: 24085
+ - uid: 24106
components:
- pos: 26.5,-3.5
parent: 2
type: Transform
- links:
- - 24187
+ - 24208
type: DeviceLinkSink
- - uid: 24086
+ - uid: 24107
components:
- pos: 25.5,-3.5
parent: 2
type: Transform
- links:
- - 24187
+ - 24208
type: DeviceLinkSink
- - uid: 24087
+ - uid: 24108
components:
- pos: 23.5,-3.5
parent: 2
type: Transform
- links:
- - 24187
+ - 24208
type: DeviceLinkSink
- - uid: 24088
+ - uid: 24109
components:
- pos: 22.5,-3.5
parent: 2
type: Transform
- - uid: 24089
+ - uid: 24110
components:
- pos: 21.5,-3.5
parent: 2
type: Transform
- links:
- - 24187
+ - 24208
type: DeviceLinkSink
- - uid: 24090
+ - uid: 24111
components:
- rot: 1.5707963267948966 rad
pos: 19.5,3.5
parent: 2
type: Transform
- links:
- - 24187
+ - 24208
type: DeviceLinkSink
- - uid: 24091
+ - uid: 24112
components:
- rot: 1.5707963267948966 rad
pos: 19.5,2.5
parent: 2
type: Transform
- links:
- - 24187
+ - 24208
type: DeviceLinkSink
- - uid: 24092
+ - uid: 24113
components:
- rot: 1.5707963267948966 rad
pos: 19.5,1.5
parent: 2
type: Transform
- links:
- - 24187
+ - 24208
type: DeviceLinkSink
- - uid: 24093
+ - uid: 24114
components:
- rot: 1.5707963267948966 rad
pos: 19.5,0.5
parent: 2
type: Transform
- links:
- - 24187
+ - 24208
type: DeviceLinkSink
- - uid: 24094
+ - uid: 24115
components:
- rot: 1.5707963267948966 rad
pos: 19.5,-0.5
parent: 2
type: Transform
- links:
- - 24187
+ - 24208
type: DeviceLinkSink
- - uid: 24095
+ - uid: 24116
components:
- rot: 1.5707963267948966 rad
pos: 19.5,-1.5
parent: 2
type: Transform
- links:
- - 24187
+ - 24208
type: DeviceLinkSink
- - uid: 24096
+ - uid: 24117
components:
- pos: 22.5,-20.5
parent: 2
type: Transform
- - uid: 24097
+ - uid: 24118
components:
- pos: 23.5,-20.5
parent: 2
type: Transform
- - uid: 24098
+ - uid: 24119
components:
- pos: 24.5,-20.5
parent: 2
type: Transform
- - uid: 24099
+ - uid: 24120
components:
- pos: 25.5,-20.5
parent: 2
type: Transform
- - uid: 24100
+ - uid: 24121
components:
- pos: 26.5,-20.5
parent: 2
type: Transform
- - uid: 24101
+ - uid: 24122
components:
- pos: 27.5,-20.5
parent: 2
type: Transform
- - uid: 24102
+ - uid: 24123
components:
- pos: 28.5,-20.5
parent: 2
type: Transform
- - uid: 24103
+ - uid: 24124
components:
- pos: 4.5,-3.5
parent: 2
type: Transform
- links:
- - 24193
+ - 24214
type: DeviceLinkSink
- - uid: 24104
+ - uid: 24125
components:
- pos: 1.5,-3.5
parent: 2
type: Transform
- links:
- - 24193
+ - 24214
type: DeviceLinkSink
- - uid: 24105
+ - uid: 24126
components:
- pos: 3.5,-3.5
parent: 2
type: Transform
- links:
- - 24193
+ - 24214
type: DeviceLinkSink
- - uid: 24106
+ - uid: 24127
components:
- pos: 2.5,-3.5
parent: 2
type: Transform
- links:
- - 24193
+ - 24214
type: DeviceLinkSink
- proto: ShuttleConsoleCircuitboard
entities:
- - uid: 24107
+ - uid: 24128
components:
- pos: 8.934531,42.902378
parent: 2
type: Transform
- proto: ShuttleWindow
entities:
- - uid: 24108
+ - uid: 24129
components:
- rot: -1.5707963267948966 rad
pos: -72.5,-57.5
parent: 2
type: Transform
- - uid: 24109
+ - uid: 24130
components:
- rot: 1.5707963267948966 rad
pos: -77.5,-51.5
parent: 2
type: Transform
- - uid: 24110
+ - uid: 24131
components:
- rot: 3.141592653589793 rad
pos: -80.5,-53.5
parent: 2
type: Transform
- - uid: 24111
+ - uid: 24132
components:
- rot: 1.5707963267948966 rad
pos: -77.5,-56.5
parent: 2
type: Transform
- - uid: 24112
+ - uid: 24133
components:
- rot: 1.5707963267948966 rad
pos: -80.5,-54.5
parent: 2
type: Transform
- - uid: 24113
+ - uid: 24134
components:
- pos: -72.5,-50.5
parent: 2
type: Transform
- - uid: 24114
+ - uid: 24135
components:
- rot: 3.141592653589793 rad
pos: -78.5,-51.5
parent: 2
type: Transform
- - uid: 24115
+ - uid: 24136
components:
- rot: 1.5707963267948966 rad
pos: -78.5,-56.5
parent: 2
type: Transform
- - uid: 24116
+ - uid: 24137
components:
- rot: 1.5707963267948966 rad
pos: -64.5,-55.5
parent: 2
type: Transform
- - uid: 24117
+ - uid: 24138
components:
- rot: 1.5707963267948966 rad
pos: -64.5,-54.5
parent: 2
type: Transform
- - uid: 24118
+ - uid: 24139
components:
- rot: 1.5707963267948966 rad
pos: -64.5,-53.5
parent: 2
type: Transform
- - uid: 24119
+ - uid: 24140
components:
- rot: 1.5707963267948966 rad
pos: -64.5,-52.5
@@ -158063,35 +158209,35 @@ entities:
type: Transform
- proto: ShuttleWindowDiagonal
entities:
- - uid: 24120
+ - uid: 24141
components:
- rot: 1.5707963267948966 rad
pos: -79.5,-56.5
parent: 2
type: Transform
- - uid: 24121
+ - uid: 24142
components:
- rot: 1.5707963267948966 rad
pos: -80.5,-55.5
parent: 2
type: Transform
- - uid: 24122
+ - uid: 24143
components:
- rot: 3.141592653589793 rad
pos: -79.5,-52.5
parent: 2
type: Transform
- - uid: 24123
+ - uid: 24144
components:
- pos: -80.5,-52.5
parent: 2
type: Transform
- - uid: 24124
+ - uid: 24145
components:
- pos: -79.5,-51.5
parent: 2
type: Transform
- - uid: 24125
+ - uid: 24146
components:
- rot: -1.5707963267948966 rad
pos: -79.5,-55.5
@@ -158099,109 +158245,109 @@ entities:
type: Transform
- proto: SignAi
entities:
- - uid: 24126
+ - uid: 24147
components:
- pos: -3.5,60.5
parent: 2
type: Transform
- proto: SignalButtonDirectional
entities:
- - uid: 24127
+ - uid: 24148
components:
- rot: -1.5707963267948966 rad
pos: -50.5,13.5
parent: 2
type: Transform
- linkedPorts:
- 113:
+ 112:
- Pressed: DoorBolt
type: DeviceLinkSource
- - uid: 24128
+ - uid: 24149
components:
- rot: 1.5707963267948966 rad
pos: -53.5,8.5
parent: 2
type: Transform
- linkedPorts:
- 114:
+ 113:
- Pressed: DoorBolt
type: DeviceLinkSource
- - uid: 24129
+ - uid: 24150
components:
- rot: 1.5707963267948966 rad
pos: -44.5,10.5
parent: 2
type: Transform
- linkedPorts:
- 112:
+ 111:
- Pressed: DoorBolt
type: DeviceLinkSource
- - uid: 24130
+ - uid: 24151
components:
- pos: -22.5,40.5
parent: 2
type: Transform
- linkedPorts:
- 795:
+ 797:
- Pressed: DoorBolt
type: DeviceLinkSource
- - uid: 24131
+ - uid: 24152
components:
- rot: 3.141592653589793 rad
pos: -22.5,28.5
parent: 2
type: Transform
- linkedPorts:
- 115:
+ 114:
- Pressed: DoorBolt
type: DeviceLinkSource
- - uid: 24132
+ - uid: 24153
components:
- rot: -1.5707963267948966 rad
pos: -17.5,35.5
parent: 2
type: Transform
- linkedPorts:
- 116:
+ 115:
- Pressed: DoorBolt
- 676:
+ 677:
- Pressed: DoorBolt
type: DeviceLinkSource
- - uid: 24133
+ - uid: 24154
components:
- rot: -1.5707963267948966 rad
pos: -25.5,44.5
parent: 2
type: Transform
- linkedPorts:
- 794:
+ 796:
- Pressed: DoorBolt
type: DeviceLinkSource
- - uid: 24134
+ - uid: 24155
components:
- rot: 1.5707963267948966 rad
pos: -13.5,33.5
parent: 2
type: Transform
- linkedPorts:
- 117:
+ 116:
- Pressed: DoorBolt
type: DeviceLinkSource
- - uid: 24135
+ - uid: 24156
components:
- rot: -1.5707963267948966 rad
pos: -33.5,-18.5
parent: 2
type: Transform
- linkedPorts:
- 24048:
+ 24069:
- Pressed: Toggle
- 24047:
+ 24068:
- Pressed: Toggle
type: DeviceLinkSource
- proto: SignalSwitch
entities:
- - uid: 24136
+ - uid: 24157
components:
- rot: -1.5707963267948966 rad
pos: 8.5,-48.5
@@ -158210,30 +158356,30 @@ entities:
- state: True
type: SignalSwitch
- linkedPorts:
- 24077:
+ 24098:
- On: Open
- Off: Close
- 24073:
+ 24094:
- On: Open
- Off: Close
- 24072:
+ 24093:
- On: Open
- Off: Close
- 24057:
+ 24078:
- On: Open
- Off: Close
- 24074:
+ 24095:
- On: Open
- Off: Close
- 24075:
+ 24096:
- On: Open
- Off: Close
- 24076:
+ 24097:
- On: Open
- Off: Close
type: DeviceLinkSource
- type: ItemCooldown
- - uid: 24137
+ - uid: 24158
components:
- rot: -1.5707963267948966 rad
pos: 47.5,8.5
@@ -158242,30 +158388,30 @@ entities:
- state: True
type: SignalSwitch
- linkedPorts:
- 24012:
+ 24033:
- On: Open
- Off: Close
- 24062:
+ 24083:
- On: Open
- Off: Close
- 24063:
+ 24084:
- On: Open
- Off: Close
- 24017:
+ 24038:
- On: Open
- Off: Close
- 24018:
+ 24039:
- On: Open
- Off: Close
- 24035:
+ 24056:
- On: Open
- Off: Close
- 24071:
+ 24092:
- On: Open
- Off: Close
type: DeviceLinkSource
- type: ItemCooldown
- - uid: 24138
+ - uid: 24159
components:
- pos: 16.5,15.5
parent: 2
@@ -158273,42 +158419,42 @@ entities:
- state: True
type: SignalSwitch
- linkedPorts:
- 24002:
+ 24023:
- On: Open
- Off: Close
- 24007:
+ 24028:
- On: Open
- Off: Close
- 24008:
+ 24029:
- On: Open
- Off: Close
- 24014:
+ 24035:
- On: Open
- Off: Close
- 24010:
+ 24031:
- On: Open
- Off: Close
- 24009:
+ 24030:
- On: Open
- Off: Close
- 24016:
+ 24037:
- On: Open
- Off: Close
type: DeviceLinkSource
- type: ItemCooldown
- - uid: 24139
+ - uid: 24160
components:
- rot: 3.141592653589793 rad
pos: -13.5,-16.5
parent: 2
type: Transform
- linkedPorts:
- 2131:
+ 2134:
- On: Open
- Off: Close
type: DeviceLinkSource
- type: ItemCooldown
- - uid: 24140
+ - uid: 24161
components:
- rot: -1.5707963267948966 rad
pos: 40.5,-3.5
@@ -158317,141 +158463,141 @@ entities:
- state: True
type: SignalSwitch
- linkedPorts:
- 24031:
+ 24052:
- On: Open
- Off: Close
- 24005:
+ 24026:
- On: Open
- Off: Close
- 24064:
+ 24085:
- On: Open
- Off: Close
- 24065:
+ 24086:
- On: Open
- Off: Close
- 24066:
+ 24087:
- On: Open
- Off: Close
- 24067:
+ 24088:
- On: Open
- Off: Close
type: DeviceLinkSource
- type: ItemCooldown
- - uid: 24141
+ - uid: 24162
components:
- rot: 1.5707963267948966 rad
pos: 66.5,-44.5
parent: 2
type: Transform
- linkedPorts:
- 23998:
+ 24019:
- On: Open
- Off: Close
- 23999:
+ 24020:
- On: Open
- Off: Close
type: DeviceLinkSource
- type: ItemCooldown
- - uid: 24142
+ - uid: 24163
components:
- rot: 3.141592653589793 rad
pos: 70.5,-39.5
parent: 2
type: Transform
- linkedPorts:
- 2110:
+ 2113:
- On: Open
- Off: Close
type: DeviceLinkSource
- - uid: 24143
+ - uid: 24164
components:
- pos: 47.5,-55.5
parent: 2
type: Transform
- linkedPorts:
- 2068:
+ 2071:
- On: Open
- Off: Close
- 2067:
+ 2070:
- On: Open
- Off: Close
- 2066:
+ 2069:
- On: Open
- Off: Close
- 2065:
+ 2068:
- On: Open
- Off: Close
type: DeviceLinkSource
- - uid: 24144
+ - uid: 24165
components:
- rot: -1.5707963267948966 rad
pos: 52.5,-56.5
parent: 2
type: Transform
- linkedPorts:
- 2069:
+ 2072:
- On: Open
- Off: Close
type: DeviceLinkSource
- - uid: 24145
+ - uid: 24166
components:
- pos: -51.5,32.5
parent: 2
type: Transform
- linkedPorts:
- 2083:
+ 2086:
- On: Open
- Off: Close
type: DeviceLinkSource
- type: ItemCooldown
- - uid: 24146
+ - uid: 24167
components:
- rot: 3.141592653589793 rad
pos: 60.5,-55.5
parent: 2
type: Transform
- linkedPorts:
- 2071:
+ 2074:
- On: Open
- Off: Close
- 2072:
+ 2075:
- On: Open
- Off: Close
type: DeviceLinkSource
- - uid: 24147
+ - uid: 24168
components:
- pos: 16.5,-51.5
parent: 2
type: Transform
- linkedPorts:
- 2064:
+ 2067:
- On: Open
- Off: Close
type: DeviceLinkSource
- - uid: 24148
+ - uid: 24169
components:
- pos: -62.5,-26.5
parent: 2
type: Transform
- linkedPorts:
- 2141:
+ 2144:
- On: Open
- Off: Close
- 2140:
+ 2143:
- On: Open
- Off: Close
- 2139:
+ 2142:
- On: Open
- Off: Close
- 2138:
+ 2141:
- On: Open
- Off: Close
- 2137:
+ 2140:
- On: Open
- Off: Close
type: DeviceLinkSource
- type: ItemCooldown
- - uid: 24149
+ - uid: 24170
components:
- pos: -52.5,-11.5
parent: 2
@@ -158459,69 +158605,69 @@ entities:
- state: True
type: SignalSwitch
- linkedPorts:
- 2132:
+ 2135:
- On: Open
- Off: Close
- 2133:
+ 2136:
- On: Open
- Off: Close
- 2134:
+ 2137:
- On: Open
- Off: Close
- 2135:
+ 2138:
- On: Open
- Off: Close
- 2136:
+ 2139:
- On: Open
- Off: Close
type: DeviceLinkSource
- - uid: 24150
+ - uid: 24171
components:
- pos: -36.5,-40.5
parent: 2
type: Transform
- linkedPorts:
- 2077:
+ 2080:
- On: Open
- Off: Close
- 2076:
+ 2079:
- On: Open
- Off: Close
- 2075:
+ 2078:
- On: Open
- Off: Close
- 2074:
+ 2077:
- On: Open
- Off: Close
type: DeviceLinkSource
- - uid: 24151
+ - uid: 24172
components:
- pos: -51.5,21.5
parent: 2
type: Transform
- linkedPorts:
- 2084:
+ 2087:
- On: Open
- Off: Close
- 2085:
+ 2088:
- On: Open
- Off: Close
type: DeviceLinkSource
- type: ItemCooldown
- - uid: 24152
+ - uid: 24173
components:
- pos: -49.5,24.5
parent: 2
type: Transform
- linkedPorts:
- 2079:
+ 2082:
- On: Open
- Off: Close
- 2078:
+ 2081:
- On: Open
- Off: Close
type: DeviceLinkSource
- - uid: 24153
+ - uid: 24174
components:
- pos: 50.5,48.5
parent: 2
@@ -158529,14 +158675,14 @@ entities:
- state: True
type: SignalSwitch
- linkedPorts:
- 2090:
+ 2093:
- On: Open
- Off: Close
- 2092:
+ 2095:
- On: Close
- Off: Open
type: DeviceLinkSource
- - uid: 24154
+ - uid: 24175
components:
- pos: 52.5,48.5
parent: 2
@@ -158544,14 +158690,14 @@ entities:
- state: True
type: SignalSwitch
- linkedPorts:
- 2094:
+ 2097:
- On: Open
- Off: Close
- 2086:
+ 2089:
- On: Close
- Off: Open
type: DeviceLinkSource
- - uid: 24155
+ - uid: 24176
components:
- pos: -46.5,17.5
parent: 2
@@ -158559,21 +158705,21 @@ entities:
- state: True
type: SignalSwitch
- linkedPorts:
- 24027:
+ 24048:
- On: Open
- Off: Close
- 24028:
+ 24049:
- On: Open
- Off: Close
- 24033:
+ 24054:
- On: Open
- Off: Close
- 24034:
+ 24055:
- On: Open
- Off: Close
type: DeviceLinkSource
- type: ItemCooldown
- - uid: 24156
+ - uid: 24177
components:
- pos: 58.5,48.5
parent: 2
@@ -158581,40 +158727,40 @@ entities:
- state: True
type: SignalSwitch
- linkedPorts:
- 2088:
+ 2091:
- On: Open
- Off: Close
- 2105:
+ 2108:
- On: Close
- Off: Open
type: DeviceLinkSource
- - uid: 24157
+ - uid: 24178
components:
- pos: 54.5,46.5
parent: 2
type: Transform
- linkedPorts:
- 2095:
+ 2098:
- On: Open
- Off: Close
- 2099:
+ 2102:
- On: Close
- Off: Open
type: DeviceLinkSource
- - uid: 24158
+ - uid: 24179
components:
- pos: 52.5,46.5
parent: 2
type: Transform
- linkedPorts:
- 2087:
+ 2090:
- On: Open
- Off: Close
- 2081:
+ 2084:
- On: Close
- Off: Open
type: DeviceLinkSource
- - uid: 24159
+ - uid: 24180
components:
- pos: 54.5,48.5
parent: 2
@@ -158622,14 +158768,14 @@ entities:
- state: True
type: SignalSwitch
- linkedPorts:
- 2099:
+ 2102:
- On: Open
- Off: Close
- 2104:
+ 2107:
- On: Close
- Off: Open
type: DeviceLinkSource
- - uid: 24160
+ - uid: 24181
components:
- pos: 56.5,44.5
parent: 2
@@ -158637,14 +158783,14 @@ entities:
- state: True
type: SignalSwitch
- linkedPorts:
- 2081:
+ 2084:
- On: Open
- Off: Close
- 2080:
+ 2083:
- On: Close
- Off: Open
type: DeviceLinkSource
- - uid: 24161
+ - uid: 24182
components:
- pos: 50.5,44.5
parent: 2
@@ -158652,14 +158798,14 @@ entities:
- state: True
type: SignalSwitch
- linkedPorts:
- 2101:
+ 2104:
- On: Open
- Off: Close
- 2087:
+ 2090:
- On: Close
- Off: Open
type: DeviceLinkSource
- - uid: 24162
+ - uid: 24183
components:
- pos: 52.5,44.5
parent: 2
@@ -158667,27 +158813,27 @@ entities:
- state: True
type: SignalSwitch
- linkedPorts:
- 2080:
+ 2083:
- On: Close
- Off: Open
- 2089:
+ 2092:
- On: Open
- Off: Close
type: DeviceLinkSource
- - uid: 24163
+ - uid: 24184
components:
- pos: 58.5,46.5
parent: 2
type: Transform
- linkedPorts:
- 2086:
+ 2089:
- On: Open
- Off: Close
- 2102:
+ 2105:
- On: Close
- Off: Open
type: DeviceLinkSource
- - uid: 24164
+ - uid: 24185
components:
- pos: 54.5,44.5
parent: 2
@@ -158695,27 +158841,27 @@ entities:
- state: True
type: SignalSwitch
- linkedPorts:
- 2097:
+ 2100:
- On: Open
- Off: Close
- 2096:
+ 2099:
- On: Close
- Off: Open
type: DeviceLinkSource
- - uid: 24165
+ - uid: 24186
components:
- pos: 50.5,46.5
parent: 2
type: Transform
- linkedPorts:
- 2098:
+ 2101:
- On: Close
- Off: Open
- 2104:
+ 2107:
- On: Open
- Off: Close
type: DeviceLinkSource
- - uid: 24166
+ - uid: 24187
components:
- pos: 56.5,46.5
parent: 2
@@ -158723,14 +158869,14 @@ entities:
- state: True
type: SignalSwitch
- linkedPorts:
- 2105:
+ 2108:
- On: Open
- Off: Close
- 2095:
+ 2098:
- On: Close
- Off: Open
type: DeviceLinkSource
- - uid: 24167
+ - uid: 24188
components:
- pos: 58.5,44.5
parent: 2
@@ -158738,36 +158884,36 @@ entities:
- state: True
type: SignalSwitch
- linkedPorts:
- 2097:
+ 2100:
- On: Open
- Off: Close
- 2103:
+ 2106:
- On: Open
- Off: Close
- 2080:
+ 2083:
- On: Close
- Off: Open
type: DeviceLinkSource
- - uid: 24168
+ - uid: 24189
components:
- pos: 56.5,48.5
parent: 2
type: Transform
- linkedPorts:
- 2093:
+ 2096:
- On: Open
- Off: Close
- 2092:
+ 2095:
- On: Open
- Off: Close
- 2099:
+ 2102:
- On: Close
- Off: Open
- 2103:
+ 2106:
- On: Close
- Off: Open
type: DeviceLinkSource
- - uid: 24169
+ - uid: 24190
components:
- rot: 1.5707963267948966 rad
pos: -35.5,29.5
@@ -158776,60 +158922,60 @@ entities:
- state: True
type: SignalSwitch
- linkedPorts:
- 24026:
+ 24047:
- On: Open
- Off: Close
- 24024:
+ 24045:
- On: Open
- Off: Close
- 24021:
+ 24042:
- On: Open
- Off: Close
- 24032:
+ 24053:
- On: Open
- Off: Close
- 24004:
+ 24025:
- On: Open
- Off: Close
- 24029:
+ 24050:
- On: Open
- Off: Close
type: DeviceLinkSource
- type: ItemCooldown
- - uid: 24170
+ - uid: 24191
components:
- pos: 54.5,51.5
parent: 2
type: Transform
- linkedPorts:
- 2092:
+ 2095:
- On: Open
- Off: Close
- 2086:
+ 2089:
- On: Open
- Off: Close
- 2096:
+ 2099:
- On: Open
- Off: Close
type: DeviceLinkSource
- type: ItemCooldown
- - uid: 24171
+ - uid: 24192
components:
- pos: 5.5,49.5
parent: 2
type: Transform
- linkedPorts:
- 2062:
+ 2065:
- On: Open
- Off: Close
- 2063:
+ 2066:
- On: Open
- Off: Close
- 2061:
+ 2064:
- On: Open
- Off: Close
type: DeviceLinkSource
- - uid: 24172
+ - uid: 24193
components:
- pos: 27.5,44.5
parent: 2
@@ -158837,64 +158983,64 @@ entities:
- state: True
type: SignalSwitch
- linkedPorts:
- 2116:
+ 2119:
- On: Open
- Off: Close
- 2119:
+ 2122:
- On: Open
- Off: Close
- 2120:
+ 2123:
- On: Open
- Off: Close
- 2115:
+ 2118:
- On: Open
- Off: Close
- 2113:
+ 2116:
- On: Open
- Off: Close
- 2114:
+ 2117:
- On: Open
- Off: Close
- 2122:
+ 2125:
- On: Open
- Off: Close
- 2121:
+ 2124:
- On: Open
- Off: Close
- 2118:
+ 2121:
- On: Open
- Off: Close
- 2117:
+ 2120:
- On: Open
- Off: Close
type: DeviceLinkSource
- - uid: 24173
+ - uid: 24194
components:
- pos: -28.5,-96.5
parent: 2
type: Transform
- linkedPorts:
- 2106:
+ 2109:
- On: Open
- Off: Close
- 2107:
+ 2110:
- On: Open
- Off: Close
type: DeviceLinkSource
- - uid: 24174
+ - uid: 24195
components:
- pos: -16.5,-96.5
parent: 2
type: Transform
- linkedPorts:
- 2108:
+ 2111:
- On: Open
- Off: Close
- 2109:
+ 2112:
- On: Open
- Off: Close
type: DeviceLinkSource
- - uid: 24175
+ - uid: 24196
components:
- rot: 3.141592653589793 rad
pos: -5.5,-89.5
@@ -158903,32 +159049,32 @@ entities:
- state: True
type: SignalSwitch
- linkedPorts:
- 2130:
+ 2133:
- On: Open
- Off: Close
- 2123:
+ 2126:
- On: Open
- Off: Close
- 2124:
+ 2127:
- On: Open
- Off: Close
- 2127:
+ 2130:
- On: Open
- Off: Close
- 2125:
+ 2128:
- On: Open
- Off: Close
- 2126:
+ 2129:
- On: Open
- Off: Close
- 2128:
+ 2131:
- On: Open
- Off: Close
- 2129:
+ 2132:
- On: Open
- Off: Close
type: DeviceLinkSource
- - uid: 24176
+ - uid: 24197
components:
- pos: -8.5,-94.5
parent: 2
@@ -158936,53 +159082,53 @@ entities:
- state: True
type: SignalSwitch
- linkedPorts:
- 2130:
+ 2133:
- On: Open
- Off: Close
- 2123:
+ 2126:
- On: Open
- Off: Close
- 2124:
+ 2127:
- On: Open
- Off: Close
- 2125:
+ 2128:
- On: Open
- Off: Close
- 2127:
+ 2130:
- On: Open
- Off: Close
- 2126:
+ 2129:
- On: Open
- Off: Close
- 2128:
+ 2131:
- On: Open
- Off: Close
- 2129:
+ 2132:
- On: Open
- Off: Close
type: DeviceLinkSource
- - uid: 24177
+ - uid: 24198
components:
- rot: 3.141592653589793 rad
pos: 48.5,-59.5
parent: 2
type: Transform
- linkedPorts:
- 2070:
+ 2073:
- On: Open
- Off: Close
type: DeviceLinkSource
- - uid: 24178
+ - uid: 24199
components:
- pos: 69.5,-32.5
parent: 2
type: Transform
- linkedPorts:
- 2111:
+ 2114:
- On: Open
- Off: Close
type: DeviceLinkSource
- - uid: 24179
+ - uid: 24200
components:
- pos: 33.483017,17.346874
parent: 2
@@ -158990,24 +159136,24 @@ entities:
- state: True
type: SignalSwitch
- linkedPorts:
- 24022:
+ 24043:
- On: Open
- Off: Close
- 24030:
+ 24051:
- On: Open
- Off: Close
- 24023:
+ 24044:
- On: Open
- Off: Close
- 24025:
+ 24046:
- On: Open
- Off: Close
- 24013:
+ 24034:
- On: Open
- Off: Close
type: DeviceLinkSource
- type: ItemCooldown
- - uid: 24180
+ - uid: 24201
components:
- rot: 3.141592653589793 rad
pos: 64.5,-55.5
@@ -159016,42 +159162,42 @@ entities:
- state: True
type: SignalSwitch
- linkedPorts:
- 24020:
+ 24041:
- On: Open
- Off: Close
- 24019:
+ 24040:
- On: Open
- Off: Close
- 24015:
+ 24036:
- On: Open
- Off: Close
- 24037:
+ 24058:
- On: Open
- Off: Close
- 24036:
+ 24057:
- On: Open
- Off: Close
- 24039:
+ 24060:
- On: Open
- Off: Close
- 24038:
+ 24059:
- On: Open
- Off: Close
- 24040:
+ 24061:
- On: Open
- Off: Close
- 24041:
+ 24062:
- On: Open
- Off: Close
- 24042:
+ 24063:
- On: Open
- Off: Close
- 24043:
+ 24064:
- On: Open
- Off: Close
type: DeviceLinkSource
- type: ItemCooldown
- - uid: 24181
+ - uid: 24202
components:
- rot: -1.5707963267948966 rad
pos: -16.5,-55.5
@@ -159060,26 +159206,26 @@ entities:
- state: True
type: SignalSwitch
- linkedPorts:
- 24045:
+ 24066:
- On: Open
- Off: Close
- 24044:
+ 24065:
- On: Open
- Off: Close
type: DeviceLinkSource
- type: ItemCooldown
- - uid: 24182
+ - uid: 24203
components:
- pos: -51.5,36.5
parent: 2
type: Transform
- linkedPorts:
- 2082:
+ 2085:
- On: Open
- Off: Close
type: DeviceLinkSource
- type: ItemCooldown
- - uid: 24183
+ - uid: 24204
components:
- rot: 1.5707963267948966 rad
pos: 3.5,10.5
@@ -159088,33 +159234,33 @@ entities:
- state: True
type: SignalSwitch
- linkedPorts:
- 24049:
+ 24070:
- On: Open
- Off: Close
- 24050:
+ 24071:
- On: Open
- Off: Close
- 24051:
+ 24072:
- On: Open
- Off: Close
- 24056:
+ 24077:
- On: Open
- Off: Close
- 24055:
+ 24076:
- On: Open
- Off: Close
- 24054:
+ 24075:
- On: Open
- Off: Close
- 24053:
+ 24074:
- On: Open
- Off: Close
- 24052:
+ 24073:
- On: Open
- Off: Close
type: DeviceLinkSource
- type: ItemCooldown
- - uid: 24184
+ - uid: 24205
components:
- pos: 33.487907,17.698355
parent: 2
@@ -159122,35 +159268,35 @@ entities:
- state: True
type: SignalSwitch
- linkedPorts:
- 24058:
+ 24079:
- On: Open
- Off: Close
- 24059:
+ 24080:
- On: Open
- Off: Close
- 24060:
+ 24081:
- On: Open
- Off: Close
type: DeviceLinkSource
- type: ItemCooldown
- - uid: 24185
+ - uid: 24206
components:
- rot: -1.5707963267948966 rad
pos: -5.5,10.5
parent: 2
type: Transform
- linkedPorts:
- 24006:
+ 24027:
- On: Open
- Off: Close
- 24061:
+ 24082:
- On: Open
- Off: Close
- 24011:
+ 24032:
- On: Open
- Off: Close
type: DeviceLinkSource
- - uid: 24186
+ - uid: 24207
components:
- rot: -1.5707963267948966 rad
pos: 45.5,-2.5
@@ -159159,211 +159305,211 @@ entities:
- state: True
type: SignalSwitch
- linkedPorts:
- 24070:
+ 24091:
- On: Open
- Off: Close
- 24069:
+ 24090:
- On: Open
- Off: Close
- 24068:
+ 24089:
- On: Open
- Off: Close
type: DeviceLinkSource
- type: ItemCooldown
- - uid: 24187
+ - uid: 24208
components:
- rot: -1.5707963267948966 rad
pos: 29.5,-1.5
parent: 2
type: Transform
- linkedPorts:
- 24080:
+ 24101:
- On: Open
- Off: Close
- 24079:
+ 24100:
- On: Open
- Off: Close
- 24078:
+ 24099:
- On: Open
- Off: Close
- 24081:
+ 24102:
- On: Open
- Off: Close
- 24082:
+ 24103:
- On: Open
- Off: Close
- 24083:
+ 24104:
- On: Open
- Off: Close
- 24084:
+ 24105:
- On: Open
- Off: Close
- 24085:
+ 24106:
- On: Open
- Off: Close
- 24086:
+ 24107:
- On: Open
- Off: Close
- 24087:
+ 24108:
- On: Open
- Off: Close
- 24089:
+ 24110:
- On: Open
- Off: Close
- 24095:
+ 24116:
- On: Open
- Off: Close
- 24094:
+ 24115:
- On: Open
- Off: Close
- 24093:
+ 24114:
- On: Open
- Off: Close
- 24092:
+ 24113:
- On: Open
- Off: Close
- 24091:
+ 24112:
- On: Open
- Off: Close
- 24090:
+ 24111:
- On: Open
- Off: Close
type: DeviceLinkSource
- - uid: 24188
+ - uid: 24209
components:
- rot: -1.5707963267948966 rad
pos: 31.5,-23.5
parent: 2
type: Transform
- - uid: 24189
+ - uid: 24210
components:
- pos: -2.5,16.5
parent: 2
type: Transform
- linkedPorts:
- 24000:
+ 24021:
- On: Open
- Off: Close
- Status: Toggle
- 24001:
+ 24022:
- On: Open
- Off: Close
- Status: Toggle
type: DeviceLinkSource
- type: ItemCooldown
- - uid: 24190
+ - uid: 24211
components:
- pos: -74.5,-43.5
parent: 2
type: Transform
- linkedPorts:
- 2059:
+ 2062:
- On: Open
- Off: Close
- Status: Toggle
- 2060:
+ 2063:
- On: Open
- Off: Close
- Status: Toggle
- 2058:
+ 2061:
- On: Open
- Off: Close
- Status: Toggle
type: DeviceLinkSource
- - uid: 24191
+ - uid: 24212
components:
- pos: -74.5,-38.5
parent: 2
type: Transform
- linkedPorts:
- 2056:
+ 2059:
- On: Open
- Off: Close
- Status: Toggle
- 2055:
+ 2058:
- On: Open
- Off: Close
- Status: Toggle
- 2057:
+ 2060:
- On: Open
- Off: Close
- Status: Toggle
type: DeviceLinkSource
- - uid: 24192
+ - uid: 24213
components:
- rot: -1.5707963267948966 rad
pos: -41.5,-39.5
parent: 2
type: Transform
- linkedPorts:
- 2112:
+ 2115:
- On: Open
- Off: Close
- Status: Toggle
- 2073:
+ 2076:
- On: Open
- Off: Close
- Status: Toggle
type: DeviceLinkSource
- proto: SignalSwitchDirectional
entities:
- - uid: 24193
+ - uid: 24214
components:
- rot: 1.5707963267948966 rad
pos: 0.5,-7.5
parent: 2
type: Transform
- linkedPorts:
- 24105:
+ 24126:
- On: Open
- Off: Close
- Status: Toggle
- 24103:
+ 24124:
- Off: Close
- On: Open
- Status: Toggle
- 24106:
+ 24127:
- On: Open
- Off: Close
- Status: Toggle
- 24104:
+ 24125:
- On: Open
- Off: Close
- Status: Toggle
- 22462:
+ 22472:
- Status: Toggle
- 22090:
+ 22102:
- Status: Toggle
type: DeviceLinkSource
- proto: SignAnomaly
entities:
- - uid: 24194
+ - uid: 24215
components:
- pos: 76.5,-42.5
parent: 2
type: Transform
- proto: SignAnomaly2
entities:
- - uid: 24195
+ - uid: 24216
components:
- pos: 63.5,-41.5
parent: 2
type: Transform
- proto: SignArmory
entities:
- - uid: 24196
+ - uid: 24217
components:
- pos: 29.5,24.5
parent: 2
type: Transform
- proto: SignAtmos
entities:
- - uid: 24197
+ - uid: 24218
components:
- pos: -21.5,-31.5
parent: 2
type: Transform
- - uid: 24198
+ - uid: 24219
components:
- name: Thermoelectric Generator
type: MetaData
@@ -159371,7 +159517,7 @@ entities:
pos: -71.5,-33.5
parent: 2
type: Transform
- - uid: 24199
+ - uid: 24220
components:
- name: Thermo-Electric Generator
type: MetaData
@@ -159381,24 +159527,24 @@ entities:
type: Transform
- proto: SignAtmosMinsky
entities:
- - uid: 24200
+ - uid: 24221
components:
- pos: -30.5,-29.5
parent: 2
type: Transform
- - uid: 24201
+ - uid: 24222
components:
- pos: -21.5,-33.5
parent: 2
type: Transform
- proto: SignBar
entities:
- - uid: 24202
+ - uid: 24223
components:
- pos: 15.5,5.5
parent: 2
type: Transform
- - uid: 24203
+ - uid: 24224
components:
- rot: 1.5707963267948966 rad
pos: 12.5,4.5
@@ -159406,97 +159552,97 @@ entities:
type: Transform
- proto: SignBiohazardMed
entities:
- - uid: 24204
+ - uid: 24225
components:
- pos: -23.5,-74.5
parent: 2
type: Transform
- proto: SignBridge
entities:
- - uid: 24205
+ - uid: 24226
components:
- pos: 17.5,-26.5
parent: 2
type: Transform
- - uid: 24206
+ - uid: 24227
components:
- pos: 33.5,-26.5
parent: 2
type: Transform
- proto: SignCanisters
entities:
- - uid: 24207
+ - uid: 24228
components:
- pos: -36.5,-39.5
parent: 2
type: Transform
- - uid: 24208
+ - uid: 24229
components:
- pos: 47.5,-50.5
parent: 2
type: Transform
- proto: SignCargo
entities:
- - uid: 24209
+ - uid: 24230
components:
- pos: -21.5,22.5
parent: 2
type: Transform
- proto: SignCargoDock
entities:
- - uid: 24210
+ - uid: 24231
components:
- pos: -35.532974,23.594805
parent: 2
type: Transform
- proto: SignChem
entities:
- - uid: 24211
+ - uid: 24232
components:
- pos: 2.5,-44.5
parent: 2
type: Transform
- proto: SignCloning
entities:
- - uid: 24212
+ - uid: 24233
components:
- pos: -7.5,-62.5
parent: 2
type: Transform
- proto: SignConference
entities:
- - uid: 24213
+ - uid: 24234
components:
- pos: 22.5,-26.5
parent: 2
type: Transform
- proto: SignDangerMed
entities:
- - uid: 24214
+ - uid: 24235
components:
- pos: 15.5,35.5
parent: 2
type: Transform
- proto: SignDirectionalBar
entities:
- - uid: 24215
+ - uid: 24236
components:
- pos: -19.478512,48.31118
parent: 2
type: Transform
- - uid: 24216
+ - uid: 24237
components:
- rot: 1.5707963267948966 rad
pos: -17.472397,9.2931385
parent: 2
type: Transform
- - uid: 24217
+ - uid: 24238
components:
- rot: 3.141592653589793 rad
pos: 23.49888,-45.152493
parent: 2
type: Transform
- - uid: 24218
+ - uid: 24239
components:
- rot: 1.5707963267948966 rad
pos: -27.50719,3.4686704
@@ -159504,52 +159650,52 @@ entities:
type: Transform
- proto: SignDirectionalBridge
entities:
- - uid: 24219
+ - uid: 24240
components:
- pos: -19.478844,48.09307
parent: 2
type: Transform
- - uid: 24220
+ - uid: 24241
components:
- rot: 1.5707963267948966 rad
pos: -1.5055174,1.4292434
parent: 2
type: Transform
- - uid: 24221
+ - uid: 24242
components:
- rot: 1.5707963267948966 rad
pos: -2.4872613,-24.496803
parent: 2
type: Transform
- - uid: 24222
+ - uid: 24243
components:
- pos: 27.5,-7.5
parent: 2
type: Transform
- - uid: 24223
+ - uid: 24244
components:
- pos: 15.5507345,4.4965997
parent: 2
type: Transform
- - uid: 24224
+ - uid: 24245
components:
- rot: 1.5707963267948966 rad
pos: -11.506838,1.2987667
parent: 2
type: Transform
- - uid: 24225
+ - uid: 24246
components:
- rot: 1.5707963267948966 rad
pos: -1.4898663,-40.13394
parent: 2
type: Transform
- - uid: 24226
+ - uid: 24247
components:
- rot: 1.5707963267948966 rad
pos: -17.465254,8.332064
parent: 2
type: Transform
- - uid: 24227
+ - uid: 24248
components:
- rot: 1.5707963267948966 rad
pos: -27.50719,3.2186704
@@ -159557,19 +159703,19 @@ entities:
type: Transform
- proto: SignDirectionalChapel
entities:
- - uid: 24228
+ - uid: 24249
components:
- rot: -1.5707963267948966 rad
pos: -27.5,2.5
parent: 2
type: Transform
- - uid: 24229
+ - uid: 24250
components:
- rot: 3.141592653589793 rad
pos: -17.448181,-40.311073
parent: 2
type: Transform
- - uid: 24230
+ - uid: 24251
components:
- rot: -1.5707963267948966 rad
pos: -21.478504,9.770466
@@ -159577,238 +159723,238 @@ entities:
type: Transform
- proto: SignDirectionalEng
entities:
- - uid: 24231
+ - uid: 24252
components:
- rot: -1.5707963267948966 rad
pos: 23.456676,-44.465714
parent: 2
type: Transform
- - uid: 24232
+ - uid: 24253
components:
- rot: -1.5707963267948966 rad
pos: 13.481093,-40.52887
parent: 2
type: Transform
- - uid: 24233
+ - uid: 24254
components:
- rot: -1.5707963267948966 rad
pos: -1.5094987,0.23005629
parent: 2
type: Transform
- - uid: 24234
+ - uid: 24255
components:
- rot: -1.5707963267948966 rad
pos: 15.5186825,0.3410281
parent: 2
type: Transform
- - uid: 24235
+ - uid: 24256
components:
- rot: -1.5707963267948966 rad
pos: -6.468719,-24.535433
parent: 2
type: Transform
- - uid: 24236
+ - uid: 24257
components:
- rot: -1.5707963267948966 rad
pos: 13.494198,-28.706446
parent: 2
type: Transform
- - uid: 24237
+ - uid: 24258
components:
- rot: -1.5707963267948966 rad
pos: 27.506605,-7.2696166
parent: 2
type: Transform
- - uid: 24238
+ - uid: 24259
components:
- pos: -11.54485,0.20892155
parent: 2
type: Transform
- - uid: 24239
+ - uid: 24260
components:
- rot: -1.5707963267948966 rad
pos: -12.525326,-40.537384
parent: 2
type: Transform
- - uid: 24240
+ - uid: 24261
components:
- rot: -1.5707963267948966 rad
pos: 37.56283,-40.519398
parent: 2
type: Transform
- - uid: 24241
+ - uid: 24262
components:
- pos: -19.479143,47.185772
parent: 2
type: Transform
- - uid: 24242
+ - uid: 24263
components:
- pos: -21.4735,10.205865
parent: 2
type: Transform
- - uid: 24243
+ - uid: 24264
components:
- rot: 3.141592653589793 rad
pos: -17.5,-33.5
parent: 2
type: Transform
- - uid: 24244
+ - uid: 24265
components:
- pos: -27.491566,-1.4688294
parent: 2
type: Transform
- proto: SignDirectionalEvac
entities:
- - uid: 24245
+ - uid: 24266
components:
- rot: 1.5707963267948966 rad
pos: 23.453842,-7.240517
parent: 2
type: Transform
- - uid: 24246
+ - uid: 24267
components:
- rot: 3.141592653589793 rad
pos: 13.494197,-24.550196
parent: 2
type: Transform
- - uid: 24247
+ - uid: 24268
components:
- rot: 3.141592653589793 rad
pos: 17.50633,-38.506306
parent: 2
type: Transform
- - uid: 24248
+ - uid: 24269
components:
- rot: 3.141592653589793 rad
pos: 27.469652,-44.466072
parent: 2
type: Transform
- - uid: 24249
+ - uid: 24270
components:
- rot: 3.141592653589793 rad
pos: 33.56561,-38.47694
parent: 2
type: Transform
- - uid: 24250
+ - uid: 24271
components:
- rot: 1.5707963267948966 rad
pos: 15.500585,1.4258997
parent: 2
type: Transform
- - uid: 24251
+ - uid: 24272
components:
- rot: 1.5707963267948966 rad
pos: -2.4941144,-24.735882
parent: 2
type: Transform
- - uid: 24252
+ - uid: 24273
components:
- rot: 1.5707963267948966 rad
pos: -1.5055175,1.6636184
parent: 2
type: Transform
- - uid: 24253
+ - uid: 24274
components:
- rot: 1.5707963267948966 rad
pos: -11.506838,1.7987667
parent: 2
type: Transform
- - uid: 24254
+ - uid: 24275
components:
- rot: 1.5707963267948966 rad
pos: -1.4898663,-40.82144
parent: 2
type: Transform
- - uid: 24255
+ - uid: 24276
components:
- rot: 1.5707963267948966 rad
pos: 35.5,3.5
parent: 2
type: Transform
- - uid: 24256
+ - uid: 24277
components:
- pos: -19.483376,48.548702
parent: 2
type: Transform
- - uid: 24257
+ - uid: 24278
components:
- rot: 1.5707963267948966 rad
pos: -17.48425,-7.298242
parent: 2
type: Transform
- - uid: 24258
+ - uid: 24279
components:
- rot: 1.5707963267948966 rad
pos: -17.5155,-24.43221
parent: 2
type: Transform
- - uid: 24259
+ - uid: 24280
components:
- rot: 1.5707963267948966 rad
pos: -17.453,-40.550083
parent: 2
type: Transform
- - uid: 24260
+ - uid: 24281
components:
- rot: 1.5707963267948966 rad
pos: -17.465254,9.066439
parent: 2
type: Transform
- - uid: 24261
+ - uid: 24282
components:
- rot: 3.141592653589793 rad
pos: 60.5,-42.5
parent: 2
type: Transform
- - uid: 24262
+ - uid: 24283
components:
- pos: -17.5,22.5
parent: 2
type: Transform
- - uid: 24263
+ - uid: 24284
components:
- pos: -17.5,33.5
parent: 2
type: Transform
- proto: SignDirectionalFood
entities:
- - uid: 24264
+ - uid: 24285
components:
- rot: -1.5707963267948966 rad
pos: 23.455772,-7.472424
parent: 2
type: Transform
- - uid: 24265
+ - uid: 24286
components:
- rot: 3.141592653589793 rad
pos: -6.442209,-23.658274
parent: 2
type: Transform
- - uid: 24266
+ - uid: 24287
components:
- rot: -1.5707963267948966 rad
pos: 13.515763,-23.596605
parent: 2
type: Transform
- - uid: 24267
+ - uid: 24288
components:
- rot: 3.141592653589793 rad
pos: 13.482204,-40.04481
parent: 2
type: Transform
- - uid: 24268
+ - uid: 24289
components:
- rot: 3.141592653589793 rad
pos: -6.4057527,-39.46833
parent: 2
type: Transform
- - uid: 24269
+ - uid: 24290
components:
- rot: 3.141592653589793 rad
pos: 23.49562,-45.402493
parent: 2
type: Transform
- - uid: 24270
+ - uid: 24291
components:
- rot: 1.5707963267948966 rad
pos: -27.50719,2.7655454
@@ -159816,43 +159962,43 @@ entities:
type: Transform
- proto: SignDirectionalHop
entities:
- - uid: 24271
+ - uid: 24292
components:
- rot: 3.141592653589793 rad
pos: -6.407528,-39.689182
parent: 2
type: Transform
- - uid: 24272
+ - uid: 24293
components:
- rot: 3.141592653589793 rad
pos: -2.5195708,-23.764477
parent: 2
type: Transform
- - uid: 24273
+ - uid: 24294
components:
- rot: -1.5707963267948966 rad
pos: 13.506188,-24.076977
parent: 2
type: Transform
- - uid: 24274
+ - uid: 24295
components:
- rot: 3.141592653589793 rad
pos: 13.449441,-39.80865
parent: 2
type: Transform
- - uid: 24275
+ - uid: 24296
components:
- rot: 1.5707963267948966 rad
pos: -2.5029292,-2.2492237
parent: 2
type: Transform
- - uid: 24276
+ - uid: 24297
components:
- rot: -1.5707963267948966 rad
pos: 28.50559,-7.2209973
parent: 2
type: Transform
- - uid: 24277
+ - uid: 24298
components:
- rot: -1.5707963267948966 rad
pos: 23.500246,-45.63412
@@ -159860,24 +160006,24 @@ entities:
type: Transform
- proto: SignDirectionalJanitor
entities:
- - uid: 24278
+ - uid: 24299
components:
- pos: -6.5,-2.5
parent: 2
type: Transform
- - uid: 24279
+ - uid: 24300
components:
- rot: -1.5707963267948966 rad
pos: 13.511264,-23.825424
parent: 2
type: Transform
- - uid: 24280
+ - uid: 24301
components:
- rot: -1.5707963267948966 rad
pos: 13.468106,-40.766113
parent: 2
type: Transform
- - uid: 24281
+ - uid: 24302
components:
- rot: 3.141592653589793 rad
pos: -6.4057527,-39.226246
@@ -159885,230 +160031,230 @@ entities:
type: Transform
- proto: SignDirectionalMed
entities:
- - uid: 24282
+ - uid: 24303
components:
- pos: -19.479143,47.404522
parent: 2
type: Transform
- - uid: 24283
+ - uid: 24304
components:
- rot: -1.5707963267948966 rad
pos: 13.494197,-24.31582
parent: 2
type: Transform
- - uid: 24284
+ - uid: 24305
components:
- rot: -1.5707963267948966 rad
pos: 23.456676,-44.23134
parent: 2
type: Transform
- - uid: 24285
+ - uid: 24306
components:
- rot: -1.5707963267948966 rad
pos: 13.481093,-40.279392
parent: 2
type: Transform
- - uid: 24286
+ - uid: 24307
components:
- rot: -1.5707963267948966 rad
pos: 15.518682,0.809778
parent: 2
type: Transform
- - uid: 24287
+ - uid: 24308
components:
- pos: -1.509499,0.7144314
parent: 2
type: Transform
- - uid: 24288
+ - uid: 24309
components:
- pos: -6.468719,-24.785433
parent: 2
type: Transform
- - uid: 24289
+ - uid: 24310
components:
- pos: -11.538088,0.45501685
parent: 2
type: Transform
- - uid: 24290
+ - uid: 24311
components:
- rot: -1.5707963267948966 rad
pos: 37.560596,-40.278557
parent: 2
type: Transform
- - uid: 24291
+ - uid: 24312
components:
- pos: -17.51201,-24.680704
parent: 2
type: Transform
- - uid: 24292
+ - uid: 24313
components:
- pos: -21.471863,9.993778
parent: 2
type: Transform
- - uid: 24293
+ - uid: 24314
components:
- pos: -17.494442,-12.803106
parent: 2
type: Transform
- - uid: 24294
+ - uid: 24315
components:
- pos: -27.491566,-1.7032045
parent: 2
type: Transform
- proto: SignDirectionalSci
entities:
- - uid: 24295
+ - uid: 24316
components:
- rot: 1.5707963267948966 rad
pos: -2.4872613,-24.231178
parent: 2
type: Transform
- - uid: 24296
+ - uid: 24317
components:
- rot: 1.5707963267948966 rad
pos: 27.465042,-44.22285
parent: 2
type: Transform
- - uid: 24297
+ - uid: 24318
components:
- pos: 15.550735,4.2699327
parent: 2
type: Transform
- - uid: 24298
+ - uid: 24319
components:
- pos: 13.494197,-28.22207
parent: 2
type: Transform
- - uid: 24299
+ - uid: 24320
components:
- pos: 27.506117,-7.7341094
parent: 2
type: Transform
- - uid: 24300
+ - uid: 24321
components:
- rot: 1.5707963267948966 rad
pos: -11.506838,1.5487667
parent: 2
type: Transform
- - uid: 24301
+ - uid: 24322
components:
- rot: 1.5707963267948966 rad
pos: -1.4898663,-40.368317
parent: 2
type: Transform
- - uid: 24302
+ - uid: 24323
components:
- pos: -19.479143,47.623272
parent: 2
type: Transform
- - uid: 24303
+ - uid: 24324
components:
- rot: 1.5707963267948966 rad
pos: -17.465254,8.816439
parent: 2
type: Transform
- - uid: 24304
+ - uid: 24325
components:
- rot: 1.5707963267948966 rad
pos: -17.460167,-40.790154
parent: 2
type: Transform
- - uid: 24305
+ - uid: 24326
components:
- pos: -17.507042,-24.18393
parent: 2
type: Transform
- - uid: 24306
+ - uid: 24327
components:
- pos: -27.491566,-1.2344544
parent: 2
type: Transform
- proto: SignDirectionalSec
entities:
- - uid: 24307
+ - uid: 24328
components:
- rot: 3.141592653589793 rad
pos: 23.45433,-7.7213244
parent: 2
type: Transform
- - uid: 24308
+ - uid: 24329
components:
- rot: 3.141592653589793 rad
pos: 27.468637,-44.695934
parent: 2
type: Transform
- - uid: 24309
+ - uid: 24330
components:
- rot: 3.141592653589793 rad
pos: 33.55467,-38.221992
parent: 2
type: Transform
- - uid: 24310
+ - uid: 24331
components:
- rot: 3.141592653589793 rad
pos: 17.50898,-38.26922
parent: 2
type: Transform
- - uid: 24311
+ - uid: 24332
components:
- rot: 3.141592653589793 rad
pos: 15.5581455,4.7444477
parent: 2
type: Transform
- - uid: 24312
+ - uid: 24333
components:
- rot: 3.141592653589793 rad
pos: 13.4980955,-24.785376
parent: 2
type: Transform
- - uid: 24313
+ - uid: 24334
components:
- rot: 1.5707963267948966 rad
pos: -6.4826374,-24.301481
parent: 2
type: Transform
- - uid: 24314
+ - uid: 24335
components:
- rot: 1.5707963267948966 rad
pos: -1.4980723,1.197365
parent: 2
type: Transform
- - uid: 24315
+ - uid: 24336
components:
- rot: 1.5707963267948966 rad
pos: -11.517976,1.041115
parent: 2
type: Transform
- - uid: 24316
+ - uid: 24337
components:
- rot: 1.5707963267948966 rad
pos: -1.4758278,-40.604027
parent: 2
type: Transform
- - uid: 24317
+ - uid: 24338
components:
- pos: -19.471409,47.857254
parent: 2
type: Transform
- - uid: 24318
+ - uid: 24339
components:
- rot: 1.5707963267948966 rad
pos: -17.523046,-28.22695
parent: 2
type: Transform
- - uid: 24319
+ - uid: 24340
components:
- rot: 1.5707963267948966 rad
pos: -17.476206,8.574429
parent: 2
type: Transform
- - uid: 24320
+ - uid: 24341
components:
- rot: 1.5707963267948966 rad
pos: -17.478817,-7.5615916
parent: 2
type: Transform
- - uid: 24321
+ - uid: 24342
components:
- rot: 1.5707963267948966 rad
pos: -27.522816,2.2499206
@@ -160116,12 +160262,12 @@ entities:
type: Transform
- proto: SignDirectionalSolar
entities:
- - uid: 24322
+ - uid: 24343
components:
- pos: -0.5,-76.5
parent: 2
type: Transform
- - uid: 24323
+ - uid: 24344
components:
- rot: 3.141592653589793 rad
pos: 65.5,27.5
@@ -160129,225 +160275,225 @@ entities:
type: Transform
- proto: SignDirectionalSupply
entities:
- - uid: 24324
+ - uid: 24345
components:
- rot: -1.5707963267948966 rad
pos: 23.453947,-44.6932
parent: 2
type: Transform
- - uid: 24325
+ - uid: 24346
components:
- rot: -1.5707963267948966 rad
pos: 15.5186825,0.5754031
parent: 2
type: Transform
- - uid: 24326
+ - uid: 24347
components:
- rot: -1.5707963267948966 rad
pos: -1.5094988,0.4800564
parent: 2
type: Transform
- - uid: 24327
+ - uid: 24348
components:
- rot: -1.5707963267948966 rad
pos: 13.494197,-28.47207
parent: 2
type: Transform
- - uid: 24328
+ - uid: 24349
components:
- rot: 3.141592653589793 rad
pos: -11.522463,0.70501685
parent: 2
type: Transform
- - uid: 24329
+ - uid: 24350
components:
- rot: -1.5707963267948966 rad
pos: -12.525326,-40.287384
parent: 2
type: Transform
- - uid: 24330
+ - uid: 24351
components:
- rot: -1.5707963267948966 rad
pos: 37.56283,-40.753773
parent: 2
type: Transform
- - uid: 24331
+ - uid: 24352
components:
- rot: 3.141592653589793 rad
pos: -21.4735,9.533642
parent: 2
type: Transform
- - uid: 24332
+ - uid: 24353
components:
- rot: 3.141592653589793 rad
pos: -2.5,-23.5
parent: 2
type: Transform
- - uid: 24333
+ - uid: 24354
components:
- rot: 3.141592653589793 rad
pos: -17.496458,-33.756527
parent: 2
type: Transform
- - uid: 24334
+ - uid: 24355
components:
- rot: 3.141592653589793 rad
pos: -17.5,-12.5
parent: 2
type: Transform
- - uid: 24335
+ - uid: 24356
components:
- rot: 3.141592653589793 rad
pos: -27.491566,3.7030454
parent: 2
type: Transform
- - uid: 24336
+ - uid: 24357
components:
- pos: -19.471409,48.794754
parent: 2
type: Transform
- proto: SignDisposalSpace
entities:
- - uid: 24337
+ - uid: 24358
components:
- pos: 23.5,-52.5
parent: 2
type: Transform
- proto: SignElectrical
entities:
- - uid: 24338
+ - uid: 24359
components:
- pos: -78.5,-5.5
parent: 2
type: Transform
- - uid: 24339
+ - uid: 24360
components:
- pos: -78.5,-19.5
parent: 2
type: Transform
- - uid: 24340
+ - uid: 24361
components:
- pos: -71.5,-2.5
parent: 2
type: Transform
- - uid: 24341
+ - uid: 24362
components:
- pos: -64.5,-2.5
parent: 2
type: Transform
- - uid: 24342
+ - uid: 24363
components:
- pos: 24.5,39.5
parent: 2
type: Transform
- - uid: 24343
+ - uid: 24364
components:
- pos: 32.5,39.5
parent: 2
type: Transform
- - uid: 24344
+ - uid: 24365
components:
- pos: 38.5,31.5
parent: 2
type: Transform
- proto: SignElectricalMed
entities:
- - uid: 24345
+ - uid: 24366
components:
- pos: -12.5,-70.5
parent: 2
type: Transform
- - uid: 24346
+ - uid: 24367
components:
- pos: 42.5,-60.5
parent: 2
type: Transform
- - uid: 24347
+ - uid: 24368
components:
- pos: 8.5,-44.5
parent: 2
type: Transform
- - uid: 24348
+ - uid: 24369
components:
- pos: 37.5,-44.5
parent: 2
type: Transform
- - uid: 24349
+ - uid: 24370
components:
- pos: 37.5,-29.5
parent: 2
type: Transform
- - uid: 24350
+ - uid: 24371
components:
- pos: 46.5,-6.5
parent: 2
type: Transform
- - uid: 24351
+ - uid: 24372
components:
- pos: 47.5,-0.5
parent: 2
type: Transform
- - uid: 24352
+ - uid: 24373
components:
- pos: 33.5,23.5
parent: 2
type: Transform
- - uid: 24353
+ - uid: 24374
components:
- pos: -29.5,-54.5
parent: 2
type: Transform
- proto: SignEngine
entities:
- - uid: 24354
+ - uid: 24375
components:
- pos: -43.5,-9.5
parent: 2
type: Transform
- - uid: 24355
+ - uid: 24376
components:
- pos: -49.5,-18.5
parent: 2
type: Transform
- proto: SignEngineering
entities:
- - uid: 24356
+ - uid: 24377
components:
- pos: -21.5,-8.5
parent: 2
type: Transform
- - uid: 24357
+ - uid: 24378
components:
- pos: -21.5,-15.5
parent: 2
type: Transform
- proto: SignEscapePods
entities:
- - uid: 24358
+ - uid: 24379
components:
- pos: 29.5,-93.5
parent: 2
type: Transform
- - uid: 24359
+ - uid: 24380
components:
- pos: -16.5,68.5
parent: 2
type: Transform
- - uid: 24360
+ - uid: 24381
components:
- pos: 49.5,-93.5
parent: 2
type: Transform
- proto: SignEVA
entities:
- - uid: 24361
+ - uid: 24382
components:
- pos: 34.5,-15.5
parent: 2
type: Transform
- proto: SignExplosives
entities:
- - uid: 24362
+ - uid: 24383
components:
- rot: 1.5707963267948966 rad
pos: 68.5,-26.5
@@ -160355,98 +160501,98 @@ entities:
type: Transform
- proto: SignFlammableMed
entities:
- - uid: 24363
+ - uid: 24384
components:
- pos: -42.5,-63.5
parent: 2
type: Transform
- proto: SignGravity
entities:
- - uid: 24364
+ - uid: 24385
components:
- pos: -18.5,-3.5
parent: 2
type: Transform
- proto: SignHydro3
entities:
- - uid: 24365
+ - uid: 24386
components:
- pos: -5.5,4.5
parent: 2
type: Transform
- proto: SignInterrogation
entities:
- - uid: 24366
+ - uid: 24387
components:
- pos: 18.5,18.5
parent: 2
type: Transform
- proto: SignLaserMed
entities:
- - uid: 24367
+ - uid: 24388
components:
- rot: 3.141592653589793 rad
pos: -63.5,-29.5
parent: 2
type: Transform
- - uid: 24368
+ - uid: 24389
components:
- pos: -62.5,-22.5
parent: 2
type: Transform
- - uid: 24369
+ - uid: 24390
components:
- pos: -70.5,-22.5
parent: 2
type: Transform
- proto: SignLibrary
entities:
- - uid: 24370
+ - uid: 24391
components:
- pos: 9.5,-2.5
parent: 2
type: Transform
- proto: SignMagneticsMed
entities:
- - uid: 24371
+ - uid: 24392
components:
- pos: -47.5,27.5
parent: 2
type: Transform
- proto: SignMedical
entities:
- - uid: 24372
+ - uid: 24393
components:
- pos: -2.5,-44.5
parent: 2
type: Transform
- proto: SignMinerDock
entities:
- - uid: 24373
+ - uid: 24394
components:
- pos: -44.5,27.5
parent: 2
type: Transform
- proto: SignMorgue
entities:
- - uid: 24374
+ - uid: 24395
components:
- pos: -15.5,-68.5
parent: 2
type: Transform
- - uid: 24375
+ - uid: 24396
components:
- pos: -12.5,-62.5
parent: 2
type: Transform
- proto: SignPrison
entities:
- - uid: 24376
+ - uid: 24397
components:
- pos: 39.5,24.5
parent: 2
type: Transform
- - uid: 24377
+ - uid: 24398
components:
- name: open prison sign
type: MetaData
@@ -160455,24 +160601,24 @@ entities:
type: Transform
- proto: SignRadiationMed
entities:
- - uid: 24378
+ - uid: 24399
components:
- pos: -63.5,-25.5
parent: 2
type: Transform
- proto: SignRedFive
entities:
- - uid: 24379
+ - uid: 24400
components:
- pos: 57.5,22.5
parent: 2
type: Transform
- - uid: 24380
+ - uid: 24401
components:
- pos: 41.5,17.5
parent: 2
type: Transform
- - uid: 24381
+ - uid: 24402
components:
- rot: 3.141592653589793 rad
pos: 39.5,5.5
@@ -160480,17 +160626,17 @@ entities:
type: Transform
- proto: SignRedFour
entities:
- - uid: 24382
+ - uid: 24403
components:
- pos: 40.5,17.5
parent: 2
type: Transform
- - uid: 24383
+ - uid: 24404
components:
- pos: 54.5,22.5
parent: 2
type: Transform
- - uid: 24384
+ - uid: 24405
components:
- rot: 3.141592653589793 rad
pos: 39.5,8.5
@@ -160498,71 +160644,71 @@ entities:
type: Transform
- proto: SignRedNine
entities:
- - uid: 24385
+ - uid: 24406
components:
- pos: 51.62568,41.505035
parent: 2
type: Transform
- proto: SignRedOne
entities:
- - uid: 24386
+ - uid: 24407
components:
- pos: 45.5,22.5
parent: 2
type: Transform
- - uid: 24387
+ - uid: 24408
components:
- rot: 3.141592653589793 rad
pos: 28.5,13.5
parent: 2
type: Transform
- - uid: 24388
+ - uid: 24409
components:
- pos: 30.70196,-15.491432
parent: 2
type: Transform
- - uid: 24389
+ - uid: 24410
components:
- pos: 37.5,17.5
parent: 2
type: Transform
- proto: SignRedSeven
entities:
- - uid: 24390
+ - uid: 24411
components:
- pos: 60.5,17.5
parent: 2
type: Transform
- proto: SignRedSix
entities:
- - uid: 24391
+ - uid: 24412
components:
- pos: 42.5,17.5
parent: 2
type: Transform
- - uid: 24392
+ - uid: 24413
components:
- pos: 60.5,20.5
parent: 2
type: Transform
- - uid: 24393
+ - uid: 24414
components:
- pos: 51.40693,41.505035
parent: 2
type: Transform
- proto: SignRedThree
entities:
- - uid: 24394
+ - uid: 24415
components:
- pos: 51.5,22.5
parent: 2
type: Transform
- - uid: 24395
+ - uid: 24416
components:
- pos: 39.5,17.5
parent: 2
type: Transform
- - uid: 24396
+ - uid: 24417
components:
- rot: 3.141592653589793 rad
pos: 34.5,13.5
@@ -160570,18 +160716,18 @@ entities:
type: Transform
- proto: SignRedTwo
entities:
- - uid: 24397
+ - uid: 24418
components:
- pos: 48.5,22.5
parent: 2
type: Transform
- - uid: 24398
+ - uid: 24419
components:
- rot: 3.141592653589793 rad
pos: 38.5,17.5
parent: 2
type: Transform
- - uid: 24399
+ - uid: 24420
components:
- rot: 3.141592653589793 rad
pos: 31.5,13.5
@@ -160589,130 +160735,130 @@ entities:
type: Transform
- proto: SignRedZero
entities:
- - uid: 24400
+ - uid: 24421
components:
- pos: 30.467585,-15.491432
parent: 2
type: Transform
- - uid: 24401
+ - uid: 24422
components:
- pos: 30.23321,-15.491432
parent: 2
type: Transform
- proto: SignRND
entities:
- - uid: 24402
+ - uid: 24423
components:
- pos: 47.5,-38.5
parent: 2
type: Transform
- proto: SignRobo
entities:
- - uid: 24403
+ - uid: 24424
components:
- pos: 66.5,-47.5
parent: 2
type: Transform
- proto: SignScience1
entities:
- - uid: 24404
+ - uid: 24425
components:
- pos: 38.5,-40.5
parent: 2
type: Transform
- proto: SignShipDock
entities:
- - uid: 24405
+ - uid: 24426
components:
- name: docking arm
type: MetaData
- pos: -14.5,70.5
parent: 2
type: Transform
- - uid: 24406
+ - uid: 24427
components:
- name: docking arm
type: MetaData
- pos: -20.5,70.5
parent: 2
type: Transform
- - uid: 24407
+ - uid: 24428
components:
- pos: 76.5,-32.5
parent: 2
type: Transform
- proto: SignShock
entities:
- - uid: 24408
+ - uid: 24429
components:
- pos: 17.5,-30.5
parent: 2
type: Transform
- - uid: 24409
+ - uid: 24430
components:
- pos: 11.5,-15.5
parent: 2
type: Transform
- proto: SignSmoking
entities:
- - uid: 24410
+ - uid: 24431
components:
- pos: 1.5,-49.5
parent: 2
type: Transform
- - uid: 24411
+ - uid: 24432
components:
- pos: -10.5,-49.5
parent: 2
type: Transform
- proto: SignSomethingOld
entities:
- - uid: 24412
+ - uid: 24433
components:
- pos: -29.5,2.5
parent: 2
type: Transform
- proto: SignSpace
entities:
- - uid: 24413
+ - uid: 24434
components:
- pos: -2.5,-76.5
parent: 2
type: Transform
- - uid: 24414
+ - uid: 24435
components:
- pos: -58.5,-53.5
parent: 2
type: Transform
- - uid: 24415
+ - uid: 24436
components:
- pos: -49.5,18.5
parent: 2
type: Transform
- proto: SignSurgery
entities:
- - uid: 24416
+ - uid: 24437
components:
- pos: -1.5,-62.5
parent: 2
type: Transform
- proto: SignTelecomms
entities:
- - uid: 24417
+ - uid: 24438
components:
- pos: 13.5,-22.5
parent: 2
type: Transform
- proto: SignToolStorage
entities:
- - uid: 24418
+ - uid: 24439
components:
- pos: -33.5,-13.5
parent: 2
type: Transform
- proto: SignToxins2
entities:
- - uid: 24419
+ - uid: 24440
components:
- name: toxin lab sign
type: MetaData
@@ -160721,45 +160867,45 @@ entities:
type: Transform
- proto: SignVirology
entities:
- - uid: 24420
+ - uid: 24441
components:
- pos: -18.5,-62.5
parent: 2
type: Transform
- proto: SilverOre1
entities:
- - uid: 24421
+ - uid: 24442
components:
- pos: 73.48065,-67.68085
parent: 2
type: Transform
- proto: SingularityGenerator
entities:
- - uid: 24422
+ - uid: 24443
components:
- pos: -66.5,-13.5
parent: 2
type: Transform
- - uid: 24423
+ - uid: 24444
components:
- pos: -72.5,-23.5
parent: 2
type: Transform
- proto: SinkStemlessWater
entities:
- - uid: 24424
+ - uid: 24445
components:
- rot: 1.5707963267948966 rad
pos: -31.5,-3.5
parent: 2
type: Transform
- - uid: 24425
+ - uid: 24446
components:
- rot: 1.5707963267948966 rad
pos: -31.5,-2.5
parent: 2
type: Transform
- - uid: 24426
+ - uid: 24447
components:
- rot: -1.5707963267948966 rad
pos: -4.5,-96.5
@@ -160767,219 +160913,239 @@ entities:
type: Transform
- proto: SinkWide
entities:
- - uid: 24427
+ - uid: 24448
components:
- rot: 3.141592653589793 rad
pos: -9.5,-33.5
parent: 2
type: Transform
- - uid: 24428
+ - uid: 24449
components:
- rot: -1.5707963267948966 rad
pos: 7.5,-48.5
parent: 2
type: Transform
- - uid: 24429
+ - uid: 24450
components:
- pos: 1.5,9.5
parent: 2
type: Transform
- - uid: 24430
+ - uid: 24451
components:
- rot: 3.141592653589793 rad
pos: 17.5,9.5
parent: 2
type: Transform
- - uid: 24431
+ - uid: 24452
components:
- rot: -1.5707963267948966 rad
pos: -8.5,-69.5
parent: 2
type: Transform
- - uid: 24432
+ - uid: 24453
components:
- rot: -1.5707963267948966 rad
pos: -2.5,5.5
parent: 2
type: Transform
- - uid: 24433
+ - uid: 24454
components:
- rot: -1.5707963267948966 rad
pos: -2.5,6.5
parent: 2
type: Transform
- - uid: 24434
+ - uid: 24455
components:
- rot: 3.141592653589793 rad
pos: -21.5,41.5
parent: 2
type: Transform
- - uid: 24435
+ - uid: 24456
components:
- rot: 3.141592653589793 rad
pos: 62.5,21.5
parent: 2
type: Transform
- - uid: 24436
+ - uid: 24457
components:
- pos: 63.5,13.5
parent: 2
type: Transform
- - uid: 24437
+ - uid: 24458
components:
- pos: 63.5,11.5
parent: 2
type: Transform
- - uid: 24438
+ - uid: 24459
components:
- pos: 63.5,9.5
parent: 2
type: Transform
- - uid: 24439
+ - uid: 24460
components:
- rot: 1.5707963267948966 rad
pos: -33.5,9.5
parent: 2
type: Transform
- - uid: 24440
+ - uid: 24461
components:
- pos: -3.5,56.5
parent: 2
type: Transform
- - uid: 24441
+ - uid: 24462
components:
- rot: 3.141592653589793 rad
pos: 46.5,-39.5
parent: 2
type: Transform
+ - uid: 24463
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 71.5,-38.5
+ parent: 2
+ type: Transform
- proto: SmallLight
entities:
- - uid: 24442
+ - uid: 24464
components:
- rot: -1.5707963267948966 rad
pos: 17.5,-48.5
parent: 2
type: Transform
+- proto: SmartFridge
+ entities:
+ - uid: 24465
+ components:
+ - flags: SessionSpecific
+ type: MetaData
+ - pos: -4.5,-61.5
+ parent: 2
+ type: Transform
+ - uid: 24466
+ components:
+ - pos: 11.5,-45.5
+ parent: 2
+ type: Transform
- proto: SMESBasic
entities:
- - uid: 24443
+ - uid: 24467
components:
- pos: -56.5,-87.5
parent: 2
type: Transform
- - uid: 24444
+ - uid: 24468
components:
- name: shuttle smes
type: MetaData
- pos: -65.5,-53.5
parent: 2
type: Transform
- - uid: 24445
+ - uid: 24469
components:
- name: teg smes
type: MetaData
- pos: -69.5,-35.5
parent: 2
type: Transform
- - uid: 24446
+ - uid: 24470
components:
- name: telecoms smes
type: MetaData
- pos: 4.5,-20.5
parent: 2
type: Transform
- - uid: 24447
+ - uid: 24471
components:
- name: south solar smes 2
type: MetaData
- pos: -2.5,-78.5
parent: 2
type: Transform
- - uid: 24448
+ - uid: 24472
components:
- name: brig smes
type: MetaData
- pos: 48.5,-3.5
parent: 2
type: Transform
- - uid: 24449
+ - uid: 24473
components:
- name: engineering smes 1
type: MetaData
- pos: -48.5,-21.5
parent: 2
type: Transform
- - uid: 24450
+ - uid: 24474
components:
- name: engineering smes 2
type: MetaData
- pos: -46.5,-21.5
parent: 2
type: Transform
- - uid: 24451
+ - uid: 24475
components:
- name: engineering smes 3
type: MetaData
- pos: -44.5,-21.5
parent: 2
type: Transform
- - uid: 24452
+ - uid: 24476
components:
- name: singularity substation
type: MetaData
- pos: -50.5,-9.5
parent: 2
type: Transform
- - uid: 24453
+ - uid: 24477
components:
- name: PA smes
type: MetaData
- pos: -56.5,-20.5
parent: 2
type: Transform
- - uid: 24454
+ - uid: 24478
components:
- name: atmos smes
type: MetaData
- pos: -28.5,-37.5
parent: 2
type: Transform
- - uid: 24455
+ - uid: 24479
components:
- name: north solars smes 1
type: MetaData
- pos: 73.5,38.5
parent: 2
type: Transform
- - uid: 24456
+ - uid: 24480
components:
- name: north solars smes 2
type: MetaData
- pos: 73.5,34.5
parent: 2
type: Transform
- - uid: 24457
+ - uid: 24481
components:
- name: south solar smes 1
type: MetaData
- pos: -0.5,-78.5
parent: 2
type: Transform
- - uid: 24458
+ - uid: 24482
components:
- name: engineering smes 6
type: MetaData
- pos: -70.5,-30.5
parent: 2
type: Transform
- - uid: 24459
+ - uid: 24483
components:
- name: engineering smes 4
type: MetaData
- pos: -74.5,-30.5
parent: 2
type: Transform
- - uid: 24460
+ - uid: 24484
components:
- name: engineering smes 5
type: MetaData
@@ -160988,41 +161154,41 @@ entities:
type: Transform
- proto: Soap
entities:
- - uid: 24461
+ - uid: 24485
components:
- pos: -13.533843,-21.411894
parent: 2
type: Transform
- - uid: 24462
+ - uid: 24486
components:
- pos: -13.440093,-21.677519
parent: 2
type: Transform
- proto: soda_dispenser
entities:
- - uid: 24463
+ - uid: 24487
components:
- rot: -1.5707963267948966 rad
pos: 18.5,11.5
parent: 2
type: Transform
- - uid: 24464
+ - uid: 24488
components:
- pos: -40.5,-74.5
parent: 2
type: Transform
- - uid: 24465
+ - uid: 24489
components:
- pos: 37.5,51.5
parent: 2
type: Transform
- - uid: 24466
+ - uid: 24490
components:
- rot: 3.141592653589793 rad
pos: -20.5,47.5
parent: 2
type: Transform
- - uid: 24467
+ - uid: 24491
components:
- rot: -1.5707963267948966 rad
pos: 29.5,-34.5
@@ -161030,653 +161196,653 @@ entities:
type: Transform
- proto: SodiumLightTube
entities:
- - uid: 24468
+ - uid: 24492
components:
- pos: -42.50719,-90.42425
parent: 2
type: Transform
- - uid: 24469
+ - uid: 24493
components:
- pos: -13.634616,12.467242
parent: 2
type: Transform
- proto: SolarPanel
entities:
- - uid: 24470
+ - uid: 24494
components:
- pos: 10.5,-101.5
parent: 2
type: Transform
- - uid: 24471
+ - uid: 24495
components:
- pos: 16.5,-95.5
parent: 2
type: Transform
- - uid: 24472
+ - uid: 24496
components:
- pos: 18.5,-95.5
parent: 2
type: Transform
- - uid: 24473
+ - uid: 24497
components:
- pos: 6.5,-104.5
parent: 2
type: Transform
- - uid: 24474
+ - uid: 24498
components:
- pos: 10.5,-95.5
parent: 2
type: Transform
- - uid: 24475
+ - uid: 24499
components:
- pos: 12.5,-101.5
parent: 2
type: Transform
- - uid: 24476
+ - uid: 24500
components:
- pos: 8.5,-104.5
parent: 2
type: Transform
- - uid: 24477
+ - uid: 24501
components:
- pos: 14.5,-98.5
parent: 2
type: Transform
- - uid: 24478
+ - uid: 24502
components:
- pos: 10.5,-98.5
parent: 2
type: Transform
- - uid: 24479
+ - uid: 24503
components:
- pos: 8.5,-98.5
parent: 2
type: Transform
- - uid: 24480
+ - uid: 24504
components:
- pos: 8.5,-95.5
parent: 2
type: Transform
- - uid: 24481
+ - uid: 24505
components:
- pos: 12.5,-95.5
parent: 2
type: Transform
- - uid: 24482
+ - uid: 24506
components:
- pos: 12.5,-98.5
parent: 2
type: Transform
- - uid: 24483
+ - uid: 24507
components:
- pos: 14.5,-101.5
parent: 2
type: Transform
- - uid: 24484
+ - uid: 24508
components:
- pos: 14.5,-95.5
parent: 2
type: Transform
- - uid: 24485
+ - uid: 24509
components:
- pos: 6.5,-95.5
parent: 2
type: Transform
- - uid: 24486
+ - uid: 24510
components:
- pos: 8.5,-101.5
parent: 2
type: Transform
- - uid: 24487
+ - uid: 24511
components:
- pos: 4.5,-95.5
parent: 2
type: Transform
- - uid: 24488
+ - uid: 24512
components:
- pos: 12.5,-104.5
parent: 2
type: Transform
- - uid: 24489
+ - uid: 24513
components:
- pos: 16.5,-101.5
parent: 2
type: Transform
- - uid: 24490
+ - uid: 24514
components:
- pos: 18.5,-101.5
parent: 2
type: Transform
- - uid: 24491
+ - uid: 24515
components:
- pos: 18.5,-98.5
parent: 2
type: Transform
- - uid: 24492
+ - uid: 24516
components:
- pos: 16.5,-98.5
parent: 2
type: Transform
- - uid: 24493
+ - uid: 24517
components:
- pos: 18.5,-104.5
parent: 2
type: Transform
- - uid: 24494
+ - uid: 24518
components:
- pos: 16.5,-104.5
parent: 2
type: Transform
- - uid: 24495
+ - uid: 24519
components:
- pos: 4.5,-104.5
parent: 2
type: Transform
- - uid: 24496
+ - uid: 24520
components:
- pos: 4.5,-101.5
parent: 2
type: Transform
- - uid: 24497
+ - uid: 24521
components:
- pos: 6.5,-101.5
parent: 2
type: Transform
- - uid: 24498
+ - uid: 24522
components:
- pos: 4.5,-98.5
parent: 2
type: Transform
- - uid: 24499
+ - uid: 24523
components:
- pos: 6.5,-98.5
parent: 2
type: Transform
- - uid: 24500
+ - uid: 24524
components:
- pos: 14.5,-104.5
parent: 2
type: Transform
- - uid: 24501
+ - uid: 24525
components:
- pos: 10.5,-104.5
parent: 2
type: Transform
- - uid: 24502
+ - uid: 24526
components:
- rot: 1.5707963267948966 rad
pos: 90.5,44.5
parent: 2
type: Transform
- - uid: 24503
+ - uid: 24527
components:
- rot: 1.5707963267948966 rad
pos: 90.5,43.5
parent: 2
type: Transform
- - uid: 24504
+ - uid: 24528
components:
- rot: 1.5707963267948966 rad
pos: 90.5,41.5
parent: 2
type: Transform
- - uid: 24505
+ - uid: 24529
components:
- rot: 1.5707963267948966 rad
pos: 90.5,42.5
parent: 2
type: Transform
- - uid: 24506
+ - uid: 24530
components:
- rot: 1.5707963267948966 rad
pos: 90.5,40.5
parent: 2
type: Transform
- - uid: 24507
+ - uid: 24531
components:
- rot: 1.5707963267948966 rad
pos: 90.5,39.5
parent: 2
type: Transform
- - uid: 24508
+ - uid: 24532
components:
- rot: 1.5707963267948966 rad
pos: 90.5,38.5
parent: 2
type: Transform
- - uid: 24509
+ - uid: 24533
components:
- rot: 1.5707963267948966 rad
pos: 90.5,37.5
parent: 2
type: Transform
- - uid: 24510
+ - uid: 24534
components:
- rot: 1.5707963267948966 rad
pos: 87.5,44.5
parent: 2
type: Transform
- - uid: 24511
+ - uid: 24535
components:
- rot: 1.5707963267948966 rad
pos: 87.5,43.5
parent: 2
type: Transform
- - uid: 24512
+ - uid: 24536
components:
- rot: 1.5707963267948966 rad
pos: 87.5,42.5
parent: 2
type: Transform
- - uid: 24513
+ - uid: 24537
components:
- rot: 1.5707963267948966 rad
pos: 87.5,41.5
parent: 2
type: Transform
- - uid: 24514
+ - uid: 24538
components:
- rot: 1.5707963267948966 rad
pos: 87.5,40.5
parent: 2
type: Transform
- - uid: 24515
+ - uid: 24539
components:
- rot: 1.5707963267948966 rad
pos: 87.5,39.5
parent: 2
type: Transform
- - uid: 24516
+ - uid: 24540
components:
- rot: 1.5707963267948966 rad
pos: 87.5,38.5
parent: 2
type: Transform
- - uid: 24517
+ - uid: 24541
components:
- rot: 1.5707963267948966 rad
pos: 87.5,37.5
parent: 2
type: Transform
- - uid: 24518
+ - uid: 24542
components:
- rot: 1.5707963267948966 rad
pos: 84.5,44.5
parent: 2
type: Transform
- - uid: 24519
+ - uid: 24543
components:
- rot: 1.5707963267948966 rad
pos: 84.5,43.5
parent: 2
type: Transform
- - uid: 24520
+ - uid: 24544
components:
- rot: 1.5707963267948966 rad
pos: 84.5,42.5
parent: 2
type: Transform
- - uid: 24521
+ - uid: 24545
components:
- rot: 1.5707963267948966 rad
pos: 84.5,41.5
parent: 2
type: Transform
- - uid: 24522
+ - uid: 24546
components:
- rot: 1.5707963267948966 rad
pos: 84.5,40.5
parent: 2
type: Transform
- - uid: 24523
+ - uid: 24547
components:
- rot: 1.5707963267948966 rad
pos: 84.5,39.5
parent: 2
type: Transform
- - uid: 24524
+ - uid: 24548
components:
- rot: 1.5707963267948966 rad
pos: 84.5,38.5
parent: 2
type: Transform
- - uid: 24525
+ - uid: 24549
components:
- rot: 1.5707963267948966 rad
pos: 84.5,37.5
parent: 2
type: Transform
- - uid: 24526
+ - uid: 24550
components:
- rot: 1.5707963267948966 rad
pos: 81.5,44.5
parent: 2
type: Transform
- - uid: 24527
+ - uid: 24551
components:
- rot: 1.5707963267948966 rad
pos: 81.5,43.5
parent: 2
type: Transform
- - uid: 24528
+ - uid: 24552
components:
- rot: 1.5707963267948966 rad
pos: 81.5,42.5
parent: 2
type: Transform
- - uid: 24529
+ - uid: 24553
components:
- rot: 1.5707963267948966 rad
pos: 81.5,41.5
parent: 2
type: Transform
- - uid: 24530
+ - uid: 24554
components:
- rot: 1.5707963267948966 rad
pos: 81.5,40.5
parent: 2
type: Transform
- - uid: 24531
+ - uid: 24555
components:
- rot: 1.5707963267948966 rad
pos: 81.5,39.5
parent: 2
type: Transform
- - uid: 24532
+ - uid: 24556
components:
- rot: 1.5707963267948966 rad
pos: 81.5,38.5
parent: 2
type: Transform
- - uid: 24533
+ - uid: 24557
components:
- rot: 1.5707963267948966 rad
pos: 81.5,37.5
parent: 2
type: Transform
- - uid: 24534
+ - uid: 24558
components:
- rot: 1.5707963267948966 rad
pos: 78.5,44.5
parent: 2
type: Transform
- - uid: 24535
+ - uid: 24559
components:
- rot: 1.5707963267948966 rad
pos: 78.5,43.5
parent: 2
type: Transform
- - uid: 24536
+ - uid: 24560
components:
- rot: 1.5707963267948966 rad
pos: 78.5,42.5
parent: 2
type: Transform
- - uid: 24537
+ - uid: 24561
components:
- rot: 1.5707963267948966 rad
pos: 78.5,41.5
parent: 2
type: Transform
- - uid: 24538
+ - uid: 24562
components:
- rot: 1.5707963267948966 rad
pos: 78.5,40.5
parent: 2
type: Transform
- - uid: 24539
+ - uid: 24563
components:
- rot: 1.5707963267948966 rad
pos: 78.5,39.5
parent: 2
type: Transform
- - uid: 24540
+ - uid: 24564
components:
- rot: 1.5707963267948966 rad
pos: 78.5,38.5
parent: 2
type: Transform
- - uid: 24541
+ - uid: 24565
components:
- rot: 1.5707963267948966 rad
pos: 78.5,37.5
parent: 2
type: Transform
- - uid: 24542
+ - uid: 24566
components:
- rot: 1.5707963267948966 rad
pos: 78.5,35.5
parent: 2
type: Transform
- - uid: 24543
+ - uid: 24567
components:
- rot: 1.5707963267948966 rad
pos: 78.5,34.5
parent: 2
type: Transform
- - uid: 24544
+ - uid: 24568
components:
- rot: 1.5707963267948966 rad
pos: 78.5,33.5
parent: 2
type: Transform
- - uid: 24545
+ - uid: 24569
components:
- rot: 1.5707963267948966 rad
pos: 78.5,32.5
parent: 2
type: Transform
- - uid: 24546
+ - uid: 24570
components:
- rot: 1.5707963267948966 rad
pos: 78.5,31.5
parent: 2
type: Transform
- - uid: 24547
+ - uid: 24571
components:
- rot: 1.5707963267948966 rad
pos: 78.5,30.5
parent: 2
type: Transform
- - uid: 24548
+ - uid: 24572
components:
- rot: 1.5707963267948966 rad
pos: 78.5,29.5
parent: 2
type: Transform
- - uid: 24549
+ - uid: 24573
components:
- rot: 1.5707963267948966 rad
pos: 78.5,28.5
parent: 2
type: Transform
- - uid: 24550
+ - uid: 24574
components:
- rot: 1.5707963267948966 rad
pos: 81.5,35.5
parent: 2
type: Transform
- - uid: 24551
+ - uid: 24575
components:
- rot: 1.5707963267948966 rad
pos: 81.5,34.5
parent: 2
type: Transform
- - uid: 24552
+ - uid: 24576
components:
- rot: 1.5707963267948966 rad
pos: 81.5,33.5
parent: 2
type: Transform
- - uid: 24553
+ - uid: 24577
components:
- rot: 1.5707963267948966 rad
pos: 81.5,32.5
parent: 2
type: Transform
- - uid: 24554
+ - uid: 24578
components:
- rot: 1.5707963267948966 rad
pos: 81.5,31.5
parent: 2
type: Transform
- - uid: 24555
+ - uid: 24579
components:
- rot: 1.5707963267948966 rad
pos: 81.5,30.5
parent: 2
type: Transform
- - uid: 24556
+ - uid: 24580
components:
- rot: 1.5707963267948966 rad
pos: 81.5,29.5
parent: 2
type: Transform
- - uid: 24557
+ - uid: 24581
components:
- rot: 1.5707963267948966 rad
pos: 81.5,28.5
parent: 2
type: Transform
- - uid: 24558
+ - uid: 24582
components:
- rot: 1.5707963267948966 rad
pos: 84.5,35.5
parent: 2
type: Transform
- - uid: 24559
+ - uid: 24583
components:
- rot: 1.5707963267948966 rad
pos: 84.5,34.5
parent: 2
type: Transform
- - uid: 24560
+ - uid: 24584
components:
- rot: 1.5707963267948966 rad
pos: 84.5,33.5
parent: 2
type: Transform
- - uid: 24561
+ - uid: 24585
components:
- rot: 1.5707963267948966 rad
pos: 84.5,32.5
parent: 2
type: Transform
- - uid: 24562
+ - uid: 24586
components:
- rot: 1.5707963267948966 rad
pos: 84.5,31.5
parent: 2
type: Transform
- - uid: 24563
+ - uid: 24587
components:
- rot: 1.5707963267948966 rad
pos: 84.5,30.5
parent: 2
type: Transform
- - uid: 24564
+ - uid: 24588
components:
- rot: 1.5707963267948966 rad
pos: 84.5,29.5
parent: 2
type: Transform
- - uid: 24565
+ - uid: 24589
components:
- rot: 1.5707963267948966 rad
pos: 84.5,28.5
parent: 2
type: Transform
- - uid: 24566
+ - uid: 24590
components:
- rot: 1.5707963267948966 rad
pos: 87.5,35.5
parent: 2
type: Transform
- - uid: 24567
+ - uid: 24591
components:
- rot: 1.5707963267948966 rad
pos: 87.5,34.5
parent: 2
type: Transform
- - uid: 24568
+ - uid: 24592
components:
- rot: 1.5707963267948966 rad
pos: 87.5,33.5
parent: 2
type: Transform
- - uid: 24569
+ - uid: 24593
components:
- rot: 1.5707963267948966 rad
pos: 87.5,32.5
parent: 2
type: Transform
- - uid: 24570
+ - uid: 24594
components:
- rot: 1.5707963267948966 rad
pos: 87.5,31.5
parent: 2
type: Transform
- - uid: 24571
+ - uid: 24595
components:
- rot: 1.5707963267948966 rad
pos: 87.5,30.5
parent: 2
type: Transform
- - uid: 24572
+ - uid: 24596
components:
- rot: 1.5707963267948966 rad
pos: 87.5,29.5
parent: 2
type: Transform
- - uid: 24573
+ - uid: 24597
components:
- rot: 1.5707963267948966 rad
pos: 87.5,28.5
parent: 2
type: Transform
- - uid: 24574
+ - uid: 24598
components:
- rot: 1.5707963267948966 rad
pos: 90.5,35.5
parent: 2
type: Transform
- - uid: 24575
+ - uid: 24599
components:
- rot: 1.5707963267948966 rad
pos: 90.5,34.5
parent: 2
type: Transform
- - uid: 24576
+ - uid: 24600
components:
- rot: 1.5707963267948966 rad
pos: 90.5,33.5
parent: 2
type: Transform
- - uid: 24577
+ - uid: 24601
components:
- rot: 1.5707963267948966 rad
pos: 90.5,32.5
parent: 2
type: Transform
- - uid: 24578
+ - uid: 24602
components:
- rot: 1.5707963267948966 rad
pos: 90.5,31.5
parent: 2
type: Transform
- - uid: 24579
+ - uid: 24603
components:
- rot: 1.5707963267948966 rad
pos: 90.5,30.5
parent: 2
type: Transform
- - uid: 24580
+ - uid: 24604
components:
- rot: 1.5707963267948966 rad
pos: 90.5,29.5
parent: 2
type: Transform
- - uid: 24581
+ - uid: 24605
components:
- rot: 1.5707963267948966 rad
pos: 90.5,28.5
@@ -161684,77 +161850,62 @@ entities:
type: Transform
- proto: SolarPanelBroken
entities:
- - uid: 24582
+ - uid: 24606
components:
- pos: -4.5,-73.5
parent: 2
type: Transform
- - uid: 24583
+ - uid: 24607
components:
- rot: 3.141592653589793 rad
pos: 62.5,29.5
parent: 2
type: Transform
- - uid: 24584
+ - uid: 24608
components:
- pos: 46.5,-62.5
parent: 2
type: Transform
- proto: SolarTracker
entities:
- - uid: 24585
+ - uid: 24609
components:
- pos: 11.5,-105.5
parent: 2
type: Transform
- - uid: 24586
+ - uid: 24610
components:
- pos: 91.5,36.5
parent: 2
type: Transform
-- proto: SolidSecretDoor
- entities:
- - uid: 24587
- components:
- - pos: -36.5,-19.5
- parent: 2
- type: Transform
- - canCollide: False
- type: Physics
- - state: Open
- type: Door
- - airBlocked: False
- type: Airtight
- - enabled: False
- type: Occluder
- proto: SpaceCash
entities:
- - uid: 24588
+ - uid: 24611
components:
- rot: 1.5707963267948966 rad
pos: 53.352566,29.426033
parent: 2
type: Transform
- - uid: 24589
+ - uid: 24612
components:
- pos: 53.49319,28.910408
parent: 2
type: Transform
- - uid: 24590
+ - uid: 24613
components:
- pos: 53.58694,28.691658
parent: 2
type: Transform
- proto: SpaceCash1000
entities:
- - uid: 24591
+ - uid: 24614
components:
- pos: 59.59177,-29.360462
parent: 2
type: Transform
- proto: SpaceMedipen
entities:
- - uid: 24592
+ - uid: 24615
components:
- rot: -1.5707963267948966 rad
pos: -55.678448,-39.42407
@@ -161762,152 +161913,152 @@ entities:
type: Transform
- proto: SpaceQuartz1
entities:
- - uid: 24593
+ - uid: 24616
components:
- pos: -31.635456,29.591772
parent: 2
type: Transform
- proto: SpaceVillainArcadeComputerCircuitboard
entities:
- - uid: 24594
+ - uid: 24617
components:
- pos: -12.610414,35.61681
parent: 2
type: Transform
- proto: SpawnMobAlexander
entities:
- - uid: 24595
+ - uid: 24618
components:
- pos: 3.5,5.5
parent: 2
type: Transform
- proto: SpawnMobBear
entities:
- - uid: 24596
+ - uid: 24619
components:
- pos: -37.5,62.5
parent: 2
type: Transform
- proto: SpawnMobButterfly
entities:
- - uid: 24597
+ - uid: 24620
components:
- pos: -5.5,54.5
parent: 2
type: Transform
- - uid: 24598
+ - uid: 24621
components:
- pos: -8.5,51.5
parent: 2
type: Transform
- proto: SpawnMobCat
entities:
- - uid: 24599
+ - uid: 24622
components:
- pos: -12.5,-38.5
parent: 2
type: Transform
- - uid: 24600
+ - uid: 24623
components:
- pos: 57.5,16.5
parent: 2
type: Transform
- proto: SpawnMobCatGeneric
entities:
- - uid: 24601
+ - uid: 24624
components:
- pos: -55.5,-64.5
parent: 2
type: Transform
- proto: SpawnMobCleanBot
entities:
- - uid: 24602
+ - uid: 24625
components:
- pos: 15.5,-42.5
parent: 2
type: Transform
- proto: SpawnMobCorgi
entities:
- - uid: 24603
+ - uid: 24626
components:
- pos: 3.5,-7.5
parent: 2
type: Transform
- proto: SpawnMobCow
entities:
- - uid: 24604
+ - uid: 24627
components:
- pos: -7.5,18.5
parent: 2
type: Transform
- - uid: 24605
+ - uid: 24628
components:
- pos: -4.5,18.5
parent: 2
type: Transform
- proto: SpawnMobFoxRenault
entities:
- - uid: 24606
+ - uid: 24629
components:
- pos: 32.5,-28.5
parent: 2
type: Transform
- proto: SpawnMobFrog
entities:
- - uid: 24607
+ - uid: 24630
components:
- pos: 11.5,53.5
parent: 2
type: Transform
- - uid: 24608
+ - uid: 24631
components:
- pos: 8.5,54.5
parent: 2
type: Transform
- proto: SpawnMobHamsterHamlet
entities:
- - uid: 24609
+ - uid: 24632
components:
- pos: 30.5,-23.5
parent: 2
type: Transform
- proto: SpawnMobKangaroo
entities:
- - uid: 24610
+ - uid: 24633
components:
- pos: -53.5,61.5
parent: 2
type: Transform
- proto: SpawnMobKangarooWillow
entities:
- - uid: 24611
+ - uid: 24634
components:
- pos: 25.5,-0.5
parent: 2
type: Transform
- proto: SpawnMobMcGriff
entities:
- - uid: 24612
+ - uid: 24635
components:
- pos: 26.5,23.5
parent: 2
type: Transform
- proto: SpawnMobMedibot
entities:
- - uid: 24613
+ - uid: 24636
components:
- pos: -8.5,-46.5
parent: 2
type: Transform
- proto: SpawnMobMonkey
entities:
- - uid: 24614
+ - uid: 24637
components:
- rot: -1.5707963267948966 rad
pos: -24.5,-89.5
parent: 2
type: Transform
- - uid: 24615
+ - uid: 24638
components:
- rot: -1.5707963267948966 rad
pos: -21.5,-89.5
@@ -161915,949 +162066,928 @@ entities:
type: Transform
- proto: SpawnMobMonkeyPunpun
entities:
- - uid: 24616
+ - uid: 24639
components:
- pos: 16.5,9.5
parent: 2
type: Transform
- proto: SpawnMobMouse
entities:
- - uid: 24617
+ - uid: 24640
components:
- pos: 2.5,-69.5
parent: 2
type: Transform
- - uid: 24618
+ - uid: 24641
components:
- pos: -0.5,33.5
parent: 2
type: Transform
- - uid: 24619
+ - uid: 24642
components:
- pos: -28.5,-41.5
parent: 2
type: Transform
- - uid: 24620
+ - uid: 24643
components:
- pos: -29.5,-47.5
parent: 2
type: Transform
- - uid: 24621
+ - uid: 24644
components:
- pos: 49.5,-33.5
parent: 2
type: Transform
- - uid: 24622
+ - uid: 24645
components:
- pos: -7.5,-81.5
parent: 2
type: Transform
- - uid: 24623
+ - uid: 24646
components:
- pos: 6.5,32.5
parent: 2
type: Transform
- - uid: 24624
+ - uid: 24647
components:
- pos: 35.5,22.5
parent: 2
type: Transform
- - uid: 24625
+ - uid: 24648
components:
- pos: -15.5,13.5
parent: 2
type: Transform
- - uid: 24626
+ - uid: 24649
components:
- pos: 52.5,36.5
parent: 2
type: Transform
- - uid: 24627
+ - uid: 24650
components:
- pos: -51.5,-0.5
parent: 2
type: Transform
- - uid: 24628
+ - uid: 24651
components:
- pos: -38.5,-64.5
parent: 2
type: Transform
- - uid: 24629
+ - uid: 24652
components:
- pos: -40.5,-81.5
parent: 2
type: Transform
- - uid: 24630
+ - uid: 24653
components:
- pos: -45.5,-77.5
parent: 2
type: Transform
- - uid: 24631
+ - uid: 24654
components:
- pos: 48.5,-65.5
parent: 2
type: Transform
- proto: SpawnMobPossumMorty
entities:
- - uid: 24632
+ - uid: 24655
components:
- pos: -15.5,-63.5
parent: 2
type: Transform
- proto: SpawnMobRaccoonMorticia
entities:
- - uid: 24633
+ - uid: 24656
components:
- pos: -33.5,31.5
parent: 2
type: Transform
- proto: SpawnMobShiva
entities:
- - uid: 24634
+ - uid: 24657
components:
- pos: 4.5,19.5
parent: 2
type: Transform
- proto: SpawnMobSlothPaperwork
entities:
- - uid: 24635
+ - uid: 24658
components:
- pos: 12.5,-7.5
parent: 2
type: Transform
- proto: SpawnMobSmile
entities:
- - uid: 24636
+ - uid: 24659
components:
- pos: 62.5,-43.5
parent: 2
type: Transform
- proto: SpawnMobSpaceSpider
entities:
- - uid: 24637
+ - uid: 24660
components:
- pos: -47.5,68.5
parent: 2
type: Transform
- proto: SpawnMobWalter
entities:
- - uid: 24638
+ - uid: 24661
components:
- pos: -0.5,-53.5
parent: 2
type: Transform
- proto: SpawnPointAssistant
entities:
- - uid: 24639
+ - uid: 24662
components:
- pos: -25.5,-22.5
parent: 2
type: Transform
- - uid: 24640
+ - uid: 24663
components:
- pos: -23.5,-22.5
parent: 2
type: Transform
- - uid: 24641
+ - uid: 24664
components:
- pos: 41.5,-72.5
parent: 2
type: Transform
- - uid: 24642
+ - uid: 24665
components:
- pos: 38.5,-72.5
parent: 2
type: Transform
- - uid: 24643
+ - uid: 24666
components:
- pos: 40.5,-55.5
parent: 2
type: Transform
- - uid: 24644
+ - uid: 24667
components:
- pos: -51.5,14.5
parent: 2
type: Transform
- - uid: 24645
+ - uid: 24668
components:
- pos: -45.5,5.5
parent: 2
type: Transform
- - uid: 24646
+ - uid: 24669
components:
- pos: -52.5,7.5
parent: 2
type: Transform
- - uid: 24647
+ - uid: 24670
components:
- pos: 39.5,-54.5
parent: 2
type: Transform
- - uid: 24648
+ - uid: 24671
components:
- pos: -46.5,7.5
parent: 2
type: Transform
- - uid: 24649
+ - uid: 24672
components:
- pos: -19.5,34.5
parent: 2
type: Transform
- - uid: 24650
+ - uid: 24673
components:
- pos: -11.5,32.5
parent: 2
type: Transform
- - uid: 24651
+ - uid: 24674
components:
- pos: -23.5,30.5
parent: 2
type: Transform
- - uid: 24652
+ - uid: 24675
components:
- pos: -42.5,10.5
parent: 2
type: Transform
- - uid: 24653
+ - uid: 24676
components:
- pos: -24.5,-20.5
parent: 2
type: Transform
- - uid: 24654
+ - uid: 24677
components:
- pos: -44.5,3.5
parent: 2
type: Transform
- - uid: 24655
+ - uid: 24678
components:
- pos: 43.5,-72.5
parent: 2
type: Transform
- - uid: 24656
+ - uid: 24679
components:
- pos: 36.5,-72.5
parent: 2
type: Transform
- proto: SpawnPointAtmos
entities:
- - uid: 24657
+ - uid: 24680
components:
- pos: -39.5,-34.5
parent: 2
type: Transform
- - uid: 24658
+ - uid: 24681
components:
- pos: -37.5,-35.5
parent: 2
type: Transform
- - uid: 24659
+ - uid: 24682
components:
- pos: -36.5,-34.5
parent: 2
type: Transform
- proto: SpawnPointBartender
entities:
- - uid: 24660
+ - uid: 24683
components:
- pos: 17.5,13.5
parent: 2
type: Transform
- - uid: 24661
+ - uid: 24684
components:
- pos: 17.5,11.5
parent: 2
type: Transform
- proto: SpawnPointBorg
entities:
- - uid: 24662
+ - uid: 24685
components:
- pos: 64.5,-44.5
parent: 2
type: Transform
- - uid: 24663
+ - uid: 24686
components:
- pos: 60.5,-44.5
parent: 2
type: Transform
- proto: SpawnPointBotanist
entities:
- - uid: 24664
+ - uid: 24687
components:
- pos: -5.5,7.5
parent: 2
type: Transform
- - uid: 24665
+ - uid: 24688
components:
- pos: -7.5,7.5
parent: 2
type: Transform
- - uid: 24666
+ - uid: 24689
components:
- pos: -9.5,7.5
parent: 2
type: Transform
- proto: SpawnPointBoxer
entities:
- - uid: 24667
+ - uid: 24690
components:
- pos: 22.5,2.5
parent: 2
type: Transform
- proto: SpawnPointCaptain
entities:
- - uid: 24668
+ - uid: 24691
components:
- pos: 26.5,-22.5
parent: 2
type: Transform
- proto: SpawnPointCargoTechnician
entities:
- - uid: 24669
+ - uid: 24692
components:
- pos: -46.5,16.5
parent: 2
type: Transform
- - uid: 24670
+ - uid: 24693
components:
- pos: -31.5,24.5
parent: 2
type: Transform
- - uid: 24671
+ - uid: 24694
components:
- pos: -33.5,22.5
parent: 2
type: Transform
- - uid: 24672
+ - uid: 24695
components:
- pos: -31.5,19.5
parent: 2
type: Transform
- - uid: 24673
+ - uid: 24696
components:
- pos: -31.5,21.5
parent: 2
type: Transform
- proto: SpawnPointChaplain
entities:
- - uid: 24674
+ - uid: 24697
components:
- pos: -30.5,13.5
parent: 2
type: Transform
- - uid: 24675
+ - uid: 24698
components:
- pos: -30.5,14.5
parent: 2
type: Transform
- proto: SpawnPointChef
entities:
- - uid: 24676
+ - uid: 24699
components:
- pos: 0.5,7.5
parent: 2
type: Transform
- - uid: 24677
+ - uid: 24700
components:
- pos: 5.5,7.5
parent: 2
type: Transform
- - uid: 24678
+ - uid: 24701
components:
- pos: 5.5,9.5
parent: 2
type: Transform
- proto: SpawnPointChemist
entities:
- - uid: 24679
+ - uid: 24702
components:
- pos: 3.5,-50.5
parent: 2
type: Transform
- - uid: 24680
+ - uid: 24703
components:
- pos: 3.5,-48.5
parent: 2
type: Transform
- - uid: 24681
+ - uid: 24704
components:
- pos: 3.5,-46.5
parent: 2
type: Transform
- proto: SpawnPointChiefEngineer
entities:
- - uid: 24682
+ - uid: 24705
components:
- pos: -36.5,-17.5
parent: 2
type: Transform
- proto: SpawnPointChiefMedicalOfficer
entities:
- - uid: 24683
+ - uid: 24706
components:
- pos: -18.5,-55.5
parent: 2
type: Transform
- proto: SpawnPointClown
entities:
- - uid: 24684
+ - uid: 24707
components:
- pos: -21.5,38.5
parent: 2
type: Transform
- - uid: 24685
+ - uid: 24708
components:
- pos: 0.5,-21.5
parent: 2
type: Transform
- proto: SpawnPointDetective
entities:
- - uid: 24686
+ - uid: 24709
components:
- pos: 19.5,-11.5
parent: 2
type: Transform
- proto: SpawnPointHeadOfPersonnel
entities:
- - uid: 24687
+ - uid: 24710
components:
- pos: 4.5,-5.5
parent: 2
type: Transform
- proto: SpawnPointHeadOfSecurity
entities:
- - uid: 24688
+ - uid: 24711
components:
- pos: 5.5,21.5
parent: 2
type: Transform
- proto: SpawnPointJanitor
entities:
- - uid: 24689
+ - uid: 24712
components:
- pos: -11.5,-18.5
parent: 2
type: Transform
- - uid: 24690
+ - uid: 24713
components:
- pos: -10.5,-22.5
parent: 2
type: Transform
- - uid: 24691
+ - uid: 24714
components:
- pos: -12.5,-22.5
parent: 2
type: Transform
- proto: SpawnPointLatejoin
entities:
- - uid: 24692
+ - uid: 24715
components:
- pos: 39.5,-72.5
parent: 2
type: Transform
- - uid: 24693
+ - uid: 24716
components:
- pos: 40.5,-72.5
parent: 2
type: Transform
- - uid: 24694
+ - uid: 24717
components:
- pos: 42.5,-72.5
parent: 2
type: Transform
- - uid: 24695
+ - uid: 24718
components:
- pos: 37.5,-72.5
parent: 2
type: Transform
- proto: SpawnPointLawyer
entities:
- - uid: 24696
+ - uid: 24719
components:
- pos: 42.5,-2.5
parent: 2
type: Transform
- - uid: 24697
+ - uid: 24720
components:
- pos: 39.5,-4.5
parent: 2
type: Transform
- proto: SpawnPointLibrarian
entities:
- - uid: 24698
+ - uid: 24721
components:
- pos: 11.5,-9.5
parent: 2
type: Transform
- - uid: 24699
+ - uid: 24722
components:
- pos: 9.5,-9.5
parent: 2
type: Transform
- proto: SpawnPointMedicalDoctor
entities:
- - uid: 24700
+ - uid: 24723
components:
- pos: -14.5,-46.5
parent: 2
type: Transform
- - uid: 24701
+ - uid: 24724
components:
- pos: -12.5,-46.5
parent: 2
type: Transform
- - uid: 24702
+ - uid: 24725
components:
- pos: -12.5,-48.5
parent: 2
type: Transform
- - uid: 24703
+ - uid: 24726
components:
- pos: -14.5,-48.5
parent: 2
type: Transform
- - uid: 24704
+ - uid: 24727
components:
- pos: -28.5,-74.5
parent: 2
type: Transform
- proto: SpawnPointMedicalIntern
entities:
- - uid: 24705
+ - uid: 24728
components:
- pos: -1.5,-47.5
parent: 2
type: Transform
- proto: SpawnPointMime
entities:
- - uid: 24706
+ - uid: 24729
components:
- pos: -27.5,45.5
parent: 2
type: Transform
- - uid: 24707
+ - uid: 24730
components:
- pos: -0.5,-20.5
parent: 2
type: Transform
- proto: SpawnPointMusician
entities:
- - uid: 24708
+ - uid: 24731
components:
- pos: -9.5,-5.5
parent: 2
type: Transform
- - uid: 24709
+ - uid: 24732
components:
- pos: -7.5,-5.5
parent: 2
type: Transform
- proto: SpawnPointObserver
entities:
- - uid: 24710
+ - uid: 24733
components:
- pos: -4.5,-41.5
parent: 2
type: Transform
- proto: SpawnPointParamedic
entities:
- - uid: 24711
+ - uid: 24734
components:
- pos: 3.5,-64.5
parent: 2
type: Transform
- proto: SpawnPointPsychologist
entities:
- - uid: 24712
+ - uid: 24735
components:
- pos: -11.5,-36.5
parent: 2
type: Transform
- proto: SpawnPointQuartermaster
entities:
- - uid: 24713
+ - uid: 24736
components:
- pos: -31.5,30.5
parent: 2
type: Transform
- proto: SpawnPointReporter
entities:
- - uid: 24714
+ - uid: 24737
components:
- pos: -25.5,11.5
parent: 2
type: Transform
- proto: SpawnPointResearchAssistant
entities:
- - uid: 24715
+ - uid: 24738
components:
- pos: 49.5,-40.5
parent: 2
type: Transform
- proto: SpawnPointResearchDirector
entities:
- - uid: 24716
+ - uid: 24739
components:
- pos: 63.5,-52.5
parent: 2
type: Transform
- proto: SpawnPointSalvageSpecialist
entities:
- - uid: 24717
+ - uid: 24740
components:
- pos: -37.5,32.5
parent: 2
type: Transform
- - uid: 24718
+ - uid: 24741
components:
- pos: -37.5,30.5
parent: 2
type: Transform
- - uid: 24719
+ - uid: 24742
components:
- pos: -37.5,28.5
parent: 2
type: Transform
- proto: SpawnPointScientist
entities:
- - uid: 24720
+ - uid: 24743
components:
- pos: 45.5,-46.5
parent: 2
type: Transform
- - uid: 24721
+ - uid: 24744
components:
- pos: 43.5,-46.5
parent: 2
type: Transform
- - uid: 24722
+ - uid: 24745
components:
- pos: 41.5,-46.5
parent: 2
type: Transform
- - uid: 24723
+ - uid: 24746
components:
- pos: 44.5,-47.5
parent: 2
type: Transform
- - uid: 24724
+ - uid: 24747
components:
- pos: 74.5,-34.5
parent: 2
type: Transform
- proto: SpawnPointSecurityCadet
entities:
- - uid: 24725
+ - uid: 24748
components:
- pos: 23.5,18.5
parent: 2
type: Transform
- - uid: 24726
+ - uid: 24749
components:
- pos: 25.5,18.5
parent: 2
type: Transform
- proto: SpawnPointSecurityOfficer
entities:
- - uid: 24727
+ - uid: 24750
components:
- pos: 1.5,19.5
parent: 2
type: Transform
- - uid: 24728
+ - uid: 24751
components:
- pos: 7.5,16.5
parent: 2
type: Transform
- - uid: 24729
+ - uid: 24752
components:
- pos: 5.5,16.5
parent: 2
type: Transform
- - uid: 24730
+ - uid: 24753
components:
- pos: 0.5,18.5
parent: 2
type: Transform
- - uid: 24731
+ - uid: 24754
components:
- pos: 1.5,17.5
parent: 2
type: Transform
- - uid: 24732
+ - uid: 24755
components:
- pos: 6.5,13.5
parent: 2
type: Transform
-- proto: SpawnPointSeniorEngineer
- entities:
- - uid: 24733
- components:
- - pos: -38.5,-8.5
- parent: 2
- type: Transform
-- proto: SpawnPointSeniorOfficer
- entities:
- - uid: 24734
- components:
- - pos: 6.5,17.5
- parent: 2
- type: Transform
-- proto: SpawnPointSeniorPhysician
- entities:
- - uid: 24735
- components:
- - pos: -13.5,-47.5
- parent: 2
- type: Transform
-- proto: SpawnPointSeniorResearcher
- entities:
- - uid: 24736
- components:
- - pos: 45.5,-37.5
- parent: 2
- type: Transform
- proto: SpawnPointServiceWorker
entities:
- - uid: 24737
+ - uid: 24756
components:
- pos: -21.5,44.5
parent: 2
type: Transform
- - uid: 24738
+ - uid: 24757
components:
- pos: -10.5,42.5
parent: 2
type: Transform
- - uid: 24739
+ - uid: 24758
components:
- pos: -21.5,48.5
parent: 2
type: Transform
- proto: SpawnPointStationEngineer
entities:
- - uid: 24740
+ - uid: 24759
components:
- pos: -37.5,-10.5
parent: 2
type: Transform
- - uid: 24741
+ - uid: 24760
components:
- pos: -38.5,-12.5
parent: 2
type: Transform
- - uid: 24742
+ - uid: 24761
components:
- pos: -36.5,-12.5
parent: 2
type: Transform
- - uid: 24743
+ - uid: 24762
components:
- pos: -35.5,-10.5
parent: 2
type: Transform
- - uid: 24744
+ - uid: 24763
components:
- pos: -35.5,-7.5
parent: 2
type: Transform
- proto: SpawnPointTechnicalAssistant
entities:
- - uid: 24745
+ - uid: 24764
components:
- pos: -23.5,-10.5
parent: 2
type: Transform
- - uid: 24746
+ - uid: 24765
components:
- pos: -24.5,-12.5
parent: 2
type: Transform
- proto: SpawnPointWarden
entities:
- - uid: 24747
+ - uid: 24766
components:
- pos: 23.5,21.5
parent: 2
type: Transform
- proto: SpawnVehicleJanicart
entities:
- - uid: 24748
+ - uid: 24767
components:
- pos: -12.5,-23.5
parent: 2
type: Transform
- proto: SpawnVehicleSecway
entities:
- - uid: 24749
+ - uid: 24768
components:
- pos: 10.5,22.5
parent: 2
type: Transform
- - uid: 24750
+ - uid: 24769
components:
- pos: 10.5,21.5
parent: 2
type: Transform
- - uid: 24751
+ - uid: 24770
components:
- pos: 10.5,20.5
parent: 2
type: Transform
+- proto: SpawnVehicleWheelchairFolded
+ entities:
+ - uid: 24771
+ components:
+ - pos: -12.5,-61.5
+ parent: 2
+ type: Transform
- proto: SpawnVendingMachineRestockFoodDrink
entities:
- - uid: 24752
+ - uid: 24772
components:
- pos: 37.5,-10.5
parent: 2
type: Transform
- - uid: 24753
+ - uid: 24773
components:
- pos: -13.5,-12.5
parent: 2
type: Transform
- proto: SpiderWeb
entities:
- - uid: 24754
+ - uid: 24774
components:
- pos: -38.5,-71.5
parent: 2
type: Transform
- - uid: 24755
+ - uid: 24775
components:
- pos: -39.5,-70.5
parent: 2
type: Transform
- - uid: 24756
+ - uid: 24776
components:
- pos: -46.5,-72.5
parent: 2
type: Transform
- - uid: 24757
+ - uid: 24777
components:
- pos: -47.5,-73.5
parent: 2
type: Transform
- - uid: 24758
+ - uid: 24778
components:
- pos: -52.5,-68.5
parent: 2
type: Transform
- - uid: 24759
+ - uid: 24779
components:
- pos: -50.5,-62.5
parent: 2
type: Transform
- proto: SprayBottle
entities:
- - uid: 24760
+ - uid: 24780
components:
- pos: 53.44381,-51.454926
parent: 2
type: Transform
- proto: SprayBottleSpaceCleaner
entities:
- - uid: 24761
+ - uid: 24781
components:
- pos: -13.517906,-22.26318
parent: 2
type: Transform
- - uid: 24762
+ - uid: 24782
components:
- pos: -13.721031,-22.20068
parent: 2
type: Transform
- - uid: 24763
+ - uid: 24783
components:
- pos: -13.62392,-22.29671
parent: 2
type: Transform
- - uid: 24764
+ - uid: 24784
components:
- pos: -13.389545,-22.218584
parent: 2
type: Transform
- proto: Stairs
entities:
- - uid: 24765
+ - uid: 24785
components:
- rot: 3.141592653589793 rad
pos: -19.5,-8.5
parent: 2
type: Transform
- - uid: 24766
+ - uid: 24786
components:
- rot: 3.141592653589793 rad
pos: -18.5,-8.5
parent: 2
type: Transform
- - uid: 24767
+ - uid: 24787
components:
- pos: -20.5,-23.5
parent: 2
type: Transform
- - uid: 24768
+ - uid: 24788
components:
- pos: -19.5,-23.5
parent: 2
type: Transform
- - uid: 24769
+ - uid: 24789
components:
- rot: 3.141592653589793 rad
pos: -20.5,-8.5
parent: 2
type: Transform
- - uid: 24770
+ - uid: 24790
components:
- pos: -18.5,-23.5
parent: 2
type: Transform
- - uid: 24771
+ - uid: 24791
components:
- pos: -31.5,-20.5
parent: 2
type: Transform
- - uid: 24772
+ - uid: 24792
components:
- pos: -32.5,-20.5
parent: 2
type: Transform
- - uid: 24773
+ - uid: 24793
components:
- rot: 1.5707963267948966 rad
pos: -50.5,-32.5
parent: 2
type: Transform
- - uid: 24774
+ - uid: 24794
components:
- rot: 1.5707963267948966 rad
pos: -50.5,-31.5
parent: 2
type: Transform
- - uid: 24775
+ - uid: 24795
components:
- rot: 1.5707963267948966 rad
pos: -63.5,-36.5
parent: 2
type: Transform
- - uid: 24776
+ - uid: 24796
components:
- rot: 1.5707963267948966 rad
pos: -63.5,-37.5
parent: 2
type: Transform
- - uid: 24777
+ - uid: 24797
components:
- rot: -1.5707963267948966 rad
pos: -54.5,-27.5
parent: 2
type: Transform
- - uid: 24778
+ - uid: 24798
components:
- rot: -1.5707963267948966 rad
pos: -54.5,-28.5
parent: 2
type: Transform
- - uid: 24779
+ - uid: 24799
components:
- rot: -1.5707963267948966 rad
pos: -28.5,-22.5
@@ -162865,13 +162995,13 @@ entities:
type: Transform
- proto: StairStage
entities:
- - uid: 24780
+ - uid: 24800
components:
- rot: 1.5707963267948966 rad
pos: -39.5,-2.5
parent: 2
type: Transform
- - uid: 24781
+ - uid: 24801
components:
- rot: -1.5707963267948966 rad
pos: -43.5,-3.5
@@ -162879,89 +163009,82 @@ entities:
type: Transform
- proto: StasisBed
entities:
- - uid: 24782
+ - uid: 24802
components:
- pos: 4.5,-64.5
parent: 2
type: Transform
- - uid: 24783
+ - uid: 24803
components:
- pos: 4.5,-63.5
parent: 2
type: Transform
- proto: StationMap
entities:
- - uid: 24784
+ - uid: 24804
components:
- pos: 5.5,-24.5
parent: 2
type: Transform
- - uid: 24785
+ - uid: 24805
components:
- pos: 12.5,-40.5
parent: 2
type: Transform
- - uid: 24786
+ - uid: 24806
components:
- pos: -32.5,2.5
parent: 2
type: Transform
- - uid: 24787
+ - uid: 24807
components:
- pos: -18.5,52.5
parent: 2
type: Transform
- - uid: 24788
+ - uid: 24808
components:
- pos: 45.5,-70.5
parent: 2
type: Transform
- - uid: 24789
+ - uid: 24809
components:
- pos: 41.5,-40.5
parent: 2
type: Transform
- - uid: 24790
+ - uid: 24810
components:
- pos: 48.5,3.5
parent: 2
type: Transform
- - uid: 24791
+ - uid: 24811
components:
- pos: 20.5,9.5
parent: 2
type: Transform
- - uid: 24792
+ - uid: 24812
components:
- pos: -8.5,47.5
parent: 2
type: Transform
- - uid: 24793
+ - uid: 24813
components:
- pos: 12.5,-79.5
parent: 2
type: Transform
- - uid: 24794
+ - uid: 24814
components:
- pos: -69.5,-36.5
parent: 2
type: Transform
- - uid: 24795
+ - uid: 24815
components:
- rot: 3.141592653589793 rad
pos: 13.5,-2.5
parent: 2
type: Transform
-- proto: StationMapCircuitboard
- entities:
- - uid: 24796
- components:
- - pos: -8.453156,37.616253
- parent: 2
- type: Transform
- proto: SteelOre1
entities:
- - uid: 24797
+ - uid: 24816
components:
- rot: 3.141592653589793 rad
pos: 20.04077,49.432205
@@ -162969,13 +163092,13 @@ entities:
type: Transform
- proto: Stool
entities:
- - uid: 24798
+ - uid: 24817
components:
- rot: -1.5707963267948966 rad
pos: 9.5,5.5
parent: 2
type: Transform
- - uid: 24799
+ - uid: 24818
components:
- rot: -1.5707963267948966 rad
pos: -33.5,13.5
@@ -162983,13 +163106,13 @@ entities:
type: Transform
- proto: StoolBar
entities:
- - uid: 24800
+ - uid: 24819
components:
- rot: 1.5707963267948966 rad
pos: 14.5,10.5
parent: 2
type: Transform
- - uid: 24801
+ - uid: 24820
components:
- name: stool
type: MetaData
@@ -162997,7 +163120,7 @@ entities:
pos: -6.5,3.5
parent: 2
type: Transform
- - uid: 24802
+ - uid: 24821
components:
- name: stool
type: MetaData
@@ -163005,24 +163128,24 @@ entities:
pos: 1.5,3.5
parent: 2
type: Transform
- - uid: 24803
+ - uid: 24822
components:
- rot: 1.5707963267948966 rad
pos: 14.5,13.5
parent: 2
type: Transform
- - uid: 24804
+ - uid: 24823
components:
- rot: 1.5707963267948966 rad
pos: 14.5,12.5
parent: 2
type: Transform
- - uid: 24805
+ - uid: 24824
components:
- pos: 5.5,12.5
parent: 2
type: Transform
- - uid: 24806
+ - uid: 24825
components:
- name: stool
type: MetaData
@@ -163030,7 +163153,7 @@ entities:
pos: 0.5,3.5
parent: 2
type: Transform
- - uid: 24807
+ - uid: 24826
components:
- name: stool
type: MetaData
@@ -163038,78 +163161,78 @@ entities:
pos: 2.5,3.5
parent: 2
type: Transform
- - uid: 24808
+ - uid: 24827
components:
- rot: 1.5707963267948966 rad
pos: 14.5,11.5
parent: 2
type: Transform
- - uid: 24809
+ - uid: 24828
components:
- rot: -1.5707963267948966 rad
pos: 8.5,9.5
parent: 2
type: Transform
- - uid: 24810
+ - uid: 24829
components:
- rot: -1.5707963267948966 rad
pos: 8.5,8.5
parent: 2
type: Transform
- - uid: 24811
+ - uid: 24830
components:
- rot: -1.5707963267948966 rad
pos: 8.5,7.5
parent: 2
type: Transform
- - uid: 24812
+ - uid: 24831
components:
- rot: 1.5707963267948966 rad
pos: 14.5,9.5
parent: 2
type: Transform
- - uid: 24813
+ - uid: 24832
components:
- rot: 3.141592653589793 rad
pos: -40.5,-79.5
parent: 2
type: Transform
- - uid: 24814
+ - uid: 24833
components:
- rot: 3.141592653589793 rad
pos: -41.5,-79.5
parent: 2
type: Transform
- - uid: 24815
+ - uid: 24834
components:
- rot: 3.141592653589793 rad
pos: -42.5,-79.5
parent: 2
type: Transform
- - uid: 24816
+ - uid: 24835
components:
- rot: 3.141592653589793 rad
pos: -43.5,-79.5
parent: 2
type: Transform
- - uid: 24817
+ - uid: 24836
components:
- rot: -1.5707963267948966 rad
pos: -39.5,-78.5
parent: 2
type: Transform
- - uid: 24818
+ - uid: 24837
components:
- rot: 1.5707963267948966 rad
pos: -44.5,-78.5
parent: 2
type: Transform
- - uid: 24819
+ - uid: 24838
components:
- pos: 4.5,12.5
parent: 2
type: Transform
- - uid: 24820
+ - uid: 24839
components:
- name: stool
type: MetaData
@@ -163117,7 +163240,7 @@ entities:
pos: -7.5,3.5
parent: 2
type: Transform
- - uid: 24821
+ - uid: 24840
components:
- name: stool
type: MetaData
@@ -163125,75 +163248,75 @@ entities:
pos: -8.5,3.5
parent: 2
type: Transform
- - uid: 24822
+ - uid: 24841
components:
- rot: 3.141592653589793 rad
pos: 39.5,48.5
parent: 2
type: Transform
- - uid: 24823
+ - uid: 24842
components:
- rot: 3.141592653589793 rad
pos: 38.5,48.5
parent: 2
type: Transform
- - uid: 24824
+ - uid: 24843
components:
- rot: 3.141592653589793 rad
pos: 37.5,48.5
parent: 2
type: Transform
- - uid: 24825
+ - uid: 24844
components:
- rot: 3.141592653589793 rad
pos: 36.5,48.5
parent: 2
type: Transform
- - uid: 24826
+ - uid: 24845
components:
- name: donk stool
type: MetaData
- pos: -9.5,44.5
parent: 2
type: Transform
- - uid: 24827
+ - uid: 24846
components:
- name: donk stool
type: MetaData
- pos: -10.5,44.5
parent: 2
type: Transform
- - uid: 24828
+ - uid: 24847
components:
- pos: -30.5,-96.5
parent: 2
type: Transform
- - uid: 24829
+ - uid: 24848
components:
- name: donk stool
type: MetaData
- pos: -11.5,44.5
parent: 2
type: Transform
- - uid: 24830
+ - uid: 24849
components:
- rot: 1.5707963267948966 rad
pos: 26.5,-34.5
parent: 2
type: Transform
- - uid: 24831
+ - uid: 24850
components:
- rot: 1.5707963267948966 rad
pos: 26.5,-35.5
parent: 2
type: Transform
- - uid: 24832
+ - uid: 24851
components:
- rot: 1.5707963267948966 rad
pos: 26.5,-36.5
parent: 2
type: Transform
- - uid: 24833
+ - uid: 24852
components:
- rot: 1.5707963267948966 rad
pos: 26.5,-37.5
@@ -163201,275 +163324,285 @@ entities:
type: Transform
- proto: StorageCanister
entities:
- - uid: 24834
+ - uid: 24853
components:
- pos: -75.5,-45.5
parent: 2
type: Transform
- - uid: 24835
+ - uid: 24854
components:
- pos: 45.5,-54.5
parent: 2
type: Transform
- - uid: 24836
+ - uid: 24855
components:
- pos: 45.5,-58.5
parent: 2
type: Transform
- - uid: 24837
+ - uid: 24856
components:
- pos: -16.5,-10.5
parent: 2
type: Transform
- - uid: 24838
+ - uid: 24857
components:
- pos: -38.5,-51.5
parent: 2
type: Transform
- - uid: 24839
+ - uid: 24858
components:
- pos: -38.5,-50.5
parent: 2
type: Transform
- - uid: 24840
+ - uid: 24859
components:
- pos: -38.5,-49.5
parent: 2
type: Transform
- - uid: 24841
+ - uid: 24860
components:
- pos: -34.5,-39.5
parent: 2
type: Transform
- - uid: 24842
+ - uid: 24861
components:
- pos: -35.5,-39.5
parent: 2
type: Transform
- - uid: 24843
+ - uid: 24862
components:
- pos: -50.5,-44.5
parent: 2
type: Transform
- - uid: 24844
+ - uid: 24863
components:
- pos: -50.5,-42.5
parent: 2
type: Transform
- - uid: 24845
+ - uid: 24864
components:
- pos: 53.5,-37.5
parent: 2
type: Transform
- - uid: 24846
+ - uid: 24865
components:
- pos: -24.5,-55.5
parent: 2
type: Transform
- - uid: 24847
+ - uid: 24866
components:
- pos: -26.5,-55.5
parent: 2
type: Transform
- - uid: 24848
+ - uid: 24867
components:
- pos: 51.5,-35.5
parent: 2
type: Transform
- - uid: 24849
+ - uid: 24868
components:
- pos: -50.5,-35.5
parent: 2
type: Transform
- - uid: 24850
+ - uid: 24869
components:
- pos: -50.5,-34.5
parent: 2
type: Transform
- - uid: 24851
+ - uid: 24870
components:
- pos: -35.5,-38.5
parent: 2
type: Transform
- - uid: 24852
+ - uid: 24871
components:
- pos: -75.5,-46.5
parent: 2
type: Transform
- proto: Stunbaton
entities:
- - uid: 24853
+ - uid: 24872
components:
- pos: 8.313212,12.723815
parent: 2
type: Transform
- - uid: 24854
+ - uid: 24873
components:
- pos: 8.262076,12.8623
parent: 2
type: Transform
- proto: SubstationBasic
entities:
- - uid: 24855
+ - uid: 24874
+ components:
+ - pos: 13.5,-45.5
+ parent: 2
+ type: Transform
+ - uid: 24875
+ components:
+ - pos: 13.5,-47.5
+ parent: 2
+ type: Transform
+ - uid: 24876
components:
- pos: -56.5,-86.5
parent: 2
type: Transform
- - uid: 24856
+ - uid: 24877
components:
- name: command substation
type: MetaData
- pos: 18.5,-27.5
parent: 2
type: Transform
- - uid: 24857
+ - uid: 24878
components:
- name: teg substation
type: MetaData
- pos: -69.5,-34.5
parent: 2
type: Transform
- - uid: 24858
+ - uid: 24879
components:
- name: chapel substation
type: MetaData
- pos: -34.5,-3.5
parent: 2
type: Transform
- - uid: 24859
+ - uid: 24880
components:
- name: virology substation
type: MetaData
- pos: -12.5,-69.5
parent: 2
type: Transform
- - uid: 24860
+ - uid: 24881
components:
- name: medical substation 3
type: MetaData
- pos: 15.5,-58.5
parent: 2
type: Transform
- - uid: 24861
+ - uid: 24882
components:
- name: boxing substation
type: MetaData
- pos: 30.5,-2.5
parent: 2
type: Transform
- - uid: 24862
+ - uid: 24883
components:
- name: janitorial substation
type: MetaData
- pos: -8.5,-19.5
parent: 2
type: Transform
- - uid: 24863
+ - uid: 24884
components:
- name: vault substation
type: MetaData
- pos: 38.5,-28.5
parent: 2
type: Transform
- - uid: 24864
+ - uid: 24885
components:
- name: robotics substation
type: MetaData
- pos: 69.5,-59.5
parent: 2
type: Transform
- - uid: 24865
+ - uid: 24886
components:
- name: sec substation
type: MetaData
- pos: 33.5,25.5
parent: 2
type: Transform
- - uid: 24866
+ - uid: 24887
components:
- name: prison substation
type: MetaData
- pos: 63.5,7.5
parent: 2
type: Transform
- - uid: 24867
+ - uid: 24888
components:
- name: brig substation
type: MetaData
- pos: 47.5,-3.5
parent: 2
type: Transform
- - uid: 24868
+ - uid: 24889
components:
- name: evac substation
type: MetaData
- pos: 48.5,-5.5
parent: 2
type: Transform
- - uid: 24869
+ - uid: 24890
components:
- name: science substation
type: MetaData
- pos: 38.5,-46.5
parent: 2
type: Transform
- - uid: 24870
+ - uid: 24891
components:
- name: gravity substation
type: MetaData
- pos: -16.5,-0.5
parent: 2
type: Transform
- - uid: 24871
+ - uid: 24892
components:
- name: engineering substation
type: MetaData
- pos: -28.5,-23.5
parent: 2
type: Transform
- - uid: 24872
+ - uid: 24893
components:
- name: arrivals substation
type: MetaData
- pos: 43.5,-58.5
parent: 2
type: Transform
- - uid: 24873
+ - uid: 24894
components:
- name: singularity substation
type: MetaData
- pos: -50.5,-8.5
parent: 2
type: Transform
- - uid: 24874
+ - uid: 24895
components:
- name: PA substation
type: MetaData
- pos: -57.5,-20.5
parent: 2
type: Transform
- - uid: 24875
+ - uid: 24896
components:
- name: atmos substation
type: MetaData
- pos: -27.5,-37.5
parent: 2
type: Transform
- - uid: 24876
+ - uid: 24897
components:
- name: maints bar substation
type: MetaData
- pos: -31.5,-54.5
parent: 2
type: Transform
- - uid: 24877
+ - uid: 24898
components:
- name: north maints substation
type: MetaData
- pos: -8.5,35.5
parent: 2
type: Transform
- - uid: 24878
+ - uid: 24899
components:
- name: cargo substation
type: MetaData
@@ -163478,49 +163611,35 @@ entities:
type: Transform
missingComponents:
- Anchorable
- - uid: 24879
+ - uid: 24900
components:
- name: telecoms substation
type: MetaData
- pos: 4.5,-19.5
parent: 2
type: Transform
- - uid: 24880
- components:
- - name: medical substation 1
- type: MetaData
- - pos: 11.5,-45.5
- parent: 2
- type: Transform
- - uid: 24881
- components:
- - name: medical substation 2
- type: MetaData
- - pos: 11.5,-47.5
- parent: 2
- type: Transform
- - uid: 24882
+ - uid: 24901
components:
- name: sec maints substation
type: MetaData
- pos: 50.5,29.5
parent: 2
type: Transform
- - uid: 24883
+ - uid: 24902
components:
- name: ai substation
type: MetaData
- pos: -10.5,62.5
parent: 2
type: Transform
- - uid: 24884
+ - uid: 24903
components:
- name: detective substation
type: MetaData
- pos: 8.5,-16.5
parent: 2
type: Transform
- - uid: 24885
+ - uid: 24904
components:
- name: shuttle substation
type: MetaData
@@ -163529,178 +163648,178 @@ entities:
type: Transform
- proto: SuitStorageAtmos
entities:
- - uid: 24886
+ - uid: 24905
components:
- pos: -40.5,-36.5
parent: 2
type: Transform
- - uid: 24887
+ - uid: 24906
components:
- pos: -36.5,-36.5
parent: 2
type: Transform
- - uid: 24888
+ - uid: 24907
components:
- pos: -38.5,-36.5
parent: 2
type: Transform
- proto: SuitStorageCaptain
entities:
- - uid: 24889
+ - uid: 24908
components:
- pos: 28.5,-29.5
parent: 2
type: Transform
- proto: SuitStorageCE
entities:
- - uid: 24890
+ - uid: 24909
components:
- pos: -37.5,-16.5
parent: 2
type: Transform
- proto: SuitStorageCMO
entities:
- - uid: 24891
+ - uid: 24910
components:
- pos: -22.5,-55.5
parent: 2
type: Transform
- proto: SuitStorageEngi
entities:
- - uid: 24892
+ - uid: 24911
components:
- pos: -34.5,-5.5
parent: 2
type: Transform
- - uid: 24893
+ - uid: 24912
components:
- pos: -34.5,-7.5
parent: 2
type: Transform
- - uid: 24894
+ - uid: 24913
components:
- pos: -34.5,-8.5
parent: 2
type: Transform
- - uid: 24895
+ - uid: 24914
components:
- pos: -34.5,-6.5
parent: 2
type: Transform
- - uid: 24896
+ - uid: 24915
components:
- pos: -55.5,-15.5
parent: 2
type: Transform
- proto: SuitStorageEVA
entities:
- - uid: 24897
+ - uid: 24916
components:
- pos: 29.5,-10.5
parent: 2
type: Transform
- - uid: 24898
+ - uid: 24917
components:
- pos: 29.5,-12.5
parent: 2
type: Transform
- - uid: 24899
+ - uid: 24918
components:
- pos: 33.5,-10.5
parent: 2
type: Transform
- - uid: 24900
+ - uid: 24919
components:
- pos: 31.5,-12.5
parent: 2
type: Transform
- - uid: 24901
+ - uid: 24920
components:
- pos: 31.5,-10.5
parent: 2
type: Transform
- - uid: 24902
+ - uid: 24921
components:
- pos: 33.5,-12.5
parent: 2
type: Transform
- proto: SuitStorageEVAPrisoner
entities:
- - uid: 24903
+ - uid: 24922
components:
- pos: 63.5,4.5
parent: 2
type: Transform
- - uid: 24904
+ - uid: 24923
components:
- pos: 63.5,5.5
parent: 2
type: Transform
- proto: SuitStorageHOS
entities:
- - uid: 24905
+ - uid: 24924
components:
- pos: 5.5,22.5
parent: 2
type: Transform
- proto: SuitStorageRD
entities:
- - uid: 24906
+ - uid: 24925
components:
- pos: 65.5,-52.5
parent: 2
type: Transform
- proto: SuitStorageSalv
entities:
- - uid: 24907
+ - uid: 24926
components:
- pos: -36.5,33.5
parent: 2
type: Transform
- - uid: 24908
+ - uid: 24927
components:
- pos: -36.5,29.5
parent: 2
type: Transform
- - uid: 24909
+ - uid: 24928
components:
- pos: -36.5,31.5
parent: 2
type: Transform
- proto: SuitStorageSec
entities:
- - uid: 24910
+ - uid: 24929
components:
- pos: 26.5,30.5
parent: 2
type: Transform
- - uid: 24911
+ - uid: 24930
components:
- pos: 26.5,27.5
parent: 2
type: Transform
- - uid: 24912
+ - uid: 24931
components:
- pos: 32.5,27.5
parent: 2
type: Transform
- proto: SuitStorageWarden
entities:
- - uid: 24913
+ - uid: 24932
components:
- pos: 20.5,20.5
parent: 2
type: Transform
- proto: SuperMatterBinStockPart
entities:
- - uid: 24914
+ - uid: 24933
components:
- pos: -50.47893,-29.292162
parent: 2
type: Transform
- proto: SurveillanceCameraCommand
entities:
- - uid: 24915
+ - uid: 24934
components:
- rot: 1.5707963267948966 rad
pos: -17.5,-55.5
@@ -163711,7 +163830,7 @@ entities:
nameSet: True
id: chief medical officer
type: SurveillanceCamera
- - uid: 24916
+ - uid: 24935
components:
- rot: -1.5707963267948966 rad
pos: 4.5,21.5
@@ -163722,7 +163841,7 @@ entities:
nameSet: True
id: 'head of security '
type: SurveillanceCamera
- - uid: 24917
+ - uid: 24936
components:
- rot: 3.141592653589793 rad
pos: 46.5,-27.5
@@ -163733,7 +163852,7 @@ entities:
nameSet: True
id: vault b
type: SurveillanceCamera
- - uid: 24918
+ - uid: 24937
components:
- rot: 3.141592653589793 rad
pos: 46.5,-21.5
@@ -163744,7 +163863,7 @@ entities:
nameSet: True
id: vault a
type: SurveillanceCamera
- - uid: 24919
+ - uid: 24938
components:
- pos: 31.5,-22.5
parent: 2
@@ -163754,7 +163873,7 @@ entities:
nameSet: True
id: bridge
type: SurveillanceCamera
- - uid: 24920
+ - uid: 24939
components:
- rot: 3.141592653589793 rad
pos: 64.5,-51.5
@@ -163765,7 +163884,7 @@ entities:
nameSet: True
id: research director
type: SurveillanceCamera
- - uid: 24921
+ - uid: 24940
components:
- rot: -1.5707963267948966 rad
pos: 31.5,-10.5
@@ -163776,7 +163895,7 @@ entities:
nameSet: True
id: EVA closet
type: SurveillanceCamera
- - uid: 24922
+ - uid: 24941
components:
- pos: 28.5,-43.5
parent: 2
@@ -163786,7 +163905,7 @@ entities:
nameSet: True
id: personnel
type: SurveillanceCamera
- - uid: 24923
+ - uid: 24942
components:
- rot: 1.5707963267948966 rad
pos: 5.5,-6.5
@@ -163799,7 +163918,7 @@ entities:
type: SurveillanceCamera
- proto: SurveillanceCameraEngineering
entities:
- - uid: 24924
+ - uid: 24943
components:
- rot: -1.5707963267948966 rad
pos: -44.5,-41.5
@@ -163810,7 +163929,7 @@ entities:
nameSet: True
id: atmospherics
type: SurveillanceCamera
- - uid: 24925
+ - uid: 24944
components:
- rot: 3.141592653589793 rad
pos: -29.5,-16.5
@@ -163821,7 +163940,7 @@ entities:
nameSet: True
id: engineering main corridor
type: SurveillanceCamera
- - uid: 24926
+ - uid: 24945
components:
- pos: -38.5,-13.5
parent: 2
@@ -163831,7 +163950,7 @@ entities:
nameSet: True
id: engineer canteen
type: SurveillanceCamera
- - uid: 24927
+ - uid: 24946
components:
- rot: -1.5707963267948966 rad
pos: -48.5,-9.5
@@ -163842,7 +163961,7 @@ entities:
nameSet: True
id: 'AME '
type: SurveillanceCamera
- - uid: 24928
+ - uid: 24947
components:
- pos: -52.5,-20.5
parent: 2
@@ -163852,7 +163971,7 @@ entities:
nameSet: True
id: engineering console room
type: SurveillanceCamera
- - uid: 24929
+ - uid: 24948
components:
- pos: -67.5,-28.5
parent: 2
@@ -163862,7 +163981,7 @@ entities:
nameSet: True
id: particle accelerator
type: SurveillanceCamera
- - uid: 24930
+ - uid: 24949
components:
- rot: -1.5707963267948966 rad
pos: -22.5,4.5
@@ -163875,7 +163994,7 @@ entities:
type: SurveillanceCamera
- proto: SurveillanceCameraGeneral
entities:
- - uid: 24931
+ - uid: 24950
components:
- pos: -6.5,-27.5
parent: 2
@@ -163885,7 +164004,7 @@ entities:
nameSet: True
id: janitorial closet
type: SurveillanceCamera
- - uid: 24932
+ - uid: 24951
components:
- rot: 1.5707963267948966 rad
pos: -22.5,-23.5
@@ -163896,7 +164015,7 @@ entities:
nameSet: True
id: north youtool
type: SurveillanceCamera
- - uid: 24933
+ - uid: 24952
components:
- rot: 3.141592653589793 rad
pos: 8.5,3.5
@@ -163907,7 +164026,7 @@ entities:
nameSet: True
id: food court
type: SurveillanceCamera
- - uid: 24934
+ - uid: 24953
components:
- rot: 1.5707963267948966 rad
pos: 41.5,-56.5
@@ -163918,7 +164037,7 @@ entities:
nameSet: True
id: south youtool
type: SurveillanceCamera
- - uid: 24935
+ - uid: 24954
components:
- pos: 37.5,-73.5
parent: 2
@@ -163928,7 +164047,7 @@ entities:
nameSet: True
id: arrivals
type: SurveillanceCamera
- - uid: 24936
+ - uid: 24955
components:
- rot: -1.5707963267948966 rad
pos: 60.5,-7.5
@@ -163939,7 +164058,7 @@ entities:
nameSet: True
id: evac
type: SurveillanceCamera
- - uid: 24937
+ - uid: 24956
components:
- rot: 3.141592653589793 rad
pos: -12.5,-8.5
@@ -163952,7 +164071,7 @@ entities:
type: SurveillanceCamera
- proto: SurveillanceCameraMedical
entities:
- - uid: 24938
+ - uid: 24957
components:
- rot: -1.5707963267948966 rad
pos: -20.5,-61.5
@@ -163963,7 +164082,7 @@ entities:
nameSet: True
id: medbay corridor
type: SurveillanceCamera
- - uid: 24939
+ - uid: 24958
components:
- rot: 1.5707963267948966 rad
pos: 0.5,-47.5
@@ -163974,7 +164093,7 @@ entities:
nameSet: True
id: medbay reception
type: SurveillanceCamera
- - uid: 24940
+ - uid: 24959
components:
- pos: -10.5,-61.5
parent: 2
@@ -163984,7 +164103,7 @@ entities:
nameSet: True
id: medical doctors corridor
type: SurveillanceCamera
- - uid: 24941
+ - uid: 24960
components:
- rot: 3.141592653589793 rad
pos: -6.5,-52.5
@@ -163995,7 +164114,7 @@ entities:
nameSet: True
id: medical beds
type: SurveillanceCamera
- - uid: 24942
+ - uid: 24961
components:
- rot: -1.5707963267948966 rad
pos: -25.5,-70.5
@@ -164006,7 +164125,7 @@ entities:
nameSet: True
id: virology reception
type: SurveillanceCamera
- - uid: 24943
+ - uid: 24962
components:
- pos: -26.5,-80.5
parent: 2
@@ -164016,7 +164135,7 @@ entities:
nameSet: True
id: virology treatment
type: SurveillanceCamera
- - uid: 24944
+ - uid: 24963
components:
- rot: -1.5707963267948966 rad
pos: -23.5,-83.5
@@ -164029,63 +164148,63 @@ entities:
type: SurveillanceCamera
- proto: SurveillanceCameraRouterCommand
entities:
- - uid: 24945
+ - uid: 24964
components:
- pos: -18.5,-48.5
parent: 2
type: Transform
- proto: SurveillanceCameraRouterEngineering
entities:
- - uid: 24946
+ - uid: 24965
components:
- pos: -21.5,-47.5
parent: 2
type: Transform
- proto: SurveillanceCameraRouterGeneral
entities:
- - uid: 24947
+ - uid: 24966
components:
- pos: -18.5,-45.5
parent: 2
type: Transform
- proto: SurveillanceCameraRouterMedical
entities:
- - uid: 24948
+ - uid: 24967
components:
- pos: -18.5,-46.5
parent: 2
type: Transform
- proto: SurveillanceCameraRouterScience
entities:
- - uid: 24949
+ - uid: 24968
components:
- pos: -21.5,-45.5
parent: 2
type: Transform
- proto: SurveillanceCameraRouterSecurity
entities:
- - uid: 24950
+ - uid: 24969
components:
- pos: -21.5,-48.5
parent: 2
type: Transform
- proto: SurveillanceCameraRouterService
entities:
- - uid: 24951
+ - uid: 24970
components:
- pos: -18.5,-47.5
parent: 2
type: Transform
- proto: SurveillanceCameraRouterSupply
entities:
- - uid: 24952
+ - uid: 24971
components:
- pos: -21.5,-46.5
parent: 2
type: Transform
- proto: SurveillanceCameraScience
entities:
- - uid: 24953
+ - uid: 24972
components:
- rot: 1.5707963267948966 rad
pos: 76.5,-48.5
@@ -164096,7 +164215,7 @@ entities:
nameSet: True
id: robotics
type: SurveillanceCamera
- - uid: 24954
+ - uid: 24973
components:
- rot: 1.5707963267948966 rad
pos: 46.5,-36.5
@@ -164107,7 +164226,7 @@ entities:
nameSet: True
id: r&d
type: SurveillanceCamera
- - uid: 24955
+ - uid: 24974
components:
- rot: 1.5707963267948966 rad
pos: 65.5,-47.5
@@ -164118,7 +164237,7 @@ entities:
nameSet: True
id: science robotics showcase
type: SurveillanceCamera
- - uid: 24956
+ - uid: 24975
components:
- rot: 3.141592653589793 rad
pos: 37.5,-41.5
@@ -164129,7 +164248,7 @@ entities:
nameSet: True
id: science entrance
type: SurveillanceCamera
- - uid: 24957
+ - uid: 24976
components:
- rot: 1.5707963267948966 rad
pos: 75.5,-38.5
@@ -164142,7 +164261,7 @@ entities:
type: SurveillanceCamera
- proto: SurveillanceCameraSecurity
entities:
- - uid: 24958
+ - uid: 24977
components:
- rot: 1.5707963267948966 rad
pos: 23.5,34.5
@@ -164153,7 +164272,7 @@ entities:
nameSet: True
id: space armory
type: SurveillanceCamera
- - uid: 24959
+ - uid: 24978
components:
- rot: 1.5707963267948966 rad
pos: 50.5,14.5
@@ -164164,7 +164283,7 @@ entities:
nameSet: True
id: open prison north west
type: SurveillanceCamera
- - uid: 24960
+ - uid: 24979
components:
- rot: -1.5707963267948966 rad
pos: 56.5,10.5
@@ -164175,7 +164294,7 @@ entities:
nameSet: True
id: open prison south
type: SurveillanceCamera
- - uid: 24961
+ - uid: 24980
components:
- rot: 1.5707963267948966 rad
pos: 42.5,9.5
@@ -164186,7 +164305,7 @@ entities:
nameSet: True
id: brig south
type: SurveillanceCamera
- - uid: 24962
+ - uid: 24981
components:
- rot: 3.141592653589793 rad
pos: 33.5,16.5
@@ -164197,7 +164316,7 @@ entities:
nameSet: True
id: brig
type: SurveillanceCamera
- - uid: 24963
+ - uid: 24982
components:
- rot: 1.5707963267948966 rad
pos: 32.5,31.5
@@ -164208,7 +164327,7 @@ entities:
nameSet: True
id: armory
type: SurveillanceCamera
- - uid: 24964
+ - uid: 24983
components:
- rot: 3.141592653589793 rad
pos: 8.5,17.5
@@ -164219,7 +164338,7 @@ entities:
nameSet: True
id: security canteen
type: SurveillanceCamera
- - uid: 24965
+ - uid: 24984
components:
- rot: -1.5707963267948966 rad
pos: 17.5,-11.5
@@ -164232,7 +164351,7 @@ entities:
type: SurveillanceCamera
- proto: SurveillanceCameraService
entities:
- - uid: 24966
+ - uid: 24985
components:
- rot: 1.5707963267948966 rad
pos: 12.5,-6.5
@@ -164243,7 +164362,7 @@ entities:
nameSet: True
id: library
type: SurveillanceCamera
- - uid: 24967
+ - uid: 24986
components:
- rot: 1.5707963267948966 rad
pos: 6.5,6.5
@@ -164254,7 +164373,7 @@ entities:
nameSet: True
id: Kitchen
type: SurveillanceCamera
- - uid: 24968
+ - uid: 24987
components:
- rot: 1.5707963267948966 rad
pos: 14.5,8.5
@@ -164265,7 +164384,7 @@ entities:
nameSet: True
id: bar
type: SurveillanceCamera
- - uid: 24969
+ - uid: 24988
components:
- rot: 1.5707963267948966 rad
pos: -6.5,9.5
@@ -164278,7 +164397,7 @@ entities:
type: SurveillanceCamera
- proto: SurveillanceCameraSupply
entities:
- - uid: 24970
+ - uid: 24989
components:
- pos: -43.5,18.5
parent: 2
@@ -164288,7 +164407,7 @@ entities:
nameSet: True
id: cargo dock
type: SurveillanceCamera
- - uid: 24971
+ - uid: 24990
components:
- rot: 1.5707963267948966 rad
pos: -30.5,22.5
@@ -164299,7 +164418,7 @@ entities:
nameSet: True
id: cargo
type: SurveillanceCamera
- - uid: 24972
+ - uid: 24991
components:
- pos: -43.5,28.5
parent: 2
@@ -164309,7 +164428,7 @@ entities:
nameSet: True
id: salvage magnet
type: SurveillanceCamera
- - uid: 24973
+ - uid: 24992
components:
- rot: 3.141592653589793 rad
pos: -44.5,16.5
@@ -164322,14 +164441,14 @@ entities:
type: SurveillanceCamera
- proto: SurveillanceCameraWirelessRouterEntertainment
entities:
- - uid: 24974
+ - uid: 24993
components:
- pos: -27.5,12.5
parent: 2
type: Transform
- proto: SurveillanceWirelessCameraAnchoredConstructed
entities:
- - uid: 24975
+ - uid: 24994
components:
- rot: 3.141592653589793 rad
pos: -26.5,13.5
@@ -164340,7 +164459,7 @@ entities:
type: SurveillanceCamera
- proto: SurveillanceWirelessCameraMovableEntertainment
entities:
- - uid: 24976
+ - uid: 24995
components:
- pos: -24.5,13.5
parent: 2
@@ -164350,7 +164469,7 @@ entities:
nameSet: True
id: news camera
type: SurveillanceCamera
- - uid: 24977
+ - uid: 24996
components:
- rot: -1.5707963267948966 rad
pos: 29.5,3.5
@@ -164358,1986 +164477,1987 @@ entities:
type: Transform
- proto: SynthesizerInstrument
entities:
- - uid: 24978
+ - uid: 24997
components:
- pos: -10.500677,-5.723185
parent: 2
type: Transform
- proto: Syringe
entities:
- - uid: 24979
+ - uid: 24998
components:
- pos: -25.497284,-79.35806
parent: 2
type: Transform
- proto: Table
entities:
- - uid: 24980
+ - uid: 24999
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 3.5,-45.5
+ parent: 2
+ type: Transform
+ - uid: 25000
+ components:
+ - pos: 7.5,-45.5
+ parent: 2
+ type: Transform
+ - uid: 25001
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 13.5,-46.5
+ parent: 2
+ type: Transform
+ - uid: 25002
components:
- pos: 55.5,61.5
parent: 2
type: Transform
- - uid: 24981
+ - uid: 25003
components:
- pos: 54.5,61.5
parent: 2
type: Transform
- - uid: 24982
+ - uid: 25004
components:
- pos: 53.5,61.5
parent: 2
type: Transform
- - uid: 24983
+ - uid: 25005
components:
- rot: -1.5707963267948966 rad
pos: 55.5,-40.5
parent: 2
type: Transform
- - uid: 24984
+ - uid: 25006
components:
- pos: -37.5,-18.5
parent: 2
type: Transform
- - uid: 24985
+ - uid: 25007
components:
- rot: -1.5707963267948966 rad
pos: -66.5,-34.5
parent: 2
type: Transform
- - uid: 24986
+ - uid: 25008
components:
- rot: -1.5707963267948966 rad
pos: -67.5,-34.5
parent: 2
type: Transform
- - uid: 24987
+ - uid: 25009
components:
- pos: -25.5,-52.5
parent: 2
type: Transform
- - uid: 24988
+ - uid: 25010
components:
- rot: 3.141592653589793 rad
pos: -37.5,-7.5
parent: 2
type: Transform
- - uid: 24989
+ - uid: 25011
components:
- rot: 3.141592653589793 rad
pos: -36.5,-7.5
parent: 2
type: Transform
- - uid: 24990
+ - uid: 25012
components:
- rot: 1.5707963267948966 rad
pos: 2.5,7.5
parent: 2
type: Transform
- - uid: 24991
+ - uid: 25013
components:
- rot: 3.141592653589793 rad
pos: 18.5,11.5
parent: 2
type: Transform
- - uid: 24992
+ - uid: 25014
components:
- rot: 3.141592653589793 rad
pos: 18.5,13.5
parent: 2
type: Transform
- - uid: 24993
- components:
- - pos: 7.5,-46.5
- parent: 2
- type: Transform
- - uid: 24994
+ - uid: 25015
components:
- pos: -25.5,-78.5
parent: 2
type: Transform
- - uid: 24995
+ - uid: 25016
components:
- pos: -19.5,-85.5
parent: 2
type: Transform
- - uid: 24996
+ - uid: 25017
components:
- rot: 1.5707963267948966 rad
pos: 2.5,6.5
parent: 2
type: Transform
- - uid: 24997
+ - uid: 25018
components:
- rot: 3.141592653589793 rad
pos: 4.5,-50.5
parent: 2
type: Transform
- - uid: 24998
+ - uid: 25019
components:
- rot: -1.5707963267948966 rad
pos: 6.5,12.5
parent: 2
type: Transform
- - uid: 24999
+ - uid: 25020
components:
- pos: 10.5,-56.5
parent: 2
type: Transform
- - uid: 25000
+ - uid: 25021
components:
- pos: -28.5,21.5
parent: 2
type: Transform
- - uid: 25001
+ - uid: 25022
components:
- rot: 3.141592653589793 rad
pos: 73.5,-38.5
parent: 2
type: Transform
- - uid: 25002
+ - uid: 25023
components:
- rot: 1.5707963267948966 rad
pos: 4.5,6.5
parent: 2
type: Transform
- - uid: 25003
- components:
- - pos: 3.5,-45.5
- parent: 2
- type: Transform
- - uid: 25004
+ - uid: 25024
components:
- rot: 3.141592653589793 rad
pos: 18.5,12.5
parent: 2
type: Transform
- - uid: 25005
+ - uid: 25025
components:
- rot: -1.5707963267948966 rad
pos: -12.5,-56.5
parent: 2
type: Transform
- - uid: 25006
+ - uid: 25026
components:
- rot: -1.5707963267948966 rad
pos: -9.5,-56.5
parent: 2
type: Transform
- - uid: 25007
+ - uid: 25027
components:
- rot: -1.5707963267948966 rad
pos: -6.5,-56.5
parent: 2
type: Transform
- - uid: 25008
+ - uid: 25028
components:
- rot: -1.5707963267948966 rad
pos: -3.5,-56.5
parent: 2
type: Transform
- - uid: 25009
+ - uid: 25029
components:
- rot: -1.5707963267948966 rad
pos: -0.5,-56.5
parent: 2
type: Transform
- - uid: 25010
+ - uid: 25030
components:
- rot: -1.5707963267948966 rad
pos: 2.5,-56.5
parent: 2
type: Transform
- - uid: 25011
+ - uid: 25031
components:
- rot: 3.141592653589793 rad
pos: 64.5,-36.5
parent: 2
type: Transform
- - uid: 25012
+ - uid: 25032
components:
- pos: 10.5,-58.5
parent: 2
type: Transform
- - uid: 25013
+ - uid: 25033
components:
- pos: 10.5,-59.5
parent: 2
type: Transform
- - uid: 25014
+ - uid: 25034
components:
- pos: 10.5,-61.5
parent: 2
type: Transform
- - uid: 25015
+ - uid: 25035
components:
- pos: 10.5,-62.5
parent: 2
type: Transform
- - uid: 25016
+ - uid: 25036
components:
- pos: 9.5,-62.5
parent: 2
type: Transform
- - uid: 25017
+ - uid: 25037
components:
- pos: 8.5,-62.5
parent: 2
type: Transform
- - uid: 25018
+ - uid: 25038
components:
- pos: -13.5,-21.5
parent: 2
type: Transform
- - uid: 25019
+ - uid: 25039
components:
- pos: -13.5,-23.5
parent: 2
type: Transform
- - uid: 25020
+ - uid: 25040
components:
- pos: -12.5,-19.5
parent: 2
type: Transform
- - uid: 25021
+ - uid: 25041
components:
- pos: 3.5,-47.5
parent: 2
type: Transform
- - uid: 25022
+ - uid: 25042
components:
- pos: 8.5,13.5
parent: 2
type: Transform
- - uid: 25023
+ - uid: 25043
components:
- pos: 7.5,12.5
parent: 2
type: Transform
- - uid: 25024
+ - uid: 25044
components:
- pos: -22.5,-78.5
parent: 2
type: Transform
- - uid: 25025
+ - uid: 25045
components:
- pos: -20.5,-78.5
parent: 2
type: Transform
- - uid: 25026
+ - uid: 25046
components:
- rot: 1.5707963267948966 rad
pos: 3.5,7.5
parent: 2
type: Transform
- - uid: 25027
+ - uid: 25047
components:
- rot: 1.5707963267948966 rad
pos: 3.5,6.5
parent: 2
type: Transform
- - uid: 25028
+ - uid: 25048
components:
- pos: 10.5,-60.5
parent: 2
type: Transform
- - uid: 25029
+ - uid: 25049
components:
- rot: -1.5707963267948966 rad
pos: 8.5,14.5
parent: 2
type: Transform
- - uid: 25030
+ - uid: 25050
components:
- pos: -25.5,-79.5
parent: 2
type: Transform
- - uid: 25031
+ - uid: 25051
components:
- pos: -26.5,-20.5
parent: 2
type: Transform
- - uid: 25032
+ - uid: 25052
components:
- pos: 5.5,15.5
parent: 2
type: Transform
- - uid: 25033
+ - uid: 25053
components:
- pos: -62.5,-28.5
parent: 2
type: Transform
- - uid: 25034
+ - uid: 25054
components:
- pos: -22.5,-76.5
parent: 2
type: Transform
- - uid: 25035
+ - uid: 25055
components:
- pos: -20.5,-77.5
parent: 2
type: Transform
- - uid: 25036
+ - uid: 25056
components:
- pos: -6.5,-73.5
parent: 2
type: Transform
- - uid: 25037
+ - uid: 25057
components:
- pos: 9.5,-56.5
parent: 2
type: Transform
- - uid: 25038
+ - uid: 25058
components:
- pos: -23.5,-71.5
parent: 2
type: Transform
- - uid: 25039
+ - uid: 25059
components:
- pos: -11.5,-67.5
parent: 2
type: Transform
- - uid: 25040
+ - uid: 25060
components:
- pos: -24.5,-71.5
parent: 2
type: Transform
- - uid: 25041
+ - uid: 25061
components:
- pos: -22.5,-71.5
parent: 2
type: Transform
- - uid: 25042
+ - uid: 25062
components:
- pos: -22.5,-70.5
parent: 2
type: Transform
- - uid: 25043
+ - uid: 25063
components:
- pos: -13.5,-22.5
parent: 2
type: Transform
- - uid: 25044
+ - uid: 25064
components:
- pos: -22.5,-69.5
parent: 2
type: Transform
- - uid: 25045
+ - uid: 25065
components:
- pos: -30.5,-69.5
parent: 2
type: Transform
- - uid: 25046
+ - uid: 25066
components:
- rot: 3.141592653589793 rad
pos: -31.5,-69.5
parent: 2
type: Transform
- - uid: 25047
+ - uid: 25067
components:
- pos: -8.5,-15.5
parent: 2
type: Transform
- - uid: 25048
+ - uid: 25068
components:
- pos: 15.5,-64.5
parent: 2
type: Transform
- - uid: 25049
+ - uid: 25069
components:
- pos: 16.5,-64.5
parent: 2
type: Transform
- - uid: 25050
+ - uid: 25070
components:
- rot: 1.5707963267948966 rad
pos: 4.5,7.5
parent: 2
type: Transform
- - uid: 25051
+ - uid: 25071
components:
- rot: 3.141592653589793 rad
pos: 18.5,11.5
parent: 2
type: Transform
- - uid: 25052
+ - uid: 25072
components:
- pos: 8.5,12.5
parent: 2
type: Transform
- - uid: 25053
+ - uid: 25073
components:
- pos: 9.5,-58.5
parent: 2
type: Transform
- - uid: 25054
+ - uid: 25074
components:
- pos: -7.5,-15.5
parent: 2
type: Transform
- - uid: 25055
+ - uid: 25075
components:
- pos: -19.5,-87.5
parent: 2
type: Transform
- - uid: 25056
+ - uid: 25076
components:
- pos: -19.5,-84.5
parent: 2
type: Transform
- - uid: 25057
+ - uid: 25077
components:
- pos: -26.5,-86.5
parent: 2
type: Transform
- - uid: 25058
+ - uid: 25078
components:
- pos: -26.5,-84.5
parent: 2
type: Transform
- - uid: 25059
+ - uid: 25079
components:
- pos: -25.5,-84.5
parent: 2
type: Transform
- - uid: 25060
+ - uid: 25080
components:
- pos: -24.5,-84.5
parent: 2
type: Transform
- - uid: 25061
+ - uid: 25081
components:
- pos: 12.5,20.5
parent: 2
type: Transform
- - uid: 25062
+ - uid: 25082
components:
- pos: 12.5,19.5
parent: 2
type: Transform
- - uid: 25063
+ - uid: 25083
components:
- pos: 12.5,21.5
parent: 2
type: Transform
- - uid: 25064
+ - uid: 25084
components:
- pos: -10.5,-32.5
parent: 2
type: Transform
- - uid: 25065
+ - uid: 25085
components:
- pos: -9.5,-32.5
parent: 2
type: Transform
- - uid: 25066
+ - uid: 25086
components:
- pos: -8.5,-32.5
parent: 2
type: Transform
- - uid: 25067
+ - uid: 25087
components:
- pos: -8.5,-33.5
parent: 2
type: Transform
- - uid: 25068
+ - uid: 25088
components:
- rot: 3.141592653589793 rad
pos: 17.5,22.5
parent: 2
type: Transform
- - uid: 25069
+ - uid: 25089
components:
- pos: 17.5,21.5
parent: 2
type: Transform
- - uid: 25070
+ - uid: 25090
components:
- pos: 16.5,21.5
parent: 2
type: Transform
- - uid: 25071
+ - uid: 25091
components:
- pos: 15.5,21.5
parent: 2
type: Transform
- - uid: 25072
+ - uid: 25092
components:
- rot: 3.141592653589793 rad
pos: 15.5,22.5
parent: 2
type: Transform
- - uid: 25073
+ - uid: 25093
components:
- rot: 3.141592653589793 rad
pos: 16.5,22.5
parent: 2
type: Transform
- - uid: 25074
+ - uid: 25094
components:
- pos: -9.5,-15.5
parent: 2
type: Transform
- - uid: 25075
+ - uid: 25095
components:
- pos: 53.5,35.5
parent: 2
type: Transform
- - uid: 25076
+ - uid: 25096
components:
- pos: 54.5,35.5
parent: 2
type: Transform
- - uid: 25077
+ - uid: 25097
components:
- rot: 1.5707963267948966 rad
pos: 54.5,18.5
parent: 2
type: Transform
- - uid: 25078
+ - uid: 25098
components:
- rot: 1.5707963267948966 rad
pos: 53.5,18.5
parent: 2
type: Transform
- - uid: 25079
+ - uid: 25099
components:
- rot: 1.5707963267948966 rad
pos: 52.5,18.5
parent: 2
type: Transform
- - uid: 25080
+ - uid: 25100
components:
- pos: 45.5,8.5
parent: 2
type: Transform
- - uid: 25081
+ - uid: 25101
components:
- pos: 62.5,18.5
parent: 2
type: Transform
- - uid: 25082
+ - uid: 25102
components:
- pos: 62.5,15.5
parent: 2
type: Transform
- - uid: 25083
+ - uid: 25103
components:
- pos: 59.5,24.5
parent: 2
type: Transform
- - uid: 25084
+ - uid: 25104
components:
- pos: 47.5,24.5
parent: 2
type: Transform
- - uid: 25085
+ - uid: 25105
components:
- pos: 53.5,24.5
parent: 2
type: Transform
- - uid: 25086
+ - uid: 25106
components:
- pos: 50.5,24.5
parent: 2
type: Transform
- - uid: 25087
+ - uid: 25107
components:
- pos: 56.5,24.5
parent: 2
type: Transform
- - uid: 25088
+ - uid: 25108
components:
- pos: 48.5,18.5
parent: 2
type: Transform
- - uid: 25089
+ - uid: 25109
components:
- pos: 57.5,20.5
parent: 2
type: Transform
- - uid: 25090
+ - uid: 25110
components:
- pos: 57.5,19.5
parent: 2
type: Transform
- - uid: 25091
+ - uid: 25111
components:
- pos: 58.5,19.5
parent: 2
type: Transform
- - uid: 25092
+ - uid: 25112
components:
- pos: 51.5,7.5
parent: 2
type: Transform
- - uid: 25093
+ - uid: 25113
components:
- pos: 52.5,7.5
parent: 2
type: Transform
- - uid: 25094
+ - uid: 25114
components:
- pos: 52.5,6.5
parent: 2
type: Transform
- - uid: 25095
+ - uid: 25115
components:
- pos: 51.5,6.5
parent: 2
type: Transform
- - uid: 25096
+ - uid: 25116
components:
- rot: 3.141592653589793 rad
pos: 52.5,11.5
parent: 2
type: Transform
- - uid: 25097
+ - uid: 25117
components:
- pos: 58.5,20.5
parent: 2
type: Transform
- - uid: 25098
+ - uid: 25118
components:
- rot: -1.5707963267948966 rad
pos: 47.5,4.5
parent: 2
type: Transform
- - uid: 25099
+ - uid: 25119
components:
- rot: -1.5707963267948966 rad
pos: 65.5,-6.5
parent: 2
type: Transform
- - uid: 25100
+ - uid: 25120
components:
- pos: 41.5,-39.5
parent: 2
type: Transform
- - uid: 25101
+ - uid: 25121
components:
- pos: 40.5,-39.5
parent: 2
type: Transform
- - uid: 25102
+ - uid: 25122
components:
- pos: 39.5,-39.5
parent: 2
type: Transform
- - uid: 25103
+ - uid: 25123
components:
- pos: 38.5,-39.5
parent: 2
type: Transform
- - uid: 25104
+ - uid: 25124
components:
- pos: 38.5,-38.5
parent: 2
type: Transform
- - uid: 25105
+ - uid: 25125
components:
- pos: 38.5,-37.5
parent: 2
type: Transform
- - uid: 25106
+ - uid: 25126
components:
- rot: 3.141592653589793 rad
pos: 77.5,-46.5
parent: 2
type: Transform
- - uid: 25107
+ - uid: 25127
components:
- pos: 38.5,-36.5
parent: 2
type: Transform
- - uid: 25108
+ - uid: 25128
components:
- pos: 42.5,-35.5
parent: 2
type: Transform
- - uid: 25109
+ - uid: 25129
components:
- pos: 41.5,-35.5
parent: 2
type: Transform
- - uid: 25110
+ - uid: 25130
components:
- pos: 46.5,-49.5
parent: 2
type: Transform
- - uid: 25111
+ - uid: 25131
components:
- pos: 45.5,-49.5
parent: 2
type: Transform
- - uid: 25112
+ - uid: 25132
components:
- pos: 44.5,-49.5
parent: 2
type: Transform
- - uid: 25113
+ - uid: 25133
components:
- pos: 43.5,-49.5
parent: 2
type: Transform
- - uid: 25114
+ - uid: 25134
components:
- pos: 42.5,-49.5
parent: 2
type: Transform
- - uid: 25115
+ - uid: 25135
components:
- pos: 42.5,-48.5
parent: 2
type: Transform
- - uid: 25116
+ - uid: 25136
components:
- pos: 71.5,-43.5
parent: 2
type: Transform
- - uid: 25117
+ - uid: 25137
components:
- pos: 73.5,-44.5
parent: 2
type: Transform
- - uid: 25118
+ - uid: 25138
components:
- rot: -1.5707963267948966 rad
pos: 73.5,-47.5
parent: 2
type: Transform
- - uid: 25119
+ - uid: 25139
components:
- pos: 69.5,-49.5
parent: 2
type: Transform
- - uid: 25120
+ - uid: 25140
components:
- rot: -1.5707963267948966 rad
pos: 69.5,-47.5
parent: 2
type: Transform
- - uid: 25121
+ - uid: 25141
components:
- pos: 73.5,-43.5
parent: 2
type: Transform
- - uid: 25122
+ - uid: 25142
components:
- pos: 72.5,-43.5
parent: 2
type: Transform
- - uid: 25123
+ - uid: 25143
components:
- pos: -11.5,-48.5
parent: 2
type: Transform
- - uid: 25124
+ - uid: 25144
components:
- pos: -11.5,-49.5
parent: 2
type: Transform
- - uid: 25125
+ - uid: 25145
components:
- pos: -11.5,-50.5
parent: 2
type: Transform
- - uid: 25126
+ - uid: 25146
components:
- pos: -12.5,-50.5
parent: 2
type: Transform
- - uid: 25127
+ - uid: 25147
components:
- pos: 53.5,-51.5
parent: 2
type: Transform
- - uid: 25128
+ - uid: 25148
components:
- pos: 53.5,-52.5
parent: 2
type: Transform
- - uid: 25129
+ - uid: 25149
components:
- pos: 53.5,-53.5
parent: 2
type: Transform
- - uid: 25130
+ - uid: 25150
components:
- rot: 3.141592653589793 rad
pos: -24.5,-19.5
parent: 2
type: Transform
- - uid: 25131
+ - uid: 25151
components:
- rot: 3.141592653589793 rad
pos: -25.5,-19.5
parent: 2
type: Transform
- - uid: 25132
+ - uid: 25152
components:
- pos: -22.5,-20.5
parent: 2
type: Transform
- - uid: 25133
+ - uid: 25153
components:
- rot: 1.5707963267948966 rad
pos: -23.5,-24.5
parent: 2
type: Transform
- - uid: 25134
+ - uid: 25154
components:
- rot: 1.5707963267948966 rad
pos: -24.5,-24.5
parent: 2
type: Transform
- - uid: 25135
+ - uid: 25155
components:
- rot: 1.5707963267948966 rad
pos: -25.5,-24.5
parent: 2
type: Transform
- - uid: 25136
+ - uid: 25156
components:
- pos: -26.5,-19.5
parent: 2
type: Transform
- - uid: 25137
+ - uid: 25157
components:
- pos: 30.5,-61.5
parent: 2
type: Transform
- - uid: 25138
+ - uid: 25158
components:
- pos: 31.5,-61.5
parent: 2
type: Transform
- - uid: 25139
+ - uid: 25159
components:
- pos: 40.5,-53.5
parent: 2
type: Transform
- - uid: 25140
+ - uid: 25160
components:
- pos: 41.5,-53.5
parent: 2
type: Transform
- - uid: 25141
+ - uid: 25161
components:
- pos: 41.5,-54.5
parent: 2
type: Transform
- - uid: 25142
+ - uid: 25162
components:
- pos: 41.5,-55.5
parent: 2
type: Transform
- - uid: 25143
+ - uid: 25163
components:
- rot: 3.141592653589793 rad
pos: 26.5,-68.5
parent: 2
type: Transform
- - uid: 25144
+ - uid: 25164
components:
- pos: -34.5,-13.5
parent: 2
type: Transform
- - uid: 25145
+ - uid: 25165
components:
- pos: -35.5,-13.5
parent: 2
type: Transform
- - uid: 25146
+ - uid: 25166
components:
- pos: -36.5,-8.5
parent: 2
type: Transform
- - uid: 25147
+ - uid: 25167
components:
- pos: -34.5,-12.5
parent: 2
type: Transform
- - uid: 25148
+ - uid: 25168
components:
- pos: -39.5,-16.5
parent: 2
type: Transform
- - uid: 25149
+ - uid: 25169
components:
- pos: -39.5,-17.5
parent: 2
type: Transform
- - uid: 25150
+ - uid: 25170
components:
- pos: -39.5,-18.5
parent: 2
type: Transform
- - uid: 25151
+ - uid: 25171
components:
- pos: -40.5,-18.5
parent: 2
type: Transform
- - uid: 25152
+ - uid: 25172
components:
- pos: -42.5,-18.5
parent: 2
type: Transform
- - uid: 25153
+ - uid: 25173
components:
- pos: -42.5,-17.5
parent: 2
type: Transform
- - uid: 25154
+ - uid: 25174
components:
- pos: -42.5,-16.5
parent: 2
type: Transform
- - uid: 25155
+ - uid: 25175
components:
- rot: 1.5707963267948966 rad
pos: -12.5,-5.5
parent: 2
type: Transform
- - uid: 25156
+ - uid: 25176
components:
- pos: -30.5,-37.5
parent: 2
type: Transform
- - uid: 25157
+ - uid: 25177
components:
- rot: 3.141592653589793 rad
pos: -52.5,-13.5
parent: 2
type: Transform
- - uid: 25158
+ - uid: 25178
components:
- pos: -57.5,-30.5
parent: 2
type: Transform
- - uid: 25159
+ - uid: 25179
components:
- pos: -62.5,-27.5
parent: 2
type: Transform
- - uid: 25160
+ - uid: 25180
components:
- pos: -35.5,-46.5
parent: 2
type: Transform
- - uid: 25161
+ - uid: 25181
components:
- pos: -35.5,-47.5
parent: 2
type: Transform
- - uid: 25162
+ - uid: 25182
components:
- pos: -35.5,-48.5
parent: 2
type: Transform
- - uid: 25163
+ - uid: 25183
components:
- pos: -35.5,-49.5
parent: 2
type: Transform
- - uid: 25164
+ - uid: 25184
components:
- pos: -35.5,-50.5
parent: 2
type: Transform
- - uid: 25165
+ - uid: 25185
components:
- pos: -52.5,-15.5
parent: 2
type: Transform
- - uid: 25166
+ - uid: 25186
components:
- pos: -52.5,-14.5
parent: 2
type: Transform
- - uid: 25167
+ - uid: 25187
components:
- pos: -52.5,-12.5
parent: 2
type: Transform
- - uid: 25168
+ - uid: 25188
components:
- pos: -70.5,-25.5
parent: 2
type: Transform
- - uid: 25169
+ - uid: 25189
components:
- pos: -70.5,-26.5
parent: 2
type: Transform
- - uid: 25170
+ - uid: 25190
components:
- pos: -71.5,-26.5
parent: 2
type: Transform
- - uid: 25171
+ - uid: 25191
components:
- rot: 3.141592653589793 rad
pos: 20.5,-45.5
parent: 2
type: Transform
- - uid: 25172
+ - uid: 25192
components:
- pos: -28.5,-52.5
parent: 2
type: Transform
- - uid: 25173
+ - uid: 25193
components:
- pos: -27.5,-52.5
parent: 2
type: Transform
- - uid: 25174
+ - uid: 25194
components:
- pos: -24.5,-52.5
parent: 2
type: Transform
- - uid: 25175
+ - uid: 25195
components:
- pos: -38.5,-27.5
parent: 2
type: Transform
- - uid: 25176
+ - uid: 25196
components:
- pos: -43.5,-27.5
parent: 2
type: Transform
- - uid: 25177
+ - uid: 25197
components:
- pos: -54.5,-38.5
parent: 2
type: Transform
- - uid: 25178
+ - uid: 25198
components:
- pos: -54.5,-39.5
parent: 2
type: Transform
- - uid: 25179
+ - uid: 25199
components:
- pos: -55.5,-39.5
parent: 2
type: Transform
- - uid: 25180
+ - uid: 25200
components:
- pos: -57.5,-35.5
parent: 2
type: Transform
- - uid: 25181
+ - uid: 25201
components:
- pos: -56.5,-35.5
parent: 2
type: Transform
- - uid: 25182
+ - uid: 25202
components:
- pos: -22.5,-33.5
parent: 2
type: Transform
- - uid: 25183
+ - uid: 25203
components:
- pos: 38.5,-55.5
parent: 2
type: Transform
- - uid: 25184
+ - uid: 25204
components:
- pos: 38.5,-56.5
parent: 2
type: Transform
- - uid: 25185
+ - uid: 25205
components:
- pos: -34.5,17.5
parent: 2
type: Transform
- - uid: 25186
+ - uid: 25206
components:
- pos: -27.5,24.5
parent: 2
type: Transform
- - uid: 25187
+ - uid: 25207
components:
- pos: -22.5,17.5
parent: 2
type: Transform
- - uid: 25188
+ - uid: 25208
components:
- pos: -39.5,25.5
parent: 2
type: Transform
- - uid: 25189
+ - uid: 25209
components:
- pos: -40.5,25.5
parent: 2
type: Transform
- - uid: 25190
+ - uid: 25210
components:
- pos: -43.5,25.5
parent: 2
type: Transform
- - uid: 25191
+ - uid: 25211
components:
- rot: 1.5707963267948966 rad
pos: 33.5,-14.5
parent: 2
type: Transform
- - uid: 25192
+ - uid: 25212
components:
- pos: -3.5,31.5
parent: 2
type: Transform
- - uid: 25193
+ - uid: 25213
components:
- pos: -3.5,30.5
parent: 2
type: Transform
- - uid: 25194
+ - uid: 25214
components:
- pos: 2.5,23.5
parent: 2
type: Transform
- - uid: 25195
+ - uid: 25215
components:
- pos: 1.5,23.5
parent: 2
type: Transform
- - uid: 25196
+ - uid: 25216
components:
- pos: -33.5,17.5
parent: 2
type: Transform
- - uid: 25197
+ - uid: 25217
components:
- pos: -32.5,17.5
parent: 2
type: Transform
- - uid: 25198
+ - uid: 25218
components:
- pos: -34.5,26.5
parent: 2
type: Transform
- - uid: 25199
+ - uid: 25219
components:
- pos: -33.5,29.5
parent: 2
type: Transform
- - uid: 25200
+ - uid: 25220
components:
- rot: -1.5707963267948966 rad
pos: -38.5,18.5
parent: 2
type: Transform
- - uid: 25201
+ - uid: 25221
components:
- pos: -32.5,29.5
parent: 2
type: Transform
- - uid: 25202
+ - uid: 25222
components:
- pos: -31.5,29.5
parent: 2
type: Transform
- - uid: 25203
+ - uid: 25223
components:
- rot: -1.5707963267948966 rad
pos: -37.5,18.5
parent: 2
type: Transform
- - uid: 25204
+ - uid: 25224
components:
- pos: -41.5,35.5
parent: 2
type: Transform
- - uid: 25205
+ - uid: 25225
components:
- pos: -40.5,35.5
parent: 2
type: Transform
- - uid: 25206
+ - uid: 25226
components:
- pos: -40.5,34.5
parent: 2
type: Transform
- - uid: 25207
+ - uid: 25227
components:
- pos: -40.5,33.5
parent: 2
type: Transform
- - uid: 25208
+ - uid: 25228
components:
- pos: -40.5,32.5
parent: 2
type: Transform
- - uid: 25209
+ - uid: 25229
components:
- pos: -38.5,28.5
parent: 2
type: Transform
- - uid: 25210
+ - uid: 25230
components:
- pos: -38.5,27.5
parent: 2
type: Transform
- - uid: 25211
+ - uid: 25231
components:
- pos: -37.5,27.5
parent: 2
type: Transform
- - uid: 25212
+ - uid: 25232
components:
- pos: -36.5,27.5
parent: 2
type: Transform
- - uid: 25213
+ - uid: 25233
components:
- rot: 3.141592653589793 rad
pos: -22.5,11.5
parent: 2
type: Transform
- - uid: 25214
+ - uid: 25234
components:
- rot: 3.141592653589793 rad
pos: -23.5,11.5
parent: 2
type: Transform
- - uid: 25215
+ - uid: 25235
components:
- rot: 3.141592653589793 rad
pos: -24.5,11.5
parent: 2
type: Transform
- - uid: 25216
+ - uid: 25236
components:
- pos: -15.5,23.5
parent: 2
type: Transform
- - uid: 25217
+ - uid: 25237
components:
- pos: -16.5,21.5
parent: 2
type: Transform
- - uid: 25218
+ - uid: 25238
components:
- pos: -16.5,20.5
parent: 2
type: Transform
- - uid: 25219
+ - uid: 25239
components:
- pos: -15.5,21.5
parent: 2
type: Transform
- - uid: 25220
+ - uid: 25240
components:
- pos: -48.5,26.5
parent: 2
type: Transform
- - uid: 25221
+ - uid: 25241
components:
- pos: -47.5,26.5
parent: 2
type: Transform
- - uid: 25222
+ - uid: 25242
components:
- pos: -28.5,8.5
parent: 2
type: Transform
- - uid: 25223
+ - uid: 25243
components:
- pos: -29.5,8.5
parent: 2
type: Transform
- - uid: 25224
+ - uid: 25244
components:
- pos: -54.5,0.5
parent: 2
type: Transform
- - uid: 25225
+ - uid: 25245
components:
- pos: 54.5,12.5
parent: 2
type: Transform
- - uid: 25226
+ - uid: 25246
components:
- pos: -25.5,-67.5
parent: 2
type: Transform
- - uid: 25227
+ - uid: 25247
components:
- rot: 1.5707963267948966 rad
pos: -12.5,-6.5
parent: 2
type: Transform
- - uid: 25228
+ - uid: 25248
components:
- pos: -34.5,20.5
parent: 2
type: Transform
- - uid: 25229
+ - uid: 25249
components:
- rot: -1.5707963267948966 rad
pos: 2.5,-65.5
parent: 2
type: Transform
- - uid: 25230
+ - uid: 25250
components:
- pos: -58.5,-27.5
parent: 2
type: Transform
- - uid: 25231
+ - uid: 25251
components:
- pos: -57.5,-27.5
parent: 2
type: Transform
- - uid: 25232
+ - uid: 25252
components:
- pos: -56.5,-27.5
parent: 2
type: Transform
- - uid: 25233
- components:
- - pos: 7.5,-45.5
- parent: 2
- type: Transform
- - uid: 25234
+ - uid: 25253
components:
- rot: 3.141592653589793 rad
pos: 34.5,-35.5
parent: 2
type: Transform
- - uid: 25235
+ - uid: 25254
components:
- pos: 41.5,-58.5
parent: 2
type: Transform
- - uid: 25236
+ - uid: 25255
components:
- pos: 77.5,-47.5
parent: 2
type: Transform
- - uid: 25237
+ - uid: 25256
components:
- rot: 1.5707963267948966 rad
pos: -9.5,-65.5
parent: 2
type: Transform
- - uid: 25238
+ - uid: 25257
components:
- pos: -2.5,-33.5
parent: 2
type: Transform
- - uid: 25239
+ - uid: 25258
components:
- pos: 11.5,-66.5
parent: 2
type: Transform
- - uid: 25240
+ - uid: 25259
components:
- pos: 12.5,-66.5
parent: 2
type: Transform
- - uid: 25241
+ - uid: 25260
components:
- pos: 7.5,-16.5
parent: 2
type: Transform
- - uid: 25242
+ - uid: 25261
components:
- pos: -7.5,-30.5
parent: 2
type: Transform
- - uid: 25243
+ - uid: 25262
components:
- rot: 3.141592653589793 rad
pos: -29.5,-69.5
parent: 2
type: Transform
- - uid: 25244
+ - uid: 25263
components:
- pos: 57.5,42.5
parent: 2
type: Transform
- - uid: 25245
+ - uid: 25264
components:
- pos: 56.5,42.5
parent: 2
type: Transform
- - uid: 25246
+ - uid: 25265
components:
- pos: 55.5,42.5
parent: 2
type: Transform
- - uid: 25247
+ - uid: 25266
components:
- pos: 50.5,42.5
parent: 2
type: Transform
- - uid: 25248
+ - uid: 25267
components:
- pos: 58.5,52.5
parent: 2
type: Transform
- - uid: 25249
+ - uid: 25268
components:
- pos: 58.5,51.5
parent: 2
type: Transform
- - uid: 25250
+ - uid: 25269
components:
- pos: -8.5,39.5
parent: 2
type: Transform
- - uid: 25251
+ - uid: 25270
components:
- pos: -8.5,38.5
parent: 2
type: Transform
- - uid: 25252
+ - uid: 25271
components:
- pos: -8.5,37.5
parent: 2
type: Transform
- - uid: 25253
+ - uid: 25272
components:
- pos: -9.5,39.5
parent: 2
type: Transform
- - uid: 25254
+ - uid: 25273
components:
- pos: -9.5,37.5
parent: 2
type: Transform
- - uid: 25255
+ - uid: 25274
components:
- rot: 3.141592653589793 rad
pos: 67.5,8.5
parent: 2
type: Transform
- - uid: 25256
+ - uid: 25275
components:
- pos: -22.5,45.5
parent: 2
type: Transform
- - uid: 25257
+ - uid: 25276
components:
- pos: -22.5,44.5
parent: 2
type: Transform
- - uid: 25258
+ - uid: 25277
components:
- pos: -22.5,43.5
parent: 2
type: Transform
- - uid: 25259
+ - uid: 25278
components:
- pos: 64.5,29.5
parent: 2
type: Transform
- - uid: 25260
+ - uid: 25279
components:
- pos: 64.5,28.5
parent: 2
type: Transform
- - uid: 25261
+ - uid: 25280
components:
- pos: -0.5,-77.5
parent: 2
type: Transform
- - uid: 25262
+ - uid: 25281
components:
- pos: 72.5,36.5
parent: 2
type: Transform
- - uid: 25263
+ - uid: 25282
components:
- pos: 73.5,36.5
parent: 2
type: Transform
- - uid: 25264
+ - uid: 25283
components:
- pos: 71.5,36.5
parent: 2
type: Transform
- - uid: 25265
+ - uid: 25284
components:
- rot: -1.5707963267948966 rad
pos: -11.5,37.5
parent: 2
type: Transform
- - uid: 25266
+ - uid: 25285
components:
- rot: -1.5707963267948966 rad
pos: -12.5,37.5
parent: 2
type: Transform
- - uid: 25267
+ - uid: 25286
components:
- rot: 3.141592653589793 rad
pos: 37.5,51.5
parent: 2
type: Transform
- - uid: 25268
+ - uid: 25287
components:
- rot: 3.141592653589793 rad
pos: 38.5,51.5
parent: 2
type: Transform
- - uid: 25269
+ - uid: 25288
components:
- pos: -2.5,43.5
parent: 2
type: Transform
- - uid: 25270
+ - uid: 25289
components:
- rot: 1.5707963267948966 rad
pos: -9.5,41.5
parent: 2
type: Transform
- - uid: 25271
+ - uid: 25290
components:
- rot: 1.5707963267948966 rad
pos: -8.5,41.5
parent: 2
type: Transform
- - uid: 25272
+ - uid: 25291
components:
- pos: -10.5,41.5
parent: 2
type: Transform
- - uid: 25273
+ - uid: 25292
components:
- pos: -20.5,47.5
parent: 2
type: Transform
- - uid: 25274
+ - uid: 25293
components:
- pos: -21.5,47.5
parent: 2
type: Transform
- - uid: 25275
+ - uid: 25294
components:
- pos: -16.5,24.5
parent: 2
type: Transform
- - uid: 25276
+ - uid: 25295
components:
- pos: -16.5,23.5
parent: 2
type: Transform
- - uid: 25277
+ - uid: 25296
components:
- pos: 30.5,47.5
parent: 2
type: Transform
- - uid: 25278
+ - uid: 25297
components:
- pos: 30.5,46.5
parent: 2
type: Transform
- - uid: 25279
+ - uid: 25298
components:
- rot: 3.141592653589793 rad
pos: -55.5,-48.5
parent: 2
type: Transform
- - uid: 25280
+ - uid: 25299
components:
- rot: 3.141592653589793 rad
pos: -55.5,-49.5
parent: 2
type: Transform
- - uid: 25281
+ - uid: 25300
components:
- pos: -22.5,-100.5
parent: 2
type: Transform
- - uid: 25282
+ - uid: 25301
components:
- pos: -14.5,-96.5
parent: 2
type: Transform
- - uid: 25283
+ - uid: 25302
components:
- pos: -15.5,-96.5
parent: 2
type: Transform
- - uid: 25284
+ - uid: 25303
components:
- pos: -30.5,-98.5
parent: 2
type: Transform
- - uid: 25285
+ - uid: 25304
components:
- pos: -29.5,-98.5
parent: 2
type: Transform
- - uid: 25286
+ - uid: 25305
components:
- pos: -21.5,-100.5
parent: 2
type: Transform
- - uid: 25287
+ - uid: 25306
components:
- pos: -23.5,-100.5
parent: 2
type: Transform
- - uid: 25288
+ - uid: 25307
components:
- pos: -10.5,-83.5
parent: 2
type: Transform
- - uid: 25289
+ - uid: 25308
components:
- pos: -4.5,-85.5
parent: 2
type: Transform
- - uid: 25290
+ - uid: 25309
components:
- pos: -12.5,-84.5
parent: 2
type: Transform
- - uid: 25291
+ - uid: 25310
components:
- pos: -13.5,-88.5
parent: 2
type: Transform
- - uid: 25292
+ - uid: 25311
components:
- pos: -38.5,-97.5
parent: 2
type: Transform
- - uid: 25293
+ - uid: 25312
components:
- pos: -38.5,-98.5
parent: 2
type: Transform
- - uid: 25294
+ - uid: 25313
components:
- rot: 3.141592653589793 rad
pos: -70.5,-28.5
parent: 2
type: Transform
- - uid: 25295
+ - uid: 25314
components:
- rot: 3.141592653589793 rad
pos: -71.5,-28.5
parent: 2
type: Transform
- - uid: 25296
+ - uid: 25315
components:
- pos: 69.5,-48.5
parent: 2
type: Transform
- - uid: 25297
+ - uid: 25316
components:
- pos: 77.5,-44.5
parent: 2
type: Transform
- - uid: 25298
+ - uid: 25317
components:
- pos: 77.5,-43.5
parent: 2
type: Transform
- - uid: 25299
+ - uid: 25318
components:
- pos: 76.5,-43.5
parent: 2
type: Transform
- - uid: 25300
+ - uid: 25319
components:
- pos: 73.5,-49.5
parent: 2
type: Transform
- - uid: 25301
+ - uid: 25320
components:
- pos: 73.5,-48.5
parent: 2
type: Transform
- - uid: 25302
+ - uid: 25321
components:
- rot: -1.5707963267948966 rad
pos: 22.5,-47.5
parent: 2
type: Transform
- - uid: 25303
+ - uid: 25322
components:
- rot: 3.141592653589793 rad
pos: 6.5,-57.5
parent: 2
type: Transform
- - uid: 25304
+ - uid: 25323
components:
- rot: 1.5707963267948966 rad
pos: -16.5,-21.5
parent: 2
type: Transform
- - uid: 25305
+ - uid: 25324
components:
- rot: -1.5707963267948966 rad
pos: -15.5,-23.5
parent: 2
type: Transform
- - uid: 25306
+ - uid: 25325
components:
- pos: 53.5,-67.5
parent: 2
type: Transform
- - uid: 25307
+ - uid: 25326
components:
- rot: 3.141592653589793 rad
pos: 63.5,-36.5
parent: 2
type: Transform
- - uid: 25308
+ - uid: 25327
components:
- pos: 59.5,-29.5
parent: 2
type: Transform
- - uid: 25309
+ - uid: 25328
components:
- pos: 53.5,-65.5
parent: 2
type: Transform
- - uid: 25310
+ - uid: 25329
components:
- rot: 3.141592653589793 rad
pos: 58.5,-37.5
parent: 2
type: Transform
- - uid: 25311
+ - uid: 25330
components:
- rot: 3.141592653589793 rad
pos: 57.5,-37.5
parent: 2
type: Transform
- - uid: 25312
+ - uid: 25331
components:
- rot: 3.141592653589793 rad
pos: 53.5,-28.5
parent: 2
type: Transform
- - uid: 25313
+ - uid: 25332
components:
- rot: 3.141592653589793 rad
pos: 54.5,-28.5
parent: 2
type: Transform
- - uid: 25314
+ - uid: 25333
components:
- rot: 3.141592653589793 rad
pos: 70.5,-65.5
parent: 2
type: Transform
- - uid: 25315
+ - uid: 25334
components:
- rot: 3.141592653589793 rad
pos: 70.5,-66.5
parent: 2
type: Transform
- - uid: 25316
+ - uid: 25335
components:
- rot: 3.141592653589793 rad
pos: 69.5,-66.5
parent: 2
type: Transform
- - uid: 25317
+ - uid: 25336
components:
- rot: 3.141592653589793 rad
pos: 43.5,-62.5
parent: 2
type: Transform
- - uid: 25318
+ - uid: 25337
components:
- pos: 67.5,-64.5
parent: 2
type: Transform
- - uid: 25319
+ - uid: 25338
components:
- pos: 67.5,-65.5
parent: 2
type: Transform
- - uid: 25320
+ - uid: 25339
components:
- pos: 45.5,-63.5
parent: 2
type: Transform
- - uid: 25321
+ - uid: 25340
components:
- pos: 46.5,-63.5
parent: 2
type: Transform
- - uid: 25322
+ - uid: 25341
components:
- pos: 39.5,-35.5
parent: 2
type: Transform
- - uid: 25323
+ - uid: 25342
components:
- pos: 38.5,-35.5
parent: 2
type: Transform
- - uid: 25324
+ - uid: 25343
components:
- pos: -37.5,-8.5
parent: 2
type: Transform
- - uid: 25325
+ - uid: 25344
components:
- rot: 3.141592653589793 rad
pos: -25.5,-6.5
parent: 2
type: Transform
- - uid: 25326
+ - uid: 25345
components:
- rot: -1.5707963267948966 rad
pos: -36.5,18.5
parent: 2
type: Transform
- - uid: 25327
+ - uid: 25346
components:
- pos: -12.5,-18.5
parent: 2
type: Transform
- - uid: 25328
+ - uid: 25347
components:
- rot: -1.5707963267948966 rad
pos: -26.5,-6.5
parent: 2
type: Transform
- - uid: 25329
+ - uid: 25348
components:
- pos: -26.5,-61.5
parent: 2
type: Transform
- - uid: 25330
+ - uid: 25349
components:
- pos: -22.5,-57.5
parent: 2
type: Transform
- - uid: 25331
+ - uid: 25350
components:
- pos: -22.5,-58.5
parent: 2
type: Transform
- - uid: 25332
+ - uid: 25351
components:
- pos: -26.5,-59.5
parent: 2
type: Transform
- - uid: 25333
+ - uid: 25352
components:
- - rot: -1.5707963267948966 rad
- pos: 7.5,-47.5
+ - pos: 9.5,-45.5
parent: 2
type: Transform
- - uid: 25334
+ - uid: 25353
components:
- rot: 3.141592653589793 rad
pos: 25.5,-68.5
parent: 2
type: Transform
- - uid: 25335
+ - uid: 25354
components:
- rot: 3.141592653589793 rad
pos: 50.5,-72.5
parent: 2
type: Transform
- - uid: 25336
+ - uid: 25355
components:
- rot: -1.5707963267948966 rad
pos: 4.5,-75.5
parent: 2
type: Transform
- - uid: 25337
+ - uid: 25356
components:
- rot: -1.5707963267948966 rad
pos: 3.5,-75.5
parent: 2
type: Transform
- - uid: 25338
+ - uid: 25357
components:
- rot: -1.5707963267948966 rad
pos: 2.5,-75.5
parent: 2
type: Transform
- - uid: 25339
+ - uid: 25358
components:
- rot: 1.5707963267948966 rad
pos: -47.5,38.5
parent: 2
type: Transform
- - uid: 25340
+ - uid: 25359
components:
- rot: 1.5707963267948966 rad
pos: -47.5,39.5
parent: 2
type: Transform
- - uid: 25341
+ - uid: 25360
components:
- rot: 1.5707963267948966 rad
pos: -47.5,40.5
parent: 2
type: Transform
- - uid: 25342
+ - uid: 25361
components:
- pos: -2.5,10.5
parent: 2
type: Transform
- - uid: 25343
+ - uid: 25362
components:
- pos: -72.5,-39.5
parent: 2
type: Transform
- - uid: 25344
+ - uid: 25363
components:
- pos: -73.5,-39.5
parent: 2
type: Transform
- - uid: 25345
+ - uid: 25364
components:
- rot: -1.5707963267948966 rad
pos: -66.5,-43.5
parent: 2
type: Transform
- - uid: 25346
+ - uid: 25365
components:
- rot: -1.5707963267948966 rad
pos: -64.5,-34.5
parent: 2
type: Transform
- - uid: 25347
+ - uid: 25366
components:
- rot: -1.5707963267948966 rad
pos: -65.5,-34.5
parent: 2
type: Transform
- - uid: 25348
+ - uid: 25367
components:
- rot: -1.5707963267948966 rad
pos: 29.5,-34.5
parent: 2
type: Transform
- - uid: 25349
+ - uid: 25368
components:
- rot: -1.5707963267948966 rad
pos: 29.5,-35.5
parent: 2
type: Transform
- - uid: 25350
+ - uid: 25369
components:
- pos: -0.5,-8.5
parent: 2
type: Transform
- - uid: 25351
+ - uid: 25370
components:
- pos: 5.5,-13.5
parent: 2
type: Transform
- - uid: 25352
+ - uid: 25371
components:
- pos: 4.5,15.5
parent: 2
type: Transform
- - uid: 25353
+ - uid: 25372
components:
- rot: -1.5707963267948966 rad
pos: 56.5,-40.5
@@ -166345,223 +166465,223 @@ entities:
type: Transform
- proto: TableCarpet
entities:
- - uid: 25354
+ - uid: 25373
components:
- pos: 23.5,-35.5
parent: 2
type: Transform
- - uid: 25355
+ - uid: 25374
components:
- rot: -1.5707963267948966 rad
pos: 10.5,-7.5
parent: 2
type: Transform
- - uid: 25356
+ - uid: 25375
components:
- rot: -1.5707963267948966 rad
pos: 10.5,-6.5
parent: 2
type: Transform
- - uid: 25357
+ - uid: 25376
components:
- rot: -1.5707963267948966 rad
pos: 9.5,-7.5
parent: 2
type: Transform
- - uid: 25358
+ - uid: 25377
components:
- rot: -1.5707963267948966 rad
pos: 9.5,-6.5
parent: 2
type: Transform
- - uid: 25359
+ - uid: 25378
components:
- pos: -24.5,34.5
parent: 2
type: Transform
- - uid: 25360
+ - uid: 25379
components:
- rot: 3.141592653589793 rad
pos: -1.5,31.5
parent: 2
type: Transform
- - uid: 25361
+ - uid: 25380
components:
- rot: 3.141592653589793 rad
pos: -0.5,31.5
parent: 2
type: Transform
- - uid: 25362
+ - uid: 25381
components:
- rot: 3.141592653589793 rad
pos: -0.5,30.5
parent: 2
type: Transform
- - uid: 25363
+ - uid: 25382
components:
- rot: 3.141592653589793 rad
pos: -1.5,30.5
parent: 2
type: Transform
- - uid: 25364
+ - uid: 25383
components:
- pos: 53.5,29.5
parent: 2
type: Transform
- - uid: 25365
+ - uid: 25384
components:
- pos: 53.5,28.5
parent: 2
type: Transform
- - uid: 25366
+ - uid: 25385
components:
- pos: 54.5,29.5
parent: 2
type: Transform
- - uid: 25367
+ - uid: 25386
components:
- pos: 54.5,28.5
parent: 2
type: Transform
- - uid: 25368
+ - uid: 25387
components:
- pos: 8.5,32.5
parent: 2
type: Transform
- - uid: 25369
+ - uid: 25388
components:
- rot: 3.141592653589793 rad
pos: -18.5,62.5
parent: 2
type: Transform
- - uid: 25370
+ - uid: 25389
components:
- rot: 3.141592653589793 rad
pos: -18.5,61.5
parent: 2
type: Transform
- - uid: 25371
+ - uid: 25390
components:
- rot: 3.141592653589793 rad
pos: -17.5,62.5
parent: 2
type: Transform
- - uid: 25372
+ - uid: 25391
components:
- rot: 3.141592653589793 rad
pos: -17.5,61.5
parent: 2
type: Transform
- - uid: 25373
+ - uid: 25392
components:
- rot: 3.141592653589793 rad
pos: -16.5,62.5
parent: 2
type: Transform
- - uid: 25374
+ - uid: 25393
components:
- rot: 3.141592653589793 rad
pos: -16.5,61.5
parent: 2
type: Transform
- - uid: 25375
+ - uid: 25394
components:
- pos: 37.5,45.5
parent: 2
type: Transform
- - uid: 25376
+ - uid: 25395
components:
- pos: 38.5,45.5
parent: 2
type: Transform
- - uid: 25377
+ - uid: 25396
components:
- pos: 38.5,46.5
parent: 2
type: Transform
- - uid: 25378
+ - uid: 25397
components:
- pos: 37.5,46.5
parent: 2
type: Transform
- proto: TableCounterMetal
entities:
- - uid: 25379
+ - uid: 25398
components:
- pos: 32.5,30.5
parent: 2
type: Transform
- - uid: 25380
+ - uid: 25399
components:
- pos: 32.5,29.5
parent: 2
type: Transform
- - uid: 25381
+ - uid: 25400
components:
- pos: 0.5,-67.5
parent: 2
type: Transform
- - uid: 25382
+ - uid: 25401
components:
- pos: -3.5,5.5
parent: 2
type: Transform
- - uid: 25383
+ - uid: 25402
components:
- pos: 0.5,-64.5
parent: 2
type: Transform
- - uid: 25384
+ - uid: 25403
components:
- pos: 0.5,-65.5
parent: 2
type: Transform
- - uid: 25385
+ - uid: 25404
components:
- pos: 0.5,-66.5
parent: 2
type: Transform
- - uid: 25386
+ - uid: 25405
components:
- pos: -3.5,-64.5
parent: 2
type: Transform
- - uid: 25387
+ - uid: 25406
components:
- pos: -3.5,-65.5
parent: 2
type: Transform
- - uid: 25388
+ - uid: 25407
components:
- pos: -3.5,-66.5
parent: 2
type: Transform
- - uid: 25389
+ - uid: 25408
components:
- pos: -16.5,-77.5
parent: 2
type: Transform
- - uid: 25390
+ - uid: 25409
components:
- pos: -4.5,5.5
parent: 2
type: Transform
- - uid: 25391
+ - uid: 25410
components:
- pos: 4.5,11.5
parent: 2
type: Transform
- - uid: 25392
+ - uid: 25411
components:
- pos: 5.5,11.5
parent: 2
type: Transform
- - uid: 25393
+ - uid: 25412
components:
- pos: 0.5,-63.5
parent: 2
type: Transform
- - uid: 25394
+ - uid: 25413
components:
- rot: 1.5707963267948966 rad
pos: -21.5,-34.5
@@ -166569,69 +166689,69 @@ entities:
type: Transform
- proto: TableCounterWood
entities:
- - uid: 25395
+ - uid: 25414
components:
- pos: 3.5,-35.5
parent: 2
type: Transform
- - uid: 25396
+ - uid: 25415
components:
- rot: -1.5707963267948966 rad
pos: 37.5,-5.5
parent: 2
type: Transform
- - uid: 25397
+ - uid: 25416
components:
- pos: 18.5,15.5
parent: 2
type: Transform
- - uid: 25398
+ - uid: 25417
components:
- pos: 17.5,15.5
parent: 2
type: Transform
- - uid: 25399
+ - uid: 25418
components:
- rot: -1.5707963267948966 rad
pos: 37.5,-4.5
parent: 2
type: Transform
- - uid: 25400
+ - uid: 25419
components:
- rot: -1.5707963267948966 rad
pos: 37.5,-3.5
parent: 2
type: Transform
- - uid: 25401
+ - uid: 25420
components:
- rot: -1.5707963267948966 rad
pos: 37.5,-2.5
parent: 2
type: Transform
- - uid: 25402
+ - uid: 25421
components:
- rot: -1.5707963267948966 rad
pos: 38.5,-2.5
parent: 2
type: Transform
- - uid: 25403
+ - uid: 25422
components:
- rot: -1.5707963267948966 rad
pos: 39.5,-2.5
parent: 2
type: Transform
- - uid: 25404
+ - uid: 25423
components:
- pos: 57.5,32.5
parent: 2
type: Transform
- - uid: 25405
+ - uid: 25424
components:
- rot: 3.141592653589793 rad
pos: -10.5,-95.5
parent: 2
type: Transform
- - uid: 25406
+ - uid: 25425
components:
- rot: 3.141592653589793 rad
pos: -9.5,-95.5
@@ -166639,100 +166759,100 @@ entities:
type: Transform
- proto: TableFrame
entities:
- - uid: 25407
+ - uid: 25426
components:
- pos: -25.5,-99.5
parent: 2
type: Transform
- - uid: 25408
+ - uid: 25427
components:
- pos: -33.5,-98.5
parent: 2
type: Transform
- - uid: 25409
+ - uid: 25428
components:
- pos: -34.5,-98.5
parent: 2
type: Transform
- proto: TableGlass
entities:
- - uid: 25410
+ - uid: 25429
components:
- rot: -1.5707963267948966 rad
pos: 30.5,4.5
parent: 2
type: Transform
- - uid: 25411
+ - uid: 25430
components:
- rot: -1.5707963267948966 rad
pos: 29.5,4.5
parent: 2
type: Transform
- - uid: 25412
+ - uid: 25431
components:
- pos: -25.5,55.5
parent: 2
type: Transform
- - uid: 25413
+ - uid: 25432
components:
- rot: 1.5707963267948966 rad
pos: 63.5,-33.5
parent: 2
type: Transform
- - uid: 25414
+ - uid: 25433
components:
- rot: 1.5707963267948966 rad
pos: 62.5,-33.5
parent: 2
type: Transform
- - uid: 25415
+ - uid: 25434
components:
- pos: 15.5,-79.5
parent: 2
type: Transform
- - uid: 25416
+ - uid: 25435
components:
- rot: -1.5707963267948966 rad
pos: 15.5,-87.5
parent: 2
type: Transform
- - uid: 25417
+ - uid: 25436
components:
- rot: 3.141592653589793 rad
pos: 26.5,-81.5
parent: 2
type: Transform
- - uid: 25418
+ - uid: 25437
components:
- rot: 1.5707963267948966 rad
pos: 38.5,63.5
parent: 2
type: Transform
- - uid: 25419
+ - uid: 25438
components:
- rot: 1.5707963267948966 rad
pos: 39.5,63.5
parent: 2
type: Transform
- - uid: 25420
+ - uid: 25439
components:
- rot: 1.5707963267948966 rad
pos: 40.5,63.5
parent: 2
type: Transform
- - uid: 25421
+ - uid: 25440
components:
- rot: 1.5707963267948966 rad
pos: 39.5,63.5
parent: 2
type: Transform
- - uid: 25422
+ - uid: 25441
components:
- rot: 1.5707963267948966 rad
pos: 39.5,64.5
parent: 2
type: Transform
- - uid: 25423
+ - uid: 25442
components:
- rot: 1.5707963267948966 rad
pos: 39.5,62.5
@@ -166740,1855 +166860,1850 @@ entities:
type: Transform
- proto: TableReinforced
entities:
- - uid: 25424
+ - uid: 25443
components:
- rot: -1.5707963267948966 rad
pos: -51.5,-86.5
parent: 2
type: Transform
- - uid: 25425
+ - uid: 25444
components:
- pos: 53.5,-43.5
parent: 2
type: Transform
- - uid: 25426
+ - uid: 25445
components:
- pos: 51.5,-41.5
parent: 2
type: Transform
- - uid: 25427
+ - uid: 25446
components:
- pos: 51.5,-43.5
parent: 2
type: Transform
- - uid: 25428
+ - uid: 25447
components:
- pos: 24.5,23.5
parent: 2
type: Transform
- - uid: 25429
+ - uid: 25448
components:
- rot: 3.141592653589793 rad
pos: -14.5,-35.5
parent: 2
type: Transform
- - uid: 25430
+ - uid: 25449
components:
- rot: 3.141592653589793 rad
pos: 48.5,-30.5
parent: 2
type: Transform
- - uid: 25431
+ - uid: 25450
components:
- pos: 2.5,4.5
parent: 2
type: Transform
- - uid: 25432
+ - uid: 25451
components:
- pos: -8.5,4.5
parent: 2
type: Transform
- - uid: 25433
+ - uid: 25452
components:
- rot: -1.5707963267948966 rad
pos: 45.5,-26.5
parent: 2
type: Transform
- - uid: 25434
+ - uid: 25453
components:
- pos: 26.5,32.5
parent: 2
type: Transform
- - uid: 25435
+ - uid: 25454
components:
- pos: -6.5,4.5
parent: 2
type: Transform
- - uid: 25436
+ - uid: 25455
components:
- pos: -28.5,-9.5
parent: 2
type: Transform
- - uid: 25437
+ - uid: 25456
components:
- pos: 1.5,-48.5
parent: 2
type: Transform
- - uid: 25438
+ - uid: 25457
components:
- rot: 1.5707963267948966 rad
pos: 25.5,19.5
parent: 2
type: Transform
- - uid: 25439
+ - uid: 25458
components:
- rot: 3.141592653589793 rad
pos: 26.5,-21.5
parent: 2
type: Transform
- - uid: 25440
+ - uid: 25459
components:
- pos: 37.5,49.5
parent: 2
type: Transform
- - uid: 25441
+ - uid: 25460
components:
- rot: 3.141592653589793 rad
pos: 48.5,-21.5
parent: 2
type: Transform
- - uid: 25442
+ - uid: 25461
components:
- pos: 27.5,32.5
parent: 2
type: Transform
- - uid: 25443
+ - uid: 25462
components:
- rot: -1.5707963267948966 rad
pos: 32.5,-22.5
parent: 2
type: Transform
- - uid: 25444
+ - uid: 25463
components:
- rot: 3.141592653589793 rad
pos: 47.5,-30.5
parent: 2
type: Transform
- - uid: 25445
+ - uid: 25464
components:
- rot: -1.5707963267948966 rad
pos: 36.5,19.5
parent: 2
type: Transform
- - uid: 25446
+ - uid: 25465
components:
- pos: -23.5,-87.5
parent: 2
type: Transform
- - uid: 25447
+ - uid: 25466
components:
- pos: -7.5,4.5
parent: 2
type: Transform
- - uid: 25448
+ - uid: 25467
components:
- rot: 1.5707963267948966 rad
pos: 21.5,-44.5
parent: 2
type: Transform
- - uid: 25449
+ - uid: 25468
components:
- pos: 0.5,4.5
parent: 2
type: Transform
- - uid: 25450
+ - uid: 25469
components:
- rot: 1.5707963267948966 rad
pos: 24.5,19.5
parent: 2
type: Transform
- - uid: 25451
+ - uid: 25470
components:
- rot: -1.5707963267948966 rad
pos: 32.5,-20.5
parent: 2
type: Transform
- - uid: 25452
+ - uid: 25471
components:
- rot: -1.5707963267948966 rad
pos: 31.5,-20.5
parent: 2
type: Transform
- - uid: 25453
+ - uid: 25472
components:
- rot: -1.5707963267948966 rad
pos: 32.5,-21.5
parent: 2
type: Transform
- - uid: 25454
+ - uid: 25473
components:
- rot: -1.5707963267948966 rad
pos: 32.5,-22.5
parent: 2
type: Transform
- - uid: 25455
+ - uid: 25474
components:
- rot: -1.5707963267948966 rad
pos: 19.5,-20.5
parent: 2
type: Transform
- - uid: 25456
+ - uid: 25475
components:
- rot: -1.5707963267948966 rad
pos: 18.5,-20.5
parent: 2
type: Transform
- - uid: 25457
+ - uid: 25476
components:
- rot: -1.5707963267948966 rad
pos: 18.5,-21.5
parent: 2
type: Transform
- - uid: 25458
+ - uid: 25477
components:
- pos: 7.5,7.5
parent: 2
type: Transform
- - uid: 25459
+ - uid: 25478
components:
- rot: 1.5707963267948966 rad
pos: 22.5,-21.5
parent: 2
type: Transform
- - uid: 25460
+ - uid: 25479
components:
- pos: 1.5,-46.5
parent: 2
type: Transform
- - uid: 25461
+ - uid: 25480
components:
- pos: 28.5,32.5
parent: 2
type: Transform
- - uid: 25462
+ - uid: 25481
components:
- pos: 30.5,32.5
parent: 2
type: Transform
- - uid: 25463
+ - uid: 25482
components:
- pos: 31.5,32.5
parent: 2
type: Transform
- - uid: 25464
+ - uid: 25483
components:
- pos: 18.5,-22.5
parent: 2
type: Transform
- - uid: 25465
+ - uid: 25484
components:
- pos: 1.5,4.5
parent: 2
type: Transform
- - uid: 25466
+ - uid: 25485
components:
- rot: 3.141592653589793 rad
pos: 48.5,-28.5
parent: 2
type: Transform
- - uid: 25467
+ - uid: 25486
components:
- rot: 1.5707963267948966 rad
pos: 26.5,19.5
parent: 2
type: Transform
- - uid: 25468
+ - uid: 25487
components:
- rot: -1.5707963267948966 rad
pos: -26.5,-12.5
parent: 2
type: Transform
- - uid: 25469
+ - uid: 25488
components:
- pos: 47.5,49.5
parent: 2
type: Transform
- - uid: 25470
+ - uid: 25489
components:
- pos: 7.5,8.5
parent: 2
type: Transform
- - uid: 25471
+ - uid: 25490
components:
- pos: 39.5,49.5
parent: 2
type: Transform
- - uid: 25472
+ - uid: 25491
components:
- pos: 38.5,49.5
parent: 2
type: Transform
- - uid: 25473
+ - uid: 25492
components:
- rot: 3.141592653589793 rad
pos: 48.5,-22.5
parent: 2
type: Transform
- - uid: 25474
+ - uid: 25493
components:
- rot: 3.141592653589793 rad
pos: 48.5,-24.5
parent: 2
type: Transform
- - uid: 25475
+ - uid: 25494
components:
- pos: 36.5,49.5
parent: 2
type: Transform
- - uid: 25476
+ - uid: 25495
components:
- rot: 3.141592653589793 rad
pos: 48.5,-29.5
parent: 2
type: Transform
- - uid: 25477
+ - uid: 25496
components:
- rot: 3.141592653589793 rad
pos: 47.5,-27.5
parent: 2
type: Transform
- - uid: 25478
+ - uid: 25497
components:
- rot: 3.141592653589793 rad
pos: 47.5,-21.5
parent: 2
type: Transform
- - uid: 25479
+ - uid: 25498
components:
- pos: 32.5,32.5
parent: 2
type: Transform
- - uid: 25480
+ - uid: 25499
components:
- rot: 3.141592653589793 rad
pos: 3.5,-51.5
parent: 2
type: Transform
- - uid: 25481
+ - uid: 25500
components:
- rot: 3.141592653589793 rad
pos: 28.5,-21.5
parent: 2
type: Transform
- - uid: 25482
+ - uid: 25501
components:
- pos: 7.5,9.5
parent: 2
type: Transform
- - uid: 25483
+ - uid: 25502
components:
- rot: 3.141592653589793 rad
pos: 48.5,-23.5
parent: 2
type: Transform
- - uid: 25484
+ - uid: 25503
components:
- rot: 3.141592653589793 rad
pos: 48.5,-27.5
parent: 2
type: Transform
- - uid: 25485
+ - uid: 25504
components:
- pos: -34.5,23.5
parent: 2
type: Transform
- - uid: 25486
+ - uid: 25505
components:
- rot: 3.141592653589793 rad
pos: 24.5,-21.5
parent: 2
type: Transform
- - uid: 25487
+ - uid: 25506
components:
- rot: -1.5707963267948966 rad
pos: 44.5,-26.5
parent: 2
type: Transform
- - uid: 25488
+ - uid: 25507
components:
- rot: -1.5707963267948966 rad
pos: 47.5,-25.5
parent: 2
type: Transform
- - uid: 25489
+ - uid: 25508
components:
- rot: -1.5707963267948966 rad
pos: 48.5,-25.5
parent: 2
type: Transform
- - uid: 25490
+ - uid: 25509
components:
- pos: -22.5,-87.5
parent: 2
type: Transform
- - uid: 25491
+ - uid: 25510
components:
- pos: 22.5,23.5
parent: 2
type: Transform
- - uid: 25492
+ - uid: 25511
components:
- pos: 25.5,23.5
parent: 2
type: Transform
- - uid: 25493
+ - uid: 25512
components:
- pos: -11.5,43.5
parent: 2
type: Transform
- - uid: 25494
+ - uid: 25513
components:
- rot: 1.5707963267948966 rad
pos: -9.5,43.5
parent: 2
type: Transform
- - uid: 25495
+ - uid: 25514
components:
- rot: 1.5707963267948966 rad
pos: 48.5,6.5
parent: 2
type: Transform
- - uid: 25496
+ - uid: 25515
components:
- rot: -1.5707963267948966 rad
pos: 36.5,17.5
parent: 2
type: Transform
- - uid: 25497
+ - uid: 25516
components:
- pos: -17.5,-22.5
parent: 2
type: Transform
- - uid: 25498
+ - uid: 25517
components:
- pos: -17.5,-23.5
parent: 2
type: Transform
- - uid: 25499
+ - uid: 25518
components:
- pos: 42.5,-40.5
parent: 2
type: Transform
- - uid: 25500
+ - uid: 25519
components:
- pos: 43.5,-40.5
parent: 2
type: Transform
- - uid: 25501
+ - uid: 25520
components:
- pos: -27.5,-9.5
parent: 2
type: Transform
- - uid: 25502
+ - uid: 25521
components:
- pos: -22.5,-8.5
parent: 2
type: Transform
- - uid: 25503
+ - uid: 25522
components:
- pos: -23.5,-8.5
parent: 2
type: Transform
- - uid: 25504
+ - uid: 25523
components:
- pos: -27.5,-10.5
parent: 2
type: Transform
- - uid: 25505
+ - uid: 25524
components:
- pos: -27.5,-11.5
parent: 2
type: Transform
- - uid: 25506
+ - uid: 25525
components:
- pos: 57.5,-47.5
parent: 2
type: Transform
- - uid: 25507
+ - uid: 25526
components:
- rot: 1.5707963267948966 rad
pos: 22.5,-44.5
parent: 2
type: Transform
- - uid: 25508
+ - uid: 25527
components:
- pos: -25.5,-35.5
parent: 2
type: Transform
- - uid: 25509
+ - uid: 25528
components:
- pos: -25.5,-36.5
parent: 2
type: Transform
- - uid: 25510
+ - uid: 25529
components:
- pos: -24.5,-36.5
parent: 2
type: Transform
- - uid: 25511
+ - uid: 25530
components:
- pos: -23.5,-36.5
parent: 2
type: Transform
- - uid: 25512
+ - uid: 25531
components:
- pos: -36.5,-33.5
parent: 2
type: Transform
- - uid: 25513
+ - uid: 25532
components:
- pos: -36.5,-32.5
parent: 2
type: Transform
- - uid: 25514
+ - uid: 25533
components:
- pos: -37.5,-32.5
parent: 2
type: Transform
- - uid: 25515
+ - uid: 25534
components:
- pos: -38.5,-32.5
parent: 2
type: Transform
- - uid: 25516
+ - uid: 25535
components:
- pos: -39.5,-32.5
parent: 2
type: Transform
- - uid: 25517
+ - uid: 25536
components:
- pos: -58.5,-25.5
parent: 2
type: Transform
- - uid: 25518
+ - uid: 25537
components:
- pos: -57.5,-25.5
parent: 2
type: Transform
- - uid: 25519
+ - uid: 25538
components:
- pos: -56.5,-25.5
parent: 2
type: Transform
- - uid: 25520
+ - uid: 25539
components:
- pos: -55.5,-25.5
parent: 2
type: Transform
- - uid: 25521
+ - uid: 25540
components:
- pos: -54.5,-25.5
parent: 2
type: Transform
- - uid: 25522
+ - uid: 25541
components:
- pos: -15.5,12.5
parent: 2
type: Transform
- - uid: 25523
+ - uid: 25542
components:
- rot: -1.5707963267948966 rad
pos: -17.5,25.5
parent: 2
type: Transform
- - uid: 25524
+ - uid: 25543
components:
- rot: 3.141592653589793 rad
pos: -26.5,22.5
parent: 2
type: Transform
- - uid: 25525
+ - uid: 25544
components:
- pos: 17.5,32.5
parent: 2
type: Transform
- - uid: 25526
+ - uid: 25545
components:
- pos: 17.5,31.5
parent: 2
type: Transform
- - uid: 25527
+ - uid: 25546
components:
- pos: -34.5,24.5
parent: 2
type: Transform
- - uid: 25528
+ - uid: 25547
components:
- pos: -14.5,12.5
parent: 2
type: Transform
- - uid: 25529
+ - uid: 25548
components:
- pos: -13.5,12.5
parent: 2
type: Transform
- - uid: 25530
+ - uid: 25549
components:
- pos: -16.5,12.5
parent: 2
type: Transform
- - uid: 25531
+ - uid: 25550
components:
- pos: -10.5,-61.5
parent: 2
type: Transform
- - uid: 25532
+ - uid: 25551
components:
- pos: 0.5,-61.5
parent: 2
type: Transform
- - uid: 25533
+ - uid: 25552
components:
- pos: -0.5,-61.5
parent: 2
type: Transform
- - uid: 25534
+ - uid: 25553
components:
- pos: -11.5,-61.5
parent: 2
type: Transform
- - uid: 25535
+ - uid: 25554
components:
- pos: -16.5,-61.5
parent: 2
type: Transform
- - uid: 25536
+ - uid: 25555
components:
- pos: -17.5,-61.5
parent: 2
type: Transform
- - uid: 25537
+ - uid: 25556
components:
- rot: 3.141592653589793 rad
pos: -15.5,-35.5
parent: 2
type: Transform
- - uid: 25538
+ - uid: 25557
components:
- rot: 3.141592653589793 rad
pos: -16.5,-35.5
parent: 2
type: Transform
- - uid: 25539
+ - uid: 25558
components:
- rot: 1.5707963267948966 rad
pos: -10.5,43.5
parent: 2
type: Transform
- - uid: 25540
+ - uid: 25559
components:
- pos: -20.5,49.5
parent: 2
type: Transform
- - uid: 25541
+ - uid: 25560
components:
- rot: 3.141592653589793 rad
pos: -15.5,65.5
parent: 2
type: Transform
- - uid: 25542
+ - uid: 25561
components:
- rot: 3.141592653589793 rad
pos: -16.5,65.5
parent: 2
type: Transform
- - uid: 25543
+ - uid: 25562
components:
- pos: -21.5,49.5
parent: 2
type: Transform
- - uid: 25544
+ - uid: 25563
components:
- rot: 3.141592653589793 rad
pos: -19.5,43.5
parent: 2
type: Transform
- - uid: 25545
+ - uid: 25564
components:
- rot: 3.141592653589793 rad
pos: -19.5,41.5
parent: 2
type: Transform
- - uid: 25546
+ - uid: 25565
components:
- rot: 3.141592653589793 rad
pos: -19.5,42.5
parent: 2
type: Transform
- - uid: 25547
+ - uid: 25566
components:
- pos: 48.5,50.5
parent: 2
type: Transform
- - uid: 25548
+ - uid: 25567
components:
- pos: 47.5,50.5
parent: 2
type: Transform
- - uid: 25549
+ - uid: 25568
components:
- pos: 46.5,49.5
parent: 2
type: Transform
- - uid: 25550
+ - uid: 25569
components:
- pos: 45.5,49.5
parent: 2
type: Transform
- - uid: 25551
+ - uid: 25570
components:
- rot: 3.141592653589793 rad
pos: -9.5,-100.5
parent: 2
type: Transform
- - uid: 25552
+ - uid: 25571
components:
- rot: 1.5707963267948966 rad
pos: 55.5,-67.5
parent: 2
type: Transform
- - uid: 25553
+ - uid: 25572
components:
- pos: 29.5,32.5
parent: 2
type: Transform
- - uid: 25554
+ - uid: 25573
components:
- pos: 65.5,-28.5
parent: 2
type: Transform
- - uid: 25555
+ - uid: 25574
components:
- pos: 65.5,-29.5
parent: 2
type: Transform
- - uid: 25556
+ - uid: 25575
components:
- pos: -7.5,14.5
parent: 2
type: Transform
- - uid: 25557
+ - uid: 25576
components:
- pos: -8.5,14.5
parent: 2
type: Transform
- - uid: 25558
+ - uid: 25577
components:
- rot: 3.141592653589793 rad
pos: 4.5,-3.5
parent: 2
type: Transform
- - uid: 25559
+ - uid: 25578
components:
- rot: -1.5707963267948966 rad
pos: -51.5,-88.5
parent: 2
type: Transform
- - uid: 25560
+ - uid: 25579
components:
- pos: 51.5,-40.5
parent: 2
type: Transform
- - uid: 25561
+ - uid: 25580
components:
- pos: 52.5,-43.5
parent: 2
type: Transform
- - uid: 25562
+ - uid: 25581
components:
- pos: 53.5,-39.5
parent: 2
type: Transform
- - uid: 25563
+ - uid: 25582
components:
- pos: 51.5,-42.5
parent: 2
type: Transform
- - uid: 25564
+ - uid: 25583
components:
- pos: 51.5,-39.5
parent: 2
type: Transform
- - uid: 25565
+ - uid: 25584
components:
- pos: 52.5,-39.5
parent: 2
type: Transform
- proto: TableReinforcedGlass
entities:
- - uid: 25566
+ - uid: 25585
components:
- pos: -30.5,-77.5
parent: 2
type: Transform
- - uid: 25567
+ - uid: 25586
components:
- pos: -30.5,-79.5
parent: 2
type: Transform
- proto: TableWood
entities:
- - uid: 25568
+ - uid: 25587
components:
- pos: -1.5,-6.5
parent: 2
type: Transform
- - uid: 25569
+ - uid: 25588
components:
- rot: -1.5707963267948966 rad
pos: 3.5,-9.5
parent: 2
type: Transform
- - uid: 25570
+ - uid: 25589
components:
- rot: -1.5707963267948966 rad
pos: 3.5,-10.5
parent: 2
type: Transform
- - uid: 25571
+ - uid: 25590
components:
- rot: -1.5707963267948966 rad
pos: 2.5,-19.5
parent: 2
type: Transform
- - uid: 25572
+ - uid: 25591
components:
- rot: -1.5707963267948966 rad
pos: 2.5,-21.5
parent: 2
type: Transform
- - uid: 25573
+ - uid: 25592
components:
- rot: -1.5707963267948966 rad
pos: 2.5,-20.5
parent: 2
type: Transform
- - uid: 25574
+ - uid: 25593
components:
- rot: 1.5707963267948966 rad
pos: 27.5,-37.5
parent: 2
type: Transform
- - uid: 25575
+ - uid: 25594
components:
- rot: 1.5707963267948966 rad
pos: 27.5,-35.5
parent: 2
type: Transform
- - uid: 25576
+ - uid: 25595
components:
- rot: 1.5707963267948966 rad
pos: 21.5,-29.5
parent: 2
type: Transform
- - uid: 25577
+ - uid: 25596
components:
- rot: 1.5707963267948966 rad
pos: 4.5,-7.5
parent: 2
type: Transform
- - uid: 25578
+ - uid: 25597
components:
- pos: -22.5,-54.5
parent: 2
type: Transform
- - uid: 25579
- components:
- - pos: -27.5,46.5
- parent: 2
- type: Transform
- - uid: 25580
+ - uid: 25599
components:
- rot: 3.141592653589793 rad
pos: 5.5,20.5
parent: 2
type: Transform
- - uid: 25581
+ - uid: 25600
components:
- pos: 22.5,10.5
parent: 2
type: Transform
- - uid: 25582
+ - uid: 25601
components:
- pos: -19.5,-56.5
parent: 2
type: Transform
- - uid: 25583
+ - uid: 25602
components:
- rot: -1.5707963267948966 rad
pos: 9.5,-12.5
parent: 2
type: Transform
- - uid: 25584
+ - uid: 25603
components:
- pos: 59.5,-1.5
parent: 2
type: Transform
- - uid: 25585
+ - uid: 25604
components:
- rot: 1.5707963267948966 rad
pos: 22.5,-29.5
parent: 2
type: Transform
- - uid: 25586
+ - uid: 25605
components:
- pos: -4.5,-48.5
parent: 2
type: Transform
- - uid: 25587
+ - uid: 25606
components:
- rot: -1.5707963267948966 rad
pos: 2.5,21.5
parent: 2
type: Transform
- - uid: 25588
+ - uid: 25607
components:
- rot: 1.5707963267948966 rad
pos: 23.5,-29.5
parent: 2
type: Transform
- - uid: 25589
+ - uid: 25608
components:
- pos: 15.5,13.5
parent: 2
type: Transform
- - uid: 25590
+ - uid: 25609
components:
- rot: 1.5707963267948966 rad
pos: 13.5,-34.5
parent: 2
type: Transform
- - uid: 25591
+ - uid: 25610
components:
- pos: -28.5,46.5
parent: 2
type: Transform
- - uid: 25592
+ - uid: 25611
components:
- pos: -20.5,-56.5
parent: 2
type: Transform
- - uid: 25593
+ - uid: 25612
components:
- pos: -18.5,-56.5
parent: 2
type: Transform
- - uid: 25594
+ - uid: 25613
components:
- rot: -1.5707963267948966 rad
pos: 22.5,-28.5
parent: 2
type: Transform
- - uid: 25595
+ - uid: 25614
components:
- pos: 15.5,10.5
parent: 2
type: Transform
- - uid: 25596
+ - uid: 25615
components:
- pos: 15.5,9.5
parent: 2
type: Transform
- - uid: 25597
+ - uid: 25616
components:
- pos: 15.5,12.5
parent: 2
type: Transform
- - uid: 25598
+ - uid: 25617
components:
- pos: 20.5,-12.5
parent: 2
type: Transform
- - uid: 25599
+ - uid: 25618
components:
- pos: 19.5,-12.5
parent: 2
type: Transform
- - uid: 25600
+ - uid: 25619
components:
- rot: 3.141592653589793 rad
pos: -3.5,52.5
parent: 2
type: Transform
- - uid: 25601
+ - uid: 25620
components:
- rot: -1.5707963267948966 rad
pos: 2.5,20.5
parent: 2
type: Transform
- - uid: 25602
+ - uid: 25621
components:
- rot: -1.5707963267948966 rad
pos: 1.5,21.5
parent: 2
type: Transform
- - uid: 25603
+ - uid: 25622
components:
- pos: 6.5,20.5
parent: 2
type: Transform
- - uid: 25604
+ - uid: 25623
components:
- pos: -2.5,-48.5
parent: 2
type: Transform
- - uid: 25605
+ - uid: 25624
components:
- pos: -2.5,-49.5
parent: 2
type: Transform
- - uid: 25606
+ - uid: 25625
components:
- pos: -5.5,-48.5
parent: 2
type: Transform
- - uid: 25607
+ - uid: 25626
components:
- pos: -6.5,-48.5
parent: 2
type: Transform
- - uid: 25608
+ - uid: 25627
components:
- pos: 7.5,20.5
parent: 2
type: Transform
- - uid: 25609
+ - uid: 25628
components:
- rot: 1.5707963267948966 rad
pos: 13.5,-32.5
parent: 2
type: Transform
- - uid: 25610
+ - uid: 25629
components:
- pos: -6.5,-49.5
parent: 2
type: Transform
- - uid: 25611
+ - uid: 25630
components:
- pos: 21.5,-12.5
parent: 2
type: Transform
- - uid: 25612
+ - uid: 25631
components:
- pos: 22.5,-14.5
parent: 2
type: Transform
- - uid: 25613
+ - uid: 25632
components:
- rot: -1.5707963267948966 rad
pos: 8.5,-12.5
parent: 2
type: Transform
- - uid: 25614
+ - uid: 25633
components:
- rot: 1.5707963267948966 rad
pos: 2.5,0.5
parent: 2
type: Transform
- - uid: 25615
+ - uid: 25634
components:
- rot: 1.5707963267948966 rad
pos: 2.5,1.5
parent: 2
type: Transform
- - uid: 25616
+ - uid: 25635
components:
- rot: 1.5707963267948966 rad
pos: 12.5,-4.5
parent: 2
type: Transform
- - uid: 25617
+ - uid: 25636
components:
- pos: -3.5,-48.5
parent: 2
type: Transform
- - uid: 25618
+ - uid: 25637
components:
- pos: 15.5,11.5
parent: 2
type: Transform
- - uid: 25619
+ - uid: 25638
components:
- pos: -1.5,17.5
parent: 2
type: Transform
- - uid: 25620
+ - uid: 25639
components:
- pos: -28.5,44.5
parent: 2
type: Transform
- - uid: 25621
+ - uid: 25640
components:
- rot: -1.5707963267948966 rad
pos: 11.5,8.5
parent: 2
type: Transform
- - uid: 25622
+ - uid: 25641
components:
- pos: -10.5,-5.5
parent: 2
type: Transform
- - uid: 25623
+ - uid: 25642
components:
- pos: -28.5,45.5
parent: 2
type: Transform
- - uid: 25624
+ - uid: 25643
components:
- pos: -10.5,-3.5
parent: 2
type: Transform
- - uid: 25625
+ - uid: 25644
components:
- pos: -10.5,-4.5
parent: 2
type: Transform
- - uid: 25626
+ - uid: 25645
components:
- pos: -10.5,-6.5
parent: 2
type: Transform
- - uid: 25627
+ - uid: 25646
components:
- pos: 22.5,11.5
parent: 2
type: Transform
- - uid: 25628
+ - uid: 25647
components:
- rot: -1.5707963267948966 rad
pos: 11.5,7.5
parent: 2
type: Transform
- - uid: 25629
+ - uid: 25648
components:
- rot: 3.141592653589793 rad
pos: 12.5,11.5
parent: 2
type: Transform
- - uid: 25630
+ - uid: 25649
components:
- rot: 3.141592653589793 rad
pos: 11.5,11.5
parent: 2
type: Transform
- - uid: 25631
+ - uid: 25650
components:
- rot: -1.5707963267948966 rad
pos: -14.5,-37.5
parent: 2
type: Transform
- - uid: 25632
+ - uid: 25651
components:
- rot: 3.141592653589793 rad
pos: -9.5,-35.5
parent: 2
type: Transform
- - uid: 25633
+ - uid: 25652
components:
- rot: 3.141592653589793 rad
pos: -9.5,-36.5
parent: 2
type: Transform
- - uid: 25634
+ - uid: 25653
components:
- rot: 3.141592653589793 rad
pos: -9.5,-37.5
parent: 2
type: Transform
- - uid: 25635
+ - uid: 25654
components:
- rot: 3.141592653589793 rad
pos: -10.5,-37.5
parent: 2
type: Transform
- - uid: 25636
+ - uid: 25655
components:
- rot: 3.141592653589793 rad
pos: -11.5,-37.5
parent: 2
type: Transform
- - uid: 25637
+ - uid: 25656
components:
- pos: -14.5,-39.5
parent: 2
type: Transform
- - uid: 25638
+ - uid: 25657
components:
- pos: -12.5,-35.5
parent: 2
type: Transform
- - uid: 25639
+ - uid: 25658
components:
- rot: 3.141592653589793 rad
pos: 20.5,12.5
parent: 2
type: Transform
- - uid: 25640
+ - uid: 25659
components:
- pos: 22.5,13.5
parent: 2
type: Transform
- - uid: 25641
+ - uid: 25660
components:
- rot: 3.141592653589793 rad
pos: -4.5,1.5
parent: 2
type: Transform
- - uid: 25642
+ - uid: 25661
components:
- rot: 3.141592653589793 rad
pos: -8.5,0.5
parent: 2
type: Transform
- - uid: 25643
+ - uid: 25662
components:
- rot: 3.141592653589793 rad
pos: -8.5,1.5
parent: 2
type: Transform
- - uid: 25644
+ - uid: 25663
components:
- pos: -1.5,19.5
parent: 2
type: Transform
- - uid: 25645
+ - uid: 25664
components:
- rot: -1.5707963267948966 rad
pos: 2.5,19.5
parent: 2
type: Transform
- - uid: 25646
+ - uid: 25665
components:
- pos: -17.5,41.5
parent: 2
type: Transform
- - uid: 25647
+ - uid: 25666
components:
- pos: 40.5,21.5
parent: 2
type: Transform
- - uid: 25648
+ - uid: 25667
components:
- pos: 38.5,21.5
parent: 2
type: Transform
- - uid: 25649
+ - uid: 25668
components:
- pos: 38.5,18.5
parent: 2
type: Transform
- - uid: 25650
+ - uid: 25669
components:
- pos: 40.5,18.5
parent: 2
type: Transform
- - uid: 25651
+ - uid: 25670
components:
- rot: -1.5707963267948966 rad
pos: 43.5,-4.5
parent: 2
type: Transform
- - uid: 25652
+ - uid: 25671
components:
- rot: -1.5707963267948966 rad
pos: 43.5,-3.5
parent: 2
type: Transform
- - uid: 25653
+ - uid: 25672
components:
- rot: -1.5707963267948966 rad
pos: 43.5,-2.5
parent: 2
type: Transform
- - uid: 25654
+ - uid: 25673
components:
- rot: -1.5707963267948966 rad
pos: 6.5,22.5
parent: 2
type: Transform
- - uid: 25655
+ - uid: 25674
components:
- pos: 61.5,-53.5
parent: 2
type: Transform
- - uid: 25656
+ - uid: 25675
components:
- pos: 62.5,-53.5
parent: 2
type: Transform
- - uid: 25657
+ - uid: 25676
components:
- pos: 63.5,-53.5
parent: 2
type: Transform
- - uid: 25658
+ - uid: 25677
components:
- pos: -16.5,-45.5
parent: 2
type: Transform
- - uid: 25659
+ - uid: 25678
components:
- pos: -16.5,-47.5
parent: 2
type: Transform
- - uid: 25660
+ - uid: 25679
components:
- pos: -16.5,-49.5
parent: 2
type: Transform
- - uid: 25661
+ - uid: 25680
components:
- rot: 3.141592653589793 rad
pos: 34.5,-50.5
parent: 2
type: Transform
- - uid: 25662
+ - uid: 25681
components:
- rot: 3.141592653589793 rad
pos: 33.5,-50.5
parent: 2
type: Transform
- - uid: 25663
+ - uid: 25682
components:
- rot: 3.141592653589793 rad
pos: 32.5,-50.5
parent: 2
type: Transform
- - uid: 25664
+ - uid: 25683
components:
- rot: 3.141592653589793 rad
pos: 30.5,-50.5
parent: 2
type: Transform
- - uid: 25665
+ - uid: 25684
components:
- rot: 3.141592653589793 rad
pos: 29.5,-50.5
parent: 2
type: Transform
- - uid: 25666
+ - uid: 25685
components:
- rot: 3.141592653589793 rad
pos: 28.5,-50.5
parent: 2
type: Transform
- - uid: 25667
+ - uid: 25686
components:
- rot: 3.141592653589793 rad
pos: 30.5,-48.5
parent: 2
type: Transform
- - uid: 25668
+ - uid: 25687
components:
- rot: 3.141592653589793 rad
pos: 31.5,-48.5
parent: 2
type: Transform
- - uid: 25669
+ - uid: 25688
components:
- rot: 3.141592653589793 rad
pos: 32.5,-48.5
parent: 2
type: Transform
- - uid: 25670
+ - uid: 25689
components:
- pos: 60.5,-1.5
parent: 2
type: Transform
- - uid: 25671
+ - uid: 25690
components:
- pos: 62.5,-1.5
parent: 2
type: Transform
- - uid: 25672
+ - uid: 25691
components:
- pos: 61.5,-1.5
parent: 2
type: Transform
- - uid: 25673
+ - uid: 25692
components:
- rot: 1.5707963267948966 rad
pos: -35.5,-17.5
parent: 2
type: Transform
- - uid: 25674
+ - uid: 25693
components:
- rot: 1.5707963267948966 rad
pos: -35.5,-16.5
parent: 2
type: Transform
- - uid: 25675
+ - uid: 25694
components:
- rot: 1.5707963267948966 rad
pos: -35.5,-15.5
parent: 2
type: Transform
- - uid: 25676
+ - uid: 25695
components:
- pos: 65.5,-51.5
parent: 2
type: Transform
- - uid: 25677
+ - uid: 25696
components:
- pos: 59.5,-51.5
parent: 2
type: Transform
- - uid: 25678
+ - uid: 25697
components:
- pos: 59.5,-52.5
parent: 2
type: Transform
- - uid: 25679
+ - uid: 25698
components:
- pos: -39.5,-76.5
parent: 2
type: Transform
- - uid: 25680
+ - uid: 25699
components:
- pos: -39.5,-77.5
parent: 2
type: Transform
- - uid: 25681
+ - uid: 25700
components:
- pos: -40.5,-77.5
parent: 2
type: Transform
- - uid: 25682
+ - uid: 25701
components:
- pos: -40.5,-78.5
parent: 2
type: Transform
- - uid: 25683
+ - uid: 25702
components:
- pos: -41.5,-78.5
parent: 2
type: Transform
- - uid: 25684
+ - uid: 25703
components:
- pos: -42.5,-78.5
parent: 2
type: Transform
- - uid: 25685
+ - uid: 25704
components:
- pos: -43.5,-78.5
parent: 2
type: Transform
- - uid: 25686
+ - uid: 25705
components:
- pos: -43.5,-77.5
parent: 2
type: Transform
- - uid: 25687
+ - uid: 25706
components:
- pos: -44.5,-77.5
parent: 2
type: Transform
- - uid: 25688
+ - uid: 25707
components:
- pos: -44.5,-76.5
parent: 2
type: Transform
- - uid: 25689
+ - uid: 25708
components:
- rot: -1.5707963267948966 rad
pos: -40.5,-74.5
parent: 2
type: Transform
- - uid: 25690
+ - uid: 25709
components:
- rot: -1.5707963267948966 rad
pos: -43.5,-74.5
parent: 2
type: Transform
- - uid: 25691
+ - uid: 25710
components:
- pos: 23.5,-28.5
parent: 2
type: Transform
- - uid: 25692
+ - uid: 25711
components:
- pos: 30.5,-28.5
parent: 2
type: Transform
- - uid: 25693
+ - uid: 25712
components:
- pos: 30.5,-29.5
parent: 2
type: Transform
- - uid: 25694
+ - uid: 25713
components:
- pos: 59.5,-3.5
parent: 2
type: Transform
- - uid: 25695
+ - uid: 25714
components:
- rot: 3.141592653589793 rad
pos: -27.5,14.5
parent: 2
type: Transform
- - uid: 25696
+ - uid: 25715
components:
- rot: 3.141592653589793 rad
pos: -26.5,14.5
parent: 2
type: Transform
- - uid: 25697
+ - uid: 25716
components:
- rot: 3.141592653589793 rad
pos: -36.5,16.5
parent: 2
type: Transform
- - uid: 25698
+ - uid: 25717
components:
- rot: 3.141592653589793 rad
pos: -37.5,16.5
parent: 2
type: Transform
- - uid: 25699
+ - uid: 25718
components:
- rot: 3.141592653589793 rad
pos: -38.5,16.5
parent: 2
type: Transform
- - uid: 25700
+ - uid: 25719
components:
- rot: 3.141592653589793 rad
pos: -39.5,16.5
parent: 2
type: Transform
- - uid: 25701
+ - uid: 25720
components:
- rot: 3.141592653589793 rad
pos: -31.5,15.5
parent: 2
type: Transform
- - uid: 25702
+ - uid: 25721
components:
- rot: 3.141592653589793 rad
pos: -30.5,15.5
parent: 2
type: Transform
- - uid: 25703
+ - uid: 25722
components:
- rot: 3.141592653589793 rad
pos: -29.5,15.5
parent: 2
type: Transform
- - uid: 25704
+ - uid: 25723
components:
- rot: 1.5707963267948966 rad
pos: -48.5,6.5
parent: 2
type: Transform
- - uid: 25705
+ - uid: 25724
components:
- rot: 1.5707963267948966 rad
pos: -48.5,5.5
parent: 2
type: Transform
- - uid: 25706
+ - uid: 25725
components:
- rot: 1.5707963267948966 rad
pos: -47.5,5.5
parent: 2
type: Transform
- - uid: 25707
+ - uid: 25726
components:
- rot: 1.5707963267948966 rad
pos: -47.5,6.5
parent: 2
type: Transform
- - uid: 25708
+ - uid: 25727
components:
- pos: -52.5,13.5
parent: 2
type: Transform
- - uid: 25709
+ - uid: 25728
components:
- pos: -42.5,8.5
parent: 2
type: Transform
- - uid: 25710
+ - uid: 25729
components:
- pos: -51.5,8.5
parent: 2
type: Transform
- - uid: 25711
+ - uid: 25730
components:
- pos: -17.5,42.5
parent: 2
type: Transform
- - uid: 25712
+ - uid: 25731
components:
- pos: -14.5,47.5
parent: 2
type: Transform
- - uid: 25713
+ - uid: 25732
components:
- pos: -16.5,42.5
parent: 2
type: Transform
- - uid: 25714
+ - uid: 25733
components:
- pos: -16.5,41.5
parent: 2
type: Transform
- - uid: 25715
+ - uid: 25734
components:
- rot: 3.141592653589793 rad
pos: -5.5,-15.5
parent: 2
type: Transform
- - uid: 25716
+ - uid: 25735
components:
- pos: -33.5,-67.5
parent: 2
type: Transform
- - uid: 25717
+ - uid: 25736
components:
- rot: -1.5707963267948966 rad
pos: 30.5,-27.5
parent: 2
type: Transform
- - uid: 25718
+ - uid: 25737
components:
- pos: -31.5,-73.5
parent: 2
type: Transform
- - uid: 25719
+ - uid: 25738
components:
- rot: 3.141592653589793 rad
pos: 67.5,10.5
parent: 2
type: Transform
- - uid: 25720
+ - uid: 25739
components:
- pos: -23.5,29.5
parent: 2
type: Transform
- - uid: 25721
+ - uid: 25740
components:
- rot: 1.5707963267948966 rad
pos: -24.5,29.5
parent: 2
type: Transform
- - uid: 25722
+ - uid: 25741
components:
- pos: -18.5,33.5
parent: 2
type: Transform
- - uid: 25723
+ - uid: 25742
components:
- pos: -21.5,35.5
parent: 2
type: Transform
- - uid: 25724
+ - uid: 25743
components:
- pos: -12.5,35.5
parent: 2
type: Transform
- - uid: 25725
+ - uid: 25744
components:
- pos: -12.5,32.5
parent: 2
type: Transform
- - uid: 25726
+ - uid: 25745
components:
- pos: -12.5,31.5
parent: 2
type: Transform
- - uid: 25727
+ - uid: 25746
components:
- pos: 65.5,-0.5
parent: 2
type: Transform
- - uid: 25728
+ - uid: 25747
components:
- pos: 65.5,-1.5
parent: 2
type: Transform
- - uid: 25729
+ - uid: 25748
components:
- rot: 1.5707963267948966 rad
pos: 42.5,48.5
parent: 2
type: Transform
- - uid: 25730
+ - uid: 25749
components:
- rot: 1.5707963267948966 rad
pos: 43.5,48.5
parent: 2
type: Transform
- - uid: 25731
+ - uid: 25750
components:
- rot: 1.5707963267948966 rad
pos: 33.5,44.5
parent: 2
type: Transform
- - uid: 25732
+ - uid: 25751
components:
- rot: 1.5707963267948966 rad
pos: 32.5,47.5
parent: 2
type: Transform
- - uid: 25733
+ - uid: 25752
components:
- rot: 1.5707963267948966 rad
pos: 32.5,46.5
parent: 2
type: Transform
- - uid: 25734
+ - uid: 25753
components:
- rot: 1.5707963267948966 rad
pos: 40.5,43.5
parent: 2
type: Transform
- - uid: 25735
+ - uid: 25754
components:
- rot: 3.141592653589793 rad
pos: -21.5,37.5
parent: 2
type: Transform
- - uid: 25736
+ - uid: 25755
components:
- rot: 3.141592653589793 rad
pos: -22.5,37.5
parent: 2
type: Transform
- - uid: 25737
+ - uid: 25756
components:
- pos: -19.5,37.5
parent: 2
type: Transform
- - uid: 25738
+ - uid: 25757
components:
- pos: -22.5,-97.5
parent: 2
type: Transform
- - uid: 25739
+ - uid: 25758
components:
- pos: -22.5,-98.5
parent: 2
type: Transform
- - uid: 25740
+ - uid: 25759
components:
- rot: 3.141592653589793 rad
pos: -7.5,-100.5
parent: 2
type: Transform
- - uid: 25741
+ - uid: 25760
components:
- rot: 3.141592653589793 rad
pos: -6.5,-100.5
parent: 2
type: Transform
- - uid: 25742
+ - uid: 25761
components:
- pos: -22.5,-96.5
parent: 2
type: Transform
- - uid: 25743
+ - uid: 25762
components:
- pos: -33.5,8.5
parent: 2
type: Transform
- - uid: 25744
+ - uid: 25763
components:
- pos: -32.5,8.5
parent: 2
type: Transform
- - uid: 25745
+ - uid: 25764
components:
- pos: 54.5,-35.5
parent: 2
type: Transform
- - uid: 25746
+ - uid: 25765
components:
- pos: 58.5,-30.5
parent: 2
type: Transform
- - uid: 25747
+ - uid: 25766
components:
- rot: 3.141592653589793 rad
pos: 49.5,-66.5
parent: 2
type: Transform
- - uid: 25748
+ - uid: 25767
components:
- rot: -1.5707963267948966 rad
pos: 57.5,-30.5
parent: 2
type: Transform
- - uid: 25749
+ - uid: 25768
components:
- pos: 12.5,-5.5
parent: 2
type: Transform
- - uid: 25750
+ - uid: 25769
components:
- pos: 18.5,-14.5
parent: 2
type: Transform
- - uid: 25751
+ - uid: 25770
components:
- rot: 1.5707963267948966 rad
pos: -4.5,0.5
parent: 2
type: Transform
- - uid: 25752
+ - uid: 25771
components:
- pos: -31.5,-74.5
parent: 2
type: Transform
- - uid: 25753
+ - uid: 25772
components:
- pos: 12.5,-6.5
parent: 2
type: Transform
- - uid: 25754
+ - uid: 25773
components:
- rot: 3.141592653589793 rad
pos: 2.5,-7.5
parent: 2
type: Transform
- - uid: 25755
+ - uid: 25774
components:
- rot: 1.5707963267948966 rad
pos: 21.5,-28.5
parent: 2
type: Transform
- - uid: 25756
+ - uid: 25775
components:
- pos: -0.5,-23.5
parent: 2
type: Transform
- - uid: 25757
+ - uid: 25776
components:
- pos: 0.5,-23.5
parent: 2
type: Transform
- - uid: 25758
+ - uid: 25777
components:
- rot: 1.5707963267948966 rad
pos: 27.5,-36.5
parent: 2
type: Transform
- - uid: 25759
+ - uid: 25778
components:
- rot: 1.5707963267948966 rad
pos: 27.5,-34.5
parent: 2
type: Transform
- - uid: 25760
+ - uid: 25779
components:
- rot: -1.5707963267948966 rad
pos: 22.5,-38.5
parent: 2
type: Transform
- - uid: 25761
+ - uid: 25780
components:
- rot: -1.5707963267948966 rad
pos: 22.5,-39.5
parent: 2
type: Transform
- - uid: 25762
+ - uid: 25781
components:
- pos: 28.5,-39.5
parent: 2
type: Transform
- proto: TegCenter
entities:
- - uid: 25763
+ - uid: 25782
components:
- rot: -1.5707963267948966 rad
pos: -69.5,-44.5
@@ -168596,7 +168711,7 @@ entities:
type: Transform
- proto: TegCirculator
entities:
- - uid: 25764
+ - uid: 25783
components:
- rot: 3.141592653589793 rad
pos: -70.5,-44.5
@@ -168604,7 +168719,7 @@ entities:
type: Transform
- color: '#FF3300FF'
type: PointLight
- - uid: 25765
+ - uid: 25784
components:
- pos: -68.5,-44.5
parent: 2
@@ -168613,7 +168728,7 @@ entities:
type: PointLight
- proto: TelecomServer
entities:
- - uid: 14546
+ - uid: 14548
components:
- pos: 8.5,-20.5
parent: 2
@@ -168623,7 +168738,7 @@ entities:
showEnts: False
occludes: True
ents:
- - 14547
+ - 14549
machine_board: !type:Container
showEnts: False
occludes: True
@@ -168633,7 +168748,7 @@ entities:
occludes: True
ents: []
type: ContainerContainer
- - uid: 14548
+ - uid: 14550
components:
- pos: 9.5,-20.5
parent: 2
@@ -168643,7 +168758,7 @@ entities:
showEnts: False
occludes: True
ents:
- - 14549
+ - 14551
machine_board: !type:Container
showEnts: False
occludes: True
@@ -168653,7 +168768,7 @@ entities:
occludes: True
ents: []
type: ContainerContainer
- - uid: 14550
+ - uid: 14552
components:
- pos: 10.5,-20.5
parent: 2
@@ -168663,7 +168778,7 @@ entities:
showEnts: False
occludes: True
ents:
- - 14551
+ - 14553
machine_board: !type:Container
showEnts: False
occludes: True
@@ -168673,7 +168788,7 @@ entities:
occludes: True
ents: []
type: ContainerContainer
- - uid: 14552
+ - uid: 14554
components:
- pos: 11.5,-20.5
parent: 2
@@ -168683,7 +168798,7 @@ entities:
showEnts: False
occludes: True
ents:
- - 14553
+ - 14555
machine_board: !type:Container
showEnts: False
occludes: True
@@ -168693,7 +168808,7 @@ entities:
occludes: True
ents: []
type: ContainerContainer
- - uid: 14554
+ - uid: 14556
components:
- pos: 9.5,-22.5
parent: 2
@@ -168703,7 +168818,7 @@ entities:
showEnts: False
occludes: True
ents:
- - 14555
+ - 14557
machine_board: !type:Container
showEnts: False
occludes: True
@@ -168713,7 +168828,7 @@ entities:
occludes: True
ents: []
type: ContainerContainer
- - uid: 14556
+ - uid: 14558
components:
- pos: 8.5,-22.5
parent: 2
@@ -168723,8 +168838,8 @@ entities:
showEnts: False
occludes: True
ents:
- - 14558
- - 14557
+ - 14560
+ - 14559
machine_board: !type:Container
showEnts: False
occludes: True
@@ -168734,7 +168849,7 @@ entities:
occludes: True
ents: []
type: ContainerContainer
- - uid: 14559
+ - uid: 14561
components:
- pos: 10.5,-22.5
parent: 2
@@ -168744,7 +168859,7 @@ entities:
showEnts: False
occludes: True
ents:
- - 14560
+ - 14562
machine_board: !type:Container
showEnts: False
occludes: True
@@ -168754,7 +168869,7 @@ entities:
occludes: True
ents: []
type: ContainerContainer
- - uid: 14561
+ - uid: 14563
components:
- pos: 11.5,-22.5
parent: 2
@@ -168764,7 +168879,7 @@ entities:
showEnts: False
occludes: True
ents:
- - 14562
+ - 14564
machine_board: !type:Container
showEnts: False
occludes: True
@@ -168776,32 +168891,32 @@ entities:
type: ContainerContainer
- proto: ThermomachineFreezerMachineCircuitBoard
entities:
- - uid: 25766
+ - uid: 25785
components:
- pos: -36.51641,35.415855
parent: 2
type: Transform
- proto: Thruster
entities:
- - uid: 25767
+ - uid: 25786
components:
- rot: 1.5707963267948966 rad
pos: -58.5,-88.5
parent: 2
type: Transform
- - uid: 25768
+ - uid: 25787
components:
- rot: 3.141592653589793 rad
pos: -56.5,-90.5
parent: 2
type: Transform
- - uid: 25769
+ - uid: 25788
components:
- rot: -1.5707963267948966 rad
pos: -52.5,-90.5
parent: 2
type: Transform
- - uid: 25770
+ - uid: 25789
components:
- rot: 1.5707963267948966 rad
pos: -58.5,-86.5
@@ -168809,20 +168924,20 @@ entities:
type: Transform
- proto: TimerTrigger
entities:
- - uid: 25771
+ - uid: 25790
components:
- pos: 65.507225,-28.362265
parent: 2
type: Transform
- proto: TintedWindow
entities:
- - uid: 25772
+ - uid: 25791
components:
- rot: 1.5707963267948966 rad
pos: -37.5,17.5
parent: 2
type: Transform
- - uid: 25773
+ - uid: 25792
components:
- rot: 1.5707963267948966 rad
pos: -38.5,17.5
@@ -168830,32 +168945,32 @@ entities:
type: Transform
- proto: TobaccoSeeds
entities:
- - uid: 25774
+ - uid: 25793
components:
- pos: -32.36416,6.3223424
parent: 2
type: Transform
- proto: ToiletDirtyWater
entities:
- - uid: 25775
+ - uid: 25794
components:
- rot: 1.5707963267948966 rad
pos: -32.5,-5.5
parent: 2
type: Transform
- - uid: 25776
+ - uid: 25795
components:
- rot: 1.5707963267948966 rad
pos: -32.5,-7.5
parent: 2
type: Transform
- - uid: 25777
+ - uid: 25796
components:
- rot: -1.5707963267948966 rad
pos: -28.5,-5.5
parent: 2
type: Transform
- - uid: 25778
+ - uid: 25797
components:
- rot: -1.5707963267948966 rad
pos: -28.5,-7.5
@@ -168863,12 +168978,12 @@ entities:
type: Transform
- proto: ToiletEmpty
entities:
- - uid: 25779
+ - uid: 25798
components:
- pos: 61.5,24.5
parent: 2
type: Transform
- - uid: 25780
+ - uid: 25799
components:
- pos: 63.5,24.5
parent: 2
@@ -168877,357 +168992,357 @@ entities:
type: Construction
- proto: TomatoSeeds
entities:
- - uid: 25781
+ - uid: 25800
components:
- pos: -32.45791,6.4317174
parent: 2
type: Transform
- proto: ToolboxElectrical
entities:
- - uid: 25782
+ - uid: 25801
components:
- pos: 46.470684,-5.411702
parent: 2
type: Transform
- proto: ToolboxElectricalFilled
entities:
- - uid: 25783
+ - uid: 25802
components:
- pos: -36.493176,-7.9722276
parent: 2
type: Transform
- - uid: 25784
+ - uid: 25803
components:
- pos: 32.521046,-20.990738
parent: 2
type: Transform
- - uid: 25785
+ - uid: 25804
components:
- pos: -24.509478,-19.362955
parent: 2
type: Transform
- - uid: 25786
+ - uid: 25805
components:
- pos: -12.493107,-98.55707
parent: 2
type: Transform
- - uid: 25787
+ - uid: 25806
components:
- pos: 67.55947,-64.54127
parent: 2
type: Transform
- proto: ToolboxEmergencyFilled
entities:
- - uid: 25788
+ - uid: 25807
components:
- pos: 32.521046,-22.058308
parent: 2
type: Transform
- - uid: 25789
+ - uid: 25808
components:
- pos: 4.5177064,-69.50256
parent: 2
type: Transform
- - uid: 25790
+ - uid: 25809
components:
- pos: -22.596659,-20.233759
parent: 2
type: Transform
- - uid: 25791
+ - uid: 25810
components:
- pos: -28.343418,-52.353195
parent: 2
type: Transform
- - uid: 25792
+ - uid: 25811
components:
- pos: -38.44295,-67.482124
parent: 2
type: Transform
- - uid: 25793
+ - uid: 25812
components:
- pos: -35.451088,-50.209225
parent: 2
type: Transform
- - uid: 25794
+ - uid: 25813
components:
- pos: 54.54983,-30.496807
parent: 2
type: Transform
- - uid: 25795
+ - uid: 25814
components:
- pos: 65.53578,-10.518121
parent: 2
type: Transform
- - uid: 25796
+ - uid: 25815
components:
- pos: -12.486199,-5.5686293
parent: 2
type: Transform
- - uid: 25797
+ - uid: 25816
components:
- pos: -36.5088,-7.6284776
parent: 2
type: Transform
- proto: ToolboxGoldFilled
entities:
- - uid: 25798
+ - uid: 25817
components:
- pos: 32.512478,-22.558695
parent: 2
type: Transform
- proto: ToolboxMechanical
entities:
- - uid: 25799
+ - uid: 25818
components:
- pos: -22.637089,-8.36341
parent: 2
type: Transform
- proto: ToolboxMechanicalFilled
entities:
- - uid: 25800
+ - uid: 25819
components:
- pos: -36.493176,-7.2222276
parent: 2
type: Transform
- - uid: 25801
+ - uid: 25820
components:
- pos: -15.996035,12.5348
parent: 2
type: Transform
- - uid: 25802
+ - uid: 25821
components:
- pos: 32.521046,-21.537613
parent: 2
type: Transform
- - uid: 25803
+ - uid: 25822
components:
- pos: -22.52499,-67.50294
parent: 2
type: Transform
- - uid: 25804
+ - uid: 25823
components:
- pos: 41.46839,-54.726734
parent: 2
type: Transform
- - uid: 25805
+ - uid: 25824
components:
- pos: -36.497368,-32.593475
parent: 2
type: Transform
- - uid: 25806
+ - uid: 25825
components:
- pos: -26.431704,-19.50094
parent: 2
type: Transform
- proto: ToyAi
entities:
- - uid: 25807
+ - uid: 25826
components:
- pos: 48.41234,-27.902035
parent: 2
type: Transform
- - uid: 25808
+ - uid: 25827
components:
- pos: -1.529743,69.62148
parent: 2
type: Transform
- proto: ToyAmongPequeno
entities:
- - uid: 25809
+ - uid: 25828
components:
- pos: 64.471924,-66.472046
parent: 2
type: Transform
- proto: ToyDurand
entities:
- - uid: 25810
+ - uid: 25829
components:
- pos: -18.14669,61.77462
parent: 2
type: Transform
- proto: ToyFigurineClown
entities:
- - uid: 25811
+ - uid: 25830
components:
- pos: 2.672367,-19.349606
parent: 2
type: Transform
- proto: ToyFigurineHamlet
entities:
- - uid: 25812
+ - uid: 25831
components:
- pos: 19.529411,-12.229433
parent: 2
type: Transform
- proto: ToyFigurineMime
entities:
- - uid: 25813
+ - uid: 25832
components:
- pos: 2.266117,-19.537106
parent: 2
type: Transform
- proto: ToyFigurinePassenger
entities:
- - uid: 25814
+ - uid: 25833
components:
- pos: -17.943565,62.415245
parent: 2
type: Transform
- proto: ToyGygax
entities:
- - uid: 25815
+ - uid: 25834
components:
- pos: -17.318565,61.89962
parent: 2
type: Transform
- proto: ToyHonk
entities:
- - uid: 25816
+ - uid: 25835
components:
- pos: 62.0246,-1.3985255
parent: 2
type: Transform
- - uid: 25817
+ - uid: 25836
components:
- pos: -17.287315,62.508995
parent: 2
type: Transform
- proto: ToyIan
entities:
- - uid: 25818
+ - uid: 25837
components:
- pos: 48.44359,-22.433285
parent: 2
type: Transform
- proto: ToyNuke
entities:
- - uid: 25819
+ - uid: 25838
components:
- pos: 48.50609,-28.933285
parent: 2
type: Transform
- proto: ToyRubberDuck
entities:
- - uid: 25820
+ - uid: 25839
components:
- pos: 48.59984,-28.457928
parent: 2
type: Transform
- - uid: 25821
+ - uid: 25840
components:
- pos: 48.396713,-28.473553
parent: 2
type: Transform
- - uid: 25822
+ - uid: 25841
components:
- pos: 48.50609,-28.286053
parent: 2
type: Transform
- proto: ToySpawner
entities:
- - uid: 25823
+ - uid: 25842
components:
- pos: 53.5,-65.5
parent: 2
type: Transform
- - uid: 25824
+ - uid: 25843
components:
- pos: 54.5,-35.5
parent: 2
type: Transform
- proto: TrainingBomb
entities:
- - uid: 25825
+ - uid: 25844
components:
- pos: 11.5,23.5
parent: 2
type: Transform
- - uid: 25826
+ - uid: 25845
components:
- pos: 10.5,23.5
parent: 2
type: Transform
- proto: TrashBananaPeel
entities:
- - uid: 25827
+ - uid: 25846
components:
- pos: 46.551132,46.620934
parent: 2
type: Transform
- - uid: 25828
+ - uid: 25847
components:
- pos: 48.49847,33.344906
parent: 2
type: Transform
- - uid: 25829
+ - uid: 25848
components:
- pos: 50.451595,31.673027
parent: 2
type: Transform
- - uid: 25830
+ - uid: 25849
components:
- pos: 5.4959826,24.50416
parent: 2
type: Transform
- - uid: 25831
+ - uid: 25850
components:
- pos: 0.5065335,-21.863766
parent: 2
type: Transform
- proto: trayScanner
entities:
- - uid: 25832
+ - uid: 25851
components:
- pos: -36.91505,-7.9878526
parent: 2
type: Transform
- - uid: 25833
+ - uid: 25852
components:
- pos: -47.457436,-19.479069
parent: 2
type: Transform
- - uid: 25834
+ - uid: 25853
components:
- pos: -42.463882,-20.49279
parent: 2
type: Transform
- - uid: 25835
+ - uid: 25854
components:
- pos: 39.581177,-30.49341
parent: 2
type: Transform
- - uid: 25836
+ - uid: 25855
components:
- pos: 73.06597,36.576
parent: 2
type: Transform
- - uid: 25837
+ - uid: 25856
components:
- pos: 77.48675,-44.195305
parent: 2
type: Transform
- - uid: 25838
+ - uid: 25857
components:
- pos: -26.403507,-59.437252
parent: 2
type: Transform
- proto: TromboneInstrument
entities:
- - uid: 25839
+ - uid: 25858
components:
- pos: 68.56264,48.54323
parent: 2
type: Transform
- proto: TrumpetInstrument
entities:
- - uid: 25840
+ - uid: 25859
components:
- pos: -10.547552,-5.035685
parent: 2
type: Transform
- proto: TwoWayLever
entities:
- - uid: 25841
+ - uid: 25860
components:
- pos: 16.5,-53.5
parent: 2
@@ -169235,150 +169350,150 @@ entities:
- nextSignalLeft: True
type: TwoWayLever
- linkedPorts:
- 12684:
+ 12690:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12682:
+ 12688:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12683:
+ 12689:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12680:
+ 12686:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12677:
+ 12683:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12674:
+ 12680:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12676:
+ 12682:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12678:
+ 12684:
- Left: Forward
- Right: Reverse
- Middle: Off
- 23250:
+ 23270:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12675:
+ 12681:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12681:
+ 12687:
- Left: Forward
- Right: Reverse
- Middle: Off
type: DeviceLinkSource
- - uid: 25842
+ - uid: 25861
components:
- pos: -28.5,24.5
parent: 2
type: Transform
- linkedPorts:
- 12692:
+ 12698:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12693:
+ 12699:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12691:
+ 12697:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12690:
+ 12696:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12689:
+ 12695:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12688:
+ 12694:
- Left: Forward
- Right: Reverse
- Middle: Off
type: DeviceLinkSource
- type: ItemCooldown
- - uid: 25843
+ - uid: 25862
components:
- pos: -41.5,17.5
parent: 2
type: Transform
- linkedPorts:
- 12734:
+ 12740:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12774:
+ 12780:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12733:
+ 12739:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12715:
+ 12721:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12735:
+ 12741:
- Left: Forward
- Right: Reverse
- Middle: Off
type: DeviceLinkSource
- - uid: 25844
+ - uid: 25863
components:
- pos: -48.5,24.5
parent: 2
type: Transform
- linkedPorts:
- 12706:
+ 12712:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12705:
+ 12711:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12704:
+ 12710:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12703:
+ 12709:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12711:
+ 12717:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12712:
+ 12718:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12713:
+ 12719:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12714:
+ 12720:
- Left: Forward
- Right: Reverse
- Middle: Off
type: DeviceLinkSource
- - uid: 25845
+ - uid: 25864
components:
- pos: -48.5,18.5
parent: 2
@@ -169386,40 +169501,40 @@ entities:
- nextSignalLeft: True
type: TwoWayLever
- linkedPorts:
- 12702:
+ 12708:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12701:
+ 12707:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12700:
+ 12706:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12699:
+ 12705:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12709:
+ 12715:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12710:
+ 12716:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12708:
+ 12714:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12707:
+ 12713:
- Left: Forward
- Right: Reverse
- Middle: Off
type: DeviceLinkSource
- - uid: 25846
+ - uid: 25865
components:
- pos: -36.5,24.5
parent: 2
@@ -169427,99 +169542,99 @@ entities:
- nextSignalLeft: True
type: TwoWayLever
- linkedPorts:
- 12698:
+ 12704:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12697:
+ 12703:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12696:
+ 12702:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12694:
+ 12700:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12695:
+ 12701:
- Left: Forward
- Right: Reverse
- Middle: Off
type: DeviceLinkSource
- - uid: 25847
+ - uid: 25866
components:
- pos: -11.5,28.5
parent: 2
type: Transform
- linkedPorts:
- 12751:
+ 12757:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12752:
+ 12758:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12753:
+ 12759:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12754:
+ 12760:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12755:
+ 12761:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12750:
+ 12756:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12739:
+ 12745:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12740:
+ 12746:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12741:
+ 12747:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12757:
+ 12763:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12756:
+ 12762:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12732:
+ 12738:
- Left: Reverse
- Right: Forward
- Middle: Off
- 12731:
+ 12737:
- Left: Reverse
- Right: Forward
- Middle: Off
- 12758:
+ 12764:
- Left: Reverse
- Right: Forward
- Middle: Off
- 12759:
+ 12765:
- Left: Reverse
- Right: Forward
- Middle: Off
- 12730:
+ 12736:
- Left: Reverse
- Right: Forward
- Middle: Off
type: DeviceLinkSource
- - uid: 25848
+ - uid: 25867
components:
- pos: -48.5,29.5
parent: 2
@@ -169527,36 +169642,36 @@ entities:
- nextSignalLeft: True
type: TwoWayLever
- linkedPorts:
- 12727:
+ 12733:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12717:
+ 12723:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12716:
+ 12722:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12718:
+ 12724:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12719:
+ 12725:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12720:
+ 12726:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12729:
+ 12735:
- Left: Forward
- Right: Reverse
- Middle: Off
type: DeviceLinkSource
- - uid: 25849
+ - uid: 25868
components:
- pos: -48.5,35.5
parent: 2
@@ -169564,36 +169679,36 @@ entities:
- nextSignalLeft: True
type: TwoWayLever
- linkedPorts:
- 12726:
+ 12732:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12721:
+ 12727:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12722:
+ 12728:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12723:
+ 12729:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12724:
+ 12730:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12725:
+ 12731:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12728:
+ 12734:
- Left: Forward
- Right: Reverse
- Middle: Off
type: DeviceLinkSource
- - uid: 25850
+ - uid: 25869
components:
- pos: -46.5,14.5
parent: 2
@@ -169601,21 +169716,21 @@ entities:
- nextSignalLeft: True
type: TwoWayLever
- linkedPorts:
- 12737:
+ 12743:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12736:
+ 12742:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12738:
+ 12744:
- Left: Forward
- Right: Reverse
- Middle: Off
type: DeviceLinkSource
- type: ItemCooldown
- - uid: 25851
+ - uid: 25870
components:
- pos: 47.5,39.5
parent: 2
@@ -169623,177 +169738,177 @@ entities:
- nextSignalLeft: True
type: TwoWayLever
- linkedPorts:
- 12742:
+ 12748:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12743:
+ 12749:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12744:
+ 12750:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12745:
+ 12751:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12746:
+ 12752:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12747:
+ 12753:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12748:
+ 12754:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12749:
+ 12755:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12760:
+ 12766:
- Left: Forward
- Right: Reverse
- Middle: Off
type: DeviceLinkSource
- - uid: 25852
+ - uid: 25871
components:
- pos: -36.5,-98.5
parent: 2
type: Transform
- linkedPorts:
- 12762:
+ 12768:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12761:
+ 12767:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12763:
+ 12769:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12764:
+ 12770:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12765:
+ 12771:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12766:
+ 12772:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12767:
+ 12773:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12771:
+ 12777:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12770:
+ 12776:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12768:
+ 12774:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12769:
+ 12775:
- Left: Forward
- Right: Reverse
- Middle: Off
type: DeviceLinkSource
- - uid: 25853
+ - uid: 25872
components:
- pos: -36.5,-104.5
parent: 2
type: Transform
- linkedPorts:
- 12769:
+ 12775:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12768:
+ 12774:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12770:
+ 12776:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12771:
+ 12777:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12767:
+ 12773:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12766:
+ 12772:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12765:
+ 12771:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12764:
+ 12770:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12763:
+ 12769:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12761:
+ 12767:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12762:
+ 12768:
- Left: Forward
- Right: Reverse
- Middle: Off
type: DeviceLinkSource
- - uid: 25854
+ - uid: 25873
components:
- pos: -9.5,-12.5
parent: 2
type: Transform
- linkedPorts:
- 12685:
+ 12691:
- Left: Reverse
- Right: Reverse
- Middle: Off
- 12686:
+ 12692:
- Left: Reverse
- Right: Reverse
- Middle: Off
- 12679:
+ 12685:
- Left: Reverse
- Right: Reverse
- Middle: Off
- 12773:
+ 12779:
- Left: Reverse
- Right: Reverse
- Middle: Off
- 12772:
+ 12778:
- Left: Reverse
- Right: Reverse
- Middle: Off
- 12687:
+ 12693:
- Left: Reverse
- Right: Reverse
- Middle: Off
type: DeviceLinkSource
- - uid: 25855
+ - uid: 25874
components:
- pos: -15.5,10.5
parent: 2
@@ -169801,15 +169916,15 @@ entities:
- nextSignalLeft: True
type: TwoWayLever
- linkedPorts:
- 12775:
+ 12781:
- Left: Reverse
- Right: Forward
- Middle: Off
- 12776:
+ 12782:
- Left: Reverse
- Right: Forward
- Middle: Off
- 12777:
+ 12783:
- Left: Reverse
- Right: Forward
- Middle: Off
@@ -169817,44 +169932,44 @@ entities:
- type: ItemCooldown
- proto: UnfinishedMachineFrame
entities:
- - uid: 25856
+ - uid: 25875
components:
- pos: -26.5,-24.5
parent: 2
type: Transform
- - uid: 25857
+ - uid: 25876
components:
- pos: -10.5,39.5
parent: 2
type: Transform
- - uid: 25858
+ - uid: 25877
components:
- pos: 53.5,-30.5
parent: 2
type: Transform
- proto: UniformPrinter
entities:
- - uid: 25859
+ - uid: 25878
components:
- pos: 2.5,-4.5
parent: 2
type: Transform
- proto: UniformShortsRedWithTop
entities:
- - uid: 25860
+ - uid: 25879
components:
- pos: 30.57281,4.627015
parent: 2
type: Transform
- proto: UprightPianoInstrument
entities:
- - uid: 25861
+ - uid: 25880
components:
- rot: -1.5707963267948966 rad
pos: -47.5,-75.5
parent: 2
type: Transform
- - uid: 25862
+ - uid: 25881
components:
- rot: -1.5707963267948966 rad
pos: 8.5,5.5
@@ -169862,43 +169977,43 @@ entities:
type: Transform
- proto: Vaccinator
entities:
- - uid: 25863
+ - uid: 25882
components:
- pos: -22.5,-77.5
parent: 2
type: Transform
- - uid: 25864
+ - uid: 25883
components:
- pos: -20.5,-76.5
parent: 2
type: Transform
- proto: VehicleKeyJanicart
entities:
- - uid: 25865
+ - uid: 25884
components:
- pos: -13.519899,-23.451248
parent: 2
type: Transform
- proto: VehicleKeySecway
entities:
- - uid: 25866
+ - uid: 25885
components:
- pos: 12.469265,19.745214
parent: 2
type: Transform
- - uid: 25867
+ - uid: 25886
components:
- pos: 12.39114,19.557714
parent: 2
type: Transform
- - uid: 25868
+ - uid: 25887
components:
- pos: 12.594265,19.82334
parent: 2
type: Transform
- proto: VendingBarDrobe
entities:
- - uid: 25869
+ - uid: 25888
components:
- flags: SessionSpecific
type: MetaData
@@ -169907,7 +170022,7 @@ entities:
type: Transform
- proto: VendingMachineAtmosDrobe
entities:
- - uid: 25870
+ - uid: 25889
components:
- flags: SessionSpecific
type: MetaData
@@ -169916,28 +170031,28 @@ entities:
type: Transform
- proto: VendingMachineBooze
entities:
- - uid: 25871
+ - uid: 25890
components:
- flags: SessionSpecific
type: MetaData
- pos: -41.5,-74.5
parent: 2
type: Transform
- - uid: 25872
+ - uid: 25891
components:
- flags: SessionSpecific
type: MetaData
- pos: 18.5,10.5
parent: 2
type: Transform
- - uid: 25873
+ - uid: 25892
components:
- flags: SessionSpecific
type: MetaData
- pos: 36.5,51.5
parent: 2
type: Transform
- - uid: 25874
+ - uid: 25893
components:
- flags: SessionSpecific
type: MetaData
@@ -169946,7 +170061,7 @@ entities:
type: Transform
- proto: VendingMachineCargoDrobe
entities:
- - uid: 25875
+ - uid: 25894
components:
- flags: SessionSpecific
type: MetaData
@@ -169955,7 +170070,7 @@ entities:
type: Transform
- proto: VendingMachineCart
entities:
- - uid: 25876
+ - uid: 25895
components:
- flags: SessionSpecific
type: MetaData
@@ -169964,21 +170079,21 @@ entities:
type: Transform
- proto: VendingMachineChang
entities:
- - uid: 25877
+ - uid: 25896
components:
- flags: SessionSpecific
type: MetaData
- pos: 53.5,3.5
parent: 2
type: Transform
- - uid: 25878
+ - uid: 25897
components:
- flags: SessionSpecific
type: MetaData
- pos: -2.5,-31.5
parent: 2
type: Transform
- - uid: 25879
+ - uid: 25898
components:
- flags: SessionSpecific
type: MetaData
@@ -169987,7 +170102,7 @@ entities:
type: Transform
- proto: VendingMachineChapel
entities:
- - uid: 25880
+ - uid: 25899
components:
- flags: SessionSpecific
type: MetaData
@@ -169996,7 +170111,7 @@ entities:
type: Transform
- proto: VendingMachineChefDrobe
entities:
- - uid: 25881
+ - uid: 25900
components:
- flags: SessionSpecific
type: MetaData
@@ -170005,7 +170120,7 @@ entities:
type: Transform
- proto: VendingMachineChefvend
entities:
- - uid: 25882
+ - uid: 25901
components:
- flags: SessionSpecific
type: MetaData
@@ -170014,7 +170129,7 @@ entities:
type: Transform
- proto: VendingMachineChemDrobe
entities:
- - uid: 25883
+ - uid: 25902
components:
- flags: SessionSpecific
type: MetaData
@@ -170023,51 +170138,49 @@ entities:
type: Transform
- proto: VendingMachineChemicals
entities:
- - uid: 25884
+ - uid: 25903
components:
- - flags: SessionSpecific
- type: MetaData
- pos: 5.5,-45.5
parent: 2
type: Transform
- proto: VendingMachineCigs
entities:
- - uid: 25885
+ - uid: 25904
components:
- flags: SessionSpecific
type: MetaData
- pos: 2.5,58.5
parent: 2
type: Transform
- - uid: 25886
+ - uid: 25905
components:
- flags: SessionSpecific
type: MetaData
- pos: -6.5,-34.5
parent: 2
type: Transform
- - uid: 25887
+ - uid: 25906
components:
- flags: SessionSpecific
type: MetaData
- pos: 7.5,-2.5
parent: 2
type: Transform
- - uid: 25888
+ - uid: 25907
components:
- flags: SessionSpecific
type: MetaData
- pos: 61.5,-13.5
parent: 2
type: Transform
- - uid: 25889
+ - uid: 25908
components:
- flags: SessionSpecific
type: MetaData
- pos: -13.5,8.5
parent: 2
type: Transform
- - uid: 25890
+ - uid: 25909
components:
- flags: SessionSpecific
type: MetaData
@@ -170076,7 +170189,7 @@ entities:
type: Transform
- proto: VendingMachineClothing
entities:
- - uid: 25891
+ - uid: 25910
components:
- flags: SessionSpecific
type: MetaData
@@ -170085,77 +170198,77 @@ entities:
type: Transform
- proto: VendingMachineCoffee
entities:
- - uid: 25892
+ - uid: 25911
components:
- flags: SessionSpecific
type: MetaData
- pos: -10.5,-52.5
parent: 2
type: Transform
- - uid: 25893
+ - uid: 25912
components:
- flags: SessionSpecific
type: MetaData
- pos: 37.5,-17.5
parent: 2
type: Transform
- - uid: 25894
+ - uid: 25913
components:
- flags: SessionSpecific
type: MetaData
- pos: 45.5,17.5
parent: 2
type: Transform
- - uid: 25895
+ - uid: 25914
components:
- flags: SessionSpecific
type: MetaData
- pos: 51.5,3.5
parent: 2
type: Transform
- - uid: 25896
+ - uid: 25915
components:
- flags: SessionSpecific
type: MetaData
- pos: 60.5,-13.5
parent: 2
type: Transform
- - uid: 25897
+ - uid: 25916
components:
- flags: SessionSpecific
type: MetaData
- pos: -33.5,-22.5
parent: 2
type: Transform
- - uid: 25898
+ - uid: 25917
components:
- flags: SessionSpecific
type: MetaData
- pos: -43.5,4.5
parent: 2
type: Transform
- - uid: 25899
+ - uid: 25918
components:
- flags: SessionSpecific
type: MetaData
- pos: -0.5,43.5
parent: 2
type: Transform
- - uid: 25900
+ - uid: 25919
components:
- flags: SessionSpecific
type: MetaData
- pos: -14.5,49.5
parent: 2
type: Transform
- - uid: 25901
+ - uid: 25920
components:
- flags: SessionSpecific
type: MetaData
- pos: 51.5,-37.5
parent: 2
type: Transform
- - uid: 25902
+ - uid: 25921
components:
- flags: SessionSpecific
type: MetaData
@@ -170164,21 +170277,21 @@ entities:
type: Transform
- proto: VendingMachineCola
entities:
- - uid: 25903
+ - uid: 25922
components:
- flags: SessionSpecific
type: MetaData
- pos: 8.5,-2.5
parent: 2
type: Transform
- - uid: 25904
+ - uid: 25923
components:
- flags: SessionSpecific
type: MetaData
- pos: 27.5,-11.5
parent: 2
type: Transform
- - uid: 25905
+ - uid: 25924
components:
- flags: SessionSpecific
type: MetaData
@@ -170187,14 +170300,14 @@ entities:
type: Transform
- proto: VendingMachineCondiments
entities:
- - uid: 25906
+ - uid: 25925
components:
- flags: SessionSpecific
type: MetaData
- pos: 8.5,10.5
parent: 2
type: Transform
- - uid: 25907
+ - uid: 25926
components:
- flags: SessionSpecific
type: MetaData
@@ -170203,7 +170316,7 @@ entities:
type: Transform
- proto: VendingMachineDetDrobe
entities:
- - uid: 25908
+ - uid: 25927
components:
- flags: SessionSpecific
type: MetaData
@@ -170212,14 +170325,14 @@ entities:
type: Transform
- proto: VendingMachineDinnerware
entities:
- - uid: 25909
+ - uid: 25928
components:
- flags: SessionSpecific
type: MetaData
- pos: -0.5,5.5
parent: 2
type: Transform
- - uid: 25910
+ - uid: 25929
components:
- flags: SessionSpecific
type: MetaData
@@ -170228,28 +170341,28 @@ entities:
type: Transform
- proto: VendingMachineDiscount
entities:
- - uid: 25911
+ - uid: 25930
components:
- flags: SessionSpecific
type: MetaData
- pos: -6.5,-32.5
parent: 2
type: Transform
- - uid: 25912
+ - uid: 25931
components:
- flags: SessionSpecific
type: MetaData
- pos: -33.5,-23.5
parent: 2
type: Transform
- - uid: 25913
+ - uid: 25932
components:
- flags: SessionSpecific
type: MetaData
- pos: -43.5,3.5
parent: 2
type: Transform
- - uid: 25914
+ - uid: 25933
components:
- flags: SessionSpecific
type: MetaData
@@ -170258,7 +170371,7 @@ entities:
type: Transform
- proto: VendingMachineEngiDrobe
entities:
- - uid: 25915
+ - uid: 25934
components:
- flags: SessionSpecific
type: MetaData
@@ -170267,7 +170380,7 @@ entities:
type: Transform
- proto: VendingMachineEngivend
entities:
- - uid: 25916
+ - uid: 25935
components:
- flags: SessionSpecific
type: MetaData
@@ -170276,7 +170389,7 @@ entities:
type: Transform
- proto: VendingMachineGames
entities:
- - uid: 25917
+ - uid: 25936
components:
- flags: SessionSpecific
type: MetaData
@@ -170285,7 +170398,7 @@ entities:
type: Transform
- proto: VendingMachineGeneDrobe
entities:
- - uid: 25918
+ - uid: 25937
components:
- flags: SessionSpecific
type: MetaData
@@ -170294,7 +170407,7 @@ entities:
type: Transform
- proto: VendingMachineHappyHonk
entities:
- - uid: 25919
+ - uid: 25938
components:
- flags: SessionSpecific
type: MetaData
@@ -170303,7 +170416,7 @@ entities:
type: Transform
- proto: VendingMachineHydrobe
entities:
- - uid: 25920
+ - uid: 25939
components:
- flags: SessionSpecific
type: MetaData
@@ -170312,7 +170425,7 @@ entities:
type: Transform
- proto: VendingMachineJaniDrobe
entities:
- - uid: 25921
+ - uid: 25940
components:
- flags: SessionSpecific
type: MetaData
@@ -170321,7 +170434,7 @@ entities:
type: Transform
- proto: VendingMachineLawDrobe
entities:
- - uid: 25922
+ - uid: 25941
components:
- flags: SessionSpecific
type: MetaData
@@ -170330,14 +170443,14 @@ entities:
type: Transform
- proto: VendingMachineMedical
entities:
- - uid: 25923
+ - uid: 25942
components:
- flags: SessionSpecific
type: MetaData
- pos: -28.5,-75.5
parent: 2
type: Transform
- - uid: 25924
+ - uid: 25943
components:
- flags: SessionSpecific
type: MetaData
@@ -170346,7 +170459,7 @@ entities:
type: Transform
- proto: VendingMachineMediDrobe
entities:
- - uid: 25925
+ - uid: 25944
components:
- flags: SessionSpecific
type: MetaData
@@ -170355,7 +170468,7 @@ entities:
type: Transform
- proto: VendingMachineNutri
entities:
- - uid: 25926
+ - uid: 25945
components:
- flags: SessionSpecific
type: MetaData
@@ -170364,14 +170477,14 @@ entities:
type: Transform
- proto: VendingMachineRestockSmokes
entities:
- - uid: 25927
+ - uid: 25946
components:
- pos: -26.439571,39.52594
parent: 2
type: Transform
- proto: VendingMachineRoboDrobe
entities:
- - uid: 25928
+ - uid: 25947
components:
- flags: SessionSpecific
type: MetaData
@@ -170380,7 +170493,7 @@ entities:
type: Transform
- proto: VendingMachineRobotics
entities:
- - uid: 25929
+ - uid: 25948
components:
- flags: SessionSpecific
type: MetaData
@@ -170389,7 +170502,7 @@ entities:
type: Transform
- proto: VendingMachineSalvage
entities:
- - uid: 25930
+ - uid: 25949
components:
- flags: SessionSpecific
type: MetaData
@@ -170398,7 +170511,7 @@ entities:
type: Transform
- proto: VendingMachineSciDrobe
entities:
- - uid: 25931
+ - uid: 25950
components:
- flags: SessionSpecific
type: MetaData
@@ -170407,7 +170520,7 @@ entities:
type: Transform
- proto: VendingMachineSec
entities:
- - uid: 25932
+ - uid: 25951
components:
- flags: SessionSpecific
type: MetaData
@@ -170416,7 +170529,7 @@ entities:
type: Transform
- proto: VendingMachineSecDrobe
entities:
- - uid: 25933
+ - uid: 25952
components:
- flags: SessionSpecific
type: MetaData
@@ -170425,14 +170538,14 @@ entities:
type: Transform
- proto: VendingMachineSeeds
entities:
- - uid: 25934
+ - uid: 25953
components:
- flags: SessionSpecific
type: MetaData
- pos: -8.5,12.5
parent: 2
type: Transform
- - uid: 25935
+ - uid: 25954
components:
- flags: SessionSpecific
type: MetaData
@@ -170441,32 +170554,23 @@ entities:
type: Transform
- proto: VendingMachineSeedsUnlocked
entities:
- - uid: 25936
+ - uid: 25955
components:
- flags: SessionSpecific
type: MetaData
- pos: 58.5,10.5
parent: 2
type: Transform
-- proto: VendingMachineSmartFridge
- entities:
- - uid: 25937
- components:
- - flags: SessionSpecific
- type: MetaData
- - pos: -4.5,-61.5
- parent: 2
- type: Transform
- proto: VendingMachineSnack
entities:
- - uid: 25938
+ - uid: 25956
components:
- flags: SessionSpecific
type: MetaData
- pos: 2.5,57.5
parent: 2
type: Transform
- - uid: 25939
+ - uid: 25957
components:
- flags: SessionSpecific
type: MetaData
@@ -170475,42 +170579,42 @@ entities:
type: Transform
- proto: VendingMachineSovietSoda
entities:
- - uid: 25940
+ - uid: 25958
components:
- flags: SessionSpecific
type: MetaData
- pos: -1.5,-8.5
parent: 2
type: Transform
- - uid: 25941
+ - uid: 25959
components:
- flags: SessionSpecific
type: MetaData
- pos: 61.5,-15.5
parent: 2
type: Transform
- - uid: 25942
+ - uid: 25960
components:
- flags: SessionSpecific
type: MetaData
- pos: -37.5,-72.5
parent: 2
type: Transform
- - uid: 25943
+ - uid: 25961
components:
- flags: SessionSpecific
type: MetaData
- pos: -40.5,27.5
parent: 2
type: Transform
- - uid: 25944
+ - uid: 25962
components:
- flags: SessionSpecific
type: MetaData
- pos: 44.5,-15.5
parent: 2
type: Transform
- - uid: 25945
+ - uid: 25963
components:
- flags: SessionSpecific
type: MetaData
@@ -170519,7 +170623,7 @@ entities:
type: Transform
- proto: VendingMachineTankDispenserEngineering
entities:
- - uid: 25946
+ - uid: 25964
components:
- flags: SessionSpecific
type: MetaData
@@ -170528,42 +170632,42 @@ entities:
type: Transform
- proto: VendingMachineTankDispenserEVA
entities:
- - uid: 25947
+ - uid: 25965
components:
- flags: SessionSpecific
type: MetaData
- pos: 28.5,-14.5
parent: 2
type: Transform
- - uid: 25948
+ - uid: 25966
components:
- flags: SessionSpecific
type: MetaData
- pos: -22.5,-36.5
parent: 2
type: Transform
- - uid: 25949
+ - uid: 25967
components:
- flags: SessionSpecific
type: MetaData
- pos: -35.5,-51.5
parent: 2
type: Transform
- - uid: 25950
+ - uid: 25968
components:
- flags: SessionSpecific
type: MetaData
- pos: -48.5,36.5
parent: 2
type: Transform
- - uid: 25951
+ - uid: 25969
components:
- flags: SessionSpecific
type: MetaData
- pos: 28.5,47.5
parent: 2
type: Transform
- - uid: 25952
+ - uid: 25970
components:
- flags: SessionSpecific
type: MetaData
@@ -170572,21 +170676,21 @@ entities:
type: Transform
- proto: VendingMachineTheater
entities:
- - uid: 25953
+ - uid: 25971
components:
- flags: SessionSpecific
type: MetaData
- pos: -8.5,-4.5
parent: 2
type: Transform
- - uid: 25954
+ - uid: 25972
components:
- flags: SessionSpecific
type: MetaData
- pos: -20.5,31.5
parent: 2
type: Transform
- - uid: 25955
+ - uid: 25973
components:
- flags: SessionSpecific
type: MetaData
@@ -170595,28 +170699,28 @@ entities:
type: Transform
- proto: VendingMachineVendomat
entities:
- - uid: 25956
+ - uid: 25974
components:
- flags: SessionSpecific
type: MetaData
- pos: 27.5,-12.5
parent: 2
type: Transform
- - uid: 25957
+ - uid: 25975
components:
- flags: SessionSpecific
type: MetaData
- pos: -27.5,-70.5
parent: 2
type: Transform
- - uid: 25958
+ - uid: 25976
components:
- flags: SessionSpecific
type: MetaData
- pos: -43.5,6.5
parent: 2
type: Transform
- - uid: 25959
+ - uid: 25977
components:
- flags: SessionSpecific
type: MetaData
@@ -170625,7 +170729,7 @@ entities:
type: Transform
- proto: VendingMachineViroDrobe
entities:
- - uid: 25960
+ - uid: 25978
components:
- flags: SessionSpecific
type: MetaData
@@ -170634,12 +170738,12 @@ entities:
type: Transform
- proto: VendingMachineWinter
entities:
- - uid: 25961
+ - uid: 25979
components:
- pos: 11.5,-82.5
parent: 2
type: Transform
- - uid: 25962
+ - uid: 25980
components:
- flags: SessionSpecific
type: MetaData
@@ -170648,28 +170752,28 @@ entities:
type: Transform
- proto: VendingMachineYouTool
entities:
- - uid: 25963
+ - uid: 25981
components:
- flags: SessionSpecific
type: MetaData
- pos: 39.5,-53.5
parent: 2
type: Transform
- - uid: 25964
+ - uid: 25982
components:
- flags: SessionSpecific
type: MetaData
- pos: -37.5,-4.5
parent: 2
type: Transform
- - uid: 25965
+ - uid: 25983
components:
- flags: SessionSpecific
type: MetaData
- pos: -23.5,-19.5
parent: 2
type: Transform
- - uid: 25966
+ - uid: 25984
components:
- flags: SessionSpecific
type: MetaData
@@ -170678,103 +170782,103 @@ entities:
type: Transform
- proto: VoiceTrigger
entities:
- - uid: 25967
+ - uid: 25985
components:
- pos: 65.475975,-28.50289
parent: 2
type: Transform
- proto: WallmountTelevision
entities:
- - uid: 25968
+ - uid: 25986
components:
- pos: 17.5,8.5
parent: 2
type: Transform
- proto: WallPlastitanium
entities:
- - uid: 25969
+ - uid: 25987
components:
- rot: -1.5707963267948966 rad
pos: -55.5,-90.5
parent: 2
type: Transform
- - uid: 25970
+ - uid: 25988
components:
- rot: 1.5707963267948966 rad
pos: -53.5,-88.5
parent: 2
type: Transform
- - uid: 25971
+ - uid: 25989
components:
- rot: 1.5707963267948966 rad
pos: -53.5,-86.5
parent: 2
type: Transform
- - uid: 25972
+ - uid: 25990
components:
- rot: 1.5707963267948966 rad
pos: -52.5,-85.5
parent: 2
type: Transform
- - uid: 25973
+ - uid: 25991
components:
- rot: 1.5707963267948966 rad
pos: -52.5,-89.5
parent: 2
type: Transform
- - uid: 25974
+ - uid: 25992
components:
- pos: 62.5,-46.5
parent: 2
type: Transform
- - uid: 25975
+ - uid: 25993
components:
- pos: -55.5,-84.5
parent: 2
type: Transform
- - uid: 25976
+ - uid: 25994
components:
- pos: -53.5,-85.5
parent: 2
type: Transform
- - uid: 25977
+ - uid: 25995
components:
- pos: -56.5,-89.5
parent: 2
type: Transform
- - uid: 25978
+ - uid: 25996
components:
- pos: -57.5,-89.5
parent: 2
type: Transform
- - uid: 25979
+ - uid: 25997
components:
- pos: -53.5,-89.5
parent: 2
type: Transform
- - uid: 25980
+ - uid: 25998
components:
- rot: 3.141592653589793 rad
pos: -57.5,-86.5
parent: 2
type: Transform
- - uid: 25981
+ - uid: 25999
components:
- rot: 3.141592653589793 rad
pos: -57.5,-88.5
parent: 2
type: Transform
- - uid: 25982
+ - uid: 26000
components:
- pos: -57.5,-85.5
parent: 2
type: Transform
- - uid: 25983
+ - uid: 26001
components:
- pos: -56.5,-85.5
parent: 2
type: Transform
- - uid: 25984
+ - uid: 26002
components:
- rot: -1.5707963267948966 rad
pos: -53.5,-90.5
@@ -170782,30 +170886,30 @@ entities:
type: Transform
- proto: WallPlastitaniumDiagonal
entities:
- - uid: 25985
+ - uid: 26003
components:
- rot: 1.5707963267948966 rad
pos: -58.5,-89.5
parent: 2
type: Transform
- - uid: 25986
+ - uid: 26004
components:
- pos: -58.5,-85.5
parent: 2
type: Transform
- - uid: 25987
+ - uid: 26005
components:
- rot: 3.141592653589793 rad
pos: -55.5,-85.5
parent: 2
type: Transform
- - uid: 25988
+ - uid: 26006
components:
- rot: -1.5707963267948966 rad
pos: -55.5,-89.5
parent: 2
type: Transform
- - uid: 25989
+ - uid: 26007
components:
- rot: -1.5707963267948966 rad
pos: -53.5,-84.5
@@ -170813,14028 +170917,14029 @@ entities:
type: Transform
- proto: WallReinforced
entities:
- - uid: 25990
+ - uid: 26008
components:
- rot: 3.141592653589793 rad
pos: -20.5,-91.5
parent: 2
type: Transform
- - uid: 25991
+ - uid: 26009
components:
- rot: 3.141592653589793 rad
pos: -25.5,-91.5
parent: 2
type: Transform
- - uid: 25992
+ - uid: 26010
components:
- pos: 12.5,26.5
parent: 2
type: Transform
- - uid: 25993
+ - uid: 26011
components:
- pos: 11.5,27.5
parent: 2
type: Transform
- - uid: 25994
+ - uid: 26012
components:
- pos: 7.5,26.5
parent: 2
type: Transform
- - uid: 25995
+ - uid: 26013
components:
- rot: 3.141592653589793 rad
pos: 24.5,-31.5
parent: 2
type: Transform
- - uid: 25996
+ - uid: 26014
components:
- rot: 3.141592653589793 rad
pos: 23.5,-31.5
parent: 2
type: Transform
- - uid: 25997
+ - uid: 26015
components:
- rot: 3.141592653589793 rad
pos: 23.5,-33.5
parent: 2
type: Transform
- - uid: 25998
+ - uid: 26016
components:
- pos: 29.5,-33.5
parent: 2
type: Transform
- - uid: 25999
+ - uid: 26017
components:
- pos: 6.5,-6.5
parent: 2
type: Transform
- - uid: 26000
+ - uid: 26018
components:
- pos: -0.5,-7.5
parent: 2
type: Transform
- - uid: 26001
+ - uid: 26019
components:
- rot: 1.5707963267948966 rad
pos: 19.5,-31.5
parent: 2
type: Transform
- - uid: 26002
+ - uid: 26020
components:
- pos: 0.5,-2.5
parent: 2
type: Transform
- - uid: 26003
+ - uid: 26021
components:
- pos: 0.5,-3.5
parent: 2
type: Transform
- - uid: 26004
+ - uid: 26022
components:
- pos: 0.5,-6.5
parent: 2
type: Transform
- - uid: 26005
+ - uid: 26023
components:
- rot: 1.5707963267948966 rad
pos: 0.5,-4.5
parent: 2
type: Transform
- - uid: 26006
+ - uid: 26024
components:
- pos: -2.5,-6.5
parent: 2
type: Transform
- - uid: 26007
+ - uid: 26025
components:
- rot: 1.5707963267948966 rad
pos: 19.5,-30.5
parent: 2
type: Transform
- - uid: 26008
+ - uid: 26026
components:
- pos: -0.5,-2.5
parent: 2
type: Transform
- - uid: 26009
+ - uid: 26027
components:
- pos: 0.5,-7.5
parent: 2
type: Transform
- - uid: 26010
+ - uid: 26028
components:
- rot: 1.5707963267948966 rad
pos: 19.5,-29.5
parent: 2
type: Transform
- - uid: 26011
+ - uid: 26029
components:
- pos: 4.5,-8.5
parent: 2
type: Transform
- - uid: 26012
+ - uid: 26030
components:
- pos: -2.5,-4.5
parent: 2
type: Transform
- - uid: 26013
+ - uid: 26031
components:
- pos: -1.5,-7.5
parent: 2
type: Transform
- - uid: 26014
+ - uid: 26032
components:
- pos: -16.5,-56.5
parent: 2
type: Transform
- - uid: 26015
+ - uid: 26033
components:
- pos: -23.5,-53.5
parent: 2
type: Transform
- - uid: 26016
+ - uid: 26034
components:
- pos: 28.5,-40.5
parent: 2
type: Transform
- - uid: 26017
+ - uid: 26035
components:
- pos: 2.5,-8.5
parent: 2
type: Transform
- - uid: 26018
+ - uid: 26036
components:
- rot: 3.141592653589793 rad
pos: 3.5,-8.5
parent: 2
type: Transform
- - uid: 26019
+ - uid: 26037
components:
- pos: 5.5,-8.5
parent: 2
type: Transform
- - uid: 26020
+ - uid: 26038
components:
- pos: 22.5,-40.5
parent: 2
type: Transform
- - uid: 26021
+ - uid: 26039
components:
- pos: 0.5,-8.5
parent: 2
type: Transform
- - uid: 26022
+ - uid: 26040
components:
- pos: -1.5,-2.5
parent: 2
type: Transform
- - uid: 26023
+ - uid: 26041
components:
- pos: -38.5,-20.5
parent: 2
type: Transform
- - uid: 26024
+ - uid: 26042
components:
- pos: 6.5,-4.5
parent: 2
type: Transform
- - uid: 26025
+ - uid: 26043
components:
- pos: -2.5,-3.5
parent: 2
type: Transform
- - uid: 26026
+ - uid: 26044
components:
- pos: 6.5,-5.5
parent: 2
type: Transform
- - uid: 26027
+ - uid: 26045
components:
- pos: -2.5,-2.5
parent: 2
type: Transform
- - uid: 26028
+ - uid: 26046
components:
- pos: -2.5,-7.5
parent: 2
type: Transform
- - uid: 26029
+ - uid: 26047
components:
- pos: -38.5,-21.5
parent: 2
type: Transform
- - uid: 26030
+ - uid: 26048
components:
- pos: -37.5,-21.5
parent: 2
type: Transform
- - uid: 26031
+ - uid: 26049
components:
- pos: -36.5,-21.5
parent: 2
type: Transform
- - uid: 26032
+ - uid: 26050
components:
- pos: -35.5,-21.5
parent: 2
type: Transform
- - uid: 26033
- components:
- - pos: -34.5,-21.5
- parent: 2
- type: Transform
- - uid: 26034
- components:
- - pos: -33.5,-21.5
- parent: 2
- type: Transform
- - uid: 26035
+ - uid: 26051
components:
- - pos: -33.5,-20.5
+ - pos: -35.5,-20.5
parent: 2
type: Transform
- - uid: 26036
+ - uid: 26052
components:
- pos: -22.5,-53.5
parent: 2
type: Transform
- - uid: 26037
+ - uid: 26053
components:
- pos: -23.5,-54.5
parent: 2
type: Transform
- - uid: 26038
+ - uid: 26054
components:
- pos: -22.5,-56.5
parent: 2
type: Transform
- - uid: 26039
+ - uid: 26055
components:
- pos: -23.5,-55.5
parent: 2
type: Transform
- - uid: 26040
+ - uid: 26056
components:
- pos: -23.5,-56.5
parent: 2
type: Transform
- - uid: 26041
+ - uid: 26057
components:
- rot: -1.5707963267948966 rad
pos: -51.5,-33.5
parent: 2
type: Transform
- - uid: 26042
+ - uid: 26058
components:
- rot: -1.5707963267948966 rad
pos: -50.5,-33.5
parent: 2
type: Transform
- - uid: 26043
+ - uid: 26059
components:
- rot: -1.5707963267948966 rad
pos: -49.5,-33.5
parent: 2
type: Transform
- - uid: 26044
+ - uid: 26060
components:
- rot: -1.5707963267948966 rad
pos: -49.5,-24.5
parent: 2
type: Transform
- - uid: 26045
+ - uid: 26061
components:
- rot: 1.5707963267948966 rad
pos: -49.5,-25.5
parent: 2
type: Transform
- - uid: 26046
+ - uid: 26062
components:
- rot: 1.5707963267948966 rad
pos: -45.5,-24.5
parent: 2
type: Transform
- - uid: 26047
+ - uid: 26063
components:
- rot: -1.5707963267948966 rad
pos: -48.5,-24.5
parent: 2
type: Transform
- - uid: 26048
+ - uid: 26064
components:
- rot: -1.5707963267948966 rad
pos: -48.5,-33.5
parent: 2
type: Transform
- - uid: 26049
+ - uid: 26065
components:
- rot: 1.5707963267948966 rad
pos: -52.5,-35.5
parent: 2
type: Transform
- - uid: 26050
+ - uid: 26066
components:
- pos: -42.5,-33.5
parent: 2
type: Transform
- - uid: 26051
+ - uid: 26067
components:
- pos: -43.5,-33.5
parent: 2
type: Transform
- - uid: 26052
+ - uid: 26068
components:
- pos: -45.5,-33.5
parent: 2
type: Transform
- - uid: 26053
+ - uid: 26069
components:
- pos: -46.5,-24.5
parent: 2
type: Transform
- - uid: 26054
+ - uid: 26070
components:
- rot: -1.5707963267948966 rad
pos: -63.5,-33.5
parent: 2
type: Transform
- - uid: 26055
+ - uid: 26071
components:
- rot: 3.141592653589793 rad
pos: -41.5,-33.5
parent: 2
type: Transform
- - uid: 26056
+ - uid: 26072
components:
- rot: 3.141592653589793 rad
pos: -58.5,-43.5
parent: 2
type: Transform
- - uid: 26057
+ - uid: 26073
components:
- rot: 1.5707963267948966 rad
pos: -63.5,-38.5
parent: 2
type: Transform
- - uid: 26058
+ - uid: 26074
components:
- rot: 1.5707963267948966 rad
pos: -65.5,-35.5
parent: 2
type: Transform
- - uid: 26059
+ - uid: 26075
components:
- rot: 1.5707963267948966 rad
pos: -67.5,-35.5
parent: 2
type: Transform
- - uid: 26060
+ - uid: 26076
components:
- rot: 1.5707963267948966 rad
pos: -59.5,-38.5
parent: 2
type: Transform
- - uid: 26061
+ - uid: 26077
components:
- pos: -44.5,-33.5
parent: 2
type: Transform
- - uid: 26062
+ - uid: 26078
components:
- rot: 3.141592653589793 rad
pos: -59.5,-44.5
parent: 2
type: Transform
- - uid: 26063
+ - uid: 26079
components:
- pos: -61.5,-38.5
parent: 2
type: Transform
- - uid: 26064
+ - uid: 26080
components:
- rot: 1.5707963267948966 rad
pos: -59.5,-35.5
parent: 2
type: Transform
- - uid: 26065
+ - uid: 26081
components:
- rot: 1.5707963267948966 rad
pos: -66.5,-35.5
parent: 2
type: Transform
- - uid: 26066
+ - uid: 26082
components:
- rot: 1.5707963267948966 rad
pos: -64.5,-35.5
parent: 2
type: Transform
- - uid: 26067
+ - uid: 26083
components:
- rot: 3.141592653589793 rad
pos: -58.5,-44.5
parent: 2
type: Transform
- - uid: 26068
+ - uid: 26084
components:
- pos: -64.5,-44.5
parent: 2
type: Transform
- - uid: 26069
+ - uid: 26085
components:
- pos: -78.5,-44.5
parent: 2
type: Transform
- - uid: 26070
+ - uid: 26086
components:
- pos: -76.5,-39.5
parent: 2
type: Transform
- - uid: 26071
+ - uid: 26087
components:
- rot: 3.141592653589793 rad
pos: -61.5,-26.5
parent: 2
type: Transform
- - uid: 26072
+ - uid: 26088
components:
- pos: -71.5,-36.5
parent: 2
type: Transform
- - uid: 26073
+ - uid: 26089
components:
- pos: -70.5,-36.5
parent: 2
type: Transform
- - uid: 26074
+ - uid: 26090
components:
- pos: -69.5,-36.5
parent: 2
type: Transform
- - uid: 26075
+ - uid: 26091
components:
- pos: -68.5,-36.5
parent: 2
type: Transform
- - uid: 26076
+ - uid: 26092
components:
- pos: -74.5,-36.5
parent: 2
type: Transform
- - uid: 26077
+ - uid: 26093
components:
- pos: -68.5,-35.5
parent: 2
type: Transform
- - uid: 26078
+ - uid: 26094
components:
- pos: -68.5,-34.5
parent: 2
type: Transform
- - uid: 26079
+ - uid: 26095
components:
- pos: -71.5,-34.5
parent: 2
type: Transform
- - uid: 26080
+ - uid: 26096
components:
- rot: -1.5707963267948966 rad
pos: -74.5,-43.5
parent: 2
type: Transform
- - uid: 26081
+ - uid: 26097
components:
- rot: -1.5707963267948966 rad
pos: -74.5,-39.5
parent: 2
type: Transform
- - uid: 26082
+ - uid: 26098
components:
- rot: -1.5707963267948966 rad
pos: -74.5,-38.5
parent: 2
type: Transform
- - uid: 26083
+ - uid: 26099
components:
- rot: -1.5707963267948966 rad
pos: -74.5,-37.5
parent: 2
type: Transform
- - uid: 26084
+ - uid: 26100
components:
- pos: -76.5,-30.5
parent: 2
type: Transform
- - uid: 26085
+ - uid: 26101
components:
- pos: -77.5,-30.5
parent: 2
type: Transform
- - uid: 26086
+ - uid: 26102
components:
- pos: -64.5,-46.5
parent: 2
type: Transform
- - uid: 26087
+ - uid: 26103
components:
- rot: 1.5707963267948966 rad
pos: -64.5,-38.5
parent: 2
type: Transform
- - uid: 26088
+ - uid: 26104
components:
- rot: -1.5707963267948966 rad
pos: -78.5,-43.5
parent: 2
type: Transform
- - uid: 26089
+ - uid: 26105
components:
- rot: -1.5707963267948966 rad
pos: -78.5,-39.5
parent: 2
type: Transform
- - uid: 26090
+ - uid: 26106
components:
- pos: -2.5,16.5
parent: 2
type: Transform
- - uid: 26091
+ - uid: 26107
components:
- pos: 52.5,-88.5
parent: 2
type: Transform
- - uid: 26092
+ - uid: 26108
components:
- pos: 51.5,-88.5
parent: 2
type: Transform
- - uid: 26093
+ - uid: 26109
components:
- pos: 50.5,-88.5
parent: 2
type: Transform
- - uid: 26094
+ - uid: 26110
components:
- pos: 50.5,-90.5
parent: 2
type: Transform
- - uid: 26095
+ - uid: 26111
components:
- pos: 51.5,-90.5
parent: 2
type: Transform
- - uid: 26096
+ - uid: 26112
components:
- pos: 52.5,-90.5
parent: 2
type: Transform
- - uid: 26097
+ - uid: 26113
components:
- pos: 50.5,-83.5
parent: 2
type: Transform
- - uid: 26098
+ - uid: 26114
components:
- pos: 52.5,-81.5
parent: 2
type: Transform
- - uid: 26099
+ - uid: 26115
components:
- pos: 50.5,-81.5
parent: 2
type: Transform
- - uid: 26100
+ - uid: 26116
components:
- pos: 51.5,-83.5
parent: 2
type: Transform
- - uid: 26101
+ - uid: 26117
components:
- pos: 51.5,-81.5
parent: 2
type: Transform
- - uid: 26102
+ - uid: 26118
components:
- pos: 52.5,-83.5
parent: 2
type: Transform
- - uid: 26103
+ - uid: 26119
components:
- pos: 70.5,-26.5
parent: 2
type: Transform
- - uid: 26104
+ - uid: 26120
components:
- pos: 64.5,-29.5
parent: 2
type: Transform
- - uid: 26105
+ - uid: 26121
components:
- pos: 64.5,-28.5
parent: 2
type: Transform
- - uid: 26106
+ - uid: 26122
components:
- pos: 66.5,-26.5
parent: 2
type: Transform
- - uid: 26107
+ - uid: 26123
components:
- pos: 67.5,-26.5
parent: 2
type: Transform
- - uid: 26108
+ - uid: 26124
components:
- rot: -1.5707963267948966 rad
pos: -48.5,41.5
parent: 2
type: Transform
- - uid: 26109
+ - uid: 26125
components:
- rot: -1.5707963267948966 rad
pos: -49.5,41.5
parent: 2
type: Transform
- - uid: 26110
+ - uid: 26126
components:
- rot: -1.5707963267948966 rad
pos: -50.5,41.5
parent: 2
type: Transform
- - uid: 26111
+ - uid: 26127
components:
- rot: -1.5707963267948966 rad
pos: -50.5,45.5
parent: 2
type: Transform
- - uid: 26112
+ - uid: 26128
components:
- rot: -1.5707963267948966 rad
pos: -50.5,46.5
parent: 2
type: Transform
- - uid: 26113
+ - uid: 26129
components:
- rot: -1.5707963267948966 rad
pos: -53.5,41.5
parent: 2
type: Transform
- - uid: 26114
+ - uid: 26130
components:
- rot: -1.5707963267948966 rad
pos: -52.5,41.5
parent: 2
type: Transform
- - uid: 26115
+ - uid: 26131
components:
- rot: -1.5707963267948966 rad
pos: -51.5,41.5
parent: 2
type: Transform
- - uid: 26116
+ - uid: 26132
components:
- rot: -1.5707963267948966 rad
pos: -51.5,44.5
parent: 2
type: Transform
- - uid: 26117
+ - uid: 26133
components:
- rot: -1.5707963267948966 rad
pos: -52.5,44.5
parent: 2
type: Transform
- - uid: 26118
+ - uid: 26134
components:
- rot: -1.5707963267948966 rad
pos: -53.5,44.5
parent: 2
type: Transform
- - uid: 26119
+ - uid: 26135
components:
- rot: -1.5707963267948966 rad
pos: -48.5,45.5
parent: 2
type: Transform
- - uid: 26120
+ - uid: 26136
components:
- rot: -1.5707963267948966 rad
pos: -43.5,40.5
parent: 2
type: Transform
- - uid: 26121
+ - uid: 26137
components:
- rot: -1.5707963267948966 rad
pos: -44.5,40.5
parent: 2
type: Transform
- - uid: 26122
+ - uid: 26138
components:
- rot: 1.5707963267948966 rad
pos: 29.5,-64.5
parent: 2
type: Transform
- - uid: 26123
+ - uid: 26139
components:
- rot: 3.141592653589793 rad
pos: 34.5,-10.5
parent: 2
type: Transform
- - uid: 26124
+ - uid: 26140
components:
- rot: 3.141592653589793 rad
pos: 23.5,-57.5
parent: 2
type: Transform
- - uid: 26125
+ - uid: 26141
components:
- pos: 11.5,-30.5
parent: 2
type: Transform
- - uid: 26126
+ - uid: 26142
components:
- rot: -1.5707963267948966 rad
pos: 37.5,3.5
parent: 2
type: Transform
- - uid: 26127
+ - uid: 26143
components:
- pos: 72.5,-42.5
parent: 2
type: Transform
- - uid: 26128
+ - uid: 26144
components:
- pos: 71.5,-42.5
parent: 2
type: Transform
- - uid: 26129
+ - uid: 26145
components:
- rot: -1.5707963267948966 rad
pos: 36.5,9.5
parent: 2
type: Transform
- - uid: 26130
+ - uid: 26146
components:
- rot: -1.5707963267948966 rad
pos: 0.5,-79.5
parent: 2
type: Transform
- - uid: 26131
+ - uid: 26147
components:
- rot: 3.141592653589793 rad
pos: 26.5,-61.5
parent: 2
type: Transform
- - uid: 26132
+ - uid: 26148
components:
- rot: 3.141592653589793 rad
pos: 30.5,-9.5
parent: 2
type: Transform
- - uid: 26133
+ - uid: 26149
components:
- rot: 3.141592653589793 rad
pos: 33.5,-61.5
parent: 2
type: Transform
- - uid: 26134
+ - uid: 26150
components:
- rot: -1.5707963267948966 rad
pos: 65.5,-38.5
parent: 2
type: Transform
- - uid: 26135
+ - uid: 26151
components:
- rot: -1.5707963267948966 rad
pos: 37.5,6.5
parent: 2
type: Transform
- - uid: 26136
+ - uid: 26152
components:
- pos: 66.5,-42.5
parent: 2
type: Transform
- - uid: 26137
+ - uid: 26153
components:
- rot: 3.141592653589793 rad
pos: 24.5,-61.5
parent: 2
type: Transform
- - uid: 26138
+ - uid: 26154
components:
- pos: 67.5,-42.5
parent: 2
type: Transform
- - uid: 26139
+ - uid: 26155
components:
- rot: -1.5707963267948966 rad
pos: 33.5,12.5
parent: 2
type: Transform
- - uid: 26140
+ - uid: 26156
components:
- rot: -1.5707963267948966 rad
pos: -25.5,-83.5
parent: 2
type: Transform
- - uid: 26141
+ - uid: 26157
components:
- pos: 30.5,-26.5
parent: 2
type: Transform
- - uid: 26142
+ - uid: 26158
components:
- pos: 19.5,-26.5
parent: 2
type: Transform
- - uid: 26143
+ - uid: 26159
components:
- pos: 18.5,-67.5
parent: 2
type: Transform
- - uid: 26144
+ - uid: 26160
components:
- rot: -1.5707963267948966 rad
pos: 34.5,-83.5
parent: 2
type: Transform
- - uid: 26145
+ - uid: 26161
components:
- rot: 3.141592653589793 rad
pos: 26.5,24.5
parent: 2
type: Transform
- - uid: 26146
+ - uid: 26162
components:
- pos: -16.5,-80.5
parent: 2
type: Transform
- - uid: 26147
+ - uid: 26163
components:
- pos: -13.5,-80.5
parent: 2
type: Transform
- - uid: 26148
+ - uid: 26164
components:
- rot: 3.141592653589793 rad
pos: 31.5,-19.5
parent: 2
type: Transform
- - uid: 26149
+ - uid: 26165
components:
- pos: 38.5,17.5
parent: 2
type: Transform
- - uid: 26150
+ - uid: 26166
components:
- pos: 30.5,9.5
parent: 2
type: Transform
- - uid: 26151
+ - uid: 26167
components:
- pos: -14.5,-80.5
parent: 2
type: Transform
- - uid: 26152
+ - uid: 26168
components:
- pos: -16.5,-74.5
parent: 2
type: Transform
- - uid: 26153
+ - uid: 26169
components:
- pos: -13.5,-75.5
parent: 2
type: Transform
- - uid: 26154
+ - uid: 26170
components:
- rot: -1.5707963267948966 rad
pos: -31.5,-80.5
parent: 2
type: Transform
- - uid: 26155
+ - uid: 26171
components:
- pos: -27.5,-84.5
parent: 2
type: Transform
- - uid: 26156
+ - uid: 26172
components:
- pos: -27.5,-85.5
parent: 2
type: Transform
- - uid: 26157
+ - uid: 26173
components:
- rot: -1.5707963267948966 rad
pos: -18.5,-83.5
parent: 2
type: Transform
- - uid: 26158
+ - uid: 26174
components:
- rot: -1.5707963267948966 rad
pos: 43.5,49.5
parent: 2
type: Transform
- - uid: 26159
+ - uid: 26175
components:
- rot: 3.141592653589793 rad
pos: 24.5,24.5
parent: 2
type: Transform
- - uid: 26160
+ - uid: 26176
components:
- rot: 1.5707963267948966 rad
pos: 27.5,19.5
parent: 2
type: Transform
- - uid: 26161
+ - uid: 26177
components:
- rot: 1.5707963267948966 rad
pos: 33.5,32.5
parent: 2
type: Transform
- - uid: 26162
+ - uid: 26178
components:
- rot: 1.5707963267948966 rad
pos: 16.5,15.5
parent: 2
type: Transform
- - uid: 26163
+ - uid: 26179
components:
- rot: 3.141592653589793 rad
pos: 39.5,12.5
parent: 2
type: Transform
- - uid: 26164
+ - uid: 26180
components:
- pos: 42.5,51.5
parent: 2
type: Transform
- - uid: 26165
+ - uid: 26181
components:
- pos: -15.5,-2.5
parent: 2
type: Transform
- - uid: 26166
+ - uid: 26182
components:
- pos: -18.5,-86.5
parent: 2
type: Transform
- - uid: 26167
+ - uid: 26183
components:
- pos: -22.5,-48.5
parent: 2
type: Transform
- - uid: 26168
+ - uid: 26184
components:
- pos: 3.5,15.5
parent: 2
type: Transform
- - uid: 26169
+ - uid: 26185
components:
- pos: 7.5,-71.5
parent: 2
type: Transform
- - uid: 26170
+ - uid: 26186
components:
- pos: -23.5,5.5
parent: 2
type: Transform
- - uid: 26171
+ - uid: 26187
components:
- pos: 44.5,-25.5
parent: 2
type: Transform
- - uid: 26172
+ - uid: 26188
components:
- pos: 49.5,-25.5
parent: 2
type: Transform
- - uid: 26173
+ - uid: 26189
components:
- pos: 49.5,-23.5
parent: 2
type: Transform
- - uid: 26174
+ - uid: 26190
components:
- pos: 39.5,-24.5
parent: 2
type: Transform
- - uid: 26175
+ - uid: 26191
components:
- pos: 27.5,26.5
parent: 2
type: Transform
- - uid: 26176
+ - uid: 26192
components:
- pos: 31.5,26.5
parent: 2
type: Transform
- - uid: 26177
+ - uid: 26193
components:
- pos: 31.5,25.5
parent: 2
type: Transform
- - uid: 26178
+ - uid: 26194
components:
- rot: 3.141592653589793 rad
pos: 30.5,33.5
parent: 2
type: Transform
- - uid: 26179
+ - uid: 26195
components:
- rot: -1.5707963267948966 rad
pos: 4.5,-18.5
parent: 2
type: Transform
- - uid: 26180
+ - uid: 26196
components:
- pos: 19.5,15.5
parent: 2
type: Transform
- - uid: 26181
+ - uid: 26197
components:
- rot: -1.5707963267948966 rad
pos: 20.5,-31.5
parent: 2
type: Transform
- - uid: 26182
+ - uid: 26198
components:
- pos: 3.5,18.5
parent: 2
type: Transform
- - uid: 26183
+ - uid: 26199
components:
- pos: 4.5,18.5
parent: 2
type: Transform
- - uid: 26184
+ - uid: 26200
components:
- pos: -15.5,-0.5
parent: 2
type: Transform
- - uid: 26185
+ - uid: 26201
components:
- pos: 13.5,15.5
parent: 2
type: Transform
- - uid: 26186
+ - uid: 26202
components:
- pos: -23.5,-1.5
parent: 2
type: Transform
- - uid: 26187
+ - uid: 26203
components:
- pos: -23.5,-3.5
parent: 2
type: Transform
- - uid: 26188
+ - uid: 26204
components:
- pos: -20.5,-3.5
parent: 2
type: Transform
- - uid: 26189
+ - uid: 26205
components:
- pos: -20.5,-2.5
parent: 2
type: Transform
- - uid: 26190
+ - uid: 26206
components:
- pos: -18.5,-1.5
parent: 2
type: Transform
- - uid: 26191
+ - uid: 26207
components:
- rot: 3.141592653589793 rad
pos: 29.5,-20.5
parent: 2
type: Transform
- - uid: 26192
+ - uid: 26208
components:
- rot: -1.5707963267948966 rad
pos: 44.5,49.5
parent: 2
type: Transform
- - uid: 26193
+ - uid: 26209
components:
- rot: -1.5707963267948966 rad
pos: 43.5,42.5
parent: 2
type: Transform
- - uid: 26194
+ - uid: 26210
components:
- rot: -1.5707963267948966 rad
pos: 38.5,42.5
parent: 2
type: Transform
- - uid: 26195
+ - uid: 26211
components:
- rot: -1.5707963267948966 rad
pos: 34.5,42.5
parent: 2
type: Transform
- - uid: 26196
+ - uid: 26212
components:
- rot: -1.5707963267948966 rad
pos: 33.5,43.5
parent: 2
type: Transform
- - uid: 26197
+ - uid: 26213
components:
- pos: 35.5,50.5
parent: 2
type: Transform
- - uid: 26198
+ - uid: 26214
components:
- pos: 35.5,52.5
parent: 2
type: Transform
- - uid: 26199
+ - uid: 26215
components:
- pos: 36.5,52.5
parent: 2
type: Transform
- - uid: 26200
+ - uid: 26216
components:
- pos: 34.5,48.5
parent: 2
type: Transform
- - uid: 26201
+ - uid: 26217
components:
- pos: -15.5,-1.5
parent: 2
type: Transform
- - uid: 26202
+ - uid: 26218
components:
- rot: -1.5707963267948966 rad
pos: 36.5,11.5
parent: 2
type: Transform
- - uid: 26203
+ - uid: 26219
components:
- rot: 3.141592653589793 rad
pos: 33.5,-19.5
parent: 2
type: Transform
- - uid: 26204
+ - uid: 26220
components:
- rot: 1.5707963267948966 rad
pos: 29.5,-63.5
parent: 2
type: Transform
- - uid: 26205
+ - uid: 26221
components:
- rot: -1.5707963267948966 rad
pos: 39.5,3.5
parent: 2
type: Transform
- - uid: 26206
+ - uid: 26222
components:
- rot: -1.5707963267948966 rad
pos: 1.5,-76.5
parent: 2
type: Transform
- - uid: 26207
+ - uid: 26223
components:
- rot: 3.141592653589793 rad
pos: -15.5,5.5
parent: 2
type: Transform
- - uid: 26208
+ - uid: 26224
components:
- rot: 3.141592653589793 rad
pos: 17.5,-21.5
parent: 2
type: Transform
- - uid: 26209
+ - uid: 26225
components:
- rot: 3.141592653589793 rad
pos: 17.5,-22.5
parent: 2
type: Transform
- - uid: 26210
+ - uid: 26226
components:
- rot: 3.141592653589793 rad
pos: 30.5,-19.5
parent: 2
type: Transform
- - uid: 26211
+ - uid: 26227
components:
- pos: 28.5,-13.5
parent: 2
type: Transform
- - uid: 26212
+ - uid: 26228
components:
- rot: 3.141592653589793 rad
pos: 20.5,-20.5
parent: 2
type: Transform
- - uid: 26213
+ - uid: 26229
components:
- rot: 3.141592653589793 rad
pos: 17.5,-23.5
parent: 2
type: Transform
- - uid: 26214
+ - uid: 26230
components:
- rot: -1.5707963267948966 rad
pos: -0.5,-84.5
parent: 2
type: Transform
- - uid: 26215
+ - uid: 26231
components:
- rot: 3.141592653589793 rad
pos: 28.5,-61.5
parent: 2
type: Transform
- - uid: 26216
+ - uid: 26232
components:
- pos: -23.5,1.5
parent: 2
type: Transform
- - uid: 26217
+ - uid: 26233
components:
- pos: 8.5,-71.5
parent: 2
type: Transform
- - uid: 26218
+ - uid: 26234
components:
- pos: 5.5,-80.5
parent: 2
type: Transform
- - uid: 26219
+ - uid: 26235
components:
- rot: -1.5707963267948966 rad
pos: 0.5,-77.5
parent: 2
type: Transform
- - uid: 26220
+ - uid: 26236
components:
- pos: -18.5,-2.5
parent: 2
type: Transform
- - uid: 26221
+ - uid: 26237
components:
- rot: -1.5707963267948966 rad
pos: 33.5,10.5
parent: 2
type: Transform
- - uid: 26222
+ - uid: 26238
components:
- rot: -1.5707963267948966 rad
pos: -28.5,-81.5
parent: 2
type: Transform
- - uid: 26223
+ - uid: 26239
components:
- rot: -1.5707963267948966 rad
pos: -19.5,-81.5
parent: 2
type: Transform
- - uid: 26224
+ - uid: 26240
components:
- rot: -1.5707963267948966 rad
pos: -24.5,-81.5
parent: 2
type: Transform
- - uid: 26225
+ - uid: 26241
components:
- pos: -13.5,-78.5
parent: 2
type: Transform
- - uid: 26226
+ - uid: 26242
components:
- pos: -21.5,-57.5
parent: 2
type: Transform
- - uid: 26227
+ - uid: 26243
components:
- pos: 29.5,33.5
parent: 2
type: Transform
- - uid: 26228
+ - uid: 26244
components:
- rot: 1.5707963267948966 rad
pos: 38.5,-17.5
parent: 2
type: Transform
- - uid: 26229
+ - uid: 26245
components:
- rot: 1.5707963267948966 rad
pos: 37.5,-19.5
parent: 2
type: Transform
- - uid: 26230
+ - uid: 26246
components:
- rot: 3.141592653589793 rad
pos: 3.5,-18.5
parent: 2
type: Transform
- - uid: 26231
+ - uid: 26247
components:
- pos: 33.5,-28.5
parent: 2
type: Transform
- - uid: 26232
+ - uid: 26248
components:
- pos: 20.5,-33.5
parent: 2
type: Transform
- - uid: 26233
+ - uid: 26249
components:
- pos: 33.5,-29.5
parent: 2
type: Transform
- - uid: 26234
+ - uid: 26250
components:
- pos: 40.5,-30.5
parent: 2
type: Transform
- - uid: 26235
+ - uid: 26251
components:
- pos: 3.5,22.5
parent: 2
type: Transform
- - uid: 26236
+ - uid: 26252
components:
- pos: 40.5,-31.5
parent: 2
type: Transform
- - uid: 26237
+ - uid: 26253
components:
- pos: 40.5,-29.5
parent: 2
type: Transform
- - uid: 26238
+ - uid: 26254
components:
- pos: 32.5,-26.5
parent: 2
type: Transform
- - uid: 26239
+ - uid: 26255
components:
- rot: 3.141592653589793 rad
pos: 42.5,17.5
parent: 2
type: Transform
- - uid: 26240
+ - uid: 26256
components:
- pos: 43.5,16.5
parent: 2
type: Transform
- - uid: 26241
+ - uid: 26257
components:
- pos: 43.5,9.5
parent: 2
type: Transform
- - uid: 26242
+ - uid: 26258
components:
- rot: 3.141592653589793 rad
pos: 43.5,3.5
parent: 2
type: Transform
- - uid: 26243
+ - uid: 26259
components:
- pos: 28.5,-10.5
parent: 2
type: Transform
- - uid: 26244
+ - uid: 26260
components:
- rot: 3.141592653589793 rad
pos: 13.5,-23.5
parent: 2
type: Transform
- - uid: 26245
+ - uid: 26261
components:
- rot: 3.141592653589793 rad
pos: 13.5,-20.5
parent: 2
type: Transform
- - uid: 26246
+ - uid: 26262
components:
- rot: 3.141592653589793 rad
pos: 13.5,-19.5
parent: 2
type: Transform
- - uid: 26247
+ - uid: 26263
components:
- rot: 3.141592653589793 rad
pos: 13.5,-17.5
parent: 2
type: Transform
- - uid: 26248
+ - uid: 26264
components:
- rot: 3.141592653589793 rad
pos: 13.5,-16.5
parent: 2
type: Transform
- - uid: 26249
+ - uid: 26265
components:
- rot: 3.141592653589793 rad
pos: 13.5,-15.5
parent: 2
type: Transform
- - uid: 26250
+ - uid: 26266
components:
- pos: 25.5,-26.5
parent: 2
type: Transform
- - uid: 26251
+ - uid: 26267
components:
- pos: 21.5,-26.5
parent: 2
type: Transform
- - uid: 26252
+ - uid: 26268
components:
- rot: 1.5707963267948966 rad
pos: 33.5,-33.5
parent: 2
type: Transform
- - uid: 26253
+ - uid: 26269
components:
- rot: -1.5707963267948966 rad
pos: 38.5,6.5
parent: 2
type: Transform
- - uid: 26254
+ - uid: 26270
components:
- rot: -1.5707963267948966 rad
pos: 39.5,6.5
parent: 2
type: Transform
- - uid: 26255
+ - uid: 26271
components:
- rot: -1.5707963267948966 rad
pos: 38.5,3.5
parent: 2
type: Transform
- - uid: 26256
+ - uid: 26272
components:
- pos: 29.5,-9.5
parent: 2
type: Transform
- - uid: 26257
+ - uid: 26273
components:
- rot: 3.141592653589793 rad
pos: -15.5,-3.5
parent: 2
type: Transform
- - uid: 26258
+ - uid: 26274
components:
- rot: 3.141592653589793 rad
pos: -16.5,5.5
parent: 2
type: Transform
- - uid: 26259
+ - uid: 26275
components:
- rot: -1.5707963267948966 rad
pos: 36.5,10.5
parent: 2
type: Transform
- - uid: 26260
+ - uid: 26276
components:
- pos: 38.5,-24.5
parent: 2
type: Transform
- - uid: 26261
+ - uid: 26277
components:
- pos: -15.5,-2.5
parent: 2
type: Transform
- - uid: 26262
+ - uid: 26278
components:
- pos: 41.5,52.5
parent: 2
type: Transform
- - uid: 26263
+ - uid: 26279
components:
- rot: -1.5707963267948966 rad
pos: 5.5,-24.5
parent: 2
type: Transform
- - uid: 26264
+ - uid: 26280
components:
- rot: 3.141592653589793 rad
pos: 27.5,24.5
parent: 2
type: Transform
- - uid: 26265
+ - uid: 26281
components:
- rot: -1.5707963267948966 rad
pos: 9.5,23.5
parent: 2
type: Transform
- - uid: 26266
+ - uid: 26282
components:
- pos: -0.5,15.5
parent: 2
type: Transform
- - uid: 26267
+ - uid: 26283
components:
- rot: -1.5707963267948966 rad
pos: 5.5,23.5
parent: 2
type: Transform
- - uid: 26268
+ - uid: 26284
components:
- rot: -1.5707963267948966 rad
pos: 4.5,23.5
parent: 2
type: Transform
- - uid: 26269
+ - uid: 26285
components:
- rot: -1.5707963267948966 rad
pos: 3.5,23.5
parent: 2
type: Transform
- - uid: 26270
+ - uid: 26286
components:
- pos: 42.5,50.5
parent: 2
type: Transform
- - uid: 26271
+ - uid: 26287
components:
- pos: 27.5,-15.5
parent: 2
type: Transform
- - uid: 26272
+ - uid: 26288
components:
- pos: 2.5,22.5
parent: 2
type: Transform
- - uid: 26273
+ - uid: 26289
components:
- pos: 1.5,22.5
parent: 2
type: Transform
- - uid: 26274
+ - uid: 26290
components:
- pos: -2.5,-30.5
parent: 2
type: Transform
- - uid: 26275
+ - uid: 26291
components:
- pos: 1.5,-39.5
parent: 2
type: Transform
- - uid: 26276
+ - uid: 26292
components:
- pos: 5.5,-40.5
parent: 2
type: Transform
- - uid: 26277
+ - uid: 26293
components:
- rot: 3.141592653589793 rad
pos: 3.5,12.5
parent: 2
type: Transform
- - uid: 26278
+ - uid: 26294
components:
- rot: -1.5707963267948966 rad
pos: 63.5,18.5
parent: 2
type: Transform
- - uid: 26279
+ - uid: 26295
components:
- rot: -1.5707963267948966 rad
pos: 30.5,11.5
parent: 2
type: Transform
- - uid: 26280
+ - uid: 26296
components:
- pos: 7.5,-24.5
parent: 2
type: Transform
- - uid: 26281
+ - uid: 26297
components:
- pos: 9.5,-24.5
parent: 2
type: Transform
- - uid: 26282
+ - uid: 26298
components:
- rot: 3.141592653589793 rad
pos: 3.5,-24.5
parent: 2
type: Transform
- - uid: 26283
+ - uid: 26299
components:
- pos: 1.5,-29.5
parent: 2
type: Transform
- - uid: 26284
+ - uid: 26300
components:
- pos: 27.5,-14.5
parent: 2
type: Transform
- - uid: 26285
+ - uid: 26301
components:
- rot: -1.5707963267948966 rad
pos: -16.5,-57.5
parent: 2
type: Transform
- - uid: 26286
+ - uid: 26302
components:
- rot: 3.141592653589793 rad
pos: 21.5,-33.5
parent: 2
type: Transform
- - uid: 26287
+ - uid: 26303
components:
- pos: 13.5,-24.5
parent: 2
type: Transform
- - uid: 26288
+ - uid: 26304
components:
- pos: 37.5,-24.5
parent: 2
type: Transform
- - uid: 26289
+ - uid: 26305
components:
- rot: -1.5707963267948966 rad
pos: 36.5,12.5
parent: 2
type: Transform
- - uid: 26290
+ - uid: 26306
components:
- pos: 3.5,19.5
parent: 2
type: Transform
- - uid: 26291
+ - uid: 26307
components:
- pos: 3.5,21.5
parent: 2
type: Transform
- - uid: 26292
+ - uid: 26308
components:
- pos: 13.5,19.5
parent: 2
type: Transform
- - uid: 26293
+ - uid: 26309
components:
- pos: 13.5,20.5
parent: 2
type: Transform
- - uid: 26294
+ - uid: 26310
components:
- pos: 13.5,21.5
parent: 2
type: Transform
- - uid: 26295
+ - uid: 26311
components:
- pos: 20.5,-38.5
parent: 2
type: Transform
- - uid: 26296
+ - uid: 26312
components:
- pos: 6.5,-24.5
parent: 2
type: Transform
- - uid: 26297
+ - uid: 26313
components:
- pos: -13.5,-77.5
parent: 2
type: Transform
- - uid: 26298
+ - uid: 26314
components:
- rot: -1.5707963267948966 rad
pos: -27.5,-83.5
parent: 2
type: Transform
- - uid: 26299
+ - uid: 26315
components:
- rot: -1.5707963267948966 rad
pos: -24.5,-82.5
parent: 2
type: Transform
- - uid: 26300
+ - uid: 26316
components:
- rot: -1.5707963267948966 rad
pos: -27.5,-81.5
parent: 2
type: Transform
- - uid: 26301
+ - uid: 26317
components:
- pos: 1.5,-32.5
parent: 2
type: Transform
- - uid: 26302
+ - uid: 26318
components:
- rot: 1.5707963267948966 rad
pos: 22.5,25.5
parent: 2
type: Transform
- - uid: 26303
+ - uid: 26319
components:
- rot: -1.5707963267948966 rad
pos: 33.5,11.5
parent: 2
type: Transform
- - uid: 26304
+ - uid: 26320
components:
- rot: -1.5707963267948966 rad
pos: 30.5,13.5
parent: 2
type: Transform
- - uid: 26305
+ - uid: 26321
components:
- rot: 3.141592653589793 rad
pos: 23.5,-55.5
parent: 2
type: Transform
- - uid: 26306
+ - uid: 26322
components:
- rot: 3.141592653589793 rad
pos: 23.5,-56.5
parent: 2
type: Transform
- - uid: 26307
+ - uid: 26323
components:
- pos: 18.5,-64.5
parent: 2
type: Transform
- - uid: 26308
+ - uid: 26324
components:
- pos: 15.5,-62.5
parent: 2
type: Transform
- - uid: 26309
+ - uid: 26325
components:
- pos: 15.5,-61.5
parent: 2
type: Transform
- - uid: 26310
+ - uid: 26326
components:
- pos: 17.5,-56.5
parent: 2
type: Transform
- - uid: 26311
+ - uid: 26327
components:
- pos: 15.5,-60.5
parent: 2
type: Transform
- - uid: 26312
+ - uid: 26328
components:
- pos: 15.5,-59.5
parent: 2
type: Transform
- - uid: 26313
+ - uid: 26329
components:
- pos: 16.5,-59.5
parent: 2
type: Transform
- - uid: 26314
+ - uid: 26330
components:
- pos: 16.5,-58.5
parent: 2
type: Transform
- - uid: 26315
+ - uid: 26331
components:
- pos: 16.5,-57.5
parent: 2
type: Transform
- - uid: 26316
+ - uid: 26332
components:
- pos: 16.5,-56.5
parent: 2
type: Transform
- - uid: 26317
+ - uid: 26333
components:
- pos: 17.5,-67.5
parent: 2
type: Transform
- - uid: 26318
+ - uid: 26334
components:
- rot: 3.141592653589793 rad
pos: 22.5,24.5
parent: 2
type: Transform
- - uid: 26319
+ - uid: 26335
components:
- rot: 3.141592653589793 rad
pos: 27.5,-61.5
parent: 2
type: Transform
- - uid: 26320
+ - uid: 26336
components:
- rot: 1.5707963267948966 rad
pos: 32.5,-64.5
parent: 2
type: Transform
- - uid: 26321
+ - uid: 26337
components:
- rot: 3.141592653589793 rad
pos: 34.5,-14.5
parent: 2
type: Transform
- - uid: 26322
+ - uid: 26338
components:
- pos: 40.5,-23.5
parent: 2
type: Transform
- - uid: 26323
+ - uid: 26339
components:
- pos: 40.5,-24.5
parent: 2
type: Transform
- - uid: 26324
+ - uid: 26340
components:
- pos: 49.5,-24.5
parent: 2
type: Transform
- - uid: 26325
+ - uid: 26341
components:
- pos: 43.5,-26.5
parent: 2
type: Transform
- - uid: 26326
+ - uid: 26342
components:
- pos: 17.5,-63.5
parent: 2
type: Transform
- - uid: 26327
+ - uid: 26343
components:
- rot: 3.141592653589793 rad
pos: 23.5,24.5
parent: 2
type: Transform
- - uid: 26328
+ - uid: 26344
components:
- pos: -2.5,18.5
parent: 2
type: Transform
- - uid: 26329
+ - uid: 26345
components:
- rot: -1.5707963267948966 rad
pos: -16.5,-58.5
parent: 2
type: Transform
- - uid: 26330
+ - uid: 26346
components:
- rot: -1.5707963267948966 rad
pos: 30.5,10.5
parent: 2
type: Transform
- - uid: 26331
+ - uid: 26347
components:
- pos: 39.5,17.5
parent: 2
type: Transform
- - uid: 26332
+ - uid: 26348
components:
- pos: 37.5,17.5
parent: 2
type: Transform
- - uid: 26333
+ - uid: 26349
components:
- rot: -1.5707963267948966 rad
pos: 33.5,18.5
parent: 2
type: Transform
- - uid: 26334
+ - uid: 26350
components:
- rot: -1.5707963267948966 rad
pos: 63.5,15.5
parent: 2
type: Transform
- - uid: 26335
+ - uid: 26351
components:
- rot: 1.5707963267948966 rad
pos: 27.5,16.5
parent: 2
type: Transform
- - uid: 26336
+ - uid: 26352
components:
- rot: -1.5707963267948966 rad
pos: 36.5,3.5
parent: 2
type: Transform
- - uid: 26337
+ - uid: 26353
components:
- rot: 1.5707963267948966 rad
pos: 38.5,9.5
parent: 2
type: Transform
- - uid: 26338
+ - uid: 26354
components:
- rot: -1.5707963267948966 rad
pos: 36.5,6.5
parent: 2
type: Transform
- - uid: 26339
+ - uid: 26355
components:
- rot: 1.5707963267948966 rad
pos: 32.5,-33.5
parent: 2
type: Transform
- - uid: 26340
+ - uid: 26356
components:
- pos: 25.5,-28.5
parent: 2
type: Transform
- - uid: 26341
+ - uid: 26357
components:
- pos: 20.5,-26.5
parent: 2
type: Transform
- - uid: 26342
+ - uid: 26358
components:
- pos: 17.5,-26.5
parent: 2
type: Transform
- - uid: 26343
+ - uid: 26359
components:
- pos: 18.5,-26.5
parent: 2
type: Transform
- - uid: 26344
+ - uid: 26360
components:
- rot: 3.141592653589793 rad
pos: 34.5,-15.5
parent: 2
type: Transform
- - uid: 26345
+ - uid: 26361
components:
- rot: 3.141592653589793 rad
pos: 37.5,-20.5
parent: 2
type: Transform
- - uid: 26346
+ - uid: 26362
components:
- rot: 3.141592653589793 rad
pos: 37.5,-20.5
parent: 2
type: Transform
- - uid: 26347
+ - uid: 26363
components:
- rot: 3.141592653589793 rad
pos: 37.5,-23.5
parent: 2
type: Transform
- - uid: 26348
+ - uid: 26364
components:
- rot: 3.141592653589793 rad
pos: 40.5,3.5
parent: 2
type: Transform
- - uid: 26349
+ - uid: 26365
components:
- rot: 3.141592653589793 rad
pos: 43.5,4.5
parent: 2
type: Transform
- - uid: 26350
+ - uid: 26366
components:
- rot: 3.141592653589793 rad
pos: 43.5,12.5
parent: 2
type: Transform
- - uid: 26351
+ - uid: 26367
components:
- pos: 44.5,16.5
parent: 2
type: Transform
- - uid: 26352
+ - uid: 26368
components:
- pos: 43.5,13.5
parent: 2
type: Transform
- - uid: 26353
+ - uid: 26369
components:
- pos: 45.5,16.5
parent: 2
type: Transform
- - uid: 26354
+ - uid: 26370
components:
- pos: 46.5,16.5
parent: 2
type: Transform
- - uid: 26355
+ - uid: 26371
components:
- pos: 46.5,13.5
parent: 2
type: Transform
- - uid: 26356
+ - uid: 26372
components:
- pos: 45.5,13.5
parent: 2
type: Transform
- - uid: 26357
+ - uid: 26373
components:
- rot: 3.141592653589793 rad
pos: 21.5,-39.5
parent: 2
type: Transform
- - uid: 26358
+ - uid: 26374
components:
- pos: 20.5,-37.5
parent: 2
type: Transform
- - uid: 26359
+ - uid: 26375
components:
- pos: 30.5,-34.5
parent: 2
type: Transform
- - uid: 26360
+ - uid: 26376
components:
- pos: 30.5,-35.5
parent: 2
type: Transform
- - uid: 26361
+ - uid: 26377
components:
- pos: 30.5,-36.5
parent: 2
type: Transform
- - uid: 26362
+ - uid: 26378
components:
- pos: 30.5,-37.5
parent: 2
type: Transform
- - uid: 26363
+ - uid: 26379
components:
- pos: 30.5,-33.5
parent: 2
type: Transform
- - uid: 26364
+ - uid: 26380
components:
- pos: 24.5,-33.5
parent: 2
type: Transform
- - uid: 26365
+ - uid: 26381
components:
- pos: 21.5,-31.5
parent: 2
type: Transform
- - uid: 26366
+ - uid: 26382
components:
- pos: 28.5,9.5
parent: 2
type: Transform
- - uid: 26367
+ - uid: 26383
components:
- pos: 31.5,9.5
parent: 2
type: Transform
- - uid: 26368
+ - uid: 26384
components:
- pos: 35.5,9.5
parent: 2
type: Transform
- - uid: 26369
+ - uid: 26385
components:
- pos: 35.5,8.5
parent: 2
type: Transform
- - uid: 26370
+ - uid: 26386
components:
- pos: 35.5,6.5
parent: 2
type: Transform
- - uid: 26371
+ - uid: 26387
components:
- pos: 23.5,19.5
parent: 2
type: Transform
- - uid: 26372
+ - uid: 26388
components:
- pos: 17.5,-38.5
parent: 2
type: Transform
- - uid: 26373
+ - uid: 26389
components:
- pos: 33.5,-38.5
parent: 2
type: Transform
- - uid: 26374
+ - uid: 26390
components:
- rot: 3.141592653589793 rad
pos: 17.5,-37.5
parent: 2
type: Transform
- - uid: 26375
+ - uid: 26391
components:
- pos: 31.5,22.5
parent: 2
type: Transform
- - uid: 26376
+ - uid: 26392
components:
- pos: 31.5,23.5
parent: 2
type: Transform
- - uid: 26377
+ - uid: 26393
components:
- pos: 31.5,24.5
parent: 2
type: Transform
- - uid: 26378
+ - uid: 26394
components:
- pos: 33.5,26.5
parent: 2
type: Transform
- - uid: 26379
+ - uid: 26395
components:
- pos: 33.5,28.5
parent: 2
type: Transform
- - uid: 26380
+ - uid: 26396
components:
- rot: 3.141592653589793 rad
pos: 25.5,27.5
parent: 2
type: Transform
- - uid: 26381
+ - uid: 26397
components:
- pos: 33.5,30.5
parent: 2
type: Transform
- - uid: 26382
+ - uid: 26398
components:
- pos: -2.5,-29.5
parent: 2
type: Transform
- - uid: 26383
+ - uid: 26399
components:
- pos: -2.5,-44.5
parent: 2
type: Transform
- - uid: 26384
+ - uid: 26400
components:
- pos: 19.5,24.5
parent: 2
type: Transform
- - uid: 26385
+ - uid: 26401
components:
- pos: 19.5,18.5
parent: 2
type: Transform
- - uid: 26386
+ - uid: 26402
components:
- pos: 12.5,-35.5
parent: 2
type: Transform
- - uid: 26387
+ - uid: 26403
components:
- pos: 12.5,-30.5
parent: 2
type: Transform
- - uid: 26388
+ - uid: 26404
components:
- pos: 0.5,-28.5
parent: 2
type: Transform
- - uid: 26389
+ - uid: 26405
components:
- pos: -2.5,-28.5
parent: 2
type: Transform
- - uid: 26390
+ - uid: 26406
components:
- pos: -0.5,-28.5
parent: 2
type: Transform
- - uid: 26391
+ - uid: 26407
components:
- pos: -1.5,-28.5
parent: 2
type: Transform
- - uid: 26392
+ - uid: 26408
components:
- pos: 1.5,-28.5
parent: 2
type: Transform
- - uid: 26393
+ - uid: 26409
components:
- pos: 1.5,-34.5
parent: 2
type: Transform
- - uid: 26394
+ - uid: 26410
components:
- rot: -1.5707963267948966 rad
pos: 13.5,-36.5
parent: 2
type: Transform
- - uid: 26395
+ - uid: 26411
components:
- rot: -1.5707963267948966 rad
pos: 13.5,-38.5
parent: 2
type: Transform
- - uid: 26396
+ - uid: 26412
components:
- rot: -1.5707963267948966 rad
pos: 10.5,-18.5
parent: 2
type: Transform
- - uid: 26397
+ - uid: 26413
components:
- rot: -1.5707963267948966 rad
pos: 6.5,-18.5
parent: 2
type: Transform
- - uid: 26398
+ - uid: 26414
components:
- pos: -2.5,19.5
parent: 2
type: Transform
- - uid: 26399
+ - uid: 26415
components:
- pos: -2.5,17.5
parent: 2
type: Transform
- - uid: 26400
+ - uid: 26416
components:
- rot: 3.141592653589793 rad
pos: 30.5,-20.5
parent: 2
type: Transform
- - uid: 26401
+ - uid: 26417
components:
- pos: -1.5,-40.5
parent: 2
type: Transform
- - uid: 26402
+ - uid: 26418
components:
- pos: 0.5,-40.5
parent: 2
type: Transform
- - uid: 26403
+ - uid: 26419
components:
- pos: -0.5,-40.5
parent: 2
type: Transform
- - uid: 26404
+ - uid: 26420
components:
- rot: 1.5707963267948966 rad
pos: 38.5,-18.5
parent: 2
type: Transform
- - uid: 26405
+ - uid: 26421
components:
- rot: 1.5707963267948966 rad
pos: 38.5,-16.5
parent: 2
type: Transform
- - uid: 26406
+ - uid: 26422
components:
- rot: 1.5707963267948966 rad
pos: 38.5,-19.5
parent: 2
type: Transform
- - uid: 26407
+ - uid: 26423
components:
- rot: 1.5707963267948966 rad
pos: 33.5,31.5
parent: 2
type: Transform
- - uid: 26408
+ - uid: 26424
components:
- rot: 1.5707963267948966 rad
pos: 33.5,33.5
parent: 2
type: Transform
- - uid: 26409
+ - uid: 26425
components:
- rot: 1.5707963267948966 rad
pos: 25.5,31.5
parent: 2
type: Transform
- - uid: 26410
+ - uid: 26426
components:
- rot: 1.5707963267948966 rad
pos: 25.5,32.5
parent: 2
type: Transform
- - uid: 26411
+ - uid: 26427
components:
- rot: 1.5707963267948966 rad
pos: 25.5,33.5
parent: 2
type: Transform
- - uid: 26412
+ - uid: 26428
components:
- rot: 1.5707963267948966 rad
pos: 26.5,33.5
parent: 2
type: Transform
- - uid: 26413
+ - uid: 26429
components:
- rot: 3.141592653589793 rad
pos: 28.5,33.5
parent: 2
type: Transform
- - uid: 26414
+ - uid: 26430
components:
- rot: 1.5707963267948966 rad
pos: 32.5,33.5
parent: 2
type: Transform
- - uid: 26415
+ - uid: 26431
components:
- pos: 13.5,-39.5
parent: 2
type: Transform
- - uid: 26416
+ - uid: 26432
components:
- rot: -1.5707963267948966 rad
pos: 33.5,13.5
parent: 2
type: Transform
- - uid: 26417
+ - uid: 26433
components:
- rot: 1.5707963267948966 rad
pos: -17.5,-53.5
parent: 2
type: Transform
- - uid: 26418
+ - uid: 26434
components:
- rot: 1.5707963267948966 rad
pos: -19.5,-53.5
parent: 2
type: Transform
- - uid: 26419
+ - uid: 26435
components:
- rot: 1.5707963267948966 rad
pos: -20.5,-53.5
parent: 2
type: Transform
- - uid: 26420
+ - uid: 26436
components:
- rot: 1.5707963267948966 rad
pos: -21.5,-53.5
parent: 2
type: Transform
- - uid: 26421
+ - uid: 26437
components:
- pos: -21.5,-58.5
parent: 2
type: Transform
- - uid: 26422
+ - uid: 26438
components:
- pos: 33.5,-26.5
parent: 2
type: Transform
- - uid: 26423
+ - uid: 26439
components:
- pos: 27.5,-28.5
parent: 2
type: Transform
- - uid: 26424
+ - uid: 26440
components:
- pos: -22.5,-49.5
parent: 2
type: Transform
- - uid: 26425
+ - uid: 26441
components:
- rot: 1.5707963267948966 rad
pos: 17.5,-33.5
parent: 2
type: Transform
- - uid: 26426
+ - uid: 26442
components:
- rot: 3.141592653589793 rad
pos: 33.5,-23.5
parent: 2
type: Transform
- - uid: 26427
+ - uid: 26443
components:
- pos: 27.5,-29.5
parent: 2
type: Transform
- - uid: 26428
+ - uid: 26444
components:
- rot: 3.141592653589793 rad
pos: 30.5,-40.5
parent: 2
type: Transform
- - uid: 26429
+ - uid: 26445
components:
- pos: 9.5,12.5
parent: 2
type: Transform
- - uid: 26430
+ - uid: 26446
components:
- pos: 8.5,11.5
parent: 2
type: Transform
- - uid: 26431
+ - uid: 26447
components:
- pos: 25.5,-33.5
parent: 2
type: Transform
- - uid: 26432
+ - uid: 26448
components:
- pos: -17.5,-80.5
parent: 2
type: Transform
- - uid: 26433
+ - uid: 26449
components:
- pos: -15.5,-80.5
parent: 2
type: Transform
- - uid: 26434
+ - uid: 26450
components:
- pos: -14.5,-74.5
parent: 2
type: Transform
- - uid: 26435
+ - uid: 26451
components:
- rot: -1.5707963267948966 rad
pos: -31.5,-78.5
parent: 2
type: Transform
- - uid: 26436
+ - uid: 26452
components:
- rot: -1.5707963267948966 rad
pos: -25.5,-81.5
parent: 2
type: Transform
- - uid: 26437
+ - uid: 26453
components:
- rot: -1.5707963267948966 rad
pos: -26.5,-81.5
parent: 2
type: Transform
- - uid: 26438
+ - uid: 26454
components:
- rot: -1.5707963267948966 rad
pos: -19.5,-82.5
parent: 2
type: Transform
- - uid: 26439
+ - uid: 26455
components:
- rot: -1.5707963267948966 rad
pos: -29.5,-81.5
parent: 2
type: Transform
- - uid: 26440
+ - uid: 26456
components:
- rot: -1.5707963267948966 rad
pos: -30.5,-81.5
parent: 2
type: Transform
- - uid: 26441
+ - uid: 26457
components:
- rot: -1.5707963267948966 rad
pos: -31.5,-81.5
parent: 2
type: Transform
- - uid: 26442
+ - uid: 26458
components:
- pos: -27.5,-86.5
parent: 2
type: Transform
- - uid: 26443
+ - uid: 26459
components:
- rot: -1.5707963267948966 rad
pos: -19.5,-83.5
parent: 2
type: Transform
- - uid: 26444
+ - uid: 26460
components:
- rot: -1.5707963267948966 rad
pos: 44.5,-66.5
parent: 2
type: Transform
- - uid: 26445
+ - uid: 26461
components:
- pos: 57.5,-50.5
parent: 2
type: Transform
- - uid: 26446
+ - uid: 26462
components:
- pos: -51.5,-52.5
parent: 2
type: Transform
- - uid: 26447
+ - uid: 26463
components:
- rot: 1.5707963267948966 rad
pos: -17.5,-58.5
parent: 2
type: Transform
- - uid: 26448
+ - uid: 26464
components:
- rot: 3.141592653589793 rad
pos: 21.5,-20.5
parent: 2
type: Transform
- - uid: 26449
+ - uid: 26465
components:
- pos: 29.5,-26.5
parent: 2
type: Transform
- - uid: 26450
+ - uid: 26466
components:
- rot: 3.141592653589793 rad
pos: 33.5,-21.5
parent: 2
type: Transform
- - uid: 26451
+ - uid: 26467
components:
- rot: 3.141592653589793 rad
pos: 33.5,-27.5
parent: 2
type: Transform
- - uid: 26452
+ - uid: 26468
components:
- rot: 3.141592653589793 rad
pos: 13.5,-18.5
parent: 2
type: Transform
- - uid: 26453
+ - uid: 26469
components:
- rot: 3.141592653589793 rad
pos: 41.5,17.5
parent: 2
type: Transform
- - uid: 26454
+ - uid: 26470
components:
- rot: 3.141592653589793 rad
pos: 43.5,17.5
parent: 2
type: Transform
- - uid: 26455
+ - uid: 26471
components:
- rot: -1.5707963267948966 rad
pos: 27.5,12.5
parent: 2
type: Transform
- - uid: 26456
+ - uid: 26472
components:
- rot: -1.5707963267948966 rad
pos: 27.5,13.5
parent: 2
type: Transform
- - uid: 26457
+ - uid: 26473
components:
- rot: -1.5707963267948966 rad
pos: 27.5,11.5
parent: 2
type: Transform
- - uid: 26458
+ - uid: 26474
components:
- pos: 14.5,15.5
parent: 2
type: Transform
- - uid: 26459
+ - uid: 26475
components:
- pos: 9.5,15.5
parent: 2
type: Transform
- - uid: 26460
+ - uid: 26476
components:
- pos: 9.5,-71.5
parent: 2
type: Transform
- - uid: 26461
+ - uid: 26477
components:
- pos: 5.5,-78.5
parent: 2
type: Transform
- - uid: 26462
+ - uid: 26478
components:
- rot: 3.141592653589793 rad
pos: 30.5,-39.5
parent: 2
type: Transform
- - uid: 26463
+ - uid: 26479
components:
- pos: 28.5,-9.5
parent: 2
type: Transform
- - uid: 26464
+ - uid: 26480
components:
- pos: 31.5,20.5
parent: 2
type: Transform
- - uid: 26465
+ - uid: 26481
components:
- rot: -1.5707963267948966 rad
pos: 30.5,12.5
parent: 2
type: Transform
- - uid: 26466
+ - uid: 26482
components:
- pos: 0.5,15.5
parent: 2
type: Transform
- - uid: 26467
+ - uid: 26483
components:
- rot: -1.5707963267948966 rad
pos: 9.5,11.5
parent: 2
type: Transform
- - uid: 26468
+ - uid: 26484
components:
- rot: 3.141592653589793 rad
pos: 6.5,11.5
parent: 2
type: Transform
- - uid: 26469
+ - uid: 26485
components:
- rot: 1.5707963267948966 rad
pos: 3.5,14.5
parent: 2
type: Transform
- - uid: 26470
+ - uid: 26486
components:
- pos: -1.5,15.5
parent: 2
type: Transform
- - uid: 26471
+ - uid: 26487
components:
- pos: 9.5,-2.5
parent: 2
type: Transform
- - uid: 26472
+ - uid: 26488
components:
- rot: 1.5707963267948966 rad
pos: 18.5,-33.5
parent: 2
type: Transform
- - uid: 26473
+ - uid: 26489
components:
- rot: 1.5707963267948966 rad
pos: 15.5,15.5
parent: 2
type: Transform
- - uid: 26474
+ - uid: 26490
components:
- rot: -1.5707963267948966 rad
pos: 63.5,17.5
parent: 2
type: Transform
- - uid: 26475
+ - uid: 26491
components:
- rot: -1.5707963267948966 rad
pos: -2.5,-84.5
parent: 2
type: Transform
- - uid: 26476
+ - uid: 26492
components:
- pos: 16.5,-63.5
parent: 2
type: Transform
- - uid: 26477
+ - uid: 26493
components:
- pos: 17.5,-68.5
parent: 2
type: Transform
- - uid: 26478
+ - uid: 26494
components:
- pos: -23.5,0.5
parent: 2
type: Transform
- - uid: 26479
+ - uid: 26495
components:
- pos: 25.5,-29.5
parent: 2
type: Transform
- - uid: 26480
+ - uid: 26496
components:
- pos: -23.5,-2.5
parent: 2
type: Transform
- - uid: 26481
+ - uid: 26497
components:
- rot: 3.141592653589793 rad
pos: 33.5,-20.5
parent: 2
type: Transform
- - uid: 26482
+ - uid: 26498
components:
- pos: -23.5,3.5
parent: 2
type: Transform
- - uid: 26483
+ - uid: 26499
components:
- pos: -23.5,4.5
parent: 2
type: Transform
- - uid: 26484
+ - uid: 26500
components:
- pos: -21.5,5.5
parent: 2
type: Transform
- - uid: 26485
+ - uid: 26501
components:
- pos: 49.5,-26.5
parent: 2
type: Transform
- - uid: 26486
+ - uid: 26502
components:
- pos: 47.5,-20.5
parent: 2
type: Transform
- - uid: 26487
+ - uid: 26503
components:
- pos: 44.5,-20.5
parent: 2
type: Transform
- - uid: 26488
+ - uid: 26504
components:
- pos: 43.5,-22.5
parent: 2
type: Transform
- - uid: 26489
+ - uid: 26505
components:
- pos: 43.5,-25.5
parent: 2
type: Transform
- - uid: 26490
+ - uid: 26506
components:
- pos: 43.5,-23.5
parent: 2
type: Transform
- - uid: 26491
+ - uid: 26507
components:
- pos: 43.5,-28.5
parent: 2
type: Transform
- - uid: 26492
+ - uid: 26508
components:
- pos: 1.5,15.5
parent: 2
type: Transform
- - uid: 26493
+ - uid: 26509
components:
- pos: 40.5,-28.5
parent: 2
type: Transform
- - uid: 26494
+ - uid: 26510
components:
- pos: 26.5,26.5
parent: 2
type: Transform
- - uid: 26495
+ - uid: 26511
components:
- pos: 25.5,26.5
parent: 2
type: Transform
- - uid: 26496
+ - uid: 26512
components:
- pos: 25.5,28.5
parent: 2
type: Transform
- - uid: 26497
+ - uid: 26513
components:
- rot: 3.141592653589793 rad
pos: 33.5,29.5
parent: 2
type: Transform
- - uid: 26498
+ - uid: 26514
components:
- pos: 25.5,30.5
parent: 2
type: Transform
- - uid: 26499
+ - uid: 26515
components:
- pos: 32.5,26.5
parent: 2
type: Transform
- - uid: 26500
+ - uid: 26516
components:
- rot: -1.5707963267948966 rad
pos: 13.5,23.5
parent: 2
type: Transform
- - uid: 26501
+ - uid: 26517
components:
- rot: -1.5707963267948966 rad
pos: 8.5,23.5
parent: 2
type: Transform
- - uid: 26502
+ - uid: 26518
components:
- pos: -2.5,-39.5
parent: 2
type: Transform
- - uid: 26503
+ - uid: 26519
components:
- rot: -1.5707963267948966 rad
pos: -1.5,-39.5
parent: 2
type: Transform
- - uid: 26504
+ - uid: 26520
components:
- rot: -1.5707963267948966 rad
pos: 12.5,-24.5
parent: 2
type: Transform
- - uid: 26505
+ - uid: 26521
components:
- pos: 11.5,-24.5
parent: 2
type: Transform
- - uid: 26506
+ - uid: 26522
components:
- pos: 10.5,-24.5
parent: 2
type: Transform
- - uid: 26507
+ - uid: 26523
components:
- rot: -1.5707963267948966 rad
pos: 4.5,-24.5
parent: 2
type: Transform
- - uid: 26508
+ - uid: 26524
components:
- rot: -1.5707963267948966 rad
pos: 5.5,-18.5
parent: 2
type: Transform
- - uid: 26509
+ - uid: 26525
components:
- pos: -2.5,21.5
parent: 2
type: Transform
- - uid: 26510
+ - uid: 26526
components:
- pos: -0.5,22.5
parent: 2
type: Transform
- - uid: 26511
+ - uid: 26527
components:
- pos: 0.5,22.5
parent: 2
type: Transform
- - uid: 26512
+ - uid: 26528
components:
- pos: -2.5,22.5
parent: 2
type: Transform
- - uid: 26513
+ - uid: 26529
components:
- pos: -2.5,20.5
parent: 2
type: Transform
- - uid: 26514
+ - uid: 26530
components:
- pos: 6.5,-40.5
parent: 2
type: Transform
- - uid: 26515
+ - uid: 26531
components:
- pos: 5.5,-39.5
parent: 2
type: Transform
- - uid: 26516
+ - uid: 26532
components:
- pos: 8.5,18.5
parent: 2
type: Transform
- - uid: 26517
+ - uid: 26533
components:
- rot: 3.141592653589793 rad
pos: 27.5,23.5
parent: 2
type: Transform
- - uid: 26518
+ - uid: 26534
components:
- pos: -15.5,4.5
parent: 2
type: Transform
- - uid: 26519
+ - uid: 26535
components:
- pos: -15.5,3.5
parent: 2
type: Transform
- - uid: 26520
+ - uid: 26536
components:
- pos: 9.5,18.5
parent: 2
type: Transform
- - uid: 26521
+ - uid: 26537
components:
- pos: -18.5,-85.5
parent: 2
type: Transform
- - uid: 26522
+ - uid: 26538
components:
- rot: 3.141592653589793 rad
pos: 3.5,11.5
parent: 2
type: Transform
- - uid: 26523
+ - uid: 26539
components:
- rot: -1.5707963267948966 rad
pos: 37.5,42.5
parent: 2
type: Transform
- - uid: 26524
+ - uid: 26540
components:
- rot: 3.141592653589793 rad
pos: 62.5,42.5
parent: 2
type: Transform
- - uid: 26525
+ - uid: 26541
components:
- rot: -1.5707963267948966 rad
pos: 32.5,43.5
parent: 2
type: Transform
- - uid: 26526
+ - uid: 26542
components:
- rot: 3.141592653589793 rad
pos: 18.5,-19.5
parent: 2
type: Transform
- - uid: 26527
+ - uid: 26543
components:
- rot: -1.5707963267948966 rad
pos: 42.5,49.5
parent: 2
type: Transform
- - uid: 26528
+ - uid: 26544
components:
- rot: -1.5707963267948966 rad
pos: 34.5,43.5
parent: 2
type: Transform
- - uid: 26529
+ - uid: 26545
components:
- pos: -23.5,-0.5
parent: 2
type: Transform
- - uid: 26530
+ - uid: 26546
components:
- rot: -1.5707963267948966 rad
pos: 63.5,16.5
parent: 2
type: Transform
- - uid: 26531
+ - uid: 26547
components:
- pos: -20.5,5.5
parent: 2
type: Transform
- - uid: 26532
+ - uid: 26548
components:
- rot: 3.141592653589793 rad
pos: 13.5,18.5
parent: 2
type: Transform
- - uid: 26533
+ - uid: 26549
components:
- rot: -1.5707963267948966 rad
pos: 64.5,14.5
parent: 2
type: Transform
- - uid: 26534
+ - uid: 26550
components:
- rot: -1.5707963267948966 rad
pos: -0.5,-80.5
parent: 2
type: Transform
- - uid: 26535
+ - uid: 26551
components:
- rot: -1.5707963267948966 rad
pos: 0.5,-78.5
parent: 2
type: Transform
- - uid: 26536
+ - uid: 26552
components:
- rot: 3.141592653589793 rad
pos: -17.5,5.5
parent: 2
type: Transform
- - uid: 26537
+ - uid: 26553
components:
- rot: 3.141592653589793 rad
pos: 19.5,-19.5
parent: 2
type: Transform
- - uid: 26538
+ - uid: 26554
components:
- pos: 40.5,52.5
parent: 2
type: Transform
- - uid: 26539
+ - uid: 26555
components:
- pos: -29.5,44.5
parent: 2
type: Transform
- - uid: 26540
+ - uid: 26556
components:
- pos: 40.5,17.5
parent: 2
type: Transform
- - uid: 26541
+ - uid: 26557
components:
- pos: -15.5,-74.5
parent: 2
type: Transform
- - uid: 26542
+ - uid: 26558
components:
- rot: 3.141592653589793 rad
pos: 30.5,-15.5
parent: 2
type: Transform
- - uid: 26543
+ - uid: 26559
components:
- rot: -1.5707963267948966 rad
pos: 27.5,10.5
parent: 2
type: Transform
- - uid: 26544
+ - uid: 26560
components:
- pos: -15.5,1.5
parent: 2
type: Transform
- - uid: 26545
+ - uid: 26561
components:
- pos: -15.5,0.5
parent: 2
type: Transform
- - uid: 26546
+ - uid: 26562
components:
- pos: 38.5,52.5
parent: 2
type: Transform
- - uid: 26547
+ - uid: 26563
components:
- rot: 3.141592653589793 rad
pos: 34.5,-13.5
parent: 2
type: Transform
- - uid: 26548
+ - uid: 26564
components:
- pos: 43.5,-20.5
parent: 2
type: Transform
- - uid: 26549
+ - uid: 26565
components:
- rot: 1.5707963267948966 rad
pos: 32.5,-63.5
parent: 2
type: Transform
- - uid: 26550
+ - uid: 26566
components:
- pos: 0.5,-39.5
parent: 2
type: Transform
- - uid: 26551
+ - uid: 26567
components:
- pos: 4.5,-39.5
parent: 2
type: Transform
- - uid: 26552
+ - uid: 26568
components:
- pos: 2.5,15.5
parent: 2
type: Transform
- - uid: 26553
+ - uid: 26569
components:
- rot: -1.5707963267948966 rad
pos: 25.5,-31.5
parent: 2
type: Transform
- - uid: 26554
+ - uid: 26570
components:
- rot: -1.5707963267948966 rad
pos: 14.5,-68.5
parent: 2
type: Transform
- - uid: 26555
+ - uid: 26571
components:
- pos: 7.5,11.5
parent: 2
type: Transform
- - uid: 26556
+ - uid: 26572
components:
- pos: 10.5,15.5
parent: 2
type: Transform
- - uid: 26557
+ - uid: 26573
components:
- rot: -1.5707963267948966 rad
pos: 36.5,42.5
parent: 2
type: Transform
- - uid: 26558
+ - uid: 26574
components:
- rot: -1.5707963267948966 rad
pos: -0.5,-81.5
parent: 2
type: Transform
- - uid: 26559
+ - uid: 26575
components:
- rot: -1.5707963267948966 rad
pos: 37.5,9.5
parent: 2
type: Transform
- - uid: 26560
+ - uid: 26576
components:
- rot: -1.5707963267948966 rad
pos: -26.5,-83.5
parent: 2
type: Transform
- - uid: 26561
+ - uid: 26577
components:
- rot: -1.5707963267948966 rad
pos: -24.5,-83.5
parent: 2
type: Transform
- - uid: 26562
+ - uid: 26578
components:
- pos: -22.5,5.5
parent: 2
type: Transform
- - uid: 26563
+ - uid: 26579
components:
- rot: -1.5707963267948966 rad
pos: 27.5,14.5
parent: 2
type: Transform
- - uid: 26564
+ - uid: 26580
components:
- pos: -29.5,43.5
parent: 2
type: Transform
- - uid: 26565
+ - uid: 26581
components:
- rot: 3.141592653589793 rad
pos: 33.5,-22.5
parent: 2
type: Transform
- - uid: 26566
+ - uid: 26582
components:
- rot: 3.141592653589793 rad
pos: 20.5,24.5
parent: 2
type: Transform
- - uid: 26567
+ - uid: 26583
components:
- rot: 1.5707963267948966 rad
pos: 7.5,-18.5
parent: 2
type: Transform
- - uid: 26568
+ - uid: 26584
components:
- pos: 7.5,27.5
parent: 2
type: Transform
- - uid: 26569
+ - uid: 26585
components:
- rot: -1.5707963267948966 rad
pos: 27.5,15.5
parent: 2
type: Transform
- - uid: 26570
+ - uid: 26586
components:
- pos: -15.5,3.5
parent: 2
type: Transform
- - uid: 26571
+ - uid: 26587
components:
- rot: -1.5707963267948966 rad
pos: -31.5,-76.5
parent: 2
type: Transform
- - uid: 26572
+ - uid: 26588
components:
- pos: -18.5,-80.5
parent: 2
type: Transform
- - uid: 26573
+ - uid: 26589
components:
- rot: -1.5707963267948966 rad
pos: 12.5,-68.5
parent: 2
type: Transform
- - uid: 26574
+ - uid: 26590
components:
- rot: -1.5707963267948966 rad
pos: 14.5,18.5
parent: 2
type: Transform
- - uid: 26575
+ - uid: 26591
components:
- pos: 27.5,25.5
parent: 2
type: Transform
- - uid: 26576
+ - uid: 26592
components:
- pos: 10.5,24.5
parent: 2
type: Transform
- - uid: 26577
+ - uid: 26593
components:
- pos: 9.5,24.5
parent: 2
type: Transform
- - uid: 26578
+ - uid: 26594
components:
- pos: -13.5,-74.5
parent: 2
type: Transform
- - uid: 26579
+ - uid: 26595
components:
- pos: -13.5,-79.5
parent: 2
type: Transform
- - uid: 26580
+ - uid: 26596
components:
- pos: -19.5,-80.5
parent: 2
type: Transform
- - uid: 26581
+ - uid: 26597
components:
- pos: -13.5,-76.5
parent: 2
type: Transform
- - uid: 26582
+ - uid: 26598
components:
- pos: 9.5,20.5
parent: 2
type: Transform
- - uid: 26583
+ - uid: 26599
components:
- rot: -1.5707963267948966 rad
pos: 13.5,-68.5
parent: 2
type: Transform
- - uid: 26584
+ - uid: 26600
components:
- pos: -18.5,-50.5
parent: 2
type: Transform
- - uid: 26585
+ - uid: 26601
components:
- rot: -1.5707963267948966 rad
pos: -16.5,-53.5
parent: 2
type: Transform
- - uid: 26586
+ - uid: 26602
components:
- rot: 3.141592653589793 rad
pos: 33.5,-37.5
parent: 2
type: Transform
- - uid: 26587
+ - uid: 26603
components:
- rot: 3.141592653589793 rad
pos: 34.5,-11.5
parent: 2
type: Transform
- - uid: 26588
+ - uid: 26604
components:
- rot: 3.141592653589793 rad
pos: 34.5,-12.5
parent: 2
type: Transform
- - uid: 26589
+ - uid: 26605
components:
- pos: -16.5,-54.5
parent: 2
type: Transform
- - uid: 26590
+ - uid: 26606
components:
- rot: 3.141592653589793 rad
pos: 34.5,-9.5
parent: 2
type: Transform
- - uid: 26591
+ - uid: 26607
components:
- rot: 3.141592653589793 rad
pos: 33.5,-9.5
parent: 2
type: Transform
- - uid: 26592
+ - uid: 26608
components:
- rot: -1.5707963267948966 rad
pos: -16.5,-55.5
parent: 2
type: Transform
- - uid: 26593
+ - uid: 26609
components:
- pos: 19.5,-56.5
parent: 2
type: Transform
- - uid: 26594
+ - uid: 26610
components:
- pos: -21.5,-56.5
parent: 2
type: Transform
- - uid: 26595
+ - uid: 26611
components:
- pos: 33.5,48.5
parent: 2
type: Transform
- - uid: 26596
+ - uid: 26612
components:
- pos: 31.5,-26.5
parent: 2
type: Transform
- - uid: 26597
+ - uid: 26613
components:
- pos: 11.5,15.5
parent: 2
type: Transform
- - uid: 26598
+ - uid: 26614
components:
- rot: 3.141592653589793 rad
pos: 17.5,-19.5
parent: 2
type: Transform
- - uid: 26599
+ - uid: 26615
components:
- pos: -2.5,-38.5
parent: 2
type: Transform
- - uid: 26600
+ - uid: 26616
components:
- rot: -1.5707963267948966 rad
pos: 63.5,14.5
parent: 2
type: Transform
- - uid: 26601
+ - uid: 26617
components:
- pos: 12.5,-36.5
parent: 2
type: Transform
- - uid: 26602
+ - uid: 26618
components:
- rot: 3.141592653589793 rad
pos: 27.5,33.5
parent: 2
type: Transform
- - uid: 26603
+ - uid: 26619
components:
- pos: 35.5,51.5
parent: 2
type: Transform
- - uid: 26604
+ - uid: 26620
components:
- pos: 5.5,-79.5
parent: 2
type: Transform
- - uid: 26605
+ - uid: 26621
components:
- pos: 33.5,-30.5
parent: 2
type: Transform
- - uid: 26606
+ - uid: 26622
components:
- pos: 28.5,-12.5
parent: 2
type: Transform
- - uid: 26607
+ - uid: 26623
components:
- rot: 3.141592653589793 rad
pos: 17.5,-20.5
parent: 2
type: Transform
- - uid: 26608
+ - uid: 26624
components:
- pos: 37.5,52.5
parent: 2
type: Transform
- - uid: 26609
+ - uid: 26625
components:
- pos: 29.5,-15.5
parent: 2
type: Transform
- - uid: 26610
+ - uid: 26626
components:
- rot: 3.141592653589793 rad
pos: 32.5,-19.5
parent: 2
type: Transform
- - uid: 26611
+ - uid: 26627
components:
- rot: 3.141592653589793 rad
pos: -18.5,-3.5
parent: 2
type: Transform
- - uid: 26612
+ - uid: 26628
components:
- rot: 3.141592653589793 rad
pos: 19.5,-55.5
parent: 2
type: Transform
- - uid: 26613
+ - uid: 26629
components:
- rot: -1.5707963267948966 rad
pos: 35.5,42.5
parent: 2
type: Transform
- - uid: 26614
+ - uid: 26630
components:
- rot: 3.141592653589793 rad
pos: -18.5,5.5
parent: 2
type: Transform
- - uid: 26615
+ - uid: 26631
components:
- pos: 35.5,5.5
parent: 2
type: Transform
- - uid: 26616
+ - uid: 26632
components:
- pos: 35.5,3.5
parent: 2
type: Transform
- - uid: 26617
+ - uid: 26633
components:
- pos: 33.5,9.5
parent: 2
type: Transform
- - uid: 26618
+ - uid: 26634
components:
- pos: 27.5,9.5
parent: 2
type: Transform
- - uid: 26619
+ - uid: 26635
components:
- rot: 3.141592653589793 rad
pos: 29.5,-40.5
parent: 2
type: Transform
- - uid: 26620
+ - uid: 26636
components:
- pos: 30.5,-38.5
parent: 2
type: Transform
- - uid: 26621
+ - uid: 26637
components:
- rot: 3.141592653589793 rad
pos: 25.5,-61.5
parent: 2
type: Transform
- - uid: 26622
+ - uid: 26638
components:
- rot: -1.5707963267948966 rad
pos: 7.5,23.5
parent: 2
type: Transform
- - uid: 26623
+ - uid: 26639
components:
- rot: -1.5707963267948966 rad
pos: 6.5,23.5
parent: 2
type: Transform
- - uid: 26624
+ - uid: 26640
components:
- pos: 9.5,22.5
parent: 2
type: Transform
- - uid: 26625
+ - uid: 26641
components:
- pos: 9.5,21.5
parent: 2
type: Transform
- - uid: 26626
+ - uid: 26642
components:
- rot: 3.141592653589793 rad
pos: 36.5,13.5
parent: 2
type: Transform
- - uid: 26627
+ - uid: 26643
components:
- pos: 3.5,20.5
parent: 2
type: Transform
- - uid: 26628
+ - uid: 26644
components:
- pos: 8.5,-24.5
parent: 2
type: Transform
- - uid: 26629
+ - uid: 26645
components:
- pos: 12.5,-31.5
parent: 2
type: Transform
- - uid: 26630
+ - uid: 26646
components:
- pos: 1.5,-33.5
parent: 2
type: Transform
- - uid: 26631
+ - uid: 26647
components:
- pos: -18.5,-87.5
parent: 2
type: Transform
- - uid: 26632
+ - uid: 26648
components:
- pos: 28.5,-11.5
parent: 2
type: Transform
- - uid: 26633
+ - uid: 26649
components:
- pos: 13.5,-22.5
parent: 2
type: Transform
- - uid: 26634
+ - uid: 26650
components:
- pos: 12.5,-18.5
parent: 2
type: Transform
- - uid: 26635
+ - uid: 26651
components:
- pos: 5.5,-82.5
parent: 2
type: Transform
- - uid: 26636
+ - uid: 26652
components:
- pos: 12.5,-69.5
parent: 2
type: Transform
- - uid: 26637
+ - uid: 26653
components:
- rot: 3.141592653589793 rad
pos: 26.5,-33.5
parent: 2
type: Transform
- - uid: 26638
+ - uid: 26654
components:
- pos: 27.5,-27.5
parent: 2
type: Transform
- - uid: 26639
+ - uid: 26655
components:
- pos: -6.5,-44.5
parent: 2
type: Transform
- - uid: 26640
+ - uid: 26656
components:
- rot: 1.5707963267948966 rad
pos: -18.5,-53.5
parent: 2
type: Transform
- - uid: 26641
+ - uid: 26657
components:
- pos: -2.5,-37.5
parent: 2
type: Transform
- - uid: 26642
+ - uid: 26658
components:
- pos: 13.5,-40.5
parent: 2
type: Transform
- - uid: 26643
+ - uid: 26659
components:
- pos: 12.5,-40.5
parent: 2
type: Transform
- - uid: 26644
+ - uid: 26660
components:
- pos: 10.5,-40.5
parent: 2
type: Transform
- - uid: 26645
+ - uid: 26661
components:
- pos: 11.5,-40.5
parent: 2
type: Transform
- - uid: 26646
+ - uid: 26662
components:
- pos: 27.5,-13.5
parent: 2
type: Transform
- - uid: 26647
+ - uid: 26663
components:
- rot: 1.5707963267948966 rad
pos: 12.5,15.5
parent: 2
type: Transform
- - uid: 26648
+ - uid: 26664
components:
- rot: 3.141592653589793 rad
pos: 31.5,-9.5
parent: 2
type: Transform
- - uid: 26649
+ - uid: 26665
components:
- pos: 28.5,-15.5
parent: 2
type: Transform
- - uid: 26650
+ - uid: 26666
components:
- pos: 42.5,52.5
parent: 2
type: Transform
- - uid: 26651
+ - uid: 26667
components:
- rot: 3.141592653589793 rad
pos: 20.5,-19.5
parent: 2
type: Transform
- - uid: 26652
+ - uid: 26668
components:
- pos: -18.5,-84.5
parent: 2
type: Transform
- - uid: 26653
+ - uid: 26669
components:
- pos: -20.5,-1.5
parent: 2
type: Transform
- - uid: 26654
+ - uid: 26670
components:
- rot: -1.5707963267948966 rad
pos: 0.5,-76.5
parent: 2
type: Transform
- - uid: 26655
+ - uid: 26671
components:
- rot: 1.5707963267948966 rad
pos: 3.5,13.5
parent: 2
type: Transform
- - uid: 26656
+ - uid: 26672
components:
- pos: 18.5,18.5
parent: 2
type: Transform
- - uid: 26657
+ - uid: 26673
components:
- rot: -1.5707963267948966 rad
pos: -0.5,-83.5
parent: 2
type: Transform
- - uid: 26658
+ - uid: 26674
components:
- rot: -1.5707963267948966 rad
pos: 0.5,-80.5
parent: 2
type: Transform
- - uid: 26659
+ - uid: 26675
components:
- pos: 15.5,-63.5
parent: 2
type: Transform
- - uid: 26660
+ - uid: 26676
components:
- pos: 17.5,-64.5
parent: 2
type: Transform
- - uid: 26661
+ - uid: 26677
components:
- pos: 49.5,-21.5
parent: 2
type: Transform
- - uid: 26662
+ - uid: 26678
components:
- pos: 45.5,-20.5
parent: 2
type: Transform
- - uid: 26663
+ - uid: 26679
components:
- pos: 46.5,-20.5
parent: 2
type: Transform
- - uid: 26664
+ - uid: 26680
components:
- pos: 43.5,-29.5
parent: 2
type: Transform
- - uid: 26665
+ - uid: 26681
components:
- pos: 43.5,-30.5
parent: 2
type: Transform
- - uid: 26666
+ - uid: 26682
components:
- pos: 43.5,-31.5
parent: 2
type: Transform
- - uid: 26667
+ - uid: 26683
components:
- pos: 44.5,-31.5
parent: 2
type: Transform
- - uid: 26668
+ - uid: 26684
components:
- pos: 49.5,-31.5
parent: 2
type: Transform
- - uid: 26669
+ - uid: 26685
components:
- pos: 49.5,-30.5
parent: 2
type: Transform
- - uid: 26670
+ - uid: 26686
components:
- pos: 49.5,-29.5
parent: 2
type: Transform
- - uid: 26671
+ - uid: 26687
components:
- pos: 49.5,-28.5
parent: 2
type: Transform
- - uid: 26672
+ - uid: 26688
components:
- pos: 48.5,-20.5
parent: 2
type: Transform
- - uid: 26673
+ - uid: 26689
components:
- pos: 48.5,-31.5
parent: 2
type: Transform
- - uid: 26674
+ - uid: 26690
components:
- pos: 47.5,-31.5
parent: 2
type: Transform
- - uid: 26675
+ - uid: 26691
components:
- pos: 46.5,-31.5
parent: 2
type: Transform
- - uid: 26676
+ - uid: 26692
components:
- pos: 45.5,-31.5
parent: 2
type: Transform
- - uid: 26677
+ - uid: 26693
components:
- pos: 49.5,-27.5
parent: 2
type: Transform
- - uid: 26678
+ - uid: 26694
components:
- pos: 49.5,-20.5
parent: 2
type: Transform
- - uid: 26679
+ - uid: 26695
components:
- pos: 43.5,-21.5
parent: 2
type: Transform
- - uid: 26680
+ - uid: 26696
components:
- pos: 49.5,-22.5
parent: 2
type: Transform
- - uid: 26681
+ - uid: 26697
components:
- pos: 48.5,-26.5
parent: 2
type: Transform
- - uid: 26682
+ - uid: 26698
components:
- pos: 47.5,-26.5
parent: 2
type: Transform
- - uid: 26683
+ - uid: 26699
components:
- rot: -1.5707963267948966 rad
pos: 46.5,-25.5
parent: 2
type: Transform
- - uid: 26684
+ - uid: 26700
components:
- rot: -1.5707963267948966 rad
pos: 45.5,-25.5
parent: 2
type: Transform
- - uid: 26685
+ - uid: 26701
components:
- rot: -1.5707963267948966 rad
pos: 46.5,-26.5
parent: 2
type: Transform
- - uid: 26686
+ - uid: 26702
components:
- rot: 3.141592653589793 rad
pos: 47.5,3.5
parent: 2
type: Transform
- - uid: 26687
+ - uid: 26703
components:
- pos: -27.5,-87.5
parent: 2
type: Transform
- - uid: 26688
+ - uid: 26704
components:
- pos: 7.5,-37.5
parent: 2
type: Transform
- - uid: 26689
+ - uid: 26705
components:
- rot: 1.5707963267948966 rad
pos: 15.5,28.5
parent: 2
type: Transform
- - uid: 26690
+ - uid: 26706
components:
- pos: 5.5,30.5
parent: 2
type: Transform
- - uid: 26691
+ - uid: 26707
components:
- pos: 18.5,24.5
parent: 2
type: Transform
- - uid: 26692
+ - uid: 26708
components:
- pos: 17.5,24.5
parent: 2
type: Transform
- - uid: 26693
+ - uid: 26709
components:
- pos: 16.5,24.5
parent: 2
type: Transform
- - uid: 26694
+ - uid: 26710
components:
- pos: 15.5,24.5
parent: 2
type: Transform
- - uid: 26695
+ - uid: 26711
components:
- pos: 13.5,24.5
parent: 2
type: Transform
- - uid: 26696
+ - uid: 26712
components:
- rot: 1.5707963267948966 rad
pos: 15.5,29.5
parent: 2
type: Transform
- - uid: 26697
+ - uid: 26713
components:
- pos: 44.5,-32.5
parent: 2
type: Transform
- - uid: 26698
+ - uid: 26714
components:
- pos: 49.5,44.5
parent: 2
type: Transform
- - uid: 26699
+ - uid: 26715
components:
- pos: 19.5,30.5
parent: 2
type: Transform
- - uid: 26700
+ - uid: 26716
components:
- pos: 19.5,29.5
parent: 2
type: Transform
- - uid: 26701
+ - uid: 26717
components:
- pos: 19.5,28.5
parent: 2
type: Transform
- - uid: 26702
+ - uid: 26718
components:
- pos: 19.5,27.5
parent: 2
type: Transform
- - uid: 26703
+ - uid: 26719
components:
- rot: 1.5707963267948966 rad
pos: 20.5,26.5
parent: 2
type: Transform
- - uid: 26704
+ - uid: 26720
components:
- rot: 1.5707963267948966 rad
pos: 19.5,26.5
parent: 2
type: Transform
- - uid: 26705
+ - uid: 26721
components:
- rot: 1.5707963267948966 rad
pos: 21.5,26.5
parent: 2
type: Transform
- - uid: 26706
+ - uid: 26722
components:
- rot: 1.5707963267948966 rad
pos: 22.5,26.5
parent: 2
type: Transform
- - uid: 26707
+ - uid: 26723
components:
- pos: 3.5,31.5
parent: 2
type: Transform
- - uid: 26708
+ - uid: 26724
components:
- pos: 4.5,30.5
parent: 2
type: Transform
- - uid: 26709
+ - uid: 26725
components:
- pos: 3.5,33.5
parent: 2
type: Transform
- - uid: 26710
+ - uid: 26726
components:
- pos: 11.5,29.5
parent: 2
type: Transform
- - uid: 26711
+ - uid: 26727
components:
- pos: 11.5,35.5
parent: 2
type: Transform
- - uid: 26712
+ - uid: 26728
components:
- pos: 4.5,31.5
parent: 2
type: Transform
- - uid: 26713
+ - uid: 26729
components:
- pos: 11.5,33.5
parent: 2
type: Transform
- - uid: 26714
+ - uid: 26730
components:
- pos: 6.5,35.5
parent: 2
type: Transform
- - uid: 26715
+ - uid: 26731
components:
- pos: 66.5,4.5
parent: 2
type: Transform
- - uid: 26716
+ - uid: 26732
components:
- pos: 66.5,5.5
parent: 2
type: Transform
- - uid: 26717
+ - uid: 26733
components:
- pos: 66.5,3.5
parent: 2
type: Transform
- - uid: 26718
+ - uid: 26734
components:
- pos: 66.5,2.5
parent: 2
type: Transform
- - uid: 26719
+ - uid: 26735
components:
- pos: 66.5,1.5
parent: 2
type: Transform
- - uid: 26720
+ - uid: 26736
components:
- rot: 1.5707963267948966 rad
pos: 14.5,26.5
parent: 2
type: Transform
- - uid: 26721
+ - uid: 26737
components:
- rot: 1.5707963267948966 rad
pos: 15.5,26.5
parent: 2
type: Transform
- - uid: 26722
+ - uid: 26738
components:
- rot: 1.5707963267948966 rad
pos: 15.5,27.5
parent: 2
type: Transform
- - uid: 26723
+ - uid: 26739
components:
- rot: 1.5707963267948966 rad
pos: 13.5,26.5
parent: 2
type: Transform
- - uid: 26724
+ - uid: 26740
components:
- pos: 11.5,26.5
parent: 2
type: Transform
- - uid: 26725
+ - uid: 26741
components:
- pos: 12.5,24.5
parent: 2
type: Transform
- - uid: 26726
+ - uid: 26742
components:
- pos: 11.5,24.5
parent: 2
type: Transform
- - uid: 26727
+ - uid: 26743
components:
- rot: 1.5707963267948966 rad
pos: 7.5,25.5
parent: 2
type: Transform
- - uid: 26728
+ - uid: 26744
components:
- rot: 1.5707963267948966 rad
pos: 5.5,25.5
parent: 2
type: Transform
- - uid: 26729
+ - uid: 26745
components:
- rot: 1.5707963267948966 rad
pos: 3.5,25.5
parent: 2
type: Transform
- - uid: 26730
+ - uid: 26746
components:
- rot: 1.5707963267948966 rad
pos: 18.5,30.5
parent: 2
type: Transform
- - uid: 26731
+ - uid: 26747
components:
- rot: 1.5707963267948966 rad
pos: 15.5,30.5
parent: 2
type: Transform
- - uid: 26732
+ - uid: 26748
components:
- rot: 1.5707963267948966 rad
pos: 14.5,30.5
parent: 2
type: Transform
- - uid: 26733
+ - uid: 26749
components:
- rot: 1.5707963267948966 rad
pos: 14.5,31.5
parent: 2
type: Transform
- - uid: 26734
+ - uid: 26750
components:
- rot: 1.5707963267948966 rad
pos: 13.5,31.5
parent: 2
type: Transform
- - uid: 26735
+ - uid: 26751
components:
- pos: 49.5,50.5
parent: 2
type: Transform
- - uid: 26736
+ - uid: 26752
components:
- rot: 1.5707963267948966 rad
pos: 14.5,33.5
parent: 2
type: Transform
- - uid: 26737
+ - uid: 26753
components:
- rot: 1.5707963267948966 rad
pos: 13.5,33.5
parent: 2
type: Transform
- - uid: 26738
+ - uid: 26754
components:
- pos: -1.5,26.5
parent: 2
type: Transform
- - uid: 26739
+ - uid: 26755
components:
- pos: 59.5,41.5
parent: 2
type: Transform
- - uid: 26740
+ - uid: 26756
components:
- rot: 1.5707963267948966 rad
pos: 14.5,34.5
parent: 2
type: Transform
- - uid: 26741
+ - uid: 26757
components:
- rot: 1.5707963267948966 rad
pos: 18.5,31.5
parent: 2
type: Transform
- - uid: 26742
+ - uid: 26758
components:
- pos: 11.5,34.5
parent: 2
type: Transform
- - uid: 26743
+ - uid: 26759
components:
- pos: 5.5,35.5
parent: 2
type: Transform
- - uid: 26744
+ - uid: 26760
components:
- pos: 18.5,34.5
parent: 2
type: Transform
- - uid: 26745
+ - uid: 26761
components:
- pos: 10.5,35.5
parent: 2
type: Transform
- - uid: 26746
+ - uid: 26762
components:
- pos: 11.5,30.5
parent: 2
type: Transform
- - uid: 26747
+ - uid: 26763
components:
- pos: 1.5,25.5
parent: 2
type: Transform
- - uid: 26748
+ - uid: 26764
components:
- pos: 0.5,25.5
parent: 2
type: Transform
- - uid: 26749
+ - uid: 26765
components:
- pos: -0.5,25.5
parent: 2
type: Transform
- - uid: 26750
+ - uid: 26766
components:
- pos: -1.5,25.5
parent: 2
type: Transform
- - uid: 26751
+ - uid: 26767
components:
- pos: -1.5,28.5
parent: 2
type: Transform
- - uid: 26752
+ - uid: 26768
components:
- pos: -3.5,25.5
parent: 2
type: Transform
- - uid: 26753
+ - uid: 26769
components:
- pos: -3.5,24.5
parent: 2
type: Transform
- - uid: 26754
+ - uid: 26770
components:
- pos: 59.5,48.5
parent: 2
type: Transform
- - uid: 26755
+ - uid: 26771
components:
- pos: 34.5,26.5
parent: 2
type: Transform
- - uid: 26756
+ - uid: 26772
components:
- pos: 34.5,25.5
parent: 2
type: Transform
- - uid: 26757
+ - uid: 26773
components:
- pos: 34.5,24.5
parent: 2
type: Transform
- - uid: 26758
+ - uid: 26774
components:
- rot: -1.5707963267948966 rad
pos: 37.5,21.5
parent: 2
type: Transform
- - uid: 26759
+ - uid: 26775
components:
- pos: 36.5,21.5
parent: 2
type: Transform
- - uid: 26760
+ - uid: 26776
components:
- pos: 33.5,21.5
parent: 2
type: Transform
- - uid: 26761
+ - uid: 26777
components:
- pos: 33.5,20.5
parent: 2
type: Transform
- - uid: 26762
+ - uid: 26778
components:
- rot: -1.5707963267948966 rad
pos: 37.5,22.5
parent: 2
type: Transform
- - uid: 26763
+ - uid: 26779
components:
- rot: -1.5707963267948966 rad
pos: 38.5,22.5
parent: 2
type: Transform
- - uid: 26764
+ - uid: 26780
components:
- pos: 35.5,21.5
parent: 2
type: Transform
- - uid: 26765
+ - uid: 26781
components:
- rot: -1.5707963267948966 rad
pos: 37.5,19.5
parent: 2
type: Transform
- - uid: 26766
+ - uid: 26782
components:
- rot: -1.5707963267948966 rad
pos: 39.5,22.5
parent: 2
type: Transform
- - uid: 26767
+ - uid: 26783
components:
- rot: -1.5707963267948966 rad
pos: 40.5,22.5
parent: 2
type: Transform
- - uid: 26768
+ - uid: 26784
components:
- rot: -1.5707963267948966 rad
pos: 37.5,18.5
parent: 2
type: Transform
- - uid: 26769
+ - uid: 26785
components:
- rot: 3.141592653589793 rad
pos: 35.5,24.5
parent: 2
type: Transform
- - uid: 26770
+ - uid: 26786
components:
- rot: 3.141592653589793 rad
pos: 37.5,24.5
parent: 2
type: Transform
- - uid: 26771
+ - uid: 26787
components:
- rot: -1.5707963267948966 rad
pos: 39.5,24.5
parent: 2
type: Transform
- - uid: 26772
+ - uid: 26788
components:
- rot: -1.5707963267948966 rad
pos: 46.5,25.5
parent: 2
type: Transform
- - uid: 26773
+ - uid: 26789
components:
- rot: -1.5707963267948966 rad
pos: 61.5,25.5
parent: 2
type: Transform
- - uid: 26774
+ - uid: 26790
components:
- rot: -1.5707963267948966 rad
pos: 59.5,25.5
parent: 2
type: Transform
- - uid: 26775
+ - uid: 26791
components:
- rot: -1.5707963267948966 rad
pos: 58.5,25.5
parent: 2
type: Transform
- - uid: 26776
+ - uid: 26792
components:
- rot: -1.5707963267948966 rad
pos: 47.5,25.5
parent: 2
type: Transform
- - uid: 26777
+ - uid: 26793
components:
- rot: -1.5707963267948966 rad
pos: 60.5,25.5
parent: 2
type: Transform
- - uid: 26778
+ - uid: 26794
components:
- rot: -1.5707963267948966 rad
pos: 57.5,25.5
parent: 2
type: Transform
- - uid: 26779
+ - uid: 26795
components:
- rot: -1.5707963267948966 rad
pos: 54.5,25.5
parent: 2
type: Transform
- - uid: 26780
+ - uid: 26796
components:
- rot: -1.5707963267948966 rad
pos: 50.5,25.5
parent: 2
type: Transform
- - uid: 26781
+ - uid: 26797
components:
- rot: -1.5707963267948966 rad
pos: 45.5,25.5
parent: 2
type: Transform
- - uid: 26782
+ - uid: 26798
components:
- rot: -1.5707963267948966 rad
pos: 45.5,24.5
parent: 2
type: Transform
- - uid: 26783
+ - uid: 26799
components:
- rot: -1.5707963267948966 rad
pos: 45.5,23.5
parent: 2
type: Transform
- - uid: 26784
+ - uid: 26800
components:
- rot: -1.5707963267948966 rad
pos: 56.5,25.5
parent: 2
type: Transform
- - uid: 26785
+ - uid: 26801
components:
- rot: -1.5707963267948966 rad
pos: 55.5,25.5
parent: 2
type: Transform
- - uid: 26786
+ - uid: 26802
components:
- rot: -1.5707963267948966 rad
pos: 49.5,25.5
parent: 2
type: Transform
- - uid: 26787
+ - uid: 26803
components:
- rot: -1.5707963267948966 rad
pos: 48.5,25.5
parent: 2
type: Transform
- - uid: 26788
+ - uid: 26804
components:
- rot: -1.5707963267948966 rad
pos: 53.5,25.5
parent: 2
type: Transform
- - uid: 26789
+ - uid: 26805
components:
- rot: -1.5707963267948966 rad
pos: 62.5,25.5
parent: 2
type: Transform
- - uid: 26790
+ - uid: 26806
components:
- rot: -1.5707963267948966 rad
pos: 52.5,25.5
parent: 2
type: Transform
- - uid: 26791
+ - uid: 26807
components:
- rot: -1.5707963267948966 rad
pos: 51.5,25.5
parent: 2
type: Transform
- - uid: 26792
+ - uid: 26808
components:
- rot: -1.5707963267948966 rad
pos: 64.5,25.5
parent: 2
type: Transform
- - uid: 26793
+ - uid: 26809
components:
- rot: -1.5707963267948966 rad
pos: 63.5,25.5
parent: 2
type: Transform
- - uid: 26794
+ - uid: 26810
components:
- rot: -1.5707963267948966 rad
pos: 64.5,24.5
parent: 2
type: Transform
- - uid: 26795
+ - uid: 26811
components:
- rot: -1.5707963267948966 rad
pos: 64.5,23.5
parent: 2
type: Transform
- - uid: 26796
+ - uid: 26812
components:
- rot: -1.5707963267948966 rad
pos: 64.5,22.5
parent: 2
type: Transform
- - uid: 26797
+ - uid: 26813
components:
- pos: 64.5,21.5
parent: 2
type: Transform
- - uid: 26798
+ - uid: 26814
components:
- rot: -1.5707963267948966 rad
pos: 64.5,20.5
parent: 2
type: Transform
- - uid: 26799
+ - uid: 26815
components:
- rot: -1.5707963267948966 rad
pos: 63.5,20.5
parent: 2
type: Transform
- - uid: 26800
+ - uid: 26816
components:
- rot: -1.5707963267948966 rad
pos: 63.5,19.5
parent: 2
type: Transform
- - uid: 26801
+ - uid: 26817
components:
- rot: -1.5707963267948966 rad
pos: 45.5,22.5
parent: 2
type: Transform
- - uid: 26802
+ - uid: 26818
components:
- rot: -1.5707963267948966 rad
pos: 44.5,22.5
parent: 2
type: Transform
- - uid: 26803
+ - uid: 26819
components:
- rot: -1.5707963267948966 rad
pos: 43.5,22.5
parent: 2
type: Transform
- - uid: 26804
+ - uid: 26820
components:
- rot: -1.5707963267948966 rad
pos: 41.5,22.5
parent: 2
type: Transform
- - uid: 26805
+ - uid: 26821
components:
- rot: 3.141592653589793 rad
pos: 31.5,33.5
parent: 2
type: Transform
- - uid: 26806
+ - uid: 26822
components:
- pos: 43.5,24.5
parent: 2
type: Transform
- - uid: 26807
+ - uid: 26823
components:
- pos: 43.5,25.5
parent: 2
type: Transform
- - uid: 26808
+ - uid: 26824
components:
- pos: 43.5,26.5
parent: 2
type: Transform
- - uid: 26809
+ - uid: 26825
components:
- pos: 43.5,27.5
parent: 2
type: Transform
- - uid: 26810
+ - uid: 26826
components:
- pos: 51.5,59.5
parent: 2
type: Transform
- - uid: 26811
+ - uid: 26827
components:
- pos: 50.5,59.5
parent: 2
type: Transform
- - uid: 26812
+ - uid: 26828
components:
- pos: 50.5,55.5
parent: 2
type: Transform
- - uid: 26813
+ - uid: 26829
components:
- pos: 51.5,55.5
parent: 2
type: Transform
- - uid: 26814
+ - uid: 26830
components:
- pos: 51.5,54.5
parent: 2
type: Transform
- - uid: 26815
+ - uid: 26831
components:
- pos: 57.5,54.5
parent: 2
type: Transform
- - uid: 26816
+ - uid: 26832
components:
- pos: 57.5,55.5
parent: 2
type: Transform
- - uid: 26817
+ - uid: 26833
components:
- pos: 57.5,59.5
parent: 2
type: Transform
- - uid: 26818
+ - uid: 26834
components:
- pos: 58.5,59.5
parent: 2
type: Transform
- - uid: 26819
+ - uid: 26835
components:
- pos: 58.5,55.5
parent: 2
type: Transform
- - uid: 26820
+ - uid: 26836
components:
- pos: 51.5,60.5
parent: 2
type: Transform
- - uid: 26821
+ - uid: 26837
components:
- pos: 52.5,60.5
parent: 2
type: Transform
- - uid: 26822
+ - uid: 26838
components:
- pos: 52.5,61.5
parent: 2
type: Transform
- - uid: 26823
+ - uid: 26839
components:
- pos: 56.5,61.5
parent: 2
type: Transform
- - uid: 26824
+ - uid: 26840
components:
- pos: 56.5,60.5
parent: 2
type: Transform
- - uid: 26825
+ - uid: 26841
components:
- pos: 65.5,27.5
parent: 2
type: Transform
- - uid: 26826
+ - uid: 26842
components:
- rot: -1.5707963267948966 rad
pos: 64.5,13.5
parent: 2
type: Transform
- - uid: 26827
+ - uid: 26843
components:
- rot: -1.5707963267948966 rad
pos: 64.5,12.5
parent: 2
type: Transform
- - uid: 26828
+ - uid: 26844
components:
- rot: -1.5707963267948966 rad
pos: 64.5,11.5
parent: 2
type: Transform
- - uid: 26829
+ - uid: 26845
components:
- rot: -1.5707963267948966 rad
pos: 64.5,10.5
parent: 2
type: Transform
- - uid: 26830
+ - uid: 26846
components:
- rot: -1.5707963267948966 rad
pos: 64.5,8.5
parent: 2
type: Transform
- - uid: 26831
+ - uid: 26847
components:
- rot: -1.5707963267948966 rad
pos: 64.5,9.5
parent: 2
type: Transform
- - uid: 26832
+ - uid: 26848
components:
- rot: -1.5707963267948966 rad
pos: 64.5,7.5
parent: 2
type: Transform
- - uid: 26833
+ - uid: 26849
components:
- rot: -1.5707963267948966 rad
pos: 64.5,6.5
parent: 2
type: Transform
- - uid: 26834
+ - uid: 26850
components:
- pos: 66.5,27.5
parent: 2
type: Transform
- - uid: 26835
+ - uid: 26851
components:
- pos: 66.5,27.5
parent: 2
type: Transform
- - uid: 26836
+ - uid: 26852
components:
- pos: 66.5,26.5
parent: 2
type: Transform
- - uid: 26837
+ - uid: 26853
components:
- pos: 66.5,24.5
parent: 2
type: Transform
- - uid: 26838
+ - uid: 26854
components:
- pos: 66.5,22.5
parent: 2
type: Transform
- - uid: 26839
+ - uid: 26855
components:
- pos: 66.5,21.5
parent: 2
type: Transform
- - uid: 26840
+ - uid: 26856
components:
- pos: 66.5,20.5
parent: 2
type: Transform
- - uid: 26841
+ - uid: 26857
components:
- pos: 66.5,19.5
parent: 2
type: Transform
- - uid: 26842
+ - uid: 26858
components:
- pos: 66.5,18.5
parent: 2
type: Transform
- - uid: 26843
+ - uid: 26859
components:
- pos: 65.5,18.5
parent: 2
type: Transform
- - uid: 26844
+ - uid: 26860
components:
- pos: 65.5,17.5
parent: 2
type: Transform
- - uid: 26845
+ - uid: 26861
components:
- pos: 65.5,16.5
parent: 2
type: Transform
- - uid: 26846
+ - uid: 26862
components:
- pos: 66.5,16.5
parent: 2
type: Transform
- - uid: 26847
+ - uid: 26863
components:
- pos: 66.5,15.5
parent: 2
type: Transform
- - uid: 26848
+ - uid: 26864
components:
- pos: 66.5,14.5
parent: 2
type: Transform
- - uid: 26849
+ - uid: 26865
components:
- pos: 66.5,13.5
parent: 2
type: Transform
- - uid: 26850
+ - uid: 26866
components:
- pos: 67.5,5.5
parent: 2
type: Transform
- - uid: 26851
+ - uid: 26867
components:
- pos: 68.5,9.5
parent: 2
type: Transform
- - uid: 26852
+ - uid: 26868
components:
- pos: 67.5,13.5
parent: 2
type: Transform
- - uid: 26853
+ - uid: 26869
components:
- pos: 67.5,12.5
parent: 2
type: Transform
- - uid: 26854
+ - uid: 26870
components:
- pos: 67.5,6.5
parent: 2
type: Transform
- - uid: 26855
+ - uid: 26871
components:
- pos: 43.5,8.5
parent: 2
type: Transform
- - uid: 26856
+ - uid: 26872
components:
- pos: 48.5,4.5
parent: 2
type: Transform
- - uid: 26857
+ - uid: 26873
components:
- pos: 48.5,5.5
parent: 2
type: Transform
- - uid: 26858
+ - uid: 26874
components:
- pos: 49.5,3.5
parent: 2
type: Transform
- - uid: 26859
+ - uid: 26875
components:
- pos: 50.5,3.5
parent: 2
type: Transform
- - uid: 26860
+ - uid: 26876
components:
- pos: 50.5,4.5
parent: 2
type: Transform
- - uid: 26861
+ - uid: 26877
components:
- pos: 51.5,4.5
parent: 2
type: Transform
- - uid: 26862
+ - uid: 26878
components:
- pos: 52.5,4.5
parent: 2
type: Transform
- - uid: 26863
+ - uid: 26879
components:
- pos: 53.5,4.5
parent: 2
type: Transform
- - uid: 26864
+ - uid: 26880
components:
- pos: 54.5,4.5
parent: 2
type: Transform
- - uid: 26865
+ - uid: 26881
components:
- pos: 54.5,3.5
parent: 2
type: Transform
- - uid: 26866
+ - uid: 26882
components:
- pos: 55.5,3.5
parent: 2
type: Transform
- - uid: 26867
+ - uid: 26883
components:
- pos: 56.5,3.5
parent: 2
type: Transform
- - uid: 26868
+ - uid: 26884
components:
- pos: 57.5,3.5
parent: 2
type: Transform
- - uid: 26869
+ - uid: 26885
components:
- pos: 58.5,3.5
parent: 2
type: Transform
- - uid: 26870
+ - uid: 26886
components:
- pos: 64.5,5.5
parent: 2
type: Transform
- - uid: 26871
+ - uid: 26887
components:
- pos: 64.5,4.5
parent: 2
type: Transform
- - uid: 26872
+ - uid: 26888
components:
- pos: 64.5,3.5
parent: 2
type: Transform
- - uid: 26873
+ - uid: 26889
components:
- pos: 63.5,3.5
parent: 2
type: Transform
- - uid: 26874
+ - uid: 26890
components:
- pos: 62.5,3.5
parent: 2
type: Transform
- - uid: 26875
+ - uid: 26891
components:
- pos: 61.5,3.5
parent: 2
type: Transform
- - uid: 26876
+ - uid: 26892
components:
- pos: 60.5,3.5
parent: 2
type: Transform
- - uid: 26877
+ - uid: 26893
components:
- pos: 59.5,3.5
parent: 2
type: Transform
- - uid: 26878
+ - uid: 26894
components:
- rot: -1.5707963267948966 rad
pos: 59.5,46.5
parent: 2
type: Transform
- - uid: 26879
+ - uid: 26895
components:
- pos: 68.5,6.5
parent: 2
type: Transform
- - uid: 26880
+ - uid: 26896
components:
- pos: 47.5,-17.5
parent: 2
type: Transform
- - uid: 26881
+ - uid: 26897
components:
- pos: 44.5,13.5
parent: 2
type: Transform
- - uid: 26882
+ - uid: 26898
components:
- pos: 47.5,9.5
parent: 2
type: Transform
- - uid: 26883
+ - uid: 26899
components:
- pos: 44.5,3.5
parent: 2
type: Transform
- - uid: 26884
+ - uid: 26900
components:
- rot: 3.141592653589793 rad
pos: 39.5,10.5
parent: 2
type: Transform
- - uid: 26885
+ - uid: 26901
components:
- pos: 48.5,8.5
parent: 2
type: Transform
- - uid: 26886
+ - uid: 26902
components:
- pos: 33.5,19.5
parent: 2
type: Transform
- - uid: 26887
+ - uid: 26903
components:
- rot: -1.5707963267948966 rad
pos: 41.5,24.5
parent: 2
type: Transform
- - uid: 26888
+ - uid: 26904
components:
- rot: 3.141592653589793 rad
pos: 33.5,27.5
parent: 2
type: Transform
- - uid: 26889
+ - uid: 26905
components:
- rot: 3.141592653589793 rad
pos: 25.5,29.5
parent: 2
type: Transform
- - uid: 26890
+ - uid: 26906
components:
- pos: 42.5,22.5
parent: 2
type: Transform
- - uid: 26891
+ - uid: 26907
components:
- pos: 47.5,-16.5
parent: 2
type: Transform
- - uid: 26892
+ - uid: 26908
components:
- rot: -1.5707963267948966 rad
pos: 39.5,-16.5
parent: 2
type: Transform
- - uid: 26893
+ - uid: 26909
components:
- rot: -1.5707963267948966 rad
pos: 40.5,-16.5
parent: 2
type: Transform
- - uid: 26894
+ - uid: 26910
components:
- rot: -1.5707963267948966 rad
pos: 40.5,-15.5
parent: 2
type: Transform
- - uid: 26895
+ - uid: 26911
components:
- rot: -1.5707963267948966 rad
pos: 41.5,-15.5
parent: 2
type: Transform
- - uid: 26896
+ - uid: 26912
components:
- pos: 48.5,-15.5
parent: 2
type: Transform
- - uid: 26897
+ - uid: 26913
components:
- pos: 44.5,-17.5
parent: 2
type: Transform
- - uid: 26898
+ - uid: 26914
components:
- pos: 44.5,-16.5
parent: 2
type: Transform
- - uid: 26899
+ - uid: 26915
components:
- pos: 11.5,-18.5
parent: 2
type: Transform
- - uid: 26900
+ - uid: 26916
components:
- pos: 44.5,9.5
parent: 2
type: Transform
- - uid: 26901
+ - uid: 26917
components:
- rot: 1.5707963267948966 rad
pos: 69.5,-12.5
parent: 2
type: Transform
- - uid: 26902
+ - uid: 26918
components:
- rot: 1.5707963267948966 rad
pos: 69.5,-10.5
parent: 2
type: Transform
- - uid: 26903
+ - uid: 26919
components:
- rot: 1.5707963267948966 rad
pos: 66.5,-14.5
parent: 2
type: Transform
- - uid: 26904
+ - uid: 26920
components:
- rot: 1.5707963267948966 rad
pos: 69.5,-14.5
parent: 2
type: Transform
- - uid: 26905
+ - uid: 26921
components:
- pos: 48.5,-14.5
parent: 2
type: Transform
- - uid: 26906
+ - uid: 26922
components:
- pos: 48.5,-16.5
parent: 2
type: Transform
- - uid: 26907
+ - uid: 26923
components:
- pos: 43.5,-16.5
parent: 2
type: Transform
- - uid: 26908
+ - uid: 26924
components:
- pos: 49.5,-14.5
parent: 2
type: Transform
- - uid: 26909
+ - uid: 26925
components:
- pos: 50.5,-14.5
parent: 2
type: Transform
- - uid: 26910
+ - uid: 26926
components:
- pos: 51.5,-14.5
parent: 2
type: Transform
- - uid: 26911
+ - uid: 26927
components:
- rot: 3.141592653589793 rad
pos: 54.5,-15.5
parent: 2
type: Transform
- - uid: 26912
+ - uid: 26928
components:
- rot: 3.141592653589793 rad
pos: 60.5,-15.5
parent: 2
type: Transform
- - uid: 26913
+ - uid: 26929
components:
- rot: 3.141592653589793 rad
pos: 57.5,-15.5
parent: 2
type: Transform
- - uid: 26914
+ - uid: 26930
components:
- rot: 3.141592653589793 rad
pos: 53.5,-15.5
parent: 2
type: Transform
- - uid: 26915
+ - uid: 26931
components:
- rot: 3.141592653589793 rad
pos: 53.5,-16.5
parent: 2
type: Transform
- - uid: 26916
+ - uid: 26932
components:
- rot: 3.141592653589793 rad
pos: 51.5,-15.5
parent: 2
type: Transform
- - uid: 26917
+ - uid: 26933
components:
- pos: 63.5,-14.5
parent: 2
type: Transform
- - uid: 26918
+ - uid: 26934
components:
- pos: 64.5,-14.5
parent: 2
type: Transform
- - uid: 26919
+ - uid: 26935
components:
- pos: 65.5,-14.5
parent: 2
type: Transform
- - uid: 26920
+ - uid: 26936
components:
- rot: 1.5707963267948966 rad
pos: 69.5,-4.5
parent: 2
type: Transform
- - uid: 26921
+ - uid: 26937
components:
- rot: 3.141592653589793 rad
pos: 66.5,-2.5
parent: 2
type: Transform
- - uid: 26922
+ - uid: 26938
components:
- pos: 68.5,-14.5
parent: 2
type: Transform
- - uid: 26923
+ - uid: 26939
components:
- rot: 1.5707963267948966 rad
pos: 69.5,-2.5
parent: 2
type: Transform
- - uid: 26924
+ - uid: 26940
components:
- pos: 63.5,-15.5
parent: 2
type: Transform
- - uid: 26925
+ - uid: 26941
components:
- rot: 3.141592653589793 rad
pos: 51.5,-16.5
parent: 2
type: Transform
- - uid: 26926
+ - uid: 26942
components:
- pos: 63.5,-16.5
parent: 2
type: Transform
- - uid: 26927
+ - uid: 26943
components:
- pos: 63.5,-17.5
parent: 2
type: Transform
- - uid: 26928
+ - uid: 26944
components:
- pos: 63.5,-19.5
parent: 2
type: Transform
- - uid: 26929
+ - uid: 26945
components:
- pos: 63.5,-21.5
parent: 2
type: Transform
- - uid: 26930
+ - uid: 26946
components:
- pos: 63.5,-23.5
parent: 2
type: Transform
- - uid: 26931
+ - uid: 26947
components:
- pos: 63.5,-25.5
parent: 2
type: Transform
- - uid: 26932
+ - uid: 26948
components:
- pos: 63.5,-27.5
parent: 2
type: Transform
- - uid: 26933
+ - uid: 26949
components:
- pos: 64.5,-27.5
parent: 2
type: Transform
- - uid: 26934
+ - uid: 26950
components:
- pos: 69.5,-31.5
parent: 2
type: Transform
- - uid: 26935
+ - uid: 26951
components:
- pos: 61.5,-16.5
parent: 2
type: Transform
- - uid: 26936
+ - uid: 26952
components:
- pos: 61.5,-17.5
parent: 2
type: Transform
- - uid: 26937
+ - uid: 26953
components:
- pos: 61.5,-19.5
parent: 2
type: Transform
- - uid: 26938
+ - uid: 26954
components:
- pos: 61.5,-21.5
parent: 2
type: Transform
- - uid: 26939
+ - uid: 26955
components:
- pos: 61.5,-23.5
parent: 2
type: Transform
- - uid: 26940
+ - uid: 26956
components:
- pos: 61.5,-25.5
parent: 2
type: Transform
- - uid: 26941
+ - uid: 26957
components:
- pos: 69.5,-32.5
parent: 2
type: Transform
- - uid: 26942
+ - uid: 26958
components:
- pos: 60.5,-16.5
parent: 2
type: Transform
- - uid: 26943
+ - uid: 26959
components:
- pos: -2.5,-36.5
parent: 2
type: Transform
- - uid: 26944
+ - uid: 26960
components:
- pos: 43.5,-15.5
parent: 2
type: Transform
- - uid: 26945
+ - uid: 26961
components:
- pos: 42.5,-15.5
parent: 2
type: Transform
- - uid: 26946
+ - uid: 26962
components:
- pos: 68.5,-15.5
parent: 2
type: Transform
- - uid: 26947
+ - uid: 26963
components:
- rot: 1.5707963267948966 rad
pos: 69.5,-6.5
parent: 2
type: Transform
- - uid: 26948
+ - uid: 26964
components:
- rot: -1.5707963267948966 rad
pos: 57.5,37.5
parent: 2
type: Transform
- - uid: 26949
+ - uid: 26965
components:
- pos: 70.5,-30.5
parent: 2
type: Transform
- - uid: 26950
+ - uid: 26966
components:
- pos: 72.5,-39.5
parent: 2
type: Transform
- - uid: 26951
+ - uid: 26967
components:
- pos: 76.5,-32.5
parent: 2
type: Transform
- - uid: 26952
+ - uid: 26968
components:
- pos: 65.5,-37.5
parent: 2
type: Transform
- - uid: 26953
+ - uid: 26969
components:
- pos: 63.5,-40.5
parent: 2
type: Transform
- - uid: 26954
+ - uid: 26970
components:
- pos: 63.5,-38.5
parent: 2
type: Transform
- - uid: 26955
+ - uid: 26971
components:
- pos: 76.5,-31.5
parent: 2
type: Transform
- - uid: 26956
+ - uid: 26972
components:
- rot: -1.5707963267948966 rad
pos: 60.5,-25.5
parent: 2
type: Transform
- - uid: 26957
+ - uid: 26973
components:
- pos: 52.5,-48.5
parent: 2
type: Transform
- - uid: 26958
+ - uid: 26974
components:
- pos: 52.5,-47.5
parent: 2
type: Transform
- - uid: 26959
+ - uid: 26975
components:
- pos: 52.5,-46.5
parent: 2
type: Transform
- - uid: 26960
+ - uid: 26976
components:
- pos: 53.5,-46.5
parent: 2
type: Transform
- - uid: 26961
+ - uid: 26977
components:
- pos: 54.5,-46.5
parent: 2
type: Transform
- - uid: 26962
+ - uid: 26978
components:
- pos: 71.5,-66.5
parent: 2
type: Transform
- - uid: 26963
+ - uid: 26979
components:
- pos: 75.5,-31.5
parent: 2
type: Transform
- - uid: 26964
+ - uid: 26980
components:
- pos: 75.5,-30.5
parent: 2
type: Transform
- - uid: 26965
+ - uid: 26981
components:
- pos: 74.5,-30.5
parent: 2
type: Transform
- - uid: 26966
+ - uid: 26982
components:
- rot: -1.5707963267948966 rad
pos: 70.5,-29.5
parent: 2
type: Transform
- - uid: 26967
+ - uid: 26983
components:
- pos: 64.5,-42.5
parent: 2
type: Transform
- - uid: 26968
+ - uid: 26984
components:
- pos: 55.5,-46.5
parent: 2
type: Transform
- - uid: 26969
+ - uid: 26985
components:
- pos: 57.5,-46.5
parent: 2
type: Transform
- - uid: 26970
+ - uid: 26986
components:
- pos: 58.5,-46.5
parent: 2
type: Transform
- - uid: 26971
+ - uid: 26987
components:
- pos: 58.5,-47.5
parent: 2
type: Transform
- - uid: 26972
+ - uid: 26988
components:
- pos: 58.5,-49.5
parent: 2
type: Transform
- - uid: 26973
+ - uid: 26989
components:
- pos: 59.5,-50.5
parent: 2
type: Transform
- - uid: 26974
+ - uid: 26990
components:
- pos: 60.5,-50.5
parent: 2
type: Transform
- - uid: 26975
+ - uid: 26991
components:
- pos: 64.5,-50.5
parent: 2
type: Transform
- - uid: 26976
+ - uid: 26992
components:
- pos: 65.5,-50.5
parent: 2
type: Transform
- - uid: 26977
+ - uid: 26993
components:
- pos: 63.5,-37.5
parent: 2
type: Transform
- - uid: 26978
+ - uid: 26994
components:
- pos: 7.5,-39.5
parent: 2
type: Transform
- - uid: 26979
+ - uid: 26995
components:
- rot: -1.5707963267948966 rad
pos: 53.5,-64.5
parent: 2
type: Transform
- - uid: 26980
+ - uid: 26996
components:
- pos: 63.5,-39.5
parent: 2
type: Transform
- - uid: 26981
+ - uid: 26997
components:
- pos: 63.5,-41.5
parent: 2
type: Transform
- - uid: 26982
+ - uid: 26998
components:
- pos: 52.5,-49.5
parent: 2
type: Transform
- - uid: 26983
+ - uid: 26999
components:
- pos: 53.5,-49.5
parent: 2
type: Transform
- - uid: 26984
+ - uid: 27000
components:
- pos: 53.5,-50.5
parent: 2
type: Transform
- - uid: 26985
+ - uid: 27001
components:
- pos: 54.5,-50.5
parent: 2
type: Transform
- - uid: 26986
+ - uid: 27002
components:
- pos: 55.5,-54.5
parent: 2
type: Transform
- - uid: 26987
+ - uid: 27003
components:
- pos: 65.5,-53.5
parent: 2
type: Transform
- - uid: 26988
+ - uid: 27004
components:
- pos: 54.5,-54.5
parent: 2
type: Transform
- - uid: 26989
+ - uid: 27005
components:
- pos: 59.5,-53.5
parent: 2
type: Transform
- - uid: 26990
+ - uid: 27006
components:
- pos: 56.5,-54.5
parent: 2
type: Transform
- - uid: 26991
+ - uid: 27007
components:
- pos: 64.5,-56.5
parent: 2
type: Transform
- - uid: 26992
+ - uid: 27008
components:
- pos: 64.5,-55.5
parent: 2
type: Transform
- - uid: 26993
+ - uid: 27009
components:
- pos: 60.5,-56.5
parent: 2
type: Transform
- - uid: 26994
+ - uid: 27010
components:
- pos: 60.5,-55.5
parent: 2
type: Transform
- - uid: 26995
+ - uid: 27011
components:
- pos: 66.5,-50.5
parent: 2
type: Transform
- - uid: 26996
+ - uid: 27012
components:
- pos: 66.5,-53.5
parent: 2
type: Transform
- - uid: 26997
+ - uid: 27013
components:
- pos: 65.5,-55.5
parent: 2
type: Transform
- - uid: 26998
+ - uid: 27014
components:
- pos: 59.5,-55.5
parent: 2
type: Transform
- - uid: 26999
+ - uid: 27015
components:
- pos: 58.5,-53.5
parent: 2
type: Transform
- - uid: 27000
+ - uid: 27016
components:
- pos: 58.5,-50.5
parent: 2
type: Transform
- - uid: 27001
+ - uid: 27017
components:
- pos: 76.5,-42.5
parent: 2
type: Transform
- - uid: 27002
+ - uid: 27018
components:
- pos: 44.5,-65.5
parent: 2
type: Transform
- - uid: 27003
+ - uid: 27019
components:
- pos: 70.5,-31.5
parent: 2
type: Transform
- - uid: 27004
+ - uid: 27020
components:
- pos: 64.5,-30.5
parent: 2
type: Transform
- - uid: 27005
+ - uid: 27021
components:
- pos: 73.5,-39.5
parent: 2
type: Transform
- - uid: 27006
+ - uid: 27022
components:
- pos: 73.5,-42.5
parent: 2
type: Transform
- - uid: 27007
+ - uid: 27023
components:
- pos: 73.5,-41.5
parent: 2
type: Transform
- - uid: 27008
+ - uid: 27024
components:
- pos: 68.5,-50.5
parent: 2
type: Transform
- - uid: 27009
+ - uid: 27025
components:
- pos: 67.5,-50.5
parent: 2
type: Transform
- - uid: 27010
+ - uid: 27026
components:
- pos: 65.5,-27.5
parent: 2
type: Transform
- - uid: 27011
+ - uid: 27027
components:
- pos: 65.5,-30.5
parent: 2
type: Transform
- - uid: 27012
+ - uid: 27028
components:
- pos: 76.5,-39.5
parent: 2
type: Transform
- - uid: 27013
+ - uid: 27029
components:
- pos: 76.5,-38.5
parent: 2
type: Transform
- - uid: 27014
+ - uid: 27030
components:
- pos: 79.5,-32.5
parent: 2
type: Transform
- - uid: 27015
+ - uid: 27031
components:
- pos: 79.5,-38.5
parent: 2
type: Transform
- - uid: 27016
+ - uid: 27032
components:
- rot: -1.5707963267948966 rad
pos: 74.5,-27.5
parent: 2
type: Transform
- - uid: 27017
+ - uid: 27033
components:
- pos: 76.5,-41.5
parent: 2
type: Transform
- - uid: 27018
+ - uid: 27034
components:
- pos: 76.5,-40.5
parent: 2
type: Transform
- - uid: 27019
+ - uid: 27035
components:
- pos: 24.5,-57.5
parent: 2
type: Transform
- - uid: 27020
+ - uid: 27036
components:
- rot: -1.5707963267948966 rad
pos: 32.5,-80.5
parent: 2
type: Transform
- - uid: 27021
+ - uid: 27037
components:
- pos: -45.5,-38.5
parent: 2
type: Transform
- - uid: 27022
+ - uid: 27038
components:
- pos: 53.5,-54.5
parent: 2
type: Transform
- - uid: 27023
+ - uid: 27039
components:
- pos: 53.5,-55.5
parent: 2
type: Transform
- - uid: 27024
+ - uid: 27040
components:
- pos: 53.5,-56.5
parent: 2
type: Transform
- - uid: 27025
+ - uid: 27041
components:
- rot: 3.141592653589793 rad
pos: 52.5,-62.5
parent: 2
type: Transform
- - uid: 27026
+ - uid: 27042
components:
- rot: 3.141592653589793 rad
pos: 48.5,-62.5
parent: 2
type: Transform
- - uid: 27027
+ - uid: 27043
components:
- rot: 3.141592653589793 rad
pos: 47.5,-62.5
parent: 2
type: Transform
- - uid: 27028
+ - uid: 27044
components:
- pos: 34.5,-61.5
parent: 2
type: Transform
- - uid: 27029
+ - uid: 27045
components:
- pos: 35.5,-61.5
parent: 2
type: Transform
- - uid: 27030
+ - uid: 27046
components:
- pos: 36.5,-61.5
parent: 2
type: Transform
- - uid: 27031
+ - uid: 27047
components:
- pos: 37.5,-61.5
parent: 2
type: Transform
- - uid: 27032
+ - uid: 27048
components:
- pos: 37.5,-62.5
parent: 2
type: Transform
- - uid: 27033
+ - uid: 27049
components:
- pos: 37.5,-63.5
parent: 2
type: Transform
- - uid: 27034
+ - uid: 27050
components:
- pos: 37.5,-65.5
parent: 2
type: Transform
- - uid: 27035
+ - uid: 27051
components:
- pos: 37.5,-67.5
parent: 2
type: Transform
- - uid: 27036
+ - uid: 27052
components:
- pos: 37.5,-68.5
parent: 2
type: Transform
- - uid: 27037
+ - uid: 27053
components:
- rot: -1.5707963267948966 rad
pos: 48.5,-66.5
parent: 2
type: Transform
- - uid: 27038
+ - uid: 27054
components:
- pos: 41.5,-67.5
parent: 2
type: Transform
- - uid: 27039
+ - uid: 27055
components:
- pos: 41.5,-68.5
parent: 2
type: Transform
- - uid: 27040
+ - uid: 27056
components:
- pos: -33.5,-14.5
parent: 2
type: Transform
- - uid: 27041
+ - uid: 27057
components:
- pos: -33.5,-18.5
parent: 2
type: Transform
- - uid: 27042
+ - uid: 27058
components:
- pos: -33.5,-19.5
parent: 2
type: Transform
- - uid: 27043
+ - uid: 27059
components:
- rot: 1.5707963267948966 rad
pos: 44.5,-81.5
parent: 2
type: Transform
- - uid: 27044
+ - uid: 27060
components:
- rot: -1.5707963267948966 rad
pos: 57.5,41.5
parent: 2
type: Transform
- - uid: 27045
+ - uid: 27061
components:
- pos: -17.5,-47.5
parent: 2
type: Transform
- - uid: 27046
+ - uid: 27062
components:
- pos: -22.5,-44.5
parent: 2
type: Transform
- - uid: 27047
+ - uid: 27063
components:
- rot: 3.141592653589793 rad
pos: 24.5,26.5
parent: 2
type: Transform
- - uid: 27048
+ - uid: 27064
components:
- pos: 56.5,-56.5
parent: 2
type: Transform
- - uid: 27049
+ - uid: 27065
components:
- pos: 56.5,-57.5
parent: 2
type: Transform
- - uid: 27050
+ - uid: 27066
components:
- pos: 57.5,-57.5
parent: 2
type: Transform
- - uid: 27051
+ - uid: 27067
components:
- pos: 57.5,-58.5
parent: 2
type: Transform
- - uid: 27052
+ - uid: 27068
components:
- pos: 58.5,-58.5
parent: 2
type: Transform
- - uid: 27053
+ - uid: 27069
components:
- pos: 58.5,-61.5
parent: 2
type: Transform
- - uid: 27054
+ - uid: 27070
components:
- pos: 53.5,-62.5
parent: 2
type: Transform
- - uid: 27055
+ - uid: 27071
components:
- pos: 53.5,-25.5
parent: 2
type: Transform
- - uid: 27056
+ - uid: 27072
components:
- pos: 52.5,-26.5
parent: 2
type: Transform
- - uid: 27057
+ - uid: 27073
components:
- pos: -17.5,-49.5
parent: 2
type: Transform
- - uid: 27058
+ - uid: 27074
components:
- pos: -17.5,-48.5
parent: 2
type: Transform
- - uid: 27059
+ - uid: 27075
components:
- pos: -22.5,-45.5
parent: 2
type: Transform
- - uid: 27060
+ - uid: 27076
components:
- pos: -22.5,-46.5
parent: 2
type: Transform
- - uid: 27061
+ - uid: 27077
components:
- pos: -22.5,-47.5
parent: 2
type: Transform
- - uid: 27062
+ - uid: 27078
components:
- rot: 1.5707963267948966 rad
pos: 33.5,-88.5
parent: 2
type: Transform
- - uid: 27063
+ - uid: 27079
components:
- rot: -1.5707963267948966 rad
pos: 36.5,-74.5
parent: 2
type: Transform
- - uid: 27064
+ - uid: 27080
components:
- rot: -1.5707963267948966 rad
pos: 36.5,-75.5
parent: 2
type: Transform
- - uid: 27065
+ - uid: 27081
components:
- pos: 42.5,-74.5
parent: 2
type: Transform
- - uid: 27066
+ - uid: 27082
components:
- rot: 3.141592653589793 rad
pos: 45.5,-74.5
parent: 2
type: Transform
- - uid: 27067
+ - uid: 27083
components:
- rot: 3.141592653589793 rad
pos: 46.5,-74.5
parent: 2
type: Transform
- - uid: 27068
+ - uid: 27084
components:
- rot: 1.5707963267948966 rad
pos: 34.5,-90.5
parent: 2
type: Transform
- - uid: 27069
+ - uid: 27085
components:
- rot: 3.141592653589793 rad
pos: 46.5,-70.5
parent: 2
type: Transform
- - uid: 27070
+ - uid: 27086
components:
- pos: 33.5,-70.5
parent: 2
type: Transform
- - uid: 27071
+ - uid: 27087
components:
- pos: 32.5,-70.5
parent: 2
type: Transform
- - uid: 27072
+ - uid: 27088
components:
- pos: 12.5,-70.5
parent: 2
type: Transform
- - uid: 27073
+ - uid: 27089
components:
- pos: 45.5,-70.5
parent: 2
type: Transform
- - uid: 27074
+ - uid: 27090
components:
- pos: 41.5,-69.5
parent: 2
type: Transform
- - uid: 27075
+ - uid: 27091
components:
- rot: -1.5707963267948966 rad
pos: 42.5,-65.5
parent: 2
type: Transform
- - uid: 27076
+ - uid: 27092
components:
- rot: -1.5707963267948966 rad
pos: 41.5,-65.5
parent: 2
type: Transform
- - uid: 27077
+ - uid: 27093
components:
- pos: 45.5,-69.5
parent: 2
type: Transform
- - uid: 27078
+ - uid: 27094
components:
- pos: 37.5,-69.5
parent: 2
type: Transform
- - uid: 27079
+ - uid: 27095
components:
- pos: 33.5,-69.5
parent: 2
type: Transform
- - uid: 27080
+ - uid: 27096
components:
- rot: 1.5707963267948966 rad
pos: 28.5,-75.5
parent: 2
type: Transform
- - uid: 27081
+ - uid: 27097
components:
- rot: -1.5707963267948966 rad
pos: 31.5,-94.5
parent: 2
type: Transform
- - uid: 27082
+ - uid: 27098
components:
- rot: -1.5707963267948966 rad
pos: 32.5,-75.5
parent: 2
type: Transform
- - uid: 27083
+ - uid: 27099
components:
- pos: 7.5,-77.5
parent: 2
type: Transform
- - uid: 27084
+ - uid: 27100
components:
- rot: 3.141592653589793 rad
pos: 20.5,-84.5
parent: 2
type: Transform
- - uid: 27085
+ - uid: 27101
components:
- rot: -1.5707963267948966 rad
pos: 28.5,-93.5
parent: 2
type: Transform
- - uid: 27086
+ - uid: 27102
components:
- rot: 3.141592653589793 rad
pos: 10.5,-86.5
parent: 2
type: Transform
- - uid: 27087
+ - uid: 27103
components:
- rot: 3.141592653589793 rad
pos: 11.5,-87.5
parent: 2
type: Transform
- - uid: 27088
+ - uid: 27104
components:
- rot: 3.141592653589793 rad
pos: 12.5,-87.5
parent: 2
type: Transform
- - uid: 27089
+ - uid: 27105
components:
- rot: 1.5707963267948966 rad
pos: 50.5,-85.5
parent: 2
type: Transform
- - uid: 27090
+ - uid: 27106
components:
- rot: 3.141592653589793 rad
pos: 21.5,-82.5
parent: 2
type: Transform
- - uid: 27091
+ - uid: 27107
components:
- rot: -1.5707963267948966 rad
pos: 46.5,-76.5
parent: 2
type: Transform
- - uid: 27092
+ - uid: 27108
components:
- rot: 3.141592653589793 rad
pos: 20.5,-82.5
parent: 2
type: Transform
- - uid: 27093
+ - uid: 27109
components:
- rot: 1.5707963267948966 rad
pos: 45.5,-83.5
parent: 2
type: Transform
- - uid: 27094
+ - uid: 27110
components:
- rot: 3.141592653589793 rad
pos: 15.5,-78.5
parent: 2
type: Transform
- - uid: 27095
+ - uid: 27111
components:
- rot: 3.141592653589793 rad
pos: 18.5,-87.5
parent: 2
type: Transform
- - uid: 27096
+ - uid: 27112
components:
- rot: 3.141592653589793 rad
pos: 19.5,-87.5
parent: 2
type: Transform
- - uid: 27097
+ - uid: 27113
components:
- rot: -1.5707963267948966 rad
pos: 28.5,-87.5
parent: 2
type: Transform
- - uid: 27098
+ - uid: 27114
components:
- rot: 3.141592653589793 rad
pos: 19.5,-86.5
parent: 2
type: Transform
- - uid: 27099
+ - uid: 27115
components:
- rot: 3.141592653589793 rad
pos: 20.5,-86.5
parent: 2
type: Transform
- - uid: 27100
+ - uid: 27116
components:
- rot: 3.141592653589793 rad
pos: 20.5,-85.5
parent: 2
type: Transform
- - uid: 27101
+ - uid: 27117
components:
- rot: 3.141592653589793 rad
pos: 22.5,-84.5
parent: 2
type: Transform
- - uid: 27102
+ - uid: 27118
components:
- rot: 1.5707963267948966 rad
pos: 50.5,-75.5
parent: 2
type: Transform
- - uid: 27103
+ - uid: 27119
components:
- rot: 3.141592653589793 rad
pos: 20.5,-81.5
parent: 2
type: Transform
- - uid: 27104
+ - uid: 27120
components:
- rot: 3.141592653589793 rad
pos: 19.5,-80.5
parent: 2
type: Transform
- - uid: 27105
+ - uid: 27121
components:
- pos: 7.5,-75.5
parent: 2
type: Transform
- - uid: 27106
+ - uid: 27122
components:
- rot: -1.5707963267948966 rad
pos: 29.5,-93.5
parent: 2
type: Transform
- - uid: 27107
+ - uid: 27123
components:
- rot: -1.5707963267948966 rad
pos: 31.5,-95.5
parent: 2
type: Transform
- - uid: 27108
+ - uid: 27124
components:
- rot: -1.5707963267948966 rad
pos: 29.5,-95.5
parent: 2
type: Transform
- - uid: 27109
+ - uid: 27125
components:
- rot: -1.5707963267948966 rad
pos: 29.5,-94.5
parent: 2
type: Transform
- - uid: 27110
+ - uid: 27126
components:
- rot: -1.5707963267948966 rad
pos: 46.5,-80.5
parent: 2
type: Transform
- - uid: 27111
+ - uid: 27127
components:
- pos: 8.5,-77.5
parent: 2
type: Transform
- - uid: 27112
+ - uid: 27128
components:
- rot: 3.141592653589793 rad
pos: 19.5,-79.5
parent: 2
type: Transform
- - uid: 27113
+ - uid: 27129
components:
- rot: 3.141592653589793 rad
pos: 18.5,-79.5
parent: 2
type: Transform
- - uid: 27114
+ - uid: 27130
components:
- rot: 1.5707963267948966 rad
pos: 34.5,-88.5
parent: 2
type: Transform
- - uid: 27115
+ - uid: 27131
components:
- rot: -1.5707963267948966 rad
pos: 44.5,-74.5
parent: 2
type: Transform
- - uid: 27116
+ - uid: 27132
components:
- pos: 12.5,-71.5
parent: 2
type: Transform
- - uid: 27117
+ - uid: 27133
components:
- pos: 9.5,-72.5
parent: 2
type: Transform
- - uid: 27118
+ - uid: 27134
components:
- pos: 9.5,-73.5
parent: 2
type: Transform
- - uid: 27119
+ - uid: 27135
components:
- pos: 9.5,-74.5
parent: 2
type: Transform
- - uid: 27120
+ - uid: 27136
components:
- pos: 10.5,-74.5
parent: 2
type: Transform
- - uid: 27121
+ - uid: 27137
components:
- pos: 11.5,-74.5
parent: 2
type: Transform
- - uid: 27122
+ - uid: 27138
components:
- pos: 12.5,-74.5
parent: 2
type: Transform
- - uid: 27123
+ - uid: 27139
components:
- pos: 13.5,-74.5
parent: 2
type: Transform
- - uid: 27124
+ - uid: 27140
components:
- pos: 16.5,-74.5
parent: 2
type: Transform
- - uid: 27125
+ - uid: 27141
components:
- pos: 19.5,-74.5
parent: 2
type: Transform
- - uid: 27126
+ - uid: 27142
components:
- pos: 21.5,-74.5
parent: 2
type: Transform
- - uid: 27127
+ - uid: 27143
components:
- pos: 21.5,-72.5
parent: 2
type: Transform
- - uid: 27128
+ - uid: 27144
components:
- pos: 20.5,-72.5
parent: 2
type: Transform
- - uid: 27129
+ - uid: 27145
components:
- pos: 19.5,-72.5
parent: 2
type: Transform
- - uid: 27130
+ - uid: 27146
components:
- pos: 31.5,-70.5
parent: 2
type: Transform
- - uid: 27131
+ - uid: 27147
components:
- pos: 42.5,-75.5
parent: 2
type: Transform
- - uid: 27132
+ - uid: 27148
components:
- pos: 44.5,-75.5
parent: 2
type: Transform
- - uid: 27133
+ - uid: 27149
components:
- rot: -1.5707963267948966 rad
pos: 27.5,-87.5
parent: 2
type: Transform
- - uid: 27134
+ - uid: 27150
components:
- rot: -1.5707963267948966 rad
pos: 33.5,-83.5
parent: 2
type: Transform
- - uid: 27135
+ - uid: 27151
components:
- rot: 1.5707963267948966 rad
pos: 46.5,-81.5
parent: 2
type: Transform
- - uid: 27136
+ - uid: 27152
components:
- rot: -1.5707963267948966 rad
pos: 26.5,-87.5
parent: 2
type: Transform
- - uid: 27137
+ - uid: 27153
components:
- rot: -1.5707963267948966 rad
pos: 34.5,-75.5
parent: 2
type: Transform
- - uid: 27138
+ - uid: 27154
components:
- rot: 1.5707963267948966 rad
pos: 46.5,-83.5
parent: 2
type: Transform
- - uid: 27139
+ - uid: 27155
components:
- rot: -1.5707963267948966 rad
pos: 27.5,-79.5
parent: 2
type: Transform
- - uid: 27140
+ - uid: 27156
components:
- pos: 16.5,-71.5
parent: 2
type: Transform
- - uid: 27141
+ - uid: 27157
components:
- pos: 29.5,-69.5
parent: 2
type: Transform
- - uid: 27142
+ - uid: 27158
components:
- pos: 29.5,-70.5
parent: 2
type: Transform
- - uid: 27143
+ - uid: 27159
components:
- pos: 28.5,-68.5
parent: 2
type: Transform
- - uid: 27144
+ - uid: 27160
components:
- pos: 30.5,-70.5
parent: 2
type: Transform
- - uid: 27145
+ - uid: 27161
components:
- pos: 20.5,-74.5
parent: 2
type: Transform
- - uid: 27146
+ - uid: 27162
components:
- pos: 19.5,-71.5
parent: 2
type: Transform
- - uid: 27147
+ - uid: 27163
components:
- pos: 22.5,-70.5
parent: 2
type: Transform
- - uid: 27148
+ - uid: 27164
components:
- rot: -1.5707963267948966 rad
pos: 32.5,-93.5
parent: 2
type: Transform
- - uid: 27149
+ - uid: 27165
components:
- pos: 23.5,-82.5
parent: 2
type: Transform
- - uid: 27150
+ - uid: 27166
components:
- rot: 3.141592653589793 rad
pos: 22.5,-82.5
parent: 2
type: Transform
- - uid: 27151
+ - uid: 27167
components:
- pos: 23.5,-84.5
parent: 2
type: Transform
- - uid: 27152
+ - uid: 27168
components:
- pos: 21.5,-70.5
parent: 2
type: Transform
- - uid: 27153
+ - uid: 27169
components:
- pos: 22.5,-74.5
parent: 2
type: Transform
- - uid: 27154
+ - uid: 27170
components:
- pos: 23.5,-74.5
parent: 2
type: Transform
- - uid: 27155
+ - uid: 27171
components:
- pos: 23.5,-75.5
parent: 2
type: Transform
- - uid: 27156
+ - uid: 27172
components:
- rot: 1.5707963267948966 rad
pos: 28.5,-78.5
parent: 2
type: Transform
- - uid: 27157
+ - uid: 27173
components:
- rot: -1.5707963267948966 rad
pos: 23.5,-86.5
parent: 2
type: Transform
- - uid: 27158
+ - uid: 27174
components:
- rot: 1.5707963267948966 rad
pos: 28.5,-88.5
parent: 2
type: Transform
- - uid: 27159
+ - uid: 27175
components:
- rot: 1.5707963267948966 rad
pos: 50.5,-86.5
parent: 2
type: Transform
- - uid: 27160
+ - uid: 27176
components:
- rot: 3.141592653589793 rad
pos: 11.5,-80.5
parent: 2
type: Transform
- - uid: 27161
+ - uid: 27177
components:
- rot: 3.141592653589793 rad
pos: 11.5,-86.5
parent: 2
type: Transform
- - uid: 27162
+ - uid: 27178
components:
- pos: 7.5,-73.5
parent: 2
type: Transform
- - uid: 27163
+ - uid: 27179
components:
- rot: 3.141592653589793 rad
pos: 21.5,-84.5
parent: 2
type: Transform
- - uid: 27164
+ - uid: 27180
components:
- rot: 3.141592653589793 rad
pos: 15.5,-88.5
parent: 2
type: Transform
- - uid: 27165
+ - uid: 27181
components:
- rot: 3.141592653589793 rad
pos: 20.5,-80.5
parent: 2
type: Transform
- - uid: 27166
+ - uid: 27182
components:
- rot: 1.5707963267948966 rad
pos: 28.5,-76.5
parent: 2
type: Transform
- - uid: 27167
+ - uid: 27183
components:
- rot: 1.5707963267948966 rad
pos: 32.5,-90.5
parent: 2
type: Transform
- - uid: 27168
+ - uid: 27184
components:
- rot: 1.5707963267948966 rad
pos: 32.5,-88.5
parent: 2
type: Transform
- - uid: 27169
+ - uid: 27185
components:
- rot: -1.5707963267948966 rad
pos: 41.5,-66.5
parent: 2
type: Transform
- - uid: 27170
+ - uid: 27186
components:
- rot: 1.5707963267948966 rad
pos: 46.5,-90.5
parent: 2
type: Transform
- - uid: 27171
+ - uid: 27187
components:
- rot: -1.5707963267948966 rad
pos: 23.5,-81.5
parent: 2
type: Transform
- - uid: 27172
+ - uid: 27188
components:
- pos: 21.5,-71.5
parent: 2
type: Transform
- - uid: 27173
+ - uid: 27189
components:
- rot: -1.5707963267948966 rad
pos: 53.5,-63.5
parent: 2
type: Transform
- - uid: 27174
+ - uid: 27190
components:
- rot: 1.5707963267948966 rad
pos: 49.5,-70.5
parent: 2
type: Transform
- - uid: 27175
+ - uid: 27191
components:
- rot: -1.5707963267948966 rad
pos: 23.5,-85.5
parent: 2
type: Transform
- - uid: 27176
+ - uid: 27192
components:
- pos: 23.5,-68.5
parent: 2
type: Transform
- - uid: 27177
+ - uid: 27193
components:
- pos: -34.5,-14.5
parent: 2
type: Transform
- - uid: 27178
+ - uid: 27194
components:
- pos: -35.5,-14.5
parent: 2
type: Transform
- - uid: 27179
+ - uid: 27195
components:
- pos: -38.5,-14.5
parent: 2
type: Transform
- - uid: 27180
+ - uid: 27196
components:
- pos: -39.5,-14.5
parent: 2
type: Transform
- - uid: 27181
+ - uid: 27197
components:
- pos: -40.5,-14.5
parent: 2
type: Transform
- - uid: 27182
+ - uid: 27198
components:
- pos: -17.5,-46.5
parent: 2
type: Transform
- - uid: 27183
+ - uid: 27199
components:
- pos: -17.5,-45.5
parent: 2
type: Transform
- - uid: 27184
+ - uid: 27200
components:
- pos: -17.5,-44.5
parent: 2
type: Transform
- - uid: 27185
+ - uid: 27201
components:
- pos: -18.5,-44.5
parent: 2
type: Transform
- - uid: 27186
+ - uid: 27202
components:
- pos: -20.5,-44.5
parent: 2
type: Transform
- - uid: 27187
+ - uid: 27203
components:
- pos: -21.5,-44.5
parent: 2
type: Transform
- - uid: 27188
+ - uid: 27204
components:
- pos: -38.5,-19.5
parent: 2
type: Transform
- - uid: 27189
+ - uid: 27205
components:
- pos: -38.5,-18.5
parent: 2
type: Transform
- - uid: 27190
+ - uid: 27206
components:
- pos: -38.5,-17.5
parent: 2
type: Transform
- - uid: 27191
+ - uid: 27207
components:
- pos: -38.5,-16.5
parent: 2
type: Transform
- - uid: 27192
+ - uid: 27208
components:
- pos: -38.5,-15.5
parent: 2
type: Transform
- - uid: 27193
+ - uid: 27209
components:
- pos: 77.5,-49.5
parent: 2
type: Transform
- - uid: 27194
+ - uid: 27210
components:
- pos: 73.5,-50.5
parent: 2
type: Transform
- - uid: 27195
+ - uid: 27211
components:
- pos: 73.5,-52.5
parent: 2
type: Transform
- - uid: 27196
+ - uid: 27212
components:
- pos: 73.5,-54.5
parent: 2
type: Transform
- - uid: 27197
+ - uid: 27213
components:
- pos: 72.5,-54.5
parent: 2
type: Transform
- - uid: 27198
+ - uid: 27214
components:
- pos: 69.5,-54.5
parent: 2
type: Transform
- - uid: 27199
+ - uid: 27215
components:
- rot: -1.5707963267948966 rad
pos: 69.5,-55.5
parent: 2
type: Transform
- - uid: 27200
+ - uid: 27216
components:
- rot: 3.141592653589793 rad
pos: -40.5,-21.5
parent: 2
type: Transform
- - uid: 27201
+ - uid: 27217
components:
- rot: 3.141592653589793 rad
pos: -40.5,-22.5
parent: 2
type: Transform
- - uid: 27202
+ - uid: 27218
components:
- pos: -44.5,-24.5
parent: 2
type: Transform
- - uid: 27203
+ - uid: 27219
components:
- pos: -42.5,-14.5
parent: 2
type: Transform
- - uid: 27204
+ - uid: 27220
components:
- pos: -43.5,-14.5
parent: 2
type: Transform
- - uid: 27205
+ - uid: 27221
components:
- pos: -43.5,-12.5
parent: 2
type: Transform
- - uid: 27206
+ - uid: 27222
components:
- pos: -43.5,-9.5
parent: 2
type: Transform
- - uid: 27207
+ - uid: 27223
components:
- pos: -43.5,-8.5
parent: 2
type: Transform
- - uid: 27208
+ - uid: 27224
components:
- pos: -43.5,-7.5
parent: 2
type: Transform
- - uid: 27209
+ - uid: 27225
components:
- pos: -43.5,-19.5
parent: 2
type: Transform
- - uid: 27210
+ - uid: 27226
components:
- pos: -42.5,-19.5
parent: 2
type: Transform
- - uid: 27211
+ - uid: 27227
components:
- pos: -40.5,-19.5
parent: 2
type: Transform
- - uid: 27212
+ - uid: 27228
components:
- pos: -39.5,-19.5
parent: 2
type: Transform
- - uid: 27213
+ - uid: 27229
components:
- pos: -43.5,-15.5
parent: 2
type: Transform
- - uid: 27214
+ - uid: 27230
components:
- pos: -43.5,-16.5
parent: 2
type: Transform
- - uid: 27215
+ - uid: 27231
components:
- pos: -43.5,-17.5
parent: 2
type: Transform
- - uid: 27216
+ - uid: 27232
components:
- pos: -43.5,-18.5
parent: 2
type: Transform
- - uid: 27217
+ - uid: 27233
components:
- pos: 59.5,-61.5
parent: 2
type: Transform
- - uid: 27218
+ - uid: 27234
components:
- pos: 67.5,-58.5
parent: 2
type: Transform
- - uid: 27219
+ - uid: 27235
components:
- rot: -1.5707963267948966 rad
pos: 67.5,-60.5
parent: 2
type: Transform
- - uid: 27220
+ - uid: 27236
components:
- pos: 68.5,-58.5
parent: 2
type: Transform
- - uid: 27221
+ - uid: 27237
components:
- pos: 65.5,-61.5
parent: 2
type: Transform
- - uid: 27222
+ - uid: 27238
components:
- pos: 60.5,-61.5
parent: 2
type: Transform
- - uid: 27223
+ - uid: 27239
components:
- pos: 65.5,-60.5
parent: 2
type: Transform
- - uid: 27224
+ - uid: 27240
components:
- pos: 67.5,-59.5
parent: 2
type: Transform
- - uid: 27225
+ - uid: 27241
components:
- pos: 52.5,-29.5
parent: 2
type: Transform
- - uid: 27226
+ - uid: 27242
components:
- pos: 52.5,-28.5
parent: 2
type: Transform
- - uid: 27227
+ - uid: 27243
components:
- pos: 52.5,-27.5
parent: 2
type: Transform
- - uid: 27228
+ - uid: 27244
components:
- pos: 52.5,-30.5
parent: 2
type: Transform
- - uid: 27229
+ - uid: 27245
components:
- pos: 52.5,-31.5
parent: 2
type: Transform
- - uid: 27230
+ - uid: 27246
components:
- pos: 43.5,-32.5
parent: 2
type: Transform
- - uid: 27231
+ - uid: 27247
components:
- pos: 58.5,-68.5
parent: 2
type: Transform
- - uid: 27232
+ - uid: 27248
components:
- pos: 49.5,-32.5
parent: 2
type: Transform
- - uid: 27233
+ - uid: 27249
components:
- pos: 48.5,-32.5
parent: 2
type: Transform
- - uid: 27234
+ - uid: 27250
components:
- pos: 46.5,-32.5
parent: 2
type: Transform
- - uid: 27235
+ - uid: 27251
components:
- pos: 57.5,-68.5
parent: 2
type: Transform
- - uid: 27236
+ - uid: 27252
components:
- pos: 45.5,-32.5
parent: 2
type: Transform
- - uid: 27237
+ - uid: 27253
components:
- pos: 69.5,-67.5
parent: 2
type: Transform
- - uid: 27238
+ - uid: 27254
components:
- pos: 70.5,-67.5
parent: 2
type: Transform
- - uid: 27239
+ - uid: 27255
components:
- pos: 71.5,-67.5
parent: 2
type: Transform
- - uid: 27240
+ - uid: 27256
components:
- pos: 71.5,-63.5
parent: 2
type: Transform
- - uid: 27241
+ - uid: 27257
components:
- pos: 72.5,-63.5
parent: 2
type: Transform
- - uid: 27242
+ - uid: 27258
components:
- pos: 72.5,-60.5
parent: 2
type: Transform
- - uid: 27243
+ - uid: 27259
components:
- pos: 73.5,-60.5
parent: 2
type: Transform
- - uid: 27244
+ - uid: 27260
components:
- pos: 72.5,-61.5
parent: 2
type: Transform
- - uid: 27245
+ - uid: 27261
components:
- pos: 72.5,-62.5
parent: 2
type: Transform
- - uid: 27246
+ - uid: 27262
components:
- pos: 73.5,-59.5
parent: 2
type: Transform
- - uid: 27247
+ - uid: 27263
components:
- pos: 73.5,-58.5
parent: 2
type: Transform
- - uid: 27248
+ - uid: 27264
components:
- pos: 74.5,-58.5
parent: 2
type: Transform
- - uid: 27249
+ - uid: 27265
components:
- pos: 75.5,-58.5
parent: 2
type: Transform
- - uid: 27250
+ - uid: 27266
components:
- pos: 10.5,-38.5
parent: 2
type: Transform
- - uid: 27251
+ - uid: 27267
components:
- pos: -43.5,-23.5
parent: 2
type: Transform
- - uid: 27252
+ - uid: 27268
components:
- rot: 3.141592653589793 rad
pos: -59.5,-28.5
parent: 2
type: Transform
- - uid: 27253
+ - uid: 27269
components:
- pos: -43.5,-24.5
parent: 2
type: Transform
- - uid: 27254
+ - uid: 27270
components:
- rot: 3.141592653589793 rad
pos: -40.5,-20.5
parent: 2
type: Transform
- - uid: 27255
+ - uid: 27271
components:
- rot: -1.5707963267948966 rad
pos: -34.5,-38.5
parent: 2
type: Transform
- - uid: 27256
+ - uid: 27272
components:
- rot: -1.5707963267948966 rad
pos: -40.5,-37.5
parent: 2
type: Transform
- - uid: 27257
+ - uid: 27273
components:
- pos: 28.5,-69.5
parent: 2
type: Transform
- - uid: 27258
+ - uid: 27274
components:
- pos: 22.5,-69.5
parent: 2
type: Transform
- - uid: 27259
+ - uid: 27275
components:
- pos: 23.5,-69.5
parent: 2
type: Transform
- - uid: 27260
+ - uid: 27276
components:
- rot: -1.5707963267948966 rad
pos: -33.5,-39.5
parent: 2
type: Transform
- - uid: 27261
+ - uid: 27277
components:
- rot: -1.5707963267948966 rad
pos: -33.5,-38.5
parent: 2
type: Transform
- - uid: 27262
+ - uid: 27278
components:
- pos: -41.5,-36.5
parent: 2
type: Transform
- - uid: 27263
+ - uid: 27279
components:
- pos: -41.5,-37.5
parent: 2
type: Transform
- - uid: 27264
+ - uid: 27280
components:
- rot: -1.5707963267948966 rad
pos: -39.5,-37.5
parent: 2
type: Transform
- - uid: 27265
+ - uid: 27281
components:
- rot: -1.5707963267948966 rad
pos: -35.5,-37.5
parent: 2
type: Transform
- - uid: 27266
+ - uid: 27282
components:
- rot: -1.5707963267948966 rad
pos: -36.5,-37.5
parent: 2
type: Transform
- - uid: 27267
+ - uid: 27283
components:
- rot: -1.5707963267948966 rad
pos: -33.5,-42.5
parent: 2
type: Transform
- - uid: 27268
+ - uid: 27284
components:
- rot: -1.5707963267948966 rad
pos: -32.5,-42.5
parent: 2
type: Transform
- - uid: 27269
+ - uid: 27285
components:
- pos: -44.5,-7.5
parent: 2
type: Transform
- - uid: 27270
+ - uid: 27286
components:
- pos: -45.5,-7.5
parent: 2
type: Transform
- - uid: 27271
+ - uid: 27287
components:
- pos: -47.5,-7.5
parent: 2
type: Transform
- - uid: 27272
+ - uid: 27288
components:
- pos: -48.5,-7.5
parent: 2
type: Transform
- - uid: 27273
+ - uid: 27289
components:
- pos: -49.5,-10.5
parent: 2
type: Transform
- - uid: 27274
+ - uid: 27290
components:
- pos: -49.5,-9.5
parent: 2
type: Transform
- - uid: 27275
+ - uid: 27291
components:
- pos: -49.5,-8.5
parent: 2
type: Transform
- - uid: 27276
+ - uid: 27292
components:
- pos: -49.5,-7.5
parent: 2
type: Transform
- - uid: 27277
+ - uid: 27293
components:
- pos: -49.5,-18.5
parent: 2
type: Transform
- - uid: 27278
+ - uid: 27294
components:
- pos: -48.5,-18.5
parent: 2
type: Transform
- - uid: 27279
+ - uid: 27295
components:
- pos: -47.5,-18.5
parent: 2
type: Transform
- - uid: 27280
+ - uid: 27296
components:
- pos: -46.5,-18.5
parent: 2
type: Transform
- - uid: 27281
+ - uid: 27297
components:
- pos: -49.5,-11.5
parent: 2
type: Transform
- - uid: 27282
+ - uid: 27298
components:
- pos: -50.5,-11.5
parent: 2
type: Transform
- - uid: 27283
+ - uid: 27299
components:
- pos: -51.5,-11.5
parent: 2
type: Transform
- - uid: 27284
+ - uid: 27300
components:
- pos: -51.5,-12.5
parent: 2
type: Transform
- - uid: 27285
+ - uid: 27301
components:
- pos: -51.5,-14.5
parent: 2
type: Transform
- - uid: 27286
+ - uid: 27302
components:
- pos: -51.5,-15.5
parent: 2
type: Transform
- - uid: 27287
+ - uid: 27303
components:
- pos: -50.5,-15.5
parent: 2
type: Transform
- - uid: 27288
+ - uid: 27304
components:
- pos: -49.5,-15.5
parent: 2
type: Transform
- - uid: 27289
+ - uid: 27305
components:
- pos: -49.5,-4.5
parent: 2
type: Transform
- - uid: 27290
+ - uid: 27306
components:
- pos: -50.5,-4.5
parent: 2
type: Transform
- - uid: 27291
+ - uid: 27307
components:
- pos: -51.5,-4.5
parent: 2
type: Transform
- - uid: 27292
+ - uid: 27308
components:
- pos: -52.5,-4.5
parent: 2
type: Transform
- - uid: 27293
+ - uid: 27309
components:
- pos: -53.5,-4.5
parent: 2
type: Transform
- - uid: 27294
+ - uid: 27310
components:
- pos: -54.5,-4.5
parent: 2
type: Transform
- - uid: 27295
+ - uid: 27311
components:
- pos: -55.5,-4.5
parent: 2
type: Transform
- - uid: 27296
+ - uid: 27312
components:
- pos: -55.5,-5.5
parent: 2
type: Transform
- - uid: 27297
+ - uid: 27313
components:
- pos: -56.5,-5.5
parent: 2
type: Transform
- - uid: 27298
+ - uid: 27314
components:
- pos: -56.5,-6.5
parent: 2
type: Transform
- - uid: 27299
+ - uid: 27315
components:
- pos: -56.5,-7.5
parent: 2
type: Transform
- - uid: 27300
+ - uid: 27316
components:
- pos: -56.5,-8.5
parent: 2
type: Transform
- - uid: 27301
+ - uid: 27317
components:
- pos: -56.5,-9.5
parent: 2
type: Transform
- - uid: 27302
+ - uid: 27318
components:
- pos: -56.5,-10.5
parent: 2
type: Transform
- - uid: 27303
+ - uid: 27319
components:
- pos: -56.5,-16.5
parent: 2
type: Transform
- - uid: 27304
+ - uid: 27320
components:
- pos: -56.5,-17.5
parent: 2
type: Transform
- - uid: 27305
+ - uid: 27321
components:
- rot: -1.5707963267948966 rad
pos: -57.5,-17.5
parent: 2
type: Transform
- - uid: 27306
+ - uid: 27322
components:
- pos: -56.5,-19.5
parent: 2
type: Transform
- - uid: 27307
+ - uid: 27323
components:
- pos: -56.5,-19.5
parent: 2
type: Transform
- - uid: 27308
+ - uid: 27324
components:
- pos: -52.5,-21.5
parent: 2
type: Transform
- - uid: 27309
+ - uid: 27325
components:
- pos: -50.5,-21.5
parent: 2
type: Transform
- - uid: 27310
+ - uid: 27326
components:
- pos: -49.5,-21.5
parent: 2
type: Transform
- - uid: 27311
+ - uid: 27327
components:
- pos: -44.5,-18.5
parent: 2
type: Transform
- - uid: 27312
+ - uid: 27328
components:
- pos: -44.5,-18.5
parent: 2
type: Transform
- - uid: 27313
+ - uid: 27329
components:
- pos: 55.5,-50.5
parent: 2
type: Transform
- - uid: 27314
+ - uid: 27330
components:
- pos: -49.5,-22.5
parent: 2
type: Transform
- - uid: 27315
+ - uid: 27331
components:
- rot: -1.5707963267948966 rad
pos: -47.5,-24.5
parent: 2
type: Transform
- - uid: 27316
+ - uid: 27332
components:
- pos: 56.5,-50.5
parent: 2
type: Transform
- - uid: 27317
+ - uid: 27333
components:
- pos: -52.5,-26.5
parent: 2
type: Transform
- - uid: 27318
+ - uid: 27334
components:
- pos: -49.5,-20.5
parent: 2
type: Transform
- - uid: 27319
+ - uid: 27335
components:
- rot: 3.141592653589793 rad
pos: -58.5,-22.5
parent: 2
type: Transform
- - uid: 27320
+ - uid: 27336
components:
- rot: 3.141592653589793 rad
pos: -59.5,-22.5
parent: 2
type: Transform
- - uid: 27321
+ - uid: 27337
components:
- rot: 3.141592653589793 rad
pos: -60.5,-22.5
parent: 2
type: Transform
- - uid: 27322
+ - uid: 27338
components:
- rot: 3.141592653589793 rad
pos: -61.5,-22.5
parent: 2
type: Transform
- - uid: 27323
+ - uid: 27339
components:
- rot: 3.141592653589793 rad
pos: -62.5,-22.5
parent: 2
type: Transform
- - uid: 27324
+ - uid: 27340
components:
- rot: 3.141592653589793 rad
pos: -63.5,-22.5
parent: 2
type: Transform
- - uid: 27325
+ - uid: 27341
components:
- rot: 3.141592653589793 rad
pos: -69.5,-22.5
parent: 2
type: Transform
- - uid: 27326
+ - uid: 27342
components:
- rot: 3.141592653589793 rad
pos: -70.5,-22.5
parent: 2
type: Transform
- - uid: 27327
+ - uid: 27343
components:
- rot: 3.141592653589793 rad
pos: -53.5,-26.5
parent: 2
type: Transform
- - uid: 27328
+ - uid: 27344
components:
- rot: 3.141592653589793 rad
pos: -55.5,-26.5
parent: 2
type: Transform
- - uid: 27329
+ - uid: 27345
components:
- rot: 1.5707963267948966 rad
pos: -56.5,-26.5
parent: 2
type: Transform
- - uid: 27330
+ - uid: 27346
components:
- rot: 3.141592653589793 rad
pos: -57.5,-26.5
parent: 2
type: Transform
- - uid: 27331
+ - uid: 27347
components:
- rot: 3.141592653589793 rad
pos: -59.5,-26.5
parent: 2
type: Transform
- - uid: 27332
+ - uid: 27348
components:
- pos: -59.5,-29.5
parent: 2
type: Transform
- - uid: 27333
+ - uid: 27349
components:
- rot: 3.141592653589793 rad
pos: -63.5,-29.5
parent: 2
type: Transform
- - uid: 27334
+ - uid: 27350
components:
- pos: -62.5,-26.5
parent: 2
type: Transform
- - uid: 27335
+ - uid: 27351
components:
- pos: -63.5,-27.5
parent: 2
type: Transform
- - uid: 27336
+ - uid: 27352
components:
- pos: -63.5,-28.5
parent: 2
type: Transform
- - uid: 27337
+ - uid: 27353
components:
- pos: -63.5,-26.5
parent: 2
type: Transform
- - uid: 27338
+ - uid: 27354
components:
- pos: -59.5,-31.5
parent: 2
type: Transform
- - uid: 27339
+ - uid: 27355
components:
- pos: -60.5,-31.5
parent: 2
type: Transform
- - uid: 27340
+ - uid: 27356
components:
- pos: -57.5,-19.5
parent: 2
type: Transform
- - uid: 27341
+ - uid: 27357
components:
- pos: -58.5,-19.5
parent: 2
type: Transform
- - uid: 27342
+ - uid: 27358
components:
- pos: -58.5,-20.5
parent: 2
type: Transform
- - uid: 27343
+ - uid: 27359
components:
- pos: -58.5,-21.5
parent: 2
type: Transform
- - uid: 27344
+ - uid: 27360
components:
- pos: -62.5,-31.5
parent: 2
type: Transform
- - uid: 27345
+ - uid: 27361
components:
- pos: -63.5,-31.5
parent: 2
type: Transform
- - uid: 27346
+ - uid: 27362
components:
- pos: -63.5,-32.5
parent: 2
type: Transform
- - uid: 27347
+ - uid: 27363
components:
- rot: 1.5707963267948966 rad
pos: -58.5,-26.5
parent: 2
type: Transform
- - uid: 27348
+ - uid: 27364
components:
- rot: 1.5707963267948966 rad
pos: -54.5,-26.5
parent: 2
type: Transform
- - uid: 27349
+ - uid: 27365
components:
- rot: 3.141592653589793 rad
pos: -40.5,-23.5
parent: 2
type: Transform
- - uid: 27350
+ - uid: 27366
components:
- rot: 3.141592653589793 rad
pos: -41.5,-23.5
parent: 2
type: Transform
- - uid: 27351
+ - uid: 27367
components:
- rot: 3.141592653589793 rad
pos: -42.5,-23.5
parent: 2
type: Transform
- - uid: 27352
+ - uid: 27368
components:
- pos: -59.5,-27.5
parent: 2
type: Transform
- - uid: 27353
+ - uid: 27369
components:
- pos: -50.5,-55.5
parent: 2
type: Transform
- - uid: 27354
+ - uid: 27370
components:
- pos: -50.5,-53.5
parent: 2
type: Transform
- - uid: 27355
+ - uid: 27371
components:
- pos: -50.5,-51.5
parent: 2
type: Transform
- - uid: 27356
+ - uid: 27372
components:
- pos: -50.5,-49.5
parent: 2
type: Transform
- - uid: 27357
+ - uid: 27373
components:
- pos: -50.5,-47.5
parent: 2
type: Transform
- - uid: 27358
+ - uid: 27374
components:
- pos: -50.5,-45.5
parent: 2
type: Transform
- - uid: 27359
+ - uid: 27375
components:
- pos: -50.5,-43.5
parent: 2
type: Transform
- - uid: 27360
+ - uid: 27376
components:
- pos: -50.5,-41.5
parent: 2
type: Transform
- - uid: 27361
+ - uid: 27377
components:
- pos: -49.5,-41.5
parent: 2
type: Transform
- - uid: 27362
+ - uid: 27378
components:
- pos: -48.5,-41.5
parent: 2
type: Transform
- - uid: 27363
+ - uid: 27379
components:
- pos: -47.5,-41.5
parent: 2
type: Transform
- - uid: 27364
+ - uid: 27380
components:
- pos: -49.5,-43.5
parent: 2
type: Transform
- - uid: 27365
+ - uid: 27381
components:
- pos: -48.5,-43.5
parent: 2
type: Transform
- - uid: 27366
+ - uid: 27382
components:
- pos: -47.5,-43.5
parent: 2
type: Transform
- - uid: 27367
+ - uid: 27383
components:
- pos: -49.5,-45.5
parent: 2
type: Transform
- - uid: 27368
+ - uid: 27384
components:
- pos: -48.5,-45.5
parent: 2
type: Transform
- - uid: 27369
+ - uid: 27385
components:
- pos: -47.5,-45.5
parent: 2
type: Transform
- - uid: 27370
+ - uid: 27386
components:
- pos: -49.5,-47.5
parent: 2
type: Transform
- - uid: 27371
+ - uid: 27387
components:
- pos: -48.5,-47.5
parent: 2
type: Transform
- - uid: 27372
+ - uid: 27388
components:
- pos: -47.5,-47.5
parent: 2
type: Transform
- - uid: 27373
+ - uid: 27389
components:
- pos: -49.5,-49.5
parent: 2
type: Transform
- - uid: 27374
+ - uid: 27390
components:
- pos: -48.5,-49.5
parent: 2
type: Transform
- - uid: 27375
+ - uid: 27391
components:
- pos: -47.5,-49.5
parent: 2
type: Transform
- - uid: 27376
+ - uid: 27392
components:
- pos: -49.5,-51.5
parent: 2
type: Transform
- - uid: 27377
+ - uid: 27393
components:
- pos: -48.5,-51.5
parent: 2
type: Transform
- - uid: 27378
+ - uid: 27394
components:
- pos: -47.5,-51.5
parent: 2
type: Transform
- - uid: 27379
+ - uid: 27395
components:
- pos: -49.5,-53.5
parent: 2
type: Transform
- - uid: 27380
+ - uid: 27396
components:
- pos: -48.5,-53.5
parent: 2
type: Transform
- - uid: 27381
+ - uid: 27397
components:
- pos: -47.5,-53.5
parent: 2
type: Transform
- - uid: 27382
+ - uid: 27398
components:
- pos: -49.5,-55.5
parent: 2
type: Transform
- - uid: 27383
+ - uid: 27399
components:
- pos: -48.5,-55.5
parent: 2
type: Transform
- - uid: 27384
+ - uid: 27400
components:
- pos: -47.5,-55.5
parent: 2
type: Transform
- - uid: 27385
+ - uid: 27401
components:
- pos: -51.5,-55.5
parent: 2
type: Transform
- - uid: 27386
+ - uid: 27402
components:
- pos: -51.5,-54.5
parent: 2
type: Transform
- - uid: 27387
+ - uid: 27403
components:
- pos: -51.5,-53.5
parent: 2
type: Transform
- - uid: 27388
+ - uid: 27404
components:
- pos: -51.5,-51.5
parent: 2
type: Transform
- - uid: 27389
+ - uid: 27405
components:
- pos: -51.5,-50.5
parent: 2
type: Transform
- - uid: 27390
+ - uid: 27406
components:
- pos: -51.5,-49.5
parent: 2
type: Transform
- - uid: 27391
+ - uid: 27407
components:
- pos: -51.5,-48.5
parent: 2
type: Transform
- - uid: 27392
+ - uid: 27408
components:
- pos: -51.5,-47.5
parent: 2
type: Transform
- - uid: 27393
+ - uid: 27409
components:
- pos: -51.5,-46.5
parent: 2
type: Transform
- - uid: 27394
+ - uid: 27410
components:
- pos: -51.5,-45.5
parent: 2
type: Transform
- - uid: 27395
+ - uid: 27411
components:
- pos: -51.5,-44.5
parent: 2
type: Transform
- - uid: 27396
+ - uid: 27412
components:
- pos: -51.5,-43.5
parent: 2
type: Transform
- - uid: 27397
+ - uid: 27413
components:
- pos: -51.5,-42.5
parent: 2
type: Transform
- - uid: 27398
+ - uid: 27414
components:
- pos: -51.5,-41.5
parent: 2
type: Transform
- - uid: 27399
+ - uid: 27415
components:
- pos: -47.5,-38.5
parent: 2
type: Transform
- - uid: 27400
+ - uid: 27416
components:
- pos: -41.5,-39.5
parent: 2
type: Transform
- - uid: 27401
+ - uid: 27417
components:
- pos: -41.5,-38.5
parent: 2
type: Transform
- - uid: 27402
+ - uid: 27418
components:
- rot: 1.5707963267948966 rad
pos: -59.5,-30.5
parent: 2
type: Transform
- - uid: 27403
+ - uid: 27419
components:
- rot: 3.141592653589793 rad
pos: -58.5,-31.5
parent: 2
type: Transform
- - uid: 27404
+ - uid: 27420
components:
- rot: 3.141592653589793 rad
pos: -57.5,-5.5
parent: 2
type: Transform
- - uid: 27405
+ - uid: 27421
components:
- rot: 3.141592653589793 rad
pos: -57.5,-4.5
parent: 2
type: Transform
- - uid: 27406
+ - uid: 27422
components:
- rot: 3.141592653589793 rad
pos: -58.5,-4.5
parent: 2
type: Transform
- - uid: 27407
+ - uid: 27423
components:
- rot: 3.141592653589793 rad
pos: -59.5,-4.5
parent: 2
type: Transform
- - uid: 27408
+ - uid: 27424
components:
- rot: 3.141592653589793 rad
pos: -60.5,-4.5
parent: 2
type: Transform
- - uid: 27409
+ - uid: 27425
components:
- rot: 3.141592653589793 rad
pos: -61.5,-4.5
parent: 2
type: Transform
- - uid: 27410
+ - uid: 27426
components:
- rot: 3.141592653589793 rad
pos: -62.5,-4.5
parent: 2
type: Transform
- - uid: 27411
+ - uid: 27427
components:
- rot: 3.141592653589793 rad
pos: -63.5,-4.5
parent: 2
type: Transform
- - uid: 27412
+ - uid: 27428
components:
- rot: 3.141592653589793 rad
pos: -64.5,-4.5
parent: 2
type: Transform
- - uid: 27413
+ - uid: 27429
components:
- rot: 3.141592653589793 rad
pos: -65.5,-4.5
parent: 2
type: Transform
- - uid: 27414
+ - uid: 27430
components:
- rot: 3.141592653589793 rad
pos: -66.5,-4.5
parent: 2
type: Transform
- - uid: 27415
+ - uid: 27431
components:
- rot: 3.141592653589793 rad
pos: -67.5,-4.5
parent: 2
type: Transform
- - uid: 27416
+ - uid: 27432
components:
- rot: 3.141592653589793 rad
pos: -68.5,-4.5
parent: 2
type: Transform
- - uid: 27417
+ - uid: 27433
components:
- rot: 3.141592653589793 rad
pos: -69.5,-4.5
parent: 2
type: Transform
- - uid: 27418
+ - uid: 27434
components:
- rot: 3.141592653589793 rad
pos: -70.5,-4.5
parent: 2
type: Transform
- - uid: 27419
+ - uid: 27435
components:
- rot: 3.141592653589793 rad
pos: -71.5,-4.5
parent: 2
type: Transform
- - uid: 27420
+ - uid: 27436
components:
- rot: 3.141592653589793 rad
pos: -72.5,-4.5
parent: 2
type: Transform
- - uid: 27421
+ - uid: 27437
components:
- rot: 3.141592653589793 rad
pos: -73.5,-4.5
parent: 2
type: Transform
- - uid: 27422
+ - uid: 27438
components:
- rot: 3.141592653589793 rad
pos: -74.5,-4.5
parent: 2
type: Transform
- - uid: 27423
+ - uid: 27439
components:
- rot: 3.141592653589793 rad
pos: -75.5,-4.5
parent: 2
type: Transform
- - uid: 27424
+ - uid: 27440
components:
- rot: 3.141592653589793 rad
pos: -75.5,-5.5
parent: 2
type: Transform
- - uid: 27425
+ - uid: 27441
components:
- rot: 3.141592653589793 rad
pos: -75.5,-6.5
parent: 2
type: Transform
- - uid: 27426
+ - uid: 27442
components:
- rot: 3.141592653589793 rad
pos: -75.5,-7.5
parent: 2
type: Transform
- - uid: 27427
+ - uid: 27443
components:
- rot: 3.141592653589793 rad
pos: -75.5,-8.5
parent: 2
type: Transform
- - uid: 27428
+ - uid: 27444
components:
- rot: 3.141592653589793 rad
pos: -75.5,-9.5
parent: 2
type: Transform
- - uid: 27429
+ - uid: 27445
components:
- rot: 3.141592653589793 rad
pos: -75.5,-10.5
parent: 2
type: Transform
- - uid: 27430
+ - uid: 27446
components:
- rot: 3.141592653589793 rad
pos: -75.5,-11.5
parent: 2
type: Transform
- - uid: 27431
+ - uid: 27447
components:
- rot: 3.141592653589793 rad
pos: -75.5,-13.5
parent: 2
type: Transform
- - uid: 27432
+ - uid: 27448
components:
- rot: 3.141592653589793 rad
pos: -75.5,-14.5
parent: 2
type: Transform
- - uid: 27433
+ - uid: 27449
components:
- rot: 3.141592653589793 rad
pos: -75.5,-15.5
parent: 2
type: Transform
- - uid: 27434
+ - uid: 27450
components:
- rot: 3.141592653589793 rad
pos: -75.5,-16.5
parent: 2
type: Transform
- - uid: 27435
+ - uid: 27451
components:
- rot: 3.141592653589793 rad
pos: -75.5,-17.5
parent: 2
type: Transform
- - uid: 27436
+ - uid: 27452
components:
- rot: 3.141592653589793 rad
pos: -75.5,-18.5
parent: 2
type: Transform
- - uid: 27437
+ - uid: 27453
components:
- rot: 3.141592653589793 rad
pos: -75.5,-19.5
parent: 2
type: Transform
- - uid: 27438
+ - uid: 27454
components:
- rot: 3.141592653589793 rad
pos: -75.5,-20.5
parent: 2
type: Transform
- - uid: 27439
+ - uid: 27455
components:
- rot: 3.141592653589793 rad
pos: -75.5,-21.5
parent: 2
type: Transform
- - uid: 27440
+ - uid: 27456
components:
- rot: 3.141592653589793 rad
pos: -75.5,-22.5
parent: 2
type: Transform
- - uid: 27441
+ - uid: 27457
components:
- rot: 3.141592653589793 rad
pos: -74.5,-22.5
parent: 2
type: Transform
- - uid: 27442
+ - uid: 27458
components:
- rot: 3.141592653589793 rad
pos: -73.5,-22.5
parent: 2
type: Transform
- - uid: 27443
+ - uid: 27459
components:
- rot: 3.141592653589793 rad
pos: -72.5,-22.5
parent: 2
type: Transform
- - uid: 27444
+ - uid: 27460
components:
- rot: 3.141592653589793 rad
pos: -71.5,-22.5
parent: 2
type: Transform
- - uid: 27445
+ - uid: 27461
components:
- pos: -45.5,-57.5
parent: 2
type: Transform
- - uid: 27446
+ - uid: 27462
components:
- pos: -45.5,-56.5
parent: 2
type: Transform
- - uid: 27447
+ - uid: 27463
components:
- pos: -45.5,-58.5
parent: 2
type: Transform
- - uid: 27448
+ - uid: 27464
components:
- rot: 3.141592653589793 rad
pos: -39.5,-59.5
parent: 2
type: Transform
- - uid: 27449
+ - uid: 27465
components:
- pos: -43.5,-58.5
parent: 2
type: Transform
- - uid: 27450
+ - uid: 27466
components:
- rot: 3.141592653589793 rad
pos: -36.5,-58.5
parent: 2
type: Transform
- - uid: 27451
+ - uid: 27467
components:
- pos: -40.5,-58.5
parent: 2
type: Transform
- - uid: 27452
+ - uid: 27468
components:
- pos: -45.5,-32.5
parent: 2
type: Transform
- - uid: 27453
+ - uid: 27469
components:
- pos: -45.5,-36.5
parent: 2
type: Transform
- - uid: 27454
+ - uid: 27470
components:
- rot: 3.141592653589793 rad
pos: -40.5,-59.5
parent: 2
type: Transform
- - uid: 27455
+ - uid: 27471
components:
- rot: -1.5707963267948966 rad
pos: -32.5,-43.5
parent: 2
type: Transform
- - uid: 27456
+ - uid: 27472
components:
- rot: 1.5707963267948966 rad
pos: -36.5,-38.5
parent: 2
type: Transform
- - uid: 27457
+ - uid: 27473
components:
- rot: 1.5707963267948966 rad
pos: -36.5,-39.5
parent: 2
type: Transform
- - uid: 27458
+ - uid: 27474
components:
- rot: 1.5707963267948966 rad
pos: -36.5,-40.5
parent: 2
type: Transform
- - uid: 27459
+ - uid: 27475
components:
- rot: 1.5707963267948966 rad
pos: -41.5,-40.5
parent: 2
type: Transform
- - uid: 27460
+ - uid: 27476
components:
- pos: -32.5,-44.5
parent: 2
type: Transform
- - uid: 27461
+ - uid: 27477
components:
- pos: -32.5,-45.5
parent: 2
type: Transform
- - uid: 27462
+ - uid: 27478
components:
- pos: -32.5,-46.5
parent: 2
type: Transform
- - uid: 27463
+ - uid: 27479
components:
- pos: -32.5,-47.5
parent: 2
type: Transform
- - uid: 27464
+ - uid: 27480
components:
- pos: -32.5,-48.5
parent: 2
type: Transform
- - uid: 27465
+ - uid: 27481
components:
- pos: -32.5,-49.5
parent: 2
type: Transform
- - uid: 27466
+ - uid: 27482
components:
- pos: -32.5,-51.5
parent: 2
type: Transform
- - uid: 27467
+ - uid: 27483
components:
- pos: -32.5,-52.5
parent: 2
type: Transform
- - uid: 27468
+ - uid: 27484
components:
- pos: -32.5,-53.5
parent: 2
type: Transform
- - uid: 27469
+ - uid: 27485
components:
- pos: -32.5,-54.5
parent: 2
type: Transform
- - uid: 27470
+ - uid: 27486
components:
- pos: -32.5,-55.5
parent: 2
type: Transform
- - uid: 27471
+ - uid: 27487
components:
- pos: -32.5,-56.5
parent: 2
type: Transform
- - uid: 27472
+ - uid: 27488
components:
- pos: -32.5,-57.5
parent: 2
type: Transform
- - uid: 27473
+ - uid: 27489
components:
- pos: -33.5,-57.5
parent: 2
type: Transform
- - uid: 27474
+ - uid: 27490
components:
- pos: -33.5,-58.5
parent: 2
type: Transform
- - uid: 27475
+ - uid: 27491
components:
- pos: -34.5,-58.5
parent: 2
type: Transform
- - uid: 27476
+ - uid: 27492
components:
- pos: 65.5,-31.5
parent: 2
type: Transform
- - uid: 27477
+ - uid: 27493
components:
- pos: -70.5,-3.5
parent: 2
type: Transform
- - uid: 27478
+ - uid: 27494
components:
- pos: -71.5,-3.5
parent: 2
type: Transform
- - uid: 27479
+ - uid: 27495
components:
- pos: -72.5,-3.5
parent: 2
type: Transform
- - uid: 27480
+ - uid: 27496
components:
- pos: -76.5,-4.5
parent: 2
type: Transform
- - uid: 27481
+ - uid: 27497
components:
- pos: -76.5,-5.5
parent: 2
type: Transform
- - uid: 27482
+ - uid: 27498
components:
- pos: -76.5,-6.5
parent: 2
type: Transform
- - uid: 27483
+ - uid: 27499
components:
- rot: -1.5707963267948966 rad
pos: -58.5,-17.5
parent: 2
type: Transform
- - uid: 27484
+ - uid: 27500
components:
- pos: -76.5,-18.5
parent: 2
type: Transform
- - uid: 27485
+ - uid: 27501
components:
- pos: -76.5,-19.5
parent: 2
type: Transform
- - uid: 27486
+ - uid: 27502
components:
- pos: -76.5,-20.5
parent: 2
type: Transform
- - uid: 27487
+ - uid: 27503
components:
- pos: -75.5,-23.5
parent: 2
type: Transform
- - uid: 27488
+ - uid: 27504
components:
- pos: -63.5,-3.5
parent: 2
type: Transform
- - uid: 27489
+ - uid: 27505
components:
- pos: -64.5,-3.5
parent: 2
type: Transform
- - uid: 27490
+ - uid: 27506
components:
- pos: -65.5,-3.5
parent: 2
type: Transform
- - uid: 27491
+ - uid: 27507
components:
- pos: -58.5,-3.5
parent: 2
type: Transform
- - uid: 27492
+ - uid: 27508
components:
- pos: -75.5,-24.5
parent: 2
type: Transform
- - uid: 27493
+ - uid: 27509
components:
- pos: -75.5,-27.5
parent: 2
type: Transform
- - uid: 27494
+ - uid: 27510
components:
- pos: -75.5,-26.5
parent: 2
type: Transform
- - uid: 27495
+ - uid: 27511
components:
- pos: -76.5,-26.5
parent: 2
type: Transform
- - uid: 27496
+ - uid: 27512
components:
- pos: -45.5,-31.5
parent: 2
type: Transform
- - uid: 27497
+ - uid: 27513
components:
- rot: -1.5707963267948966 rad
pos: -46.5,-31.5
parent: 2
type: Transform
- - uid: 27498
+ - uid: 27514
components:
- rot: -1.5707963267948966 rad
pos: -47.5,-31.5
parent: 2
type: Transform
- - uid: 27499
+ - uid: 27515
components:
- rot: -1.5707963267948966 rad
pos: -47.5,-32.5
parent: 2
type: Transform
- - uid: 27500
+ - uid: 27516
components:
- rot: -1.5707963267948966 rad
pos: -47.5,-33.5
parent: 2
type: Transform
- - uid: 27501
+ - uid: 27517
components:
- rot: -1.5707963267948966 rad
pos: -53.5,-35.5
parent: 2
type: Transform
- - uid: 27502
+ - uid: 27518
components:
- rot: -1.5707963267948966 rad
pos: -53.5,-38.5
parent: 2
type: Transform
- - uid: 27503
+ - uid: 27519
components:
- rot: -1.5707963267948966 rad
pos: -53.5,-39.5
parent: 2
type: Transform
- - uid: 27504
+ - uid: 27520
components:
- rot: -1.5707963267948966 rad
pos: -53.5,-40.5
parent: 2
type: Transform
- - uid: 27505
+ - uid: 27521
components:
- rot: -1.5707963267948966 rad
pos: -54.5,-40.5
parent: 2
type: Transform
- - uid: 27506
+ - uid: 27522
components:
- rot: -1.5707963267948966 rad
pos: -55.5,-40.5
parent: 2
type: Transform
- - uid: 27507
+ - uid: 27523
components:
- rot: -1.5707963267948966 rad
pos: -55.5,-41.5
parent: 2
type: Transform
- - uid: 27508
+ - uid: 27524
components:
- rot: -1.5707963267948966 rad
pos: -55.5,-42.5
parent: 2
type: Transform
- - uid: 27509
+ - uid: 27525
components:
- rot: -1.5707963267948966 rad
pos: -55.5,-43.5
parent: 2
type: Transform
- - uid: 27510
+ - uid: 27526
components:
- rot: -1.5707963267948966 rad
pos: -55.5,-44.5
parent: 2
type: Transform
- - uid: 27511
+ - uid: 27527
components:
- rot: -1.5707963267948966 rad
pos: -55.5,-45.5
parent: 2
type: Transform
- - uid: 27512
+ - uid: 27528
components:
- rot: -1.5707963267948966 rad
pos: -55.5,-46.5
parent: 2
type: Transform
- - uid: 27513
+ - uid: 27529
components:
- pos: -53.5,-46.5
parent: 2
type: Transform
- - uid: 27514
+ - uid: 27530
components:
- pos: -53.5,-51.5
parent: 2
type: Transform
- - uid: 27515
+ - uid: 27531
components:
- pos: -54.5,-51.5
parent: 2
type: Transform
- - uid: 27516
+ - uid: 27532
components:
- pos: -54.5,-46.5
parent: 2
type: Transform
- - uid: 27517
+ - uid: 27533
components:
- rot: -1.5707963267948966 rad
pos: -55.5,-51.5
parent: 2
type: Transform
- - uid: 27518
+ - uid: 27534
components:
- rot: -1.5707963267948966 rad
pos: -55.5,-52.5
parent: 2
type: Transform
- - uid: 27519
+ - uid: 27535
components:
- rot: -1.5707963267948966 rad
pos: -55.5,-53.5
parent: 2
type: Transform
- - uid: 27520
+ - uid: 27536
components:
- rot: -1.5707963267948966 rad
pos: -55.5,-54.5
parent: 2
type: Transform
- - uid: 27521
+ - uid: 27537
components:
- rot: -1.5707963267948966 rad
pos: -55.5,-55.5
parent: 2
type: Transform
- - uid: 27522
+ - uid: 27538
components:
- rot: -1.5707963267948966 rad
pos: -55.5,-56.5
parent: 2
type: Transform
- - uid: 27523
+ - uid: 27539
components:
- rot: -1.5707963267948966 rad
pos: -55.5,-57.5
parent: 2
type: Transform
- - uid: 27524
+ - uid: 27540
components:
- rot: -1.5707963267948966 rad
pos: -58.5,-32.5
parent: 2
type: Transform
- - uid: 27525
+ - uid: 27541
components:
- rot: -1.5707963267948966 rad
pos: -58.5,-33.5
parent: 2
type: Transform
- - uid: 27526
+ - uid: 27542
components:
- rot: -1.5707963267948966 rad
pos: -58.5,-34.5
parent: 2
type: Transform
- - uid: 27527
+ - uid: 27543
components:
- rot: -1.5707963267948966 rad
pos: -58.5,-35.5
parent: 2
type: Transform
- - uid: 27528
+ - uid: 27544
components:
- rot: -1.5707963267948966 rad
pos: -58.5,-38.5
parent: 2
type: Transform
- - uid: 27529
+ - uid: 27545
components:
- rot: -1.5707963267948966 rad
pos: -58.5,-39.5
parent: 2
type: Transform
- - uid: 27530
+ - uid: 27546
components:
- rot: -1.5707963267948966 rad
pos: -58.5,-40.5
parent: 2
type: Transform
- - uid: 27531
+ - uid: 27547
components:
- rot: -1.5707963267948966 rad
pos: -58.5,-41.5
parent: 2
type: Transform
- - uid: 27532
+ - uid: 27548
components:
- rot: -1.5707963267948966 rad
pos: -58.5,-42.5
parent: 2
type: Transform
- - uid: 27533
+ - uid: 27549
components:
- rot: -1.5707963267948966 rad
pos: -58.5,-45.5
parent: 2
type: Transform
- - uid: 27534
+ - uid: 27550
components:
- rot: -1.5707963267948966 rad
pos: -58.5,-46.5
parent: 2
type: Transform
- - uid: 27535
+ - uid: 27551
components:
- rot: -1.5707963267948966 rad
pos: -58.5,-49.5
parent: 2
type: Transform
- - uid: 27536
+ - uid: 27552
components:
- rot: -1.5707963267948966 rad
pos: -58.5,-50.5
parent: 2
type: Transform
- - uid: 27537
+ - uid: 27553
components:
- rot: -1.5707963267948966 rad
pos: -58.5,-53.5
parent: 2
type: Transform
- - uid: 27538
+ - uid: 27554
components:
- rot: -1.5707963267948966 rad
pos: -58.5,-55.5
parent: 2
type: Transform
- - uid: 27539
+ - uid: 27555
components:
- rot: -1.5707963267948966 rad
pos: -58.5,-56.5
parent: 2
type: Transform
- - uid: 27540
+ - uid: 27556
components:
- rot: -1.5707963267948966 rad
pos: -58.5,-57.5
parent: 2
type: Transform
- - uid: 27541
+ - uid: 27557
components:
- rot: -1.5707963267948966 rad
pos: -58.5,-58.5
parent: 2
type: Transform
- - uid: 27542
+ - uid: 27558
components:
- rot: -1.5707963267948966 rad
pos: -56.5,-64.5
parent: 2
type: Transform
- - uid: 27543
+ - uid: 27559
components:
- rot: -1.5707963267948966 rad
pos: -56.5,-65.5
parent: 2
type: Transform
- - uid: 27544
+ - uid: 27560
components:
- rot: -1.5707963267948966 rad
pos: -56.5,-66.5
parent: 2
type: Transform
- - uid: 27545
+ - uid: 27561
components:
- rot: 3.141592653589793 rad
pos: -36.5,-59.5
parent: 2
type: Transform
- - uid: 27546
+ - uid: 27562
components:
- rot: 3.141592653589793 rad
pos: -37.5,-59.5
parent: 2
type: Transform
- - uid: 27547
+ - uid: 27563
components:
- pos: -45.5,-41.5
parent: 2
type: Transform
- - uid: 27548
+ - uid: 27564
components:
- pos: -57.5,-70.5
parent: 2
type: Transform
- - uid: 27549
+ - uid: 27565
components:
- pos: -57.5,-72.5
parent: 2
type: Transform
- - uid: 27550
+ - uid: 27566
components:
- pos: -57.5,-74.5
parent: 2
type: Transform
- - uid: 27551
+ - uid: 27567
components:
- pos: -57.5,-78.5
parent: 2
type: Transform
- - uid: 27552
+ - uid: 27568
components:
- pos: -57.5,-80.5
parent: 2
type: Transform
- - uid: 27553
+ - uid: 27569
components:
- pos: -57.5,-82.5
parent: 2
type: Transform
- - uid: 27554
+ - uid: 27570
components:
- pos: -56.5,-67.5
parent: 2
type: Transform
- - uid: 27555
+ - uid: 27571
components:
- pos: -57.5,-67.5
parent: 2
type: Transform
- - uid: 27556
+ - uid: 27572
components:
- pos: -57.5,-68.5
parent: 2
type: Transform
- - uid: 27557
+ - uid: 27573
components:
- pos: -57.5,-69.5
parent: 2
type: Transform
- - uid: 27558
+ - uid: 27574
components:
- rot: 1.5707963267948966 rad
pos: -51.5,-61.5
parent: 2
type: Transform
- - uid: 27559
+ - uid: 27575
components:
- rot: 3.141592653589793 rad
pos: -22.5,-50.5
parent: 2
type: Transform
- - uid: 27560
+ - uid: 27576
components:
- pos: -31.5,-57.5
parent: 2
type: Transform
- - uid: 27561
+ - uid: 27577
components:
- pos: -31.5,-58.5
parent: 2
type: Transform
- - uid: 27562
+ - uid: 27578
components:
- pos: -30.5,-58.5
parent: 2
type: Transform
- - uid: 27563
+ - uid: 27579
components:
- pos: -30.5,-59.5
parent: 2
type: Transform
- - uid: 27564
+ - uid: 27580
components:
- pos: -30.5,-60.5
parent: 2
type: Transform
- - uid: 27565
+ - uid: 27581
components:
- pos: -31.5,-60.5
parent: 2
type: Transform
- - uid: 27566
+ - uid: 27582
components:
- pos: -31.5,-61.5
parent: 2
type: Transform
- - uid: 27567
+ - uid: 27583
components:
- pos: -32.5,-61.5
parent: 2
type: Transform
- - uid: 27568
+ - uid: 27584
components:
- pos: -33.5,-61.5
parent: 2
type: Transform
- - uid: 27569
+ - uid: 27585
components:
- pos: -33.5,-62.5
parent: 2
type: Transform
- - uid: 27570
+ - uid: 27586
components:
- pos: -34.5,-62.5
parent: 2
type: Transform
- - uid: 27571
+ - uid: 27587
components:
- pos: -35.5,-62.5
parent: 2
type: Transform
- - uid: 27572
+ - uid: 27588
components:
- pos: -36.5,-62.5
parent: 2
type: Transform
- - uid: 27573
+ - uid: 27589
components:
- pos: -37.5,-62.5
parent: 2
type: Transform
- - uid: 27574
+ - uid: 27590
components:
- pos: -38.5,-62.5
parent: 2
type: Transform
- - uid: 27575
+ - uid: 27591
components:
- pos: -39.5,-62.5
parent: 2
type: Transform
- - uid: 27576
+ - uid: 27592
components:
- pos: -42.5,-62.5
parent: 2
type: Transform
- - uid: 27577
+ - uid: 27593
components:
- pos: -43.5,-62.5
parent: 2
type: Transform
- - uid: 27578
+ - uid: 27594
components:
- pos: -44.5,-62.5
parent: 2
type: Transform
- - uid: 27579
+ - uid: 27595
components:
- pos: -45.5,-62.5
parent: 2
type: Transform
- - uid: 27580
+ - uid: 27596
components:
- pos: -46.5,-62.5
parent: 2
type: Transform
- - uid: 27581
+ - uid: 27597
components:
- pos: -47.5,-62.5
parent: 2
type: Transform
- - uid: 27582
+ - uid: 27598
components:
- pos: -48.5,-62.5
parent: 2
type: Transform
- - uid: 27583
+ - uid: 27599
components:
- pos: -49.5,-62.5
parent: 2
type: Transform
- - uid: 27584
+ - uid: 27600
components:
- pos: -50.5,-61.5
parent: 2
type: Transform
- - uid: 27585
+ - uid: 27601
components:
- pos: -49.5,-61.5
parent: 2
type: Transform
- - uid: 27586
+ - uid: 27602
components:
- pos: -59.5,-78.5
parent: 2
type: Transform
- - uid: 27587
+ - uid: 27603
components:
- pos: -50.5,-77.5
parent: 2
type: Transform
- - uid: 27588
+ - uid: 27604
components:
- pos: -50.5,-78.5
parent: 2
type: Transform
- - uid: 27589
+ - uid: 27605
components:
- pos: -57.5,-83.5
parent: 2
type: Transform
- - uid: 27590
+ - uid: 27606
components:
- pos: -56.5,-83.5
parent: 2
type: Transform
- - uid: 27591
+ - uid: 27607
components:
- pos: -52.5,-83.5
parent: 2
type: Transform
- - uid: 27592
+ - uid: 27608
components:
- pos: -52.5,-82.5
parent: 2
type: Transform
- - uid: 27593
+ - uid: 27609
components:
- pos: -52.5,-81.5
parent: 2
type: Transform
- - uid: 27594
+ - uid: 27610
components:
- pos: -51.5,-81.5
parent: 2
type: Transform
- - uid: 27595
+ - uid: 27611
components:
- pos: -51.5,-80.5
parent: 2
type: Transform
- - uid: 27596
+ - uid: 27612
components:
- pos: -50.5,-80.5
parent: 2
type: Transform
- - uid: 27597
+ - uid: 27613
components:
- pos: -50.5,-79.5
parent: 2
type: Transform
- - uid: 27598
+ - uid: 27614
components:
- pos: -59.5,-80.5
parent: 2
type: Transform
- - uid: 27599
+ - uid: 27615
components:
- pos: -59.5,-82.5
parent: 2
type: Transform
- - uid: 27600
+ - uid: 27616
components:
- pos: -58.5,-82.5
parent: 2
type: Transform
- - uid: 27601
+ - uid: 27617
components:
- pos: -58.5,-78.5
parent: 2
type: Transform
- - uid: 27602
+ - uid: 27618
components:
- pos: -58.5,-74.5
parent: 2
type: Transform
- - uid: 27603
+ - uid: 27619
components:
- pos: -59.5,-74.5
parent: 2
type: Transform
- - uid: 27604
+ - uid: 27620
components:
- pos: -59.5,-72.5
parent: 2
type: Transform
- - uid: 27605
+ - uid: 27621
components:
- pos: -58.5,-70.5
parent: 2
type: Transform
- - uid: 27606
+ - uid: 27622
components:
- pos: -59.5,-70.5
parent: 2
type: Transform
- - uid: 27607
+ - uid: 27623
components:
- rot: 1.5707963267948966 rad
pos: -34.5,-73.5
parent: 2
type: Transform
- - uid: 27608
+ - uid: 27624
components:
- rot: 1.5707963267948966 rad
pos: -48.5,-80.5
parent: 2
type: Transform
- - uid: 27609
+ - uid: 27625
components:
- rot: 1.5707963267948966 rad
pos: -48.5,-79.5
parent: 2
type: Transform
- - uid: 27610
+ - uid: 27626
components:
- rot: 1.5707963267948966 rad
pos: -49.5,-77.5
parent: 2
type: Transform
- - uid: 27611
+ - uid: 27627
components:
- rot: 1.5707963267948966 rad
pos: -46.5,-85.5
parent: 2
type: Transform
- - uid: 27612
+ - uid: 27628
components:
- rot: 1.5707963267948966 rad
pos: -47.5,-84.5
parent: 2
type: Transform
- - uid: 27613
+ - uid: 27629
components:
- rot: 1.5707963267948966 rad
pos: -45.5,-86.5
parent: 2
type: Transform
- - uid: 27614
+ - uid: 27630
components:
- rot: 1.5707963267948966 rad
pos: -46.5,-86.5
parent: 2
type: Transform
- - uid: 27615
+ - uid: 27631
components:
- rot: 1.5707963267948966 rad
pos: -35.5,-73.5
parent: 2
type: Transform
- - uid: 27616
+ - uid: 27632
components:
- rot: 1.5707963267948966 rad
pos: -48.5,-77.5
parent: 2
type: Transform
- - uid: 27617
+ - uid: 27633
components:
- rot: 1.5707963267948966 rad
pos: -35.5,-80.5
parent: 2
type: Transform
- - uid: 27618
+ - uid: 27634
components:
- rot: 1.5707963267948966 rad
pos: -35.5,-75.5
parent: 2
type: Transform
- - uid: 27619
+ - uid: 27635
components:
- rot: 1.5707963267948966 rad
pos: -35.5,-74.5
parent: 2
type: Transform
- - uid: 27620
+ - uid: 27636
components:
- rot: 1.5707963267948966 rad
pos: -48.5,-78.5
parent: 2
type: Transform
- - uid: 27621
+ - uid: 27637
components:
- rot: 1.5707963267948966 rad
pos: -47.5,-85.5
parent: 2
type: Transform
- - uid: 27622
+ - uid: 27638
components:
- rot: 1.5707963267948966 rad
pos: -38.5,-86.5
parent: 2
type: Transform
- - uid: 27623
+ - uid: 27639
components:
- rot: 1.5707963267948966 rad
pos: -37.5,-85.5
parent: 2
type: Transform
- - uid: 27624
+ - uid: 27640
components:
- rot: 1.5707963267948966 rad
pos: -37.5,-86.5
parent: 2
type: Transform
- - uid: 27625
+ - uid: 27641
components:
- rot: 1.5707963267948966 rad
pos: -48.5,-84.5
parent: 2
type: Transform
- - uid: 27626
+ - uid: 27642
components:
- rot: 1.5707963267948966 rad
pos: -35.5,-79.5
parent: 2
type: Transform
- - uid: 27627
+ - uid: 27643
components:
- rot: 1.5707963267948966 rad
pos: -35.5,-84.5
parent: 2
type: Transform
- - uid: 27628
+ - uid: 27644
components:
- rot: 1.5707963267948966 rad
pos: -36.5,-84.5
parent: 2
type: Transform
- - uid: 27629
+ - uid: 27645
components:
- rot: 1.5707963267948966 rad
pos: -36.5,-85.5
parent: 2
type: Transform
- - uid: 27630
+ - uid: 27646
components:
- rot: 1.5707963267948966 rad
pos: -33.5,-73.5
parent: 2
type: Transform
- - uid: 27631
+ - uid: 27647
components:
- rot: 1.5707963267948966 rad
pos: -32.5,-74.5
parent: 2
type: Transform
- - uid: 27632
+ - uid: 27648
components:
- rot: 1.5707963267948966 rad
pos: -32.5,-75.5
parent: 2
type: Transform
- - uid: 27633
+ - uid: 27649
components:
- rot: 1.5707963267948966 rad
pos: -31.5,-75.5
parent: 2
type: Transform
- - uid: 27634
+ - uid: 27650
components:
- pos: -44.5,-86.5
parent: 2
type: Transform
- - uid: 27635
+ - uid: 27651
components:
- pos: -39.5,-86.5
parent: 2
type: Transform
- - uid: 27636
+ - uid: 27652
components:
- rot: 1.5707963267948966 rad
pos: 48.5,-70.5
parent: 2
type: Transform
- - uid: 27637
+ - uid: 27653
components:
- pos: -17.5,-50.5
parent: 2
type: Transform
- - uid: 27638
+ - uid: 27654
components:
- rot: 1.5707963267948966 rad
pos: -57.5,-62.5
parent: 2
type: Transform
- - uid: 27639
+ - uid: 27655
components:
- rot: 1.5707963267948966 rad
pos: -58.5,-61.5
parent: 2
type: Transform
- - uid: 27640
+ - uid: 27656
components:
- rot: 1.5707963267948966 rad
pos: -58.5,-62.5
parent: 2
type: Transform
- - uid: 27641
+ - uid: 27657
components:
- pos: -19.5,-50.5
parent: 2
type: Transform
- - uid: 27642
+ - uid: 27658
components:
- pos: 25.5,-30.5
parent: 2
type: Transform
- - uid: 27643
+ - uid: 27659
components:
- pos: 27.5,-30.5
parent: 2
type: Transform
- - uid: 27644
+ - uid: 27660
components:
- rot: -1.5707963267948966 rad
pos: 30.5,-31.5
parent: 2
type: Transform
- - uid: 27645
+ - uid: 27661
components:
- rot: -1.5707963267948966 rad
pos: 31.5,-31.5
parent: 2
type: Transform
- - uid: 27646
+ - uid: 27662
components:
- pos: 27.5,-31.5
parent: 2
type: Transform
- - uid: 27647
+ - uid: 27663
components:
- pos: 28.5,-31.5
parent: 2
type: Transform
- - uid: 27648
+ - uid: 27664
components:
- rot: -1.5707963267948966 rad
pos: 32.5,-31.5
parent: 2
type: Transform
- - uid: 27649
+ - uid: 27665
components:
- rot: -1.5707963267948966 rad
pos: 33.5,-31.5
parent: 2
type: Transform
- - uid: 27650
+ - uid: 27666
components:
- pos: -21.5,-50.5
parent: 2
type: Transform
- - uid: 27651
+ - uid: 27667
components:
- pos: -53.5,-50.5
parent: 2
type: Transform
- - uid: 27652
+ - uid: 27668
components:
- pos: -53.5,-47.5
parent: 2
type: Transform
- - uid: 27653
+ - uid: 27669
components:
- pos: -53.5,-48.5
parent: 2
type: Transform
- - uid: 27654
+ - uid: 27670
components:
- pos: -53.5,-49.5
parent: 2
type: Transform
- - uid: 27655
+ - uid: 27671
components:
- pos: -59.5,-53.5
parent: 2
type: Transform
- - uid: 27656
+ - uid: 27672
components:
- pos: -60.5,-53.5
parent: 2
type: Transform
- - uid: 27657
+ - uid: 27673
components:
- pos: -59.5,-55.5
parent: 2
type: Transform
- - uid: 27658
+ - uid: 27674
components:
- pos: -60.5,-55.5
parent: 2
type: Transform
- - uid: 27659
+ - uid: 27675
components:
- pos: 25.5,-27.5
parent: 2
type: Transform
- - uid: 27660
+ - uid: 27676
components:
- pos: 68.5,12.5
parent: 2
type: Transform
- - uid: 27661
+ - uid: 27677
components:
- rot: 1.5707963267948966 rad
pos: 8.5,-18.5
parent: 2
type: Transform
- - uid: 27662
+ - uid: 27678
components:
- pos: 5.5,34.5
parent: 2
type: Transform
- - uid: 27663
+ - uid: 27679
components:
- pos: 9.5,35.5
parent: 2
type: Transform
- - uid: 27664
+ - uid: 27680
components:
- pos: 11.5,31.5
parent: 2
type: Transform
- - uid: 27665
+ - uid: 27681
components:
- pos: -3.5,26.5
parent: 2
type: Transform
- - uid: 27666
+ - uid: 27682
components:
- pos: -7.5,33.5
parent: 2
type: Transform
- - uid: 27667
+ - uid: 27683
components:
- pos: -6.5,33.5
parent: 2
type: Transform
- - uid: 27668
+ - uid: 27684
components:
- pos: -5.5,33.5
parent: 2
type: Transform
- - uid: 27669
+ - uid: 27685
components:
- pos: -16.5,53.5
parent: 2
type: Transform
- - uid: 27670
+ - uid: 27686
components:
- pos: -23.5,72.5
parent: 2
type: Transform
- - uid: 27671
+ - uid: 27687
components:
- pos: -7.5,30.5
parent: 2
type: Transform
- - uid: 27672
+ - uid: 27688
components:
- pos: -7.5,29.5
parent: 2
type: Transform
- - uid: 27673
+ - uid: 27689
components:
- pos: -7.5,26.5
parent: 2
type: Transform
- - uid: 27674
+ - uid: 27690
components:
- pos: -7.5,31.5
parent: 2
type: Transform
- - uid: 27675
+ - uid: 27691
components:
- pos: -6.5,31.5
parent: 2
type: Transform
- - uid: 27676
+ - uid: 27692
components:
- pos: -5.5,31.5
parent: 2
type: Transform
- - uid: 27677
+ - uid: 27693
components:
- pos: -4.5,31.5
parent: 2
type: Transform
- - uid: 27678
+ - uid: 27694
components:
- pos: -4.5,30.5
parent: 2
type: Transform
- - uid: 27679
+ - uid: 27695
components:
- pos: -4.5,29.5
parent: 2
type: Transform
- - uid: 27680
+ - uid: 27696
components:
- pos: -3.5,29.5
parent: 2
type: Transform
- - uid: 27681
+ - uid: 27697
components:
- pos: -1.5,29.5
parent: 2
type: Transform
- - uid: 27682
+ - uid: 27698
components:
- pos: -0.5,29.5
parent: 2
type: Transform
- - uid: 27683
+ - uid: 27699
components:
- pos: 0.5,29.5
parent: 2
type: Transform
- - uid: 27684
+ - uid: 27700
components:
- pos: 1.5,29.5
parent: 2
type: Transform
- - uid: 27685
+ - uid: 27701
components:
- pos: 1.5,30.5
parent: 2
type: Transform
- - uid: 27686
+ - uid: 27702
components:
- pos: 1.5,31.5
parent: 2
type: Transform
- - uid: 27687
+ - uid: 27703
components:
- pos: 2.5,31.5
parent: 2
type: Transform
- - uid: 27688
+ - uid: 27704
components:
- pos: 2.5,33.5
parent: 2
type: Transform
- - uid: 27689
+ - uid: 27705
components:
- pos: 1.5,33.5
parent: 2
type: Transform
- - uid: 27690
+ - uid: 27706
components:
- pos: 1.5,34.5
parent: 2
type: Transform
- - uid: 27691
+ - uid: 27707
components:
- pos: 1.5,35.5
parent: 2
type: Transform
- - uid: 27692
+ - uid: 27708
components:
- pos: 0.5,35.5
parent: 2
type: Transform
- - uid: 27693
+ - uid: 27709
components:
- pos: -3.5,35.5
parent: 2
type: Transform
- - uid: 27694
+ - uid: 27710
components:
- pos: -4.5,35.5
parent: 2
type: Transform
- - uid: 27695
+ - uid: 27711
components:
- pos: -4.5,34.5
parent: 2
type: Transform
- - uid: 27696
+ - uid: 27712
components:
- pos: -4.5,33.5
parent: 2
type: Transform
- - uid: 27697
+ - uid: 27713
components:
- pos: -23.5,58.5
parent: 2
type: Transform
- - uid: 27698
+ - uid: 27714
components:
- pos: -20.5,72.5
parent: 2
type: Transform
- - uid: 27699
+ - uid: 27715
components:
- pos: -23.5,57.5
parent: 2
type: Transform
- - uid: 27700
+ - uid: 27716
components:
- pos: 49.5,41.5
parent: 2
type: Transform
- - uid: 27701
+ - uid: 27717
components:
- pos: 12.5,31.5
parent: 2
type: Transform
- - uid: 27702
+ - uid: 27718
components:
- pos: 6.5,29.5
parent: 2
type: Transform
- - uid: 27703
+ - uid: 27719
components:
- pos: 4.5,33.5
parent: 2
type: Transform
- - uid: 27704
+ - uid: 27720
components:
- pos: -4.5,24.5
parent: 2
type: Transform
- - uid: 27705
+ - uid: 27721
components:
- pos: -5.5,24.5
parent: 2
type: Transform
- - uid: 27706
+ - uid: 27722
components:
- pos: -6.5,24.5
parent: 2
type: Transform
- - uid: 27707
+ - uid: 27723
components:
- pos: -7.5,24.5
parent: 2
type: Transform
- - uid: 27708
+ - uid: 27724
components:
- pos: -7.5,25.5
parent: 2
type: Transform
- - uid: 27709
+ - uid: 27725
components:
- pos: -34.5,27.5
parent: 2
type: Transform
- - uid: 27710
+ - uid: 27726
components:
- pos: -35.5,27.5
parent: 2
type: Transform
- - uid: 27711
+ - uid: 27727
components:
- pos: -35.5,28.5
parent: 2
type: Transform
- - uid: 27712
+ - uid: 27728
components:
- pos: -35.5,26.5
parent: 2
type: Transform
- - uid: 27713
+ - uid: 27729
components:
- pos: -49.5,27.5
parent: 2
type: Transform
- - uid: 27714
+ - uid: 27730
components:
- pos: -49.5,24.5
parent: 2
type: Transform
- - uid: 27715
+ - uid: 27731
components:
- rot: -1.5707963267948966 rad
pos: -49.5,16.5
parent: 2
type: Transform
- - uid: 27716
+ - uid: 27732
components:
- pos: -49.5,25.5
parent: 2
type: Transform
- - uid: 27717
+ - uid: 27733
components:
- pos: -49.5,26.5
parent: 2
type: Transform
- - uid: 27718
+ - uid: 27734
components:
- pos: -49.5,17.5
parent: 2
type: Transform
- - uid: 27719
+ - uid: 27735
components:
- pos: -49.5,18.5
parent: 2
type: Transform
- - uid: 27720
+ - uid: 27736
components:
- pos: -51.5,18.5
parent: 2
type: Transform
- - uid: 27721
+ - uid: 27737
components:
- pos: -51.5,24.5
parent: 2
type: Transform
- - uid: 27722
+ - uid: 27738
components:
- pos: 4.5,34.5
parent: 2
type: Transform
- - uid: 27723
+ - uid: 27739
components:
- pos: 5.5,29.5
parent: 2
type: Transform
- - uid: 27724
+ - uid: 27740
components:
- pos: 12.5,33.5
parent: 2
type: Transform
- - uid: 27725
+ - uid: 27741
components:
- pos: -3.5,28.5
parent: 2
type: Transform
- - uid: 27726
+ - uid: 27742
components:
- pos: 58.5,41.5
parent: 2
type: Transform
- - uid: 27727
+ - uid: 27743
components:
- rot: -1.5707963267948966 rad
pos: 55.5,41.5
parent: 2
type: Transform
- - uid: 27728
+ - uid: 27744
components:
- pos: 54.5,51.5
parent: 2
type: Transform
- - uid: 27729
+ - uid: 27745
components:
- pos: 57.5,60.5
parent: 2
type: Transform
- - uid: 27730
+ - uid: 27746
components:
- rot: -1.5707963267948966 rad
pos: 56.5,41.5
parent: 2
type: Transform
- - uid: 27731
+ - uid: 27747
components:
- rot: -1.5707963267948966 rad
pos: 42.5,38.5
parent: 2
type: Transform
- - uid: 27732
+ - uid: 27748
components:
- pos: -29.5,27.5
parent: 2
type: Transform
- - uid: 27733
+ - uid: 27749
components:
- pos: -35.5,29.5
parent: 2
type: Transform
- - uid: 27734
+ - uid: 27750
components:
- pos: -29.5,29.5
parent: 2
type: Transform
- - uid: 27735
+ - uid: 27751
components:
- pos: -29.5,30.5
parent: 2
type: Transform
- - uid: 27736
+ - uid: 27752
components:
- pos: -29.5,31.5
parent: 2
type: Transform
- - uid: 27737
+ - uid: 27753
components:
- pos: -29.5,32.5
parent: 2
type: Transform
- - uid: 27738
+ - uid: 27754
components:
- pos: -35.5,30.5
parent: 2
type: Transform
- - uid: 27739
+ - uid: 27755
components:
- pos: -35.5,31.5
parent: 2
type: Transform
- - uid: 27740
+ - uid: 27756
components:
- pos: -35.5,32.5
parent: 2
type: Transform
- - uid: 27741
+ - uid: 27757
components:
- pos: -34.5,32.5
parent: 2
type: Transform
- - uid: 27742
+ - uid: 27758
components:
- pos: -30.5,32.5
parent: 2
type: Transform
- - uid: 27743
+ - uid: 27759
components:
- pos: -49.5,32.5
parent: 2
type: Transform
- - uid: 27744
+ - uid: 27760
components:
- pos: -50.5,32.5
parent: 2
type: Transform
- - uid: 27745
+ - uid: 27761
components:
- pos: -51.5,32.5
parent: 2
type: Transform
- - uid: 27746
+ - uid: 27762
components:
- pos: -52.5,32.5
parent: 2
type: Transform
- - uid: 27747
+ - uid: 27763
components:
- pos: -49.5,28.5
parent: 2
type: Transform
- - uid: 27748
+ - uid: 27764
components:
- pos: -50.5,28.5
parent: 2
type: Transform
- - uid: 27749
+ - uid: 27765
components:
- pos: -51.5,28.5
parent: 2
type: Transform
- - uid: 27750
+ - uid: 27766
components:
- pos: -52.5,28.5
parent: 2
type: Transform
- - uid: 27751
+ - uid: 27767
components:
- pos: -49.5,36.5
parent: 2
type: Transform
- - uid: 27752
+ - uid: 27768
components:
- pos: -50.5,36.5
parent: 2
type: Transform
- - uid: 27753
+ - uid: 27769
components:
- pos: -51.5,36.5
parent: 2
type: Transform
- - uid: 27754
+ - uid: 27770
components:
- pos: -52.5,36.5
parent: 2
type: Transform
- - uid: 27755
+ - uid: 27771
components:
- rot: -1.5707963267948966 rad
pos: -53.5,24.5
parent: 2
type: Transform
- - uid: 27756
+ - uid: 27772
components:
- rot: -1.5707963267948966 rad
pos: -53.5,18.5
parent: 2
type: Transform
- - uid: 27757
+ - uid: 27773
components:
- pos: -49.5,37.5
parent: 2
type: Transform
- - uid: 27758
+ - uid: 27774
components:
- pos: -48.5,37.5
parent: 2
type: Transform
- - uid: 27759
+ - uid: 27775
components:
- pos: -35.5,34.5
parent: 2
type: Transform
- - uid: 27760
+ - uid: 27776
components:
- pos: -35.5,33.5
parent: 2
type: Transform
- - uid: 27761
+ - uid: 27777
components:
- pos: 49.5,43.5
parent: 2
type: Transform
- - uid: 27762
+ - uid: 27778
components:
- pos: 49.5,48.5
parent: 2
type: Transform
- - uid: 27763
+ - uid: 27779
components:
- pos: 59.5,49.5
parent: 2
type: Transform
- - uid: 27764
+ - uid: 27780
components:
- pos: 49.5,49.5
parent: 2
type: Transform
- - uid: 27765
+ - uid: 27781
components:
- pos: 59.5,44.5
parent: 2
type: Transform
- - uid: 27766
+ - uid: 27782
components:
- rot: 3.141592653589793 rad
pos: 61.5,42.5
parent: 2
type: Transform
- - uid: 27767
+ - uid: 27783
components:
- pos: 49.5,42.5
parent: 2
type: Transform
- - uid: 27768
+ - uid: 27784
components:
- pos: 59.5,42.5
parent: 2
type: Transform
- - uid: 27769
+ - uid: 27785
components:
- pos: 66.5,-31.5
parent: 2
type: Transform
- - uid: 27770
+ - uid: 27786
components:
- pos: 66.5,-32.5
parent: 2
type: Transform
- - uid: 27771
+ - uid: 27787
components:
- rot: -1.5707963267948966 rad
pos: 59.5,-25.5
parent: 2
type: Transform
- - uid: 27772
+ - uid: 27788
components:
- rot: 3.141592653589793 rad
pos: 10.5,-80.5
parent: 2
type: Transform
- - uid: 27773
+ - uid: 27789
components:
- pos: -57.5,-0.5
parent: 2
type: Transform
- - uid: 27774
+ - uid: 27790
components:
- pos: -56.5,-0.5
parent: 2
type: Transform
- - uid: 27775
+ - uid: 27791
components:
- pos: -55.5,-0.5
parent: 2
type: Transform
- - uid: 27776
+ - uid: 27792
components:
- pos: -57.5,-2.5
parent: 2
type: Transform
- - uid: 27777
+ - uid: 27793
components:
- rot: 3.141592653589793 rad
pos: -53.5,1.5
parent: 2
type: Transform
- - uid: 27778
+ - uid: 27794
components:
- rot: 3.141592653589793 rad
pos: -54.5,1.5
parent: 2
type: Transform
- - uid: 27779
+ - uid: 27795
components:
- pos: -55.5,1.5
parent: 2
type: Transform
- - uid: 27780
+ - uid: 27796
components:
- pos: -55.5,0.5
parent: 2
type: Transform
- - uid: 27781
+ - uid: 27797
components:
- pos: -50.5,16.5
parent: 2
type: Transform
- - uid: 27782
+ - uid: 27798
components:
- pos: 58.5,48.5
parent: 2
type: Transform
- - uid: 27783
+ - uid: 27799
components:
- pos: 56.5,44.5
parent: 2
type: Transform
- - uid: 27784
+ - uid: 27800
components:
- pos: 50.5,48.5
parent: 2
type: Transform
- - uid: 27785
+ - uid: 27801
components:
- pos: 54.5,46.5
parent: 2
type: Transform
- - uid: 27786
+ - uid: 27802
components:
- pos: 54.5,48.5
parent: 2
type: Transform
- - uid: 27787
+ - uid: 27803
components:
- rot: 3.141592653589793 rad
pos: -53.5,2.5
parent: 2
type: Transform
- - uid: 27788
+ - uid: 27804
components:
- rot: 3.141592653589793 rad
pos: -53.5,3.5
parent: 2
type: Transform
- - uid: 27789
+ - uid: 27805
components:
- rot: 3.141592653589793 rad
pos: -53.5,4.5
parent: 2
type: Transform
- - uid: 27790
+ - uid: 27806
components:
- rot: 3.141592653589793 rad
pos: -53.5,5.5
parent: 2
type: Transform
- - uid: 27791
+ - uid: 27807
components:
- rot: 3.141592653589793 rad
pos: -53.5,6.5
parent: 2
type: Transform
- - uid: 27792
+ - uid: 27808
components:
- rot: 3.141592653589793 rad
pos: -53.5,7.5
parent: 2
type: Transform
- - uid: 27793
+ - uid: 27809
components:
- rot: 3.141592653589793 rad
pos: -53.5,8.5
parent: 2
type: Transform
- - uid: 27794
+ - uid: 27810
components:
- rot: 3.141592653589793 rad
pos: -53.5,9.5
parent: 2
type: Transform
- - uid: 27795
+ - uid: 27811
components:
- rot: 3.141592653589793 rad
pos: -53.5,12.5
parent: 2
type: Transform
- - uid: 27796
+ - uid: 27812
components:
- rot: 3.141592653589793 rad
pos: -53.5,13.5
parent: 2
type: Transform
- - uid: 27797
+ - uid: 27813
components:
- rot: 3.141592653589793 rad
pos: -53.5,15.5
parent: 2
type: Transform
- - uid: 27798
+ - uid: 27814
components:
- rot: 3.141592653589793 rad
pos: -53.5,14.5
parent: 2
type: Transform
- - uid: 27799
+ - uid: 27815
components:
- rot: 3.141592653589793 rad
pos: -53.5,16.5
parent: 2
type: Transform
- - uid: 27800
+ - uid: 27816
components:
- rot: 3.141592653589793 rad
pos: -52.5,16.5
parent: 2
type: Transform
- - uid: 27801
+ - uid: 27817
components:
- rot: 3.141592653589793 rad
pos: -51.5,16.5
parent: 2
type: Transform
- - uid: 27802
+ - uid: 27818
components:
- pos: 56.5,46.5
parent: 2
type: Transform
- - uid: 27803
+ - uid: 27819
components:
- rot: -1.5707963267948966 rad
pos: 55.5,40.5
parent: 2
type: Transform
- - uid: 27804
+ - uid: 27820
components:
- pos: -20.5,-50.5
parent: 2
type: Transform
- - uid: 27805
+ - uid: 27821
components:
- pos: 58.5,44.5
parent: 2
type: Transform
- - uid: 27806
+ - uid: 27822
components:
- pos: 58.5,46.5
parent: 2
type: Transform
- - uid: 27807
+ - uid: 27823
components:
- pos: 50.5,44.5
parent: 2
type: Transform
- - uid: 27808
+ - uid: 27824
components:
- pos: 52.5,44.5
parent: 2
type: Transform
- - uid: 27809
+ - uid: 27825
components:
- rot: 1.5707963267948966 rad
pos: 66.5,0.5
parent: 2
type: Transform
- - uid: 27810
+ - uid: 27826
components:
- pos: 52.5,46.5
parent: 2
type: Transform
- - uid: 27811
+ - uid: 27827
components:
- pos: 50.5,46.5
parent: 2
type: Transform
- - uid: 27812
+ - uid: 27828
components:
- pos: 56.5,48.5
parent: 2
type: Transform
- - uid: 27813
+ - uid: 27829
components:
- pos: 54.5,44.5
parent: 2
type: Transform
- - uid: 27814
+ - uid: 27830
components:
- rot: 1.5707963267948966 rad
pos: 67.5,-10.5
parent: 2
type: Transform
- - uid: 27815
+ - uid: 27831
components:
- pos: 68.5,-16.5
parent: 2
type: Transform
- - uid: 27816
+ - uid: 27832
components:
- rot: 1.5707963267948966 rad
pos: 67.5,-6.5
parent: 2
type: Transform
- - uid: 27817
+ - uid: 27833
components:
- rot: 1.5707963267948966 rad
pos: 67.5,-2.5
parent: 2
type: Transform
- - uid: 27818
+ - uid: 27834
components:
- pos: 52.5,48.5
parent: 2
type: Transform
- - uid: 27819
+ - uid: 27835
components:
- rot: -1.5707963267948966 rad
pos: -7.5,37.5
parent: 2
type: Transform
- - uid: 27820
+ - uid: 27836
components:
- rot: -1.5707963267948966 rad
pos: -7.5,39.5
parent: 2
type: Transform
- - uid: 27821
+ - uid: 27837
components:
- rot: 3.141592653589793 rad
pos: 21.5,-40.5
parent: 2
type: Transform
- - uid: 27822
+ - uid: 27838
components:
- pos: 13.5,-71.5
parent: 2
type: Transform
- - uid: 27823
+ - uid: 27839
components:
- pos: 24.5,-26.5
parent: 2
type: Transform
- - uid: 27824
+ - uid: 27840
components:
- pos: 22.5,-26.5
parent: 2
type: Transform
- - uid: 27825
+ - uid: 27841
components:
- rot: -1.5707963267948966 rad
pos: -75.5,-25.5
parent: 2
type: Transform
- - uid: 27826
+ - uid: 27842
components:
- rot: 3.141592653589793 rad
pos: 24.5,27.5
parent: 2
type: Transform
- - uid: 27827
+ - uid: 27843
components:
- pos: 64.5,-61.5
parent: 2
type: Transform
- - uid: 27828
+ - uid: 27844
components:
- pos: 27.5,-33.5
parent: 2
type: Transform
- - uid: 27829
+ - uid: 27845
components:
- pos: -47.5,52.5
parent: 2
type: Transform
- - uid: 27830
+ - uid: 27846
components:
- pos: -41.5,52.5
parent: 2
type: Transform
- - uid: 27831
+ - uid: 27847
components:
- pos: 52.5,-25.5
parent: 2
type: Transform
- - uid: 27832
+ - uid: 27848
components:
- pos: 55.5,-25.5
parent: 2
type: Transform
- - uid: 27833
+ - uid: 27849
components:
- rot: -1.5707963267948966 rad
pos: 47.5,-63.5
parent: 2
type: Transform
- - uid: 27834
+ - uid: 27850
components:
- rot: 1.5707963267948966 rad
pos: 44.5,-83.5
parent: 2
type: Transform
- - uid: 27835
+ - uid: 27851
components:
- rot: 3.141592653589793 rad
pos: 24.5,28.5
parent: 2
type: Transform
- - uid: 27836
+ - uid: 27852
components:
- rot: 3.141592653589793 rad
pos: 24.5,29.5
parent: 2
type: Transform
- - uid: 27837
+ - uid: 27853
components:
- rot: 3.141592653589793 rad
pos: 24.5,30.5
parent: 2
type: Transform
- - uid: 27838
+ - uid: 27854
components:
- rot: 3.141592653589793 rad
pos: 24.5,31.5
parent: 2
type: Transform
- - uid: 27839
+ - uid: 27855
components:
- rot: 3.141592653589793 rad
pos: 24.5,32.5
parent: 2
type: Transform
- - uid: 27840
+ - uid: 27856
components:
- rot: 3.141592653589793 rad
pos: 24.5,33.5
parent: 2
type: Transform
- - uid: 27841
+ - uid: 27857
components:
- rot: 3.141592653589793 rad
pos: 24.5,34.5
parent: 2
type: Transform
- - uid: 27842
+ - uid: 27858
components:
- rot: 3.141592653589793 rad
pos: 25.5,34.5
parent: 2
type: Transform
- - uid: 27843
+ - uid: 27859
components:
- rot: 3.141592653589793 rad
pos: 26.5,34.5
parent: 2
type: Transform
- - uid: 27844
+ - uid: 27860
components:
- rot: 3.141592653589793 rad
pos: 27.5,34.5
parent: 2
type: Transform
- - uid: 27845
+ - uid: 27861
components:
- rot: 3.141592653589793 rad
pos: 28.5,34.5
parent: 2
type: Transform
- - uid: 27846
+ - uid: 27862
components:
- rot: 3.141592653589793 rad
pos: 30.5,34.5
parent: 2
type: Transform
- - uid: 27847
+ - uid: 27863
components:
- rot: 3.141592653589793 rad
pos: 31.5,34.5
parent: 2
type: Transform
- - uid: 27848
+ - uid: 27864
components:
- rot: 3.141592653589793 rad
pos: 32.5,34.5
parent: 2
type: Transform
- - uid: 27849
+ - uid: 27865
components:
- rot: 3.141592653589793 rad
pos: 33.5,34.5
parent: 2
type: Transform
- - uid: 27850
+ - uid: 27866
components:
- rot: 3.141592653589793 rad
pos: 34.5,34.5
parent: 2
type: Transform
- - uid: 27851
+ - uid: 27867
components:
- rot: 3.141592653589793 rad
pos: 34.5,33.5
parent: 2
type: Transform
- - uid: 27852
+ - uid: 27868
components:
- rot: 3.141592653589793 rad
pos: 34.5,32.5
parent: 2
type: Transform
- - uid: 27853
+ - uid: 27869
components:
- rot: 3.141592653589793 rad
pos: 34.5,31.5
parent: 2
type: Transform
- - uid: 27854
+ - uid: 27870
components:
- rot: 3.141592653589793 rad
pos: 34.5,30.5
parent: 2
type: Transform
- - uid: 27855
+ - uid: 27871
components:
- rot: 3.141592653589793 rad
pos: 34.5,29.5
parent: 2
type: Transform
- - uid: 27856
+ - uid: 27872
components:
- rot: 3.141592653589793 rad
pos: 34.5,28.5
parent: 2
type: Transform
- - uid: 27857
+ - uid: 27873
components:
- rot: 3.141592653589793 rad
pos: 34.5,27.5
parent: 2
type: Transform
- - uid: 27858
+ - uid: 27874
components:
- rot: 3.141592653589793 rad
pos: 12.5,-79.5
parent: 2
type: Transform
- - uid: 27859
+ - uid: 27875
components:
- rot: 3.141592653589793 rad
pos: 11.5,-79.5
parent: 2
type: Transform
- - uid: 27860
+ - uid: 27876
components:
- rot: -1.5707963267948966 rad
pos: 57.5,-25.5
parent: 2
type: Transform
- - uid: 27861
+ - uid: 27877
components:
- rot: 1.5707963267948966 rad
pos: 39.5,9.5
parent: 2
type: Transform
- - uid: 27862
+ - uid: 27878
components:
- pos: 34.5,21.5
parent: 2
type: Transform
- - uid: 27863
+ - uid: 27879
components:
- pos: 67.5,-67.5
parent: 2
type: Transform
- - uid: 27864
+ - uid: 27880
components:
- pos: 69.5,-69.5
parent: 2
type: Transform
- - uid: 27865
+ - uid: 27881
components:
- pos: -78.5,-19.5
parent: 2
type: Transform
- - uid: 27866
+ - uid: 27882
components:
- pos: -78.5,-5.5
parent: 2
type: Transform
- - uid: 27867
+ - uid: 27883
components:
- pos: -71.5,-2.5
parent: 2
type: Transform
- - uid: 27868
+ - uid: 27884
components:
- pos: -64.5,-2.5
parent: 2
type: Transform
- - uid: 27869
+ - uid: 27885
components:
- pos: -64.5,-47.5
parent: 2
type: Transform
- - uid: 27870
+ - uid: 27886
components:
- pos: 38.5,31.5
parent: 2
type: Transform
- - uid: 27871
+ - uid: 27887
components:
- pos: 32.5,39.5
parent: 2
type: Transform
- - uid: 27872
+ - uid: 27888
components:
- pos: 24.5,39.5
parent: 2
type: Transform
- - uid: 27873
+ - uid: 27889
components:
- pos: 73.5,-40.5
parent: 2
type: Transform
- - uid: 27874
+ - uid: 27890
components:
- pos: 77.5,-42.5
parent: 2
type: Transform
- - uid: 27875
+ - uid: 27891
components:
- pos: 77.5,-48.5
parent: 2
type: Transform
- - uid: 27876
+ - uid: 27892
components:
- pos: 27.5,-26.5
parent: 2
type: Transform
- - uid: 27877
+ - uid: 27893
components:
- pos: 59.5,50.5
parent: 2
type: Transform
- - uid: 27878
+ - uid: 27894
components:
- pos: -32.5,-73.5
parent: 2
type: Transform
- - uid: 27879
+ - uid: 27895
components:
- rot: -1.5707963267948966 rad
pos: 46.5,50.5
parent: 2
type: Transform
- - uid: 27880
+ - uid: 27896
components:
- rot: -1.5707963267948966 rad
pos: 45.5,50.5
parent: 2
type: Transform
- - uid: 27881
+ - uid: 27897
components:
- rot: -1.5707963267948966 rad
pos: 44.5,50.5
parent: 2
type: Transform
- - uid: 27882
+ - uid: 27898
components:
- pos: 48.5,44.5
parent: 2
type: Transform
- - uid: 27883
+ - uid: 27899
components:
- pos: 47.5,44.5
parent: 2
type: Transform
- - uid: 27884
+ - uid: 27900
components:
- pos: 47.5,43.5
parent: 2
type: Transform
- - uid: 27885
+ - uid: 27901
components:
- pos: 45.5,43.5
parent: 2
type: Transform
- - uid: 27886
+ - uid: 27902
components:
- pos: 44.5,43.5
parent: 2
type: Transform
- - uid: 27887
+ - uid: 27903
components:
- pos: 59.5,51.5
parent: 2
type: Transform
- - uid: 27888
+ - uid: 27904
components:
- pos: 59.5,52.5
parent: 2
type: Transform
- - uid: 27889
+ - uid: 27905
components:
- pos: 59.5,53.5
parent: 2
type: Transform
- - uid: 27890
+ - uid: 27906
components:
- pos: 58.5,53.5
parent: 2
type: Transform
- - uid: 27891
+ - uid: 27907
components:
- pos: 57.5,53.5
parent: 2
type: Transform
- - uid: 27892
+ - uid: 27908
components:
- pos: 51.5,53.5
parent: 2
type: Transform
- - uid: 27893
+ - uid: 27909
components:
- pos: 50.5,53.5
parent: 2
type: Transform
- - uid: 27894
+ - uid: 27910
components:
- pos: 49.5,53.5
parent: 2
type: Transform
- - uid: 27895
+ - uid: 27911
components:
- pos: 49.5,52.5
parent: 2
type: Transform
- - uid: 27896
+ - uid: 27912
components:
- pos: 49.5,51.5
parent: 2
type: Transform
- - uid: 27897
+ - uid: 27913
components:
- rot: -1.5707963267948966 rad
pos: 55.5,39.5
parent: 2
type: Transform
- - uid: 27898
+ - uid: 27914
components:
- rot: -1.5707963267948966 rad
pos: 55.5,38.5
parent: 2
type: Transform
- - uid: 27899
+ - uid: 27915
components:
- pos: 61.5,30.5
parent: 2
type: Transform
- - uid: 27900
+ - uid: 27916
components:
- pos: 59.5,31.5
parent: 2
type: Transform
- - uid: 27901
+ - uid: 27917
components:
- pos: 59.5,34.5
parent: 2
type: Transform
- - uid: 27902
+ - uid: 27918
components:
- rot: -1.5707963267948966 rad
pos: 58.5,35.5
parent: 2
type: Transform
- - uid: 27903
+ - uid: 27919
components:
- rot: -1.5707963267948966 rad
pos: 57.5,35.5
parent: 2
type: Transform
- - uid: 27904
+ - uid: 27920
components:
- rot: -1.5707963267948966 rad
pos: 43.5,-65.5
parent: 2
type: Transform
- - uid: 27905
+ - uid: 27921
components:
- pos: 10.5,-36.5
parent: 2
type: Transform
- - uid: 27906
+ - uid: 27922
components:
- rot: -1.5707963267948966 rad
pos: 57.5,38.5
parent: 2
type: Transform
- - uid: 27907
+ - uid: 27923
components:
- rot: 3.141592653589793 rad
pos: 61.5,41.5
parent: 2
type: Transform
- - uid: 27908
+ - uid: 27924
components:
- rot: 3.141592653589793 rad
pos: 60.5,41.5
parent: 2
type: Transform
- - uid: 27909
+ - uid: 27925
components:
- rot: -1.5707963267948966 rad
pos: 42.5,42.5
parent: 2
type: Transform
- - uid: 27910
+ - uid: 27926
components:
- rot: -1.5707963267948966 rad
pos: 43.5,43.5
parent: 2
type: Transform
- - uid: 27911
+ - uid: 27927
components:
- rot: -1.5707963267948966 rad
pos: 49.5,46.5
parent: 2
type: Transform
- - uid: 27912
+ - uid: 27928
components:
- rot: -1.5707963267948966 rad
pos: -7.5,41.5
parent: 2
type: Transform
- - uid: 27913
+ - uid: 27929
components:
- rot: -1.5707963267948966 rad
pos: -7.5,40.5
parent: 2
type: Transform
- - uid: 27914
+ - uid: 27930
components:
- rot: -1.5707963267948966 rad
pos: -7.5,34.5
parent: 2
type: Transform
- - uid: 27915
+ - uid: 27931
components:
- rot: -1.5707963267948966 rad
pos: -7.5,35.5
parent: 2
type: Transform
- - uid: 27916
+ - uid: 27932
components:
- rot: -1.5707963267948966 rad
pos: -7.5,36.5
parent: 2
type: Transform
- - uid: 27917
+ - uid: 27933
components:
- rot: 3.141592653589793 rad
pos: 3.5,60.5
parent: 2
type: Transform
- - uid: 27918
+ - uid: 27934
components:
- rot: -1.5707963267948966 rad
pos: -7.5,42.5
parent: 2
type: Transform
- - uid: 27919
+ - uid: 27935
components:
- pos: -18.5,68.5
parent: 2
type: Transform
- - uid: 27920
+ - uid: 27936
components:
- pos: -16.5,59.5
parent: 2
type: Transform
- - uid: 27921
+ - uid: 27937
components:
- pos: -16.5,58.5
parent: 2
type: Transform
- - uid: 27922
+ - uid: 27938
components:
- pos: -23.5,59.5
parent: 2
type: Transform
- - uid: 27923
+ - uid: 27939
components:
- pos: -23.5,64.5
parent: 2
type: Transform
- - uid: 27924
+ - uid: 27940
components:
- pos: -23.5,65.5
parent: 2
type: Transform
- - uid: 27925
+ - uid: 27941
components:
- pos: -16.5,54.5
parent: 2
type: Transform
- - uid: 27926
+ - uid: 27942
components:
- pos: -14.5,52.5
parent: 2
type: Transform
- - uid: 27927
+ - uid: 27943
components:
- pos: -14.5,53.5
parent: 2
type: Transform
- - uid: 27928
+ - uid: 27944
components:
- pos: -16.5,52.5
parent: 2
type: Transform
- - uid: 27929
+ - uid: 27945
components:
- pos: -15.5,52.5
parent: 2
type: Transform
- - uid: 27930
+ - uid: 27946
components:
- pos: -23.5,71.5
parent: 2
type: Transform
- - uid: 27931
+ - uid: 27947
components:
- pos: -23.5,70.5
parent: 2
type: Transform
- - uid: 27932
+ - uid: 27948
components:
- pos: -23.5,69.5
parent: 2
type: Transform
- - uid: 27933
+ - uid: 27949
components:
- pos: -20.5,71.5
parent: 2
type: Transform
- - uid: 27934
+ - uid: 27950
components:
- pos: -20.5,70.5
parent: 2
type: Transform
- - uid: 27935
+ - uid: 27951
components:
- pos: -16.5,69.5
parent: 2
type: Transform
- - uid: 27936
+ - uid: 27952
components:
- pos: -23.5,60.5
parent: 2
type: Transform
- - uid: 27937
+ - uid: 27953
components:
- pos: -23.5,74.5
parent: 2
type: Transform
- - uid: 27938
+ - uid: 27954
components:
- pos: -23.5,75.5
parent: 2
type: Transform
- - uid: 27939
+ - uid: 27955
components:
- pos: -20.5,75.5
parent: 2
type: Transform
- - uid: 27940
+ - uid: 27956
components:
- pos: -20.5,74.5
parent: 2
type: Transform
- - uid: 27941
+ - uid: 27957
components:
- pos: -15.5,59.5
parent: 2
type: Transform
- - uid: 27942
+ - uid: 27958
components:
- pos: -14.5,59.5
parent: 2
type: Transform
- - uid: 27943
+ - uid: 27959
components:
- pos: -11.5,74.5
parent: 2
type: Transform
- - uid: 27944
+ - uid: 27960
components:
- pos: -11.5,75.5
parent: 2
type: Transform
- - uid: 27945
+ - uid: 27961
components:
- pos: -14.5,75.5
parent: 2
type: Transform
- - uid: 27946
+ - uid: 27962
components:
- pos: -14.5,74.5
parent: 2
type: Transform
- - uid: 27947
+ - uid: 27963
components:
- pos: -14.5,57.5
parent: 2
type: Transform
- - uid: 27948
+ - uid: 27964
components:
- pos: -16.5,57.5
parent: 2
type: Transform
- - uid: 27949
+ - uid: 27965
components:
- pos: -14.5,54.5
parent: 2
type: Transform
- - uid: 27950
+ - uid: 27966
components:
- pos: -23.5,67.5
parent: 2
type: Transform
- - uid: 27951
+ - uid: 27967
components:
- pos: -23.5,68.5
parent: 2
type: Transform
- - uid: 27952
+ - uid: 27968
components:
- pos: -16.5,70.5
parent: 2
type: Transform
- - uid: 27953
+ - uid: 27969
components:
- pos: -11.5,66.5
parent: 2
type: Transform
- - uid: 27954
+ - uid: 27970
components:
- pos: -23.5,66.5
parent: 2
type: Transform
- - uid: 27955
+ - uid: 27971
components:
- pos: -18.5,69.5
parent: 2
type: Transform
- - uid: 27956
+ - uid: 27972
components:
- pos: -11.5,65.5
parent: 2
type: Transform
- - uid: 27957
+ - uid: 27973
components:
- pos: -11.5,64.5
parent: 2
type: Transform
- - uid: 27958
+ - uid: 27974
components:
- pos: -10.5,63.5
parent: 2
type: Transform
- - uid: 27959
+ - uid: 27975
components:
- pos: -14.5,70.5
parent: 2
type: Transform
- - uid: 27960
+ - uid: 27976
components:
- pos: -14.5,72.5
parent: 2
type: Transform
- - uid: 27961
+ - uid: 27977
components:
- pos: -11.5,72.5
parent: 2
type: Transform
- - uid: 27962
+ - uid: 27978
components:
- pos: -11.5,71.5
parent: 2
type: Transform
- - uid: 27963
+ - uid: 27979
components:
- pos: -11.5,70.5
parent: 2
type: Transform
- - uid: 27964
+ - uid: 27980
components:
- pos: -14.5,69.5
parent: 2
type: Transform
- - uid: 27965
+ - uid: 27981
components:
- rot: -1.5707963267948966 rad
pos: -14.5,58.5
parent: 2
type: Transform
- - uid: 27966
+ - uid: 27982
components:
- pos: -14.5,71.5
parent: 2
type: Transform
- - uid: 27967
+ - uid: 27983
components:
- pos: -18.5,70.5
parent: 2
type: Transform
- - uid: 27968
+ - uid: 27984
components:
- pos: -20.5,69.5
parent: 2
type: Transform
- - uid: 27969
+ - uid: 27985
components:
- pos: -20.5,68.5
parent: 2
type: Transform
- - uid: 27970
+ - uid: 27986
components:
- pos: -19.5,68.5
parent: 2
type: Transform
- - uid: 27971
+ - uid: 27987
components:
- pos: -14.5,68.5
parent: 2
type: Transform
- - uid: 27972
+ - uid: 27988
components:
- pos: -15.5,68.5
parent: 2
type: Transform
- - uid: 27973
+ - uid: 27989
components:
- pos: -16.5,68.5
parent: 2
type: Transform
- - uid: 27974
+ - uid: 27990
components:
- rot: -1.5707963267948966 rad
pos: -28.5,33.5
parent: 2
type: Transform
- - uid: 27975
+ - uid: 27991
components:
- rot: -1.5707963267948966 rad
pos: -28.5,34.5
parent: 2
type: Transform
- - uid: 27976
+ - uid: 27992
components:
- rot: -1.5707963267948966 rad
pos: -29.5,35.5
parent: 2
type: Transform
- - uid: 27977
+ - uid: 27993
components:
- rot: -1.5707963267948966 rad
pos: -28.5,35.5
parent: 2
type: Transform
- - uid: 27978
+ - uid: 27994
components:
- rot: -1.5707963267948966 rad
pos: -30.5,35.5
parent: 2
type: Transform
- - uid: 27979
+ - uid: 27995
components:
- rot: -1.5707963267948966 rad
pos: -34.5,35.5
parent: 2
type: Transform
- - uid: 27980
+ - uid: 27996
components:
- rot: -1.5707963267948966 rad
pos: -35.5,35.5
parent: 2
type: Transform
- - uid: 27981
+ - uid: 27997
components:
- rot: -1.5707963267948966 rad
pos: -28.5,32.5
parent: 2
type: Transform
- - uid: 27982
+ - uid: 27998
components:
- pos: 60.5,30.5
parent: 2
type: Transform
- - uid: 27983
+ - uid: 27999
components:
- pos: 9.5,-35.5
parent: 2
type: Transform
- - uid: 27984
+ - uid: 28000
components:
- pos: 3.5,58.5
parent: 2
type: Transform
- - uid: 27985
+ - uid: 28001
components:
- pos: 2.5,45.5
parent: 2
type: Transform
- - uid: 27986
+ - uid: 28002
components:
- pos: 2.5,44.5
parent: 2
type: Transform
- - uid: 27987
+ - uid: 28003
components:
- pos: 2.5,52.5
parent: 2
type: Transform
- - uid: 27988
+ - uid: 28004
components:
- pos: 2.5,53.5
parent: 2
type: Transform
- - uid: 27989
+ - uid: 28005
components:
- pos: 2.5,54.5
parent: 2
type: Transform
- - uid: 27990
+ - uid: 28006
components:
- pos: 2.5,55.5
parent: 2
type: Transform
- - uid: 27991
+ - uid: 28007
components:
- pos: 3.5,56.5
parent: 2
type: Transform
- - uid: 27992
+ - uid: 28008
components:
- pos: -7.5,43.5
parent: 2
type: Transform
- - uid: 27993
+ - uid: 28009
components:
- pos: 3.5,59.5
parent: 2
type: Transform
- - uid: 27994
+ - uid: 28010
components:
- pos: 2.5,56.5
parent: 2
type: Transform
- - uid: 27995
+ - uid: 28011
components:
- pos: -4.5,42.5
parent: 2
type: Transform
- - uid: 27996
+ - uid: 28012
components:
- pos: -5.5,42.5
parent: 2
type: Transform
- - uid: 27997
+ - uid: 28013
components:
- pos: -0.5,42.5
parent: 2
type: Transform
- - uid: 27998
+ - uid: 28014
components:
- pos: 0.5,42.5
parent: 2
type: Transform
- - uid: 27999
+ - uid: 28015
components:
- pos: 2.5,60.5
parent: 2
type: Transform
- - uid: 28000
+ - uid: 28016
components:
- pos: 5.5,49.5
parent: 2
type: Transform
- - uid: 28001
+ - uid: 28017
components:
- pos: 10.5,50.5
parent: 2
type: Transform
- - uid: 28002
+ - uid: 28018
components:
- pos: 10.5,46.5
parent: 2
type: Transform
- - uid: 28003
+ - uid: 28019
components:
- pos: 34.5,49.5
parent: 2
type: Transform
- - uid: 28004
+ - uid: 28020
components:
- pos: 35.5,49.5
parent: 2
type: Transform
- - uid: 28005
+ - uid: 28021
components:
- rot: -1.5707963267948966 rad
pos: 21.5,44.5
parent: 2
type: Transform
- - uid: 28006
+ - uid: 28022
components:
- rot: -1.5707963267948966 rad
pos: 21.5,46.5
parent: 2
type: Transform
- - uid: 28007
+ - uid: 28023
components:
- pos: 59.5,35.5
parent: 2
type: Transform
- - uid: 28008
+ - uid: 28024
components:
- rot: -1.5707963267948966 rad
pos: 42.5,37.5
parent: 2
type: Transform
- - uid: 28009
+ - uid: 28025
components:
- rot: -1.5707963267948966 rad
pos: 44.5,34.5
parent: 2
type: Transform
- - uid: 28010
+ - uid: 28026
components:
- rot: -1.5707963267948966 rad
pos: 44.5,36.5
parent: 2
type: Transform
- - uid: 28011
+ - uid: 28027
components:
- rot: -1.5707963267948966 rad
pos: 44.5,35.5
parent: 2
type: Transform
- - uid: 28012
+ - uid: 28028
components:
- rot: -1.5707963267948966 rad
pos: 43.5,38.5
parent: 2
type: Transform
- - uid: 28013
+ - uid: 28029
components:
- rot: 1.5707963267948966 rad
pos: 44.5,40.5
parent: 2
type: Transform
- - uid: 28014
+ - uid: 28030
components:
- rot: 1.5707963267948966 rad
pos: 44.5,39.5
parent: 2
type: Transform
- - uid: 28015
+ - uid: 28031
components:
- rot: 1.5707963267948966 rad
pos: 44.5,38.5
parent: 2
type: Transform
- - uid: 28016
+ - uid: 28032
components:
- rot: -1.5707963267948966 rad
pos: 42.5,36.5
parent: 2
type: Transform
- - uid: 28017
+ - uid: 28033
components:
- rot: 1.5707963267948966 rad
pos: 46.5,40.5
parent: 2
type: Transform
- - uid: 28018
+ - uid: 28034
components:
- rot: 1.5707963267948966 rad
pos: 48.5,40.5
parent: 2
type: Transform
- - uid: 28019
+ - uid: 28035
components:
- rot: 1.5707963267948966 rad
pos: 48.5,41.5
parent: 2
type: Transform
- - uid: 28020
+ - uid: 28036
components:
- rot: -1.5707963267948966 rad
pos: 43.5,36.5
parent: 2
type: Transform
- - uid: 28021
+ - uid: 28037
components:
- rot: 3.141592653589793 rad
pos: 42.5,34.5
parent: 2
type: Transform
- - uid: 28022
+ - uid: 28038
components:
- rot: 3.141592653589793 rad
pos: 41.5,34.5
parent: 2
type: Transform
- - uid: 28023
+ - uid: 28039
components:
- rot: 3.141592653589793 rad
pos: 41.5,33.5
parent: 2
type: Transform
- - uid: 28024
+ - uid: 28040
components:
- rot: 3.141592653589793 rad
pos: 41.5,29.5
parent: 2
type: Transform
- - uid: 28025
+ - uid: 28041
components:
- rot: 3.141592653589793 rad
pos: 42.5,28.5
parent: 2
type: Transform
- - uid: 28026
+ - uid: 28042
components:
- rot: 3.141592653589793 rad
pos: 42.5,29.5
parent: 2
type: Transform
- - uid: 28027
+ - uid: 28043
components:
- rot: 3.141592653589793 rad
pos: 43.5,28.5
parent: 2
type: Transform
- - uid: 28028
+ - uid: 28044
components:
- rot: -1.5707963267948966 rad
pos: 57.5,36.5
parent: 2
type: Transform
- - uid: 28029
+ - uid: 28045
components:
- rot: -1.5707963267948966 rad
pos: 56.5,38.5
parent: 2
type: Transform
- - uid: 28030
+ - uid: 28046
components:
- pos: 71.5,-65.5
parent: 2
type: Transform
- - uid: 28031
+ - uid: 28047
components:
- rot: 1.5707963267948966 rad
pos: 43.5,34.5
parent: 2
type: Transform
- - uid: 28032
+ - uid: 28048
components:
- rot: -1.5707963267948966 rad
pos: 62.5,30.5
parent: 2
type: Transform
- - uid: 28033
+ - uid: 28049
components:
- rot: -1.5707963267948966 rad
pos: 64.5,30.5
parent: 2
type: Transform
- - uid: 28034
+ - uid: 28050
components:
- rot: -1.5707963267948966 rad
pos: 65.5,30.5
parent: 2
type: Transform
- - uid: 28035
+ - uid: 28051
components:
- rot: -1.5707963267948966 rad
pos: 65.5,28.5
parent: 2
type: Transform
- - uid: 28036
+ - uid: 28052
components:
- rot: -1.5707963267948966 rad
pos: 65.5,29.5
parent: 2
type: Transform
- - uid: 28037
+ - uid: 28053
components:
- pos: 30.5,48.5
parent: 2
type: Transform
- - uid: 28038
+ - uid: 28054
components:
- rot: -1.5707963267948966 rad
pos: 27.5,47.5
parent: 2
type: Transform
- - uid: 28039
+ - uid: 28055
components:
- rot: -1.5707963267948966 rad
pos: 27.5,43.5
parent: 2
type: Transform
- - uid: 28040
+ - uid: 28056
components:
- rot: -1.5707963267948966 rad
pos: 28.5,43.5
parent: 2
type: Transform
- - uid: 28041
+ - uid: 28057
components:
- rot: -1.5707963267948966 rad
pos: 30.5,43.5
parent: 2
type: Transform
- - uid: 28042
+ - uid: 28058
components:
- rot: -1.5707963267948966 rad
pos: 31.5,43.5
parent: 2
type: Transform
- - uid: 28043
+ - uid: 28059
components:
- pos: 2.5,46.5
parent: 2
type: Transform
- - uid: 28044
+ - uid: 28060
components:
- pos: -6.5,43.5
parent: 2
type: Transform
- - uid: 28045
+ - uid: 28061
components:
- pos: -5.5,43.5
parent: 2
type: Transform
- - uid: 28046
+ - uid: 28062
components:
- pos: 2.5,43.5
parent: 2
type: Transform
- - uid: 28047
+ - uid: 28063
components:
- pos: 1.5,43.5
parent: 2
type: Transform
- - uid: 28048
+ - uid: 28064
components:
- pos: 0.5,43.5
parent: 2
type: Transform
- - uid: 28049
+ - uid: 28065
components:
- pos: -8.5,60.5
parent: 2
type: Transform
- - uid: 28050
+ - uid: 28066
components:
- pos: -3.5,60.5
parent: 2
type: Transform
- - uid: 28051
+ - uid: 28067
components:
- pos: -4.5,60.5
parent: 2
type: Transform
- - uid: 28052
+ - uid: 28068
components:
- pos: -5.5,60.5
parent: 2
type: Transform
- - uid: 28053
+ - uid: 28069
components:
- pos: -6.5,60.5
parent: 2
type: Transform
- - uid: 28054
+ - uid: 28070
components:
- pos: -7.5,60.5
parent: 2
type: Transform
- - uid: 28055
+ - uid: 28071
components:
- pos: 1.5,60.5
parent: 2
type: Transform
- - uid: 28056
+ - uid: 28072
components:
- pos: 0.5,60.5
parent: 2
type: Transform
- - uid: 28057
+ - uid: 28073
components:
- rot: -1.5707963267948966 rad
pos: -7.5,38.5
parent: 2
type: Transform
- - uid: 28058
+ - uid: 28074
components:
- pos: 18.5,35.5
parent: 2
type: Transform
- - uid: 28059
+ - uid: 28075
components:
- pos: 19.5,35.5
parent: 2
type: Transform
- - uid: 28060
+ - uid: 28076
components:
- pos: 19.5,36.5
parent: 2
type: Transform
- - uid: 28061
+ - uid: 28077
components:
- pos: 19.5,37.5
parent: 2
type: Transform
- - uid: 28062
+ - uid: 28078
components:
- pos: 19.5,38.5
parent: 2
type: Transform
- - uid: 28063
+ - uid: 28079
components:
- pos: 19.5,39.5
parent: 2
type: Transform
- - uid: 28064
+ - uid: 28080
components:
- pos: 19.5,40.5
parent: 2
type: Transform
- - uid: 28065
+ - uid: 28081
components:
- pos: 18.5,40.5
parent: 2
type: Transform
- - uid: 28066
+ - uid: 28082
components:
- pos: 17.5,40.5
parent: 2
type: Transform
- - uid: 28067
+ - uid: 28083
components:
- pos: 17.5,41.5
parent: 2
type: Transform
- - uid: 28068
+ - uid: 28084
components:
- pos: 15.5,41.5
parent: 2
type: Transform
- - uid: 28069
+ - uid: 28085
components:
- pos: 15.5,40.5
parent: 2
type: Transform
- - uid: 28070
+ - uid: 28086
components:
- pos: 14.5,40.5
parent: 2
type: Transform
- - uid: 28071
+ - uid: 28087
components:
- pos: 13.5,40.5
parent: 2
type: Transform
- - uid: 28072
+ - uid: 28088
components:
- pos: 13.5,39.5
parent: 2
type: Transform
- - uid: 28073
+ - uid: 28089
components:
- pos: 13.5,38.5
parent: 2
type: Transform
- - uid: 28074
+ - uid: 28090
components:
- pos: 13.5,37.5
parent: 2
type: Transform
- - uid: 28075
+ - uid: 28091
components:
- pos: 13.5,36.5
parent: 2
type: Transform
- - uid: 28076
+ - uid: 28092
components:
- pos: 13.5,35.5
parent: 2
type: Transform
- - uid: 28077
+ - uid: 28093
components:
- pos: 14.5,35.5
parent: 2
type: Transform
- - uid: 28078
+ - uid: 28094
components:
- pos: 0.5,61.5
parent: 2
type: Transform
- - uid: 28079
+ - uid: 28095
components:
- pos: 0.5,63.5
parent: 2
type: Transform
- - uid: 28080
+ - uid: 28096
components:
- pos: 0.5,62.5
parent: 2
type: Transform
- - uid: 28081
+ - uid: 28097
components:
- pos: -3.5,63.5
parent: 2
type: Transform
- - uid: 28082
+ - uid: 28098
components:
- pos: -3.5,62.5
parent: 2
type: Transform
- - uid: 28083
+ - uid: 28099
components:
- pos: -3.5,61.5
parent: 2
type: Transform
- - uid: 28084
+ - uid: 28100
components:
- pos: 0.5,64.5
parent: 2
type: Transform
- - uid: 28085
+ - uid: 28101
components:
- pos: -0.5,64.5
parent: 2
type: Transform
- - uid: 28086
+ - uid: 28102
components:
- pos: -2.5,64.5
parent: 2
type: Transform
- - uid: 28087
+ - uid: 28103
components:
- pos: -3.5,64.5
parent: 2
type: Transform
- - uid: 28088
+ - uid: 28104
components:
- pos: -4.5,64.5
parent: 2
type: Transform
- - uid: 28089
+ - uid: 28105
components:
- pos: -5.5,64.5
parent: 2
type: Transform
- - uid: 28090
+ - uid: 28106
components:
- pos: -5.5,65.5
parent: 2
type: Transform
- - uid: 28091
+ - uid: 28107
components:
- pos: -5.5,65.5
parent: 2
type: Transform
- - uid: 28092
+ - uid: 28108
components:
- pos: -6.5,65.5
parent: 2
type: Transform
- - uid: 28093
+ - uid: 28109
components:
- pos: -7.5,65.5
parent: 2
type: Transform
- - uid: 28094
+ - uid: 28110
components:
- pos: -7.5,66.5
parent: 2
type: Transform
- - uid: 28095
+ - uid: 28111
components:
- pos: -8.5,66.5
parent: 2
type: Transform
- - uid: 28096
+ - uid: 28112
components:
- pos: -8.5,67.5
parent: 2
type: Transform
- - uid: 28097
+ - uid: 28113
components:
- pos: -8.5,68.5
parent: 2
type: Transform
- - uid: 28098
+ - uid: 28114
components:
- pos: -8.5,70.5
parent: 2
type: Transform
- - uid: 28099
+ - uid: 28115
components:
- pos: -8.5,71.5
parent: 2
type: Transform
- - uid: 28100
+ - uid: 28116
components:
- pos: -8.5,72.5
parent: 2
type: Transform
- - uid: 28101
+ - uid: 28117
components:
- pos: -7.5,72.5
parent: 2
type: Transform
- - uid: 28102
+ - uid: 28118
components:
- pos: -7.5,73.5
parent: 2
type: Transform
- - uid: 28103
+ - uid: 28119
components:
- pos: -6.5,73.5
parent: 2
type: Transform
- - uid: 28104
+ - uid: 28120
components:
- pos: -6.5,74.5
parent: 2
type: Transform
- - uid: 28105
+ - uid: 28121
components:
- pos: -5.5,74.5
parent: 2
type: Transform
- - uid: 28106
+ - uid: 28122
components:
- pos: -4.5,74.5
parent: 2
type: Transform
- - uid: 28107
+ - uid: 28123
components:
- pos: -3.5,74.5
parent: 2
type: Transform
- - uid: 28108
+ - uid: 28124
components:
- pos: -2.5,74.5
parent: 2
type: Transform
- - uid: 28109
+ - uid: 28125
components:
- pos: -1.5,74.5
parent: 2
type: Transform
- - uid: 28110
+ - uid: 28126
components:
- pos: -0.5,74.5
parent: 2
type: Transform
- - uid: 28111
+ - uid: 28127
components:
- pos: 0.5,74.5
parent: 2
type: Transform
- - uid: 28112
+ - uid: 28128
components:
- pos: 1.5,74.5
parent: 2
type: Transform
- - uid: 28113
+ - uid: 28129
components:
- pos: 2.5,74.5
parent: 2
type: Transform
- - uid: 28114
+ - uid: 28130
components:
- pos: 3.5,74.5
parent: 2
type: Transform
- - uid: 28115
+ - uid: 28131
components:
- pos: 3.5,73.5
parent: 2
type: Transform
- - uid: 28116
+ - uid: 28132
components:
- pos: 4.5,73.5
parent: 2
type: Transform
- - uid: 28117
+ - uid: 28133
components:
- pos: 4.5,72.5
parent: 2
type: Transform
- - uid: 28118
+ - uid: 28134
components:
- pos: 5.5,72.5
parent: 2
type: Transform
- - uid: 28119
+ - uid: 28135
components:
- pos: 5.5,71.5
parent: 2
type: Transform
- - uid: 28120
+ - uid: 28136
components:
- pos: 5.5,70.5
parent: 2
type: Transform
- - uid: 28121
+ - uid: 28137
components:
- pos: 5.5,68.5
parent: 2
type: Transform
- - uid: 28122
+ - uid: 28138
components:
- pos: 5.5,67.5
parent: 2
type: Transform
- - uid: 28123
+ - uid: 28139
components:
- pos: 5.5,66.5
parent: 2
type: Transform
- - uid: 28124
+ - uid: 28140
components:
- pos: 4.5,66.5
parent: 2
type: Transform
- - uid: 28125
+ - uid: 28141
components:
- pos: 4.5,65.5
parent: 2
type: Transform
- - uid: 28126
+ - uid: 28142
components:
- pos: 3.5,65.5
parent: 2
type: Transform
- - uid: 28127
+ - uid: 28143
components:
- pos: 2.5,64.5
parent: 2
type: Transform
- - uid: 28128
+ - uid: 28144
components:
- pos: 2.5,65.5
parent: 2
type: Transform
- - uid: 28129
+ - uid: 28145
components:
- pos: 1.5,64.5
parent: 2
type: Transform
- - uid: 28130
+ - uid: 28146
components:
- rot: 3.141592653589793 rad
pos: 69.5,39.5
parent: 2
type: Transform
- - uid: 28131
+ - uid: 28147
components:
- rot: 3.141592653589793 rad
pos: 69.5,38.5
parent: 2
type: Transform
- - uid: 28132
+ - uid: 28148
components:
- rot: 3.141592653589793 rad
pos: 69.5,37.5
parent: 2
type: Transform
- - uid: 28133
+ - uid: 28149
components:
- rot: 3.141592653589793 rad
pos: 75.5,39.5
parent: 2
type: Transform
- - uid: 28134
+ - uid: 28150
components:
- rot: 3.141592653589793 rad
pos: 75.5,38.5
parent: 2
type: Transform
- - uid: 28135
+ - uid: 28151
components:
- rot: 3.141592653589793 rad
pos: 75.5,37.5
parent: 2
type: Transform
- - uid: 28136
+ - uid: 28152
components:
- rot: 3.141592653589793 rad
pos: 74.5,39.5
parent: 2
type: Transform
- - uid: 28137
+ - uid: 28153
components:
- rot: 3.141592653589793 rad
pos: 72.5,39.5
parent: 2
type: Transform
- - uid: 28138
+ - uid: 28154
components:
- rot: 3.141592653589793 rad
pos: 70.5,39.5
parent: 2
type: Transform
- - uid: 28139
+ - uid: 28155
components:
- rot: 3.141592653589793 rad
pos: 69.5,35.5
parent: 2
type: Transform
- - uid: 28140
+ - uid: 28156
components:
- rot: 3.141592653589793 rad
pos: 69.5,34.5
parent: 2
type: Transform
- - uid: 28141
+ - uid: 28157
components:
- rot: 3.141592653589793 rad
pos: 69.5,33.5
parent: 2
type: Transform
- - uid: 28142
+ - uid: 28158
components:
- rot: 3.141592653589793 rad
pos: 70.5,33.5
parent: 2
type: Transform
- - uid: 28143
+ - uid: 28159
components:
- rot: 3.141592653589793 rad
pos: 72.5,33.5
parent: 2
type: Transform
- - uid: 28144
+ - uid: 28160
components:
- rot: 3.141592653589793 rad
pos: 74.5,33.5
parent: 2
type: Transform
- - uid: 28145
+ - uid: 28161
components:
- rot: 3.141592653589793 rad
pos: 75.5,33.5
parent: 2
type: Transform
- - uid: 28146
+ - uid: 28162
components:
- rot: 3.141592653589793 rad
pos: 75.5,34.5
parent: 2
type: Transform
- - uid: 28147
+ - uid: 28163
components:
- rot: 3.141592653589793 rad
pos: 75.5,35.5
parent: 2
type: Transform
- - uid: 28148
+ - uid: 28164
components:
- pos: 76.5,37.5
parent: 2
type: Transform
- - uid: 28149
+ - uid: 28165
components:
- pos: 77.5,37.5
parent: 2
type: Transform
- - uid: 28150
+ - uid: 28166
components:
- pos: 76.5,35.5
parent: 2
type: Transform
- - uid: 28151
+ - uid: 28167
components:
- pos: 77.5,35.5
parent: 2
type: Transform
- - uid: 28152
+ - uid: 28168
components:
- pos: 68.5,37.5
parent: 2
type: Transform
- - uid: 28153
+ - uid: 28169
components:
- pos: 67.5,37.5
parent: 2
type: Transform
- - uid: 28154
+ - uid: 28170
components:
- pos: 67.5,35.5
parent: 2
type: Transform
- - uid: 28155
+ - uid: 28171
components:
- pos: 68.5,35.5
parent: 2
type: Transform
- - uid: 28156
+ - uid: 28172
components:
- pos: 64.5,32.5
parent: 2
type: Transform
- - uid: 28157
+ - uid: 28173
components:
- pos: 64.5,31.5
parent: 2
type: Transform
- - uid: 28158
+ - uid: 28174
components:
- pos: 62.5,32.5
parent: 2
type: Transform
- - uid: 28159
+ - uid: 28175
components:
- pos: 62.5,31.5
parent: 2
type: Transform
- - uid: 28160
+ - uid: 28176
components:
- pos: -38.5,43.5
parent: 2
type: Transform
- - uid: 28161
+ - uid: 28177
components:
- pos: -38.5,42.5
parent: 2
type: Transform
- - uid: 28162
+ - uid: 28178
components:
- pos: -38.5,41.5
parent: 2
type: Transform
- - uid: 28163
+ - uid: 28179
components:
- pos: -36.5,43.5
parent: 2
type: Transform
- - uid: 28164
+ - uid: 28180
components:
- pos: -36.5,42.5
parent: 2
type: Transform
- - uid: 28165
+ - uid: 28181
components:
- pos: -36.5,41.5
parent: 2
type: Transform
- - uid: 28166
+ - uid: 28182
components:
- pos: -38.5,40.5
parent: 2
type: Transform
- - uid: 28167
+ - uid: 28183
components:
- pos: -39.5,40.5
parent: 2
type: Transform
- - uid: 28168
+ - uid: 28184
components:
- pos: -40.5,40.5
parent: 2
type: Transform
- - uid: 28169
+ - uid: 28185
components:
- pos: -41.5,40.5
parent: 2
type: Transform
- - uid: 28170
+ - uid: 28186
components:
- pos: -42.5,40.5
parent: 2
type: Transform
- - uid: 28171
+ - uid: 28187
components:
- rot: -1.5707963267948966 rad
pos: -48.5,46.5
parent: 2
type: Transform
- - uid: 28172
+ - uid: 28188
components:
- rot: -1.5707963267948966 rad
pos: -48.5,47.5
parent: 2
type: Transform
- - uid: 28173
+ - uid: 28189
components:
- rot: -1.5707963267948966 rad
pos: -50.5,47.5
parent: 2
type: Transform
- - uid: 28174
+ - uid: 28190
components:
- pos: -48.5,40.5
parent: 2
type: Transform
- - uid: 28175
+ - uid: 28191
components:
- pos: -48.5,39.5
parent: 2
type: Transform
- - uid: 28176
+ - uid: 28192
components:
- pos: -48.5,38.5
parent: 2
type: Transform
- - uid: 28177
+ - uid: 28193
components:
- pos: -36.5,40.5
parent: 2
type: Transform
- - uid: 28178
+ - uid: 28194
components:
- pos: -35.5,40.5
parent: 2
type: Transform
- - uid: 28179
+ - uid: 28195
components:
- pos: -34.5,40.5
parent: 2
type: Transform
- - uid: 28180
+ - uid: 28196
components:
- pos: -31.5,40.5
parent: 2
type: Transform
- - uid: 28181
+ - uid: 28197
components:
- pos: -30.5,40.5
parent: 2
type: Transform
- - uid: 28182
+ - uid: 28198
components:
- pos: -30.5,41.5
parent: 2
type: Transform
- - uid: 28183
+ - uid: 28199
components:
- pos: -30.5,42.5
parent: 2
type: Transform
- - uid: 28184
+ - uid: 28200
components:
- pos: -29.5,42.5
parent: 2
type: Transform
- - uid: 28185
+ - uid: 28201
components:
- pos: -26.5,47.5
parent: 2
type: Transform
- - uid: 28186
+ - uid: 28202
components:
- pos: -27.5,47.5
parent: 2
type: Transform
- - uid: 28187
+ - uid: 28203
components:
- pos: -28.5,47.5
parent: 2
type: Transform
- - uid: 28188
+ - uid: 28204
components:
- pos: -29.5,47.5
parent: 2
type: Transform
- - uid: 28189
+ - uid: 28205
components:
- pos: -29.5,46.5
parent: 2
type: Transform
- - uid: 28190
+ - uid: 28206
components:
- pos: -25.5,47.5
parent: 2
type: Transform
- - uid: 28191
+ - uid: 28207
components:
- pos: -25.5,48.5
parent: 2
type: Transform
- - uid: 28192
+ - uid: 28208
components:
- pos: 32.5,48.5
parent: 2
type: Transform
- - uid: 28193
+ - uid: 28209
components:
- pos: 31.5,48.5
parent: 2
type: Transform
- - uid: 28194
+ - uid: 28210
components:
- pos: 31.5,47.5
parent: 2
type: Transform
- - uid: 28195
+ - uid: 28211
components:
- pos: 31.5,46.5
parent: 2
type: Transform
- - uid: 28196
+ - uid: 28212
components:
- pos: 31.5,44.5
parent: 2
type: Transform
- - uid: 28197
+ - uid: 28213
components:
- pos: 27.5,46.5
parent: 2
type: Transform
- - uid: 28198
+ - uid: 28214
components:
- pos: 27.5,44.5
parent: 2
type: Transform
- - uid: 28199
+ - uid: 28215
components:
- pos: 28.5,48.5
parent: 2
type: Transform
- - uid: 28200
+ - uid: 28216
components:
- rot: -1.5707963267948966 rad
pos: -1.5,73.5
parent: 2
type: Transform
- - uid: 28201
+ - uid: 28217
components:
- pos: 46.5,51.5
parent: 2
type: Transform
- - uid: 28202
+ - uid: 28218
components:
- pos: 47.5,51.5
parent: 2
type: Transform
- - uid: 28203
+ - uid: 28219
components:
- pos: 48.5,51.5
parent: 2
type: Transform
- - uid: 28204
+ - uid: 28220
components:
- pos: 30.5,42.5
parent: 2
type: Transform
- - uid: 28205
+ - uid: 28221
components:
- pos: 30.5,41.5
parent: 2
type: Transform
- - uid: 28206
+ - uid: 28222
components:
- pos: 28.5,42.5
parent: 2
type: Transform
- - uid: 28207
+ - uid: 28223
components:
- pos: 28.5,41.5
parent: 2
type: Transform
- - uid: 28208
+ - uid: 28224
components:
- pos: 27.5,48.5
parent: 2
type: Transform
- - uid: 28209
+ - uid: 28225
components:
- pos: -8.5,63.5
parent: 2
type: Transform
- - uid: 28210
+ - uid: 28226
components:
- pos: -9.5,63.5
parent: 2
type: Transform
- - uid: 28211
+ - uid: 28227
components:
- pos: -11.5,63.5
parent: 2
type: Transform
- - uid: 28212
+ - uid: 28228
components:
- pos: -8.5,62.5
parent: 2
type: Transform
- - uid: 28213
+ - uid: 28229
components:
- pos: -8.5,61.5
parent: 2
type: Transform
- - uid: 28214
+ - uid: 28230
components:
- pos: 10.5,-35.5
parent: 2
type: Transform
- - uid: 28215
+ - uid: 28231
components:
- pos: 9.5,-30.5
parent: 2
type: Transform
- - uid: 28216
+ - uid: 28232
components:
- pos: 10.5,-37.5
parent: 2
type: Transform
- - uid: 28217
+ - uid: 28233
components:
- pos: -25.5,49.5
parent: 2
type: Transform
- - uid: 28218
+ - uid: 28234
components:
- pos: -25.5,50.5
parent: 2
type: Transform
- - uid: 28219
+ - uid: 28235
components:
- pos: -26.5,50.5
parent: 2
type: Transform
- - uid: 28220
+ - uid: 28236
components:
- pos: -26.5,51.5
parent: 2
type: Transform
- - uid: 28221
+ - uid: 28237
components:
- pos: -26.5,52.5
parent: 2
type: Transform
- - uid: 28222
+ - uid: 28238
components:
- pos: -26.5,55.5
parent: 2
type: Transform
- - uid: 28223
+ - uid: 28239
components:
- pos: -26.5,56.5
parent: 2
type: Transform
- - uid: 28224
+ - uid: 28240
components:
- pos: -25.5,56.5
parent: 2
type: Transform
- - uid: 28225
+ - uid: 28241
components:
- pos: -25.5,57.5
parent: 2
type: Transform
- - uid: 28226
+ - uid: 28242
components:
- pos: -24.5,57.5
parent: 2
type: Transform
- - uid: 28227
+ - uid: 28243
components:
- pos: 3.5,57.5
parent: 2
type: Transform
- - uid: 28228
+ - uid: 28244
components:
- pos: 10.5,-30.5
parent: 2
type: Transform
- - uid: 28229
+ - uid: 28245
components:
- pos: 9.5,-33.5
parent: 2
type: Transform
- - uid: 28230
+ - uid: 28246
components:
- rot: 3.141592653589793 rad
pos: -16.5,-81.5
parent: 2
type: Transform
- - uid: 28231
+ - uid: 28247
components:
- rot: 3.141592653589793 rad
pos: -16.5,-82.5
parent: 2
type: Transform
- - uid: 28232
+ - uid: 28248
components:
- rot: 3.141592653589793 rad
pos: -16.5,-83.5
parent: 2
type: Transform
- - uid: 28233
+ - uid: 28249
components:
- rot: 3.141592653589793 rad
pos: -16.5,-84.5
parent: 2
type: Transform
- - uid: 28234
+ - uid: 28250
components:
- rot: 3.141592653589793 rad
pos: -16.5,-85.5
parent: 2
type: Transform
- - uid: 28235
+ - uid: 28251
components:
- rot: 3.141592653589793 rad
pos: -16.5,-86.5
parent: 2
type: Transform
- - uid: 28236
+ - uid: 28252
components:
- rot: 3.141592653589793 rad
pos: -16.5,-87.5
parent: 2
type: Transform
- - uid: 28237
+ - uid: 28253
components:
- rot: 3.141592653589793 rad
pos: -16.5,-89.5
parent: 2
type: Transform
- - uid: 28238
+ - uid: 28254
components:
- rot: 3.141592653589793 rad
pos: -15.5,-89.5
parent: 2
type: Transform
- - uid: 28239
+ - uid: 28255
components:
- rot: 3.141592653589793 rad
pos: -14.5,-89.5
parent: 2
type: Transform
- - uid: 28240
+ - uid: 28256
components:
- rot: 3.141592653589793 rad
pos: -13.5,-89.5
parent: 2
type: Transform
- - uid: 28241
+ - uid: 28257
components:
- rot: 3.141592653589793 rad
pos: -12.5,-89.5
parent: 2
type: Transform
- - uid: 28242
+ - uid: 28258
components:
- rot: 3.141592653589793 rad
pos: -11.5,-89.5
parent: 2
type: Transform
- - uid: 28243
+ - uid: 28259
components:
- rot: 3.141592653589793 rad
pos: -10.5,-89.5
parent: 2
type: Transform
- - uid: 28244
+ - uid: 28260
components:
- rot: 3.141592653589793 rad
pos: -9.5,-89.5
parent: 2
type: Transform
- - uid: 28245
+ - uid: 28261
components:
- rot: 3.141592653589793 rad
pos: -8.5,-89.5
parent: 2
type: Transform
- - uid: 28246
+ - uid: 28262
components:
- rot: 3.141592653589793 rad
pos: -9.5,-94.5
parent: 2
type: Transform
- - uid: 28247
+ - uid: 28263
components:
- pos: -5.5,-94.5
parent: 2
type: Transform
- - uid: 28248
+ - uid: 28264
components:
- rot: 3.141592653589793 rad
pos: -6.5,-89.5
parent: 2
type: Transform
- - uid: 28249
+ - uid: 28265
components:
- rot: 3.141592653589793 rad
pos: -5.5,-89.5
parent: 2
type: Transform
- - uid: 28250
+ - uid: 28266
components:
- rot: 3.141592653589793 rad
pos: -4.5,-89.5
parent: 2
type: Transform
- - uid: 28251
+ - uid: 28267
components:
- rot: 3.141592653589793 rad
pos: -3.5,-89.5
parent: 2
type: Transform
- - uid: 28252
+ - uid: 28268
components:
- rot: 3.141592653589793 rad
pos: -3.5,-85.5
parent: 2
type: Transform
- - uid: 28253
+ - uid: 28269
components:
- rot: 3.141592653589793 rad
pos: -3.5,-86.5
parent: 2
type: Transform
- - uid: 28254
+ - uid: 28270
components:
- rot: 3.141592653589793 rad
pos: -3.5,-87.5
parent: 2
type: Transform
- - uid: 28255
+ - uid: 28271
components:
- rot: 3.141592653589793 rad
pos: -3.5,-88.5
parent: 2
type: Transform
- - uid: 28256
+ - uid: 28272
components:
- rot: 3.141592653589793 rad
pos: -3.5,-84.5
parent: 2
type: Transform
- - uid: 28257
+ - uid: 28273
components:
- rot: -1.5707963267948966 rad
pos: 29.5,48.5
parent: 2
type: Transform
- - uid: 28258
+ - uid: 28274
components:
- pos: -18.5,-95.5
parent: 2
type: Transform
- - uid: 28259
+ - uid: 28275
components:
- pos: -18.5,-99.5
parent: 2
type: Transform
- - uid: 28260
+ - uid: 28276
components:
- pos: -26.5,-95.5
parent: 2
type: Transform
- - uid: 28261
+ - uid: 28277
components:
- pos: -26.5,-99.5
parent: 2
type: Transform
- - uid: 28262
+ - uid: 28278
components:
- pos: -18.5,-94.5
parent: 2
type: Transform
- - uid: 28263
+ - uid: 28279
components:
- pos: -19.5,-94.5
parent: 2
type: Transform
- - uid: 28264
+ - uid: 28280
components:
- pos: -20.5,-94.5
parent: 2
type: Transform
- - uid: 28265
+ - uid: 28281
components:
- pos: -24.5,-94.5
parent: 2
type: Transform
- - uid: 28266
+ - uid: 28282
components:
- pos: -25.5,-94.5
parent: 2
type: Transform
- - uid: 28267
+ - uid: 28283
components:
- pos: -26.5,-94.5
parent: 2
type: Transform
- - uid: 28268
+ - uid: 28284
components:
- pos: -18.5,-100.5
parent: 2
type: Transform
- - uid: 28269
+ - uid: 28285
components:
- pos: -19.5,-100.5
parent: 2
type: Transform
- - uid: 28270
+ - uid: 28286
components:
- pos: -20.5,-100.5
parent: 2
type: Transform
- - uid: 28271
+ - uid: 28287
components:
- pos: -26.5,-100.5
parent: 2
type: Transform
- - uid: 28272
+ - uid: 28288
components:
- pos: -25.5,-100.5
parent: 2
type: Transform
- - uid: 28273
+ - uid: 28289
components:
- pos: -24.5,-100.5
parent: 2
type: Transform
- - uid: 28274
+ - uid: 28290
components:
- pos: -17.5,-95.5
parent: 2
type: Transform
- - uid: 28275
+ - uid: 28291
components:
- pos: -16.5,-95.5
parent: 2
type: Transform
- - uid: 28276
+ - uid: 28292
components:
- pos: -15.5,-95.5
parent: 2
type: Transform
- - uid: 28277
+ - uid: 28293
components:
- pos: -14.5,-95.5
parent: 2
type: Transform
- - uid: 28278
+ - uid: 28294
components:
- pos: -17.5,-99.5
parent: 2
type: Transform
- - uid: 28279
+ - uid: 28295
components:
- pos: -16.5,-99.5
parent: 2
type: Transform
- - uid: 28280
+ - uid: 28296
components:
- pos: -15.5,-99.5
parent: 2
type: Transform
- - uid: 28281
+ - uid: 28297
components:
- pos: -14.5,-99.5
parent: 2
type: Transform
- - uid: 28282
+ - uid: 28298
components:
- pos: -27.5,-95.5
parent: 2
type: Transform
- - uid: 28283
+ - uid: 28299
components:
- pos: -28.5,-95.5
parent: 2
type: Transform
- - uid: 28284
+ - uid: 28300
components:
- pos: -29.5,-95.5
parent: 2
type: Transform
- - uid: 28285
+ - uid: 28301
components:
- pos: -30.5,-95.5
parent: 2
type: Transform
- - uid: 28286
+ - uid: 28302
components:
- pos: -27.5,-99.5
parent: 2
type: Transform
- - uid: 28287
+ - uid: 28303
components:
- pos: -28.5,-99.5
parent: 2
type: Transform
- - uid: 28288
+ - uid: 28304
components:
- pos: -29.5,-99.5
parent: 2
type: Transform
- - uid: 28289
+ - uid: 28305
components:
- pos: -30.5,-99.5
parent: 2
type: Transform
- - uid: 28290
+ - uid: 28306
components:
- pos: -13.5,-95.5
parent: 2
type: Transform
- - uid: 28291
+ - uid: 28307
components:
- pos: -13.5,-99.5
parent: 2
type: Transform
- - uid: 28292
+ - uid: 28308
components:
- pos: -31.5,-95.5
parent: 2
type: Transform
- - uid: 28293
+ - uid: 28309
components:
- pos: -31.5,-99.5
parent: 2
type: Transform
- - uid: 28294
+ - uid: 28310
components:
- pos: -10.5,-94.5
parent: 2
type: Transform
- - uid: 28295
+ - uid: 28311
components:
- pos: -11.5,-94.5
parent: 2
type: Transform
- - uid: 28296
+ - uid: 28312
components:
- pos: -11.5,-95.5
parent: 2
type: Transform
- - uid: 28297
+ - uid: 28313
components:
- pos: -12.5,-95.5
parent: 2
type: Transform
- - uid: 28298
+ - uid: 28314
components:
- pos: -4.5,-94.5
parent: 2
type: Transform
- - uid: 28299
+ - uid: 28315
components:
- pos: -4.5,-95.5
parent: 2
type: Transform
- - uid: 28300
+ - uid: 28316
components:
- pos: -3.5,-95.5
parent: 2
type: Transform
- - uid: 28301
+ - uid: 28317
components:
- pos: -7.5,-101.5
parent: 2
type: Transform
- - uid: 28302
+ - uid: 28318
components:
- pos: -4.5,-101.5
parent: 2
type: Transform
- - uid: 28303
+ - uid: 28319
components:
- pos: -4.5,-100.5
parent: 2
type: Transform
- - uid: 28304
+ - uid: 28320
components:
- pos: -3.5,-100.5
parent: 2
type: Transform
- - uid: 28305
+ - uid: 28321
components:
- pos: -10.5,-101.5
parent: 2
type: Transform
- - uid: 28306
+ - uid: 28322
components:
- pos: -10.5,-100.5
parent: 2
type: Transform
- - uid: 28307
+ - uid: 28323
components:
- pos: -11.5,-100.5
parent: 2
type: Transform
- - uid: 28308
+ - uid: 28324
components:
- pos: -11.5,-99.5
parent: 2
type: Transform
- - uid: 28309
+ - uid: 28325
components:
- pos: -12.5,-99.5
parent: 2
type: Transform
- - uid: 28310
+ - uid: 28326
components:
- pos: -3.5,-96.5
parent: 2
type: Transform
- - uid: 28311
+ - uid: 28327
components:
- pos: -3.5,-99.5
parent: 2
type: Transform
- - uid: 28312
+ - uid: 28328
components:
- pos: -39.5,-87.5
parent: 2
type: Transform
- - uid: 28313
+ - uid: 28329
components:
- pos: -39.5,-88.5
parent: 2
type: Transform
- - uid: 28314
+ - uid: 28330
components:
- pos: -44.5,-87.5
parent: 2
type: Transform
- - uid: 28315
+ - uid: 28331
components:
- pos: -44.5,-88.5
parent: 2
type: Transform
- - uid: 28316
+ - uid: 28332
components:
- pos: -32.5,-99.5
parent: 2
type: Transform
- - uid: 28317
+ - uid: 28333
components:
- pos: -33.5,-99.5
parent: 2
type: Transform
- - uid: 28318
+ - uid: 28334
components:
- pos: -34.5,-99.5
parent: 2
type: Transform
- - uid: 28319
+ - uid: 28335
components:
- pos: -36.5,-99.5
parent: 2
type: Transform
- - uid: 28320
+ - uid: 28336
components:
- pos: -38.5,-99.5
parent: 2
type: Transform
- - uid: 28321
+ - uid: 28337
components:
- pos: -39.5,-99.5
parent: 2
type: Transform
- - uid: 28322
+ - uid: 28338
components:
- pos: -34.5,-101.5
parent: 2
type: Transform
- - uid: 28323
+ - uid: 28339
components:
- pos: -36.5,-101.5
parent: 2
type: Transform
- - uid: 28324
+ - uid: 28340
components:
- pos: -6.5,-94.5
parent: 2
type: Transform
- - uid: 28325
+ - uid: 28341
components:
- pos: -8.5,-94.5
parent: 2
type: Transform
- - uid: 28326
+ - uid: 28342
components:
- pos: 66.5,-15.5
parent: 2
type: Transform
- - uid: 28327
+ - uid: 28343
components:
- pos: 66.5,-16.5
parent: 2
type: Transform
- - uid: 28328
+ - uid: 28344
components:
- pos: -39.5,-91.5
parent: 2
type: Transform
- - uid: 28329
+ - uid: 28345
components:
- pos: -44.5,-91.5
parent: 2
type: Transform
- - uid: 28330
+ - uid: 28346
components:
- rot: 1.5707963267948966 rad
pos: -32.5,-95.5
parent: 2
type: Transform
- - uid: 28331
+ - uid: 28347
components:
- rot: 1.5707963267948966 rad
pos: -33.5,-95.5
parent: 2
type: Transform
- - uid: 28332
+ - uid: 28348
components:
- rot: 1.5707963267948966 rad
pos: -34.5,-95.5
parent: 2
type: Transform
- - uid: 28333
+ - uid: 28349
components:
- rot: 1.5707963267948966 rad
pos: -34.5,-94.5
parent: 2
type: Transform
- - uid: 28334
+ - uid: 28350
components:
- rot: 1.5707963267948966 rad
pos: -34.5,-93.5
parent: 2
type: Transform
- - uid: 28335
+ - uid: 28351
components:
- rot: 1.5707963267948966 rad
pos: -34.5,-92.5
parent: 2
type: Transform
- - uid: 28336
+ - uid: 28352
components:
- rot: 1.5707963267948966 rad
pos: -35.5,-92.5
parent: 2
type: Transform
- - uid: 28337
+ - uid: 28353
components:
- rot: 1.5707963267948966 rad
pos: -36.5,-92.5
parent: 2
type: Transform
- - uid: 28338
+ - uid: 28354
components:
- rot: 1.5707963267948966 rad
pos: -37.5,-92.5
parent: 2
type: Transform
- - uid: 28339
+ - uid: 28355
components:
- rot: 1.5707963267948966 rad
pos: -38.5,-92.5
parent: 2
type: Transform
- - uid: 28340
+ - uid: 28356
components:
- rot: 1.5707963267948966 rad
pos: -39.5,-92.5
parent: 2
type: Transform
- - uid: 28341
+ - uid: 28357
components:
- rot: 1.5707963267948966 rad
pos: -39.5,-98.5
parent: 2
type: Transform
- - uid: 28342
+ - uid: 28358
components:
- rot: 1.5707963267948966 rad
pos: -40.5,-98.5
parent: 2
type: Transform
- - uid: 28343
+ - uid: 28359
components:
- rot: 1.5707963267948966 rad
pos: -43.5,-98.5
parent: 2
type: Transform
- - uid: 28344
+ - uid: 28360
components:
- rot: 1.5707963267948966 rad
pos: -44.5,-97.5
parent: 2
type: Transform
- - uid: 28345
+ - uid: 28361
components:
- rot: 1.5707963267948966 rad
pos: -44.5,-98.5
parent: 2
type: Transform
- - uid: 28346
+ - uid: 28362
components:
- rot: 1.5707963267948966 rad
pos: -44.5,-94.5
parent: 2
type: Transform
- - uid: 28347
+ - uid: 28363
components:
- rot: 1.5707963267948966 rad
pos: -44.5,-93.5
parent: 2
type: Transform
- - uid: 28348
+ - uid: 28364
components:
- rot: 1.5707963267948966 rad
pos: -44.5,-92.5
parent: 2
type: Transform
- - uid: 28349
+ - uid: 28365
components:
- pos: -20.5,-101.5
parent: 2
type: Transform
- - uid: 28350
+ - uid: 28366
components:
- pos: -24.5,-101.5
parent: 2
type: Transform
- - uid: 28351
+ - uid: 28367
components:
- pos: -75.5,-28.5
parent: 2
type: Transform
- - uid: 28352
+ - uid: 28368
components:
- pos: -75.5,-29.5
parent: 2
type: Transform
- - uid: 28353
+ - uid: 28369
components:
- pos: -75.5,-30.5
parent: 2
type: Transform
- - uid: 28354
+ - uid: 28370
components:
- pos: -75.5,-32.5
parent: 2
type: Transform
- - uid: 28355
+ - uid: 28371
components:
- pos: -77.5,-32.5
parent: 2
type: Transform
- - uid: 28356
+ - uid: 28372
components:
- pos: -69.5,-33.5
parent: 2
type: Transform
- - uid: 28357
+ - uid: 28373
components:
- pos: -70.5,-33.5
parent: 2
type: Transform
- - uid: 28358
+ - uid: 28374
components:
- pos: -71.5,-33.5
parent: 2
type: Transform
- - uid: 28359
+ - uid: 28375
components:
- pos: -74.5,-33.5
parent: 2
type: Transform
- - uid: 28360
+ - uid: 28376
components:
- pos: -75.5,-33.5
parent: 2
type: Transform
- - uid: 28361
+ - uid: 28377
components:
- pos: 70.5,-39.5
parent: 2
type: Transform
- - uid: 28362
+ - uid: 28378
components:
- pos: 71.5,-39.5
parent: 2
type: Transform
- - uid: 28363
+ - uid: 28379
components:
- rot: -1.5707963267948966 rad
pos: 65.5,-39.5
parent: 2
type: Transform
- - uid: 28364
+ - uid: 28380
components:
- rot: -1.5707963267948966 rad
pos: 74.5,-29.5
parent: 2
type: Transform
- - uid: 28365
+ - uid: 28381
components:
- rot: -1.5707963267948966 rad
pos: 69.5,-39.5
parent: 2
type: Transform
- - uid: 28366
+ - uid: 28382
components:
- pos: 29.5,34.5
parent: 2
type: Transform
- - uid: 28367
+ - uid: 28383
components:
- rot: -1.5707963267948966 rad
pos: 77.5,-50.5
parent: 2
type: Transform
- - uid: 28368
+ - uid: 28384
components:
- rot: -1.5707963267948966 rad
pos: 53.5,-68.5
parent: 2
type: Transform
- - uid: 28369
+ - uid: 28385
components:
- rot: -1.5707963267948966 rad
pos: 46.5,-66.5
parent: 2
type: Transform
- - uid: 28370
+ - uid: 28386
components:
- rot: -1.5707963267948966 rad
pos: 49.5,-64.5
parent: 2
type: Transform
- - uid: 28371
+ - uid: 28387
components:
- rot: -1.5707963267948966 rad
pos: 52.5,-64.5
parent: 2
type: Transform
- - uid: 28372
+ - uid: 28388
components:
- rot: -1.5707963267948966 rad
pos: 47.5,-64.5
parent: 2
type: Transform
- - uid: 28373
+ - uid: 28389
components:
- rot: -1.5707963267948966 rad
pos: 45.5,-66.5
parent: 2
type: Transform
- - uid: 28374
- components:
- - pos: 66.5,-67.5
- parent: 2
- type: Transform
- - uid: 28375
+ - uid: 28390
components:
- pos: 65.5,-67.5
parent: 2
type: Transform
- - uid: 28376
+ - uid: 28391
components:
- pos: 65.5,-68.5
parent: 2
type: Transform
- - uid: 28377
+ - uid: 28392
components:
- pos: 64.5,-68.5
parent: 2
type: Transform
- - uid: 28378
+ - uid: 28393
components:
- pos: 63.5,-69.5
parent: 2
type: Transform
- - uid: 28379
+ - uid: 28394
components:
- pos: 69.5,-50.5
parent: 2
type: Transform
- - uid: 28380
+ - uid: 28395
components:
- rot: -1.5707963267948966 rad
pos: 70.5,-27.5
parent: 2
type: Transform
- - uid: 28381
+ - uid: 28396
components:
- rot: -1.5707963267948966 rad
pos: 52.5,-68.5
parent: 2
type: Transform
- - uid: 28382
+ - uid: 28397
components:
- rot: -1.5707963267948966 rad
pos: 47.5,-66.5
parent: 2
type: Transform
- - uid: 28383
+ - uid: 28398
components:
- rot: -1.5707963267948966 rad
pos: 49.5,-68.5
parent: 2
type: Transform
- - uid: 28384
+ - uid: 28399
components:
- rot: -1.5707963267948966 rad
pos: 76.5,-50.5
parent: 2
type: Transform
- - uid: 28385
+ - uid: 28400
components:
- rot: -1.5707963267948966 rad
pos: 48.5,-67.5
parent: 2
type: Transform
- - uid: 28386
+ - uid: 28401
components:
- rot: -1.5707963267948966 rad
pos: 48.5,-64.5
parent: 2
type: Transform
- - uid: 28387
+ - uid: 28402
components:
- rot: -1.5707963267948966 rad
pos: 49.5,-67.5
parent: 2
type: Transform
- - uid: 28388
+ - uid: 28403
components:
- rot: -1.5707963267948966 rad
pos: 51.5,-64.5
parent: 2
type: Transform
- - uid: 28389
+ - uid: 28404
components:
- pos: 7.5,-38.5
parent: 2
type: Transform
- - uid: 28390
+ - uid: 28405
components:
- rot: 3.141592653589793 rad
pos: 74.5,-28.5
parent: 2
type: Transform
- - uid: 28391
+ - uid: 28406
components:
- rot: 3.141592653589793 rad
pos: 70.5,-28.5
parent: 2
type: Transform
- - uid: 28392
+ - uid: 28407
components:
- pos: 5.5,-36.5
parent: 2
type: Transform
- - uid: 28393
+ - uid: 28408
components:
- pos: 1.5,-36.5
parent: 2
type: Transform
- - uid: 28394
+ - uid: 28409
components:
- pos: 5.5,-37.5
parent: 2
type: Transform
- - uid: 28395
+ - uid: 28410
components:
- pos: 4.5,-36.5
parent: 2
type: Transform
- - uid: 28396
+ - uid: 28411
components:
- pos: 6.5,-37.5
parent: 2
type: Transform
- - uid: 28397
+ - uid: 28412
components:
- pos: 63.5,-70.5
parent: 2
type: Transform
- - uid: 28398
+ - uid: 28413
components:
- pos: 1.5,-35.5
parent: 2
type: Transform
- - uid: 28399
+ - uid: 28414
components:
- pos: 66.5,-60.5
parent: 2
type: Transform
- - uid: 28400
+ - uid: 28415
components:
- pos: 76.5,-52.5
parent: 2
type: Transform
- - uid: 28401
+ - uid: 28416
components:
- pos: 76.5,-51.5
parent: 2
type: Transform
- - uid: 28402
+ - uid: 28417
components:
- pos: 73.5,-51.5
parent: 2
type: Transform
- - uid: 28403
+ - uid: 28418
components:
- pos: 73.5,-53.5
parent: 2
type: Transform
- - uid: 28404
+ - uid: 28419
components:
- pos: 75.5,-57.5
parent: 2
type: Transform
- - uid: 28405
+ - uid: 28420
components:
- pos: 76.5,-57.5
parent: 2
type: Transform
- - uid: 28406
+ - uid: 28421
components:
- pos: 68.5,-55.5
parent: 2
type: Transform
- - uid: 28407
+ - uid: 28422
components:
- rot: 1.5707963267948966 rad
pos: -53.5,-57.5
parent: 2
type: Transform
- - uid: 28408
+ - uid: 28423
components:
- rot: 1.5707963267948966 rad
pos: -52.5,-57.5
parent: 2
type: Transform
- - uid: 28409
+ - uid: 28424
components:
- rot: 1.5707963267948966 rad
pos: -51.5,-57.5
parent: 2
type: Transform
- - uid: 28410
+ - uid: 28425
components:
- rot: 1.5707963267948966 rad
pos: -50.5,-57.5
parent: 2
type: Transform
- - uid: 28411
+ - uid: 28426
components:
- rot: 1.5707963267948966 rad
pos: -50.5,-59.5
parent: 2
type: Transform
- - uid: 28412
+ - uid: 28427
components:
- rot: 1.5707963267948966 rad
pos: -51.5,-59.5
parent: 2
type: Transform
- - uid: 28413
+ - uid: 28428
components:
- rot: 1.5707963267948966 rad
pos: -52.5,-59.5
parent: 2
type: Transform
- - uid: 28414
+ - uid: 28429
components:
- rot: 1.5707963267948966 rad
pos: -52.5,-61.5
parent: 2
type: Transform
- - uid: 28415
+ - uid: 28430
components:
- rot: 1.5707963267948966 rad
pos: -57.5,-63.5
parent: 2
type: Transform
- - uid: 28416
+ - uid: 28431
components:
- rot: 1.5707963267948966 rad
pos: -56.5,-63.5
parent: 2
type: Transform
- - uid: 28417
+ - uid: 28432
components:
- pos: 13.5,-37.5
parent: 2
type: Transform
- - uid: 28418
+ - uid: 28433
components:
- pos: 59.5,-69.5
parent: 2
type: Transform
- - uid: 28419
+ - uid: 28434
components:
- pos: 9.5,-32.5
parent: 2
type: Transform
- - uid: 28420
+ - uid: 28435
components:
- rot: 1.5707963267948966 rad
pos: 65.5,-42.5
parent: 2
type: Transform
- - uid: 28421
+ - uid: 28436
components:
- pos: 10.5,-39.5
parent: 2
type: Transform
- - uid: 28422
+ - uid: 28437
components:
- rot: -1.5707963267948966 rad
pos: 7.5,-40.5
parent: 2
type: Transform
- - uid: 28423
+ - uid: 28438
components:
- pos: 47.5,-32.5
parent: 2
type: Transform
- - uid: 28424
+ - uid: 28439
components:
- pos: 69.5,-68.5
parent: 2
type: Transform
- - uid: 28425
+ - uid: 28440
components:
- pos: 64.5,-69.5
parent: 2
type: Transform
- - uid: 28426
+ - uid: 28441
components:
- pos: 59.5,-70.5
parent: 2
type: Transform
- - uid: 28427
+ - uid: 28442
components:
- pos: 58.5,-69.5
parent: 2
type: Transform
- - uid: 28428
+ - uid: 28443
components:
- pos: 67.5,-68.5
parent: 2
type: Transform
- - uid: 28429
+ - uid: 28444
components:
- pos: 67.5,-69.5
parent: 2
type: Transform
- - uid: 28430
+ - uid: 28445
components:
- pos: 76.5,-56.5
parent: 2
type: Transform
- - uid: 28431
+ - uid: 28446
components:
- pos: 76.5,-55.5
parent: 2
type: Transform
- - uid: 28432
+ - uid: 28447
components:
- pos: 76.5,-54.5
parent: 2
type: Transform
- - uid: 28433
+ - uid: 28448
components:
- pos: 76.5,-53.5
parent: 2
type: Transform
- - uid: 28434
+ - uid: 28449
components:
- rot: 3.141592653589793 rad
pos: 48.5,3.5
parent: 2
type: Transform
- - uid: 28435
+ - uid: 28450
components:
- pos: -45.5,-37.5
parent: 2
type: Transform
- - uid: 28436
+ - uid: 28451
components:
- rot: 1.5707963267948966 rad
pos: 32.5,20.5
parent: 2
type: Transform
- - uid: 28437
+ - uid: 28452
components:
- rot: 1.5707963267948966 rad
pos: 46.5,-88.5
parent: 2
type: Transform
- - uid: 28438
+ - uid: 28453
components:
- pos: 35.5,-75.5
parent: 2
type: Transform
- - uid: 28439
+ - uid: 28454
components:
- pos: 8.5,-84.5
parent: 2
type: Transform
- - uid: 28440
+ - uid: 28455
components:
- pos: 7.5,-84.5
parent: 2
type: Transform
- - uid: 28441
+ - uid: 28456
components:
- pos: 7.5,-85.5
parent: 2
type: Transform
- - uid: 28442
+ - uid: 28457
components:
- pos: 9.5,-84.5
parent: 2
type: Transform
- - uid: 28443
+ - uid: 28458
components:
- pos: 7.5,-86.5
parent: 2
type: Transform
- - uid: 28444
+ - uid: 28459
components:
- pos: 5.5,-84.5
parent: 2
type: Transform
- - uid: 28445
+ - uid: 28460
components:
- pos: 5.5,-85.5
parent: 2
type: Transform
- - uid: 28446
+ - uid: 28461
components:
- pos: 5.5,-86.5
parent: 2
type: Transform
- - uid: 28447
+ - uid: 28462
components:
- pos: 5.5,-81.5
parent: 2
type: Transform
- - uid: 28448
+ - uid: 28463
components:
- pos: 5.5,-83.5
parent: 2
type: Transform
- - uid: 28449
+ - uid: 28464
components:
- rot: 1.5707963267948966 rad
pos: 47.5,-70.5
parent: 2
type: Transform
- - uid: 28450
+ - uid: 28465
components:
- rot: 1.5707963267948966 rad
pos: 28.5,-77.5
parent: 2
type: Transform
- - uid: 28451
+ - uid: 28466
components:
- pos: 27.5,-75.5
parent: 2
type: Transform
- - uid: 28452
+ - uid: 28467
components:
- rot: -1.5707963267948966 rad
pos: 43.5,-75.5
parent: 2
type: Transform
- - uid: 28453
+ - uid: 28468
components:
- pos: 64.5,-41.5
parent: 2
type: Transform
- - uid: 28454
+ - uid: 28469
components:
- pos: -47.5,-37.5
parent: 2
type: Transform
- - uid: 28455
+ - uid: 28470
components:
- pos: -47.5,-36.5
parent: 2
type: Transform
- - uid: 28456
+ - uid: 28471
components:
- pos: -51.5,-34.5
parent: 2
type: Transform
- - uid: 28457
+ - uid: 28472
components:
- pos: -51.5,-35.5
parent: 2
type: Transform
- - uid: 28458
+ - uid: 28473
components:
- pos: -51.5,-38.5
parent: 2
type: Transform
- - uid: 28459
+ - uid: 28474
components:
- pos: -51.5,-39.5
parent: 2
type: Transform
- - uid: 28460
+ - uid: 28475
components:
- pos: -51.5,-40.5
parent: 2
type: Transform
- - uid: 28461
+ - uid: 28476
components:
- rot: -1.5707963267948966 rad
pos: -75.5,-12.5
parent: 2
type: Transform
- - uid: 28462
+ - uid: 28477
components:
- rot: 1.5707963267948966 rad
pos: 26.5,-86.5
parent: 2
type: Transform
- - uid: 28463
+ - uid: 28478
components:
- rot: -1.5707963267948966 rad
pos: 31.5,-93.5
parent: 2
type: Transform
- - uid: 28464
+ - uid: 28479
components:
- rot: -1.5707963267948966 rad
pos: 28.5,-91.5
parent: 2
type: Transform
- - uid: 28465
+ - uid: 28480
components:
- rot: -1.5707963267948966 rad
pos: 32.5,-92.5
parent: 2
type: Transform
- - uid: 28466
+ - uid: 28481
components:
- rot: -1.5707963267948966 rad
pos: 32.5,-91.5
parent: 2
type: Transform
- - uid: 28467
+ - uid: 28482
components:
- rot: 1.5707963267948966 rad
pos: 50.5,-70.5
parent: 2
type: Transform
- - uid: 28468
+ - uid: 28483
components:
- rot: -1.5707963267948966 rad
pos: 46.5,-75.5
parent: 2
type: Transform
- - uid: 28469
+ - uid: 28484
components:
- rot: 1.5707963267948966 rad
pos: 24.5,-75.5
parent: 2
type: Transform
- - uid: 28470
+ - uid: 28485
components:
- rot: 1.5707963267948966 rad
pos: 50.5,-76.5
parent: 2
type: Transform
- - uid: 28471
+ - uid: 28486
components:
- rot: 1.5707963267948966 rad
pos: 50.5,-78.5
parent: 2
type: Transform
- - uid: 28472
+ - uid: 28487
components:
- rot: 1.5707963267948966 rad
pos: 50.5,-79.5
parent: 2
type: Transform
- - uid: 28473
+ - uid: 28488
components:
- pos: 49.5,-94.5
parent: 2
type: Transform
- - uid: 28474
+ - uid: 28489
components:
- pos: 46.5,-91.5
parent: 2
type: Transform
- - uid: 28475
+ - uid: 28490
components:
- pos: 47.5,-93.5
parent: 2
type: Transform
- - uid: 28476
+ - uid: 28491
components:
- pos: 46.5,-93.5
parent: 2
type: Transform
- - uid: 28477
+ - uid: 28492
components:
- pos: 50.5,-91.5
parent: 2
type: Transform
- - uid: 28478
+ - uid: 28493
components:
- rot: -1.5707963267948966 rad
pos: 23.5,-80.5
parent: 2
type: Transform
- - uid: 28479
+ - uid: 28494
components:
- rot: 1.5707963267948966 rad
pos: 50.5,-77.5
parent: 2
type: Transform
- - uid: 28480
+ - uid: 28495
components:
- rot: 1.5707963267948966 rad
pos: 50.5,-84.5
parent: 2
type: Transform
- - uid: 28481
+ - uid: 28496
components:
- pos: 49.5,-95.5
parent: 2
type: Transform
- - uid: 28482
+ - uid: 28497
components:
- pos: 47.5,-95.5
parent: 2
type: Transform
- - uid: 28483
+ - uid: 28498
components:
- pos: 46.5,-92.5
parent: 2
type: Transform
- - uid: 28484
+ - uid: 28499
components:
- pos: 50.5,-93.5
parent: 2
type: Transform
- - uid: 28485
+ - uid: 28500
components:
- pos: 49.5,-93.5
parent: 2
type: Transform
- - uid: 28486
+ - uid: 28501
components:
- rot: -1.5707963267948966 rad
pos: 26.5,-80.5
parent: 2
type: Transform
- - uid: 28487
+ - uid: 28502
components:
- rot: -1.5707963267948966 rad
pos: 26.5,-79.5
parent: 2
type: Transform
- - uid: 28488
+ - uid: 28503
components:
- rot: 1.5707963267948966 rad
pos: 51.5,-74.5
parent: 2
type: Transform
- - uid: 28489
+ - uid: 28504
components:
- rot: 1.5707963267948966 rad
pos: 51.5,-70.5
parent: 2
type: Transform
- - uid: 28490
+ - uid: 28505
components:
- pos: 47.5,-94.5
parent: 2
type: Transform
- - uid: 28491
+ - uid: 28506
components:
- rot: -1.5707963267948966 rad
pos: 28.5,-92.5
parent: 2
type: Transform
- - uid: 28492
+ - uid: 28507
components:
- rot: -1.5707963267948966 rad
pos: 2.5,-76.5
parent: 2
type: Transform
- - uid: 28493
+ - uid: 28508
components:
- pos: 5.5,-76.5
parent: 2
type: Transform
- - uid: 28494
+ - uid: 28509
components:
- rot: -1.5707963267948966 rad
pos: 34.5,-74.5
parent: 2
type: Transform
- - uid: 28495
+ - uid: 28510
components:
- rot: -1.5707963267948966 rad
pos: 34.5,-81.5
parent: 2
type: Transform
- - uid: 28496
+ - uid: 28511
components:
- rot: 1.5707963267948966 rad
pos: 44.5,-90.5
parent: 2
type: Transform
- - uid: 28497
+ - uid: 28512
components:
- rot: 1.5707963267948966 rad
pos: 44.5,-88.5
parent: 2
type: Transform
- - uid: 28498
+ - uid: 28513
components:
- pos: 8.5,-79.5
parent: 2
type: Transform
- - uid: 28499
+ - uid: 28514
components:
- pos: 8.5,-80.5
parent: 2
type: Transform
- - uid: 28500
+ - uid: 28515
components:
- pos: 50.5,-92.5
parent: 2
type: Transform
- - uid: 28501
+ - uid: 28516
components:
- rot: 3.141592653589793 rad
pos: 27.5,-67.5
parent: 2
type: Transform
- - uid: 28502
+ - uid: 28517
components:
- rot: 3.141592653589793 rad
pos: 24.5,-67.5
parent: 2
type: Transform
- - uid: 28503
+ - uid: 28518
components:
- rot: 3.141592653589793 rad
pos: 24.5,-68.5
parent: 2
type: Transform
- - uid: 28504
+ - uid: 28519
components:
- rot: 3.141592653589793 rad
pos: 27.5,-68.5
parent: 2
type: Transform
- - uid: 28505
+ - uid: 28520
components:
- rot: -1.5707963267948966 rad
pos: 32.5,-74.5
parent: 2
type: Transform
- - uid: 28506
+ - uid: 28521
components:
- rot: -1.5707963267948966 rad
pos: 28.5,-79.5
parent: 2
type: Transform
- - uid: 28507
+ - uid: 28522
components:
- rot: -1.5707963267948966 rad
pos: 33.5,-74.5
parent: 2
type: Transform
- - uid: 28508
+ - uid: 28523
components:
- rot: 1.5707963267948966 rad
pos: 50.5,-74.5
parent: 2
type: Transform
- - uid: 28509
+ - uid: 28524
components:
- rot: 1.5707963267948966 rad
pos: 45.5,-88.5
parent: 2
type: Transform
- - uid: 28510
+ - uid: 28525
components:
- pos: 7.5,-74.5
parent: 2
type: Transform
- - uid: 28511
+ - uid: 28526
components:
- pos: 7.5,-76.5
parent: 2
type: Transform
- - uid: 28512
+ - uid: 28527
components:
- pos: 7.5,-72.5
parent: 2
type: Transform
- - uid: 28513
+ - uid: 28528
components:
- pos: 10.5,-81.5
parent: 2
type: Transform
- - uid: 28514
+ - uid: 28529
components:
- pos: 10.5,-82.5
parent: 2
type: Transform
- - uid: 28515
+ - uid: 28530
components:
- pos: 10.5,-84.5
parent: 2
type: Transform
- - uid: 28516
+ - uid: 28531
components:
- pos: 10.5,-85.5
parent: 2
type: Transform
- - uid: 28517
+ - uid: 28532
components:
- pos: 5.5,-77.5
parent: 2
type: Transform
- - uid: 28518
+ - uid: 28533
components:
- pos: 8.5,-78.5
parent: 2
type: Transform
- - uid: 28519
+ - uid: 28534
components:
- rot: 1.5707963267948966 rad
pos: 50.5,-87.5
parent: 2
type: Transform
- - uid: 28520
+ - uid: 28535
components:
- rot: 1.5707963267948966 rad
pos: 50.5,-80.5
parent: 2
type: Transform
- - uid: 28521
+ - uid: 28536
components:
- rot: -1.5707963267948966 rad
pos: 32.5,-81.5
parent: 2
type: Transform
- - uid: 28522
+ - uid: 28537
components:
- rot: -1.5707963267948966 rad
pos: 32.5,-76.5
parent: 2
type: Transform
- - uid: 28523
+ - uid: 28538
components:
- rot: -1.5707963267948966 rad
pos: 32.5,-83.5
parent: 2
type: Transform
- - uid: 28524
+ - uid: 28539
components:
- rot: 3.141592653589793 rad
pos: 3.5,-20.5
parent: 2
type: Transform
- - uid: 28525
+ - uid: 28540
components:
- rot: 3.141592653589793 rad
pos: 3.5,-22.5
parent: 2
type: Transform
- - uid: 28526
+ - uid: 28541
components:
- rot: 3.141592653589793 rad
pos: 3.5,-23.5
parent: 2
type: Transform
- - uid: 28527
+ - uid: 28542
components:
- rot: 3.141592653589793 rad
pos: 3.5,-21.5
parent: 2
type: Transform
- - uid: 28528
+ - uid: 28543
components:
- rot: 3.141592653589793 rad
pos: 3.5,-19.5
parent: 2
type: Transform
- - uid: 28529
+ - uid: 28544
components:
- rot: 3.141592653589793 rad
pos: 39.5,13.5
parent: 2
type: Transform
- - uid: 28530
+ - uid: 28545
components:
- rot: 3.141592653589793 rad
pos: 37.5,13.5
parent: 2
type: Transform
- - uid: 28531
+ - uid: 28546
components:
- rot: 3.141592653589793 rad
pos: 38.5,13.5
parent: 2
type: Transform
- - uid: 28532
+ - uid: 28547
components:
- rot: 3.141592653589793 rad
pos: 47.5,8.5
parent: 2
type: Transform
- - uid: 28533
+ - uid: 28548
components:
- pos: 8.5,-81.5
parent: 2
type: Transform
- - uid: 28534
+ - uid: 28549
components:
- pos: 8.5,-82.5
parent: 2
type: Transform
- - uid: 28535
+ - uid: 28550
components:
- pos: 9.5,-82.5
parent: 2
type: Transform
- - uid: 28536
+ - uid: 28551
components:
- rot: -1.5707963267948966 rad
pos: 3.5,-76.5
parent: 2
type: Transform
- - uid: 28537
+ - uid: 28552
components:
- rot: -1.5707963267948966 rad
pos: 4.5,-76.5
parent: 2
type: Transform
- - uid: 28538
+ - uid: 28553
components:
- rot: -1.5707963267948966 rad
pos: -44.5,45.5
parent: 2
type: Transform
- - uid: 28539
+ - uid: 28554
components:
- rot: -1.5707963267948966 rad
pos: -51.5,45.5
parent: 2
type: Transform
- - uid: 28540
+ - uid: 28555
components:
- rot: -1.5707963267948966 rad
pos: -44.5,44.5
parent: 2
type: Transform
- - uid: 28541
+ - uid: 28556
components:
- rot: -1.5707963267948966 rad
pos: -44.5,43.5
parent: 2
type: Transform
- - uid: 28542
+ - uid: 28557
components:
- rot: -1.5707963267948966 rad
pos: -44.5,42.5
parent: 2
type: Transform
- - uid: 28543
+ - uid: 28558
components:
- rot: -1.5707963267948966 rad
pos: -44.5,41.5
parent: 2
type: Transform
- - uid: 28544
+ - uid: 28559
components:
- pos: 65.5,-26.5
parent: 2
type: Transform
- - uid: 28545
+ - uid: 28560
components:
- pos: 68.5,-26.5
parent: 2
type: Transform
- - uid: 28546
+ - uid: 28561
components:
- pos: 69.5,-26.5
parent: 2
type: Transform
- - uid: 28547
+ - uid: 28562
components:
- pos: -17.5,-83.5
parent: 2
type: Transform
- - uid: 28548
+ - uid: 28563
components:
- rot: -1.5707963267948966 rad
pos: -1.5,16.5
parent: 2
type: Transform
- - uid: 28549
+ - uid: 28564
components:
- pos: -65.5,-47.5
parent: 2
type: Transform
- - uid: 28550
+ - uid: 28565
components:
- pos: -66.5,-47.5
parent: 2
type: Transform
- - uid: 28551
+ - uid: 28566
components:
- pos: -67.5,-47.5
parent: 2
type: Transform
- - uid: 28552
+ - uid: 28567
components:
- pos: -71.5,-47.5
parent: 2
type: Transform
- - uid: 28553
+ - uid: 28568
components:
- pos: -72.5,-47.5
parent: 2
type: Transform
- - uid: 28554
+ - uid: 28569
components:
- pos: -73.5,-47.5
parent: 2
type: Transform
- - uid: 28555
+ - uid: 28570
components:
- pos: -74.5,-47.5
parent: 2
type: Transform
- - uid: 28556
+ - uid: 28571
components:
- rot: -1.5707963267948966 rad
pos: -68.5,-33.5
parent: 2
type: Transform
- - uid: 28557
+ - uid: 28572
components:
- rot: -1.5707963267948966 rad
pos: -63.5,-46.5
parent: 2
type: Transform
- - uid: 28558
+ - uid: 28573
components:
- rot: -1.5707963267948966 rad
pos: -62.5,-46.5
parent: 2
type: Transform
- - uid: 28559
+ - uid: 28574
components:
- rot: -1.5707963267948966 rad
pos: -62.5,-44.5
parent: 2
type: Transform
- - uid: 28560
+ - uid: 28575
components:
- pos: -78.5,-46.5
parent: 2
type: Transform
- - uid: 28561
+ - uid: 28576
components:
- pos: -78.5,-47.5
parent: 2
type: Transform
- - uid: 28562
+ - uid: 28577
components:
- pos: -77.5,-47.5
parent: 2
type: Transform
- - uid: 28563
+ - uid: 28578
components:
- pos: -76.5,-47.5
parent: 2
type: Transform
- - uid: 28564
+ - uid: 28579
components:
- pos: -75.5,-47.5
parent: 2
type: Transform
- - uid: 28565
+ - uid: 28580
components:
- pos: -49.5,-26.5
parent: 2
type: Transform
- - uid: 28566
+ - uid: 28581
components:
- pos: -50.5,-26.5
parent: 2
type: Transform
- - uid: 28567
+ - uid: 28582
components:
- rot: -1.5707963267948966 rad
pos: -63.5,-34.5
parent: 2
type: Transform
- - uid: 28568
+ - uid: 28583
components:
- rot: 1.5707963267948966 rad
pos: -63.5,-35.5
parent: 2
type: Transform
- - uid: 28569
+ - uid: 28584
components:
- rot: 3.141592653589793 rad
pos: -60.5,-44.5
parent: 2
type: Transform
- - uid: 28570
+ - uid: 28585
components:
- pos: 6.5,-3.5
parent: 2
type: Transform
- - uid: 28571
+ - uid: 28586
components:
- pos: 19.5,-27.5
parent: 2
type: Transform
- - uid: 28572
+ - uid: 28587
components:
- pos: 5.5,-3.5
parent: 2
type: Transform
- - uid: 28573
+ - uid: 28588
components:
- rot: 1.5707963267948966 rad
pos: 21.5,-38.5
parent: 2
type: Transform
- - uid: 28574
+ - uid: 28589
components:
- pos: 6.5,-8.5
parent: 2
type: Transform
- - uid: 28575
+ - uid: 28590
components:
- pos: 19.5,-28.5
parent: 2
type: Transform
+ - uid: 28591
+ components:
+ - pos: -35.5,-19.5
+ parent: 2
+ type: Transform
+ - uid: 28592
+ components:
+ - pos: -34.5,-19.5
+ parent: 2
+ type: Transform
+ - uid: 28593
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 66.5,-67.5
+ parent: 2
+ type: Transform
- proto: WallShuttle
entities:
- - uid: 28576
+ - uid: 28594
components:
- rot: -1.5707963267948966 rad
pos: -74.5,-57.5
parent: 2
type: Transform
- - uid: 28577
+ - uid: 28595
components:
- rot: -1.5707963267948966 rad
pos: -64.5,-56.5
parent: 2
type: Transform
- - uid: 28578
+ - uid: 28596
components:
- rot: -1.5707963267948966 rad
pos: -64.5,-57.5
parent: 2
type: Transform
- - uid: 28579
+ - uid: 28597
components:
- rot: 1.5707963267948966 rad
pos: -76.5,-51.5
parent: 2
type: Transform
- - uid: 28580
+ - uid: 28598
components:
- rot: -1.5707963267948966 rad
pos: -65.5,-57.5
parent: 2
type: Transform
- - uid: 28581
+ - uid: 28599
components:
- rot: -1.5707963267948966 rad
pos: -63.5,-57.5
parent: 2
type: Transform
- - uid: 28582
+ - uid: 28600
components:
- rot: -1.5707963267948966 rad
pos: -70.5,-57.5
parent: 2
type: Transform
- - uid: 28583
+ - uid: 28601
components:
- rot: 1.5707963267948966 rad
pos: -75.5,-55.5
parent: 2
type: Transform
- - uid: 28584
+ - uid: 28602
components:
- rot: -1.5707963267948966 rad
pos: -64.5,-51.5
parent: 2
type: Transform
- - uid: 28585
+ - uid: 28603
components:
- rot: 1.5707963267948966 rad
pos: -75.5,-51.5
parent: 2
type: Transform
- - uid: 28586
+ - uid: 28604
components:
- rot: -1.5707963267948966 rad
pos: -63.5,-50.5
parent: 2
type: Transform
- - uid: 28587
+ - uid: 28605
components:
- rot: 1.5707963267948966 rad
pos: -65.5,-50.5
parent: 2
type: Transform
- - uid: 28588
+ - uid: 28606
components:
- rot: 1.5707963267948966 rad
pos: -64.5,-50.5
parent: 2
type: Transform
- - uid: 28589
+ - uid: 28607
components:
- rot: 1.5707963267948966 rad
pos: -74.5,-50.5
parent: 2
type: Transform
- - uid: 28590
+ - uid: 28608
components:
- rot: -1.5707963267948966 rad
pos: -67.5,-55.5
parent: 2
type: Transform
- - uid: 28591
+ - uid: 28609
components:
- rot: 1.5707963267948966 rad
pos: -70.5,-50.5
parent: 2
type: Transform
- - uid: 28592
+ - uid: 28610
components:
- rot: 1.5707963267948966 rad
pos: -68.5,-51.5
parent: 2
type: Transform
- - uid: 28593
+ - uid: 28611
components:
- rot: 1.5707963267948966 rad
pos: -67.5,-51.5
parent: 2
type: Transform
- - uid: 28594
+ - uid: 28612
components:
- rot: 1.5707963267948966 rad
pos: -75.5,-56.5
parent: 2
type: Transform
- - uid: 28595
+ - uid: 28613
components:
- rot: 1.5707963267948966 rad
pos: -75.5,-52.5
parent: 2
type: Transform
- - uid: 28596
+ - uid: 28614
components:
- rot: 1.5707963267948966 rad
pos: -76.5,-56.5
parent: 2
type: Transform
- - uid: 28597
+ - uid: 28615
components:
- rot: 1.5707963267948966 rad
pos: -67.5,-52.5
parent: 2
type: Transform
- - uid: 28598
+ - uid: 28616
components:
- rot: -1.5707963267948966 rad
pos: -68.5,-56.5
parent: 2
type: Transform
- - uid: 28599
+ - uid: 28617
components:
- rot: -1.5707963267948966 rad
pos: -67.5,-56.5
@@ -184842,11702 +184947,11673 @@ entities:
type: Transform
- proto: WallShuttleDiagonal
entities:
- - uid: 28600
+ - uid: 28618
components:
- rot: 1.5707963267948966 rad
pos: -75.5,-57.5
parent: 2
type: Transform
- - uid: 28601
+ - uid: 28619
components:
- rot: 1.5707963267948966 rad
pos: -66.5,-57.5
parent: 2
type: Transform
- - uid: 28602
+ - uid: 28620
components:
- rot: 3.141592653589793 rad
pos: -69.5,-57.5
parent: 2
type: Transform
- - uid: 28603
+ - uid: 28621
components:
- pos: -75.5,-50.5
parent: 2
type: Transform
- - uid: 28604
+ - uid: 28622
components:
- rot: -1.5707963267948966 rad
pos: -69.5,-50.5
parent: 2
type: Transform
- - uid: 28605
+ - uid: 28623
components:
- pos: -66.5,-50.5
parent: 2
type: Transform
- - uid: 28606
+ - uid: 28624
components:
- rot: 1.5707963267948966 rad
pos: -69.5,-51.5
parent: 2
type: Transform
- - uid: 28607
+ - uid: 28625
components:
- rot: -1.5707963267948966 rad
pos: -66.5,-56.5
parent: 2
type: Transform
- - uid: 28608
+ - uid: 28626
components:
- rot: 3.141592653589793 rad
pos: -66.5,-51.5
parent: 2
type: Transform
- - uid: 28609
+ - uid: 28627
components:
- pos: -69.5,-56.5
parent: 2
type: Transform
- proto: WallSolid
entities:
- - uid: 28610
+ - uid: 28628
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 11.5,-44.5
+ parent: 2
+ type: Transform
+ - uid: 28629
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 12.5,-46.5
+ parent: 2
+ type: Transform
+ - uid: 28630
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 12.5,-47.5
+ parent: 2
+ type: Transform
+ - uid: 28631
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 10.5,-44.5
+ parent: 2
+ type: Transform
+ - uid: 28632
+ components:
+ - pos: 16.5,-46.5
+ parent: 2
+ type: Transform
+ - uid: 28633
+ components:
+ - pos: 16.5,-45.5
+ parent: 2
+ type: Transform
+ - uid: 28634
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 12.5,-45.5
+ parent: 2
+ type: Transform
+ - uid: 28635
+ components:
+ - pos: 15.5,-48.5
+ parent: 2
+ type: Transform
+ - uid: 28636
+ components:
+ - pos: -34.5,-21.5
+ parent: 2
+ type: Transform
+ - uid: 28637
+ components:
+ - pos: -33.5,-21.5
+ parent: 2
+ type: Transform
+ - uid: 28638
+ components:
+ - pos: -33.5,-20.5
+ parent: 2
+ type: Transform
+ - uid: 28639
components:
- pos: 55.5,-39.5
parent: 2
type: Transform
- - uid: 28611
+ - uid: 28640
components:
- rot: -1.5707963267948966 rad
pos: 2.5,-10.5
parent: 2
type: Transform
- - uid: 28612
+ - uid: 28641
components:
- rot: -1.5707963267948966 rad
pos: 2.5,-12.5
parent: 2
type: Transform
- - uid: 28613
+ - uid: 28642
components:
- rot: -1.5707963267948966 rad
pos: 2.5,-11.5
parent: 2
type: Transform
- - uid: 28614
+ - uid: 28643
components:
- rot: -1.5707963267948966 rad
pos: 8.5,-15.5
parent: 2
type: Transform
- - uid: 28615
+ - uid: 28644
components:
- rot: -1.5707963267948966 rad
pos: 1.5,-11.5
parent: 2
type: Transform
- - uid: 28616
+ - uid: 28645
components:
- rot: -1.5707963267948966 rad
pos: 6.5,-12.5
parent: 2
type: Transform
- - uid: 28617
+ - uid: 28646
components:
- pos: 0.5,-24.5
parent: 2
type: Transform
- - uid: 28618
+ - uid: 28647
components:
- pos: 1.5,-24.5
parent: 2
type: Transform
- - uid: 28619
+ - uid: 28648
components:
- pos: -1.5,-18.5
parent: 2
type: Transform
- - uid: 28620
+ - uid: 28649
components:
- pos: -0.5,-24.5
parent: 2
type: Transform
- - uid: 28621
+ - uid: 28650
components:
- pos: 2.5,-18.5
parent: 2
type: Transform
- - uid: 28622
+ - uid: 28651
components:
- pos: 1.5,-18.5
parent: 2
type: Transform
- - uid: 28623
+ - uid: 28652
components:
- pos: -2.5,-20.5
parent: 2
type: Transform
- - uid: 28624
+ - uid: 28653
components:
- pos: -0.5,-18.5
parent: 2
type: Transform
- - uid: 28625
+ - uid: 28654
components:
- pos: -2.5,-24.5
parent: 2
type: Transform
- - uid: 28626
+ - uid: 28655
components:
- pos: -2.5,-23.5
parent: 2
type: Transform
- - uid: 28627
+ - uid: 28656
components:
- pos: -2.5,-21.5
parent: 2
type: Transform
- - uid: 28628
+ - uid: 28657
components:
- pos: -2.5,-22.5
parent: 2
type: Transform
- - uid: 28629
+ - uid: 28658
components:
- rot: -1.5707963267948966 rad
pos: -1.5,-10.5
parent: 2
type: Transform
- - uid: 28630
- components:
- - pos: -34.5,-19.5
- parent: 2
- type: Transform
- - uid: 28631
+ - uid: 28659
components:
- pos: 0.5,-12.5
parent: 2
type: Transform
- - uid: 28632
+ - uid: 28660
components:
- pos: 0.5,-11.5
parent: 2
type: Transform
- - uid: 28633
- components:
- - pos: -37.5,-19.5
- parent: 2
- type: Transform
- - uid: 28634
- components:
- - pos: -35.5,-19.5
- parent: 2
- type: Transform
- - uid: 28635
+ - uid: 28661
components:
- pos: -2.5,-8.5
parent: 2
type: Transform
- - uid: 28636
+ - uid: 28662
components:
- pos: 0.5,-13.5
parent: 2
type: Transform
- - uid: 28637
+ - uid: 28663
components:
- rot: -1.5707963267948966 rad
pos: -42.5,-30.5
parent: 2
type: Transform
- - uid: 28638
+ - uid: 28664
components:
- rot: -1.5707963267948966 rad
pos: -37.5,-30.5
parent: 2
type: Transform
- - uid: 28639
+ - uid: 28665
components:
- rot: 1.5707963267948966 rad
pos: -17.5,10.5
parent: 2
type: Transform
- - uid: 28640
+ - uid: 28666
components:
- rot: -1.5707963267948966 rad
pos: -69.5,-32.5
parent: 2
type: Transform
- - uid: 28641
+ - uid: 28667
components:
- rot: 3.141592653589793 rad
pos: -41.5,-32.5
parent: 2
type: Transform
- - uid: 28642
+ - uid: 28668
components:
- rot: 3.141592653589793 rad
pos: -41.5,-31.5
parent: 2
type: Transform
- - uid: 28643
+ - uid: 28669
components:
- pos: -42.5,-31.5
parent: 2
type: Transform
- - uid: 28644
+ - uid: 28670
components:
- rot: -1.5707963267948966 rad
pos: -53.5,-33.5
parent: 2
type: Transform
- - uid: 28645
+ - uid: 28671
components:
- rot: -1.5707963267948966 rad
pos: -53.5,-34.5
parent: 2
type: Transform
- - uid: 28646
+ - uid: 28672
components:
- pos: -10.5,13.5
parent: 2
type: Transform
- - uid: 28647
+ - uid: 28673
components:
- pos: -9.5,16.5
parent: 2
type: Transform
- - uid: 28648
+ - uid: 28674
components:
- rot: 1.5707963267948966 rad
pos: -8.5,20.5
parent: 2
type: Transform
- - uid: 28649
+ - uid: 28675
components:
- pos: -11.5,12.5
parent: 2
type: Transform
- - uid: 28650
+ - uid: 28676
components:
- pos: -9.5,18.5
parent: 2
type: Transform
- - uid: 28651
+ - uid: 28677
components:
- rot: 3.141592653589793 rad
pos: -16.5,-32.5
parent: 2
type: Transform
- - uid: 28652
+ - uid: 28678
components:
- rot: 1.5707963267948966 rad
pos: -16.5,-28.5
parent: 2
type: Transform
- - uid: 28653
+ - uid: 28679
components:
- pos: 37.5,-56.5
parent: 2
type: Transform
- - uid: 28654
+ - uid: 28680
components:
- pos: 17.5,-31.5
parent: 2
type: Transform
- - uid: 28655
+ - uid: 28681
components:
- pos: -11.5,-3.5
parent: 2
type: Transform
- - uid: 28656
+ - uid: 28682
components:
- rot: 3.141592653589793 rad
pos: 15.5,8.5
parent: 2
type: Transform
- - uid: 28657
+ - uid: 28683
components:
- pos: 40.5,-0.5
parent: 2
type: Transform
- - uid: 28658
+ - uid: 28684
components:
- rot: 3.141592653589793 rad
pos: 23.5,9.5
parent: 2
type: Transform
- - uid: 28659
+ - uid: 28685
components:
- pos: -17.5,-34.5
parent: 2
type: Transform
- - uid: 28660
+ - uid: 28686
components:
- rot: 1.5707963267948966 rad
pos: -11.5,8.5
parent: 2
type: Transform
- - uid: 28661
+ - uid: 28687
components:
- rot: 1.5707963267948966 rad
pos: 28.5,-57.5
parent: 2
type: Transform
- - uid: 28662
+ - uid: 28688
components:
- pos: 37.5,-53.5
parent: 2
type: Transform
- - uid: 28663
+ - uid: 28689
components:
- rot: 1.5707963267948966 rad
pos: 19.5,-23.5
parent: 2
type: Transform
- - uid: 28664
+ - uid: 28690
components:
- rot: -1.5707963267948966 rad
pos: 31.5,-2.5
parent: 2
type: Transform
- - uid: 28665
+ - uid: 28691
components:
- rot: 3.141592653589793 rad
pos: 15.5,-51.5
parent: 2
type: Transform
- - uid: 28666
+ - uid: 28692
components:
- rot: -1.5707963267948966 rad
pos: -14.5,-11.5
parent: 2
type: Transform
- - uid: 28667
+ - uid: 28693
components:
- pos: -11.5,-72.5
parent: 2
type: Transform
- - uid: 28668
+ - uid: 28694
components:
- rot: -1.5707963267948966 rad
pos: -14.5,-20.5
parent: 2
type: Transform
- - uid: 28669
+ - uid: 28695
components:
- pos: 11.5,-61.5
parent: 2
type: Transform
- - uid: 28670
+ - uid: 28696
components:
- pos: 11.5,-63.5
parent: 2
type: Transform
- - uid: 28671
+ - uid: 28697
components:
- pos: 9.5,-63.5
parent: 2
type: Transform
- - uid: 28672
+ - uid: 28698
components:
- pos: 7.5,-63.5
parent: 2
type: Transform
- - uid: 28673
+ - uid: 28699
components:
- rot: -1.5707963267948966 rad
pos: -10.5,-70.5
parent: 2
type: Transform
- - uid: 28674
+ - uid: 28700
components:
- rot: -1.5707963267948966 rad
pos: -10.5,-69.5
parent: 2
type: Transform
- - uid: 28675
+ - uid: 28701
components:
- rot: -1.5707963267948966 rad
pos: -7.5,-70.5
parent: 2
type: Transform
- - uid: 28676
+ - uid: 28702
components:
- rot: -1.5707963267948966 rad
pos: -15.5,-68.5
parent: 2
type: Transform
- - uid: 28677
+ - uid: 28703
components:
- rot: -1.5707963267948966 rad
pos: -17.5,-68.5
parent: 2
type: Transform
- - uid: 28678
+ - uid: 28704
components:
- rot: -1.5707963267948966 rad
pos: -10.5,-68.5
parent: 2
type: Transform
- - uid: 28679
+ - uid: 28705
components:
- rot: -1.5707963267948966 rad
pos: -7.5,-67.5
parent: 2
type: Transform
- - uid: 28680
+ - uid: 28706
components:
- rot: -1.5707963267948966 rad
pos: -5.5,-67.5
parent: 2
type: Transform
- - uid: 28681
+ - uid: 28707
components:
- pos: 1.5,-64.5
parent: 2
type: Transform
- - uid: 28682
+ - uid: 28708
components:
- pos: 1.5,-63.5
parent: 2
type: Transform
- - uid: 28683
+ - uid: 28709
components:
- pos: -17.5,-63.5
parent: 2
type: Transform
- - uid: 28684
+ - uid: 28710
components:
- pos: 4.5,-51.5
parent: 2
type: Transform
- - uid: 28685
+ - uid: 28711
components:
- pos: -12.5,-72.5
parent: 2
type: Transform
- - uid: 28686
+ - uid: 28712
components:
- pos: -14.5,-70.5
parent: 2
type: Transform
- - uid: 28687
+ - uid: 28713
components:
- pos: -3.5,-74.5
parent: 2
type: Transform
- - uid: 28688
+ - uid: 28714
components:
- pos: 9.5,-68.5
parent: 2
type: Transform
- - uid: 28689
+ - uid: 28715
components:
- rot: 3.141592653589793 rad
pos: -1.5,9.5
parent: 2
type: Transform
- - uid: 28690
+ - uid: 28716
components:
- rot: 1.5707963267948966 rad
pos: -6.5,-21.5
parent: 2
type: Transform
- - uid: 28691
+ - uid: 28717
components:
- rot: -1.5707963267948966 rad
pos: 12.5,-44.5
parent: 2
type: Transform
- - uid: 28692
+ - uid: 28718
components:
- rot: 1.5707963267948966 rad
pos: 34.5,-44.5
parent: 2
type: Transform
- - uid: 28693
+ - uid: 28719
components:
- pos: 1.5,-67.5
parent: 2
type: Transform
- - uid: 28694
+ - uid: 28720
components:
- pos: 5.5,-63.5
parent: 2
type: Transform
- - uid: 28695
+ - uid: 28721
components:
- pos: 13.5,-59.5
parent: 2
type: Transform
- - uid: 28696
+ - uid: 28722
components:
- rot: 1.5707963267948966 rad
pos: 18.5,-23.5
parent: 2
type: Transform
- - uid: 28697
+ - uid: 28723
components:
- pos: -21.5,-64.5
parent: 2
type: Transform
- - uid: 28698
+ - uid: 28724
components:
- pos: -21.5,-66.5
parent: 2
type: Transform
- - uid: 28699
+ - uid: 28725
components:
- pos: -21.5,-67.5
parent: 2
type: Transform
- - uid: 28700
+ - uid: 28726
components:
- pos: -21.5,-68.5
parent: 2
type: Transform
- - uid: 28701
+ - uid: 28727
components:
- pos: -22.5,-68.5
parent: 2
type: Transform
- - uid: 28702
+ - uid: 28728
components:
- pos: -25.5,-68.5
parent: 2
type: Transform
- - uid: 28703
+ - uid: 28729
components:
- pos: -26.5,-69.5
parent: 2
type: Transform
- - uid: 28704
+ - uid: 28730
components:
- pos: -23.5,-74.5
parent: 2
type: Transform
- - uid: 28705
+ - uid: 28731
components:
- pos: -22.5,-74.5
parent: 2
type: Transform
- - uid: 28706
+ - uid: 28732
components:
- pos: -16.5,-71.5
parent: 2
type: Transform
- - uid: 28707
+ - uid: 28733
components:
- pos: -21.5,-75.5
parent: 2
type: Transform
- - uid: 28708
+ - uid: 28734
components:
- pos: -10.5,-74.5
parent: 2
type: Transform
- - uid: 28709
+ - uid: 28735
components:
- pos: -8.5,-73.5
parent: 2
type: Transform
- - uid: 28710
+ - uid: 28736
components:
- pos: 3.5,-69.5
parent: 2
type: Transform
- - uid: 28711
+ - uid: 28737
components:
- pos: 7.5,-68.5
parent: 2
type: Transform
- - uid: 28712
+ - uid: 28738
components:
- pos: 7.5,-66.5
parent: 2
type: Transform
- - uid: 28713
+ - uid: 28739
components:
- pos: 9.5,-66.5
parent: 2
type: Transform
- - uid: 28714
+ - uid: 28740
components:
- pos: -19.5,-74.5
parent: 2
type: Transform
- - uid: 28715
+ - uid: 28741
components:
- rot: 3.141592653589793 rad
pos: 14.5,-15.5
parent: 2
type: Transform
- - uid: 28716
+ - uid: 28742
components:
- pos: 9.5,-13.5
parent: 2
type: Transform
- - uid: 28717
+ - uid: 28743
components:
- rot: -1.5707963267948966 rad
pos: -16.5,-44.5
parent: 2
type: Transform
- - uid: 28718
+ - uid: 28744
components:
- rot: 1.5707963267948966 rad
pos: 31.5,-23.5
parent: 2
type: Transform
- - uid: 28719
+ - uid: 28745
components:
- rot: -1.5707963267948966 rad
pos: 31.5,3.5
parent: 2
type: Transform
- - uid: 28720
+ - uid: 28746
components:
- pos: 7.5,6.5
parent: 2
type: Transform
- - uid: 28721
+ - uid: 28747
components:
- rot: 3.141592653589793 rad
pos: 62.5,14.5
parent: 2
type: Transform
- - uid: 28722
+ - uid: 28748
components:
- rot: 3.141592653589793 rad
pos: -1.5,8.5
parent: 2
type: Transform
- - uid: 28723
+ - uid: 28749
components:
- pos: 6.5,-68.5
parent: 2
type: Transform
- - uid: 28724
+ - uid: 28750
components:
- pos: 15.5,4.5
parent: 2
type: Transform
- - uid: 28725
+ - uid: 28751
components:
- rot: 3.141592653589793 rad
pos: 61.5,17.5
parent: 2
type: Transform
- - uid: 28726
+ - uid: 28752
components:
- pos: -8.5,-34.5
parent: 2
type: Transform
- - uid: 28727
+ - uid: 28753
components:
- rot: -1.5707963267948966 rad
pos: 13.5,-4.5
parent: 2
type: Transform
- - uid: 28728
+ - uid: 28754
components:
- pos: 2.5,-9.5
parent: 2
type: Transform
- - uid: 28729
+ - uid: 28755
components:
- rot: -1.5707963267948966 rad
pos: -13.5,36.5
parent: 2
type: Transform
- - uid: 28730
+ - uid: 28756
components:
- pos: 7.5,-62.5
parent: 2
type: Transform
- - uid: 28731
+ - uid: 28757
components:
- pos: 13.5,-54.5
parent: 2
type: Transform
- - uid: 28732
+ - uid: 28758
components:
- pos: -17.5,-64.5
parent: 2
type: Transform
- - uid: 28733
+ - uid: 28759
components:
- pos: 7.5,-55.5
parent: 2
type: Transform
- - uid: 28734
+ - uid: 28760
components:
- pos: -10.5,-2.5
parent: 2
type: Transform
- - uid: 28735
+ - uid: 28761
components:
- rot: 3.141592653589793 rad
pos: 22.5,15.5
parent: 2
type: Transform
- - uid: 28736
+ - uid: 28762
components:
- rot: 3.141592653589793 rad
pos: 21.5,15.5
parent: 2
type: Transform
- - uid: 28737
+ - uid: 28763
components:
- rot: -1.5707963267948966 rad
pos: 13.5,-3.5
parent: 2
type: Transform
- - uid: 28738
+ - uid: 28764
components:
- rot: 1.5707963267948966 rad
pos: 66.5,-4.5
parent: 2
type: Transform
- - uid: 28739
+ - uid: 28765
components:
- pos: 37.5,-39.5
parent: 2
type: Transform
- - uid: 28740
+ - uid: 28766
components:
- pos: -6.5,-5.5
parent: 2
type: Transform
- - uid: 28741
+ - uid: 28767
components:
- rot: 3.141592653589793 rad
pos: 6.5,-16.5
parent: 2
type: Transform
- - uid: 28742
+ - uid: 28768
components:
- pos: 43.5,-57.5
parent: 2
type: Transform
- - uid: 28743
+ - uid: 28769
components:
- pos: 37.5,-27.5
parent: 2
type: Transform
- - uid: 28744
+ - uid: 28770
components:
- pos: 13.5,-50.5
parent: 2
type: Transform
- - uid: 28745
+ - uid: 28771
components:
- pos: -17.5,-28.5
parent: 2
type: Transform
- - uid: 28746
+ - uid: 28772
components:
- rot: -1.5707963267948966 rad
pos: -3.5,-78.5
parent: 2
type: Transform
- - uid: 28747
+ - uid: 28773
components:
- rot: -1.5707963267948966 rad
pos: -2.5,-83.5
parent: 2
type: Transform
- - uid: 28748
+ - uid: 28774
components:
- rot: -1.5707963267948966 rad
pos: -5.5,-76.5
parent: 2
type: Transform
- - uid: 28749
+ - uid: 28775
components:
- pos: -9.5,-7.5
parent: 2
type: Transform
- - uid: 28750
+ - uid: 28776
components:
- rot: -1.5707963267948966 rad
pos: 29.5,-1.5
parent: 2
type: Transform
- - uid: 28751
+ - uid: 28777
components:
- pos: -6.5,-16.5
parent: 2
type: Transform
- - uid: 28752
+ - uid: 28778
components:
- rot: -1.5707963267948966 rad
pos: -2.5,-10.5
parent: 2
type: Transform
- - uid: 28753
+ - uid: 28779
components:
- pos: 13.5,-48.5
parent: 2
type: Transform
- - uid: 28754
+ - uid: 28780
components:
- pos: -2.5,-18.5
parent: 2
type: Transform
- - uid: 28755
+ - uid: 28781
components:
- pos: -0.5,-15.5
parent: 2
type: Transform
- - uid: 28756
+ - uid: 28782
components:
- pos: -2.5,-14.5
parent: 2
type: Transform
- - uid: 28757
+ - uid: 28783
components:
- pos: -2.5,-13.5
parent: 2
type: Transform
- - uid: 28758
+ - uid: 28784
components:
- pos: -2.5,-19.5
parent: 2
type: Transform
- - uid: 28759
+ - uid: 28785
components:
- rot: 1.5707963267948966 rad
pos: 7.5,-10.5
parent: 2
type: Transform
- - uid: 28760
+ - uid: 28786
components:
- rot: 3.141592653589793 rad
pos: -10.5,-49.5
parent: 2
type: Transform
- - uid: 28761
+ - uid: 28787
components:
- rot: 3.141592653589793 rad
pos: -11.5,-44.5
parent: 2
type: Transform
- - uid: 28762
+ - uid: 28788
components:
- rot: 3.141592653589793 rad
pos: -10.5,-50.5
parent: 2
type: Transform
- - uid: 28763
+ - uid: 28789
components:
- rot: 3.141592653589793 rad
pos: 23.5,15.5
parent: 2
type: Transform
- - uid: 28764
+ - uid: 28790
components:
- rot: 3.141592653589793 rad
pos: 19.5,10.5
parent: 2
type: Transform
- - uid: 28765
+ - uid: 28791
components:
- pos: 16.5,-13.5
parent: 2
type: Transform
- - uid: 28766
+ - uid: 28792
components:
- pos: 7.5,-12.5
parent: 2
type: Transform
- - uid: 28767
+ - uid: 28793
components:
- pos: -32.5,-69.5
parent: 2
type: Transform
- - uid: 28768
+ - uid: 28794
components:
- pos: -32.5,-72.5
parent: 2
type: Transform
- - uid: 28769
+ - uid: 28795
components:
- pos: 18.5,-44.5
parent: 2
type: Transform
- - uid: 28770
+ - uid: 28796
components:
- pos: 42.5,-52.5
parent: 2
type: Transform
- - uid: 28771
+ - uid: 28797
components:
- rot: -1.5707963267948966 rad
pos: -9.5,57.5
parent: 2
type: Transform
- - uid: 28772
+ - uid: 28798
components:
- pos: 38.5,-27.5
parent: 2
type: Transform
- - uid: 28773
+ - uid: 28799
components:
- pos: 37.5,-28.5
parent: 2
type: Transform
- - uid: 28774
+ - uid: 28800
components:
- pos: 0.5,-72.5
parent: 2
type: Transform
- - uid: 28775
+ - uid: 28801
components:
- pos: -9.5,-17.5
parent: 2
type: Transform
- - uid: 28776
+ - uid: 28802
components:
- rot: 3.141592653589793 rad
pos: 16.5,-51.5
parent: 2
type: Transform
- - uid: 28777
+ - uid: 28803
components:
- pos: -9.5,-18.5
parent: 2
type: Transform
- - uid: 28778
+ - uid: 28804
components:
- rot: -1.5707963267948966 rad
pos: -10.5,-76.5
parent: 2
type: Transform
- - uid: 28779
+ - uid: 28805
components:
- rot: -1.5707963267948966 rad
pos: 19.5,19.5
parent: 2
type: Transform
- - uid: 28780
+ - uid: 28806
components:
- pos: 42.5,-56.5
parent: 2
type: Transform
- - uid: 28781
+ - uid: 28807
components:
- pos: -17.5,-38.5
parent: 2
type: Transform
- - uid: 28782
+ - uid: 28808
components:
- rot: -1.5707963267948966 rad
pos: 20.5,19.5
parent: 2
type: Transform
- - uid: 28783
+ - uid: 28809
components:
- pos: 1.5,-75.5
parent: 2
type: Transform
- - uid: 28784
+ - uid: 28810
components:
- pos: 1.5,-73.5
parent: 2
type: Transform
- - uid: 28785
+ - uid: 28811
components:
- pos: 7.5,-28.5
parent: 2
type: Transform
- - uid: 28786
+ - uid: 28812
components:
- pos: -11.5,9.5
parent: 2
type: Transform
- - uid: 28787
+ - uid: 28813
components:
- pos: -30.5,-76.5
parent: 2
type: Transform
- - uid: 28788
+ - uid: 28814
components:
- rot: -1.5707963267948966 rad
pos: -13.5,-20.5
parent: 2
type: Transform
- - uid: 28789
+ - uid: 28815
components:
- pos: 11.5,-65.5
parent: 2
type: Transform
- - uid: 28790
+ - uid: 28816
components:
- pos: 13.5,-63.5
parent: 2
type: Transform
- - uid: 28791
+ - uid: 28817
components:
- pos: 15.5,-56.5
parent: 2
type: Transform
- - uid: 28792
+ - uid: 28818
components:
- pos: 8.5,-63.5
parent: 2
type: Transform
- - uid: 28793
+ - uid: 28819
components:
- pos: 11.5,-62.5
parent: 2
type: Transform
- - uid: 28794
+ - uid: 28820
components:
- pos: 8.5,-57.5
parent: 2
type: Transform
- - uid: 28795
+ - uid: 28821
components:
- pos: 11.5,-60.5
parent: 2
type: Transform
- - uid: 28796
+ - uid: 28822
components:
- pos: 11.5,-59.5
parent: 2
type: Transform
- - uid: 28797
+ - uid: 28823
components:
- pos: 11.5,-58.5
parent: 2
type: Transform
- - uid: 28798
+ - uid: 28824
components:
- pos: 11.5,-57.5
parent: 2
type: Transform
- - uid: 28799
+ - uid: 28825
components:
- pos: 10.5,-57.5
parent: 2
type: Transform
- - uid: 28800
+ - uid: 28826
components:
- pos: 9.5,-57.5
parent: 2
type: Transform
- - uid: 28801
+ - uid: 28827
components:
- rot: -1.5707963267948966 rad
pos: -7.5,-69.5
parent: 2
type: Transform
- - uid: 28802
+ - uid: 28828
components:
- rot: -1.5707963267948966 rad
pos: -9.5,-70.5
parent: 2
type: Transform
- - uid: 28803
+ - uid: 28829
components:
- rot: -1.5707963267948966 rad
pos: -12.5,-68.5
parent: 2
type: Transform
- - uid: 28804
+ - uid: 28830
components:
- rot: -1.5707963267948966 rad
pos: -13.5,-68.5
parent: 2
type: Transform
- - uid: 28805
+ - uid: 28831
components:
- rot: -1.5707963267948966 rad
pos: -16.5,-68.5
parent: 2
type: Transform
- - uid: 28806
+ - uid: 28832
components:
- rot: -1.5707963267948966 rad
pos: -17.5,-67.5
parent: 2
type: Transform
- - uid: 28807
+ - uid: 28833
components:
- rot: -1.5707963267948966 rad
pos: -10.5,-67.5
parent: 2
type: Transform
- - uid: 28808
+ - uid: 28834
components:
- rot: -1.5707963267948966 rad
pos: -9.5,-67.5
parent: 2
type: Transform
- - uid: 28809
+ - uid: 28835
components:
- rot: -1.5707963267948966 rad
pos: -6.5,-67.5
parent: 2
type: Transform
- - uid: 28810
+ - uid: 28836
components:
- pos: 1.5,-62.5
parent: 2
type: Transform
- - uid: 28811
+ - uid: 28837
components:
- pos: 1.5,-65.5
parent: 2
type: Transform
- - uid: 28812
+ - uid: 28838
components:
- pos: -1.5,-62.5
parent: 2
type: Transform
- - uid: 28813
+ - uid: 28839
components:
- pos: -17.5,-65.5
parent: 2
type: Transform
- - uid: 28814
+ - uid: 28840
components:
- pos: -7.5,-62.5
parent: 2
type: Transform
- - uid: 28815
+ - uid: 28841
components:
- pos: 12.5,-50.5
parent: 2
type: Transform
- - uid: 28816
+ - uid: 28842
components:
- rot: 1.5707963267948966 rad
pos: -13.5,-55.5
parent: 2
type: Transform
- - uid: 28817
+ - uid: 28843
components:
- rot: 1.5707963267948966 rad
pos: 30.5,-44.5
parent: 2
type: Transform
- - uid: 28818
+ - uid: 28844
components:
- pos: -23.5,-7.5
parent: 2
type: Transform
- - uid: 28819
+ - uid: 28845
components:
- pos: -21.5,-7.5
parent: 2
type: Transform
- - uid: 28820
+ - uid: 28846
components:
- pos: -26.5,-7.5
parent: 2
type: Transform
- - uid: 28821
+ - uid: 28847
components:
- pos: -16.5,-7.5
parent: 2
type: Transform
- - uid: 28822
+ - uid: 28848
components:
- pos: -14.5,-7.5
parent: 2
type: Transform
- - uid: 28823
+ - uid: 28849
components:
- pos: -12.5,-7.5
parent: 2
type: Transform
- - uid: 28824
+ - uid: 28850
components:
- pos: -11.5,-5.5
parent: 2
type: Transform
- - uid: 28825
+ - uid: 28851
components:
- pos: -11.5,-7.5
parent: 2
type: Transform
- - uid: 28826
+ - uid: 28852
components:
- rot: 3.141592653589793 rad
pos: -17.5,9.5
parent: 2
type: Transform
- - uid: 28827
+ - uid: 28853
components:
- rot: 3.141592653589793 rad
pos: 23.5,-14.5
parent: 2
type: Transform
- - uid: 28828
+ - uid: 28854
components:
- rot: 3.141592653589793 rad
pos: 23.5,-13.5
parent: 2
type: Transform
- - uid: 28829
+ - uid: 28855
components:
- rot: 3.141592653589793 rad
pos: 17.5,-15.5
parent: 2
type: Transform
- - uid: 28830
+ - uid: 28856
components:
- rot: 3.141592653589793 rad
pos: 16.5,-15.5
parent: 2
type: Transform
- - uid: 28831
+ - uid: 28857
components:
- rot: 3.141592653589793 rad
pos: 22.5,-7.5
parent: 2
type: Transform
- - uid: 28832
+ - uid: 28858
components:
- rot: 3.141592653589793 rad
pos: 23.5,-9.5
parent: 2
type: Transform
- - uid: 28833
+ - uid: 28859
components:
- rot: -1.5707963267948966 rad
pos: 19.5,22.5
parent: 2
type: Transform
- - uid: 28834
+ - uid: 28860
components:
- pos: 37.5,-31.5
parent: 2
type: Transform
- - uid: 28835
+ - uid: 28861
components:
- pos: 28.5,-3.5
parent: 2
type: Transform
- - uid: 28836
+ - uid: 28862
components:
- pos: -7.5,-34.5
parent: 2
type: Transform
- - uid: 28837
+ - uid: 28863
components:
- pos: -20.5,-74.5
parent: 2
type: Transform
- - uid: 28838
+ - uid: 28864
components:
- rot: -1.5707963267948966 rad
pos: -17.5,-51.5
parent: 2
type: Transform
- - uid: 28839
+ - uid: 28865
components:
- pos: 41.5,-52.5
parent: 2
type: Transform
- - uid: 28840
+ - uid: 28866
components:
- pos: 13.5,-52.5
parent: 2
type: Transform
- - uid: 28841
+ - uid: 28867
components:
- rot: -1.5707963267948966 rad
pos: 37.5,-37.5
parent: 2
type: Transform
- - uid: 28842
+ - uid: 28868
components:
- pos: 17.5,-28.5
parent: 2
type: Transform
- - uid: 28843
+ - uid: 28869
components:
- pos: -12.5,-70.5
parent: 2
type: Transform
- - uid: 28844
+ - uid: 28870
components:
- pos: -26.5,-70.5
parent: 2
type: Transform
- - uid: 28845
+ - uid: 28871
components:
- pos: -24.5,-68.5
parent: 2
type: Transform
- - uid: 28846
+ - uid: 28872
components:
- pos: 7.5,-44.5
parent: 2
type: Transform
- - uid: 28847
+ - uid: 28873
components:
- rot: -1.5707963267948966 rad
pos: 37.5,-34.5
parent: 2
type: Transform
- - uid: 28848
+ - uid: 28874
components:
- pos: -6.5,-14.5
parent: 2
type: Transform
- - uid: 28849
+ - uid: 28875
components:
- pos: -6.5,-28.5
parent: 2
type: Transform
- - uid: 28850
+ - uid: 28876
components:
- pos: -22.5,-19.5
parent: 2
type: Transform
- - uid: 28851
+ - uid: 28877
components:
- pos: -21.5,-19.5
parent: 2
type: Transform
- - uid: 28852
+ - uid: 28878
components:
- pos: 37.5,-57.5
parent: 2
type: Transform
- - uid: 28853
- components:
- - rot: -1.5707963267948966 rad
- pos: 8.5,-45.5
- parent: 2
- type: Transform
- - uid: 28854
+ - uid: 28879
components:
- pos: 5.5,-12.5
parent: 2
type: Transform
- - uid: 28855
+ - uid: 28880
components:
- pos: -1.5,5.5
parent: 2
type: Transform
- - uid: 28856
+ - uid: 28881
components:
- rot: 1.5707963267948966 rad
pos: -15.5,-28.5
parent: 2
type: Transform
- - uid: 28857
+ - uid: 28882
components:
- rot: -1.5707963267948966 rad
pos: 9.5,-3.5
parent: 2
type: Transform
- - uid: 28858
+ - uid: 28883
components:
- rot: 1.5707963267948966 rad
pos: -12.5,-20.5
parent: 2
type: Transform
- - uid: 28859
- components:
- - rot: -1.5707963267948966 rad
- pos: 8.5,-47.5
- parent: 2
- type: Transform
- - uid: 28860
+ - uid: 28884
components:
- pos: -3.5,-72.5
parent: 2
type: Transform
- - uid: 28861
+ - uid: 28885
components:
- pos: -0.5,-72.5
parent: 2
type: Transform
- - uid: 28862
+ - uid: 28886
components:
- pos: -13.5,-28.5
parent: 2
type: Transform
- - uid: 28863
+ - uid: 28887
components:
- pos: -11.5,-6.5
parent: 2
type: Transform
- - uid: 28864
+ - uid: 28888
components:
- rot: -1.5707963267948966 rad
pos: -13.5,35.5
parent: 2
type: Transform
- - uid: 28865
+ - uid: 28889
components:
- pos: 7.5,-13.5
parent: 2
type: Transform
- - uid: 28866
+ - uid: 28890
components:
- rot: -1.5707963267948966 rad
pos: 19.5,21.5
parent: 2
type: Transform
- - uid: 28867
+ - uid: 28891
components:
- pos: 11.5,-48.5
parent: 2
type: Transform
- - uid: 28868
+ - uid: 28892
components:
- rot: 3.141592653589793 rad
pos: -2.5,9.5
parent: 2
type: Transform
- - uid: 28869
- components:
- - pos: 10.5,-48.5
- parent: 2
- type: Transform
- - uid: 28870
+ - uid: 28893
components:
- pos: 7.5,-56.5
parent: 2
type: Transform
- - uid: 28871
+ - uid: 28894
components:
- pos: 7.5,-57.5
parent: 2
type: Transform
- - uid: 28872
+ - uid: 28895
components:
- rot: -1.5707963267948966 rad
pos: 13.5,-7.5
parent: 2
type: Transform
- - uid: 28873
+ - uid: 28896
components:
- rot: -1.5707963267948966 rad
pos: -9.5,14.5
parent: 2
type: Transform
- - uid: 28874
+ - uid: 28897
components:
- pos: -6.5,-3.5
parent: 2
type: Transform
- - uid: 28875
+ - uid: 28898
components:
- pos: -7.5,-3.5
parent: 2
type: Transform
- - uid: 28876
+ - uid: 28899
components:
- pos: -8.5,-3.5
parent: 2
type: Transform
- - uid: 28877
+ - uid: 28900
components:
- pos: -6.5,-2.5
parent: 2
type: Transform
- - uid: 28878
+ - uid: 28901
components:
- rot: 3.141592653589793 rad
pos: 2.5,-51.5
parent: 2
type: Transform
- - uid: 28879
+ - uid: 28902
components:
- pos: 13.5,-2.5
parent: 2
type: Transform
- - uid: 28880
- components:
- - pos: 12.5,-47.5
- parent: 2
- type: Transform
- - uid: 28881
+ - uid: 28903
components:
- rot: 3.141592653589793 rad
pos: 60.5,14.5
parent: 2
type: Transform
- - uid: 28882
+ - uid: 28904
components:
- rot: 3.141592653589793 rad
pos: 62.5,17.5
parent: 2
type: Transform
- - uid: 28883
+ - uid: 28905
components:
- pos: 15.5,-3.5
parent: 2
type: Transform
- - uid: 28884
+ - uid: 28906
components:
- pos: 12.5,-2.5
parent: 2
type: Transform
- - uid: 28885
+ - uid: 28907
components:
- pos: -11.5,1.5
parent: 2
type: Transform
- - uid: 28886
+ - uid: 28908
components:
- pos: 2.5,-28.5
parent: 2
type: Transform
- - uid: 28887
+ - uid: 28909
components:
- pos: 11.5,-15.5
parent: 2
type: Transform
- - uid: 28888
+ - uid: 28910
components:
- pos: 42.5,-57.5
parent: 2
type: Transform
- - uid: 28889
+ - uid: 28911
components:
- rot: 1.5707963267948966 rad
pos: -4.5,-62.5
parent: 2
type: Transform
- - uid: 28890
+ - uid: 28912
components:
- rot: 3.141592653589793 rad
pos: -12.5,-51.5
parent: 2
type: Transform
- - uid: 28891
+ - uid: 28913
components:
- pos: 40.5,-27.5
parent: 2
type: Transform
- - uid: 28892
+ - uid: 28914
components:
- pos: 13.5,-28.5
parent: 2
type: Transform
- - uid: 28893
+ - uid: 28915
components:
- pos: -21.5,-81.5
parent: 2
type: Transform
- - uid: 28894
+ - uid: 28916
components:
- pos: -4.5,13.5
parent: 2
type: Transform
- - uid: 28895
+ - uid: 28917
components:
- rot: 3.141592653589793 rad
pos: 23.5,10.5
parent: 2
type: Transform
- - uid: 28896
+ - uid: 28918
components:
- rot: 3.141592653589793 rad
pos: 22.5,9.5
parent: 2
type: Transform
- - uid: 28897
+ - uid: 28919
components:
- rot: 3.141592653589793 rad
pos: 60.5,17.5
parent: 2
type: Transform
- - uid: 28898
+ - uid: 28920
components:
- pos: -6.5,-6.5
parent: 2
type: Transform
- - uid: 28899
+ - uid: 28921
components:
- pos: 15.5,-6.5
parent: 2
type: Transform
- - uid: 28900
+ - uid: 28922
components:
- pos: 15.5,-2.5
parent: 2
type: Transform
- - uid: 28901
+ - uid: 28923
components:
- rot: 1.5707963267948966 rad
pos: 27.5,-53.5
parent: 2
type: Transform
- - uid: 28902
+ - uid: 28924
components:
- pos: 27.5,-56.5
parent: 2
type: Transform
- - uid: 28903
+ - uid: 28925
components:
- pos: 27.5,-50.5
parent: 2
type: Transform
- - uid: 28904
+ - uid: 28926
components:
- pos: 23.5,-50.5
parent: 2
type: Transform
- - uid: 28905
+ - uid: 28927
components:
- pos: 23.5,-54.5
parent: 2
type: Transform
- - uid: 28906
+ - uid: 28928
components:
- pos: 23.5,-52.5
parent: 2
type: Transform
- - uid: 28907
+ - uid: 28929
components:
- pos: 23.5,-51.5
parent: 2
type: Transform
- - uid: 28908
+ - uid: 28930
components:
- pos: 23.5,-49.5
parent: 2
type: Transform
- - uid: 28909
+ - uid: 28931
components:
- rot: 3.141592653589793 rad
pos: 22.5,-51.5
parent: 2
type: Transform
- - uid: 28910
+ - uid: 28932
components:
- pos: -17.5,-31.5
parent: 2
type: Transform
- - uid: 28911
+ - uid: 28933
components:
- rot: -1.5707963267948966 rad
pos: 8.5,-3.5
parent: 2
type: Transform
- - uid: 28912
+ - uid: 28934
components:
- pos: 19.5,-2.5
parent: 2
type: Transform
- - uid: 28913
+ - uid: 28935
components:
- pos: 24.5,5.5
parent: 2
type: Transform
- - uid: 28914
+ - uid: 28936
components:
- pos: 16.5,-7.5
parent: 2
type: Transform
- - uid: 28915
+ - uid: 28937
components:
- pos: -9.5,-16.5
parent: 2
type: Transform
- - uid: 28916
+ - uid: 28938
components:
- pos: 2.5,10.5
parent: 2
type: Transform
- - uid: 28917
+ - uid: 28939
components:
- pos: 14.5,-44.5
parent: 2
type: Transform
- - uid: 28918
+ - uid: 28940
components:
- rot: 3.141592653589793 rad
pos: 33.5,-7.5
parent: 2
type: Transform
- - uid: 28919
+ - uid: 28941
components:
- rot: 3.141592653589793 rad
pos: 35.5,-7.5
parent: 2
type: Transform
- - uid: 28920
+ - uid: 28942
components:
- rot: 3.141592653589793 rad
pos: 31.5,-7.5
parent: 2
type: Transform
- - uid: 28921
+ - uid: 28943
components:
- rot: 3.141592653589793 rad
pos: 20.5,-7.5
parent: 2
type: Transform
- - uid: 28922
+ - uid: 28944
components:
- rot: 3.141592653589793 rad
pos: 22.5,-15.5
parent: 2
type: Transform
- - uid: 28923
+ - uid: 28945
components:
- rot: 3.141592653589793 rad
pos: 37.5,-16.5
parent: 2
type: Transform
- - uid: 28924
+ - uid: 28946
components:
- rot: 3.141592653589793 rad
pos: 37.5,-15.5
parent: 2
type: Transform
- - uid: 28925
+ - uid: 28947
components:
- rot: 3.141592653589793 rad
pos: 36.5,-15.5
parent: 2
type: Transform
- - uid: 28926
+ - uid: 28948
components:
- pos: 59.5,0.5
parent: 2
type: Transform
- - uid: 28927
+ - uid: 28949
components:
- rot: 3.141592653589793 rad
pos: -12.5,9.5
parent: 2
type: Transform
- - uid: 28928
+ - uid: 28950
components:
- pos: -27.5,10.5
parent: 2
type: Transform
- - uid: 28929
+ - uid: 28951
components:
- pos: -21.5,9.5
parent: 2
type: Transform
- - uid: 28930
+ - uid: 28952
components:
- pos: -14.5,-32.5
parent: 2
type: Transform
- - uid: 28931
+ - uid: 28953
components:
- pos: -21.5,14.5
parent: 2
type: Transform
- - uid: 28932
+ - uid: 28954
components:
- pos: -10.5,-7.5
parent: 2
type: Transform
- - uid: 28933
+ - uid: 28955
components:
- pos: -11.5,-4.5
parent: 2
type: Transform
- - uid: 28934
+ - uid: 28956
components:
- pos: -15.5,-7.5
parent: 2
type: Transform
- - uid: 28935
+ - uid: 28957
components:
- pos: -17.5,-7.5
parent: 2
type: Transform
- - uid: 28936
+ - uid: 28958
components:
- pos: -21.5,-8.5
parent: 2
type: Transform
- - uid: 28937
+ - uid: 28959
components:
- pos: -22.5,-7.5
parent: 2
type: Transform
- - uid: 28938
+ - uid: 28960
components:
- pos: -24.5,-7.5
parent: 2
type: Transform
- - uid: 28939
+ - uid: 28961
components:
- pos: -17.5,-8.5
parent: 2
type: Transform
- - uid: 28940
+ - uid: 28962
components:
- rot: -1.5707963267948966 rad
pos: -23.5,-18.5
parent: 2
type: Transform
- - uid: 28941
+ - uid: 28963
components:
- rot: 3.141592653589793 rad
pos: 23.5,-15.5
parent: 2
type: Transform
- - uid: 28942
+ - uid: 28964
components:
- rot: 3.141592653589793 rad
pos: 23.5,-10.5
parent: 2
type: Transform
- - uid: 28943
+ - uid: 28965
components:
- pos: 19.5,-3.5
parent: 2
type: Transform
- - uid: 28944
+ - uid: 28966
components:
- rot: -1.5707963267948966 rad
pos: 13.5,-9.5
parent: 2
type: Transform
- - uid: 28945
+ - uid: 28967
components:
- pos: 1.5,10.5
parent: 2
type: Transform
- - uid: 28946
+ - uid: 28968
components:
- pos: -11.5,-2.5
parent: 2
type: Transform
- - uid: 28947
+ - uid: 28969
components:
- pos: -6.5,-7.5
parent: 2
type: Transform
- - uid: 28948
+ - uid: 28970
components:
- pos: -8.5,-2.5
parent: 2
type: Transform
- - uid: 28949
+ - uid: 28971
components:
- pos: -17.5,-9.5
parent: 2
type: Transform
- - uid: 28950
+ - uid: 28972
components:
- pos: -17.5,-10.5
parent: 2
type: Transform
- - uid: 28951
+ - uid: 28973
components:
- pos: -6.5,-17.5
parent: 2
type: Transform
- - uid: 28952
+ - uid: 28974
components:
- rot: 1.5707963267948966 rad
pos: -6.5,-20.5
parent: 2
type: Transform
- - uid: 28953
+ - uid: 28975
components:
- pos: 35.5,-6.5
parent: 2
type: Transform
- - uid: 28954
+ - uid: 28976
components:
- pos: 45.5,-0.5
parent: 2
type: Transform
- - uid: 28955
+ - uid: 28977
components:
- pos: -2.5,-15.5
parent: 2
type: Transform
- - uid: 28956
+ - uid: 28978
components:
- pos: -1.5,-15.5
parent: 2
type: Transform
- - uid: 28957
+ - uid: 28979
components:
- pos: -6.5,-4.5
parent: 2
type: Transform
- - uid: 28958
+ - uid: 28980
components:
- rot: 1.5707963267948966 rad
pos: -6.5,-23.5
parent: 2
type: Transform
- - uid: 28959
+ - uid: 28981
components:
- rot: 1.5707963267948966 rad
pos: -6.5,-24.5
parent: 2
type: Transform
- - uid: 28960
+ - uid: 28982
components:
- rot: 1.5707963267948966 rad
pos: -10.5,-24.5
parent: 2
type: Transform
- - uid: 28961
+ - uid: 28983
components:
- rot: 3.141592653589793 rad
pos: 1.5,-44.5
parent: 2
type: Transform
- - uid: 28962
+ - uid: 28984
components:
- rot: 3.141592653589793 rad
pos: -10.5,-45.5
parent: 2
type: Transform
- - uid: 28963
+ - uid: 28985
components:
- rot: 1.5707963267948966 rad
pos: 29.5,-44.5
parent: 2
type: Transform
- - uid: 28964
+ - uid: 28986
components:
- pos: -26.5,-8.5
parent: 2
type: Transform
- - uid: 28965
+ - uid: 28987
components:
- rot: -1.5707963267948966 rad
pos: 8.5,-44.5
parent: 2
type: Transform
- - uid: 28966
+ - uid: 28988
components:
- pos: -8.5,-28.5
parent: 2
type: Transform
- - uid: 28967
+ - uid: 28989
components:
- rot: 3.141592653589793 rad
pos: 18.5,8.5
parent: 2
type: Transform
- - uid: 28968
+ - uid: 28990
components:
- pos: 16.5,-44.5
parent: 2
type: Transform
- - uid: 28969
+ - uid: 28991
components:
- - pos: 16.5,-46.5
+ - rot: -1.5707963267948966 rad
+ pos: 9.5,-44.5
parent: 2
type: Transform
- - uid: 28970
+ - uid: 28992
components:
- pos: 12.5,-28.5
parent: 2
type: Transform
- - uid: 28971
+ - uid: 28993
components:
- pos: 11.5,-28.5
parent: 2
type: Transform
- - uid: 28972
+ - uid: 28994
components:
- pos: 6.5,-28.5
parent: 2
type: Transform
- - uid: 28973
- components:
- - pos: 12.5,-46.5
- parent: 2
- type: Transform
- - uid: 28974
- components:
- - pos: 12.5,-45.5
- parent: 2
- type: Transform
- - uid: 28975
+ - uid: 28995
components:
- pos: -9.5,-28.5
parent: 2
type: Transform
- - uid: 28976
+ - uid: 28996
components:
- pos: 3.5,-12.5
parent: 2
type: Transform
- - uid: 28977
+ - uid: 28997
components:
- pos: 9.5,-48.5
parent: 2
type: Transform
- - uid: 28978
+ - uid: 28998
components:
- pos: 2.5,-44.5
parent: 2
type: Transform
- - uid: 28979
+ - uid: 28999
components:
- pos: 8.5,-48.5
parent: 2
type: Transform
- - uid: 28980
+ - uid: 29000
components:
- rot: 1.5707963267948966 rad
pos: -13.5,-24.5
parent: 2
type: Transform
- - uid: 28981
+ - uid: 29001
components:
- pos: -10.5,-34.5
parent: 2
type: Transform
- - uid: 28982
+ - uid: 29002
components:
- pos: 35.5,-44.5
parent: 2
type: Transform
- - uid: 28983
+ - uid: 29003
components:
- pos: 41.5,-49.5
parent: 2
type: Transform
- - uid: 28984
+ - uid: 29004
components:
- pos: 39.5,-47.5
parent: 2
type: Transform
- - uid: 28985
+ - uid: 29005
components:
- pos: 39.5,-44.5
parent: 2
type: Transform
- - uid: 28986
+ - uid: 29006
components:
- pos: 41.5,-48.5
parent: 2
type: Transform
- - uid: 28987
+ - uid: 29007
components:
- pos: -3.5,-51.5
parent: 2
type: Transform
- - uid: 28988
+ - uid: 29008
components:
- pos: -5.5,-51.5
parent: 2
type: Transform
- - uid: 28989
+ - uid: 29009
components:
- pos: -6.5,-51.5
parent: 2
type: Transform
- - uid: 28990
+ - uid: 29010
components:
- pos: -2.5,-50.5
parent: 2
type: Transform
- - uid: 28991
+ - uid: 29011
components:
- rot: 3.141592653589793 rad
pos: 1.5,-45.5
parent: 2
type: Transform
- - uid: 28992
+ - uid: 29012
components:
- pos: 7.5,-54.5
parent: 2
type: Transform
- - uid: 28993
+ - uid: 29013
components:
- rot: -1.5707963267948966 rad
pos: -14.5,-40.5
parent: 2
type: Transform
- - uid: 28994
+ - uid: 29014
components:
- rot: -1.5707963267948966 rad
pos: -12.5,-40.5
parent: 2
type: Transform
- - uid: 28995
+ - uid: 29015
components:
- rot: 1.5707963267948966 rad
pos: -4.5,-58.5
parent: 2
type: Transform
- - uid: 28996
+ - uid: 29016
components:
- rot: 1.5707963267948966 rad
pos: -1.5,-58.5
parent: 2
type: Transform
- - uid: 28997
+ - uid: 29017
components:
- rot: 1.5707963267948966 rad
pos: -7.5,-58.5
parent: 2
type: Transform
- - uid: 28998
+ - uid: 29018
components:
- rot: 1.5707963267948966 rad
pos: 4.5,-55.5
parent: 2
type: Transform
- - uid: 28999
+ - uid: 29019
components:
- rot: 1.5707963267948966 rad
pos: -10.5,-55.5
parent: 2
type: Transform
- - uid: 29000
+ - uid: 29020
components:
- rot: 1.5707963267948966 rad
pos: -13.5,-58.5
parent: 2
type: Transform
- - uid: 29001
+ - uid: 29021
components:
- rot: 1.5707963267948966 rad
pos: 4.5,-58.5
parent: 2
type: Transform
- - uid: 29002
+ - uid: 29022
components:
- rot: 1.5707963267948966 rad
pos: -1.5,-55.5
parent: 2
type: Transform
- - uid: 29003
+ - uid: 29023
components:
- rot: 1.5707963267948966 rad
pos: -4.5,-55.5
parent: 2
type: Transform
- - uid: 29004
+ - uid: 29024
components:
- rot: 1.5707963267948966 rad
pos: 1.5,-58.5
parent: 2
type: Transform
- - uid: 29005
+ - uid: 29025
components:
- rot: 1.5707963267948966 rad
pos: -7.5,-55.5
parent: 2
type: Transform
- - uid: 29006
+ - uid: 29026
components:
- rot: 3.141592653589793 rad
pos: -11.5,-51.5
parent: 2
type: Transform
- - uid: 29007
+ - uid: 29027
components:
- rot: 3.141592653589793 rad
pos: -14.5,-51.5
parent: 2
type: Transform
- - uid: 29008
+ - uid: 29028
components:
- rot: 3.141592653589793 rad
pos: -15.5,-51.5
parent: 2
type: Transform
- - uid: 29009
+ - uid: 29029
components:
- pos: 9.5,-51.5
parent: 2
type: Transform
- - uid: 29010
+ - uid: 29030
components:
- pos: 7.5,-52.5
parent: 2
type: Transform
- - uid: 29011
+ - uid: 29031
components:
- pos: 9.5,-53.5
parent: 2
type: Transform
- - uid: 29012
+ - uid: 29032
components:
- pos: 11.5,-50.5
parent: 2
type: Transform
- - uid: 29013
+ - uid: 29033
components:
- pos: -17.5,-66.5
parent: 2
type: Transform
- - uid: 29014
+ - uid: 29034
components:
- pos: -17.5,-62.5
parent: 2
type: Transform
- - uid: 29015
+ - uid: 29035
components:
- pos: -16.5,-62.5
parent: 2
type: Transform
- - uid: 29016
+ - uid: 29036
components:
- pos: -15.5,-62.5
parent: 2
type: Transform
- - uid: 29017
+ - uid: 29037
components:
- pos: -14.5,-62.5
parent: 2
type: Transform
- - uid: 29018
+ - uid: 29038
components:
- pos: -12.5,-62.5
parent: 2
type: Transform
- - uid: 29019
+ - uid: 29039
components:
- pos: -11.5,-62.5
parent: 2
type: Transform
- - uid: 29020
+ - uid: 29040
components:
- pos: 1.5,-66.5
parent: 2
type: Transform
- - uid: 29021
+ - uid: 29041
components:
- pos: 1.5,-68.5
parent: 2
type: Transform
- - uid: 29022
+ - uid: 29042
components:
- pos: 0.5,-68.5
parent: 2
type: Transform
- - uid: 29023
+ - uid: 29043
components:
- pos: -0.5,-68.5
parent: 2
type: Transform
- - uid: 29024
+ - uid: 29044
components:
- pos: -2.5,-68.5
parent: 2
type: Transform
- - uid: 29025
+ - uid: 29045
components:
- pos: -3.5,-68.5
parent: 2
type: Transform
- - uid: 29026
+ - uid: 29046
components:
- pos: -4.5,-68.5
parent: 2
type: Transform
- - uid: 29027
+ - uid: 29047
components:
- pos: -4.5,-67.5
parent: 2
type: Transform
- - uid: 29028
+ - uid: 29048
components:
- pos: 5.5,-62.5
parent: 2
type: Transform
- - uid: 29029
+ - uid: 29049
components:
- pos: 5.5,-64.5
parent: 2
type: Transform
- - uid: 29030
+ - uid: 29050
components:
- pos: 5.5,-65.5
parent: 2
type: Transform
- - uid: 29031
+ - uid: 29051
components:
- pos: 5.5,-66.5
parent: 2
type: Transform
- - uid: 29032
+ - uid: 29052
components:
- pos: 4.5,-66.5
parent: 2
type: Transform
- - uid: 29033
+ - uid: 29053
components:
- pos: 3.5,-66.5
parent: 2
type: Transform
- - uid: 29034
+ - uid: 29054
components:
- pos: 2.5,-66.5
parent: 2
type: Transform
- - uid: 29035
+ - uid: 29055
components:
- rot: -1.5707963267948966 rad
pos: -11.5,-68.5
parent: 2
type: Transform
- - uid: 29036
+ - uid: 29056
components:
- rot: -1.5707963267948966 rad
pos: -7.5,-68.5
parent: 2
type: Transform
- - uid: 29037
+ - uid: 29057
components:
- pos: 56.5,-32.5
parent: 2
type: Transform
- - uid: 29038
+ - uid: 29058
components:
- pos: 11.5,-54.5
parent: 2
type: Transform
- - uid: 29039
+ - uid: 29059
components:
- pos: 10.5,-54.5
parent: 2
type: Transform
- - uid: 29040
+ - uid: 29060
components:
- pos: -21.5,-62.5
parent: 2
type: Transform
- - uid: 29041
+ - uid: 29061
components:
- pos: -20.5,-62.5
parent: 2
type: Transform
- - uid: 29042
+ - uid: 29062
components:
- pos: -18.5,-62.5
parent: 2
type: Transform
- - uid: 29043
+ - uid: 29063
components:
- pos: 12.5,-54.5
parent: 2
type: Transform
- - uid: 29044
+ - uid: 29064
components:
- pos: 14.5,-56.5
parent: 2
type: Transform
- - uid: 29045
+ - uid: 29065
components:
- pos: 14.5,-54.5
parent: 2
type: Transform
- - uid: 29046
+ - uid: 29066
components:
- pos: 13.5,-60.5
parent: 2
type: Transform
- - uid: 29047
+ - uid: 29067
components:
- pos: 13.5,-61.5
parent: 2
type: Transform
- - uid: 29048
+ - uid: 29068
components:
- pos: 13.5,-62.5
parent: 2
type: Transform
- - uid: 29049
+ - uid: 29069
components:
- pos: 13.5,-64.5
parent: 2
type: Transform
- - uid: 29050
+ - uid: 29070
components:
- pos: 12.5,-65.5
parent: 2
type: Transform
- - uid: 29051
+ - uid: 29071
components:
- pos: 10.5,-65.5
parent: 2
type: Transform
- - uid: 29052
+ - uid: 29072
components:
- pos: 10.5,-66.5
parent: 2
type: Transform
- - uid: 29053
+ - uid: 29073
components:
- pos: -8.5,-20.5
parent: 2
type: Transform
- - uid: 29054
+ - uid: 29074
components:
- rot: -1.5707963267948966 rad
pos: -10.5,-20.5
parent: 2
type: Transform
- - uid: 29055
+ - uid: 29075
components:
- rot: -1.5707963267948966 rad
pos: -9.5,-20.5
parent: 2
type: Transform
- - uid: 29056
+ - uid: 29076
components:
- rot: -1.5707963267948966 rad
pos: -7.5,-20.5
parent: 2
type: Transform
- - uid: 29057
+ - uid: 29077
components:
- rot: -1.5707963267948966 rad
pos: -14.5,-21.5
parent: 2
type: Transform
- - uid: 29058
+ - uid: 29078
components:
- rot: -1.5707963267948966 rad
pos: -14.5,-23.5
parent: 2
type: Transform
- - uid: 29059
+ - uid: 29079
components:
- rot: -1.5707963267948966 rad
pos: -14.5,-24.5
parent: 2
type: Transform
- - uid: 29060
+ - uid: 29080
components:
- pos: 38.5,-52.5
parent: 2
type: Transform
- - uid: 29061
+ - uid: 29081
components:
- pos: 37.5,-52.5
parent: 2
type: Transform
- - uid: 29062
+ - uid: 29082
components:
- pos: -7.5,-16.5
parent: 2
type: Transform
- - uid: 29063
+ - uid: 29083
components:
- rot: -1.5707963267948966 rad
pos: -14.5,-13.5
parent: 2
type: Transform
- - uid: 29064
+ - uid: 29084
components:
- rot: -1.5707963267948966 rad
pos: -15.5,-44.5
parent: 2
type: Transform
- - uid: 29065
+ - uid: 29085
components:
- pos: 17.5,-30.5
parent: 2
type: Transform
- - uid: 29066
+ - uid: 29086
components:
- pos: -21.5,-63.5
parent: 2
type: Transform
- - uid: 29067
+ - uid: 29087
components:
- pos: -21.5,-65.5
parent: 2
type: Transform
- - uid: 29068
+ - uid: 29088
components:
- pos: -26.5,-68.5
parent: 2
type: Transform
- - uid: 29069
+ - uid: 29089
components:
- pos: -26.5,-74.5
parent: 2
type: Transform
- - uid: 29070
+ - uid: 29090
components:
- pos: -25.5,-74.5
parent: 2
type: Transform
- - uid: 29071
+ - uid: 29091
components:
- pos: -15.5,-70.5
parent: 2
type: Transform
- - uid: 29072
+ - uid: 29092
components:
- pos: -16.5,-70.5
parent: 2
type: Transform
- - uid: 29073
+ - uid: 29093
components:
- pos: -16.5,-73.5
parent: 2
type: Transform
- - uid: 29074
+ - uid: 29094
components:
- pos: -21.5,-76.5
parent: 2
type: Transform
- - uid: 29075
+ - uid: 29095
components:
- pos: -6.5,-72.5
parent: 2
type: Transform
- - uid: 29076
+ - uid: 29096
components:
- pos: 36.5,-49.5
parent: 2
type: Transform
- - uid: 29077
+ - uid: 29097
components:
- pos: -7.5,-72.5
parent: 2
type: Transform
- - uid: 29078
+ - uid: 29098
components:
- pos: -10.5,-72.5
parent: 2
type: Transform
- - uid: 29079
+ - uid: 29099
components:
- pos: -10.5,-73.5
parent: 2
type: Transform
- - uid: 29080
+ - uid: 29100
components:
- pos: -9.5,-73.5
parent: 2
type: Transform
- - uid: 29081
+ - uid: 29101
components:
- pos: -7.5,-73.5
parent: 2
type: Transform
- - uid: 29082
+ - uid: 29102
components:
- pos: 3.5,-70.5
parent: 2
type: Transform
- - uid: 29083
+ - uid: 29103
components:
- pos: 3.5,-68.5
parent: 2
type: Transform
- - uid: 29084
+ - uid: 29104
components:
- pos: 4.5,-68.5
parent: 2
type: Transform
- - uid: 29085
+ - uid: 29105
components:
- pos: 5.5,-68.5
parent: 2
type: Transform
- - uid: 29086
+ - uid: 29106
components:
- pos: 7.5,-67.5
parent: 2
type: Transform
- - uid: 29087
+ - uid: 29107
components:
- pos: 8.5,-66.5
parent: 2
type: Transform
- - uid: 29088
+ - uid: 29108
components:
- pos: -21.5,-74.5
parent: 2
type: Transform
- - uid: 29089
+ - uid: 29109
components:
- pos: -13.5,-69.5
parent: 2
type: Transform
- - uid: 29090
+ - uid: 29110
components:
- pos: -21.5,-82.5
parent: 2
type: Transform
- - uid: 29091
+ - uid: 29111
components:
- pos: -21.5,-83.5
parent: 2
type: Transform
- - uid: 29092
+ - uid: 29112
components:
- pos: 10.5,-13.5
parent: 2
type: Transform
- - uid: 29093
+ - uid: 29113
components:
- pos: -10.5,-63.5
parent: 2
type: Transform
- - uid: 29094
+ - uid: 29114
components:
- pos: -10.5,-65.5
parent: 2
type: Transform
- - uid: 29095
+ - uid: 29115
components:
- rot: 1.5707963267948966 rad
pos: -4.5,-65.5
parent: 2
type: Transform
- - uid: 29096
+ - uid: 29116
components:
- rot: 1.5707963267948966 rad
pos: -4.5,-66.5
parent: 2
type: Transform
- - uid: 29097
+ - uid: 29117
components:
- pos: 40.5,-52.5
parent: 2
type: Transform
- - uid: 29098
+ - uid: 29118
components:
- rot: 1.5707963267948966 rad
pos: -4.5,-64.5
parent: 2
type: Transform
- - uid: 29099
+ - uid: 29119
components:
- rot: 1.5707963267948966 rad
pos: -4.5,-63.5
parent: 2
type: Transform
- - uid: 29100
+ - uid: 29120
components:
- pos: -6.5,-35.5
parent: 2
type: Transform
- - uid: 29101
+ - uid: 29121
components:
- pos: -13.5,-32.5
parent: 2
type: Transform
- - uid: 29102
+ - uid: 29122
components:
- pos: -25.5,-7.5
parent: 2
type: Transform
- - uid: 29103
+ - uid: 29123
components:
- rot: 3.141592653589793 rad
pos: 21.5,-9.5
parent: 2
type: Transform
- - uid: 29104
+ - uid: 29124
components:
- pos: 12.5,-13.5
parent: 2
type: Transform
- - uid: 29105
+ - uid: 29125
components:
- pos: 3.5,-72.5
parent: 2
type: Transform
- - uid: 29106
+ - uid: 29126
components:
- pos: 10.5,-68.5
parent: 2
type: Transform
- - uid: 29107
+ - uid: 29127
components:
- pos: 7.5,-51.5
parent: 2
type: Transform
- - uid: 29108
+ - uid: 29128
components:
- rot: 3.141592653589793 rad
pos: 16.5,-14.5
parent: 2
type: Transform
- - uid: 29109
+ - uid: 29129
components:
- rot: 1.5707963267948966 rad
pos: 1.5,-55.5
parent: 2
type: Transform
- - uid: 29110
+ - uid: 29130
components:
- rot: 1.5707963267948966 rad
pos: -10.5,-58.5
parent: 2
type: Transform
- - uid: 29111
+ - uid: 29131
components:
- pos: -5.5,9.5
parent: 2
type: Transform
- - uid: 29112
+ - uid: 29132
components:
- rot: -1.5707963267948966 rad
pos: 13.5,-6.5
parent: 2
type: Transform
- - uid: 29113
+ - uid: 29133
components:
- pos: 9.5,-28.5
parent: 2
type: Transform
- - uid: 29114
+ - uid: 29134
components:
- pos: 5.5,-2.5
parent: 2
type: Transform
- - uid: 29115
+ - uid: 29135
components:
- rot: 3.141592653589793 rad
pos: -1.5,13.5
parent: 2
type: Transform
- - uid: 29116
+ - uid: 29136
components:
- pos: -5.5,11.5
parent: 2
type: Transform
- - uid: 29117
+ - uid: 29137
components:
- pos: 17.5,-7.5
parent: 2
type: Transform
- - uid: 29118
+ - uid: 29138
components:
- pos: -9.5,13.5
parent: 2
type: Transform
- - uid: 29119
+ - uid: 29139
components:
- pos: -5.5,12.5
parent: 2
type: Transform
- - uid: 29120
+ - uid: 29140
components:
- pos: -11.5,5.5
parent: 2
type: Transform
- - uid: 29121
+ - uid: 29141
components:
- pos: 13.5,-51.5
parent: 2
type: Transform
- - uid: 29122
+ - uid: 29142
components:
- pos: 24.5,-3.5
parent: 2
type: Transform
- - uid: 29123
+ - uid: 29143
components:
- pos: 15.5,-7.5
parent: 2
type: Transform
- - uid: 29124
+ - uid: 29144
components:
- rot: -1.5707963267948966 rad
pos: 31.5,-0.5
parent: 2
type: Transform
- - uid: 29125
+ - uid: 29145
components:
- pos: 20.5,5.5
parent: 2
type: Transform
- - uid: 29126
+ - uid: 29146
components:
- rot: -1.5707963267948966 rad
pos: 31.5,2.5
parent: 2
type: Transform
- - uid: 29127
+ - uid: 29147
components:
- pos: -1.5,0.5
parent: 2
type: Transform
- - uid: 29128
+ - uid: 29148
components:
- pos: -1.5,1.5
parent: 2
type: Transform
- - uid: 29129
+ - uid: 29149
components:
- pos: 15.5,5.5
parent: 2
type: Transform
- - uid: 29130
+ - uid: 29150
components:
- pos: 30.5,-1.5
parent: 2
type: Transform
- - uid: 29131
+ - uid: 29151
components:
- rot: 3.141592653589793 rad
pos: 23.5,11.5
parent: 2
type: Transform
- - uid: 29132
+ - uid: 29152
components:
- pos: 19.5,4.5
parent: 2
type: Transform
- - uid: 29133
+ - uid: 29153
components:
- pos: -1.5,4.5
parent: 2
type: Transform
- - uid: 29134
+ - uid: 29154
components:
- pos: 14.5,4.5
parent: 2
type: Transform
- - uid: 29135
+ - uid: 29155
components:
- pos: -5.5,4.5
parent: 2
type: Transform
- - uid: 29136
+ - uid: 29156
components:
- pos: 13.5,4.5
parent: 2
type: Transform
- - uid: 29137
+ - uid: 29157
components:
- pos: 7.5,-3.5
parent: 2
type: Transform
- - uid: 29138
+ - uid: 29158
components:
- pos: -13.5,-72.5
parent: 2
type: Transform
- - uid: 29139
+ - uid: 29159
components:
- pos: 19.5,5.5
parent: 2
type: Transform
- - uid: 29140
+ - uid: 29160
components:
- rot: 3.141592653589793 rad
pos: 23.5,14.5
parent: 2
type: Transform
- - uid: 29141
+ - uid: 29161
components:
- pos: -12.5,-28.5
parent: 2
type: Transform
- - uid: 29142
+ - uid: 29162
components:
- pos: 15.5,-4.5
parent: 2
type: Transform
- - uid: 29143
+ - uid: 29163
components:
- pos: 15.5,0.5
parent: 2
type: Transform
- - uid: 29144
+ - uid: 29164
components:
- rot: 3.141592653589793 rad
pos: -1.5,12.5
parent: 2
type: Transform
- - uid: 29145
+ - uid: 29165
components:
- pos: 37.5,-38.5
parent: 2
type: Transform
- - uid: 29146
+ - uid: 29166
components:
- rot: -1.5707963267948966 rad
pos: -12.5,-76.5
parent: 2
type: Transform
- - uid: 29147
+ - uid: 29167
components:
- rot: -1.5707963267948966 rad
pos: -4.5,-76.5
parent: 2
type: Transform
- - uid: 29148
+ - uid: 29168
components:
- rot: -1.5707963267948966 rad
pos: -3.5,-79.5
parent: 2
type: Transform
- - uid: 29149
+ - uid: 29169
components:
- rot: -1.5707963267948966 rad
pos: -2.5,-76.5
parent: 2
type: Transform
- - uid: 29150
+ - uid: 29170
components:
- rot: 1.5707963267948966 rad
pos: 27.5,-52.5
parent: 2
type: Transform
- - uid: 29151
+ - uid: 29171
components:
- pos: 8.5,4.5
parent: 2
type: Transform
- - uid: 29152
+ - uid: 29172
components:
- pos: 37.5,-32.5
parent: 2
type: Transform
- - uid: 29153
+ - uid: 29173
components:
- pos: 39.5,-27.5
parent: 2
type: Transform
- - uid: 29154
+ - uid: 29174
components:
- pos: 39.5,-31.5
parent: 2
type: Transform
- - uid: 29155
+ - uid: 29175
components:
- rot: -1.5707963267948966 rad
pos: -17.5,-40.5
parent: 2
type: Transform
- - uid: 29156
+ - uid: 29176
components:
- pos: -17.5,-39.5
parent: 2
type: Transform
- - uid: 29157
+ - uid: 29177
components:
- rot: -1.5707963267948966 rad
pos: -3.5,-77.5
parent: 2
type: Transform
- - uid: 29158
+ - uid: 29178
components:
- rot: -1.5707963267948966 rad
pos: -2.5,-81.5
parent: 2
type: Transform
- - uid: 29159
+ - uid: 29179
components:
- rot: -1.5707963267948966 rad
pos: -2.5,-80.5
parent: 2
type: Transform
- - uid: 29160
+ - uid: 29180
components:
- rot: -1.5707963267948966 rad
pos: -3.5,-80.5
parent: 2
type: Transform
- - uid: 29161
+ - uid: 29181
components:
- rot: -1.5707963267948966 rad
pos: -6.5,-76.5
parent: 2
type: Transform
- - uid: 29162
+ - uid: 29182
components:
- pos: 7.5,4.5
parent: 2
type: Transform
- - uid: 29163
+ - uid: 29183
components:
- rot: 1.5707963267948966 rad
pos: -6.5,-22.5
parent: 2
type: Transform
- - uid: 29164
+ - uid: 29184
components:
- pos: 38.5,-31.5
parent: 2
type: Transform
- - uid: 29165
+ - uid: 29185
components:
- pos: -6.5,-18.5
parent: 2
type: Transform
- - uid: 29166
+ - uid: 29186
components:
- pos: -6.5,-15.5
parent: 2
type: Transform
- - uid: 29167
+ - uid: 29187
components:
- rot: 3.141592653589793 rad
pos: -10.5,-47.5
parent: 2
type: Transform
- - uid: 29168
+ - uid: 29188
components:
- rot: 1.5707963267948966 rad
pos: -7.5,-24.5
parent: 2
type: Transform
- - uid: 29169
+ - uid: 29189
components:
- pos: -4.5,9.5
parent: 2
type: Transform
- - uid: 29170
+ - uid: 29190
components:
- rot: 1.5707963267948966 rad
pos: 28.5,-44.5
parent: 2
type: Transform
- - uid: 29171
+ - uid: 29191
components:
- pos: -21.5,-15.5
parent: 2
type: Transform
- - uid: 29172
+ - uid: 29192
components:
- rot: -1.5707963267948966 rad
pos: -27.5,-18.5
parent: 2
type: Transform
- - uid: 29173
+ - uid: 29193
components:
- pos: -26.5,-15.5
parent: 2
type: Transform
- - uid: 29174
+ - uid: 29194
components:
- pos: 19.5,23.5
parent: 2
type: Transform
- - uid: 29175
+ - uid: 29195
components:
- pos: 27.5,-44.5
parent: 2
type: Transform
- - uid: 29176
+ - uid: 29196
components:
- pos: -6.5,-30.5
parent: 2
type: Transform
- - uid: 29177
+ - uid: 29197
components:
- pos: -6.5,-31.5
parent: 2
type: Transform
- - uid: 29178
- components:
- - rot: -1.5707963267948966 rad
- pos: 10.5,-44.5
- parent: 2
- type: Transform
- - uid: 29179
- components:
- - rot: -1.5707963267948966 rad
- pos: 11.5,-44.5
- parent: 2
- type: Transform
- - uid: 29180
+ - uid: 29198
components:
- pos: 12.5,-48.5
parent: 2
type: Transform
- - uid: 29181
+ - uid: 29199
components:
- pos: 9.5,-15.5
parent: 2
type: Transform
- - uid: 29182
+ - uid: 29200
components:
- pos: 7.5,-15.5
parent: 2
type: Transform
- - uid: 29183
+ - uid: 29201
components:
- pos: 6.5,-15.5
parent: 2
type: Transform
- - uid: 29184
+ - uid: 29202
components:
- pos: 5.5,-15.5
parent: 2
type: Transform
- - uid: 29185
+ - uid: 29203
components:
- pos: -10.5,-28.5
parent: 2
type: Transform
- - uid: 29186
+ - uid: 29204
components:
- rot: 1.5707963267948966 rad
pos: 7.5,-9.5
parent: 2
type: Transform
- - uid: 29187
+ - uid: 29205
components:
- pos: 8.5,-40.5
parent: 2
type: Transform
- - uid: 29188
+ - uid: 29206
components:
- rot: 3.141592653589793 rad
pos: -10.5,-48.5
parent: 2
type: Transform
- - uid: 29189
+ - uid: 29207
components:
- rot: 3.141592653589793 rad
pos: 1.5,-49.5
parent: 2
type: Transform
- - uid: 29190
+ - uid: 29208
components:
- rot: 3.141592653589793 rad
pos: 1.5,-50.5
parent: 2
type: Transform
- - uid: 29191
+ - uid: 29209
components:
- pos: -2.5,-51.5
parent: 2
type: Transform
- - uid: 29192
+ - uid: 29210
components:
- rot: -1.5707963267948966 rad
pos: -15.5,-40.5
parent: 2
type: Transform
- - uid: 29193
+ - uid: 29211
components:
- rot: -1.5707963267948966 rad
pos: -13.5,-40.5
parent: 2
type: Transform
- - uid: 29194
+ - uid: 29212
components:
- rot: -1.5707963267948966 rad
pos: 30.5,5.5
parent: 2
type: Transform
- - uid: 29195
+ - uid: 29213
components:
- pos: 3.5,-15.5
parent: 2
type: Transform
- - uid: 29196
+ - uid: 29214
components:
- pos: 14.5,-11.5
parent: 2
type: Transform
- - uid: 29197
+ - uid: 29215
components:
- pos: 8.5,-13.5
parent: 2
type: Transform
- - uid: 29198
+ - uid: 29216
components:
- rot: -1.5707963267948966 rad
pos: 13.5,-5.5
parent: 2
type: Transform
- - uid: 29199
+ - uid: 29217
components:
- pos: 8.5,-28.5
parent: 2
type: Transform
- - uid: 29200
+ - uid: 29218
components:
- pos: 16.5,-12.5
parent: 2
type: Transform
- - uid: 29201
+ - uid: 29219
components:
- pos: 16.5,-11.5
parent: 2
type: Transform
- - uid: 29202
+ - uid: 29220
components:
- pos: 16.5,-10.5
parent: 2
type: Transform
- - uid: 29203
+ - uid: 29221
components:
- pos: 16.5,-9.5
parent: 2
type: Transform
- - uid: 29204
+ - uid: 29222
components:
- pos: 17.5,-9.5
parent: 2
type: Transform
- - uid: 29205
+ - uid: 29223
components:
- pos: 0.5,-15.5
parent: 2
type: Transform
- - uid: 29206
+ - uid: 29224
components:
- pos: 1.5,-15.5
parent: 2
type: Transform
- - uid: 29207
+ - uid: 29225
components:
- pos: 11.5,-13.5
parent: 2
type: Transform
- - uid: 29208
+ - uid: 29226
components:
- pos: 2.5,-15.5
parent: 2
type: Transform
- - uid: 29209
+ - uid: 29227
components:
- pos: 14.5,-10.5
parent: 2
type: Transform
- - uid: 29210
+ - uid: 29228
components:
- pos: 14.5,-9.5
parent: 2
type: Transform
- - uid: 29211
+ - uid: 29229
components:
- pos: 19.5,-9.5
parent: 2
type: Transform
- - uid: 29212
+ - uid: 29230
components:
- rot: 3.141592653589793 rad
pos: 19.5,9.5
parent: 2
type: Transform
- - uid: 29213
+ - uid: 29231
components:
- rot: 3.141592653589793 rad
pos: 19.5,11.5
parent: 2
type: Transform
- - uid: 29214
+ - uid: 29232
components:
- rot: 3.141592653589793 rad
pos: 19.5,13.5
parent: 2
type: Transform
- - uid: 29215
+ - uid: 29233
components:
- pos: -42.5,-29.5
parent: 2
type: Transform
- - uid: 29216
+ - uid: 29234
components:
- pos: -37.5,-29.5
parent: 2
type: Transform
- - uid: 29217
+ - uid: 29235
components:
- pos: 13.5,-13.5
parent: 2
type: Transform
- - uid: 29218
+ - uid: 29236
components:
- pos: 14.5,-13.5
parent: 2
type: Transform
- - uid: 29219
+ - uid: 29237
components:
- rot: 3.141592653589793 rad
pos: 47.5,37.5
parent: 2
type: Transform
- - uid: 29220
+ - uid: 29238
components:
- rot: 3.141592653589793 rad
pos: 19.5,12.5
parent: 2
type: Transform
- - uid: 29221
+ - uid: 29239
components:
- rot: 3.141592653589793 rad
pos: 20.5,9.5
parent: 2
type: Transform
- - uid: 29222
+ - uid: 29240
components:
- pos: 18.5,-9.5
parent: 2
type: Transform
- - uid: 29223
+ - uid: 29241
components:
- rot: -1.5707963267948966 rad
pos: 13.5,-8.5
parent: 2
type: Transform
- - uid: 29224
+ - uid: 29242
components:
- pos: -5.5,10.5
parent: 2
type: Transform
- - uid: 29225
+ - uid: 29243
components:
- rot: 3.141592653589793 rad
pos: -1.5,11.5
parent: 2
type: Transform
- - uid: 29226
+ - uid: 29244
components:
- pos: 4.5,4.5
parent: 2
type: Transform
- - uid: 29227
+ - uid: 29245
components:
- pos: -1.5,6.5
parent: 2
type: Transform
- - uid: 29228
+ - uid: 29246
components:
- rot: 3.141592653589793 rad
pos: -1.5,10.5
parent: 2
type: Transform
- - uid: 29229
+ - uid: 29247
components:
- pos: 7.5,5.5
parent: 2
type: Transform
- - uid: 29230
+ - uid: 29248
components:
- rot: -1.5707963267948966 rad
pos: -8.5,57.5
parent: 2
type: Transform
- - uid: 29231
+ - uid: 29249
components:
- rot: 3.141592653589793 rad
pos: 28.5,-7.5
parent: 2
type: Transform
- - uid: 29232
+ - uid: 29250
components:
- pos: -3.5,-70.5
parent: 2
type: Transform
- - uid: 29233
+ - uid: 29251
components:
- pos: 8.5,-50.5
parent: 2
type: Transform
- - uid: 29234
+ - uid: 29252
components:
- pos: -17.5,-37.5
parent: 2
type: Transform
- - uid: 29235
+ - uid: 29253
components:
- pos: -26.5,34.5
parent: 2
type: Transform
- - uid: 29236
+ - uid: 29254
components:
- pos: -28.5,37.5
parent: 2
type: Transform
- - uid: 29237
+ - uid: 29255
components:
- pos: 3.5,4.5
parent: 2
type: Transform
- - uid: 29238
+ - uid: 29256
components:
- rot: 3.141592653589793 rad
pos: 22.5,-9.5
parent: 2
type: Transform
- - uid: 29239
+ - uid: 29257
components:
- pos: -9.5,4.5
parent: 2
type: Transform
- - uid: 29240
+ - uid: 29258
components:
- pos: -9.5,-34.5
parent: 2
type: Transform
- - uid: 29241
+ - uid: 29259
components:
- rot: -1.5707963267948966 rad
pos: -16.5,-40.5
parent: 2
type: Transform
- - uid: 29242
+ - uid: 29260
components:
- rot: -1.5707963267948966 rad
pos: -7.5,-40.5
parent: 2
type: Transform
- - uid: 29243
+ - uid: 29261
components:
- pos: -7.5,-28.5
parent: 2
type: Transform
- - uid: 29244
+ - uid: 29262
components:
- pos: 15.5,1.5
parent: 2
type: Transform
- - uid: 29245
+ - uid: 29263
components:
- rot: 1.5707963267948966 rad
pos: -15.5,-24.5
parent: 2
type: Transform
- - uid: 29246
+ - uid: 29264
components:
- pos: -17.5,-16.5
parent: 2
type: Transform
- - uid: 29247
+ - uid: 29265
components:
- pos: 42.5,-6.5
parent: 2
type: Transform
- - uid: 29248
+ - uid: 29266
components:
- pos: -17.5,-32.5
parent: 2
type: Transform
- - uid: 29249
+ - uid: 29267
components:
- pos: -25.5,42.5
parent: 2
type: Transform
- - uid: 29250
+ - uid: 29268
components:
- pos: -28.5,36.5
parent: 2
type: Transform
- - uid: 29251
+ - uid: 29269
components:
- pos: -4.5,-70.5
parent: 2
type: Transform
- - uid: 29252
+ - uid: 29270
components:
- pos: -4.5,-71.5
parent: 2
type: Transform
- - uid: 29253
+ - uid: 29271
components:
- pos: 39.5,-52.5
parent: 2
type: Transform
- - uid: 29254
+ - uid: 29272
components:
- pos: -0.5,4.5
parent: 2
type: Transform
- - uid: 29255
+ - uid: 29273
components:
- pos: -4.5,-72.5
parent: 2
type: Transform
- - uid: 29256
- components:
- - pos: 16.5,-49.5
- parent: 2
- type: Transform
- - uid: 29257
+ - uid: 29274
components:
- pos: 16.5,-50.5
parent: 2
type: Transform
- - uid: 29258
+ - uid: 29275
components:
- pos: 14.5,-55.5
parent: 2
type: Transform
- - uid: 29259
+ - uid: 29276
components:
- pos: -17.5,-17.5
parent: 2
type: Transform
- - uid: 29260
+ - uid: 29277
components:
- rot: 3.141592653589793 rad
pos: 32.5,-7.5
parent: 2
type: Transform
- - uid: 29261
+ - uid: 29278
components:
- pos: -21.5,-24.5
parent: 2
type: Transform
- - uid: 29262
+ - uid: 29279
components:
- pos: 41.5,-57.5
parent: 2
type: Transform
- - uid: 29263
+ - uid: 29280
components:
- rot: 1.5707963267948966 rad
pos: -12.5,-24.5
parent: 2
type: Transform
- - uid: 29264
+ - uid: 29281
components:
- pos: 36.5,-0.5
parent: 2
type: Transform
- - uid: 29265
+ - uid: 29282
components:
- pos: 9.5,-54.5
parent: 2
type: Transform
- - uid: 29266
+ - uid: 29283
components:
- pos: -17.5,-15.5
parent: 2
type: Transform
- - uid: 29267
+ - uid: 29284
components:
- pos: 37.5,-40.5
parent: 2
type: Transform
- - uid: 29268
+ - uid: 29285
components:
- pos: 38.5,-40.5
parent: 2
type: Transform
- - uid: 29269
+ - uid: 29286
components:
- pos: 40.5,-40.5
parent: 2
type: Transform
- - uid: 29270
+ - uid: 29287
components:
- pos: 27.5,-46.5
parent: 2
type: Transform
- - uid: 29271
+ - uid: 29288
components:
- rot: 1.5707963267948966 rad
pos: 27.5,-49.5
parent: 2
type: Transform
- - uid: 29272
+ - uid: 29289
components:
- pos: 39.5,-40.5
parent: 2
type: Transform
- - uid: 29273
+ - uid: 29290
components:
- pos: -11.5,4.5
parent: 2
type: Transform
- - uid: 29274
+ - uid: 29291
components:
- pos: -2.5,13.5
parent: 2
type: Transform
- - uid: 29275
+ - uid: 29292
components:
- rot: 3.141592653589793 rad
pos: 23.5,12.5
parent: 2
type: Transform
- - uid: 29276
+ - uid: 29293
components:
- rot: 3.141592653589793 rad
pos: 23.5,13.5
parent: 2
type: Transform
- - uid: 29277
+ - uid: 29294
components:
- pos: 28.5,5.5
parent: 2
type: Transform
- - uid: 29278
+ - uid: 29295
components:
- rot: 3.141592653589793 rad
pos: 3.5,10.5
parent: 2
type: Transform
- - uid: 29279
+ - uid: 29296
components:
- rot: -1.5707963267948966 rad
pos: 31.5,4.5
parent: 2
type: Transform
- - uid: 29280
+ - uid: 29297
components:
- rot: -1.5707963267948966 rad
pos: 31.5,-1.5
parent: 2
type: Transform
- - uid: 29281
+ - uid: 29298
components:
- pos: -29.5,-76.5
parent: 2
type: Transform
- - uid: 29282
+ - uid: 29299
components:
- pos: -11.5,11.5
parent: 2
type: Transform
- - uid: 29283
+ - uid: 29300
components:
- pos: -2.5,4.5
parent: 2
type: Transform
- - uid: 29284
+ - uid: 29301
components:
- rot: 3.141592653589793 rad
pos: 61.5,14.5
parent: 2
type: Transform
- - uid: 29285
+ - uid: 29302
components:
- rot: -1.5707963267948966 rad
pos: 19.5,20.5
parent: 2
type: Transform
- - uid: 29286
+ - uid: 29303
components:
- pos: 6.5,4.5
parent: 2
type: Transform
- - uid: 29287
+ - uid: 29304
components:
- rot: -1.5707963267948966 rad
pos: -18.5,38.5
parent: 2
type: Transform
- - uid: 29288
+ - uid: 29305
components:
- pos: -17.5,-35.5
parent: 2
type: Transform
- - uid: 29289
+ - uid: 29306
components:
- rot: 1.5707963267948966 rad
pos: -14.5,-28.5
parent: 2
type: Transform
- - uid: 29290
+ - uid: 29307
components:
- pos: -10.5,-62.5
parent: 2
type: Transform
- - uid: 29291
+ - uid: 29308
components:
- pos: -10.5,-64.5
parent: 2
type: Transform
- - uid: 29292
+ - uid: 29309
components:
- pos: -2.5,-70.5
parent: 2
type: Transform
- - uid: 29293
+ - uid: 29310
components:
- pos: -1.5,-70.5
parent: 2
type: Transform
- - uid: 29294
+ - uid: 29311
components:
- rot: 3.141592653589793 rad
pos: 29.5,-7.5
parent: 2
type: Transform
- - uid: 29295
+ - uid: 29312
components:
- pos: 13.5,-53.5
parent: 2
type: Transform
- - uid: 29296
+ - uid: 29313
components:
- rot: -1.5707963267948966 rad
pos: -10.5,57.5
parent: 2
type: Transform
- - uid: 29297
+ - uid: 29314
components:
- pos: -5.5,-72.5
parent: 2
type: Transform
- - uid: 29298
+ - uid: 29315
components:
- pos: 0.5,-70.5
parent: 2
type: Transform
- - uid: 29299
+ - uid: 29316
components:
- pos: 1.5,-70.5
parent: 2
type: Transform
- - uid: 29300
- components:
- - pos: 13.5,-46.5
- parent: 2
- type: Transform
- - uid: 29301
+ - uid: 29317
components:
- pos: 42.5,-54.5
parent: 2
type: Transform
- - uid: 29302
+ - uid: 29318
components:
- pos: -1.5,-11.5
parent: 2
type: Transform
- - uid: 29303
+ - uid: 29319
components:
- pos: 13.5,-44.5
parent: 2
type: Transform
- - uid: 29304
- components:
- - pos: 17.5,-44.5
- parent: 2
- type: Transform
- - uid: 29305
+ - uid: 29320
components:
- pos: -28.5,-76.5
parent: 2
type: Transform
- - uid: 29306
+ - uid: 29321
components:
- pos: -21.5,-80.5
parent: 2
type: Transform
- - uid: 29307
+ - uid: 29322
components:
- pos: -11.5,10.5
parent: 2
type: Transform
- - uid: 29308
+ - uid: 29323
components:
- pos: -0.5,-70.5
parent: 2
type: Transform
- - uid: 29309
+ - uid: 29324
components:
- pos: -27.5,-76.5
parent: 2
type: Transform
- - uid: 29310
+ - uid: 29325
components:
- pos: -20.5,-65.5
parent: 2
type: Transform
- - uid: 29311
+ - uid: 29326
components:
- pos: -14.5,-72.5
parent: 2
type: Transform
- - uid: 29312
+ - uid: 29327
components:
- pos: -17.5,-74.5
parent: 2
type: Transform
- - uid: 29313
+ - uid: 29328
components:
- pos: -21.5,-79.5
parent: 2
type: Transform
- - uid: 29314
+ - uid: 29329
components:
- pos: -21.5,-78.5
parent: 2
type: Transform
- - uid: 29315
+ - uid: 29330
components:
- pos: -21.5,-77.5
parent: 2
type: Transform
- - uid: 29316
+ - uid: 29331
components:
- pos: -26.5,-76.5
parent: 2
type: Transform
- - uid: 29317
+ - uid: 29332
components:
- pos: -26.5,-75.5
parent: 2
type: Transform
- - uid: 29318
+ - uid: 29333
components:
- rot: 3.141592653589793 rad
pos: -10.5,-51.5
parent: 2
type: Transform
- - uid: 29319
+ - uid: 29334
components:
- rot: 3.141592653589793 rad
pos: -16.5,-51.5
parent: 2
type: Transform
- - uid: 29320
+ - uid: 29335
components:
- pos: 16.5,-48.5
parent: 2
type: Transform
- - uid: 29321
+ - uid: 29336
components:
- pos: -17.5,-67.5
parent: 2
type: Transform
- - uid: 29322
+ - uid: 29337
components:
- pos: 10.5,-15.5
parent: 2
type: Transform
- - uid: 29323
+ - uid: 29338
components:
- pos: 12.5,4.5
parent: 2
type: Transform
- - uid: 29324
+ - uid: 29339
components:
- rot: 3.141592653589793 rad
pos: 23.5,-7.5
parent: 2
type: Transform
- - uid: 29325
+ - uid: 29340
components:
- pos: -32.5,-70.5
parent: 2
type: Transform
- - uid: 29326
+ - uid: 29341
components:
- rot: 3.141592653589793 rad
pos: 30.5,-7.5
parent: 2
type: Transform
- - uid: 29327
+ - uid: 29342
components:
- pos: -27.5,-72.5
parent: 2
type: Transform
- - uid: 29328
+ - uid: 29343
components:
- pos: 13.5,-65.5
parent: 2
type: Transform
- - uid: 29329
+ - uid: 29344
components:
- pos: 10.5,-63.5
parent: 2
type: Transform
- - uid: 29330
+ - uid: 29345
components:
- rot: 3.141592653589793 rad
pos: 23.5,-8.5
parent: 2
type: Transform
- - uid: 29331
+ - uid: 29346
components:
- pos: -6.5,-50.5
parent: 2
type: Transform
- - uid: 29332
+ - uid: 29347
components:
- pos: -13.5,-70.5
parent: 2
type: Transform
- - uid: 29333
+ - uid: 29348
components:
- pos: 14.5,-12.5
parent: 2
type: Transform
- - uid: 29334
+ - uid: 29349
components:
- pos: 29.5,5.5
parent: 2
type: Transform
- - uid: 29335
+ - uid: 29350
components:
- rot: -1.5707963267948966 rad
pos: 31.5,5.5
parent: 2
type: Transform
- - uid: 29336
+ - uid: 29351
components:
- rot: 1.5707963267948966 rad
pos: 27.5,-48.5
parent: 2
type: Transform
- - uid: 29337
+ - uid: 29352
components:
- pos: 27.5,-45.5
parent: 2
type: Transform
- - uid: 29338
+ - uid: 29353
components:
- rot: 3.141592653589793 rad
pos: 20.5,15.5
parent: 2
type: Transform
- - uid: 29339
+ - uid: 29354
components:
- pos: -17.5,-13.5
parent: 2
type: Transform
- - uid: 29340
+ - uid: 29355
components:
- pos: 43.5,-6.5
parent: 2
type: Transform
- - uid: 29341
+ - uid: 29356
components:
- pos: 37.5,-54.5
parent: 2
type: Transform
- - uid: 29342
+ - uid: 29357
components:
- pos: 17.5,-27.5
parent: 2
type: Transform
- - uid: 29343
+ - uid: 29358
components:
- pos: -25.5,43.5
parent: 2
type: Transform
- - uid: 29344
+ - uid: 29359
components:
- pos: -25.5,44.5
parent: 2
type: Transform
- - uid: 29345
+ - uid: 29360
components:
- pos: -25.5,46.5
parent: 2
type: Transform
- - uid: 29346
+ - uid: 29361
components:
- pos: -27.5,36.5
parent: 2
type: Transform
- - uid: 29347
+ - uid: 29362
components:
- rot: 3.141592653589793 rad
pos: 27.5,-7.5
parent: 2
type: Transform
- - uid: 29348
+ - uid: 29363
components:
- rot: 3.141592653589793 rad
pos: 21.5,-51.5
parent: 2
type: Transform
- - uid: 29349
+ - uid: 29364
components:
- pos: -6.5,-39.5
parent: 2
type: Transform
- - uid: 29350
+ - uid: 29365
components:
- rot: 1.5707963267948966 rad
pos: -16.5,-24.5
parent: 2
type: Transform
- - uid: 29351
+ - uid: 29366
components:
- pos: -17.5,-24.5
parent: 2
type: Transform
- - uid: 29352
+ - uid: 29367
components:
- pos: 42.5,-55.5
parent: 2
type: Transform
- - uid: 29353
+ - uid: 29368
components:
- pos: -26.5,32.5
parent: 2
type: Transform
- - uid: 29354
+ - uid: 29369
components:
- pos: 37.5,-55.5
parent: 2
type: Transform
- - uid: 29355
+ - uid: 29370
components:
- rot: 3.141592653589793 rad
pos: 20.5,-51.5
parent: 2
type: Transform
- - uid: 29356
+ - uid: 29371
components:
- pos: 15.5,-5.5
parent: 2
type: Transform
- - uid: 29357
+ - uid: 29372
components:
- rot: 3.141592653589793 rad
pos: 27.5,-9.5
parent: 2
type: Transform
- - uid: 29358
+ - uid: 29373
components:
- rot: 3.141592653589793 rad
pos: 21.5,-7.5
parent: 2
type: Transform
- - uid: 29359
+ - uid: 29374
components:
- rot: -1.5707963267948966 rad
pos: 6.5,-44.5
parent: 2
type: Transform
- - uid: 29360
+ - uid: 29375
components:
- pos: 1.5,-72.5
parent: 2
type: Transform
- - uid: 29361
+ - uid: 29376
components:
- rot: -1.5707963267948966 rad
pos: 29.5,-2.5
parent: 2
type: Transform
- - uid: 29362
+ - uid: 29377
components:
- rot: 3.141592653589793 rad
pos: 34.5,-7.5
parent: 2
type: Transform
- - uid: 29363
+ - uid: 29378
components:
- pos: 42.5,-53.5
parent: 2
type: Transform
- - uid: 29364
+ - uid: 29379
components:
- rot: 3.141592653589793 rad
pos: -10.5,-44.5
parent: 2
type: Transform
- - uid: 29365
+ - uid: 29380
components:
- rot: 3.141592653589793 rad
pos: 7.5,10.5
parent: 2
type: Transform
- - uid: 29366
+ - uid: 29381
components:
- rot: -1.5707963267948966 rad
pos: -11.5,-76.5
parent: 2
type: Transform
- - uid: 29367
+ - uid: 29382
components:
- rot: 3.141592653589793 rad
pos: 60.5,12.5
parent: 2
type: Transform
- - uid: 29368
+ - uid: 29383
components:
- pos: 20.5,-3.5
parent: 2
type: Transform
- - uid: 29369
+ - uid: 29384
components:
- pos: 2.5,-72.5
parent: 2
type: Transform
- - uid: 29370
+ - uid: 29385
components:
- pos: 11.5,-68.5
parent: 2
type: Transform
- - uid: 29371
+ - uid: 29386
components:
- pos: -18.5,-65.5
parent: 2
type: Transform
- - uid: 29372
+ - uid: 29387
components:
- pos: 7.5,-58.5
parent: 2
type: Transform
- - uid: 29373
+ - uid: 29388
components:
- rot: 1.5707963267948966 rad
pos: 32.5,-44.5
parent: 2
type: Transform
- - uid: 29374
+ - uid: 29389
components:
- rot: 1.5707963267948966 rad
pos: 33.5,-44.5
parent: 2
type: Transform
- - uid: 29375
+ - uid: 29390
components:
- pos: -2.5,-16.5
parent: 2
type: Transform
- - uid: 29376
+ - uid: 29391
components:
- pos: -11.5,-28.5
parent: 2
type: Transform
- - uid: 29377
+ - uid: 29392
components:
- pos: -7.5,-35.5
parent: 2
type: Transform
- - uid: 29378
+ - uid: 29393
components:
- rot: 3.141592653589793 rad
pos: 19.5,-7.5
parent: 2
type: Transform
- - uid: 29379
+ - uid: 29394
components:
- pos: 29.5,-3.5
parent: 2
type: Transform
- - uid: 29380
+ - uid: 29395
components:
- rot: -1.5707963267948966 rad
pos: 31.5,-3.5
parent: 2
type: Transform
- - uid: 29381
+ - uid: 29396
components:
- rot: 1.5707963267948966 rad
pos: 27.5,-57.5
parent: 2
type: Transform
- - uid: 29382
+ - uid: 29397
components:
- pos: -17.5,-33.5
parent: 2
type: Transform
- - uid: 29383
+ - uid: 29398
components:
- pos: 35.5,-0.5
parent: 2
type: Transform
- - uid: 29384
+ - uid: 29399
components:
- rot: -1.5707963267948966 rad
pos: -11.5,14.5
parent: 2
type: Transform
- - uid: 29385
+ - uid: 29400
components:
- pos: -23.5,36.5
parent: 2
type: Transform
- - uid: 29386
+ - uid: 29401
components:
- pos: -23.5,37.5
parent: 2
type: Transform
- - uid: 29387
+ - uid: 29402
components:
- pos: -23.5,39.5
parent: 2
type: Transform
- - uid: 29388
+ - uid: 29403
components:
- pos: -5.5,13.5
parent: 2
type: Transform
- - uid: 29389
+ - uid: 29404
components:
- pos: -10.5,-66.5
parent: 2
type: Transform
- - uid: 29390
+ - uid: 29405
components:
- rot: -1.5707963267948966 rad
pos: 21.5,19.5
parent: 2
type: Transform
- - uid: 29391
+ - uid: 29406
components:
- pos: 20.5,-48.5
parent: 2
type: Transform
- - uid: 29392
+ - uid: 29407
components:
- rot: -1.5707963267948966 rad
pos: -3.5,-76.5
parent: 2
type: Transform
- - uid: 29393
+ - uid: 29408
components:
- pos: -3.5,-73.5
parent: 2
type: Transform
- - uid: 29394
+ - uid: 29409
components:
- pos: -2.5,-72.5
parent: 2
type: Transform
- - uid: 29395
+ - uid: 29410
components:
- rot: 1.5707963267948966 rad
pos: 32.5,-23.5
parent: 2
type: Transform
- - uid: 29396
+ - uid: 29411
components:
- pos: 57.5,-64.5
parent: 2
type: Transform
- - uid: 29397
+ - uid: 29412
components:
- pos: -14.5,-16.5
parent: 2
type: Transform
- - uid: 29398
+ - uid: 29413
components:
- pos: -14.5,-19.5
parent: 2
type: Transform
- - uid: 29399
+ - uid: 29414
components:
- pos: -17.5,-19.5
parent: 2
type: Transform
- - uid: 29400
+ - uid: 29415
components:
- pos: -17.5,-18.5
parent: 2
type: Transform
- - uid: 29401
+ - uid: 29416
components:
- pos: -17.5,-36.5
parent: 2
type: Transform
- - uid: 29402
+ - uid: 29417
components:
- rot: -1.5707963267948966 rad
pos: -7.5,-39.5
parent: 2
type: Transform
- - uid: 29403
+ - uid: 29418
components:
- pos: 13.5,-30.5
parent: 2
type: Transform
- - uid: 29404
+ - uid: 29419
components:
- pos: 16.5,-47.5
parent: 2
type: Transform
- - uid: 29405
+ - uid: 29420
components:
- rot: 3.141592653589793 rad
pos: 17.5,-51.5
parent: 2
type: Transform
- - uid: 29406
+ - uid: 29421
components:
- pos: -14.5,-17.5
parent: 2
type: Transform
- - uid: 29407
+ - uid: 29422
components:
- pos: 9.5,4.5
parent: 2
type: Transform
- - uid: 29408
+ - uid: 29423
components:
- pos: 37.5,-29.5
parent: 2
type: Transform
- - uid: 29409
+ - uid: 29424
components:
- pos: -23.5,-68.5
parent: 2
type: Transform
- - uid: 29410
+ - uid: 29425
components:
- pos: 11.5,-56.5
parent: 2
type: Transform
- - uid: 29411
+ - uid: 29426
components:
- pos: -7.5,-33.5
parent: 2
type: Transform
- - uid: 29412
+ - uid: 29427
components:
- rot: 3.141592653589793 rad
pos: -12.5,-32.5
parent: 2
type: Transform
- - uid: 29413
+ - uid: 29428
components:
- pos: -12.5,-31.5
parent: 2
type: Transform
- - uid: 29414
+ - uid: 29429
components:
- pos: -13.5,-34.5
parent: 2
type: Transform
- - uid: 29415
+ - uid: 29430
components:
- pos: -13.5,-35.5
parent: 2
type: Transform
- - uid: 29416
+ - uid: 29431
components:
- pos: -13.5,-36.5
parent: 2
type: Transform
- - uid: 29417
+ - uid: 29432
components:
- pos: -13.5,-37.5
parent: 2
type: Transform
- - uid: 29418
+ - uid: 29433
components:
- pos: -13.5,-39.5
parent: 2
type: Transform
- - uid: 29419
+ - uid: 29434
components:
- pos: -16.5,-36.5
parent: 2
type: Transform
- - uid: 29420
+ - uid: 29435
components:
- pos: -15.5,-36.5
parent: 2
type: Transform
- - uid: 29421
+ - uid: 29436
components:
- pos: -14.5,-36.5
parent: 2
type: Transform
- - uid: 29422
+ - uid: 29437
components:
- pos: -7.5,-32.5
parent: 2
type: Transform
- - uid: 29423
+ - uid: 29438
components:
- pos: -7.5,-31.5
parent: 2
type: Transform
- - uid: 29424
+ - uid: 29439
components:
- pos: -10.5,-31.5
parent: 2
type: Transform
- - uid: 29425
+ - uid: 29440
components:
- pos: -9.5,-31.5
parent: 2
type: Transform
- - uid: 29426
+ - uid: 29441
components:
- pos: -8.5,-31.5
parent: 2
type: Transform
- - uid: 29427
+ - uid: 29442
components:
- pos: 10.5,-28.5
parent: 2
type: Transform
- - uid: 29428
+ - uid: 29443
components:
- rot: 3.141592653589793 rad
pos: 17.5,8.5
parent: 2
type: Transform
- - uid: 29429
+ - uid: 29444
components:
- pos: 23.5,-47.5
parent: 2
type: Transform
- - uid: 29430
+ - uid: 29445
components:
- rot: -1.5707963267948966 rad
pos: 49.5,-36.5
parent: 2
type: Transform
- - uid: 29431
+ - uid: 29446
components:
- rot: -1.5707963267948966 rad
pos: 43.5,-34.5
parent: 2
type: Transform
- - uid: 29432
+ - uid: 29447
components:
- rot: 1.5707963267948966 rad
pos: 36.5,-9.5
parent: 2
type: Transform
- - uid: 29433
+ - uid: 29448
components:
- rot: 1.5707963267948966 rad
pos: 36.5,-10.5
parent: 2
type: Transform
- - uid: 29434
+ - uid: 29449
components:
- rot: 1.5707963267948966 rad
pos: 36.5,-11.5
parent: 2
type: Transform
- - uid: 29435
+ - uid: 29450
components:
- rot: 1.5707963267948966 rad
pos: 36.5,-7.5
parent: 2
type: Transform
- - uid: 29436
+ - uid: 29451
components:
- pos: -6.5,-8.5
parent: 2
type: Transform
- - uid: 29437
+ - uid: 29452
components:
- pos: -6.5,-10.5
parent: 2
type: Transform
- - uid: 29438
+ - uid: 29453
components:
- pos: -17.5,-11.5
parent: 2
type: Transform
- - uid: 29439
+ - uid: 29454
components:
- pos: -17.5,-12.5
parent: 2
type: Transform
- - uid: 29440
+ - uid: 29455
components:
- pos: -11.5,0.5
parent: 2
type: Transform
- - uid: 29441
+ - uid: 29456
components:
- pos: -13.5,14.5
parent: 2
type: Transform
- - uid: 29442
+ - uid: 29457
components:
- pos: -15.5,14.5
parent: 2
type: Transform
- - uid: 29443
+ - uid: 29458
components:
- pos: -21.5,13.5
parent: 2
type: Transform
- - uid: 29444
+ - uid: 29459
components:
- pos: -21.5,10.5
parent: 2
type: Transform
- - uid: 29445
+ - uid: 29460
components:
- pos: -17.5,13.5
parent: 2
type: Transform
- - uid: 29446
+ - uid: 29461
components:
- pos: -17.5,12.5
parent: 2
type: Transform
- - uid: 29447
+ - uid: 29462
components:
- pos: -17.5,14.5
parent: 2
type: Transform
- - uid: 29448
+ - uid: 29463
components:
- pos: -16.5,14.5
parent: 2
type: Transform
- - uid: 29449
+ - uid: 29464
components:
- pos: -15.5,-32.5
parent: 2
type: Transform
- - uid: 29450
+ - uid: 29465
components:
- pos: -9.5,-30.5
parent: 2
type: Transform
- - uid: 29451
+ - uid: 29466
components:
- pos: -15.5,-30.5
parent: 2
type: Transform
- - uid: 29452
+ - uid: 29467
components:
- pos: -14.5,-30.5
parent: 2
type: Transform
- - uid: 29453
+ - uid: 29468
components:
- pos: -14.5,-29.5
parent: 2
type: Transform
- - uid: 29454
+ - uid: 29469
components:
- rot: -1.5707963267948966 rad
pos: -15.5,16.5
parent: 2
type: Transform
- - uid: 29455
+ - uid: 29470
components:
- rot: -1.5707963267948966 rad
pos: -14.5,16.5
parent: 2
type: Transform
- - uid: 29456
+ - uid: 29471
components:
- rot: -1.5707963267948966 rad
pos: -13.5,16.5
parent: 2
type: Transform
- - uid: 29457
+ - uid: 29472
components:
- rot: -1.5707963267948966 rad
pos: -12.5,16.5
parent: 2
type: Transform
- - uid: 29458
+ - uid: 29473
components:
- rot: -1.5707963267948966 rad
pos: -11.5,16.5
parent: 2
type: Transform
- - uid: 29459
+ - uid: 29474
components:
- rot: -1.5707963267948966 rad
pos: -11.5,17.5
parent: 2
type: Transform
- - uid: 29460
+ - uid: 29475
components:
- rot: -1.5707963267948966 rad
pos: -9.5,17.5
parent: 2
type: Transform
- - uid: 29461
+ - uid: 29476
components:
- pos: -15.5,-11.5
parent: 2
type: Transform
- - uid: 29462
+ - uid: 29477
components:
- pos: -8.5,-16.5
parent: 2
type: Transform
- - uid: 29463
+ - uid: 29478
components:
- pos: 23.5,-45.5
parent: 2
type: Transform
- - uid: 29464
+ - uid: 29479
components:
- pos: 23.5,-44.5
parent: 2
type: Transform
- - uid: 29465
+ - uid: 29480
components:
- pos: 23.5,-48.5
parent: 2
type: Transform
- - uid: 29466
- components:
- - pos: 15.5,-46.5
- parent: 2
- type: Transform
- - uid: 29467
+ - uid: 29481
components:
- pos: 18.5,-45.5
parent: 2
type: Transform
- - uid: 29468
+ - uid: 29482
components:
- pos: 18.5,-46.5
parent: 2
type: Transform
- - uid: 29469
+ - uid: 29483
components:
- pos: 18.5,-47.5
parent: 2
type: Transform
- - uid: 29470
+ - uid: 29484
components:
- rot: -1.5707963267948966 rad
pos: 31.5,0.5
parent: 2
type: Transform
- - uid: 29471
+ - uid: 29485
components:
- pos: 61.5,7.5
parent: 2
type: Transform
- - uid: 29472
+ - uid: 29486
components:
- pos: 61.5,5.5
parent: 2
type: Transform
- - uid: 29473
+ - uid: 29487
components:
- pos: 64.5,1.5
parent: 2
type: Transform
- - uid: 29474
+ - uid: 29488
components:
- pos: 65.5,0.5
parent: 2
type: Transform
- - uid: 29475
+ - uid: 29489
components:
- pos: 60.5,0.5
parent: 2
type: Transform
- - uid: 29476
+ - uid: 29490
components:
- pos: 17.5,30.5
parent: 2
type: Transform
- - uid: 29477
+ - uid: 29491
components:
- rot: 1.5707963267948966 rad
pos: 55.5,54.5
parent: 2
type: Transform
- - uid: 29478
+ - uid: 29492
components:
- rot: 1.5707963267948966 rad
pos: 56.5,54.5
parent: 2
type: Transform
- - uid: 29479
+ - uid: 29493
components:
- rot: -1.5707963267948966 rad
pos: -13.5,47.5
parent: 2
type: Transform
- - uid: 29480
+ - uid: 29494
components:
- rot: -1.5707963267948966 rad
pos: -13.5,48.5
parent: 2
type: Transform
- - uid: 29481
+ - uid: 29495
components:
- pos: 47.5,34.5
parent: 2
type: Transform
- - uid: 29482
+ - uid: 29496
components:
- pos: 47.5,33.5
parent: 2
type: Transform
- - uid: 29483
+ - uid: 29497
components:
- pos: 47.5,31.5
parent: 2
type: Transform
- - uid: 29484
+ - uid: 29498
components:
- pos: -9.5,47.5
parent: 2
type: Transform
- - uid: 29485
+ - uid: 29499
components:
- pos: -10.5,47.5
parent: 2
type: Transform
- - uid: 29486
+ - uid: 29500
components:
- rot: -1.5707963267948966 rad
pos: -10.5,48.5
parent: 2
type: Transform
- - uid: 29487
+ - uid: 29501
components:
- pos: -3.5,20.5
parent: 2
type: Transform
- - uid: 29488
+ - uid: 29502
components:
- pos: -6.5,20.5
parent: 2
type: Transform
- - uid: 29489
+ - uid: 29503
components:
- pos: -7.5,20.5
parent: 2
type: Transform
- - uid: 29490
+ - uid: 29504
components:
- pos: -9.5,19.5
parent: 2
type: Transform
- - uid: 29491
+ - uid: 29505
components:
- pos: -9.5,20.5
parent: 2
type: Transform
- - uid: 29492
+ - uid: 29506
components:
- pos: -11.5,20.5
parent: 2
type: Transform
- - uid: 29493
+ - uid: 29507
components:
- pos: -11.5,19.5
parent: 2
type: Transform
- - uid: 29494
+ - uid: 29508
components:
- pos: 33.5,23.5
parent: 2
type: Transform
- - uid: 29495
+ - uid: 29509
components:
- pos: 34.5,23.5
parent: 2
type: Transform
- - uid: 29496
+ - uid: 29510
components:
- pos: 33.5,17.5
parent: 2
type: Transform
- - uid: 29497
+ - uid: 29511
components:
- rot: 3.141592653589793 rad
pos: 51.5,14.5
parent: 2
type: Transform
- - uid: 29498
+ - uid: 29512
components:
- rot: 3.141592653589793 rad
pos: 55.5,14.5
parent: 2
type: Transform
- - uid: 29499
+ - uid: 29513
components:
- rot: 3.141592653589793 rad
pos: 55.5,10.5
parent: 2
type: Transform
- - uid: 29500
+ - uid: 29514
components:
- rot: 3.141592653589793 rad
pos: 51.5,10.5
parent: 2
type: Transform
- - uid: 29501
+ - uid: 29515
components:
- pos: 61.5,6.5
parent: 2
type: Transform
- - uid: 29502
+ - uid: 29516
components:
- pos: 43.5,18.5
parent: 2
type: Transform
- - uid: 29503
+ - uid: 29517
components:
- pos: 43.5,21.5
parent: 2
type: Transform
- - uid: 29504
+ - uid: 29518
components:
- pos: 44.5,-0.5
parent: 2
type: Transform
- - uid: 29505
+ - uid: 29519
components:
- pos: 47.5,-0.5
parent: 2
type: Transform
- - uid: 29506
+ - uid: 29520
components:
- pos: 48.5,24.5
parent: 2
type: Transform
- - uid: 29507
+ - uid: 29521
components:
- pos: 48.5,23.5
parent: 2
type: Transform
- - uid: 29508
+ - uid: 29522
components:
- pos: 48.5,22.5
parent: 2
type: Transform
- - uid: 29509
+ - uid: 29523
components:
- pos: 51.5,24.5
parent: 2
type: Transform
- - uid: 29510
+ - uid: 29524
components:
- pos: 51.5,23.5
parent: 2
type: Transform
- - uid: 29511
+ - uid: 29525
components:
- pos: 51.5,22.5
parent: 2
type: Transform
- - uid: 29512
+ - uid: 29526
components:
- pos: 54.5,24.5
parent: 2
type: Transform
- - uid: 29513
+ - uid: 29527
components:
- pos: 54.5,23.5
parent: 2
type: Transform
- - uid: 29514
+ - uid: 29528
components:
- pos: 54.5,22.5
parent: 2
type: Transform
- - uid: 29515
+ - uid: 29529
components:
- pos: 57.5,24.5
parent: 2
type: Transform
- - uid: 29516
+ - uid: 29530
components:
- pos: 57.5,23.5
parent: 2
type: Transform
- - uid: 29517
+ - uid: 29531
components:
- pos: 57.5,22.5
parent: 2
type: Transform
- - uid: 29518
+ - uid: 29532
components:
- pos: 60.5,24.5
parent: 2
type: Transform
- - uid: 29519
+ - uid: 29533
components:
- pos: 60.5,23.5
parent: 2
type: Transform
- - uid: 29520
+ - uid: 29534
components:
- pos: 60.5,22.5
parent: 2
type: Transform
- - uid: 29521
+ - uid: 29535
components:
- pos: 62.5,20.5
parent: 2
type: Transform
- - uid: 29522
+ - uid: 29536
components:
- pos: 61.5,20.5
parent: 2
type: Transform
- - uid: 29523
+ - uid: 29537
components:
- pos: 60.5,20.5
parent: 2
type: Transform
- - uid: 29524
+ - uid: 29538
components:
- rot: 1.5707963267948966 rad
pos: 46.5,27.5
parent: 2
type: Transform
- - uid: 29525
+ - uid: 29539
components:
- rot: 1.5707963267948966 rad
pos: 45.5,27.5
parent: 2
type: Transform
- - uid: 29526
+ - uid: 29540
components:
- rot: 1.5707963267948966 rad
pos: 44.5,27.5
parent: 2
type: Transform
- - uid: 29527
+ - uid: 29541
components:
- rot: 1.5707963267948966 rad
pos: 53.5,54.5
parent: 2
type: Transform
- - uid: 29528
+ - uid: 29542
components:
- pos: 62.5,24.5
parent: 2
type: Transform
- - uid: 29529
+ - uid: 29543
components:
- pos: 62.5,23.5
parent: 2
type: Transform
- - uid: 29530
+ - uid: 29544
components:
- rot: 1.5707963267948966 rad
pos: 48.5,11.5
parent: 2
type: Transform
- - uid: 29531
+ - uid: 29545
components:
- rot: 1.5707963267948966 rad
pos: 48.5,17.5
parent: 2
type: Transform
- - uid: 29532
+ - uid: 29546
components:
- rot: 1.5707963267948966 rad
pos: 58.5,17.5
parent: 2
type: Transform
- - uid: 29533
+ - uid: 29547
components:
- rot: 1.5707963267948966 rad
pos: 58.5,11.5
parent: 2
type: Transform
- - uid: 29534
+ - uid: 29548
components:
- rot: 3.141592653589793 rad
pos: 61.5,12.5
parent: 2
type: Transform
- - uid: 29535
+ - uid: 29549
components:
- rot: 3.141592653589793 rad
pos: 61.5,11.5
parent: 2
type: Transform
- - uid: 29536
+ - uid: 29550
components:
- rot: 3.141592653589793 rad
pos: 61.5,10.5
parent: 2
type: Transform
- - uid: 29537
+ - uid: 29551
components:
- rot: 3.141592653589793 rad
pos: 61.5,9.5
parent: 2
type: Transform
- - uid: 29538
+ - uid: 29552
components:
- rot: 3.141592653589793 rad
pos: 61.5,8.5
parent: 2
type: Transform
- - uid: 29539
+ - uid: 29553
components:
- rot: 3.141592653589793 rad
pos: 62.5,8.5
parent: 2
type: Transform
- - uid: 29540
+ - uid: 29554
components:
- rot: 3.141592653589793 rad
pos: 63.5,8.5
parent: 2
type: Transform
- - uid: 29541
+ - uid: 29555
components:
- rot: 3.141592653589793 rad
pos: 63.5,12.5
parent: 2
type: Transform
- - uid: 29542
+ - uid: 29556
components:
- rot: 3.141592653589793 rad
pos: 63.5,10.5
parent: 2
type: Transform
- - uid: 29543
+ - uid: 29557
components:
- rot: -1.5707963267948966 rad
pos: 51.5,12.5
parent: 2
type: Transform
- - uid: 29544
+ - uid: 29558
components:
- pos: 58.5,-0.5
parent: 2
type: Transform
- - uid: 29545
+ - uid: 29559
components:
- pos: 61.5,0.5
parent: 2
type: Transform
- - uid: 29546
+ - uid: 29560
components:
- pos: 62.5,0.5
parent: 2
type: Transform
- - uid: 29547
+ - uid: 29561
components:
- rot: 1.5707963267948966 rad
pos: 55.5,2.5
parent: 2
type: Transform
- - uid: 29548
+ - uid: 29562
components:
- rot: 1.5707963267948966 rad
pos: 55.5,1.5
parent: 2
type: Transform
- - uid: 29549
+ - uid: 29563
components:
- rot: 1.5707963267948966 rad
pos: 55.5,0.5
parent: 2
type: Transform
- - uid: 29550
+ - uid: 29564
components:
- rot: 1.5707963267948966 rad
pos: 55.5,-1.5
parent: 2
type: Transform
- - uid: 29551
+ - uid: 29565
components:
- rot: 1.5707963267948966 rad
pos: 49.5,-0.5
parent: 2
type: Transform
- - uid: 29552
+ - uid: 29566
components:
- rot: 1.5707963267948966 rad
pos: 49.5,-2.5
parent: 2
type: Transform
- - uid: 29553
+ - uid: 29567
components:
- rot: 1.5707963267948966 rad
pos: 49.5,-1.5
parent: 2
type: Transform
- - uid: 29554
+ - uid: 29568
components:
- rot: 1.5707963267948966 rad
pos: 50.5,-2.5
parent: 2
type: Transform
- - uid: 29555
+ - uid: 29569
components:
- rot: 1.5707963267948966 rad
pos: 50.5,-3.5
parent: 2
type: Transform
- - uid: 29556
+ - uid: 29570
components:
- rot: 1.5707963267948966 rad
pos: 55.5,-2.5
parent: 2
type: Transform
- - uid: 29557
+ - uid: 29571
components:
- rot: 1.5707963267948966 rad
pos: 54.5,-2.5
parent: 2
type: Transform
- - uid: 29558
+ - uid: 29572
components:
- rot: 1.5707963267948966 rad
pos: 54.5,-3.5
parent: 2
type: Transform
- - uid: 29559
+ - uid: 29573
components:
- rot: 1.5707963267948966 rad
pos: 50.5,-4.5
parent: 2
type: Transform
- - uid: 29560
+ - uid: 29574
components:
- rot: 1.5707963267948966 rad
pos: 49.5,-4.5
parent: 2
type: Transform
- - uid: 29561
+ - uid: 29575
components:
- rot: 1.5707963267948966 rad
pos: 48.5,-4.5
parent: 2
type: Transform
- - uid: 29562
+ - uid: 29576
components:
- rot: 1.5707963267948966 rad
pos: 47.5,-4.5
parent: 2
type: Transform
- - uid: 29563
+ - uid: 29577
components:
- rot: 1.5707963267948966 rad
pos: 46.5,-4.5
parent: 2
type: Transform
- - uid: 29564
+ - uid: 29578
components:
- rot: -1.5707963267948966 rad
pos: 45.5,-2.5
parent: 2
type: Transform
- - uid: 29565
+ - uid: 29579
components:
- pos: 49.5,-5.5
parent: 2
type: Transform
- - uid: 29566
+ - uid: 29580
components:
- pos: 49.5,-6.5
parent: 2
type: Transform
- - uid: 29567
+ - uid: 29581
components:
- pos: 49.5,-10.5
parent: 2
type: Transform
- - uid: 29568
+ - uid: 29582
components:
- pos: 48.5,-10.5
parent: 2
type: Transform
- - uid: 29569
+ - uid: 29583
components:
- rot: 1.5707963267948966 rad
pos: 54.5,-4.5
parent: 2
type: Transform
- - uid: 29570
+ - uid: 29584
components:
- rot: 1.5707963267948966 rad
pos: 55.5,-4.5
parent: 2
type: Transform
- - uid: 29571
+ - uid: 29585
components:
- rot: 1.5707963267948966 rad
pos: 56.5,-4.5
parent: 2
type: Transform
- - uid: 29572
+ - uid: 29586
components:
- rot: 1.5707963267948966 rad
pos: 58.5,-4.5
parent: 2
type: Transform
- - uid: 29573
+ - uid: 29587
components:
- pos: 19.5,-48.5
parent: 2
type: Transform
- - uid: 29574
+ - uid: 29588
components:
- pos: 18.5,-48.5
parent: 2
type: Transform
- - uid: 29575
+ - uid: 29589
components:
- rot: -1.5707963267948966 rad
pos: 45.5,-4.5
parent: 2
type: Transform
- - uid: 29576
+ - uid: 29590
components:
- rot: -1.5707963267948966 rad
pos: 40.5,-2.5
parent: 2
type: Transform
- - uid: 29577
+ - uid: 29591
components:
- rot: -1.5707963267948966 rad
pos: 40.5,-3.5
parent: 2
type: Transform
- - uid: 29578
+ - uid: 29592
components:
- rot: -1.5707963267948966 rad
pos: 45.5,-1.5
parent: 2
type: Transform
- - uid: 29579
+ - uid: 29593
components:
- rot: -1.5707963267948966 rad
pos: 40.5,-5.5
parent: 2
type: Transform
- - uid: 29580
+ - uid: 29594
components:
- rot: -1.5707963267948966 rad
pos: 39.5,-6.5
parent: 2
type: Transform
- - uid: 29581
+ - uid: 29595
components:
- rot: -1.5707963267948966 rad
pos: 45.5,-5.5
parent: 2
type: Transform
- - uid: 29582
+ - uid: 29596
components:
- rot: -1.5707963267948966 rad
pos: 37.5,-6.5
parent: 2
type: Transform
- - uid: 29583
+ - uid: 29597
components:
- rot: -1.5707963267948966 rad
pos: 37.5,-7.5
parent: 2
type: Transform
- - uid: 29584
+ - uid: 29598
components:
- rot: -1.5707963267948966 rad
pos: 45.5,-3.5
parent: 2
type: Transform
- - uid: 29585
+ - uid: 29599
components:
- pos: 40.5,-6.5
parent: 2
type: Transform
- - uid: 29586
+ - uid: 29600
components:
- pos: -14.5,-18.5
parent: 2
type: Transform
- - uid: 29587
+ - uid: 29601
components:
- pos: 24.5,-54.5
parent: 2
type: Transform
- - uid: 29588
+ - uid: 29602
components:
- pos: -17.5,-21.5
parent: 2
type: Transform
- - uid: 29589
+ - uid: 29603
components:
- pos: 55.5,-7.5
parent: 2
type: Transform
- - uid: 29590
+ - uid: 29604
components:
- pos: 49.5,-3.5
parent: 2
type: Transform
- - uid: 29591
+ - uid: 29605
components:
- pos: 58.5,0.5
parent: 2
type: Transform
- - uid: 29592
+ - uid: 29606
components:
- pos: 58.5,-1.5
parent: 2
type: Transform
- - uid: 29593
+ - uid: 29607
components:
- pos: 58.5,-2.5
parent: 2
type: Transform
- - uid: 29594
+ - uid: 29608
components:
- pos: 57.5,-2.5
parent: 2
type: Transform
- - uid: 29595
+ - uid: 29609
components:
- pos: 59.5,-4.5
parent: 2
type: Transform
- - uid: 29596
+ - uid: 29610
components:
- pos: 48.5,-9.5
parent: 2
type: Transform
- - uid: 29597
+ - uid: 29611
components:
- pos: 48.5,-6.5
parent: 2
type: Transform
- - uid: 29598
+ - uid: 29612
components:
- pos: 48.5,-7.5
parent: 2
type: Transform
- - uid: 29599
+ - uid: 29613
components:
- pos: 6.5,-17.5
parent: 2
type: Transform
- - uid: 29600
+ - uid: 29614
components:
- rot: 1.5707963267948966 rad
pos: 66.5,-6.5
parent: 2
type: Transform
- - uid: 29601
+ - uid: 29615
components:
- rot: 1.5707963267948966 rad
pos: 66.5,-12.5
parent: 2
type: Transform
- - uid: 29602
+ - uid: 29616
components:
- rot: 1.5707963267948966 rad
pos: 66.5,-10.5
parent: 2
type: Transform
- - uid: 29603
+ - uid: 29617
components:
- pos: 65.5,-4.5
parent: 2
type: Transform
- - uid: 29604
+ - uid: 29618
components:
- pos: 63.5,-4.5
parent: 2
type: Transform
- - uid: 29605
+ - uid: 29619
components:
- pos: 61.5,-4.5
parent: 2
type: Transform
- - uid: 29606
+ - uid: 29620
components:
- rot: -1.5707963267948966 rad
pos: 62.5,-4.5
parent: 2
type: Transform
- - uid: 29607
+ - uid: 29621
components:
- pos: 53.5,-14.5
parent: 2
type: Transform
- - uid: 29608
+ - uid: 29622
components:
- pos: 61.5,-14.5
parent: 2
type: Transform
- - uid: 29609
+ - uid: 29623
components:
- pos: 60.5,-14.5
parent: 2
type: Transform
- - uid: 29610
+ - uid: 29624
components:
- pos: 59.5,-7.5
parent: 2
type: Transform
- - uid: 29611
+ - uid: 29625
components:
- pos: 58.5,-7.5
parent: 2
type: Transform
- - uid: 29612
+ - uid: 29626
components:
- pos: 57.5,-7.5
parent: 2
type: Transform
- - uid: 29613
+ - uid: 29627
components:
- pos: 56.5,-7.5
parent: 2
type: Transform
- - uid: 29614
+ - uid: 29628
components:
- pos: 59.5,-9.5
parent: 2
type: Transform
- - uid: 29615
+ - uid: 29629
components:
- pos: 58.5,-9.5
parent: 2
type: Transform
- - uid: 29616
+ - uid: 29630
components:
- pos: 57.5,-9.5
parent: 2
type: Transform
- - uid: 29617
+ - uid: 29631
components:
- pos: 56.5,-9.5
parent: 2
type: Transform
- - uid: 29618
+ - uid: 29632
components:
- pos: 55.5,-9.5
parent: 2
type: Transform
- - uid: 29619
+ - uid: 29633
components:
- pos: 55.5,-8.5
parent: 2
type: Transform
- - uid: 29620
+ - uid: 29634
components:
- rot: 3.141592653589793 rad
pos: 58.5,-3.5
parent: 2
type: Transform
- - uid: 29621
+ - uid: 29635
components:
- pos: 60.5,-29.5
parent: 2
type: Transform
- - uid: 29622
+ - uid: 29636
components:
- pos: 60.5,-30.5
parent: 2
type: Transform
- - uid: 29623
+ - uid: 29637
components:
- pos: 49.5,-11.5
parent: 2
type: Transform
- - uid: 29624
+ - uid: 29638
components:
- pos: 49.5,-12.5
parent: 2
type: Transform
- - uid: 29625
+ - uid: 29639
components:
- pos: 50.5,-12.5
parent: 2
type: Transform
- - uid: 29626
+ - uid: 29640
components:
- pos: 35.5,-11.5
parent: 2
type: Transform
- - uid: 29627
+ - uid: 29641
components:
- pos: 37.5,-9.5
parent: 2
type: Transform
- - uid: 29628
+ - uid: 29642
components:
- pos: 38.5,-9.5
parent: 2
type: Transform
- - uid: 29629
+ - uid: 29643
components:
- pos: 39.5,-9.5
parent: 2
type: Transform
- - uid: 29630
+ - uid: 29644
components:
- pos: 39.5,-8.5
parent: 2
type: Transform
- - uid: 29631
+ - uid: 29645
components:
- pos: 41.5,-6.5
parent: 2
type: Transform
- - uid: 29632
+ - uid: 29646
components:
- pos: 41.5,-7.5
parent: 2
type: Transform
- - uid: 29633
+ - uid: 29647
components:
- pos: 41.5,-8.5
parent: 2
type: Transform
- - uid: 29634
+ - uid: 29648
components:
- pos: 41.5,-9.5
parent: 2
type: Transform
- - uid: 29635
+ - uid: 29649
components:
- pos: 41.5,-10.5
parent: 2
type: Transform
- - uid: 29636
+ - uid: 29650
components:
- pos: 39.5,-10.5
parent: 2
type: Transform
- - uid: 29637
+ - uid: 29651
components:
- pos: 39.5,-11.5
parent: 2
type: Transform
- - uid: 29638
+ - uid: 29652
components:
- pos: 37.5,-11.5
parent: 2
type: Transform
- - uid: 29639
+ - uid: 29653
components:
- pos: 37.5,-12.5
parent: 2
type: Transform
- - uid: 29640
+ - uid: 29654
components:
- pos: 37.5,-14.5
parent: 2
type: Transform
- - uid: 29641
+ - uid: 29655
components:
- pos: 45.5,-6.5
parent: 2
type: Transform
- - uid: 29642
+ - uid: 29656
components:
- pos: 45.5,-7.5
parent: 2
type: Transform
- - uid: 29643
+ - uid: 29657
components:
- pos: 45.5,-8.5
parent: 2
type: Transform
- - uid: 29644
+ - uid: 29658
components:
- pos: 45.5,-9.5
parent: 2
type: Transform
- - uid: 29645
+ - uid: 29659
components:
- pos: 43.5,-9.5
parent: 2
type: Transform
- - uid: 29646
+ - uid: 29660
components:
- pos: 45.5,-10.5
parent: 2
type: Transform
- - uid: 29647
+ - uid: 29661
components:
- pos: 45.5,-12.5
parent: 2
type: Transform
- - uid: 29648
+ - uid: 29662
components:
- pos: 44.5,-12.5
parent: 2
type: Transform
- - uid: 29649
+ - uid: 29663
components:
- pos: 42.5,-12.5
parent: 2
type: Transform
- - uid: 29650
+ - uid: 29664
components:
- pos: 41.5,-12.5
parent: 2
type: Transform
- - uid: 29651
+ - uid: 29665
components:
- pos: 41.5,-13.5
parent: 2
type: Transform
- - uid: 29652
+ - uid: 29666
components:
- pos: 40.5,-13.5
parent: 2
type: Transform
- - uid: 29653
+ - uid: 29667
components:
- pos: 39.5,-13.5
parent: 2
type: Transform
- - uid: 29654
+ - uid: 29668
components:
- pos: 46.5,-12.5
parent: 2
type: Transform
- - uid: 29655
+ - uid: 29669
components:
- pos: 47.5,-12.5
parent: 2
type: Transform
- - uid: 29656
+ - uid: 29670
components:
- pos: 47.5,-11.5
parent: 2
type: Transform
- - uid: 29657
+ - uid: 29671
components:
- pos: 47.5,-10.5
parent: 2
type: Transform
- - uid: 29658
+ - uid: 29672
components:
- pos: 46.5,-6.5
parent: 2
type: Transform
- - uid: 29659
+ - uid: 29673
components:
- pos: 69.5,-35.5
parent: 2
type: Transform
- - uid: 29660
+ - uid: 29674
components:
- pos: 66.5,-36.5
parent: 2
type: Transform
- - uid: 29661
+ - uid: 29675
components:
- pos: 58.5,-40.5
parent: 2
type: Transform
- - uid: 29662
+ - uid: 29676
components:
- pos: 58.5,-41.5
parent: 2
type: Transform
- - uid: 29663
+ - uid: 29677
components:
- pos: 58.5,-42.5
parent: 2
type: Transform
- - uid: 29664
+ - uid: 29678
components:
- pos: 65.5,-36.5
parent: 2
type: Transform
- - uid: 29665
+ - uid: 29679
components:
- rot: 1.5707963267948966 rad
pos: 60.5,-38.5
parent: 2
type: Transform
- - uid: 29666
+ - uid: 29680
components:
- rot: 1.5707963267948966 rad
pos: 60.5,-39.5
parent: 2
type: Transform
- - uid: 29667
+ - uid: 29681
components:
- pos: 60.5,-41.5
parent: 2
type: Transform
- - uid: 29668
+ - uid: 29682
components:
- pos: 41.5,-40.5
parent: 2
type: Transform
- - uid: 29669
+ - uid: 29683
components:
- rot: -1.5707963267948966 rad
pos: 44.5,-34.5
parent: 2
type: Transform
- - uid: 29670
+ - uid: 29684
components:
- rot: -1.5707963267948966 rad
pos: 47.5,-34.5
parent: 2
type: Transform
- - uid: 29671
+ - uid: 29685
components:
- rot: -1.5707963267948966 rad
pos: 42.5,-34.5
parent: 2
type: Transform
- - uid: 29672
+ - uid: 29686
components:
- rot: -1.5707963267948966 rad
pos: 51.5,-36.5
parent: 2
type: Transform
- - uid: 29673
+ - uid: 29687
components:
- rot: 3.141592653589793 rad
pos: 44.5,-40.5
parent: 2
type: Transform
- - uid: 29674
+ - uid: 29688
components:
- pos: 47.5,-40.5
parent: 2
type: Transform
- - uid: 29675
+ - uid: 29689
components:
- pos: 47.5,-44.5
parent: 2
type: Transform
- - uid: 29676
+ - uid: 29690
components:
- pos: 46.5,-44.5
parent: 2
type: Transform
- - uid: 29677
+ - uid: 29691
components:
- pos: 45.5,-44.5
parent: 2
type: Transform
- - uid: 29678
+ - uid: 29692
components:
- pos: 41.5,-44.5
parent: 2
type: Transform
- - uid: 29679
+ - uid: 29693
components:
- rot: -1.5707963267948966 rad
pos: 40.5,-34.5
parent: 2
type: Transform
- - uid: 29680
+ - uid: 29694
components:
- rot: -1.5707963267948966 rad
pos: 52.5,-36.5
parent: 2
type: Transform
- - uid: 29681
+ - uid: 29695
components:
- pos: 53.5,-38.5
parent: 2
type: Transform
- - uid: 29682
+ - uid: 29696
components:
- rot: -1.5707963267948966 rad
pos: 41.5,-34.5
parent: 2
type: Transform
- - uid: 29683
+ - uid: 29697
components:
- pos: 47.5,-39.5
parent: 2
type: Transform
- - uid: 29684
+ - uid: 29698
components:
- pos: 47.5,-38.5
parent: 2
type: Transform
- - uid: 29685
+ - uid: 29699
components:
- pos: 54.5,-39.5
parent: 2
type: Transform
- - uid: 29686
+ - uid: 29700
components:
- pos: 52.5,-38.5
parent: 2
type: Transform
- - uid: 29687
+ - uid: 29701
components:
- pos: 54.5,-38.5
parent: 2
type: Transform
- - uid: 29688
+ - uid: 29702
components:
- pos: 56.5,-33.5
parent: 2
type: Transform
- - uid: 29689
+ - uid: 29703
components:
- pos: 59.5,-37.5
parent: 2
type: Transform
- - uid: 29690
+ - uid: 29704
components:
- pos: 59.5,-36.5
parent: 2
type: Transform
- - uid: 29691
+ - uid: 29705
components:
- pos: 58.5,-36.5
parent: 2
type: Transform
- - uid: 29692
+ - uid: 29706
components:
- pos: 47.5,-47.5
parent: 2
type: Transform
- - uid: 29693
+ - uid: 29707
components:
- pos: 54.5,-43.5
parent: 2
type: Transform
- - uid: 29694
+ - uid: 29708
components:
- pos: 51.5,-48.5
parent: 2
type: Transform
- - uid: 29695
+ - uid: 29709
components:
- pos: 48.5,-48.5
parent: 2
type: Transform
- - uid: 29696
+ - uid: 29710
components:
- pos: 47.5,-48.5
parent: 2
type: Transform
- - uid: 29697
+ - uid: 29711
components:
- pos: 56.5,-39.5
parent: 2
type: Transform
- - uid: 29698
+ - uid: 29712
components:
- pos: 57.5,-39.5
parent: 2
type: Transform
- - uid: 29699
+ - uid: 29713
components:
- rot: -1.5707963267948966 rad
pos: 48.5,-36.5
parent: 2
type: Transform
- - uid: 29700
+ - uid: 29714
components:
- pos: 58.5,-43.5
parent: 2
type: Transform
- - uid: 29701
+ - uid: 29715
components:
- pos: 55.5,-43.5
parent: 2
type: Transform
- - uid: 29702
+ - uid: 29716
components:
- pos: 56.5,-43.5
parent: 2
type: Transform
- - uid: 29703
+ - uid: 29717
components:
- pos: 47.5,-49.5
parent: 2
type: Transform
- - uid: 29704
+ - uid: 29718
components:
- pos: 47.5,-50.5
parent: 2
type: Transform
- - uid: 29705
+ - uid: 29719
components:
- pos: 46.5,-50.5
parent: 2
type: Transform
- - uid: 29706
+ - uid: 29720
components:
- pos: 45.5,-50.5
parent: 2
type: Transform
- - uid: 29707
+ - uid: 29721
components:
- pos: 44.5,-50.5
parent: 2
type: Transform
- - uid: 29708
+ - uid: 29722
components:
- pos: 43.5,-50.5
parent: 2
type: Transform
- - uid: 29709
+ - uid: 29723
components:
- pos: 42.5,-50.5
parent: 2
type: Transform
- - uid: 29710
+ - uid: 29724
components:
- pos: 41.5,-50.5
parent: 2
type: Transform
- - uid: 29711
+ - uid: 29725
components:
- pos: 57.5,-31.5
parent: 2
type: Transform
- - uid: 29712
+ - uid: 29726
components:
- pos: 47.5,-35.5
parent: 2
type: Transform
- - uid: 29713
+ - uid: 29727
components:
- rot: -1.5707963267948966 rad
pos: 46.5,-34.5
parent: 2
type: Transform
- - uid: 29714
+ - uid: 29728
components:
- pos: 66.5,-49.5
parent: 2
type: Transform
- - uid: 29715
+ - uid: 29729
components:
- pos: 66.5,-44.5
parent: 2
type: Transform
- - uid: 29716
+ - uid: 29730
components:
- pos: 66.5,-43.5
parent: 2
type: Transform
- - uid: 29717
+ - uid: 29731
components:
- pos: 37.5,-44.5
parent: 2
type: Transform
- - uid: 29718
+ - uid: 29732
components:
- pos: 40.5,-45.5
parent: 2
type: Transform
- - uid: 29719
+ - uid: 29733
components:
- pos: 40.5,-47.5
parent: 2
type: Transform
- - uid: 29720
+ - uid: 29734
components:
- pos: 40.5,-44.5
parent: 2
type: Transform
- - uid: 29721
+ - uid: 29735
components:
- pos: 40.5,-48.5
parent: 2
type: Transform
- - uid: 29722
+ - uid: 29736
components:
- rot: -1.5707963267948966 rad
pos: -17.5,23.5
parent: 2
type: Transform
- - uid: 29723
+ - uid: 29737
components:
- pos: 46.5,-40.5
parent: 2
type: Transform
- - uid: 29724
+ - uid: 29738
components:
- pos: 52.5,-59.5
parent: 2
type: Transform
- - uid: 29725
+ - uid: 29739
components:
- pos: 52.5,-60.5
parent: 2
type: Transform
- - uid: 29726
+ - uid: 29740
components:
- pos: 66.5,-35.5
parent: 2
type: Transform
- - uid: 29727
+ - uid: 29741
components:
- pos: 67.5,-35.5
parent: 2
type: Transform
- - uid: 29728
+ - uid: 29742
components:
- pos: 68.5,-35.5
parent: 2
type: Transform
- - uid: 29729
+ - uid: 29743
components:
- rot: -1.5707963267948966 rad
pos: 66.5,-47.5
parent: 2
type: Transform
- - uid: 29730
+ - uid: 29744
components:
- rot: 3.141592653589793 rad
pos: 40.5,-46.5
parent: 2
type: Transform
- - uid: 29731
+ - uid: 29745
components:
- pos: 8.5,-51.5
parent: 2
type: Transform
- - uid: 29732
+ - uid: 29746
components:
- pos: 38.5,-47.5
parent: 2
type: Transform
- - uid: 29733
+ - uid: 29747
components:
- pos: 37.5,-47.5
parent: 2
type: Transform
- - uid: 29734
+ - uid: 29748
components:
- pos: 37.5,-46.5
parent: 2
type: Transform
- - uid: 29735
+ - uid: 29749
components:
- pos: 37.5,-45.5
parent: 2
type: Transform
- - uid: 29736
+ - uid: 29750
components:
- pos: 57.5,-63.5
parent: 2
type: Transform
- - uid: 29737
+ - uid: 29751
components:
- pos: 57.5,-36.5
parent: 2
type: Transform
- - uid: 29738
+ - uid: 29752
components:
- pos: 74.5,-50.5
parent: 2
type: Transform
- - uid: 29739
+ - uid: 29753
components:
- pos: 59.5,-30.5
parent: 2
type: Transform
- - uid: 29740
+ - uid: 29754
components:
- pos: 56.5,-31.5
parent: 2
type: Transform
- - uid: 29741
+ - uid: 29755
components:
- pos: 58.5,-31.5
parent: 2
type: Transform
- - uid: 29742
+ - uid: 29756
components:
- rot: -1.5707963267948966 rad
pos: 47.5,-36.5
parent: 2
type: Transform
- - uid: 29743
+ - uid: 29757
components:
- rot: 1.5707963267948966 rad
pos: 29.5,-46.5
parent: 2
type: Transform
- - uid: 29744
+ - uid: 29758
components:
- rot: 1.5707963267948966 rad
pos: 30.5,-46.5
parent: 2
type: Transform
- - uid: 29745
+ - uid: 29759
components:
- rot: 1.5707963267948966 rad
pos: 32.5,-46.5
parent: 2
type: Transform
- - uid: 29746
+ - uid: 29760
components:
- rot: 1.5707963267948966 rad
pos: 34.5,-46.5
parent: 2
type: Transform
- - uid: 29747
+ - uid: 29761
components:
- rot: 1.5707963267948966 rad
pos: 35.5,-46.5
parent: 2
type: Transform
- - uid: 29748
+ - uid: 29762
components:
- rot: 1.5707963267948966 rad
pos: 35.5,-45.5
parent: 2
type: Transform
- - uid: 29749
+ - uid: 29763
components:
- rot: 1.5707963267948966 rad
pos: 35.5,-47.5
parent: 2
type: Transform
- - uid: 29750
+ - uid: 29764
components:
- rot: 1.5707963267948966 rad
pos: 35.5,-48.5
parent: 2
type: Transform
- - uid: 29751
+ - uid: 29765
components:
- rot: 1.5707963267948966 rad
pos: 35.5,-49.5
parent: 2
type: Transform
- - uid: 29752
+ - uid: 29766
components:
- rot: 1.5707963267948966 rad
pos: 35.5,-50.5
parent: 2
type: Transform
- - uid: 29753
+ - uid: 29767
components:
- rot: 1.5707963267948966 rad
pos: 35.5,-51.5
parent: 2
type: Transform
- - uid: 29754
+ - uid: 29768
components:
- rot: 1.5707963267948966 rad
pos: 35.5,-53.5
parent: 2
type: Transform
- - uid: 29755
+ - uid: 29769
components:
- pos: 35.5,-52.5
parent: 2
type: Transform
- - uid: 29756
+ - uid: 29770
components:
- rot: 1.5707963267948966 rad
pos: 35.5,-55.5
parent: 2
type: Transform
- - uid: 29757
+ - uid: 29771
components:
- rot: 1.5707963267948966 rad
pos: 35.5,-56.5
parent: 2
type: Transform
- - uid: 29758
+ - uid: 29772
components:
- rot: 1.5707963267948966 rad
pos: 35.5,-57.5
parent: 2
type: Transform
- - uid: 29759
+ - uid: 29773
components:
- rot: 1.5707963267948966 rad
pos: 34.5,-57.5
parent: 2
type: Transform
- - uid: 29760
+ - uid: 29774
components:
- pos: 60.5,-37.5
parent: 2
type: Transform
- - uid: 29761
+ - uid: 29775
components:
- pos: 44.5,-55.5
parent: 2
type: Transform
- - uid: 29762
+ - uid: 29776
components:
- pos: 44.5,-54.5
parent: 2
type: Transform
- - uid: 29763
+ - uid: 29777
components:
- pos: 44.5,-53.5
parent: 2
type: Transform
- - uid: 29764
+ - uid: 29778
components:
- pos: 44.5,-52.5
parent: 2
type: Transform
- - uid: 29765
+ - uid: 29779
components:
- pos: 44.5,-51.5
parent: 2
type: Transform
- - uid: 29766
+ - uid: 29780
components:
- pos: 45.5,-55.5
parent: 2
type: Transform
- - uid: 29767
+ - uid: 29781
components:
- rot: 3.141592653589793 rad
pos: 46.5,-55.5
parent: 2
type: Transform
- - uid: 29768
+ - uid: 29782
components:
- pos: 47.5,-55.5
parent: 2
type: Transform
- - uid: 29769
+ - uid: 29783
components:
- rot: 3.141592653589793 rad
pos: 44.5,-57.5
parent: 2
type: Transform
- - uid: 29770
+ - uid: 29784
components:
- rot: 3.141592653589793 rad
pos: 44.5,-58.5
parent: 2
type: Transform
- - uid: 29771
+ - uid: 29785
components:
- rot: 3.141592653589793 rad
pos: 44.5,-59.5
parent: 2
type: Transform
- - uid: 29772
+ - uid: 29786
components:
- rot: 3.141592653589793 rad
pos: 44.5,-60.5
parent: 2
type: Transform
- - uid: 29773
+ - uid: 29787
components:
- pos: 41.5,-63.5
parent: 2
type: Transform
- - uid: 29774
+ - uid: 29788
components:
- pos: 41.5,-62.5
parent: 2
type: Transform
- - uid: 29775
+ - uid: 29789
components:
- pos: 46.5,-61.5
parent: 2
type: Transform
- - uid: 29776
+ - uid: 29790
components:
- pos: 52.5,-56.5
parent: 2
type: Transform
- - uid: 29777
+ - uid: 29791
components:
- pos: 48.5,-59.5
parent: 2
type: Transform
- - uid: 29778
+ - uid: 29792
components:
- pos: 47.5,-59.5
parent: 2
type: Transform
- - uid: 29779
+ - uid: 29793
components:
- pos: 47.5,-60.5
parent: 2
type: Transform
- - uid: 29780
+ - uid: 29794
components:
- pos: 47.5,-61.5
parent: 2
type: Transform
- - uid: 29781
+ - uid: 29795
components:
- pos: 45.5,-61.5
parent: 2
type: Transform
- - uid: 29782
+ - uid: 29796
components:
- pos: 44.5,-61.5
parent: 2
type: Transform
- - uid: 29783
+ - uid: 29797
components:
- pos: 43.5,-61.5
parent: 2
type: Transform
- - uid: 29784
+ - uid: 29798
components:
- pos: 42.5,-61.5
parent: 2
type: Transform
- - uid: 29785
+ - uid: 29799
components:
- pos: 41.5,-61.5
parent: 2
type: Transform
- - uid: 29786
+ - uid: 29800
components:
- pos: -18.5,0.5
parent: 2
type: Transform
- - uid: 29787
+ - uid: 29801
components:
- pos: -20.5,0.5
parent: 2
type: Transform
- - uid: 29788
+ - uid: 29802
components:
- rot: -1.5707963267948966 rad
pos: -22.5,-16.5
parent: 2
type: Transform
- - uid: 29789
+ - uid: 29803
components:
- pos: -30.5,-9.5
parent: 2
type: Transform
- - uid: 29790
+ - uid: 29804
components:
- pos: -27.5,-15.5
parent: 2
type: Transform
- - uid: 29791
+ - uid: 29805
components:
- pos: -28.5,-15.5
parent: 2
type: Transform
- - uid: 29792
+ - uid: 29806
components:
- pos: -29.5,-15.5
parent: 2
type: Transform
- - uid: 29793
+ - uid: 29807
components:
- pos: -30.5,-15.5
parent: 2
type: Transform
- - uid: 29794
+ - uid: 29808
components:
- pos: -30.5,-11.5
parent: 2
type: Transform
- - uid: 29795
+ - uid: 29809
components:
- pos: -30.5,-14.5
parent: 2
type: Transform
- - uid: 29796
+ - uid: 29810
components:
- pos: -33.5,-13.5
parent: 2
type: Transform
- - uid: 29797
+ - uid: 29811
components:
- pos: -27.5,-19.5
parent: 2
type: Transform
- - uid: 29798
+ - uid: 29812
components:
- rot: -1.5707963267948966 rad
pos: -22.5,-18.5
parent: 2
type: Transform
- - uid: 29799
+ - uid: 29813
components:
- pos: -30.5,-19.5
parent: 2
type: Transform
- - uid: 29800
+ - uid: 29814
components:
- rot: -1.5707963267948966 rad
pos: -27.5,-6.5
parent: 2
type: Transform
- - uid: 29801
+ - uid: 29815
components:
- rot: -1.5707963267948966 rad
pos: -27.5,-5.5
parent: 2
type: Transform
- - uid: 29802
+ - uid: 29816
components:
- rot: -1.5707963267948966 rad
pos: -27.5,-4.5
parent: 2
type: Transform
- - uid: 29803
+ - uid: 29817
components:
- rot: -1.5707963267948966 rad
pos: -27.5,-3.5
parent: 2
type: Transform
- - uid: 29804
+ - uid: 29818
components:
- rot: -1.5707963267948966 rad
pos: -27.5,-2.5
parent: 2
type: Transform
- - uid: 29805
+ - uid: 29819
components:
- rot: -1.5707963267948966 rad
pos: -27.5,-1.5
parent: 2
type: Transform
- - uid: 29806
+ - uid: 29820
components:
- pos: -28.5,2.5
parent: 2
type: Transform
- - uid: 29807
+ - uid: 29821
components:
- pos: -28.5,-1.5
parent: 2
type: Transform
- - uid: 29808
+ - uid: 29822
components:
- rot: 3.141592653589793 rad
pos: -27.5,-7.5
parent: 2
type: Transform
- - uid: 29809
+ - uid: 29823
components:
- rot: -1.5707963267948966 rad
pos: -27.5,2.5
parent: 2
type: Transform
- - uid: 29810
+ - uid: 29824
components:
- rot: -1.5707963267948966 rad
pos: -27.5,3.5
parent: 2
type: Transform
- - uid: 29811
+ - uid: 29825
components:
- rot: -1.5707963267948966 rad
pos: -27.5,4.5
parent: 2
type: Transform
- - uid: 29812
+ - uid: 29826
components:
- rot: -1.5707963267948966 rad
pos: -27.5,5.5
parent: 2
type: Transform
- - uid: 29813
+ - uid: 29827
components:
- rot: -1.5707963267948966 rad
pos: -27.5,7.5
parent: 2
type: Transform
- - uid: 29814
+ - uid: 29828
components:
- rot: -1.5707963267948966 rad
pos: -27.5,8.5
parent: 2
type: Transform
- - uid: 29815
+ - uid: 29829
components:
- rot: -1.5707963267948966 rad
pos: -27.5,9.5
parent: 2
type: Transform
- - uid: 29816
+ - uid: 29830
components:
- pos: -28.5,12.5
parent: 2
type: Transform
- - uid: 29817
+ - uid: 29831
components:
- rot: -1.5707963267948966 rad
pos: -29.5,-18.5
parent: 2
type: Transform
- - uid: 29818
+ - uid: 29832
components:
- rot: -1.5707963267948966 rad
pos: -28.5,-18.5
parent: 2
type: Transform
- - uid: 29819
+ - uid: 29833
components:
- pos: -22.5,-25.5
parent: 2
type: Transform
- - uid: 29820
+ - uid: 29834
components:
- pos: -23.5,-25.5
parent: 2
type: Transform
- - uid: 29821
+ - uid: 29835
components:
- pos: -24.5,-25.5
parent: 2
type: Transform
- - uid: 29822
+ - uid: 29836
components:
- pos: -25.5,-25.5
parent: 2
type: Transform
- - uid: 29823
+ - uid: 29837
components:
- pos: -26.5,-25.5
parent: 2
type: Transform
- - uid: 29824
+ - uid: 29838
components:
- pos: -27.5,-25.5
parent: 2
type: Transform
- - uid: 29825
+ - uid: 29839
components:
- pos: -27.5,-23.5
parent: 2
type: Transform
- - uid: 29826
+ - uid: 29840
components:
- pos: -27.5,-24.5
parent: 2
type: Transform
- - uid: 29827
+ - uid: 29841
components:
- pos: -27.5,-21.5
parent: 2
type: Transform
- - uid: 29828
+ - uid: 29842
components:
- pos: -27.5,-20.5
parent: 2
type: Transform
- - uid: 29829
+ - uid: 29843
components:
- rot: -1.5707963267948966 rad
pos: -21.5,-23.5
parent: 2
type: Transform
- - uid: 29830
+ - uid: 29844
components:
- rot: -1.5707963267948966 rad
pos: -26.5,-18.5
parent: 2
type: Transform
- - uid: 29831
+ - uid: 29845
components:
- rot: -1.5707963267948966 rad
pos: -28.5,-24.5
parent: 2
type: Transform
- - uid: 29832
+ - uid: 29846
components:
- rot: -1.5707963267948966 rad
pos: -29.5,-24.5
parent: 2
type: Transform
- - uid: 29833
+ - uid: 29847
components:
- rot: -1.5707963267948966 rad
pos: -30.5,-24.5
parent: 2
type: Transform
- - uid: 29834
+ - uid: 29848
components:
- rot: -1.5707963267948966 rad
pos: -30.5,-20.5
parent: 2
type: Transform
- - uid: 29835
+ - uid: 29849
components:
- pos: -30.5,-21.5
parent: 2
type: Transform
- - uid: 29836
+ - uid: 29850
components:
- pos: -30.5,-22.5
parent: 2
type: Transform
- - uid: 29837
+ - uid: 29851
components:
- pos: 50.5,41.5
parent: 2
type: Transform
- - uid: 29838
+ - uid: 29852
components:
- pos: -21.5,-25.5
parent: 2
type: Transform
- - uid: 29839
+ - uid: 29853
components:
- pos: -21.5,-27.5
parent: 2
type: Transform
- - uid: 29840
+ - uid: 29854
components:
- pos: -21.5,-28.5
parent: 2
type: Transform
- - uid: 29841
+ - uid: 29855
components:
- pos: -21.5,-29.5
parent: 2
type: Transform
- - uid: 29842
+ - uid: 29856
components:
- pos: -21.5,-30.5
parent: 2
type: Transform
- - uid: 29843
+ - uid: 29857
components:
- pos: -21.5,-31.5
parent: 2
type: Transform
- - uid: 29844
+ - uid: 29858
components:
- pos: -21.5,-33.5
parent: 2
type: Transform
- - uid: 29845
+ - uid: 29859
components:
- pos: -21.5,-36.5
parent: 2
type: Transform
- - uid: 29846
+ - uid: 29860
components:
- pos: -21.5,-37.5
parent: 2
type: Transform
- - uid: 29847
+ - uid: 29861
components:
- pos: -21.5,-38.5
parent: 2
type: Transform
- - uid: 29848
+ - uid: 29862
components:
- pos: -21.5,-39.5
parent: 2
type: Transform
- - uid: 29849
+ - uid: 29863
components:
- pos: -21.5,-40.5
parent: 2
type: Transform
- - uid: 29850
+ - uid: 29864
components:
- pos: -21.5,-41.5
parent: 2
type: Transform
- - uid: 29851
+ - uid: 29865
components:
- pos: -21.5,-43.5
parent: 2
type: Transform
- - uid: 29852
+ - uid: 29866
components:
- pos: 37.5,-49.5
parent: 2
type: Transform
- - uid: 29853
+ - uid: 29867
components:
- pos: 38.5,-49.5
parent: 2
type: Transform
- - uid: 29854
+ - uid: 29868
components:
- pos: 39.5,-50.5
parent: 2
type: Transform
- - uid: 29855
+ - uid: 29869
components:
- pos: 38.5,-50.5
parent: 2
type: Transform
- - uid: 29856
+ - uid: 29870
components:
- pos: -1.5,-12.5
parent: 2
type: Transform
- - uid: 29857
+ - uid: 29871
components:
- pos: -1.5,-13.5
parent: 2
type: Transform
- - uid: 29858
+ - uid: 29872
components:
- pos: 57.5,-61.5
parent: 2
type: Transform
- - uid: 29859
+ - uid: 29873
components:
- pos: 6.5,-58.5
parent: 2
type: Transform
- - uid: 29860
+ - uid: 29874
components:
- pos: -22.5,-27.5
parent: 2
type: Transform
- - uid: 29861
+ - uid: 29875
components:
- pos: -17.5,-30.5
parent: 2
type: Transform
- - uid: 29862
+ - uid: 29876
components:
- rot: 3.141592653589793 rad
pos: 42.5,-58.5
parent: 2
type: Transform
- - uid: 29863
+ - uid: 29877
components:
- rot: 3.141592653589793 rad
pos: 42.5,-60.5
parent: 2
type: Transform
- - uid: 29864
+ - uid: 29878
components:
- pos: 9.5,-69.5
parent: 2
type: Transform
- - uid: 29865
+ - uid: 29879
components:
- pos: 5.5,-72.5
parent: 2
type: Transform
- - uid: 29866
+ - uid: 29880
components:
- pos: -40.5,-13.5
parent: 2
type: Transform
- - uid: 29867
+ - uid: 29881
components:
- pos: -40.5,-8.5
parent: 2
type: Transform
- - uid: 29868
+ - uid: 29882
components:
- pos: -40.5,-7.5
parent: 2
type: Transform
- - uid: 29869
+ - uid: 29883
components:
- pos: -33.5,-8.5
parent: 2
type: Transform
- - uid: 29870
+ - uid: 29884
components:
- pos: -30.5,-8.5
parent: 2
type: Transform
- - uid: 29871
+ - uid: 29885
components:
- pos: -30.5,-25.5
parent: 2
type: Transform
- - uid: 29872
+ - uid: 29886
components:
- pos: -33.5,-25.5
parent: 2
type: Transform
- - uid: 29873
+ - uid: 29887
components:
- pos: -23.5,-27.5
parent: 2
type: Transform
- - uid: 29874
+ - uid: 29888
components:
- pos: -24.5,-27.5
parent: 2
type: Transform
- - uid: 29875
+ - uid: 29889
components:
- rot: 1.5707963267948966 rad
pos: -26.5,-28.5
parent: 2
type: Transform
- - uid: 29876
+ - uid: 29890
components:
- pos: -26.5,-27.5
parent: 2
type: Transform
- - uid: 29877
+ - uid: 29891
components:
- pos: -27.5,-27.5
parent: 2
type: Transform
- - uid: 29878
+ - uid: 29892
components:
- pos: -28.5,-27.5
parent: 2
type: Transform
- - uid: 29879
+ - uid: 29893
components:
- pos: -29.5,-27.5
parent: 2
type: Transform
- - uid: 29880
+ - uid: 29894
components:
- pos: -30.5,-27.5
parent: 2
type: Transform
- - uid: 29881
+ - uid: 29895
components:
- pos: -33.5,-27.5
parent: 2
type: Transform
- - uid: 29882
+ - uid: 29896
components:
- pos: -34.5,-27.5
parent: 2
type: Transform
- - uid: 29883
- components:
- - pos: -35.5,-27.5
- parent: 2
- type: Transform
- - uid: 29884
+ - uid: 29897
components:
- pos: -36.5,-27.5
parent: 2
type: Transform
- - uid: 29885
+ - uid: 29898
components:
- pos: -33.5,-28.5
parent: 2
type: Transform
- - uid: 29886
+ - uid: 29899
components:
- pos: -33.5,-29.5
parent: 2
type: Transform
- - uid: 29887
+ - uid: 29900
components:
- pos: -33.5,-30.5
parent: 2
type: Transform
- - uid: 29888
+ - uid: 29901
components:
- pos: -30.5,-28.5
parent: 2
type: Transform
- - uid: 29889
+ - uid: 29902
components:
- pos: -30.5,-29.5
parent: 2
type: Transform
- - uid: 29890
+ - uid: 29903
components:
- pos: -30.5,-30.5
parent: 2
type: Transform
- - uid: 29891
+ - uid: 29904
components:
- pos: -45.5,-26.5
parent: 2
type: Transform
- - uid: 29892
+ - uid: 29905
components:
- pos: -36.5,-26.5
parent: 2
type: Transform
- - uid: 29893
+ - uid: 29906
components:
- pos: -36.5,-25.5
parent: 2
type: Transform
- - uid: 29894
+ - uid: 29907
components:
- pos: -37.5,-25.5
parent: 2
type: Transform
- - uid: 29895
+ - uid: 29908
components:
- pos: -38.5,-25.5
parent: 2
type: Transform
- - uid: 29896
+ - uid: 29909
components:
- pos: -36.5,-22.5
parent: 2
type: Transform
- - uid: 29897
+ - uid: 29910
components:
- pos: -36.5,-23.5
parent: 2
type: Transform
- - uid: 29898
+ - uid: 29911
components:
- pos: -38.5,-23.5
parent: 2
type: Transform
- - uid: 29899
+ - uid: 29912
components:
- pos: -38.5,-24.5
parent: 2
type: Transform
- - uid: 29900
+ - uid: 29913
components:
- pos: 52.5,-35.5
parent: 2
type: Transform
- - uid: 29901
+ - uid: 29914
components:
- pos: 53.5,-33.5
parent: 2
type: Transform
- - uid: 29902
+ - uid: 29915
components:
- pos: 54.5,-62.5
parent: 2
type: Transform
- - uid: 29903
+ - uid: 29916
components:
- pos: 44.5,-6.5
parent: 2
type: Transform
- - uid: 29904
+ - uid: 29917
components:
- rot: 1.5707963267948966 rad
pos: -28.5,7.5
parent: 2
type: Transform
- - uid: 29905
+ - uid: 29918
components:
- rot: 1.5707963267948966 rad
pos: -28.5,6.5
parent: 2
type: Transform
- - uid: 29906
+ - uid: 29919
components:
- rot: 1.5707963267948966 rad
pos: -28.5,5.5
parent: 2
type: Transform
- - uid: 29907
+ - uid: 29920
components:
- pos: -49.5,-29.5
parent: 2
type: Transform
- - uid: 29908
+ - uid: 29921
components:
- pos: -50.5,-30.5
parent: 2
type: Transform
- - uid: 29909
+ - uid: 29922
components:
- pos: -43.5,-21.5
parent: 2
type: Transform
- - uid: 29910
+ - uid: 29923
components:
- pos: -43.5,-20.5
parent: 2
type: Transform
- - uid: 29911
+ - uid: 29924
components:
- rot: 1.5707963267948966 rad
pos: -42.5,-25.5
parent: 2
type: Transform
- - uid: 29912
+ - uid: 29925
components:
- rot: 1.5707963267948966 rad
pos: -40.5,-25.5
parent: 2
type: Transform
- - uid: 29913
+ - uid: 29926
components:
- rot: 1.5707963267948966 rad
pos: -39.5,-25.5
parent: 2
type: Transform
- - uid: 29914
+ - uid: 29927
components:
- rot: 1.5707963267948966 rad
pos: -40.5,-27.5
parent: 2
type: Transform
- - uid: 29915
+ - uid: 29928
components:
- rot: 1.5707963267948966 rad
pos: -41.5,-27.5
parent: 2
type: Transform
- - uid: 29916
+ - uid: 29929
components:
- rot: 1.5707963267948966 rad
pos: -42.5,-27.5
parent: 2
type: Transform
- - uid: 29917
+ - uid: 29930
components:
- rot: 1.5707963267948966 rad
pos: -39.5,-27.5
parent: 2
type: Transform
- - uid: 29918
+ - uid: 29931
components:
- rot: 1.5707963267948966 rad
pos: -23.5,-30.5
parent: 2
type: Transform
- - uid: 29919
+ - uid: 29932
components:
- rot: 1.5707963267948966 rad
pos: -25.5,-30.5
parent: 2
type: Transform
- - uid: 29920
+ - uid: 29933
components:
- rot: 1.5707963267948966 rad
pos: -26.5,-30.5
parent: 2
type: Transform
- - uid: 29921
+ - uid: 29934
components:
- rot: 1.5707963267948966 rad
pos: -26.5,-31.5
parent: 2
type: Transform
- - uid: 29922
+ - uid: 29935
components:
- rot: 1.5707963267948966 rad
pos: -26.5,-32.5
parent: 2
type: Transform
- - uid: 29923
+ - uid: 29936
components:
- rot: 1.5707963267948966 rad
pos: -27.5,-32.5
parent: 2
type: Transform
- - uid: 29924
+ - uid: 29937
components:
- rot: 1.5707963267948966 rad
pos: -28.5,-32.5
parent: 2
type: Transform
- - uid: 29925
+ - uid: 29938
components:
- rot: 1.5707963267948966 rad
pos: -29.5,-32.5
parent: 2
type: Transform
- - uid: 29926
+ - uid: 29939
components:
- rot: 1.5707963267948966 rad
pos: -29.5,-31.5
parent: 2
type: Transform
- - uid: 29927
+ - uid: 29940
components:
- rot: 1.5707963267948966 rad
pos: -30.5,-31.5
parent: 2
type: Transform
- - uid: 29928
+ - uid: 29941
components:
- rot: 1.5707963267948966 rad
pos: -26.5,-35.5
parent: 2
type: Transform
- - uid: 29929
+ - uid: 29942
components:
- rot: 1.5707963267948966 rad
pos: -26.5,-36.5
parent: 2
type: Transform
- - uid: 29930
+ - uid: 29943
components:
- pos: -29.5,-37.5
parent: 2
type: Transform
- - uid: 29931
+ - uid: 29944
components:
- rot: 1.5707963267948966 rad
pos: -28.5,-35.5
parent: 2
type: Transform
- - uid: 29932
+ - uid: 29945
components:
- rot: 1.5707963267948966 rad
pos: -29.5,-36.5
parent: 2
type: Transform
- - uid: 29933
+ - uid: 29946
components:
- rot: 1.5707963267948966 rad
pos: -30.5,-36.5
parent: 2
type: Transform
- - uid: 29934
+ - uid: 29947
components:
- rot: 1.5707963267948966 rad
pos: -33.5,-36.5
parent: 2
type: Transform
- - uid: 29935
+ - uid: 29948
components:
- rot: 1.5707963267948966 rad
pos: -34.5,-36.5
parent: 2
type: Transform
- - uid: 29936
+ - uid: 29949
components:
- rot: 1.5707963267948966 rad
pos: -34.5,-31.5
parent: 2
type: Transform
- - uid: 29937
+ - uid: 29950
components:
- rot: 1.5707963267948966 rad
pos: -34.5,-32.5
parent: 2
type: Transform
- - uid: 29938
+ - uid: 29951
components:
- pos: -34.5,-37.5
parent: 2
type: Transform
- - uid: 29939
+ - uid: 29952
components:
- rot: 1.5707963267948966 rad
pos: -34.5,-35.5
parent: 2
type: Transform
- - uid: 29940
+ - uid: 29953
components:
- rot: 1.5707963267948966 rad
pos: -33.5,-31.5
parent: 2
type: Transform
- - uid: 29941
+ - uid: 29954
components:
- rot: 1.5707963267948966 rad
pos: -29.5,-35.5
parent: 2
type: Transform
- - uid: 29942
+ - uid: 29955
components:
- rot: 1.5707963267948966 rad
pos: -22.5,-30.5
parent: 2
type: Transform
- - uid: 29943
+ - uid: 29956
components:
- rot: 1.5707963267948966 rad
pos: -24.5,-28.5
parent: 2
type: Transform
- - uid: 29944
+ - uid: 29957
components:
- rot: 3.141592653589793 rad
pos: -28.5,-6.5
parent: 2
type: Transform
- - uid: 29945
+ - uid: 29958
components:
- pos: -31.5,-4.5
parent: 2
type: Transform
- - uid: 29946
+ - uid: 29959
components:
- pos: -32.5,-4.5
parent: 2
type: Transform
- - uid: 29947
+ - uid: 29960
components:
- pos: -33.5,-4.5
parent: 2
type: Transform
- - uid: 29948
+ - uid: 29961
components:
- pos: -34.5,-4.5
parent: 2
type: Transform
- - uid: 29949
+ - uid: 29962
components:
- pos: -35.5,-4.5
parent: 2
type: Transform
- - uid: 29950
+ - uid: 29963
components:
- pos: -38.5,-3.5
parent: 2
type: Transform
- - uid: 29951
+ - uid: 29964
components:
- pos: -39.5,-3.5
parent: 2
type: Transform
- - uid: 29952
+ - uid: 29965
components:
- pos: -35.5,-3.5
parent: 2
type: Transform
- - uid: 29953
+ - uid: 29966
components:
- pos: -39.5,-4.5
parent: 2
type: Transform
- - uid: 29954
+ - uid: 29967
components:
- pos: -40.5,-4.5
parent: 2
type: Transform
- - uid: 29955
+ - uid: 29968
components:
- pos: -42.5,-4.5
parent: 2
type: Transform
- - uid: 29956
+ - uid: 29969
components:
- pos: -43.5,-4.5
parent: 2
type: Transform
- - uid: 29957
+ - uid: 29970
components:
- pos: -22.5,-40.5
parent: 2
type: Transform
- - uid: 29958
+ - uid: 29971
components:
- pos: -23.5,-40.5
parent: 2
type: Transform
- - uid: 29959
+ - uid: 29972
components:
- pos: -24.5,-40.5
parent: 2
type: Transform
- - uid: 29960
+ - uid: 29973
components:
- pos: -24.5,-41.5
parent: 2
type: Transform
- - uid: 29961
+ - uid: 29974
components:
- pos: -24.5,-42.5
parent: 2
type: Transform
- - uid: 29962
+ - uid: 29975
components:
- pos: -24.5,-43.5
parent: 2
type: Transform
- - uid: 29963
+ - uid: 29976
components:
- pos: -24.5,-44.5
parent: 2
type: Transform
- - uid: 29964
+ - uid: 29977
components:
- pos: -24.5,-45.5
parent: 2
type: Transform
- - uid: 29965
+ - uid: 29978
components:
- pos: -24.5,-46.5
parent: 2
type: Transform
- - uid: 29966
+ - uid: 29979
components:
- pos: -24.5,-47.5
parent: 2
type: Transform
- - uid: 29967
+ - uid: 29980
components:
- pos: -22.5,-37.5
parent: 2
type: Transform
- - uid: 29968
+ - uid: 29981
components:
- pos: -23.5,-37.5
parent: 2
type: Transform
- - uid: 29969
+ - uid: 29982
components:
- pos: -24.5,-37.5
parent: 2
type: Transform
- - uid: 29970
+ - uid: 29983
components:
- pos: -25.5,-37.5
parent: 2
type: Transform
- - uid: 29971
+ - uid: 29984
components:
- pos: -26.5,-37.5
parent: 2
type: Transform
- - uid: 29972
+ - uid: 29985
components:
- pos: -35.5,-31.5
parent: 2
type: Transform
- - uid: 29973
+ - uid: 29986
components:
- pos: -36.5,-31.5
parent: 2
type: Transform
- - uid: 29974
+ - uid: 29987
components:
- pos: -37.5,-31.5
parent: 2
type: Transform
- - uid: 29975
+ - uid: 29988
components:
- pos: -38.5,-31.5
parent: 2
type: Transform
- - uid: 29976
+ - uid: 29989
components:
- pos: -39.5,-31.5
parent: 2
type: Transform
- - uid: 29977
+ - uid: 29990
components:
- pos: -30.5,-38.5
parent: 2
type: Transform
- - uid: 29978
+ - uid: 29991
components:
- pos: -30.5,-39.5
parent: 2
type: Transform
- - uid: 29979
+ - uid: 29992
components:
- pos: -30.5,-41.5
parent: 2
type: Transform
- - uid: 29980
+ - uid: 29993
components:
- pos: -30.5,-42.5
parent: 2
type: Transform
- - uid: 29981
+ - uid: 29994
components:
- pos: -31.5,-42.5
parent: 2
type: Transform
- - uid: 29982
+ - uid: 29995
components:
- pos: -48.5,-4.5
parent: 2
type: Transform
- - uid: 29983
+ - uid: 29996
components:
- pos: -47.5,-4.5
parent: 2
type: Transform
- - uid: 29984
+ - uid: 29997
components:
- pos: -46.5,-4.5
parent: 2
type: Transform
- - uid: 29985
+ - uid: 29998
components:
- pos: -45.5,-4.5
parent: 2
type: Transform
- - uid: 29986
+ - uid: 29999
components:
- pos: -44.5,-4.5
parent: 2
type: Transform
- - uid: 29987
+ - uid: 30000
components:
- pos: -55.5,-19.5
parent: 2
type: Transform
- - uid: 29988
+ - uid: 30001
components:
- pos: -55.5,-20.5
parent: 2
type: Transform
- - uid: 29989
+ - uid: 30002
components:
- pos: -47.5,-26.5
parent: 2
type: Transform
- - uid: 29990
+ - uid: 30003
components:
- rot: 3.141592653589793 rad
pos: -41.5,15.5
parent: 2
type: Transform
- - uid: 29991
+ - uid: 30004
components:
- pos: -31.5,-6.5
parent: 2
type: Transform
- - uid: 29992
+ - uid: 30005
components:
- pos: -32.5,-6.5
parent: 2
type: Transform
- - uid: 29993
+ - uid: 30006
components:
- pos: -32.5,-8.5
parent: 2
type: Transform
- - uid: 29994
+ - uid: 30007
components:
- pos: -31.5,-8.5
parent: 2
type: Transform
- - uid: 29995
+ - uid: 30008
components:
- pos: -33.5,-6.5
parent: 2
type: Transform
- - uid: 29996
+ - uid: 30009
components:
- pos: -33.5,-5.5
parent: 2
type: Transform
- - uid: 29997
+ - uid: 30010
components:
- pos: -37.5,-3.5
parent: 2
type: Transform
- - uid: 29998
+ - uid: 30011
components:
- pos: -36.5,-3.5
parent: 2
type: Transform
- - uid: 29999
+ - uid: 30012
components:
- pos: -65.5,-29.5
parent: 2
type: Transform
- - uid: 30000
+ - uid: 30013
components:
- pos: -70.5,-27.5
parent: 2
type: Transform
- - uid: 30001
+ - uid: 30014
components:
- pos: -74.5,-27.5
parent: 2
type: Transform
- - uid: 30002
+ - uid: 30015
components:
- pos: -69.5,-28.5
parent: 2
type: Transform
- - uid: 30003
+ - uid: 30016
components:
- pos: -69.5,-29.5
parent: 2
type: Transform
- - uid: 30004
+ - uid: 30017
components:
- pos: -69.5,-30.5
parent: 2
type: Transform
- - uid: 30005
+ - uid: 30018
components:
- pos: -57.5,-29.5
parent: 2
type: Transform
- - uid: 30006
+ - uid: 30019
components:
- pos: -53.5,-29.5
parent: 2
type: Transform
- - uid: 30007
+ - uid: 30020
components:
- pos: -49.5,-27.5
parent: 2
type: Transform
- - uid: 30008
+ - uid: 30021
components:
- pos: -49.5,-28.5
parent: 2
type: Transform
- - uid: 30009
+ - uid: 30022
components:
- pos: -56.5,-31.5
parent: 2
type: Transform
- - uid: 30010
+ - uid: 30023
components:
- pos: -57.5,-31.5
parent: 2
type: Transform
- - uid: 30011
+ - uid: 30024
components:
- pos: -63.5,-25.5
parent: 2
type: Transform
- - uid: 30012
+ - uid: 30025
components:
- pos: -57.5,-22.5
parent: 2
type: Transform
- - uid: 30013
+ - uid: 30026
components:
- pos: -55.5,-21.5
parent: 2
type: Transform
- - uid: 30014
+ - uid: 30027
components:
- pos: -55.5,-22.5
parent: 2
type: Transform
- - uid: 30015
+ - uid: 30028
components:
- pos: -49.5,-30.5
parent: 2
type: Transform
- - uid: 30016
+ - uid: 30029
components:
- pos: -67.5,-29.5
parent: 2
type: Transform
- - uid: 30017
+ - uid: 30030
components:
- pos: -54.5,-29.5
parent: 2
type: Transform
- - uid: 30018
+ - uid: 30031
components:
- pos: -56.5,-29.5
parent: 2
type: Transform
- - uid: 30019
+ - uid: 30032
components:
- pos: -36.5,-49.5
parent: 2
type: Transform
- - uid: 30020
+ - uid: 30033
components:
- pos: -36.5,-50.5
parent: 2
type: Transform
- - uid: 30021
+ - uid: 30034
components:
- pos: -36.5,-51.5
parent: 2
type: Transform
- - uid: 30022
+ - uid: 30035
components:
- pos: -36.5,-52.5
parent: 2
type: Transform
- - uid: 30023
+ - uid: 30036
components:
- pos: -36.5,-48.5
parent: 2
type: Transform
- - uid: 30024
+ - uid: 30037
components:
- pos: -36.5,-47.5
parent: 2
type: Transform
- - uid: 30025
+ - uid: 30038
components:
- pos: 69.5,-60.5
parent: 2
type: Transform
- - uid: 30026
+ - uid: 30039
components:
- rot: -1.5707963267948966 rad
pos: -30.5,-18.5
parent: 2
type: Transform
- - uid: 30027
+ - uid: 30040
components:
- pos: -29.5,-38.5
parent: 2
type: Transform
- - uid: 30028
+ - uid: 30041
components:
- pos: -28.5,-38.5
parent: 2
type: Transform
- - uid: 30029
+ - uid: 30042
components:
- pos: -27.5,-38.5
parent: 2
type: Transform
- - uid: 30030
+ - uid: 30043
components:
- pos: -26.5,-38.5
parent: 2
type: Transform
- - uid: 30031
+ - uid: 30044
components:
- rot: -1.5707963267948966 rad
pos: -21.5,-16.5
parent: 2
type: Transform
- - uid: 30032
+ - uid: 30045
components:
- pos: -33.5,-7.5
parent: 2
type: Transform
- - uid: 30033
+ - uid: 30046
components:
- pos: -57.5,-3.5
parent: 2
type: Transform
- - uid: 30034
+ - uid: 30047
components:
- pos: -69.5,-25.5
parent: 2
type: Transform
- - uid: 30035
+ - uid: 30048
components:
- pos: -69.5,-26.5
parent: 2
type: Transform
- - uid: 30036
+ - uid: 30049
components:
- pos: -69.5,-27.5
parent: 2
type: Transform
- - uid: 30037
+ - uid: 30050
components:
- rot: -1.5707963267948966 rad
pos: -43.5,-25.5
parent: 2
type: Transform
- - uid: 30038
+ - uid: 30051
components:
- rot: -1.5707963267948966 rad
pos: -45.5,-29.5
parent: 2
type: Transform
- - uid: 30039
+ - uid: 30052
components:
- rot: -1.5707963267948966 rad
pos: -45.5,-30.5
parent: 2
type: Transform
- - uid: 30040
+ - uid: 30053
components:
- pos: -46.5,-29.5
parent: 2
type: Transform
- - uid: 30041
+ - uid: 30054
components:
- rot: -1.5707963267948966 rad
pos: -47.5,-29.5
parent: 2
type: Transform
- - uid: 30042
+ - uid: 30055
components:
- rot: -1.5707963267948966 rad
pos: -47.5,-28.5
parent: 2
type: Transform
- - uid: 30043
+ - uid: 30056
components:
- rot: -1.5707963267948966 rad
pos: -57.5,-34.5
parent: 2
type: Transform
- - uid: 30044
+ - uid: 30057
components:
- rot: -1.5707963267948966 rad
pos: -56.5,-34.5
parent: 2
type: Transform
- - uid: 30045
+ - uid: 30058
components:
- rot: -1.5707963267948966 rad
pos: -54.5,-34.5
parent: 2
type: Transform
- - uid: 30046
+ - uid: 30059
components:
- rot: -1.5707963267948966 rad
pos: -57.5,-40.5
parent: 2
type: Transform
- - uid: 30047
+ - uid: 30060
components:
- rot: -1.5707963267948966 rad
pos: -34.5,-29.5
parent: 2
type: Transform
- - uid: 30048
+ - uid: 30061
components:
- pos: -55.5,-65.5
parent: 2
type: Transform
- - uid: 30049
+ - uid: 30062
components:
- pos: -54.5,-65.5
parent: 2
type: Transform
- - uid: 30050
+ - uid: 30063
components:
- pos: -53.5,-65.5
parent: 2
type: Transform
- - uid: 30051
+ - uid: 30064
components:
- pos: -51.5,-65.5
parent: 2
type: Transform
- - uid: 30052
+ - uid: 30065
components:
- pos: -51.5,-64.5
parent: 2
type: Transform
- - uid: 30053
+ - uid: 30066
components:
- pos: -51.5,-62.5
parent: 2
type: Transform
- - uid: 30054
+ - uid: 30067
components:
- pos: -56.5,-69.5
parent: 2
type: Transform
- - uid: 30055
+ - uid: 30068
components:
- pos: -23.5,-50.5
parent: 2
type: Transform
- - uid: 30056
+ - uid: 30069
components:
- pos: -24.5,-50.5
parent: 2
type: Transform
- - uid: 30057
+ - uid: 30070
components:
- pos: -25.5,-50.5
parent: 2
type: Transform
- - uid: 30058
+ - uid: 30071
components:
- pos: -24.5,-48.5
parent: 2
type: Transform
- - uid: 30059
+ - uid: 30072
components:
- pos: -26.5,-48.5
parent: 2
type: Transform
- - uid: 30060
+ - uid: 30073
components:
- pos: -25.5,-48.5
parent: 2
type: Transform
- - uid: 30061
+ - uid: 30074
components:
- pos: -26.5,-50.5
parent: 2
type: Transform
- - uid: 30062
+ - uid: 30075
components:
- pos: -27.5,-50.5
parent: 2
type: Transform
- - uid: 30063
+ - uid: 30076
components:
- pos: -28.5,-50.5
parent: 2
type: Transform
- - uid: 30064
+ - uid: 30077
components:
- pos: -28.5,-49.5
parent: 2
type: Transform
- - uid: 30065
+ - uid: 30078
components:
- pos: -28.5,-48.5
parent: 2
type: Transform
- - uid: 30066
+ - uid: 30079
components:
- pos: -28.5,-46.5
parent: 2
type: Transform
- - uid: 30067
+ - uid: 30080
components:
- pos: -28.5,-45.5
parent: 2
type: Transform
- - uid: 30068
+ - uid: 30081
components:
- pos: -29.5,-45.5
parent: 2
type: Transform
- - uid: 30069
+ - uid: 30082
components:
- pos: -29.5,-42.5
parent: 2
type: Transform
- - uid: 30070
+ - uid: 30083
components:
- pos: -28.5,-42.5
parent: 2
type: Transform
- - uid: 30071
+ - uid: 30084
components:
- pos: -27.5,-42.5
parent: 2
type: Transform
- - uid: 30072
+ - uid: 30085
components:
- pos: -26.5,-42.5
parent: 2
type: Transform
- - uid: 30073
+ - uid: 30086
components:
- pos: -26.5,-43.5
parent: 2
type: Transform
- - uid: 30074
+ - uid: 30087
components:
- pos: -26.5,-44.5
parent: 2
type: Transform
- - uid: 30075
+ - uid: 30088
components:
- pos: -26.5,-45.5
parent: 2
type: Transform
- - uid: 30076
+ - uid: 30089
components:
- pos: -30.5,-45.5
parent: 2
type: Transform
- - uid: 30077
+ - uid: 30090
components:
- pos: -29.5,-49.5
parent: 2
type: Transform
- - uid: 30078
+ - uid: 30091
components:
- pos: -31.5,-49.5
parent: 2
type: Transform
- - uid: 30079
+ - uid: 30092
components:
- pos: -27.5,-39.5
parent: 2
type: Transform
- - uid: 30080
+ - uid: 30093
components:
- pos: -27.5,-40.5
parent: 2
type: Transform
- - uid: 30081
+ - uid: 30094
components:
- pos: -23.5,-52.5
parent: 2
type: Transform
- - uid: 30082
+ - uid: 30095
components:
- pos: -24.5,-56.5
parent: 2
type: Transform
- - uid: 30083
+ - uid: 30096
components:
- pos: -25.5,-56.5
parent: 2
type: Transform
- - uid: 30084
+ - uid: 30097
components:
- pos: -26.5,-56.5
parent: 2
type: Transform
- - uid: 30085
+ - uid: 30098
components:
- pos: -27.5,-56.5
parent: 2
type: Transform
- - uid: 30086
+ - uid: 30099
components:
- pos: -29.5,-56.5
parent: 2
type: Transform
- - uid: 30087
+ - uid: 30100
components:
- pos: -30.5,-56.5
parent: 2
type: Transform
- - uid: 30088
+ - uid: 30101
components:
- pos: -30.5,-57.5
parent: 2
type: Transform
- - uid: 30089
+ - uid: 30102
components:
- pos: -52.5,-11.5
parent: 2
type: Transform
- - uid: 30090
+ - uid: 30103
components:
- pos: -52.5,-10.5
parent: 2
type: Transform
- - uid: 30091
+ - uid: 30104
components:
- pos: -52.5,-9.5
parent: 2
type: Transform
- - uid: 30092
+ - uid: 30105
components:
- pos: -52.5,-7.5
parent: 2
type: Transform
- - uid: 30093
+ - uid: 30106
components:
- pos: -51.5,-7.5
parent: 2
type: Transform
- - uid: 30094
+ - uid: 30107
components:
- pos: -50.5,-7.5
parent: 2
type: Transform
- - uid: 30095
+ - uid: 30108
components:
- pos: -27.5,-62.5
parent: 2
type: Transform
- - uid: 30096
+ - uid: 30109
components:
- pos: -29.5,-60.5
parent: 2
type: Transform
- - uid: 30097
+ - uid: 30110
components:
- pos: -29.5,-61.5
parent: 2
type: Transform
- - uid: 30098
+ - uid: 30111
components:
- pos: -27.5,-61.5
parent: 2
type: Transform
- - uid: 30099
+ - uid: 30112
components:
- pos: -29.5,-62.5
parent: 2
type: Transform
- - uid: 30100
+ - uid: 30113
components:
- pos: -29.5,-64.5
parent: 2
type: Transform
- - uid: 30101
+ - uid: 30114
components:
- pos: -28.5,-64.5
parent: 2
type: Transform
- - uid: 30102
+ - uid: 30115
components:
- pos: -28.5,-65.5
parent: 2
type: Transform
- - uid: 30103
+ - uid: 30116
components:
- pos: -27.5,-65.5
parent: 2
type: Transform
- - uid: 30104
+ - uid: 30117
components:
- pos: -25.5,-63.5
parent: 2
type: Transform
- - uid: 30105
+ - uid: 30118
components:
- pos: -24.5,-63.5
parent: 2
type: Transform
- - uid: 30106
+ - uid: 30119
components:
- pos: -24.5,-65.5
parent: 2
type: Transform
- - uid: 30107
+ - uid: 30120
components:
- pos: -27.5,-68.5
parent: 2
type: Transform
- - uid: 30108
+ - uid: 30121
components:
- pos: -28.5,-68.5
parent: 2
type: Transform
- - uid: 30109
+ - uid: 30122
components:
- pos: -29.5,-68.5
parent: 2
type: Transform
- - uid: 30110
+ - uid: 30123
components:
- pos: -29.5,-67.5
parent: 2
type: Transform
- - uid: 30111
+ - uid: 30124
components:
- pos: -31.5,-67.5
parent: 2
type: Transform
- - uid: 30112
+ - uid: 30125
components:
- pos: -30.5,-64.5
parent: 2
type: Transform
- - uid: 30113
+ - uid: 30126
components:
- pos: -30.5,-65.5
parent: 2
type: Transform
- - uid: 30114
+ - uid: 30127
components:
- pos: -32.5,-65.5
parent: 2
type: Transform
- - uid: 30115
+ - uid: 30128
components:
- pos: -32.5,-64.5
parent: 2
type: Transform
- - uid: 30116
+ - uid: 30129
components:
- pos: -33.5,-64.5
parent: 2
type: Transform
- - uid: 30117
+ - uid: 30130
components:
- pos: -55.5,-69.5
parent: 2
type: Transform
- - uid: 30118
+ - uid: 30131
components:
- pos: -54.5,-69.5
parent: 2
type: Transform
- - uid: 30119
+ - uid: 30132
components:
- pos: -52.5,-69.5
parent: 2
type: Transform
- - uid: 30120
+ - uid: 30133
components:
- pos: -52.5,-70.5
parent: 2
type: Transform
- - uid: 30121
+ - uid: 30134
components:
- pos: -52.5,-71.5
parent: 2
type: Transform
- - uid: 30122
+ - uid: 30135
components:
- pos: -51.5,-71.5
parent: 2
type: Transform
- - uid: 30123
+ - uid: 30136
components:
- pos: -51.5,-72.5
parent: 2
type: Transform
- - uid: 30124
+ - uid: 30137
components:
- pos: -50.5,-72.5
parent: 2
type: Transform
- - uid: 30125
+ - uid: 30138
components:
- pos: -50.5,-73.5
parent: 2
type: Transform
- - uid: 30126
+ - uid: 30139
components:
- pos: -50.5,-74.5
parent: 2
type: Transform
- - uid: 30127
+ - uid: 30140
components:
- pos: -50.5,-75.5
parent: 2
type: Transform
- - uid: 30128
+ - uid: 30141
components:
- pos: -58.5,-80.5
parent: 2
type: Transform
- - uid: 30129
+ - uid: 30142
components:
- pos: -58.5,-72.5
parent: 2
type: Transform
- - uid: 30130
+ - uid: 30143
components:
- pos: -49.5,-75.5
parent: 2
type: Transform
- - uid: 30131
+ - uid: 30144
components:
- pos: -48.5,-75.5
parent: 2
type: Transform
- - uid: 30132
+ - uid: 30145
components:
- pos: -48.5,-72.5
parent: 2
type: Transform
- - uid: 30133
+ - uid: 30146
components:
- pos: -48.5,-71.5
parent: 2
type: Transform
- - uid: 30134
+ - uid: 30147
components:
- pos: -47.5,-71.5
parent: 2
type: Transform
- - uid: 30135
+ - uid: 30148
components:
- pos: -46.5,-71.5
parent: 2
type: Transform
- - uid: 30136
+ - uid: 30149
components:
- pos: -46.5,-70.5
parent: 2
type: Transform
- - uid: 30137
+ - uid: 30150
components:
- pos: -45.5,-70.5
parent: 2
type: Transform
- - uid: 30138
+ - uid: 30151
components:
- pos: -45.5,-69.5
parent: 2
type: Transform
- - uid: 30139
+ - uid: 30152
components:
- pos: -44.5,-69.5
parent: 2
type: Transform
- - uid: 30140
+ - uid: 30153
components:
- pos: -43.5,-69.5
parent: 2
type: Transform
- - uid: 30141
+ - uid: 30154
components:
- pos: -40.5,-68.5
parent: 2
type: Transform
- - uid: 30142
+ - uid: 30155
components:
- pos: -40.5,-67.5
parent: 2
type: Transform
- - uid: 30143
+ - uid: 30156
components:
- pos: -40.5,-69.5
parent: 2
type: Transform
- - uid: 30144
+ - uid: 30157
components:
- pos: -39.5,-69.5
parent: 2
type: Transform
- - uid: 30145
+ - uid: 30158
components:
- pos: -38.5,-69.5
parent: 2
type: Transform
- - uid: 30146
+ - uid: 30159
components:
- pos: -38.5,-70.5
parent: 2
type: Transform
- - uid: 30147
+ - uid: 30160
components:
- pos: -37.5,-70.5
parent: 2
type: Transform
- - uid: 30148
+ - uid: 30161
components:
- pos: -37.5,-71.5
parent: 2
type: Transform
- - uid: 30149
+ - uid: 30162
components:
- pos: -36.5,-71.5
parent: 2
type: Transform
- - uid: 30150
+ - uid: 30163
components:
- pos: -35.5,-71.5
parent: 2
type: Transform
- - uid: 30151
+ - uid: 30164
components:
- pos: -35.5,-72.5
parent: 2
type: Transform
- - uid: 30152
+ - uid: 30165
components:
- pos: -43.5,-68.5
parent: 2
type: Transform
- - uid: 30153
+ - uid: 30166
components:
- pos: -40.5,-65.5
parent: 2
type: Transform
- - uid: 30154
+ - uid: 30167
components:
- pos: -41.5,-65.5
parent: 2
type: Transform
- - uid: 30155
+ - uid: 30168
components:
- pos: -42.5,-65.5
parent: 2
type: Transform
- - uid: 30156
+ - uid: 30169
components:
- pos: -43.5,-65.5
parent: 2
type: Transform
- - uid: 30157
+ - uid: 30170
components:
- pos: -44.5,-65.5
parent: 2
type: Transform
- - uid: 30158
+ - uid: 30171
components:
- pos: -45.5,-65.5
parent: 2
type: Transform
- - uid: 30159
+ - uid: 30172
components:
- pos: -46.5,-65.5
parent: 2
type: Transform
- - uid: 30160
+ - uid: 30173
components:
- pos: -47.5,-65.5
parent: 2
type: Transform
- - uid: 30161
+ - uid: 30174
components:
- pos: -48.5,-67.5
parent: 2
type: Transform
- - uid: 30162
+ - uid: 30175
components:
- pos: -48.5,-68.5
parent: 2
type: Transform
- - uid: 30163
+ - uid: 30176
components:
- pos: -48.5,-69.5
parent: 2
type: Transform
- - uid: 30164
+ - uid: 30177
components:
- pos: -48.5,-70.5
parent: 2
type: Transform
- - uid: 30165
+ - uid: 30178
components:
- pos: -48.5,-65.5
parent: 2
type: Transform
- - uid: 30166
+ - uid: 30179
components:
- pos: -51.5,-69.5
parent: 2
type: Transform
- - uid: 30167
+ - uid: 30180
components:
- pos: -51.5,-68.5
parent: 2
type: Transform
- - uid: 30168
+ - uid: 30181
components:
- pos: -35.5,-63.5
parent: 2
type: Transform
- - uid: 30169
+ - uid: 30182
components:
- pos: -35.5,-64.5
parent: 2
type: Transform
- - uid: 30170
+ - uid: 30183
components:
- pos: -36.5,-66.5
parent: 2
type: Transform
- - uid: 30171
+ - uid: 30184
components:
- pos: -36.5,-67.5
parent: 2
type: Transform
- - uid: 30172
+ - uid: 30185
components:
- pos: -35.5,-67.5
parent: 2
type: Transform
- - uid: 30173
+ - uid: 30186
components:
- pos: -35.5,-68.5
parent: 2
type: Transform
- - uid: 30174
+ - uid: 30187
components:
- pos: -34.5,-68.5
parent: 2
type: Transform
- - uid: 30175
+ - uid: 30188
components:
- pos: -38.5,-66.5
parent: 2
type: Transform
- - uid: 30176
+ - uid: 30189
components:
- pos: -35.5,-69.5
parent: 2
type: Transform
- - uid: 30177
+ - uid: 30190
components:
- pos: -33.5,-68.5
parent: 2
type: Transform
- - uid: 30178
+ - uid: 30191
components:
- pos: -32.5,-68.5
parent: 2
type: Transform
- - uid: 30179
+ - uid: 30192
components:
- pos: -31.5,-68.5
parent: 2
type: Transform
- - uid: 30180
+ - uid: 30193
components:
- pos: -42.5,-63.5
parent: 2
type: Transform
- - uid: 30181
+ - uid: 30194
components:
- pos: -46.5,-64.5
parent: 2
type: Transform
- - uid: 30182
+ - uid: 30195
components:
- pos: -40.5,-73.5
parent: 2
type: Transform
- - uid: 30183
+ - uid: 30196
components:
- pos: -44.5,-73.5
parent: 2
type: Transform
- - uid: 30184
+ - uid: 30197
components:
- pos: -39.5,-74.5
parent: 2
type: Transform
- - uid: 30185
+ - uid: 30198
components:
- pos: -42.5,-73.5
parent: 2
type: Transform
- - uid: 30186
+ - uid: 30199
components:
- pos: -41.5,-73.5
parent: 2
type: Transform
- - uid: 30187
+ - uid: 30200
components:
- pos: -43.5,-73.5
parent: 2
type: Transform
- - uid: 30188
+ - uid: 30201
components:
- pos: -44.5,-74.5
parent: 2
type: Transform
- - uid: 30189
+ - uid: 30202
components:
- pos: -39.5,-73.5
parent: 2
type: Transform
- - uid: 30190
+ - uid: 30203
components:
- pos: -23.5,-63.5
parent: 2
type: Transform
- - uid: 30191
+ - uid: 30204
components:
- rot: 3.141592653589793 rad
pos: -30.5,-53.5
parent: 2
type: Transform
- - uid: 30192
+ - uid: 30205
components:
- rot: 1.5707963267948966 rad
pos: -29.5,-52.5
parent: 2
type: Transform
- - uid: 30193
+ - uid: 30206
components:
- rot: 1.5707963267948966 rad
pos: -29.5,-53.5
parent: 2
type: Transform
- - uid: 30194
+ - uid: 30207
components:
- rot: 1.5707963267948966 rad
pos: -29.5,-54.5
parent: 2
type: Transform
- - uid: 30195
+ - uid: 30208
components:
- pos: -26.5,-62.5
parent: 2
type: Transform
- - uid: 30196
+ - uid: 30209
components:
- pos: -45.5,-68.5
parent: 2
type: Transform
- - uid: 30197
+ - uid: 30210
components:
- pos: -27.5,-59.5
parent: 2
type: Transform
- - uid: 30198
+ - uid: 30211
components:
- pos: -37.5,-47.5
parent: 2
type: Transform
- - uid: 30199
+ - uid: 30212
components:
- pos: -17.5,31.5
parent: 2
type: Transform
- - uid: 30200
+ - uid: 30213
components:
- pos: -26.5,-63.5
parent: 2
type: Transform
- - uid: 30201
+ - uid: 30214
components:
- pos: -22.5,-63.5
parent: 2
type: Transform
- - uid: 30202
+ - uid: 30215
components:
- pos: 58.5,2.5
parent: 2
type: Transform
- - uid: 30203
+ - uid: 30216
components:
- rot: 3.141592653589793 rad
pos: -27.5,-57.5
parent: 2
type: Transform
- - uid: 30204
+ - uid: 30217
components:
- pos: -33.5,-24.5
parent: 2
type: Transform
- - uid: 30205
+ - uid: 30218
components:
- pos: -34.5,-24.5
parent: 2
type: Transform
- - uid: 30206
+ - uid: 30219
components:
- pos: -34.5,-22.5
parent: 2
type: Transform
- - uid: 30207
+ - uid: 30220
components:
- pos: -34.5,-23.5
parent: 2
type: Transform
- - uid: 30208
+ - uid: 30221
components:
- rot: 1.5707963267948966 rad
pos: 52.5,54.5
parent: 2
type: Transform
- - uid: 30209
+ - uid: 30222
components:
- rot: -1.5707963267948966 rad
pos: -9.5,33.5
parent: 2
type: Transform
- - uid: 30210
+ - uid: 30223
components:
- rot: -1.5707963267948966 rad
pos: -10.5,33.5
parent: 2
type: Transform
- - uid: 30211
+ - uid: 30224
components:
- rot: -1.5707963267948966 rad
pos: -9.5,30.5
parent: 2
type: Transform
- - uid: 30212
+ - uid: 30225
components:
- rot: -1.5707963267948966 rad
pos: -10.5,30.5
parent: 2
type: Transform
- - uid: 30213
+ - uid: 30226
components:
- rot: -1.5707963267948966 rad
pos: -11.5,30.5
parent: 2
type: Transform
- - uid: 30214
+ - uid: 30227
components:
- rot: -1.5707963267948966 rad
pos: -12.5,30.5
parent: 2
type: Transform
- - uid: 30215
+ - uid: 30228
components:
- pos: -11.5,25.5
parent: 2
type: Transform
- - uid: 30216
+ - uid: 30229
components:
- pos: -12.5,25.5
parent: 2
type: Transform
- - uid: 30217
+ - uid: 30230
components:
- rot: -1.5707963267948966 rad
pos: -10.5,34.5
parent: 2
type: Transform
- - uid: 30218
+ - uid: 30231
components:
- pos: -21.5,16.5
parent: 2
type: Transform
- - uid: 30219
+ - uid: 30232
components:
- pos: -21.5,17.5
parent: 2
type: Transform
- - uid: 30220
+ - uid: 30233
components:
- pos: -21.5,18.5
parent: 2
type: Transform
- - uid: 30221
+ - uid: 30234
components:
- pos: -21.5,19.5
parent: 2
type: Transform
- - uid: 30222
+ - uid: 30235
components:
- pos: -17.5,15.5
parent: 2
type: Transform
- - uid: 30223
+ - uid: 30236
components:
- pos: -17.5,16.5
parent: 2
type: Transform
- - uid: 30224
+ - uid: 30237
components:
- pos: -17.5,17.5
parent: 2
type: Transform
- - uid: 30225
+ - uid: 30238
components:
- pos: -17.5,18.5
parent: 2
type: Transform
- - uid: 30226
+ - uid: 30239
components:
- pos: -21.5,22.5
parent: 2
type: Transform
- - uid: 30227
+ - uid: 30240
components:
- pos: -21.5,25.5
parent: 2
type: Transform
- - uid: 30228
+ - uid: 30241
components:
- rot: -1.5707963267948966 rad
pos: -13.5,22.5
parent: 2
type: Transform
- - uid: 30229
+ - uid: 30242
components:
- rot: -1.5707963267948966 rad
pos: -17.5,27.5
parent: 2
type: Transform
- - uid: 30230
+ - uid: 30243
components:
- pos: -17.5,22.5
parent: 2
type: Transform
- - uid: 30231
+ - uid: 30244
components:
- pos: -17.5,21.5
parent: 2
type: Transform
- - uid: 30232
+ - uid: 30245
components:
- pos: -17.5,20.5
parent: 2
type: Transform
- - uid: 30233
+ - uid: 30246
components:
- pos: -23.5,16.5
parent: 2
type: Transform
- - uid: 30234
+ - uid: 30247
components:
- pos: -26.5,17.5
parent: 2
type: Transform
- - uid: 30235
+ - uid: 30248
components:
- pos: -26.5,26.5
parent: 2
type: Transform
- - uid: 30236
+ - uid: 30249
components:
- pos: -25.5,26.5
parent: 2
type: Transform
- - uid: 30237
+ - uid: 30250
components:
- pos: -26.5,20.5
parent: 2
type: Transform
- - uid: 30238
+ - uid: 30251
components:
- pos: -27.5,26.5
parent: 2
type: Transform
- - uid: 30239
+ - uid: 30252
components:
- pos: -28.5,26.5
parent: 2
type: Transform
- - uid: 30240
+ - uid: 30253
components:
- pos: -26.5,24.5
parent: 2
type: Transform
- - uid: 30241
+ - uid: 30254
components:
- rot: 3.141592653589793 rad
pos: -27.5,20.5
parent: 2
type: Transform
- - uid: 30242
+ - uid: 30255
components:
- rot: 3.141592653589793 rad
pos: -28.5,20.5
parent: 2
type: Transform
- - uid: 30243
+ - uid: 30256
components:
- rot: 3.141592653589793 rad
pos: -29.5,20.5
parent: 2
type: Transform
- - uid: 30244
+ - uid: 30257
components:
- rot: 3.141592653589793 rad
pos: -29.5,24.5
parent: 2
type: Transform
- - uid: 30245
+ - uid: 30258
components:
- pos: -26.5,16.5
parent: 2
type: Transform
- - uid: 30246
+ - uid: 30259
components:
- pos: -27.5,16.5
parent: 2
type: Transform
- - uid: 30247
+ - uid: 30260
components:
- pos: -28.5,16.5
parent: 2
type: Transform
- - uid: 30248
+ - uid: 30261
components:
- pos: -29.5,16.5
parent: 2
type: Transform
- - uid: 30249
+ - uid: 30262
components:
- pos: -22.5,14.5
parent: 2
type: Transform
- - uid: 30250
+ - uid: 30263
components:
- pos: -23.5,14.5
parent: 2
type: Transform
- - uid: 30251
+ - uid: 30264
components:
- pos: -24.5,16.5
parent: 2
type: Transform
- - uid: 30252
+ - uid: 30265
components:
- pos: -23.5,26.5
parent: 2
type: Transform
- - uid: 30253
+ - uid: 30266
components:
- pos: -36.5,34.5
parent: 2
type: Transform
- - uid: 30254
+ - uid: 30267
components:
- pos: -24.5,15.5
parent: 2
type: Transform
- - uid: 30255
+ - uid: 30268
components:
- pos: -34.5,16.5
parent: 2
type: Transform
- - uid: 30256
+ - uid: 30269
components:
- pos: -35.5,17.5
parent: 2
type: Transform
- - uid: 30257
+ - uid: 30270
components:
- pos: -35.5,23.5
parent: 2
type: Transform
- - uid: 30258
+ - uid: 30271
components:
- pos: -35.5,24.5
parent: 2
type: Transform
- - uid: 30259
+ - uid: 30272
components:
- pos: -33.5,16.5
parent: 2
type: Transform
- - uid: 30260
+ - uid: 30273
components:
- pos: -32.5,16.5
parent: 2
type: Transform
- - uid: 30261
+ - uid: 30274
components:
- pos: -31.5,16.5
parent: 2
type: Transform
- - uid: 30262
+ - uid: 30275
components:
- pos: -30.5,16.5
parent: 2
type: Transform
- - uid: 30263
+ - uid: 30276
components:
- rot: 1.5707963267948966 rad
pos: -36.5,17.5
parent: 2
type: Transform
- - uid: 30264
+ - uid: 30277
components:
- rot: 1.5707963267948966 rad
pos: -39.5,17.5
parent: 2
type: Transform
- - uid: 30265
+ - uid: 30278
components:
- rot: 1.5707963267948966 rad
pos: -40.5,17.5
parent: 2
type: Transform
- - uid: 30266
+ - uid: 30279
components:
- pos: -38.5,34.5
parent: 2
type: Transform
- - uid: 30267
+ - uid: 30280
components:
- pos: -39.5,32.5
parent: 2
type: Transform
- - uid: 30268
+ - uid: 30281
components:
- pos: -39.5,33.5
parent: 2
type: Transform
- - uid: 30269
+ - uid: 30282
components:
- rot: 1.5707963267948966 rad
pos: -40.5,26.5
parent: 2
type: Transform
- - uid: 30270
+ - uid: 30283
components:
- rot: 1.5707963267948966 rad
pos: -42.5,26.5
parent: 2
type: Transform
- - uid: 30271
+ - uid: 30284
components:
- rot: 1.5707963267948966 rad
pos: -43.5,17.5
parent: 2
type: Transform
- - uid: 30272
+ - uid: 30285
components:
- rot: 1.5707963267948966 rad
pos: -43.5,16.5
parent: 2
type: Transform
- - uid: 30273
+ - uid: 30286
components:
- pos: -51.5,21.5
parent: 2
type: Transform
- - uid: 30274
+ - uid: 30287
components:
- rot: 1.5707963267948966 rad
pos: -47.5,27.5
parent: 2
type: Transform
- - uid: 30275
+ - uid: 30288
components:
- rot: 1.5707963267948966 rad
pos: -48.5,27.5
parent: 2
type: Transform
- - uid: 30276
+ - uid: 30289
components:
- rot: 1.5707963267948966 rad
pos: -44.5,27.5
parent: 2
type: Transform
- - uid: 30277
+ - uid: 30290
components:
- rot: 1.5707963267948966 rad
pos: -43.5,27.5
parent: 2
type: Transform
- - uid: 30278
+ - uid: 30291
components:
- rot: 1.5707963267948966 rad
pos: -43.5,26.5
parent: 2
type: Transform
- - uid: 30279
+ - uid: 30292
components:
- pos: -17.5,35.5
parent: 2
type: Transform
- - uid: 30280
+ - uid: 30293
components:
- rot: -1.5707963267948966 rad
pos: -18.5,36.5
parent: 2
type: Transform
- - uid: 30281
+ - uid: 30294
components:
- pos: -17.5,33.5
parent: 2
type: Transform
- - uid: 30282
+ - uid: 30295
components:
- pos: -13.5,30.5
parent: 2
type: Transform
- - uid: 30283
+ - uid: 30296
components:
- pos: -13.5,29.5
parent: 2
type: Transform
- - uid: 30284
+ - uid: 30297
components:
- pos: -13.5,28.5
parent: 2
type: Transform
- - uid: 30285
+ - uid: 30298
components:
- pos: -14.5,28.5
parent: 2
type: Transform
- - uid: 30286
+ - uid: 30299
components:
- pos: -16.5,28.5
parent: 2
type: Transform
- - uid: 30287
+ - uid: 30300
components:
- pos: 51.5,41.5
parent: 2
type: Transform
- - uid: 30288
+ - uid: 30301
components:
- pos: -22.5,26.5
parent: 2
type: Transform
- - uid: 30289
+ - uid: 30302
components:
- pos: -24.5,14.5
parent: 2
type: Transform
- - uid: 30290
+ - uid: 30303
components:
- pos: -27.5,11.5
parent: 2
type: Transform
- - uid: 30291
+ - uid: 30304
components:
- pos: -28.5,11.5
parent: 2
type: Transform
- - uid: 30292
+ - uid: 30305
components:
- pos: -29.5,26.5
parent: 2
type: Transform
- - uid: 30293
+ - uid: 30306
components:
- rot: 3.141592653589793 rad
pos: -41.5,13.5
parent: 2
type: Transform
- - uid: 30294
+ - uid: 30307
components:
- pos: -28.5,14.5
parent: 2
type: Transform
- - uid: 30295
+ - uid: 30308
components:
- pos: -28.5,13.5
parent: 2
type: Transform
- - uid: 30296
+ - uid: 30309
components:
- pos: -28.5,15.5
parent: 2
type: Transform
- - uid: 30297
+ - uid: 30310
components:
- rot: 1.5707963267948966 rad
pos: -40.5,36.5
parent: 2
type: Transform
- - uid: 30298
+ - uid: 30311
components:
- rot: 1.5707963267948966 rad
pos: -41.5,36.5
parent: 2
type: Transform
- - uid: 30299
+ - uid: 30312
components:
- rot: 1.5707963267948966 rad
pos: -42.5,36.5
parent: 2
type: Transform
- - uid: 30300
+ - uid: 30313
components:
- rot: 1.5707963267948966 rad
pos: -43.5,36.5
parent: 2
type: Transform
- - uid: 30301
+ - uid: 30314
components:
- rot: 1.5707963267948966 rad
pos: -44.5,36.5
parent: 2
type: Transform
- - uid: 30302
+ - uid: 30315
components:
- rot: 1.5707963267948966 rad
pos: -44.5,37.5
parent: 2
type: Transform
- - uid: 30303
+ - uid: 30316
components:
- rot: 1.5707963267948966 rad
pos: -47.5,37.5
parent: 2
type: Transform
- - uid: 30304
+ - uid: 30317
components:
- rot: 1.5707963267948966 rad
pos: -39.5,35.5
parent: 2
type: Transform
- - uid: 30305
+ - uid: 30318
components:
- rot: 1.5707963267948966 rad
pos: -39.5,36.5
parent: 2
type: Transform
- - uid: 30306
+ - uid: 30319
components:
- pos: -37.5,26.5
parent: 2
type: Transform
- - uid: 30307
+ - uid: 30320
components:
- pos: -36.5,26.5
parent: 2
type: Transform
- - uid: 30308
+ - uid: 30321
components:
- pos: -25.5,38.5
parent: 2
type: Transform
- - uid: 30309
+ - uid: 30322
components:
- pos: -38.5,26.5
parent: 2
type: Transform
- - uid: 30310
+ - uid: 30323
components:
- pos: -39.5,26.5
parent: 2
type: Transform
- - uid: 30311
+ - uid: 30324
components:
- pos: -39.5,27.5
parent: 2
type: Transform
- - uid: 30312
+ - uid: 30325
components:
- pos: -39.5,28.5
parent: 2
type: Transform
- - uid: 30313
+ - uid: 30326
components:
- pos: -39.5,30.5
parent: 2
type: Transform
- - uid: 30314
+ - uid: 30327
components:
- pos: -39.5,34.5
parent: 2
type: Transform
- - uid: 30315
+ - uid: 30328
components:
- pos: -30.5,-1.5
parent: 2
type: Transform
- - uid: 30316
+ - uid: 30329
components:
- pos: -31.5,-1.5
parent: 2
type: Transform
- - uid: 30317
+ - uid: 30330
components:
- pos: -32.5,-1.5
parent: 2
type: Transform
- - uid: 30318
+ - uid: 30331
components:
- pos: -32.5,-2.5
parent: 2
type: Transform
- - uid: 30319
+ - uid: 30332
components:
- pos: -29.5,2.5
parent: 2
type: Transform
- - uid: 30320
+ - uid: 30333
components:
- pos: -30.5,2.5
parent: 2
type: Transform
- - uid: 30321
+ - uid: 30334
components:
- pos: -31.5,2.5
parent: 2
type: Transform
- - uid: 30322
+ - uid: 30335
components:
- pos: -32.5,2.5
parent: 2
type: Transform
- - uid: 30323
+ - uid: 30336
components:
- pos: -33.5,2.5
parent: 2
type: Transform
- - uid: 30324
+ - uid: 30337
components:
- pos: -34.5,-1.5
parent: 2
type: Transform
- - uid: 30325
+ - uid: 30338
components:
- rot: 3.141592653589793 rad
pos: -25.5,16.5
parent: 2
type: Transform
- - uid: 30326
+ - uid: 30339
components:
- pos: -22.5,16.5
parent: 2
type: Transform
- - uid: 30327
+ - uid: 30340
components:
- pos: -16.5,22.5
parent: 2
type: Transform
- - uid: 30328
+ - uid: 30341
components:
- pos: -15.5,22.5
parent: 2
type: Transform
- - uid: 30329
+ - uid: 30342
components:
- pos: -14.5,22.5
parent: 2
type: Transform
- - uid: 30330
+ - uid: 30343
components:
- rot: -1.5707963267948966 rad
pos: -13.5,24.5
parent: 2
type: Transform
- - uid: 30331
+ - uid: 30344
components:
- pos: -13.5,25.5
parent: 2
type: Transform
- - uid: 30332
+ - uid: 30345
components:
- rot: -1.5707963267948966 rad
pos: -13.5,24.5
parent: 2
type: Transform
- - uid: 30333
+ - uid: 30346
components:
- rot: 3.141592653589793 rad
pos: -48.5,17.5
parent: 2
type: Transform
- - uid: 30334
+ - uid: 30347
components:
- rot: 3.141592653589793 rad
pos: -47.5,17.5
parent: 2
type: Transform
- - uid: 30335
+ - uid: 30348
components:
- rot: 3.141592653589793 rad
pos: -29.5,-4.5
parent: 2
type: Transform
- - uid: 30336
+ - uid: 30349
components:
- rot: 3.141592653589793 rad
pos: -29.5,-6.5
parent: 2
type: Transform
- - uid: 30337
+ - uid: 30350
components:
- rot: 3.141592653589793 rad
pos: -29.5,-8.5
parent: 2
type: Transform
- - uid: 30338
+ - uid: 30351
components:
- rot: 3.141592653589793 rad
pos: -28.5,-8.5
parent: 2
type: Transform
- - uid: 30339
+ - uid: 30352
components:
- rot: 3.141592653589793 rad
pos: -27.5,-8.5
parent: 2
type: Transform
- - uid: 30340
+ - uid: 30353
components:
- rot: 3.141592653589793 rad
pos: -28.5,-4.5
parent: 2
type: Transform
- - uid: 30341
+ - uid: 30354
components:
- rot: -1.5707963267948966 rad
pos: -35.5,-1.5
parent: 2
type: Transform
- - uid: 30342
+ - uid: 30355
components:
- rot: -1.5707963267948966 rad
pos: -36.5,-1.5
parent: 2
type: Transform
- - uid: 30343
+ - uid: 30356
components:
- rot: -1.5707963267948966 rad
pos: -38.5,-1.5
parent: 2
type: Transform
- - uid: 30344
+ - uid: 30357
components:
- rot: -1.5707963267948966 rad
pos: -39.5,-1.5
parent: 2
type: Transform
- - uid: 30345
+ - uid: 30358
components:
- rot: -1.5707963267948966 rad
pos: -40.5,-1.5
parent: 2
type: Transform
- - uid: 30346
+ - uid: 30359
components:
- rot: -1.5707963267948966 rad
pos: -41.5,-1.5
parent: 2
type: Transform
- - uid: 30347
+ - uid: 30360
components:
- rot: -1.5707963267948966 rad
pos: -42.5,-1.5
parent: 2
type: Transform
- - uid: 30348
+ - uid: 30361
components:
- pos: -42.5,2.5
parent: 2
type: Transform
- - uid: 30349
+ - uid: 30362
components:
- pos: -43.5,2.5
parent: 2
type: Transform
- - uid: 30350
+ - uid: 30363
components:
- pos: -42.5,3.5
parent: 2
type: Transform
- - uid: 30351
+ - uid: 30364
components:
- pos: -42.5,4.5
parent: 2
type: Transform
- - uid: 30352
+ - uid: 30365
components:
- pos: -42.5,5.5
parent: 2
type: Transform
- - uid: 30353
+ - uid: 30366
components:
- pos: -42.5,6.5
parent: 2
type: Transform
- - uid: 30354
+ - uid: 30367
components:
- pos: -42.5,7.5
parent: 2
type: Transform
- - uid: 30355
+ - uid: 30368
components:
- pos: -41.5,11.5
parent: 2
type: Transform
- - uid: 30356
+ - uid: 30369
components:
- pos: -41.5,10.5
parent: 2
type: Transform
- - uid: 30357
+ - uid: 30370
components:
- pos: -41.5,9.5
parent: 2
type: Transform
- - uid: 30358
+ - uid: 30371
components:
- pos: -41.5,8.5
parent: 2
type: Transform
- - uid: 30359
+ - uid: 30372
components:
- pos: -34.5,12.5
parent: 2
type: Transform
- - uid: 30360
+ - uid: 30373
components:
- pos: -34.5,11.5
parent: 2
type: Transform
- - uid: 30361
+ - uid: 30374
components:
- pos: -34.5,10.5
parent: 2
type: Transform
- - uid: 30362
+ - uid: 30375
components:
- pos: -33.5,3.5
parent: 2
type: Transform
- - uid: 30363
+ - uid: 30376
components:
- pos: -33.5,4.5
parent: 2
type: Transform
- - uid: 30364
+ - uid: 30377
components:
- pos: -33.5,5.5
parent: 2
type: Transform
- - uid: 30365
+ - uid: 30378
components:
- pos: -33.5,6.5
parent: 2
type: Transform
- - uid: 30366
+ - uid: 30379
components:
- pos: -33.5,7.5
parent: 2
type: Transform
- - uid: 30367
+ - uid: 30380
components:
- pos: -43.5,15.5
parent: 2
type: Transform
- - uid: 30368
+ - uid: 30381
components:
- pos: -33.5,12.5
parent: 2
type: Transform
- - uid: 30369
+ - uid: 30382
components:
- pos: -42.5,12.5
parent: 2
type: Transform
- - uid: 30370
+ - uid: 30383
components:
- pos: -32.5,12.5
parent: 2
type: Transform
- - uid: 30371
+ - uid: 30384
components:
- pos: -41.5,7.5
parent: 2
type: Transform
- - uid: 30372
+ - uid: 30385
components:
- pos: -40.5,7.5
parent: 2
type: Transform
- - uid: 30373
+ - uid: 30386
components:
- pos: -35.5,7.5
parent: 2
type: Transform
- - uid: 30374
+ - uid: 30387
components:
- pos: -34.5,7.5
parent: 2
type: Transform
- - uid: 30375
+ - uid: 30388
components:
- rot: 3.141592653589793 rad
pos: -41.5,14.5
parent: 2
type: Transform
- - uid: 30376
+ - uid: 30389
components:
- pos: -43.5,12.5
parent: 2
type: Transform
- - uid: 30377
+ - uid: 30390
components:
- pos: -43.5,13.5
parent: 2
type: Transform
- - uid: 30378
+ - uid: 30391
components:
- pos: -32.5,15.5
parent: 2
type: Transform
- - uid: 30379
+ - uid: 30392
components:
- pos: -41.5,12.5
parent: 2
type: Transform
- - uid: 30380
+ - uid: 30393
components:
- pos: -29.5,11.5
parent: 2
type: Transform
- - uid: 30381
+ - uid: 30394
components:
- pos: -34.5,8.5
parent: 2
type: Transform
- - uid: 30382
+ - uid: 30395
components:
- pos: -33.5,-1.5
parent: 2
type: Transform
- - uid: 30383
+ - uid: 30396
components:
- pos: -34.5,9.5
parent: 2
type: Transform
- - uid: 30384
+ - uid: 30397
components:
- rot: 3.141592653589793 rad
pos: -32.5,13.5
parent: 2
type: Transform
- - uid: 30385
+ - uid: 30398
components:
- rot: 3.141592653589793 rad
pos: -41.5,13.5
parent: 2
type: Transform
- - uid: 30386
+ - uid: 30399
components:
- rot: 3.141592653589793 rad
pos: -41.5,16.5
parent: 2
type: Transform
- - uid: 30387
+ - uid: 30400
components:
- rot: 3.141592653589793 rad
pos: -41.5,14.5
parent: 2
type: Transform
- - uid: 30388
+ - uid: 30401
components:
- pos: -43.5,-1.5
parent: 2
type: Transform
- - uid: 30389
+ - uid: 30402
components:
- pos: -44.5,2.5
parent: 2
type: Transform
- - uid: 30390
+ - uid: 30403
components:
- pos: -44.5,-1.5
parent: 2
type: Transform
- - uid: 30391
+ - uid: 30404
components:
- pos: -32.5,11.5
parent: 2
type: Transform
- - uid: 30392
+ - uid: 30405
components:
- pos: -31.5,11.5
parent: 2
type: Transform
- - uid: 30393
+ - uid: 30406
components:
- rot: -1.5707963267948966 rad
pos: -41.5,16.5
parent: 2
type: Transform
- - uid: 30394
+ - uid: 30407
components:
- rot: 3.141592653589793 rad
pos: -40.5,17.5
parent: 2
type: Transform
- - uid: 30395
+ - uid: 30408
components:
- pos: -9.5,-19.5
parent: 2
type: Transform
- - uid: 30396
+ - uid: 30409
components:
- pos: -32.5,7.5
parent: 2
type: Transform
- - uid: 30397
+ - uid: 30410
components:
- pos: -31.5,7.5
parent: 2
type: Transform
- - uid: 30398
+ - uid: 30411
components:
- pos: -29.5,7.5
parent: 2
type: Transform
- - uid: 30399
+ - uid: 30412
components:
- rot: 3.141592653589793 rad
pos: -41.5,15.5
parent: 2
type: Transform
- - uid: 30400
+ - uid: 30413
components:
- rot: 1.5707963267948966 rad
pos: -48.5,2.5
parent: 2
type: Transform
- - uid: 30401
+ - uid: 30414
components:
- rot: 1.5707963267948966 rad
pos: -48.5,1.5
parent: 2
type: Transform
- - uid: 30402
+ - uid: 30415
components:
- rot: 1.5707963267948966 rad
pos: -48.5,-0.5
parent: 2
type: Transform
- - uid: 30403
+ - uid: 30416
components:
- rot: 1.5707963267948966 rad
pos: -48.5,-1.5
parent: 2
type: Transform
- - uid: 30404
+ - uid: 30417
components:
- rot: 1.5707963267948966 rad
pos: -46.5,-1.5
parent: 2
type: Transform
- - uid: 30405
+ - uid: 30418
components:
- rot: 1.5707963267948966 rad
pos: -45.5,-1.5
parent: 2
type: Transform
- - uid: 30406
+ - uid: 30419
components:
- rot: 1.5707963267948966 rad
pos: -47.5,-1.5
parent: 2
type: Transform
- - uid: 30407
+ - uid: 30420
components:
- rot: 1.5707963267948966 rad
pos: -49.5,2.5
parent: 2
type: Transform
- - uid: 30408
+ - uid: 30421
components:
- rot: 1.5707963267948966 rad
pos: -50.5,2.5
parent: 2
type: Transform
- - uid: 30409
+ - uid: 30422
components:
- rot: 1.5707963267948966 rad
pos: -50.5,3.5
parent: 2
type: Transform
- - uid: 30410
+ - uid: 30423
components:
- rot: 1.5707963267948966 rad
pos: -50.5,4.5
parent: 2
type: Transform
- - uid: 30411
+ - uid: 30424
components:
- rot: 1.5707963267948966 rad
pos: -50.5,5.5
parent: 2
type: Transform
- - uid: 30412
+ - uid: 30425
components:
- rot: 1.5707963267948966 rad
pos: -50.5,6.5
parent: 2
type: Transform
- - uid: 30413
+ - uid: 30426
components:
- rot: 1.5707963267948966 rad
pos: -50.5,7.5
parent: 2
type: Transform
- - uid: 30414
+ - uid: 30427
components:
- rot: 1.5707963267948966 rad
pos: -50.5,8.5
parent: 2
type: Transform
- - uid: 30415
+ - uid: 30428
components:
- rot: 1.5707963267948966 rad
pos: -50.5,9.5
parent: 2
type: Transform
- - uid: 30416
+ - uid: 30429
components:
- rot: 1.5707963267948966 rad
pos: -49.5,9.5
parent: 2
type: Transform
- - uid: 30417
+ - uid: 30430
components:
- rot: 1.5707963267948966 rad
pos: -48.5,9.5
parent: 2
type: Transform
- - uid: 30418
+ - uid: 30431
components:
- rot: 1.5707963267948966 rad
pos: -47.5,9.5
parent: 2
type: Transform
- - uid: 30419
+ - uid: 30432
components:
- rot: 1.5707963267948966 rad
pos: -44.5,9.5
parent: 2
type: Transform
- - uid: 30420
+ - uid: 30433
components:
- rot: 1.5707963267948966 rad
pos: -43.5,9.5
parent: 2
type: Transform
- - uid: 30421
+ - uid: 30434
components:
- rot: 1.5707963267948966 rad
pos: -43.5,8.5
parent: 2
type: Transform
- - uid: 30422
+ - uid: 30435
components:
- rot: 1.5707963267948966 rad
pos: -43.5,7.5
parent: 2
type: Transform
- - uid: 30423
+ - uid: 30436
components:
- rot: 1.5707963267948966 rad
pos: -44.5,10.5
parent: 2
type: Transform
- - uid: 30424
+ - uid: 30437
components:
- rot: 1.5707963267948966 rad
pos: -44.5,12.5
parent: 2
type: Transform
- - uid: 30425
+ - uid: 30438
components:
- pos: -50.5,1.5
parent: 2
type: Transform
- - uid: 30426
+ - uid: 30439
components:
- pos: -50.5,0.5
parent: 2
type: Transform
- - uid: 30427
+ - uid: 30440
components:
- pos: -50.5,-0.5
parent: 2
type: Transform
- - uid: 30428
+ - uid: 30441
components:
- pos: -50.5,-1.5
parent: 2
type: Transform
- - uid: 30429
+ - uid: 30442
components:
- pos: -46.5,-3.5
parent: 2
type: Transform
- - uid: 30430
+ - uid: 30443
components:
- pos: -43.5,-2.5
parent: 2
type: Transform
- - uid: 30431
+ - uid: 30444
components:
- pos: -50.5,-2.5
parent: 2
type: Transform
- - uid: 30432
+ - uid: 30445
components:
- pos: -52.5,-1.5
parent: 2
type: Transform
- - uid: 30433
+ - uid: 30446
components:
- pos: -52.5,0.5
parent: 2
type: Transform
- - uid: 30434
+ - uid: 30447
components:
- pos: -52.5,-2.5
parent: 2
type: Transform
- - uid: 30435
+ - uid: 30448
components:
- pos: -54.5,-2.5
parent: 2
type: Transform
- - uid: 30436
+ - uid: 30449
components:
- rot: 3.141592653589793 rad
pos: -11.5,22.5
parent: 2
type: Transform
- - uid: 30437
+ - uid: 30450
components:
- pos: -56.5,-2.5
parent: 2
type: Transform
- - uid: 30438
+ - uid: 30451
components:
- pos: -55.5,-2.5
parent: 2
type: Transform
- - uid: 30439
+ - uid: 30452
components:
- pos: -52.5,1.5
parent: 2
type: Transform
- - uid: 30440
+ - uid: 30453
components:
- pos: -50.5,12.5
parent: 2
type: Transform
- - uid: 30441
+ - uid: 30454
components:
- pos: -50.5,13.5
parent: 2
type: Transform
- - uid: 30442
+ - uid: 30455
components:
- pos: -50.5,14.5
parent: 2
type: Transform
- - uid: 30443
+ - uid: 30456
components:
- pos: -50.5,15.5
parent: 2
type: Transform
- - uid: 30444
+ - uid: 30457
components:
- rot: 3.141592653589793 rad
pos: -52.5,12.5
parent: 2
type: Transform
- - uid: 30445
+ - uid: 30458
components:
- rot: 3.141592653589793 rad
pos: -52.5,5.5
parent: 2
type: Transform
- - uid: 30446
+ - uid: 30459
components:
- rot: 3.141592653589793 rad
pos: -51.5,9.5
parent: 2
type: Transform
- - uid: 30447
+ - uid: 30460
components:
- rot: 3.141592653589793 rad
pos: -51.5,5.5
parent: 2
type: Transform
- - uid: 30448
+ - uid: 30461
components:
- rot: 3.141592653589793 rad
pos: -46.5,17.5
parent: 2
type: Transform
- - uid: 30449
+ - uid: 30462
components:
- pos: -32.5,-3.5
parent: 2
type: Transform
- - uid: 30450
+ - uid: 30463
components:
- pos: 53.5,41.5
parent: 2
type: Transform
- - uid: 30451
+ - uid: 30464
components:
- pos: 64.5,0.5
parent: 2
type: Transform
- - uid: 30452
+ - uid: 30465
components:
- pos: 67.5,-12.5
parent: 2
type: Transform
- - uid: 30453
+ - uid: 30466
components:
- pos: 67.5,-4.5
parent: 2
type: Transform
- - uid: 30454
+ - uid: 30467
components:
- pos: 53.5,40.5
parent: 2
type: Transform
- - uid: 30455
+ - uid: 30468
components:
- pos: -17.5,36.5
parent: 2
type: Transform
- - uid: 30456
+ - uid: 30469
components:
- pos: -20.5,32.5
parent: 2
type: Transform
- - uid: 30457
+ - uid: 30470
components:
- pos: -21.5,32.5
parent: 2
type: Transform
- - uid: 30458
+ - uid: 30471
components:
- pos: -21.5,31.5
parent: 2
type: Transform
- - uid: 30459
+ - uid: 30472
components:
- rot: -1.5707963267948966 rad
pos: -22.5,32.5
parent: 2
type: Transform
- - uid: 30460
+ - uid: 30473
components:
- pos: -21.5,29.5
parent: 2
type: Transform
- - uid: 30461
+ - uid: 30474
components:
- pos: -21.5,28.5
parent: 2
type: Transform
- - uid: 30462
+ - uid: 30475
components:
- pos: -21.5,26.5
parent: 2
type: Transform
- - uid: 30463
+ - uid: 30476
components:
- pos: -17.5,28.5
parent: 2
type: Transform
- - uid: 30464
+ - uid: 30477
components:
- rot: -1.5707963267948966 rad
pos: -13.5,27.5
parent: 2
type: Transform
- - uid: 30465
+ - uid: 30478
components:
- rot: -1.5707963267948966 rad
pos: -13.5,23.5
parent: 2
type: Transform
- - uid: 30466
+ - uid: 30479
components:
- pos: -35.5,20.5
parent: 2
type: Transform
- - uid: 30467
+ - uid: 30480
components:
- pos: -0.5,10.5
parent: 2
type: Transform
- - uid: 30468
+ - uid: 30481
components:
- rot: 1.5707963267948966 rad
pos: -6.5,-11.5
parent: 2
type: Transform
- - uid: 30469
+ - uid: 30482
components:
- pos: 5.5,-55.5
parent: 2
type: Transform
- - uid: 30470
+ - uid: 30483
components:
- pos: 59.5,-31.5
parent: 2
type: Transform
- - uid: 30471
+ - uid: 30484
components:
- rot: -1.5707963267948966 rad
pos: -0.5,-76.5
parent: 2
type: Transform
- - uid: 30472
+ - uid: 30485
components:
- pos: 19.5,-51.5
parent: 2
type: Transform
- - uid: 30473
+ - uid: 30486
components:
- pos: 22.5,-48.5
parent: 2
type: Transform
- - uid: 30474
+ - uid: 30487
components:
- rot: 3.141592653589793 rad
pos: -31.5,-53.5
parent: 2
type: Transform
- - uid: 30475
+ - uid: 30488
components:
- pos: -27.5,-55.5
parent: 2
type: Transform
- - uid: 30476
+ - uid: 30489
components:
- rot: 3.141592653589793 rad
pos: -17.5,8.5
parent: 2
type: Transform
- - uid: 30477
+ - uid: 30490
components:
- pos: -21.5,-6.5
parent: 2
type: Transform
- - uid: 30478
+ - uid: 30491
components:
- rot: 3.141592653589793 rad
pos: -44.5,17.5
parent: 2
type: Transform
- - uid: 30479
+ - uid: 30492
components:
- rot: 3.141592653589793 rad
pos: -31.5,-72.5
parent: 2
type: Transform
- - uid: 30480
+ - uid: 30493
components:
- pos: -30.5,-68.5
parent: 2
type: Transform
- - uid: 30481
+ - uid: 30494
components:
- pos: -26.5,-72.5
parent: 2
type: Transform
- - uid: 30482
+ - uid: 30495
components:
- pos: -26.5,-71.5
parent: 2
type: Transform
- - uid: 30483
+ - uid: 30496
components:
- pos: 6.5,-55.5
parent: 2
type: Transform
- - uid: 30484
+ - uid: 30497
components:
- pos: -17.5,32.5
parent: 2
type: Transform
- - uid: 30485
+ - uid: 30498
components:
- pos: -18.5,32.5
parent: 2
type: Transform
- - uid: 30486
+ - uid: 30499
components:
- pos: -19.5,32.5
parent: 2
type: Transform
- - uid: 30487
+ - uid: 30500
components:
- pos: 44.5,47.5
parent: 2
type: Transform
- - uid: 30488
+ - uid: 30501
components:
- pos: 44.5,48.5
parent: 2
type: Transform
- - uid: 30489
+ - uid: 30502
components:
- pos: 53.5,39.5
parent: 2
type: Transform
- - uid: 30490
+ - uid: 30503
components:
- pos: 53.5,38.5
parent: 2
type: Transform
- - uid: 30491
+ - uid: 30504
components:
- pos: 52.5,38.5
parent: 2
type: Transform
- - uid: 30492
+ - uid: 30505
components:
- pos: 51.5,38.5
parent: 2
type: Transform
- - uid: 30493
+ - uid: 30506
components:
- pos: 50.5,38.5
parent: 2
type: Transform
- - uid: 30494
+ - uid: 30507
components:
- pos: 55.5,36.5
parent: 2
type: Transform
- - uid: 30495
+ - uid: 30508
components:
- pos: 55.5,35.5
parent: 2
type: Transform
- - uid: 30496
+ - uid: 30509
components:
- pos: 55.5,34.5
parent: 2
type: Transform
- - uid: 30497
+ - uid: 30510
components:
- pos: 54.5,34.5
parent: 2
type: Transform
- - uid: 30498
+ - uid: 30511
components:
- pos: 53.5,34.5
parent: 2
type: Transform
- - uid: 30499
+ - uid: 30512
components:
- pos: 51.5,34.5
parent: 2
type: Transform
- - uid: 30500
+ - uid: 30513
components:
- pos: 50.5,34.5
parent: 2
type: Transform
- - uid: 30501
+ - uid: 30514
components:
- pos: 50.5,35.5
parent: 2
type: Transform
- - uid: 30502
+ - uid: 30515
components:
- pos: 50.5,36.5
parent: 2
type: Transform
- - uid: 30503
+ - uid: 30516
components:
- pos: 50.5,37.5
parent: 2
type: Transform
- - uid: 30504
+ - uid: 30517
components:
- pos: 51.5,33.5
parent: 2
type: Transform
- - uid: 30505
+ - uid: 30518
components:
- pos: 51.5,32.5
parent: 2
type: Transform
- - uid: 30506
+ - uid: 30519
components:
- pos: 53.5,33.5
parent: 2
type: Transform
- - uid: 30507
+ - uid: 30520
components:
- pos: 53.5,32.5
parent: 2
type: Transform
- - uid: 30508
+ - uid: 30521
components:
- pos: 53.5,31.5
parent: 2
type: Transform
- - uid: 30509
+ - uid: 30522
components:
- pos: 53.5,30.5
parent: 2
type: Transform
- - uid: 30510
+ - uid: 30523
components:
- pos: 52.5,30.5
parent: 2
type: Transform
- - uid: 30511
+ - uid: 30524
components:
- pos: 51.5,30.5
parent: 2
type: Transform
- - uid: 30512
+ - uid: 30525
components:
- pos: 49.5,30.5
parent: 2
type: Transform
- - uid: 30513
+ - uid: 30526
components:
- pos: 50.5,30.5
parent: 2
type: Transform
- - uid: 30514
+ - uid: 30527
components:
- pos: 49.5,34.5
parent: 2
type: Transform
- - uid: 30515
+ - uid: 30528
components:
- pos: 48.5,34.5
parent: 2
type: Transform
- - uid: 30516
+ - uid: 30529
components:
- pos: 47.5,30.5
parent: 2
type: Transform
- - uid: 30517
+ - uid: 30530
components:
- pos: 47.5,29.5
parent: 2
type: Transform
- - uid: 30518
+ - uid: 30531
components:
- pos: 47.5,28.5
parent: 2
type: Transform
- - uid: 30519
+ - uid: 30532
components:
- pos: 47.5,27.5
parent: 2
type: Transform
- - uid: 30520
+ - uid: 30533
components:
- pos: 49.5,27.5
parent: 2
type: Transform
- - uid: 30521
+ - uid: 30534
components:
- pos: 50.5,27.5
parent: 2
type: Transform
- - uid: 30522
+ - uid: 30535
components:
- pos: 51.5,27.5
parent: 2
type: Transform
- - uid: 30523
+ - uid: 30536
components:
- pos: 51.5,28.5
parent: 2
type: Transform
- - uid: 30524
+ - uid: 30537
components:
- pos: 51.5,29.5
parent: 2
type: Transform
- - uid: 30525
+ - uid: 30538
components:
- pos: 60.5,27.5
parent: 2
type: Transform
- - uid: 30526
+ - uid: 30539
components:
- pos: 59.5,27.5
parent: 2
type: Transform
- - uid: 30527
+ - uid: 30540
components:
- pos: 57.5,27.5
parent: 2
type: Transform
- - uid: 30528
+ - uid: 30541
components:
- pos: 56.5,27.5
parent: 2
type: Transform
- - uid: 30529
+ - uid: 30542
components:
- pos: 61.5,29.5
parent: 2
type: Transform
- - uid: 30530
+ - uid: 30543
components:
- pos: 61.5,28.5
parent: 2
type: Transform
- - uid: 30531
+ - uid: 30544
components:
- pos: 61.5,27.5
parent: 2
type: Transform
- - uid: 30532
+ - uid: 30545
components:
- pos: 59.5,30.5
parent: 2
type: Transform
- - uid: 30533
+ - uid: 30546
components:
- pos: 58.5,30.5
parent: 2
type: Transform
- - uid: 30534
+ - uid: 30547
components:
- pos: 56.5,30.5
parent: 2
type: Transform
- - uid: 30535
+ - uid: 30548
components:
- pos: 56.5,29.5
parent: 2
type: Transform
- - uid: 30536
+ - uid: 30549
components:
- pos: 56.5,28.5
parent: 2
type: Transform
- - uid: 30537
+ - uid: 30550
components:
- pos: 54.5,30.5
parent: 2
type: Transform
- - uid: 30538
+ - uid: 30551
components:
- pos: 55.5,30.5
parent: 2
type: Transform
- - uid: 30539
+ - uid: 30552
components:
- rot: -1.5707963267948966 rad
pos: 49.5,29.5
parent: 2
type: Transform
- - uid: 30540
+ - uid: 30553
components:
- rot: 3.141592653589793 rad
pos: -11.5,23.5
parent: 2
type: Transform
- - uid: 30541
+ - uid: 30554
components:
- rot: -1.5707963267948966 rad
pos: -23.5,32.5
parent: 2
type: Transform
- - uid: 30542
+ - uid: 30555
components:
- rot: -1.5707963267948966 rad
pos: -24.5,32.5
parent: 2
type: Transform
- - uid: 30543
+ - uid: 30556
components:
- rot: -1.5707963267948966 rad
pos: -25.5,32.5
parent: 2
type: Transform
- - uid: 30544
+ - uid: 30557
components:
- rot: -1.5707963267948966 rad
pos: -22.5,28.5
parent: 2
type: Transform
- - uid: 30545
+ - uid: 30558
components:
- rot: -1.5707963267948966 rad
pos: -23.5,28.5
parent: 2
type: Transform
- - uid: 30546
+ - uid: 30559
components:
- rot: -1.5707963267948966 rad
pos: -24.5,28.5
parent: 2
type: Transform
- - uid: 30547
+ - uid: 30560
components:
- rot: -1.5707963267948966 rad
pos: -25.5,28.5
parent: 2
type: Transform
- - uid: 30548
+ - uid: 30561
components:
- rot: -1.5707963267948966 rad
pos: -25.5,31.5
parent: 2
type: Transform
- - uid: 30549
+ - uid: 30562
components:
- rot: -1.5707963267948966 rad
pos: -25.5,30.5
parent: 2
type: Transform
- - uid: 30550
+ - uid: 30563
components:
- rot: -1.5707963267948966 rad
pos: -25.5,29.5
parent: 2
type: Transform
- - uid: 30551
+ - uid: 30564
components:
- rot: -1.5707963267948966 rad
pos: -20.5,36.5
parent: 2
type: Transform
- - uid: 30552
+ - uid: 30565
components:
- rot: -1.5707963267948966 rad
pos: -19.5,36.5
parent: 2
type: Transform
- - uid: 30553
+ - uid: 30566
components:
- rot: -1.5707963267948966 rad
pos: -21.5,36.5
parent: 2
type: Transform
- - uid: 30554
+ - uid: 30567
components:
- rot: -1.5707963267948966 rad
pos: -22.5,36.5
parent: 2
type: Transform
- - uid: 30555
+ - uid: 30568
components:
- rot: -1.5707963267948966 rad
pos: -22.5,35.5
parent: 2
type: Transform
- - uid: 30556
+ - uid: 30569
components:
- rot: -1.5707963267948966 rad
pos: -22.5,33.5
parent: 2
type: Transform
- - uid: 30557
+ - uid: 30570
components:
- rot: -1.5707963267948966 rad
pos: -26.5,29.5
parent: 2
type: Transform
- - uid: 30558
+ - uid: 30571
components:
- rot: -1.5707963267948966 rad
pos: -27.5,29.5
parent: 2
type: Transform
- - uid: 30559
+ - uid: 30572
components:
- rot: -1.5707963267948966 rad
pos: -27.5,30.5
parent: 2
type: Transform
- - uid: 30560
+ - uid: 30573
components:
- rot: -1.5707963267948966 rad
pos: -18.5,37.5
parent: 2
type: Transform
- - uid: 30561
+ - uid: 30574
components:
- rot: -1.5707963267948966 rad
pos: -17.5,39.5
parent: 2
type: Transform
- - uid: 30562
+ - uid: 30575
components:
- rot: -1.5707963267948966 rad
pos: -18.5,39.5
parent: 2
type: Transform
- - uid: 30563
+ - uid: 30576
components:
- rot: -1.5707963267948966 rad
pos: -19.5,39.5
parent: 2
type: Transform
- - uid: 30564
+ - uid: 30577
components:
- rot: -1.5707963267948966 rad
pos: -9.5,31.5
parent: 2
type: Transform
- - uid: 30565
+ - uid: 30578
components:
- rot: -1.5707963267948966 rad
pos: -9.5,32.5
parent: 2
type: Transform
- - uid: 30566
+ - uid: 30579
components:
- rot: -1.5707963267948966 rad
pos: -13.5,31.5
parent: 2
type: Transform
- - uid: 30567
+ - uid: 30580
components:
- rot: -1.5707963267948966 rad
pos: -13.5,32.5
parent: 2
type: Transform
- - uid: 30568
+ - uid: 30581
components:
- rot: -1.5707963267948966 rad
pos: -9.5,36.5
parent: 2
type: Transform
- - uid: 30569
+ - uid: 30582
components:
- rot: -1.5707963267948966 rad
pos: -8.5,36.5
parent: 2
type: Transform
- - uid: 30570
+ - uid: 30583
components:
- rot: -1.5707963267948966 rad
pos: -13.5,40.5
parent: 2
type: Transform
- - uid: 30571
+ - uid: 30584
components:
- rot: -1.5707963267948966 rad
pos: -12.5,40.5
parent: 2
type: Transform
- - uid: 30572
+ - uid: 30585
components:
- rot: -1.5707963267948966 rad
pos: -11.5,40.5
parent: 2
type: Transform
- - uid: 30573
+ - uid: 30586
components:
- rot: -1.5707963267948966 rad
pos: -10.5,35.5
parent: 2
type: Transform
- - uid: 30574
+ - uid: 30587
components:
- rot: -1.5707963267948966 rad
pos: -19.5,52.5
parent: 2
type: Transform
- - uid: 30575
+ - uid: 30588
components:
- rot: -1.5707963267948966 rad
pos: -10.5,40.5
parent: 2
type: Transform
- - uid: 30576
+ - uid: 30589
components:
- rot: -1.5707963267948966 rad
pos: -9.5,40.5
parent: 2
type: Transform
- - uid: 30577
+ - uid: 30590
components:
- rot: -1.5707963267948966 rad
pos: -8.5,40.5
parent: 2
type: Transform
- - uid: 30578
+ - uid: 30591
components:
- rot: -1.5707963267948966 rad
pos: -10.5,36.5
parent: 2
type: Transform
- - uid: 30579
+ - uid: 30592
components:
- rot: -1.5707963267948966 rad
pos: -11.5,36.5
parent: 2
type: Transform
- - uid: 30580
+ - uid: 30593
components:
- rot: -1.5707963267948966 rad
pos: -12.5,36.5
parent: 2
type: Transform
- - uid: 30581
+ - uid: 30594
components:
- rot: -1.5707963267948966 rad
pos: -16.5,64.5
parent: 2
type: Transform
- - uid: 30582
+ - uid: 30595
components:
- rot: -1.5707963267948966 rad
pos: -15.5,64.5
parent: 2
type: Transform
- - uid: 30583
+ - uid: 30596
components:
- rot: -1.5707963267948966 rad
pos: -14.5,64.5
parent: 2
type: Transform
- - uid: 30584
+ - uid: 30597
components:
- rot: -1.5707963267948966 rad
pos: -18.5,64.5
parent: 2
type: Transform
- - uid: 30585
+ - uid: 30598
components:
- rot: -1.5707963267948966 rad
pos: -19.5,64.5
parent: 2
type: Transform
- - uid: 30586
+ - uid: 30599
components:
- rot: -1.5707963267948966 rad
pos: -20.5,64.5
parent: 2
type: Transform
- - uid: 30587
+ - uid: 30600
components:
- rot: -1.5707963267948966 rad
pos: -14.5,63.5
parent: 2
type: Transform
- - uid: 30588
+ - uid: 30601
components:
- rot: -1.5707963267948966 rad
pos: -14.5,61.5
parent: 2
type: Transform
- - uid: 30589
+ - uid: 30602
components:
- rot: -1.5707963267948966 rad
pos: -14.5,60.5
parent: 2
type: Transform
- - uid: 30590
+ - uid: 30603
components:
- rot: -1.5707963267948966 rad
pos: -20.5,63.5
parent: 2
type: Transform
- - uid: 30591
+ - uid: 30604
components:
- rot: -1.5707963267948966 rad
pos: -20.5,61.5
parent: 2
type: Transform
- - uid: 30592
+ - uid: 30605
components:
- rot: -1.5707963267948966 rad
pos: -20.5,60.5
parent: 2
type: Transform
- - uid: 30593
+ - uid: 30606
components:
- rot: -1.5707963267948966 rad
pos: -11.5,62.5
parent: 2
type: Transform
- - uid: 30594
+ - uid: 30607
components:
- rot: -1.5707963267948966 rad
pos: -11.5,61.5
parent: 2
type: Transform
- - uid: 30595
+ - uid: 30608
components:
- rot: -1.5707963267948966 rad
pos: -11.5,60.5
parent: 2
type: Transform
- - uid: 30596
+ - uid: 30609
components:
- rot: -1.5707963267948966 rad
pos: -20.5,59.5
parent: 2
type: Transform
- - uid: 30597
+ - uid: 30610
components:
- rot: -1.5707963267948966 rad
pos: -18.5,59.5
parent: 2
type: Transform
- - uid: 30598
+ - uid: 30611
components:
- rot: -1.5707963267948966 rad
pos: -18.5,58.5
parent: 2
type: Transform
- - uid: 30599
+ - uid: 30612
components:
- rot: -1.5707963267948966 rad
pos: -18.5,57.5
parent: 2
type: Transform
- - uid: 30600
+ - uid: 30613
components:
- rot: -1.5707963267948966 rad
pos: -11.5,57.5
parent: 2
type: Transform
- - uid: 30601
+ - uid: 30614
components:
- rot: -1.5707963267948966 rad
pos: -20.5,58.5
parent: 2
type: Transform
- - uid: 30602
+ - uid: 30615
components:
- rot: -1.5707963267948966 rad
pos: -20.5,57.5
parent: 2
type: Transform
- - uid: 30603
+ - uid: 30616
components:
- rot: -1.5707963267948966 rad
pos: -18.5,56.5
parent: 2
type: Transform
- - uid: 30604
+ - uid: 30617
components:
- rot: 1.5707963267948966 rad
pos: -19.5,57.5
parent: 2
type: Transform
- - uid: 30605
+ - uid: 30618
components:
- rot: -1.5707963267948966 rad
pos: -20.5,56.5
parent: 2
type: Transform
- - uid: 30606
+ - uid: 30619
components:
- rot: -1.5707963267948966 rad
pos: -20.5,54.5
parent: 2
type: Transform
- - uid: 30607
+ - uid: 30620
components:
- rot: -1.5707963267948966 rad
pos: -18.5,54.5
parent: 2
type: Transform
- - uid: 30608
+ - uid: 30621
components:
- rot: -1.5707963267948966 rad
pos: -18.5,53.5
parent: 2
type: Transform
- - uid: 30609
+ - uid: 30622
components:
- rot: -1.5707963267948966 rad
pos: -18.5,52.5
parent: 2
type: Transform
- - uid: 30610
+ - uid: 30623
components:
- rot: -1.5707963267948966 rad
pos: -22.5,49.5
parent: 2
type: Transform
- - uid: 30611
+ - uid: 30624
components:
- rot: -1.5707963267948966 rad
pos: -23.5,54.5
parent: 2
type: Transform
- - uid: 30612
+ - uid: 30625
components:
- rot: -1.5707963267948966 rad
pos: -23.5,55.5
parent: 2
type: Transform
- - uid: 30613
+ - uid: 30626
components:
- rot: -1.5707963267948966 rad
pos: -11.5,56.5
parent: 2
type: Transform
- - uid: 30614
+ - uid: 30627
components:
- rot: -1.5707963267948966 rad
pos: -11.5,55.5
parent: 2
type: Transform
- - uid: 30615
+ - uid: 30628
components:
- rot: -1.5707963267948966 rad
pos: -11.5,54.5
parent: 2
type: Transform
- - uid: 30616
+ - uid: 30629
components:
- rot: -1.5707963267948966 rad
pos: -20.5,53.5
parent: 2
type: Transform
- - uid: 30617
+ - uid: 30630
components:
- rot: -1.5707963267948966 rad
pos: -20.5,52.5
parent: 2
type: Transform
- - uid: 30618
+ - uid: 30631
components:
- rot: -1.5707963267948966 rad
pos: -23.5,53.5
parent: 2
type: Transform
- - uid: 30619
+ - uid: 30632
components:
- rot: -1.5707963267948966 rad
pos: -23.5,52.5
parent: 2
type: Transform
- - uid: 30620
+ - uid: 30633
components:
- rot: -1.5707963267948966 rad
pos: -23.5,49.5
parent: 2
type: Transform
- - uid: 30621
+ - uid: 30634
components:
- rot: -1.5707963267948966 rad
pos: -23.5,50.5
parent: 2
type: Transform
- - uid: 30622
+ - uid: 30635
components:
- rot: -1.5707963267948966 rad
pos: -23.5,51.5
parent: 2
type: Transform
- - uid: 30623
+ - uid: 30636
components:
- rot: -1.5707963267948966 rad
pos: -11.5,50.5
parent: 2
type: Transform
- - uid: 30624
+ - uid: 30637
components:
- rot: -1.5707963267948966 rad
pos: -11.5,49.5
parent: 2
type: Transform
- - uid: 30625
+ - uid: 30638
components:
- rot: -1.5707963267948966 rad
pos: -14.5,48.5
parent: 2
type: Transform
- - uid: 30626
+ - uid: 30639
components:
- rot: -1.5707963267948966 rad
pos: -11.5,48.5
parent: 2
type: Transform
- - uid: 30627
+ - uid: 30640
components:
- rot: -1.5707963267948966 rad
pos: -12.5,48.5
parent: 2
type: Transform
- - uid: 30628
+ - uid: 30641
components:
- rot: -1.5707963267948966 rad
pos: -15.5,49.5
parent: 2
type: Transform
- - uid: 30629
+ - uid: 30642
components:
- rot: -1.5707963267948966 rad
pos: -19.5,49.5
parent: 2
type: Transform
- - uid: 30630
+ - uid: 30643
components:
- rot: -1.5707963267948966 rad
pos: -19.5,48.5
parent: 2
type: Transform
- - uid: 30631
+ - uid: 30644
components:
- rot: -1.5707963267948966 rad
pos: -19.5,47.5
parent: 2
type: Transform
- - uid: 30632
+ - uid: 30645
components:
- rot: -1.5707963267948966 rad
pos: -19.5,46.5
parent: 2
type: Transform
- - uid: 30633
+ - uid: 30646
components:
- rot: -1.5707963267948966 rad
pos: -19.5,40.5
parent: 2
type: Transform
- - uid: 30634
+ - uid: 30647
components:
- rot: -1.5707963267948966 rad
pos: -15.5,48.5
parent: 2
type: Transform
- - uid: 30635
+ - uid: 30648
components:
- rot: -1.5707963267948966 rad
pos: -13.5,43.5
parent: 2
type: Transform
- - uid: 30636
+ - uid: 30649
components:
- rot: -1.5707963267948966 rad
pos: -13.5,42.5
parent: 2
type: Transform
- - uid: 30637
+ - uid: 30650
components:
- pos: -25.5,37.5
parent: 2
type: Transform
- - uid: 30638
+ - uid: 30651
components:
- pos: -25.5,36.5
parent: 2
type: Transform
- - uid: 30639
+ - uid: 30652
components:
- pos: -26.5,36.5
parent: 2
type: Transform
- - uid: 30640
+ - uid: 30653
components:
- pos: -25.5,39.5
parent: 2
type: Transform
- - uid: 30641
+ - uid: 30654
components:
- pos: -25.5,40.5
parent: 2
type: Transform
- - uid: 30642
+ - uid: 30655
components:
- pos: -44.5,38.5
parent: 2
type: Transform
- - uid: 30643
+ - uid: 30656
components:
- pos: -30.5,37.5
parent: 2
type: Transform
- - uid: 30644
+ - uid: 30657
components:
- pos: -31.5,37.5
parent: 2
type: Transform
- - uid: 30645
+ - uid: 30658
components:
- pos: -33.5,37.5
parent: 2
type: Transform
- - uid: 30646
+ - uid: 30659
components:
- pos: -33.5,38.5
parent: 2
type: Transform
- - uid: 30647
+ - uid: 30660
components:
- pos: -34.5,38.5
parent: 2
type: Transform
- - uid: 30648
+ - uid: 30661
components:
- pos: -35.5,36.5
parent: 2
type: Transform
- - uid: 30649
+ - uid: 30662
components:
- pos: -37.5,38.5
parent: 2
type: Transform
- - uid: 30650
+ - uid: 30663
components:
- pos: -38.5,38.5
parent: 2
type: Transform
- - uid: 30651
+ - uid: 30664
components:
- rot: 3.141592653589793 rad
pos: 67.5,9.5
parent: 2
type: Transform
- - uid: 30652
+ - uid: 30665
components:
- pos: -44.5,13.5
parent: 2
type: Transform
- - uid: 30653
+ - uid: 30666
components:
- rot: -1.5707963267948966 rad
pos: -22.5,40.5
parent: 2
type: Transform
- - uid: 30654
+ - uid: 30667
components:
- rot: -1.5707963267948966 rad
pos: -21.5,40.5
parent: 2
type: Transform
- - uid: 30655
+ - uid: 30668
components:
- rot: -1.5707963267948966 rad
pos: -20.5,40.5
parent: 2
type: Transform
- - uid: 30656
+ - uid: 30669
components:
- pos: -23.5,40.5
parent: 2
type: Transform
- - uid: 30657
+ - uid: 30670
components:
- pos: -23.5,42.5
parent: 2
type: Transform
- - uid: 30658
+ - uid: 30671
components:
- pos: -23.5,43.5
parent: 2
type: Transform
- - uid: 30659
+ - uid: 30672
components:
- pos: -23.5,44.5
parent: 2
type: Transform
- - uid: 30660
+ - uid: 30673
components:
- pos: -23.5,45.5
parent: 2
type: Transform
- - uid: 30661
+ - uid: 30674
components:
- pos: -23.5,46.5
parent: 2
type: Transform
- - uid: 30662
+ - uid: 30675
components:
- pos: -22.5,46.5
parent: 2
type: Transform
- - uid: 30663
+ - uid: 30676
components:
- pos: -21.5,46.5
parent: 2
type: Transform
- - uid: 30664
+ - uid: 30677
components:
- pos: -20.5,46.5
parent: 2
type: Transform
- - uid: 30665
+ - uid: 30678
components:
- pos: -8.5,47.5
parent: 2
type: Transform
- - uid: 30666
+ - uid: 30679
components:
- pos: -7.5,47.5
parent: 2
type: Transform
- - uid: 30667
+ - uid: 30680
components:
- pos: -6.5,47.5
parent: 2
type: Transform
- - uid: 30668
+ - uid: 30681
components:
- pos: -2.5,47.5
parent: 2
type: Transform
- - uid: 30669
+ - uid: 30682
components:
- pos: -1.5,47.5
parent: 2
type: Transform
- - uid: 30670
+ - uid: 30683
components:
- pos: -1.5,48.5
parent: 2
type: Transform
- - uid: 30671
+ - uid: 30684
components:
- pos: -1.5,51.5
parent: 2
type: Transform
- - uid: 30672
+ - uid: 30685
components:
- pos: -1.5,52.5
parent: 2
type: Transform
- - uid: 30673
+ - uid: 30686
components:
- pos: -1.5,53.5
parent: 2
type: Transform
- - uid: 30674
+ - uid: 30687
components:
- pos: -1.5,54.5
parent: 2
type: Transform
- - uid: 30675
+ - uid: 30688
components:
- pos: 45.5,34.5
parent: 2
type: Transform
- - uid: 30676
+ - uid: 30689
components:
- rot: 3.141592653589793 rad
pos: 45.5,33.5
parent: 2
type: Transform
- - uid: 30677
+ - uid: 30690
components:
- rot: -1.5707963267948966 rad
pos: -4.5,57.5
parent: 2
type: Transform
- - uid: 30678
+ - uid: 30691
components:
- rot: -1.5707963267948966 rad
pos: -3.5,57.5
parent: 2
type: Transform
- - uid: 30679
+ - uid: 30692
components:
- rot: -1.5707963267948966 rad
pos: -2.5,57.5
parent: 2
type: Transform
- - uid: 30680
+ - uid: 30693
components:
- rot: -1.5707963267948966 rad
pos: -1.5,57.5
parent: 2
type: Transform
- - uid: 30681
+ - uid: 30694
components:
- rot: -1.5707963267948966 rad
pos: -1.5,56.5
parent: 2
type: Transform
- - uid: 30682
+ - uid: 30695
components:
- rot: -1.5707963267948966 rad
pos: -1.5,55.5
parent: 2
type: Transform
- - uid: 30683
+ - uid: 30696
components:
- rot: -1.5707963267948966 rad
pos: -9.5,60.5
parent: 2
type: Transform
- - uid: 30684
+ - uid: 30697
components:
- pos: 17.5,35.5
parent: 2
type: Transform
- - uid: 30685
+ - uid: 30698
components:
- pos: 15.5,35.5
parent: 2
type: Transform
- - uid: 30686
+ - uid: 30699
components:
- pos: -28.5,42.5
parent: 2
type: Transform
- - uid: 30687
+ - uid: 30700
components:
- pos: -27.5,42.5
parent: 2
type: Transform
- - uid: 30688
+ - uid: 30701
components:
- pos: -26.5,42.5
parent: 2
type: Transform
- - uid: 30689
+ - uid: 30702
components:
- pos: -39.5,37.5
parent: 2
type: Transform
- - uid: 30690
+ - uid: 30703
components:
- pos: -39.5,38.5
parent: 2
type: Transform
- - uid: 30691
+ - uid: 30704
components:
- pos: -36.5,38.5
parent: 2
type: Transform
- - uid: 30692
+ - uid: 30705
components:
- pos: -35.5,38.5
parent: 2
type: Transform
- - uid: 30693
+ - uid: 30706
components:
- pos: 40.5,49.5
parent: 2
type: Transform
- - uid: 30694
+ - uid: 30707
components:
- pos: 40.5,50.5
parent: 2
type: Transform
- - uid: 30695
+ - uid: 30708
components:
- pos: 44.5,46.5
parent: 2
type: Transform
- - uid: 30696
+ - uid: 30709
components:
- pos: 44.5,44.5
parent: 2
type: Transform
- - uid: 30697
+ - uid: 30710
components:
- pos: -23.5,48.5
parent: 2
type: Transform
- - uid: 30698
+ - uid: 30711
components:
- pos: 7.5,-31.5
parent: 2
type: Transform
- - uid: 30699
+ - uid: 30712
components:
- pos: 7.5,-29.5
parent: 2
type: Transform
- - uid: 30700
+ - uid: 30713
components:
- pos: 7.5,-30.5
parent: 2
type: Transform
- - uid: 30701
+ - uid: 30714
components:
- pos: -22.5,-17.5
parent: 2
type: Transform
- - uid: 30702
+ - uid: 30715
components:
- pos: -16.5,-96.5
parent: 2
type: Transform
- - uid: 30703
+ - uid: 30716
components:
- pos: -28.5,-96.5
parent: 2
type: Transform
- - uid: 30704
+ - uid: 30717
components:
- pos: -13.5,-98.5
parent: 2
type: Transform
- - uid: 30705
+ - uid: 30718
components:
- pos: -13.5,-96.5
parent: 2
type: Transform
- - uid: 30706
+ - uid: 30719
components:
- pos: -31.5,-98.5
parent: 2
type: Transform
- - uid: 30707
+ - uid: 30720
components:
- pos: -31.5,-96.5
parent: 2
type: Transform
- - uid: 30708
+ - uid: 30721
components:
- pos: -43.5,-93.5
parent: 2
type: Transform
- - uid: 30709
+ - uid: 30722
components:
- rot: 1.5707963267948966 rad
pos: -39.5,-93.5
parent: 2
type: Transform
- - uid: 30710
+ - uid: 30723
components:
- rot: 1.5707963267948966 rad
pos: -40.5,-93.5
parent: 2
type: Transform
- - uid: 30711
+ - uid: 30724
components:
- rot: 3.141592653589793 rad
pos: -39.5,-94.5
parent: 2
type: Transform
- - uid: 30712
+ - uid: 30725
components:
- rot: 3.141592653589793 rad
pos: -39.5,-97.5
parent: 2
type: Transform
- - uid: 30713
+ - uid: 30726
components:
- pos: 16.5,-4.5
parent: 2
type: Transform
- - uid: 30714
+ - uid: 30727
components:
- rot: 1.5707963267948966 rad
pos: 59.5,-8.5
parent: 2
type: Transform
- - uid: 30715
+ - uid: 30728
components:
- pos: -13.5,33.5
parent: 2
type: Transform
- - uid: 30716
+ - uid: 30729
components:
- rot: -1.5707963267948966 rad
pos: -14.5,-15.5
parent: 2
type: Transform
- - uid: 30717
+ - uid: 30730
components:
- rot: -1.5707963267948966 rad
pos: -14.5,-12.5
parent: 2
type: Transform
- - uid: 30718
+ - uid: 30731
components:
- pos: 60.5,-28.5
parent: 2
type: Transform
- - uid: 30719
+ - uid: 30732
components:
- pos: 7.5,-35.5
parent: 2
type: Transform
- - uid: 30720
+ - uid: 30733
components:
- pos: 7.5,-32.5
parent: 2
type: Transform
- - uid: 30721
+ - uid: 30734
components:
- pos: 57.5,-62.5
parent: 2
type: Transform
- - uid: 30722
+ - uid: 30735
components:
- pos: 5.5,-35.5
parent: 2
type: Transform
- - uid: 30723
+ - uid: 30736
components:
- rot: -1.5707963267948966 rad
pos: 39.5,-34.5
parent: 2
type: Transform
- - uid: 30724
+ - uid: 30737
components:
- pos: 56.5,-62.5
parent: 2
type: Transform
- - uid: 30725
+ - uid: 30738
components:
- pos: 7.5,-33.5
parent: 2
type: Transform
- - uid: 30726
+ - uid: 30739
components:
- pos: 7.5,-34.5
parent: 2
type: Transform
- - uid: 30727
+ - uid: 30740
components:
- pos: 52.5,-33.5
parent: 2
type: Transform
- - uid: 30728
+ - uid: 30741
components:
- pos: 52.5,-34.5
parent: 2
type: Transform
- - uid: 30729
+ - uid: 30742
components:
- pos: 55.5,-62.5
parent: 2
type: Transform
- - uid: 30730
+ - uid: 30743
components:
- rot: -1.5707963267948966 rad
pos: 38.5,-34.5
parent: 2
type: Transform
- - uid: 30731
+ - uid: 30744
components:
- pos: 9.5,-38.5
parent: 2
type: Transform
- - uid: 30732
+ - uid: 30745
components:
- rot: 3.141592653589793 rad
pos: -16.5,-17.5
parent: 2
type: Transform
- - uid: 30733
+ - uid: 30746
components:
- rot: 3.141592653589793 rad
pos: -16.5,-19.5
parent: 2
type: Transform
- - uid: 30734
+ - uid: 30747
components:
- rot: 3.141592653589793 rad
pos: -14.5,-22.5
parent: 2
type: Transform
- - uid: 30735
+ - uid: 30748
components:
- pos: 73.5,-55.5
parent: 2
type: Transform
- - uid: 30736
+ - uid: 30749
components:
- pos: 52.5,-37.5
parent: 2
type: Transform
- - uid: 30737
+ - uid: 30750
components:
- rot: 1.5707963267948966 rad
pos: -57.5,-57.5
parent: 2
type: Transform
- - uid: 30738
+ - uid: 30751
components:
- pos: 60.5,-42.5
parent: 2
type: Transform
- - uid: 30739
+ - uid: 30752
components:
- rot: 1.5707963267948966 rad
pos: 60.5,-40.5
parent: 2
type: Transform
- - uid: 30740
+ - uid: 30753
components:
- pos: 55.5,-33.5
parent: 2
type: Transform
- - uid: 30741
+ - uid: 30754
components:
- pos: 56.5,-36.5
parent: 2
type: Transform
- - uid: 30742
+ - uid: 30755
components:
- pos: 56.5,-34.5
parent: 2
type: Transform
- - uid: 30743
+ - uid: 30756
components:
- pos: 60.5,-27.5
parent: 2
type: Transform
- - uid: 30744
+ - uid: 30757
components:
- pos: 59.5,-27.5
parent: 2
type: Transform
- - uid: 30745
+ - uid: 30758
components:
- pos: 58.5,-27.5
parent: 2
type: Transform
- - uid: 30746
+ - uid: 30759
components:
- pos: 56.5,-29.5
parent: 2
type: Transform
- - uid: 30747
+ - uid: 30760
components:
- pos: 56.5,-30.5
parent: 2
type: Transform
- - uid: 30748
+ - uid: 30761
components:
- pos: 56.5,-28.5
parent: 2
type: Transform
- - uid: 30749
+ - uid: 30762
components:
- pos: 61.5,-27.5
parent: 2
type: Transform
- - uid: 30750
+ - uid: 30763
components:
- pos: 56.5,-27.5
parent: 2
type: Transform
- - uid: 30751
+ - uid: 30764
components:
- pos: 53.5,-29.5
parent: 2
type: Transform
- - uid: 30752
+ - uid: 30765
components:
- pos: 54.5,-29.5
parent: 2
type: Transform
- - uid: 30753
+ - uid: 30766
components:
- pos: 44.5,-62.5
parent: 2
type: Transform
- - uid: 30754
+ - uid: 30767
components:
- pos: 44.5,-63.5
parent: 2
type: Transform
- - uid: 30755
+ - uid: 30768
components:
- pos: 53.5,-66.5
parent: 2
type: Transform
- - uid: 30756
+ - uid: 30769
components:
- pos: 56.5,-35.5
parent: 2
type: Transform
- - uid: 30757
+ - uid: 30770
components:
- pos: 57.5,-66.5
parent: 2
type: Transform
- - uid: 30758
+ - uid: 30771
components:
- pos: 57.5,-67.5
parent: 2
type: Transform
- - uid: 30759
+ - uid: 30772
components:
- pos: 65.5,-66.5
parent: 2
type: Transform
- - uid: 30760
+ - uid: 30773
components:
- pos: 65.5,-62.5
parent: 2
type: Transform
- - uid: 30761
+ - uid: 30774
components:
- pos: 65.5,-64.5
parent: 2
type: Transform
- - uid: 30762
+ - uid: 30775
components:
- pos: 65.5,-63.5
parent: 2
type: Transform
- - uid: 30763
+ - uid: 30776
components:
- pos: 73.5,-56.5
parent: 2
type: Transform
- - uid: 30764
+ - uid: 30777
components:
- pos: 74.5,-53.5
parent: 2
type: Transform
- - uid: 30765
+ - uid: 30778
components:
- pos: 66.5,-62.5
parent: 2
type: Transform
- - uid: 30766
+ - uid: 30779
components:
- pos: 67.5,-62.5
parent: 2
type: Transform
- - uid: 30767
+ - uid: 30780
components:
- pos: 70.5,-63.5
parent: 2
type: Transform
- - uid: 30768
+ - uid: 30781
components:
- pos: 70.5,-62.5
parent: 2
type: Transform
- - uid: 30769
+ - uid: 30782
components:
- pos: 69.5,-62.5
parent: 2
type: Transform
- - uid: 30770
+ - uid: 30783
components:
- pos: 69.5,-58.5
parent: 2
type: Transform
- - uid: 30771
+ - uid: 30784
components:
- pos: 70.5,-58.5
parent: 2
type: Transform
- - uid: 30772
+ - uid: 30785
components:
- pos: 70.5,-59.5
parent: 2
type: Transform
- - uid: 30773
+ - uid: 30786
components:
- pos: 70.5,-60.5
parent: 2
type: Transform
- - uid: 30774
+ - uid: 30787
components:
- pos: 72.5,-58.5
parent: 2
type: Transform
- - uid: 30775
+ - uid: 30788
components:
- pos: 56.5,-37.5
parent: 2
type: Transform
- - uid: 30776
+ - uid: 30789
components:
- pos: 58.5,-39.5
parent: 2
type: Transform
- - uid: 30777
+ - uid: 30790
components:
- pos: 62.5,-27.5
parent: 2
type: Transform
- - uid: 30778
+ - uid: 30791
components:
- pos: 18.5,-15.5
parent: 2
type: Transform
- - uid: 30779
+ - uid: 30792
components:
- pos: -12.5,-34.5
parent: 2
type: Transform
- - uid: 30780
+ - uid: 30793
components:
- pos: -22.5,0.5
parent: 2
type: Transform
- - uid: 30781
+ - uid: 30794
components:
- rot: 3.141592653589793 rad
pos: 19.5,8.5
parent: 2
type: Transform
- - uid: 30782
+ - uid: 30795
components:
- pos: 16.5,8.5
parent: 2
type: Transform
- - uid: 30783
+ - uid: 30796
components:
- pos: 1.5,-51.5
parent: 2
type: Transform
- - uid: 30784
+ - uid: 30797
components:
- pos: 5.5,-73.5
parent: 2
type: Transform
- - uid: 30785
+ - uid: 30798
components:
- rot: -1.5707963267948966 rad
pos: -35.5,18.5
parent: 2
type: Transform
- - uid: 30786
+ - uid: 30799
components:
- rot: -1.5707963267948966 rad
pos: -35.5,19.5
parent: 2
type: Transform
- - uid: 30787
+ - uid: 30800
components:
- pos: -16.5,-11.5
parent: 2
type: Transform
- - uid: 30788
+ - uid: 30801
components:
- pos: -13.5,-16.5
parent: 2
type: Transform
- - uid: 30789
+ - uid: 30802
components:
- pos: -8.5,-7.5
parent: 2
type: Transform
- - uid: 30790
+ - uid: 30803
components:
- pos: 6.5,-51.5
parent: 2
type: Transform
- - uid: 30791
- components:
- - rot: -1.5707963267948966 rad
- pos: 8.5,-46.5
- parent: 2
- type: Transform
- - uid: 30792
+ - uid: 30804
components:
- rot: 1.5707963267948966 rad
pos: -27.5,-60.5
parent: 2
type: Transform
- - uid: 30793
+ - uid: 30805
components:
- pos: -21.5,-51.5
parent: 2
type: Transform
- - uid: 30794
+ - uid: 30806
components:
- pos: 5.5,-75.5
parent: 2
type: Transform
- - uid: 30795
+ - uid: 30807
components:
- pos: 4.5,-72.5
parent: 2
type: Transform
- - uid: 30796
+ - uid: 30808
components:
- pos: -11.5,13.5
parent: 2
type: Transform
- - uid: 30797
+ - uid: 30809
components:
- rot: -1.5707963267948966 rad
pos: 2.5,-24.5
parent: 2
type: Transform
- - uid: 30798
+ - uid: 30810
components:
- rot: 3.141592653589793 rad
pos: 29.5,-37.5
@@ -196545,19 +196621,19 @@ entities:
type: Transform
- proto: WallSolidDiagonal
entities:
- - uid: 30799
+ - uid: 30811
components:
- rot: -1.5707963267948966 rad
pos: 7.5,-8.5
parent: 2
type: Transform
- - uid: 30800
+ - uid: 30812
components:
- rot: 1.5707963267948966 rad
pos: -35.5,16.5
parent: 2
type: Transform
- - uid: 30801
+ - uid: 30813
components:
- rot: 3.141592653589793 rad
pos: -40.5,16.5
@@ -196565,84 +196641,84 @@ entities:
type: Transform
- proto: WallSolidRust
entities:
- - uid: 30802
+ - uid: 30814
components:
- rot: 3.141592653589793 rad
pos: -53.5,-30.5
parent: 2
type: Transform
- - uid: 30803
+ - uid: 30815
components:
- rot: 3.141592653589793 rad
pos: -56.5,-30.5
parent: 2
type: Transform
- - uid: 30804
+ - uid: 30816
components:
- rot: 3.141592653589793 rad
pos: -52.5,-65.5
parent: 2
type: Transform
- - uid: 30805
+ - uid: 30817
components:
- rot: 3.141592653589793 rad
pos: -26.5,-65.5
parent: 2
type: Transform
- - uid: 30806
+ - uid: 30818
components:
- rot: 3.141592653589793 rad
pos: -25.5,-65.5
parent: 2
type: Transform
- - uid: 30807
+ - uid: 30819
components:
- rot: 3.141592653589793 rad
pos: -31.5,-65.5
parent: 2
type: Transform
- - uid: 30808
+ - uid: 30820
components:
- rot: 3.141592653589793 rad
pos: -53.5,-69.5
parent: 2
type: Transform
- - uid: 30809
+ - uid: 30821
components:
- rot: 3.141592653589793 rad
pos: -48.5,-73.5
parent: 2
type: Transform
- - uid: 30810
+ - uid: 30822
components:
- rot: 3.141592653589793 rad
pos: -40.5,-66.5
parent: 2
type: Transform
- - uid: 30811
+ - uid: 30823
components:
- rot: 3.141592653589793 rad
pos: -37.5,-66.5
parent: 2
type: Transform
- - uid: 30812
+ - uid: 30824
components:
- pos: -12.5,-33.5
parent: 2
type: Transform
- - uid: 30813
+ - uid: 30825
components:
- rot: 3.141592653589793 rad
pos: 13.5,-58.5
parent: 2
type: Transform
- - uid: 30814
+ - uid: 30826
components:
- rot: 3.141592653589793 rad
pos: 13.5,-56.5
parent: 2
type: Transform
- - uid: 30815
+ - uid: 30827
components:
- rot: 1.5707963267948966 rad
pos: -10.5,-7.5
@@ -196650,7 +196726,7 @@ entities:
type: Transform
- proto: WardrobeBotanistFilled
entities:
- - uid: 30816
+ - uid: 30828
components:
- pos: -4.5,12.5
parent: 2
@@ -196673,7 +196749,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 30817
+ - uid: 30829
components:
- pos: -4.5,10.5
parent: 2
@@ -196698,7 +196774,7 @@ entities:
type: EntityStorage
- proto: WardrobeGreenFilled
entities:
- - uid: 30818
+ - uid: 30830
components:
- pos: -48.5,3.5
parent: 2
@@ -196723,7 +196799,7 @@ entities:
type: EntityStorage
- proto: WardrobePrisonFilled
entities:
- - uid: 30819
+ - uid: 30831
components:
- pos: 28.5,10.5
parent: 2
@@ -196746,7 +196822,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 30820
+ - uid: 30832
components:
- pos: 36.5,5.5
parent: 2
@@ -196769,7 +196845,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 30821
+ - uid: 30833
components:
- pos: 31.5,10.5
parent: 2
@@ -196792,7 +196868,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 30822
+ - uid: 30834
components:
- pos: 34.5,10.5
parent: 2
@@ -196815,7 +196891,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 30823
+ - uid: 30835
components:
- pos: 36.5,8.5
parent: 2
@@ -196838,7 +196914,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 30824
+ - uid: 30836
components:
- pos: 55.5,22.5
parent: 2
@@ -196861,7 +196937,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 30825
+ - uid: 30837
components:
- pos: 52.5,22.5
parent: 2
@@ -196884,7 +196960,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 30826
+ - uid: 30838
components:
- pos: 49.5,22.5
parent: 2
@@ -196907,7 +196983,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 30827
+ - uid: 30839
components:
- pos: 46.5,22.5
parent: 2
@@ -196930,7 +197006,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 30828
+ - uid: 30840
components:
- pos: 58.5,22.5
parent: 2
@@ -196953,7 +197029,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 30829
+ - uid: 30841
components:
- pos: 60.5,19.5
parent: 2
@@ -196976,7 +197052,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 30830
+ - uid: 30842
components:
- pos: 60.5,16.5
parent: 2
@@ -197001,7 +197077,7 @@ entities:
type: EntityStorage
- proto: WardrobeYellowFilled
entities:
- - uid: 30831
+ - uid: 30843
components:
- pos: -49.5,3.5
parent: 2
@@ -197026,56 +197102,56 @@ entities:
type: EntityStorage
- proto: WarningCO2
entities:
- - uid: 30832
+ - uid: 30844
components:
- pos: -51.5,-50.5
parent: 2
type: Transform
- proto: WarningN2
entities:
- - uid: 30833
+ - uid: 30845
components:
- pos: -51.5,-54.5
parent: 2
type: Transform
- proto: WarningN2O
entities:
- - uid: 30834
+ - uid: 30846
components:
- pos: -51.5,-42.5
parent: 2
type: Transform
- proto: WarningO2
entities:
- - uid: 30835
+ - uid: 30847
components:
- pos: -51.5,-52.5
parent: 2
type: Transform
- proto: WarningPlasma
entities:
- - uid: 30836
+ - uid: 30848
components:
- pos: -51.5,-46.5
parent: 2
type: Transform
- proto: WarningTritium
entities:
- - uid: 30837
+ - uid: 30849
components:
- pos: -51.5,-44.5
parent: 2
type: Transform
- proto: WarningWaste
entities:
- - uid: 30838
+ - uid: 30850
components:
- pos: -51.5,-48.5
parent: 2
type: Transform
- proto: WarpPoint
entities:
- - uid: 30839
+ - uid: 30851
components:
- rot: -1.5707963267948966 rad
pos: 1.5,-5.5
@@ -197083,14 +197159,14 @@ entities:
type: Transform
- location: hop
type: WarpPoint
- - uid: 30840
+ - uid: 30852
components:
- pos: 12.5,11.5
parent: 2
type: Transform
- location: bar
type: WarpPoint
- - uid: 30841
+ - uid: 30853
components:
- name: 'Warp: medical'
type: MetaData
@@ -197099,7 +197175,7 @@ entities:
type: Transform
- location: medbay
type: WarpPoint
- - uid: 30842
+ - uid: 30854
components:
- name: 'warp: science'
type: MetaData
@@ -197108,7 +197184,7 @@ entities:
type: Transform
- location: science reception
type: WarpPoint
- - uid: 30843
+ - uid: 30855
components:
- name: 'warp: bridge'
type: MetaData
@@ -197117,7 +197193,7 @@ entities:
type: Transform
- location: bridge
type: WarpPoint
- - uid: 30844
+ - uid: 30856
components:
- name: 'warp: prison'
type: MetaData
@@ -197126,7 +197202,7 @@ entities:
type: Transform
- location: open prison
type: WarpPoint
- - uid: 30845
+ - uid: 30857
components:
- name: 'warp: security'
type: MetaData
@@ -197135,21 +197211,21 @@ entities:
type: Transform
- location: security
type: WarpPoint
- - uid: 30846
+ - uid: 30858
components:
- pos: 61.5,-8.5
parent: 2
type: Transform
- location: evac
type: WarpPoint
- - uid: 30847
+ - uid: 30859
components:
- name: 'warp: waste'
type: MetaData
- pos: 17.5,-53.5
parent: 2
type: Transform
- - uid: 30848
+ - uid: 30860
components:
- name: 'warp: engineering'
type: MetaData
@@ -197158,7 +197234,7 @@ entities:
type: Transform
- location: engineering reception
type: WarpPoint
- - uid: 30849
+ - uid: 30861
components:
- name: 'warp: atmospherics'
type: MetaData
@@ -197167,7 +197243,7 @@ entities:
type: Transform
- location: atmospherics
type: WarpPoint
- - uid: 30850
+ - uid: 30862
components:
- name: 'warp: singularity'
type: MetaData
@@ -197176,7 +197252,7 @@ entities:
type: Transform
- location: singularity
type: WarpPoint
- - uid: 30851
+ - uid: 30863
components:
- name: 'warp: forgotten dock'
type: MetaData
@@ -197185,7 +197261,7 @@ entities:
type: Transform
- location: forgotten ship dock
type: WarpPoint
- - uid: 30852
+ - uid: 30864
components:
- name: 'warp: jani closet'
type: MetaData
@@ -197194,7 +197270,7 @@ entities:
type: Transform
- location: janitorial closet
type: WarpPoint
- - uid: 30853
+ - uid: 30865
components:
- name: 'warp: courthouse'
type: MetaData
@@ -197203,7 +197279,7 @@ entities:
type: Transform
- location: courtroom
type: WarpPoint
- - uid: 30854
+ - uid: 30866
components:
- name: 'Warp: psychology'
type: MetaData
@@ -197212,7 +197288,7 @@ entities:
type: Transform
- location: psychology
type: WarpPoint
- - uid: 30855
+ - uid: 30867
components:
- name: 'warp: virology'
type: MetaData
@@ -197221,7 +197297,7 @@ entities:
type: Transform
- location: virology reception
type: WarpPoint
- - uid: 30856
+ - uid: 30868
components:
- name: 'warp: cargo'
type: MetaData
@@ -197231,7 +197307,7 @@ entities:
type: Transform
- location: cargo
type: WarpPoint
- - uid: 30857
+ - uid: 30869
components:
- name: 'warp: salvage'
type: MetaData
@@ -197241,7 +197317,7 @@ entities:
type: Transform
- location: salvage
type: WarpPoint
- - uid: 30858
+ - uid: 30870
components:
- name: 'warp: arrivals'
type: MetaData
@@ -197251,7 +197327,7 @@ entities:
type: Transform
- location: arrivals
type: WarpPoint
- - uid: 30859
+ - uid: 30871
components:
- name: 'Warp: kitchen'
type: MetaData
@@ -197261,7 +197337,7 @@ entities:
type: Transform
- location: kitchen
type: WarpPoint
- - uid: 30860
+ - uid: 30872
components:
- name: 'Warp: botany'
type: MetaData
@@ -197271,7 +197347,7 @@ entities:
type: Transform
- location: hydrophonics
type: WarpPoint
- - uid: 30861
+ - uid: 30873
components:
- name: 'warp: library'
type: MetaData
@@ -197281,7 +197357,7 @@ entities:
type: Transform
- location: library
type: WarpPoint
- - uid: 30862
+ - uid: 30874
components:
- name: 'Warp: armory'
type: MetaData
@@ -197291,7 +197367,7 @@ entities:
type: Transform
- location: armory
type: WarpPoint
- - uid: 30863
+ - uid: 30875
components:
- name: 'warp: revolution bar'
type: MetaData
@@ -197301,7 +197377,7 @@ entities:
type: Transform
- location: rebelion bar
type: WarpPoint
- - uid: 30864
+ - uid: 30876
components:
- rot: 3.141592653589793 rad
pos: -44.5,53.5
@@ -197309,7 +197385,7 @@ entities:
type: Transform
- location: asteroid
type: WarpPoint
- - uid: 30865
+ - uid: 30877
components:
- pos: 0.5,-20.5
parent: 2
@@ -197318,203 +197394,203 @@ entities:
type: WarpPoint
- proto: WarpPointBombing
entities:
- - uid: 30866
+ - uid: 30878
components:
- pos: 24.5,1.5
parent: 2
type: Transform
- location: boxing ring
type: WarpPoint
- - uid: 30867
+ - uid: 30879
components:
- pos: 30.5,-12.5
parent: 2
type: Transform
- location: eva
type: WarpPoint
- - uid: 30868
+ - uid: 30880
components:
- pos: 53.5,15.5
parent: 2
type: Transform
- location: perma brig
type: WarpPoint
- - uid: 30869
+ - uid: 30881
components:
- pos: -19.5,4.5
parent: 2
type: Transform
- location: gravity
type: WarpPoint
- - uid: 30870
+ - uid: 30882
components:
- pos: 5.5,-47.5
parent: 2
type: Transform
- location: chemistry
type: WarpPoint
- - uid: 30871
+ - uid: 30883
components:
- pos: -24.5,-60.5
parent: 2
type: Transform
- location: cryogenics
type: WarpPoint
- - uid: 30872
+ - uid: 30884
components:
- pos: 0.5,-20.5
parent: 2
type: Transform
- location: theatre
type: WarpPoint
- - uid: 30873
+ - uid: 30885
components:
- pos: 29.5,31.5
parent: 2
type: Transform
- location: armory
type: WarpPoint
- - uid: 30874
+ - uid: 30886
components:
- pos: 25.5,-23.5
parent: 2
type: Transform
- location: bridge
type: WarpPoint
- - uid: 30875
+ - uid: 30887
components:
- pos: 46.5,6.5
parent: 2
type: Transform
- location: brigmed
type: WarpPoint
- - uid: 30876
+ - uid: 30888
components:
- pos: 64.5,-8.5
parent: 2
type: Transform
- location: evac
type: WarpPoint
- - uid: 30877
+ - uid: 30889
components:
- pos: 46.5,-24.5
parent: 2
type: Transform
- location: north vault
type: WarpPoint
- - uid: 30878
+ - uid: 30890
components:
- pos: 31.5,-49.5
parent: 2
type: Transform
- location: courtroom
type: WarpPoint
- - uid: 30879
+ - uid: 30891
components:
- pos: -19.5,-47.5
parent: 2
type: Transform
- location: camera server room
type: WarpPoint
- - uid: 30880
+ - uid: 30892
components:
- pos: 9.5,-21.5
parent: 2
type: Transform
- location: 'telecoms '
type: WarpPoint
- - uid: 30881
+ - uid: 30893
components:
- pos: -46.5,-12.5
parent: 2
type: Transform
- location: ame
type: WarpPoint
- - uid: 30882
+ - uid: 30894
components:
- pos: -40.5,21.5
parent: 2
type: Transform
- location: cargo
type: WarpPoint
- - uid: 30883
+ - uid: 30895
components:
- pos: -42.5,32.5
parent: 2
type: Transform
- location: salvage
type: WarpPoint
- - uid: 30884
+ - uid: 30896
components:
- pos: -1.5,-64.5
parent: 2
type: Transform
- location: surgery
type: WarpPoint
- - uid: 30885
+ - uid: 30897
components:
- pos: -43.5,-46.5
parent: 2
type: Transform
- location: atmospherics
type: WarpPoint
- - uid: 30886
+ - uid: 30898
components:
- pos: -69.5,-41.5
parent: 2
type: Transform
- location: teg
type: WarpPoint
- - uid: 30887
+ - uid: 30899
components:
- pos: 72.5,-34.5
parent: 2
type: Transform
- location: xenoarcheology
type: WarpPoint
- - uid: 30888
+ - uid: 30900
components:
- pos: 72.5,-45.5
parent: 2
type: Transform
- location: robotics
type: WarpPoint
- - uid: 30889
+ - uid: 30901
components:
- pos: -11.5,-35.5
parent: 2
type: Transform
- location: psychologists office
type: WarpPoint
- - uid: 30890
+ - uid: 30902
components:
- pos: -11.5,-10.5
parent: 2
type: Transform
- location: trash sorting
type: WarpPoint
- - uid: 30891
+ - uid: 30903
components:
- pos: -7.5,9.5
parent: 2
type: Transform
- location: botany
type: WarpPoint
- - uid: 30892
+ - uid: 30904
components:
- pos: 19.5,-13.5
parent: 2
type: Transform
- location: detectives office
type: WarpPoint
- - uid: 30893
+ - uid: 30905
components:
- pos: 22.5,22.5
parent: 2
type: Transform
- location: wardens office
type: WarpPoint
- - uid: 30894
+ - uid: 30906
components:
- pos: -24.5,-77.5
parent: 2
@@ -197523,29 +197599,29 @@ entities:
type: WarpPoint
- proto: WaterCooler
entities:
- - uid: 30895
+ - uid: 30907
components:
- pos: -8.5,-35.5
parent: 2
type: Transform
- - uid: 30896
+ - uid: 30908
components:
- pos: 55.398575,18.5843
parent: 2
type: Transform
- - uid: 30897
+ - uid: 30909
components:
- pos: 36.5,-6.5
parent: 2
type: Transform
- - uid: 30898
+ - uid: 30910
components:
- pos: 41.5,-47.5
parent: 2
type: Transform
- proto: WatermelonSeeds
entities:
- - uid: 30899
+ - uid: 30911
components:
- rot: 3.141592653589793 rad
pos: -9.469382,12.335931
@@ -197553,432 +197629,432 @@ entities:
type: Transform
- proto: WaterTank
entities:
- - uid: 30900
+ - uid: 30912
components:
- pos: 74.5,-54.5
parent: 2
type: Transform
- proto: WaterTankFull
entities:
- - uid: 30901
+ - uid: 30913
components:
- pos: -4.5,14.5
parent: 2
type: Transform
- - uid: 30902
+ - uid: 30914
components:
- pos: -19.5,-86.5
parent: 2
type: Transform
- - uid: 30903
+ - uid: 30915
components:
- pos: 7.5,-81.5
parent: 2
type: Transform
- - uid: 30904
+ - uid: 30916
components:
- pos: 45.5,21.5
parent: 2
type: Transform
- - uid: 30905
+ - uid: 30917
components:
- pos: 8.5,-64.5
parent: 2
type: Transform
- - uid: 30906
+ - uid: 30918
components:
- pos: -29.5,-65.5
parent: 2
type: Transform
- - uid: 30907
+ - uid: 30919
components:
- pos: 35.5,-10.5
parent: 2
type: Transform
- - uid: 30908
+ - uid: 30920
components:
- pos: -27.5,-43.5
parent: 2
type: Transform
- - uid: 30909
+ - uid: 30921
components:
- pos: -1.5,-14.5
parent: 2
type: Transform
- - uid: 30910
+ - uid: 30922
components:
- pos: -39.5,-30.5
parent: 2
type: Transform
- - uid: 30911
+ - uid: 30923
components:
- pos: -45.5,-3.5
parent: 2
type: Transform
- - uid: 30912
+ - uid: 30924
components:
- pos: -27.5,37.5
parent: 2
type: Transform
- - uid: 30913
+ - uid: 30925
components:
- pos: -8.5,-8.5
parent: 2
type: Transform
- proto: WaterTankHighCapacity
entities:
- - uid: 30914
+ - uid: 30926
components:
- pos: -7.5,-21.5
parent: 2
type: Transform
- - uid: 30915
+ - uid: 30927
components:
- pos: -5.5,8.5
parent: 2
type: Transform
- proto: WaterVaporCanister
entities:
- - uid: 30916
+ - uid: 30928
components:
- pos: -50.5,-48.5
parent: 2
type: Transform
- - uid: 30917
+ - uid: 30929
components:
- pos: -34.5,-28.5
parent: 2
type: Transform
- proto: WeaponCapacitorRecharger
entities:
- - uid: 30918
+ - uid: 30930
components:
- pos: 28.5,-21.5
parent: 2
type: Transform
- - uid: 30919
+ - uid: 30931
components:
- pos: 2.5,-56.5
parent: 2
type: Transform
- - uid: 30920
+ - uid: 30932
components:
- pos: 6.5,12.5
parent: 2
type: Transform
- - uid: 30921
+ - uid: 30933
components:
- pos: 20.5,-45.5
parent: 2
type: Transform
- - uid: 30922
+ - uid: 30934
components:
- pos: 5.5,20.5
parent: 2
type: Transform
- - uid: 30923
+ - uid: 30935
components:
- pos: 17.5,22.5
parent: 2
type: Transform
- - uid: 30924
+ - uid: 30936
components:
- pos: 25.5,23.5
parent: 2
type: Transform
- - uid: 30925
+ - uid: 30937
components:
- pos: -16.5,24.5
parent: 2
type: Transform
- - uid: 30926
+ - uid: 30938
components:
- pos: -16.5,-21.5
parent: 2
type: Transform
- proto: WeaponDisabler
entities:
- - uid: 30927
+ - uid: 30939
components:
- pos: 1.6229637,21.593708
parent: 2
type: Transform
- - uid: 30928
+ - uid: 30940
components:
- pos: 12.563014,21.38584
parent: 2
type: Transform
- - uid: 30929
+ - uid: 30941
components:
- pos: 12.453639,21.54209
parent: 2
type: Transform
- proto: WeaponLaserCarbine
entities:
- - uid: 30930
+ - uid: 30942
components:
- pos: 26.559673,29.582918
parent: 2
type: Transform
- - uid: 30931
+ - uid: 30943
components:
- pos: 31.473701,27.53409
parent: 2
type: Transform
- - uid: 30932
+ - uid: 30944
components:
- pos: 27.55704,27.505564
parent: 2
type: Transform
- proto: WeaponPistolMk58
entities:
- - uid: 30933
+ - uid: 30945
components:
- pos: 31.657001,32.450115
parent: 2
type: Transform
- - uid: 30934
+ - uid: 30946
components:
- pos: 31.637281,32.558495
parent: 2
type: Transform
- - uid: 30935
+ - uid: 30947
components:
- pos: 31.586092,32.47933
parent: 2
type: Transform
- - uid: 30936
+ - uid: 30948
components:
- pos: 31.657982,32.330257
parent: 2
type: Transform
- proto: WeaponRevolverDeckard
entities:
- - uid: 30937
+ - uid: 30949
components:
- pos: 30.600538,32.59448
parent: 2
type: Transform
- proto: WeaponRevolverInspector
entities:
- - uid: 30938
+ - uid: 30950
components:
- pos: 23.444613,-35.267536
parent: 2
type: Transform
- proto: WeaponShotgunKammerer
entities:
- - uid: 30939
+ - uid: 30951
components:
- pos: 26.643364,32.60906
parent: 2
type: Transform
- - uid: 30940
+ - uid: 30952
components:
- pos: 26.777893,32.47498
parent: 2
type: Transform
- - uid: 30941
+ - uid: 30953
components:
- pos: 26.709015,32.580257
parent: 2
type: Transform
- proto: WeaponSubMachineGunDrozd
entities:
- - uid: 30942
+ - uid: 30954
components:
- pos: 27.939907,32.617863
parent: 2
type: Transform
- - uid: 30943
+ - uid: 30955
components:
- pos: 28.718153,32.704456
parent: 2
type: Transform
- - uid: 30944
+ - uid: 30956
components:
- pos: 29.421278,32.68883
parent: 2
type: Transform
- proto: WeaponSubMachineGunWt550
entities:
- - uid: 30945
+ - uid: 30957
components:
- pos: 6.384364,22.636343
parent: 2
type: Transform
- proto: Welder
entities:
- - uid: 30946
+ - uid: 30958
components:
- pos: -23.377909,-24.435646
parent: 2
type: Transform
- - uid: 30947
+ - uid: 30959
components:
- pos: -11.453522,-74.45183
parent: 2
type: Transform
- - uid: 30948
+ - uid: 30960
components:
- pos: -44.4577,-25.484493
parent: 2
type: Transform
- - uid: 30949
+ - uid: 30961
components:
- pos: -28.416739,-28.473803
parent: 2
type: Transform
- - uid: 30950
+ - uid: 30962
components:
- pos: -52.43758,2.566814
parent: 2
type: Transform
- - uid: 30951
+ - uid: 30963
components:
- pos: -44.442474,-76.91975
parent: 2
type: Transform
- - uid: 30952
+ - uid: 30964
components:
- pos: 76.51503,-43.437786
parent: 2
type: Transform
- - uid: 30953
+ - uid: 30965
components:
- pos: -66.37563,-43.430454
parent: 2
type: Transform
- proto: WelderIndustrial
entities:
- - uid: 30954
+ - uid: 30966
components:
- pos: -34.41553,-12.611145
parent: 2
type: Transform
- - uid: 30955
+ - uid: 30967
components:
- pos: -35.502888,-46.513077
parent: 2
type: Transform
- - uid: 30956
+ - uid: 30968
components:
- pos: -42.417007,-21.43029
parent: 2
type: Transform
- proto: WelderMini
entities:
- - uid: 30957
+ - uid: 30969
components:
- pos: -52.426445,-12.844277
parent: 2
type: Transform
- proto: WeldingFuelTank
entities:
- - uid: 30958
+ - uid: 30970
components:
- pos: -28.5,-43.5
parent: 2
type: Transform
- - uid: 30959
+ - uid: 30971
components:
- pos: 7.5,-64.5
parent: 2
type: Transform
- proto: WeldingFuelTankFull
entities:
- - uid: 30960
+ - uid: 30972
components:
- pos: -3.5,-71.5
parent: 2
type: Transform
- - uid: 30961
+ - uid: 30973
components:
- pos: -28.5,-25.5
parent: 2
type: Transform
- - uid: 30962
+ - uid: 30974
components:
- pos: -43.5,-63.5
parent: 2
type: Transform
- - uid: 30963
+ - uid: 30975
components:
- pos: -38.5,-30.5
parent: 2
type: Transform
- - uid: 30964
+ - uid: 30976
components:
- pos: -0.5,23.5
parent: 2
type: Transform
- - uid: 30965
+ - uid: 30977
components:
- pos: -51.5,4.5
parent: 2
type: Transform
- - uid: 30966
+ - uid: 30978
components:
- pos: -16.5,-18.5
parent: 2
type: Transform
- - uid: 30967
+ - uid: 30979
components:
- pos: 39.5,-32.5
parent: 2
type: Transform
- - uid: 30968
+ - uid: 30980
components:
- pos: 72.5,-59.5
parent: 2
type: Transform
- - uid: 30969
+ - uid: 30981
components:
- pos: 66.5,6.5
parent: 2
type: Transform
- - uid: 30970
+ - uid: 30982
components:
- pos: 74.5,-55.5
parent: 2
type: Transform
- - uid: 30971
+ - uid: 30983
components:
- pos: -54.5,-35.5
parent: 2
type: Transform
- proto: WeldingFuelTankHighCapacity
entities:
- - uid: 30972
+ - uid: 30984
components:
- pos: -53.5,-25.5
parent: 2
type: Transform
- proto: WetFloorSign
entities:
- - uid: 30973
+ - uid: 30985
components:
- pos: -7.8693366,-23.228895
parent: 2
type: Transform
- - uid: 30974
+ - uid: 30986
components:
- pos: 16.379074,-41.325726
parent: 2
type: Transform
- - uid: 30975
+ - uid: 30987
components:
- pos: -7.8537116,-23.36952
parent: 2
type: Transform
- - uid: 30976
+ - uid: 30988
components:
- pos: -7.7912116,-23.603895
parent: 2
type: Transform
- proto: Windoor
entities:
- - uid: 30977
+ - uid: 30989
components:
- rot: 1.5707963267948966 rad
pos: 26.5,0.5
@@ -197986,135 +198062,135 @@ entities:
type: Transform
- proto: WindoorBarLocked
entities:
- - uid: 30978
+ - uid: 30990
components:
- pos: 18.5,15.5
parent: 2
type: Transform
- - uid: 30979
+ - uid: 30991
components:
- pos: 17.5,15.5
parent: 2
type: Transform
- - uid: 30980
+ - uid: 30992
components:
- rot: 1.5707963267948966 rad
pos: 15.5,14.5
parent: 2
type: Transform
- - uid: 30981
+ - uid: 30993
components:
- rot: 1.5707963267948966 rad
pos: -39.5,-75.5
parent: 2
type: Transform
- - uid: 30982
+ - uid: 30994
components:
- rot: -1.5707963267948966 rad
pos: -44.5,-75.5
parent: 2
type: Transform
- - uid: 30983
+ - uid: 30995
components:
- pos: 28.5,-37.5
parent: 2
type: Transform
- proto: WindoorKitchenHydroponicsLocked
entities:
- - uid: 30984
+ - uid: 30996
components:
- pos: -4.5,17.5
parent: 2
type: Transform
- - uid: 30985
+ - uid: 30997
components:
- pos: -7.5,17.5
parent: 2
type: Transform
- proto: WindoorSecure
entities:
- - uid: 30986
+ - uid: 30998
components:
- pos: 1.5,-1.5
parent: 2
type: Transform
- - uid: 30987
+ - uid: 30999
components:
- rot: 3.141592653589793 rad
pos: 4.5,-3.5
parent: 2
type: Transform
- - uid: 30988
+ - uid: 31000
components:
- pos: 4.5,-1.5
parent: 2
type: Transform
- - uid: 30989
+ - uid: 31001
components:
- pos: 17.5,-53.5
parent: 2
type: Transform
- - uid: 30990
+ - uid: 31002
components:
- pos: -13.5,-9.5
parent: 2
type: Transform
- - uid: 30991
+ - uid: 31003
components:
- pos: 59.5,22.5
parent: 2
type: Transform
- - uid: 30992
+ - uid: 31004
components:
- pos: 56.5,22.5
parent: 2
type: Transform
- - uid: 30993
+ - uid: 31005
components:
- pos: 53.5,22.5
parent: 2
type: Transform
- - uid: 30994
+ - uid: 31006
components:
- pos: 50.5,22.5
parent: 2
type: Transform
- - uid: 30995
+ - uid: 31007
components:
- pos: 47.5,22.5
parent: 2
type: Transform
- - uid: 30996
+ - uid: 31008
components:
- rot: -1.5707963267948966 rad
pos: 60.5,18.5
parent: 2
type: Transform
- - uid: 30997
+ - uid: 31009
components:
- rot: -1.5707963267948966 rad
pos: 60.5,15.5
parent: 2
type: Transform
- - uid: 30998
+ - uid: 31010
components:
- rot: 1.5707963267948966 rad
pos: 59.5,-34.5
parent: 2
type: Transform
- - uid: 30999
+ - uid: 31011
components:
- rot: 1.5707963267948966 rad
pos: 59.5,-33.5
parent: 2
type: Transform
- - uid: 31000
+ - uid: 31012
components:
- rot: -1.5707963267948966 rad
pos: -34.5,14.5
parent: 2
type: Transform
- - uid: 31001
+ - uid: 31013
components:
- rot: 3.141592653589793 rad
pos: 71.5,-47.5
@@ -198122,49 +198198,49 @@ entities:
type: Transform
- proto: WindoorSecureArmoryLocked
entities:
- - uid: 31002
+ - uid: 31014
components:
- rot: 3.141592653589793 rad
pos: 25.5,19.5
parent: 2
type: Transform
- - uid: 31003
+ - uid: 31015
components:
- rot: 3.141592653589793 rad
pos: 24.5,19.5
parent: 2
type: Transform
- - uid: 31004
+ - uid: 31016
components:
- rot: 1.5707963267948966 rad
pos: 30.5,28.5
parent: 2
type: Transform
- - uid: 31005
+ - uid: 31017
components:
- rot: 1.5707963267948966 rad
pos: 30.5,30.5
parent: 2
type: Transform
- - uid: 31006
+ - uid: 31018
components:
- rot: -1.5707963267948966 rad
pos: 28.5,30.5
parent: 2
type: Transform
- - uid: 31007
+ - uid: 31019
components:
- rot: 3.141592653589793 rad
pos: 26.5,19.5
parent: 2
type: Transform
- - uid: 31008
+ - uid: 31020
components:
- rot: -1.5707963267948966 rad
pos: 28.5,28.5
parent: 2
type: Transform
- - uid: 31009
+ - uid: 31021
components:
- rot: 3.141592653589793 rad
pos: 29.5,30.5
@@ -198172,14 +198248,14 @@ entities:
type: Transform
- proto: WindoorSecureBrigLocked
entities:
- - uid: 31010
+ - uid: 31022
components:
- pos: 31.5,-52.5
parent: 2
type: Transform
- proto: WindoorSecureCargoLocked
entities:
- - uid: 31011
+ - uid: 31023
components:
- rot: -1.5707963267948966 rad
pos: -26.5,22.5
@@ -198187,19 +198263,19 @@ entities:
type: Transform
- proto: WindoorSecureChemistryLocked
entities:
- - uid: 31012
+ - uid: 31024
components:
- rot: 1.5707963267948966 rad
pos: 1.5,-48.5
parent: 2
type: Transform
- - uid: 31013
+ - uid: 31025
components:
- rot: 1.5707963267948966 rad
pos: 1.5,-46.5
parent: 2
type: Transform
- - uid: 31014
+ - uid: 31026
components:
- rot: 3.141592653589793 rad
pos: 3.5,-51.5
@@ -198207,13 +198283,13 @@ entities:
type: Transform
- proto: WindoorSecureEngineeringLocked
entities:
- - uid: 31015
+ - uid: 31027
components:
- rot: -1.5707963267948966 rad
pos: -26.5,-12.5
parent: 2
type: Transform
- - uid: 31016
+ - uid: 31028
components:
- rot: -1.5707963267948966 rad
pos: -21.5,-34.5
@@ -198221,67 +198297,67 @@ entities:
type: Transform
- proto: WindoorSecureHeadOfPersonnelLocked
entities:
- - uid: 31017
+ - uid: 31029
components:
- pos: 4.5,-3.5
parent: 2
type: Transform
- proto: WindoorSecureMedicalLocked
entities:
- - uid: 31018
+ - uid: 31030
components:
- rot: -1.5707963267948966 rad
pos: -17.5,-79.5
parent: 2
type: Transform
- - uid: 31019
+ - uid: 31031
components:
- rot: -1.5707963267948966 rad
pos: -16.5,-78.5
parent: 2
type: Transform
- - uid: 31020
+ - uid: 31032
components:
- rot: -1.5707963267948966 rad
pos: -16.5,-76.5
parent: 2
type: Transform
- - uid: 31021
+ - uid: 31033
components:
- rot: 1.5707963267948966 rad
pos: -28.5,-77.5
parent: 2
type: Transform
- - uid: 31022
+ - uid: 31034
components:
- rot: -1.5707963267948966 rad
pos: -17.5,-75.5
parent: 2
type: Transform
- - uid: 31023
+ - uid: 31035
components:
- rot: 1.5707963267948966 rad
pos: -28.5,-79.5
parent: 2
type: Transform
- - uid: 31024
+ - uid: 31036
components:
- rot: 3.141592653589793 rad
pos: -20.5,-88.5
parent: 2
type: Transform
- - uid: 31025
+ - uid: 31037
components:
- rot: 3.141592653589793 rad
pos: -25.5,-88.5
parent: 2
type: Transform
- - uid: 31026
+ - uid: 31038
components:
- pos: 3.5,-51.5
parent: 2
type: Transform
- - uid: 31027
+ - uid: 31039
components:
- rot: 1.5707963267948966 rad
pos: 48.5,6.5
@@ -198289,13 +198365,13 @@ entities:
type: Transform
- proto: WindoorSecureScienceLocked
entities:
- - uid: 31028
+ - uid: 31040
components:
- rot: 3.141592653589793 rad
pos: 42.5,-40.5
parent: 2
type: Transform
- - uid: 31029
+ - uid: 31041
components:
- rot: 3.141592653589793 rad
pos: 43.5,-40.5
@@ -198303,116 +198379,116 @@ entities:
type: Transform
- proto: WindoorSecureSecurityLocked
entities:
- - uid: 31030
+ - uid: 31042
components:
- rot: -1.5707963267948966 rad
pos: 48.5,6.5
parent: 2
type: Transform
- - uid: 31031
+ - uid: 31043
components:
- rot: 1.5707963267948966 rad
pos: 42.5,6.5
parent: 2
type: Transform
- - uid: 31032
+ - uid: 31044
components:
- rot: 3.141592653589793 rad
pos: 29.5,13.5
parent: 2
type: Transform
- links:
- - 2252
+ - 2255
type: DeviceLinkSink
- - uid: 31033
+ - uid: 31045
components:
- rot: 1.5707963267948966 rad
pos: 39.5,7.5
parent: 2
type: Transform
- links:
- - 2254
+ - 2257
type: DeviceLinkSink
- - uid: 31034
+ - uid: 31046
components:
- rot: 3.141592653589793 rad
pos: 5.5,11.5
parent: 2
type: Transform
- - uid: 31035
+ - uid: 31047
components:
- rot: -1.5707963267948966 rad
pos: 5.5,-56.5
parent: 2
type: Transform
- - uid: 31036
+ - uid: 31048
components:
- rot: 3.141592653589793 rad
pos: 4.5,11.5
parent: 2
type: Transform
- - uid: 31037
+ - uid: 31049
components:
- rot: 3.141592653589793 rad
pos: 32.5,13.5
parent: 2
type: Transform
- links:
- - 2253
+ - 2256
type: DeviceLinkSink
- - uid: 31038
+ - uid: 31050
components:
- rot: 1.5707963267948966 rad
pos: 39.5,4.5
parent: 2
type: Transform
- links:
- - 2255
+ - 2258
type: DeviceLinkSink
- - uid: 31039
+ - uid: 31051
components:
- rot: 3.141592653589793 rad
pos: 17.5,15.5
parent: 2
type: Transform
- - uid: 31040
+ - uid: 31052
components:
- rot: 3.141592653589793 rad
pos: 35.5,13.5
parent: 2
type: Transform
- links:
- - 2251
+ - 2254
type: DeviceLinkSink
- - uid: 31041
+ - uid: 31053
components:
- rot: 3.141592653589793 rad
pos: 18.5,15.5
parent: 2
type: Transform
- - uid: 31042
+ - uid: 31054
components:
- pos: 21.5,-44.5
parent: 2
type: Transform
- - uid: 31043
+ - uid: 31055
components:
- pos: 22.5,-44.5
parent: 2
type: Transform
- - uid: 31044
+ - uid: 31056
components:
- rot: 1.5707963267948966 rad
pos: -17.5,-22.5
parent: 2
type: Transform
- - uid: 31045
+ - uid: 31057
components:
- rot: 1.5707963267948966 rad
pos: -17.5,-23.5
parent: 2
type: Transform
- - uid: 31046
+ - uid: 31058
components:
- rot: 1.5707963267948966 rad
pos: -17.5,25.5
@@ -198420,7 +198496,7 @@ entities:
type: Transform
- proto: WindoorTheatreLocked
entities:
- - uid: 31047
+ - uid: 31059
components:
- rot: 3.141592653589793 rad
pos: 9.5,-0.5
@@ -198428,786 +198504,786 @@ entities:
type: Transform
- proto: Window
entities:
- - uid: 31048
+ - uid: 31060
components:
- rot: -1.5707963267948966 rad
pos: -48.5,-74.5
parent: 2
type: Transform
- - uid: 31049
+ - uid: 31061
components:
- rot: -1.5707963267948966 rad
pos: -41.5,-69.5
parent: 2
type: Transform
- - uid: 31050
+ - uid: 31062
components:
- rot: -1.5707963267948966 rad
pos: -42.5,-69.5
parent: 2
type: Transform
- - uid: 31051
+ - uid: 31063
components:
- rot: -1.5707963267948966 rad
pos: -53.5,-31.5
parent: 2
type: Transform
- - uid: 31052
+ - uid: 31064
components:
- rot: -1.5707963267948966 rad
pos: -53.5,-32.5
parent: 2
type: Transform
- - uid: 31053
+ - uid: 31065
components:
- pos: 27.5,-55.5
parent: 2
type: Transform
- - uid: 31054
+ - uid: 31066
components:
- pos: 27.5,-54.5
parent: 2
type: Transform
- - uid: 31055
+ - uid: 31067
components:
- rot: 3.141592653589793 rad
pos: -20.5,65.5
parent: 2
type: Transform
- - uid: 31056
+ - uid: 31068
components:
- rot: 3.141592653589793 rad
pos: -20.5,67.5
parent: 2
type: Transform
- - uid: 31057
+ - uid: 31069
components:
- rot: 3.141592653589793 rad
pos: -14.5,67.5
parent: 2
type: Transform
- - uid: 31058
+ - uid: 31070
components:
- pos: -13.5,-57.5
parent: 2
type: Transform
- - uid: 31059
+ - uid: 31071
components:
- pos: -9.5,-58.5
parent: 2
type: Transform
- - uid: 31060
+ - uid: 31072
components:
- pos: -4.5,-56.5
parent: 2
type: Transform
- - uid: 31061
+ - uid: 31073
components:
- rot: -1.5707963267948966 rad
pos: 22.5,5.5
parent: 2
type: Transform
- - uid: 31062
+ - uid: 31074
components:
- pos: -21.5,-13.5
parent: 2
type: Transform
- - uid: 31063
+ - uid: 31075
components:
- pos: -9.5,-40.5
parent: 2
type: Transform
- - uid: 31064
+ - uid: 31076
components:
- rot: -1.5707963267948966 rad
pos: 19.5,-1.5
parent: 2
type: Transform
- - uid: 31065
+ - uid: 31077
components:
- pos: -14.5,-44.5
parent: 2
type: Transform
- - uid: 31066
+ - uid: 31078
components:
- pos: -1.5,-56.5
parent: 2
type: Transform
- - uid: 31067
+ - uid: 31079
components:
- pos: 39.5,-0.5
parent: 2
type: Transform
- - uid: 31068
+ - uid: 31080
components:
- pos: -12.5,-58.5
parent: 2
type: Transform
- - uid: 31069
+ - uid: 31081
components:
- pos: -6.5,-55.5
parent: 2
type: Transform
- - uid: 31070
+ - uid: 31082
components:
- pos: -0.5,-62.5
parent: 2
type: Transform
- - uid: 31071
+ - uid: 31083
components:
- pos: 1.5,-56.5
parent: 2
type: Transform
- - uid: 31072
+ - uid: 31084
components:
- pos: -0.5,-58.5
parent: 2
type: Transform
- - uid: 31073
+ - uid: 31085
components:
- pos: -3.5,-58.5
parent: 2
type: Transform
- - uid: 31074
+ - uid: 31086
components:
- pos: 30.5,-57.5
parent: 2
type: Transform
- - uid: 31075
+ - uid: 31087
components:
- pos: 29.5,-57.5
parent: 2
type: Transform
- - uid: 31076
+ - uid: 31088
components:
- pos: 33.5,-57.5
parent: 2
type: Transform
- - uid: 31077
+ - uid: 31089
components:
- rot: -1.5707963267948966 rad
pos: 19.5,0.5
parent: 2
type: Transform
- - uid: 31078
+ - uid: 31090
components:
- rot: -1.5707963267948966 rad
pos: 26.5,-3.5
parent: 2
type: Transform
- - uid: 31079
+ - uid: 31091
components:
- rot: -1.5707963267948966 rad
pos: 23.5,-3.5
parent: 2
type: Transform
- - uid: 31080
+ - uid: 31092
components:
- rot: -1.5707963267948966 rad
pos: 22.5,-3.5
parent: 2
type: Transform
- - uid: 31081
+ - uid: 31093
components:
- pos: 35.5,-5.5
parent: 2
type: Transform
- - uid: 31082
+ - uid: 31094
components:
- pos: -21.5,11.5
parent: 2
type: Transform
- - uid: 31083
+ - uid: 31095
components:
- pos: -21.5,12.5
parent: 2
type: Transform
- - uid: 31084
+ - uid: 31096
components:
- pos: -21.5,-10.5
parent: 2
type: Transform
- - uid: 31085
+ - uid: 31097
components:
- pos: -21.5,-14.5
parent: 2
type: Transform
- - uid: 31086
+ - uid: 31098
components:
- pos: 35.5,-1.5
parent: 2
type: Transform
- - uid: 31087
+ - uid: 31099
components:
- pos: 35.5,-2.5
parent: 2
type: Transform
- - uid: 31088
+ - uid: 31100
components:
- pos: -21.5,-9.5
parent: 2
type: Transform
- - uid: 31089
+ - uid: 31101
components:
- pos: -5.5,-44.5
parent: 2
type: Transform
- - uid: 31090
+ - uid: 31102
components:
- pos: -11.5,-40.5
parent: 2
type: Transform
- - uid: 31091
+ - uid: 31103
components:
- pos: -10.5,-40.5
parent: 2
type: Transform
- - uid: 31092
+ - uid: 31104
components:
- pos: 0.5,-62.5
parent: 2
type: Transform
- - uid: 31093
+ - uid: 31105
components:
- pos: 1.5,-57.5
parent: 2
type: Transform
- - uid: 31094
+ - uid: 31106
components:
- pos: -0.5,-55.5
parent: 2
type: Transform
- - uid: 31095
+ - uid: 31107
components:
- pos: 2.5,-55.5
parent: 2
type: Transform
- - uid: 31096
+ - uid: 31108
components:
- pos: 2.5,-62.5
parent: 2
type: Transform
- - uid: 31097
+ - uid: 31109
components:
- pos: -9.5,-62.5
parent: 2
type: Transform
- - uid: 31098
+ - uid: 31110
components:
- pos: -3.5,-55.5
parent: 2
type: Transform
- - uid: 31099
+ - uid: 31111
components:
- pos: -9.5,-55.5
parent: 2
type: Transform
- - uid: 31100
+ - uid: 31112
components:
- pos: 2.5,-58.5
parent: 2
type: Transform
- - uid: 31101
+ - uid: 31113
components:
- pos: 4.5,-62.5
parent: 2
type: Transform
- - uid: 31102
+ - uid: 31114
components:
- pos: -8.5,-62.5
parent: 2
type: Transform
- - uid: 31103
+ - uid: 31115
components:
- pos: -10.5,-56.5
parent: 2
type: Transform
- - uid: 31104
+ - uid: 31116
components:
- pos: -10.5,-57.5
parent: 2
type: Transform
- - uid: 31105
+ - uid: 31117
components:
- pos: -21.5,-61.5
parent: 2
type: Transform
- - uid: 31106
+ - uid: 31118
components:
- pos: -21.5,-59.5
parent: 2
type: Transform
- - uid: 31107
+ - uid: 31119
components:
- pos: -12.5,-44.5
parent: 2
type: Transform
- - uid: 31108
+ - uid: 31120
components:
- pos: -12.5,-55.5
parent: 2
type: Transform
- - uid: 31109
+ - uid: 31121
components:
- pos: -6.5,-36.5
parent: 2
type: Transform
- - uid: 31110
+ - uid: 31122
components:
- pos: -25.5,9.5
parent: 2
type: Transform
- - uid: 31111
+ - uid: 31123
components:
- pos: -3.5,-44.5
parent: 2
type: Transform
- - uid: 31112
+ - uid: 31124
components:
- rot: -1.5707963267948966 rad
pos: 19.5,-0.5
parent: 2
type: Transform
- - uid: 31113
+ - uid: 31125
components:
- rot: -1.5707963267948966 rad
pos: 25.5,5.5
parent: 2
type: Transform
- - uid: 31114
+ - uid: 31126
components:
- rot: -1.5707963267948966 rad
pos: 27.5,-3.5
parent: 2
type: Transform
- - uid: 31115
+ - uid: 31127
components:
- rot: -1.5707963267948966 rad
pos: 21.5,-3.5
parent: 2
type: Transform
- - uid: 31116
+ - uid: 31128
components:
- pos: -4.5,-44.5
parent: 2
type: Transform
- - uid: 31117
+ - uid: 31129
components:
- pos: -1.5,-57.5
parent: 2
type: Transform
- - uid: 31118
+ - uid: 31130
components:
- pos: -4.5,-57.5
parent: 2
type: Transform
- - uid: 31119
+ - uid: 31131
components:
- pos: -7.5,-57.5
parent: 2
type: Transform
- - uid: 31120
+ - uid: 31132
components:
- pos: -13.5,-44.5
parent: 2
type: Transform
- - uid: 31121
+ - uid: 31133
components:
- pos: -6.5,-38.5
parent: 2
type: Transform
- - uid: 31122
+ - uid: 31134
components:
- pos: -10.5,-16.5
parent: 2
type: Transform
- - uid: 31123
+ - uid: 31135
components:
- pos: 42.5,-0.5
parent: 2
type: Transform
- - uid: 31124
+ - uid: 31136
components:
- pos: -21.5,-20.5
parent: 2
type: Transform
- - uid: 31125
+ - uid: 31137
components:
- rot: -1.5707963267948966 rad
pos: 21.5,5.5
parent: 2
type: Transform
- - uid: 31126
+ - uid: 31138
components:
- rot: -1.5707963267948966 rad
pos: 26.5,5.5
parent: 2
type: Transform
- - uid: 31127
+ - uid: 31139
components:
- rot: -1.5707963267948966 rad
pos: 23.5,5.5
parent: 2
type: Transform
- - uid: 31128
+ - uid: 31140
components:
- rot: -1.5707963267948966 rad
pos: 25.5,-3.5
parent: 2
type: Transform
- - uid: 31129
+ - uid: 31141
components:
- pos: -12.5,43.5
parent: 2
type: Transform
- - uid: 31130
+ - uid: 31142
components:
- pos: 37.5,-0.5
parent: 2
type: Transform
- - uid: 31131
+ - uid: 31143
components:
- rot: 3.141592653589793 rad
pos: -20.5,-68.5
parent: 2
type: Transform
- - uid: 31132
+ - uid: 31144
components:
- rot: 3.141592653589793 rad
pos: -18.5,-68.5
parent: 2
type: Transform
- - uid: 31133
+ - uid: 31145
components:
- rot: -1.5707963267948966 rad
pos: 19.5,3.5
parent: 2
type: Transform
- - uid: 31134
+ - uid: 31146
components:
- rot: -1.5707963267948966 rad
pos: 19.5,2.5
parent: 2
type: Transform
- - uid: 31135
+ - uid: 31147
components:
- pos: -6.5,-58.5
parent: 2
type: Transform
- - uid: 31136
+ - uid: 31148
components:
- pos: -6.5,-37.5
parent: 2
type: Transform
- - uid: 31137
+ - uid: 31149
components:
- pos: -7.5,-56.5
parent: 2
type: Transform
- - uid: 31138
+ - uid: 31150
components:
- pos: 41.5,-0.5
parent: 2
type: Transform
- - uid: 31139
+ - uid: 31151
components:
- pos: -13.5,-56.5
parent: 2
type: Transform
- - uid: 31140
+ - uid: 31152
components:
- rot: -1.5707963267948966 rad
pos: 19.5,1.5
parent: 2
type: Transform
- - uid: 31141
+ - uid: 31153
components:
- rot: -1.5707963267948966 rad
pos: 27.5,5.5
parent: 2
type: Transform
- - uid: 31142
+ - uid: 31154
components:
- pos: 43.5,-0.5
parent: 2
type: Transform
- - uid: 31143
+ - uid: 31155
components:
- pos: -21.5,-22.5
parent: 2
type: Transform
- - uid: 31144
+ - uid: 31156
components:
- pos: 32.5,-57.5
parent: 2
type: Transform
- - uid: 31145
+ - uid: 31157
components:
- pos: -12.5,14.5
parent: 2
type: Transform
- - uid: 31146
+ - uid: 31158
components:
- pos: -23.5,9.5
parent: 2
type: Transform
- - uid: 31147
+ - uid: 31159
components:
- pos: -22.5,9.5
parent: 2
type: Transform
- - uid: 31148
+ - uid: 31160
components:
- pos: -8.5,43.5
parent: 2
type: Transform
- - uid: 31149
+ - uid: 31161
components:
- pos: 35.5,-4.5
parent: 2
type: Transform
- - uid: 31150
+ - uid: 31162
components:
- pos: -12.5,-16.5
parent: 2
type: Transform
- - uid: 31151
+ - uid: 31163
components:
- pos: 43.5,-12.5
parent: 2
type: Transform
- - uid: 31152
+ - uid: 31164
components:
- pos: 42.5,-44.5
parent: 2
type: Transform
- - uid: 31153
+ - uid: 31165
components:
- pos: 43.5,-44.5
parent: 2
type: Transform
- - uid: 31154
+ - uid: 31166
components:
- pos: 44.5,-44.5
parent: 2
type: Transform
- - uid: 31155
+ - uid: 31167
components:
- pos: 27.5,-51.5
parent: 2
type: Transform
- - uid: 31156
+ - uid: 31168
components:
- pos: 27.5,-47.5
parent: 2
type: Transform
- - uid: 31157
+ - uid: 31169
components:
- pos: -19.5,0.5
parent: 2
type: Transform
- - uid: 31158
+ - uid: 31170
components:
- pos: -17.5,0.5
parent: 2
type: Transform
- - uid: 31159
+ - uid: 31171
components:
- pos: -16.5,0.5
parent: 2
type: Transform
- - uid: 31160
+ - uid: 31172
components:
- rot: -1.5707963267948966 rad
pos: -24.5,-18.5
parent: 2
type: Transform
- - uid: 31161
+ - uid: 31173
components:
- pos: 38.5,-57.5
parent: 2
type: Transform
- - uid: 31162
+ - uid: 31174
components:
- pos: 40.5,-57.5
parent: 2
type: Transform
- - uid: 31163
+ - uid: 31175
components:
- rot: -1.5707963267948966 rad
pos: -25.5,-18.5
parent: 2
type: Transform
- - uid: 31164
+ - uid: 31176
components:
- pos: 5.5,-58.5
parent: 2
type: Transform
- - uid: 31165
+ - uid: 31177
components:
- rot: 1.5707963267948966 rad
pos: -66.5,-29.5
parent: 2
type: Transform
- - uid: 31166
+ - uid: 31178
components:
- rot: -1.5707963267948966 rad
pos: -28.5,-47.5
parent: 2
type: Transform
- - uid: 31167
+ - uid: 31179
components:
- pos: -38.5,-63.5
parent: 2
type: Transform
- - uid: 31168
+ - uid: 31180
components:
- pos: -38.5,-65.5
parent: 2
type: Transform
- - uid: 31169
+ - uid: 31181
components:
- pos: -21.5,24.5
parent: 2
type: Transform
- - uid: 31170
+ - uid: 31182
components:
- pos: -21.5,23.5
parent: 2
type: Transform
- - uid: 31171
+ - uid: 31183
components:
- pos: -34.5,2.5
parent: 2
type: Transform
- - uid: 31172
+ - uid: 31184
components:
- pos: -26.5,9.5
parent: 2
type: Transform
- - uid: 31173
+ - uid: 31185
components:
- pos: -36.5,2.5
parent: 2
type: Transform
- - uid: 31174
+ - uid: 31186
components:
- pos: -36.5,7.5
parent: 2
type: Transform
- - uid: 31175
+ - uid: 31187
components:
- pos: -39.5,2.5
parent: 2
type: Transform
- - uid: 31176
+ - uid: 31188
components:
- pos: -35.5,2.5
parent: 2
type: Transform
- - uid: 31177
+ - uid: 31189
components:
- pos: -39.5,7.5
parent: 2
type: Transform
- - uid: 31178
+ - uid: 31190
components:
- pos: -41.5,2.5
parent: 2
type: Transform
- - uid: 31179
+ - uid: 31191
components:
- pos: -40.5,2.5
parent: 2
type: Transform
- - uid: 31180
+ - uid: 31192
components:
- rot: 1.5707963267948966 rad
pos: -52.5,-0.5
parent: 2
type: Transform
- - uid: 31181
+ - uid: 31193
components:
- pos: -30.5,-72.5
parent: 2
type: Transform
- - uid: 31182
+ - uid: 31194
components:
- pos: -14.5,65.5
parent: 2
type: Transform
- - uid: 31183
+ - uid: 31195
components:
- pos: -14.5,62.5
parent: 2
type: Transform
- - uid: 31184
+ - uid: 31196
components:
- pos: -3.5,47.5
parent: 2
type: Transform
- - uid: 31185
+ - uid: 31197
components:
- pos: -1.5,49.5
parent: 2
type: Transform
- - uid: 31186
+ - uid: 31198
components:
- pos: -5.5,47.5
parent: 2
type: Transform
- - uid: 31187
+ - uid: 31199
components:
- rot: 3.141592653589793 rad
pos: -19.5,44.5
parent: 2
type: Transform
- - uid: 31188
+ - uid: 31200
components:
- pos: -7.5,57.5
parent: 2
type: Transform
- - uid: 31189
+ - uid: 31201
components:
- pos: -5.5,57.5
parent: 2
type: Transform
- - uid: 31190
+ - uid: 31202
components:
- pos: 2.5,47.5
parent: 2
type: Transform
- - uid: 31191
+ - uid: 31203
components:
- pos: 2.5,50.5
parent: 2
type: Transform
- - uid: 31192
+ - uid: 31204
components:
- pos: 2.5,51.5
parent: 2
type: Transform
- - uid: 31193
+ - uid: 31205
components:
- pos: -1.5,50.5
parent: 2
type: Transform
- - uid: 31194
+ - uid: 31206
components:
- pos: -11.5,51.5
parent: 2
type: Transform
- - uid: 31195
+ - uid: 31207
components:
- pos: -11.5,53.5
parent: 2
type: Transform
- - uid: 31196
+ - uid: 31208
components:
- pos: -20.5,62.5
parent: 2
type: Transform
- - uid: 31197
+ - uid: 31209
components:
- rot: 3.141592653589793 rad
pos: -28.5,-72.5
@@ -199215,129 +199291,129 @@ entities:
type: Transform
- proto: WindowDirectional
entities:
- - uid: 31198
+ - uid: 31210
components:
- pos: 3.5,-1.5
parent: 2
type: Transform
- - uid: 31199
+ - uid: 31211
components:
- pos: 2.5,-1.5
parent: 2
type: Transform
- - uid: 31200
+ - uid: 31212
components:
- rot: -1.5707963267948966 rad
pos: 10.5,0.5
parent: 2
type: Transform
- - uid: 31201
+ - uid: 31213
components:
- rot: 1.5707963267948966 rad
pos: 7.5,1.5
parent: 2
type: Transform
- - uid: 31202
+ - uid: 31214
components:
- pos: 8.5,2.5
parent: 2
type: Transform
- - uid: 31203
+ - uid: 31215
components:
- rot: -1.5707963267948966 rad
pos: 10.5,1.5
parent: 2
type: Transform
- - uid: 31204
+ - uid: 31216
components:
- rot: -1.5707963267948966 rad
pos: 5.5,-57.5
parent: 2
type: Transform
- - uid: 31205
+ - uid: 31217
components:
- pos: 9.5,2.5
parent: 2
type: Transform
- - uid: 31206
+ - uid: 31218
components:
- rot: 3.141592653589793 rad
pos: 8.5,-0.5
parent: 2
type: Transform
- - uid: 31207
+ - uid: 31219
components:
- rot: 1.5707963267948966 rad
pos: 7.5,0.5
parent: 2
type: Transform
- - uid: 31208
+ - uid: 31220
components:
- rot: 1.5707963267948966 rad
pos: 59.5,-35.5
parent: 2
type: Transform
- - uid: 31209
+ - uid: 31221
components:
- rot: -1.5707963267948966 rad
pos: 74.5,-49.5
parent: 2
type: Transform
- - uid: 31210
+ - uid: 31222
components:
- rot: -1.5707963267948966 rad
pos: 74.5,-47.5
parent: 2
type: Transform
- - uid: 31211
+ - uid: 31223
components:
- rot: 1.5707963267948966 rad
pos: 68.5,-47.5
parent: 2
type: Transform
- - uid: 31212
+ - uid: 31224
components:
- rot: 1.5707963267948966 rad
pos: 68.5,-49.5
parent: 2
type: Transform
- - uid: 31213
+ - uid: 31225
components:
- rot: 1.5707963267948966 rad
pos: 59.5,-32.5
parent: 2
type: Transform
- - uid: 31214
+ - uid: 31226
components:
- rot: 1.5707963267948966 rad
pos: 68.5,-48.5
parent: 2
type: Transform
- - uid: 31215
+ - uid: 31227
components:
- rot: -1.5707963267948966 rad
pos: 74.5,-48.5
parent: 2
type: Transform
- - uid: 31216
+ - uid: 31228
components:
- rot: 3.141592653589793 rad
pos: 69.5,-47.5
parent: 2
type: Transform
- - uid: 31217
+ - uid: 31229
components:
- rot: 3.141592653589793 rad
pos: 70.5,-47.5
parent: 2
type: Transform
- - uid: 31218
+ - uid: 31230
components:
- rot: 3.141592653589793 rad
pos: 73.5,-47.5
parent: 2
type: Transform
- - uid: 31219
+ - uid: 31231
components:
- rot: 3.141592653589793 rad
pos: 72.5,-47.5
@@ -199345,1569 +199421,1569 @@ entities:
type: Transform
- proto: WindowReinforcedDirectional
entities:
- - uid: 31220
+ - uid: 31232
components:
- rot: 1.5707963267948966 rad
pos: -25.5,-24.5
parent: 2
type: Transform
- - uid: 31221
+ - uid: 31233
components:
- rot: 3.141592653589793 rad
pos: -24.5,-24.5
parent: 2
type: Transform
- - uid: 31222
+ - uid: 31234
components:
- rot: -1.5707963267948966 rad
pos: -11.5,7.5
parent: 2
type: Transform
- - uid: 31223
+ - uid: 31235
components:
- pos: 16.5,-53.5
parent: 2
type: Transform
- - uid: 31224
+ - uid: 31236
components:
- pos: -11.5,6.5
parent: 2
type: Transform
- - uid: 31225
+ - uid: 31237
components:
- pos: 15.5,-53.5
parent: 2
type: Transform
- - uid: 31226
+ - uid: 31238
components:
- rot: 3.141592653589793 rad
pos: -11.5,7.5
parent: 2
type: Transform
- - uid: 31227
+ - uid: 31239
components:
- rot: -1.5707963267948966 rad
pos: -11.5,6.5
parent: 2
type: Transform
- - uid: 31228
+ - uid: 31240
components:
- rot: 1.5707963267948966 rad
pos: -11.5,6.5
parent: 2
type: Transform
- - uid: 31229
+ - uid: 31241
components:
- rot: 1.5707963267948966 rad
pos: -11.5,7.5
parent: 2
type: Transform
- - uid: 31230
+ - uid: 31242
components:
- pos: -28.5,-78.5
parent: 2
type: Transform
- - uid: 31231
+ - uid: 31243
components:
- rot: -1.5707963267948966 rad
pos: 22.5,-21.5
parent: 2
type: Transform
- - uid: 31232
+ - uid: 31244
components:
- rot: -1.5707963267948966 rad
pos: -16.5,-75.5
parent: 2
type: Transform
- - uid: 31233
+ - uid: 31245
components:
- rot: 1.5707963267948966 rad
pos: -23.5,-88.5
parent: 2
type: Transform
- - uid: 31234
+ - uid: 31246
components:
- pos: -17.5,-76.5
parent: 2
type: Transform
- - uid: 31235
+ - uid: 31247
components:
- pos: -30.5,-78.5
parent: 2
type: Transform
- - uid: 31236
+ - uid: 31248
components:
- rot: 1.5707963267948966 rad
pos: -28.5,-80.5
parent: 2
type: Transform
- - uid: 31237
+ - uid: 31249
components:
- rot: 1.5707963267948966 rad
pos: -23.5,-90.5
parent: 2
type: Transform
- - uid: 31238
+ - uid: 31250
components:
- pos: -4.5,4.5
parent: 2
type: Transform
- - uid: 31239
+ - uid: 31251
components:
- rot: -1.5707963267948966 rad
pos: 28.5,-21.5
parent: 2
type: Transform
- - uid: 31240
+ - uid: 31252
components:
- rot: 1.5707963267948966 rad
pos: 24.5,-21.5
parent: 2
type: Transform
- - uid: 31241
+ - uid: 31253
components:
- rot: 1.5707963267948966 rad
pos: 26.5,-21.5
parent: 2
type: Transform
- - uid: 31242
+ - uid: 31254
components:
- rot: -1.5707963267948966 rad
pos: 26.5,-21.5
parent: 2
type: Transform
- - uid: 31243
+ - uid: 31255
components:
- pos: 49.5,22.5
parent: 2
type: Transform
- - uid: 31244
+ - uid: 31256
components:
- pos: 25.5,-23.5
parent: 2
type: Transform
- - uid: 31245
+ - uid: 31257
components:
- rot: 3.141592653589793 rad
pos: 26.5,28.5
parent: 2
type: Transform
- - uid: 31246
+ - uid: 31258
components:
- rot: 1.5707963267948966 rad
pos: 30.5,29.5
parent: 2
type: Transform
- - uid: 31247
+ - uid: 31259
components:
- rot: 3.141592653589793 rad
pos: 32.5,28.5
parent: 2
type: Transform
- - uid: 31248
+ - uid: 31260
components:
- rot: 3.141592653589793 rad
pos: 27.5,28.5
parent: 2
type: Transform
- - uid: 31249
+ - uid: 31261
components:
- rot: -1.5707963267948966 rad
pos: -17.5,-78.5
parent: 2
type: Transform
- - uid: 31250
+ - uid: 31262
components:
- pos: -11.5,-9.5
parent: 2
type: Transform
- - uid: 31251
+ - uid: 31263
components:
- rot: -1.5707963267948966 rad
pos: 19.5,-54.5
parent: 2
type: Transform
- - uid: 31252
+ - uid: 31264
components:
- pos: 58.5,22.5
parent: 2
type: Transform
- - uid: 31253
+ - uid: 31265
components:
- pos: 52.5,22.5
parent: 2
type: Transform
- - uid: 31254
+ - uid: 31266
components:
- pos: 55.5,22.5
parent: 2
type: Transform
- - uid: 31255
+ - uid: 31267
components:
- rot: -1.5707963267948966 rad
pos: 28.5,29.5
parent: 2
type: Transform
- - uid: 31256
+ - uid: 31268
components:
- rot: 3.141592653589793 rad
pos: 26.5,30.5
parent: 2
type: Transform
- - uid: 31257
+ - uid: 31269
components:
- rot: 3.141592653589793 rad
pos: -17.5,-78.5
parent: 2
type: Transform
- - uid: 31258
+ - uid: 31270
components:
- rot: -1.5707963267948966 rad
pos: -17.5,-76.5
parent: 2
type: Transform
- - uid: 31259
+ - uid: 31271
components:
- rot: -1.5707963267948966 rad
pos: -16.5,-79.5
parent: 2
type: Transform
- - uid: 31260
+ - uid: 31272
components:
- rot: 1.5707963267948966 rad
pos: -28.5,-78.5
parent: 2
type: Transform
- - uid: 31261
+ - uid: 31273
components:
- rot: 3.141592653589793 rad
pos: -26.5,-88.5
parent: 2
type: Transform
- - uid: 31262
+ - uid: 31274
components:
- rot: 3.141592653589793 rad
pos: -23.5,-88.5
parent: 2
type: Transform
- - uid: 31263
+ - uid: 31275
components:
- rot: 3.141592653589793 rad
pos: -21.5,-88.5
parent: 2
type: Transform
- - uid: 31264
+ - uid: 31276
components:
- pos: 26.5,-23.5
parent: 2
type: Transform
- - uid: 31265
+ - uid: 31277
components:
- rot: 3.141592653589793 rad
pos: -24.5,-88.5
parent: 2
type: Transform
- - uid: 31266
+ - uid: 31278
components:
- rot: -1.5707963267948966 rad
pos: -22.5,-90.5
parent: 2
type: Transform
- - uid: 31267
+ - uid: 31279
components:
- rot: -1.5707963267948966 rad
pos: -22.5,-88.5
parent: 2
type: Transform
- - uid: 31268
+ - uid: 31280
components:
- rot: -1.5707963267948966 rad
pos: 28.5,27.5
parent: 2
type: Transform
- - uid: 31269
+ - uid: 31281
components:
- pos: -9.5,-81.5
parent: 2
type: Transform
- - uid: 31270
+ - uid: 31282
components:
- rot: 3.141592653589793 rad
pos: 31.5,30.5
parent: 2
type: Transform
- - uid: 31271
+ - uid: 31283
components:
- rot: 3.141592653589793 rad
pos: 27.5,30.5
parent: 2
type: Transform
- - uid: 31272
+ - uid: 31284
components:
- rot: 3.141592653589793 rad
pos: -8.5,21.5
parent: 2
type: Transform
- - uid: 31273
+ - uid: 31285
components:
- rot: 3.141592653589793 rad
pos: 32.5,30.5
parent: 2
type: Transform
- - uid: 31274
+ - uid: 31286
components:
- rot: 1.5707963267948966 rad
pos: 23.5,-24.5
parent: 2
type: Transform
- - uid: 31275
+ - uid: 31287
components:
- rot: 3.141592653589793 rad
pos: 31.5,28.5
parent: 2
type: Transform
- - uid: 31276
+ - uid: 31288
components:
- rot: -1.5707963267948966 rad
pos: -22.5,-89.5
parent: 2
type: Transform
- - uid: 31277
+ - uid: 31289
components:
- rot: 1.5707963267948966 rad
pos: -23.5,-89.5
parent: 2
type: Transform
- - uid: 31278
+ - uid: 31290
components:
- pos: -29.5,-78.5
parent: 2
type: Transform
- - uid: 31279
+ - uid: 31291
components:
- rot: 1.5707963267948966 rad
pos: 30.5,27.5
parent: 2
type: Transform
- - uid: 31280
+ - uid: 31292
components:
- rot: -1.5707963267948966 rad
pos: 24.5,-21.5
parent: 2
type: Transform
- - uid: 31281
+ - uid: 31293
components:
- rot: 1.5707963267948966 rad
pos: 28.5,-21.5
parent: 2
type: Transform
- - uid: 31282
+ - uid: 31294
components:
- pos: -3.5,4.5
parent: 2
type: Transform
- - uid: 31283
+ - uid: 31295
components:
- rot: 1.5707963267948966 rad
pos: 22.5,-21.5
parent: 2
type: Transform
- - uid: 31284
+ - uid: 31296
components:
- rot: 1.5707963267948966 rad
pos: -10.5,-82.5
parent: 2
type: Transform
- - uid: 31285
+ - uid: 31297
components:
- rot: -1.5707963267948966 rad
pos: 27.5,-24.5
parent: 2
type: Transform
- - uid: 31286
+ - uid: 31298
components:
- pos: 24.5,-23.5
parent: 2
type: Transform
- - uid: 31287
+ - uid: 31299
components:
- pos: 18.5,-53.5
parent: 2
type: Transform
- - uid: 31288
+ - uid: 31300
components:
- pos: -14.5,-9.5
parent: 2
type: Transform
- - uid: 31289
+ - uid: 31301
components:
- rot: 3.141592653589793 rad
pos: -22.5,-88.5
parent: 2
type: Transform
- - uid: 31290
+ - uid: 31302
components:
- rot: 3.141592653589793 rad
pos: -19.5,-88.5
parent: 2
type: Transform
- - uid: 31291
+ - uid: 31303
components:
- rot: -1.5707963267948966 rad
pos: -10.5,-10.5
parent: 2
type: Transform
- - uid: 31292
+ - uid: 31304
components:
- rot: 1.5707963267948966 rad
pos: -15.5,-10.5
parent: 2
type: Transform
- - uid: 31293
+ - uid: 31305
components:
- pos: -10.5,29.5
parent: 2
type: Transform
- - uid: 31294
+ - uid: 31306
components:
- pos: -9.5,29.5
parent: 2
type: Transform
- - uid: 31295
+ - uid: 31307
components:
- pos: 46.5,22.5
parent: 2
type: Transform
- - uid: 31296
+ - uid: 31308
components:
- rot: -1.5707963267948966 rad
pos: 60.5,19.5
parent: 2
type: Transform
- - uid: 31297
+ - uid: 31309
components:
- rot: -1.5707963267948966 rad
pos: 60.5,16.5
parent: 2
type: Transform
- - uid: 31298
+ - uid: 31310
components:
- pos: -10.5,-82.5
parent: 2
type: Transform
- - uid: 31299
+ - uid: 31311
components:
- pos: 30.5,-52.5
parent: 2
type: Transform
- - uid: 31300
+ - uid: 31312
components:
- pos: 29.5,-52.5
parent: 2
type: Transform
- - uid: 31301
+ - uid: 31313
components:
- pos: 28.5,-52.5
parent: 2
type: Transform
- - uid: 31302
+ - uid: 31314
components:
- pos: 32.5,-52.5
parent: 2
type: Transform
- - uid: 31303
+ - uid: 31315
components:
- pos: 33.5,-52.5
parent: 2
type: Transform
- - uid: 31304
+ - uid: 31316
components:
- pos: 34.5,-52.5
parent: 2
type: Transform
- - uid: 31305
+ - uid: 31317
components:
- rot: 1.5707963267948966 rad
pos: 32.5,-47.5
parent: 2
type: Transform
- - uid: 31306
+ - uid: 31318
components:
- rot: 1.5707963267948966 rad
pos: 32.5,-48.5
parent: 2
type: Transform
- - uid: 31307
+ - uid: 31319
components:
- pos: 33.5,-48.5
parent: 2
type: Transform
- - uid: 31308
+ - uid: 31320
components:
- pos: 34.5,-48.5
parent: 2
type: Transform
- - uid: 31309
+ - uid: 31321
components:
- rot: 1.5707963267948966 rad
pos: 34.5,-48.5
parent: 2
type: Transform
- - uid: 31310
+ - uid: 31322
components:
- rot: 1.5707963267948966 rad
pos: 34.5,-47.5
parent: 2
type: Transform
- - uid: 31311
+ - uid: 31323
components:
- rot: 1.5707963267948966 rad
pos: 29.5,-47.5
parent: 2
type: Transform
- - uid: 31312
+ - uid: 31324
components:
- rot: 1.5707963267948966 rad
pos: 29.5,-48.5
parent: 2
type: Transform
- - uid: 31313
+ - uid: 31325
components:
- pos: 29.5,-48.5
parent: 2
type: Transform
- - uid: 31314
+ - uid: 31326
components:
- pos: 28.5,-48.5
parent: 2
type: Transform
- - uid: 31315
+ - uid: 31327
components:
- rot: 3.141592653589793 rad
pos: 62.5,-48.5
parent: 2
type: Transform
- - uid: 31316
+ - uid: 31328
components:
- rot: 1.5707963267948966 rad
pos: 61.5,-47.5
parent: 2
type: Transform
- - uid: 31317
+ - uid: 31329
components:
- rot: -1.5707963267948966 rad
pos: 63.5,-47.5
parent: 2
type: Transform
- - uid: 31318
+ - uid: 31330
components:
- rot: 3.141592653589793 rad
pos: 63.5,-47.5
parent: 2
type: Transform
- - uid: 31319
+ - uid: 31331
components:
- rot: -1.5707963267948966 rad
pos: 64.5,-46.5
parent: 2
type: Transform
- - uid: 31320
+ - uid: 31332
components:
- pos: 63.5,-45.5
parent: 2
type: Transform
- - uid: 31321
+ - uid: 31333
components:
- pos: 62.5,-44.5
parent: 2
type: Transform
- - uid: 31322
+ - uid: 31334
components:
- rot: -1.5707963267948966 rad
pos: 63.5,-45.5
parent: 2
type: Transform
- - uid: 31323
+ - uid: 31335
components:
- rot: 1.5707963267948966 rad
pos: 61.5,-45.5
parent: 2
type: Transform
- - uid: 31324
+ - uid: 31336
components:
- pos: 61.5,-45.5
parent: 2
type: Transform
- - uid: 31325
+ - uid: 31337
components:
- rot: 1.5707963267948966 rad
pos: 60.5,-46.5
parent: 2
type: Transform
- - uid: 31326
+ - uid: 31338
components:
- rot: 3.141592653589793 rad
pos: 61.5,-47.5
parent: 2
type: Transform
- - uid: 31327
+ - uid: 31339
components:
- rot: 1.5707963267948966 rad
pos: -44.5,-13.5
parent: 2
type: Transform
- - uid: 31328
+ - uid: 31340
components:
- rot: 3.141592653589793 rad
pos: -46.5,-8.5
parent: 2
type: Transform
- - uid: 31329
+ - uid: 31341
components:
- rot: -1.5707963267948966 rad
pos: -8.5,27.5
parent: 2
type: Transform
- - uid: 31330
+ - uid: 31342
components:
- rot: 1.5707963267948966 rad
pos: -11.5,28.5
parent: 2
type: Transform
- - uid: 31331
+ - uid: 31343
components:
- rot: -1.5707963267948966 rad
pos: -8.5,28.5
parent: 2
type: Transform
- - uid: 31332
+ - uid: 31344
components:
- rot: -1.5707963267948966 rad
pos: -34.5,13.5
parent: 2
type: Transform
- - uid: 31333
+ - uid: 31345
components:
- rot: -1.5707963267948966 rad
pos: -34.5,15.5
parent: 2
type: Transform
- - uid: 31334
+ - uid: 31346
components:
- rot: 3.141592653589793 rad
pos: -3.5,4.5
parent: 2
type: Transform
- - uid: 31335
+ - uid: 31347
components:
- rot: 3.141592653589793 rad
pos: -4.5,4.5
parent: 2
type: Transform
- - uid: 31336
+ - uid: 31348
components:
- rot: 1.5707963267948966 rad
pos: -3.5,4.5
parent: 2
type: Transform
- - uid: 31337
+ - uid: 31349
components:
- rot: -1.5707963267948966 rad
pos: -4.5,4.5
parent: 2
type: Transform
- - uid: 31338
+ - uid: 31350
components:
- pos: -12.5,-9.5
parent: 2
type: Transform
- - uid: 31339
+ - uid: 31351
components:
- rot: 3.141592653589793 rad
pos: 30.5,30.5
parent: 2
type: Transform
- - uid: 31340
+ - uid: 31352
components:
- pos: -8.5,-81.5
parent: 2
type: Transform
- - uid: 31341
+ - uid: 31353
components:
- rot: 3.141592653589793 rad
pos: -10.5,-84.5
parent: 2
type: Transform
- - uid: 31342
+ - uid: 31354
components:
- rot: 3.141592653589793 rad
pos: -9.5,-84.5
parent: 2
type: Transform
- - uid: 31343
+ - uid: 31355
components:
- pos: 45.5,38.5
parent: 2
type: Transform
- - uid: 31344
+ - uid: 31356
components:
- pos: 46.5,38.5
parent: 2
type: Transform
- - uid: 31345
+ - uid: 31357
components:
- pos: 47.5,38.5
parent: 2
type: Transform
- - uid: 31346
+ - uid: 31358
components:
- rot: -1.5707963267948966 rad
pos: 49.5,37.5
parent: 2
type: Transform
- - uid: 31347
+ - uid: 31359
components:
- rot: -1.5707963267948966 rad
pos: 49.5,36.5
parent: 2
type: Transform
- - uid: 31348
+ - uid: 31360
components:
- rot: 3.141592653589793 rad
pos: 48.5,35.5
parent: 2
type: Transform
- - uid: 31349
+ - uid: 31361
components:
- rot: 3.141592653589793 rad
pos: 47.5,35.5
parent: 2
type: Transform
- - uid: 31350
+ - uid: 31362
components:
- rot: 3.141592653589793 rad
pos: 46.5,35.5
parent: 2
type: Transform
- - uid: 31351
+ - uid: 31363
components:
- rot: 1.5707963267948966 rad
pos: 45.5,36.5
parent: 2
type: Transform
- - uid: 31352
+ - uid: 31364
components:
- rot: 3.141592653589793 rad
pos: 45.5,36.5
parent: 2
type: Transform
- - uid: 31353
+ - uid: 31365
components:
- pos: -2.5,71.5
parent: 2
type: Transform
- - uid: 31354
+ - uid: 31366
components:
- pos: -1.5,71.5
parent: 2
type: Transform
- - uid: 31355
+ - uid: 31367
components:
- pos: -0.5,71.5
parent: 2
type: Transform
- - uid: 31356
+ - uid: 31368
components:
- rot: 1.5707963267948966 rad
pos: -3.5,70.5
parent: 2
type: Transform
- - uid: 31357
+ - uid: 31369
components:
- rot: 1.5707963267948966 rad
pos: -3.5,69.5
parent: 2
type: Transform
- - uid: 31358
+ - uid: 31370
components:
- rot: 1.5707963267948966 rad
pos: -3.5,68.5
parent: 2
type: Transform
- - uid: 31359
+ - uid: 31371
components:
- rot: 3.141592653589793 rad
pos: -2.5,67.5
parent: 2
type: Transform
- - uid: 31360
+ - uid: 31372
components:
- rot: 3.141592653589793 rad
pos: -1.5,67.5
parent: 2
type: Transform
- - uid: 31361
+ - uid: 31373
components:
- rot: 3.141592653589793 rad
pos: -0.5,67.5
parent: 2
type: Transform
- - uid: 31362
+ - uid: 31374
components:
- rot: -1.5707963267948966 rad
pos: 0.5,68.5
parent: 2
type: Transform
- - uid: 31363
+ - uid: 31375
components:
- rot: -1.5707963267948966 rad
pos: 0.5,69.5
parent: 2
type: Transform
- - uid: 31364
+ - uid: 31376
components:
- rot: -1.5707963267948966 rad
pos: 0.5,70.5
parent: 2
type: Transform
- - uid: 31365
+ - uid: 31377
components:
- pos: -10.5,24.5
parent: 2
type: Transform
- - uid: 31366
+ - uid: 31378
components:
- rot: 3.141592653589793 rad
pos: -10.5,21.5
parent: 2
type: Transform
- - uid: 31367
+ - uid: 31379
components:
- rot: 3.141592653589793 rad
pos: -9.5,21.5
parent: 2
type: Transform
- - uid: 31368
+ - uid: 31380
components:
- rot: 1.5707963267948966 rad
pos: -10.5,24.5
parent: 2
type: Transform
- - uid: 31369
+ - uid: 31381
components:
- pos: -11.5,28.5
parent: 2
type: Transform
- - uid: 31370
+ - uid: 31382
components:
- rot: -1.5707963267948966 rad
pos: -8.5,26.5
parent: 2
type: Transform
- - uid: 31371
+ - uid: 31383
components:
- rot: -1.5707963267948966 rad
pos: -8.5,24.5
parent: 2
type: Transform
- - uid: 31372
+ - uid: 31384
components:
- rot: -1.5707963267948966 rad
pos: -8.5,23.5
parent: 2
type: Transform
- - uid: 31373
+ - uid: 31385
components:
- pos: -8.5,23.5
parent: 2
type: Transform
- - uid: 31374
+ - uid: 31386
components:
- rot: 3.141592653589793 rad
pos: -8.5,-84.5
parent: 2
type: Transform
- - uid: 31375
+ - uid: 31387
components:
- rot: -1.5707963267948966 rad
pos: -7.5,-83.5
parent: 2
type: Transform
- - uid: 31376
+ - uid: 31388
components:
- rot: -1.5707963267948966 rad
pos: -7.5,-82.5
parent: 2
type: Transform
- - uid: 31377
+ - uid: 31389
components:
- rot: 3.141592653589793 rad
pos: -10.5,26.5
parent: 2
type: Transform
- - uid: 31378
+ - uid: 31390
components:
- rot: 1.5707963267948966 rad
pos: -10.5,26.5
parent: 2
type: Transform
- - uid: 31379
+ - uid: 31391
components:
- rot: 3.141592653589793 rad
pos: -11.5,26.5
parent: 2
type: Transform
- - uid: 31380
+ - uid: 31392
components:
- rot: 3.141592653589793 rad
pos: -12.5,26.5
parent: 2
type: Transform
- - uid: 31381
+ - uid: 31393
components:
- pos: -11.5,-81.5
parent: 2
type: Transform
- - uid: 31382
+ - uid: 31394
components:
- rot: 1.5707963267948966 rad
pos: -12.5,-82.5
parent: 2
type: Transform
- - uid: 31383
+ - uid: 31395
components:
- rot: 3.141592653589793 rad
pos: -11.5,-84.5
parent: 2
type: Transform
- - uid: 31384
+ - uid: 31396
components:
- rot: 1.5707963267948966 rad
pos: -13.5,-83.5
parent: 2
type: Transform
- - uid: 31385
+ - uid: 31397
components:
- rot: 1.5707963267948966 rad
pos: -13.5,-82.5
parent: 2
type: Transform
- - uid: 31386
+ - uid: 31398
components:
- rot: 3.141592653589793 rad
pos: -12.5,-84.5
parent: 2
type: Transform
- - uid: 31387
+ - uid: 31399
components:
- rot: 3.141592653589793 rad
pos: -12.5,-81.5
parent: 2
type: Transform
- - uid: 31388
+ - uid: 31400
components:
- rot: -1.5707963267948966 rad
pos: -11.5,-81.5
parent: 2
type: Transform
- - uid: 31389
+ - uid: 31401
components:
- rot: -1.5707963267948966 rad
pos: -10.5,-81.5
parent: 2
type: Transform
- - uid: 31390
+ - uid: 31402
components:
- rot: -1.5707963267948966 rad
pos: -10.5,-80.5
parent: 2
type: Transform
- - uid: 31391
+ - uid: 31403
components:
- rot: 3.141592653589793 rad
pos: -10.5,-79.5
parent: 2
type: Transform
- - uid: 31392
+ - uid: 31404
components:
- rot: 3.141592653589793 rad
pos: -11.5,-79.5
parent: 2
type: Transform
- - uid: 31393
+ - uid: 31405
components:
- rot: 1.5707963267948966 rad
pos: -12.5,-80.5
parent: 2
type: Transform
- - uid: 31394
+ - uid: 31406
components:
- rot: 1.5707963267948966 rad
pos: -12.5,-79.5
parent: 2
type: Transform
- - uid: 31395
+ - uid: 31407
components:
- rot: -1.5707963267948966 rad
pos: -9.5,-81.5
parent: 2
type: Transform
- - uid: 31396
+ - uid: 31408
components:
- rot: -1.5707963267948966 rad
pos: -9.5,-80.5
parent: 2
type: Transform
- - uid: 31397
+ - uid: 31409
components:
- rot: 3.141592653589793 rad
pos: -9.5,-79.5
parent: 2
type: Transform
- - uid: 31398
+ - uid: 31410
components:
- rot: 1.5707963267948966 rad
pos: -9.5,-79.5
parent: 2
type: Transform
- - uid: 31399
+ - uid: 31411
components:
- rot: 1.5707963267948966 rad
pos: -9.5,-80.5
parent: 2
type: Transform
- - uid: 31400
+ - uid: 31412
components:
- pos: -8.5,-80.5
parent: 2
type: Transform
- - uid: 31401
+ - uid: 31413
components:
- rot: 1.5707963267948966 rad
pos: -8.5,-80.5
parent: 2
type: Transform
- - uid: 31402
+ - uid: 31414
components:
- rot: 1.5707963267948966 rad
pos: -8.5,-79.5
parent: 2
type: Transform
- - uid: 31403
+ - uid: 31415
components:
- rot: 1.5707963267948966 rad
pos: -7.5,-79.5
parent: 2
type: Transform
- - uid: 31404
+ - uid: 31416
components:
- rot: 1.5707963267948966 rad
pos: -7.5,-80.5
parent: 2
type: Transform
- - uid: 31405
+ - uid: 31417
components:
- pos: -7.5,-81.5
parent: 2
type: Transform
- - uid: 31406
+ - uid: 31418
components:
- rot: -1.5707963267948966 rad
pos: -5.5,-81.5
parent: 2
type: Transform
- - uid: 31407
+ - uid: 31419
components:
- rot: 3.141592653589793 rad
pos: -6.5,-81.5
parent: 2
type: Transform
- - uid: 31408
+ - uid: 31420
components:
- rot: 1.5707963267948966 rad
pos: -6.5,-82.5
parent: 2
type: Transform
- - uid: 31409
+ - uid: 31421
components:
- rot: 3.141592653589793 rad
pos: -6.5,-83.5
parent: 2
type: Transform
- - uid: 31410
+ - uid: 31422
components:
- rot: -1.5707963267948966 rad
pos: -6.5,-83.5
parent: 2
type: Transform
- - uid: 31411
+ - uid: 31423
components:
- rot: -1.5707963267948966 rad
pos: -6.5,-84.5
parent: 2
type: Transform
- - uid: 31412
+ - uid: 31424
components:
- rot: 3.141592653589793 rad
pos: -7.5,-85.5
parent: 2
type: Transform
- - uid: 31413
+ - uid: 31425
components:
- rot: 1.5707963267948966 rad
pos: -9.5,-84.5
parent: 2
type: Transform
- - uid: 31414
+ - uid: 31426
components:
- rot: 1.5707963267948966 rad
pos: -8.5,-85.5
parent: 2
type: Transform
- - uid: 31415
+ - uid: 31427
components:
- rot: 1.5707963267948966 rad
pos: -9.5,-85.5
parent: 2
type: Transform
- - uid: 31416
+ - uid: 31428
components:
- rot: 1.5707963267948966 rad
pos: -9.5,-77.5
parent: 2
type: Transform
- - uid: 31417
+ - uid: 31429
components:
- rot: 3.141592653589793 rad
pos: -8.5,-78.5
parent: 2
type: Transform
- - uid: 31418
+ - uid: 31430
components:
- rot: 3.141592653589793 rad
pos: -7.5,-78.5
parent: 2
type: Transform
- - uid: 31419
+ - uid: 31431
components:
- rot: -1.5707963267948966 rad
pos: -6.5,-78.5
parent: 2
type: Transform
- - uid: 31420
+ - uid: 31432
components:
- rot: -1.5707963267948966 rad
pos: -9.5,-77.5
parent: 2
type: Transform
- - uid: 31421
+ - uid: 31433
components:
- pos: -6.5,-79.5
parent: 2
type: Transform
- - uid: 31422
+ - uid: 31434
components:
- pos: -5.5,-79.5
parent: 2
type: Transform
- - uid: 31423
+ - uid: 31435
components:
- rot: -1.5707963267948966 rad
pos: -4.5,-80.5
parent: 2
type: Transform
- - uid: 31424
+ - uid: 31436
components:
- rot: 3.141592653589793 rad
pos: -4.5,-82.5
parent: 2
type: Transform
- - uid: 31425
+ - uid: 31437
components:
- rot: 1.5707963267948966 rad
pos: -5.5,-82.5
parent: 2
type: Transform
- - uid: 31426
+ - uid: 31438
components:
- rot: 1.5707963267948966 rad
pos: -5.5,-83.5
parent: 2
type: Transform
- - uid: 31427
+ - uid: 31439
components:
- rot: 1.5707963267948966 rad
pos: -6.5,-83.5
parent: 2
type: Transform
- - uid: 31428
+ - uid: 31440
components:
- rot: 1.5707963267948966 rad
pos: -6.5,-84.5
parent: 2
type: Transform
- - uid: 31429
+ - uid: 31441
components:
- rot: 3.141592653589793 rad
pos: -5.5,-85.5
parent: 2
type: Transform
- - uid: 31430
+ - uid: 31442
components:
- rot: 1.5707963267948966 rad
pos: -4.5,-83.5
parent: 2
type: Transform
- - uid: 31431
+ - uid: 31443
components:
- rot: 1.5707963267948966 rad
pos: -4.5,-82.5
parent: 2
type: Transform
- - uid: 31432
+ - uid: 31444
components:
- rot: 3.141592653589793 rad
pos: -5.5,-87.5
parent: 2
type: Transform
- - uid: 31433
+ - uid: 31445
components:
- rot: 3.141592653589793 rad
pos: -6.5,-87.5
parent: 2
type: Transform
- - uid: 31434
+ - uid: 31446
components:
- rot: 3.141592653589793 rad
pos: -7.5,-87.5
parent: 2
type: Transform
- - uid: 31435
+ - uid: 31447
components:
- rot: 3.141592653589793 rad
pos: -8.5,-87.5
parent: 2
type: Transform
- - uid: 31436
+ - uid: 31448
components:
- rot: 3.141592653589793 rad
pos: -9.5,-87.5
parent: 2
type: Transform
- - uid: 31437
+ - uid: 31449
components:
- rot: 3.141592653589793 rad
pos: -10.5,-88.5
parent: 2
type: Transform
- - uid: 31438
+ - uid: 31450
components:
- rot: 1.5707963267948966 rad
pos: -11.5,-86.5
parent: 2
type: Transform
- - uid: 31439
+ - uid: 31451
components:
- rot: 1.5707963267948966 rad
pos: -11.5,-85.5
parent: 2
type: Transform
- - uid: 31440
+ - uid: 31452
components:
- rot: 3.141592653589793 rad
pos: -9.5,-86.5
parent: 2
type: Transform
- - uid: 31441
+ - uid: 31453
components:
- rot: 1.5707963267948966 rad
pos: -10.5,-85.5
parent: 2
type: Transform
- - uid: 31442
+ - uid: 31454
components:
- rot: 3.141592653589793 rad
pos: -11.5,-85.5
parent: 2
type: Transform
- - uid: 31443
+ - uid: 31455
components:
- rot: 3.141592653589793 rad
pos: -12.5,-85.5
parent: 2
type: Transform
- - uid: 31444
+ - uid: 31456
components:
- rot: 3.141592653589793 rad
pos: -7.5,-86.5
parent: 2
type: Transform
- - uid: 31445
+ - uid: 31457
components:
- rot: 3.141592653589793 rad
pos: -6.5,-86.5
parent: 2
type: Transform
- - uid: 31446
+ - uid: 31458
components:
- rot: 1.5707963267948966 rad
pos: -5.5,-85.5
parent: 2
type: Transform
- - uid: 31447
+ - uid: 31459
components:
- rot: 1.5707963267948966 rad
pos: -13.5,-85.5
parent: 2
type: Transform
- - uid: 31448
+ - uid: 31460
components:
- rot: 1.5707963267948966 rad
pos: -14.5,-85.5
parent: 2
type: Transform
- - uid: 31449
+ - uid: 31461
components:
- rot: 1.5707963267948966 rad
pos: -14.5,-84.5
parent: 2
type: Transform
- - uid: 31450
+ - uid: 31462
components:
- rot: 1.5707963267948966 rad
pos: -14.5,-83.5
parent: 2
type: Transform
- - uid: 31451
+ - uid: 31463
components:
- rot: 3.141592653589793 rad
pos: -13.5,-87.5
parent: 2
type: Transform
- - uid: 31452
+ - uid: 31464
components:
- rot: 1.5707963267948966 rad
pos: -14.5,-86.5
parent: 2
type: Transform
- - uid: 31453
+ - uid: 31465
components:
- rot: 3.141592653589793 rad
pos: -12.5,-86.5
parent: 2
type: Transform
- - uid: 31454
+ - uid: 31466
components:
- rot: 1.5707963267948966 rad
pos: -14.5,-82.5
parent: 2
type: Transform
- - uid: 31455
+ - uid: 31467
components:
- rot: 3.141592653589793 rad
pos: -14.5,-82.5
parent: 2
type: Transform
- - uid: 31456
+ - uid: 31468
components:
- rot: 1.5707963267948966 rad
pos: -15.5,-82.5
parent: 2
type: Transform
- - uid: 31457
+ - uid: 31469
components:
- pos: -15.5,-83.5
parent: 2
type: Transform
- - uid: 31458
+ - uid: 31470
components:
- rot: 3.141592653589793 rad
pos: -14.5,-85.5
parent: 2
type: Transform
- - uid: 31459
+ - uid: 31471
components:
- rot: 1.5707963267948966 rad
pos: -12.5,-87.5
parent: 2
type: Transform
- - uid: 31460
+ - uid: 31472
components:
- rot: 3.141592653589793 rad
pos: -11.5,-88.5
parent: 2
type: Transform
- - uid: 31461
+ - uid: 31473
components:
- rot: 1.5707963267948966 rad
pos: -11.5,-87.5
parent: 2
type: Transform
- - uid: 31462
+ - uid: 31474
components:
- rot: 1.5707963267948966 rad
pos: -10.5,-87.5
parent: 2
type: Transform
- - uid: 31463
+ - uid: 31475
components:
- rot: 3.141592653589793 rad
pos: -8.5,-88.5
parent: 2
type: Transform
- - uid: 31464
+ - uid: 31476
components:
- rot: 1.5707963267948966 rad
pos: -8.5,-88.5
parent: 2
type: Transform
- - uid: 31465
+ - uid: 31477
components:
- rot: -1.5707963267948966 rad
pos: -6.5,-88.5
parent: 2
type: Transform
- - uid: 31466
+ - uid: 31478
components:
- pos: -6.5,-87.5
parent: 2
type: Transform
- - uid: 31467
+ - uid: 31479
components:
- pos: -5.5,-87.5
parent: 2
type: Transform
- - uid: 31468
+ - uid: 31480
components:
- rot: -1.5707963267948966 rad
pos: -4.5,-87.5
parent: 2
type: Transform
- - uid: 31469
+ - uid: 31481
components:
- rot: -1.5707963267948966 rad
pos: -12.5,-87.5
parent: 2
type: Transform
- - uid: 31470
+ - uid: 31482
components:
- rot: 3.141592653589793 rad
pos: -13.5,-88.5
parent: 2
type: Transform
- - uid: 31471
+ - uid: 31483
components:
- rot: 3.141592653589793 rad
pos: -14.5,-88.5
parent: 2
type: Transform
- - uid: 31472
+ - uid: 31484
components:
- rot: 1.5707963267948966 rad
pos: -15.5,-87.5
parent: 2
type: Transform
- - uid: 31473
+ - uid: 31485
components:
- pos: -15.5,-85.5
parent: 2
type: Transform
- - uid: 31474
+ - uid: 31486
components:
- rot: 1.5707963267948966 rad
pos: -13.5,-86.5
parent: 2
type: Transform
- - uid: 31475
+ - uid: 31487
components:
- rot: 1.5707963267948966 rad
pos: -10.5,-86.5
parent: 2
type: Transform
- - uid: 31476
+ - uid: 31488
components:
- rot: -1.5707963267948966 rad
pos: -5.5,-77.5
parent: 2
type: Transform
- - uid: 31477
+ - uid: 31489
components:
- rot: -1.5707963267948966 rad
pos: -5.5,-78.5
parent: 2
type: Transform
- - uid: 31478
+ - uid: 31490
components:
- rot: -1.5707963267948966 rad
pos: -4.5,-79.5
parent: 2
type: Transform
- - uid: 31479
+ - uid: 31491
components:
- rot: -1.5707963267948966 rad
pos: -4.5,-78.5
parent: 2
type: Transform
- - uid: 31480
+ - uid: 31492
components:
- rot: -1.5707963267948966 rad
pos: -10.5,-78.5
parent: 2
type: Transform
- - uid: 31481
+ - uid: 31493
components:
- rot: 3.141592653589793 rad
pos: -11.5,-78.5
parent: 2
type: Transform
- - uid: 31482
+ - uid: 31494
components:
- rot: 3.141592653589793 rad
pos: 28.5,30.5
parent: 2
type: Transform
- - uid: 31483
+ - uid: 31495
components:
- pos: 16.5,37.5
parent: 2
type: Transform
- - uid: 31484
+ - uid: 31496
components:
- rot: 3.141592653589793 rad
pos: -55.5,-63.5
parent: 2
type: Transform
- - uid: 31485
+ - uid: 31497
components:
- rot: 3.141592653589793 rad
pos: -54.5,-63.5
parent: 2
type: Transform
- - uid: 31486
+ - uid: 31498
components:
- rot: -1.5707963267948966 rad
pos: -53.5,-63.5
parent: 2
type: Transform
- - uid: 31487
+ - uid: 31499
components:
- rot: -1.5707963267948966 rad
pos: -53.5,-64.5
parent: 2
type: Transform
- - uid: 31488
+ - uid: 31500
components:
- rot: 1.5707963267948966 rad
pos: 42.5,5.5
parent: 2
type: Transform
- - uid: 31489
+ - uid: 31501
components:
- rot: 1.5707963267948966 rad
pos: 42.5,7.5
parent: 2
type: Transform
- - uid: 31490
+ - uid: 31502
components:
- rot: -1.5707963267948966 rad
pos: -23.5,-24.5
@@ -200915,71 +200991,71 @@ entities:
type: Transform
- proto: WoodblockInstrument
entities:
- - uid: 31491
+ - uid: 31503
components:
- pos: -47.491924,-64.51194
parent: 2
type: Transform
- proto: WoodDoor
entities:
- - uid: 31492
+ - uid: 31504
components:
- pos: -31.5,-5.5
parent: 2
type: Transform
- - uid: 31493
+ - uid: 31505
components:
- pos: -31.5,-7.5
parent: 2
type: Transform
- - uid: 31494
+ - uid: 31506
components:
- pos: -38.5,7.5
parent: 2
type: Transform
- - uid: 31495
+ - uid: 31507
components:
- rot: 3.141592653589793 rad
pos: -37.5,7.5
parent: 2
type: Transform
- - uid: 31496
+ - uid: 31508
components:
- rot: 3.141592653589793 rad
pos: -29.5,-5.5
parent: 2
type: Transform
- - uid: 31497
+ - uid: 31509
components:
- pos: 41.5,49.5
parent: 2
type: Transform
- - uid: 31498
+ - uid: 31510
components:
- pos: 40.5,51.5
parent: 2
type: Transform
- - uid: 31499
+ - uid: 31511
components:
- pos: -39.5,-95.5
parent: 2
type: Transform
- - uid: 31500
+ - uid: 31512
components:
- pos: -39.5,-96.5
parent: 2
type: Transform
- - uid: 31501
+ - uid: 31513
components:
- pos: 61.5,23.5
parent: 2
type: Transform
- - uid: 31502
+ - uid: 31514
components:
- pos: 63.5,23.5
parent: 2
type: Transform
- - uid: 31503
+ - uid: 31515
components:
- rot: 3.141592653589793 rad
pos: -29.5,-7.5
@@ -200987,112 +201063,118 @@ entities:
type: Transform
- proto: Wrench
entities:
- - uid: 31504
+ - uid: 31516
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 13.451823,-46.425587
+ parent: 2
+ type: Transform
+ - uid: 31517
components:
- pos: -65.606735,-34.373695
parent: 2
type: Transform
- - uid: 31505
+ - uid: 31518
components:
- pos: 19.497053,-52.46946
parent: 2
type: Transform
- - uid: 31506
+ - uid: 31519
components:
- pos: 43.41047,-49.384262
parent: 2
type: Transform
- - uid: 31507
+ - uid: 31520
components:
- pos: 40.515266,-53.36736
parent: 2
type: Transform
- - uid: 31508
+ - uid: 31521
components:
- pos: 53.570477,-52.25876
parent: 2
type: Transform
- - uid: 31509
+ - uid: 31522
components:
- pos: -52.48202,-14.116064
parent: 2
type: Transform
- - uid: 31510
+ - uid: 31523
components:
- pos: -43.931065,-77.41935
parent: 2
type: Transform
- - uid: 31511
+ - uid: 31524
components:
- pos: -3.6165767,31.44955
parent: 2
type: Transform
- - uid: 31512
+ - uid: 31525
components:
- pos: -52.52865,13.566981
parent: 2
type: Transform
- - uid: 31513
+ - uid: 31526
components:
- pos: -56.484455,-4.5012527
parent: 2
type: Transform
- - uid: 31514
+ - uid: 31527
components:
- pos: -31.403458,-56.573048
parent: 2
type: Transform
- - uid: 31515
+ - uid: 31528
components:
- pos: 56.276398,42.55694
parent: 2
type: Transform
- - uid: 31516
+ - uid: 31529
components:
- pos: 30.53096,47.374912
parent: 2
type: Transform
- - uid: 31517
+ - uid: 31530
components:
- pos: 63.43439,-33.411366
parent: 2
type: Transform
- - uid: 31518
+ - uid: 31531
components:
- pos: 73.54562,-44.324593
parent: 2
type: Transform
- - uid: 31519
+ - uid: 31532
components:
- rot: 1.5707963267948966 rad
pos: -37.345474,18.574602
parent: 2
type: Transform
- - uid: 31520
+ - uid: 31533
components:
- pos: -8.112096,-15.394987
parent: 2
type: Transform
- - uid: 31521
+ - uid: 31534
components:
- pos: -66.48501,-43.492954
parent: 2
type: Transform
- proto: YellowOxygenTankFilled
entities:
- - uid: 31522
+ - uid: 31535
components:
- pos: 64.41901,29.545698
parent: 2
type: Transform
- - uid: 31523
+ - uid: 31536
components:
- pos: 67.49378,-65.34203
parent: 2
type: Transform
- proto: Zipties
entities:
- - uid: 31524
+ - uid: 31537
components:
- pos: 22.565756,-47.432816
parent: 2
diff --git a/Resources/Maps/reach.yml b/Resources/Maps/reach.yml
new file mode 100644
index 00000000000..80ef0d5eee1
--- /dev/null
+++ b/Resources/Maps/reach.yml
@@ -0,0 +1,14206 @@
+meta:
+ format: 6
+ postmapinit: false
+tilemap:
+ 0: Space
+ 13: FloorBasalt
+ 27: FloorDark
+ 43: FloorGlass
+ 44: FloorGold
+ 45: FloorGrass
+ 56: FloorHydro
+ 58: FloorKitchen
+ 73: FloorPlastic
+ 74: FloorRGlass
+ 75: FloorReinforced
+ 76: FloorReinforcedHardened
+ 87: FloorSteel
+ 102: FloorTechMaint
+ 103: FloorTechMaint2
+ 104: FloorTechMaint3
+ 106: FloorWhite
+ 116: FloorWood
+ 118: Lattice
+ 119: Plating
+entities:
+- proto: ""
+ entities:
+ - uid: 1
+ components:
+ - type: MetaData
+ - type: Transform
+ - type: Map
+ - type: PhysicsMap
+ - type: Broadphase
+ - type: OccluderTree
+ - type: LoadedMap
+ - type: GridTree
+ - type: MovedGrids
+ - uid: 407
+ components:
+ - name: SS Reach II
+ type: MetaData
+ - parent: 1
+ type: Transform
+ - chunks:
+ -1,-1:
+ ind: -1,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAGwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAGwAAAAADGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAGwAAAAAAGwAAAAADGwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAGwAAAAADGwAAAAABdwAAAAAAGwAAAAABGwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAGwAAAAABGwAAAAABGwAAAAACGwAAAAAAGwAAAAACGwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAGwAAAAADGwAAAAACGwAAAAAAGwAAAAACdwAAAAAAGwAAAAAAGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACGwAAAAABdwAAAAAAdAAAAAAAdAAAAAACdAAAAAABLQAAAAAAdAAAAAACdAAAAAACdAAAAAACLQAAAAAAdAAAAAACdAAAAAACdAAAAAAAdAAAAAAAdwAAAAAAGwAAAAAAGwAAAAAAdwAAAAAAdAAAAAAAdAAAAAADdAAAAAACLQAAAAAAdAAAAAABdAAAAAADdAAAAAAALQAAAAAAdAAAAAABdAAAAAAAdAAAAAACdAAAAAAAdwAAAAAAGwAAAAABGwAAAAACdwAAAAAAdAAAAAAAdAAAAAAAdAAAAAABLQAAAAAAdAAAAAADdAAAAAABdAAAAAADLQAAAAAAdAAAAAAAdAAAAAABdAAAAAACdAAAAAABdwAAAAAAGwAAAAAAGwAAAAADdwAAAAAAdAAAAAADdAAAAAACdAAAAAADdwAAAAAAdAAAAAAAdAAAAAACdAAAAAADdwAAAAAAdAAAAAADdAAAAAADdAAAAAACdAAAAAADdwAAAAAAGwAAAAABGwAAAAAAdwAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAGwAAAAABGwAAAAAAGwAAAAAD
+ version: 6
+ 0,0:
+ ind: 0,0
+ tiles: GwAAAAAAagAAAAAAagAAAAADagAAAAABagAAAAADdwAAAAAAagAAAAADagAAAAAAagAAAAADagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAABGwAAAAADGwAAAAABGwAAAAAAdwAAAAAAagAAAAACagAAAAABagAAAAABdwAAAAAAagAAAAADagAAAAACagAAAAABdwAAAAAAagAAAAACagAAAAABagAAAAADdwAAAAAAGwAAAAAAGwAAAAAAGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADGwAAAAADGwAAAAADGwAAAAACGwAAAAAAGwAAAAABGwAAAAAAGwAAAAACGwAAAAADGwAAAAADGwAAAAABGwAAAAACGwAAAAAAGwAAAAACGwAAAAABdwAAAAAAGwAAAAAAGwAAAAACGwAAAAABGwAAAAABGwAAAAABGwAAAAACGwAAAAAAGwAAAAADGwAAAAAAGwAAAAADGwAAAAACGwAAAAABGwAAAAADGwAAAAADGwAAAAABGwAAAAACGwAAAAADGwAAAAAAGwAAAAACGwAAAAACGwAAAAACGwAAAAABGwAAAAABGwAAAAABGwAAAAAAGwAAAAADGwAAAAADGwAAAAABGwAAAAADGwAAAAABGwAAAAADdwAAAAAAGwAAAAAAGwAAAAACVwAAAAABdwAAAAAAdwAAAAAAVwAAAAADdwAAAAAAdwAAAAAAGwAAAAADGwAAAAAAGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAAAVwAAAAAAVwAAAAABVwAAAAABdwAAAAAAKwAAAAAAdAAAAAAAdAAAAAACdAAAAAADKwAAAAAAGwAAAAADdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAADVwAAAAADVwAAAAADVwAAAAADdwAAAAAAGwAAAAAAdAAAAAACdAAAAAACdAAAAAAAGwAAAAABGwAAAAADdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAACVwAAAAACVwAAAAAAVwAAAAADdwAAAAAAKwAAAAAAdAAAAAACdAAAAAACdAAAAAAAKwAAAAAALAAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAABVwAAAAABVwAAAAABdwAAAAAAGwAAAAACdAAAAAAAdAAAAAABdAAAAAACGwAAAAABGwAAAAABdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAADVwAAAAAAVwAAAAADVwAAAAADdwAAAAAAKwAAAAAAdAAAAAADdAAAAAADdAAAAAAAKwAAAAAAGwAAAAABGwAAAAABdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAABVwAAAAABVwAAAAAAdwAAAAAAGwAAAAACdAAAAAABdAAAAAABdAAAAAADGwAAAAAAGwAAAAADGwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAADdwAAAAAAKwAAAAAAdAAAAAADdAAAAAADdAAAAAABKwAAAAAAGwAAAAADdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADdAAAAAAAdAAAAAABdAAAAAACGwAAAAAALAAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAKwAAAAAAdAAAAAAAdAAAAAADdAAAAAABKwAAAAAAGwAAAAABdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -1,0:
+ ind: -1,0
+ tiles: ZwAAAAAASgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAASgAAAAAAGwAAAAABGwAAAAACGwAAAAADdwAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAGwAAAAADGwAAAAACGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAAAdAAAAAACdAAAAAACdAAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADGwAAAAACdwAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAdwAAAAAAdAAAAAADdAAAAAADdAAAAAAAdAAAAAABdwAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAdwAAAAAAGwAAAAACGwAAAAADdwAAAAAAOAAAAAAASQAAAAAASQAAAAABGwAAAAAAdAAAAAACdAAAAAABdAAAAAAAdAAAAAACGwAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAdwAAAAAAGwAAAAADGwAAAAACdwAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAdwAAAAAAGwAAAAAAGwAAAAADGwAAAAAAGwAAAAADdwAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAdwAAAAAAGwAAAAABGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAGwAAAAABGwAAAAADGwAAAAAAGwAAAAACGwAAAAABdwAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAADGwAAAAADdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAASwAAAAAASwAAAAAAGwAAAAABGwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAASwAAAAAAGwAAAAADGwAAAAADdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAGwAAAAAAGwAAAAABGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAGwAAAAADdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAA
+ version: 6
+ 0,-1:
+ ind: 0,-1
+ tiles: AAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAATAAAAAAATAAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAGwAAAAACdwAAAAAAVwAAAAADdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAATAAAAAAATAAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAGwAAAAACVwAAAAABVwAAAAAAVwAAAAABZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAGwAAAAABdwAAAAAAVwAAAAACdwAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAGwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAAAdwAAAAAAagAAAAABagAAAAADagAAAAAAagAAAAABagAAAAACagAAAAAAagAAAAADagAAAAACagAAAAAAagAAAAADagAAAAABdwAAAAAADQAAAAAAdAAAAAACGwAAAAACdwAAAAAAagAAAAABagAAAAAAagAAAAACagAAAAAAagAAAAABagAAAAACagAAAAAAagAAAAAAagAAAAADagAAAAADagAAAAADdwAAAAAADQAAAAAAdAAAAAABGwAAAAACdwAAAAAAagAAAAACagAAAAADagAAAAADagAAAAACagAAAAADagAAAAACagAAAAAAagAAAAADagAAAAACagAAAAACagAAAAACdwAAAAAADQAAAAAAdAAAAAADGwAAAAACdwAAAAAAdwAAAAAAagAAAAADagAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAagAAAAADagAAAAABagAAAAADdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAACdwAAAAAAagAAAAACagAAAAAAagAAAAABdwAAAAAAagAAAAACagAAAAABagAAAAABdwAAAAAAagAAAAACagAAAAADagAAAAACdwAAAAAAGwAAAAABGwAAAAAD
+ version: 6
+ -2,0:
+ ind: -2,0
+ tiles: AAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAAZgAAAAAAaAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAAZgAAAAAAaAAAAAADZwAAAAAAZwAAAAAAZwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAVwAAAAACVwAAAAABVwAAAAACdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAADVwAAAAAAVwAAAAAAVwAAAAABVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAABVwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -2,-1:
+ ind: -2,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAACVwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAABVwAAAAAAVwAAAAABdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAVwAAAAACVwAAAAACVwAAAAACdwAAAAAAVwAAAAABVwAAAAAAVwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAdwAAAAAAVwAAAAAAVwAAAAABVwAAAAACAAAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAASwAAAAAASwAAAAAASwAAAAAAZgAAAAAAaAAAAAABZwAAAAAAZwAAAAAAZwAAAAAA
+ version: 6
+ 0,-2:
+ ind: 0,-2
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 0,1:
+ ind: 0,1
+ tiles: dwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAADGwAAAAADdAAAAAABdAAAAAAAdAAAAAADGwAAAAACGwAAAAABdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdAAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdAAAAAABdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdAAAAAACdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdAAAAAACdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdAAAAAACdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAASwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 1,0:
+ ind: 1,0
+ tiles: GwAAAAABGwAAAAAAGwAAAAADGwAAAAACGwAAAAABGwAAAAABGwAAAAABGwAAAAABGwAAAAADGwAAAAACGwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAACGwAAAAACGwAAAAADdwAAAAAAGwAAAAACGwAAAAAAGwAAAAABGwAAAAAAGwAAAAABGwAAAAABdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADdwAAAAAAGwAAAAADdwAAAAAAdwAAAAAAGwAAAAAAGwAAAAAAGwAAAAABGwAAAAADGwAAAAAAGwAAAAABdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAACdwAAAAAAGwAAAAACGwAAAAABdwAAAAAAGwAAAAADGwAAAAACGwAAAAAAGwAAAAAAGwAAAAADdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAACdwAAAAAAGwAAAAADGwAAAAADdwAAAAAAdwAAAAAAGwAAAAABGwAAAAADGwAAAAABdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADdwAAAAAAGwAAAAAAGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 1,-1:
+ ind: 1,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAAAAdAAAAAADdAAAAAAADQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAAAAdAAAAAABdAAAAAAADQAAAAAAdwAAAAAAdAAAAAAAdAAAAAAAdAAAAAABdAAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAAAAdAAAAAAAdAAAAAACDQAAAAAAdwAAAAAAdAAAAAAAdAAAAAACdAAAAAACdAAAAAACdAAAAAADdwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAACGwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAGwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAABGwAAAAACGwAAAAAAGwAAAAABdwAAAAAAGwAAAAADGwAAAAAAGwAAAAACGwAAAAADGwAAAAABGwAAAAABdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ type: MapGrid
+ - type: Broadphase
+ - bodyStatus: InAir
+ angularDamping: 0.05
+ linearDamping: 0.05
+ fixedRotation: False
+ bodyType: Dynamic
+ type: Physics
+ - fixtures: {}
+ type: Fixtures
+ - id: Reach
+ type: BecomesStation
+ - type: OccluderTree
+ - type: Shuttle
+ - type: GridPathfinding
+ - gravityShakeSound: !type:SoundPathSpecifier
+ path: /Audio/Effects/alert.ogg
+ type: Gravity
+ - chunkCollection:
+ version: 2
+ nodes:
+ - node:
+ color: '#FFFFFFFF'
+ id: Arrows
+ decals:
+ 264: 3,7
+ - node:
+ color: '#FFFFFFFF'
+ id: Bot
+ decals:
+ 4: 5,-11
+ 261: 0,12
+ 262: 0,13
+ 263: 3,13
+ 393: -24,0
+ 394: -22,0
+ 398: -23,-3
+ 399: -19,-5
+ 400: -19,-3
+ 401: -19,3
+ 404: -17,-1
+ - node:
+ color: '#FFFFFFFF'
+ id: BotLeft
+ decals:
+ 389: -22,1
+ 390: -24,-1
+ 397: -22,-3
+ 402: -17,3
+ 403: -17,4
+ - node:
+ color: '#FFFFFFFF'
+ id: BotRight
+ decals:
+ 391: -22,-1
+ 392: -24,1
+ - node:
+ color: '#FFFFFFFF'
+ id: Box
+ decals:
+ 395: -23,0
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkBox
+ decals:
+ 127: 9,7
+ 128: 9,9
+ 129: 5,7
+ 130: 5,9
+ 131: 5,11
+ 132: 9,11
+ 133: 9,13
+ 134: 9,15
+ 135: 5,15
+ 136: 5,13
+ - node:
+ color: '#D381C996'
+ id: BrickTileSteelCornerNe
+ decals:
+ 295: -2,11
+ - node:
+ color: '#D381C996'
+ id: BrickTileSteelCornerNw
+ decals:
+ 289: -6,8
+ 296: -3,11
+ - node:
+ color: '#D381C996'
+ id: BrickTileSteelCornerSw
+ decals:
+ 290: -6,7
+ - node:
+ color: '#D381C996'
+ id: BrickTileSteelInnerNw
+ decals:
+ 299: -3,8
+ - node:
+ color: '#52B4E996'
+ id: BrickTileSteelLineE
+ decals:
+ 61: 0,0
+ - node:
+ color: '#D381C996'
+ id: BrickTileSteelLineE
+ decals:
+ 292: -2,8
+ 293: -2,9
+ 294: -2,10
+ - node:
+ color: '#D381C996'
+ id: BrickTileSteelLineN
+ decals:
+ 300: -4,8
+ 301: -5,8
+ - node:
+ color: '#D381C996'
+ id: BrickTileSteelLineS
+ decals:
+ 286: -3,7
+ 287: -4,7
+ 288: -5,7
+ - node:
+ color: '#D381C996'
+ id: BrickTileSteelLineW
+ decals:
+ 297: -3,10
+ 298: -3,9
+ - node:
+ color: '#52B4E996'
+ id: BrickTileWhiteBox
+ decals:
+ 62: 1,0
+ - node:
+ color: '#9FED5896'
+ id: BrickTileWhiteBox
+ decals:
+ 59: -3,-8
+ - node:
+ color: '#334E6DC8'
+ id: BrickTileWhiteCornerNe
+ decals:
+ 342: 24,4
+ - node:
+ color: '#52B4E996'
+ id: BrickTileWhiteCornerNe
+ decals:
+ 72: 4,1
+ 87: 12,1
+ - node:
+ color: '#DE3A3A96'
+ id: BrickTileWhiteCornerNe
+ decals:
+ 365: 19,1
+ 367: 16,5
+ - node:
+ color: '#334E6DC8'
+ id: BrickTileWhiteCornerNw
+ decals:
+ 340: 21,3
+ 341: 22,4
+ - node:
+ color: '#52B4E996'
+ id: BrickTileWhiteCornerNw
+ decals:
+ 66: 2,-3
+ 70: 2,1
+ 88: 10,1
+ - node:
+ color: '#DE3A3A96'
+ id: BrickTileWhiteCornerNw
+ decals:
+ 366: 14,5
+ - node:
+ color: '#334E6DC8'
+ id: BrickTileWhiteCornerSe
+ decals:
+ 338: 23,-1
+ - node:
+ color: '#52B4E996'
+ id: BrickTileWhiteCornerSe
+ decals:
+ 82: 12,-3
+ - node:
+ color: '#DE3A3A96'
+ id: BrickTileWhiteCornerSe
+ decals:
+ 369: 19,-1
+ - node:
+ color: '#334E6DC8'
+ id: BrickTileWhiteCornerSw
+ decals:
+ 339: 21,-1
+ - node:
+ color: '#52B4E996'
+ id: BrickTileWhiteCornerSw
+ decals:
+ 69: 2,-1
+ - node:
+ color: '#DE3A3A96'
+ id: BrickTileWhiteCornerSw
+ decals:
+ 368: 14,-1
+ - node:
+ color: '#334E6DC8'
+ id: BrickTileWhiteEndE
+ decals:
+ 343: 25,3
+ - node:
+ color: '#334E6DC8'
+ id: BrickTileWhiteInnerNe
+ decals:
+ 348: 24,3
+ - node:
+ color: '#52B4E996'
+ id: BrickTileWhiteInnerNe
+ decals:
+ 95: 4,-3
+ - node:
+ color: '#DE3A3A96'
+ id: BrickTileWhiteInnerNe
+ decals:
+ 379: 16,1
+ - node:
+ color: '#334E6DC8'
+ id: BrickTileWhiteInnerNw
+ decals:
+ 349: 22,3
+ - node:
+ color: '#52B4E996'
+ id: BrickTileWhiteInnerNw
+ decals:
+ 67: 3,-3
+ - node:
+ color: '#334E6DC8'
+ id: BrickTileWhiteInnerSe
+ decals:
+ 347: 23,3
+ - node:
+ color: '#52B4E996'
+ id: BrickTileWhiteInnerSe
+ decals:
+ 77: 4,-3
+ - node:
+ color: '#52B4E996'
+ id: BrickTileWhiteInnerSw
+ decals:
+ 68: 3,-1
+ - node:
+ color: '#334E6DC8'
+ id: BrickTileWhiteLineE
+ decals:
+ 345: 23,1
+ 346: 23,2
+ - node:
+ color: '#52B4E996'
+ id: BrickTileWhiteLineE
+ decals:
+ 73: 4,-1
+ 74: 4,-2
+ 75: 4,-5
+ 76: 4,-4
+ 83: 12,-2
+ 84: 12,-1
+ - node:
+ color: '#DE3A3A96'
+ id: BrickTileWhiteLineE
+ decals:
+ 375: 16,4
+ 376: 16,3
+ 377: 16,2
+ - node:
+ color: '#334E6DC8'
+ id: BrickTileWhiteLineN
+ decals:
+ 350: 23,4
+ - node:
+ color: '#52B4E996'
+ id: BrickTileWhiteLineN
+ decals:
+ 71: 3,1
+ 89: 11,1
+ 90: 9,-3
+ 91: 8,-3
+ 92: 7,-3
+ 93: 6,-3
+ 94: 5,-3
+ - node:
+ color: '#DE3A3A96'
+ id: BrickTileWhiteLineN
+ decals:
+ 378: 17,1
+ - node:
+ color: '#334E6DC8'
+ id: BrickTileWhiteLineS
+ decals:
+ 344: 24,3
+ - node:
+ color: '#52B4E996'
+ id: BrickTileWhiteLineS
+ decals:
+ 78: 6,-3
+ 79: 7,-3
+ 80: 9,-3
+ 81: 10,-3
+ - node:
+ color: '#DE3A3A96'
+ id: BrickTileWhiteLineS
+ decals:
+ 370: 18,-1
+ 371: 15,-1
+ - node:
+ color: '#334E6DC8'
+ id: BrickTileWhiteLineW
+ decals:
+ 351: 21,1
+ 352: 21,2
+ - node:
+ color: '#52B4E996'
+ id: BrickTileWhiteLineW
+ decals:
+ 63: 3,-2
+ 64: 2,-5
+ 65: 2,-4
+ 85: 10,-2
+ 86: 10,-1
+ - node:
+ color: '#9FED5896'
+ id: BrickTileWhiteLineW
+ decals:
+ 58: -2,-8
+ - node:
+ color: '#DE3A3A96'
+ id: BrickTileWhiteLineW
+ decals:
+ 372: 14,1
+ 373: 14,2
+ 374: 14,3
+ - node:
+ color: '#FFFFFFFF'
+ id: Bushd1
+ decals:
+ 329: -7.978216,-5.1518655
+ - node:
+ color: '#FFFFFFFF'
+ id: Bushd4
+ decals:
+ 330: -7.978216,-3.5581155
+ 331: -11.993841,-5.2456155
+ 332: -12.025091,-4.3549905
+ - node:
+ color: '#FFFFFFFF'
+ id: Bushe1
+ decals:
+ 333: -12.025091,-3.1831155
+ - node:
+ color: '#FFFFFFFF'
+ id: Bushf1
+ decals:
+ 328: -7.946966,-2.8081155
+ - node:
+ color: '#FFFFFFFF'
+ id: Bushf2
+ decals:
+ 327: -7.993841,-4.4956155
+ - node:
+ color: '#FFFFFFFF'
+ id: Bushf3
+ decals:
+ 326: -12.009466,-3.3393655
+ - node:
+ color: '#FFFFFFFF'
+ id: Bushh2
+ decals:
+ 335: -8.009466,-3.7456155
+ 336: -7.993841,-4.8862405
+ - node:
+ color: '#FFFFFFFF'
+ id: Bushi1
+ decals:
+ 320: -7.946966,-4.9018655
+ - node:
+ color: '#FFFFFFFF'
+ id: Bushi3
+ decals:
+ 321: -7.931341,-4.0424905
+ 324: -12.025091,-4.7612405
+ 325: -11.931341,-2.7299905
+ - node:
+ color: '#FFFFFFFF'
+ id: Bushi4
+ decals:
+ 322: -7.962591,-3.2768655
+ 323: -11.978216,-3.7612405
+ - node:
+ color: '#FFFFFFFF'
+ id: Bushl3
+ decals:
+ 334: -11.993841,-4.5581155
+ - node:
+ color: '#FFFFFFFF'
+ id: Bushm3
+ decals:
+ 337: -7.978216,-3.8862405
+ - node:
+ color: '#52B4E996'
+ id: CheckerNESW
+ decals:
+ 96: 5,-5
+ 97: 5,-4
+ 98: 6,-4
+ 99: 6,-5
+ 100: 7,-5
+ 101: 7,-4
+ 102: 8,-4
+ 103: 9,-4
+ 104: 9,-5
+ 105: 8,-5
+ 106: 10,-5
+ 107: 10,-4
+ 108: 11,-4
+ 109: 12,-4
+ 110: 12,-5
+ 111: 11,-5
+ - node:
+ color: '#D4D4D428'
+ id: CheckerNWSE
+ decals:
+ 303: -18,2
+ 304: -18,3
+ 305: -18,4
+ 306: -19,3
+ 307: -17,3
+ - node:
+ color: '#FFFFFFFF'
+ id: Delivery
+ decals:
+ 5: 4,-16
+ 6: 4,-15
+ 7: 4,-14
+ 260: 0,11
+ - node:
+ color: '#FFFFFFFF'
+ id: DirtHeavy
+ decals:
+ 222: -18,-4
+ 276: 1,13
+ - node:
+ color: '#FFFFFFFF'
+ id: DirtLight
+ decals:
+ 8: 2,-13
+ 12: 3,-13
+ 217: -18,-2
+ 218: -18,-3
+ 219: -18,-3
+ 220: -19,-4
+ 221: -18,-4
+ 224: -17,-2
+ 225: -17,-4
+ 226: -17,-5
+ 227: -18,2
+ 228: -18,3
+ 229: -18,4
+ 230: -19,2
+ 231: -21,-2
+ 232: -21,-1
+ 233: -22,2
+ 234: -21,3
+ 266: 0,7
+ 267: 0,8
+ 268: 1,9
+ 269: 1,10
+ 270: 1,11
+ 271: 1,13
+ 272: 3,7
+ 273: 0,6
+ 277: 1,12
+ 278: 2,10
+ 279: 2,12
+ 280: 2,8
+ 281: 2,8
+ 282: 2,7
+ 283: 1,8
+ 284: 0,8
+ 285: 1,7
+ - node:
+ color: '#FFFFFFFF'
+ id: DirtMedium
+ decals:
+ 9: 2,-12
+ 10: 2,-13
+ 11: 2,-14
+ 223: -19,-3
+ 274: 0,7
+ 275: 1,10
+ - node:
+ color: '#52B4E996'
+ id: FullTileOverlayGreyscale
+ decals:
+ 117: 13,0
+ 118: 9,0
+ - node:
+ color: '#EFB34196'
+ id: FullTileOverlayGreyscale
+ decals:
+ 0: 2,-14
+ 1: 2,-13
+ 2: 2,-12
+ 3: 3,-13
+ - node:
+ color: '#FFFFFFFF'
+ id: Grasse2
+ decals:
+ 311: -7.978216,-5.0112405
+ 312: -7.962591,-4.3393655
+ 313: -7.978216,-3.1987405
+ 314: -11.962591,-3.2924905
+ 315: -12.025091,-4.2456155
+ 319: -11.993841,-2.9487405
+ - node:
+ color: '#FFFFFFFF'
+ id: Grasse3
+ decals:
+ 316: -12.025091,-4.9799905
+ 317: -8.025091,-3.7299905
+ 318: -8.025091,-2.8706155
+ - node:
+ color: '#334E6DC8'
+ id: HalfTileOverlayGreyscale
+ decals:
+ 38: -1,5
+ 39: 4,5
+ 40: 5,5
+ 41: 9,5
+ 42: 10,5
+ 43: 11,5
+ 44: 12,5
+ 357: 25,2
+ - node:
+ color: '#A4610696'
+ id: HalfTileOverlayGreyscale
+ decals:
+ 243: 1,5
+ 244: 2,5
+ - node:
+ color: '#D381C928'
+ id: HalfTileOverlayGreyscale
+ decals:
+ 241: -2,5
+ - node:
+ color: '#EFD58F96'
+ id: HalfTileOverlayGreyscale
+ decals:
+ 123: 7,1
+ - node:
+ color: '#334E6DC8'
+ id: HalfTileOverlayGreyscale180
+ decals:
+ 45: 12,3
+ 46: 11,3
+ 47: 10,3
+ 48: 9,3
+ 49: 8,3
+ 50: 7,3
+ 51: 6,3
+ 52: 5,3
+ 53: 4,3
+ 54: 3,3
+ 55: 2,3
+ 56: 1,3
+ 358: 25,-1
+ - node:
+ color: '#EFB34196'
+ id: HalfTileOverlayGreyscale180
+ decals:
+ 216: -18,-5
+ - node:
+ color: '#EFD58F96'
+ id: HalfTileOverlayGreyscale180
+ decals:
+ 124: 7,-1
+ - node:
+ color: '#334E6DC8'
+ id: HalfTileOverlayGreyscale270
+ decals:
+ 25: -2,-12
+ 26: -2,-11
+ 27: -2,-10
+ 28: -2,-9
+ 29: -2,-7
+ 30: -2,-6
+ 31: -2,-5
+ 32: -2,-4
+ 33: -2,-3
+ 34: -2,-2
+ 35: -2,2
+ 36: -2,4
+ 37: -2,3
+ 361: 24,1
+ - node:
+ color: '#EFB34196'
+ id: HalfTileOverlayGreyscale270
+ decals:
+ 208: -19,-2
+ 209: -19,-3
+ 210: -19,-4
+ 215: -19,-5
+ - node:
+ color: '#EFD58F96'
+ id: HalfTileOverlayGreyscale270
+ decals:
+ 125: 6,0
+ - node:
+ color: '#334E6DC8'
+ id: HalfTileOverlayGreyscale90
+ decals:
+ 13: 0,-10
+ 14: 0,-11
+ 15: 0,-9
+ 16: 0,-8
+ 17: 0,-6
+ 18: 0,-5
+ 19: 0,-4
+ 20: 0,-3
+ 21: 0,-2
+ 22: 0,-1
+ 23: 0,1
+ 24: 0,2
+ 238: 0,-14
+ 239: 0,-12
+ 359: 26,0
+ 360: 26,1
+ - node:
+ color: '#EFB34128'
+ id: HalfTileOverlayGreyscale90
+ decals:
+ 240: 0,-13
+ - node:
+ color: '#EFB34196'
+ id: HalfTileOverlayGreyscale90
+ decals:
+ 211: -17,-4
+ 212: -17,-3
+ 213: -17,-2
+ 214: -17,-5
+ - node:
+ color: '#FFFFFFFF'
+ id: HatchSmall
+ decals:
+ 236: 1,0
+ 237: -3,-8
+ - node:
+ angle: 1.5707963267948966 rad
+ color: '#FFFFFFFF'
+ id: LoadingArea
+ decals:
+ 265: 2,13
+ - node:
+ color: '#A4610696'
+ id: QuarterTileOverlayGreyscale
+ decals:
+ 247: 0,7
+ 248: 0,8
+ 249: 0,9
+ 250: 0,10
+ 251: 0,11
+ 252: 0,12
+ 253: 0,13
+ - node:
+ color: '#334E6DC8'
+ id: QuarterTileOverlayGreyscale180
+ decals:
+ 57: 0,3
+ - node:
+ color: '#334E6DC8'
+ id: QuarterTileOverlayGreyscale270
+ decals:
+ 242: -2,5
+ - node:
+ color: '#52B4E996'
+ id: QuarterTileOverlayGreyscale270
+ decals:
+ 115: 4,0
+ - node:
+ color: '#9FED5896'
+ id: QuarterTileOverlayGreyscale270
+ decals:
+ 308: -5,-9
+ 309: -6,-8
+ 310: -7,-7
+ - node:
+ color: '#52B4E996'
+ id: QuarterTileOverlayGreyscale90
+ decals:
+ 116: 3,-1
+ - node:
+ color: '#A4610696'
+ id: QuarterTileOverlayGreyscale90
+ decals:
+ 254: 2,13
+ 255: 2,12
+ 256: 2,11
+ 257: 2,10
+ 258: 2,9
+ 259: 2,8
+ - node:
+ color: '#334E6DC8'
+ id: ThreeQuarterTileOverlayGreyscale
+ decals:
+ 354: 24,2
+ - node:
+ color: '#EFD58F96'
+ id: ThreeQuarterTileOverlayGreyscale
+ decals:
+ 119: 6,1
+ - node:
+ color: '#334E6DC8'
+ id: ThreeQuarterTileOverlayGreyscale180
+ decals:
+ 353: 26,-1
+ - node:
+ color: '#52B4E996'
+ id: ThreeQuarterTileOverlayGreyscale180
+ decals:
+ 114: 3,0
+ - node:
+ color: '#EFD58F96'
+ id: ThreeQuarterTileOverlayGreyscale180
+ decals:
+ 120: 8,-1
+ - node:
+ color: '#334E6DC8'
+ id: ThreeQuarterTileOverlayGreyscale270
+ decals:
+ 356: 24,-1
+ - node:
+ color: '#EFD58F96'
+ id: ThreeQuarterTileOverlayGreyscale270
+ decals:
+ 122: 6,-1
+ - node:
+ color: '#334E6DC8'
+ id: ThreeQuarterTileOverlayGreyscale90
+ decals:
+ 355: 26,2
+ - node:
+ color: '#EFD58F96'
+ id: ThreeQuarterTileOverlayGreyscale90
+ decals:
+ 121: 8,1
+ - node:
+ color: '#FFFFFFFF'
+ id: VentSmall
+ decals:
+ 302: -16,0
+ - node:
+ color: '#D381C996'
+ id: WarnCornerGreyscaleSE
+ decals:
+ 291: -2,7
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerSmallNW
+ decals:
+ 205: -21,-2
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerSmallSW
+ decals:
+ 204: -21,2
+ - node:
+ color: '#52B4E996'
+ id: WarnLineGreyscaleE
+ decals:
+ 113: 12,0
+ - node:
+ color: '#DE3A3A96'
+ id: WarnLineGreyscaleE
+ decals:
+ 382: 19,0
+ - node:
+ color: '#EFD58F96'
+ id: WarnLineGreyscaleE
+ decals:
+ 126: 8,0
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnLineGreyscaleE
+ decals:
+ 60: 0,-7
+ - node:
+ color: '#A4610696'
+ id: WarnLineGreyscaleN
+ decals:
+ 245: 3,5
+ 246: 0,5
+ - node:
+ color: '#DE3A3A96'
+ id: WarnLineGreyscaleN
+ decals:
+ 364: 18,1
+ - node:
+ color: '#DE3A3A96'
+ id: WarnLineGreyscaleS
+ decals:
+ 362: 17,-1
+ 363: 16,-1
+ - node:
+ color: '#52B4E996'
+ id: WarnLineGreyscaleW
+ decals:
+ 112: 10,0
+ - node:
+ color: '#DE3A3A96'
+ id: WarnLineGreyscaleW
+ decals:
+ 380: 14,0
+ 381: 14,4
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnLineN
+ decals:
+ 195: -24,2
+ 196: -23,2
+ 197: -22,2
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnLineS
+ decals:
+ 198: -21,1
+ 199: -21,0
+ 200: -21,-1
+ 206: -19,-1
+ 207: -19,1
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnLineW
+ decals:
+ 201: -24,-2
+ 202: -23,-2
+ 203: -22,-2
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinLineE
+ decals:
+ 147: 5,7
+ 148: 5,8
+ 149: 5,9
+ 150: 5,10
+ 151: 5,11
+ 152: 5,12
+ 153: 5,13
+ 154: 5,14
+ 155: 5,15
+ 156: 5,16
+ 383: 14,-5
+ 384: 14,-4
+ 385: 14,-3
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinLineN
+ decals:
+ 157: -4,-2
+ 158: -5,-2
+ 159: -6,-2
+ 160: -7,-2
+ 161: -9,-2
+ 162: -10,-2
+ 163: -11,-2
+ 164: -13,-2
+ 165: -14,-2
+ 166: -15,-2
+ 179: -4,1
+ 180: -5,1
+ 181: -6,1
+ 182: -7,1
+ 183: -8,1
+ 184: -10,1
+ 185: -9,1
+ 186: -11,1
+ 187: -12,1
+ 188: -13,1
+ 189: -14,1
+ 190: -15,1
+ 191: -8,4
+ 192: -9,4
+ 193: -10,4
+ 194: -11,4
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinLineS
+ decals:
+ 167: -4,-1
+ 168: -5,-1
+ 169: -6,-1
+ 170: -7,-1
+ 171: -8,-1
+ 172: -9,-1
+ 173: -10,-1
+ 174: -11,-1
+ 175: -13,-1
+ 176: -12,-1
+ 177: -14,-1
+ 178: -15,-1
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinLineW
+ decals:
+ 137: 9,7
+ 138: 9,8
+ 139: 9,9
+ 140: 9,10
+ 141: 9,11
+ 142: 9,12
+ 143: 9,13
+ 144: 9,14
+ 145: 9,15
+ 146: 9,16
+ 386: 19,-5
+ 387: 19,-4
+ 388: 19,-3
+ type: DecalGrid
+ - version: 2
+ data:
+ tiles:
+ -1,-1:
+ 0: 65535
+ 0,0:
+ 0: 65535
+ -1,0:
+ 0: 65535
+ 0,-1:
+ 0: 65535
+ -4,-2:
+ 0: 65280
+ -4,-1:
+ 0: 65535
+ -3,-2:
+ 0: 65280
+ -3,-1:
+ 0: 65535
+ -2,-2:
+ 0: 65535
+ -2,-1:
+ 0: 65535
+ -2,-3:
+ 0: 60544
+ -1,-3:
+ 0: 65535
+ -1,-2:
+ 0: 65519
+ 1: 16
+ -1,-4:
+ 0: 60544
+ 0,1:
+ 0: 65535
+ 0,2:
+ 0: 65535
+ 0,3:
+ 0: 65535
+ 1,0:
+ 0: 65535
+ 1,1:
+ 0: 65535
+ 1,2:
+ 0: 65535
+ 1,3:
+ 0: 65535
+ 2,0:
+ 0: 65519
+ 1: 16
+ 2,1:
+ 0: 65407
+ 1: 128
+ 2,2:
+ 0: 32767
+ 1: 32768
+ 2,3:
+ 0: 65527
+ 1: 8
+ 3,0:
+ 0: 65535
+ 3,1:
+ 0: 8175
+ 1: 16
+ 3,2:
+ 0: 4369
+ 3,3:
+ 0: 4369
+ -4,0:
+ 0: 65535
+ -4,1:
+ 0: 65533
+ 1: 2
+ -4,2:
+ 0: 243
+ -3,0:
+ 0: 65535
+ -3,1:
+ 0: 65503
+ 1: 32
+ -3,2:
+ 0: 241
+ -2,0:
+ 0: 65471
+ 1: 64
+ -2,1:
+ 0: 65407
+ 1: 128
+ -2,2:
+ 0: 36091
+ 1: 4
+ -1,1:
+ 0: 65535
+ -1,2:
+ 0: 57343
+ 1: 8192
+ -1,3:
+ 0: 36079
+ 0,-4:
+ 0: 65532
+ 0,-3:
+ 0: 65531
+ 1: 4
+ 0,-2:
+ 0: 65535
+ 1,-4:
+ 0: 65535
+ 1,-3:
+ 0: 53247
+ 1: 12288
+ 1,-2:
+ 0: 61327
+ 1: 4208
+ 1,-1:
+ 0: 65503
+ 1: 32
+ 2,-4:
+ 0: 63993
+ 2: 6
+ 3: 1536
+ 2,-3:
+ 0: 65535
+ 2,-2:
+ 0: 65535
+ 2,-1:
+ 0: 65535
+ 3,-4:
+ 0: 13105
+ 3,-3:
+ 0: 13107
+ 3,-2:
+ 0: 48947
+ 1: 16384
+ 3,-1:
+ 0: 65531
+ 1: 4
+ -8,0:
+ 0: 63278
+ 4: 64
+ -8,1:
+ 0: 55
+ 4: 8
+ -7,0:
+ 0: 64751
+ -7,1:
+ 0: 140
+ 4: 3
+ -6,0:
+ 0: 65535
+ -6,1:
+ 0: 3327
+ -5,0:
+ 0: 57343
+ 1: 8192
+ -5,1:
+ 0: 65535
+ -5,2:
+ 0: 15
+ -8,-2:
+ 0: 12288
+ -8,-1:
+ 0: 10231
+ 4: 16392
+ -7,-1:
+ 0: 60668
+ 4: 3
+ -7,-2:
+ 0: 32768
+ -6,-2:
+ 0: 64512
+ -6,-1:
+ 0: 65471
+ 1: 64
+ -5,-2:
+ 0: 57088
+ 1: 8192
+ -5,-1:
+ 0: 65493
+ 1: 42
+ 0,-5:
+ 0: 34816
+ 1,-5:
+ 0: 65280
+ 2,-5:
+ 0: 65280
+ 0,4:
+ 0: 2191
+ 1,4:
+ 0: 53247
+ 1,5:
+ 0: 52428
+ 2,4:
+ 0: 8191
+ 2,5:
+ 0: 4369
+ 3,4:
+ 0: 1
+ 4,0:
+ 0: 65407
+ 1: 128
+ 4,1:
+ 0: 3903
+ 1: 192
+ 5,0:
+ 0: 65535
+ 5,1:
+ 0: 507
+ 1: 4
+ 6,0:
+ 0: 65535
+ 6,1:
+ 0: 55
+ 4,-2:
+ 0: 65280
+ 4,-1:
+ 0: 65535
+ 5,-2:
+ 0: 61696
+ 5,-1:
+ 0: 65503
+ 1: 32
+ 6,-2:
+ 0: 12288
+ 6,-1:
+ 0: 65527
+ uniqueMixes:
+ - volume: 2500
+ temperature: 293.15
+ moles:
+ - 21.824879
+ - 82.10312
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - volume: 2500
+ temperature: 293.15
+ moles:
+ - 21.213781
+ - 79.80423
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - volume: 2500
+ temperature: 293.15
+ moles:
+ - 0
+ - 6666.982
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - volume: 2500
+ temperature: 293.15
+ moles:
+ - 6666.982
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - volume: 2500
+ temperature: 293.15
+ moles:
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ chunkSize: 4
+ type: GridAtmosphere
+ - type: GasTileOverlay
+ - type: RadiationGridResistance
+ - type: SpreaderGrid
+- proto: AirCanister
+ entities:
+ - uid: 1535
+ components:
+ - pos: 8.5,-10.5
+ parent: 407
+ type: Transform
+ - uid: 1536
+ components:
+ - pos: 7.5,-10.5
+ parent: 407
+ type: Transform
+ - uid: 1537
+ components:
+ - pos: 6.5,-10.5
+ parent: 407
+ type: Transform
+- proto: AirlockAtmosphericsGlassLocked
+ entities:
+ - uid: 1561
+ components:
+ - pos: 3.5,-12.5
+ parent: 407
+ type: Transform
+- proto: AirlockAtmosphericsLocked
+ entities:
+ - uid: 1562
+ components:
+ - pos: 1.5,-12.5
+ parent: 407
+ type: Transform
+- proto: AirlockCaptainLocked
+ entities:
+ - uid: 1859
+ components:
+ - pos: 22.5,-1.5
+ parent: 407
+ type: Transform
+- proto: AirlockCargoGlassLocked
+ entities:
+ - uid: 1993
+ components:
+ - pos: 0.5,6.5
+ parent: 407
+ type: Transform
+- proto: AirlockChemistryLocked
+ entities:
+ - uid: 1641
+ components:
+ - pos: 9.5,0.5
+ parent: 407
+ type: Transform
+- proto: AirlockCommandGlassLocked
+ entities:
+ - uid: 1881
+ components:
+ - pos: 20.5,0.5
+ parent: 407
+ type: Transform
+- proto: AirlockEngineeringLocked
+ entities:
+ - uid: 1786
+ components:
+ - pos: -15.5,0.5
+ parent: 407
+ type: Transform
+- proto: AirlockExternalGlassAtmosphericsLocked
+ entities:
+ - uid: 1242
+ components:
+ - pos: 9.5,-11.5
+ parent: 407
+ type: Transform
+ - links:
+ - 1243
+ type: DeviceLinkSink
+ - linkedPorts:
+ 1243:
+ - DoorStatus: DoorBolt
+ type: DeviceLinkSource
+ - uid: 1243
+ components:
+ - pos: 12.5,-11.5
+ parent: 407
+ type: Transform
+ - links:
+ - 1242
+ type: DeviceLinkSink
+ - linkedPorts:
+ 1242:
+ - DoorStatus: DoorBolt
+ type: DeviceLinkSource
+- proto: AirlockExternalGlassCargoLocked
+ entities:
+ - uid: 1246
+ components:
+ - pos: 1.5,14.5
+ parent: 407
+ type: Transform
+ - links:
+ - 1247
+ type: DeviceLinkSink
+ - linkedPorts:
+ 1247:
+ - DoorStatus: DoorBolt
+ type: DeviceLinkSource
+ - uid: 1247
+ components:
+ - pos: 1.5,16.5
+ parent: 407
+ type: Transform
+ - links:
+ - 1246
+ type: DeviceLinkSink
+ - linkedPorts:
+ 1246:
+ - DoorStatus: DoorBolt
+ type: DeviceLinkSource
+- proto: AirlockExternalGlassEngineeringLocked
+ entities:
+ - uid: 1244
+ components:
+ - pos: -17.5,5.5
+ parent: 407
+ type: Transform
+ - links:
+ - 1245
+ type: DeviceLinkSink
+ - linkedPorts:
+ 1245:
+ - DoorStatus: DoorBolt
+ type: DeviceLinkSource
+ - uid: 1245
+ components:
+ - pos: -17.5,7.5
+ parent: 407
+ type: Transform
+ - links:
+ - 1244
+ type: DeviceLinkSink
+ - linkedPorts:
+ 1244:
+ - DoorStatus: DoorBolt
+ type: DeviceLinkSource
+- proto: AirlockExternalGlassShuttleLocked
+ entities:
+ - uid: 1030
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 7.5,23.5
+ parent: 407
+ type: Transform
+- proto: AirlockGlass
+ entities:
+ - uid: 1568
+ components:
+ - pos: 6.5,6.5
+ parent: 407
+ type: Transform
+ - uid: 1569
+ components:
+ - pos: 7.5,6.5
+ parent: 407
+ type: Transform
+ - uid: 1570
+ components:
+ - pos: 8.5,6.5
+ parent: 407
+ type: Transform
+ - uid: 1571
+ components:
+ - pos: 7.5,17.5
+ parent: 407
+ type: Transform
+ - uid: 1572
+ components:
+ - pos: 1.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 1573
+ components:
+ - pos: -2.5,-0.5
+ parent: 407
+ type: Transform
+ - uid: 1574
+ components:
+ - pos: -2.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 1575
+ components:
+ - pos: -2.5,1.5
+ parent: 407
+ type: Transform
+- proto: AirlockJanitorLocked
+ entities:
+ - uid: 1673
+ components:
+ - pos: -2.5,-7.5
+ parent: 407
+ type: Transform
+- proto: AirlockMaintLocked
+ entities:
+ - uid: 1240
+ components:
+ - pos: 1.5,-6.5
+ parent: 407
+ type: Transform
+- proto: AirlockMaintMedLocked
+ entities:
+ - uid: 1241
+ components:
+ - pos: 3.5,-5.5
+ parent: 407
+ type: Transform
+- proto: AirlockMedicalGlassLocked
+ entities:
+ - uid: 1636
+ components:
+ - pos: 4.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 1637
+ components:
+ - pos: 3.5,-1.5
+ parent: 407
+ type: Transform
+- proto: AirlockScienceGlassLocked
+ entities:
+ - uid: 1992
+ components:
+ - pos: -1.5,6.5
+ parent: 407
+ type: Transform
+- proto: AirlockSecurityGlassLocked
+ entities:
+ - uid: 1877
+ components:
+ - pos: 18.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 1927
+ components:
+ - pos: 13.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 2064
+ components:
+ - pos: 13.5,4.5
+ parent: 407
+ type: Transform
+- proto: AirlockSecurityLocked
+ entities:
+ - uid: 2122
+ components:
+ - pos: 16.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 2123
+ components:
+ - pos: 17.5,-1.5
+ parent: 407
+ type: Transform
+- proto: AirlockServiceGlassLocked
+ entities:
+ - uid: 1576
+ components:
+ - pos: -7.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 1577
+ components:
+ - pos: -11.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 1578
+ components:
+ - pos: -6.5,4.5
+ parent: 407
+ type: Transform
+- proto: APCBasic
+ entities:
+ - uid: 388
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -19.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 389
+ components:
+ - pos: -18.5,5.5
+ parent: 407
+ type: Transform
+ - uid: 390
+ components:
+ - pos: -6.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 391
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -2.5,6.5
+ parent: 407
+ type: Transform
+ - uid: 392
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -7.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 395
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -2.5,-5.5
+ parent: 407
+ type: Transform
+ - uid: 396
+ components:
+ - pos: 9.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 397
+ components:
+ - pos: 4.5,6.5
+ parent: 407
+ type: Transform
+ - uid: 398
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -0.5,13.5
+ parent: 407
+ type: Transform
+ - uid: 399
+ components:
+ - pos: 9.5,17.5
+ parent: 407
+ type: Transform
+ - uid: 400
+ components:
+ - pos: 4.5,-9.5
+ parent: 407
+ type: Transform
+ - uid: 401
+ components:
+ - pos: 17.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 402
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 20.5,2.5
+ parent: 407
+ type: Transform
+- proto: AtmosDeviceFanTiny
+ entities:
+ - uid: 242
+ components:
+ - pos: 7.5,23.5
+ parent: 407
+ type: Transform
+- proto: AtmosFixNitrogenMarker
+ entities:
+ - uid: 1527
+ components:
+ - pos: 10.5,-15.5
+ parent: 407
+ type: Transform
+ - uid: 1528
+ components:
+ - pos: 9.5,-15.5
+ parent: 407
+ type: Transform
+- proto: AtmosFixOxygenMarker
+ entities:
+ - uid: 1525
+ components:
+ - pos: 9.5,-13.5
+ parent: 407
+ type: Transform
+ - uid: 1526
+ components:
+ - pos: 10.5,-13.5
+ parent: 407
+ type: Transform
+- proto: Autolathe
+ entities:
+ - uid: 1965
+ components:
+ - pos: 1.5,9.5
+ parent: 407
+ type: Transform
+- proto: BarSignTheLightbulb
+ entities:
+ - uid: 1702
+ components:
+ - pos: -12.5,2.5
+ parent: 407
+ type: Transform
+- proto: BaseResearchAndDevelopmentPointSource
+ entities:
+ - uid: 1987
+ components:
+ - pos: -5.5,7.5
+ parent: 407
+ type: Transform
+- proto: Bed
+ entities:
+ - uid: 1875
+ components:
+ - pos: 19.5,3.5
+ parent: 407
+ type: Transform
+ - uid: 1876
+ components:
+ - pos: 19.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 1891
+ components:
+ - pos: 24.5,-3.5
+ parent: 407
+ type: Transform
+- proto: BedsheetCaptain
+ entities:
+ - uid: 1892
+ components:
+ - pos: 24.5,-3.5
+ parent: 407
+ type: Transform
+- proto: BedsheetMedical
+ entities:
+ - uid: 1896
+ components:
+ - pos: 9.5,-4.5
+ parent: 407
+ type: Transform
+ - uid: 1897
+ components:
+ - pos: 5.5,-4.5
+ parent: 407
+ type: Transform
+- proto: BedsheetOrange
+ entities:
+ - uid: 1879
+ components:
+ - pos: 19.5,3.5
+ parent: 407
+ type: Transform
+ - uid: 1880
+ components:
+ - pos: 19.5,4.5
+ parent: 407
+ type: Transform
+- proto: BlastDoor
+ entities:
+ - uid: 1250
+ components:
+ - pos: -4.5,10.5
+ parent: 407
+ type: Transform
+- proto: BluespaceBeaker
+ entities:
+ - uid: 1740
+ components:
+ - pos: 6.3718643,-0.34468752
+ parent: 407
+ type: Transform
+- proto: BoozeDispenser
+ entities:
+ - uid: 1777
+ components:
+ - pos: -8.5,5.5
+ parent: 407
+ type: Transform
+- proto: BoxHandcuff
+ entities:
+ - uid: 2103
+ components:
+ - pos: 18.424814,-4.2784977
+ parent: 407
+ type: Transform
+- proto: BoxLightMixed
+ entities:
+ - uid: 1670
+ components:
+ - pos: -5.592183,-7.3342304
+ parent: 407
+ type: Transform
+- proto: BoxZiptie
+ entities:
+ - uid: 2104
+ components:
+ - pos: 18.65919,-4.4972477
+ parent: 407
+ type: Transform
+- proto: Bucket
+ entities:
+ - uid: 2067
+ components:
+ - pos: -12.511883,3.9677496
+ parent: 407
+ type: Transform
+ - uid: 2068
+ components:
+ - pos: -12.730633,3.8739996
+ parent: 407
+ type: Transform
+- proto: CableApcExtension
+ entities:
+ - uid: 363
+ components:
+ - pos: 7.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 371
+ components:
+ - pos: -17.5,3.5
+ parent: 407
+ type: Transform
+ - uid: 372
+ components:
+ - pos: -20.5,1.5
+ parent: 407
+ type: Transform
+ - uid: 373
+ components:
+ - pos: -17.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 374
+ components:
+ - pos: -21.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 375
+ components:
+ - pos: -18.5,5.5
+ parent: 407
+ type: Transform
+ - uid: 683
+ components:
+ - pos: -19.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 684
+ components:
+ - pos: -20.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 685
+ components:
+ - pos: -21.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 686
+ components:
+ - pos: -22.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 687
+ components:
+ - pos: -23.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 688
+ components:
+ - pos: -22.5,-0.5
+ parent: 407
+ type: Transform
+ - uid: 689
+ components:
+ - pos: -22.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 690
+ components:
+ - pos: -22.5,1.5
+ parent: 407
+ type: Transform
+ - uid: 691
+ components:
+ - pos: -20.5,-0.5
+ parent: 407
+ type: Transform
+ - uid: 692
+ components:
+ - pos: -20.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 693
+ components:
+ - pos: -18.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 694
+ components:
+ - pos: -20.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 695
+ components:
+ - pos: -22.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 696
+ components:
+ - pos: -17.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 697
+ components:
+ - pos: -17.5,1.5
+ parent: 407
+ type: Transform
+ - uid: 698
+ components:
+ - pos: -17.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 699
+ components:
+ - pos: -17.5,-0.5
+ parent: 407
+ type: Transform
+ - uid: 700
+ components:
+ - pos: -17.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 701
+ components:
+ - pos: -17.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 702
+ components:
+ - pos: -17.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 703
+ components:
+ - pos: -17.5,-4.5
+ parent: 407
+ type: Transform
+ - uid: 704
+ components:
+ - pos: -16.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 705
+ components:
+ - pos: -18.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 706
+ components:
+ - pos: -17.5,5.5
+ parent: 407
+ type: Transform
+ - uid: 707
+ components:
+ - pos: -16.5,5.5
+ parent: 407
+ type: Transform
+ - uid: 708
+ components:
+ - pos: -17.5,6.5
+ parent: 407
+ type: Transform
+ - uid: 709
+ components:
+ - pos: -17.5,7.5
+ parent: 407
+ type: Transform
+ - uid: 710
+ components:
+ - pos: -16.5,7.5
+ parent: 407
+ type: Transform
+ - uid: 711
+ components:
+ - pos: -17.5,8.5
+ parent: 407
+ type: Transform
+ - uid: 712
+ components:
+ - pos: -18.5,8.5
+ parent: 407
+ type: Transform
+ - uid: 713
+ components:
+ - pos: -19.5,8.5
+ parent: 407
+ type: Transform
+ - uid: 714
+ components:
+ - pos: -19.5,7.5
+ parent: 407
+ type: Transform
+ - uid: 715
+ components:
+ - pos: -19.5,6.5
+ parent: 407
+ type: Transform
+ - uid: 716
+ components:
+ - pos: -20.5,6.5
+ parent: 407
+ type: Transform
+ - uid: 717
+ components:
+ - pos: -21.5,6.5
+ parent: 407
+ type: Transform
+ - uid: 718
+ components:
+ - pos: -21.5,5.5
+ parent: 407
+ type: Transform
+ - uid: 719
+ components:
+ - pos: -22.5,5.5
+ parent: 407
+ type: Transform
+ - uid: 720
+ components:
+ - pos: -23.5,5.5
+ parent: 407
+ type: Transform
+ - uid: 721
+ components:
+ - pos: -24.5,5.5
+ parent: 407
+ type: Transform
+ - uid: 722
+ components:
+ - pos: -24.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 723
+ components:
+ - pos: -25.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 724
+ components:
+ - pos: -25.5,3.5
+ parent: 407
+ type: Transform
+ - uid: 725
+ components:
+ - pos: -25.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 726
+ components:
+ - pos: -25.5,1.5
+ parent: 407
+ type: Transform
+ - uid: 727
+ components:
+ - pos: -25.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 728
+ components:
+ - pos: -26.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 729
+ components:
+ - pos: -27.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 730
+ components:
+ - pos: -28.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 731
+ components:
+ - pos: -29.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 732
+ components:
+ - pos: -30.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 733
+ components:
+ - pos: -30.5,1.5
+ parent: 407
+ type: Transform
+ - uid: 734
+ components:
+ - pos: -30.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 735
+ components:
+ - pos: -30.5,3.5
+ parent: 407
+ type: Transform
+ - uid: 736
+ components:
+ - pos: -30.5,-0.5
+ parent: 407
+ type: Transform
+ - uid: 737
+ components:
+ - pos: -6.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 738
+ components:
+ - pos: -30.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 739
+ components:
+ - pos: -30.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 740
+ components:
+ - pos: -13.5,-0.5
+ parent: 407
+ type: Transform
+ - uid: 741
+ components:
+ - pos: -13.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 742
+ components:
+ - pos: -7.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 743
+ components:
+ - pos: -7.5,3.5
+ parent: 407
+ type: Transform
+ - uid: 744
+ components:
+ - pos: -7.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 745
+ components:
+ - pos: -6.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 746
+ components:
+ - pos: -4.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 747
+ components:
+ - pos: -5.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 748
+ components:
+ - pos: -3.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 749
+ components:
+ - pos: -8.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 750
+ components:
+ - pos: -9.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 751
+ components:
+ - pos: -10.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 752
+ components:
+ - pos: -11.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 753
+ components:
+ - pos: -12.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 754
+ components:
+ - pos: -13.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 755
+ components:
+ - pos: -14.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 756
+ components:
+ - pos: -13.5,3.5
+ parent: 407
+ type: Transform
+ - uid: 757
+ components:
+ - pos: -13.5,5.5
+ parent: 407
+ type: Transform
+ - uid: 758
+ components:
+ - pos: -7.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 759
+ components:
+ - pos: -7.5,-0.5
+ parent: 407
+ type: Transform
+ - uid: 760
+ components:
+ - pos: -7.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 761
+ components:
+ - pos: -8.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 762
+ components:
+ - pos: -9.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 763
+ components:
+ - pos: -10.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 764
+ components:
+ - pos: -11.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 765
+ components:
+ - pos: -12.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 766
+ components:
+ - pos: -13.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 767
+ components:
+ - pos: -14.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 768
+ components:
+ - pos: -6.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 769
+ components:
+ - pos: -5.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 770
+ components:
+ - pos: -4.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 771
+ components:
+ - pos: -3.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 772
+ components:
+ - pos: -13.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 773
+ components:
+ - pos: -13.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 774
+ components:
+ - pos: -13.5,-4.5
+ parent: 407
+ type: Transform
+ - uid: 775
+ components:
+ - pos: -13.5,-5.5
+ parent: 407
+ type: Transform
+ - uid: 776
+ components:
+ - pos: -14.5,-5.5
+ parent: 407
+ type: Transform
+ - uid: 777
+ components:
+ - pos: -12.5,-5.5
+ parent: 407
+ type: Transform
+ - uid: 778
+ components:
+ - pos: -9.5,-0.5
+ parent: 407
+ type: Transform
+ - uid: 779
+ components:
+ - pos: -9.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 780
+ components:
+ - pos: -9.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 781
+ components:
+ - pos: -9.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 782
+ components:
+ - pos: -9.5,-4.5
+ parent: 407
+ type: Transform
+ - uid: 783
+ components:
+ - pos: -9.5,-5.5
+ parent: 407
+ type: Transform
+ - uid: 784
+ components:
+ - pos: -10.5,-5.5
+ parent: 407
+ type: Transform
+ - uid: 785
+ components:
+ - pos: -8.5,-5.5
+ parent: 407
+ type: Transform
+ - uid: 786
+ components:
+ - pos: -5.5,-0.5
+ parent: 407
+ type: Transform
+ - uid: 787
+ components:
+ - pos: -5.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 788
+ components:
+ - pos: -5.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 789
+ components:
+ - pos: -5.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 790
+ components:
+ - pos: -4.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 791
+ components:
+ - pos: -2.5,-5.5
+ parent: 407
+ type: Transform
+ - uid: 792
+ components:
+ - pos: -1.5,-5.5
+ parent: 407
+ type: Transform
+ - uid: 793
+ components:
+ - pos: -0.5,-5.5
+ parent: 407
+ type: Transform
+ - uid: 794
+ components:
+ - pos: -0.5,-4.5
+ parent: 407
+ type: Transform
+ - uid: 795
+ components:
+ - pos: -0.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 796
+ components:
+ - pos: -0.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 797
+ components:
+ - pos: -0.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 798
+ components:
+ - pos: -0.5,-0.5
+ parent: 407
+ type: Transform
+ - uid: 799
+ components:
+ - pos: -0.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 800
+ components:
+ - pos: -0.5,1.5
+ parent: 407
+ type: Transform
+ - uid: 801
+ components:
+ - pos: -0.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 802
+ components:
+ - pos: -0.5,3.5
+ parent: 407
+ type: Transform
+ - uid: 803
+ components:
+ - pos: -0.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 804
+ components:
+ - pos: -0.5,-6.5
+ parent: 407
+ type: Transform
+ - uid: 805
+ components:
+ - pos: -0.5,-7.5
+ parent: 407
+ type: Transform
+ - uid: 806
+ components:
+ - pos: -0.5,-8.5
+ parent: 407
+ type: Transform
+ - uid: 807
+ components:
+ - pos: -0.5,-9.5
+ parent: 407
+ type: Transform
+ - uid: 808
+ components:
+ - pos: -0.5,-10.5
+ parent: 407
+ type: Transform
+ - uid: 809
+ components:
+ - pos: -0.5,-11.5
+ parent: 407
+ type: Transform
+ - uid: 810
+ components:
+ - pos: -0.5,-12.5
+ parent: 407
+ type: Transform
+ - uid: 811
+ components:
+ - pos: -1.5,-7.5
+ parent: 407
+ type: Transform
+ - uid: 812
+ components:
+ - pos: -2.5,-7.5
+ parent: 407
+ type: Transform
+ - uid: 813
+ components:
+ - pos: -3.5,-7.5
+ parent: 407
+ type: Transform
+ - uid: 814
+ components:
+ - pos: -4.5,-7.5
+ parent: 407
+ type: Transform
+ - uid: 815
+ components:
+ - pos: -5.5,-7.5
+ parent: 407
+ type: Transform
+ - uid: 816
+ components:
+ - pos: -5.5,-6.5
+ parent: 407
+ type: Transform
+ - uid: 817
+ components:
+ - pos: 0.5,-6.5
+ parent: 407
+ type: Transform
+ - uid: 818
+ components:
+ - pos: 1.5,-6.5
+ parent: 407
+ type: Transform
+ - uid: 819
+ components:
+ - pos: 2.5,-6.5
+ parent: 407
+ type: Transform
+ - uid: 820
+ components:
+ - pos: 3.5,-6.5
+ parent: 407
+ type: Transform
+ - uid: 821
+ components:
+ - pos: 4.5,-6.5
+ parent: 407
+ type: Transform
+ - uid: 822
+ components:
+ - pos: 7.5,-17.5
+ parent: 407
+ type: Transform
+ - uid: 823
+ components:
+ - pos: 7.5,-16.5
+ parent: 407
+ type: Transform
+ - uid: 824
+ components:
+ - pos: 7.5,-15.5
+ parent: 407
+ type: Transform
+ - uid: 825
+ components:
+ - pos: 6.5,-15.5
+ parent: 407
+ type: Transform
+ - uid: 826
+ components:
+ - pos: 5.5,-15.5
+ parent: 407
+ type: Transform
+ - uid: 827
+ components:
+ - pos: 5.5,-14.5
+ parent: 407
+ type: Transform
+ - uid: 828
+ components:
+ - pos: 5.5,-13.5
+ parent: 407
+ type: Transform
+ - uid: 829
+ components:
+ - pos: 4.5,-13.5
+ parent: 407
+ type: Transform
+ - uid: 830
+ components:
+ - pos: 4.5,-12.5
+ parent: 407
+ type: Transform
+ - uid: 831
+ components:
+ - pos: 4.5,-11.5
+ parent: 407
+ type: Transform
+ - uid: 832
+ components:
+ - pos: 4.5,-10.5
+ parent: 407
+ type: Transform
+ - uid: 833
+ components:
+ - pos: 4.5,-9.5
+ parent: 407
+ type: Transform
+ - uid: 834
+ components:
+ - pos: 3.5,-12.5
+ parent: 407
+ type: Transform
+ - uid: 835
+ components:
+ - pos: 2.5,-12.5
+ parent: 407
+ type: Transform
+ - uid: 836
+ components:
+ - pos: 1.5,-12.5
+ parent: 407
+ type: Transform
+ - uid: 837
+ components:
+ - pos: 5.5,-11.5
+ parent: 407
+ type: Transform
+ - uid: 838
+ components:
+ - pos: 6.5,-11.5
+ parent: 407
+ type: Transform
+ - uid: 839
+ components:
+ - pos: 7.5,-11.5
+ parent: 407
+ type: Transform
+ - uid: 840
+ components:
+ - pos: 8.5,-11.5
+ parent: 407
+ type: Transform
+ - uid: 841
+ components:
+ - pos: 9.5,-11.5
+ parent: 407
+ type: Transform
+ - uid: 842
+ components:
+ - pos: 10.5,-11.5
+ parent: 407
+ type: Transform
+ - uid: 843
+ components:
+ - pos: 11.5,-11.5
+ parent: 407
+ type: Transform
+ - uid: 844
+ components:
+ - pos: 9.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 845
+ components:
+ - pos: 9.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 846
+ components:
+ - pos: 10.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 847
+ components:
+ - pos: 11.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 848
+ components:
+ - pos: 11.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 849
+ components:
+ - pos: 11.5,-4.5
+ parent: 407
+ type: Transform
+ - uid: 850
+ components:
+ - pos: 8.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 851
+ components:
+ - pos: 7.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 852
+ components:
+ - pos: 8.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 853
+ components:
+ - pos: 8.5,-4.5
+ parent: 407
+ type: Transform
+ - uid: 854
+ components:
+ - pos: 6.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 855
+ components:
+ - pos: 5.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 856
+ components:
+ - pos: 5.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 857
+ components:
+ - pos: 5.5,-4.5
+ parent: 407
+ type: Transform
+ - uid: 858
+ components:
+ - pos: 4.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 859
+ components:
+ - pos: 3.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 860
+ components:
+ - pos: 3.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 861
+ components:
+ - pos: 3.5,-4.5
+ parent: 407
+ type: Transform
+ - uid: 862
+ components:
+ - pos: 3.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 863
+ components:
+ - pos: 3.5,-0.5
+ parent: 407
+ type: Transform
+ - uid: 864
+ components:
+ - pos: 3.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 865
+ components:
+ - pos: 3.5,1.5
+ parent: 407
+ type: Transform
+ - uid: 866
+ components:
+ - pos: 7.5,-0.5
+ parent: 407
+ type: Transform
+ - uid: 867
+ components:
+ - pos: 7.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 868
+ components:
+ - pos: 7.5,1.5
+ parent: 407
+ type: Transform
+ - uid: 869
+ components:
+ - pos: 6.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 870
+ components:
+ - pos: 5.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 871
+ components:
+ - pos: 4.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 872
+ components:
+ - pos: 8.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 873
+ components:
+ - pos: 9.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 874
+ components:
+ - pos: 10.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 875
+ components:
+ - pos: 11.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 876
+ components:
+ - pos: 11.5,-0.5
+ parent: 407
+ type: Transform
+ - uid: 877
+ components:
+ - pos: 11.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 878
+ components:
+ - pos: 11.5,1.5
+ parent: 407
+ type: Transform
+ - uid: 879
+ components:
+ - pos: 12.5,1.5
+ parent: 407
+ type: Transform
+ - uid: 880
+ components:
+ - pos: 13.5,1.5
+ parent: 407
+ type: Transform
+ - uid: 881
+ components:
+ - pos: 13.5,-0.5
+ parent: 407
+ type: Transform
+ - uid: 882
+ components:
+ - pos: 13.5,-0.5
+ parent: 407
+ type: Transform
+ - uid: 883
+ components:
+ - pos: 12.5,-0.5
+ parent: 407
+ type: Transform
+ - uid: 884
+ components:
+ - pos: 4.5,6.5
+ parent: 407
+ type: Transform
+ - uid: 885
+ components:
+ - pos: 4.5,5.5
+ parent: 407
+ type: Transform
+ - uid: 886
+ components:
+ - pos: 4.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 887
+ components:
+ - pos: 3.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 888
+ components:
+ - pos: 2.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 889
+ components:
+ - pos: 1.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 890
+ components:
+ - pos: 5.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 891
+ components:
+ - pos: 6.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 892
+ components:
+ - pos: 7.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 893
+ components:
+ - pos: 8.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 894
+ components:
+ - pos: 9.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 895
+ components:
+ - pos: 10.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 896
+ components:
+ - pos: 11.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 897
+ components:
+ - pos: 12.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 898
+ components:
+ - pos: 12.5,5.5
+ parent: 407
+ type: Transform
+ - uid: 899
+ components:
+ - pos: 13.5,5.5
+ parent: 407
+ type: Transform
+ - uid: 900
+ components:
+ - pos: 12.5,3.5
+ parent: 407
+ type: Transform
+ - uid: 901
+ components:
+ - pos: 13.5,3.5
+ parent: 407
+ type: Transform
+ - uid: 902
+ components:
+ - pos: 17.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 903
+ components:
+ - pos: 16.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 904
+ components:
+ - pos: 16.5,3.5
+ parent: 407
+ type: Transform
+ - uid: 905
+ components:
+ - pos: 16.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 906
+ components:
+ - pos: 16.5,5.5
+ parent: 407
+ type: Transform
+ - uid: 907
+ components:
+ - pos: 16.5,6.5
+ parent: 407
+ type: Transform
+ - uid: 908
+ components:
+ - pos: 15.5,6.5
+ parent: 407
+ type: Transform
+ - uid: 909
+ components:
+ - pos: 14.5,6.5
+ parent: 407
+ type: Transform
+ - uid: 910
+ components:
+ - pos: 16.5,1.5
+ parent: 407
+ type: Transform
+ - uid: 911
+ components:
+ - pos: 16.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 912
+ components:
+ - pos: 16.5,-0.5
+ parent: 407
+ type: Transform
+ - uid: 913
+ components:
+ - pos: 16.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 914
+ components:
+ - pos: 16.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 915
+ components:
+ - pos: 16.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 916
+ components:
+ - pos: 16.5,-4.5
+ parent: 407
+ type: Transform
+ - uid: 917
+ components:
+ - pos: 16.5,-5.5
+ parent: 407
+ type: Transform
+ - uid: 918
+ components:
+ - pos: 15.5,-5.5
+ parent: 407
+ type: Transform
+ - uid: 919
+ components:
+ - pos: 18.5,-5.5
+ parent: 407
+ type: Transform
+ - uid: 920
+ components:
+ - pos: 18.5,-5.5
+ parent: 407
+ type: Transform
+ - uid: 921
+ components:
+ - pos: 17.5,-5.5
+ parent: 407
+ type: Transform
+ - uid: 922
+ components:
+ - pos: 17.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 923
+ components:
+ - pos: 18.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 924
+ components:
+ - pos: 15.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 925
+ components:
+ - pos: 15.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 926
+ components:
+ - pos: 17.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 927
+ components:
+ - pos: 18.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 928
+ components:
+ - pos: 19.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 929
+ components:
+ - pos: 20.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 930
+ components:
+ - pos: 19.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 931
+ components:
+ - pos: 21.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 932
+ components:
+ - pos: 22.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 933
+ components:
+ - pos: 22.5,1.5
+ parent: 407
+ type: Transform
+ - uid: 934
+ components:
+ - pos: 22.5,-0.5
+ parent: 407
+ type: Transform
+ - uid: 935
+ components:
+ - pos: 22.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 936
+ components:
+ - pos: 21.5,-0.5
+ parent: 407
+ type: Transform
+ - uid: 937
+ components:
+ - pos: 20.5,-0.5
+ parent: 407
+ type: Transform
+ - uid: 938
+ components:
+ - pos: 21.5,1.5
+ parent: 407
+ type: Transform
+ - uid: 939
+ components:
+ - pos: 20.5,1.5
+ parent: 407
+ type: Transform
+ - uid: 940
+ components:
+ - pos: 22.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 941
+ components:
+ - pos: 22.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 942
+ components:
+ - pos: 22.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 943
+ components:
+ - pos: 23.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 944
+ components:
+ - pos: 24.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 945
+ components:
+ - pos: 25.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 946
+ components:
+ - pos: 25.5,-4.5
+ parent: 407
+ type: Transform
+ - uid: 947
+ components:
+ - pos: 24.5,-4.5
+ parent: 407
+ type: Transform
+ - uid: 948
+ components:
+ - pos: 26.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 949
+ components:
+ - pos: 26.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 950
+ components:
+ - pos: 23.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 951
+ components:
+ - pos: 24.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 952
+ components:
+ - pos: 25.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 953
+ components:
+ - pos: 26.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 954
+ components:
+ - pos: 27.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 955
+ components:
+ - pos: 27.5,-0.5
+ parent: 407
+ type: Transform
+ - uid: 956
+ components:
+ - pos: 27.5,1.5
+ parent: 407
+ type: Transform
+ - uid: 957
+ components:
+ - pos: 27.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 958
+ components:
+ - pos: 27.5,3.5
+ parent: 407
+ type: Transform
+ - uid: 959
+ components:
+ - pos: 26.5,3.5
+ parent: 407
+ type: Transform
+ - uid: 960
+ components:
+ - pos: 26.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 961
+ components:
+ - pos: 25.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 962
+ components:
+ - pos: 25.5,5.5
+ parent: 407
+ type: Transform
+ - uid: 963
+ components:
+ - pos: 24.5,5.5
+ parent: 407
+ type: Transform
+ - uid: 964
+ components:
+ - pos: 24.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 965
+ components:
+ - pos: 23.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 966
+ components:
+ - pos: 22.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 967
+ components:
+ - pos: 22.5,3.5
+ parent: 407
+ type: Transform
+ - uid: 968
+ components:
+ - pos: 19.5,3.5
+ parent: 407
+ type: Transform
+ - uid: 969
+ components:
+ - pos: 19.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 970
+ components:
+ - pos: 19.5,5.5
+ parent: 407
+ type: Transform
+ - uid: 971
+ components:
+ - pos: 19.5,6.5
+ parent: 407
+ type: Transform
+ - uid: 972
+ components:
+ - pos: -0.5,13.5
+ parent: 407
+ type: Transform
+ - uid: 973
+ components:
+ - pos: 0.5,13.5
+ parent: 407
+ type: Transform
+ - uid: 974
+ components:
+ - pos: 1.5,13.5
+ parent: 407
+ type: Transform
+ - uid: 975
+ components:
+ - pos: 1.5,14.5
+ parent: 407
+ type: Transform
+ - uid: 976
+ components:
+ - pos: 1.5,15.5
+ parent: 407
+ type: Transform
+ - uid: 977
+ components:
+ - pos: 1.5,12.5
+ parent: 407
+ type: Transform
+ - uid: 978
+ components:
+ - pos: 1.5,11.5
+ parent: 407
+ type: Transform
+ - uid: 979
+ components:
+ - pos: 1.5,10.5
+ parent: 407
+ type: Transform
+ - uid: 980
+ components:
+ - pos: 1.5,9.5
+ parent: 407
+ type: Transform
+ - uid: 981
+ components:
+ - pos: 1.5,8.5
+ parent: 407
+ type: Transform
+ - uid: 982
+ components:
+ - pos: 1.5,7.5
+ parent: 407
+ type: Transform
+ - uid: 983
+ components:
+ - pos: -2.5,6.5
+ parent: 407
+ type: Transform
+ - uid: 984
+ components:
+ - pos: -2.5,7.5
+ parent: 407
+ type: Transform
+ - uid: 985
+ components:
+ - pos: -2.5,8.5
+ parent: 407
+ type: Transform
+ - uid: 986
+ components:
+ - pos: -2.5,9.5
+ parent: 407
+ type: Transform
+ - uid: 987
+ components:
+ - pos: -2.5,10.5
+ parent: 407
+ type: Transform
+ - uid: 988
+ components:
+ - pos: -2.5,11.5
+ parent: 407
+ type: Transform
+ - uid: 989
+ components:
+ - pos: -1.5,11.5
+ parent: 407
+ type: Transform
+ - uid: 990
+ components:
+ - pos: -3.5,8.5
+ parent: 407
+ type: Transform
+ - uid: 991
+ components:
+ - pos: -4.5,8.5
+ parent: 407
+ type: Transform
+ - uid: 992
+ components:
+ - pos: -5.5,8.5
+ parent: 407
+ type: Transform
+ - uid: 993
+ components:
+ - pos: -4.5,9.5
+ parent: 407
+ type: Transform
+ - uid: 994
+ components:
+ - pos: -3.5,11.5
+ parent: 407
+ type: Transform
+ - uid: 995
+ components:
+ - pos: 9.5,17.5
+ parent: 407
+ type: Transform
+ - uid: 996
+ components:
+ - pos: 9.5,16.5
+ parent: 407
+ type: Transform
+ - uid: 997
+ components:
+ - pos: 9.5,15.5
+ parent: 407
+ type: Transform
+ - uid: 998
+ components:
+ - pos: 9.5,14.5
+ parent: 407
+ type: Transform
+ - uid: 999
+ components:
+ - pos: 9.5,13.5
+ parent: 407
+ type: Transform
+ - uid: 1000
+ components:
+ - pos: 9.5,12.5
+ parent: 407
+ type: Transform
+ - uid: 1001
+ components:
+ - pos: 9.5,11.5
+ parent: 407
+ type: Transform
+ - uid: 1002
+ components:
+ - pos: 9.5,10.5
+ parent: 407
+ type: Transform
+ - uid: 1003
+ components:
+ - pos: 9.5,9.5
+ parent: 407
+ type: Transform
+ - uid: 1004
+ components:
+ - pos: 9.5,8.5
+ parent: 407
+ type: Transform
+ - uid: 1005
+ components:
+ - pos: 9.5,7.5
+ parent: 407
+ type: Transform
+ - uid: 1006
+ components:
+ - pos: 8.5,7.5
+ parent: 407
+ type: Transform
+ - uid: 1007
+ components:
+ - pos: 7.5,7.5
+ parent: 407
+ type: Transform
+ - uid: 1008
+ components:
+ - pos: 10.5,11.5
+ parent: 407
+ type: Transform
+ - uid: 1009
+ components:
+ - pos: 11.5,11.5
+ parent: 407
+ type: Transform
+ - uid: 1010
+ components:
+ - pos: 12.5,11.5
+ parent: 407
+ type: Transform
+ - uid: 1011
+ components:
+ - pos: 12.5,12.5
+ parent: 407
+ type: Transform
+ - uid: 1012
+ components:
+ - pos: 8.5,16.5
+ parent: 407
+ type: Transform
+ - uid: 1013
+ components:
+ - pos: 7.5,16.5
+ parent: 407
+ type: Transform
+ - uid: 1014
+ components:
+ - pos: 6.5,16.5
+ parent: 407
+ type: Transform
+ - uid: 1015
+ components:
+ - pos: 5.5,16.5
+ parent: 407
+ type: Transform
+ - uid: 1016
+ components:
+ - pos: 6.5,15.5
+ parent: 407
+ type: Transform
+ - uid: 1017
+ components:
+ - pos: 6.5,14.5
+ parent: 407
+ type: Transform
+ - uid: 1018
+ components:
+ - pos: 6.5,13.5
+ parent: 407
+ type: Transform
+ - uid: 1019
+ components:
+ - pos: 6.5,12.5
+ parent: 407
+ type: Transform
+ - uid: 1020
+ components:
+ - pos: 6.5,11.5
+ parent: 407
+ type: Transform
+ - uid: 1021
+ components:
+ - pos: 6.5,10.5
+ parent: 407
+ type: Transform
+ - uid: 1022
+ components:
+ - pos: 6.5,9.5
+ parent: 407
+ type: Transform
+ - uid: 1023
+ components:
+ - pos: 6.5,8.5
+ parent: 407
+ type: Transform
+ - uid: 1024
+ components:
+ - pos: 6.5,7.5
+ parent: 407
+ type: Transform
+ - uid: 2186
+ components:
+ - pos: 5.5,-6.5
+ parent: 407
+ type: Transform
+ - uid: 2187
+ components:
+ - pos: 5.5,-7.5
+ parent: 407
+ type: Transform
+ - uid: 2188
+ components:
+ - pos: 5.5,-8.5
+ parent: 407
+ type: Transform
+ - uid: 2189
+ components:
+ - pos: 6.5,-8.5
+ parent: 407
+ type: Transform
+ - uid: 2190
+ components:
+ - pos: 7.5,-8.5
+ parent: 407
+ type: Transform
+ - uid: 2191
+ components:
+ - pos: 8.5,-8.5
+ parent: 407
+ type: Transform
+ - uid: 2192
+ components:
+ - pos: 9.5,-8.5
+ parent: 407
+ type: Transform
+ - uid: 2193
+ components:
+ - pos: 10.5,-8.5
+ parent: 407
+ type: Transform
+- proto: CableHV
+ entities:
+ - uid: 243
+ components:
+ - pos: 22.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 412
+ components:
+ - pos: -21.5,-0.5
+ parent: 407
+ type: Transform
+ - uid: 413
+ components:
+ - pos: -22.5,-0.5
+ parent: 407
+ type: Transform
+ - uid: 414
+ components:
+ - pos: -23.5,-0.5
+ parent: 407
+ type: Transform
+ - uid: 415
+ components:
+ - pos: -23.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 416
+ components:
+ - pos: -23.5,1.5
+ parent: 407
+ type: Transform
+ - uid: 417
+ components:
+ - pos: -22.5,1.5
+ parent: 407
+ type: Transform
+ - uid: 418
+ components:
+ - pos: -21.5,1.5
+ parent: 407
+ type: Transform
+ - uid: 419
+ components:
+ - pos: -21.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 420
+ components:
+ - pos: -22.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 421
+ components:
+ - pos: -22.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 422
+ components:
+ - pos: -22.5,3.5
+ parent: 407
+ type: Transform
+ - uid: 423
+ components:
+ - pos: -21.5,3.5
+ parent: 407
+ type: Transform
+ - uid: 424
+ components:
+ - pos: -20.5,3.5
+ parent: 407
+ type: Transform
+ - uid: 425
+ components:
+ - pos: -19.5,3.5
+ parent: 407
+ type: Transform
+ - uid: 427
+ components:
+ - pos: -18.5,3.5
+ parent: 407
+ type: Transform
+ - uid: 428
+ components:
+ - pos: -18.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 429
+ components:
+ - pos: -18.5,1.5
+ parent: 407
+ type: Transform
+ - uid: 430
+ components:
+ - pos: -18.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 431
+ components:
+ - pos: -18.5,-0.5
+ parent: 407
+ type: Transform
+ - uid: 432
+ components:
+ - pos: -18.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 433
+ components:
+ - pos: -18.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 434
+ components:
+ - pos: -18.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 435
+ components:
+ - pos: -19.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 436
+ components:
+ - pos: -17.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 437
+ components:
+ - pos: -16.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 438
+ components:
+ - pos: -15.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 439
+ components:
+ - pos: -14.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 440
+ components:
+ - pos: -13.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 441
+ components:
+ - pos: -12.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 442
+ components:
+ - pos: -11.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 443
+ components:
+ - pos: -10.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 444
+ components:
+ - pos: -9.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 445
+ components:
+ - pos: -8.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 446
+ components:
+ - pos: -7.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 447
+ components:
+ - pos: -6.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 448
+ components:
+ - pos: -5.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 449
+ components:
+ - pos: -4.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 450
+ components:
+ - pos: -3.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 451
+ components:
+ - pos: -2.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 452
+ components:
+ - pos: -1.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 453
+ components:
+ - pos: -1.5,1.5
+ parent: 407
+ type: Transform
+ - uid: 454
+ components:
+ - pos: -1.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 455
+ components:
+ - pos: -1.5,3.5
+ parent: 407
+ type: Transform
+ - uid: 456
+ components:
+ - pos: -1.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 457
+ components:
+ - pos: -1.5,5.5
+ parent: 407
+ type: Transform
+ - uid: 458
+ components:
+ - pos: -1.5,6.5
+ parent: 407
+ type: Transform
+ - uid: 459
+ components:
+ - pos: -1.5,7.5
+ parent: 407
+ type: Transform
+ - uid: 460
+ components:
+ - pos: -2.5,7.5
+ parent: 407
+ type: Transform
+ - uid: 461
+ components:
+ - pos: -3.5,7.5
+ parent: 407
+ type: Transform
+ - uid: 462
+ components:
+ - pos: -4.5,7.5
+ parent: 407
+ type: Transform
+ - uid: 463
+ components:
+ - pos: -5.5,7.5
+ parent: 407
+ type: Transform
+ - uid: 464
+ components:
+ - pos: -6.5,7.5
+ parent: 407
+ type: Transform
+ - uid: 465
+ components:
+ - pos: -1.5,-0.5
+ parent: 407
+ type: Transform
+ - uid: 466
+ components:
+ - pos: -1.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 467
+ components:
+ - pos: -1.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 468
+ components:
+ - pos: -1.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 469
+ components:
+ - pos: -1.5,-4.5
+ parent: 407
+ type: Transform
+ - uid: 470
+ components:
+ - pos: -1.5,-5.5
+ parent: 407
+ type: Transform
+ - uid: 471
+ components:
+ - pos: -1.5,-6.5
+ parent: 407
+ type: Transform
+ - uid: 472
+ components:
+ - pos: -0.5,-6.5
+ parent: 407
+ type: Transform
+ - uid: 473
+ components:
+ - pos: 0.5,-6.5
+ parent: 407
+ type: Transform
+ - uid: 474
+ components:
+ - pos: 1.5,-6.5
+ parent: 407
+ type: Transform
+ - uid: 475
+ components:
+ - pos: 2.5,-6.5
+ parent: 407
+ type: Transform
+ - uid: 476
+ components:
+ - pos: 2.5,-7.5
+ parent: 407
+ type: Transform
+ - uid: 477
+ components:
+ - pos: 2.5,-8.5
+ parent: 407
+ type: Transform
+ - uid: 478
+ components:
+ - pos: 2.5,-9.5
+ parent: 407
+ type: Transform
+ - uid: 479
+ components:
+ - pos: -0.5,5.5
+ parent: 407
+ type: Transform
+ - uid: 480
+ components:
+ - pos: 0.5,5.5
+ parent: 407
+ type: Transform
+ - uid: 481
+ components:
+ - pos: 1.5,5.5
+ parent: 407
+ type: Transform
+ - uid: 482
+ components:
+ - pos: 2.5,5.5
+ parent: 407
+ type: Transform
+ - uid: 483
+ components:
+ - pos: 3.5,5.5
+ parent: 407
+ type: Transform
+ - uid: 484
+ components:
+ - pos: 4.5,5.5
+ parent: 407
+ type: Transform
+ - uid: 485
+ components:
+ - pos: 5.5,5.5
+ parent: 407
+ type: Transform
+ - uid: 486
+ components:
+ - pos: 6.5,5.5
+ parent: 407
+ type: Transform
+ - uid: 487
+ components:
+ - pos: 7.5,5.5
+ parent: 407
+ type: Transform
+ - uid: 488
+ components:
+ - pos: 8.5,5.5
+ parent: 407
+ type: Transform
+ - uid: 489
+ components:
+ - pos: 8.5,6.5
+ parent: 407
+ type: Transform
+ - uid: 490
+ components:
+ - pos: 8.5,7.5
+ parent: 407
+ type: Transform
+ - uid: 491
+ components:
+ - pos: 9.5,7.5
+ parent: 407
+ type: Transform
+ - uid: 492
+ components:
+ - pos: 10.5,7.5
+ parent: 407
+ type: Transform
+ - uid: 493
+ components:
+ - pos: 11.5,7.5
+ parent: 407
+ type: Transform
+ - uid: 494
+ components:
+ - pos: 8.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 495
+ components:
+ - pos: 9.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 496
+ components:
+ - pos: 10.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 497
+ components:
+ - pos: 11.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 498
+ components:
+ - pos: 12.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 499
+ components:
+ - pos: 13.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 500
+ components:
+ - pos: 14.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 501
+ components:
+ - pos: 15.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 502
+ components:
+ - pos: 16.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 503
+ components:
+ - pos: 16.5,3.5
+ parent: 407
+ type: Transform
+ - uid: 504
+ components:
+ - pos: 16.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 505
+ components:
+ - pos: 16.5,1.5
+ parent: 407
+ type: Transform
+ - uid: 506
+ components:
+ - pos: 16.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 507
+ components:
+ - pos: 17.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 508
+ components:
+ - pos: 18.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 509
+ components:
+ - pos: 19.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 510
+ components:
+ - pos: 20.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 511
+ components:
+ - pos: 21.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 512
+ components:
+ - pos: 21.5,1.5
+ parent: 407
+ type: Transform
+ - uid: 513
+ components:
+ - pos: 21.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 514
+ components:
+ - pos: 21.5,3.5
+ parent: 407
+ type: Transform
+ - uid: 515
+ components:
+ - pos: 21.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 516
+ components:
+ - pos: 15.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 517
+ components:
+ - pos: 14.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 518
+ components:
+ - pos: 13.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 519
+ components:
+ - pos: 12.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 520
+ components:
+ - pos: 11.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 521
+ components:
+ - pos: 11.5,-0.5
+ parent: 407
+ type: Transform
+ - uid: 522
+ components:
+ - pos: 11.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 523
+ components:
+ - pos: 11.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 524
+ components:
+ - pos: 4.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 525
+ components:
+ - pos: 5.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 526
+ components:
+ - pos: 6.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 527
+ components:
+ - pos: 7.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 528
+ components:
+ - pos: 8.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 529
+ components:
+ - pos: 9.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 531
+ components:
+ - pos: 10.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 532
+ components:
+ - pos: 3.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 533
+ components:
+ - pos: 3.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 534
+ components:
+ - pos: 3.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 535
+ components:
+ - pos: 3.5,-0.5
+ parent: 407
+ type: Transform
+ - uid: 536
+ components:
+ - pos: 3.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 537
+ components:
+ - pos: 2.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 538
+ components:
+ - pos: 1.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 539
+ components:
+ - pos: 0.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 540
+ components:
+ - pos: -0.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 541
+ components:
+ - pos: 3.5,-6.5
+ parent: 407
+ type: Transform
+ - uid: 542
+ components:
+ - pos: 3.5,-5.5
+ parent: 407
+ type: Transform
+ - uid: 543
+ components:
+ - pos: 3.5,-4.5
+ parent: 407
+ type: Transform
+ - uid: 544
+ components:
+ - pos: -17.5,3.5
+ parent: 407
+ type: Transform
+ - uid: 545
+ components:
+ - pos: -17.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 546
+ components:
+ - pos: -17.5,5.5
+ parent: 407
+ type: Transform
+ - uid: 547
+ components:
+ - pos: -17.5,6.5
+ parent: 407
+ type: Transform
+ - uid: 548
+ components:
+ - pos: -17.5,7.5
+ parent: 407
+ type: Transform
+ - uid: 549
+ components:
+ - pos: -17.5,8.5
+ parent: 407
+ type: Transform
+ - uid: 550
+ components:
+ - pos: -16.5,8.5
+ parent: 407
+ type: Transform
+ - uid: 551
+ components:
+ - pos: -15.5,8.5
+ parent: 407
+ type: Transform
+ - uid: 552
+ components:
+ - pos: -14.5,8.5
+ parent: 407
+ type: Transform
+ - uid: 553
+ components:
+ - pos: -14.5,7.5
+ parent: 407
+ type: Transform
+ - uid: 554
+ components:
+ - pos: -13.5,7.5
+ parent: 407
+ type: Transform
+ - uid: 555
+ components:
+ - pos: -12.5,7.5
+ parent: 407
+ type: Transform
+ - uid: 556
+ components:
+ - pos: -11.5,7.5
+ parent: 407
+ type: Transform
+ - uid: 557
+ components:
+ - pos: -10.5,7.5
+ parent: 407
+ type: Transform
+ - uid: 558
+ components:
+ - pos: -9.5,7.5
+ parent: 407
+ type: Transform
+ - uid: 559
+ components:
+ - pos: -8.5,7.5
+ parent: 407
+ type: Transform
+ - uid: 560
+ components:
+ - pos: -7.5,7.5
+ parent: 407
+ type: Transform
+ - uid: 561
+ components:
+ - pos: -6.5,7.5
+ parent: 407
+ type: Transform
+ - uid: 1737
+ components:
+ - pos: -23.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 1747
+ components:
+ - pos: -23.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 2082
+ components:
+ - pos: -20.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 2088
+ components:
+ - pos: 23.5,4.5
+ parent: 407
+ type: Transform
+- proto: CableMV
+ entities:
+ - uid: 530
+ components:
+ - pos: 11.5,7.5
+ parent: 407
+ type: Transform
+ - uid: 562
+ components:
+ - pos: -21.5,3.5
+ parent: 407
+ type: Transform
+ - uid: 563
+ components:
+ - pos: -20.5,3.5
+ parent: 407
+ type: Transform
+ - uid: 564
+ components:
+ - pos: -19.5,3.5
+ parent: 407
+ type: Transform
+ - uid: 565
+ components:
+ - pos: -18.5,3.5
+ parent: 407
+ type: Transform
+ - uid: 566
+ components:
+ - pos: -18.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 567
+ components:
+ - pos: -18.5,5.5
+ parent: 407
+ type: Transform
+ - uid: 568
+ components:
+ - pos: -18.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 569
+ components:
+ - pos: -18.5,1.5
+ parent: 407
+ type: Transform
+ - uid: 570
+ components:
+ - pos: -18.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 571
+ components:
+ - pos: -18.5,-0.5
+ parent: 407
+ type: Transform
+ - uid: 572
+ components:
+ - pos: -18.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 573
+ components:
+ - pos: -19.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 574
+ components:
+ - pos: -20.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 575
+ components:
+ - pos: -20.5,1.5
+ parent: 407
+ type: Transform
+ - uid: 576
+ components:
+ - pos: -20.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 577
+ components:
+ - pos: -21.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 578
+ components:
+ - pos: -22.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 579
+ components:
+ - pos: -23.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 580
+ components:
+ - pos: -24.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 581
+ components:
+ - pos: -24.5,-0.5
+ parent: 407
+ type: Transform
+ - uid: 582
+ components:
+ - pos: -24.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 583
+ components:
+ - pos: -24.5,1.5
+ parent: 407
+ type: Transform
+ - uid: 584
+ components:
+ - pos: -24.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 585
+ components:
+ - pos: -19.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 586
+ components:
+ - pos: -7.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 587
+ components:
+ - pos: -7.5,-0.5
+ parent: 407
+ type: Transform
+ - uid: 588
+ components:
+ - pos: -7.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 589
+ components:
+ - pos: -6.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 590
+ components:
+ - pos: -6.5,1.5
+ parent: 407
+ type: Transform
+ - uid: 591
+ components:
+ - pos: -6.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 592
+ components:
+ - pos: -5.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 593
+ components:
+ - pos: -4.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 594
+ components:
+ - pos: -3.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 595
+ components:
+ - pos: -2.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 596
+ components:
+ - pos: -1.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 597
+ components:
+ - pos: -1.5,1.5
+ parent: 407
+ type: Transform
+ - uid: 598
+ components:
+ - pos: -1.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 599
+ components:
+ - pos: -1.5,3.5
+ parent: 407
+ type: Transform
+ - uid: 600
+ components:
+ - pos: -1.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 601
+ components:
+ - pos: -1.5,5.5
+ parent: 407
+ type: Transform
+ - uid: 602
+ components:
+ - pos: -1.5,6.5
+ parent: 407
+ type: Transform
+ - uid: 603
+ components:
+ - pos: -1.5,7.5
+ parent: 407
+ type: Transform
+ - uid: 604
+ components:
+ - pos: -2.5,7.5
+ parent: 407
+ type: Transform
+ - uid: 605
+ components:
+ - pos: -2.5,6.5
+ parent: 407
+ type: Transform
+ - uid: 606
+ components:
+ - pos: -3.5,7.5
+ parent: 407
+ type: Transform
+ - uid: 607
+ components:
+ - pos: -4.5,7.5
+ parent: 407
+ type: Transform
+ - uid: 608
+ components:
+ - pos: -5.5,7.5
+ parent: 407
+ type: Transform
+ - uid: 609
+ components:
+ - pos: -6.5,7.5
+ parent: 407
+ type: Transform
+ - uid: 610
+ components:
+ - pos: -7.5,7.5
+ parent: 407
+ type: Transform
+ - uid: 611
+ components:
+ - pos: -8.5,7.5
+ parent: 407
+ type: Transform
+ - uid: 612
+ components:
+ - pos: -8.5,6.5
+ parent: 407
+ type: Transform
+ - uid: 613
+ components:
+ - pos: -8.5,5.5
+ parent: 407
+ type: Transform
+ - uid: 614
+ components:
+ - pos: -8.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 615
+ components:
+ - pos: -8.5,3.5
+ parent: 407
+ type: Transform
+ - uid: 616
+ components:
+ - pos: -8.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 617
+ components:
+ - pos: -8.5,1.5
+ parent: 407
+ type: Transform
+ - uid: 618
+ components:
+ - pos: -8.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 619
+ components:
+ - pos: -9.5,6.5
+ parent: 407
+ type: Transform
+ - uid: 620
+ components:
+ - pos: 2.5,-9.5
+ parent: 407
+ type: Transform
+ - uid: 621
+ components:
+ - pos: 2.5,-8.5
+ parent: 407
+ type: Transform
+ - uid: 622
+ components:
+ - pos: 2.5,-7.5
+ parent: 407
+ type: Transform
+ - uid: 623
+ components:
+ - pos: 3.5,-7.5
+ parent: 407
+ type: Transform
+ - uid: 624
+ components:
+ - pos: 4.5,-7.5
+ parent: 407
+ type: Transform
+ - uid: 625
+ components:
+ - pos: 4.5,-8.5
+ parent: 407
+ type: Transform
+ - uid: 626
+ components:
+ - pos: 4.5,-9.5
+ parent: 407
+ type: Transform
+ - uid: 627
+ components:
+ - pos: 2.5,-6.5
+ parent: 407
+ type: Transform
+ - uid: 628
+ components:
+ - pos: 1.5,-6.5
+ parent: 407
+ type: Transform
+ - uid: 629
+ components:
+ - pos: 0.5,-6.5
+ parent: 407
+ type: Transform
+ - uid: 630
+ components:
+ - pos: -0.5,-6.5
+ parent: 407
+ type: Transform
+ - uid: 631
+ components:
+ - pos: -1.5,-6.5
+ parent: 407
+ type: Transform
+ - uid: 632
+ components:
+ - pos: -1.5,-5.5
+ parent: 407
+ type: Transform
+ - uid: 633
+ components:
+ - pos: -2.5,-5.5
+ parent: 407
+ type: Transform
+ - uid: 634
+ components:
+ - pos: 3.5,-6.5
+ parent: 407
+ type: Transform
+ - uid: 635
+ components:
+ - pos: 3.5,-5.5
+ parent: 407
+ type: Transform
+ - uid: 636
+ components:
+ - pos: 3.5,-4.5
+ parent: 407
+ type: Transform
+ - uid: 637
+ components:
+ - pos: 3.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 638
+ components:
+ - pos: 3.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 639
+ components:
+ - pos: 4.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 640
+ components:
+ - pos: 5.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 641
+ components:
+ - pos: 6.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 642
+ components:
+ - pos: 7.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 643
+ components:
+ - pos: 8.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 644
+ components:
+ - pos: 9.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 645
+ components:
+ - pos: 9.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 646
+ components:
+ - pos: 10.5,7.5
+ parent: 407
+ type: Transform
+ - uid: 647
+ components:
+ - pos: 9.5,7.5
+ parent: 407
+ type: Transform
+ - uid: 648
+ components:
+ - pos: 8.5,7.5
+ parent: 407
+ type: Transform
+ - uid: 649
+ components:
+ - pos: 7.5,7.5
+ parent: 407
+ type: Transform
+ - uid: 650
+ components:
+ - pos: 7.5,6.5
+ parent: 407
+ type: Transform
+ - uid: 651
+ components:
+ - pos: 7.5,5.5
+ parent: 407
+ type: Transform
+ - uid: 652
+ components:
+ - pos: 6.5,5.5
+ parent: 407
+ type: Transform
+ - uid: 653
+ components:
+ - pos: 5.5,5.5
+ parent: 407
+ type: Transform
+ - uid: 654
+ components:
+ - pos: 4.5,5.5
+ parent: 407
+ type: Transform
+ - uid: 655
+ components:
+ - pos: 4.5,6.5
+ parent: 407
+ type: Transform
+ - uid: 656
+ components:
+ - pos: 7.5,8.5
+ parent: 407
+ type: Transform
+ - uid: 657
+ components:
+ - pos: 7.5,9.5
+ parent: 407
+ type: Transform
+ - uid: 658
+ components:
+ - pos: 7.5,10.5
+ parent: 407
+ type: Transform
+ - uid: 659
+ components:
+ - pos: 7.5,11.5
+ parent: 407
+ type: Transform
+ - uid: 660
+ components:
+ - pos: 7.5,12.5
+ parent: 407
+ type: Transform
+ - uid: 661
+ components:
+ - pos: 7.5,13.5
+ parent: 407
+ type: Transform
+ - uid: 662
+ components:
+ - pos: 7.5,14.5
+ parent: 407
+ type: Transform
+ - uid: 663
+ components:
+ - pos: 7.5,15.5
+ parent: 407
+ type: Transform
+ - uid: 664
+ components:
+ - pos: 7.5,16.5
+ parent: 407
+ type: Transform
+ - uid: 665
+ components:
+ - pos: 8.5,16.5
+ parent: 407
+ type: Transform
+ - uid: 666
+ components:
+ - pos: 9.5,16.5
+ parent: 407
+ type: Transform
+ - uid: 667
+ components:
+ - pos: 9.5,17.5
+ parent: 407
+ type: Transform
+ - uid: 668
+ components:
+ - pos: 21.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 669
+ components:
+ - pos: 21.5,3.5
+ parent: 407
+ type: Transform
+ - uid: 670
+ components:
+ - pos: 21.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 671
+ components:
+ - pos: 20.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 672
+ components:
+ - pos: 21.5,1.5
+ parent: 407
+ type: Transform
+ - uid: 673
+ components:
+ - pos: 21.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 674
+ components:
+ - pos: 20.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 675
+ components:
+ - pos: 19.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 677
+ components:
+ - pos: 17.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 678
+ components:
+ - pos: 17.5,1.5
+ parent: 407
+ type: Transform
+ - uid: 679
+ components:
+ - pos: 17.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 680
+ components:
+ - pos: -18.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 681
+ components:
+ - pos: -18.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 682
+ components:
+ - pos: -19.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 1361
+ components:
+ - pos: 18.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 2170
+ components:
+ - pos: -0.5,5.5
+ parent: 407
+ type: Transform
+ - uid: 2171
+ components:
+ - pos: 0.5,5.5
+ parent: 407
+ type: Transform
+ - uid: 2172
+ components:
+ - pos: 0.5,6.5
+ parent: 407
+ type: Transform
+ - uid: 2173
+ components:
+ - pos: 0.5,7.5
+ parent: 407
+ type: Transform
+ - uid: 2174
+ components:
+ - pos: 0.5,8.5
+ parent: 407
+ type: Transform
+ - uid: 2175
+ components:
+ - pos: 0.5,9.5
+ parent: 407
+ type: Transform
+ - uid: 2176
+ components:
+ - pos: 0.5,10.5
+ parent: 407
+ type: Transform
+ - uid: 2177
+ components:
+ - pos: 0.5,11.5
+ parent: 407
+ type: Transform
+ - uid: 2178
+ components:
+ - pos: 0.5,12.5
+ parent: 407
+ type: Transform
+ - uid: 2179
+ components:
+ - pos: 0.5,13.5
+ parent: 407
+ type: Transform
+ - uid: 2180
+ components:
+ - pos: -0.5,13.5
+ parent: 407
+ type: Transform
+ - uid: 2181
+ components:
+ - pos: -0.5,11.5
+ parent: 407
+ type: Transform
+ - uid: 2182
+ components:
+ - pos: -1.5,11.5
+ parent: 407
+ type: Transform
+ - uid: 2183
+ components:
+ - pos: -1.5,10.5
+ parent: 407
+ type: Transform
+ - uid: 2184
+ components:
+ - pos: -1.5,9.5
+ parent: 407
+ type: Transform
+ - uid: 2185
+ components:
+ - pos: -1.5,8.5
+ parent: 407
+ type: Transform
+- proto: CableTerminal
+ entities:
+ - uid: 426
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -22.5,2.5
+ parent: 407
+ type: Transform
+- proto: Carpet
+ entities:
+ - uid: 1484
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 16.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 2129
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 15.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 2131
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 17.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 2132
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 18.5,-3.5
+ parent: 407
+ type: Transform
+- proto: CarpetBlue
+ entities:
+ - uid: 1893
+ components:
+ - pos: 22.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 1894
+ components:
+ - pos: 23.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 1895
+ components:
+ - pos: 24.5,-3.5
+ parent: 407
+ type: Transform
+- proto: CarpetGreen
+ entities:
+ - uid: 1764
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -6.5,-4.5
+ parent: 407
+ type: Transform
+ - uid: 1765
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -6.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 1766
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -6.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 1767
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -5.5,-4.5
+ parent: 407
+ type: Transform
+ - uid: 1768
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -5.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 1769
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -5.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 1770
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -4.5,-4.5
+ parent: 407
+ type: Transform
+ - uid: 1771
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -4.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 1772
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -4.5,-2.5
+ parent: 407
+ type: Transform
+- proto: CarpetSBlue
+ entities:
+ - uid: 1675
+ components:
+ - pos: -14.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 1676
+ components:
+ - pos: -14.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 1677
+ components:
+ - pos: -14.5,-4.5
+ parent: 407
+ type: Transform
+ - uid: 1678
+ components:
+ - pos: -13.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 1679
+ components:
+ - pos: -13.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 1680
+ components:
+ - pos: -13.5,-4.5
+ parent: 407
+ type: Transform
+ - uid: 1681
+ components:
+ - pos: -12.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 1682
+ components:
+ - pos: -12.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 1683
+ components:
+ - pos: -12.5,-4.5
+ parent: 407
+ type: Transform
+ - uid: 1684
+ components:
+ - pos: -10.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 1685
+ components:
+ - pos: -10.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 1686
+ components:
+ - pos: -10.5,-4.5
+ parent: 407
+ type: Transform
+ - uid: 1687
+ components:
+ - pos: -9.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 1688
+ components:
+ - pos: -9.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 1689
+ components:
+ - pos: -9.5,-4.5
+ parent: 407
+ type: Transform
+ - uid: 1690
+ components:
+ - pos: -8.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 1691
+ components:
+ - pos: -8.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 1692
+ components:
+ - pos: -8.5,-4.5
+ parent: 407
+ type: Transform
+ - uid: 2034
+ components:
+ - pos: 7.5,7.5
+ parent: 407
+ type: Transform
+ - uid: 2035
+ components:
+ - pos: 7.5,8.5
+ parent: 407
+ type: Transform
+ - uid: 2036
+ components:
+ - pos: 7.5,9.5
+ parent: 407
+ type: Transform
+ - uid: 2037
+ components:
+ - pos: 7.5,10.5
+ parent: 407
+ type: Transform
+ - uid: 2038
+ components:
+ - pos: 7.5,11.5
+ parent: 407
+ type: Transform
+ - uid: 2039
+ components:
+ - pos: 7.5,12.5
+ parent: 407
+ type: Transform
+ - uid: 2040
+ components:
+ - pos: 7.5,13.5
+ parent: 407
+ type: Transform
+ - uid: 2041
+ components:
+ - pos: 7.5,14.5
+ parent: 407
+ type: Transform
+ - uid: 2042
+ components:
+ - pos: 7.5,15.5
+ parent: 407
+ type: Transform
+ - uid: 2043
+ components:
+ - pos: 7.5,16.5
+ parent: 407
+ type: Transform
+ - uid: 2044
+ components:
+ - pos: 8.5,16.5
+ parent: 407
+ type: Transform
+ - uid: 2045
+ components:
+ - pos: 6.5,16.5
+ parent: 407
+ type: Transform
+ - uid: 2046
+ components:
+ - pos: 6.5,14.5
+ parent: 407
+ type: Transform
+ - uid: 2047
+ components:
+ - pos: 8.5,14.5
+ parent: 407
+ type: Transform
+ - uid: 2048
+ components:
+ - pos: 8.5,12.5
+ parent: 407
+ type: Transform
+ - uid: 2049
+ components:
+ - pos: 6.5,12.5
+ parent: 407
+ type: Transform
+ - uid: 2050
+ components:
+ - pos: 6.5,10.5
+ parent: 407
+ type: Transform
+ - uid: 2051
+ components:
+ - pos: 8.5,10.5
+ parent: 407
+ type: Transform
+ - uid: 2052
+ components:
+ - pos: 8.5,8.5
+ parent: 407
+ type: Transform
+ - uid: 2053
+ components:
+ - pos: 6.5,8.5
+ parent: 407
+ type: Transform
+- proto: Catwalk
+ entities:
+ - uid: 1122
+ components:
+ - pos: -30.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 1123
+ components:
+ - pos: -29.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 1124
+ components:
+ - pos: -28.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 1125
+ components:
+ - pos: -27.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 1126
+ components:
+ - pos: -26.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 1127
+ components:
+ - pos: -25.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 1128
+ components:
+ - pos: -25.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 1129
+ components:
+ - pos: -25.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 1130
+ components:
+ - pos: -25.5,-0.5
+ parent: 407
+ type: Transform
+ - uid: 1131
+ components:
+ - pos: -25.5,1.5
+ parent: 407
+ type: Transform
+ - uid: 1132
+ components:
+ - pos: -25.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 1133
+ components:
+ - pos: -25.5,3.5
+ parent: 407
+ type: Transform
+ - uid: 1134
+ components:
+ - pos: -25.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 1135
+ components:
+ - pos: -24.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 1136
+ components:
+ - pos: -24.5,5.5
+ parent: 407
+ type: Transform
+ - uid: 1137
+ components:
+ - pos: -23.5,5.5
+ parent: 407
+ type: Transform
+ - uid: 1138
+ components:
+ - pos: -22.5,5.5
+ parent: 407
+ type: Transform
+ - uid: 1139
+ components:
+ - pos: -21.5,5.5
+ parent: 407
+ type: Transform
+ - uid: 1140
+ components:
+ - pos: -21.5,6.5
+ parent: 407
+ type: Transform
+ - uid: 1141
+ components:
+ - pos: -20.5,6.5
+ parent: 407
+ type: Transform
+ - uid: 1142
+ components:
+ - pos: -19.5,6.5
+ parent: 407
+ type: Transform
+ - uid: 1143
+ components:
+ - pos: -19.5,7.5
+ parent: 407
+ type: Transform
+ - uid: 1144
+ components:
+ - pos: -19.5,8.5
+ parent: 407
+ type: Transform
+ - uid: 1145
+ components:
+ - pos: -18.5,8.5
+ parent: 407
+ type: Transform
+ - uid: 1146
+ components:
+ - pos: -17.5,8.5
+ parent: 407
+ type: Transform
+ - uid: 1147
+ components:
+ - pos: -16.5,8.5
+ parent: 407
+ type: Transform
+ - uid: 1808
+ components:
+ - pos: -18.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 1809
+ components:
+ - pos: -17.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 1810
+ components:
+ - pos: -16.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 1836
+ components:
+ - pos: 2.5,-6.5
+ parent: 407
+ type: Transform
+ - uid: 1837
+ components:
+ - pos: 3.5,-6.5
+ parent: 407
+ type: Transform
+ - uid: 1838
+ components:
+ - pos: 4.5,-6.5
+ parent: 407
+ type: Transform
+ - uid: 1839
+ components:
+ - pos: 5.5,-6.5
+ parent: 407
+ type: Transform
+ - uid: 1840
+ components:
+ - pos: 6.5,-6.5
+ parent: 407
+ type: Transform
+ - uid: 1841
+ components:
+ - pos: 7.5,-6.5
+ parent: 407
+ type: Transform
+ - uid: 1842
+ components:
+ - pos: 8.5,-6.5
+ parent: 407
+ type: Transform
+- proto: Chair
+ entities:
+ - uid: 1564
+ components:
+ - pos: -1.5,-11.5
+ parent: 407
+ type: Transform
+ - uid: 1565
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -0.5,-12.5
+ parent: 407
+ type: Transform
+ - uid: 1753
+ components:
+ - pos: 2.5,1.5
+ parent: 407
+ type: Transform
+ - uid: 1754
+ components:
+ - pos: 4.5,1.5
+ parent: 407
+ type: Transform
+ - uid: 2194
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 8.5,3.5
+ parent: 407
+ type: Transform
+ - uid: 2195
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 6.5,3.5
+ parent: 407
+ type: Transform
+ - uid: 2196
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 12.5,3.5
+ parent: 407
+ type: Transform
+ - uid: 2197
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 10.5,3.5
+ parent: 407
+ type: Transform
+ - uid: 2198
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 2.5,3.5
+ parent: 407
+ type: Transform
+ - uid: 2199
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 4.5,3.5
+ parent: 407
+ type: Transform
+- proto: ChairFolding
+ entities:
+ - uid: 1849
+ components:
+ - pos: 6.5,-7.5
+ parent: 407
+ type: Transform
+ - uid: 1850
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 7.5,-8.5
+ parent: 407
+ type: Transform
+- proto: ChairOfficeDark
+ entities:
+ - uid: 2000
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -1.5,9.5
+ parent: 407
+ type: Transform
+ - uid: 2013
+ components:
+ - pos: 2.5,7.5
+ parent: 407
+ type: Transform
+ - uid: 2014
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 2.5,10.5
+ parent: 407
+ type: Transform
+ - uid: 2105
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 19.5,-3.5
+ parent: 407
+ type: Transform
+- proto: ChairOfficeLight
+ entities:
+ - uid: 1738
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 7.5,0.5
+ parent: 407
+ type: Transform
+- proto: ChairPilotSeat
+ entities:
+ - uid: 1806
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 25.5,1.5
+ parent: 407
+ type: Transform
+ - uid: 1819
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -16.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 1825
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 25.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 2054
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 10.5,16.5
+ parent: 407
+ type: Transform
+ - uid: 2055
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 4.5,15.5
+ parent: 407
+ type: Transform
+ - uid: 2056
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 4.5,16.5
+ parent: 407
+ type: Transform
+ - uid: 2138
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 24.5,3.5
+ parent: 407
+ type: Transform
+ - uid: 2139
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 21.5,-0.5
+ parent: 407
+ type: Transform
+ - uid: 2140
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 21.5,1.5
+ parent: 407
+ type: Transform
+ - uid: 2141
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 21.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 2142
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 23.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 2143
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 23.5,1.5
+ parent: 407
+ type: Transform
+ - uid: 2144
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 23.5,-0.5
+ parent: 407
+ type: Transform
+- proto: chem_master
+ entities:
+ - uid: 1732
+ components:
+ - pos: 6.5,1.5
+ parent: 407
+ type: Transform
+- proto: ChemDispenser
+ entities:
+ - uid: 1733
+ components:
+ - pos: 7.5,1.5
+ parent: 407
+ type: Transform
+- proto: ChemistryHotplate
+ entities:
+ - uid: 365
+ components:
+ - pos: 11.5,1.5
+ parent: 407
+ type: Transform
+- proto: ClosetChefFilled
+ entities:
+ - uid: 1655
+ components:
+ - pos: -4.5,5.5
+ parent: 407
+ type: Transform
+- proto: ClosetEmergencyFilledRandom
+ entities:
+ - uid: 1846
+ components:
+ - pos: 4.5,-8.5
+ parent: 407
+ type: Transform
+ - uid: 1847
+ components:
+ - pos: 5.5,-8.5
+ parent: 407
+ type: Transform
+ - uid: 2015
+ components:
+ - pos: 11.5,12.5
+ parent: 407
+ type: Transform
+- proto: ClosetFireFilled
+ entities:
+ - uid: 2016
+ components:
+ - pos: 11.5,11.5
+ parent: 407
+ type: Transform
+- proto: ClosetJanitorFilled
+ entities:
+ - uid: 1659
+ components:
+ - pos: -3.5,-6.5
+ parent: 407
+ type: Transform
+ - containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 1660
+ - 1661
+ - 1662
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ type: ContainerContainer
+- proto: ClosetL3SecurityFilled
+ entities:
+ - uid: 1908
+ components:
+ - pos: 14.5,-4.5
+ parent: 407
+ type: Transform
+- proto: ClosetRadiationSuitFilled
+ entities:
+ - uid: 2107
+ components:
+ - pos: -18.5,-0.5
+ parent: 407
+ type: Transform
+- proto: ClosetToolFilled
+ entities:
+ - uid: 1790
+ components:
+ - pos: -18.5,3.5
+ parent: 407
+ type: Transform
+- proto: ClosetWallEmergencyFilledRandom
+ entities:
+ - uid: 2017
+ components:
+ - pos: 4.5,-5.5
+ parent: 407
+ type: Transform
+ - uid: 2019
+ components:
+ - pos: -5.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 2078
+ components:
+ - pos: 11.5,6.5
+ parent: 407
+ type: Transform
+- proto: ClosetWallFireFilledRandom
+ entities:
+ - uid: 2018
+ components:
+ - pos: 5.5,-5.5
+ parent: 407
+ type: Transform
+ - uid: 2079
+ components:
+ - pos: 12.5,6.5
+ parent: 407
+ type: Transform
+- proto: ClosetWallMaintenanceFilledRandom
+ entities:
+ - uid: 2080
+ components:
+ - pos: 6.5,-5.5
+ parent: 407
+ type: Transform
+- proto: ClosetWallOrange
+ entities:
+ - uid: 1874
+ components:
+ - pos: 18.5,6.5
+ parent: 407
+ type: Transform
+- proto: ClothingBackpackERTJanitor
+ entities:
+ - uid: 1660
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 1659
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - type: InsideEntityStorage
+- proto: ClothingEyesGlassesMeson
+ entities:
+ - uid: 1797
+ components:
+ - pos: -20.396126,3.7096221
+ parent: 407
+ type: Transform
+ - uid: 1798
+ components:
+ - pos: -20.318,3.5689971
+ parent: 407
+ type: Transform
+- proto: ClothingEyesGlassesSecurity
+ entities:
+ - uid: 2121
+ components:
+ - pos: 18.517508,-2.1870496
+ parent: 407
+ type: Transform
+- proto: ClothingEyesHudMedSec
+ entities:
+ - uid: 1867
+ components:
+ - pos: 19.447674,-4.406915
+ parent: 407
+ type: Transform
+- proto: ClothingHeadsetMedicalScience
+ entities:
+ - uid: 2168
+ components:
+ - pos: -2.3716664,7.587408
+ parent: 407
+ type: Transform
+- proto: ClothingHeadsetMining
+ entities:
+ - uid: 2167
+ components:
+ - pos: 1.6413194,11.748624
+ parent: 407
+ type: Transform
+- proto: ClothingNeckCloakMiner
+ entities:
+ - uid: 1996
+ components:
+ - pos: 1.5246525,11.641014
+ parent: 407
+ type: Transform
+- proto: ClothingNeckCloakTrans
+ entities:
+ - uid: 1905
+ components:
+ - pos: 3.506415,3.5395489
+ parent: 407
+ type: Transform
+- proto: ClothingNeckLGBTPin
+ entities:
+ - uid: 1904
+ components:
+ - pos: 6.5183535,-8.5258465
+ parent: 407
+ type: Transform
+- proto: ClothingNeckStethoscope
+ entities:
+ - uid: 1898
+ components:
+ - pos: 6.4035683,-4.3785286
+ parent: 407
+ type: Transform
+- proto: ClothingOuterHardsuitERTJanitor
+ entities:
+ - uid: 1662
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 1659
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - type: InsideEntityStorage
+- proto: ClothingOuterHardsuitRd
+ entities:
+ - uid: 1981
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 1980
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - type: InsideEntityStorage
+- proto: ClothingOuterHardsuitSalvage
+ entities:
+ - uid: 1970
+ components:
+ - pos: 1.5766428,11.571795
+ parent: 407
+ type: Transform
+- proto: ClothingShoesBootsMagAdv
+ entities:
+ - uid: 1815
+ components:
+ - pos: 4.5333743,-11.7164135
+ parent: 407
+ type: Transform
+- proto: ClothingUniformJumpsuitERTJanitor
+ entities:
+ - uid: 1661
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 1659
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - type: InsideEntityStorage
+- proto: ComfyChair
+ entities:
+ - uid: 1703
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -8.5,-4.5
+ parent: 407
+ type: Transform
+ - uid: 1704
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -8.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 1705
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -8.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 1706
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -10.5,-4.5
+ parent: 407
+ type: Transform
+ - uid: 1707
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -10.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 1708
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -10.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 1709
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -12.5,-4.5
+ parent: 407
+ type: Transform
+ - uid: 1710
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -12.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 1711
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -12.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 1712
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -14.5,-4.5
+ parent: 407
+ type: Transform
+ - uid: 1713
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -14.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 1714
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -14.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 1757
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -6.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 1758
+ components:
+ - pos: -3.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 1759
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -3.5,-4.5
+ parent: 407
+ type: Transform
+ - uid: 1760
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -6.5,-4.5
+ parent: 407
+ type: Transform
+ - uid: 1761
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -4.5,-4.5
+ parent: 407
+ type: Transform
+ - uid: 1888
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 24.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 2124
+ components:
+ - pos: 16.5,5.5
+ parent: 407
+ type: Transform
+ - uid: 2125
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 16.5,3.5
+ parent: 407
+ type: Transform
+- proto: ComputerAnalysisConsole
+ entities:
+ - uid: 1986
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -2.5,10.5
+ parent: 407
+ type: Transform
+- proto: ComputerCargoOrders
+ entities:
+ - uid: 1963
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 1.5,7.5
+ parent: 407
+ type: Transform
+- proto: ComputerCargoShuttle
+ entities:
+ - uid: 1962
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 1.5,10.5
+ parent: 407
+ type: Transform
+- proto: ComputerComms
+ entities:
+ - uid: 1937
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 25.5,3.5
+ parent: 407
+ type: Transform
+- proto: ComputerCrewMonitoring
+ entities:
+ - uid: 1864
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 12.5,-1.5
+ parent: 407
+ type: Transform
+- proto: ComputerCriminalRecords
+ entities:
+ - uid: 1865
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 19.5,-0.5
+ parent: 407
+ type: Transform
+- proto: ComputerId
+ entities:
+ - uid: 1936
+ components:
+ - pos: 24.5,4.5
+ parent: 407
+ type: Transform
+- proto: ComputerMassMedia
+ entities:
+ - uid: 1832
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 26.5,1.5
+ parent: 407
+ type: Transform
+- proto: ComputerMedicalRecords
+ entities:
+ - uid: 1863
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 12.5,-0.5
+ parent: 407
+ type: Transform
+- proto: ComputerPowerMonitoring
+ entities:
+ - uid: 1935
+ components:
+ - pos: 23.5,4.5
+ parent: 407
+ type: Transform
+- proto: ComputerRadar
+ entities:
+ - uid: 1953
+ components:
+ - pos: 0.5,15.5
+ parent: 407
+ type: Transform
+ - uid: 2095
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 25.5,-0.5
+ parent: 407
+ type: Transform
+- proto: ComputerResearchAndDevelopment
+ entities:
+ - uid: 1988
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -2.5,9.5
+ parent: 407
+ type: Transform
+- proto: ComputerShuttle
+ entities:
+ - uid: 1939
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 26.5,0.5
+ parent: 407
+ type: Transform
+- proto: ComputerShuttleCargo
+ entities:
+ - uid: 1961
+ components:
+ - pos: 2.5,11.5
+ parent: 407
+ type: Transform
+- proto: ComputerStationRecords
+ entities:
+ - uid: 1639
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 18.5,-0.5
+ parent: 407
+ type: Transform
+- proto: ComputerSurveillanceCameraMonitor
+ entities:
+ - uid: 1928
+ components:
+ - pos: 19.5,-2.5
+ parent: 407
+ type: Transform
+- proto: ConveyorBelt
+ entities:
+ - uid: 1473
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 9.5,-6.5
+ parent: 407
+ type: Transform
+ - uid: 1474
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 10.5,-6.5
+ parent: 407
+ type: Transform
+ - uid: 1955
+ components:
+ - pos: 3.5,12.5
+ parent: 407
+ type: Transform
+ - uid: 1956
+ components:
+ - pos: 3.5,11.5
+ parent: 407
+ type: Transform
+ - uid: 1957
+ components:
+ - pos: 3.5,10.5
+ parent: 407
+ type: Transform
+ - uid: 1958
+ components:
+ - pos: 3.5,9.5
+ parent: 407
+ type: Transform
+ - uid: 1959
+ components:
+ - pos: 3.5,8.5
+ parent: 407
+ type: Transform
+- proto: CrateArtifactContainer
+ entities:
+ - uid: 1975
+ components:
+ - pos: -2.5,11.5
+ parent: 407
+ type: Transform
+- proto: CrateEngineeringCableBulk
+ entities:
+ - uid: 1817
+ components:
+ - pos: -16.5,-3.5
+ parent: 407
+ type: Transform
+- proto: CrateMaterialSteel
+ entities:
+ - uid: 2069
+ components:
+ - pos: -18.5,-3.5
+ parent: 407
+ type: Transform
+- proto: CrewMonitoringServer
+ entities:
+ - uid: 1862
+ components:
+ - pos: 2.5,-2.5
+ parent: 407
+ type: Transform
+- proto: DisposalBend
+ entities:
+ - uid: 1173
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -3.5,-7.5
+ parent: 407
+ type: Transform
+ - uid: 1174
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -0.5,-7.5
+ parent: 407
+ type: Transform
+ - uid: 1175
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -16.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 1194
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -1.5,-6.5
+ parent: 407
+ type: Transform
+ - uid: 1195
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -1.5,-5.5
+ parent: 407
+ type: Transform
+ - uid: 1196
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -0.5,-5.5
+ parent: 407
+ type: Transform
+ - uid: 1205
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -0.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 1206
+ components:
+ - pos: 14.5,4.5
+ parent: 407
+ type: Transform
+- proto: DisposalJunction
+ entities:
+ - uid: 1190
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -3.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 1191
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -0.5,-6.5
+ parent: 407
+ type: Transform
+ - uid: 1204
+ components:
+ - pos: -0.5,0.5
+ parent: 407
+ type: Transform
+- proto: DisposalPipe
+ entities:
+ - uid: 1157
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 8.5,-6.5
+ parent: 407
+ type: Transform
+ - uid: 1158
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 7.5,-6.5
+ parent: 407
+ type: Transform
+ - uid: 1159
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 6.5,-6.5
+ parent: 407
+ type: Transform
+ - uid: 1160
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 5.5,-6.5
+ parent: 407
+ type: Transform
+ - uid: 1161
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 4.5,-6.5
+ parent: 407
+ type: Transform
+ - uid: 1162
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 3.5,-6.5
+ parent: 407
+ type: Transform
+ - uid: 1163
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 2.5,-6.5
+ parent: 407
+ type: Transform
+ - uid: 1164
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 1.5,-6.5
+ parent: 407
+ type: Transform
+ - uid: 1165
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 0.5,-6.5
+ parent: 407
+ type: Transform
+ - uid: 1177
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -15.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 1178
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -14.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 1179
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -13.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 1180
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -12.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 1181
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -11.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 1182
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -10.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 1183
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -9.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 1184
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -8.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 1185
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -7.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 1186
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -6.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 1187
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -5.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 1188
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -4.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 1189
+ components:
+ - pos: -3.5,-0.5
+ parent: 407
+ type: Transform
+ - uid: 1192
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -2.5,-7.5
+ parent: 407
+ type: Transform
+ - uid: 1193
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -1.5,-7.5
+ parent: 407
+ type: Transform
+ - uid: 1197
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -0.5,-4.5
+ parent: 407
+ type: Transform
+ - uid: 1198
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -0.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 1199
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -0.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 1200
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -0.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 1201
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -0.5,-0.5
+ parent: 407
+ type: Transform
+ - uid: 1202
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -2.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 1203
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -1.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 1207
+ components:
+ - pos: 14.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 1208
+ components:
+ - pos: 14.5,1.5
+ parent: 407
+ type: Transform
+ - uid: 1209
+ components:
+ - pos: 14.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 1210
+ components:
+ - pos: 14.5,3.5
+ parent: 407
+ type: Transform
+ - uid: 1211
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 13.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 1212
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 12.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 1213
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 11.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 1214
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 10.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 1215
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 9.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 1216
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 8.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 1217
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 7.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 1218
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 6.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 1219
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 5.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 1220
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 4.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 1221
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 3.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 1222
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 2.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 1223
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 1.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 1224
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 0.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 1225
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -0.5,1.5
+ parent: 407
+ type: Transform
+ - uid: 1226
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -0.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 1227
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -0.5,3.5
+ parent: 407
+ type: Transform
+- proto: DisposalTrunk
+ entities:
+ - uid: 1156
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 9.5,-6.5
+ parent: 407
+ type: Transform
+ - uid: 1170
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 14.5,-0.5
+ parent: 407
+ type: Transform
+ - uid: 1171
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -3.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 1172
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -3.5,-8.5
+ parent: 407
+ type: Transform
+ - uid: 1176
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -16.5,-0.5
+ parent: 407
+ type: Transform
+- proto: DisposalUnit
+ entities:
+ - uid: 1166
+ components:
+ - pos: -3.5,-8.5
+ parent: 407
+ type: Transform
+ - uid: 1167
+ components:
+ - pos: -3.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 1168
+ components:
+ - pos: 14.5,-0.5
+ parent: 407
+ type: Transform
+ - uid: 1169
+ components:
+ - pos: -16.5,-0.5
+ parent: 407
+ type: Transform
+- proto: DogBed
+ entities:
+ - uid: 1885
+ components:
+ - pos: 21.5,-3.5
+ parent: 407
+ type: Transform
+- proto: DoorRemoteResearch
+ entities:
+ - uid: 1982
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 1980
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - type: InsideEntityStorage
+- proto: DrinkVodkaBottleFull
+ entities:
+ - uid: 1802
+ components:
+ - pos: -20.785645,3.762307
+ parent: 407
+ type: Transform
+- proto: EmergencyRollerBedSpawnFolded
+ entities:
+ - uid: 1873
+ components:
+ - pos: 2.3683515,-0.47065163
+ parent: 407
+ type: Transform
+- proto: FirelockEdge
+ entities:
+ - uid: 1632
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 4.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 1633
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 5.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 1634
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 8.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 1635
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 11.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 1717
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -13.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 1718
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -9.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 2071
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -4.5,8.5
+ parent: 407
+ type: Transform
+ - uid: 2201
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 24.5,0.5
+ parent: 407
+ type: Transform
+- proto: FirelockGlass
+ entities:
+ - uid: 1580
+ components:
+ - pos: -6.5,3.5
+ parent: 407
+ type: Transform
+ - uid: 1581
+ components:
+ - pos: -4.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 1582
+ components:
+ - pos: -10.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 1583
+ components:
+ - pos: -9.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 1584
+ components:
+ - pos: -8.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 1585
+ components:
+ - pos: 2.5,6.5
+ parent: 407
+ type: Transform
+ - uid: 1586
+ components:
+ - pos: 5.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 1587
+ components:
+ - pos: 7.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 1588
+ components:
+ - pos: 0.5,-5.5
+ parent: 407
+ type: Transform
+ - uid: 1589
+ components:
+ - pos: -0.5,-5.5
+ parent: 407
+ type: Transform
+ - uid: 1590
+ components:
+ - pos: -1.5,-5.5
+ parent: 407
+ type: Transform
+ - uid: 1591
+ components:
+ - pos: 16.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 1592
+ components:
+ - pos: 15.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 1593
+ components:
+ - pos: 14.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 1866
+ components:
+ - pos: 8.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 1901
+ components:
+ - pos: -0.5,11.5
+ parent: 407
+ type: Transform
+ - uid: 1967
+ components:
+ - pos: -0.5,10.5
+ parent: 407
+ type: Transform
+ - uid: 1989
+ components:
+ - pos: -0.5,7.5
+ parent: 407
+ type: Transform
+ - uid: 2072
+ components:
+ - pos: 0.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 2073
+ components:
+ - pos: -0.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 2074
+ components:
+ - pos: -1.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 2075
+ components:
+ - pos: 7.5,6.5
+ parent: 407
+ type: Transform
+ - uid: 2076
+ components:
+ - pos: 8.5,6.5
+ parent: 407
+ type: Transform
+ - uid: 2077
+ components:
+ - pos: 6.5,6.5
+ parent: 407
+ type: Transform
+- proto: Fireplace
+ entities:
+ - uid: 1860
+ components:
+ - pos: 23.5,-2.5
+ parent: 407
+ type: Transform
+- proto: FlashlightLantern
+ entities:
+ - uid: 1822
+ components:
+ - pos: -18.508236,2.63682
+ parent: 407
+ type: Transform
+ - uid: 1823
+ components:
+ - pos: -18.39886,2.464945
+ parent: 407
+ type: Transform
+- proto: FloorDrain
+ entities:
+ - uid: 1656
+ components:
+ - pos: -5.5,3.5
+ parent: 407
+ type: Transform
+ - fixtures: {}
+ type: Fixtures
+ - uid: 1657
+ components:
+ - pos: -5.5,-6.5
+ parent: 407
+ type: Transform
+ - fixtures: {}
+ type: Fixtures
+- proto: FoodCondimentBottleEnzyme
+ entities:
+ - uid: 1724
+ components:
+ - pos: -3.288907,3.6641934
+ parent: 407
+ type: Transform
+- proto: GasMinerNitrogen
+ entities:
+ - uid: 1257
+ components:
+ - pos: 10.5,-15.5
+ parent: 407
+ type: Transform
+- proto: GasMinerOxygen
+ entities:
+ - uid: 1256
+ components:
+ - pos: 10.5,-13.5
+ parent: 407
+ type: Transform
+- proto: GasMixer
+ entities:
+ - uid: 1264
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 7.5,-13.5
+ parent: 407
+ type: Transform
+ - inletTwoConcentration: 0.78
+ inletOneConcentration: 0.22
+ type: GasMixer
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+- proto: GasMixerFlipped
+ entities:
+ - uid: 1529
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 5.5,-14.5
+ parent: 407
+ type: Transform
+- proto: GasPassiveVent
+ entities:
+ - uid: 1538
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 2.5,-15.5
+ parent: 407
+ type: Transform
+- proto: GasPipeBend
+ entities:
+ - uid: 1265
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 7.5,-15.5
+ parent: 407
+ type: Transform
+ - uid: 1282
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -0.5,-12.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1283
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -0.5,-11.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1284
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 0.5,-11.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1285
+ components:
+ - pos: 0.5,-9.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1286
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -0.5,-9.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1295
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 5.5,-3.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1296
+ components:
+ - pos: 6.5,-3.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1297
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 8.5,-3.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1298
+ components:
+ - pos: 9.5,-3.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1299
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 11.5,-3.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1300
+ components:
+ - pos: 12.5,-3.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1306
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -0.5,-4.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1307
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -0.5,-2.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1308
+ components:
+ - pos: 0.5,-2.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1313
+ components:
+ - pos: 3.5,0.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1315
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 3.5,-3.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1372
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 8.5,4.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1373
+ components:
+ - pos: 8.5,5.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1374
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 6.5,5.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1375
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 6.5,4.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1378
+ components:
+ - pos: 7.5,7.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1379
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 5.5,7.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1390
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 7.5,15.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1401
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -1.5,3.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1403
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 0.5,3.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1434
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -16.5,-0.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1435
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -18.5,-0.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1436
+ components:
+ - pos: -18.5,0.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1438
+ components:
+ - pos: -16.5,1.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1439
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -17.5,1.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1468
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 0.5,-4.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1541
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 3.5,-13.5
+ parent: 407
+ type: Transform
+- proto: GasPipeFourway
+ entities:
+ - uid: 1290
+ components:
+ - pos: -0.5,0.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1346
+ components:
+ - pos: 17.5,0.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1348
+ components:
+ - pos: 22.5,0.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1376
+ components:
+ - pos: 7.5,5.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1402
+ components:
+ - pos: -0.5,3.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1437
+ components:
+ - pos: -17.5,-0.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+- proto: GasPipeStraight
+ entities:
+ - uid: 676
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 18.5,1.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1262
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 8.5,-15.5
+ parent: 407
+ type: Transform
+ - uid: 1263
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 8.5,-13.5
+ parent: 407
+ type: Transform
+ - uid: 1266
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 7.5,-14.5
+ parent: 407
+ type: Transform
+ - uid: 1269
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 6.5,-12.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1275
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 8.5,-11.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1276
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 9.5,-11.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1277
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 4.5,-12.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1278
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 3.5,-12.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1279
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 2.5,-12.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1280
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 1.5,-12.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1281
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 0.5,-12.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1294
+ components:
+ - pos: -0.5,-8.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1301
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -1.5,-7.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1302
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -2.5,-7.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1303
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -3.5,-7.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1304
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -0.5,-6.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1305
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -0.5,-5.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1309
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -0.5,-1.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1310
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -0.5,-0.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1311
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 0.5,0.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1312
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 1.5,0.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1316
+ components:
+ - pos: 3.5,-1.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1317
+ components:
+ - pos: 3.5,-0.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1320
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 4.5,-2.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1321
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 6.5,-2.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1322
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 7.5,-2.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1323
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 9.5,-2.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1324
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 10.5,-2.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1325
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 11.5,-1.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1326
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 11.5,-0.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1327
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 10.5,0.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1328
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 9.5,0.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1329
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 8.5,0.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1330
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 12.5,0.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1331
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 13.5,0.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1332
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 14.5,0.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1347
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 16.5,0.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1350
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 19.5,0.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1351
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 20.5,0.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1352
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 21.5,0.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1353
+ components:
+ - pos: 17.5,-0.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1354
+ components:
+ - pos: 17.5,-1.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1356
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 18.5,2.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1357
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 23.5,0.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1358
+ components:
+ - pos: 22.5,-0.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1359
+ components:
+ - pos: 22.5,-1.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1363
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 15.5,1.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1364
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 15.5,2.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1365
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 15.5,3.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1366
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 14.5,4.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1367
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 13.5,4.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1368
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 12.5,4.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1369
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 11.5,4.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1370
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 10.5,4.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1371
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 9.5,4.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1380
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 7.5,6.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1381
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 6.5,7.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1382
+ components:
+ - pos: 5.5,8.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1383
+ components:
+ - pos: 5.5,9.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1384
+ components:
+ - pos: 5.5,10.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1385
+ components:
+ - pos: 5.5,11.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1386
+ components:
+ - pos: 5.5,12.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1387
+ components:
+ - pos: 5.5,13.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1388
+ components:
+ - pos: 5.5,14.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1391
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 6.5,15.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1392
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 7.5,16.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1393
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 7.5,17.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1394
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 7.5,18.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1404
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -0.5,1.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1405
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -0.5,2.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1406
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -1.5,4.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1407
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -1.5,5.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1408
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -1.5,6.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1409
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -1.5,7.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1410
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 0.5,5.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1411
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 0.5,6.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1412
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 0.5,7.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1413
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 1.5,4.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1414
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 2.5,4.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1415
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 3.5,4.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1416
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 4.5,4.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1417
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 5.5,4.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1418
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -1.5,0.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1419
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -2.5,0.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1420
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -3.5,0.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1421
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -4.5,0.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1423
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -6.5,0.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1425
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -8.5,0.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1427
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -10.5,0.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1428
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -11.5,0.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1429
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -12.5,0.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1431
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -14.5,0.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1432
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -15.5,0.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1441
+ components:
+ - pos: -17.5,2.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1442
+ components:
+ - pos: -17.5,4.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1443
+ components:
+ - pos: -17.5,5.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1444
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -19.5,0.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1445
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -17.5,-1.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1451
+ components:
+ - pos: -13.5,-0.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1452
+ components:
+ - pos: -9.5,-0.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1453
+ components:
+ - pos: -5.5,-0.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1454
+ components:
+ - pos: -7.5,1.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1455
+ components:
+ - pos: -7.5,2.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1456
+ components:
+ - pos: -7.5,3.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1459
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -9.5,4.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1460
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -10.5,4.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1461
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -11.5,4.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1462
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -12.5,4.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1463
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -6.5,4.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1464
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -5.5,4.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+- proto: GasPipeTJunction
+ entities:
+ - uid: 1267
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 7.5,-12.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1268
+ components:
+ - pos: 7.5,-11.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1270
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 5.5,-12.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1287
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 0.5,-10.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1289
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -0.5,-7.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1291
+ components:
+ - pos: 2.5,0.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1292
+ components:
+ - pos: 5.5,-2.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1293
+ components:
+ - pos: 8.5,-2.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1314
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 3.5,-2.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1318
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 11.5,-2.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1319
+ components:
+ - pos: 11.5,0.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1349
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 18.5,0.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1360
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 15.5,0.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1362
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 15.5,4.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1389
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 5.5,15.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1400
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 0.5,4.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1422
+ components:
+ - pos: -9.5,0.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1424
+ components:
+ - pos: -13.5,0.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1426
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -7.5,0.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1430
+ components:
+ - pos: -5.5,0.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1433
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -16.5,0.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1440
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -17.5,3.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1457
+ components:
+ - pos: -7.5,4.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1458
+ components:
+ - pos: -8.5,4.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1469
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 0.5,-3.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1539
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 3.5,-15.5
+ parent: 407
+ type: Transform
+ - uid: 1540
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 3.5,-14.5
+ parent: 407
+ type: Transform
+- proto: GasPort
+ entities:
+ - uid: 1260
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 9.5,-15.5
+ parent: 407
+ type: Transform
+ - uid: 1261
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 9.5,-13.5
+ parent: 407
+ type: Transform
+ - uid: 1272
+ components:
+ - pos: 5.5,-10.5
+ parent: 407
+ type: Transform
+ - uid: 1530
+ components:
+ - pos: 5.5,-13.5
+ parent: 407
+ type: Transform
+ - uid: 1531
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 6.5,-14.5
+ parent: 407
+ type: Transform
+ - uid: 1532
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 5.5,-15.5
+ parent: 407
+ type: Transform
+ - uid: 1542
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 4.5,-15.5
+ parent: 407
+ type: Transform
+ - uid: 1543
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 4.5,-14.5
+ parent: 407
+ type: Transform
+ - uid: 1544
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 4.5,-13.5
+ parent: 407
+ type: Transform
+- proto: GasPressurePump
+ entities:
+ - uid: 1271
+ components:
+ - pos: 5.5,-11.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+- proto: GasVentPump
+ entities:
+ - uid: 1273
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 6.5,-11.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1274
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 10.5,-11.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1288
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -0.5,-10.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1333
+ components:
+ - pos: 18.5,3.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1334
+ components:
+ - pos: 17.5,1.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1335
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 7.5,0.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1336
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 6.5,-4.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1337
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 9.5,-4.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1338
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 12.5,-4.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1339
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 2.5,-0.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1340
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 2.5,-3.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1341
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -4.5,-7.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1343
+ components:
+ - pos: 22.5,1.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1344
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 24.5,0.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1345
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 22.5,-2.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1355
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 17.5,-2.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1377
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 7.5,4.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1395
+ components:
+ - pos: 5.5,16.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1396
+ components:
+ - pos: 7.5,19.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1397
+ components:
+ - pos: -0.5,4.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1398
+ components:
+ - pos: -1.5,8.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1399
+ components:
+ - pos: 0.5,8.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1446
+ components:
+ - pos: -17.5,0.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1447
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -20.5,0.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1448
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -16.5,3.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1449
+ components:
+ - pos: -17.5,6.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1450
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -17.5,-2.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1465
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -8.5,3.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1466
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -13.5,4.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1467
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -4.5,4.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 1470
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -0.5,-3.5
+ parent: 407
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+- proto: GeigerCounter
+ entities:
+ - uid: 1795
+ components:
+ - pos: -20.66175,3.4127471
+ parent: 407
+ type: Transform
+ - uid: 1796
+ components:
+ - pos: -20.521126,3.3189971
+ parent: 407
+ type: Transform
+- proto: GeneratorRTGDamaged
+ entities:
+ - uid: 403
+ components:
+ - pos: -22.5,0.5
+ parent: 407
+ type: Transform
+- proto: GeneratorWallmountAPU
+ entities:
+ - uid: 2081
+ components:
+ - pos: -20.5,4.5
+ parent: 407
+ type: Transform
+- proto: GravityGeneratorMini
+ entities:
+ - uid: 1799
+ components:
+ - pos: -22.5,-2.5
+ parent: 407
+ type: Transform
+ - charge: 100
+ type: GravityGenerator
+ - radius: 175.75
+ type: PointLight
+- proto: Grille
+ entities:
+ - uid: 155
+ components:
+ - pos: -30.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 1031
+ components:
+ - pos: 6.5,20.5
+ parent: 407
+ type: Transform
+ - uid: 1032
+ components:
+ - pos: 6.5,21.5
+ parent: 407
+ type: Transform
+ - uid: 1033
+ components:
+ - pos: 8.5,20.5
+ parent: 407
+ type: Transform
+ - uid: 1034
+ components:
+ - pos: 8.5,21.5
+ parent: 407
+ type: Transform
+ - uid: 1035
+ components:
+ - pos: 12.5,12.5
+ parent: 407
+ type: Transform
+ - uid: 1036
+ components:
+ - pos: 12.5,11.5
+ parent: 407
+ type: Transform
+ - uid: 1037
+ components:
+ - pos: 16.5,6.5
+ parent: 407
+ type: Transform
+ - uid: 1038
+ components:
+ - pos: 15.5,6.5
+ parent: 407
+ type: Transform
+ - uid: 1039
+ components:
+ - pos: 14.5,6.5
+ parent: 407
+ type: Transform
+ - uid: 1040
+ components:
+ - pos: 13.5,5.5
+ parent: 407
+ type: Transform
+ - uid: 1041
+ components:
+ - pos: 13.5,3.5
+ parent: 407
+ type: Transform
+ - uid: 1042
+ components:
+ - pos: 19.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 1043
+ components:
+ - pos: 20.5,1.5
+ parent: 407
+ type: Transform
+ - uid: 1044
+ components:
+ - pos: 20.5,-0.5
+ parent: 407
+ type: Transform
+ - uid: 1045
+ components:
+ - pos: 25.5,-4.5
+ parent: 407
+ type: Transform
+ - uid: 1046
+ components:
+ - pos: 27.5,-0.5
+ parent: 407
+ type: Transform
+ - uid: 1047
+ components:
+ - pos: 25.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 1048
+ components:
+ - pos: 26.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 1049
+ components:
+ - pos: 26.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 1050
+ components:
+ - pos: 24.5,-4.5
+ parent: 407
+ type: Transform
+ - uid: 1051
+ components:
+ - pos: 27.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 1052
+ components:
+ - pos: 27.5,1.5
+ parent: 407
+ type: Transform
+ - uid: 1053
+ components:
+ - pos: 27.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 1054
+ components:
+ - pos: 27.5,3.5
+ parent: 407
+ type: Transform
+ - uid: 1055
+ components:
+ - pos: 26.5,3.5
+ parent: 407
+ type: Transform
+ - uid: 1056
+ components:
+ - pos: 26.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 1057
+ components:
+ - pos: 25.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 1058
+ components:
+ - pos: 25.5,5.5
+ parent: 407
+ type: Transform
+ - uid: 1059
+ components:
+ - pos: 24.5,5.5
+ parent: 407
+ type: Transform
+ - uid: 1060
+ components:
+ - pos: 19.5,6.5
+ parent: 407
+ type: Transform
+ - uid: 1061
+ components:
+ - pos: 13.5,-0.5
+ parent: 407
+ type: Transform
+ - uid: 1062
+ components:
+ - pos: 13.5,1.5
+ parent: 407
+ type: Transform
+ - uid: 1063
+ components:
+ - pos: 18.5,-5.5
+ parent: 407
+ type: Transform
+ - uid: 1064
+ components:
+ - pos: 17.5,-5.5
+ parent: 407
+ type: Transform
+ - uid: 1065
+ components:
+ - pos: 16.5,-5.5
+ parent: 407
+ type: Transform
+ - uid: 1066
+ components:
+ - pos: 15.5,-5.5
+ parent: 407
+ type: Transform
+ - uid: 1067
+ components:
+ - pos: 12.5,-6.5
+ parent: 407
+ type: Transform
+ - uid: 1068
+ components:
+ - pos: 12.5,-10.5
+ parent: 407
+ type: Transform
+ - uid: 1069
+ components:
+ - pos: 9.5,-10.5
+ parent: 407
+ type: Transform
+ - uid: 1070
+ components:
+ - pos: 8.5,-13.5
+ parent: 407
+ type: Transform
+ - uid: 1071
+ components:
+ - pos: 8.5,-15.5
+ parent: 407
+ type: Transform
+ - uid: 1072
+ components:
+ - pos: 7.5,-17.5
+ parent: 407
+ type: Transform
+ - uid: 1073
+ components:
+ - pos: 3.5,-15.5
+ parent: 407
+ type: Transform
+ - uid: 1074
+ components:
+ - pos: 0.5,-14.5
+ parent: 407
+ type: Transform
+ - uid: 1075
+ components:
+ - pos: -0.5,-14.5
+ parent: 407
+ type: Transform
+ - uid: 1076
+ components:
+ - pos: -0.5,-13.5
+ parent: 407
+ type: Transform
+ - uid: 1077
+ components:
+ - pos: -1.5,-13.5
+ parent: 407
+ type: Transform
+ - uid: 1078
+ components:
+ - pos: -1.5,-12.5
+ parent: 407
+ type: Transform
+ - uid: 1079
+ components:
+ - pos: -4.5,-9.5
+ parent: 407
+ type: Transform
+ - uid: 1080
+ components:
+ - pos: -5.5,-9.5
+ parent: 407
+ type: Transform
+ - uid: 1081
+ components:
+ - pos: -5.5,-8.5
+ parent: 407
+ type: Transform
+ - uid: 1082
+ components:
+ - pos: -6.5,-8.5
+ parent: 407
+ type: Transform
+ - uid: 1083
+ components:
+ - pos: -6.5,-7.5
+ parent: 407
+ type: Transform
+ - uid: 1084
+ components:
+ - pos: -8.5,-5.5
+ parent: 407
+ type: Transform
+ - uid: 1085
+ components:
+ - pos: -9.5,-5.5
+ parent: 407
+ type: Transform
+ - uid: 1086
+ components:
+ - pos: -10.5,-5.5
+ parent: 407
+ type: Transform
+ - uid: 1087
+ components:
+ - pos: -12.5,-5.5
+ parent: 407
+ type: Transform
+ - uid: 1088
+ components:
+ - pos: -13.5,-5.5
+ parent: 407
+ type: Transform
+ - uid: 1089
+ components:
+ - pos: -14.5,-5.5
+ parent: 407
+ type: Transform
+ - uid: 1090
+ components:
+ - pos: -24.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 1091
+ components:
+ - pos: -24.5,-0.5
+ parent: 407
+ type: Transform
+ - uid: 1092
+ components:
+ - pos: -24.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 1093
+ components:
+ - pos: -24.5,1.5
+ parent: 407
+ type: Transform
+ - uid: 1094
+ components:
+ - pos: -24.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 1095
+ components:
+ - pos: -16.5,5.5
+ parent: 407
+ type: Transform
+ - uid: 1096
+ components:
+ - pos: -16.5,7.5
+ parent: 407
+ type: Transform
+ - uid: 1097
+ components:
+ - pos: -30.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 1099
+ components:
+ - pos: -8.5,6.5
+ parent: 407
+ type: Transform
+ - uid: 1100
+ components:
+ - pos: -9.5,6.5
+ parent: 407
+ type: Transform
+ - uid: 1101
+ components:
+ - pos: -13.5,6.5
+ parent: 407
+ type: Transform
+ - uid: 1102
+ components:
+ - pos: -14.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 1103
+ components:
+ - pos: -3.5,11.5
+ parent: 407
+ type: Transform
+ - uid: 1104
+ components:
+ - pos: 0.5,14.5
+ parent: 407
+ type: Transform
+ - uid: 1105
+ components:
+ - pos: 0.5,16.5
+ parent: 407
+ type: Transform
+ - uid: 1106
+ components:
+ - pos: 2.5,16.5
+ parent: 407
+ type: Transform
+ - uid: 1107
+ components:
+ - pos: 2.5,14.5
+ parent: 407
+ type: Transform
+ - uid: 1148
+ components:
+ - pos: -14.5,9.5
+ parent: 407
+ type: Transform
+ - uid: 1149
+ components:
+ - pos: -13.5,9.5
+ parent: 407
+ type: Transform
+ - uid: 1150
+ components:
+ - pos: -12.5,9.5
+ parent: 407
+ type: Transform
+ - uid: 1151
+ components:
+ - pos: -11.5,9.5
+ parent: 407
+ type: Transform
+ - uid: 1152
+ components:
+ - pos: -10.5,9.5
+ parent: 407
+ type: Transform
+ - uid: 1153
+ components:
+ - pos: -9.5,9.5
+ parent: 407
+ type: Transform
+ - uid: 1228
+ components:
+ - pos: 1.5,-4.5
+ parent: 407
+ type: Transform
+ - uid: 1229
+ components:
+ - pos: 1.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 1230
+ components:
+ - pos: 1.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 1231
+ components:
+ - pos: 2.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 1232
+ components:
+ - pos: 1.5,-0.5
+ parent: 407
+ type: Transform
+ - uid: 1233
+ components:
+ - pos: 1.5,1.5
+ parent: 407
+ type: Transform
+ - uid: 1234
+ components:
+ - pos: 6.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 1248
+ components:
+ - pos: 1.5,6.5
+ parent: 407
+ type: Transform
+ - uid: 1545
+ components:
+ - pos: 3.5,-14.5
+ parent: 407
+ type: Transform
+ - uid: 1546
+ components:
+ - pos: 3.5,-13.5
+ parent: 407
+ type: Transform
+ - uid: 1567
+ components:
+ - pos: 3.5,2.5
+ parent: 407
+ type: Transform
+- proto: Gyroscope
+ entities:
+ - uid: 1120
+ components:
+ - pos: -26.5,1.5
+ parent: 407
+ type: Transform
+ - uid: 1121
+ components:
+ - pos: -26.5,-0.5
+ parent: 407
+ type: Transform
+- proto: HandTeleporter
+ entities:
+ - uid: 1813
+ components:
+ - pos: -2.4206839,7.756456
+ parent: 407
+ type: Transform
+ - uid: 1983
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 1980
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - type: InsideEntityStorage
+- proto: HolofanProjector
+ entities:
+ - uid: 1554
+ components:
+ - pos: 4.5765324,-10.477916
+ parent: 407
+ type: Transform
+ - uid: 1555
+ components:
+ - pos: 4.6859074,-10.602916
+ parent: 407
+ type: Transform
+- proto: HoPIDCard
+ entities:
+ - uid: 2145
+ components:
+ - pos: 24.549932,2.4577096
+ parent: 407
+ type: Transform
+- proto: hydroponicsTray
+ entities:
+ - uid: 1783
+ components:
+ - pos: -12.5,3.5
+ parent: 407
+ type: Transform
+ - uid: 1784
+ components:
+ - pos: -13.5,3.5
+ parent: 407
+ type: Transform
+ - uid: 1785
+ components:
+ - pos: -14.5,3.5
+ parent: 407
+ type: Transform
+- proto: Hypospray
+ entities:
+ - uid: 1741
+ components:
+ - pos: 6.6989994,-0.46516204
+ parent: 407
+ type: Transform
+- proto: IngotGold1
+ entities:
+ - uid: 1851
+ components:
+ - pos: 6.506955,-8.404718
+ parent: 407
+ type: Transform
+ - uid: 1852
+ components:
+ - pos: 6.506955,-8.404718
+ parent: 407
+ type: Transform
+ - uid: 1853
+ components:
+ - pos: 6.506955,-8.404718
+ parent: 407
+ type: Transform
+- proto: IntercomEngineering
+ entities:
+ - uid: 1856
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -15.5,-0.5
+ parent: 407
+ type: Transform
+- proto: IntercomMedical
+ entities:
+ - uid: 1858
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 5.5,-0.5
+ parent: 407
+ type: Transform
+- proto: JanitorialTrolley
+ entities:
+ - uid: 1664
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -4.5,-8.5
+ parent: 407
+ type: Transform
+- proto: JetpackBlueFilled
+ entities:
+ - uid: 1971
+ components:
+ - pos: 1.3578928,11.64992
+ parent: 407
+ type: Transform
+- proto: KitchenMicrowave
+ entities:
+ - uid: 1722
+ components:
+ - pos: -3.5,4.5
+ parent: 407
+ type: Transform
+- proto: KitchenReagentGrinder
+ entities:
+ - uid: 1723
+ components:
+ - pos: -3.5,5.5
+ parent: 407
+ type: Transform
+ - uid: 2106
+ components:
+ - pos: 12.5,1.5
+ parent: 407
+ type: Transform
+- proto: Lamp
+ entities:
+ - uid: 2127
+ components:
+ - pos: 16.296532,4.957177
+ parent: 407
+ type: Transform
+- proto: LampGold
+ entities:
+ - uid: 1889
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 25.746017,-2.1150365
+ parent: 407
+ type: Transform
+- proto: LargeBeaker
+ entities:
+ - uid: 1729
+ components:
+ - pos: -3.6183653,3.8985684
+ parent: 407
+ type: Transform
+- proto: LockerAtmosphericsFilledHardsuit
+ entities:
+ - uid: 408
+ components:
+ - pos: 2.5,-11.5
+ parent: 407
+ type: Transform
+- proto: LockerBoozeFilled
+ entities:
+ - uid: 1779
+ components:
+ - pos: -10.5,5.5
+ parent: 407
+ type: Transform
+- proto: LockerBotanistFilled
+ entities:
+ - uid: 1727
+ components:
+ - pos: -14.5,4.5
+ parent: 407
+ type: Transform
+- proto: LockerCaptainFilledHardsuit
+ entities:
+ - uid: 1831
+ components:
+ - pos: 21.5,-2.5
+ parent: 407
+ type: Transform
+- proto: LockerChemistryFilled
+ entities:
+ - uid: 1734
+ components:
+ - pos: 8.5,1.5
+ parent: 407
+ type: Transform
+- proto: LockerEngineerFilledHardsuit
+ entities:
+ - uid: 1807
+ components:
+ - pos: -18.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 1812
+ components:
+ - pos: -18.5,-4.5
+ parent: 407
+ type: Transform
+- proto: LockerEvidence
+ entities:
+ - uid: 1878
+ components:
+ - pos: 19.5,1.5
+ parent: 407
+ type: Transform
+- proto: LockerHeadOfSecurityFilledHardsuit
+ entities:
+ - uid: 1861
+ components:
+ - pos: 22.5,4.5
+ parent: 407
+ type: Transform
+- proto: LockerMedicalFilled
+ entities:
+ - uid: 1743
+ components:
+ - pos: 4.5,-4.5
+ parent: 407
+ type: Transform
+- proto: LockerMedicineFilled
+ entities:
+ - uid: 1871
+ components:
+ - pos: 12.5,-2.5
+ parent: 407
+ type: Transform
+- proto: LockerScienceFilled
+ entities:
+ - uid: 1980
+ components:
+ - pos: -5.5,8.5
+ parent: 407
+ type: Transform
+ - containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 1982
+ - 1981
+ - 1983
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ type: ContainerContainer
+- proto: LockerSecurityFilled
+ entities:
+ - uid: 1909
+ components:
+ - pos: 14.5,-3.5
+ parent: 407
+ type: Transform
+- proto: LockerWallMedicalFilled
+ entities:
+ - uid: 1742
+ components:
+ - pos: 5.5,-1.5
+ parent: 407
+ type: Transform
+- proto: MachineArtifactAnalyzer
+ entities:
+ - uid: 1985
+ components:
+ - pos: -3.5,10.5
+ parent: 407
+ type: Transform
+- proto: MaintenanceFluffSpawner
+ entities:
+ - uid: 2065
+ components:
+ - pos: 8.5,-8.5
+ parent: 407
+ type: Transform
+- proto: MaterialReclaimer
+ entities:
+ - uid: 1830
+ components:
+ - pos: 10.5,-8.5
+ parent: 407
+ type: Transform
+- proto: MedicalBed
+ entities:
+ - uid: 1625
+ components:
+ - pos: 5.5,-4.5
+ parent: 407
+ type: Transform
+ - uid: 1626
+ components:
+ - pos: 7.5,-4.5
+ parent: 407
+ type: Transform
+ - uid: 1627
+ components:
+ - pos: 9.5,-4.5
+ parent: 407
+ type: Transform
+- proto: MedkitBruteFilled
+ entities:
+ - uid: 1921
+ components:
+ - pos: 4.470603,-3.3152924
+ parent: 407
+ type: Transform
+- proto: MedkitBurnFilled
+ entities:
+ - uid: 1922
+ components:
+ - pos: 4.470603,-3.5184174
+ parent: 407
+ type: Transform
+- proto: MopBucket
+ entities:
+ - uid: 1668
+ components:
+ - pos: -5.529683,-6.4279804
+ parent: 407
+ type: Transform
+- proto: MopItem
+ entities:
+ - uid: 1667
+ components:
+ - pos: -5.592183,-7.4904804
+ parent: 407
+ type: Transform
+- proto: Multitool
+ entities:
+ - uid: 2148
+ components:
+ - pos: 26.518682,2.5202096
+ parent: 407
+ type: Transform
+- proto: NitrogenCanister
+ entities:
+ - uid: 1533
+ components:
+ - pos: 11.5,-10.5
+ parent: 407
+ type: Transform
+- proto: OreProcessor
+ entities:
+ - uid: 2009
+ components:
+ - pos: -0.5,11.5
+ parent: 407
+ type: Transform
+- proto: OxygenCanister
+ entities:
+ - uid: 1534
+ components:
+ - pos: 10.5,-10.5
+ parent: 407
+ type: Transform
+- proto: PartRodMetal
+ entities:
+ - uid: 1552
+ components:
+ - pos: 7.4046574,-16.509167
+ parent: 407
+ type: Transform
+ - uid: 1553
+ components:
+ - pos: 7.4046574,-16.509167
+ parent: 407
+ type: Transform
+- proto: PianoInstrument
+ entities:
+ - uid: 1756
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -6.5,-1.5
+ parent: 407
+ type: Transform
+- proto: PlaqueAtmos
+ entities:
+ - uid: 1558
+ components:
+ - pos: 6.5,-9.5
+ parent: 407
+ type: Transform
+- proto: PlasmaReinforcedWindowDirectional
+ entities:
+ - uid: 1976
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -2.5,10.5
+ parent: 407
+ type: Transform
+ - uid: 1977
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -2.5,9.5
+ parent: 407
+ type: Transform
+ - uid: 1978
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -3.5,8.5
+ parent: 407
+ type: Transform
+- proto: PlasmaTankFilled
+ entities:
+ - uid: 1938
+ components:
+ - pos: -21.613918,-2.399491
+ parent: 407
+ type: Transform
+ - uid: 1979
+ components:
+ - pos: -21.520168,-2.446366
+ parent: 407
+ type: Transform
+ - uid: 2070
+ components:
+ - pos: -21.379543,-2.540116
+ parent: 407
+ type: Transform
+- proto: PlasticFlapsAirtightClear
+ entities:
+ - uid: 1902
+ components:
+ - pos: 3.5,6.5
+ parent: 407
+ type: Transform
+- proto: PlasticFlapsAirtightOpaque
+ entities:
+ - uid: 1098
+ components:
+ - pos: -19.5,3.5
+ parent: 407
+ type: Transform
+- proto: Plunger
+ entities:
+ - uid: 2118
+ components:
+ - pos: -4.2076445,-6.1772423
+ parent: 407
+ type: Transform
+- proto: PortableGeneratorJrPacman
+ entities:
+ - uid: 1638
+ components:
+ - pos: -23.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 1872
+ components:
+ - pos: 9.5,-8.5
+ parent: 407
+ type: Transform
+- proto: PortableGeneratorPacman
+ entities:
+ - uid: 1640
+ components:
+ - pos: -23.5,-1.5
+ parent: 407
+ type: Transform
+- proto: PortableScrubber
+ entities:
+ - uid: 1947
+ components:
+ - pos: 4.5,-15.5
+ parent: 407
+ type: Transform
+ - uid: 1948
+ components:
+ - pos: 4.5,-14.5
+ parent: 407
+ type: Transform
+ - uid: 1949
+ components:
+ - pos: 4.5,-13.5
+ parent: 407
+ type: Transform
+- proto: PosterContrabandAtmosiaDeclarationIndependence
+ entities:
+ - uid: 1559
+ components:
+ - pos: 8.5,-9.5
+ parent: 407
+ type: Transform
+- proto: PosterContrabandBeachStarYamamoto
+ entities:
+ - uid: 1844
+ components:
+ - pos: 11.5,-7.5
+ parent: 407
+ type: Transform
+- proto: PosterContrabandHighEffectEngineering
+ entities:
+ - uid: 1793
+ components:
+ - pos: -23.5,3.5
+ parent: 407
+ type: Transform
+- proto: PosterContrabandSpaceCola
+ entities:
+ - uid: 2208
+ components:
+ - pos: -11.5,5.5
+ parent: 407
+ type: Transform
+- proto: PosterContrabandTools
+ entities:
+ - uid: 1792
+ components:
+ - pos: -19.5,-2.5
+ parent: 407
+ type: Transform
+- proto: PosterLegit50thAnniversaryVintageReprint
+ entities:
+ - uid: 2151
+ components:
+ - pos: -2.5,12.5
+ parent: 407
+ type: Transform
+- proto: PosterLegitCleanliness
+ entities:
+ - uid: 1672
+ components:
+ - pos: -2.5,-6.5
+ parent: 407
+ type: Transform
+- proto: PosterLegitCohibaRobustoAd
+ entities:
+ - uid: 2152
+ components:
+ - pos: -7.5,6.5
+ parent: 407
+ type: Transform
+- proto: PosterLegitHelpOthers
+ entities:
+ - uid: 2206
+ components:
+ - pos: -4.5,-5.5
+ parent: 407
+ type: Transform
+- proto: PosterLegitHereForYourSafety
+ entities:
+ - uid: 2153
+ components:
+ - pos: 13.5,6.5
+ parent: 407
+ type: Transform
+- proto: PosterLegitJustAWeekAway
+ entities:
+ - uid: 2154
+ components:
+ - pos: 4.5,11.5
+ parent: 407
+ type: Transform
+- proto: PosterLegitNanomichiAd
+ entities:
+ - uid: 2207
+ components:
+ - pos: 4.5,8.5
+ parent: 407
+ type: Transform
+- proto: PosterLegitNanotrasenLogo
+ entities:
+ - uid: 2020
+ components:
+ - pos: -11.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 2155
+ components:
+ - pos: 10.5,17.5
+ parent: 407
+ type: Transform
+ - uid: 2156
+ components:
+ - pos: 4.5,17.5
+ parent: 407
+ type: Transform
+ - uid: 2204
+ components:
+ - pos: 10.5,6.5
+ parent: 407
+ type: Transform
+ - uid: 2205
+ components:
+ - pos: 26.5,-1.5
+ parent: 407
+ type: Transform
+- proto: PosterLegitPDAAd
+ entities:
+ - uid: 2157
+ components:
+ - pos: 20.5,3.5
+ parent: 407
+ type: Transform
+- proto: PosterLegitReportCrimes
+ entities:
+ - uid: 2158
+ components:
+ - pos: -10.5,6.5
+ parent: 407
+ type: Transform
+- proto: PosterLegitSafetyInternals
+ entities:
+ - uid: 2159
+ components:
+ - pos: -4.5,6.5
+ parent: 407
+ type: Transform
+- proto: PosterLegitSecWatch
+ entities:
+ - uid: 2113
+ components:
+ - pos: 20.5,5.5
+ parent: 407
+ type: Transform
+- proto: PosterLegitSpaceCops
+ entities:
+ - uid: 2209
+ components:
+ - pos: 14.5,-1.5
+ parent: 407
+ type: Transform
+- proto: PosterLegitUeNo
+ entities:
+ - uid: 1845
+ components:
+ - pos: 9.5,-9.5
+ parent: 407
+ type: Transform
+- proto: PottedPlant21
+ entities:
+ - uid: 1563
+ components:
+ - pos: 0.44461346,-13.746801
+ parent: 407
+ type: Transform
+ - uid: 1926
+ components:
+ - pos: 2.4826317,-3.6277924
+ parent: 407
+ type: Transform
+- proto: PottedPlant22
+ entities:
+ - uid: 1755
+ components:
+ - pos: 3.5,1.5
+ parent: 407
+ type: Transform
+ - uid: 1773
+ components:
+ - pos: -5.781889,-2.132682
+ parent: 407
+ type: Transform
+ - uid: 1821
+ components:
+ - pos: -11.5,1.5
+ parent: 407
+ type: Transform
+ - uid: 1833
+ components:
+ - pos: -6.5,1.5
+ parent: 407
+ type: Transform
+ - uid: 2062
+ components:
+ - pos: 4.5,5.5
+ parent: 407
+ type: Transform
+ - uid: 2063
+ components:
+ - pos: 10.5,5.5
+ parent: 407
+ type: Transform
+ - uid: 2083
+ components:
+ - pos: -1.5,-9.5
+ parent: 407
+ type: Transform
+ - uid: 2084
+ components:
+ - pos: -1.5,-3.5
+ parent: 407
+ type: Transform
+- proto: PottedPlantBioluminscent
+ entities:
+ - uid: 2128
+ components:
+ - pos: 14.5,5.5
+ parent: 407
+ type: Transform
+- proto: PowerCellHyper
+ entities:
+ - uid: 1835
+ components:
+ - pos: -16.358204,-2.3107126
+ parent: 407
+ type: Transform
+- proto: PowerCellRecharger
+ entities:
+ - uid: 1820
+ components:
+ - pos: -16.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 1995
+ components:
+ - pos: 2.5,6.5
+ parent: 407
+ type: Transform
+- proto: Poweredlight
+ entities:
+ - uid: 1479
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -18.5,4.5
+ parent: 407
+ type: Transform
+ - powerLoad: 0
+ type: ApcPowerReceiver
+ - uid: 1480
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -16.5,6.5
+ parent: 407
+ type: Transform
+ - powerLoad: 0
+ type: ApcPowerReceiver
+ - uid: 1481
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -17.5,-4.5
+ parent: 407
+ type: Transform
+ - powerLoad: 0
+ type: ApcPowerReceiver
+ - uid: 1482
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -14.5,-0.5
+ parent: 407
+ type: Transform
+ - powerLoad: 0
+ type: ApcPowerReceiver
+ - uid: 1483
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -11.5,-4.5
+ parent: 407
+ type: Transform
+ - powerLoad: 0
+ type: ApcPowerReceiver
+ - uid: 1490
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -1.5,8.5
+ parent: 407
+ type: Transform
+ - powerLoad: 0
+ type: ApcPowerReceiver
+ - uid: 1491
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 0.5,8.5
+ parent: 407
+ type: Transform
+ - powerLoad: 0
+ type: ApcPowerReceiver
+ - uid: 1492
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 0.5,15.5
+ parent: 407
+ type: Transform
+ - powerLoad: 0
+ type: ApcPowerReceiver
+ - uid: 1493
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 5.5,9.5
+ parent: 407
+ type: Transform
+ - powerLoad: 0
+ type: ApcPowerReceiver
+ - uid: 1494
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 5.5,14.5
+ parent: 407
+ type: Transform
+ - powerLoad: 0
+ type: ApcPowerReceiver
+ - uid: 1495
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 10.5,14.5
+ parent: 407
+ type: Transform
+ - powerLoad: 0
+ type: ApcPowerReceiver
+ - uid: 1496
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 10.5,9.5
+ parent: 407
+ type: Transform
+ - powerLoad: 0
+ type: ApcPowerReceiver
+ - uid: 1497
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 7.5,19.5
+ parent: 407
+ type: Transform
+ - powerLoad: 0
+ type: ApcPowerReceiver
+ - uid: 1498
+ components:
+ - pos: -0.5,5.5
+ parent: 407
+ type: Transform
+ - powerLoad: 0
+ type: ApcPowerReceiver
+ - uid: 1499
+ components:
+ - pos: 10.5,5.5
+ parent: 407
+ type: Transform
+ - powerLoad: 0
+ type: ApcPowerReceiver
+ - uid: 1500
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 16.5,4.5
+ parent: 407
+ type: Transform
+ - powerLoad: 0
+ type: ApcPowerReceiver
+ - uid: 1501
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 6.5,-0.5
+ parent: 407
+ type: Transform
+ - powerLoad: 0
+ type: ApcPowerReceiver
+ - uid: 1502
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 4.5,-0.5
+ parent: 407
+ type: Transform
+ - powerLoad: 0
+ type: ApcPowerReceiver
+ - uid: 1503
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 0.5,-1.5
+ parent: 407
+ type: Transform
+ - powerLoad: 0
+ type: ApcPowerReceiver
+ - uid: 1504
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 0.5,-10.5
+ parent: 407
+ type: Transform
+ - powerLoad: 0
+ type: ApcPowerReceiver
+ - uid: 1505
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 7.5,-14.5
+ parent: 407
+ type: Transform
+ - powerLoad: 0
+ type: ApcPowerReceiver
+ - uid: 1506
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 10.5,-13.5
+ parent: 407
+ type: Transform
+ - powerLoad: 0
+ type: ApcPowerReceiver
+ - uid: 1507
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 10.5,-15.5
+ parent: 407
+ type: Transform
+ - powerLoad: 0
+ type: ApcPowerReceiver
+ - uid: 1508
+ components:
+ - pos: 11.5,-10.5
+ parent: 407
+ type: Transform
+ - powerLoad: 0
+ type: ApcPowerReceiver
+ - uid: 1516
+ components:
+ - pos: 11.5,1.5
+ parent: 407
+ type: Transform
+ - powerLoad: 0
+ type: ApcPowerReceiver
+ - uid: 1518
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 19.5,-3.5
+ parent: 407
+ type: Transform
+ - powerLoad: 0
+ type: ApcPowerReceiver
+ - uid: 1519
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 24.5,-0.5
+ parent: 407
+ type: Transform
+ - powerLoad: 0
+ type: ApcPowerReceiver
+ - uid: 1520
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 14.5,-3.5
+ parent: 407
+ type: Transform
+ - powerLoad: 0
+ type: ApcPowerReceiver
+ - uid: 1521
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 21.5,3.5
+ parent: 407
+ type: Transform
+ - powerLoad: 0
+ type: ApcPowerReceiver
+ - uid: 1522
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 19.5,-0.5
+ parent: 407
+ type: Transform
+ - powerLoad: 0
+ type: ApcPowerReceiver
+ - uid: 1523
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 14.5,-0.5
+ parent: 407
+ type: Transform
+ - powerLoad: 0
+ type: ApcPowerReceiver
+ - uid: 1919
+ components:
+ - pos: -5.5,1.5
+ parent: 407
+ type: Transform
+ - powerLoad: 0
+ type: ApcPowerReceiver
+ - uid: 2130
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -7.5,-4.5
+ parent: 407
+ type: Transform
+ - powerLoad: 0
+ type: ApcPowerReceiver
+- proto: PoweredlightLED
+ entities:
+ - uid: 1475
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -25.5,3.5
+ parent: 407
+ type: Transform
+ - powerLoad: 0
+ type: ApcPowerReceiver
+ - uid: 1476
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -25.5,-2.5
+ parent: 407
+ type: Transform
+ - powerLoad: 0
+ type: ApcPowerReceiver
+ - uid: 1509
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 13.5,-9.5
+ parent: 407
+ type: Transform
+ - powerLoad: 0
+ type: ApcPowerReceiver
+ - uid: 1524
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -18.5,8.5
+ parent: 407
+ type: Transform
+ - powerLoad: 0
+ type: ApcPowerReceiver
+- proto: PoweredlightSodium
+ entities:
+ - uid: 1477
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -20.5,-1.5
+ parent: 407
+ type: Transform
+ - powerLoad: 0
+ type: ApcPowerReceiver
+ - uid: 1478
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -20.5,2.5
+ parent: 407
+ type: Transform
+ - powerLoad: 0
+ type: ApcPowerReceiver
+- proto: PoweredSmallLight
+ entities:
+ - uid: 1486
+ components:
+ - pos: -12.5,5.5
+ parent: 407
+ type: Transform
+ - powerLoad: 0
+ type: ApcPowerReceiver
+ - uid: 1487
+ components:
+ - pos: -10.5,5.5
+ parent: 407
+ type: Transform
+ - powerLoad: 0
+ type: ApcPowerReceiver
+ - uid: 1488
+ components:
+ - pos: -7.5,5.5
+ parent: 407
+ type: Transform
+ - powerLoad: 0
+ type: ApcPowerReceiver
+ - uid: 1489
+ components:
+ - pos: -5.5,5.5
+ parent: 407
+ type: Transform
+ - powerLoad: 0
+ type: ApcPowerReceiver
+ - uid: 1510
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 2.5,-13.5
+ parent: 407
+ type: Transform
+ - powerLoad: 0
+ type: ApcPowerReceiver
+ - uid: 1511
+ components:
+ - pos: 9.5,-6.5
+ parent: 407
+ type: Transform
+ - powerLoad: 0
+ type: ApcPowerReceiver
+ - uid: 1512
+ components:
+ - pos: 4.5,-6.5
+ parent: 407
+ type: Transform
+ - powerLoad: 0
+ type: ApcPowerReceiver
+ - uid: 1513
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 11.5,-4.5
+ parent: 407
+ type: Transform
+ - powerLoad: 0
+ type: ApcPowerReceiver
+ - uid: 1514
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 8.5,-4.5
+ parent: 407
+ type: Transform
+ - powerLoad: 0
+ type: ApcPowerReceiver
+ - uid: 1515
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 6.5,-4.5
+ parent: 407
+ type: Transform
+ - powerLoad: 0
+ type: ApcPowerReceiver
+ - uid: 1517
+ components:
+ - pos: 18.5,5.5
+ parent: 407
+ type: Transform
+ - powerLoad: 0
+ type: ApcPowerReceiver
+ - uid: 1665
+ components:
+ - pos: -4.5,-6.5
+ parent: 407
+ type: Transform
+ - powerLoad: 0
+ type: ApcPowerReceiver
+ - uid: 1828
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 2.5,-4.5
+ parent: 407
+ type: Transform
+- proto: Protolathe
+ entities:
+ - uid: 205
+ components:
+ - pos: -0.5,7.5
+ parent: 407
+ type: Transform
+- proto: Rack
+ entities:
+ - uid: 1548
+ components:
+ - pos: 4.5,-10.5
+ parent: 407
+ type: Transform
+ - uid: 1549
+ components:
+ - pos: 7.5,-16.5
+ parent: 407
+ type: Transform
+ - uid: 1629
+ components:
+ - pos: -21.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 1663
+ components:
+ - pos: -5.5,-7.5
+ parent: 407
+ type: Transform
+ - uid: 1794
+ components:
+ - pos: -20.5,3.5
+ parent: 407
+ type: Transform
+ - uid: 1884
+ components:
+ - pos: 18.5,5.5
+ parent: 407
+ type: Transform
+- proto: RadiationCollector
+ entities:
+ - uid: 404
+ components:
+ - pos: -23.5,-0.5
+ parent: 407
+ type: Transform
+ - uid: 405
+ components:
+ - pos: -23.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 406
+ components:
+ - pos: -23.5,1.5
+ parent: 407
+ type: Transform
+ - uid: 409
+ components:
+ - pos: -21.5,1.5
+ parent: 407
+ type: Transform
+ - uid: 410
+ components:
+ - pos: -21.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 411
+ components:
+ - pos: -21.5,-0.5
+ parent: 407
+ type: Transform
+- proto: Railing
+ entities:
+ - uid: 2024
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 10.5,8.5
+ parent: 407
+ type: Transform
+ - uid: 2025
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 9.5,9.5
+ parent: 407
+ type: Transform
+ - uid: 2026
+ components:
+ - pos: 10.5,10.5
+ parent: 407
+ type: Transform
+ - uid: 2027
+ components:
+ - pos: 10.5,15.5
+ parent: 407
+ type: Transform
+ - uid: 2028
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 9.5,14.5
+ parent: 407
+ type: Transform
+ - uid: 2029
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 10.5,13.5
+ parent: 407
+ type: Transform
+- proto: RailingCornerSmall
+ entities:
+ - uid: 2030
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 9.5,15.5
+ parent: 407
+ type: Transform
+ - uid: 2031
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 9.5,10.5
+ parent: 407
+ type: Transform
+ - uid: 2032
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 9.5,13.5
+ parent: 407
+ type: Transform
+ - uid: 2033
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 9.5,8.5
+ parent: 407
+ type: Transform
+- proto: RandomArtifactSpawner
+ entities:
+ - uid: 2012
+ components:
+ - pos: -3.5,9.5
+ parent: 407
+ type: Transform
+- proto: RandomBoard
+ entities:
+ - uid: 1631
+ components:
+ - pos: -16.5,-4.5
+ parent: 407
+ type: Transform
+- proto: RCD
+ entities:
+ - uid: 2066
+ components:
+ - pos: 4.5666795,-10.266068
+ parent: 407
+ type: Transform
+- proto: ReagentContainerFlour
+ entities:
+ - uid: 1728
+ components:
+ - pos: -3.6027403,3.5704434
+ parent: 407
+ type: Transform
+- proto: Recycler
+ entities:
+ - uid: 1238
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 11.5,-6.5
+ parent: 407
+ type: Transform
+- proto: ReinforcedPlasmaWindow
+ entities:
+ - uid: 1154
+ components:
+ - pos: 8.5,-15.5
+ parent: 407
+ type: Transform
+ - uid: 1155
+ components:
+ - pos: 8.5,-13.5
+ parent: 407
+ type: Transform
+- proto: ReinforcedWindow
+ entities:
+ - uid: 1249
+ components:
+ - pos: 1.5,6.5
+ parent: 407
+ type: Transform
+- proto: ResearchAndDevelopmentServer
+ entities:
+ - uid: 1974
+ components:
+ - pos: -1.5,12.5
+ parent: 407
+ type: Transform
+- proto: ResearchDisk10000
+ entities:
+ - uid: 2169
+ components:
+ - pos: 10.483304,-6.5229325
+ parent: 407
+ type: Transform
+- proto: SalvageMagnet
+ entities:
+ - uid: 1954
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 2.5,15.5
+ parent: 407
+ type: Transform
+- proto: SeedExtractor
+ entities:
+ - uid: 1781
+ components:
+ - pos: -12.5,5.5
+ parent: 407
+ type: Transform
+- proto: SheetGlass
+ entities:
+ - uid: 2003
+ components:
+ - pos: -3.0838065,7.537944
+ parent: 407
+ type: Transform
+ - uid: 2004
+ components:
+ - pos: -3.0838065,7.537944
+ parent: 407
+ type: Transform
+- proto: SheetPlasma
+ entities:
+ - uid: 1630
+ components:
+ - pos: -21.551367,-2.3599691
+ parent: 407
+ type: Transform
+- proto: SheetPlastic
+ entities:
+ - uid: 2005
+ components:
+ - pos: -2.6463065,7.537944
+ parent: 407
+ type: Transform
+ - uid: 2006
+ components:
+ - pos: -2.6463065,7.537944
+ parent: 407
+ type: Transform
+- proto: SheetSteel
+ entities:
+ - uid: 1550
+ components:
+ - pos: 7.5296574,-16.509167
+ parent: 407
+ type: Transform
+ - uid: 1551
+ components:
+ - pos: 7.5296574,-16.509167
+ parent: 407
+ type: Transform
+ - uid: 2007
+ components:
+ - pos: -3.5525565,7.506694
+ parent: 407
+ type: Transform
+ - uid: 2008
+ components:
+ - pos: -3.5525565,7.506694
+ parent: 407
+ type: Transform
+- proto: ShuttersNormalOpen
+ entities:
+ - uid: 1651
+ components:
+ - pos: -8.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 1652
+ components:
+ - pos: -10.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 1803
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -4.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 2162
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -3.5,2.5
+ parent: 407
+ type: Transform
+- proto: ShuttersRadiation
+ entities:
+ - uid: 1252
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -19.5,-0.5
+ parent: 407
+ type: Transform
+ - uid: 1253
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -19.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 1254
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -19.5,1.5
+ parent: 407
+ type: Transform
+- proto: ShuttersWindowOpen
+ entities:
+ - uid: 1650
+ components:
+ - pos: -9.5,2.5
+ parent: 407
+ type: Transform
+- proto: ShuttleWindow
+ entities:
+ - uid: 18
+ components:
+ - pos: 7.5,-17.5
+ parent: 407
+ type: Transform
+ - uid: 29
+ components:
+ - pos: 9.5,-10.5
+ parent: 407
+ type: Transform
+ - uid: 30
+ components:
+ - pos: 12.5,-10.5
+ parent: 407
+ type: Transform
+ - uid: 49
+ components:
+ - pos: 3.5,-13.5
+ parent: 407
+ type: Transform
+ - uid: 50
+ components:
+ - pos: 3.5,-14.5
+ parent: 407
+ type: Transform
+ - uid: 51
+ components:
+ - pos: 3.5,-15.5
+ parent: 407
+ type: Transform
+ - uid: 55
+ components:
+ - pos: 12.5,-6.5
+ parent: 407
+ type: Transform
+ - uid: 70
+ components:
+ - pos: 0.5,-14.5
+ parent: 407
+ type: Transform
+ - uid: 71
+ components:
+ - pos: -0.5,-14.5
+ parent: 407
+ type: Transform
+ - uid: 72
+ components:
+ - pos: -0.5,-13.5
+ parent: 407
+ type: Transform
+ - uid: 73
+ components:
+ - pos: -1.5,-13.5
+ parent: 407
+ type: Transform
+ - uid: 74
+ components:
+ - pos: -1.5,-12.5
+ parent: 407
+ type: Transform
+ - uid: 91
+ components:
+ - pos: -6.5,-7.5
+ parent: 407
+ type: Transform
+ - uid: 92
+ components:
+ - pos: -6.5,-8.5
+ parent: 407
+ type: Transform
+ - uid: 93
+ components:
+ - pos: -5.5,-8.5
+ parent: 407
+ type: Transform
+ - uid: 94
+ components:
+ - pos: -5.5,-9.5
+ parent: 407
+ type: Transform
+ - uid: 95
+ components:
+ - pos: -4.5,-9.5
+ parent: 407
+ type: Transform
+ - uid: 138
+ components:
+ - pos: -16.5,5.5
+ parent: 407
+ type: Transform
+ - uid: 139
+ components:
+ - pos: -16.5,7.5
+ parent: 407
+ type: Transform
+ - uid: 156
+ components:
+ - pos: -14.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 180
+ components:
+ - pos: -13.5,6.5
+ parent: 407
+ type: Transform
+ - uid: 181
+ components:
+ - pos: -9.5,6.5
+ parent: 407
+ type: Transform
+ - uid: 182
+ components:
+ - pos: -8.5,6.5
+ parent: 407
+ type: Transform
+ - uid: 183
+ components:
+ - pos: -14.5,-5.5
+ parent: 407
+ type: Transform
+ - uid: 184
+ components:
+ - pos: -13.5,-5.5
+ parent: 407
+ type: Transform
+ - uid: 185
+ components:
+ - pos: -12.5,-5.5
+ parent: 407
+ type: Transform
+ - uid: 186
+ components:
+ - pos: -10.5,-5.5
+ parent: 407
+ type: Transform
+ - uid: 187
+ components:
+ - pos: -9.5,-5.5
+ parent: 407
+ type: Transform
+ - uid: 188
+ components:
+ - pos: -8.5,-5.5
+ parent: 407
+ type: Transform
+ - uid: 203
+ components:
+ - pos: -3.5,11.5
+ parent: 407
+ type: Transform
+ - uid: 213
+ components:
+ - pos: 0.5,14.5
+ parent: 407
+ type: Transform
+ - uid: 214
+ components:
+ - pos: 2.5,16.5
+ parent: 407
+ type: Transform
+ - uid: 215
+ components:
+ - pos: 0.5,16.5
+ parent: 407
+ type: Transform
+ - uid: 216
+ components:
+ - pos: 2.5,14.5
+ parent: 407
+ type: Transform
+ - uid: 234
+ components:
+ - pos: 6.5,20.5
+ parent: 407
+ type: Transform
+ - uid: 235
+ components:
+ - pos: 6.5,21.5
+ parent: 407
+ type: Transform
+ - uid: 236
+ components:
+ - pos: 8.5,20.5
+ parent: 407
+ type: Transform
+ - uid: 237
+ components:
+ - pos: 8.5,21.5
+ parent: 407
+ type: Transform
+ - uid: 253
+ components:
+ - pos: 12.5,11.5
+ parent: 407
+ type: Transform
+ - uid: 254
+ components:
+ - pos: 12.5,12.5
+ parent: 407
+ type: Transform
+ - uid: 272
+ components:
+ - pos: 15.5,-5.5
+ parent: 407
+ type: Transform
+ - uid: 273
+ components:
+ - pos: 16.5,-5.5
+ parent: 407
+ type: Transform
+ - uid: 274
+ components:
+ - pos: 17.5,-5.5
+ parent: 407
+ type: Transform
+ - uid: 275
+ components:
+ - pos: 18.5,-5.5
+ parent: 407
+ type: Transform
+ - uid: 276
+ components:
+ - pos: 13.5,-0.5
+ parent: 407
+ type: Transform
+ - uid: 277
+ components:
+ - pos: 13.5,1.5
+ parent: 407
+ type: Transform
+ - uid: 278
+ components:
+ - pos: 13.5,3.5
+ parent: 407
+ type: Transform
+ - uid: 279
+ components:
+ - pos: 13.5,5.5
+ parent: 407
+ type: Transform
+ - uid: 280
+ components:
+ - pos: 14.5,6.5
+ parent: 407
+ type: Transform
+ - uid: 281
+ components:
+ - pos: 15.5,6.5
+ parent: 407
+ type: Transform
+ - uid: 282
+ components:
+ - pos: 16.5,6.5
+ parent: 407
+ type: Transform
+ - uid: 283
+ components:
+ - pos: 19.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 284
+ components:
+ - pos: 20.5,1.5
+ parent: 407
+ type: Transform
+ - uid: 285
+ components:
+ - pos: 20.5,-0.5
+ parent: 407
+ type: Transform
+ - uid: 325
+ components:
+ - pos: 27.5,-0.5
+ parent: 407
+ type: Transform
+ - uid: 326
+ components:
+ - pos: 27.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 327
+ components:
+ - pos: 27.5,1.5
+ parent: 407
+ type: Transform
+ - uid: 328
+ components:
+ - pos: 27.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 329
+ components:
+ - pos: 27.5,3.5
+ parent: 407
+ type: Transform
+ - uid: 330
+ components:
+ - pos: 26.5,3.5
+ parent: 407
+ type: Transform
+ - uid: 331
+ components:
+ - pos: 26.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 332
+ components:
+ - pos: 25.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 333
+ components:
+ - pos: 25.5,5.5
+ parent: 407
+ type: Transform
+ - uid: 334
+ components:
+ - pos: 24.5,5.5
+ parent: 407
+ type: Transform
+ - uid: 335
+ components:
+ - pos: 19.5,6.5
+ parent: 407
+ type: Transform
+ - uid: 347
+ components:
+ - pos: 3.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 357
+ components:
+ - pos: 1.5,-4.5
+ parent: 407
+ type: Transform
+ - uid: 358
+ components:
+ - pos: 1.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 359
+ components:
+ - pos: 1.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 360
+ components:
+ - pos: 1.5,-0.5
+ parent: 407
+ type: Transform
+ - uid: 361
+ components:
+ - pos: 1.5,1.5
+ parent: 407
+ type: Transform
+ - uid: 362
+ components:
+ - pos: 2.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 364
+ components:
+ - pos: 6.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 377
+ components:
+ - pos: 24.5,-4.5
+ parent: 407
+ type: Transform
+ - uid: 378
+ components:
+ - pos: 25.5,-4.5
+ parent: 407
+ type: Transform
+ - uid: 379
+ components:
+ - pos: 25.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 380
+ components:
+ - pos: 26.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 381
+ components:
+ - pos: 26.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 1025
+ components:
+ - pos: -24.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 1026
+ components:
+ - pos: -24.5,-0.5
+ parent: 407
+ type: Transform
+ - uid: 1027
+ components:
+ - pos: -24.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 1028
+ components:
+ - pos: -24.5,1.5
+ parent: 407
+ type: Transform
+ - uid: 1029
+ components:
+ - pos: -24.5,2.5
+ parent: 407
+ type: Transform
+- proto: SignalButton
+ entities:
+ - uid: 1251
+ components:
+ - pos: -5.5,9.5
+ parent: 407
+ type: Transform
+ - uid: 1255
+ components:
+ - pos: -19.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 2163
+ components:
+ - pos: -6.5,5.5
+ parent: 407
+ type: Transform
+- proto: SignAtmosMinsky
+ entities:
+ - uid: 1560
+ components:
+ - pos: 1.5,-11.5
+ parent: 407
+ type: Transform
+- proto: SignChem
+ entities:
+ - uid: 1744
+ components:
+ - pos: 5.5,1.5
+ parent: 407
+ type: Transform
+- proto: SignElectricalMed
+ entities:
+ - uid: 1854
+ components:
+ - pos: 3.5,-8.5
+ parent: 407
+ type: Transform
+- proto: SignEngineering
+ entities:
+ - uid: 1857
+ components:
+ - pos: -15.5,1.5
+ parent: 407
+ type: Transform
+- proto: SignEVA
+ entities:
+ - uid: 1829
+ components:
+ - pos: -15.5,6.5
+ parent: 407
+ type: Transform
+- proto: SignKiddiePlaque
+ entities:
+ - uid: 2161
+ components:
+ - pos: -17.5,-5.5
+ parent: 407
+ type: Transform
+- proto: SignMedical
+ entities:
+ - uid: 1745
+ components:
+ - pos: 1.5,-1.5
+ parent: 407
+ type: Transform
+- proto: SignPlaque
+ entities:
+ - uid: 2160
+ components:
+ - pos: 24.5,-1.5
+ parent: 407
+ type: Transform
+- proto: SignPrison
+ entities:
+ - uid: 1883
+ components:
+ - pos: 17.5,4.5
+ parent: 407
+ type: Transform
+- proto: SignScience
+ entities:
+ - uid: 1984
+ components:
+ - pos: -0.5,6.5
+ parent: 407
+ type: Transform
+- proto: SignSecureMed
+ entities:
+ - uid: 2117
+ components:
+ - pos: 20.5,-1.5
+ parent: 407
+ type: Transform
+- proto: SignSecureSmallRed
+ entities:
+ - uid: 2116
+ components:
+ - pos: 15.5,-1.5
+ parent: 407
+ type: Transform
+- proto: SignSecurity
+ entities:
+ - uid: 2120
+ components:
+ - pos: 13.5,2.5
+ parent: 407
+ type: Transform
+- proto: SignToolStorage
+ entities:
+ - uid: 1791
+ components:
+ - pos: -19.5,4.5
+ parent: 407
+ type: Transform
+- proto: SinkWide
+ entities:
+ - uid: 1725
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -5.5,3.5
+ parent: 407
+ type: Transform
+ - uid: 1726
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -10.5,3.5
+ parent: 407
+ type: Transform
+ - uid: 1834
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -12.5,3.5
+ parent: 407
+ type: Transform
+- proto: SmartFridge
+ entities:
+ - uid: 1579
+ components:
+ - flags: SessionSpecific
+ type: MetaData
+ - pos: -6.5,3.5
+ parent: 407
+ type: Transform
+ - uid: 1869
+ components:
+ - pos: 8.5,-1.5
+ parent: 407
+ type: Transform
+- proto: SMESBasic
+ entities:
+ - uid: 376
+ components:
+ - pos: -22.5,3.5
+ parent: 407
+ type: Transform
+- proto: SoapNT
+ entities:
+ - uid: 2111
+ components:
+ - pos: 16.59669,-4.5284977
+ parent: 407
+ type: Transform
+- proto: soda_dispenser
+ entities:
+ - uid: 1778
+ components:
+ - pos: -9.5,5.5
+ parent: 407
+ type: Transform
+- proto: SpawnMobCorgi
+ entities:
+ - uid: 1826
+ components:
+ - pos: 18.5,-3.5
+ parent: 407
+ type: Transform
+- proto: SpawnMobFoxRenault
+ entities:
+ - uid: 1886
+ components:
+ - pos: 21.5,-3.5
+ parent: 407
+ type: Transform
+- proto: SpawnPointAssistant
+ entities:
+ - uid: 2060
+ components:
+ - pos: 6.5,15.5
+ parent: 407
+ type: Transform
+ - uid: 2061
+ components:
+ - pos: 8.5,15.5
+ parent: 407
+ type: Transform
+- proto: SpawnPointAtmos
+ entities:
+ - uid: 1814
+ components:
+ - pos: 6.5,-12.5
+ parent: 407
+ type: Transform
+- proto: SpawnPointBartender
+ entities:
+ - uid: 1916
+ components:
+ - pos: -9.5,4.5
+ parent: 407
+ type: Transform
+- proto: SpawnPointBotanist
+ entities:
+ - uid: 1915
+ components:
+ - pos: -13.5,4.5
+ parent: 407
+ type: Transform
+- proto: SpawnPointCaptain
+ entities:
+ - uid: 1941
+ components:
+ - pos: 23.5,-3.5
+ parent: 407
+ type: Transform
+- proto: SpawnPointCargoTechnician
+ entities:
+ - uid: 1998
+ components:
+ - pos: 1.5,12.5
+ parent: 407
+ type: Transform
+ - uid: 1999
+ components:
+ - pos: 0.5,12.5
+ parent: 407
+ type: Transform
+- proto: SpawnPointChef
+ entities:
+ - uid: 1917
+ components:
+ - pos: -4.5,4.5
+ parent: 407
+ type: Transform
+- proto: SpawnPointChemist
+ entities:
+ - uid: 1739
+ components:
+ - pos: 8.5,0.5
+ parent: 407
+ type: Transform
+- proto: SpawnPointHeadOfSecurity
+ entities:
+ - uid: 2133
+ components:
+ - pos: 22.5,2.5
+ parent: 407
+ type: Transform
+- proto: SpawnPointJanitor
+ entities:
+ - uid: 1674
+ components:
+ - pos: -4.5,-7.5
+ parent: 407
+ type: Transform
+- proto: SpawnPointLatejoin
+ entities:
+ - uid: 2057
+ components:
+ - pos: 4.5,15.5
+ parent: 407
+ type: Transform
+ - uid: 2058
+ components:
+ - pos: 4.5,16.5
+ parent: 407
+ type: Transform
+ - uid: 2059
+ components:
+ - pos: 10.5,16.5
+ parent: 407
+ type: Transform
+- proto: SpawnPointMedicalDoctor
+ entities:
+ - uid: 1911
+ components:
+ - pos: 3.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 1912
+ components:
+ - pos: 4.5,-2.5
+ parent: 407
+ type: Transform
+- proto: SpawnPointMusician
+ entities:
+ - uid: 1920
+ components:
+ - pos: -4.5,-2.5
+ parent: 407
+ type: Transform
+- proto: SpawnPointScientist
+ entities:
+ - uid: 1997
+ components:
+ - pos: -2.5,8.5
+ parent: 407
+ type: Transform
+- proto: SpawnPointSecurityOfficer
+ entities:
+ - uid: 2134
+ components:
+ - pos: 15.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 2135
+ components:
+ - pos: 16.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 2136
+ components:
+ - pos: 17.5,-3.5
+ parent: 407
+ type: Transform
+- proto: SpawnPointStationEngineer
+ entities:
+ - uid: 1913
+ components:
+ - pos: -17.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 1914
+ components:
+ - pos: -17.5,0.5
+ parent: 407
+ type: Transform
+- proto: SprayBottleSpaceCleaner
+ entities:
+ - uid: 1671
+ components:
+ - pos: -5.545308,-7.7092304
+ parent: 407
+ type: Transform
+- proto: StasisBed
+ entities:
+ - uid: 1628
+ components:
+ - pos: 12.5,-4.5
+ parent: 407
+ type: Transform
+- proto: StatueVenusBlue
+ entities:
+ - uid: 2023
+ components:
+ - pos: 10.5,9.5
+ parent: 407
+ type: Transform
+- proto: StatueVenusRed
+ entities:
+ - uid: 2022
+ components:
+ - pos: 10.5,14.5
+ parent: 407
+ type: Transform
+- proto: StoolBar
+ entities:
+ - uid: 1699
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -10.5,1.5
+ parent: 407
+ type: Transform
+ - uid: 1700
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -9.5,1.5
+ parent: 407
+ type: Transform
+ - uid: 1701
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -8.5,1.5
+ parent: 407
+ type: Transform
+- proto: Stunbaton
+ entities:
+ - uid: 2108
+ components:
+ - pos: 16.40919,-4.3566227
+ parent: 407
+ type: Transform
+ - uid: 2109
+ components:
+ - pos: 16.581064,-4.4972477
+ parent: 407
+ type: Transform
+- proto: SubstationBasic
+ entities:
+ - uid: 115
+ components:
+ - name: Starboard Quarter Substation
+ type: MetaData
+ - pos: -19.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 366
+ components:
+ - name: Port Bow Substation
+ type: MetaData
+ - pos: 11.5,7.5
+ parent: 407
+ type: Transform
+ - uid: 367
+ components:
+ - name: Bow Substation
+ type: MetaData
+ - pos: 21.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 368
+ components:
+ - name: Starboard Bow Substation
+ type: MetaData
+ - pos: 2.5,-9.5
+ parent: 407
+ type: Transform
+ - uid: 369
+ components:
+ - name: Port Stern Substation
+ type: MetaData
+ - pos: -6.5,7.5
+ parent: 407
+ type: Transform
+ - uid: 370
+ components:
+ - name: Aft Substation
+ type: MetaData
+ - pos: -21.5,3.5
+ parent: 407
+ type: Transform
+- proto: SuitStorageBasic
+ entities:
+ - uid: 1827
+ components:
+ - pos: -16.5,3.5
+ parent: 407
+ type: Transform
+- proto: SuitStorageEVAAlternate
+ entities:
+ - uid: 1547
+ components:
+ - pos: -16.5,4.5
+ parent: 407
+ type: Transform
+- proto: SuitStorageRD
+ entities:
+ - uid: 1843
+ components:
+ - pos: -4.5,7.5
+ parent: 407
+ type: Transform
+- proto: SuitStorageSec
+ entities:
+ - uid: 1870
+ components:
+ - pos: 17.5,-4.5
+ parent: 407
+ type: Transform
+- proto: SurveillanceCameraRouterSecurity
+ entities:
+ - uid: 1907
+ components:
+ - pos: 14.5,-2.5
+ parent: 407
+ type: Transform
+- proto: SurveillanceCameraSecurity
+ entities:
+ - uid: 1940
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 21.5,2.5
+ parent: 407
+ type: Transform
+ - setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Bridge
+ type: SurveillanceCamera
+ - uid: 1942
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 18.5,4.5
+ parent: 407
+ type: Transform
+ - setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Brig
+ type: SurveillanceCamera
+ - uid: 1943
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -20.5,-1.5
+ parent: 407
+ type: Transform
+ - setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Radiation Engine
+ type: SurveillanceCamera
+ - uid: 1944
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -16.5,1.5
+ parent: 407
+ type: Transform
+ - setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Engineering
+ type: SurveillanceCamera
+ - uid: 1945
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -6.5,1.5
+ parent: 407
+ type: Transform
+ - setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Bar
+ type: SurveillanceCamera
+ - uid: 1946
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 4.5,-13.5
+ parent: 407
+ type: Transform
+ - setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Atmosia
+ type: SurveillanceCamera
+ - uid: 1950
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 6.5,-6.5
+ parent: 407
+ type: Transform
+ - setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Disposals
+ type: SurveillanceCamera
+ - uid: 1951
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 4.5,1.5
+ parent: 407
+ type: Transform
+ - setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Medbay
+ type: SurveillanceCamera
+ - uid: 1952
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 5.5,12.5
+ parent: 407
+ type: Transform
+ - setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Arrivals
+ type: SurveillanceCamera
+ - uid: 1972
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 0.5,9.5
+ parent: 407
+ type: Transform
+ - setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Cargo Bay
+ type: SurveillanceCamera
+ - uid: 1973
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -1.5,9.5
+ parent: 407
+ type: Transform
+ - setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Science
+ type: SurveillanceCamera
+ - uid: 2085
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -1.5,-4.5
+ parent: 407
+ type: Transform
+ - setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Abeam to Starboard
+ type: SurveillanceCamera
+ - uid: 2086
+ components:
+ - pos: -15.5,8.5
+ parent: 407
+ type: Transform
+ - setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Off the Port Quarter
+ type: SurveillanceCamera
+- proto: SyringeInaprovaline
+ entities:
+ - uid: 1899
+ components:
+ - pos: 10.559818,-4.3941536
+ parent: 407
+ type: Transform
+- proto: SyringeTranexamicAcid
+ entities:
+ - uid: 1900
+ components:
+ - pos: 9.481693,-3.4879038
+ parent: 407
+ type: Transform
+- proto: Table
+ entities:
+ - uid: 1235
+ components:
+ - pos: 11.5,1.5
+ parent: 407
+ type: Transform
+ - uid: 1719
+ components:
+ - pos: -3.5,3.5
+ parent: 407
+ type: Transform
+ - uid: 1720
+ components:
+ - pos: -3.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 1721
+ components:
+ - pos: -3.5,5.5
+ parent: 407
+ type: Transform
+ - uid: 1804
+ components:
+ - pos: -18.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 1816
+ components:
+ - pos: -16.5,-4.5
+ parent: 407
+ type: Transform
+ - uid: 1818
+ components:
+ - pos: -16.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 1868
+ components:
+ - pos: 12.5,1.5
+ parent: 407
+ type: Transform
+ - uid: 1964
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 1.5,11.5
+ parent: 407
+ type: Transform
+ - uid: 2001
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -2.5,7.5
+ parent: 407
+ type: Transform
+ - uid: 2002
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -3.5,7.5
+ parent: 407
+ type: Transform
+ - uid: 2126
+ components:
+ - pos: 16.5,4.5
+ parent: 407
+ type: Transform
+- proto: TableCarpet
+ entities:
+ - uid: 1693
+ components:
+ - pos: -13.5,-4.5
+ parent: 407
+ type: Transform
+ - uid: 1694
+ components:
+ - pos: -13.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 1695
+ components:
+ - pos: -13.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 1696
+ components:
+ - pos: -9.5,-4.5
+ parent: 407
+ type: Transform
+ - uid: 1697
+ components:
+ - pos: -9.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 1698
+ components:
+ - pos: -9.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 1848
+ components:
+ - pos: 6.5,-8.5
+ parent: 407
+ type: Transform
+ - uid: 1887
+ components:
+ - pos: 25.5,-2.5
+ parent: 407
+ type: Transform
+- proto: TableGlass
+ entities:
+ - uid: 1735
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 6.5,-0.5
+ parent: 407
+ type: Transform
+ - uid: 1736
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 8.5,-0.5
+ parent: 407
+ type: Transform
+ - uid: 1748
+ components:
+ - pos: 4.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 1749
+ components:
+ - pos: 7.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 1750
+ components:
+ - pos: 9.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 1751
+ components:
+ - pos: 6.5,-4.5
+ parent: 407
+ type: Transform
+ - uid: 1752
+ components:
+ - pos: 10.5,-4.5
+ parent: 407
+ type: Transform
+ - uid: 1762
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -5.5,-4.5
+ parent: 407
+ type: Transform
+ - uid: 1763
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -3.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 2200
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 3.5,3.5
+ parent: 407
+ type: Transform
+ - uid: 2202
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 7.5,3.5
+ parent: 407
+ type: Transform
+ - uid: 2203
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 11.5,3.5
+ parent: 407
+ type: Transform
+- proto: TableReinforced
+ entities:
+ - uid: 171
+ components:
+ - pos: -3.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 1642
+ components:
+ - pos: 7.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 1643
+ components:
+ - pos: 5.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 1644
+ components:
+ - pos: 2.5,6.5
+ parent: 407
+ type: Transform
+ - uid: 1645
+ components:
+ - pos: -4.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 1774
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -9.5,5.5
+ parent: 407
+ type: Transform
+ - uid: 1775
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -8.5,5.5
+ parent: 407
+ type: Transform
+ - uid: 1929
+ components:
+ - pos: 18.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 1930
+ components:
+ - pos: 19.5,-4.5
+ parent: 407
+ type: Transform
+ - uid: 1931
+ components:
+ - pos: 18.5,-4.5
+ parent: 407
+ type: Transform
+ - uid: 1933
+ components:
+ - pos: 16.5,-4.5
+ parent: 407
+ type: Transform
+ - uid: 1966
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -0.5,10.5
+ parent: 407
+ type: Transform
+ - uid: 2089
+ components:
+ - pos: 26.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 2090
+ components:
+ - pos: 25.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 2091
+ components:
+ - pos: 24.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 2092
+ components:
+ - pos: 24.5,1.5
+ parent: 407
+ type: Transform
+ - uid: 2093
+ components:
+ - pos: 26.5,-0.5
+ parent: 407
+ type: Transform
+ - uid: 2094
+ components:
+ - pos: 24.5,-0.5
+ parent: 407
+ type: Transform
+- proto: TableWood
+ entities:
+ - uid: 1646
+ components:
+ - pos: -10.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 1647
+ components:
+ - pos: -9.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 1648
+ components:
+ - pos: -8.5,2.5
+ parent: 407
+ type: Transform
+- proto: TargetStrange
+ entities:
+ - uid: 1906
+ components:
+ - pos: -20.5,-5.5
+ parent: 407
+ type: Transform
+- proto: Thruster
+ entities:
+ - uid: 1108
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 12.5,-8.5
+ parent: 407
+ type: Transform
+ - uid: 1109
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 12.5,-13.5
+ parent: 407
+ type: Transform
+ - uid: 1110
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 9.5,-17.5
+ parent: 407
+ type: Transform
+ - uid: 1111
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 5.5,-17.5
+ parent: 407
+ type: Transform
+ - uid: 1112
+ components:
+ - pos: 5.5,18.5
+ parent: 407
+ type: Transform
+ - uid: 1113
+ components:
+ - pos: 9.5,18.5
+ parent: 407
+ type: Transform
+ - uid: 1114
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 12.5,14.5
+ parent: 407
+ type: Transform
+ - uid: 1115
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 12.5,9.5
+ parent: 407
+ type: Transform
+ - uid: 1116
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -30.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 1117
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -31.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 1118
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -30.5,3.5
+ parent: 407
+ type: Transform
+ - uid: 1119
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -31.5,4.5
+ parent: 407
+ type: Transform
+- proto: ToolboxEmergencyFilled
+ entities:
+ - uid: 1824
+ components:
+ - pos: -18.58636,2.82432
+ parent: 407
+ type: Transform
+ - uid: 2149
+ components:
+ - pos: 24.518682,1.6764594
+ parent: 407
+ type: Transform
+ - uid: 2150
+ components:
+ - pos: 3.4477897,-7.6741214
+ parent: 407
+ type: Transform
+- proto: TrashBag
+ entities:
+ - uid: 1669
+ components:
+ - pos: -5.342183,-7.4904804
+ parent: 407
+ type: Transform
+- proto: TrashBananaPeel
+ entities:
+ - uid: 1666
+ components:
+ - pos: -4.498433,-6.6936054
+ parent: 407
+ type: Transform
+- proto: TwoWayLever
+ entities:
+ - uid: 1471
+ components:
+ - pos: 9.5,-7.5
+ parent: 407
+ type: Transform
+ - uid: 1472
+ components:
+ - pos: 10.5,-7.5
+ parent: 407
+ type: Transform
+ - uid: 1960
+ components:
+ - pos: 2.5,12.5
+ parent: 407
+ type: Transform
+- proto: VendingMachineBooze
+ entities:
+ - uid: 1776
+ components:
+ - flags: SessionSpecific
+ type: MetaData
+ - pos: -7.5,5.5
+ parent: 407
+ type: Transform
+- proto: VendingMachineChemicals
+ entities:
+ - uid: 1800
+ components:
+ - pos: 10.5,1.5
+ parent: 407
+ type: Transform
+- proto: VendingMachineCoffee
+ entities:
+ - uid: 1566
+ components:
+ - flags: SessionSpecific
+ type: MetaData
+ - pos: -2.5,-10.5
+ parent: 407
+ type: Transform
+- proto: VendingMachineCondiments
+ entities:
+ - uid: 1485
+ components:
+ - flags: SessionSpecific
+ type: MetaData
+ - rot: 3.141592653589793 rad
+ pos: -3.5,2.5
+ parent: 407
+ type: Transform
+- proto: VendingMachineDinnerware
+ entities:
+ - uid: 1654
+ components:
+ - flags: SessionSpecific
+ type: MetaData
+ - pos: -5.5,5.5
+ parent: 407
+ type: Transform
+- proto: VendingMachineEngivend
+ entities:
+ - uid: 1811
+ components:
+ - flags: SessionSpecific
+ type: MetaData
+ - pos: -18.5,-1.5
+ parent: 407
+ type: Transform
+- proto: VendingMachineJaniDrobe
+ entities:
+ - uid: 1658
+ components:
+ - flags: SessionSpecific
+ type: MetaData
+ - pos: -6.5,-6.5
+ parent: 407
+ type: Transform
+- proto: VendingMachineMedical
+ entities:
+ - uid: 1746
+ components:
+ - flags: SessionSpecific
+ type: MetaData
+ - pos: 2.5,-4.5
+ parent: 407
+ type: Transform
+- proto: VendingMachineSec
+ entities:
+ - uid: 1910
+ components:
+ - flags: SessionSpecific
+ type: MetaData
+ - pos: 15.5,-2.5
+ parent: 407
+ type: Transform
+- proto: VendingMachineSecDrobe
+ entities:
+ - uid: 2112
+ components:
+ - flags: SessionSpecific
+ type: MetaData
+ - pos: 15.5,-0.5
+ parent: 407
+ type: Transform
+- proto: VendingMachineSeedsUnlocked
+ entities:
+ - uid: 1780
+ components:
+ - flags: SessionSpecific
+ type: MetaData
+ - pos: -13.5,5.5
+ parent: 407
+ type: Transform
+- proto: VendingMachineTankDispenserEngineering
+ entities:
+ - uid: 1932
+ components:
+ - pos: -16.5,1.5
+ parent: 407
+ type: Transform
+- proto: VendingMachineTankDispenserEVA
+ entities:
+ - uid: 1557
+ components:
+ - flags: SessionSpecific
+ type: MetaData
+ - pos: 2.5,-13.5
+ parent: 407
+ type: Transform
+ - uid: 1805
+ components:
+ - flags: SessionSpecific
+ type: MetaData
+ - pos: -16.5,2.5
+ parent: 407
+ type: Transform
+- proto: VendingMachineYouTool
+ entities:
+ - uid: 1789
+ components:
+ - flags: SessionSpecific
+ type: MetaData
+ - pos: -18.5,4.5
+ parent: 407
+ type: Transform
+- proto: WallShuttle
+ entities:
+ - uid: 2
+ components:
+ - pos: -31.5,-4.5
+ parent: 407
+ type: Transform
+ - uid: 3
+ components:
+ - pos: 8.5,-12.5
+ parent: 407
+ type: Transform
+ - uid: 4
+ components:
+ - pos: 9.5,-12.5
+ parent: 407
+ type: Transform
+ - uid: 5
+ components:
+ - pos: 10.5,-12.5
+ parent: 407
+ type: Transform
+ - uid: 6
+ components:
+ - pos: 11.5,-12.5
+ parent: 407
+ type: Transform
+ - uid: 7
+ components:
+ - pos: 11.5,-13.5
+ parent: 407
+ type: Transform
+ - uid: 8
+ components:
+ - pos: 11.5,-14.5
+ parent: 407
+ type: Transform
+ - uid: 9
+ components:
+ - pos: 11.5,-15.5
+ parent: 407
+ type: Transform
+ - uid: 10
+ components:
+ - pos: 11.5,-16.5
+ parent: 407
+ type: Transform
+ - uid: 11
+ components:
+ - pos: 10.5,-14.5
+ parent: 407
+ type: Transform
+ - uid: 12
+ components:
+ - pos: 9.5,-14.5
+ parent: 407
+ type: Transform
+ - uid: 13
+ components:
+ - pos: 8.5,-14.5
+ parent: 407
+ type: Transform
+ - uid: 14
+ components:
+ - pos: 10.5,-16.5
+ parent: 407
+ type: Transform
+ - uid: 15
+ components:
+ - pos: 9.5,-16.5
+ parent: 407
+ type: Transform
+ - uid: 16
+ components:
+ - pos: 8.5,-16.5
+ parent: 407
+ type: Transform
+ - uid: 17
+ components:
+ - pos: 8.5,-17.5
+ parent: 407
+ type: Transform
+ - uid: 19
+ components:
+ - pos: 10.5,-17.5
+ parent: 407
+ type: Transform
+ - uid: 20
+ components:
+ - pos: 6.5,-17.5
+ parent: 407
+ type: Transform
+ - uid: 21
+ components:
+ - pos: 6.5,-16.5
+ parent: 407
+ type: Transform
+ - uid: 22
+ components:
+ - pos: 5.5,-16.5
+ parent: 407
+ type: Transform
+ - uid: 23
+ components:
+ - pos: 4.5,-16.5
+ parent: 407
+ type: Transform
+ - uid: 24
+ components:
+ - pos: 3.5,-16.5
+ parent: 407
+ type: Transform
+ - uid: 25
+ components:
+ - pos: 4.5,-17.5
+ parent: 407
+ type: Transform
+ - uid: 26
+ components:
+ - pos: 12.5,-14.5
+ parent: 407
+ type: Transform
+ - uid: 27
+ components:
+ - pos: 12.5,-12.5
+ parent: 407
+ type: Transform
+ - uid: 28
+ components:
+ - pos: 12.5,-9.5
+ parent: 407
+ type: Transform
+ - uid: 31
+ components:
+ - pos: 11.5,-9.5
+ parent: 407
+ type: Transform
+ - uid: 32
+ components:
+ - pos: 10.5,-9.5
+ parent: 407
+ type: Transform
+ - uid: 33
+ components:
+ - pos: 9.5,-9.5
+ parent: 407
+ type: Transform
+ - uid: 34
+ components:
+ - pos: 8.5,-9.5
+ parent: 407
+ type: Transform
+ - uid: 35
+ components:
+ - pos: 7.5,-9.5
+ parent: 407
+ type: Transform
+ - uid: 36
+ components:
+ - pos: 6.5,-9.5
+ parent: 407
+ type: Transform
+ - uid: 37
+ components:
+ - pos: 5.5,-9.5
+ parent: 407
+ type: Transform
+ - uid: 38
+ components:
+ - pos: 4.5,-9.5
+ parent: 407
+ type: Transform
+ - uid: 39
+ components:
+ - pos: 3.5,-9.5
+ parent: 407
+ type: Transform
+ - uid: 40
+ components:
+ - pos: 3.5,-10.5
+ parent: 407
+ type: Transform
+ - uid: 41
+ components:
+ - pos: 3.5,-11.5
+ parent: 407
+ type: Transform
+ - uid: 42
+ components:
+ - pos: 1.5,-11.5
+ parent: 407
+ type: Transform
+ - uid: 43
+ components:
+ - pos: 1.5,-10.5
+ parent: 407
+ type: Transform
+ - uid: 44
+ components:
+ - pos: 1.5,-9.5
+ parent: 407
+ type: Transform
+ - uid: 45
+ components:
+ - pos: 2.5,-10.5
+ parent: 407
+ type: Transform
+ - uid: 46
+ components:
+ - pos: 1.5,-13.5
+ parent: 407
+ type: Transform
+ - uid: 47
+ components:
+ - pos: 1.5,-14.5
+ parent: 407
+ type: Transform
+ - uid: 48
+ components:
+ - pos: 2.5,-14.5
+ parent: 407
+ type: Transform
+ - uid: 52
+ components:
+ - pos: 11.5,-8.5
+ parent: 407
+ type: Transform
+ - uid: 53
+ components:
+ - pos: 11.5,-7.5
+ parent: 407
+ type: Transform
+ - uid: 54
+ components:
+ - pos: 12.5,-7.5
+ parent: 407
+ type: Transform
+ - uid: 56
+ components:
+ - pos: 1.5,-5.5
+ parent: 407
+ type: Transform
+ - uid: 57
+ components:
+ - pos: 2.5,-5.5
+ parent: 407
+ type: Transform
+ - uid: 58
+ components:
+ - pos: 4.5,-5.5
+ parent: 407
+ type: Transform
+ - uid: 59
+ components:
+ - pos: 5.5,-5.5
+ parent: 407
+ type: Transform
+ - uid: 60
+ components:
+ - pos: 6.5,-5.5
+ parent: 407
+ type: Transform
+ - uid: 61
+ components:
+ - pos: 7.5,-5.5
+ parent: 407
+ type: Transform
+ - uid: 62
+ components:
+ - pos: 8.5,-5.5
+ parent: 407
+ type: Transform
+ - uid: 63
+ components:
+ - pos: 9.5,-5.5
+ parent: 407
+ type: Transform
+ - uid: 64
+ components:
+ - pos: 10.5,-5.5
+ parent: 407
+ type: Transform
+ - uid: 65
+ components:
+ - pos: 11.5,-5.5
+ parent: 407
+ type: Transform
+ - uid: 66
+ components:
+ - pos: 12.5,-5.5
+ parent: 407
+ type: Transform
+ - uid: 67
+ components:
+ - pos: 1.5,-8.5
+ parent: 407
+ type: Transform
+ - uid: 68
+ components:
+ - pos: 1.5,-7.5
+ parent: 407
+ type: Transform
+ - uid: 69
+ components:
+ - pos: 3.5,-8.5
+ parent: 407
+ type: Transform
+ - uid: 75
+ components:
+ - pos: -2.5,-12.5
+ parent: 407
+ type: Transform
+ - uid: 76
+ components:
+ - pos: -2.5,-11.5
+ parent: 407
+ type: Transform
+ - uid: 77
+ components:
+ - pos: -3.5,-11.5
+ parent: 407
+ type: Transform
+ - uid: 78
+ components:
+ - pos: -3.5,-10.5
+ parent: 407
+ type: Transform
+ - uid: 79
+ components:
+ - pos: -3.5,-9.5
+ parent: 407
+ type: Transform
+ - uid: 80
+ components:
+ - pos: -2.5,-9.5
+ parent: 407
+ type: Transform
+ - uid: 81
+ components:
+ - pos: -2.5,-8.5
+ parent: 407
+ type: Transform
+ - uid: 82
+ components:
+ - pos: -2.5,-6.5
+ parent: 407
+ type: Transform
+ - uid: 83
+ components:
+ - pos: -2.5,-5.5
+ parent: 407
+ type: Transform
+ - uid: 84
+ components:
+ - pos: -3.5,-5.5
+ parent: 407
+ type: Transform
+ - uid: 85
+ components:
+ - pos: -4.5,-5.5
+ parent: 407
+ type: Transform
+ - uid: 86
+ components:
+ - pos: -5.5,-5.5
+ parent: 407
+ type: Transform
+ - uid: 87
+ components:
+ - pos: -6.5,-5.5
+ parent: 407
+ type: Transform
+ - uid: 88
+ components:
+ - pos: -7.5,-5.5
+ parent: 407
+ type: Transform
+ - uid: 89
+ components:
+ - pos: -7.5,-6.5
+ parent: 407
+ type: Transform
+ - uid: 90
+ components:
+ - pos: -7.5,-7.5
+ parent: 407
+ type: Transform
+ - uid: 96
+ components:
+ - pos: -11.5,-5.5
+ parent: 407
+ type: Transform
+ - uid: 97
+ components:
+ - pos: -15.5,-5.5
+ parent: 407
+ type: Transform
+ - uid: 98
+ components:
+ - pos: -16.5,-5.5
+ parent: 407
+ type: Transform
+ - uid: 99
+ components:
+ - pos: -17.5,-5.5
+ parent: 407
+ type: Transform
+ - uid: 100
+ components:
+ - pos: -18.5,-5.5
+ parent: 407
+ type: Transform
+ - uid: 101
+ components:
+ - pos: -19.5,-5.5
+ parent: 407
+ type: Transform
+ - uid: 102
+ components:
+ - pos: -15.5,-4.5
+ parent: 407
+ type: Transform
+ - uid: 103
+ components:
+ - pos: -15.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 104
+ components:
+ - pos: -15.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 105
+ components:
+ - pos: -15.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 106
+ components:
+ - pos: -15.5,-0.5
+ parent: 407
+ type: Transform
+ - uid: 107
+ components:
+ - pos: -15.5,1.5
+ parent: 407
+ type: Transform
+ - uid: 108
+ components:
+ - pos: -15.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 109
+ components:
+ - pos: -15.5,3.5
+ parent: 407
+ type: Transform
+ - uid: 110
+ components:
+ - pos: -15.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 111
+ components:
+ - pos: -15.5,5.5
+ parent: 407
+ type: Transform
+ - uid: 112
+ components:
+ - pos: -15.5,6.5
+ parent: 407
+ type: Transform
+ - uid: 113
+ components:
+ - pos: -15.5,7.5
+ parent: 407
+ type: Transform
+ - uid: 114
+ components:
+ - pos: -19.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 116
+ components:
+ - pos: -19.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 117
+ components:
+ - pos: -19.5,5.5
+ parent: 407
+ type: Transform
+ - uid: 118
+ components:
+ - pos: -19.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 119
+ components:
+ - pos: -19.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 120
+ components:
+ - pos: -18.5,5.5
+ parent: 407
+ type: Transform
+ - uid: 121
+ components:
+ - pos: -19.5,-4.5
+ parent: 407
+ type: Transform
+ - uid: 122
+ components:
+ - pos: -20.5,-4.5
+ parent: 407
+ type: Transform
+ - uid: 123
+ components:
+ - pos: -20.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 124
+ components:
+ - pos: -21.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 125
+ components:
+ - pos: -22.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 126
+ components:
+ - pos: -23.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 127
+ components:
+ - pos: -23.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 128
+ components:
+ - pos: -24.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 129
+ components:
+ - pos: -23.5,3.5
+ parent: 407
+ type: Transform
+ - uid: 130
+ components:
+ - pos: -24.5,3.5
+ parent: 407
+ type: Transform
+ - uid: 131
+ components:
+ - pos: -23.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 132
+ components:
+ - pos: -22.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 133
+ components:
+ - pos: -21.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 134
+ components:
+ - pos: -20.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 135
+ components:
+ - pos: -20.5,5.5
+ parent: 407
+ type: Transform
+ - uid: 136
+ components:
+ - pos: -18.5,6.5
+ parent: 407
+ type: Transform
+ - uid: 137
+ components:
+ - pos: -18.5,7.5
+ parent: 407
+ type: Transform
+ - uid: 140
+ components:
+ - pos: -30.5,-4.5
+ parent: 407
+ type: Transform
+ - uid: 141
+ components:
+ - pos: -30.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 142
+ components:
+ - pos: -29.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 143
+ components:
+ - pos: -31.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 144
+ components:
+ - pos: -29.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 145
+ components:
+ - pos: -28.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 146
+ components:
+ - pos: -29.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 147
+ components:
+ - pos: -29.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 148
+ components:
+ - pos: -29.5,3.5
+ parent: 407
+ type: Transform
+ - uid: 149
+ components:
+ - pos: -28.5,3.5
+ parent: 407
+ type: Transform
+ - uid: 150
+ components:
+ - pos: -29.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 151
+ components:
+ - pos: -31.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 152
+ components:
+ - pos: -30.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 153
+ components:
+ - pos: -30.5,5.5
+ parent: 407
+ type: Transform
+ - uid: 154
+ components:
+ - pos: -31.5,5.5
+ parent: 407
+ type: Transform
+ - uid: 157
+ components:
+ - pos: -12.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 158
+ components:
+ - pos: -13.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 159
+ components:
+ - pos: -11.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 160
+ components:
+ - pos: -11.5,3.5
+ parent: 407
+ type: Transform
+ - uid: 161
+ components:
+ - pos: -11.5,5.5
+ parent: 407
+ type: Transform
+ - uid: 162
+ components:
+ - pos: -11.5,6.5
+ parent: 407
+ type: Transform
+ - uid: 163
+ components:
+ - pos: -12.5,6.5
+ parent: 407
+ type: Transform
+ - uid: 164
+ components:
+ - pos: -14.5,6.5
+ parent: 407
+ type: Transform
+ - uid: 165
+ components:
+ - pos: -10.5,6.5
+ parent: 407
+ type: Transform
+ - uid: 166
+ components:
+ - pos: -7.5,6.5
+ parent: 407
+ type: Transform
+ - uid: 167
+ components:
+ - pos: -6.5,6.5
+ parent: 407
+ type: Transform
+ - uid: 168
+ components:
+ - pos: -6.5,5.5
+ parent: 407
+ type: Transform
+ - uid: 169
+ components:
+ - pos: -5.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 170
+ components:
+ - pos: -6.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 172
+ components:
+ - pos: -2.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 173
+ components:
+ - pos: -2.5,3.5
+ parent: 407
+ type: Transform
+ - uid: 174
+ components:
+ - pos: -2.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 175
+ components:
+ - pos: -2.5,5.5
+ parent: 407
+ type: Transform
+ - uid: 176
+ components:
+ - pos: -2.5,6.5
+ parent: 407
+ type: Transform
+ - uid: 177
+ components:
+ - pos: -3.5,6.5
+ parent: 407
+ type: Transform
+ - uid: 178
+ components:
+ - pos: -4.5,6.5
+ parent: 407
+ type: Transform
+ - uid: 179
+ components:
+ - pos: -5.5,6.5
+ parent: 407
+ type: Transform
+ - uid: 189
+ components:
+ - pos: -2.5,-4.5
+ parent: 407
+ type: Transform
+ - uid: 190
+ components:
+ - pos: -2.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 191
+ components:
+ - pos: -2.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 192
+ components:
+ - pos: -2.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 193
+ components:
+ - pos: -7.5,7.5
+ parent: 407
+ type: Transform
+ - uid: 194
+ components:
+ - pos: -7.5,8.5
+ parent: 407
+ type: Transform
+ - uid: 195
+ components:
+ - pos: -6.5,8.5
+ parent: 407
+ type: Transform
+ - uid: 196
+ components:
+ - pos: -6.5,9.5
+ parent: 407
+ type: Transform
+ - uid: 197
+ components:
+ - pos: -5.5,9.5
+ parent: 407
+ type: Transform
+ - uid: 198
+ components:
+ - pos: -5.5,10.5
+ parent: 407
+ type: Transform
+ - uid: 199
+ components:
+ - pos: -3.5,12.5
+ parent: 407
+ type: Transform
+ - uid: 200
+ components:
+ - pos: -2.5,12.5
+ parent: 407
+ type: Transform
+ - uid: 201
+ components:
+ - pos: -2.5,13.5
+ parent: 407
+ type: Transform
+ - uid: 202
+ components:
+ - pos: -1.5,13.5
+ parent: 407
+ type: Transform
+ - uid: 204
+ components:
+ - pos: -0.5,6.5
+ parent: 407
+ type: Transform
+ - uid: 206
+ components:
+ - pos: -0.5,8.5
+ parent: 407
+ type: Transform
+ - uid: 207
+ components:
+ - pos: -0.5,9.5
+ parent: 407
+ type: Transform
+ - uid: 208
+ components:
+ - pos: -0.5,12.5
+ parent: 407
+ type: Transform
+ - uid: 209
+ components:
+ - pos: -0.5,13.5
+ parent: 407
+ type: Transform
+ - uid: 210
+ components:
+ - pos: -0.5,14.5
+ parent: 407
+ type: Transform
+ - uid: 211
+ components:
+ - pos: -1.5,14.5
+ parent: 407
+ type: Transform
+ - uid: 212
+ components:
+ - pos: -0.5,15.5
+ parent: 407
+ type: Transform
+ - uid: 217
+ components:
+ - pos: 3.5,14.5
+ parent: 407
+ type: Transform
+ - uid: 218
+ components:
+ - pos: 3.5,15.5
+ parent: 407
+ type: Transform
+ - uid: 219
+ components:
+ - pos: 3.5,16.5
+ parent: 407
+ type: Transform
+ - uid: 220
+ components:
+ - pos: 3.5,17.5
+ parent: 407
+ type: Transform
+ - uid: 221
+ components:
+ - pos: 4.5,17.5
+ parent: 407
+ type: Transform
+ - uid: 222
+ components:
+ - pos: 4.5,18.5
+ parent: 407
+ type: Transform
+ - uid: 223
+ components:
+ - pos: 5.5,17.5
+ parent: 407
+ type: Transform
+ - uid: 224
+ components:
+ - pos: 6.5,17.5
+ parent: 407
+ type: Transform
+ - uid: 225
+ components:
+ - pos: 6.5,18.5
+ parent: 407
+ type: Transform
+ - uid: 226
+ components:
+ - pos: 6.5,19.5
+ parent: 407
+ type: Transform
+ - uid: 227
+ components:
+ - pos: 8.5,17.5
+ parent: 407
+ type: Transform
+ - uid: 228
+ components:
+ - pos: 8.5,18.5
+ parent: 407
+ type: Transform
+ - uid: 229
+ components:
+ - pos: 8.5,19.5
+ parent: 407
+ type: Transform
+ - uid: 230
+ components:
+ - pos: 9.5,17.5
+ parent: 407
+ type: Transform
+ - uid: 231
+ components:
+ - pos: 10.5,17.5
+ parent: 407
+ type: Transform
+ - uid: 232
+ components:
+ - pos: 10.5,18.5
+ parent: 407
+ type: Transform
+ - uid: 233
+ components:
+ - pos: 11.5,17.5
+ parent: 407
+ type: Transform
+ - uid: 238
+ components:
+ - pos: 6.5,22.5
+ parent: 407
+ type: Transform
+ - uid: 239
+ components:
+ - pos: 8.5,22.5
+ parent: 407
+ type: Transform
+ - uid: 240
+ components:
+ - pos: 8.5,23.5
+ parent: 407
+ type: Transform
+ - uid: 241
+ components:
+ - pos: 6.5,23.5
+ parent: 407
+ type: Transform
+ - uid: 244
+ components:
+ - pos: 4.5,6.5
+ parent: 407
+ type: Transform
+ - uid: 245
+ components:
+ - pos: 4.5,7.5
+ parent: 407
+ type: Transform
+ - uid: 246
+ components:
+ - pos: 4.5,8.5
+ parent: 407
+ type: Transform
+ - uid: 247
+ components:
+ - pos: 4.5,9.5
+ parent: 407
+ type: Transform
+ - uid: 248
+ components:
+ - pos: 4.5,10.5
+ parent: 407
+ type: Transform
+ - uid: 249
+ components:
+ - pos: 4.5,11.5
+ parent: 407
+ type: Transform
+ - uid: 250
+ components:
+ - pos: 4.5,12.5
+ parent: 407
+ type: Transform
+ - uid: 251
+ components:
+ - pos: 4.5,13.5
+ parent: 407
+ type: Transform
+ - uid: 252
+ components:
+ - pos: 4.5,14.5
+ parent: 407
+ type: Transform
+ - uid: 255
+ components:
+ - pos: 12.5,13.5
+ parent: 407
+ type: Transform
+ - uid: 256
+ components:
+ - pos: 11.5,13.5
+ parent: 407
+ type: Transform
+ - uid: 257
+ components:
+ - pos: 11.5,14.5
+ parent: 407
+ type: Transform
+ - uid: 258
+ components:
+ - pos: 11.5,15.5
+ parent: 407
+ type: Transform
+ - uid: 259
+ components:
+ - pos: 12.5,15.5
+ parent: 407
+ type: Transform
+ - uid: 260
+ components:
+ - pos: 11.5,16.5
+ parent: 407
+ type: Transform
+ - uid: 261
+ components:
+ - pos: 12.5,10.5
+ parent: 407
+ type: Transform
+ - uid: 262
+ components:
+ - pos: 11.5,10.5
+ parent: 407
+ type: Transform
+ - uid: 263
+ components:
+ - pos: 11.5,9.5
+ parent: 407
+ type: Transform
+ - uid: 264
+ components:
+ - pos: 11.5,8.5
+ parent: 407
+ type: Transform
+ - uid: 265
+ components:
+ - pos: 12.5,8.5
+ parent: 407
+ type: Transform
+ - uid: 266
+ components:
+ - pos: 12.5,7.5
+ parent: 407
+ type: Transform
+ - uid: 267
+ components:
+ - pos: 12.5,6.5
+ parent: 407
+ type: Transform
+ - uid: 268
+ components:
+ - pos: 11.5,6.5
+ parent: 407
+ type: Transform
+ - uid: 269
+ components:
+ - pos: 10.5,6.5
+ parent: 407
+ type: Transform
+ - uid: 270
+ components:
+ - pos: 9.5,6.5
+ parent: 407
+ type: Transform
+ - uid: 271
+ components:
+ - pos: 5.5,6.5
+ parent: 407
+ type: Transform
+ - uid: 286
+ components:
+ - pos: 14.5,-5.5
+ parent: 407
+ type: Transform
+ - uid: 287
+ components:
+ - pos: 13.5,-5.5
+ parent: 407
+ type: Transform
+ - uid: 288
+ components:
+ - pos: 13.5,-4.5
+ parent: 407
+ type: Transform
+ - uid: 289
+ components:
+ - pos: 13.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 290
+ components:
+ - pos: 13.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 291
+ components:
+ - pos: 13.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 292
+ components:
+ - pos: 14.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 293
+ components:
+ - pos: 15.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 294
+ components:
+ - pos: 18.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 295
+ components:
+ - pos: 19.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 296
+ components:
+ - pos: 20.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 297
+ components:
+ - pos: 20.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 298
+ components:
+ - pos: 20.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 299
+ components:
+ - pos: 20.5,-4.5
+ parent: 407
+ type: Transform
+ - uid: 300
+ components:
+ - pos: 20.5,-5.5
+ parent: 407
+ type: Transform
+ - uid: 301
+ components:
+ - pos: 19.5,-5.5
+ parent: 407
+ type: Transform
+ - uid: 302
+ components:
+ - pos: 23.5,-4.5
+ parent: 407
+ type: Transform
+ - uid: 303
+ components:
+ - pos: 22.5,-4.5
+ parent: 407
+ type: Transform
+ - uid: 304
+ components:
+ - pos: 21.5,-4.5
+ parent: 407
+ type: Transform
+ - uid: 305
+ components:
+ - pos: 21.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 306
+ components:
+ - pos: 23.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 307
+ components:
+ - pos: 24.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 308
+ components:
+ - pos: 25.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 309
+ components:
+ - pos: 26.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 310
+ components:
+ - pos: 27.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 311
+ components:
+ - pos: 17.5,6.5
+ parent: 407
+ type: Transform
+ - uid: 312
+ components:
+ - pos: 17.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 313
+ components:
+ - pos: 17.5,5.5
+ parent: 407
+ type: Transform
+ - uid: 314
+ components:
+ - pos: 17.5,3.5
+ parent: 407
+ type: Transform
+ - uid: 315
+ components:
+ - pos: 17.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 316
+ components:
+ - pos: 18.5,6.5
+ parent: 407
+ type: Transform
+ - uid: 317
+ components:
+ - pos: 20.5,6.5
+ parent: 407
+ type: Transform
+ - uid: 318
+ components:
+ - pos: 20.5,5.5
+ parent: 407
+ type: Transform
+ - uid: 319
+ components:
+ - pos: 20.5,4.5
+ parent: 407
+ type: Transform
+ - uid: 320
+ components:
+ - pos: 20.5,3.5
+ parent: 407
+ type: Transform
+ - uid: 321
+ components:
+ - pos: 20.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 322
+ components:
+ - pos: 21.5,5.5
+ parent: 407
+ type: Transform
+ - uid: 323
+ components:
+ - pos: 22.5,5.5
+ parent: 407
+ type: Transform
+ - uid: 324
+ components:
+ - pos: 23.5,5.5
+ parent: 407
+ type: Transform
+ - uid: 336
+ components:
+ - pos: 13.5,6.5
+ parent: 407
+ type: Transform
+ - uid: 337
+ components:
+ - pos: 13.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 338
+ components:
+ - pos: 12.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 339
+ components:
+ - pos: 11.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 340
+ components:
+ - pos: 10.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 341
+ components:
+ - pos: 9.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 342
+ components:
+ - pos: 8.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 343
+ components:
+ - pos: 7.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 344
+ components:
+ - pos: 6.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 345
+ components:
+ - pos: 5.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 346
+ components:
+ - pos: 4.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 348
+ components:
+ - pos: 2.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 349
+ components:
+ - pos: 1.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 350
+ components:
+ - pos: 9.5,1.5
+ parent: 407
+ type: Transform
+ - uid: 351
+ components:
+ - pos: 9.5,-0.5
+ parent: 407
+ type: Transform
+ - uid: 352
+ components:
+ - pos: 9.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 353
+ components:
+ - pos: 5.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 354
+ components:
+ - pos: 5.5,-0.5
+ parent: 407
+ type: Transform
+ - uid: 355
+ components:
+ - pos: 5.5,1.5
+ parent: 407
+ type: Transform
+ - uid: 356
+ components:
+ - pos: 1.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 393
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -7.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 394
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -11.5,-1.5
+ parent: 407
+ type: Transform
+- proto: WallShuttleDiagonal
+ entities:
+ - uid: 382
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 12.5,-15.5
+ parent: 407
+ type: Transform
+ - uid: 383
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 11.5,-17.5
+ parent: 407
+ type: Transform
+ - uid: 384
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 3.5,-17.5
+ parent: 407
+ type: Transform
+ - uid: 385
+ components:
+ - pos: 3.5,18.5
+ parent: 407
+ type: Transform
+ - uid: 386
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 11.5,18.5
+ parent: 407
+ type: Transform
+ - uid: 387
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 12.5,16.5
+ parent: 407
+ type: Transform
+- proto: WallWeaponCapacitorRecharger
+ entities:
+ - uid: 1342
+ components:
+ - pos: 18.5,-1.5
+ parent: 407
+ type: Transform
+- proto: WardrobePrisonFilled
+ entities:
+ - uid: 1882
+ components:
+ - pos: 19.5,5.5
+ parent: 407
+ type: Transform
+- proto: WarningN2
+ entities:
+ - uid: 1259
+ components:
+ - pos: 8.5,-14.5
+ parent: 407
+ type: Transform
+- proto: WarningO2
+ entities:
+ - uid: 1258
+ components:
+ - pos: 8.5,-12.5
+ parent: 407
+ type: Transform
+- proto: WaterTankHighCapacity
+ entities:
+ - uid: 1782
+ components:
+ - pos: -14.5,5.5
+ parent: 407
+ type: Transform
+- proto: WeaponCapacitorRecharger
+ entities:
+ - uid: 1934
+ components:
+ - pos: 18.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 2146
+ components:
+ - pos: 25.5,2.5
+ parent: 407
+ type: Transform
+- proto: WeaponRevolverDeckard
+ entities:
+ - uid: 1890
+ components:
+ - pos: 25.417892,-2.5056615
+ parent: 407
+ type: Transform
+- proto: WelderIndustrialAdvanced
+ entities:
+ - uid: 1556
+ components:
+ - pos: 4.4984074,-10.399791
+ parent: 407
+ type: Transform
+- proto: WeldingFuelTankFull
+ entities:
+ - uid: 1801
+ components:
+ - pos: -20.5,-2.5
+ parent: 407
+ type: Transform
+- proto: Windoor
+ entities:
+ - uid: 1715
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -13.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 1716
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -9.5,-1.5
+ parent: 407
+ type: Transform
+- proto: WindoorBarKitchenLocked
+ entities:
+ - uid: 1653
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -4.5,2.5
+ parent: 407
+ type: Transform
+- proto: WindoorCargoLocked
+ entities:
+ - uid: 2087
+ components:
+ - pos: 3.5,7.5
+ parent: 407
+ type: Transform
+- proto: WindoorSecure
+ entities:
+ - uid: 1239
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 9.5,-6.5
+ parent: 407
+ type: Transform
+- proto: WindoorSecureCargoLocked
+ entities:
+ - uid: 1968
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -0.5,10.5
+ parent: 407
+ type: Transform
+ - uid: 1991
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -0.5,7.5
+ parent: 407
+ type: Transform
+ - uid: 1994
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 2.5,6.5
+ parent: 407
+ type: Transform
+ - uid: 2010
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -0.5,11.5
+ parent: 407
+ type: Transform
+- proto: WindoorSecureChemistryLocked
+ entities:
+ - uid: 1730
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 5.5,0.5
+ parent: 407
+ type: Transform
+ - uid: 1731
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 7.5,-1.5
+ parent: 407
+ type: Transform
+- proto: WindoorSecureCommandLocked
+ entities:
+ - uid: 2102
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 24.5,0.5
+ parent: 407
+ type: Transform
+- proto: WindoorSecureEngineeringLocked
+ entities:
+ - uid: 1787
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -17.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 1788
+ components:
+ - pos: -17.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 1855
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 2.5,-8.5
+ parent: 407
+ type: Transform
+ - uid: 2021
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 10.5,7.5
+ parent: 407
+ type: Transform
+ - uid: 2165
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 21.5,3.5
+ parent: 407
+ type: Transform
+- proto: WindoorSecureMedicalLocked
+ entities:
+ - uid: 1923
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 5.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 1924
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 8.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 1925
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 11.5,-3.5
+ parent: 407
+ type: Transform
+- proto: WindoorSecureScienceLocked
+ entities:
+ - uid: 1903
+ components:
+ - pos: -4.5,9.5
+ parent: 407
+ type: Transform
+ - uid: 1969
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -0.5,10.5
+ parent: 407
+ type: Transform
+ - uid: 1990
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -0.5,7.5
+ parent: 407
+ type: Transform
+ - uid: 2011
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -0.5,11.5
+ parent: 407
+ type: Transform
+- proto: WindoorServiceLocked
+ entities:
+ - uid: 2110
+ components:
+ - pos: -10.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 2114
+ components:
+ - pos: -9.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 2115
+ components:
+ - pos: -8.5,2.5
+ parent: 407
+ type: Transform
+- proto: WindowFrostedDirectional
+ entities:
+ - uid: 1614
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 4.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 1615
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 4.5,-4.5
+ parent: 407
+ type: Transform
+ - uid: 1616
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 6.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 1617
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 6.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 1618
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 6.5,-4.5
+ parent: 407
+ type: Transform
+ - uid: 1619
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 7.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 1620
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 9.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 1621
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 10.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 1622
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 12.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 1623
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 10.5,-4.5
+ parent: 407
+ type: Transform
+ - uid: 1624
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 10.5,-3.5
+ parent: 407
+ type: Transform
+- proto: WindowReinforcedDirectional
+ entities:
+ - uid: 1236
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 10.5,-7.5
+ parent: 407
+ type: Transform
+ - uid: 1237
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 9.5,-7.5
+ parent: 407
+ type: Transform
+ - uid: 1594
+ components:
+ - pos: -16.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 1595
+ components:
+ - pos: -18.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 1596
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -18.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 1597
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -16.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 1598
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -8.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 1599
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -10.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 1600
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -12.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 1601
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -14.5,-1.5
+ parent: 407
+ type: Transform
+ - uid: 1602
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -7.5,-4.5
+ parent: 407
+ type: Transform
+ - uid: 1603
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -7.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 1604
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -7.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 1605
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -7.5,-4.5
+ parent: 407
+ type: Transform
+ - uid: 1606
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -7.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 1607
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -7.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 1608
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -11.5,-4.5
+ parent: 407
+ type: Transform
+ - uid: 1609
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -11.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 1610
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -11.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 1611
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -11.5,-2.5
+ parent: 407
+ type: Transform
+ - uid: 1612
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -11.5,-3.5
+ parent: 407
+ type: Transform
+ - uid: 1613
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -11.5,-4.5
+ parent: 407
+ type: Transform
+ - uid: 1649
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -8.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 1918
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -3.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 2096
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 24.5,-0.5
+ parent: 407
+ type: Transform
+ - uid: 2097
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 24.5,1.5
+ parent: 407
+ type: Transform
+ - uid: 2098
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 24.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 2099
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 24.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 2100
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 25.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 2101
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 26.5,2.5
+ parent: 407
+ type: Transform
+ - uid: 2164
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 22.5,4.5
+ parent: 407
+ type: Transform
+...
diff --git a/Resources/Prototypes/Catalog/Cargo/cargo_livestock.yml b/Resources/Prototypes/Catalog/Cargo/cargo_livestock.yml
index 0fc8756ca1a..3133c0206ec 100644
--- a/Resources/Prototypes/Catalog/Cargo/cargo_livestock.yml
+++ b/Resources/Prototypes/Catalog/Cargo/cargo_livestock.yml
@@ -214,6 +214,6 @@
sprite: Mobs/Animals/mothroach.rsi
state: mothroach
product: CrateNPCMothroach
- cost: 2500
+ cost: 5000
category: Livestock
group: market
diff --git a/Resources/Prototypes/Catalog/Fills/Backpacks/duffelbag.yml b/Resources/Prototypes/Catalog/Fills/Backpacks/duffelbag.yml
index 1aa7387d8b7..e20dccb0d20 100644
--- a/Resources/Prototypes/Catalog/Fills/Backpacks/duffelbag.yml
+++ b/Resources/Prototypes/Catalog/Fills/Backpacks/duffelbag.yml
@@ -260,6 +260,7 @@
- id: ClothingOuterHardsuitSyndicate
- id: ClothingMaskGasSyndicate
- id: DoubleEmergencyOxygenTankFilled
+ - id: DoubleEmergencyNitrogenTankFilled
- type: entity
parent: ClothingBackpackDuffelSyndicateBundle
diff --git a/Resources/Prototypes/Catalog/Fills/Items/gas_tanks.yml b/Resources/Prototypes/Catalog/Fills/Items/gas_tanks.yml
index 095be1adb88..71f6e53b248 100644
--- a/Resources/Prototypes/Catalog/Fills/Items/gas_tanks.yml
+++ b/Resources/Prototypes/Catalog/Fills/Items/gas_tanks.yml
@@ -82,6 +82,21 @@
moles:
- 0.615413715 # oxygen
temperature: 293.15
+
+- type: entity
+ id: ExtendedEmergencyNitrogenTankFilled
+ parent: ExtendedEmergencyNitrogenTank
+ suffix: Filled
+ components:
+ - type: GasTank
+ outputPressure: 21.3
+ air:
+ # 9 minutes
+ volume: 1.5
+ moles:
+ - 0 # oxygen
+ - 0.615413715 # nitrogen
+ temperature: 293.15
- type: entity
@@ -98,6 +113,21 @@
- 1.025689525 # oxygen
temperature: 293.15
+- type: entity
+ id: DoubleEmergencyNitrogenTankFilled
+ parent: DoubleEmergencyNitrogenTank
+ suffix: Filled
+ components:
+ - type: GasTank
+ outputPressure: 21.3
+ air:
+ # 15 minutes
+ volume: 2.5
+ moles:
+ - 0 # oxygen
+ - 1.025689525 # nitrogen
+ temperature: 293.15
+
- type: entity
id: AirTankFilled
parent: AirTank
@@ -121,7 +151,6 @@
name: nitrogen tank
components:
- type: GasTank
- outputPressure: 21.3
air:
# 31 minutes
volume: 5
diff --git a/Resources/Prototypes/Catalog/Fills/Items/toolboxes.yml b/Resources/Prototypes/Catalog/Fills/Items/toolboxes.yml
index 37642106e18..6cae786bd00 100644
--- a/Resources/Prototypes/Catalog/Fills/Items/toolboxes.yml
+++ b/Resources/Prototypes/Catalog/Fills/Items/toolboxes.yml
@@ -61,6 +61,27 @@
- id: CableHVStack10
orGroup: GlovesOrWires
+- type: entity
+ id: ToolboxArtisticFilled
+ name: artistic toolbox
+ suffix: Filled
+ parent: ToolboxArtistic
+ components:
+ - type: StorageFill
+ contents:
+ - id: CrayonBox
+ - id: Paper
+ amount: 3
+ - id: Pen
+ - id: MysteryFigureBox
+ prob: 0.5
+ - id: MysteryFigureBox
+ prob: 0.5
+ - id: BookRandom
+ amount: 2
+ - id: CrayonMime
+ - id: CrayonRainbow
+
- type: entity
id: ToolboxMechanicalFilled
name: mechanical toolbox
diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/misc.yml b/Resources/Prototypes/Catalog/Fills/Lockers/misc.yml
index 79eb2f9e0f2..171546052af 100644
--- a/Resources/Prototypes/Catalog/Fills/Lockers/misc.yml
+++ b/Resources/Prototypes/Catalog/Fills/Lockers/misc.yml
@@ -84,6 +84,7 @@
- id: ClothingHeadHelmetFire
- id: ClothingMaskGas
- id: YellowOxygenTankFilled
+ - id: NitrogenTankFilled
- id: FireExtinguisher
prob: 0.25
- type: entity
@@ -97,6 +98,7 @@
- id: ClothingHeadHelmetFire
- id: ClothingMaskGas
- id: YellowOxygenTankFilled
+ - id: NitrogenTankFilled
- id: FireExtinguisher
prob: 0.25
- type: entity
diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/sec.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/sec.yml
index 658a955b88a..cd319c3b427 100644
--- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/sec.yml
+++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/sec.yml
@@ -3,6 +3,8 @@
startingInventory:
Handcuffs: 8
GrenadeFlashBang: 4
+ ClusterBangFull: 2
+ GrenadeStinger: 4
Flash: 5
FlashlightSeclite: 5
ClothingEyesGlassesSunglasses: 2
diff --git a/Resources/Prototypes/Catalog/uplink_catalog.yml b/Resources/Prototypes/Catalog/uplink_catalog.yml
index 344bd6a0814..dc668fd6a28 100644
--- a/Resources/Prototypes/Catalog/uplink_catalog.yml
+++ b/Resources/Prototypes/Catalog/uplink_catalog.yml
@@ -250,6 +250,36 @@
- UplinkExplosives
restockTime: 30
+- type: listing
+ id: UplinkClusterGrenade
+ name: uplink-cluster-grenade-name
+ description: uplink-cluster-grenade-desc
+ productEntity: ClusterGrenade
+ cost:
+ Telecrystal: 8
+ categories:
+ - UplinkExplosives
+
+- type: listing
+ id: UplinkGrenadeShrapnel
+ name: uplink-shrapnel-grenade-name
+ description: uplink-shrapnel-grenade-desc
+ productEntity: GrenadeShrapnel
+ cost:
+ Telecrystal: 4
+ categories:
+ - UplinkExplosives
+
+- type: listing
+ id: UplinkGrenadeIncendiary
+ name: uplink-incendiary-grenade-name
+ description: uplink-incendiary-grenade-desc
+ productEntity: GrenadeIncendiary
+ cost:
+ Telecrystal: 4
+ categories:
+ - UplinkExplosives
+
# Ammo
- type: listing
@@ -501,6 +531,17 @@
categories:
- UplinkUtility
+- type: listing
+ id: UplinkHypoDart
+ name: uplink-hypodart-name
+ description: uplink-hypodart-desc
+ icon: { sprite: /Textures/Objects/Fun/Darts/dart_red.rsi, state: icon }
+ productEntity: HypoDartBox
+ cost:
+ Telecrystal: 3
+ categories:
+ - UplinkUtility
+
# Implants
- type: listing
@@ -956,6 +997,20 @@
whitelist:
- Clown
+- type: listing
+ id: UplinkClusterBananaPeel
+ name: uplink-cluster-banana-peel-name
+ description: uplink-cluster-banana-peel-desc
+ productEntity: ClusterBananaPeel
+ cost:
+ Telecrystal: 6
+ categories:
+ - UplinkJob
+ conditions:
+ - !type:BuyerJobCondition
+ whitelist:
+ - Clown
+
- type: listing
id: UplinkHoloclownKit
name: uplink-holoclown-kit-name
@@ -1186,6 +1241,16 @@
categories:
- UplinkMisc
+- type: listing
+ id: UplinkSlipocalypseClusterSoap
+ name: uplink-slipocalypse-clustersoap-name
+ description: uplink-slipocalypse-clustersoap-desc
+ productEntity: SlipocalypseClusterSoap
+ cost:
+ Telecrystal: 3
+ categories:
+ - UplinkMisc
+
- type: listing
id: UplinkUltrabrightLantern
name: uplink-ultrabright-lantern-name
diff --git a/Resources/Prototypes/Chemistry/mixing_types.yml b/Resources/Prototypes/Chemistry/mixing_types.yml
new file mode 100644
index 00000000000..dbf14c19c1f
--- /dev/null
+++ b/Resources/Prototypes/Chemistry/mixing_types.yml
@@ -0,0 +1,20 @@
+- type: mixingCategory
+ id: Centrifuge
+ verbText: mixing-verb-centrifuge
+ icon:
+ sprite: Structures/Machines/Medical/centrifuge.rsi
+ state: base
+
+- type: mixingCategory
+ id: Electrolysis
+ verbText: mixing-verb-electrolysis
+ icon:
+ sprite: Structures/Machines/Medical/electrolysis.rsi
+ state: base
+
+- type: mixingCategory
+ id: Holy
+ verbText: mixing-verb-holy
+ icon:
+ sprite: Objects/Specific/Chapel/bible.rsi
+ state: icon
diff --git a/Resources/Prototypes/Damage/modifier_sets.yml b/Resources/Prototypes/Damage/modifier_sets.yml
index d651373edee..e4ad8517815 100644
--- a/Resources/Prototypes/Damage/modifier_sets.yml
+++ b/Resources/Prototypes/Damage/modifier_sets.yml
@@ -125,7 +125,6 @@
id: Scale # Skin tougher, bones weaker, strong stomachs, cold-blooded (kindof)
coefficients:
Cold: 1.3
- Heat: 0.7
- type: damageModifierSet
id: Diona
diff --git a/Resources/Prototypes/Entities/Effects/acidifer.yml b/Resources/Prototypes/Entities/Effects/acidifer.yml
new file mode 100644
index 00000000000..bc2fc3c4c3e
--- /dev/null
+++ b/Resources/Prototypes/Entities/Effects/acidifer.yml
@@ -0,0 +1,26 @@
+- type: entity
+ id: Acidifier
+ name: acid
+ description: Melts you into a puddle of yuck!
+ components:
+ - type: Transform
+ anchored: True
+ - type: InteractionOutline
+ - type: Physics
+ bodyType: Static
+ - type: Sprite
+ sprite: /Textures/Effects/acidifier.rsi
+ state: acid
+ - type: Fixtures
+ fixtures:
+ portalFixture:
+ shape:
+ !type:PhysShapeAabb
+ bounds: "-0.25,-0.48,0.25,0.48"
+ mask:
+ - FullTileMask
+ layer:
+ - WallLayer
+ hard: false
+ - type: TimedDespawn
+ lifetime: 2.4
diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml
index ce3febf0460..c68de3490f2 100644
--- a/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml
+++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml
@@ -153,7 +153,9 @@
- YellowOxygenTankFilled
- DoubleEmergencyOxygenTankFilled
- ToolboxEmergencyFilled
+ - ToolboxArtisticFilled
- NitrogenTankFilled
+ - DoubleEmergencyNitrogenTankFilled
- ToolboxElectricalFilled
- ToolboxMechanicalFilled
- ClothingBeltUtility
@@ -226,6 +228,8 @@
- FlashlightLantern
- YellowOxygenTankFilled
- DoubleEmergencyOxygenTankFilled
+ - NitrogenTankFilled
+ - DoubleEmergencyNitrogenTankFilled
- Lighter
- Matchbox
- Crowbar
diff --git a/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml b/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml
index 62494a71eaa..62f640625d5 100644
--- a/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml
+++ b/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml
@@ -67,6 +67,8 @@
type: SiliconLawBoundUserInterface
- key: enum.BorgUiKey.Key
type: BorgBoundUserInterface
+ - key: enum.StrippingUiKey.Key
+ type: StrippableBoundUserInterface
- type: ActivatableUI
key: enum.BorgUiKey.Key
- type: SiliconLawBound
@@ -74,6 +76,10 @@
stunTime: 5
emagLaws: SyndicateStatic
- type: IonStormTarget
+ - type: Strippable
+ - type: InventorySlots
+ - type: Inventory
+ templateId: borg
- type: Hands
showInHands: false
- type: IntrinsicRadioReceiver
@@ -149,7 +155,8 @@
damage: 300
behaviors:
- !type:PlaySoundBehavior
- sound: /Audio/Effects/metalbreak.ogg
+ sound:
+ path: /Audio/Effects/metalbreak.ogg
- !type:EmptyContainersBehaviour
containers:
- borg_brain
diff --git a/Resources/Prototypes/Entities/Mobs/Cyborgs/borg_chassis.yml b/Resources/Prototypes/Entities/Mobs/Cyborgs/borg_chassis.yml
index 7b26c49b00e..57a086a8b8d 100644
--- a/Resources/Prototypes/Entities/Mobs/Cyborgs/borg_chassis.yml
+++ b/Resources/Prototypes/Entities/Mobs/Cyborgs/borg_chassis.yml
@@ -65,6 +65,8 @@
- Science
- type: AccessReader
access: [["Cargo"], ["Salvage"], ["Command"], ["Research"]]
+ - type: Inventory
+ templateId: borgTall
- type: entity
id: BorgChassisEngineer
@@ -106,6 +108,8 @@
- Science
- type: AccessReader
access: [["Engineering"], ["Command"], ["Research"]]
+ - type: Inventory
+ templateId: borgShort
- type: entity
id: BorgChassisJanitor
@@ -147,6 +151,8 @@
- Science
- type: AccessReader
access: [["Service"], ["Command"], ["Research"]]
+ - type: Inventory
+ templateId: borgShort
- type: entity
id: BorgChassisMedical
@@ -188,6 +194,8 @@
- Science
- type: AccessReader
access: [["Medical"], ["Command"], ["Research"]]
+ - type: Inventory
+ templateId: borgDutch
- type: TTS # Corvax-TTS
voice: TrainingRobot
@@ -231,3 +239,5 @@
- Science
- type: AccessReader
access: [["Service"], ["Command"], ["Research"]]
+ - type: Inventory
+ templateId: borgTall
diff --git a/Resources/Prototypes/Entities/Mobs/Player/silicon.yml b/Resources/Prototypes/Entities/Mobs/Player/silicon.yml
index f104d399c85..91255ac7b3b 100644
--- a/Resources/Prototypes/Entities/Mobs/Player/silicon.yml
+++ b/Resources/Prototypes/Entities/Mobs/Player/silicon.yml
@@ -248,7 +248,7 @@
- type: ContainerFill
containers:
borg_brain:
- - MMIFilled
+ - PositronicBrain
borg_module:
- BorgModuleTool
- type: ItemSlots
diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/plate.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/plate.yml
index e54167aa3e3..9e0bd89184f 100644
--- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/plate.yml
+++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/plate.yml
@@ -34,6 +34,8 @@
- !type:PlaySoundBehavior
sound:
collection: GlassBreak
+ params:
+ volume: -8
- !type:SpawnEntitiesBehavior
spawn:
FoodPlateTrash:
@@ -84,6 +86,8 @@
- !type:PlaySoundBehavior
sound:
collection: GlassBreak
+ params:
+ volume: -8
- !type:SpawnEntitiesBehavior
spawn:
FoodPlateSmallTrash:
diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/soup.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/soup.yml
index ccb09236944..0dca39ea481 100644
--- a/Resources/Prototypes/Entities/Objects/Consumable/Food/soup.yml
+++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/soup.yml
@@ -48,6 +48,8 @@
- !type:PlaySoundBehavior
sound:
collection: GlassBreak
+ params:
+ volume: -8
- !type:SpillBehavior { }
- !type:SpawnEntitiesBehavior
spawn:
diff --git a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml
index af4f8cba783..e7fdde93971 100644
--- a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml
+++ b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml
@@ -338,6 +338,21 @@
deconstructionTarget: null
node: heater
+- type: entity
+ id: CondenserMachineCircuitBoard
+ parent: BaseMachineCircuitboard
+ name: condenser machine board
+ description: A machine printed circuit board for a condenser.
+ components:
+ - type: Sprite
+ state: engineering
+ - type: MachineBoard
+ prototype: BaseGasCondenser
+ requirements:
+ MatterBin: 1
+ materialRequirements:
+ Glass: 1
+
- type: entity
id: PortableScrubberMachineCircuitBoard
parent: BaseMachineCircuitboard
@@ -793,6 +808,36 @@
Cable: 3
Steel: 2
+- type: entity
+ id: ElectrolysisUnitMachineCircuitboard
+ parent: BaseMachineCircuitboard
+ name: electrolysis unit machine board
+ description: A machine printed circuit board for an electrolysis unit.
+ components:
+ - type: Sprite
+ state: medical
+ - type: MachineBoard
+ prototype: MachineElectrolysisUnit
+ requirements:
+ Capacitor: 2
+ materialRequirements:
+ Cable: 1
+
+- type: entity
+ id: CentrifugeMachineCircuitboard
+ parent: BaseMachineCircuitboard
+ name: centrifuge machine board
+ description: A machine printed circuit board for a centrifuge.
+ components:
+ - type: Sprite
+ state: medical
+ - type: MachineBoard
+ prototype: MachineCentrifuge
+ requirements:
+ Manipulator: 1
+ materialRequirements:
+ Steel: 1
+
- type: entity
id: MaterialReclaimerMachineCircuitboard
parent: BaseMachineCircuitboard
diff --git a/Resources/Prototypes/Entities/Objects/Devices/pda.yml b/Resources/Prototypes/Entities/Objects/Devices/pda.yml
index c2a977642e1..76096f0396f 100644
--- a/Resources/Prototypes/Entities/Objects/Devices/pda.yml
+++ b/Resources/Prototypes/Entities/Objects/Devices/pda.yml
@@ -100,6 +100,15 @@
- DoorBumpOpener
- type: Input
context: "human"
+
+- type: entity
+ parent: BasePDA
+ id: BaseMedicalPDA
+ components:
+ - type: HealthAnalyzer
+ scanDelay: 1
+ scanningEndSound:
+ path: "/Audio/Items/Medical/healthscanner.ogg"
- type: entity
parent: BasePDA
@@ -129,7 +138,7 @@
state: pda-interntech
- type: entity
- parent: BasePDA
+ parent: BaseMedicalPDA
id: MedicalInternPDA
name: medical intern PDA
description: Why isn't it white? Has a built-in health analyzer.
@@ -142,10 +151,6 @@
accentVColor: "#447987"
- type: Icon
state: pda-internmed
- - type: HealthAnalyzer
- scanDelay: 1
- scanningEndSound:
- path: "/Audio/Items/Medical/healthscanner.ogg"
- type: GuideHelp
guides:
- Medical Doctor
@@ -279,7 +284,7 @@
- type: Pda
id: MimeIDCard
state: pda-mime
- idSlot:
+ idSlot: # rewrite without sound because mime
name: ID Card
whitelist:
components:
@@ -476,7 +481,7 @@
state: pda-engineer
- type: entity
- parent: BasePDA
+ parent: BaseMedicalPDA
id: CMOPDA
name: chief medical officer PDA
description: Extraordinarily shiny and sterile. Has a built-in health analyzer.
@@ -490,13 +495,9 @@
accentVColor: "#447987"
- type: Icon
state: pda-cmo
- - type: HealthAnalyzer
- scanDelay: 1
- scanningEndSound:
- path: "/Audio/Items/Medical/healthscanner.ogg"
- type: entity
- parent: BasePDA
+ parent: BaseMedicalPDA
id: MedicalPDA
name: medical PDA
description: Shiny and sterile. Has a built-in health analyzer.
@@ -509,16 +510,12 @@
accentVColor: "#447987"
- type: Icon
state: pda-medical
- - type: HealthAnalyzer
- scanDelay: 1
- scanningEndSound:
- path: "/Audio/Items/Medical/healthscanner.ogg"
- type: GuideHelp
guides:
- Medical Doctor
- type: entity
- parent: BasePDA
+ parent: BaseMedicalPDA
id: ParamedicPDA
name: paramedic PDA
description: Shiny and sterile. Has a built-in rapid health analyzer.
@@ -531,13 +528,9 @@
accentVColor: "#2a4b5b"
- type: Icon
state: pda-paramedic
- - type: HealthAnalyzer
- scanDelay: 1
- scanningEndSound:
- path: "/Audio/Items/Medical/healthscanner.ogg"
-
+
- type: entity
- parent: BasePDA
+ parent: BaseMedicalPDA
id: ChemistryPDA
name: chemistry PDA
description: It has a few discolored blotches here and there.
@@ -550,10 +543,6 @@
accentVColor: "#B34200"
- type: Icon
state: pda-chemistry
- - type: HealthAnalyzer
- scanDelay: 1
- scanningEndSound:
- path: "/Audio/Items/Medical/healthscanner.ogg"
- type: entity
parent: BasePDA
@@ -764,47 +753,38 @@
components:
- type: Pda
id: ERTChaplainIDCard
- state: pda-ert
- type: entity
parent: ERTLeaderPDA
id: ERTEngineerPDA
- name: ERT PDA
suffix: Engineer
components:
- type: Pda
id: ERTEngineerIDCard
- state: pda-ert
- type: entity
parent: ERTLeaderPDA
id: ERTJanitorPDA
- name: ERT PDA
suffix: Janitor
components:
- type: Pda
id: ERTJanitorIDCard
- state: pda-ert
- type: entity
parent: ERTLeaderPDA
id: ERTMedicPDA
- name: ERT PDA
suffix: Medic
components:
- type: Pda
id: ERTMedicIDCard
- state: pda-ert
- type: entity
parent: ERTLeaderPDA
id: ERTSecurityPDA
- name: ERT PDA
suffix: Security
components:
- type: Pda
id: ERTSecurityIDCard
- state: pda-ert
- type: entity
parent: ERTLeaderPDA
@@ -814,7 +794,6 @@
components:
- type: Pda
id: CBURNIDcard
- state: pda-ert
- type: PdaBorderColor
borderColor: "#A32D26"
accentHColor: "#447987"
@@ -893,7 +872,7 @@
state: pda-detective
- type: entity
- parent: BasePDA
+ parent: BaseMedicalPDA
id: BrigmedicPDA
name: brigmedic PDA
description: I wonder whose pulse is on the screen? I hope he doesnt stop... PDA has a built-in health analyzer.
@@ -907,10 +886,6 @@
accentVColor: "#d7d7d0"
- type: Icon
state: pda-brigmedic
- - type: HealthAnalyzer
- scanDelay: 1
- scanningEndSound:
- path: "/Audio/Items/Medical/healthscanner.ogg"
- type: entity
parent: ClownPDA
@@ -967,7 +942,7 @@
state: pda-seniorresearcher
- type: entity
- parent: BasePDA
+ parent: BaseMedicalPDA
id: SeniorPhysicianPDA
name: senior physician PDA
description: Smells faintly like iron and chemicals. Has a built-in health analyzer.
@@ -981,10 +956,6 @@
accentVColor: "#B34200"
- type: Icon
state: pda-seniorphysician
- - type: HealthAnalyzer
- scanDelay: 1
- scanningEndSound:
- path: "/Audio/Items/Medical/healthscanner.ogg"
- type: entity
parent: BasePDA
@@ -1014,7 +985,7 @@
state: pda-pirate
- type: entity
- parent: BasePDA
+ parent: BaseMedicalPDA
id: SyndiAgentPDA
name: syndicate agent PDA
description: For those days when healing normal syndicates aren't enough, try healing nuclear operatives instead!
@@ -1038,7 +1009,3 @@
whitelist:
components:
- Cartridge
- - type: HealthAnalyzer
- scanDelay: 1
- scanningEndSound:
- path: "/Audio/Items/Medical/healthscanner.ogg"
diff --git a/Resources/Prototypes/Entities/Objects/Fun/Instruments/instruments_misc.yml b/Resources/Prototypes/Entities/Objects/Fun/Instruments/instruments_misc.yml
index 207af9ffcf9..8c3aed0d069 100644
--- a/Resources/Prototypes/Entities/Objects/Fun/Instruments/instruments_misc.yml
+++ b/Resources/Prototypes/Entities/Objects/Fun/Instruments/instruments_misc.yml
@@ -63,6 +63,19 @@
verb: prayer-verbs-call
verbImage: null
+- type: entity
+ parent: PhoneInstrument
+ id: PhoneInstrumentSyndicate
+ name: blood-red phone
+ description: For evil people to call their friends.
+ components:
+ - type: Sprite
+ sprite: Objects/Fun/Instruments/blood_red_phone.rsi
+ state: icon
+ - type: Prayable
+ sentMessage: prayer-popup-notify-syndicate-sent
+ notifiactionPrefix: prayer-chat-notify-syndicate
+
- type: entity
parent: BaseHandheldInstrument
id: HelicopterInstrument
diff --git a/Resources/Prototypes/Entities/Objects/Fun/darts.yml b/Resources/Prototypes/Entities/Objects/Fun/darts.yml
index 34486ac93eb..8d8565361d4 100644
--- a/Resources/Prototypes/Entities/Objects/Fun/darts.yml
+++ b/Resources/Prototypes/Entities/Objects/Fun/darts.yml
@@ -114,6 +114,21 @@
- type: Item
sprite: Objects/Fun/Darts/dart_yellow.rsi
+- type: entity
+ parent: Dart
+ id: HypoDart
+ suffix: HypoDart
+ components:
+ - type: SolutionContainerManager
+ solutions:
+ melee:
+ maxVol: 7
+ - type: SolutionInjectOnCollide
+ transferAmount: 7
+ blockSlots: NONE
+ - type: SolutionTransfer
+ maxTransferAmount: 7
+
- type: entity
name: dartboard
id: TargetDarts
@@ -174,3 +189,19 @@
path: /Audio/Effects/tree_fell.ogg
- !type:DoActsBehavior
acts: [ "Destruction" ]
+
+- type: entity
+ parent: BaseItem
+ id: HypoDartBox
+ name: hypodart box
+ suffix: HypoDart
+ description: A small box containing an hypodart. Packaging disintegrates when opened, leaving no evidence behind.
+ components:
+ - type: Sprite
+ sprite: Objects/Fun/Darts/dartbox.rsi
+ state: icon
+ - type: SpawnItemsOnUse
+ items:
+ - id: HypoDart
+ sound:
+ path: /Audio/Effects/unwrap.ogg
\ No newline at end of file
diff --git a/Resources/Prototypes/Entities/Objects/Materials/Sheets/glass.yml b/Resources/Prototypes/Entities/Objects/Materials/Sheets/glass.yml
index 56d8d26319e..b5d98cf7aba 100644
--- a/Resources/Prototypes/Entities/Objects/Materials/Sheets/glass.yml
+++ b/Resources/Prototypes/Entities/Objects/Materials/Sheets/glass.yml
@@ -36,6 +36,8 @@
- !type:PlaySoundBehavior
sound:
collection: GlassBreak
+ params:
+ volume: -4
- !type:SpawnEntitiesBehavior
spawn:
ShardGlass:
@@ -157,6 +159,8 @@
- !type:PlaySoundBehavior
sound:
collection: GlassBreak
+ params:
+ volume: -4
- !type:SpawnEntitiesBehavior
spawn:
ShardGlassReinforced:
@@ -231,6 +235,8 @@
- !type:PlaySoundBehavior
sound:
collection: GlassBreak
+ params:
+ volume: -4
- !type:SpawnEntitiesBehavior
spawn:
ShardGlassPlasma:
@@ -357,6 +363,8 @@
- !type:PlaySoundBehavior
sound:
collection: GlassBreak
+ params:
+ volume: -4
- !type:SpawnEntitiesBehavior
spawn:
ShardGlassUranium:
diff --git a/Resources/Prototypes/Entities/Objects/Materials/Sheets/other.yml b/Resources/Prototypes/Entities/Objects/Materials/Sheets/other.yml
index 9ccbd4cea29..3fa6a105258 100644
--- a/Resources/Prototypes/Entities/Objects/Materials/Sheets/other.yml
+++ b/Resources/Prototypes/Entities/Objects/Materials/Sheets/other.yml
@@ -49,17 +49,14 @@
- type: Item
heldPrefix: paper
- type: Appearance
+ - type: Extractable
+ grindableSolutionName: paper
- type: SolutionContainerManager
-#This should maybe be cellulose later on, refer to the comments in materials.yml on wood.
solutions:
- wood:
+ paper:
reagents:
- - ReagentId: Carbon
- Quantity: 2
- - ReagentId: Oxygen
- Quantity: 0.5
- - ReagentId: Hydrogen
- Quantity: 0.5
+ - ReagentId: Cellulose
+ Quantity: 3
- type: entity
@@ -153,7 +150,14 @@
- type: Item
heldPrefix: plastic
- type: Appearance
-
+ - type: Extractable
+ grindableSolutionName: plastic
+ - type: SolutionContainerManager
+ solutions:
+ plastic:
+ reagents:
+ - ReagentId: Carbon
+ Quantity: 22
- type: entity
parent: SheetPlastic
id: SheetPlastic10
@@ -251,7 +255,16 @@
- type: Item
sprite: Objects/Materials/Sheets/meaterial.rsi
heldPrefix: meat
- - type: Appearance
+ - type: Extractable
+ grindableSolutionName: meatsheet
+ - type: SolutionContainerManager
+ solutions:
+ meatsheet:
+ reagents:
+ - ReagentId: Protein
+ Quantity: 22 #for consistency with other materials
+ - ReagentId: Fat
+ Quantity: 3
- type: entity
parent: MaterialSheetMeat
diff --git a/Resources/Prototypes/Entities/Objects/Materials/materials.yml b/Resources/Prototypes/Entities/Objects/Materials/materials.yml
index 2f3a142a6e3..9cfc2c00f2c 100644
--- a/Resources/Prototypes/Entities/Objects/Materials/materials.yml
+++ b/Resources/Prototypes/Entities/Objects/Materials/materials.yml
@@ -47,6 +47,14 @@
- state: cardboard_3
map: ["base"]
- type: Appearance
+ - type: Extractable
+ grindableSolutionName: cardboard
+ - type: SolutionContainerManager
+ solutions:
+ cardboard:
+ reagents:
+ - ReagentId: Cellulose
+ Quantity: 6
- type: entity
parent: MaterialCardboard
@@ -238,17 +246,11 @@
- type: Extractable
grindableSolutionName: wood
- type: SolutionContainerManager
-#Apparently these all components of cellulose, which is what you got in /tg/ when grinding wood + a bunch of other shit.
-#Considering the frequency of it, maybe there should be a cellulose reagent instead?
solutions:
wood:
reagents:
- - ReagentId: Carbon
+ - ReagentId: Cellulose
Quantity: 10
- - ReagentId: Oxygen
- Quantity: 5
- - ReagentId: Hydrogen
- Quantity: 5
- type: entity
parent: MaterialWoodPlank
diff --git a/Resources/Prototypes/Entities/Objects/Misc/candy_bowl.yml b/Resources/Prototypes/Entities/Objects/Misc/candy_bowl.yml
index 94b459e00ae..843b402a6c8 100644
--- a/Resources/Prototypes/Entities/Objects/Misc/candy_bowl.yml
+++ b/Resources/Prototypes/Entities/Objects/Misc/candy_bowl.yml
@@ -39,6 +39,8 @@
- !type:PlaySoundBehavior
sound:
collection: GlassBreak
+ params:
+ volume: -4
- !type:SpawnEntitiesBehavior
spawn:
ShardGlass:
diff --git a/Resources/Prototypes/Entities/Objects/Misc/subdermal_implants.yml b/Resources/Prototypes/Entities/Objects/Misc/subdermal_implants.yml
index 18edca6c718..1a1b25ed4e6 100644
--- a/Resources/Prototypes/Entities/Objects/Misc/subdermal_implants.yml
+++ b/Resources/Prototypes/Entities/Objects/Misc/subdermal_implants.yml
@@ -274,6 +274,8 @@
- type: TriggerImplantAction
- type: GibOnTrigger
deleteItems: true
+ - type: SpawnOnTrigger
+ proto: Acidifier
- type: Tag
tags:
- SubdermalImplant
diff --git a/Resources/Prototypes/Entities/Objects/Misc/tiles.yml b/Resources/Prototypes/Entities/Objects/Misc/tiles.yml
index 3a13ac239c4..02033a137a0 100644
--- a/Resources/Prototypes/Entities/Objects/Misc/tiles.yml
+++ b/Resources/Prototypes/Entities/Objects/Misc/tiles.yml
@@ -24,7 +24,7 @@
thresholds:
- trigger:
!type:DamageTrigger
- damage: 40
+ damage: 30
behaviors:
- !type:DoActsBehavior
acts: [ "Destruction" ]
@@ -33,7 +33,10 @@
damage: 20
behaviors:
- !type:PlaySoundBehavior
- sound: /Audio/Effects/metalbreak.ogg
+ sound:
+ path: /Audio/Effects/metalbreak.ogg
+ params:
+ volume: -8
- !type:DoActsBehavior
acts: [ "Destruction" ]
- type: DamageOnLand
@@ -353,7 +356,7 @@
- FloorMiningLight
- type: Stack
stackType: FloorTileMiningLight
-
+
# Departamental
- type: entity
name: freezer tile
diff --git a/Resources/Prototypes/Entities/Objects/Power/lights.yml b/Resources/Prototypes/Entities/Objects/Power/lights.yml
index 17b7ec179e5..05454c374f2 100644
--- a/Resources/Prototypes/Entities/Objects/Power/lights.yml
+++ b/Resources/Prototypes/Entities/Objects/Power/lights.yml
@@ -39,6 +39,8 @@
- !type:PlaySoundBehavior
sound:
collection: GlassBreak
+ params:
+ volume: -8
- !type:DoActsBehavior
acts: [ "Breakage" ]
- trigger:
@@ -48,6 +50,8 @@
- !type:PlaySoundBehavior
sound:
collection: GlassBreak
+ params:
+ volume: -8
- !type:SpawnEntitiesBehavior
spawn:
ShardGlass:
diff --git a/Resources/Prototypes/Entities/Objects/Specific/Janitorial/janitor.yml b/Resources/Prototypes/Entities/Objects/Specific/Janitorial/janitor.yml
index c7deba07328..4119b12a46b 100644
--- a/Resources/Prototypes/Entities/Objects/Specific/Janitorial/janitor.yml
+++ b/Resources/Prototypes/Entities/Objects/Specific/Janitorial/janitor.yml
@@ -611,3 +611,6 @@
tags:
- DroneUsable
- Mop
+ - CleansForensics
+ - type: Fiber
+ fiberColor: fibers-white
diff --git a/Resources/Prototypes/Entities/Objects/Specific/Janitorial/soap.yml b/Resources/Prototypes/Entities/Objects/Specific/Janitorial/soap.yml
index 09f48b258e9..5905c6b1288 100644
--- a/Resources/Prototypes/Entities/Objects/Specific/Janitorial/soap.yml
+++ b/Resources/Prototypes/Entities/Objects/Specific/Janitorial/soap.yml
@@ -7,6 +7,7 @@
- type: Tag
tags:
- Soap
+ - CleansForensics
- type: Sprite
sprite: Objects/Specific/Janitorial/soap.rsi
layers:
@@ -68,6 +69,9 @@
- type: Food
solution: soap
- type: BadFood
+ - type: Residue
+ residueAdjective: residue-slippery
+ residueColor: residue-green
- type: entity
name: soap
@@ -90,6 +94,9 @@
reagents:
- ReagentId: SoapReagent
Quantity: 100
+ - type: Residue
+ residueAdjective: residue-slippery
+ residueColor: residue-grey
- type: entity
name: soap
@@ -105,6 +112,9 @@
fillBaseName: deluxe-
- type: Item
heldPrefix: deluxe
+ - type: Residue
+ residueAdjective: residue-slippery
+ residueColor: residue-brown
- type: entity
name: soap
@@ -127,6 +137,49 @@
flavors:
- clean
- punishment
+ - type: Residue
+ residueAdjective: residue-slippery
+ residueColor: residue-red
+
+- type: entity
+ name: soaplet
+ id: SoapletSyndie
+ noSpawn: true
+ parent: Soap
+ description: A tiny piece of syndicate soap.
+ components:
+ - type: Sprite
+ layers:
+ - state: syndie-soaplet
+ - type: Slippery
+ paralyzeTime: 5
+ launchForwardsMultiplier: 2.5
+ - type: StepTrigger
+ intersectRatio: 0.04
+ - type: Item
+ heldPrefix: syndie
+ - type: Fixtures
+ fixtures:
+ slips:
+ shape:
+ !type:PhysShapeAabb
+ bounds: "-0.08,-0.06,0.08,0.06"
+ layer:
+ - SlipLayer
+ hard: false
+ fix1:
+ shape:
+ !type:PhysShapeAabb
+ bounds: "-0.08,-0.06,0.08,0.06"
+ density: 1
+ mask:
+ - ItemMask
+ - type: DeleteOnTrigger
+ - type: EmitSoundOnTrigger
+ sound:
+ path: "/Audio/Effects/Fluids/splat.ogg"
+ params:
+ volume: -20
- type: entity
name: soap
@@ -149,6 +202,9 @@
flavors:
- clean
- meaty
+ - type: Residue
+ residueAdjective: residue-slippery
+ residueColor: residue-red
- type: entity
name: omega soap
@@ -174,3 +230,6 @@
reagents:
- ReagentId: SoapReagent
Quantity: 240
+ - type: Residue
+ residueAdjective: residue-slippery
+ residueColor: residue-blue
\ No newline at end of file
diff --git a/Resources/Prototypes/Entities/Objects/Specific/chemistry-bottles.yml b/Resources/Prototypes/Entities/Objects/Specific/chemistry-bottles.yml
index 7dddb71c0d0..acfb65aa54f 100644
--- a/Resources/Prototypes/Entities/Objects/Specific/chemistry-bottles.yml
+++ b/Resources/Prototypes/Entities/Objects/Specific/chemistry-bottles.yml
@@ -79,6 +79,8 @@
- !type:PlaySoundBehavior
sound:
collection: GlassBreak
+ params:
+ volume: -4
- !type:SpillBehavior { }
- !type:SpawnEntitiesBehavior
spawn:
diff --git a/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml b/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml
index d22e5d14186..2fad96411fc 100644
--- a/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml
+++ b/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml
@@ -62,6 +62,8 @@
- !type:PlaySoundBehavior
sound:
collection: GlassBreak
+ params:
+ volume: -4
- !type:SpillBehavior
solution: beaker
- !type:SpawnEntitiesBehavior
diff --git a/Resources/Prototypes/Entities/Objects/Tools/cable_coils.yml b/Resources/Prototypes/Entities/Objects/Tools/cable_coils.yml
index f1f300bc9ce..e1e565cc186 100644
--- a/Resources/Prototypes/Entities/Objects/Tools/cable_coils.yml
+++ b/Resources/Prototypes/Entities/Objects/Tools/cable_coils.yml
@@ -61,7 +61,7 @@
- ReagentId: Iron
Quantity: 3
- ReagentId: Copper
- Quantity: 3
+ Quantity: 2
- ReagentId: Carbon #steel-reinforced
Quantity: 1
@@ -128,7 +128,7 @@
- ReagentId: Iron
Quantity: 3
- ReagentId: Copper
- Quantity: 3
+ Quantity: 2
- type: entity
parent: CableMVStack
@@ -192,7 +192,7 @@
- ReagentId: Iron
Quantity: 3
- ReagentId: Copper
- Quantity: 3
+ Quantity: 2
- type: entity
parent: CableApcStack
diff --git a/Resources/Prototypes/Entities/Objects/Tools/gas_tanks.yml b/Resources/Prototypes/Entities/Objects/Tools/gas_tanks.yml
index 69458779b1e..0dba7570f51 100644
--- a/Resources/Prototypes/Entities/Objects/Tools/gas_tanks.yml
+++ b/Resources/Prototypes/Entities/Objects/Tools/gas_tanks.yml
@@ -140,15 +140,28 @@
description: An emergency tank with extended capacity. Technically rated for prolonged use.
components:
- type: Sprite
- sprite: Objects/Tanks/emergency_yellow.rsi
+ sprite: Objects/Tanks/emergency_extended.rsi
- type: Item
- sprite: Objects/Tanks/emergency_yellow.rsi
+ sprite: Objects/Tanks/emergency_extended.rsi
- type: GasTank
air:
volume: 1.5
temperature: 293.15
- type: Clothing
- sprite: Objects/Tanks/emergency_yellow.rsi
+ sprite: Objects/Tanks/emergency_extended.rsi
+
+- type: entity
+ parent: ExtendedEmergencyOxygenTank
+ id: ExtendedEmergencyNitrogenTank
+ name: extended-capacity emergency nitrogen tank
+ description: An emergency tank with extended capacity. Technically rated for prolonged use.
+ components:
+ - type: Sprite
+ sprite: Objects/Tanks/emergency_extended_red.rsi
+ - type: Item
+ sprite: Objects/Tanks/emergency_extended_red.rsi
+ - type: Clothing
+ sprite: Objects/Tanks/emergency_extended_red.rsi
- type: entity
parent: ExtendedEmergencyOxygenTank
@@ -172,6 +185,19 @@
types:
Blunt: 7.5
+- type: entity
+ parent: DoubleEmergencyOxygenTank
+ id: DoubleEmergencyNitrogenTank
+ name: double emergency nitrogen tank
+ description: A high-grade dual-tank emergency life support container. It holds a decent amount of nitrogen for its small size.
+ components:
+ - type: Sprite
+ sprite: Objects/Tanks/emergency_double_red.rsi
+ - type: Item
+ sprite: Objects/Tanks/emergency_double_red.rsi
+ - type: Clothing
+ sprite: Objects/Tanks/emergency_double_red.rsi
+
- type: entity
parent: GasTankRoundBase
id: AirTank
diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Bombs/funny.yml b/Resources/Prototypes/Entities/Objects/Weapons/Bombs/funny.yml
index 84883c975d0..7d95e7481e3 100644
--- a/Resources/Prototypes/Entities/Objects/Weapons/Bombs/funny.yml
+++ b/Resources/Prototypes/Entities/Objects/Weapons/Bombs/funny.yml
@@ -83,11 +83,23 @@
- type: ExplodeOnTrigger
- type: Explosive
explosionType: Default
- maxIntensity: 2
- totalIntensity: 10
+ maxIntensity: 3.4
+ intensitySlope: 3
+ totalIntensity: 20
canCreateVacuum: false
- type: DeleteOnTrigger
- type: AnimationPlayer
+ - type: Damageable
+ damageContainer: Inorganic
+ - type: Destructible
+ thresholds:
+ - trigger:
+ !type:DamageTrigger
+ damage: 10
+ behaviors:
+ - !type:TriggerBehavior
+ - !type:DoActsBehavior
+ acts: ["Destruction"]
- type: entity
parent: BaseItem
diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/shotgun.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/shotgun.yml
index 21780fefb61..92a88111f51 100644
--- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/shotgun.yml
+++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/shotgun.yml
@@ -148,4 +148,4 @@
spread: 45 #deadly if you can get up close... otherwise, good luck doing any kind of real damage
proto: PelletShotgunImprovised
- type: SpentAmmoVisuals
- state: "improvised"
\ No newline at end of file
+ state: "improvised"
diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/grenade.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/grenade.yml
new file mode 100644
index 00000000000..511cf76df9e
--- /dev/null
+++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/grenade.yml
@@ -0,0 +1,58 @@
+- type: entity
+ id: PelletClusterRubber
+ name: pellet (ball, Rubber)
+ noSpawn: true
+ parent: BaseBullet
+ components:
+ - type: Sprite
+ sprite: Objects/Weapons/Guns/Projectiles/projectiles2.rsi
+ state: buckshot
+ - type: Projectile
+ deleteOnCollide: false
+ canPenetrate: true
+ damage:
+ types:
+ Blunt: 4
+ - type: StaminaDamageOnCollide
+ damage: 55
+ - type: TimedDespawn
+ lifetime: 0.25
+
+- type: entity
+ id: PelletClusterLethal
+ name: pellet (ball, Lethal)
+ noSpawn: true
+ parent: BaseBullet
+ components:
+ - type: Sprite
+ sprite: Objects/Weapons/Guns/Projectiles/projectiles2.rsi
+ state: buckshot
+ - type: Projectile
+ deleteOnCollide: false
+ canPenetrate: true
+ damage:
+ types:
+ Piercing: 45
+ - type: TimedDespawn
+ lifetime: 0.25
+
+- type: entity
+ id: PelletClusterIncendiary
+ name: pellet (ball, incendiary)
+ noSpawn: true
+ parent: BaseBulletIncendiary
+ components:
+ - type: Sprite
+ sprite: Objects/Weapons/Guns/Projectiles/projectiles2.rsi
+ state: buckshot-flare
+ - type: Projectile
+ deleteOnCollide: false
+ canPenetrate: true
+ damage:
+ groups:
+ Burn: 4
+ - type: IgniteOnCollide
+ fireStacks: 3
+ count: 10
+ - type: TimedDespawn
+ lifetime: 0.25
diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/shotgun.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/shotgun.yml
index 887295b4b1c..5f19ac03d0b 100644
--- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/shotgun.yml
+++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/shotgun.yml
@@ -75,7 +75,7 @@
id: PelletShotgunImprovised
name: improvised pellet
noSpawn: true
- parent: BaseBullet
+ parent: BaseBullet
components:
- type: Sprite
sprite: Objects/Weapons/Guns/Projectiles/projectiles2.rsi
@@ -135,6 +135,9 @@
- ItemMask
restitution: 0.3
friction: 0.2
+ - type: Tag
+ tags:
+ - PelletShotgunFlare
- type: Sprite
sprite: Objects/Weapons/Guns/Projectiles/projectiles2.rsi
state: buckshot-flare
diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml
index b94191ef027..d5bca926b99 100644
--- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml
+++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml
@@ -641,6 +641,11 @@
- state: grenade
- type: FlashOnTrigger
range: 7
+ - type: SpawnOnTrigger
+ proto: GrenadeFlashEffect
+ - type: ActiveTimerTrigger
+ timeRemaining: 0.3
+ - type: DeleteOnTrigger
# This is supposed to spawn shrapnel and stuff so uhh... TODO?
- type: entity
diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/flare_gun.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/flare_gun.yml
index cfcc0a01cd1..810a36105bd 100644
--- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/flare_gun.yml
+++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/flare_gun.yml
@@ -17,8 +17,13 @@
selectedMode: SemiAuto
availableModes:
- SemiAuto
+ compatibleAmmo:
+ - PelletShotgunFlare
soundGunshot:
path: /Audio/Weapons/Guns/Gunshots/flaregun.ogg
+ damageOnWrongAmmo:
+ types:
+ Blunt: 6.0
- type: BallisticAmmoProvider
whitelist:
tags:
diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/mining.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/mining.yml
index 17e52846041..731c1911dda 100644
--- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/mining.yml
+++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/mining.yml
@@ -1,8 +1,8 @@
- type: entity
- name: crusher
+ abstract: true
parent: BaseItem
id: BaseWeaponCrusher # Crusher? But I...
- abstract: true
+ name: crusher
description: An early design of the proto-kinetic accelerator.
components:
- type: Sharp
@@ -13,7 +13,6 @@
radius: 4
- type: entity
- name: crusher
parent: BaseWeaponCrusher
id: WeaponCrusher
components:
@@ -65,9 +64,9 @@
- type: Prying
- type: entity
- name: crusher dagger
parent: BaseWeaponCrusher
id: WeaponCrusherDagger
+ name: crusher dagger
description: A scaled down version of a proto-kinetic crusher, usually used in a last ditch scenario.
components:
- type: Sprite
@@ -79,37 +78,27 @@
damage:
types:
Slash: 6.5
- - type: Item
- size: Small
- type: Tag
tags:
- Knife
# Like a crusher... but better
- type: entity
- name: crusher glaive
parent: WeaponCrusher
id: WeaponCrusherGlaive
+ name: crusher glaive
description: An early design of the proto-kinetic accelerator, in glaive form.
components:
- - type: Tag
- tags:
- - Pickaxe
- - type: UseDelayOnShoot
+ - type: Sprite
+ sprite: Objects/Weapons/Melee/crusher_glaive.rsi
- type: UseDelay
delay: 1.9
- - type: Gun
- fireRate: 1
- - type: RechargeBasicEntityAmmo
- rechargeCooldown: 0.5
- type: LeechOnMarker
leech:
groups:
Brute: -15
- - type: Sprite
- sprite: Objects/Weapons/Melee/crusher_glaive.rsi
- type: MeleeWeapon
- wideAnimationRotation: -135
attackRate: 1.25
- - type: Item
- size: Ginormous
+ - type: Tag
+ tags:
+ - Pickaxe
diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/spear.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/spear.yml
index aa383b6f0c8..e704fc90a4f 100644
--- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/spear.yml
+++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/spear.yml
@@ -93,6 +93,8 @@
- !type:PlaySoundBehavior
sound:
collection: GlassBreak
+ params:
+ volume: -4
- !type:SpawnEntitiesBehavior
spawn:
PartRodMetal1:
diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/clusterbang.yml b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/clusterbang.yml
index f7d0a0e5df9..43ed06a3ea0 100644
--- a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/clusterbang.yml
+++ b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/clusterbang.yml
@@ -11,16 +11,233 @@
- type: ClusterGrenadeVisuals
state: base
- type: ClusterGrenade
+ - type: OnUseTimerTrigger
+ delay: 3.5
- type: ContainerContainer
containers:
- cluster-flash: !type:Container
+ cluster-payload: !type:Container
- type: entity
- parent: ClusterBang
+ parent: GrenadeBase
id: ClusterBangFull
+ name: ClusterBang
+ description: Launches three flashbangs after the timer runs out.
suffix: Full
components:
- type: Sprite
- state: base-3
+ sprite: Objects/Weapons/Grenades/clusterbang.rsi
+ layers:
+ - state: icon
+ map: ["enum.TriggerVisualLayers.Base"]
- type: ClusterGrenade
fillPrototype: GrenadeFlashBang
+ distance: 7
+ velocity: 7
+ - type: TimerTriggerVisuals
+ primingSound:
+ path: /Audio/Effects/countdown.ogg
+ - type: GenericVisualizer
+ visuals:
+ enum.Trigger.TriggerVisuals.VisualState:
+ enum.ConstructionVisuals.Layer:
+ Primed: { state: primed }
+ Unprimed: { state: icon }
+ - type: EmitSoundOnTrigger
+ sound:
+ path: "/Audio/Machines/door_lock_off.ogg"
+ - type: ContainerContainer
+ containers:
+ cluster-payload: !type:Container
+
+- type: entity
+ parent: GrenadeBase
+ id: ClusterGrenade
+ name: clustergrenade
+ description: Why use one grenade when you can use three at once!
+ components:
+ - type: Sprite
+ sprite: Objects/Weapons/Grenades/clusterbomb.rsi
+ layers:
+ - state: icon
+ map: ["enum.TriggerVisualLayers.Base"]
+ - type: ClusterGrenade
+ fillPrototype: ExGrenade
+ velocity: 3.5
+ distance: 5
+ - type: OnUseTimerTrigger
+ beepSound:
+ path: "/Audio/Effects/beep1.ogg"
+ params:
+ volume: 5
+ initialBeepDelay: 0
+ beepInterval: 0.5
+ - type: EmitSoundOnTrigger
+ sound:
+ path: "/Audio/Machines/door_lock_off.ogg"
+ - type: ContainerContainer
+ containers:
+ cluster-payload: !type:Container
+
+- type: entity
+ parent: BaseItem
+ id: ClusterBananaPeel
+ name: cluster banana peel
+ description: Splits into 6 explosive banana peels after throwing, guaranteed fun!
+ components:
+ - type: Sprite
+ sprite: Objects/Specific/Hydroponics/banana.rsi
+ state: produce
+ - type: Appearance
+ - type: ClusterGrenade
+ fillPrototype: TrashBananaPeelExplosive
+ maxGrenadesCount: 6
+ baseTriggerDelay: 20
+ - type: DamageOnLand
+ damage:
+ types:
+ Blunt: 10
+ - type: Damageable
+ damageContainer: Inorganic
+ - type: EmitSoundOnTrigger
+ sound:
+ path: "/Audio/Items/bikehorn.ogg"
+ - type: Destructible
+ thresholds:
+ - trigger:
+ !type:DamageTrigger
+ damage: 10
+ behaviors:
+ - !type:TriggerBehavior
+ - !type:DoActsBehavior
+ acts: ["Destruction"]
+ - type: ContainerContainer
+ containers:
+ cluster-payload: !type:Container
+
+- type: entity
+ parent: GrenadeBase
+ id: GrenadeStinger
+ name: stinger grenade
+ description: Nothing to see here, please disperse.
+ components:
+ - type: Sprite
+ sprite: Objects/Weapons/Grenades/stingergrenade.rsi
+ layers:
+ - state: icon
+ map: ["enum.TriggerVisualLayers.Base"]
+ - type: ClusterGrenade
+ fillPrototype: PelletClusterRubber
+ maxGrenadesCount: 30
+ grenadeType: enum.GrenadeType.Shoot
+ - type: FlashOnTrigger
+ range: 7
+ - type: EmitSoundOnTrigger
+ sound:
+ path: "/Audio/Effects/flash_bang.ogg"
+ - type: SpawnOnTrigger
+ proto: GrenadeFlashEffect
+ - type: TimerTriggerVisuals
+ primingSound:
+ path: /Audio/Effects/countdown.ogg
+ - type: ContainerContainer
+ containers:
+ cluster-payload: !type:Container
+
+- type: entity
+ parent: GrenadeBase
+ id: GrenadeIncendiary
+ name: incendiary grenade
+ description: Guaranteed to light up the mood.
+ components:
+ - type: Sprite
+ sprite: Objects/Weapons/Grenades/pyrogrenade.rsi
+ layers:
+ - state: icon
+ map: ["enum.TriggerVisualLayers.Base"]
+ - type: ClusterGrenade
+ fillPrototype: PelletClusterIncendiary
+ maxGrenadesCount: 15
+ grenadeType: enum.GrenadeType.Shoot
+ - type: OnUseTimerTrigger
+ beepSound:
+ path: "/Audio/Effects/beep1.ogg"
+ params:
+ volume: 5
+ initialBeepDelay: 0
+ beepInterval: 2
+ - type: EmitSoundOnTrigger
+ sound:
+ path: "/Audio/Weapons/Guns/Gunshots/batrifle.ogg"
+ - type: ContainerContainer
+ containers:
+ cluster-payload: !type:Container
+
+- type: entity
+ parent: GrenadeBase
+ id: GrenadeShrapnel
+ name: shrapnel grenade
+ description: Releases a deadly spray of shrapnel that causes severe bleeding.
+ components:
+ - type: Sprite
+ sprite: Objects/Weapons/Grenades/shrapnelgrenade.rsi
+ layers:
+ - state: icon
+ map: ["enum.TriggerVisualLayers.Base"]
+ - type: ClusterGrenade
+ fillPrototype: PelletClusterLethal
+ maxGrenadesCount: 30
+ grenadeType: enum.GrenadeType.Shoot
+ - type: OnUseTimerTrigger
+ beepSound:
+ path: "/Audio/Effects/beep1.ogg"
+ params:
+ volume: 5
+ initialBeepDelay: 0
+ beepInterval: 2
+ - type: EmitSoundOnTrigger
+ sound:
+ path: "/Audio/Weapons/Guns/Gunshots/batrifle.ogg"
+ - type: ContainerContainer
+ containers:
+ cluster-payload: !type:Container
+
+- type: entity
+ parent: SoapSyndie
+ id: SlipocalypseClusterSoap
+ name: slipocalypse clustersoap
+ description: Spreads small pieces of syndicate soap over an area upon landing on the floor.
+ components:
+ - type: Sprite
+ sprite: Objects/Specific/Janitorial/soap.rsi
+ layers:
+ - state: syndie-4
+ - type: Appearance
+ - type: ClusterGrenade
+ fillPrototype: SoapletSyndie
+ maxGrenadesCount: 30
+ grenadeTriggerIntervalMax: 0
+ grenadeTriggerIntervalMin: 0
+ baseTriggerDelay: 60
+ randomSpread: true
+ velocity: 3
+ - type: DamageOnLand
+ damage:
+ types:
+ Blunt: 10
+ - type: EmitSoundOnTrigger
+ sound:
+ path: "/Audio/Effects/flash_bang.ogg"
+ - type: Damageable
+ damageContainer: Inorganic
+ - type: Destructible
+ thresholds:
+ - trigger:
+ !type:DamageTrigger
+ damage: 10
+ behaviors:
+ - !type:TriggerBehavior
+ - !type:DoActsBehavior
+ acts: ["Destruction"]
+ - type: ContainerContainer
+ containers:
+ cluster-payload: !type:Container
diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/grenades.yml b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/grenades.yml
index ece4ec4ef48..7f5124a5ebc 100644
--- a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/grenades.yml
+++ b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/grenades.yml
@@ -29,7 +29,12 @@
acts: ["Destruction"]
- type: Appearance
- type: AnimationPlayer
- - type: TimerTriggerVisuals
+ - type: GenericVisualizer
+ visuals:
+ enum.Trigger.TriggerVisuals.VisualState:
+ enum.ConstructionVisuals.Layer:
+ Primed: { state: primed }
+ Unprimed: { state: icon }
- type: entity
name: explosive grenade
diff --git a/Resources/Prototypes/Entities/Structures/Furniture/Tables/tables.yml b/Resources/Prototypes/Entities/Structures/Furniture/Tables/tables.yml
index 5036ab83c84..5c42e7cf32c 100644
--- a/Resources/Prototypes/Entities/Structures/Furniture/Tables/tables.yml
+++ b/Resources/Prototypes/Entities/Structures/Furniture/Tables/tables.yml
@@ -42,6 +42,8 @@
- !type:PlaySoundBehavior
sound:
path: /Audio/Effects/metalbreak.ogg
+ params:
+ volume: -6
- !type:SpawnEntitiesBehavior
spawn:
PartRodMetal1:
@@ -140,6 +142,8 @@
- !type:PlaySoundBehavior
sound:
path: /Audio/Effects/metalbreak.ogg
+ params:
+ volume: -6
- !type:SpawnEntitiesBehavior
spawn:
SheetSteel1:
@@ -179,6 +183,8 @@
- !type:PlaySoundBehavior
sound:
path: /Audio/Effects/metalbreak.ogg
+ params:
+ volume: -6
- !type:SpawnEntitiesBehavior
spawn:
SheetSteel1:
@@ -215,6 +221,8 @@
- !type:PlaySoundBehavior
sound:
path: /Audio/Effects/metalbreak.ogg
+ params:
+ volume: -6
- !type:SpawnEntitiesBehavior
spawn:
SheetSteel1:
@@ -601,6 +609,8 @@
- !type:PlaySoundBehavior
sound:
path: /Audio/Effects/metalbreak.ogg
+ params:
+ volume: -6
- !type:SpawnEntitiesBehavior
spawn:
SheetSteel1:
diff --git a/Resources/Prototypes/Entities/Structures/Machines/Computers/frame.yml b/Resources/Prototypes/Entities/Structures/Machines/Computers/frame.yml
index 70a4d7e3da0..b1804e6b7b1 100644
--- a/Resources/Prototypes/Entities/Structures/Machines/Computers/frame.yml
+++ b/Resources/Prototypes/Entities/Structures/Machines/Computers/frame.yml
@@ -91,6 +91,8 @@
- !type:PlaySoundBehavior
sound:
path: /Audio/Effects/metalbreak.ogg
+ params:
+ volume: -6
- !type:SpawnEntitiesBehavior
spawn:
SheetSteel1:
diff --git a/Resources/Prototypes/Entities/Structures/Machines/Medical/chemistry_machines.yml b/Resources/Prototypes/Entities/Structures/Machines/Medical/chemistry_machines.yml
new file mode 100644
index 00000000000..6a46064ac44
--- /dev/null
+++ b/Resources/Prototypes/Entities/Structures/Machines/Medical/chemistry_machines.yml
@@ -0,0 +1,119 @@
+- type: entity
+ id: BaseTabletopChemicalMachine
+ parent: [ BaseMachinePowered, ConstructibleMachine ]
+ abstract: true
+ components:
+ - type: Transform
+ anchored: true
+ - type: SolutionContainerMixer
+ - type: ReactionMixer
+ - type: Sprite
+ drawdepth: SmallObjects
+ snapCardinals: true
+ - type: Appearance
+ - type: Physics
+ - type: Fixtures
+ fixtures:
+ fix1:
+ shape:
+ !type:PhysShapeAabb
+ bounds: "-0.17,0,0.20,0.4"
+ mask:
+ - TabletopMachineMask
+ layer:
+ - TabletopMachineLayer
+ - type: ItemSlots
+ slots:
+ mixer:
+ whitelist:
+ components:
+ - FitsInDispenser
+ - type: Machine
+ - type: Wires
+ layoutId: chem
+ - type: WiresPanel
+ - type: WiresVisuals
+ - type: ContainerContainer
+ containers:
+ mixer: !type:ContainerSlot
+ machine_board: !type:Container
+ machine_parts: !type:Container
+
+- type: entity
+ id: MachineElectrolysisUnit
+ parent: BaseTabletopChemicalMachine
+ name: electrolysis unit
+ description: The latest in medicinal electrocution technology.
+ components:
+ - type: SolutionContainerMixer
+ mixDuration: 5
+ mixingSound:
+ path: /Audio/Machines/buzz_loop.ogg
+ params:
+ volume: -5
+ - type: ReactionMixer
+ reactionTypes:
+ - Electrolysis
+ - type: Sprite
+ sprite: Structures/Machines/Medical/electrolysis.rsi
+ offset: "0.0,0.4"
+ layers:
+ - state: base
+ - state: panel
+ map: ["enum.WiresVisualLayers.MaintenancePanel"]
+ visible: false
+ - state: unshaded
+ map: ["enum.PowerDeviceVisualLayers.Powered"]
+ shader: unshaded
+ - type: GenericVisualizer
+ visuals:
+ enum.SolutionContainerMixerVisuals.Mixing:
+ enum.PowerDeviceVisualLayers.Powered:
+ True: {state: "spinning"}
+ False: {state: "unshaded"}
+ enum.PowerDeviceVisuals.Powered:
+ enum.PowerDeviceVisualLayers.Powered:
+ True: { visible: True }
+ False: { visible: False }
+ - type: Machine
+ board: ElectrolysisUnitMachineCircuitboard
+
+- type: entity
+ id: MachineCentrifuge
+ parent: BaseTabletopChemicalMachine
+ name: tabletop centrifuge
+ description: Around and around it goes...
+ components:
+ - type: SolutionContainerMixer
+ mixDuration: 10
+ mixingSound:
+ path: /Audio/Machines/spinning.ogg
+ params:
+ volume: -4
+ - type: ReactionMixer
+ reactionTypes:
+ - Centrifuge
+ - type: Sprite
+ sprite: Structures/Machines/Medical/centrifuge.rsi
+ offset: "0.0,0.4"
+ layers:
+ - state: base
+ map: ["beyblade"]
+ - state: panel
+ map: ["enum.WiresVisualLayers.MaintenancePanel"]
+ visible: false
+ - state: unshaded
+ map: ["enum.PowerDeviceVisualLayers.Powered"]
+ shader: unshaded
+ - type: GenericVisualizer
+ visuals:
+ enum.SolutionContainerMixerVisuals.Mixing:
+ beyblade:
+ True: {state: "base-spinning"}
+ False: {state: "base"}
+ enum.PowerDeviceVisuals.Powered:
+ enum.PowerDeviceVisualLayers.Powered:
+ True: { visible: True }
+ False: { visible: False }
+ - type: Machine
+ board: CentrifugeMachineCircuitboard
diff --git a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml
index d88b235011c..e2ef97d9cf8 100644
--- a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml
+++ b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml
@@ -265,6 +265,7 @@
- SyringeBluespace
- WeaponCrusher
- WeaponCrusherDagger
+ - WeaponCrusherGlaive
- WeaponForceGun
- WeaponProtoKineticAccelerator
- WeaponTetherGun
@@ -306,6 +307,10 @@
producingSound: /Audio/Machines/circuitprinter.ogg
idleState: icon
runningState: building
+ staticRecipes:
+ - ElectrolysisUnitMachineCircuitboard
+ - CentrifugeMachineCircuitboard
+ - CondenserMachineCircuitBoard
dynamicRecipes:
- ThermomachineFreezerMachineCircuitBoard
- PortableScrubberMachineCircuitBoard
diff --git a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/pipes.yml b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/pipes.yml
index a312979507b..1441d6f3082 100644
--- a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/pipes.yml
+++ b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/pipes.yml
@@ -34,6 +34,8 @@
- !type:PlaySoundBehavior
sound:
path: /Audio/Effects/metalbreak.ogg
+ params:
+ volume: -8
- !type:SpawnEntitiesBehavior
spawn:
GasPipeBroken:
diff --git a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/unary.yml b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/unary.yml
index 0fdad5d9670..05135da0ce9 100644
--- a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/unary.yml
+++ b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/unary.yml
@@ -351,3 +351,89 @@
enabled: true
- type: ApcPowerReceiver
powerDisabled: false
+
+- type: entity
+ parent: [ BaseMachinePowered, ConstructibleMachine ]
+ id: BaseGasCondenser
+ name: condenser
+ description: Condenses gases into liquids. Now we just need some plumbing.
+ placement:
+ mode: SnapgridCenter
+ components:
+ - type: Sprite
+ sprite: Structures/Piping/Atmospherics/condenser.rsi
+ snapCardinals: true
+ granularLayersRendering: true
+ layers:
+ - state: off
+ map: [ "enum.PowerDeviceVisualLayers.Powered" ]
+ - state: panel
+ map: ["enum.WiresVisualLayers.MaintenancePanel"]
+ - state: pipe
+ map: [ "enum.PipeVisualLayers.Pipe" ]
+ renderingStrategy: Default
+ - state: fill-1
+ map: ["enum.SolutionContainerLayers.Fill"]
+ visible: false
+ - state: trans
+ - type: GenericVisualizer
+ visuals:
+ enum.PowerDeviceVisuals.Powered:
+ enum.PowerDeviceVisualLayers.Powered:
+ True: { state: on }
+ False: { state: off }
+ - type: SolutionContainerVisuals
+ maxFillLevels: 7
+ fillBaseName: fill-
+ - type: Appearance
+ - type: PipeColorVisuals
+ - type: Rotatable
+ - type: GasCondenser
+ - type: AtmosPipeColor
+ - type: AtmosDevice
+ - type: ApcPowerReceiver
+ powerLoad: 10000
+ - type: Machine
+ board: CondenserMachineCircuitBoard
+ - type: WiresPanel
+ - type: Wires
+ boardName: wires-board-name-condenser
+ layoutId: Condenser
+ - type: WiresVisuals
+ - type: Destructible
+ thresholds:
+ - trigger:
+ !type:DamageTrigger
+ damage: 200
+ behaviors:
+ - !type:DoActsBehavior
+ acts: [ "Destruction" ]
+ - trigger:
+ !type:DamageTrigger
+ damage: 100
+ behaviors:
+ - !type:DoActsBehavior
+ acts: [ "Destruction" ]
+ - !type:SpillBehavior
+ solution: tank
+ - !type:PlaySoundBehavior
+ sound:
+ path: /Audio/Effects/metalbreak.ogg
+ - type: NodeContainer
+ nodes:
+ pipe:
+ !type:PipeNode
+ nodeGroupID: Pipe
+ pipeDirection: South
+ - type: Transform
+ noRot: false
+ - type: SolutionContainerManager
+ solutions:
+ tank:
+ maxVol: 400
+ canMix: true
+ - type: DrainableSolution
+ solution: tank
+ - type: ExaminableSolution
+ solution: tank
+ - type: PowerSwitch
diff --git a/Resources/Prototypes/Entities/Structures/Piping/Disposal/units.yml b/Resources/Prototypes/Entities/Structures/Piping/Disposal/units.yml
index 40fb09f7ef8..2fcc18e1b36 100644
--- a/Resources/Prototypes/Entities/Structures/Piping/Disposal/units.yml
+++ b/Resources/Prototypes/Entities/Structures/Piping/Disposal/units.yml
@@ -56,6 +56,8 @@
- !type:PlaySoundBehavior
sound:
path: /Audio/Effects/metalbreak.ogg
+ params:
+ volume: -6
- !type:SpawnEntitiesBehavior
spawn:
SheetSteel1:
diff --git a/Resources/Prototypes/Entities/Structures/Storage/Closets/Lockers/base_structurelockers.yml b/Resources/Prototypes/Entities/Structures/Storage/Closets/Lockers/base_structurelockers.yml
index 8dac19d80d1..1b5bf42923c 100644
--- a/Resources/Prototypes/Entities/Structures/Storage/Closets/Lockers/base_structurelockers.yml
+++ b/Resources/Prototypes/Entities/Structures/Storage/Closets/Lockers/base_structurelockers.yml
@@ -36,6 +36,8 @@
- !type:PlaySoundBehavior
sound:
path: /Audio/Effects/metalbreak.ogg
+ params:
+ volume: -6
- !type:SpawnEntitiesBehavior
spawn:
SheetSteel1:
diff --git a/Resources/Prototypes/Entities/Structures/Storage/Closets/base_structureclosets.yml b/Resources/Prototypes/Entities/Structures/Storage/Closets/base_structureclosets.yml
index 5edad73e337..cf1482b8af6 100644
--- a/Resources/Prototypes/Entities/Structures/Storage/Closets/base_structureclosets.yml
+++ b/Resources/Prototypes/Entities/Structures/Storage/Closets/base_structureclosets.yml
@@ -75,6 +75,8 @@
- !type:PlaySoundBehavior
sound:
path: /Audio/Effects/metalbreak.ogg
+ params:
+ volume: -6
- !type:SpawnEntitiesBehavior
spawn:
SheetSteel1:
@@ -148,6 +150,8 @@
- !type:PlaySoundBehavior
sound:
path: /Audio/Effects/metalbreak.ogg
+ params:
+ volume: -6
- !type:SpawnEntitiesBehavior
spawn:
SheetSteel1:
@@ -254,6 +258,8 @@
- !type:PlaySoundBehavior
sound:
path: /Audio/Effects/metalbreak.ogg
+ params:
+ volume: -6
- !type:SpawnEntitiesBehavior
spawn:
SheetSteel1:
diff --git a/Resources/Prototypes/Entities/Structures/Storage/storage.yml b/Resources/Prototypes/Entities/Structures/Storage/storage.yml
index c8723ffefae..2069fb1e3f1 100644
--- a/Resources/Prototypes/Entities/Structures/Storage/storage.yml
+++ b/Resources/Prototypes/Entities/Structures/Storage/storage.yml
@@ -48,6 +48,8 @@
- !type:PlaySoundBehavior
sound:
path: /Audio/Effects/metalbreak.ogg
+ params:
+ volume: -6
- !type:SpawnEntitiesBehavior
spawn:
SheetSteel1:
diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/air_alarm.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/air_alarm.yml
index 24dce1ab3e6..be1834ce5e8 100644
--- a/Resources/Prototypes/Entities/Structures/Wallmounts/air_alarm.yml
+++ b/Resources/Prototypes/Entities/Structures/Wallmounts/air_alarm.yml
@@ -103,6 +103,8 @@
- !type:PlaySoundBehavior
sound:
path: /Audio/Effects/metalbreak.ogg
+ params:
+ volume: -4
- type: entity
id: AirAlarmAssembly
diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/extinguisher_cabinet.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/extinguisher_cabinet.yml
index 44e1ff4add9..ca2b381142f 100644
--- a/Resources/Prototypes/Entities/Structures/Wallmounts/extinguisher_cabinet.yml
+++ b/Resources/Prototypes/Entities/Structures/Wallmounts/extinguisher_cabinet.yml
@@ -55,6 +55,8 @@
- !type:PlaySoundBehavior
sound:
path: /Audio/Effects/metalbreak.ogg
+ params:
+ volume: -4
placement:
mode: SnapgridCenter
diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/fire_alarm.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/fire_alarm.yml
index 7e0635edc82..52cc3458f74 100644
--- a/Resources/Prototypes/Entities/Structures/Wallmounts/fire_alarm.yml
+++ b/Resources/Prototypes/Entities/Structures/Wallmounts/fire_alarm.yml
@@ -102,6 +102,8 @@
- !type:PlaySoundBehavior
sound:
path: /Audio/Effects/metalbreak.ogg
+ params:
+ volume: -4
placement:
mode: SnapgridCenter
snap:
diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/intercom.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/intercom.yml
index c8cdcfd40aa..375cd359c67 100644
--- a/Resources/Prototypes/Entities/Structures/Wallmounts/intercom.yml
+++ b/Resources/Prototypes/Entities/Structures/Wallmounts/intercom.yml
@@ -82,6 +82,8 @@
- !type:PlaySoundBehavior
sound:
path: /Audio/Effects/metalbreak.ogg
+ params:
+ volume: -4
- type: GenericVisualizer
visuals:
enum.PowerDeviceVisuals.Powered:
diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/surveillance_camera.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/surveillance_camera.yml
index 8679d595e31..86eb9badf9c 100644
--- a/Resources/Prototypes/Entities/Structures/Wallmounts/surveillance_camera.yml
+++ b/Resources/Prototypes/Entities/Structures/Wallmounts/surveillance_camera.yml
@@ -64,6 +64,8 @@
- !type:PlaySoundBehavior
sound:
path: /Audio/Effects/metalbreak.ogg
+ params:
+ volume: -8
placement:
mode: SnapgridCenter
snap:
diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/switch.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/switch.yml
index 86ac24169ad..d000993aea2 100644
--- a/Resources/Prototypes/Entities/Structures/Wallmounts/switch.yml
+++ b/Resources/Prototypes/Entities/Structures/Wallmounts/switch.yml
@@ -92,6 +92,8 @@
- !type:PlaySoundBehavior
sound:
path: /Audio/Effects/metalbreak.ogg
+ params:
+ volume: -8
- type: entity
id: ApcNetSwitch
diff --git a/Resources/Prototypes/Entities/Structures/Walls/railing.yml b/Resources/Prototypes/Entities/Structures/Walls/railing.yml
index b083771ea90..87a89dfc574 100644
--- a/Resources/Prototypes/Entities/Structures/Walls/railing.yml
+++ b/Resources/Prototypes/Entities/Structures/Walls/railing.yml
@@ -44,6 +44,8 @@
- !type:PlaySoundBehavior
sound:
path: /Audio/Effects/metalbreak.ogg
+ params:
+ volume: -6
- !type:SpawnEntitiesBehavior
spawn:
PartRodMetal1:
@@ -111,6 +113,8 @@
- !type:PlaySoundBehavior
sound:
path: /Audio/Effects/metalbreak.ogg
+ params:
+ volume: -6
- !type:SpawnEntitiesBehavior
spawn:
PartRodMetal1:
@@ -169,6 +173,8 @@
- !type:PlaySoundBehavior
sound:
path: /Audio/Effects/metalbreak.ogg
+ params:
+ volume: -6
- !type:SpawnEntitiesBehavior
spawn:
PartRodMetal1:
@@ -242,6 +248,8 @@
- !type:PlaySoundBehavior
sound:
path: /Audio/Effects/metalbreak.ogg
+ params:
+ volume: -6
- !type:SpawnEntitiesBehavior
spawn:
PartRodMetal1:
diff --git a/Resources/Prototypes/Entities/Structures/Walls/walls.yml b/Resources/Prototypes/Entities/Structures/Walls/walls.yml
index 37c2b27f89d..96bc6bee19f 100644
--- a/Resources/Prototypes/Entities/Structures/Walls/walls.yml
+++ b/Resources/Prototypes/Entities/Structures/Walls/walls.yml
@@ -720,8 +720,6 @@
path: /Audio/Effects/metalbreak.ogg
- !type:DoActsBehavior
acts: ["Destruction"]
- destroySound:
- path: /Audio/Effects/metalbreak.ogg
- type: Construction
graph: Girder
node: diagonalshuttleWall
diff --git a/Resources/Prototypes/Entities/Structures/meat_spike.yml b/Resources/Prototypes/Entities/Structures/meat_spike.yml
index 182ec09c8e1..a312fcb835e 100644
--- a/Resources/Prototypes/Entities/Structures/meat_spike.yml
+++ b/Resources/Prototypes/Entities/Structures/meat_spike.yml
@@ -32,6 +32,8 @@
- !type:PlaySoundBehavior
sound:
path: /Audio/Effects/metalbreak.ogg
+ params:
+ volume: -4
- !type:SpawnEntitiesBehavior
spawn:
SheetSteel1:
diff --git a/Resources/Prototypes/Flavors/flavors.yml b/Resources/Prototypes/Flavors/flavors.yml
index 07ec78cca03..cd2e9a237f1 100644
--- a/Resources/Prototypes/Flavors/flavors.yml
+++ b/Resources/Prototypes/Flavors/flavors.yml
@@ -868,3 +868,8 @@
id: punishment
flavorType: Complex
description: flavor-complex-punishment
+
+- type: flavor
+ id: holy
+ flavorType: Base
+ description: flavor-base-holy
diff --git a/Resources/Prototypes/GameRules/events.yml b/Resources/Prototypes/GameRules/events.yml
index d1ce1428a80..a8159ad3b1b 100644
--- a/Resources/Prototypes/GameRules/events.yml
+++ b/Resources/Prototypes/GameRules/events.yml
@@ -142,7 +142,7 @@
volume: -4
earliestStart: 10
minimumPlayers: 5
- weight: 5
+ weight: 10
startDelay: 20
- type: GasLeakRule
diff --git a/Resources/Prototypes/InventoryTemplates/borg.yml b/Resources/Prototypes/InventoryTemplates/borg.yml
new file mode 100644
index 00000000000..9d7a3dddbdf
--- /dev/null
+++ b/Resources/Prototypes/InventoryTemplates/borg.yml
@@ -0,0 +1,47 @@
+- type: inventoryTemplate
+ id: borg
+ slots:
+ - name: head
+ slotTexture: head
+ slotFlags: HEAD
+ slotGroup: MainHotbar
+ uiWindowPos: 0,0
+ strippingWindowPos: 0,0
+ displayName: Head
+ offset: 0, -0.09375
+
+- type: inventoryTemplate
+ id: borgShort
+ slots:
+ - name: head
+ slotTexture: head
+ slotFlags: HEAD
+ slotGroup: MainHotbar
+ uiWindowPos: 0,0
+ strippingWindowPos: 0,0
+ displayName: Head
+ offset: 0, -0.1875
+
+- type: inventoryTemplate
+ id: borgTall
+ slots:
+ - name: head
+ slotTexture: head
+ slotFlags: HEAD
+ slotGroup: MainHotbar
+ uiWindowPos: 0,0
+ strippingWindowPos: 0,0
+ displayName: Head
+
+# taller than tall
+- type: inventoryTemplate
+ id: borgDutch
+ slots:
+ - name: head
+ slotTexture: head
+ slotFlags: HEAD
+ slotGroup: MainHotbar
+ uiWindowPos: 0,0
+ strippingWindowPos: 0,0
+ displayName: Head
+ offset: 0, 0.09375
diff --git a/Resources/Prototypes/Magic/projectile_spells.yml b/Resources/Prototypes/Magic/projectile_spells.yml
index 8d7b2ffff05..196472fe7b2 100644
--- a/Resources/Prototypes/Magic/projectile_spells.yml
+++ b/Resources/Prototypes/Magic/projectile_spells.yml
@@ -5,7 +5,34 @@
noSpawn: true
components:
- type: WorldTargetAction
- useDelay: 30
+ useDelay: 15
+ itemIconStyle: BigAction
+ checkCanAccess: false
+ range: 60
+ sound: !type:SoundPathSpecifier
+ path: /Audio/Magic/fireball.ogg
+ icon:
+ sprite: Objects/Magic/magicactions.rsi
+ state: fireball
+ event: !type:ProjectileSpellEvent
+ prototype: ProjectileFireball
+ posData: !type:TargetCasterPos
+ speech: action-speech-spell-fireball
+ - type: ActionUpgrade
+ effectedLevels:
+ 2: ActionFireballII
+
+- type: entity
+ id: ActionFireballII
+ parent: ActionFireball
+ name: Fireball II
+ description: Fire three explosive fireball towards the clicked location.
+ noSpawn: true
+ components:
+ - type: WorldTargetAction
+ useDelay: 5
+ charges: 3
+ renewCharges: true
itemIconStyle: BigAction
checkCanAccess: false
range: 60
diff --git a/Resources/Prototypes/Maps/Pools/default.yml b/Resources/Prototypes/Maps/Pools/default.yml
index 45787feed47..1977a36121e 100644
--- a/Resources/Prototypes/Maps/Pools/default.yml
+++ b/Resources/Prototypes/Maps/Pools/default.yml
@@ -16,3 +16,4 @@
- Origin
- Saltern
- Packed
+ - Reach
diff --git a/Resources/Prototypes/Maps/atlas.yml b/Resources/Prototypes/Maps/atlas.yml
index e333c2782b3..58ab2e0900b 100644
--- a/Resources/Prototypes/Maps/atlas.yml
+++ b/Resources/Prototypes/Maps/atlas.yml
@@ -30,24 +30,24 @@
#engineering
ChiefEngineer: [ 1, 1 ]
AtmosphericTechnician: [ 2, 2 ]
- StationEngineer: [ 4, 4 ]
+ StationEngineer: [ 2, 2 ]
TechnicalAssistant: [ 1, 3 ]
#medical
ChiefMedicalOfficer: [ 1, 1 ]
Chemist: [ 2, 2 ]
- MedicalDoctor: [ 4, 4 ]
+ MedicalDoctor: [ 2, 2 ]
MedicalIntern: [ 1, 3 ]
- Paramedic: [ 1, 1 ]
#science
ResearchDirector: [ 1, 1 ]
- Scientist: [ 4, 4 ]
+ Scientist: [ 2, 2 ]
ResearchAssistant: [ 1, 3 ]
Borg: [ 2, 2 ]
#security
HeadOfSecurity: [ 1, 1 ]
Warden: [ 1, 1 ]
- SecurityOfficer: [ 4, 4 ]
+ SecurityOfficer: [ 3, 3 ]
SecurityCadet: [ 1, 3 ]
+ Detective: [ 1, 1 ]
#supply
Quartermaster: [ 1, 1 ]
SalvageSpecialist: [ 2, 2 ]
diff --git a/Resources/Prototypes/Maps/core.yml b/Resources/Prototypes/Maps/core.yml
index 790930c4a22..60ed7e35d89 100644
--- a/Resources/Prototypes/Maps/core.yml
+++ b/Resources/Prototypes/Maps/core.yml
@@ -45,6 +45,7 @@
ResearchDirector: [ 1, 1 ]
Scientist: [ 3, 3 ]
ResearchAssistant: [ 1, 1 ]
+ Borg: [ 1, 2 ]
#security
HeadOfSecurity: [ 1, 1 ]
SecurityOfficer: [ 4, 4 ]
diff --git a/Resources/Prototypes/Maps/meta.yml b/Resources/Prototypes/Maps/meta.yml
index b1fe57109cd..f7e9bb32159 100644
--- a/Resources/Prototypes/Maps/meta.yml
+++ b/Resources/Prototypes/Maps/meta.yml
@@ -13,7 +13,7 @@
!type:NanotrasenNameGenerator
prefixCreator: 'TG'
- type: StationEmergencyShuttle
- emergencyShuttlePath: /Maps/Shuttles/emergency_courser.yml
+ emergencyShuttlePath: /Maps/Shuttles/emergency_meta.yml
- type: StationJobs
overflowJobs:
- Passenger
diff --git a/Resources/Prototypes/Maps/reach.yml b/Resources/Prototypes/Maps/reach.yml
new file mode 100644
index 00000000000..78e48b76bda
--- /dev/null
+++ b/Resources/Prototypes/Maps/reach.yml
@@ -0,0 +1,36 @@
+- type: gameMap
+ id: Reach
+ mapName: 'Reach'
+ mapPath: /Maps/reach.yml
+ minPlayers: 0
+ maxPlayers: 5
+ stations:
+ Reach:
+ stationProto: StandardNanotrasenStation
+ components:
+ - type: StationNameSetup
+ mapNameTemplate: '{0} Reach Transport {1}'
+ nameGenerator:
+ !type:NanotrasenNameGenerator
+ prefixCreator: 'SC'
+ - type: StationEmergencyShuttle
+ emergencyShuttlePath: /Maps/Shuttles/emergency.yml
+ - type: StationJobs
+ overflowJobs:
+ - Passenger
+ availableJobs:
+ Captain: [ 1, 1 ]
+ HeadOfSecurity: [ 1, 1 ]
+ SecurityOfficer: [ 1, 3 ]
+ CargoTechnician: [ 1, 2 ]
+ Bartender: [ 1, 1 ]
+ Botanist: [ 1, 1 ]
+ Chef: [ 1, 1 ]
+ MedicalDoctor: [ 1, 2 ]
+ Chemist: [ 1, 1 ]
+ Janitor: [ 1, 1 ]
+ Musician: [ 1, 1 ]
+ AtmosphericTechnician: [ 1, 1 ]
+ StationEngineer: [ 1, 2 ]
+ Passenger: [ -1, -1 ]
+
diff --git a/Resources/Prototypes/Procedural/biome_templates.yml b/Resources/Prototypes/Procedural/biome_templates.yml
index 47d8cde5a0d..9f0a4222e26 100644
--- a/Resources/Prototypes/Procedural/biome_templates.yml
+++ b/Resources/Prototypes/Procedural/biome_templates.yml
@@ -302,20 +302,6 @@
cellularReturnType: Distance2
entities:
- WallRockBasalt
- # chasm time
- - !type:BiomeEntityLayer
- allowedTiles:
- - FloorBasalt
- threshold: 0.6
- noise:
- seed: 3
- frequency: 0.02
- fractalType: FBm
- octaves: 5
- lacunarity: 2
- gain: 0.4
- entities:
- - FloorChasmEntity
- !type:BiomeDummyLayer
id: Loot
# Fill basalt
diff --git a/Resources/Prototypes/Reagents/chemicals.yml b/Resources/Prototypes/Reagents/chemicals.yml
index 794d2874357..01cffa3e994 100644
--- a/Resources/Prototypes/Reagents/chemicals.yml
+++ b/Resources/Prototypes/Reagents/chemicals.yml
@@ -98,3 +98,13 @@
type: Local
messages: [ "generic-reagent-effect-parched" ]
probability: 0.1
+
+- type: reagent
+ id: Cellulose
+ name: reagent-name-cellulose
+ group: Biological
+ desc: reagent-desc-cellulose
+ flavor: bitter
+ color: "#E6E6DA"
+ physicalDesc: reagent-physical-desc-crystalline
+ slippery: false
diff --git a/Resources/Prototypes/Reagents/elements.yml b/Resources/Prototypes/Reagents/elements.yml
index 6389793cda5..5c6528a43fe 100644
--- a/Resources/Prototypes/Reagents/elements.yml
+++ b/Resources/Prototypes/Reagents/elements.yml
@@ -194,7 +194,7 @@
emote: Laugh
probability: 0.05
- # TODO: cause confusion and some brain damage
+ # TODO: cause some brain damage when woundmed, and generally reduce the stutter/scrambledaccent unless high doses
- type: reagent
id: Mercury
@@ -213,6 +213,9 @@
damage:
types:
Poison: 1
+ - !type:GenericStatusEffect
+ key: Stutter
+ component: ScrambledAccent
- type: reagent
id: Potassium
diff --git a/Resources/Prototypes/Reagents/medicine.yml b/Resources/Prototypes/Reagents/medicine.yml
index 2d0cd87f97d..a305486830c 100644
--- a/Resources/Prototypes/Reagents/medicine.yml
+++ b/Resources/Prototypes/Reagents/medicine.yml
@@ -1001,3 +1001,26 @@
damage:
types:
Poison: 4
+
+- type: reagent
+ id: Holywater
+ name: reagent-name-holywater
+ group: Medicine
+ desc: reagent-desc-holywater
+ physicalDesc: reagent-physical-desc-holy
+ flavor: holy
+ color: "#91C3F7"
+ metabolisms:
+ Medicine:
+ effects:
+ - !type:HealthChange
+ condition:
+ - !type:TotalDamage
+ max: 50
+ damage:
+ types:
+ Blunt: -0.2
+ Poison: -0.2
+ Heat: -0.2
+ Shock: -0.2
+ Cold: -0.2
diff --git a/Resources/Prototypes/Recipes/Lathes/devices.yml b/Resources/Prototypes/Recipes/Lathes/devices.yml
index 01178b386c3..344f2c38d9c 100644
--- a/Resources/Prototypes/Recipes/Lathes/devices.yml
+++ b/Resources/Prototypes/Recipes/Lathes/devices.yml
@@ -149,6 +149,15 @@
Glass: 250
Plastic: 50
+- type: latheRecipe
+ id: WeaponCrusherGlaive
+ result: WeaponCrusherGlaive
+ completetime: 5
+ materials:
+ Steel: 1500
+ Glass: 250
+ Silver: 250
+
- type: latheRecipe
id: WeaponForceGun
result: WeaponForceGun
diff --git a/Resources/Prototypes/Recipes/Lathes/electronics.yml b/Resources/Prototypes/Recipes/Lathes/electronics.yml
index 8477e6c9be5..7a92402428f 100644
--- a/Resources/Prototypes/Recipes/Lathes/electronics.yml
+++ b/Resources/Prototypes/Recipes/Lathes/electronics.yml
@@ -104,6 +104,14 @@
Glass: 900
Gold: 50
+- type: latheRecipe
+ id: CondenserMachineCircuitBoard
+ result: CondenserMachineCircuitBoard
+ completetime: 4
+ materials:
+ Steel: 100
+ Glass: 900
+
- type: latheRecipe
id: PortableScrubberMachineCircuitBoard
result: PortableScrubberMachineCircuitBoard
@@ -352,6 +360,22 @@
Glass: 900
Gold: 100
+- type: latheRecipe
+ id: ElectrolysisUnitMachineCircuitboard
+ result: ElectrolysisUnitMachineCircuitboard
+ completetime: 4
+ materials:
+ Steel: 100
+ Glass: 900
+
+- type: latheRecipe
+ id: CentrifugeMachineCircuitboard
+ result: CentrifugeMachineCircuitboard
+ completetime: 4
+ materials:
+ Steel: 100
+ Glass: 900
+
- type: latheRecipe
id: MaterialReclaimerMachineCircuitboard
result: MaterialReclaimerMachineCircuitboard
diff --git a/Resources/Prototypes/Recipes/Reactions/food.yml b/Resources/Prototypes/Recipes/Reactions/food.yml
index c7f4038db09..71514806281 100644
--- a/Resources/Prototypes/Recipes/Reactions/food.yml
+++ b/Resources/Prototypes/Recipes/Reactions/food.yml
@@ -153,6 +153,38 @@
- !type:CreateEntityReactionEffect
entity: FoodTofu
+- type: reaction
+ id: CreateMeatball
+ impact: Low
+ quantized: true
+ conserveEnergy: false
+ reactants:
+ UncookedAnimalProteins:
+ amount: 5
+ Flour:
+ amount: 5
+ Egg:
+ amount: 6
+ effects:
+ - !type:CreateEntityReactionEffect
+ entity: FoodMeatMeatball
+
+- type: reaction
+ id: CreateChocolate
+ impact: Low
+ quantized: true
+ conserveEnergy: false
+ reactants:
+ CocoaPowder:
+ amount: 4
+ Milk:
+ amount: 2
+ Sugar:
+ amount: 2
+ effects:
+ - !type:CreateEntityReactionEffect
+ entity: FoodSnackChocolateBar
+
# Condiments
- type: reaction
@@ -266,34 +298,3 @@
products:
Vinaigrette: 3
-- type: reaction
- id: CreateMeatball
- impact: Low
- quantized: true
- conserveEnergy: false
- reactants:
- UncookedAnimalProteins:
- amount: 5
- Flour:
- amount: 5
- Egg:
- amount: 6
- effects:
- - !type:CreateEntityReactionEffect
- entity: FoodMeatMeatball
-
-- type: reaction
- id: CreateChocolate
- impact: Low
- quantized: true
- conserveEnergy: false
- reactants:
- CocoaPowder:
- amount: 4
- Milk:
- amount: 2
- Sugar:
- amount: 2
- effects:
- - !type:CreateEntityReactionEffect
- entity: FoodSnackChocolateBar
diff --git a/Resources/Prototypes/Recipes/Reactions/single_reagent.yml b/Resources/Prototypes/Recipes/Reactions/single_reagent.yml
index 5a40435471d..160353219b3 100644
--- a/Resources/Prototypes/Recipes/Reactions/single_reagent.yml
+++ b/Resources/Prototypes/Recipes/Reactions/single_reagent.yml
@@ -1,3 +1,5 @@
+# Food
+
- type: reaction
id: ProteinCooking
impact: Low
@@ -18,6 +20,8 @@
products:
EggCooked: 0.5
+# Holy - TODO: make it so only the chaplain can use the bible to start these reactions, not anyone with a bible
+
- type: reaction
id: BloodToWine
impact: Low
@@ -28,3 +32,14 @@
amount: 1
products:
Wine: 1
+
+- type: reaction
+ id: WatertoHolyWater
+ impact: Low
+ requiredMixerCategories:
+ - Holy
+ reactants:
+ Water:
+ amount: 1
+ products:
+ Holywater: 1
diff --git a/Resources/Prototypes/Research/arsenal.yml b/Resources/Prototypes/Research/arsenal.yml
index bf8d67bc306..0ff93e3a552 100644
--- a/Resources/Prototypes/Research/arsenal.yml
+++ b/Resources/Prototypes/Research/arsenal.yml
@@ -14,6 +14,8 @@
# These are roundstart but not replenishable for salvage
- WeaponCrusher
- WeaponCrusherDagger
+ # This is not roundstart since its a direct upgrade
+ - WeaponCrusherGlaive
- type: technology
id: DraconicMunitions
diff --git a/Resources/Prototypes/SoundCollections/explosion.yml b/Resources/Prototypes/SoundCollections/explosion.yml
index e208c9d854b..afc4869aec5 100644
--- a/Resources/Prototypes/SoundCollections/explosion.yml
+++ b/Resources/Prototypes/SoundCollections/explosion.yml
@@ -1,5 +1,5 @@
- type: soundCollection
- id: explosion
+ id: Explosion
files:
- /Audio/Effects/explosion1.ogg
- /Audio/Effects/explosion2.ogg
@@ -7,3 +7,20 @@
- /Audio/Effects/explosion4.ogg
- /Audio/Effects/explosion5.ogg
- /Audio/Effects/explosion6.ogg
+
+- type: soundCollection
+ id: ExplosionSmall
+ files:
+ - /Audio/Effects/explosion_small1.ogg
+ - /Audio/Effects/explosion_small2.ogg
+ - /Audio/Effects/explosion_small3.ogg
+
+- type: soundCollection
+ id: ExplosionFar
+ files:
+ - /Audio/Effects/explosionfar.ogg
+
+- type: soundCollection
+ id: ExplosionSmallFar
+ files:
+ - /Audio/Effects/explosionsmallfar.ogg
diff --git a/Resources/Prototypes/XenoArch/Effects/normal_effects.yml b/Resources/Prototypes/XenoArch/Effects/normal_effects.yml
index 4ec9c0778c8..05a7021e4e3 100644
--- a/Resources/Prototypes/XenoArch/Effects/normal_effects.yml
+++ b/Resources/Prototypes/XenoArch/Effects/normal_effects.yml
@@ -561,6 +561,26 @@
intensitySlope: 2.5
maxIntensity: 50
+- type: artifactEffect
+ id: EffectMagnet
+ targetDepth: 1
+ effectHint: artifact-effect-hint-magnet
+ components:
+ - type: GravityWell
+ maxRange: 3
+ baseRadialAcceleration: 1
+ baseTangentialAcceleration: 3
+
+- type: artifactEffect
+ id: EffectAntiMagnet
+ targetDepth: 1
+ effectHint: artifact-effect-hint-magnet
+ components:
+ - type: GravityWell
+ maxRange: 3
+ baseRadialAcceleration: -1
+ baseTangentialAcceleration: -3
+
- type: artifactEffect
id: EffectSingulo
targetDepth: 10
diff --git a/Resources/Prototypes/tags.yml b/Resources/Prototypes/tags.yml
index 7793d47d37b..4546c4ac486 100644
--- a/Resources/Prototypes/tags.yml
+++ b/Resources/Prototypes/tags.yml
@@ -930,6 +930,9 @@
- type: Tag
id: ShellShotgun
+- type: Tag
+ id: PelletShotgunFlare
+
- type: Tag
id: Shiv
@@ -1124,3 +1127,6 @@
- type: Tag
id: boots
+
+- type: Tag
+ id: CleansForensics
\ No newline at end of file
diff --git a/Resources/ServerInfo/Guidebook/Service/FoodRecipes.xml b/Resources/ServerInfo/Guidebook/Service/FoodRecipes.xml
index b0b60649594..794bf808b31 100644
--- a/Resources/ServerInfo/Guidebook/Service/FoodRecipes.xml
+++ b/Resources/ServerInfo/Guidebook/Service/FoodRecipes.xml
@@ -10,13 +10,16 @@
- Тесто = 15 муки, 10 воды
- Кукурузное тесто = 1 яйцо (6 ед.), 10 молока, 15 кукурузной муки
-- Тофу = 5 универсального фермента, 30 соевого молока
+- Tortila Dough = 15 Cornmeal, 10 Water
+- Тофу = 5 универсального фермента (Catalyst), 30 соевого молока
- Тесто для пирога = 2 яйца (12 ед.), 15 муки, 5 столовой соли
- Тесто для торта = 2 яйца(12 ед.), 15 муки, 5 сахара
- Веганское тесто для торта = 15 соевого молока, 15 муки, 5 сахара
-- Масло = 30 молока, 5 столовой соли
-- Головка сыра = 5 универсального фермента, 40 молока
+- Масло = 30 молока, 5 столовой соли (Catalyst)
+- Головка сыра = 5 универсального фермента (Catalyst), 40 молока
+- Chèvre Log = 5 Enzyme (Catalyst), 10 Goat Milk
- Фрикаделька = 1 яйцо (6 ед.), 5 муки, 5 непрожаренные животные протеины
+- Chocolate = 6 Cocoa Powder, 2 Milk, 2 Sugar
- Непрожаренные животные протеины: измельчить сырое мясо
@@ -26,12 +29,15 @@
+
+
+
## Второстепенные продукты
@@ -41,6 +47,9 @@
- Сырая котлета: нарезать сырое мясо
- Сырный ломтик: нарезать головку сыра
- Плоское тесто: раскатайте тесто скалкой либо другим крыглым объектом (огнетушитель, жестяная банка, бутылка).
+- Tortilla Dough Slice: cut Tortilla Dough
+- Flat Tortilla Dough: Use a rolling pin or a round object (fire extinguisher, soda can, bottle) on Tortilla Dough Slice
+- Taco Shell: Microwave Flat Tortilla Dough for 5 Seconds
## Примеры блюд
@@ -51,6 +60,7 @@
- Маргарита: положить в микроволновку 1 плоское тесто, 1 сырный ломтик и 4 помидора на 30 секунд
- Торт: 1 тесто для торта в микроволновку на 15 секунд
- Яблочный пирог: 1 тесто для пирога, 3 яблока и 1 формочку для пирога на 15 секунд
+- Beef Taco: Microwave 1 Taco Shell, 1 Raw Meat Cutlet, 1 Cheese Wedge for 10 Seconds
@@ -62,6 +72,7 @@
+
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/icon-flash.png b/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/icon-flash.png
index 1e843dce4b9..c711b3b3309 100644
Binary files a/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/icon-flash.png and b/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/icon-flash.png differ
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/icon.png b/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/icon.png
index a191340e76f..ce766f6f6ee 100644
Binary files a/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/icon.png and b/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/icon.png differ
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/meta.json
index d77d41281ca..0180f7feb0d 100644
--- a/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/meta.json
+++ b/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/meta.json
@@ -1,7 +1,7 @@
{
"version": 1,
"license": "CC-BY-SA-3.0",
- "copyright": "Made by Alekshhh for SS14",
+ "copyright": "sprite made by Gtheglorious based on the sprite made by Alekshhh for SS14",
"size": {
"x": 32,
"y": 32
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/off-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/off-equipped-HELMET.png
index 47044b06293..853f2d18685 100644
Binary files a/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/off-equipped-HELMET.png and b/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/off-equipped-HELMET.png differ
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/on-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/on-equipped-HELMET.png
index 5cb57f76ff0..26398a6b41e 100644
Binary files a/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/on-equipped-HELMET.png and b/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/on-equipped-HELMET.png differ
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/icon-flash.png b/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/icon-flash.png
index 01aa88c9ccb..84f1b0ad31f 100644
Binary files a/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/icon-flash.png and b/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/icon-flash.png differ
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/icon.png b/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/icon.png
index b1d12d771bd..3301c0a0abe 100644
Binary files a/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/icon.png and b/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/icon.png differ
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/meta.json
index 7bea2d1a865..75d37bdc8e8 100644
--- a/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/meta.json
+++ b/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/meta.json
@@ -1,7 +1,7 @@
{
"version": 1,
"license": "CC-BY-SA-3.0",
- "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e",
+ "copyright": "Sprite made by Gtheglorious based on the sprite taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e,",
"size": {
"x": 32,
"y": 32
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/off-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/off-equipped-HELMET.png
index 4abb1d3c74e..2c953f28dda 100644
Binary files a/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/off-equipped-HELMET.png and b/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/off-equipped-HELMET.png differ
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/on-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/on-equipped-HELMET.png
index bb9318f95fb..b2dfdc5d086 100644
Binary files a/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/on-equipped-HELMET.png and b/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/on-equipped-HELMET.png differ
diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/equipped-OUTERCLOTHING.png
index 0f4fe96e9ba..391c62adad5 100644
Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/equipped-OUTERCLOTHING.png differ
diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/icon.png
index f42a8a96aed..2093000d233 100644
Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/icon.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/icon.png differ
diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/inhand-left.png
index 2b5da346898..5532ef90e61 100644
Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/inhand-left.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/inhand-left.png differ
diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/inhand-right.png
index a76acc62d72..340f4d1a674 100644
Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/inhand-right.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/inhand-right.png differ
diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/meta.json
index a13986d7282..54a0ed85fa2 100644
--- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/meta.json
+++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/meta.json
@@ -1,7 +1,7 @@
{
"version": 1,
"license": "CC-BY-SA-3.0",
- "copyright": "Made by Alekshhh for SS14",
+ "copyright": "Sprite made by Gtheglorious based on the sprite made by Alekshhh for SS14",
"size": {
"x": 32,
"y": 32
diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/equipped-OUTERCLOTHING.png
index 3615778dcd9..c8a357699ed 100644
Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/equipped-OUTERCLOTHING.png differ
diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/icon.png
index 61183533d49..e5d891560ce 100644
Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/icon.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/icon.png differ
diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/inhand-left.png
index f808f0c9754..6fdb2eedd8a 100644
Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/inhand-left.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/inhand-left.png differ
diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/inhand-right.png
index 1fb781159db..51b09f7f29d 100644
Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/inhand-right.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/inhand-right.png differ
diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/meta.json
index e482264df5f..32d6d8901a7 100644
--- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/meta.json
+++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/meta.json
@@ -1,7 +1,7 @@
{
"version": 1,
"license": "CC-BY-SA-3.0",
- "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e",
+ "copyright": "Sprite made by Gtheglorious based on the sprite taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e",
"size": {
"x": 32,
"y": 32
diff --git a/Resources/Textures/Effects/acidifier.rsi/acid.png b/Resources/Textures/Effects/acidifier.rsi/acid.png
new file mode 100644
index 00000000000..53f74e332e6
Binary files /dev/null and b/Resources/Textures/Effects/acidifier.rsi/acid.png differ
diff --git a/Resources/Textures/Effects/acidifier.rsi/meta.json b/Resources/Textures/Effects/acidifier.rsi/meta.json
new file mode 100644
index 00000000000..358e92374cf
--- /dev/null
+++ b/Resources/Textures/Effects/acidifier.rsi/meta.json
@@ -0,0 +1,30 @@
+{
+ "version": 1,
+ "size": {
+ "x": 32,
+ "y": 32
+ },
+ "license": "CC-BY-SA-3.0",
+ "copyright": "Made by brainfood1183 (github) for ss14",
+ "states": [
+ {
+ "name": "acid",
+ "delays": [
+ [
+ 0.2,
+ 0.2,
+ 0.2,
+ 0.2,
+ 0.2,
+ 0.2,
+ 0.2,
+ 0.2,
+ 0.2,
+ 0.2,
+ 0.2,
+ 0.2
+ ]
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/Resources/Textures/Objects/Fun/Darts/dartbox.rsi/icon.png b/Resources/Textures/Objects/Fun/Darts/dartbox.rsi/icon.png
new file mode 100644
index 00000000000..8ccdee1f06c
Binary files /dev/null and b/Resources/Textures/Objects/Fun/Darts/dartbox.rsi/icon.png differ
diff --git a/Resources/Textures/Objects/Fun/Darts/dartbox.rsi/meta.json b/Resources/Textures/Objects/Fun/Darts/dartbox.rsi/meta.json
new file mode 100644
index 00000000000..df8899fa0db
--- /dev/null
+++ b/Resources/Textures/Objects/Fun/Darts/dartbox.rsi/meta.json
@@ -0,0 +1,14 @@
+{
+ "version": 1,
+ "license": "CC0-1.0",
+ "copyright": "Created for SS14 by TheShuEd (github)",
+ "size": {
+ "x": 32,
+ "y": 32
+ },
+ "states": [
+ {
+ "name": "icon"
+ }
+ ]
+}
\ No newline at end of file
diff --git a/Resources/Textures/Objects/Fun/Instruments/blood_red_phone.rsi/icon.png b/Resources/Textures/Objects/Fun/Instruments/blood_red_phone.rsi/icon.png
new file mode 100644
index 00000000000..b8473def4d6
Binary files /dev/null and b/Resources/Textures/Objects/Fun/Instruments/blood_red_phone.rsi/icon.png differ
diff --git a/Resources/Textures/Objects/Fun/Instruments/blood_red_phone.rsi/meta.json b/Resources/Textures/Objects/Fun/Instruments/blood_red_phone.rsi/meta.json
new file mode 100644
index 00000000000..d6d8e5b6d66
--- /dev/null
+++ b/Resources/Textures/Objects/Fun/Instruments/blood_red_phone.rsi/meta.json
@@ -0,0 +1,14 @@
+{
+ "version": 1,
+ "size": {
+ "x": 32,
+ "y": 32
+ },
+ "license": "CC-BY-SA-3.0",
+ "copyright": "Taken from red_phone in https://github.com/tgstation/tgstation/blob/ed17dde468fc8a2b5743d9f64c5afd7eab2f23f5/icons/obj/device.dmi and modified by deltanedas (github) for ss14",
+ "states": [
+ {
+ "name": "icon"
+ }
+ ]
+}
diff --git a/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/meta.json b/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/meta.json
index 1b0c2eb4364..ce6de2f88f2 100644
--- a/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/meta.json
+++ b/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/meta.json
@@ -79,6 +79,9 @@
{
"name": "syndie-4"
},
+ {
+ "name": "syndie-soaplet"
+ },
{
"name": "inhand-left",
"directions": 4
diff --git a/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/syndie-soaplet.png b/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/syndie-soaplet.png
new file mode 100644
index 00000000000..b0712197818
Binary files /dev/null and b/Resources/Textures/Objects/Specific/Janitorial/soap.rsi/syndie-soaplet.png differ
diff --git a/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/equipped-BELT.png b/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/equipped-BELT.png
new file mode 100644
index 00000000000..7e2f947d343
Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/equipped-BELT.png differ
diff --git a/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/equipped-SUITSTORAGE-cat.png b/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/equipped-SUITSTORAGE-cat.png
new file mode 100644
index 00000000000..249e8f7aeef
Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/equipped-SUITSTORAGE-cat.png differ
diff --git a/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/equipped-SUITSTORAGE-dog.png b/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/equipped-SUITSTORAGE-dog.png
new file mode 100644
index 00000000000..b9fc6cb1647
Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/equipped-SUITSTORAGE-dog.png differ
diff --git a/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/equipped-SUITSTORAGE-fox.png b/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/equipped-SUITSTORAGE-fox.png
new file mode 100644
index 00000000000..3f885a997d0
Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/equipped-SUITSTORAGE-fox.png differ
diff --git a/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/equipped-SUITSTORAGE-hamster.png b/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/equipped-SUITSTORAGE-hamster.png
new file mode 100644
index 00000000000..fb670ee7d17
Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/equipped-SUITSTORAGE-hamster.png differ
diff --git a/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/equipped-SUITSTORAGE-kangaroo.png b/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/equipped-SUITSTORAGE-kangaroo.png
new file mode 100644
index 00000000000..4c9104aa302
Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/equipped-SUITSTORAGE-kangaroo.png differ
diff --git a/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/equipped-SUITSTORAGE-pig.png b/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/equipped-SUITSTORAGE-pig.png
new file mode 100644
index 00000000000..2460c336ea6
Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/equipped-SUITSTORAGE-pig.png differ
diff --git a/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/equipped-SUITSTORAGE-possum.png b/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/equipped-SUITSTORAGE-possum.png
new file mode 100644
index 00000000000..bde2d60c8ce
Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/equipped-SUITSTORAGE-possum.png differ
diff --git a/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/equipped-SUITSTORAGE-puppy.png b/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/equipped-SUITSTORAGE-puppy.png
new file mode 100644
index 00000000000..e0ada59f71a
Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/equipped-SUITSTORAGE-puppy.png differ
diff --git a/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/equipped-SUITSTORAGE-sloth.png b/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/equipped-SUITSTORAGE-sloth.png
new file mode 100644
index 00000000000..38858193a2c
Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/equipped-SUITSTORAGE-sloth.png differ
diff --git a/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/icon.png b/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/icon.png
new file mode 100644
index 00000000000..584a122e5bf
Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/icon.png differ
diff --git a/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/inhand-left.png b/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/inhand-left.png
new file mode 100644
index 00000000000..5a3ef991628
Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/inhand-left.png differ
diff --git a/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/inhand-right.png b/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/inhand-right.png
new file mode 100644
index 00000000000..a9da66333c9
Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/inhand-right.png differ
diff --git a/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/meta.json b/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/meta.json
new file mode 100644
index 00000000000..ce287bf2779
--- /dev/null
+++ b/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/meta.json
@@ -0,0 +1,71 @@
+{
+ "version": 1,
+ "license": "CC-BY-SA-3.0",
+ "copyright": "Adapted by DangerRevolution from tgstation at https://github.com/tgstation/tgstation/commit/e1142f20f5e4661cb6845cfcf2dd69f864d67432",
+ "size": {
+ "x": 32,
+ "y": 32
+ },
+ "states": [
+ {
+ "name": "icon"
+ },
+ {
+ "name": "equipped-BELT",
+ "directions": 4
+ },
+ {
+ "name": "equipped-SUITSTORAGE-dog",
+ "directions": 4,
+ "delays": [[1],[1],[1],[1]]
+ },
+ {
+ "name": "equipped-SUITSTORAGE-puppy",
+ "directions": 4,
+ "delays": [[1],[1],[1],[1]]
+ },
+ {
+ "name": "equipped-SUITSTORAGE-fox",
+ "directions": 4,
+ "delays": [[1],[1],[1],[1]]
+ },
+ {
+ "name": "equipped-SUITSTORAGE-cat",
+ "directions": 4,
+ "delays": [[1],[1],[1],[1]]
+ },
+ {
+ "name": "equipped-SUITSTORAGE-sloth",
+ "directions": 4,
+ "delays": [[1],[1],[1],[1]]
+ },
+ {
+ "name": "equipped-SUITSTORAGE-hamster",
+ "directions": 4,
+ "delays": [[1],[1],[1],[1]]
+ },
+ {
+ "name": "equipped-SUITSTORAGE-kangaroo",
+ "directions": 4,
+ "delays": [[1],[1],[1],[1]]
+ },
+ {
+ "name": "equipped-SUITSTORAGE-possum",
+ "directions": 4,
+ "delays": [[1],[1],[1],[1]]
+ },
+ {
+ "name": "equipped-SUITSTORAGE-pig",
+ "directions": 4,
+ "delays": [[1],[1],[1],[1]]
+ },
+ {
+ "name": "inhand-left",
+ "directions": 4
+ },
+ {
+ "name": "inhand-right",
+ "directions": 4
+ }
+ ]
+}
diff --git a/Resources/Textures/Objects/Tanks/emergency_extended.rsi/equipped-BELT.png b/Resources/Textures/Objects/Tanks/emergency_extended.rsi/equipped-BELT.png
new file mode 100644
index 00000000000..0470c6895f3
Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_extended.rsi/equipped-BELT.png differ
diff --git a/Resources/Textures/Objects/Tanks/emergency_extended.rsi/equipped-SUITSTORAGE-cat.png b/Resources/Textures/Objects/Tanks/emergency_extended.rsi/equipped-SUITSTORAGE-cat.png
new file mode 100644
index 00000000000..55cd899fafe
Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_extended.rsi/equipped-SUITSTORAGE-cat.png differ
diff --git a/Resources/Textures/Objects/Tanks/emergency_extended.rsi/equipped-SUITSTORAGE-dog.png b/Resources/Textures/Objects/Tanks/emergency_extended.rsi/equipped-SUITSTORAGE-dog.png
new file mode 100644
index 00000000000..820cf0af755
Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_extended.rsi/equipped-SUITSTORAGE-dog.png differ
diff --git a/Resources/Textures/Objects/Tanks/emergency_extended.rsi/equipped-SUITSTORAGE-fox.png b/Resources/Textures/Objects/Tanks/emergency_extended.rsi/equipped-SUITSTORAGE-fox.png
new file mode 100644
index 00000000000..881effe79c5
Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_extended.rsi/equipped-SUITSTORAGE-fox.png differ
diff --git a/Resources/Textures/Objects/Tanks/emergency_extended.rsi/equipped-SUITSTORAGE-hamster.png b/Resources/Textures/Objects/Tanks/emergency_extended.rsi/equipped-SUITSTORAGE-hamster.png
new file mode 100644
index 00000000000..95fbac61b90
Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_extended.rsi/equipped-SUITSTORAGE-hamster.png differ
diff --git a/Resources/Textures/Objects/Tanks/emergency_extended.rsi/equipped-SUITSTORAGE-kangaroo.png b/Resources/Textures/Objects/Tanks/emergency_extended.rsi/equipped-SUITSTORAGE-kangaroo.png
new file mode 100644
index 00000000000..266b03c4aef
Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_extended.rsi/equipped-SUITSTORAGE-kangaroo.png differ
diff --git a/Resources/Textures/Objects/Tanks/emergency_extended.rsi/equipped-SUITSTORAGE-pig.png b/Resources/Textures/Objects/Tanks/emergency_extended.rsi/equipped-SUITSTORAGE-pig.png
new file mode 100644
index 00000000000..dfe35d05797
Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_extended.rsi/equipped-SUITSTORAGE-pig.png differ
diff --git a/Resources/Textures/Objects/Tanks/emergency_extended.rsi/equipped-SUITSTORAGE-possum.png b/Resources/Textures/Objects/Tanks/emergency_extended.rsi/equipped-SUITSTORAGE-possum.png
new file mode 100644
index 00000000000..34993de6d80
Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_extended.rsi/equipped-SUITSTORAGE-possum.png differ
diff --git a/Resources/Textures/Objects/Tanks/emergency_extended.rsi/equipped-SUITSTORAGE-puppy.png b/Resources/Textures/Objects/Tanks/emergency_extended.rsi/equipped-SUITSTORAGE-puppy.png
new file mode 100644
index 00000000000..423fcfbcd3e
Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_extended.rsi/equipped-SUITSTORAGE-puppy.png differ
diff --git a/Resources/Textures/Objects/Tanks/emergency_extended.rsi/equipped-SUITSTORAGE-sloth.png b/Resources/Textures/Objects/Tanks/emergency_extended.rsi/equipped-SUITSTORAGE-sloth.png
new file mode 100644
index 00000000000..9bf4168ae8d
Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_extended.rsi/equipped-SUITSTORAGE-sloth.png differ
diff --git a/Resources/Textures/Objects/Tanks/emergency_extended.rsi/icon.png b/Resources/Textures/Objects/Tanks/emergency_extended.rsi/icon.png
new file mode 100644
index 00000000000..ab8bebedb66
Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_extended.rsi/icon.png differ
diff --git a/Resources/Textures/Objects/Tanks/emergency_extended.rsi/inhand-left.png b/Resources/Textures/Objects/Tanks/emergency_extended.rsi/inhand-left.png
new file mode 100644
index 00000000000..ad6e0f9beae
Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_extended.rsi/inhand-left.png differ
diff --git a/Resources/Textures/Objects/Tanks/emergency_extended.rsi/inhand-right.png b/Resources/Textures/Objects/Tanks/emergency_extended.rsi/inhand-right.png
new file mode 100644
index 00000000000..4983a573c38
Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_extended.rsi/inhand-right.png differ
diff --git a/Resources/Textures/Objects/Tanks/emergency_extended.rsi/meta.json b/Resources/Textures/Objects/Tanks/emergency_extended.rsi/meta.json
new file mode 100644
index 00000000000..a1661aee78c
--- /dev/null
+++ b/Resources/Textures/Objects/Tanks/emergency_extended.rsi/meta.json
@@ -0,0 +1,71 @@
+{
+ "version": 1,
+ "license": "CC-BY-SA-3.0",
+ "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/e1142f20f5e4661cb6845cfcf2dd69f864d67432",
+ "size": {
+ "x": 32,
+ "y": 32
+ },
+ "states": [
+ {
+ "name": "icon"
+ },
+ {
+ "name": "equipped-BELT",
+ "directions": 4
+ },
+ {
+ "name": "equipped-SUITSTORAGE-dog",
+ "directions": 4,
+ "delays": [[1],[1],[1],[1]]
+ },
+ {
+ "name": "equipped-SUITSTORAGE-puppy",
+ "directions": 4,
+ "delays": [[1],[1],[1],[1]]
+ },
+ {
+ "name": "equipped-SUITSTORAGE-fox",
+ "directions": 4,
+ "delays": [[1],[1],[1],[1]]
+ },
+ {
+ "name": "equipped-SUITSTORAGE-cat",
+ "directions": 4,
+ "delays": [[1],[1],[1],[1]]
+ },
+ {
+ "name": "equipped-SUITSTORAGE-sloth",
+ "directions": 4,
+ "delays": [[1],[1],[1],[1]]
+ },
+ {
+ "name": "equipped-SUITSTORAGE-hamster",
+ "directions": 4,
+ "delays": [[1],[1],[1],[1]]
+ },
+ {
+ "name": "equipped-SUITSTORAGE-kangaroo",
+ "directions": 4,
+ "delays": [[1],[1],[1],[1]]
+ },
+ {
+ "name": "equipped-SUITSTORAGE-possum",
+ "directions": 4,
+ "delays": [[1],[1],[1],[1]]
+ },
+ {
+ "name": "equipped-SUITSTORAGE-pig",
+ "directions": 4,
+ "delays": [[1],[1],[1],[1]]
+ },
+ {
+ "name": "inhand-left",
+ "directions": 4
+ },
+ {
+ "name": "inhand-right",
+ "directions": 4
+ }
+ ]
+}
diff --git a/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/equipped-BELT.png b/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/equipped-BELT.png
new file mode 100644
index 00000000000..db800b2a3bf
Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/equipped-BELT.png differ
diff --git a/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/equipped-SUITSTORAGE-cat.png b/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/equipped-SUITSTORAGE-cat.png
new file mode 100644
index 00000000000..77933570cd8
Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/equipped-SUITSTORAGE-cat.png differ
diff --git a/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/equipped-SUITSTORAGE-dog.png b/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/equipped-SUITSTORAGE-dog.png
new file mode 100644
index 00000000000..77933570cd8
Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/equipped-SUITSTORAGE-dog.png differ
diff --git a/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/equipped-SUITSTORAGE-fox.png b/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/equipped-SUITSTORAGE-fox.png
new file mode 100644
index 00000000000..49150ee5d8a
Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/equipped-SUITSTORAGE-fox.png differ
diff --git a/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/equipped-SUITSTORAGE-hamster.png b/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/equipped-SUITSTORAGE-hamster.png
new file mode 100644
index 00000000000..9f97568f931
Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/equipped-SUITSTORAGE-hamster.png differ
diff --git a/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/equipped-SUITSTORAGE-kangaroo.png b/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/equipped-SUITSTORAGE-kangaroo.png
new file mode 100644
index 00000000000..f13fb2eddd7
Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/equipped-SUITSTORAGE-kangaroo.png differ
diff --git a/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/equipped-SUITSTORAGE-pig.png b/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/equipped-SUITSTORAGE-pig.png
new file mode 100644
index 00000000000..3cf22a033d9
Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/equipped-SUITSTORAGE-pig.png differ
diff --git a/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/equipped-SUITSTORAGE-possum.png b/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/equipped-SUITSTORAGE-possum.png
new file mode 100644
index 00000000000..3edb64e81d3
Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/equipped-SUITSTORAGE-possum.png differ
diff --git a/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/equipped-SUITSTORAGE-puppy.png b/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/equipped-SUITSTORAGE-puppy.png
new file mode 100644
index 00000000000..6299351012f
Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/equipped-SUITSTORAGE-puppy.png differ
diff --git a/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/equipped-SUITSTORAGE-sloth.png b/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/equipped-SUITSTORAGE-sloth.png
new file mode 100644
index 00000000000..a59cce10b5d
Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/equipped-SUITSTORAGE-sloth.png differ
diff --git a/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/icon.png b/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/icon.png
new file mode 100644
index 00000000000..8ea77e5c6c0
Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/icon.png differ
diff --git a/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/inhand-left.png b/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/inhand-left.png
new file mode 100644
index 00000000000..0f43ae1d6b6
Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/inhand-left.png differ
diff --git a/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/inhand-right.png b/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/inhand-right.png
new file mode 100644
index 00000000000..faf0d3df8b9
Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/inhand-right.png differ
diff --git a/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/meta.json b/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/meta.json
new file mode 100644
index 00000000000..ce287bf2779
--- /dev/null
+++ b/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/meta.json
@@ -0,0 +1,71 @@
+{
+ "version": 1,
+ "license": "CC-BY-SA-3.0",
+ "copyright": "Adapted by DangerRevolution from tgstation at https://github.com/tgstation/tgstation/commit/e1142f20f5e4661cb6845cfcf2dd69f864d67432",
+ "size": {
+ "x": 32,
+ "y": 32
+ },
+ "states": [
+ {
+ "name": "icon"
+ },
+ {
+ "name": "equipped-BELT",
+ "directions": 4
+ },
+ {
+ "name": "equipped-SUITSTORAGE-dog",
+ "directions": 4,
+ "delays": [[1],[1],[1],[1]]
+ },
+ {
+ "name": "equipped-SUITSTORAGE-puppy",
+ "directions": 4,
+ "delays": [[1],[1],[1],[1]]
+ },
+ {
+ "name": "equipped-SUITSTORAGE-fox",
+ "directions": 4,
+ "delays": [[1],[1],[1],[1]]
+ },
+ {
+ "name": "equipped-SUITSTORAGE-cat",
+ "directions": 4,
+ "delays": [[1],[1],[1],[1]]
+ },
+ {
+ "name": "equipped-SUITSTORAGE-sloth",
+ "directions": 4,
+ "delays": [[1],[1],[1],[1]]
+ },
+ {
+ "name": "equipped-SUITSTORAGE-hamster",
+ "directions": 4,
+ "delays": [[1],[1],[1],[1]]
+ },
+ {
+ "name": "equipped-SUITSTORAGE-kangaroo",
+ "directions": 4,
+ "delays": [[1],[1],[1],[1]]
+ },
+ {
+ "name": "equipped-SUITSTORAGE-possum",
+ "directions": 4,
+ "delays": [[1],[1],[1],[1]]
+ },
+ {
+ "name": "equipped-SUITSTORAGE-pig",
+ "directions": 4,
+ "delays": [[1],[1],[1],[1]]
+ },
+ {
+ "name": "inhand-left",
+ "directions": 4
+ },
+ {
+ "name": "inhand-right",
+ "directions": 4
+ }
+ ]
+}
diff --git a/Resources/Textures/Objects/Tanks/emergency_red.rsi/meta.json b/Resources/Textures/Objects/Tanks/emergency_red.rsi/meta.json
index e0ed3eddaa4..ce3d401ca2f 100644
--- a/Resources/Textures/Objects/Tanks/emergency_red.rsi/meta.json
+++ b/Resources/Textures/Objects/Tanks/emergency_red.rsi/meta.json
@@ -1,7 +1,7 @@
{
"version": 1,
"license": "CC-BY-SA-3.0",
- "copyright": "Adapted by DangerReovlution from tgstation at https://github.com/tgstation/tgstation/commit/e1142f20f5e4661cb6845cfcf2dd69f864d67432",
+ "copyright": "Adapted by DangerRevolution from tgstation at https://github.com/tgstation/tgstation/commit/e1142f20f5e4661cb6845cfcf2dd69f864d67432",
"size": {
"x": 32,
"y": 32
diff --git a/Resources/Textures/Objects/Tools/handdrill.rsi/inhand-left.png b/Resources/Textures/Objects/Tools/handdrill.rsi/inhand-left.png
new file mode 100644
index 00000000000..048627b8c58
Binary files /dev/null and b/Resources/Textures/Objects/Tools/handdrill.rsi/inhand-left.png differ
diff --git a/Resources/Textures/Objects/Tools/handdrill.rsi/inhand-right.png b/Resources/Textures/Objects/Tools/handdrill.rsi/inhand-right.png
new file mode 100644
index 00000000000..1dedea40e84
Binary files /dev/null and b/Resources/Textures/Objects/Tools/handdrill.rsi/inhand-right.png differ
diff --git a/Resources/Textures/Objects/Tools/handdrill.rsi/meta.json b/Resources/Textures/Objects/Tools/handdrill.rsi/meta.json
index d31b77623a9..54384696f6f 100644
--- a/Resources/Textures/Objects/Tools/handdrill.rsi/meta.json
+++ b/Resources/Textures/Objects/Tools/handdrill.rsi/meta.json
@@ -1,7 +1,7 @@
{
"version": 1,
"license": "CC-BY-NC-SA-3.0",
- "copyright": "Taken from goonstation at commit https://github.com/goonstation/goonstation/commit/2ce04dea2495ed19aeca4b6b42bf59fef2b4dd37",
+ "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/8fdee6e4e3dacdb7a12efaac132933dc0fc649b4",
"size": {
"x": 32,
"y": 32
@@ -9,6 +9,14 @@
"states": [
{
"name": "handdrill"
+ },
+ {
+ "name": "inhand-left",
+ "directions": 4
+ },
+ {
+ "name": "inhand-right",
+ "directions": 4
}
]
}
\ No newline at end of file
diff --git a/Resources/Textures/Objects/Weapons/Grenades/clusterbang.rsi/icon.png b/Resources/Textures/Objects/Weapons/Grenades/clusterbang.rsi/icon.png
new file mode 100644
index 00000000000..18a1d3042c7
Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Grenades/clusterbang.rsi/icon.png differ
diff --git a/Resources/Textures/Objects/Weapons/Grenades/clusterbang.rsi/meta.json b/Resources/Textures/Objects/Weapons/Grenades/clusterbang.rsi/meta.json
index 01b494cc954..c017ee2117d 100644
--- a/Resources/Textures/Objects/Weapons/Grenades/clusterbang.rsi/meta.json
+++ b/Resources/Textures/Objects/Weapons/Grenades/clusterbang.rsi/meta.json
@@ -22,6 +22,19 @@
{
"name": "base-3",
"directions": 1
+ },
+ {
+ "name": "icon",
+ "directions": 1
+ },
+ {
+ "name": "primed",
+ "delays": [
+ [
+ 0.1,
+ 0.1
+ ]
+ ]
}
]
}
diff --git a/Resources/Textures/Objects/Weapons/Grenades/clusterbang.rsi/primed.png b/Resources/Textures/Objects/Weapons/Grenades/clusterbang.rsi/primed.png
new file mode 100644
index 00000000000..7ce992cde8f
Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Grenades/clusterbang.rsi/primed.png differ
diff --git a/Resources/Textures/Objects/Weapons/Grenades/clusterbomb.rsi/base-1.png b/Resources/Textures/Objects/Weapons/Grenades/clusterbomb.rsi/base-1.png
new file mode 100644
index 00000000000..d28cae5a6bd
Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Grenades/clusterbomb.rsi/base-1.png differ
diff --git a/Resources/Textures/Objects/Weapons/Grenades/clusterbomb.rsi/base-2.png b/Resources/Textures/Objects/Weapons/Grenades/clusterbomb.rsi/base-2.png
new file mode 100644
index 00000000000..392d6981b44
Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Grenades/clusterbomb.rsi/base-2.png differ
diff --git a/Resources/Textures/Objects/Weapons/Grenades/clusterbomb.rsi/icon.png b/Resources/Textures/Objects/Weapons/Grenades/clusterbomb.rsi/icon.png
new file mode 100644
index 00000000000..7b4ccd1c0fa
Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Grenades/clusterbomb.rsi/icon.png differ
diff --git a/Resources/Textures/Objects/Weapons/Grenades/clusterbomb.rsi/meta.json b/Resources/Textures/Objects/Weapons/Grenades/clusterbomb.rsi/meta.json
new file mode 100644
index 00000000000..a4d1e8aeb91
--- /dev/null
+++ b/Resources/Textures/Objects/Weapons/Grenades/clusterbomb.rsi/meta.json
@@ -0,0 +1,29 @@
+{
+ "version": 1,
+ "license": "CC-BY-SA-3.0",
+ "copyright": "Taken from tgstation and modified by Swept at https://github.com/tgstation/tgstation/commit/29c0ed1b000619cb5398ef921000a8d4502ba0b6 and modified by Swept",
+ "size": {
+ "x": 32,
+ "y": 32
+ },
+ "states": [
+ {
+ "name": "icon"
+ },
+ {
+ "name": "base-1"
+ },
+ {
+ "name": "base-2"
+ },
+ {
+ "name": "primed",
+ "delays": [
+ [
+ 0.1,
+ 0.1
+ ]
+ ]
+ }
+ ]
+}
diff --git a/Resources/Textures/Objects/Weapons/Grenades/clusterbomb.rsi/primed.png b/Resources/Textures/Objects/Weapons/Grenades/clusterbomb.rsi/primed.png
new file mode 100644
index 00000000000..b3383c172d6
Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Grenades/clusterbomb.rsi/primed.png differ
diff --git a/Resources/Textures/Objects/Weapons/Grenades/pyrogrenade.rsi/equipped-BELT.png b/Resources/Textures/Objects/Weapons/Grenades/pyrogrenade.rsi/equipped-BELT.png
new file mode 100644
index 00000000000..20d341ef8c8
Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Grenades/pyrogrenade.rsi/equipped-BELT.png differ
diff --git a/Resources/Textures/Objects/Weapons/Grenades/pyrogrenade.rsi/icon.png b/Resources/Textures/Objects/Weapons/Grenades/pyrogrenade.rsi/icon.png
new file mode 100644
index 00000000000..50421bf7087
Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Grenades/pyrogrenade.rsi/icon.png differ
diff --git a/Resources/Textures/Objects/Weapons/Grenades/pyrogrenade.rsi/meta.json b/Resources/Textures/Objects/Weapons/Grenades/pyrogrenade.rsi/meta.json
new file mode 100644
index 00000000000..28d3e6969a9
--- /dev/null
+++ b/Resources/Textures/Objects/Weapons/Grenades/pyrogrenade.rsi/meta.json
@@ -0,0 +1,27 @@
+{
+ "version": 1,
+ "license": "CC-BY-SA-3.0",
+ "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/b13d244d761a07e200a9a41730bd446e776020d5",
+ "size": {
+ "x": 32,
+ "y": 32
+ },
+ "states": [
+ {
+ "name": "icon"
+ },
+ {
+ "name": "primed",
+ "delays": [
+ [
+ 0.1,
+ 0.1
+ ]
+ ]
+ },
+ {
+ "name": "equipped-BELT",
+ "directions": 4
+ }
+ ]
+}
diff --git a/Resources/Textures/Objects/Weapons/Grenades/pyrogrenade.rsi/primed.png b/Resources/Textures/Objects/Weapons/Grenades/pyrogrenade.rsi/primed.png
new file mode 100644
index 00000000000..fbe975391a5
Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Grenades/pyrogrenade.rsi/primed.png differ
diff --git a/Resources/Textures/Objects/Weapons/Grenades/shrapnelgrenade.rsi/equipped-BELT.png b/Resources/Textures/Objects/Weapons/Grenades/shrapnelgrenade.rsi/equipped-BELT.png
new file mode 100644
index 00000000000..3b76c4e57f2
Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Grenades/shrapnelgrenade.rsi/equipped-BELT.png differ
diff --git a/Resources/Textures/Objects/Weapons/Grenades/shrapnelgrenade.rsi/icon.png b/Resources/Textures/Objects/Weapons/Grenades/shrapnelgrenade.rsi/icon.png
new file mode 100644
index 00000000000..5bb1563118d
Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Grenades/shrapnelgrenade.rsi/icon.png differ
diff --git a/Resources/Textures/Objects/Weapons/Grenades/shrapnelgrenade.rsi/meta.json b/Resources/Textures/Objects/Weapons/Grenades/shrapnelgrenade.rsi/meta.json
new file mode 100644
index 00000000000..28d3e6969a9
--- /dev/null
+++ b/Resources/Textures/Objects/Weapons/Grenades/shrapnelgrenade.rsi/meta.json
@@ -0,0 +1,27 @@
+{
+ "version": 1,
+ "license": "CC-BY-SA-3.0",
+ "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/b13d244d761a07e200a9a41730bd446e776020d5",
+ "size": {
+ "x": 32,
+ "y": 32
+ },
+ "states": [
+ {
+ "name": "icon"
+ },
+ {
+ "name": "primed",
+ "delays": [
+ [
+ 0.1,
+ 0.1
+ ]
+ ]
+ },
+ {
+ "name": "equipped-BELT",
+ "directions": 4
+ }
+ ]
+}
diff --git a/Resources/Textures/Objects/Weapons/Grenades/shrapnelgrenade.rsi/primed.png b/Resources/Textures/Objects/Weapons/Grenades/shrapnelgrenade.rsi/primed.png
new file mode 100644
index 00000000000..2369617cd32
Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Grenades/shrapnelgrenade.rsi/primed.png differ
diff --git a/Resources/Textures/Objects/Weapons/Grenades/stingergrenade.rsi/equipped-BELT.png b/Resources/Textures/Objects/Weapons/Grenades/stingergrenade.rsi/equipped-BELT.png
new file mode 100644
index 00000000000..85a06f2d4d8
Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Grenades/stingergrenade.rsi/equipped-BELT.png differ
diff --git a/Resources/Textures/Objects/Weapons/Grenades/stingergrenade.rsi/icon.png b/Resources/Textures/Objects/Weapons/Grenades/stingergrenade.rsi/icon.png
new file mode 100644
index 00000000000..1fae8574536
Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Grenades/stingergrenade.rsi/icon.png differ
diff --git a/Resources/Textures/Objects/Weapons/Grenades/stingergrenade.rsi/meta.json b/Resources/Textures/Objects/Weapons/Grenades/stingergrenade.rsi/meta.json
new file mode 100644
index 00000000000..28d3e6969a9
--- /dev/null
+++ b/Resources/Textures/Objects/Weapons/Grenades/stingergrenade.rsi/meta.json
@@ -0,0 +1,27 @@
+{
+ "version": 1,
+ "license": "CC-BY-SA-3.0",
+ "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/b13d244d761a07e200a9a41730bd446e776020d5",
+ "size": {
+ "x": 32,
+ "y": 32
+ },
+ "states": [
+ {
+ "name": "icon"
+ },
+ {
+ "name": "primed",
+ "delays": [
+ [
+ 0.1,
+ 0.1
+ ]
+ ]
+ },
+ {
+ "name": "equipped-BELT",
+ "directions": 4
+ }
+ ]
+}
diff --git a/Resources/Textures/Objects/Weapons/Grenades/stingergrenade.rsi/primed.png b/Resources/Textures/Objects/Weapons/Grenades/stingergrenade.rsi/primed.png
new file mode 100644
index 00000000000..32d39cb89f6
Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Grenades/stingergrenade.rsi/primed.png differ
diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Explosives/explosives.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Explosives/explosives.rsi/meta.json
index 5a58b6b6089..bfdf73fe57f 100644
--- a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Explosives/explosives.rsi/meta.json
+++ b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Explosives/explosives.rsi/meta.json
@@ -29,4 +29,4 @@
"name": "spent"
}
]
-}
\ No newline at end of file
+}
diff --git a/Resources/Textures/Structures/Machines/Medical/centrifuge.rsi/base-spinning.png b/Resources/Textures/Structures/Machines/Medical/centrifuge.rsi/base-spinning.png
new file mode 100644
index 00000000000..16daad92ac4
Binary files /dev/null and b/Resources/Textures/Structures/Machines/Medical/centrifuge.rsi/base-spinning.png differ
diff --git a/Resources/Textures/Structures/Machines/Medical/centrifuge.rsi/base.png b/Resources/Textures/Structures/Machines/Medical/centrifuge.rsi/base.png
new file mode 100644
index 00000000000..c145d0322e3
Binary files /dev/null and b/Resources/Textures/Structures/Machines/Medical/centrifuge.rsi/base.png differ
diff --git a/Resources/Textures/Structures/Machines/Medical/centrifuge.rsi/meta.json b/Resources/Textures/Structures/Machines/Medical/centrifuge.rsi/meta.json
new file mode 100644
index 00000000000..808d1dbe7f9
--- /dev/null
+++ b/Resources/Textures/Structures/Machines/Medical/centrifuge.rsi/meta.json
@@ -0,0 +1,31 @@
+{
+ "version": 1,
+ "license": "CC0-1.0",
+ "copyright": "Adapted from CEV-Eris by EmoGarbage404 (github) for Space Station 14.",
+ "size": {
+ "x": 32,
+ "y": 32
+ },
+ "states": [
+ {
+ "name": "base"
+ },
+ {
+ "name": "base-spinning",
+ "delays":
+ [
+ [
+ 0.1,
+ 0.1,
+ 0.1
+ ]
+ ]
+ },
+ {
+ "name": "panel"
+ },
+ {
+ "name": "unshaded"
+ }
+ ]
+}
diff --git a/Resources/Textures/Structures/Machines/Medical/centrifuge.rsi/panel.png b/Resources/Textures/Structures/Machines/Medical/centrifuge.rsi/panel.png
new file mode 100644
index 00000000000..55550305edb
Binary files /dev/null and b/Resources/Textures/Structures/Machines/Medical/centrifuge.rsi/panel.png differ
diff --git a/Resources/Textures/Structures/Machines/Medical/centrifuge.rsi/unshaded.png b/Resources/Textures/Structures/Machines/Medical/centrifuge.rsi/unshaded.png
new file mode 100644
index 00000000000..fcb54a8b9f7
Binary files /dev/null and b/Resources/Textures/Structures/Machines/Medical/centrifuge.rsi/unshaded.png differ
diff --git a/Resources/Textures/Structures/Machines/Medical/electrolysis.rsi/base.png b/Resources/Textures/Structures/Machines/Medical/electrolysis.rsi/base.png
new file mode 100644
index 00000000000..ef9305ae2a6
Binary files /dev/null and b/Resources/Textures/Structures/Machines/Medical/electrolysis.rsi/base.png differ
diff --git a/Resources/Textures/Structures/Machines/Medical/electrolysis.rsi/meta.json b/Resources/Textures/Structures/Machines/Medical/electrolysis.rsi/meta.json
new file mode 100644
index 00000000000..71eacfdf233
--- /dev/null
+++ b/Resources/Textures/Structures/Machines/Medical/electrolysis.rsi/meta.json
@@ -0,0 +1,32 @@
+{
+ "version": 1,
+ "license": "CC0-1.0",
+ "copyright": "Adapted from CEV-Eris by EmoGarbage404 (github) for Space Station 14.",
+ "size": {
+ "x": 32,
+ "y": 32
+ },
+ "states": [
+ {
+ "name": "base"
+ },
+ {
+ "name": "spinning",
+ "delays":
+ [
+ [
+ 0.25,
+ 0.25,
+ 0.25,
+ 0.25
+ ]
+ ]
+ },
+ {
+ "name": "panel"
+ },
+ {
+ "name": "unshaded"
+ }
+ ]
+}
diff --git a/Resources/Textures/Structures/Machines/Medical/electrolysis.rsi/panel.png b/Resources/Textures/Structures/Machines/Medical/electrolysis.rsi/panel.png
new file mode 100644
index 00000000000..4208f696938
Binary files /dev/null and b/Resources/Textures/Structures/Machines/Medical/electrolysis.rsi/panel.png differ
diff --git a/Resources/Textures/Structures/Machines/Medical/electrolysis.rsi/spinning.png b/Resources/Textures/Structures/Machines/Medical/electrolysis.rsi/spinning.png
new file mode 100644
index 00000000000..b2fc90cc123
Binary files /dev/null and b/Resources/Textures/Structures/Machines/Medical/electrolysis.rsi/spinning.png differ
diff --git a/Resources/Textures/Structures/Machines/Medical/electrolysis.rsi/unshaded.png b/Resources/Textures/Structures/Machines/Medical/electrolysis.rsi/unshaded.png
new file mode 100644
index 00000000000..5c2c1aaff26
Binary files /dev/null and b/Resources/Textures/Structures/Machines/Medical/electrolysis.rsi/unshaded.png differ
diff --git a/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/fill-1.png b/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/fill-1.png
new file mode 100644
index 00000000000..a030b2d5245
Binary files /dev/null and b/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/fill-1.png differ
diff --git a/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/fill-2.png b/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/fill-2.png
new file mode 100644
index 00000000000..9007c74cb3e
Binary files /dev/null and b/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/fill-2.png differ
diff --git a/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/fill-3.png b/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/fill-3.png
new file mode 100644
index 00000000000..364bd108400
Binary files /dev/null and b/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/fill-3.png differ
diff --git a/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/fill-4.png b/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/fill-4.png
new file mode 100644
index 00000000000..efbfaf5c040
Binary files /dev/null and b/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/fill-4.png differ
diff --git a/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/fill-5.png b/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/fill-5.png
new file mode 100644
index 00000000000..f87544fa828
Binary files /dev/null and b/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/fill-5.png differ
diff --git a/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/fill-6.png b/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/fill-6.png
new file mode 100644
index 00000000000..1fabf818783
Binary files /dev/null and b/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/fill-6.png differ
diff --git a/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/fill-7.png b/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/fill-7.png
new file mode 100644
index 00000000000..55e26a4d5ac
Binary files /dev/null and b/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/fill-7.png differ
diff --git a/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/meta.json b/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/meta.json
new file mode 100644
index 00000000000..591c223e5cd
--- /dev/null
+++ b/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/meta.json
@@ -0,0 +1,60 @@
+{
+ "version":1,
+ "size":
+ {
+ "x":32,
+ "y":32
+ },
+ "copyright":"Created by EmoGarbage404 (github) for Space Station 14.",
+ "license":"CC0-1.0",
+ "states":
+ [
+ {
+ "name":"off"
+ },
+ {
+ "name":"on",
+ "delays":
+ [
+ [
+ 0.05,
+ 0.05,
+ 0.05,
+ 0.05,
+ 0.05
+ ]
+ ]
+ },
+ {
+ "name":"panel"
+ },
+ {
+ "name":"trans"
+ },
+ {
+ "name":"pipe",
+ "directions":4
+ },
+ {
+ "name":"fill-1"
+ },
+ {
+ "name":"fill-2"
+ },
+ {
+ "name":"fill-3"
+ },
+ {
+ "name":"fill-4"
+ },
+ {
+ "name":"fill-5"
+ },
+ {
+ "name":"fill-6"
+ },
+ {
+ "name":"fill-7"
+ }
+ ]
+}
diff --git a/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/off.png b/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/off.png
new file mode 100644
index 00000000000..523adff6c37
Binary files /dev/null and b/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/off.png differ
diff --git a/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/on.png b/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/on.png
new file mode 100644
index 00000000000..268750001a2
Binary files /dev/null and b/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/on.png differ
diff --git a/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/panel.png b/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/panel.png
new file mode 100644
index 00000000000..05c2f179fac
Binary files /dev/null and b/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/panel.png differ
diff --git a/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/pipe.png b/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/pipe.png
new file mode 100644
index 00000000000..c9fbbec3004
Binary files /dev/null and b/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/pipe.png differ
diff --git a/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/trans.png b/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/trans.png
new file mode 100644
index 00000000000..06e34a2e361
Binary files /dev/null and b/Resources/Textures/Structures/Piping/Atmospherics/condenser.rsi/trans.png differ
diff --git a/RobustToolbox b/RobustToolbox
index 726d91c5e8c..2686150f9de 160000
--- a/RobustToolbox
+++ b/RobustToolbox
@@ -1 +1 @@
-Subproject commit 726d91c5e8c93ddc824f0f2860139b345dba5ce8
+Subproject commit 2686150f9def378f2bdb582b1ddb5b2aeea37ab4
diff --git a/global.json b/global.json
index 7665c95ab4e..391ba3c2a30 100644
--- a/global.json
+++ b/global.json
@@ -1,6 +1,6 @@
{
"sdk": {
- "version": "7.0.114",
+ "version": "8.0.100",
"rollForward": "latestFeature"
}
}